— MySQL dump 10.13 Distrib 5.7.17, for macos10.12 (x86_64)
—
— Host: 127.0.0.1 Database: movies
— ——————————————————
— Server version 5.7.23
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE=’+00:00′ */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE=’NO_AUTO_VALUE_ON_ZERO’ */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
CREATE DATABASE movies;
USE movies;
—
— Table structure for table `country`
—
DROP TABLE IF EXISTS `country`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `country` (
`country_id` int(10) NOT NULL AUTO_INCREMENT,
`country_iso_code` varchar(10) DEFAULT NULL,
`country_name` varchar(200) DEFAULT NULL,
PRIMARY KEY (`country_id`)
) ENGINE=InnoDB AUTO_INCREMENT=255 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
—
— Dumping data for table `country`
—
LOCK TABLES `country` WRITE;
/*!40000 ALTER TABLE `country` DISABLE KEYS */;
INSERT INTO `country` VALUES (128,’AE’,’United Arab Emirates’),(129,’AF’,’Afghanistan’),(130,’AO’,’Angola’),(131,’AR’,’Argentina’),(132,’AT’,’Austria’),(133,’AU’,’Australia’),(134,’AW’,’Aruba’),(135,’BA’,’Bosnia and Herzegovina’),(136,’BE’,’Belgium’),(137,’BG’,’Bulgaria’),(138,’BO’,’Bolivia’),(139,’BR’,’Brazil’),(140,’BS’,’Bahamas’),(141,’BT’,’Bhutan’),(142,’CA’,’Canada’),(143,’CH’,’Switzerland’),(144,’CL’,’Chile’),(145,’CM’,’Cameroon’),(146,’CN’,’China’),(147,’CO’,’Colombia’),(148,’CS’,’Serbia and Montenegro’),(149,’CY’,’Cyprus’),(150,’CZ’,’Czech Republic’),(151,’DE’,’Germany’),(152,’DK’,’Denmark’),(153,’DM’,’Dominica’),(154,’DO’,’Dominican Republic’),(155,’DZ’,’Algeria’),(156,’EC’,’Ecuador’),(157,’EG’,’Egypt’),(158,’ES’,’Spain’),(159,’FI’,’Finland’),(160,’FJ’,’Fiji’),(161,’FR’,’France’),(162,’GB’,’United Kingdom’),(163,’GP’,’Guadaloupe’),(164,’GR’,’Greece’),(165,’GY’,’Guyana’),(166,’HK’,’Hong Kong’),(167,’HU’,’Hungary’),(168,’ID’,’Indonesia’),(169,’IE’,’Ireland’),(170,’IL’,’Israel’),(171,’IN’,’India’),(172,’IR’,’Iran’),(173,’IS’,’Iceland’),(174,’IT’,’Italy’),(175,’JM’,’Jamaica’),(176,’JO’,’Jordan’),(177,’JP’,’Japan’),(178,’KE’,’Kenya’),(179,’KG’,’Kyrgyz Republic’),(180,’KH’,’Cambodia’),(181,’KR’,’South Korea’),(182,’KZ’,’Kazakhstan’),(183,’LB’,’Lebanon’),(184,’LT’,’Lithuania’),(185,’LU’,’Luxembourg’),(186,’LY’,’Libyan Arab Jamahiriya’),(187,’MA’,’Morocco’),(188,’MC’,’Monaco’),(189,’MT’,’Malta’),(190,’MX’,’Mexico’),(191,’MY’,’Malaysia’),(192,’NG’,’Nigeria’),(193,’NL’,’Netherlands’),(194,’NO’,’Norway’),(195,’NZ’,’New Zealand’),(196,’PA’,’Panama’),(197,’PE’,’Peru’),(198,’PH’,’Philippines’),(199,’PK’,’Pakistan’),(200,’PL’,’Poland’),(201,’PT’,’Portugal’),(202,’RO’,’Romania’),(203,’RS’,’Serbia’),(204,’RU’,’Russia’),(205,’SE’,’Sweden’),(206,’SG’,’Singapore’),(207,’SI’,’Slovenia’),(208,’SK’,’Slovakia’),(209,’TH’,’Thailand’),(210,’TN’,’Tunisia’),(211,’TR’,’Turkey’),(212,’TW’,’Taiwan’),(213,’UA’,’Ukraine’),(214,’US’,’United States of America’),(215,’ZA’,’South Africa’);
/*!40000 ALTER TABLE `country` ENABLE KEYS */;
UNLOCK TABLES;
—
— Table structure for table `department`
—
DROP TABLE IF EXISTS `department`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `department` (
`department_id` int(10) NOT NULL AUTO_INCREMENT,
`department_name` varchar(200) DEFAULT NULL,
PRIMARY KEY (`department_id`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
—
— Dumping data for table `department`
—
LOCK TABLES `department` WRITE;
/*!40000 ALTER TABLE `department` DISABLE KEYS */;
INSERT INTO `department` VALUES (1,’Camera’),(2,’Directing’),(3,’Production’),(4,’Writing’),(5,’Editing’),(6,’Sound’),(7,’Art’),(8,’Costume & Make-Up’),(9,’Crew’),(10,’Visual Effects’),(11,’Lighting’),(12,’Actors’);
/*!40000 ALTER TABLE `department` ENABLE KEYS */;
UNLOCK TABLES;
—
— Table structure for table `gender`
—
DROP TABLE IF EXISTS `gender`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `gender` (
`gender_id` int(10) NOT NULL,
`gender` varchar(20) DEFAULT NULL,
PRIMARY KEY (`gender_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
—
— Dumping data for table `gender`
—
LOCK TABLES `gender` WRITE;
/*!40000 ALTER TABLE `gender` DISABLE KEYS */;
INSERT INTO `gender` VALUES (0,’Unspecified’),(1,’Female’),(2,’Male’);
/*!40000 ALTER TABLE `gender` ENABLE KEYS */;
UNLOCK TABLES;
—
— Table structure for table `genre`
—
DROP TABLE IF EXISTS `genre`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `genre` (
`genre_id` int(10) NOT NULL,
`genre_name` varchar(100) DEFAULT NULL,
PRIMARY KEY (`genre_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
—
— Dumping data for table `genre`
—
LOCK TABLES `genre` WRITE;
/*!40000 ALTER TABLE `genre` DISABLE KEYS */;
INSERT INTO `genre` VALUES (12,’Adventure’),(14,’Fantasy’),(16,’Animation’),(18,’Drama’),(27,’Horror’),(28,’Action’),(35,’Comedy’),(36,’History’),(37,’Western’),(53,’Thriller’),(80,’Crime’),(99,’Documentary’),(878,’Science Fiction’),(9648,’Mystery’),(10402,’Music’),(10749,’Romance’),(10751,’Family’),(10752,’War’),(10769,’Foreign’),(10770,’TV Movie’);
/*!40000 ALTER TABLE `genre` ENABLE KEYS */;
UNLOCK TABLES;
—
— Table structure for table `keyword`
—
DROP TABLE IF EXISTS `keyword`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `keyword` (
`keyword_id` int(10) NOT NULL,
`keyword_name` varchar(100) DEFAULT NULL,
PRIMARY KEY (`keyword_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
—
— Dumping data for table `keyword`
—
LOCK TABLES `keyword` WRITE;
/*!40000 ALTER TABLE `keyword` DISABLE KEYS */;
INSERT INTO `keyword` VALUES (30,’individual’),(65,’holiday’),(74,’germany’),(75,’gunslinger’),(83,’saving the world’),(90,’paris’),(100,’slum’),(107,’barcelona spain’),(108,’transvestism’),(110,’venice’),(113,’holy grail’),(128,’love triangle’),(131,’italy’),(139,’anti terror’),(186,’christianity’),(187,’islam’),(188,’buddhism’),(211,’bureaucracy’),(212,’london england’),(213,’upper class’),(220,’berlin’),(222,’schizophrenia’),(233,’japan’),(236,’suicide’),(237,’gay’),(240,’underdog’),(242,’new york’),(246,’dancing’),(248,’date’),(254,’france’),(255,’male nudity’),(258,’bomb’),(269,’diving’),(270,’ocean’),(271,’competition’),(272,’transylvania’),(276,’philadelphia’),(279,’usa’),(282,’video game’),(290,’angel’),(291,’circus’),(292,’berlin wall’),(293,’female nudity’),(295,’library’),(305,’moon’),(306,’jupiter’),(310,’artificial intelligence’),(311,’human evolution’),(312,’man vs machine’),(314,’life and death’),(316,’chess’),(318,’police state’),(321,’terror’),(323,’raf’),(324,’portugal’),(328,’insulin’),(331,’tattoo’),(334,’flying’),(339,’submarine’),(345,’monk’),(347,’aristotle’),(351,’poison’),(352,’secret passage’),(365,’ghost train’),(366,’sex-shop’),(367,’shyness’),(369,’kaffeehaus’),(374,’smuggling of arms’),(376,’neo-nazi’),(378,’prison’),(379,’skinhead’),(380,’brother brother relationship’),(383,’poker’),(385,’jules verne’),(386,’railroad robber’),(387,’california’),(388,’scotland’),(389,’clock tower’),(390,’skateboarding’),(391,’flying car’),(392,’england’),(393,’civil war’),(394,’gypsy’),(395,’gambling’),(396,’transporter’),(397,’bare knuckle boxing’),(398,’slang’),(402,’clone’),(407,’dictator’),(409,’africa’),(414,’hunter’),(416,’miami’),(417,’corruption’),(418,’white russian’),(419,’dude’),(420,’bowling’),(422,’vietnam veteran’),(428,’nurse’),(434,’destruction of a civilization’),(437,’painter’),(439,’paradise’),(440,’missionary’),(441,’assassination’),(444,’taxi’),(445,’pornography’),(447,’post traumatic stress disorder’),(455,’farewell’),(456,’mother’),(457,’responsability’),(458,’hippie’),(459,’sexual obsession’),(460,’free love’),(463,’swinger club’),(464,’total destruction’),(467,’megacity’),(470,’spy’),(471,’mount rushmore national memorial’),(472,’bathroom’),(473,’chain’),(476,’self-fulfilling prophecy’),(477,’train station’),(478,’china’),(483,’riddle’),(485,’nepal’),(486,’himalaya’),(487,’cairo’),(488,’moses’),(490,’philosophy’),(493,’poem’),(494,’father son relationship’),(496,’poetry’),(497,’shakespeare’),(502,’ambush’),(503,’federation’),(504,’uss enterprise’),(505,’starfleet’),(509,’denmark’),(514,’spain’),(515,’women’),(516,’child abuse’),(520,’chicago’),(521,’washington d.c.’),(522,’borg’),(526,’rebel’),(529,’ku klux klan’),(530,’prophecy’),(531,’southern usa’),(532,’music record’),(534,’mexico’),(536,’israel’),(537,’palestine’),(539,’middle east’),(542,’street gang’),(544,’sailboat’),(548,’countryside’),(549,’prostitute’),(550,’callgirl’),(554,’manager’),(558,’city portrait’),(559,’peace conference’),(560,’oxygen’),(563,’deja vu’),(566,’sexual identity’),(567,’alcohol’),(570,’rape’),(571,’transsexuality’),(572,’sex’),(577,’black people’),(578,’rock and roll’),(579,’american football’),(582,’san francisco’),(585,’casino’),(586,’new jersey’),(587,’amsterdam’),(588,’rome’),(589,’lebanon’),(591,’cia’),(592,’capitalism’),(593,’globalization’),(596,’adultery’),(603,’elves’),(604,’dwarves’),(606,’orcs’),(609,’middle-earth (tolkien)’),(611,’hobbit’),(612,’hotel’),(613,’new year\’s eve’),(616,’witch’),(622,’bet’),(625,’sadistic’),(627,’killing’),(630,’dolphin’),(633,’record store’),(634,’soul’),(635,’disc jockey’),(637,’pop’),(638,’bruce frederick joseph springsteen’),(639,’record collection’),(641,’single parent’),(642,’robbery’),(643,’horse race’),(650,’gymnastics’),(657,’fire’),(658,’sea’),(660,’monte carlo’),(663,’fortune teller’),(665,’uss enterprise-a’),(671,’enterprise-e’),(679,’cyborg’),(680,’montana’),(690,’gorilla’),(697,’loss of son’),(699,’love at first sight’),(700,’italo-american’),(701,’cuba’),(703,’detective’),(704,’adolescence’),(708,’runaway’),(714,’child labour’),(715,’chocolate’),(716,’vatican’),(717,’pope’),(718,’confession’),(720,’helicopter’),(725,’lovesickness’),(726,’drug abuse’),(727,’country music’),(730,’factory worker’),(732,’coma’),(733,’dancer’),(736,’journalist’),(738,’sexuality’),(739,’sexual abuse’),(740,’aids’),(741,’transplantation’),(744,’madrid’),(745,’nun’),(746,’vulkan’),(747,’genesis’),(748,’sha-ka-ree’),(750,’rura penthe’),(766,’beethoven’),(768,’romulus’),(769,’falsely accused’),(770,’scotland yard’),(772,’handcuffs’),(774,’film business’),(776,’screenplay’),(779,’martial arts’),(780,’kung fu’),(782,’assassin’),(787,’mississippi’),(789,’muslim’),(791,’mentally disabled’),(792,’copenhagen’),(793,’drowning’),(794,’red hair’),(795,’running’),(796,’police brutality’),(797,’showdown’),(798,’sheriff’),(800,’bounty’),(801,’bounty hunter’),(802,’regret’),(803,’android’),(810,’budapest’),(811,’dialogue’),(813,’sunrise’),(814,’talking’),(815,’soulmates’),(816,’walking’),(817,’bookshop’),(818,’based on novel’),(822,’airport’),(824,’drag queen’),(825,’support group’),(826,’heterosexual’),(828,’waitress’),(830,’car race’),(833,’white house’),(835,’jewry’),(836,’resistance’),(837,’show business’),(839,’mars’),(840,’usa president’),(843,’cataclysm’),(848,’double life’),(849,’dc comics’),(851,’dual identity’),(852,’chemical’),(853,’crime fighter’),(855,’fictional place’),(856,’paraplegic’),(879,’brain tumor’),(881,’money transfer’),(885,’villa’),(886,’film making’),(887,’film producer’),(888,’screenwriter’),(890,’races’),(893,’irony’),(894,’depression’),(895,’optimism’),(897,’rap music’),(898,’hip-hop’),(899,’rhyme battle’),(900,’trailer park’),(901,’groundhog’),(902,’weather forecast’),(903,’telecaster’),(904,’pennsylvania’),(905,’alarm clock’),(906,’job-hopping’),(907,’japanese’),(910,’bondage’),(911,’exotic island’),(915,’car thief’),(916,’marseille’),(917,’journalism’),(918,’newspaper’),(919,’smoking’),(922,’hotel room’),(924,’italian’),(928,’hairdresser’),(930,’in love with enemy’),(931,’jealousy’),(933,’michigan’),(934,’judge’),(936,’loss of mother’),(941,’tradition’),(947,’prohibition’),(949,’terrorist’),(951,’delorean’),(952,’lightning’),(953,’guitar’),(955,’plutonium’),(956,’almanac’),(957,’indian territory’),(958,’indian lead’),(960,’homeless person’),(963,’loss of brother’),(964,’servant’),(965,’age difference’),(966,’beach’),(968,’manchester city’),(970,’parents kids relationship’),(971,’rwanda’),(972,’refugee’),(973,’refugee camp’),(974,’bank’),(975,’money laundering’),(977,’cat’),(978,’broken engagement’),(983,’brazilian’),(985,’candy’),(986,’tv addicted person’),(987,’overweight child’),(990,’squirrel’),(992,’bus’),(994,’paralympics’),(995,’cinderella’),(996,’expensive restaurant’),(999,’sports car’),(1001,’underground world’),(1002,’authority’),(1003,’photographer’),(1004,’commercial’),(1005,’karaoke’),(1007,’homesickness’),(1008,’guerrilla’),(1009,’baby’),(1010,’bar’),(1013,’homophobia’),(1014,’loss of lover’),(1016,’wyoming’),(1019,’rodeo’),(1022,’workaholic’),(1023,’fire escape’),(1025,’great britain’),(1155,’brother sister relationship’),(1156,’sister sister relationship’),(1157,’wife husband relationship’),(1158,’grandfather grandson relationship’),(1160,’egypt’),(1161,’brazil’),(1189,’profession’),(1191,’norway’),(1192,’sweden’),(1196,’florida’),(1197,’nevada’),(1199,’netherlands’),(1200,’greece’),(1201,’austria’),(1202,’monaco’),(1208,’irland’),(1209,’wales’),(1222,’zurich’),(1223,’switzerland’),(1224,’radio station’),(1227,’cemetery’),(1228,’1970s’),(1233,’composer’),(1240,’eating and drinking’),(1241,’persia’),(1242,’war against terror’),(1244,’hungary’),(1245,’illinois’),(1252,’suicide attempt’),(1253,’roommate’),(1254,’music style’),(1261,’river’),(1262,’mountains’),(1269,’energy policy’),(1279,’medicine’),(1280,’lasergun’),(1284,’identity’),(1291,’central and south america’),(1293,’asia’),(1294,’whip’),(1295,’europe’),(1296,’shared universe’),(1297,’predator’),(1299,’monster’),(1307,’butler’),(1308,’secret identity’),(1310,’mentor’),(1313,’mental disease’),(1316,’captain’),(1317,’card game’),(1318,’blacksmith’),(1319,’east india trading company’),(1321,’gold’),(1322,’money delivery’),(1326,’infidelity’),(1327,’war crimes’),(1328,’secret’),(1329,’canada’),(1332,’cheating’),(1333,’desperation’),(1334,’wedding vows’),(1335,’sense of guilt’),(1336,’ransom’),(1337,’carpet’),(1338,’bachelor’),(1339,’duck’),(1342,’dancing master’),(1346,’dance performance’),(1353,’underground’),(1356,’billard’),(1357,’fish’),(1360,’minnesota’),(1361,’salesclerk’),(1365,’harley davidson’),(1366,’shotgun’),(1373,’killer robot’),(1375,’submachine gun’),(1376,’assault rifle’),(1378,’laserpointer’),(1381,’sun glasses’),(1382,’factory’),(1384,’diamant’),(1388,’cinema’),(1394,’gladiator’),(1395,’arena’),(1396,’colosseum’),(1399,’senate’),(1400,’swordplay’),(1402,’general’),(1405,’roman empire’),(1406,’night watchman’),(1407,’montmartre’),(1408,’shoe seller’),(1411,’brothel’),(1412,’becoming an adult’),(1415,’small town’),(1416,’jazz’),(1417,’jurors’),(1418,’skyscraper’),(1419,’gun’),(1420,’gas station’),(1421,’birthday’),(1422,’boat’),(1423,’asteroid’),(1430,’self sacrifice’),(1432,’nasa’),(1435,’scissors’),(1436,’inventor’),(1437,’burglar’),(1438,’office’),(1439,’flat’),(1440,’spaghetti’),(1441,’christmas party’),(1442,’winter’),(1443,’clerk’),(1445,’ice’),(1447,’indiana’),(1448,’distrust’),(1449,’underworld’),(1452,’loss of child’),(1453,’amnesia’),(1454,’treasure’),(1456,’medallion’),(1457,’corset’),(1459,’marriage proposal’),(1461,’compass’),(1462,’samurai’),(1463,’culture clash’),(1465,’loss of family’),(1468,’child murderer’),(1470,’s.w.a.t.’),(1471,’places and planets’),(1472,’starships’),(1474,’policy and organisations’),(1475,’telepathy’),(1477,’world cup’),(1480,’baseball’),(1482,’trainer’),(1483,’sports team’),(1484,’pitcher’),(1485,’stadium’),(1486,’flirt’),(1487,’tennis racket’),(1488,’tennis’),(1489,’river thames’),(1490,’cleaning lady’),(1491,’entertainer’),(1495,’fishing’),(1499,’pastor’),(1501,’allegory’),(1502,’marshal’),(1505,’famous score’),(1507,’clock’),(1508,’new mexico’),(1515,’block party’),(1516,’megaphone’),(1517,’classroom’),(1521,’time warp’),(1522,’repayment’),(1523,’obsession’),(1524,’surfer’),(1525,’puberty’),(1526,’home’),(1527,’gladiator fight’),(1529,’buddhist monk’),(1530,’temple’),(1531,’mountain lake’),(1533,’isolation’),(1534,’attachment to nature’),(1536,’religious education’),(1541,’nihilism’),(1543,’war veteran’),(1544,’locomotive’),(1545,’supermarket’),(1546,’ambulance’),(1547,’mexico city’),(1550,’militia’),(1551,’indigenous’),(1552,’subway’),(1553,’pottery’),(1556,’texas’),(1559,’deputy sheriff’),(1560,’dynamite’),(1562,’hostage’),(1563,’prisoner’),(1565,’loss of sense of reality’),(1566,’dream’),(1567,’intensive care’),(1568,’undercover’),(1571,’return’),(1576,’technology’),(1577,’solidarity’),(1578,’loss of sister’),(1582,’saloon’),(1583,’mass murder’),(1584,’yellow press’),(1585,’snake’),(1587,’way of life’),(1589,’sniper’),(1591,’ex-detainee’),(1594,’ex-boyfriend’),(1595,’ex-girlfriend’),(1596,’anonymous letter’),(1599,’midlife crisis’),(1601,’war on drugs’),(1603,’extraterrestrial technology’),(1604,’operation’),(1605,’new love’),(1608,’twin sister’),(1610,’country estate’),(1611,’hotelier’),(1612,’spacecraft’),(1613,’terraforming’),(1615,’simulator’),(1617,’cadet’),(1618,’radiation’),(1621,’robber’),(1623,’casablanca’),(1625,’emigration’),(1626,’visa’),(1627,’patriotism’),(1628,’nationalism’),(1629,’morocco’),(1631,’concentration camp’),(1632,’opium’),(1635,’deaf-mute’),(1638,’translation’),(1640,’conservatory’),(1643,’deafness’),(1646,’autism’),(1647,’sadness’),(1649,’provence’),(1650,’cook’),(1653,’explosive’),(1655,’country house’),(1660,’suppressed past’),(1661,’sarajevo’),(1662,’bosnia and herzegovina’),(1663,’go-go dancer’),(1664,’eroticism’),(1666,’mexican standoff’),(1667,’pimp’),(1668,’hawaii’),(1669,’wave’),(1670,’sun’),(1671,’surfboard’),(1672,’lifestyle’),(1673,’brass band’),(1674,’stage’),(1675,’illustrator’),(1679,’arbitrary law’),(1680,’boston’),(1682,’workers\’ quarter’),(1683,’gadget’),(1686,’home run’),(1690,’belgium’),(1691,’dance’),(1698,’ideology’),(1700,’massachusetts’),(1701,’hero’),(1704,’ambassador’),(1705,’congress’),(1706,’experiment’),(1715,’symbolism’),(1716,’milieu’),(1718,’dna’),(1719,’paleontology’),(1720,’tyrannosaurus rex’),(1721,’fight’),(1729,’migration’),(1731,’writing’),(1732,’innkeeper’),(1735,’amateur detective’),(1738,’ukraine’),(1739,’holocaust’),(1740,’pop culture’),(1741,’blindness and impaired vision’),(1743,’journey in the past’),(1745,’passion for collection’),(1749,’taxi driver’),(1752,’detective inspector’),(1755,’fascism’),(1756,’opression’),(1757,’passenger’),(1759,’night life’),(1760,’casual meeting’),(1761,’metropolis’),(1764,’triceratops’),(1765,’brontosaurus’),(1766,’velociraptor’),(1767,’electric fence’),(1768,’san diego’),(1770,’spinosaurus’),(1772,’german democratic republic’),(1773,’socialism’),(1774,’news broadcast’),(1775,’demonstration’),(1776,’stasi’),(1782,’thumb’),(1786,’heart attack’),(1788,’chinatown’),(1789,’boomerang’),(1792,’cliff’),(1794,’yakuza’),(1796,’sake’),(1797,’loyalty’),(1799,’schutzstaffel’),(1803,’drug addiction’),(1805,’curfew’),(1806,’deserter’),(1808,’lover (female)’),(1809,’rio de janeiro’),(1811,’wine cellar’),(1812,’fbi’),(1813,’toxication’),(1815,’atomic bomb’),(1817,’orgy’),(1820,’trip’),(1822,’bath’),(1824,’self-destruction’),(1825,’countdown’),(1826,’space marine’),(1828,’space suit’),(1829,’beheading’),(1846,’craftsman’),(1847,’istanbul’),(1849,’homicide’),(1850,’daily life’),(1852,’mutant’),(1854,’world of fasion’),(1857,’irish-american’),(1859,’arizona’),(1860,’mutiny’),(1862,’coming out’),(1865,’biological weapon’),(1866,’bad smell’),(1872,’loss of father’),(1873,’yuppie’),(1874,’car dealer’),(1879,’shower’),(1880,’mobile phone’),(1881,’dutch’),(1888,’row’),(1889,’lake’),(1890,’camping’),(1891,’tent’),(1895,’jet lag’),(1896,’portland’),(1897,’oregon’),(1899,’hunger’),(1900,’immigration’),(1906,’egocentrism’),(1907,’fictitious marriage’),(1908,’katana’),(1909,’coffin’),(1912,’habor’),(1913,’atlantic ocean’),(1915,’gibraltar’),(1918,’cooking’),(1919,’mayor’),(1922,’houseboat’),(1924,’praline’),(1925,’camera’),(1926,’car journey’),(1927,’car breakdown’),(1929,’bank manager’),(1930,’kidnapping’),(1933,’nazi background’),(1936,’blackmail’),(1937,’document’),(1938,’sword’),(1939,’hamster’),(1941,’ecstasy’),(1942,’strangeness’),(1944,’epilepsy’),(1945,’lethargy’),(1946,’restaurant’),(1947,’answering machine’),(1948,’literature research’),(1949,’pyramid’),(1950,’vororte’),(1952,’socially deprived family’),(1953,’vault’),(1954,’ultimatum’),(1956,’world war ii’),(1958,’toscana’),(1959,’burn’),(1960,’mine’),(1961,’landmine’),(1963,’expedition’),(1964,’cave’),(1965,’sandstorm’),(1966,’royal geographic society’),(1967,’cave painting’),(1968,’prisoners of war’),(1969,’map’),(1971,’mine clearer’),(1972,’hearing’),(1974,’breakdance’),(1975,’arabian’),(1977,’denver’),(1981,’colorado’),(1985,’prenzlauer berg’),(1990,’cupboard’),(1991,’santa claus’),(1992,’professor’),(1994,’wolf’),(1998,’shop’),(2001,’arms deal’),(2005,’tree house’),(2006,’extremsport’),(2007,’saxophone’),(2011,’queen’),(2013,’attempted murder’),(2016,’vandalism’),(2019,’liberation of prisoners’),(2020,’revolution’),(2022,’godmother’),(2024,’wisconsin’),(2025,’tractor’),(2026,’lawnmower’),(2029,’iowa’),(2032,’pop singer’),(2033,’hades’),(2034,’hermes’),(2035,’mythology’),(2036,’greek mythology’),(2037,’nordic mythology’),(2038,’love of one\’s life’),(2039,’sexual frustration’),(2041,’island’),(2042,’beaver’),(2043,’lion’),(2045,’cynic’),(2050,’desert scientist’),(2051,’intelligence’),(2052,’traitor’),(2053,’mural painting’),(2055,’creative crisis’),(2060,’penalty’),(2062,’restart’),(2063,’taskmaster’),(2064,’overweight’),(2065,’province’),(2069,’bathing’),(2070,’olympic games’),(2071,’caribbean islands’),(2072,’chauffeur’),(2073,’illiteracy’),(2074,’pflegeheim’),(2075,’alabama’),(2076,’atlanta’),(2078,’mammoth’),(2079,’sloth’),(2080,’stewardess’),(2081,’department store’),(2082,’sailing trip’),(2086,’youngster’),(2087,’lolita’),(2088,’anti-authoritarian upbringing’),(2089,’harmonica’),(2095,’anti hero’),(2096,’auction’),(2098,’fountain’),(2101,’garage’),(2102,’brother-in-law’),(2103,’old town’),(2105,’garden’),(2106,’cold war’),(2109,’communist’),(2110,’capitalist’),(2111,’soviet union’),(2112,’headquarter’),(2116,’sleep’),(2117,’subconsciousness’),(2118,’sultriness’),(2122,’death penalty’),(2123,’father murder’),(2124,’puerto rican’),(2125,’gallows’),(2132,’literature’),(2134,’press’),(2135,’radio’),(2136,’television’),(2137,’totalitarian regime’),(2139,’russia’),(2142,’anonymity’),(2143,’loss of parents’),(2147,’claustrophobia’),(2148,’colombia’),(2149,’drug traffic’),(2150,’cocaine’),(2151,’drug crime’),(2156,’homeland’),(2157,’hacker’),(2158,’maze’),(2159,’red cap’),(2161,’mouse’),(2163,’civilization’),(2172,’zoo’),(2173,’illegal immigration’),(2174,’maquiladora’),(2176,’music teacher’),(2177,’sauna’),(2178,’fab four’),(2181,’springfield’),(2182,’bars and restaurants’),(2184,’the simpsons’),(2187,’riot’),(2199,’opera’),(2200,’generations confilct’),(2201,’first time’),(2203,’unexpected happiness’),(2205,’duff beer’),(2206,’piggy bank’),(2210,’climate change’),(2212,’greenhouse effect’),(2213,’tornado’),(2214,’twister’),(2215,’hurricane’),(2216,’hail’),(2217,’rain’),(2218,’temperature drop’),(2219,’ice age’),(2220,’polar zone’),(2221,’meteorology’),(2222,’gulfstream’),(2223,’barrier ice’),(2224,’ice melting’),(2225,’third world’),(2226,’exodus’),(2227,’evacuation’),(2231,’drug dealer’),(2235,’drug mule’),(2236,’protection money’),(2246,’confidence’),(2248,’moderator’),(2249,’camcorder’),(2250,’menace’),(2251,’lie’),(2269,’aquarium’),(2273,’role of women’),(2274,’sikh’),(2276,’talent’),(2278,’women\’s soccer’),(2280,’emperor’),(2281,’mistake in person’),(2282,’love of animals’),(2283,’ball’),(2284,’horseback riding’),(2285,’telegram’),(2286,’border’),(2295,’eastern block’),(2296,’border patrol’),(2297,’interpreter’),(2298,’bankrupt’),(2299,’violent father’),(2300,’despair’),(2301,’architect’),(2303,’mathematician’),(2304,’market economy’),(2305,’economic theory’),(2307,’princeton university’),(2309,’nobel prize’),(2314,’pentagon’),(2315,’jewish life’),(2316,’women\’s sexual identity’),(2317,’conductor’),(2318,’choir’),(2320,’violent husband’),(2321,’bunker’),(2322,’thirst’),(2323,’group dynamics’),(2325,’wrong accusal’),(2326,’alibi’),(2333,’campsite’),(2334,’nightclub’),(2335,’southern france’),(2336,’ladykiller’),(2337,’pedophilia’),(2339,’political activism’),(2340,’paranoia’),(2341,’nanny’),(2342,’laughing’),(2343,’magic’),(2344,’chimney sweeper’),(2345,’spaceman’),(2346,’worker’),(2347,’idaho’),(2348,’hustler’),(2349,’german’),(2350,’seattle’),(2352,’narkolepsy’),(2353,’pink bathrobe’),(2355,’american dream’),(2356,’immigrant’),(2358,’helix’),(2359,’headache’),(2362,’chaos theory’),(2367,’rehabilitation’),(2374,’bad mother-in-law’),(2375,’junkie’),(2376,’perversity’),(2380,’audio tape’),(2381,’wedding planer’),(2382,’flower’),(2383,’feminism’),(2385,’monsoon’),(2386,’empowerment’),(2387,’new delhi india’),(2389,’virgin’),(2390,’migraine’),(2392,’koran’),(2393,’adoption’),(2394,’ghetto’),(2398,’narration’),(2400,’juvenile prison’),(2401,’grandmother grandson relationship’),(2404,’masked ball’),(2405,’roof’),(2406,’picnic’),(2407,’fireworks’),(2408,’cu00f4te d\’azur’),(2409,’church choir’),(2410,’choirmaster’),(2411,’new orleans’),(2412,’commune’),(2415,’idiot’),(2416,’publicity’),(2417,’self-awareness’),(2419,’staging’),(2422,’mockery’),(2423,’simulation’),(2425,’bodily disabled person’),(2426,’group sex’),(2428,’deportation’),(2429,’will to survive’),(2430,’hiding place’),(2431,’ghetto riot’),(2433,’jew persecution’),(2434,’liberation’),(2435,’warsaw ghetto’),(2436,’polish resistance’),(2437,’munich’),(2438,’social worker’),(2441,’donut’),(2444,’jewish ghetto’),(2449,’black market’),(2451,’gas chamber’),(2452,’crematorium’),(2456,’industrialist’),(2458,’profit’),(2461,’mathematical theorem’),(2462,’m.i.t.’),(2463,’harvard university’),(2466,’sarcasm’),(2467,’difficult childhood’),(2468,’foster parents’),(2470,’education’),(2471,’monarchy’),(2475,’kazakhstan’),(2477,’demeanor course’),(2479,’chicken’),(2480,’eye operation’),(2481,’eyesight’),(2482,’swear word’),(2483,’nudity’),(2486,’fantasy’),(2487,’naivety’),(2488,’self-abandonment’),(2489,’hereditary disease’),(2490,’loss of eyesight’),(2492,’bank robber’),(2493,’oklahoma’),(2494,’ohio’),(2495,’georgia’),(2499,’heal’),(2501,’death row’),(2504,’world war i’),(2505,’coronation’),(2509,’hippopotamus’),(2510,’giraffe’),(2517,’leech’),(2519,’canadian’),(2521,’kongo’),(2522,’grizzly bear’),(2526,’human animal relationship’),(2527,’fox’),(2528,’hydrogen bomb’),(2531,’strategic air command’),(2532,’bomber’),(2533,’fighter pilot’),(2534,’missile’),(2535,’destroy’),(2538,’begnadigung’),(2539,’harassment’),(2544,’ugliness’),(2546,’mask’),(2547,’new identity’),(2551,’pet’),(2552,’chimp’),(2553,’puppeteer’),(2554,’macho’),(2559,’film maker’),(2560,’paparazzi’),(2562,’press conference’),(2564,’wheelchair’),(2565,’bath tub’),(2566,’cohabitant’),(2567,’vertigo’),(2568,’language barrier’),(2569,’prime minister’),(2570,’rock star’),(2571,’tv show’),(2573,’metal detector’),(2574,’lunatic asylum’),(2580,’shipwreck’),(2581,’giant wave’),(2583,’blackout’),(2585,’appropriation of another human being’),(2586,’externally controlled action’),(2587,’married couple’),(2588,’brain’),(2589,’pet shop’),(2591,’tarot cards’),(2594,’magic show’),(2596,’lordship’),(2597,’bigfoot’),(2598,’museum’),(2600,’crisis line’),(2601,’telephone joke’),(2602,’cellar’),(2604,’babysitter’),(2606,’jew’),(2609,’textile industry’),(2613,’luxury’),(2614,’inhumanity’),(2618,’miracle’),(2619,’suspicion of murder’),(2620,’evidence’),(2623,’headline’),(2624,’czech’),(2626,’exorcism’),(2628,’site of pilgrimage’),(2629,’psychological stress’),(2630,’cutting the cord’),(2635,’overdose’),(2636,’blues’),(2637,’bishop’),(2638,’cathedral’),(2639,’falcon’),(2640,’twilight’),(2642,’solar eclipse’),(2643,’dead wish’),(2646,’bird’),(2650,’leather jacket’),(2651,’nanotechnology’),(2652,’nazis’),(2655,’group therapy’),(2656,’hat’),(2658,’new zealand’),(2659,’maori’),(2660,’strong woman’),(2667,’maori tradition’),(2669,’motel’),(2671,’heroin’),(2672,’baltimore’),(2673,’horse’),(2676,’honeymoon’),(2677,’weekend’),(2679,’artist’),(2682,’shanghai’),(2683,’tango’),(2684,’dancing class’),(2686,’chambers of a barrister’),(2687,’fiancu00e9′),(2689,’dementia’),(2690,’heart disease’),(2692,’arranged marriage’),(2693,’monopoly’),(2694,’cold turkey’),(2695,’ex-lover’),(2696,’drums’),(2697,’mexican province’),(2698,’celibacy’),(2699,’fetish’),(2700,’sperm’),(2702,’golf’),(2706,’milan’),(2708,’hitman’),(2710,’fairy’),(2711,’marcus square’),(2723,’medium’),(2725,’sunlight’),(2726,’therapist’),(2727,’porn actor’),(2732,’rocket launcher’),(2733,’firemen’),(2735,’veterinarian’),(2736,’fire engine’),(2749,’riding accident’),(2751,’career woman’),(2752,’ranch’),(2753,’horse whisperer’),(2754,’trauma’),(2755,’country life’),(2766,’mutation’),(2768,’atlantis’),(2769,’deep sea’),(2770,’war ship’),(2772,’diving suit’),(2776,’bus ride’),(2778,’florist’),(2779,’flower shop’),(2783,’family\’s daily life’),(2784,’mother role’),(2792,’boxer’),(2793,’film director’),(2794,’oddball’),(2795,’mystic’),(2796,’self-discovery’),(2797,’mother-in-law’),(2799,’cruise’),(2800,’psychology’),(2801,’self-defense’),(2802,’mountain village’),(2804,’exploitation’),(2805,’rocky mountains’),(2808,’russian’),(2812,’computer virus’),(2815,’graffiti’),(2816,’street art’),(2818,’vernissage’),(2819,’exhibit’),(2820,’wound’),(2821,’pacifism’),(2831,’slavery’),(2833,’psychoanalysis’),(2834,’room’),(2835,’neurosis’),(2836,’cheese’),(2842,’sigmund freud’),(2843,’fetishism’),(2846,’prime number’),(2847,’entrapment’),(2848,’tennis player’),(2849,’key’),(2850,’testament’),(2852,’proof’),(2853,’mediterranean’),(2854,’ark of the covenant’),(2856,’ten commandments’),(2857,’elephant’),(2858,’sacrifice’),(2859,’lava’),(2860,’heart’),(2861,’gallery’),(2863,’mannequin’),(2864,’one-night stand’),(2866,’exam’),(2867,’pest’),(2868,’crusade’),(2869,’juggler’),(2870,’mephisto’),(2871,’burning of witches’),(2872,’window’),(2874,’spanner’),(2875,’sense of life’),(2878,’scientific study’),(2879,’aggression’),(2881,’jail guard’),(2883,’imprisonment’),(2884,’asylum’),(2885,’prison cell’),(2887,’manipulation’),(2900,’buenos aires’),(2901,’crusader’),(2902,’space battle’),(2903,’propaganda’),(2904,’mummy’),(2905,’foreign legion’),(2906,’nile’),(2908,’secret society’),(2911,’dakota’),(2912,’buffalo’),(2913,’diary’),(2914,’chief’),(2918,’estate agent’),(2919,’rose garden’),(2920,’cheerleader’),(2921,’school friend’),(2922,’suburbian idyll’),(2923,’fitness-training’),(2930,’freedom of speech’),(2935,’house search’),(2936,’artists\’ life’),(2940,’mexican revolution’),(2941,’albania’),(2943,’sex scandal’),(2944,’senator’),(2946,’presidential election’),(2951,’mercifulness’),(2952,’gulf war’),(2953,’media adviser’),(2954,’manipulation of the media’),(2956,’vietnam’),(2957,’vietnam war’),(2959,’vietcong’),(2960,’cambodia’),(2964,’future’),(2966,’louvre’),(2967,’leonardo da vinci’),(2968,’grave’),(2969,’curator’),(2970,’symbologist’),(2971,’grandfather granddaughter relationship’),(2974,’jesus christ’),(2975,’opus dei’),(2976,’heresy’),(2978,’mona lisa’),(2980,’wiretap’),(2981,’homelessness’),(2982,’leaving one\’s family’),(2983,’passion’),(2984,’iceberg’),(2987,’gang war’),(2988,’shark attack’),(2992,’diva’),(2993,’police chief’),(2996,’ferry boat’),(2998,’gi’),(2999,’recruit’),(3002,’fog’),(3009,’farm worker’),(3010,’intolerance’),(3011,’exclusion’),(3012,’court case’),(3013,’jfk international airport’),(3014,’immigration law’),(3015,’fast food restaurant’),(3016,’security camera’),(3017,’jazz musician’),(3018,’saxophonist’),(3019,’autograph’),(3020,’sheep’),(3022,’passport’),(3023,’eastern europe’),(3026,’reality’),(3028,’penguin’),(3030,’nightmare’),(3032,’suffering’),(3033,’apostle’),(3034,’last supper’),(3035,’roman’),(3036,’bible’),(3037,’mossad’),(3038,’israeli’),(3039,’palestinian’),(3043,’beirut’),(3044,’olympian sports team’),(3045,’mission of murder’),(3046,’ailul al aswad’),(3047,’plo’),(3048,’bomb constructor’),(3049,’baader-meinhof group’),(3051,’hostage drama’),(3052,’olympian village’),(3054,’capitulation’),(3055,’soviet troops’),(3058,’underage soldier’),(3060,’race politics’),(3061,’national socialism’),(3063,’adolf hitler’),(3064,’ultimate victory’),(3065,’minister’),(3068,’national socialist party’),(3070,’mercenary’),(3071,’prince’),(3072,’campaign’),(3073,’commercial agreement’),(3074,’insurgence’),(3075,’ninja fighter’),(3077,’leader’),(3078,’war strategy’),(3080,’gettysburg’),(3088,’bodyguard’),(3089,’oscar award’),(3090,’loser’),(3092,’slime’),(3093,’ghostbuster’),(3094,’australian’),(3095,’antiquary’),(3096,’book’),(3097,’picture puzzle’),(3098,’castle’),(3099,’satanism’),(3126,’ant’),(3130,’edinburgh’),(3131,’modern society’),(3133,’vampire’),(3134,’louisiana’),(3136,’plantation’),(3143,’pity’),(3149,’gangster boss’),(3151,’scarecrow’),(3152,’planned murder’),(3170,’cigarette’),(3177,’fan’),(3179,’sanatorium’),(3180,’sailing’),(3181,’pretended murder’),(3182,’seduction’),(3183,’bisexuality’),(3184,’alligator’),(3185,’crocodile’),(3186,’everglades’),(3188,’heart-throb’),(3189,’white trash’),(3190,’menage a trois’),(3192,’intellectually gifted’),(3193,’harpoon’),(3197,’riding a bicycle’),(3199,’clown’),(3200,’platonic love’),(3201,’orgasm’),(3202,’con man’),(3203,’pilot’),(3205,’fairy tale’),(3206,’story teller’),(3207,’concentration camp prisoner’),(3208,’bunny’),(3217,’plato’),(3219,’precognition’),(3221,’rave’),(3222,’super computer’),(3223,’machine town’),(3225,’ying yang’),(3228,’bolivia’),(3230,’male friendship’),(3236,’phasing’),(3240,’giant cockroach’),(3242,’cannon’),(3243,’flying saucer’),(3244,’pinocchio’),(3246,’prosecution’),(3248,’gigolo’),(3249,’hologram’),(3255,’door’),(3256,’infant’),(3258,’beauty’),(3259,’rose’),(3260,’masochism’),(3261,’street war’),(3262,’surgeon’),(3263,’american way of life’),(3265,’trojan war’),(3266,’jamaica’),(3268,’secret base’),(3269,’secret mission’),(3270,’baccarat’),(3271,’secret organization’),(3272,’secret intelligence service’),(3275,’nuclear radiation’),(3278,’kgb’),(3279,’orient express’),(3281,’zagreb’),(3282,’gondola’),(3284,’phantom’),(3286,’fort knox’),(3287,’aston martin’),(3288,’secret lab’),(3289,’villain’),(3290,’laser’),(3291,’kentucky’),(3292,’chinese woman’),(3293,’gas attack’),(3296,’car mechanic’),(3297,’videoband’),(3298,’hallucination’),(3301,’suspicion’),(3302,’bloodthirstiness’),(3303,’bedroom’),(3305,’housebreaking’),(3306,’highway’),(3307,’surreal’),(3312,’nuclear missile’),(3321,’childhood memory’),(3330,’pizza delivery’),(3335,’halloween’),(3337,’metereologist’),(3338,’invention’),(3341,’leprosy’),(3342,’yacht’),(3343,’coral reef’),(3344,’letter’),(3345,’bahamas’),(3346,’sumo ringer’),(3347,’volcano’),(3350,’poltergeist’),(3352,’tree’),(3355,’inuit’),(3356,’quebec’),(3358,’haunted house’),(3363,’hypnosis’),(3364,’sushi restaurant’),(3365,’pearl harbor’),(3366,’u.s. air force’),(3370,’kilt’),(3371,’family history’),(3372,’title of nobility’),(3373,’snow storm’),(3376,’satellite’),(3379,’diamond mine’),(3385,’cryogenics’),(3386,’space war’),(3387,’vacuum’),(3388,’space colony’),(3389,’warrior woman’),(3390,’motorboat’),(3391,’drug smuggle’),(3392,’voodoo’),(3393,’tombstone’),(3394,’identity crisis’),(3396,’probation assistant ‘),(3398,’release from prison’),(3405,’blow job’),(3407,’suffocation’),(3412,’star’),(3416,’radio wave’),(3417,’wormhole’),(3419,’fanatic’),(3423,’liquor’),(3428,’speed’),(3429,’diet’),(3430,’pickpocket’),(3431,’materialism’),(3432,’bangkok’),(3434,’thailand’),(3435,’floatplane’),(3436,’karate’),(3437,’death sentence’),(3440,’doomed man’),(3441,’sentence’),(3442,’lethal injection’),(3443,’excrements ‘),(3444,’disgust’),(3445,’dog dirt’),(3446,’forgiveness’),(3447,’charity’),(3448,’mercy petition’),(3450,’bridge’),(3451,’housewife’),(3452,’love letter’),(3453,’parents-in-law’),(3454,’orderly’),(3455,’just married’),(3456,’sex therapy’),(3457,’cellist’),(3458,’bartender’),(3460,’russian revolution 1917′),(3461,’lenin’),(3462,’tzar’),(3464,’tanker’),(3465,’sphinx’),(3466,’sardinien’),(3467,’warhead’),(3468,’jet ski’),(3469,’utopia’),(3473,’carnival’),(3476,’ski jump’),(3478,’parrot’),(3481,’cryptographic device’),(3483,’gang of smugglers’),(3485,’comedian’),(3486,’fashion journal’),(3487,’assistant’),(3488,’job entrant’),(3489,’job interview’),(3490,’pop star’),(3494,’admiration’),(3496,’snake charmer’),(3497,’hot air balloon’),(3501,’bed’),(3508,’underwear’),(3510,’kenia’),(3512,’coffee plantation’),(3513,’safari’),(3515,’banker’),(3518,’ascot’),(3519,’silicon valley’),(3520,’zeppelin’),(3521,’earthquake’),(3522,’snowboarding’),(3523,’microchip’),(3524,’doping’),(3525,’racehorse’),(3528,’flooding’),(3529,’renegade’),(3530,’prague’),(3531,’special car’),(3532,’tangier morocco’),(3534,’big wheel’),(3535,’pipeline’),(3536,’cello’),(3537,’orchestra’),(3538,’freedom fighter’),(3539,’czechoslovakia’),(3540,’bratislava’),(3541,’afghanistan’),(3543,’transport of prisoners’),(3544,’machete’),(3545,’tank car’),(3546,’florida keys’),(3547,’coast guard’),(3548,’plagiarism’),(3549,’literature competition’),(3551,’private school’),(3553,’manuscript’),(3556,’seclusion’),(3558,’pulitzer prize’),(3560,’cossack’),(3561,’electromagnetic pulse’),(3562,’time bomb’),(3563,’st. petersburg russia’),(3564,’ejection seat’),(3568,’lone wolf’),(3570,’three kings’),(3571,’crucifixion’),(3575,’jerusalem’),(3576,’raumschiffabsturz’),(3577,’snob’),(3581,’witness’),(3582,’bride’),(3583,’bridegroom’),(3584,’bridesmaid’),(3586,’tv station’),(3587,’media tycoon’),(3588,’navy’),(3590,’piano lessons’),(3591,’settler’),(3593,’wilderness’),(3595,’deceived husband’),(3597,’evisceration’),(3598,’ax’),(3599,’defense industry’),(3600,’gun rampage’),(3603,’fascist’),(3605,’baseball bat’),(3607,’hold-up robbery’),(3609,’frustration’),(3612,’traffic jam’),(3614,’disappointment’),(3616,’college’),(3617,’nuclear scientist’),(3622,’stowaway’),(3623,’cabin’),(3625,’silver’),(3628,’daywalker’),(3630,’half vampire’),(3633,’dracula’),(3635,’national security agency (nsa)’),(3637,’double agent’),(3638,’solar energy’),(3640,’work’),(3644,’south africa’),(3645,’madagascar’),(3648,’archangel gabriel’),(3649,’holy water’),(3650,’child hero’),(3658,’career’),(3664,’research’),(3667,’time’),(3679,’society’),(3681,’economy’),(3683,’law and ethics’),(3684,’religion and supernatural’),(3687,’graduation’),(3688,’strip club’),(3691,’forbidden love’),(3692,’scandal’),(3693,’climate’),(3694,’weather’),(3695,’berkeley’),(3698,’mobbing’),(3700,’garbage’),(3701,’client’),(3703,’law’),(3704,’plants’),(3713,’chase’),(3714,’human being’),(3720,’power’),(3721,’health’),(3725,’pregnancy and birth’),(3730,’recreation’),(3734,’ambition’),(3735,’boat accident’),(3737,’dying and death’),(3739,’funeral’),(3740,’radio presenter’),(3741,’talk show’),(3743,’season’),(3746,’professor for literature’),(3748,’morning’),(3752,’night’),(3754,’legend’),(3755,’transience’),(3758,’appearance’),(3760,’light’),(3762,’darkness’),(3767,’noises’),(3769,’voice’),(3772,’heat’),(3773,’kampfjet’),(3776,’officer’),(3777,’training camp’),(3779,’air force’),(3787,’village and town’),(3792,’transportation’),(3796,’auto’),(3797,’bicycle’),(3799,’ship’),(3800,’airplane’),(3801,’space travel’),(3804,’post’),(3805,’relocation’),(3810,’jumping’),(3817,’chance’),(3822,’teleportation’),(3836,’success’),(3837,’failure’),(3843,’inferiority’),(3847,’coaction’),(3848,’support’),(3851,’dangerous’),(3852,’safety’),(3857,’lust and impulsiveness’),(3859,’alcatraz’),(3861,’loss of powers’),(3864,’false identity’),(3868,’face transplant’),(3872,’broom’),(3873,’sorcerer\’s apprentice’),(3874,’twist’),(3875,’barn’),(3877,’covered investigation’),(3878,’eavesdropping’),(3879,’suspect’),(3880,’snuff’),(3882,’gang of thieves’),(3883,’danger of life’),(3884,’school of witchcraft’),(3891,’giant snake’),(3899,’chewing gum’),(3901,’rabbi’),(3902,’synagogue’),(3903,’bar mitvah’),(3904,’griffon’),(3905,’owl’),(3910,’restaurant critic’),(3911,’todfeind’),(3912,’tv duel’),(3914,’kitchen’),(3921,’discontentedness and displeasedness’),(3923,’humor’),(3925,’boredom’),(3927,’rage and hate’),(3929,’hope’),(3930,’bravery’),(3932,’pride and vanity’),(3933,’modesty’),(3962,’cut-off arm’),(3963,’cut-off head’),(3966,’camelot’),(3968,’round table’),(3969,’chapter’),(3970,’catapult’),(3972,’simulated reality ‘),(3973,’insurance salesman’),(3974,’reality tv’),(3975,’spotlight’),(3977,’product placement’),(3979,’hidden camera’),(3983,’marketing’),(3986,’spider’),(3994,’battle assignment’),(3995,’manchuria’),(3996,’dynasty’),(3997,’power takeover’),(3998,’palace’),(3999,’reeducation camp’),(4003,’botanist’),(4004,’cultural revolution’),(4005,’human experimentation’),(4007,’jack the ripper’),(4008,’freemason’),(4009,’witness protection’),(4010,’log cabin’),(4013,’chain saw’),(4014,’giant plant’),(4015,’aggression by plant’),(4020,’typhus’),(4021,’business woman’),(4025,’brittany’),(4029,’bourgeoisie’),(4034,’class society’),(4035,’blood sample’),(4037,’in vitro fertilisation’),(4039,’biotechnology’),(4040,’space mission’),(4044,’groupie’),(4045,’music journalist’),(4047,’black sabbath’),(4048,’musician’),(4049,’decoy’),(4051,’ban from profession’),(4056,’custody battle’),(4060,’time frame’),(4062,’skeleton’),(4063,’siege’),(4065,’pit’),(4066,’windmill’),(4067,’incantation’),(4073,’apoplectic stroke’),(4076,’massage’),(4078,’ghost ship’),(4079,’lighthouse’),(4083,’rottweiler’),(4084,’devil\’s son’),(4087,’revelation’),(4089,’hunger strike’),(4090,’colony’),(4092,’morning prayer’),(4096,’hindu’),(4097,’independence’),(4098,’civil rights activist’),(4100,’british army’),(4101,’political negotiations’),(4102,’conference’),(4104,’nonviolent resistance’),(4106,’apartheid’),(4107,’british empire’),(4108,’protest’),(4109,’independence movement’),(4110,’bombay india’),(4112,’strike’),(4113,’jaguar’),(4115,’longing’),(4116,’heaven’),(4118,’ballet dancer’),(4119,’saigon’),(4120,’fair’),(4123,’embassy’),(4125,’provocation’),(4126,’fascination’),(4127,’one-sided love’),(4129,’widow’),(4130,’adoptive father’),(4133,’omen’),(4138,’immoderateness’),(4142,’insomnia’),(4144,’donkey’),(4147,’robin hood’),(4150,’swampf’),(4152,’kingdom’),(4158,’enchantment’),(4159,’dancing scene’),(4165,’saturn’),(4166,’biotope’),(4168,’greenhouse’),(4170,’john f. kennedy’),(4171,’staatsanwu00e4ltin’),(4172,’nuremberg trials’),(4173,’music lover’),(4174,’little red riding hood’),(4183,’wife’),(4188,’revitalization’),(4190,’lost civilisation’),(4193,’retiree’),(4194,’catacombs’),(4197,’bite’),(4198,’descendant’),(4204,’deputy’),(4210,’panic’),(4212,’contact’),(4214,’beguilement’),(4217,’exchange’),(4222,’editor-in-chief’),(4224,’singapur’),(4225,’night shift’),(4227,’toronto’),(4230,’carousel ‘),(4232,’melancholy’),(4234,’guild’),(4235,’duke’),(4237,’water’),(4238,’chosen one’),(4240,’watergate scandal’),(4243,’black panthers’),(4245,’hijacking’),(4247,’beehive’),(4249,’x-files’),(4252,’black magic’),(4257,’amulet’),(4258,’lottery’),(4260,’brood’),(4262,’tea’),(4263,’duty’),(4264,’stalingrad’),(4265,’somalia’),(4267,’warlord’),(4268,’fort’),(4269,’war on freedom’),(4270,’galaxy’),(4271,’hermit’),(4276,’machinegun’),(4277,’to shoot dead’),(4278,’invasion’),(4284,’norad’),(4286,’computer program’),(4289,’secret agent’),(4290,’toy’),(4294,’flea market’),(4295,’collector’),(4298,’teamwork’),(4299,’normandy’),(4300,’parachute’),(4302,’troops’),(4303,’waffen ss’),(4304,’omaha beach’),(4305,’radio transmission’),(4307,’reggae’),(4308,’queen elisabeth ii’),(4310,’bobsleighing’),(4313,’condom’),(4315,’courtly life’),(4316,’safe sex’),(4317,’wedding night’),(4319,’french revolution’),(4320,’lover’),(4323,’hunting human beings’),(4325,’game show’),(4326,’theatre play’),(4327,’stroke of fate’),(4328,’costume’),(4332,’peter pan’),(4333,’theatre group’),(4337,’famine’),(4339,’johannesburg’),(4342,’geisha’),(4344,’musical’),(4345,’tap dancing’),(4350,’thomas more’),(4351,’protestant church’),(4352,’thomas cromwell’),(4353,’oath’),(4355,’chinese civil war’),(4358,’shenanigan’),(4367,’jinx’),(4372,’wall’),(4373,’fraud’),(4375,’transformation’),(4376,’lorry’),(4378,’striptease’),(4379,’time travel’),(4380,’black hole’),(4388,’titanic’),(4391,’wretch’),(4392,’cage’),(4393,’archer’),(4394,’test’),(4399,’victim’),(4402,’peasant’),(4404,’guantanamo bay’),(4405,’marine corps’),(4406,’military court’),(4407,’code red’),(4408,’command’),(4409,’military base’),(4410,’u.s. navy’),(4411,’sexism’),(4412,’grandfather’),(4414,’adventure’),(4418,’pirate gang’),(4424,’pain’),(4426,’sadism’),(4427,’honesty’),(4428,’stone age’),(4432,’gathering’),(4433,’conversation’),(4434,’interview’),(4436,’addicted’),(4438,’cousin’),(4452,’butcher’),(4455,’snail’),(4456,’frog’),(4458,’post-apocalyptic’),(4459,’vegetarian’),(4460,’terror cell’),(4461,’postman’),(4470,’punk’),(4471,’varanasi’),(4474,’ornithology’),(4477,’paleontologist’),(4478,’leopard’),(4479,’bone’),(4480,’business man’),(4481,’deceived wife’),(4484,’eye’),(4485,’flower girl’),(4487,’boxing match’),(4488,’apprentice’),(4498,’big family’),(4500,’step parents’),(4501,’masseuse’),(4504,’penthouse apartment’),(4505,’judo’),(4506,’trapdoor’),(4507,’clowning’),(4508,’principal witness ‘),(4511,’field’),(4513,’blind date’),(4514,’bomb alarm’),(4516,’romantic rivalry’),(4518,’postwar period’),(4522,’supermodel’),(4523,’joint’),(4526,’concussion’),(4527,’flowerpot’),(4528,’song’),(4529,’diplomat’),(4530,’parking garage’),(4531,’munition’),(4532,’son-in-law’),(4535,’damascus’),(4539,’overweight man’),(4541,’conciliation’),(4542,’gold rush’),(4543,’thanksgiving’),(4544,’fear of flying’),(4545,’air controller’),(4547,’landing’),(4548,’autopilot’),(4549,’loss of husband’),(4550,’full moon’),(4552,’beer’),(4553,’black humor’),(4555,’only child’),(4556,’protection’),(4558,’tibet’),(4559,’dalai lama’),(4560,’mountaineer’),(4561,’lhasa’),(4562,’rapper’),(4563,’virtual reality’),(4565,’dystopia’),(4566,’minidisc’),(4572,’organ’),(4575,’comb’),(4578,’altar’),(4579,’magnet beam’),(4580,’van’),(4581,’jam’),(4583,’speed of light’),(4585,’plastic surgery’),(4587,’password’),(4590,’kindergarten’),(4595,’u.s. army’),(4596,’panama’),(4597,’pencil’),(4598,’eraser’),(4602,’stress’),(4604,’father-in-law’),(4606,’cinematographer’),(4607,’core melt’),(4608,’brokerage’),(4610,’comeback’),(4613,’training’),(4614,’heavy weight’),(4615,’folk hero’),(4616,’apache’),(4617,’insurance fraud’),(4619,’train accident’),(4620,’magazine’),(4623,’casting’),(4627,’earth’),(4630,’chaos’),(4631,’looting’),(4633,’state of emergency’),(4636,’church service’),(4639,’crow’),(4640,’disabled child’),(4652,’bath house’),(4653,’french’),(4654,’undercover agent’),(4655,’hijacking of train’),(4656,’tv star’),(4662,’illusion’),(4663,’lovers’),(4668,’police operation’),(4671,’bad luck’),(4673,’consumption’),(4676,’whale’),(4677,’patriarch’),(4678,’stick fighting’),(4680,’adrenalin’),(4682,’basement garage’),(4683,’tgv’),(4687,’pretended suicide’),(4688,’microfilm’),(4690,’moral conflict’),(4691,’occupying power’),(4697,’video’),(4698,’stamp’),(4699,’hard drive’),(4700,’e-mail’),(4701,’decipherment’),(4702,’suitcase’),(4707,’canoe’),(4709,’hand grenade’),(4711,’norwegian’),(4713,’research station’),(4717,’camel’),(4718,’gobi desert’),(4719,’mongolia’),(4720,’ritual’),(4721,’violin’),(4725,’baby-snatching’),(4728,’knife’),(4729,’dublin’),(4730,’irish civil war’),(4732,’peace contract’),(4733,’pizzeria’),(4735,’pizza’),(4737,’african national congress’),(4740,’public’),(4741,’recording contract’),(4742,’background singer’),(4743,’jihad’),(4744,’motown’),(4745,’the supremes’),(4746,’record producer’),(4748,’lodge’),(4751,’stay permit’),(4752,’punter’),(4769,’supernatural powers’),(4776,’race against time’),(4779,’delinquent’),(4781,’miner’),(4788,’ersatz’),(4793,’examination’),(4798,’despot’),(4803,’comet’),(4809,’tiger’),(4811,’emergency landing’),(4812,’plan’),(4813,’last chance’),(4820,’leap in time’),(4831,’prince charles’),(4832,’buckingham palace’),(4833,’royal family’),(4835,’lady diana spencer’),(4849,’exile’),(4850,’computer war’),(4853,’war victim’),(4862,’alien life-form’),(4875,’deluge’),(4880,’liana’),(4881,’yell’),(4884,’infection’),(4891,’offer’),(4896,’wish’),(4897,’multiple character’),(4898,’armored car’),(4900,’shortage of money’),(4902,’surprise’),(4906,’suspension’),(4908,’leave’),(4917,’shelter’),(4918,’shadowing’),(4923,’threat to death’),(4924,’insane asylum’),(4927,’assertion’),(4931,’pig’),(4932,’farm’),(4933,’battle for power’),(4934,’theory’),(4939,’alien phenomenons’),(4942,’victim of murder’),(4944,’route 66′),(4945,’wrecker’),(4946,’porsche’),(4948,’retirement’),(4949,’warning’),(4950,’code’),(4951,’rejection’),(4952,’inferiority complex’),(4953,’ocean liner’),(4954,’paternity’),(4956,’decision’),(4957,’sale of soul’),(4958,’injection’),(4959,’death of a friend’),(4967,’assignment’),(4970,’autonomy’),(4978,’immortality’),(4986,’enemy’),(4988,’tricks’),(4992,’senility’),(4995,’aging’),(4999,’risk’),(5011,’deal’),(5019,’loss of energy’),(5034,’attempt to escape’),(5035,’human weakness’),(5037,’checks and balances’),(5049,’ancient rome’),(5069,’bad power’),(5074,’wyatt earp’),(5083,’hysteria’),(5086,’telekinesis’),(5090,’fool’),(5091,’kiss’),(5096,’natural disaster’),(5097,’sterility’),(5098,’sperm bank’),(5100,’supernova’),(5127,’alexander the great’),(5129,’to make music’),(5133,’body exchange’),(5135,’jeep’),(5136,’uniform’),(5138,’gas’),(5144,’matter of life and death’),(5146,’genghis khan’),(5147,’sorcery’),(5149,’banishment’),(5151,’salesperson’),(5152,’midnight’),(5153,’son’),(5154,’fur’),(5155,’bat’),(5156,’current’),(5157,’electric shock’),(5159,’tourist’),(5160,’aggression by animal’),(5165,’champagne’),(5167,’restaurant owner’),(5174,’saudi arabia’),(5175,’petrol’),(5178,’magnetic field’),(5198,’cold’),(5202,’boy’),(5212,’advancement’),(5215,’northern england’),(5218,’uss reliant’),(5219,’ceti alpha v’),(5246,’students\’ movement’),(5248,’female friendship’),(5250,’red sea’),(5251,’primal fear’),(5265,’spying’),(5272,’libya’),(5274,’iron’),(5275,’pan’),(5276,’wild boar’),(5277,’territory’),(5280,’ghost world’),(5282,’rolling stones’),(5286,’bob dylan’),(5288,’rock’),(5289,’private life’),(5290,’small person’),(5293,’desert thief’),(5295,’planetary configuration’),(5299,’war correspondent’),(5300,’allied’),(5301,’brother’),(5303,’utah’),(5305,’gambling debts’),(5306,’boss’),(5310,’approach’),(5313,’parts of dead body’),(5314,’mill’),(5319,’pub’),(5321,’studio’),(5329,’rice’),(5330,’fencing’),(5331,’village’),(5332,’greed’),(5333,’guest’),(5334,’vineyard’),(5339,’railway car’),(5340,’investigation’),(5343,’molotow cocktail’),(5344,’bottle’),(5347,’clumsy fellow’),(5348,’to drop brick’),(5349,’surfing’),(5359,’marine biologist’),(5362,’liberation of hostage’),(5369,’guard’),(5373,’damage’),(5374,’poster’),(5375,’artwork’),(5376,’creativity’),(5378,’world champion’),(5379,’challenger’),(5380,’virtual fight’),(5383,’amateur’),(5385,’survivor’),(5386,’tramp’),(5387,’national guard’),(5389,’mujahid’),(5398,’sponsorship’),(5400,’champion’),(5402,’boxing school’),(5404,’meteor’),(5413,’bungee-jump’),(5416,’transplanted organ’),(5417,’sierra leone’),(5418,’supervisor’),(5419,’bootlegger’),(5420,’fisherman’),(5422,’special unit’),(5424,’women\’s prison’),(5426,’sms’),(5430,’police protection’),(5436,’sexual revolution’),(5439,’inspector’),(5440,’adversary’),(5442,’expiration’),(5444,’lonely hearts ad’),(5446,’observer’),(5451,’comic book’),(5452,’stunts’),(5454,’flame’),(5455,’time machine’),(5457,’mythical creature’),(5458,’men’),(5462,’barbie’),(5470,’scalp’),(5471,’pakistani’),(5475,’scandinavia’),(5477,’mistake’),(5483,’coffee shop’),(5484,’reincarnation’),(5485,’november’),(5490,’girlfriend’),(5493,’relatives’),(5496,’beauty contest’),(5498,’lsd’),(5499,’burma’),(5500,’playground’),(5501,’stay-at-home dad’),(5502,’castration’),(5504,’asthma’),(5509,’spanish civil war’),(5511,’tang dynasty’),(5513,’pomp’),(5514,’conspiracy of murder’),(5515,’heir to the throne’),(5521,’arkansas’),(5522,’grand canyon’),(5526,’ping pong’),(5528,’thumb sucking’),(5529,’attention deficit hyperactivity disorder (adhd)’),(5532,’boardwalk’),(5535,’elocution’),(5538,’javelin’),(5539,’shield’),(5540,’heavy metal’),(5543,’cow’),(5544,’headbanging’),(5545,’satanist’),(5549,’beauty queen contest’),(5552,’train ride’),(5558,’lavender’),(5560,’nose’),(5561,’child prodigy’),(5562,’fish market’),(5563,’market’),(5564,’match’),(5565,’biography’),(5566,’maya civilization’),(5568,’flush’),(5569,’vomit’),(5570,’christmas tree’),(5571,’great depression’),(5572,’fistfight’),(5573,’broken nose’),(5585,’notebook’),(5593,’pornographic video’),(5597,’war on terror’),(5599,’epistaxis’),(5600,’daughter’),(5601,’lost baggage’),(5602,’urn’),(5604,’pavilion’),(5605,’volleyball’),(5606,’gang leader’),(5608,’affection’),(5609,’nostalgia’),(5614,’idol’),(5616,’united statesu2013mexico barrier’),(5621,’american football coach’),(5625,’relationship problems’),(5626,’from rags to riches’),(5628,’broker’),(5629,’role reversal’),(5632,’new year\’s day’),(5636,’wall street’),(5638,’arrest’),(5641,’limousine’),(5642,’beggar’),(5643,’prison warden’),(5647,’natural history’),(5648,’theodore roosevelt’),(5650,’feral child’),(5653,’vulgar’),(5656,’sydney’),(5657,’australia’),(5666,’installer’),(5671,’socrates’),(5672,’billy the kid’),(5674,’school presentation’),(5678,’rhinoceros’),(5679,’phone booth’),(5680,’world peace’),(5683,’family business ‘),(5684,’diabolical ego’),(5689,’slovakia’),(5692,’stetson’),(5694,’elvis’),(5698,’egg’),(5699,’music video’),(5701,’beef’),(5705,’grasshopper’),(5707,’childhood trauma’),(5708,’gospel’),(5711,’indianapolis’),(5713,’rhode island’),(5716,’record label’),(5718,’recording studio’),(5719,’cricket’),(5721,’engineer’),(5722,’buddha’),(5726,’insurrection’),(5728,’tycoon’),(5729,’maryland’),(5731,’barbecue’),(5732,’birthday party’),(5733,’turkey’),(5736,’coloured’),(5737,’book burning’),(5739,’waterfall’),(5740,’alliance’),(5744,’governor’),(5746,’iceland’),(5756,’man-woman relation’),(5767,’summer camp’),(5768,’urban life’),(5769,’global warming’),(5774,’forest’),(5776,’egomania’),(5779,’daydream’),(5782,’squatter’),(5783,’classical music’),(5785,’model student’),(5789,’sand’),(5800,’geek’),(5801,’nerd’),(5808,’pregnant minor’),(5809,’marriage crisis’),(5810,’pact with the devil’),(5812,’bad boss’),(5822,’executive case’),(5824,’video surveillance’),(5825,’precocity’),(5827,’hiking’),(5828,’yoga’),(5832,’bed and breakfast place’),(5833,’autoritian education’),(5835,’martin luther king’),(5854,’room exchange’),(5856,’nelson mandela’),(5857,’narcism’),(5858,’leeds united’),(5859,’paralysis’),(5860,’nation of islam’),(5861,’civil rights movement ‘),(5863,’mekka’),(5864,’pilgrimage’),(5865,’cabriolet’),(5876,’reno’),(5878,’baroness’),(5879,’anarchist’),(5882,’franco regime’),(5885,’childlessness’),(5886,’schloss schu00f6nbrunn’),(5887,’compulsive gambling’),(5888,’agriculture’),(5890,’community’),(5891,’backpacker’),(5893,’mama\’s boy’),(5894,’bagdad’),(5895,’viking’),(5896,’galicia’),(5897,’bathing accident’),(5898,’turk’),(5900,’missouri’),(5901,’texas ranger’),(5903,’alzheimer’),(5904,’dogsitter’),(5905,’father’),(5906,’sex addiction’),(5907,’middle east conflict’),(5911,’channel islands’),(5914,’writer\’s block’),(5916,’gallery owner’),(5918,’painting’),(5919,’necrophilia’),(5920,’advertising expert’),(5921,’step mother’),(5922,’north carolina’),(5923,’sister’),(5927,’violence against women’),(5930,’getting lost’),(5933,’poet’),(5938,’mermaid’),(5939,’iraq’),(5941,’calypso’),(5944,’nairobi’),(5946,’ethiopia’),(5947,’military service’),(5948,’studies’),(5950,’christian’),(5955,’boy\’s choir’),(5956,’stuntman’),(5958,’finger’),(5959,’angkor wat’),(5960,’illuminati’),(5961,’william blake’),(5962,’pandora\’s box’),(5964,’chinese mafia’),(5965,’marxism’),(5966,’tower of babel’),(5967,’peru’),(5968,’amazon’),(5970,’wrestling’),(5972,’garden gnome’),(5973,’journey round the world’),(5975,’menstruation’),(5981,’intelligence test’),(5982,’ex husband’),(5983,’pizza boy’),(5984,’dormitory’),(5987,’grandmother granddaughter relationship’),(5989,’man of one\’s dreams’),(5990,’wine garden’),(5992,’south carolina’),(5997,’sign’),(5999,’advice’),(6001,’speech’),(6007,’media’),(6009,’mathematics’),(6013,’chemistry’),(6015,’mining’),(6016,’biology’),(6017,’genetics’),(6018,’new hampshire’),(6019,’human trafficking’),(6021,’employee’),(6022,’arts’),(6025,’photography’),(6027,’music’),(6029,’concert’),(6031,’music instrument’),(6034,’theatre milieu’),(6038,’marriage’),(6040,’group’),(6044,’promise’),(6049,’praise’),(6050,’criticism and blame’),(6054,’friendship’),(6056,’tenderness’),(6057,’peace’),(6059,’unsociability’),(6060,’insult’),(6062,’hostility’),(6066,’defeat’),(6067,’victory’),(6069,’class’),(6071,’middle class’),(6074,’spice’),(6075,’sport’),(6078,’politics’),(6081,’nation’),(6083,’politician’),(6085,’election campaign’),(6086,’government’),(6088,’governance’),(6089,’freedom’),(6090,’equality’),(6091,’war’),(6092,’army’),(6093,’assault’),(6094,’defence’),(6095,’house’),(6098,’clothing’),(6099,’jewelry’),(6100,’tools’),(6101,’engine’),(6103,’telephone’),(6104,’computer’),(6107,’energy supply’),(6110,’weapon’),(6112,’firearm’),(6118,’finances’),(6123,’global economy’),(6125,’pension’),(6126,’banking’),(6128,’taxes’),(6129,’company’),(6133,’industry’),(6134,’automobile industry’),(6135,’pharmaceutical industry’),(6137,’assurance’),(6139,’innocence’),(6140,’vice’),(6144,’lawlessness’),(6145,’right and justice’),(6147,’delinquency’),(6148,’court’),(6149,’police’),(6150,’faith’),(6151,’faithlessness’),(6152,’supernatural’),(6154,’hell’),(6155,’afterlife’),(6156,’superstition’),(6157,’prayer’),(6158,’cult’),(6159,’clergyman’),(6162,’past’),(6163,’arms dealer’),(6165,’historical figure’),(6167,’engagement’),(6168,’master thief’),(6170,’motherly love’),(6174,’ranger’),(6178,’newfoundland’),(6180,’coffee grower’),(6183,’laundromat’),(6186,’games’),(6187,’fairy-tale figure’),(6188,’bad father-in-law’),(6192,’relation’),(6193,’world religion’),(6194,’hinduism’),(6198,’ladder’),(6199,’dressmaker’),(6201,’fall’),(6202,’spring’),(6203,’loss’),(6211,’fighter’),(6212,’smuggling’),(6215,’household’),(6219,’oakland’),(6220,’mafia boss’),(6223,’change’),(6230,’looking for birth parents’),(6231,’half-brother’),(6234,’roller-skating’),(6239,’benzine’),(6241,’stupidity’),(6245,’instinct’),(6247,’cleverness’),(6253,’ignorance’),(6255,’insanity’),(6256,’truth’),(6257,’genius’),(6258,’intellectual’),(6259,’psychopath’),(6262,’delusion’),(6267,’approved school ‘),(6268,’driving school’),(6269,’gymnasium’),(6270,’high school’),(6271,’boarding school’),(6272,’children\’s home’),(6274,’learning and teaching’),(6275,’school party’),(6277,’language course’),(6278,’scholarship’),(6281,’partnership’),(6282,’workplace’),(6285,’coup d\’etat’),(6292,’jordan’),(6293,’telescope’),(6297,’japanese mafia’),(6300,’puppet’),(6304,’sewerage’),(6305,’pollution’),(6309,’double murder’),(6310,’national park’),(6315,’stock-car-race’),(6316,’daytona’),(6318,’control’),(6319,’cosmetics and hygiene’),(6324,’bias’),(6325,’ethnic stereotype’),(6328,’crook couple’),(6333,’wizardry’),(6334,’basic rights and human rights’),(6335,’tennessee’),(6337,’patriarchy’),(6340,’weatherman’),(6342,’nicaragua’),(6346,’trade union’),(6348,’green’),(6350,’head injury’),(6351,’chief executive officer’),(6357,’tobacco’),(6362,’turtle’),(6363,’racing car’),(6373,’sadomasochism’),(6375,’george w. bush’),(6376,’chat’),(6380,’shrinking’),(6381,’loss of daughter’),(6382,’folk music’),(6383,’music competition’),(6394,’rocket’),(6397,’calamity’),(6399,’rope’),(6401,’vegetable’),(6406,’escape agent’),(6410,’hallucinogen’),(6415,’stage show’),(6417,’base’),(6432,’rent’),(6433,’roulette’),(6435,’webcam’),(6437,’toilet’),(6443,’child pornography’),(6444,’sodomy’),(6447,’woodstock’),(6460,’chile’),(6464,’uncle’),(6472,’midwife’),(6476,’toy shop’),(6483,’ice hockey’),(6490,’shopping mall’),(6491,’society for the prevention of cruelty to animals’),(6494,’talkie’),(6496,’basketball’),(6502,’exit’),(6506,’resurrection’),(6511,’alone’),(6513,’cartoon’),(6514,’health care’),(6517,’young people’),(6521,’theatre director’),(6525,’fast’),(6538,’winston churchill’),(6548,’the rapture’),(6553,’beatnik’),(6556,’talisman’),(6562,’celebrity’),(6563,’wine’),(6564,’terminal illness’),(6567,’hibernation’),(6579,’music festival’),(6581,’surrey’),(6587,’east berlin’),(6592,’parish hall’),(6593,’stripper’),(6603,’baustelle’),(6611,’tahiti’),(6614,’website’),(6617,’formaldehyde’),(6618,’snack bar’),(6622,’tumor’),(6623,’lodger’),(6625,’family secrets’),(6628,’syphillis’),(6645,’mayor elections’),(6650,’hang gliding’),(6657,’monolog’),(6662,’delirium’),(6664,’make a match’),(6669,’step father’),(6674,’chair’),(6678,’polar bear’),(6681,’flu’),(6683,’autobiography’),(6686,’footage’),(6691,’drug scene’),(6701,’verdun’),(6704,’civil registry office’),(6706,’performance’),(6707,’student movie’),(6710,’interpol’),(6711,’crisis’),(6712,’death of a child’),(6713,’integration’),(6715,’cleopatra’),(6716,’galier’),(6719,’montreal’),(6722,’orchid’),(6731,’british’),(6732,’mascot’),(6733,’bullying’),(6735,’locksmith’),(6737,’frankenstein’),(6739,’callboy’),(6746,’hamburger’),(6750,’charisma’),(6751,’polygamy’),(6760,’picture journalist’),(6778,’world supremacy’),(6779,’ladies\’ man’),(6780,’medical examiner’),(6782,’addiction’),(6783,’orphanage’),(6785,’hairstyle’),(6790,’north atlantic’),(6791,’torpedo’),(6795,’ambulance man’),(6799,’comic-strip artist’),(6808,’cookbook’),(6812,’film festivals’),(6814,’ibiza’),(6816,’gold mining town’),(6832,’environmental protection agency’),(6844,’stalker’),(6846,’borderline personality disorder’),(6847,’malaysia’),(6854,’primitive time’),(6876,’vacation’),(6878,’sandwich’),(6879,’poodle’),(6894,’aunt’),(6898,’quarantine’),(6917,’epic’),(6921,’jogging’),(6930,’fondling’),(6932,’count’),(6935,’erection’),(6941,’tsunami’),(6946,’blonde’),(6951,’biker’),(6954,’swing’),(6955,’parkour’),(6956,’treasure hunt’),(6966,’film history’),(6968,’space invasion’),(6969,’gotham city’),(6974,’rise and fall’),(6979,’strau00dfenkids’),(6981,’connecticut’),(6984,’racial segregation’),(6985,’anne frank’),(6986,’school excursion’),(6987,’idealism’),(6996,’car garage’),(6997,’helplessness’),(6998,’falling star’),(7002,’vigilante’),(7005,’northern ireland’),(7017,’sexappeal’),(7021,’pakistan’),(7023,’riesen-ipod’),(7024,’fashion designer’),(7025,’industrial revolution’),(7033,’london underground’),(7041,’sahara’),(7051,’volcanologist’),(7059,’anti-communism’),(7066,’sex education’),(7074,’paperboy’),(7089,’dominatrix’),(7090,’goa’),(7094,’pflegen’),(7097,’torture by the police’),(7098,’sexual murder’),(7101,’substitute teacher’),(7118,’escapee convict’),(7125,’hiding in a garbage container’),(7136,’technical toy’),(7149,’machismo’),(7150,’hangman’),(7151,’junk food’),(7153,’queen elizabeth i’),(7155,’receiving of stolen goods’),(7156,’commander’),(7158,’war in afghanistan’),(7169,’man between two women’),(7172,’buried alive’),(7188,’hostage-taking’),(7202,’balkan war’),(7208,’spoiled child’),(7240,’walrus’),(7246,’barricade’),(7248,’marathon’),(7255,’search for witnesses’),(7269,’labor pain’),(7271,’tv ratings’),(7281,’shooting’),(7289,’cafeteria’),(7293,’girl from the province’),(7312,’road trip’),(7315,’hatter’),(7321,’nuclear power plant’),(7322,’caddy’),(7323,’savannah’),(7325,’cockroach’),(7329,’pogrom’),(7330,’glacier’),(7335,’lawsuit’),(7336,’car bomb’),(7337,’business ethics’),(7340,’crooked lawyer’),(7344,’porno star’),(7345,’dead animal’),(7347,’tarzan’),(7348,’indonesia’),(7358,’school performance’),(7368,’alienation’),(7375,’twin brother’),(7376,’princess’),(7379,’fleet’),(7393,’life\’s dream’),(7394,’spinner’),(7397,’bakery’),(7404,’uganda’),(7410,’fellatio’),(7411,’festival hall’),(7412,’sin’),(7422,’moon landing’),(7430,’sleeping beauty’),(7432,’rumpelstilzchen’),(7439,’woman between two men’),(7443,’kidney transplant ‘),(7453,’canary’),(7464,’alcoholism’),(7476,’older woman seduces younger guy’),(7477,’police everyday life’),(7490,’hicktown’),(7492,’serbia’),(7496,’gain’),(7508,’friendship bracelet’),(7525,’chancellor’),(7533,’black panther’),(7534,’religious war’),(7537,’tudors’),(7540,’circumcision’),(7548,’columbine’),(7564,’jane austen’),(7568,’psychoterror’),(7578,’wedding ring’),(7579,’rich woman – poor man’),(7587,’nigeria’),(7597,’dollar’),(7600,’foot’),(7605,’el salvador’),(7606,’dictatorship’),(7629,’family clan’),(7638,’surrogate mother’),(7639,’zebra’),(7645,’pathology’),(7658,’kansas’),(7665,’girls\’ boarding school’),(7671,’godzilla’),(7682,’tierversuch’),(7694,’pile of dead bodies’),(7699,’speed date’),(7714,’step brother’),(7717,’evil mother’),(7728,’cholera’),(7755,’winegrower’),(7769,’chefin’),(7784,’hotel mom’),(7813,’hockey player’),(7832,’wettermann’),(7851,’tax inspector’),(7856,’racist’),(7858,’boy gang’),(7864,’pleite’),(7868,’pen pals’),(7879,’secret love’),(7904,’paraguay’),(7912,’rugby’),(7920,’violence in schools’),(7923,’homepage’),(7925,’child bride’),(7926,’mahatma gandhi’),(7928,’crack’),(7934,’call center’),(7936,’fidel castro’),(7939,’portal’),(7942,’imaginary friend’),(7946,’deer’),(7947,’war of independence’),(7948,’skunk’),(7949,’racoon’),(7951,’strafzettel’),(7954,’salzburg’),(7955,’taliban’),(7956,’cowardice’),(7963,’guantu00e1namo’),(7973,’bosnian war of 1992-1995′),(7980,’motor-bike accident’),(7983,’indochina’),(7984,’bikini’),(7992,’uruguay’),(7994,’water monster’),(7996,’blackjack’),(8001,’live-reportage’),(8009,’marching band’),(8011,’greek’),(8012,’physicist’),(8015,’cop’),(8018,’adoptive mother’),(8029,’drama’),(8030,’pirate radio’),(8032,’florence’),(8034,’in flagranti’),(8038,’bus hijacking’),(8039,’campus’),(8044,’flight’),(8045,’russian mafia’),(8046,’aspen’),(8047,’eye specialist’),(8054,’volunteer’),(8056,’quantum mechanics’),(8057,’cincinnati’),(8066,’kaserne’),(8070,’stag night’),(8072,’quiz show’),(8077,’benito mussolini’),(8079,’cornwall’),(8081,’entrance examination’),(8082,’piglet’),(8083,’pacific’),(8086,’crop duster’),(8087,’horror’),(8095,’oxford’),(8097,’leukemia’),(8099,’sioux’),(8102,’elementary school’),(8103,’cambridge’),(8122,’canyon’),(8126,’pill’),(8133,’lasagne’),(8158,’rafting’),(8159,’iraq war veteran’),(8181,’swimming pool’),(8183,’carnivorous plant’),(8201,’satire’),(8202,’big brother’),(8207,’crook’),(8224,’cannabis’),(8231,’insider’),(8232,’west virginia’),(8233,’cops’),(8241,’mustang’),(8250,’victorian england’),(8264,’symbol’),(8271,’meat’),(8290,’talent show’),(8303,’abandoned house’),(8338,’coach’),(8368,’filmdreh’),(8377,’pinhead’),(8406,’street artist’),(8421,’saddam hussein’),(8430,’safe’),(8438,’job’),(8440,’ex-cop’),(8442,’irish mob’),(8445,’cannes’),(8447,’amish’),(8468,’crew’),(8476,’vitamin b’),(8490,’castingshow’),(8492,’image campaign’),(8496,’breast cancer’),(8504,’merlin’),(8506,’remote control’),(8508,’party’),(8516,’oasis’),(8517,’photo lab’),(8519,’mohawk’),(8527,’exzentrik’),(8531,’panda’),(8559,’china town’),(8570,’president’),(8574,’auto-tuning’),(8580,’neue frau’),(8586,’keks’),(8608,’violinist’),(8613,’malibu’),(8616,’guru’),(8622,’parole board’),(8624,’climbing’),(8627,’stolen money’),(8631,’slacker’),(8632,’business consultant’),(8633,’tour de france’),(8635,’high school sports’),(8636,’blood splatter’),(8637,’fall from height’),(8642,’casanova’),(8643,’jade’),(8650,’unwillingly pregnant’),(8651,’kuwait’),(8653,’niagara falls’),(8658,’che guevara’),(8659,’western roman empire’),(8663,’overweight woman’),(8664,’oberflu00e4chlichkeit’),(8665,’kompliment’),(8666,’preisgeld’),(8679,’fitness-studio’),(8680,’ferrari’),(8681,’supreme court’),(8685,’anti-christ’),(8686,’millenium’),(8695,’bestie’),(8696,’bodybuilder’),(8697,’miss america’),(8698,’orlu00e9ans’),(8700,’charles vii.’),(8701,’hundred years\’ war’),(8711,’michael jackson’),(8713,’lager’),(8721,’arctic’),(8723,’poacher’),(8728,’couples therapy’),(8729,’lighthouse keeper ‘),(8730,’rausschmeiu00dfer’),(8732,’talent-scout’),(8734,’art school’),(8739,’jackpot’),(8746,’republicanism’),(8747,’diversity’),(8764,’times square’),(8775,’panther’),(8778,’atheist’),(8780,’chechnya’),(8781,’foreign aid’),(8783,’scavenger hunt’),(8790,’ant-hill’),(8791,’cojote’),(8796,’appalachia’),(8798,’conversion’),(8803,’serum’),(8805,’pianosa’),(8806,’purse’),(8828,’marvel comic’),(8841,’puppy’),(8847,’tempel’),(8862,’uprising’),(8864,’amateur soccer’),(8872,’invulnerability’),(8881,’jury’),(8900,’rocker’),(8903,’the doors’),(8905,’pelz’),(8908,’widerstand’),(8917,’patenonkel’),(8932,’hacky sack’),(8944,’ordensbruder’),(8945,’ringer’),(8971,’oktoberfest’),(8975,’ardennen’),(8979,’nacktrevue’),(8985,’zeus’),(8986,’air force one’),(8997,’conscientious objector’),(9008,’moped’),(9016,’femme fatale’),(9023,’winzer’),(9031,’idealist’),(9032,’excavation’),(9046,’leere’),(9052,’major’),(9073,’marilyn monroe’),(9082,’art student’),(9094,’womanizer’),(9098,’trunk’),(9104,’partner’),(9109,’nest’),(9118,’unorthodox’),(9139,’student of medicine’),(9141,’belt’),(9144,’kaiser nero’),(9145,’dubai’),(9156,’d-day’),(9180,’yorkshire’),(9181,’alter ego’),(9188,’nixe’),(9193,’whiskey’),(9209,’urbanisierung’),(9215,’black’),(9227,’cocktail’),(9228,’puzzle’),(9229,’grandparents’),(9236,’cancu00fan’),(9248,’bu00fchnenauftritt’),(9249,’backstage’),(9253,’slapstick’),(9259,’vampire hunter’),(9273,’coney island’),(9276,’truck’),(9302,’exzess’),(9304,’muse’),(9309,’elite’),(9310,’latina’),(9312,’dragonfly’),(9342,’kubakrise’),(9344,’sexology’),(9345,’rubin’),(9350,’kugel’),(9356,’k2′),(9358,’military prison’),(9360,’berater’),(9362,’sensei’),(9365,’tony blair’),(9366,’hammer’),(9368,’tax collector’),(9376,’richard nixon’),(9390,’shaolin’),(9395,’havanna’),(9398,’long island’),(9401,’sherlock holmes’),(9403,’resignation’),(9410,’hybrid’),(9415,’wimbledon’),(9433,’concierge’),(9454,’frontier’),(9457,’single’),(9468,’liar’),(9479,’stau’),(9503,’outlaw’),(9504,’wrack’),(9511,’menschheit’),(9517,’bulle’),(9524,’navajo’),(9525,’pacific war’),(9532,’la roque’),(9537,’joker’),(9547,’urteil’),(9549,’windeln’),(9550,’doc holliday’),(9554,’osama bin laden’),(9558,’balzen’),(9569,’flop’),(9576,’befu00f6rderung’),(9594,’sudetendeutsch’),(9606,’sexchat’),(9609,’houston’),(9610,’coup’),(9622,’misanthrope’),(9627,’rape of a male’),(9634,’jeans’),(9639,’playboy’),(9645,’local speciality’),(9649,’god’),(9656,’cattle drive’),(9660,’low-budget’),(9663,’sequel’),(9665,’cover-up’),(9666,’street race’),(9668,’child vampire’),(9672,’based on true story’),(9673,’love’),(9675,’prequel’),(9676,’anti matter’),(9678,’mind control’),(9679,’secret government organization’),(9681,’clairvoyance’),(9682,’history’),(9684,’warp speed’),(9685,’futuristic’),(9686,’warp engine’),(9693,’female killer’),(9696,’magic mushroom’),(9702,’broken lizard’),(9706,’anthology’),(9707,’evil doll’),(9712,’possession’),(9713,’friends’),(9714,’remake’),(9715,’superhero’),(9716,’stand-up comedy’),(9717,’based on comic book’),(9719,’taxidermy’),(9720,’woods’),(9721,’hunting trip’),(9725,’sword fight’),(9727,’thief’),(9728,’caper’),(9730,’crime boss’),(9732,’movie in movie’),(9736,’little boy’),(9738,’ufo’),(9739,’extraterrestrial’),(9740,’sociopath’),(9741,’radioactive’),(9743,’stranded’),(9744,’outbreak’),(9748,’revenge’),(9749,’beauty salon’),(9750,’bayou’),(9754,’profanity’),(9755,’parody’),(9758,’deception’),(9766,’hiv’),(9767,’beautiful woman’),(9772,’pubic hair’),(9774,’prison guard’),(9775,’car set on fire’),(9777,’escape from prison’),(9778,’exploding building’),(9779,’vehicle combat’),(9782,’blindfold’),(9783,’bong’),(9785,’perversion’),(9786,’burned alive’),(9789,’misfit’),(9790,’house arrest’),(9791,’number in title’),(9794,’toxic’),(9797,’syracuse university’),(9798,’law school’),(9799,’romantic comedy’),(9812,’honor’),(9815,’psychic power’),(9817,’behind the scenes’),(9818,’fan culture’),(9819,’visual effect’),(9820,’alternate dimension’),(9821,’city country contrast’),(9823,’rivalry’),(9824,’reunion’),(9825,’growing up’),(9826,’murder’),(9830,’nuclear explosion’),(9831,’spaceship’),(9833,’lesbian relationship’),(9835,’sexual fantasy’),(9838,’nymphomaniac’),(9840,’romance’),(9844,’car crash’),(9846,’intelligence agency’),(9848,’family dinner’),(9849,’beating’),(9851,’knife in hand’),(9853,’paranormal’),(9854,’artifact’),(9855,’slow motion scene’),(9856,’flashback sequence’),(9859,’controversial’),(9862,’dam’),(9864,’prank’),(9866,’basement’),(9872,’grief’),(9878,’fighter jet’),(9880,’alaska’),(9882,’space’),(9886,’countess’),(9887,’surrealism’),(9888,’spanking’),(9890,’jail’),(9895,’kenya’),(9897,’rifle’),(9902,’wildlife’),(9903,’balloon’),(9904,’french resistance’),(9907,’community service’),(9910,’jesse james’),(9914,’slice of life’),(9917,’mixed martial arts’),(9920,’royalty’),(9921,’easter’),(9923,’easter bunny’),(9927,’maine’),(9930,’prairie’),(9932,’feud’),(9935,’travel’),(9937,’suspense’),(9941,’melbourne’),(9950,’thriller’),(9951,’alien’),(9955,’urban legend’),(9956,’sausage’),(9957,’loneliness’),(9963,’kids and family’),(9964,’crude humor’),(9970,’crab’),(9974,’obesity’),(9977,’part live action’),(9986,’crush’),(9988,’valentine’),(9989,’gift’),(9990,’villainess’),(9995,’bell’),(10005,’gremlin’),(10006,’ymca’),(10012,’chase scene’),(10013,’death star’),(10014,’jabba the hutt’),(10015,’ewoks’),(10016,’lightsaber’),(10022,’rampage’),(10024,’psychopathic killer’),(10026,’harbor’),(10028,’steampunk’),(10031,’nudism’),(10033,’friends who hate each other’),(10038,’audi’),(10039,’racing’),(10041,’dysfunctional family’),(10043,’stepping’),(10044,’tragic hero’),(10045,’tragic villain’),(10048,’unrequited love’),(10049,’teen angst’),(10050,’fear of commitment’),(10051,’heist’),(10058,’sorority’),(10059,’boogeyman’),(10060,’christian film’),(10061,’dysfunctional marriage’),(10062,’religious conversion’),(10063,’repentance’),(10064,’new york city twin towers’),(10073,’documentary’),(10076,’street fighter’),(10079,’hazing’),(10081,’locker room’),(10084,’rescue’),(10085,’betrayal’),(10089,’slaughter’),(10092,’mystery’),(10093,’priest’),(10103,’children’),(10104,’dance contest’),(10106,’ballroom dancing’),(10111,’ouija’),(10112,’ouija board’),(10114,’evil spirit’),(10115,’snowman’),(10121,’stop motion’),(10123,’dark comedy’),(10124,’laboratory’),(10125,’mad scientist’),(10128,’strugatsky’),(10131,’interracial relationship’),(10132,’matchmaking’),(10135,’hellgate’),(10138,’satan’),(10141,’battlefield’),(10143,’anti conformity’),(10144,’anti semitism’),(10148,’tribe’),(10150,’end of the world’),(10154,’blob’),(10155,’steroids’),(10158,’alien planet’),(10159,’computer animation’),(10160,’engineering’),(10163,’cancer’),(10164,’apparition’),(10166,’minotaur’),(10168,’aviation’),(10170,’premonition’),(10174,’delta force’),(10175,’drug cartel’),(10176,’gun battle’),(10177,’corporate’),(10180,’homosexuality’),(10181,’based on play’),(10183,’independent film’),(10185,’covert operation’),(10188,’interracial marriage’),(10198,’gay relationship’),(10199,’gay interest’),(10200,’man man relationship’),(10201,’death of father’),(10202,’treason’),(10211,’east l.a.’),(10216,’outcast’),(10217,’tourette syndrome’),(10221,’meteorite’),(10222,’astronomer’),(10223,’puritan’),(10224,’haunting’),(10225,’pageant’),(10226,’neighbor’),(10228,’aspiring singer’),(10229,’singer’),(10230,’tracker’),(10232,’fame’),(10235,’family relationships’),(10237,’aerial combat’),(10241,’caretaker’),(10244,’based on cartoon’),(10249,’mengele’),(10250,’redneck’),(10254,’clubbing’),(10260,’mechanic’),(10261,’stealing’),(10266,’prom’),(10267,’comedy’),(10275,’house party’),(10278,’ninja’),(10284,’formula 1′),(10291,’organized crime’),(10292,’gore’),(10294,’coin’),(10303,’domestic abuse’),(10308,’h.p. lovecraft’),(10309,’sanity’),(10322,’native american’),(10323,’psychiatric hospital’),(10324,’toys’),(10325,’mistaken identity’),(10326,’morgue’),(10327,’undead’),(10328,’reality show’),(10329,’wealth’),(10332,’salesman’),(10333,’stalking’),(10336,’animation’),(10337,’cheat on husband’),(10338,’morphine’),(10345,’esther’),(10349,’survival’),(10350,’beautiful’),(10352,’phobia’),(10360,’prejudice’),(10364,’mission’),(10371,’antisocial personality disorder’),(10372,’body guard’),(10374,’archive footage’),(10375,’possessed’),(10385,’reindeer’),(10391,’mafia’),(10397,’royal air force’),(10398,’royal flying corps’),(10399,’dogfight’),(10400,’airship’),(10403,’green beret’),(10406,’hebrews’),(10410,’conspiracy’),(10414,’trance’),(10423,’tour bus’),(10424,’tour guide’),(10425,’viagra’),(10427,’sexual humiliation’),(10428,’cultural difference’),(10437,’metaphysics’),(10448,’purgatory’),(10449,’sondheim’),(10452,’credit card’),(10453,’con artist’),(10456,’athlete’),(10459,’dilemma’),(10466,’knight’),(10468,’bear’),(10471,’cult favorite’),(10476,’double crossed’),(10478,’disembodied head’),(10481,’tension’),(10482,’sanitarium’),(10483,’eccentric’),(10486,’robin’),(10489,’water shortage’),(10491,’swordsman’),(10494,’super cars’),(10498,’malpractice’),(10499,’pool’),(10503,’scuba diving’),(10505,’promiscuity’),(10506,’prehistoric’),(10508,’teacher’),(10511,’western’),(10514,’muay thai’),(10519,’freshman’),(10525,’broken neck’),(10527,’jedi’),(10530,’atlantic city’),(10532,’suburbia’),(10535,’sino japanese war’),(10539,’martian’),(10540,’bollywood’),(10541,’curse’),(10542,’based on toy’),(10547,’arcade’),(10551,’ballet’),(10556,’male female relationship’),(10558,’bmx’),(10561,’video camera’),(10562,’on the run’),(10563,’attack’),(10568,’science fiction’),(10572,’music business’),(10582,’television producer’),(10586,’korea’),(10587,’nottingham’),(10590,’oil’),(10591,’energy’),(10594,’money’),(10596,’argentina’),(10597,’lucid dreaming’),(10601,’blaxploitation’),(10603,’killer doll’),(10604,’fast cars’),(10607,’transformers’),(10609,’free running’),(10614,’tragedy’),(10616,’urban’),(10617,’disaster’),(10623,’jock’),(10624,’bully’),(10629,’vision’),(10631,’stockbroker’),(10637,’food’),(10641,’time capsule’),(10644,’melodrama’),(10650,’prawn’),(10652,’astrophysicist’),(10655,’grieving widower’),(10656,’child in peril’),(10657,’lexington massachusetts’),(10663,’train crash’),(10664,’westford massachusetts’),(10666,’road accident’),(10668,’stuffed animal’),(10669,’pay phone’),(10671,’figure skating’),(10683,’coming of age’),(10685,’escape’),(10686,’battle of the bands’),(10688,’breast’),(10689,’wasteland’),(10700,’hood’),(10703,’tragic love’),(10704,’female yakuza’),(10706,’spirituality’),(10707,’mother daughter relationship’),(10712,’night club’),(10714,’serial killer’),(10715,’fire fighting’),(10717,’chain gang’),(10718,’fugitive’),(10721,’pregnant’),(10726,’gang’),(10732,’movie studio’),(10733,’sunken treasure’),(10738,’diner’),(10756,’janitor’),(10761,’superhuman’),(10766,’youth gang’),(10768,’lesbian’),(10770,’mad doctor’),(10771,’wax museum’),(10772,’torture chamber’),(10776,’marijuana’),(10786,’colonel’),(10787,’jungle’),(10789,’prehistoric egg’),(10791,’teenage crush’),(10792,’marooned’),(10793,’resort’),(10794,’snow’),(10798,’duct tape’),(10807,’salt lake city’),(10808,’dulles international airport’),(10809,’teenage girl’),(10812,’airplane accident’),(10814,’wounded’),(10818,’author’),(10821,’sorcerer’),(10827,’open relationship’),(10833,’survivalist’),(10834,’super soldier’),(10842,’good vs evil’),(10843,’superheroine’),(10847,’boston garden’),(10850,’sexual harassment’),(10851,’blog’),(10854,’time loop’),(10855,’fate’),(10856,’bag of money’),(10859,’tribunal’),(10863,’medusa’),(10864,’human sacrifice’),(10867,’biblical code’),(10870,’revelation (book)’),(10873,’school’),(10875,’metal’),(10877,’dead body’),(10878,’invasion of privacy’),(10882,’toupee’),(10883,’scalper’),(10886,’punishment’),(10887,’home movie footage’),(10889,’counterfeit’),(10891,’giant robot’),(10893,’soong sisters’),(10897,’mime’),(10902,’new age’),(10904,’telephone call’),(10905,’big business’),(10906,’retail trade’),(10907,’consumerism’),(10909,’lawyer’),(10910,’wealthy’),(10911,’inheritance’),(10915,’last will and testament’),(10931,’drifting’),(10937,’memory’),(10938,’old man’),(10941,’disappearance’),(10945,’staring contest’),(10947,’goat’),(10950,’shootout’),(10954,’blood on shirt’),(10955,’wedding party’),(10958,’man hunt’),(10965,’playwright’),(10968,’lingerie’),(10978,’bad cop’),(10982,’king arthur’),(10983,’anthropology’),(10984,’true’),(10985,’spontaneous combustion’),(10986,’chipmunk’),(10987,’cgi’),(10988,’based on tv series’),(10991,’annie oakley’),(11001,’religion’),(11004,’rural setting’),(11005,’prologue’),(11007,’post world war i’),(11011,’morality’),(11014,’mail order bride’),(11016,’kansas city’),(11017,’spell’),(11018,’irish’),(11020,’classic’),(11031,’guerrilla warfare’),(11032,’defense’),(11034,’b movie’),(11038,’trial’),(11040,’masked killer’),(11053,’punk rock’),(11058,’super speed’),(11060,’trap’),(11061,’debt’),(11064,’nazi germany’),(11065,’funny nazi’),(11068,’oklahoma city bombing’),(11071,’plan gone wrong’),(11083,’paganism’),(11086,’wooden eye’),(11087,’gold coin’),(11088,’treasure map’),(11093,’parenthood’),(11095,’cruise ship’),(11100,’giant monster’),(11102,’panzer’),(11105,’swastika’),(11106,’infantry’),(11107,’rescue mission’),(11108,’american flag’),(11109,’military officer’),(11110,’dead soldier’),(11111,’war memorial’),(11112,’search’),(11113,’shot in the back’),(11115,’heroism’),(11116,’plane wreck’),(11117,’tank’),(11121,’plot’),(11122,’german officer’),(11123,’piano wire’),(11124,’medal’),(11128,’furry’),(11130,’art house’),(11131,’biohazard’),(11134,’espionage’),(11138,’military spoof’),(11139,’steel helmet’),(11145,’spelling’),(11146,’spelling bee’),(11148,’police chase’),(11155,’wolfman’),(11156,’stew’),(11157,’sibling rivalry’),(11159,’wartime’),(11162,’miniseries’),(11168,’private investigator’),(11169,’missing girl’),(11173,’troll’),(11181,’decapitation’),(11183,’fireplace’),(11184,’reference to the big bad wolf’),(11187,’grim reaper’),(11190,’sexual attraction’),(11192,’adult humor’),(11195,’empire’),(11196,’rebellion’),(11199,’undercover cop’),(11200,’look-alike’),(11204,’literary agent’),(11207,’u.s. marshal’),(11208,’conspiracy theory’),(11209,’middle aged woman’),(11214,’cartoon sex’),(11217,’child swearing’),(11219,’navy seal’),(11221,’blood’),(11222,’prophet’),(11223,’dream girl’),(11239,’distant future’),(11240,’live concert’),(11242,’junkyard’),(11243,’black american’),(11246,’barbed wire’),(11249,’blood bath’),(11254,’loss of virginity’),(11258,’suicidal’),(11259,’extortion’),(11260,’serial murder’),(11263,’electric chair’),(11265,’mind reading’),(11267,’solitary confinement’),(11268,’psychologist’),(11280,’dolly zoom’),(11282,’roller derby’),(11289,’woman reporter’),(11290,’cab driver’),(11297,’judgment’),(11313,’winnebago’),(11314,’f word’),(11316,’sexual humor’),(11317,’visions of hell’),(11318,’landlord’),(11321,’animated sequence’),(11322,’female protagonist’),(11324,’u.s. canada war’),(11325,’shot to death’),(11326,’shaman’),(11327,’wedding reception’),(11330,’cider’),(11331,’tale’),(11332,’farm life’),(11333,’cigar smoking’),(11335,’tape recorder’),(11336,’young boy’),(11337,’cheetah’),(11338,’wild animal’),(11341,’methamphetamine’),(11343,’brighton’),(11362,’cockney accent’),(11363,’arson’),(11371,’deserted town’),(11372,’lemonade’),(11390,’liposuction’),(11399,’marine’),(11400,’sergeant’),(11408,’gargoyles’),(11409,’imaginary land’),(11411,’wager’),(11412,’female prisoner’),(11422,’plot twist’),(11423,’kamikaze’),(11426,’moral ambiguity’),(11427,’movie reference’),(11428,’convertible’),(11429,’head wound’),(11430,’punched in the face’),(11431,’wrestler’),(11434,’ambiguous ending’),(11435,’briefcase’),(11436,’redemption’),(11440,’long take’),(11441,’lifting person in air’),(11442,’heirloom’),(11445,’reference to sprite’),(11446,’pulp fiction’),(11447,’reference to al green’),(11451,’poku00e9mon’),(11454,’scam’),(11459,’locked in trunk of car’),(11460,’baseball card’),(11461,’hangover’),(11462,’lost weekend’),(11464,’bag over head’),(11465,’chapel’),(11467,’hit with tire iron’),(11469,’memory loss’),(11475,’politically incorrect’),(11476,’personification of satan’),(11477,’talking animal’),(11478,’talking dog’),(11479,’social commentary’),(11483,’drug trip’),(11485,’drug humor’),(11486,’sexual arousal’),(11487,’midnight movie’),(11488,’pot smoking’),(11491,’cult figure’),(11492,’smoking marijuana’),(11494,’drug use’),(11500,’anthropomorphism’),(11501,’cheating wife’),(11503,’hit’),(11508,’jewish’),(11509,’cheating on partner’),(11510,’unfaithfulness’),(11511,’unfaithful boyfriend’),(11512,’public sex’),(11513,’cheating husband’),(11514,’social satire’),(11522,’police officer killed’),(11524,’in the closet’),(11525,’sherwood forest’),(11530,’sexual freedom’),(11539,’grass’),(11541,’surprise ending’),(11542,’shock in the end’),(11545,’leatherface’),(11546,’hitchhiker’),(11547,’slaughterhouse’),(11578,’mobster’),(11579,’impalement’),(11581,’severed head’),(11587,’dummy’),(11590,’italian american’),(11612,’hospital’),(11614,’filmmaker’),(11615,’internet’),(11624,’mythological beast’),(11627,’paranormal phenomena’),(11628,’cloning’),(11634,’live performance’),(11635,’monologue’),(11659,’paranoid fantasy’),(11660,’hippie lifestyle’),(11663,’camp’),(11666,’microphone’),(11672,’cheerleading’),(11677,’secretary’),(11678,’free spirit’),(11687,’breaking the fourth wall’),(11696,’underage drinking’),(11700,’rock music’),(11701,’milkman’),(11703,’russian orthodox church’),(11704,’judaism’),(11705,’tavern’),(11706,’constable’),(11707,’suitor’),(11709,’russian soldier’),(11715,’arrow’),(11718,’feminist’),(11719,’dirty cop’),(11720,’officer involved shooting’),(11722,’male prostitute’),(11723,’rogue cop’),(11724,’vulgarity’),(11727,’crime scene’),(11728,’burglary’),(11730,’internal affairs’),(11732,’cigarette smoking’),(11733,’drug dealing’),(11734,’police corruption’),(11738,’evil corporation’),(11739,’repo man’),(11746,’hit in crotch’),(11762,’beaten to death’),(11767,’suicide by gunshot’),(11772,’cage fighting’),(11792,’incest overtones’),(11794,’pokies’),(11795,’lasersight’),(11798,’slumber party’),(11799,’reality spoof’),(11800,’mockumentary’),(11823,’pacific island’),(11825,’based on comic strip’),(11826,’cottage’),(11827,’swimmer’),(11829,’infertility’),(11830,’hot tub’),(11832,’peter pan syndrome’),(11833,’forty something’),(11836,’contest’),(11855,’pentagram’),(11856,’overturning car’),(11857,’mental institution’),(11858,’red’),(11860,’fish out of water’),(11869,’mistress’),(11870,’teen movie’),(11872,’atrocity’),(11875,’detention camp’),(11925,’domestic violence’),(11930,’drone’),(11931,’spoof’),(11933,’conflict’),(11935,’working class’),(11937,’conservative’),(11953,’loft’),(11960,’naked scene’),(11999,’fox news’),(12011,’hijinks’),(12026,’alternate history’),(12090,’cross dressing’),(12091,’the star spangled banner’),(12094,’business’),(12095,’omaha’),(12096,’hair’),(12097,’allergy’),(12101,’miniaturization’),(12102,’resident evil’),(12105,’student’),(12185,’moon base’),(12189,’extreme sports’),(12190,’cyberpunk’),(12192,’counter-culture’),(12193,’reporter’),(12200,’saving christmas’),(12208,’narration from grave’),(12279,’family drama’),(12332,’apocalypse’),(12335,’aunt niece relationship’),(12336,’storm chaser’),(12339,’slasher’),(12341,’pitbull’),(12347,’infiltration’),(12352,’comic book shop’),(12353,’comic book collector’),(12354,’hong kong’),(12355,’sniper rifle’),(12361,’hacking’),(12365,’gang rape’),(12366,’hitwoman’),(12367,’female assassin’),(12369,’tokyo japan’),(12371,’gunfight’),(12372,’lingerie slip’),(12375,’transhumanism’),(12377,’zombie’),(12380,’tournament’),(12388,’romulans’),(12389,’dirty tricks’),(12390,’boarding house’),(12391,’boat chase’),(12392,’best friend’),(12393,’golden gate bridge’),(12394,’chainsaw’),(12396,’hollywood’),(12398,’teen sex comedy’),(12399,’homeschooling’),(12400,’brainwashing’),(12401,’big city’),(12403,’girlfriend from china’),(12404,’hard to kill’),(12405,’outer space’),(12406,’testting’),(12407,’testing’),(12408,’head of state’),(12413,’downfall’),(12414,’escaped convict’),(12415,’back from the dead’),(12416,’horror spoof’),(12420,’unsimulated sex’),(12422,’drug stealing’),(12423,’illegal immigrant’),(12424,’yakluza’),(12425,’racism’),(12426,’shinjuku’),(12427,’criminal syndicate’),(12428,’taiwanese’),(12434,’undertaker’),(12436,’architecture’),(12438,’sculpture’),(12440,’ranchers’),(12446,’another dimension’),(12532,’african american’),(12541,’misunderstanding’),(12544,’crying’),(12545,’mansion’),(12547,’billionaire’),(12552,’alice in wonderland’),(12553,’alien abduction’),(12554,’dragon’),(12555,’tony stark’),(12562,’muhammad’),(12564,’werewolf’),(12565,’psychological thriller’),(12572,’experiment gone wrong’),(12579,’irish republican army’),(12612,’nemesis’),(12616,’dinosaur’),(12617,’airplane crash’),(12626,’georgia europe’),(12639,’brutal death’),(12648,’bromance’),(12649,’samba’),(12653,’brother against brother’),(12654,’armageddon’),(12655,’regent’),(12662,’wrongful imprisonment’),(12663,’little girl’),(12670,’los angeles’),(12764,’rango’),(12965,’duel’),(12971,’zookeeper’),(12974,’principal’),(12980,’brother-in-law sister-in-law relationship’),(12987,’poverty’),(12988,’pirate’),(12990,’singing’),(12993,’suicide mission’),(12995,’historical fiction’),(12996,’dogme 95′),(12997,’dinner’),(12998,’the muppets’),(12999,’black and white’),(13000,’based on short film’),(13001,’cowardliness’),(13002,’avatar’),(13004,’medical’),(13005,’doctor’),(13006,’torture’),(13008,’train’),(13014,’orphan’),(13015,’terrorism’),(13017,’drifter’),(13025,’milliionaire’),(13027,’wedding’),(13028,’writer’),(13031,’creature’),(13035,’middle school’),(13037,’drug smuggling’),(13038,’retro’),(13040,’electrocution’),(13042,’soccer’),(13043,’dating’),(13046,’grocery’),(13047,’loss of relative’),(13056,’loss of wife’),(13059,’prostitution’),(13063,’car accident’),(13065,’soldier’),(13068,’impostor’),(13069,’african’),(13072,’falling in love’),(13073,’fear’),(13078,’skinny dipping’),(13084,’king’),(13087,’disobey’),(13088,’summer’),(13090,’briefs’),(13091,’u00a0′),(13092,’corpse’),(13094,’photograph’),(13095,’death of lover’),(13097,’maid’),(13098,’moral courage’),(13099,’ressentiment’),(13100,’nude protest’),(13112,’murderer’),(13116,’one man army’),(13117,’job transfer’),(13118,’love interest’),(13121,’essex’),(13124,’scream’),(13125,’sadist’),(13127,’farmhouse’),(13129,’execution’),(13130,’teenager’),(13132,’pistol’),(13140,’niece’),(13142,’gangster’),(13149,’pregnancy’),(13151,’drawing’),(13152,’air’),(13153,’spirit’),(13154,’world’),(13155,’domination’),(13156,’cheering’),(13159,’chinese’),(13160,’university’),(13161,’towel’),(13194,’planet’),(13209,’cabin in the woods’),(13281,’work ethic’),(13384,’tv morning show’),(13424,’tv reporter’),(13495,’duplicate’),(13519,’german occupation of france’),(14512,’new york city’),(14514,’class differences’),(14519,’military tribunal’),(14521,’man change’),(14522,’co-worker’),(14527,’storm’),(14529,’improvisation’),(14530,’director’),(14531,’play’),(14532,’crazy’),(14534,’relationship’),(14536,’crime’),(14540,’death by accident’),(14541,’crash’),(14542,’end is here’),(14544,’robot’),(14545,’automaton’),(14546,’massacre’),(14547,’checkpoint’),(14548,’political assassination’),(14549,’loss of job’),(14552,’ira’),(14555,’mi6′),(14557,’undressing’),(14558,’bathtub’),(14559,’hillbilly’),(14560,’body in chipper’),(14561,’cut off jeans’),(14569,’chameleon’),(14570,’las vegas’),(14571,’cactus’),(14574,’rancher’),(14575,’mariachi’),(14576,’pedophile’),(14577,’musketeer’),(14585,’terrarium’),(14586,’construction site’),(14587,’armadillo’),(14588,’disillusionment’),(14595,’lap dance’),(14600,’guitarist’),(14601,’explosion’),(14602,’break-up’),(14604,’theft’),(14605,’helicopter pilot’),(14613,’elephant trainer’),(14617,’mole’),(14618,’british spy’),(14624,’cruelty’),(14626,’astronaut’),(14629,’experimental film’),(14632,’suburb’),(14633,’moving out’),(14636,’india’),(14638,’american’),(14641,’based on memoir’),(14643,’battle’),(14647,’man child’),(14648,’parent’),(14651,’house warming’),(14656,’order of the templars’),(14657,’bail’),(14658,’drug trade’),(14659,’girl’),(14665,’barbarian’),(14666,’muscleman’),(14667,’poseidon’),(14669,’older man younger woman relationship’),(14673,’disease’),(14674,’vaccine’),(14675,’lethal virus’),(14676,’series of murders’),(14677,’bullet wound’),(14678,’case’),(14686,’head bashed in’),(14687,’extreme violence’),(14688,’multiple stabbings’),(14690,’violent death’),(14692,’hook’),(14696,’bloody fight’),(14698,’throat slitting’),(14704,’ancient world’),(14707,’brutality’),(14708,’tears’),(14712,’young woman’),(14714,’summer vacation’),(14720,’love affair’),(14724,’family vacation’),(14728,’antarctica’),(14729,’shape shifting alien’),(14731,’martial arts master’),(14733,’texan’),(14735,’motorcycle’),(14736,’motorcycle gang’),(14737,’economics’),(14738,’yard sale’),(14742,’psychic’),(14743,’pianist’),(14744,’english’),(14745,’bush whacker’),(14748,’raid’),(14751,’youth’),(14752,’potion’),(14753,’scot’),(14755,’power outage’),(14756,’destruction of planet’),(14757,’wedding toast’),(14759,’ape’),(14760,’scientist’),(14765,’church’),(14766,’cafe’),(14767,’scar’),(14768,’single mother’),(14769,’devotion’),(14773,’eclipse’),(14774,’flask’),(14775,’corps’),(14778,’urination’),(14779,’paradox’),(14780,’investigator’),(14781,’patient’),(14782,’trust’),(14783,’false accusations’),(14784,’medication’),(14785,’underwater’),(14789,’art thief’),(14791,’spa’),(14792,’tarantula’),(14794,’lust’),(14796,’destruction’),(14798,’park’),(14805,’maniac’),(14808,’scalping’),(14811,’exploding head’),(14818,’model’),(14819,’violence’),(14825,’electronic music score’),(14828,’city’),(14829,’strangulation’),(14831,’stabbing’),(14837,’rage’),(14857,’juvenile delinquent’),(14866,’doorman’),(14872,’reward’),(14873,’tenement’),(14882,’ontario canada’),(14886,’thirty something’),(14888,’burning man’),(14893,’art’),(14895,’cannibal’),(14896,’reavers’),(14898,’spitting blood’),(14899,’white suit’),(14900,’genocide’),(14901,’body mutilation’),(14903,’home invasion’),(14905,’britain’),(14906,’slave’),(14909,’alien invasion’),(14913,’water park’),(14914,’swinging’),(14915,’invisible’),(14922,’kendo’),(14926,’katana sword’),(14935,’disarming someone’),(14946,’fictional war’),(14955,’fighting’),(14964,’drug’),(14967,’foot chase’),(14983,’proposal’),(14984,’cardiologist’),(14985,’ireland’),(14987,’cliffs’),(14988,’asian’),(14989,’religious’),(14991,’tentacle’),(14999,’devil’),(15000,’person on fire’),(15001,’demon’),(15002,’dark hero’),(15009,’criminal’),(15016,’twins’),(15017,’danger’),(15021,’mysterious letter’),(15022,’text message’),(15025,’parenting’),(15027,’taboo’),(15032,’gothic horror’),(15036,’ancient china’),(15038,’secret plot’),(15040,’ghost hunting’),(15043,’paranormal investigation’),(15048,’teenage prostitute’),(15049,’sex trafficking’),(15053,’united nations’),(15058,’swimming’),(15059,’t shirt’),(15060,’period drama’),(15061,’docudrama’),(15067,’talking to the camera’),(15068,’one day’),(15069,’masked man’),(15070,’forever’),(15072,’smurf’),(15073,’blue’),(15074,’vortex’),(15075,’mischief’),(15076,’cat and mouse’),(15078,’pervertion’),(15079,’record’),(15084,’skull’),(15085,’splatter’),(15086,’advertising’),(15087,’iraq war’),(15089,’fighter plane’),(15090,’police officer’),(15095,’revenge motive’),(15097,’shark’),(15098,’great white shark’),(15100,’lock pick’),(15101,’based on children\’s book’),(15106,’psychiatrist’),(15108,’justice’),(15111,’drinking’),(15112,’naive’),(15120,’kindness’),(15124,’framed’),(15126,’historical’),(15127,’killer’),(15128,’sex talk’),(15134,’election’),(15135,’gay sex’),(15136,’female homosexuality’),(15137,’union’),(15138,’private club’),(15142,’broken ankle’),(15145,’deadline’),(15147,’german accent’),(15148,’ostrich’),(15149,’monkey’),(15150,’bullfrog’),(15151,’car dealership’),(15155,’witness to murder’),(15156,’cell phone’),(15157,’sketching’),(15158,’rebellious youth’),(15160,’divorce’),(15161,’rebellious daughter’),(15162,’dog’),(15163,’freeze frame’),(15164,’custody’),(15165,’school play’),(15166,’photo shoot’),(15167,’police detective’),(15174,’ecology’),(15175,’subliminalu00a0′),(15178,’food industry’),(15182,’partisan’),(15184,’woman’),(15186,’task force’),(15188,’martha\’s vineyard’),(15189,’violin player’),(15191,’seminar’),(15192,’staff’),(15198,’car wreck’),(15199,’rabbit’),(15201,’music fan’),(15202,’rural ireland’),(15203,’dry humour’),(15206,’woman fights man’),(15208,’biting’),(15209,’dead boy’),(15210,’wallet’),(15211,’sunglasses’),(15212,’rest stop’),(15213,’vicodin’),(15214,’buddy’),(15215,’waffle’),(15216,’avant-garde’),(15218,’special forces’),(15219,’rooftop’),(15222,’central america’),(15223,’vigil’),(15224,’candle’),(15225,’cattle’),(15226,’dead fish’),(15227,’counselor’),(15228,’golf course’),(15230,’red wine’),(15232,’parole’),(15233,’arsonist’),(15234,’convict’),(15235,’house fire’),(15237,’alcohol abuse’),(15240,’platoon’),(15246,’sabotage’),(15247,’word domination’),(15248,’commando’),(15250,’alien infection’),(15252,’magical object’),(15254,’protector’),(15261,’erased memory’),(15263,’park ranger’),(15265,’howling’),(15266,’social status’),(15267,’james bond spoof’),(15268,’incompetence’),(15269,’female boss’),(15270,’klutz’),(15271,’interrogation’),(15272,’gestapo’),(15274,’nervous breakdown’),(15275,’parade’),(15284,’cartoon cat’),(15285,’spin off’),(15290,’pursuit’),(15291,’on the road’),(15292,’hanged man’),(15295,’confrontation’),(15300,’father daughter relationship’),(15302,’evangelical christianity’),(15319,’attraction’),(15320,’insecurity’),(15321,’police station’),(15325,’universe’),(15334,’parking lot’),(15344,’shot in the stomach’),(15354,’struggle for survival’),(15363,’bank robbery’),(15365,’held captive’),(15375,’chains’),(15381,’captive’),(15394,’hatchet’),(15395,’antique’),(15396,’cardsharp’),(15402,’popularity’),(15403,’blind tutor’),(15460,’bound and gagged’),(15478,’art gallery’),(15479,’fashion’),(15481,’fictional city’),(15482,’kato’),(15483,’car chase’),(15484,’meth lab’),(15518,’facial scar’),(17937,’desolate’),(17947,’farmland’),(17953,’country’),(17975,’transgender’),(17977,’underground fighting’),(17985,’birth’),(17986,’miscarriage’),(17987,’killing spree’),(17989,’prison visit’),(17990,’guinea pig’),(17992,’broken arm’),(17993,’potty training’),(17994,’firecracker’),(17995,’epidemic’),(17996,’puzzle box’),(17997,’housekeeper’),(18001,’rock band’),(18005,’high school friends’),(18006,’birding’),(18007,’birdwatching’),(18009,’iran’),(18013,’separation’),(18015,’tutor’),(18020,’fantasy sequence’),(18021,’detroit’),(18023,’criminal mastermind’),(18024,’hungarian’),(18026,’drug lord’),(18027,’sibling’),(18028,’hiding’),(18029,’trapped’),(18030,’rubble’),(18031,’rescue team’),(18034,’desert’),(18035,’family’),(18036,’coward’),(18040,’loan’),(18046,’internet chat’),(18047,’anger’),(18049,’sex scene’),(18051,’female stalker’),(18053,’divorcee’),(18054,’self help guru’),(18056,’tricycle’),(18057,’prosthetic arm’),(18058,’pig mask’),(18060,’divorced woman’),(18064,’singing in a car’),(18067,’exploding house’),(18068,’teenage boy’),(18069,’laser gun’),(18070,’religious fundamentalist’),(18072,’preacher’),(18073,’covert agency’),(18074,’courthouse’),(18075,’political campaign’),(18077,’extreme sadism’),(18078,’child killer’),(18081,’sawed off shotgun’),(18082,’flamethrower’),(18083,’attempted robbery’),(18085,’intestines’),(18086,’disembowelment’),(18087,’attempted rape’),(18088,’shot repeatedly’),(18090,’town’),(18093,’wedding ceremony’),(18096,’spear’),(18098,’samurai sword’),(18101,’bow and arrow’),(18105,’sharpshooter’),(18106,’knife throwing’),(18107,’silencer’),(18109,’knife fight’),(18111,’kickboxing’),(18114,’exploding car’),(18115,’retired’),(18117,’female spy’),(18118,’disguise’),(18126,’sermon on the mount’),(18127,’new neighbor’),(18128,’inmate’),(18129,’labyrinth’),(18130,’psychopathy’),(18132,’newcastle united’),(18133,’computer games’),(18136,’hyena’),(18139,’nuclear war’),(18149,’cut arm’),(18153,’meerkat’),(18155,’vulture’),(18161,’baboon’),(18165,’animal’),(18171,’thunderstorm’),(18179,’drug addict’),(18187,’family reunion’),(18211,’loss of loved one’),(18230,’drug trafficking’),(18232,’opec’),(18233,’hostage situation’),(18236,’fasting’),(18249,’game’),(18253,’moving’),(18254,’laptop’),(18255,’rural’),(18263,’revolutionary’),(18266,’south america’),(18267,’vienna austria’),(18268,’atomic reactor’),(18269,’moskow’),(18293,’chef’),(18298,’tv show in film’),(18314,’internet porn’),(18320,’held at gunpoint’),(18321,’porn industry’),(18326,’fired from the job’),(18330,’nature’),(18339,’human rights’),(18378,’pesticide’),(18396,’catholic’),(18401,’contemporary setting’),(18402,’strong language’),(18409,’mental patient’),(18419,’privacy’),(18420,’surveillance’),(18425,’teenage love’),(18432,’female martial artist’),(18450,’exploitation film’),(18451,’over the top’),(18453,’gossip’),(18454,’compassion’),(18455,’tolerance’),(18457,’minister for education’),(18465,’interrupted hanging’),(18480,’tropical’),(18508,’exploding body’),(18512,’slow motion’),(18514,’death of family’),(18520,’though guy’),(18522,’one against many’),(18524,’refrigerator’),(18525,’fbi agent’),(18543,’combat’),(18677,’alternative’),(18712,’based on graphic novel’),(18933,’catwoman’),(21747,’poland’),(33067,’drug bust’),(33088,’rave party’),(33341,’tea kettle’),(33342,’conga line’),(33343,’spit in the face’),(33344,’bandit’),(33347,’apartment building’),(33352,’police car’),(33353,’boy genius’),(33355,’skateboard’),(33358,’contraception’),(33360,’employer’),(33364,’visit’),(33372,’womanhood’),(33396,’remake of french film’),(33401,’master’),(33403,’bayonet’),(33407,’hanging’),(33421,’crime family’),(33426,’gang member’),(33432,’male masturbation’),(33451,’masturbation’),(33452,’trilogy’),(33454,’convenience store robbery’),(33455,’chick flick’),(33456,’double cross’),(33457,’alcoholic’),(33458,’gay man’),(33460,’credit’),(33461,’diamond’),(33465,’parallel world’),(33466,’button’),(33467,’new home’),(33468,’secret door’),(33471,’downsizing’),(33472,’cross country’),(33473,’triplet’),(33474,’band singer’),(33475,’songwriter’),(33476,’widower’),(33479,’single father’),(33480,’environmental’),(33482,’war hero’),(33483,’u.s. congress’),(33484,’concert hall’),(33485,’calcutta’),(33490,’filmmaking’),(33491,’part animated’),(33493,’valet’),(33494,’couple’),(33496,’construction’),(33498,’transplant’),(33499,’bhutan’),(33500,’story in story’),(33501,’political’),(33502,’voting results’),(33505,’gothic’),(33507,’multiple identities’),(33513,’desire’),(33514,’clue’),(33515,’drugged’),(33518,’district attorney’),(33519,’courtroom’),(33534,’folk singer’),(33553,’walkie talkie’),(33556,’urban setting’),(33558,’practice’),(33564,’u.s. soldier’),(33577,’environment’),(33580,’children\’s rights’),(33582,’migrant farmworker’),(33585,’labor’),(33586,’latino’),(33587,’child labor’),(33592,’cityscape’),(33593,’drawn’),(33594,’falling elevator’),(33595,’pier’),(33597,’tooth fairy’),(33598,’woodchipper’),(33600,’stagecoach’),(33608,’gardener’),(33609,’stolen truck’),(33610,’gym’),(33611,’exercise’),(33613,’madame’),(33615,’cricket bat’),(33616,’broken bottle’),(33617,’genocide in rwanda’),(33618,’machine’),(33619,’pardon’),(33620,’guilty’),(33621,’desk’),(33623,’raincoat’),(33624,’band’),(33625,’illegal prostitution’),(33626,’millionaire’),(33630,’doll’),(33632,’apartment’),(33634,’stork’),(33635,’pelican’),(33636,’irak’),(33637,’superpower’),(33638,’warfare’),(33646,’information leak’),(33648,’celebration’),(33649,’legs’),(33650,’disc’),(33651,’ex priest’),(33652,’private’),(33656,’pervert’),(33671,’german shepherd’),(33672,’financial transactions’),(33673,’apple’),(33674,’conscience’),(33675,’jackass’),(33676,’figaro’),(33677,’sneezing’),(33678,’beard’),(33679,’unprotected sex’),(33683,’beijing’),(33688,’hunting’),(33694,’family holiday’),(33696,’sea monster’),(33699,’policeman’),(33702,’bombing’),(33705,’agent’),(33707,’pen’),(33709,’head’),(33711,’entity’),(33719,’drink’),(33720,’guilt’),(33721,’body-swap’),(33722,’true crime’),(33725,’locker’),(33726,’motor’),(33731,’stand-up comedian’),(33740,’humiliation’),(33756,’deaf’),(33759,’fish tank’),(33760,’great barrier reef’),(33768,’blind’),(33773,’organ transplant’),(33774,’blood type’),(33775,’book editor’),(33779,’rail car’),(33780,’dentist’),(33782,’diver’),(33783,’dark’),(33784,’muggle’),(33786,’apollo s’),(33787,’tower’),(33788,’guide’),(33794,’day care’),(33795,’salem’),(33829,’whaling’),(33841,’incest’),(33844,’margaret thatcher’),(33845,’british overseas territory’),(33846,’war propaganda’),(33847,’british politics’),(33848,’british prime minister’),(33850,’female politician’),(33852,’falklands war’),(33856,’political leader’),(33857,’female prime minister’),(33858,’right wing’),(33860,’falklands’),(33861,’law student’),(33872,’animal in cast credits’),(33873,’little people’),(33874,’polaroid’),(33876,’swinger’),(33879,’producer’),(33880,’following someone’),(33885,’car’),(33887,’name calling’),(33888,’electric guitar’),(33896,’montage’),(33898,’rock \’n\’ roll’),(33905,’inner city’),(33910,’high school student’),(33922,’pop music’),(33926,’chorus line’),(33928,’audition’),(33933,’split screen’),(33934,’choreographer’),(33940,’dance class’),(33965,’christmas eve’),(33966,’scrooge’),(33973,’glam rock’),(33974,’fortress’),(33977,’medical experiment’),(33981,’falling down stairs’),(33998,’lesbian sex’),(34000,’motorcycle racing’),(34004,’second chance’),(34009,’tough girl’),(34013,’shoe shiner’),(34014,’northern france’),(34023,’fbi director’),(34029,’chubby woman’),(34030,’typewriter’),(34038,’intrigue’),(34051,’team’),(34052,’homerun’),(34053,’video store’),(34061,’american abroad’),(34067,’jousting’),(34079,’death’),(34094,’extramarital affair’),(34100,’all black cast’),(34112,’wig’),(34117,’cult film’),(34124,’mother superior’),(34125,’catholic school’),(34126,’convent school’),(34128,’building’),(34130,’makeover’),(34134,’veterinary’),(34135,’pioneer’),(34136,’blunt’),(34137,’dungeon’),(34139,’railroad’),(34143,’rich’),(34145,’beach house’),(34152,’evolution’),(34154,’north pole’),(34156,’tied up’),(34161,’doomsday’),(34214,’gender’),(34215,’lesbian interest’),(34221,’gender roles’),(34265,’heartbreak’),(34333,’lgbt child’),(39833,’maid of honor’),(40831,’u00a0gilbert and sullivan’),(40832,’gilbert and sullivan\’s princess ida’),(40837,’piano duet’),(40838,’lyricist’),(40841,’monsanto’),(40842,’organic food’),(40844,’sustainable’),(40847,’near future’),(40850,’destiny’),(40854,’airport security’),(40865,’new york state’),(40870,’race’),(40879,’drunk’),(40882,’tulips’),(40884,’blade’),(40894,’mysterious island’),(40895,’illness’),(40903,’diamond heist’),(40905,’cheering crowd’),(40916,’working mum’),(40917,’in-laws’),(40922,’saving lives’),(40929,’witch burning’),(40931,’witchcraft’),(40934,’tambourine’),(40936,’lock’),(40950,’waiter’),(40952,’therapy’),(40953,’car seat’),(40957,’police academy’),(40984,’exhibition’),(41000,’griculture’),(41002,’corn’),(41019,’car explosion’),(41022,’protestant’),(41132,’hockey game’),(41133,’shaving’),(41153,’meeting’),(41154,’puke’),(41155,’pants’),(41156,’liberal’),(41158,’stakeout’),(41171,’pond’),(41175,’shopping’),(41177,’weapon of mass destruction’),(41178,’baghdad’),(41179,’iraqiu00a0′),(41180,’security guard’),(41185,’heiress’),(41188,’bilbao spain’),(41203,’clique’),(41214,’youtube’),(41230,’body possession’),(41246,’tailor’),(41249,’secret service’),(41267,’bum’),(41277,’umbrella’),(41307,’lye’),(41308,’syringe’),(41309,’lost of friend’),(41310,’ride’),(41311,’bird hatching’),(41312,’chute’),(41314,’trestle’),(41316,’pet dog’),(41327,’snorkel’),(41328,’whistle’),(41329,’mental illness’),(41337,’freeze’),(41351,’will’),(41352,’drug overdose’),(41354,’dialogue driven’),(41355,’teacher student relationship’),(41372,’leg brace’),(41375,’casket’),(41376,’shovel’),(41377,’lily’),(41379,’argument’),(41380,’crucifix’),(41381,’rapist’),(41383,’triad’),(41385,’racial tension’),(41390,’mustache’),(41393,’new england’),(41401,’winning’),(41406,’middle ages’),(41410,’madness’),(41411,’vengeful ghost’),(41412,’sewer’),(41414,’timebomb’),(41509,’hate’),(41511,’cross’),(41523,’brooklyn new york city’),(41525,’high school teacher’),(41538,’turns into animal’),(41557,’shrine’),(41581,’jack frost’),(41584,’sandman’),(41585,’travelling circus’),(41586,’archaeologist’),(41589,’dying’),(41590,’love sickness’),(41591,’music band’),(41592,’monastery’),(41594,’electricity’),(41596,’denial’),(41599,’sailor’),(41600,’laundry’),(41603,’paramedic’),(41604,’oakland california’),(41605,’tail’),(41607,’recipe’),(41608,’cosmology’),(41609,’ego’),(41610,’saint’),(41611,’martyrdom’),(41612,’padre’),(41613,’rapier’),(41616,’cops and robbersu00a0′),(41640,’septic tank’),(41642,’town in panic’),(41643,’welding’),(41644,’gunshot’),(41645,’based on video game’),(41663,’bicycle courier’),(41665,’anarchy’),(41667,’horror movie remade’),(41668,’safe house’),(42923,’caterer’),(43591,’pedicab’),(44042,’treachery’),(44365,’poseidon u00a0′),(44413,’sundance kid’),(44443,’eating’),(44447,’pie’),(44449,’gloves’),(44450,’gong’),(44451,’lost’),(44452,’shake’),(44453,’mango’),(46950,’dagger’),(46951,’mirror’),(46952,’heavy rain’),(46953,’speedo’),(46954,’journal’),(46955,’implant’),(46958,’good and bad’),(46959,’tantrum’),(46962,’discipline’),(47018,’weasel’),(47019,’weaver’),(47020,’storytelling’),(47021,’bullet’),(47023,’first kiss’),(47024,’pin’),(47079,’dock’),(47972,’native peoples’),(48711,’ticket’),(49950,’prosecutor’),(49960,’business start-up’),(50009,’survival horror’),(53994,’shrew’),(53995,’archery’),(54005,’the beatles song’),(54016,’glue’),(54169,’stoner’),(54324,’patriot’),(54467,’tryst’),(54610,’dove’),(54612,’shoe’),(68642,’intimidation’),(68646,’supernatural being’),(68648,’mailbox’),(68649,’vegetable juice’),(68650,’australian man’),(68820,’videoconferencing’),(68838,’lightning bolt’),(69467,’longshoreman’),(130989,’butch cassidy’),(146946,’death in family’),(154123,’irish american’),(154681,’april fool\’s day’),(154777,’teeth’),(154781,’traffic policeman’),(154785,’short-term memory’),(154794,’royal court’),(154796,’overbearing father’),(154797,’harpsichord’),(154800,’hollywoodland’),(154802,’silent film’),(154806,’marquee’),(154842,’school teacher’),(154846,’farmer’),(154855,’wedding anniversary’),(154879,’county jail’),(154881,’fingerprints’),(154882,’appeal’),(154884,’escape artist’),(154889,’concealed weapon’),(154890,’head blown off’),(154892,’head stomp’),(154896,’sea turtle’),(154901,’audio recording’),(154937,’bisexual’),(154976,’shooting party’),(154986,’gonzo’),(155023,’self esteem’),(155030,’superhero team’),(155049,’wedding dress’),(155071,’pagan’),(155167,’cult director’),(155169,’american football star’),(155180,’cajun’),(155198,’ronin’),(155209,’caregiver’),(155211,’klingon’),(155212,’vulcan’),(155235,’animal killing’),(155236,’auto accident’),(155238,’hijack’),(155242,’shogun’),(155247,’irreverence’),(155251,’novelist’),(155262,’threesome’),(155271,’kinky’),(155273,’busty’),(155291,’cowboy’),(155294,’family conflict’),(155301,’rough sex’),(155317,’edgar allan poe’),(155331,’jewel’),(155333,’jet’),(155334,’scuba’),(155336,’smuggler’),(155343,’brumby’),(155344,’brumbies’),(155346,’colt’),(155347,’stockman’),(155349,’clancy of the overflow’),(155351,’muppet’),(155352,’kermit’),(155353,’fozzie bear’),(155354,’kermit the frog’),(155355,’floyd’),(155356,’dr teeth’),(155358,’miss piggy’),(155361,’studebaker’),(155372,’freezing’),(155410,’reading’),(155418,’subculture’),(155419,’shoplifting’),(155436,’classic noir’),(155440,’hitchcockian’),(155443,’dillinger’),(155445,’bank vault’),(155449,’b-girl’),(155453,’gritty’),(155457,’screwball comedy’),(155460,’defection’),(155461,’shark repelent’),(155462,’little dog’),(155464,’over-the-hill fighter’),(155466,’alamo’),(155479,’british pub’),(155480,’vespa’),(155482,’rock opera’),(155488,’black cat’),(155490,’disco’),(155494,’radio series’),(155497,’truck driver’),(155498,’cb radio’),(155499,’convoy’),(155501,’marry rich’),(155508,’jewel heist’),(155513,’dancehall girl’),(155514,’dirt bike’),(155529,’killer whale’),(155530,’capsized ship’),(155532,’fatal attraction’),(155539,’sicilian’),(155544,’horse track’),(155547,’weight lifting’),(155551,’lasers’),(155552,’elmore leonard’),(155555,’computer hacker’),(155556,’doggystyle’),(155561,’bitten’),(155565,’pin-up’),(155573,’wild west’),(155582,’amusement park’),(155584,’firewall’),(155585,’halley\’s comet’),(155591,’all girl’),(155619,’attic’),(155624,’envy’),(155626,’shot in the arm’),(155627,’axe in the head’),(155643,’foster child’),(155644,’toddler’),(155646,’kickboxer’),(155649,’arthouse’),(155651,’fall in love’),(155652,’nuclear’),(155658,’blonde woman’),(155678,’penis’),(155689,’monolith’),(155697,’aristocrat’),(155700,’charles willeford’),(155702,’used car salesman’),(155707,’musical number’),(155714,’al capone’),(155716,’rookie cop’),(155720,’rollerskating’),(155722,’teen comedy’),(155723,’jack ryan’),(155725,’red sox’),(155726,’fenway park’),(155730,’hammer horror’),(155733,’old house’),(155734,’scary little people’),(155735,’new york subway’),(155742,’future sport’),(155744,’newspaper man’),(155746,’deserted island’),(155751,’stolen identity’),(155755,’mysterious woman’),(155756,’tall ship’),(155759,’horse racing’),(155761,’phone sex’),(155762,’swinging 60s’),(155781,’trailer’),(155790,’private detective’),(155791,’american football player’),(155793,’attempted suicide’),(155794,’physical abuse’),(155795,’art dealer’),(155797,’hemingway’),(155799,’narcotics cop’),(155801,’mountain climber’),(155802,’american football stadium’),(155806,’killer plant’),(155808,’hometown’),(155811,’spiral staircase’),(155815,’motorcycle jump’),(155816,’ex-wife’),(155817,’estranged wife’),(155818,’newswoman’),(155821,’sled dogs’),(155841,’gambler’),(155845,’french noir’),(155851,’book store’),(155857,’strip tease’),(155859,’law man’),(155861,’workout’),(155873,’defense attorney’),(155879,’boating accident’),(155881,’estate’),(155882,’dying mother’),(155884,’beautiful girl’),(155888,’teenage daughter’),(155891,’trustee’),(155892,’trust fund’),(155894,’wild girl’),(155896,’wild child’),(155921,’palm sunday’),(155924,’jerusalem judah’),(155926,’bethlehem judah’),(155936,’recovering drug addict’),(155939,’group of friends’),(155955,’business card’),(156022,’nypd’),(156024,’corrupt politician’),(156026,’east germany’),(156028,’broadway’),(156031,’art theft’),(156033,’jekyll and hyde’),(156037,’socialite’),(156039,’space station’),(156052,’unemployment’),(156053,’bangladesh’),(156063,’expatriate’),(156064,’homecoming’),(156070,’intimate’),(156072,’watergate’),(156075,’evil’),(156080,’newspaper editor’),(156081,’tomb’),(156082,’cat burglar’),(156091,’missing person’),(156092,’fat suit’),(156093,’steven king’),(156095,’british secret service’),(156096,’butterfly’),(156099,’new york yankees’),(156104,’stranger’),(156112,’wake’),(156115,’feel-good ending’),(156116,’tommy gun’),(156117,’illegal drugs’),(156120,’train robbery’),(156121,’ex-con’),(156125,’swimwear’),(156143,’kitten’),(156149,’doberman’),(156151,’pigeon’),(156152,’hagakure’),(156153,’ice cream’),(156154,’haitian’),(156155,’cd player’),(156156,’rouge’),(156157,’arm sling’),(156158,’racial slur’),(156159,’martial arts tournament’),(156160,’beefcake’),(156162,’martial arts training’),(156165,’trucker’),(156166,’mormon’),(156167,’skeptic’),(156168,’hole’),(156173,’eye gouging’),(156174,’occult’),(156181,’lecture’),(156187,’cat house’),(156192,’gentle giant’),(156195,’family feud’),(156196,’street life’),(156212,’spaghetti western’),(156217,’u boat’),(156230,’midwest’),(156234,’cavalry’),(156237,’jewelry store’),(156240,’mortal danger’),(156257,’jail cell’),(156273,’critic’),(156277,’hedonism’),(156279,’possessiveness’),(156282,’alternate reality’),(156306,’price of fame’),(156316,’troubled teen’),(156318,’bats’),(156321,’tv movie’),(156322,’pretty woman’),(156330,’boxing trainer’),(156331,’lgbt athlete’),(156332,’punching bag’),(156334,’corporate crime’),(156336,’loudspeaker’),(156337,’prototype’),(156338,’corporate greed’),(156345,’istanbul turkey’),(156386,’bible quote’),(156388,’environmentalism’),(156389,’diabetic’),(156390,’face slap’),(156391,’peeping tom’),(156392,’scythe’),(156393,’aztec indian’),(156395,’imax’),(156401,’car wash’),(156433,’explicit sex’),(156455,’unhappiness’),(156478,’boyfriend’),(156479,’inheritance fight’),(156498,’georgian’),(156501,’pride’),(156507,’rainstorm’),(156510,’horse and carriage’),(156512,’decorum’),(156525,’heroine’),(156544,’cadaver’),(156546,’talking car’),(156573,’slevin’),(156574,’caso’),(156578,’newlywed’),(156580,’ghost story’),(156597,’magic realism’),(156630,’remote island’),(156640,’high rise’),(156641,’monitor’),(156642,’tower block’),(156645,’jakarta indonesia’),(156648,’swat’),(156650,’machine gun’),(156661,’threat’),(156702,’capture’),(156706,’oil tycoon’),(156708,’studio tour’),(156731,’escort’),(156760,’fake boyfriend’),(156761,’split personality’),(156764,’pre-code’),(156767,’nuclear threat’),(156768,’roller coaster’),(156770,’tightrope’),(156777,’teenage sexuality’),(156783,’blizzard’),(156786,’prison escape’),(156788,’swat team’),(156795,’lasso’),(156796,’cautery’),(156801,’club’),(156805,’dea agent’),(156810,’science’),(156816,’grenade launcher’),(156823,’drummer’),(156825,’music store’),(156835,’hypnotism’),(156836,’space race’),(156849,’large knife’),(156851,’psychiatric ward’),(156854,’cat fight’),(156855,’scientific experiment’),(156866,’based on short story’),(156883,’army general’),(156904,’dyr’),(156924,’tearjerker’),(156925,’first crush’),(156928,’tomboy’),(156934,’episodic’),(156948,’missing child’),(156949,’end of world’),(157008,’catholic church’),(157064,’circular saw’),(157096,’homoeroticism’),(157131,’light bulb’),(157132,’edgar allen poe’),(157136,’lynching’),(157141,’vanity project’),(157154,’psychotherapy’),(157160,’antarctic’),(157164,’animal death’),(157166,’beretta’),(157168,’ice skating’),(157171,’nonlinear timeline’),(157186,’swashbuckler’),(157194,’spanish’),(157202,’one woman army’),(157210,’framed for a crime’),(157222,’big corporation’),(157223,’bitterness’),(157234,’cemetary’),(157238,’computer expert’),(157251,’bomb planting’),(157263,’domed city’),(157286,’golddigger’),(157291,’narcissism’),(157296,’bankruptcy’),(157303,’first love’),(157321,’boundary violations’),(157325,’bandage’),(157331,’truce’),(157332,’flag’),(157333,’vote’),(157337,’inn’),(157344,’phone’),(157351,’living dead’),(157367,’chained’),(157375,’bludgeoning’),(157376,’game of death’),(157380,’tabloid’),(157384,’news reporter’),(157392,’female writer’),(157398,’garden shears’),(157409,’whispering’),(157418,’boiler room’),(157424,’sledgehammer’),(157444,’dismemberment’),(157458,’book of the dead’),(157459,’evil dead’),(157465,’eyeball’),(157466,’necronomicon’),(157468,’tarmac’),(157470,’meat cleaver’),(157471,’shot through a wall’),(157481,’ice cream man u00a0′),(157488,’pet cemetery’),(157490,’dead cat’),(157492,’death of patient’),(157495,’loss of pet’),(157496,’dead lover’),(157499,’mother son relationship’),(157512,’mutilation’),(157513,’severed foot’),(157514,’famous theme’),(157515,’shot in the face’),(157524,’tropical island’),(157532,’bitten in the neck’),(157560,’roadkill’),(157583,’knocked out’),(157584,’megalomaniac’),(157598,’store’),(157626,’director cameo’),(157632,’fraternity’),(157634,’parasite’),(157645,’slug’),(157661,’bodily dismemberment’),(157667,’warlock’),(157669,’health club’),(157675,’rabid anger’),(157676,’disfigured face’),(157677,’superhero spoof’),(157681,’strong man’),(157686,’car run over’),(157688,’shock humor’),(157690,’mall’),(157701,’psychotic’),(157722,’domineering mother’),(157748,’fast food’),(157758,’axe murder’),(157769,’stroke’),(157775,’bonfire’),(157788,’british soldier’),(157789,’arm ripped off’),(157791,’self mutilation’),(157799,’older woman younger man relationship’),(157800,’cutting’),(157812,’blood lust’),(157813,’naked’),(157890,’dissection’),(157892,’warehouse’),(157893,’stairs’),(157894,’ancient egypt’),(157902,’psychological’),(157904,’luck’),(157906,’outback’),(157908,’psychedelics’),(157912,’bigotry’),(157913,’young’),(157935,’apple computer’),(157938,’soviet’),(157955,’childhood’),(157958,’hostel’),(157959,’surgery’),(157960,’plowing’),(157961,’artillery’),(157963,’worship’),(157972,’chimpanzee’),(157974,’tease’),(157984,’prediction’),(157987,’animal actor’),(158017,’saber-toothed tiger’),(158018,’caving’),(158019,’grandson’),(158020,’movie theater’),(158022,’cargo ship’),(158023,’curiosity’),(158024,’critically bashed’),(158025,’medical research’),(158045,’piranha’),(158054,’spring break’),(158063,’seal’),(158064,’graboids’),(158070,’seismologist’),(158071,’binoculars’),(158072,’man eaten by monster’),(158091,’giant insect’),(158101,’alzheimer\’s disease’),(158108,’killer shark’),(158111,’no opening credits’),(158120,’exterminator’),(158124,’spider bite’),(158126,’creature feature’),(158129,’spider queen’),(158130,’animal attack’),(158144,’giant worm’),(158145,’flaming arrow’),(158153,’first class’),(158162,’teddy bear’),(158169,’remote’),(158172,’tooth’),(158175,’bear attack’),(158176,’campfire’),(158182,’severed toe’),(158188,’pick up’),(158189,’wetting pants’),(158190,’hockey mask’),(158192,’barbershop’),(158194,’perfume’),(158199,’aunt nephew relationship’),(158203,’straight razor’),(158204,’town meeting’),(158206,’forklift’),(158215,’lion attack’),(158217,’colonialism’),(158219,’swahili’),(158225,’terrier’),(158228,’kimono’),(158233,’anaconda’),(158235,’film crew’),(158241,’killer snake’),(158244,’river boat’),(158247,’underwater scene’),(158254,’pantyhose’),(158256,’gene manipulation’),(158259,’child killed by animal’),(158261,’bloody body of child’),(158264,’indian war’),(158265,’eyebrow’),(158266,’wild horse’),(158269,’oil refinery’),(158272,’seismograph’),(158276,’metamorphosis’),(158279,’hunt’),(158292,’eugenics’),(158297,’high-tension current’),(158304,’hand on crotch’),(158340,’theme park’),(158369,’dalmatian’),(158372,’military life’),(158375,’based on stage musical’),(158378,’cat vs dog’),(158386,’golden retriever’),(158387,’dog actor’),(158389,’wristwatch’),(158394,’foster home’),(158395,’animal lover’),(158401,’chihuahua’),(158402,’pinata’),(158415,’beagle’),(158418,’potted plant’),(158427,’pool table’),(158431,’united kingdom’),(158436,’porn actress’),(158438,’lost shoe’),(158449,’hatred’),(158455,’oppression’),(158456,’masked vigilante’),(158468,’chinese history’),(158470,’strategy’),(158471,’carrier pigeon’),(158474,’spear throwing’),(158477,’wall of fire’),(158478,’white dove’),(158480,’casualty of war’),(158482,’arrow in back’),(158487,’chinese tradition’),(158488,’chinese painting’),(158489,’broken arrow’),(158502,’frisbee’),(158505,’troubadour’),(158507,’gross out comedy’),(158512,’kashmir conflict’),(158534,’korean war’),(158538,’north korea’),(158540,’south korea’),(158547,’air raid’),(158553,’pyre’),(158558,’disabled’),(158567,’burn victim’),(158584,’tv news’),(158591,’injury’),(158606,’pickup truck’),(158620,’russian revolution’),(158627,’train explosion’),(158628,’foreign language adaptation’),(158629,’exploding train’),(158639,’missing father’),(158642,’long lost relative’),(158651,’realism’),(158672,’hand clapping game’),(158688,’rainbow’),(158713,’bdsm’),(158718,’lgbt’),(158741,’grave digger’),(158747,’metrosexual’),(158748,’subversion’),(158750,’female agent’),(158752,’schoolgirl uniform’),(158753,’punk rocker’),(158758,’lip synching’),(158761,’plaid’),(158763,’thesis’),(158764,’german girl’),(158765,’french girl’),(158770,’air traffic control’),(158774,’terrorist attack’),(158778,’behind enemy lines’),(158787,’army captain’),(158895,’shaved head’),(158927,’police investigation’),(158935,’newspaper review’),(158938,’baltimore maryland’),(158940,’newspaper office’),(158950,’hard times’),(158951,’life imitates art’),(158952,’pendulum’),(158967,’brooklyn bridge’),(158968,’gay lead character’),(158973,’black and white and color’),(158988,’struggling actor’),(158993,’man in wheelchair’),(159028,’cult leader’),(159075,’miniature people’),(159103,’mourning’),(159138,’death of son’),(159141,’sperm donor’),(159143,’biological father’),(159150,’artificial insemination’),(159156,’control freak’),(159161,’vegetable garden’),(159188,’reference to annabel lee’),(159197,’digging’),(159201,’baseball player’),(159212,’mountain climbing’),(159245,’scorpion’),(159278,’obsessive love’),(159287,’gas mask’),(159306,’crane’),(159314,’scientology’),(159315,’mental health’),(159317,’rude’),(159318,’obnoxious’),(159325,’ponzi scheme’),(159330,’empty safe’),(159333,’caper comedy’),(159334,’planning’),(159339,’safecracker’),(159341,’recruiting’),(159343,’heist movie’),(159346,’deceit’),(159350,’lobby’),(159355,’card dealer’),(159358,’explosives expert’),(159362,’black and white scene’),(159369,’male’),(159370,’salt lake city utah’),(159384,’wire’),(159399,’los angeles international airport (lax)’),(159401,’misdirection’),(159408,’scepter’),(159410,’customs house’),(159413,’jewelry heist’),(159419,’blueprint’),(159422,’assumed identity’),(159425,’schematic’),(159431,’voice over’),(159433,’surveillance camera’),(159434,’one last job’),(159449,’reference to elvis presley’),(159457,’security’),(159468,’millennium’),(159472,’computer screen’),(159480,’fabergu00e9 egg’),(159488,’dutch eastindian company’),(159490,’second’),(159491,’part’),(159496,’golden egg’),(159497,’goon’),(159510,’hollywood sign’),(159511,’television repair’),(159514,’subtitled scene’),(159520,’martinique’),(159521,’claude monet’),(159523,’famous painting’),(159529,’glider’),(159531,’insurance agent’),(159532,’missing painting’),(159534,’stolen painting’),(159538,’valuable painting’),(159539,’rich people’),(159544,’south hypnosis’),(159546,’pharmacy’),(159548,’clouseau’),(159550,’pink panther’),(159558,’skiing’),(159574,’clumsiness’),(159595,’sexual torture’),(159607,’grifter’),(159608,’con’),(159620,’big con’),(159627,’con game’),(159631,’premarital sex’),(159633,’pager’),(159669,’ex kgb’),(159679,’preparation’),(159684,’hit with a car door’),(159685,’cellular phone trace’),(159688,’merry go round’),(159700,’getaway’),(159707,’crime gone awry’),(159710,’hostage negotiator’),(159753,’ensemble cast’),(159772,’pretending to be rich’),(159783,’labor strike’),(159803,’killing a dog’),(159841,’cigarette lighter’),(159845,’tuberculosis’),(159857,’public hanging’),(159858,’strongbox’),(159859,’gold theft’),(159862,’british history’),(159865,’historic figure’),(159868,’piano playing’),(159869,’eye patch’),(159871,’horse carriage’),(159872,’opening action scene’),(159876,’unwanted kiss’),(159880,’boulder’),(159909,’veteran’),(159932,’uzi’),(159938,’dvd’),(159940,’exorcist’),(159944,’recording’),(159945,’customs’),(159946,’student visa’),(159947,’parents’),(159948,’blogger’),(159949,’neo nazi’),(159950,’neo nazism’),(159953,’automobile racing’),(159955,’cavemen’),(159961,’ham radio’),(160025,’radio broadcast’),(160058,’moonshine’),(160059,’psychosis’),(160069,’auroch’),(160071,’tough love’),(160073,’defrost’),(160075,’levee’),(160077,’design’),(160097,’intelligent’),(160117,’fantastic four’),(160128,’stich’),(160129,’artial arts’),(160130,’invisible man’),(160131,’morphing’),(160133,’scroll’),(160134,’the force’),(160137,’female hero’),(160140,’exchange student’),(160153,’dead’),(160174,’mental asylum’),(160175,’alps’),(160177,’mountaineering’),(160178,’waterfront’),(160184,’super strength’),(160189,’giant egg’),(160192,’backpack’),(160194,’night vision’),(160195,’freezer’),(160201,’union soldier’),(160213,’festival’),(160224,’post world war ii’),(160243,’classmate’),(160246,’childhood friends’),(160269,’lost love’),(160274,’angry mob’),(160279,’18th century’),(160292,’religious conflict’),(160309,’child abandonment’),(160313,’forensic’),(160321,’funeral director’),(160322,’funeral home’),(160324,’django’),(160325,’guadalcanal’),(160329,’super-8′),(160331,’astrophysics’),(160335,’hate crime’),(160350,’evil prince’),(160358,’reference to socrates’),(160359,’reference to plato’),(160362,’screwball’),(160364,’impersonation’),(160367,’lifting female in air’),(160370,’war room’),(160377,’bomber pilot’),(160381,’nuclear weapons’),(160387,’ex nazi’),(160395,’spats’),(160396,’all girl band’),(160397,’st. valentine\’s day massacre’),(160400,’sugar’),(160404,’valentine\’s day’),(160406,’dressing’),(160410,’reputation’),(160413,’unemployed actor’),(160420,’serenade’),(160422,’hit in the crotch’),(160423,’apology’),(160424,’live television’),(160442,’talking to the audience’),(160450,’dean’),(160478,’commodities’),(160483,’investor’),(160486,’big shot’),(160488,’hoodlum’),(160497,’wrongful arrest’),(160500,’santa hat’),(160510,’travel agent’),(160511,’amateur theater’),(160512,’dairy queen’),(160515,’alien contact’),(160517,’fake documentary’),(160518,’city council’),(160522,’wagon train’),(160528,’chinese restaurant’),(160529,’product licensing’),(160530,’hidden character’),(160543,’semiautomatic pistol’),(160583,’western town’),(160586,’western spoof’),(160588,’ceremony’),(160589,’frontier town’),(160595,’looking at the camera’),(160597,’saloon girl’),(160602,’movie reality crossover’),(160605,’nietzsche’),(160607,’coot’),(160612,’self-referential’),(160619,’fake accident’),(160627,’gambling debt’),(160754,’mother ship’),(160765,’roses’),(160780,’love crime’),(160800,’congo’),(160815,’best selling author’),(160840,’dream sequence’),(160841,’oven’),(160846,’ashes’),(160852,’vienna opera’),(160855,’naval’),(160856,’armada’),(160860,’battleship’),(160861,’naval combat’),(160865,’jds myoko’),(160866,’lost communication’),(160868,’taser’),(160873,’buoy’),(160875,’communications expert’),(160876,’joint chiefs of staff’),(160879,’crash landing’),(160880,’jet fighter pilot’),(160881,’navy lieutenant’),(160884,’permission to marry’),(160885,’uss john paul jones’),(160887,’based on board game’),(160910,’xenophobia’),(160929,’treatment’),(160945,’expectant father’),(160946,’expectant mother’),(160960,’watching tv’),(160961,’lifeguard’),(160962,’stepmother stepdaughter relationship’),(160977,’virginia’),(160980,’mother child relationship’),(160992,’insurgent’),(161043,’suicidal thoughts’),(161048,’japanese food’),(161151,’fiction’),(161155,’kids’),(161158,’scat’),(161160,’steve jobs’),(161164,’hypatia’),(161166,’misogyny’),(161167,’persecution’),(161168,’library of alexandria’),(161170,’perseus’),(161171,’kraken’),(161172,’gods’),(161173,’succubus’),(161174,’christmas carol’),(161176,’space opera’),(161178,’wintry’),(161184,’reboot’),(161186,’nesting grounds’),(161187,’pap smear’),(161188,’austin texas’),(161194,’estranged father’),(161198,’skepticism’),(161205,’creationism’),(161207,’catholicism’),(161208,’cenobites’),(161213,’high school reunion’),(161216,’blasphemy’),(161217,’pseudoscience’),(161218,’theology’),(161219,’consciousness’),(161220,’quantum mysticism’),(161221,’fantasy docudrama’),(161231,’hideout’),(161236,’golf war’),(161240,’sole survivor’),(161244,’iwo jima’),(161246,’pacific theater’),(161247,’drill instructor’),(161248,’individuality’),(161255,’nazi hunter’),(161256,’third reich’),(161257,’medieval’),(161261,’demonic possession’),(161264,’religious fanatic’),(161266,’teaching’),(161267,’misadventure’),(161270,’satanic ritual’),(161271,’beast’),(161272,’high school sweetheart’),(161276,’anthropologist’),(161279,’mysticism’),(161285,’polar night’),(161287,’central park’),(161288,’existence’),(161290,’sleeping’),(161298,’public urination’),(161302,’eternal youth’),(161304,’september 11 2001′),(161306,’world trade center’),(161307,’bronx’),(161315,’asbestos’),(161318,’enviromental’),(161320,’weightlifting’),(161506,’heir’),(161507,’cryptologist’),(161508,’iconography’),(161511,’edgar rice burroughs’),(161516,’valor’),(161520,’terrorist plot’),(161521,’navy life’),(161530,’national security’),(161534,’pregnant wife’),(161536,’silver star’),(161538,’counter plot’),(161545,’alcoholic father’),(161552,’little brother’),(161570,’troubled childhood’),(161630,’nascar’),(161635,’dog trainer’),(161636,’car movie’),(161643,’sport competition’),(161647,’psychosomatic illness’),(161652,’french stereotype’),(161693,’soho london’),(161694,’playing god’),(161705,’jacuzzi’),(161757,’fable’),(161762,’apple tree’),(161779,’corporate take over’),(161791,’kaiju’),(161794,’bad dream’),(161812,’fear of the dark’),(161817,’monty python’),(161837,’foot race’),(161849,’projectionist’),(161868,’child\’s point of view’),(161891,’doppelganger’),(161893,’cyclops’),(161896,’changeling’),(161919,’adult animation’),(161935,’relic’),(161944,’responsibility’),(161956,’mcdonald\’s restaurant’),(161958,’immaturity’),(161974,’getaway driver’),(161982,’murder investigation’),(161992,’kosher’),(161994,’stealing a car’),(161996,’movie poster’),(161998,’night vision goggles’),(161999,’suitcase full of money’),(162078,’female singer’),(162085,’loss of friend’),(162126,’corporatism’),(162177,’subjective camera’),(162181,’hit by truck’),(162219,’selfishness’),(162224,’passive aggression’),(162225,’fatherhood’),(162236,’convicted felon’),(162257,’instructor’),(162258,’jujitsu’),(162262,’movie star’),(162269,’nightstick’),(162271,’husband’),(162272,’life relationship’),(162275,’set up’),(162278,’window smashing’),(162296,’ex-boyfriend ex-girlfriend relationship’),(162301,’english subtitles in original’),(162304,’elevator shaft’),(162328,’ski resort’),(162333,’tall man’),(162334,’sentinals’),(162342,’discovery’),(162344,’antidote’),(162350,’ocean floor’),(162351,’deepsea’),(162356,’mechanical engineering’),(162357,’observatory’),(162365,’military’),(162370,’operative’),(162380,’ex soldier’),(162388,’retribution’),(162392,’spacecraft officer’),(162399,’exploding ship’),(162410,’exploding planet’),(162413,’wood chopping’),(162415,’mountain cabin’),(162429,’solar system’),(162461,’golf club’),(162463,’volkswagen beetle’),(162482,’severed ear’),(162484,’future war’),(162487,’wisecrack humor’),(162491,’commando mission’),(162502,’news report’),(162511,’text messaging’),(162512,’siren’),(162515,’contamination’),(162521,’flesh eating’),(162532,’shape shifter’),(162533,’torso cut in half’),(162538,’pitchfork’),(162610,’weightlessness’),(162630,’zero gravity’),(162632,’chrysler building’),(162645,’newspaper headline’),(162687,’theremin’),(162706,’temptation’),(162708,’mary magdalene’),(162710,’culture’),(162715,’ruins’),(162726,’prospector’),(162739,’little league’),(162740,’arms’),(162745,’ritual sacrifice’),(162749,’creator’),(162752,’dowager’),(162766,’religious cult’),(162767,’thuggee’),(162804,’sexual awakening’),(162806,’coven’),(162810,’macabre’),(162813,’law firm’),(162836,’weed+’),(162842,’stolen cars’),(162843,’state fair’),(162845,’revolt’),(162846,’ghost’),(162861,’ancient greece’),(162862,’based on greek myth’),(162875,’polaroid camera’),(162914,’one night’),(162934,’hugging’),(162936,’precocious child’),(162944,’child psychologist’),(162954,’elvis presley’),(162970,’institutionalization’),(162988,’dystopic future’),(162993,’dark humor’),(162994,’expert marksman’),(163000,’lifeboat’),(163014,’injured animal’),(163037,’lgbt teen’),(163045,’impregnation’),(163047,’beverly hills’),(163048,’decadence’),(163049,’government agent’),(163053,’found footage’),(163055,’satanic cult’),(163069,’child as an adult’),(163070,’burlesque’),(163072,’embezzlement’),(163074,’super villain’),(163075,’sideshow’),(163081,’law enforcement’),(163086,’pripyat’),(163096,’battle of the sexes’),(163097,’female athlete’),(163098,’newspaper reporter’),(163110,’theater’),(163116,’civil rights’),(163119,’injustice’),(163120,’slave trade’),(163127,’mexican’),(163128,’scalpel’),(163129,’dual role’),(163132,’photographic memory’),(163173,’hit and run’),(163180,’old friends’),(163182,’suicide thoughts’),(163186,’seance’),(163188,’confederate’),(163189,’court martial’),(163190,’box’),(163207,’cell’),(163212,’water pollution’),(163223,’prize money’),(163226,’ventriloquist dummy’),(163227,’unicorn’),(163228,’runaway train’),(163239,’spaceport’),(163242,’teenage rebellion’),(163248,’good becoming evil’),(163252,’alien race’),(163255,’mechanical hand’),(163270,’breeding’),(163272,’chancel’),(163277,’childbirth’),(163295,’galactic war’),(163303,’scary’),(163306,’bracelet’),(163335,’man with glasses’),(163338,’egyptian mythology’),(163386,’alien possession’),(163392,’triangle’),(163395,’infestation’),(163396,’disarmament’),(163398,’volcanic eruption’),(163402,’creation’),(163403,’great wall of china’),(163405,’aerobics’),(163420,’kryptonite’),(163440,’based on adaptation’),(163455,’super powers’),(163481,’cocoon’),(163484,’senior citizen’),(163514,’retirement home’),(163516,’defibrillation’),(163531,’albino’),(163533,’fainting’),(163543,’psionic power’),(163545,’healing power’),(163561,’genetic engineering’),(163569,’pistol whip’),(163599,’death of parent’),(163607,’chinese food’),(163621,’jason voorhees’),(163651,’one by one’),(163652,’friday the thirteenth’),(163656,’gun violence’),(163671,’steam locomotive’),(163674,’gunfighter’),(163682,’puerto rico’),(163699,’vomiting’),(163758,’ex-husband ex-wife relationship’),(163764,’death of brother’),(163795,’recreational vehicle’),(163798,’lincoln nebraska’),(163806,’tdrug lord’),(163810,’faked death’),(163815,’baja california’),(163824,’san remo’),(163828,’landfill’),(163833,’gallop’),(163834,’rolling eyes’),(163841,’booby trap’),(163865,’railway station’),(163914,’newspaper clipping’),(163919,’manufacturing’),(163925,’industrial accident’),(163933,’next door neighbor’),(163949,’pawnshop’),(163963,’summer job’),(163964,’carny’),(163968,’marijuana joint’),(163969,’baldness’),(163972,’picking one\’s nose’),(163975,’reckless driving’),(163976,’reconciliation’),(163982,’pushing a car’),(163984,’marijuana pipe’),(163985,’ticket booth’),(163991,’scene’),(163994,’raised middle finger’),(163997,’job seeking’),(163998,’leaving home’),(164000,’drugged cookie’),(164002,’beckenbauer’),(164003,’pele’),(164039,’grandmother’),(164044,’alcoholic drink’),(164046,’broken glass’),(164057,’talent contest’),(164060,’girl band’),(164061,’hospital bed’),(164077,’performer’),(164090,’audience’),(164092,’blindness’),(164124,’mass media’),(164148,’dark past’),(164162,’hit by a car’),(164167,’new brighton england’),(164181,’sister-in-law’),(164186,’character study’),(164193,’uncle nephew relationship’),(164218,’psychotronic’),(164224,’generation gap’),(164225,’television director’),(164245,’dying young’),(164246,’nostalgic’),(164253,’mexican american’),(164255,’rising star’),(164263,’marital rape’),(164296,’addict’),(164409,’tina turner’),(164414,’black woman’),(164431,’cameo appearance by real life subject’),(164443,’african american music’),(164447,’tejano’),(164460,’elopement’),(164468,’bustier’),(164476,’fan club’),(164478,’candidate’),(164500,’infatuation’),(164605,’withdrawal’),(164615,’washed up star’),(164623,’chorus girl’),(164628,’diction coach’),(164636,’pearl necklace’),(164641,’flapper’),(164657,’perfectionist’),(164658,’rowboat’),(164663,’courtship’),(164677,’brother-in-law brother-in-law relationship’),(164698,’boyfriend girlfriend’),(164713,’hamburg germany’),(164715,’photo’),(164717,’loretta lynn’),(164724,’washington state’),(164730,’still’),(164731,’grand ole opry’),(164734,’nashville tennessee’),(164736,’honkytonk’),(164738,’coal’),(164742,’coal mining’),(164745,’journey shown on map’),(164753,’moulin rouge’),(164754,’bohemian’),(164759,’toulouse lautrec’),(164764,’red curtain’),(164770,’cancan dance’),(164772,’la traviata’),(164775,’orpheus and eurydice’),(164810,’religious fundamentalism’),(164852,’steel worker’),(164861,’repossession’),(164865,’male stripper’),(164866,’black family’),(164877,’heroin addict’),(164881,’death of daughter’),(164884,’jazz music’),(164889,’eiffel tower paris’),(164899,’disfigurement mask’),(164917,’breaking mirror’),(164920,’opera singer’),(165086,’star crossed lovers’),(165100,’young love’),(165102,’rock sta’),(165132,’greaser’),(165136,’wolf whistle’),(165137,’school dance’),(165139,’animated credits’),(165142,’ferris wheel’),(165143,’pep rally’),(165147,’wrong side of the tracks’),(165148,’mooning’),(165154,’school principal’),(165168,’opening night’),(165171,’crutch’),(165172,’theatrical backer’),(165177,’eviction’),(165184,’show producer’),(165185,’chorine’),(165186,’plaster cast’),(165190,’show must go on’),(165193,’financial crisis’),(165194,’sock on the jaw’),(165212,’modern day adaptation’),(165214,’shakespeare in modern dress’),(165241,’broadway musical’),(165259,’political unrest’),(165278,’linguist’),(165279,’street’),(165282,’high society’),(165288,’misogynist’),(165290,’guttersnipe’),(165299,’class prejudice’),(165301,’opposites attract’),(165314,’skid row’),(165317,’based on film’),(165319,’plant food’),(165324,’flesh eating plant’),(165334,’inept assistant’),(165340,’based on article’),(165347,’swearing’),(165399,’editing’),(165402,’semi autobiographical’),(165407,’restroom’),(165419,’screening room’),(165420,’amphetamine’),(165423,’prescription drug abuse’),(165431,’anti war’),(165445,’welder’),(165458,’police arrest’),(165461,’march’),(165468,’governess’),(165470,’convent’),(165485,’music contest’),(165492,’novice’),(165493,’puppet show’),(165495,’nun in love’),(165503,’boy next door’),(165508,’americana’),(165531,’straw hat’),(165547,’fiancu00e9 fiancu00e9e relationship’),(165580,’cult classic’),(165583,’interracial friendship’),(165601,’self identity’),(165606,’rock odyssey’),(165607,’reference to kant’),(165608,’military brat’),(165612,’restaurant chain’),(165614,’lgbt in the military’),(165615,’child molestation’),(165621,’theatrical manager’),(165636,’mortician’),(165641,’tied to chair’),(165643,’song and dance’),(165646,’piano lesson’),(165647,’fisticuffs’),(165660,’talking to the dead’),(165675,’prison matron’),(165676,’jazz age’),(165686,’nude man murdered’),(165707,’deification’),(165713,’dancehall hostess’),(165716,’peru00f3nism’),(165718,’argentine president’),(165725,’rise to power’),(165727,’singing narrator’),(165728,’soccer ball’),(165735,’sidewalk cafe’),(165736,’room key’),(165746,’driving a car’),(165748,’coastline’),(165749,’stairway’),(165752,’search for meaning’),(165761,’sequins’),(165763,’singing photograph’),(165764,’sliding down a pole’),(165765,’costume designer’),(165770,’hiv positive’),(165787,’home movie’),(165798,’mugging’),(165803,’telephone call u00a0′),(165870,’riverboat’),(165871,’showboat’),(165872,’miscegenation’),(165875,’paddlewheel boat’),(165909,’alarm’),(166093,’hospital gown’),(166096,’cup’),(166103,’amazon rainforest’),(166104,’humanitarian’),(166109,’child murder’),(166113,’marriage problems’),(166120,’reprimand’),(166121,’declaration of love’),(166123,’parent child relationship’),(166124,’texting’),(166125,’low tide’),(166126,’forced’),(166129,’interrupted vacation’),(166132,’osteopath’),(166139,’lovesick’),(166148,’interracial couple’),(166229,’prom queen’),(166233,’pygmalion’),(166235,’clown makeup’),(166241,’performance art’),(166244,’beatboxing’),(166250,’self expression’),(166252,’tripping’),(166256,’pool cleaner’),(166276,’teenage sex’),(166287,’school bus’),(166309,’documentary crew’),(166329,’film industry’),(166457,’ares’),(166462,’mob boss’),(166464,’confederate soldier’),(166472,’beanstalk’),(166477,’confessional’),(166490,’troubled marriage’),(166492,’drive by shooting’),(166512,’graveyard’),(166539,’loan officer’),(166552,’quick draw’),(166571,’hired killer’),(166582,’police interrogation’),(166591,’photosensitivity’),(166594,’transforming robot’),(166611,’debauchery’),(166625,’candlelight vigil’),(166631,’loan shark’),(166686,’climbing up a wall’),(166691,’hung upside down’),(166694,’flashback within a flashback’),(166695,’cavern’),(166696,’battering’),(166697,’ram’),(166701,’ghost town’),(166720,’vampire slayer’),(166734,’smoke’),(166735,’crossbow’),(166770,’sex addict’),(166802,’prizefighting’),(166816,’bare knuckle fighting’),(166856,’hangar’),(166862,’severed hand’),(166873,’woman drowned’),(166930,’narnia’),(166947,’san fernando valley’),(166958,’prehistoric creature’),(166959,’lost mother’),(166964,’melting ice caps’),(166971,’shrimp’),(166973,’salt water’),(166974,’explosives’),(166979,’crawfish’),(166980,’shrimping’),(166989,’submerged’),(166992,’grits’),(166993,’african american child’),(166995,’wild man’),(167043,’road movie’),(167068,’twinkie’),(167081,’body count’),(167085,’zombification’),(167095,’disposing of a dead body’),(167103,’bitten on the arm’),(167104,’loner’),(167106,’conveyor belt’),(167114,’loose cannon’),(167115,’bust’),(167119,’reference to skittles’),(167124,’black cop’),(167128,’badge’),(167145,’knife in thigh’),(167149,’good cop bad cop’),(167159,’switchblade’),(167164,’call girl’),(167193,’male model’),(167195,’time magazine’),(167198,’fashion show’),(167200,’fashion model’),(167210,’fictional awards show’),(167212,’lincoln assassination’),(167213,’saturday night live’),(167215,’coal mine’),(167221,’bruges belgium’),(167227,’town square’),(167234,’vietnamese’),(167235,’canadian stereotype’),(167236,’skinned alive’),(167238,’gruuthuse museum bruges’),(167241,’newsroom’),(167250,’teleprompter’),(167254,’gang warfare’),(167268,’police force’),(167284,’cowboy costume’),(167308,’dog biscuit’),(167309,’shooting practice’),(167310,’sitting on a toilet’),(167311,’judo throw’),(167313,’police psychologist’),(167316,’buddy cop’),(167319,’firing range’),(167342,’bomb squad’),(167352,’crime lord’),(167377,’lapd’),(167381,’house on fire’),(167411,’ragtime’),(167418,’reference to mutt and jeff’),(167424,’off track betting’),(167428,’sting operation’),(167431,’alley’),(167444,’top secret’),(167451,’woman with glasses’),(167455,’hit with a telephone’),(167461,’truth serum’),(167466,’mushroom cloud’),(167467,’jackhammer’),(167475,’southeast asia’),(167477,’land mine’),(167486,’shackles’),(167492,’war filmmaking’),(167499,’software engineer’),(167506,’burnout’),(167507,’dallas texas’),(167510,’beach resort’),(167516,’coworker relationship’),(167519,’laziness’),(167529,’ceo’),(167531,’fire truck’),(167536,’shot in the shoulder’),(167538,’zip line’),(167541,’buddy comedy’),(167542,’carjacking’),(167550,’handicap’),(167554,’sexual favor’),(167555,’star spangled banner’),(167556,’bowling team’),(167560,’hair loss’),(167562,’biblical interpretation’),(167564,’comb over’),(167570,’female stripper’),(167574,’inflatable doll’),(167575,’combover’),(167576,’unlikely lovers’),(167580,’kingpin’),(167581,’carriage’),(167584,’aspen colorado’),(167591,’parakeet’),(167598,’defecation’),(167604,’kicked in the face’),(167608,’scooter’),(167615,’hotel suite’),(167617,’endangered species’),(167619,’foolish’),(167625,’talking to animals’),(167631,’munchies’),(167642,’crop circle’),(167656,’rich parents’),(167663,’car siren’),(167664,’blood spurting’),(167696,’healing’),(167707,’bulldogg’),(167715,’informant’),(167724,’jumping from a rooftop’),(167726,’surveillance footage’),(167737,’losing money’),(167739,’male virgin’),(167749,’horniness’),(167768,’dorm room’),(167772,’game tester’),(167799,’gonzo journalist’),(167805,’sweaty face’),(167808,’fake identity’),(167809,’wedding chapel’),(167812,’grapefruit’),(167818,’cadillac convertible’),(167822,’gibberish’),(167830,’corvette stingray’),(167833,’police convention’),(167836,’squall’),(167837,’sail’),(167843,’ship captain’),(167861,’caribbean’),(167863,’male bonding’),(167868,’seasickness’),(167875,’sombrero’),(167876,’baseball field’),(167877,’hard hat’),(167882,’professional sports’),(167884,’comic strip’),(167888,’hot dog’),(167889,’short sighted’),(167890,’voodoo ritual’),(167915,’hostess’),(167921,’trainee’),(167923,’gross out’),(167925,’employer employee relationship’),(167930,’speaking german’),(167939,’glass pipe’),(167942,’screaming’),(167982,’unlikely friendship’),(167986,’racer’),(168013,’lamborghini’),(168033,’jay and silent bob’),(168039,’self mocking’),(168040,’character is subject of comic’),(168042,’reference to prince valiant’),(168049,’indiana jones spoof scene’),(168051,’monkey actor’),(168054,’view askew’),(168063,’gigantic hand’),(168069,’animal experimentation’),(168110,’ledge’),(168115,’practical joke’),(168132,’biker film’),(168135,’awkwardness’),(168141,’travel writer’),(168152,’convenience store’),(168179,’drug deal’),(168196,’perfection’),(168200,’delivery’),(168202,’low intelligence’),(168210,’jet engine’),(168211,’twins separated at birth’),(168213,’artist colony’),(168216,’same habits’),(168219,’biological experiment’),(168220,’opposites’),(168222,’catholic orphanage’),(168277,’around the world’),(168297,’tyrant’),(168302,’ironclad ship’),(168316,’home front’),(168333,’bail jumper’),(168338,’mafia accountant’),(168342,’stretch limousine’),(168346,’manhattan, new york city’),(168347,’southwestern u.s.’),(168350,’bus station’),(168359,’police surveillance’),(168374,’loot sharing’),(168442,’denver colorado’),(168447,’kerouac’),(168468,’dead father’),(168469,’reference to bob dylan’),(168471,’biracial’),(168472,’bedtime story’),(168477,’unmarried couple’),(168479,’medical illustrator’),(168481,’disguised voice’),(168482,’reference to huckleberry finn’),(168483,’student protest’),(168485,’sonogram’),(168486,’expectant grandmother’),(168490,’dead parents’),(168491,’testicles’),(168531,’child uses gun’),(168534,’ankle holster’),(168539,’breaking finger’),(168550,’reproduction’),(168551,’italian stereotype’),(168590,’tough cop’),(168598,’southern accent’),(168603,’deep space explorer’),(168615,’biplane’),(168622,’soap opera’),(168637,’used car dealer’),(168638,’nurse uniform’),(168641,’female bartender’),(168643,’tv production’),(168654,’heart specialist’),(168657,’formosa cafe hollywood’),(168658,’tv writer’),(168659,’murderer duo’),(168663,’jamaican’),(168669,’meteorologist’),(168672,’rescue boat’),(168673,’marina’),(168676,’city hall’),(168678,’the flemish cap’),(168679,’male camaraderie’),(168683,’storm at sea’),(168713,’neo-western’),(168723,’latin america’),(168736,’carjacker’),(168750,’advertising executive’),(168763,’suv’),(168807,’reference to family circus’),(168811,’high’),(168812,’bisexual man’),(168818,’persian gulf’),(168835,’emergency surgery’),(168839,’mine field’),(168855,’rolling a cigarette’),(168856,’autocide’),(168857,’record player’),(168859,’hypodermic needle’),(168861,’missing pet’),(168866,’head in oven’),(168867,’grocery store’),(168868,’arm in cast’),(168869,’gun in mouth’),(168874,’toast’),(168879,’listening to music’),(168948,’coat’),(169028,’sable’),(169046,’writ’),(169054,’flint michigan’),(169055,’nba’),(169057,’merger’),(169058,’trade’),(169062,’garbage can’),(169064,’canon’),(169068,’ramp’),(169071,’championship’),(169075,’dead parent’),(169086,’political satire’),(169123,’awol’),(169151,’cupcake’),(169152,’twenty something’),(169161,’money bag’),(169171,’sidewalk’),(169175,’storem’),(169213,’milwaukee wisconsin’),(169214,’st. paul minnesota’),(169215,’gas rationing’),(169220,’lake placid new york’),(169264,’prisoner on the run’),(169271,’escaped prisoner’),(169276,’commitment’),(169280,’lobster’),(169283,’portuguese american’),(169302,’illegal drug’),(169305,’black american stereotype’),(169309,’cashier’),(169311,’disgruntled worker’),(169325,’low rider’),(169326,’caller id’),(169339,’snow kingdom’),(169341,’snow white’),(169343,’evil queen’),(169350,’enchantress’),(169356,’gala’),(169358,’financial problem’),(169362,’pendant’),(169366,’half naked man’),(169367,’returning money’),(169378,’evil plot’),(169411,’multiple personality’),(169449,’algeria’),(169456,’crown prince’),(169517,’roach’),(169522,’lollipop’),(169532,’painting toenails’),(169534,’radio call in show’),(169540,’driving through a wall’),(169548,’seed’),(169557,’reference to pandora\’s box’),(169590,’police raid’),(169593,’resort hotel’),(169618,’bestiality’),(169620,’correspondence’),(169621,’vampire sex’),(169626,’autonomous shadow’),(169658,’exploding gasoline station’),(169815,’exhibitionism’),(169816,’researcher’),(169826,’home alone’),(169829,’suburban chicago’),(169850,’mischievous child’),(169875,’railroad track’),(169878,’story within the story’),(169885,’u00a0flipping coin’),(169886,’campfire story’),(169887,’reference to superman’),(169895,’normandy beach’),(169962,’search party’),(169964,’devastation’),(169965,’pen pal’),(169967,’handkerchief’),(169970,’child smoking’),(169977,’small town sheriff’),(169978,’the color red’),(169981,’the color blue’),(169990,’boy scouts’),(169991,’sand dancing’),(169993,’meet cute’),(169995,’boy scouts leader’),(170007,’japanese army’),(170116,’writing class’),(170118,’makeup artist’),(170122,’bee sting’),(170124,’camper’),(170125,’cosmetologist’),(170130,’tree climbing’),(170135,’death in childbirth’),(170141,’tuba’),(170142,’motor home’),(170143,’bee attack’),(170148,’pro bono’),(170152,’new baby’),(170154,’social services’),(170161,’learning’),(170166,’coffee shop manager’),(170167,’pizza hut’),(170173,’children\’s book’),(170174,’locked door’),(170179,’mentally handicapped man’),(170209,’frat party’),(170212,’criminal gang’),(170219,’auto theft’),(170273,’fingerprinting’),(170313,’all male cast’),(170314,’flogging’),(170319,’survival skills’),(170325,’adolescent boy’),(170333,’innocence lost’),(170335,’whipping’),(170339,’rite’),(170344,’imagination’),(170345,’creek’),(170350,’clubhouse’),(170351,’reality vs fantasy’),(170356,’outsider’),(170362,’fantasy world’),(170365,’good deed’),(170375,’exotic dancer’),(170378,’schoolteacher’),(170380,’extra credit assignment’),(170383,’disfigurement’),(170389,’junior high school’),(170390,’burn injury’),(170418,’public humiliation’),(170444,’wanted man’),(170450,’lynch mob’),(170452,’reflection in water’),(170457,’lesson’),(170461,’nosebleed’),(170465,’bloodhound’),(170466,’fake accent’),(170468,’grave digging’),(170472,’bb gun’),(170487,’essay’),(170496,’christmas tree dealer’),(170499,’mall santa’),(170548,’kennedy assassination’),(170569,’shoe salesman’),(170577,’roman catholic’),(170587,’mysterious stranger’),(170592,’woman crying’),(170595,’library card’),(170602,’low men’),(170603,’bronko nagurski’),(170607,’culvert’),(170610,’floating on inner tube’),(170611,’wind chime’),(170615,’jack of spades’),(170620,’clairvoyant’),(170622,’hires root beer’),(170624,’wrong number’),(170630,’repair shop’),(170633,’southern’),(170646,’death threat’),(170647,’story’),(170648,’religious art’),(170652,’father figure’),(170667,’igloo’),(170669,’wolf costume’),(170677,’swallowed whole’),(170678,’hit with a rock’),(170682,’lying’),(170688,’falling down a hill’),(170703,’snowball fight’),(170710,’pinball machine’),(170711,’toy maker’),(170713,’duet’),(170715,’job promotion’),(170718,’homesick’),(170722,’new toy’),(170726,’quarter’),(170728,’unplugged electronic works’),(170729,’yankee stadium bronx new york city’),(170730,’walking on piano keys’),(170731,’wish fulfillment’),(170737,’bunk bed’),(170749,’business trip’),(170771,’fratricide’),(170783,’learning disability’),(170786,’birth defect’),(170801,’suit of armor’),(170813,’tantra’),(170821,’mistaken for a special education student’),(170822,’superglue’),(170827,’sex comedy’),(170865,’child kidnapping’),(171063,’social network’),(171065,’deposition’),(171067,’intellectual property’),(171068,’entrepreneur’),(171070,’arrogance’),(171081,’laptop computer’),(171083,’ivy league’),(171095,’u.s. senator’),(171100,’dining hall’),(171119,’electro shock’),(171134,’sex doll’),(171143,’streaking’),(171150,’mouth to mouth resuscitation’),(171162,’harvard law school’),(171165,’black female judge’),(171169,’smart blonde’),(171176,’girl power’),(171183,’flirting’),(171184,’exposu00e9′),(171192,’pug’),(171197,’bon bon’),(171198,’fraternity pledge’),(171199,’greek letter’),(171235,’pot head’),(171236,’smoke ring’),(171238,’pill bottle’),(171241,’doves’),(171244,’baby powder’),(171247,’grave robbing’),(171251,’corpse in coffin’),(171252,’pillbox’),(171258,’music rehearsal’),(171260,’fraternity initiation’),(171261,’television broadcast’),(171263,’white male pretending to be black’),(171268,’sorority party’),(171273,’push ups’),(171329,’silent man’),(171343,’coke’),(171346,’bandleader’),(171366,’multiple storylines’),(171400,’fraternity house’),(171401,’pot’),(171411,’teen suicide’),(171416,’autopsy room’),(171439,’bribe’),(171452,’faculty’),(171453,’art history’),(171459,’rowing’),(171461,’school nurse’),(171468,’femininity’),(171469,’teacher hero’),(171473,’womens issues’),(171556,’social outcast’),(171559,’ridicule’),(171561,’lawn mower’),(171563,’deserted by husband’),(171567,’low self esteem’),(171570,’black and white to color’),(171582,’sorority girl’),(171603,’s.a.t.’),(171636,’drag’),(171639,’yearbook’),(171646,’roofie’),(171670,’resentment’),(171691,’beer keg’),(171692,’political correctness’),(171695,’ultimate frisbee’),(171698,’funky music’),(171703,’fund raiser’),(171704,’stage diving’),(171715,’sponge bath’),(171729,’repairman’),(171757,’planetarium’),(171758,’art imitates life’),(171760,’generations conflict’),(171783,’hostile takeover’),(171803,’military school’),(171814,’medical test’),(171818,’list’),(171826,’told in flashback’),(171848,’marital separation’),(171854,’betrayal by friend’),(171956,’winner’),(171964,’secret passageway’),(171989,’wrongful conviction’),(171993,’mumblecore’),(172141,’cosplay’),(172164,’consignment’),(172232,’seminary’),(172240,’limp’),(172242,’toad’),(172246,’clergy’),(172248,’formalin’),(172251,’walking cane’),(172266,’backwards’),(172272,’tortured to death’),(172274,’moving in’),(172280,’based on supposedly true story’),(172291,’grieving’),(172345,’driver\’s license’),(172353,’finger gun’),(172354,’backhand slap’),(172357,’car jump’),(172364,’man punching a woman’),(172365,’magic trick’),(172376,’lucky charm’),(172382,’woman in jeopardy’),(172383,’eating disorder’),(172391,’catholic priest’),(172399,’thinness’),(172417,’obituary’),(172418,’engagement ring’),(172427,’dentures’),(172454,’casual sex’),(172466,’country club’),(172471,’divorce lawyer’),(172504,’reverend’),(172514,’homage’),(172658,’isolated house’),(172664,’hide and seek’),(172670,’negligent homicide’),(172683,’archdiocese’),(172684,’agnostic’),(172694,’malnutrition’),(172695,’burning’),(172699,’psychotic epileptic disorder’),(172712,’nome alaska’),(172715,’faked footage’),(172717,’audio cassette’),(172718,’ancient astronaut’),(172727,’anchorage alaska’),(172732,’police fake’),(172762,’sin eater’),(172772,’mentor protu00e9gu00e9 relationship’),(172784,’well’),(172792,’reference to god’),(172801,’insomniac’),(172808,’paranormal activity’),(172812,’logbook’),(172815,’u00a0strange noise’),(172816,’spook’),(172822,’cherub’),(172841,’music box’),(172889,’overhead camera shot’),(172900,’electronic voice phenomena’),(172927,’near miss’),(172929,’bedridden’),(172942,’contortionist’),(172971,’elderly’),(172972,’old woman’),(172980,’catatonia’),(172992,’ghost child’),(172998,’remake of japanese film’),(173003,’evil stepmother’),(173066,’postal worker’),(173099,’indian burial ground’),(173125,’shadow’),(173162,’sect’),(173177,’religious sect’),(173179,’charismatic leader’),(173186,’teenage pregnancy’),(173242,’modeling’),(173251,’forced prostitution’),(173254,’child rape’),(173258,’salmon’),(173259,’arab’),(173265,’missing in action’),(173272,’flood’),(173276,’dreamer’),(173277,’public relations’),(173293,’white horse’),(173299,’ayn rand’),(173303,’surprising’),(173316,’trapped in an elevator’),(173325,’stuck in elevator’),(173339,’laughter’),(173360,’beer bottle’),(173361,’real time’),(173362,’candelabra’),(173367,’reference to facebook’),(173368,’padlock’),(173386,’cthulhu’),(173490,’unwanted pregnancy’),(173497,’dance club’),(173502,’bathhouse’),(173510,’stonewall riot’),(173594,’handgun’),(173644,’communism’),(173646,’swan lake’),(173700,’end of trilogy’),(173719,’haunted by the past’),(173775,’captain america’),(173776,’iron man’),(173808,’reference to pizarro’),(173811,’jamestown virginia’),(173815,’pug dog’),(173823,’cross cultural relationship’),(173824,’musket’),(173825,’animate tree’),(173841,’body armor’),(173845,’exploding bus’),(173861,’deformed’),(173866,’bird cage’),(173867,’evil circus’),(173893,’fire chief’),(173901,’animated map’),(173903,’theatre audience’),(173905,’dragonslayer’),(173911,’tunnel construction’),(173912,’fire repellent’),(173913,’drilling’),(173914,’iodine’),(173918,’madison square garden’),(173919,’punk band’),(173924,’watching a movie’),(173925,’playing pool’),(173933,’vinegar’),(173957,’post it’),(173959,’machinist’),(173960,’cleaning bathroom tile’),(173966,’osha’),(173971,’taunting’),(173974,’manhole’),(173976,’one armed man’),(173977,’torment’),(173978,’department of motor vehicles’),(173983,’mother\’s day’),(173986,’losing weight’),(173989,’old photograph’),(173990,’dostoevsky’),(173995,’doomsday clock’),(174008,’red square’),(174016,’death of superhero’),(174019,’american president’),(174075,’white collar’),(174076,’harvard business school’),(174085,’child of divorce’),(174089,’unreliable narrator’),(174093,’lowell massachusetts’),(174099,’blue collar worker’),(174107,’church bells’),(174109,’documentary filmmaking’),(174110,’boxer shorts’),(174116,’jumping rope’),(174117,’shadow boxing’),(174149,’new world’),(174203,’remorse’),(174209,’self exile’),(174222,’vanishing figure’),(174244,’brawl’),(174262,’music journalism’),(174272,’school uniform’),(174274,’u00a0begins with text’),(174280,’imaginary band’),(174281,’baby left on doorstep’),(174283,’fictional band’),(174286,’down feather’),(174311,’laotian soldier’),(174316,’pipe smoking’),(174319,’rice paddy’),(174323,’letter from home’),(174324,’ant\’s nest’),(174325,’net fishing’),(174327,’dragging someone’),(174363,’greek island’),(174369,’mandolin’),(174371,’italian soldier’),(174375,’resistance fighter’),(174378,’greek history’),(174379,’italian army’),(174389,’allied forces’),(174406,’combat photography’),(174413,’reanimated corpse’),(174420,’intern’),(174424,’smoking pot’),(174465,’mine car’),(174468,’rope bridge’),(174469,’belching’),(174472,’child driving a car’),(174476,’eating brains’),(174480,’splits’),(174511,’casino owner’),(174519,’old woman murdered’),(174520,’high dive’),(174523,’gender disguise’),(174566,’chalkboard’),(174570,’u00a0nightgown’),(174571,’louisa may alcott’),(174584,’birth of twins’),(174617,’fishing boat’),(174638,’siberia’),(174818,’brain damage’),(174871,’fast motion scene’),(174878,’female vampire’),(174915,’fictional government agency’),(174947,’wall safe’),(174953,’trashed house’),(174954,’aerial shot’),(174959,’military dress uniform’),(174960,’vanity’),(174968,’flare’),(174984,’homework’),(174985,’shot in the chin’),(174994,’soft boiled egg’),(175001,’learning to drive’),(175005,’spoiled son’),(175007,’scarred face’),(175008,’thompson sub machine gun’),(175011,’frost on a window’),(175016,’cauterizing a wound’),(175017,’liberty half dollar’),(175023,’microscope’),(175036,’secret headquarters’),(175041,’bullet dodging’),(175042,’bullet time’),(175048,’kicked in the groin’),(175049,’x rayed skeleton’),(175050,’mouth guard’),(175056,’black ops’),(175069,’reference to macgyver’),(175075,’sucked into jet engine’),(175103,’pilot hero’),(175211,’reaper’),(175227,’broken wrist’),(175233,’razor blade’),(175241,’shot through a door’),(175245,’sword duel’),(175247,’burnt face’),(175261,’tomahawk’),(175297,’hipster’),(175301,’underage girlfriend’),(175309,’animated flashback’),(175314,’character\’s point of view camera shot’),(175316,’unconsciousness’),(175321,’girl fight’),(175322,’vegan’),(175329,’v.a. hospital’),(175331,’junk sale’),(175336,’jellybean’),(175339,’greeting card’),(175340,’file clerk’),(175343,’garage sale’),(175345,’comic book art’),(175357,’neurotic’),(175360,’crypt keeper’),(175387,’communicating with the dead’),(175421,’death of husband’),(175428,’adventurer’),(175468,’savior’),(175472,’catch phrase’),(175492,’art class’),(175494,’record collector’),(175497,’plaster’),(175499,’personal ad’),(175506,’blues music’),(175510,’nunchaku’),(175514,’prank telephone call’),(175522,’electrical torture’),(175536,’obese’),(175593,’mysterious killer’),(175600,’doing the right thing’),(175603,’mercedes’),(175610,’silhouette’),(175629,’alternative reality’),(175644,’phantom zone’),(175655,’rocket fired grenade’),(175656,’crystal machine’),(175668,’life raft’),(175670,’private plane’),(175676,’toothbrush’),(175681,’gluttony’),(175683,’magnifying glass’),(175685,’rubber boat’),(175715,’floating in the air’),(175884,’organ donation’),(175887,’horniness agent’),(175894,’chat session’),(175949,’catholic guilt’),(175975,’earth in peril’),(175994,’oil tanker’),(176052,’container’),(176056,’time traveler’),(176095,’jazz band’),(176125,’reference to google’),(176182,’psycho’),(176217,’world domination’),(176219,’southern belle’),(176227,’motherhood’),(176253,’oil rigu00a0′),(176256,’closed mine’),(176262,’bat attack’),(176266,’boy eaten’),(176419,’neighborhood watch’),(176425,’creepy neighbor’),(176485,’female artist’),(176486,’meeting on the internet’),(176488,’hope chest’),(176516,’slot machine’),(176546,’ganja’),(176561,’spiritualism’),(176572,’film canister’),(176573,’playing chicken’),(176585,’blood sucking’),(176592,’traffic violation’),(176691,’killer clown’),(176706,’broken mirror’),(176729,’lab experiment’),(176731,’indiana jones’),(176746,’basketball team’),(176780,’tattoo shop’),(176793,’middle age’),(176797,’old girlfriend’),(176802,’rogue agent’),(176806,’cape town south africa’),(176809,’soccer stadium’),(176857,’duchess’),(177035,’identity swap’),(177127,’emergency room’),(177128,’excalibur’),(177129,’knights of the round table’),(177144,’everyman’),(177145,’hyperspace’),(177146,’meaning of life’),(177163,’area 51′),(177178,’alien space craft’),(177180,’hit with a chair’),(177181,’shot in the knee’),(177185,’videotape’),(177201,’evil child’),(177208,’basketball game’),(177216,’referee’),(177218,’basketball court’),(177219,’tweety bird’),(177224,’speedy gonzales’),(177227,’cartoon chicken’),(177228,’sylvester the cat’),(177230,’cartoon reality crossover’),(177231,’basketball hoop’),(177232,’cartoon skunk’),(177235,’state police’),(177258,’police training’),(177259,’realtor’),(177275,’napalm’),(177280,’primate’),(177309,’simon says’),(177341,’gadfly’),(177349,’greedy developer’),(177354,’treasury agent’),(177359,’untouchable’),(177362,’tax evasion’),(177364,’jury tampering’),(177370,’rule of law’),(177372,’rooftop chase’),(177380,’cutting face while shaving’),(177392,’sneeze’),(177398,’levitation’),(177406,’message’),(177438,’heist gone wrong’),(177465,’attempted jailbreak’),(177473,’engagement party’),(177482,’mislaid trust’),(177489,’subway train’),(177493,’stock market’),(177501,’motorcycle crash’),(177502,’subway tunnel’),(177554,’stealing money’),(177555,’marriage counselor’),(177565,’shaving cream’),(177571,’playing cards’),(177648,’infra red’),(177695,’crime spree’),(177703,’western u.s.’),(177804,’sweet sixteen’),(177872,’occult ritual’),(177875,’dark carnival’),(177877,’occult torture’),(177882,’right hand man’),(177894,’witch hunt’),(177895,’dark fantasy’),(177900,’witch hunter’),(177901,’evil witch’),(177907,’pride & prejudice’),(177912,’wizard’),(177927,’homeless’),(177958,’mini cooper’),(177964,’contract killer’),(177972,’bickering’),(177973,’chance meeting’),(177993,’gopher’),(177996,’porcupine’),(177997,’seven years war’),(177998,’nobility’),(177999,’prussia’),(178010,’jurassic park’),(178036,’police harassment’),(178131,’birth mother’),(178159,’turning into a vampire’),(178226,’lost and found’),(178229,’older brother younger sister’),(178253,’knitting needle’),(178256,’noise complaint’),(178259,’crawling hand’),(178261,’angel costume’),(178265,’trowel’),(178269,’bass guitarist’),(178271,’priestess’),(178316,’bisexual woman’),(178329,’best friends in love’),(178355,’san francisco giants’),(178364,’child custody’),(178368,’baseball pitcher’),(178369,’baseball fan’),(178370,’psychotic fan’),(178372,’sports agent’),(178378,’driving range’),(178379,’steam room’),(178440,’physics teacher’),(178444,’peer pressure’),(178448,’shoe store’),(178452,’overachiever’),(178471,’reference to jack black’),(178474,’flunking out of school’),(178475,’promiscuous mother’),(178482,’glue sniffing’),(178507,’swimsuit’),(178517,’middle aged man’),(178539,’maverick cop’),(178636,’talk radio’),(178640,’based on radio show’),(178645,’prehistoric adventure’),(178646,’possesion’),(178649,’voyeurism’),(178650,’bus trip’),(178652,’penal colony’),(178655,’rag doll’),(178656,’iranian’),(178657,’tech noir’),(178710,’stormtrooper’),(178712,’totalitarianism’),(178853,’animal trainer’),(178857,’dark horse comics’),(178863,’englishwoman’),(178867,’lone ranger’),(178870,’evangelist’),(178883,’autumn’),(178902,’firefly’),(178929,’detroit michigan’),(178945,’working mom’),(178977,’jealous husband’),(178993,’duplicity’),(179010,’missing persons case’),(179011,’hidden corpse’),(179012,’estranged family member’),(179014,’jury trial’),(179017,’hick’),(179018,’stock broker’),(179021,’corpse in freezer’),(179022,’confession of crime’),(179093,’criminal underworld’),(179095,’evil doctor’),(179100,’hulk’),(179101,’norse mythology’),(179102,’superhuman strength’),(179173,’quitting a job’),(179178,’milf’),(179298,’maya’),(179300,’ancient civilization’),(179305,’airport lounge’),(179321,’asian woman’),(179359,’boys\’ boarding school’),(179367,’impossible love’),(179368,’french canadian’),(179411,’based on fairy tale’),(179416,’jungle cat’),(179419,’comanche’),(179422,’jason vorhees’),(179429,’moviemaking’),(179430,’aftercreditsstinger’),(179431,’duringcreditsstinger’),(179435,’beforecreditsstinger’),(179450,’black men’),(179468,’interracial adoption’),(179472,’heritage’),(179507,’cash’),(179564,’disturbed child’),(179565,’michael myers’),(179566,’locust’),(179567,’crisis of faith’),(179568,’archaeological dig’),(179569,’terrorist bombing’),(179578,’lost at sea’),(179585,’american civil war’),(179751,’glamour’),(179776,’roasted pig’),(179778,’sponsor’),(179780,’chariot’),(179781,’fictional tv show’),(179803,’mine explosion’),(179823,’class conflict’),(179860,’u00a0nosferatu’),(179867,’real estate’),(179878,’sleepwalking’),(179882,’romania’),(180052,’bride and groom’),(180059,’death of king’),(180061,’applause’),(180077,’don juan’),(180084,’werewolf child’),(180100,’sinking ship’),(180124,’quarry’),(180162,’death row inmate’),(180172,’framed for murder’),(180178,’destroyer’),(180179,’fire extinguisher’),(180181,’trapeze artist’),(180193,’trick or treating’),(180194,’spellcasting’),(180201,’female rocker’),(180204,’wounded soldier’),(180217,’indian chief’),(180230,’stallion’),(180234,’wild bill hickok’),(180241,’claim’),(180250,’swindle’),(180340,’voyeur’),(180366,’broken trachea’),(180404,’plagiarized book’),(180405,’stolen novel’),(180412,’plagiarized novel’),(180413,’aspiring writer’),(180415,’documentary filmmaker’),(180431,’drug rehabilitation’),(180436,’hemophagia’),(180439,’stamina’),(180440,’totalitarian’),(180441,’antigen’),(180443,’cure’),(180445,’strength’),(180447,’biological warfare’),(180464,’lab technician’),(180465,’rooftop fight’),(180466,’gravity’),(180467,’light sensitivity’),(180473,’pompeii’),(180480,’american mexican war’),(180487,’schoolboy’),(180492,’caste system’),(180509,’ikea’),(180523,’neighborhood’),(180547,’marvel cinematic universe’),(180548,’demigod’),(180550,’rainforest’),(180557,’short term memory loss’),(180568,’clownfish’),(180574,’father son reunion’),(180631,’troubled production’),(180635,’multiple perspectives’),(180668,’homicide detective’),(180691,’killer toys’),(180702,’expecting twins’),(180706,’open air cinema’),(180715,’giving birth’),(180724,’hidden truth’),(180734,’masked superhero’),(180764,’wild party’),(180787,’social differences’),(180800,’mission clinic’),(180803,’polynesia’),(180808,’klondike’),(180824,’spiritualist’),(180828,’train wreck’),(180861,’aunt nephew incest’),(180909,’golden fleece’),(180912,’olympus’),(180975,’charles dickens’),(181012,’tidal wave’),(181016,’sewer of paris’),(181033,’lemur’),(181034,’h. r. giger’),(181046,’european’),(181068,’protective father’),(181089,’japanese american’),(181109,’mother daughter estrangement’),(181117,’bloodshed’),(181129,’terrorist group’),(181146,’motorcyclist’),(181155,’torturing’),(181181,’peace offering’),(181208,’street dance’),(181210,’b-boying’),(181211,’b-girling’),(181213,’sword and sandal’),(181217,’dance crew’),(181246,’indian tribe’),(181318,’asperger\’s syndrome’),(181319,’electrical engineer’),(181320,’stock fraud’),(181321,’transport’),(181322,’nitroglycerin’),(181323,’oil company’),(181324,’existentialism’),(181325,’dangerous mission’),(181329,’big dreams’),(181331,’octogenarian’),(181356,’race against the clock’),(181363,’heist mafia internet’),(181374,’salem massachusetts’),(181375,’satanic’),(181385,’freighter’),(181508,’shoulder holster’),(181514,’deadbeat dad’),(181518,’cheating fiancu00e9e’),(181523,’teacher student sex’),(181531,’brother sister incest’),(181549,’secretary of defense’),(181558,’cuban missile crisis’),(181602,’renovation’),(181604,’black stereotype’),(181611,’chest’),(181620,’tracking device’),(181623,’fake id’),(181628,’seoul south korea’),(181632,’pharmaceutical lab’),(181635,’government conspiracy’),(181637,’roof chase’),(181641,’manila philippines’),(181644,’hunted’),(181648,’false passport’),(181650,’alberta canada’),(181651,’lieutenant general’),(181654,’u00a0north carolinam’),(181655,’congressman’),(181656,’political candidate’),(181657,’moustache’),(181659,’political corruption’),(181668,’campaign manager’),(181682,’campaign finance’),(181755,’dealing with the past’),(181820,’witch trial’),(181822,’child witch’),(181834,’empathy’),(181858,’gang violence’),(181895,’stasis’),(181900,’archeological dig’),(181905,’god complex’),(181908,’cave drawing’),(181962,’labor camp’),(181976,’imprisoned’),(182022,’filmed killing’),(182026,’video wall’),(182036,’speaker phone’),(182038,’mounted animal head’),(182045,’albanian’),(182058,’government corruption’),(182069,’jumping off a bridge’),(182100,’luxury hotel’),(182108,’man in towelu00a0′),(182145,’lime’),(182147,’underwater photography’),(182148,’bouncy castle’),(182163,’flash grenade’),(182178,’sushi bar’),(182185,’exploding airplane’),(182195,’online dating’),(182196,’stable’),(182198,’karate class’),(182204,’dog shelter’),(182207,’kennel’),(182210,’playing chess’),(182216,’bomb explosion’),(182223,’iraq veteran’),(182239,’jaipur india’),(182250,’personal growth’),(182256,’outsourcing’),(182293,’turning the tables’),(182295,’reading a book’),(182414,’traffic’),(182615,’steerage’),(182621,’salvage’),(182625,’rich snob’),(182633,’channel surfing’),(182638,’mullet’),(182649,’spiritual journey’),(182651,’life changing’),(182656,’pioneer village’),(182657,’family gathering’),(182662,’naturalist’),(182664,’frigate’),(182671,’self surgery’),(182677,’sea battle’),(182681,’weevil’),(182733,’swim meet’),(182768,’knife held to throat’),(182772,’snowing’),(183126,’new job’),(183133,’aspiring actor’),(183141,’smart kid’),(183185,’red dress’),(183413,’blue footed booby’),(183414,’prehistoric times’),(183415,’melting ice’),(183418,’badger’),(183421,’elephant seal’),(183422,’floating ice’),(183425,’land bridge’),(183528,’half breed’),(183602,’public toilet’),(183637,’barrio’),(183728,’sex tape’),(183732,’viral video’),(183814,’hebrew’),(183817,’stock exchange’),(183886,’illegitimate son’),(183896,’neighbor neighbor relationship’),(183953,’madman’),(184011,’reference to jack ruby’),(184014,’dairy queen restaurant’),(184017,’moon walk’),(184116,’hedge fund’),(184130,’doubt’),(184134,’archeologyu00a0′),(184152,’traveling through a sewer’),(184157,’multiple roles’),(184161,’iron lung’),(184163,’sex surrogate’),(184167,’polio’),(184188,’macau’),(184213,’robocop’),(184258,’imposture’),(184297,’mystery killer’),(184302,’scheming’),(184318,’out of body experience’),(184352,’rape and revenge’),(184355,’implied rape’),(184369,’shot’),(184392,’psychedelic’),(184402,’missing’),(184418,’british sailor’),(184426,’ruse’),(184439,’divorced parents’),(184499,’baby born’),(184503,’father-in-law daughter-in-law relationship’),(184559,’guardian angel’),(184569,’santa cruz california’),(184584,’century’),(184656,’wuxia’),(184712,’online chat’),(184783,’first date’),(184816,’blackface’),(184924,’comic book artist’),(184935,’gay man straight woman relationship’),(184952,’land developer’),(184987,’repressed memory’),(184988,’childhood sexual abuse’),(184989,’spectacle’),(184994,’saturn v rocket’),(185002,’balance’),(185034,’ambulance driver’),(185037,’battle of the isonzo’),(185071,’impersonating a police officer’),(185077,’macao’),(185199,’matrix’),(185200,’pirate ship’),(185221,’heart transplant’),(185222,’fbi profiler’),(185237,’eyes’),(185263,’bone marrow transplant’),(185266,’flight attendant’),(185269,’pipeworks’),(185281,’news spoof’),(185308,’tehran iran’),(185319,’monkey warrior’),(185332,’long distance relationship’),(185343,’based on folk tale’),(185351,’neon light’),(185408,’supernatural horror’),(185413,’boys\’ school’),(185424,’pest control’),(185425,’giant vegetable’),(185434,’rookie’),(185438,’crossword puzzle’),(185440,’mine shaft’),(185454,’u.s. military’),(185459,’seven deadly sins’),(185466,’kung fu master’),(185477,’trapped underwateru00a0′),(185482,’movie actress’),(185521,’chicken farm’),(185522,’pie machine’),(185525,’private eye’),(185616,’imprinting’),(185628,’cross breed’),(185629,’bloodsucker’),(185632,’grudge’),(185633,’vampire vs vampire’),(185638,’egyptian’),(185644,’chief of police’),(185645,’dhampir’),(185648,’forks washington’),(185650,’beheaded’),(185653,’wolf pack’),(185655,’misinformation’),(185668,’seeing the future’),(185677,’extraction’),(185684,’iran hostage crisis’),(185686,’sweatshop’),(185692,’intelligence agent’),(185699,’film studio’),(185702,’langley virginia’),(185718,’cultural conflict’),(185722,’based on true events’),(185723,’battle of gettysburg’),(185728,’secession’),(185730,’presidential cabinet’),(185733,’gettysburg address’),(185736,’conflagration’),(185740,’ethical dilemma’),(185742,’emancipation’),(185767,’crime novelist’),(185795,’lens flare’),(185815,’u.s. embassy’),(185817,’killed in an elevator’),(185818,’security guard killed’),(185859,’first person shooter’),(185861,’glitch’),(185863,’carefree’),(185867,’video gamer’),(185868,’q*bert’),(185876,’interrupted wedding’),(185880,’social reject’),(185927,’adopted child’),(185950,’jesus freak’),(185952,’baseball stadium’),(185953,’perjury’),(185954,’national transportation safety board’),(185957,’flying upside down’),(185959,’narcissist’),(185969,’relapse’),(185974,’substance abuse’),(185979,’fighting movie’),(185983,’budget cutting’),(185994,’ex military’),(186004,’imperial russia’),(186009,’tragic death’),(186055,’crying woman’),(186060,’polio victim’),(186062,’jewish man’),(186064,’true life character’),(186070,’gurney’),(186071,’sexual pleasure’),(186076,’pity sex’),(186080,’jewish convert’),(186103,’handicap sex’),(186107,’sexual exploration’),(186110,’naked woman’),(186112,’thrift store’),(186117,’dj’),(186120,’singing competition’),(186125,’film score’),(186136,’female musician’),(186147,’singing contest’),(186189,’hidden identity’),(186219,’southern california’),(186233,’improvised explosive device’),(186234,’surrogate daughter’),(186239,’shot in the throat’),(186243,’laguna beach california’),(186251,’enforcer’),(186265,’gardner’),(186268,’skull mask’),(186281,’dea’),(186353,’revivalism’),(186355,’riot police’),(186370,’close-up’),(186382,’cardiopulmonery resuscitation’),(186402,’starlet’),(186403,’dance hall’),(186420,’downworlder’),(186423,’shadowhunter’),(186425,’demon hunter’),(186447,’rogue’),(186450,’moscow’),(186463,’holiday horror’),(186466,’christmas horror’),(186497,’human vs alien’),(186513,’penalty kick’),(186523,’lockdown’),(186565,’zombie apocalypse’),(186576,’protest march’),(186654,’brooklyn dodgers’),(186686,’king of england’),(186694,’extension ladder’),(186695,’last day on job’),(186710,’landscape architect’),(186722,’gay brother’),(186727,’nude fight’),(186730,’flash mob’),(186736,’dance instructor’),(186743,’real estate development’),(186746,’nike’),(186747,’dance company’),(186757,’bank clerk’),(186760,’alternate timeline’),(186779,’motivational speaker’),(186781,’equal pay’),(186782,’discrimination’),(186783,’government minister’),(186784,’sewing machine’),(186800,’human cannonball’),(186803,’music spoof’),(186804,’shipyard’),(186805,’peseta’),(186829,’fishing net’),(186830,’selkie’),(186846,’adaptation’),(186847,’retelling’),(186849,’literary adaptation’),(186892,’shih tzu’),(186903,’poor eyesight’),(186906,’boston red sox’),(186908,’draft’),(186939,’pharaoh’),(186946,’the saint’),(186948,’book comes to life’),(186951,’girl disguised as boy’),(186962,’blessed hope’),(186965,’wise men’),(187008,’false memory’),(187019,’robot cop’),(187023,’safe deposit box’),(187028,’gatling gun’),(187033,’center of the earth’),(187046,’implanted memory’),(187056,’woman director’),(187065,’toy comes to life’),(187084,’wishes come true’),(187243,’stock market crash’),(187249,’catskills’),(187250,’dog tags’),(187251,’blood brother’),(187253,’way station’),(187256,’ballerina’),(187264,’derby county’),(187265,’management’),(187282,’back to school’),(187288,’army sergeant’),(187291,’strange behavior’),(187301,’hercules’),(187306,’presidential campaign’),(187307,’endorsement’),(187308,’campaign speech’),(187309,’presidential debate’),(187318,’whaling ship’),(187321,’post civil war’),(187325,’loveless marriage’),(187327,’pledge’),(187328,’retirement party’),(187329,’criminal profile’),(187354,’skyline’),(187355,’sunset’),(187356,’modern life’),(187357,’moonrise’),(187376,’odd couple’),(187514,’speed freak’),(187517,’junky cop’),(187518,’boy toy’),(187522,’porn magazine’),(187523,’dope selling’),(187524,’crank’),(187525,’handcuffed to a bed’),(187527,’cctv’),(187536,’veterinary clinic’),(187537,’needlepoint’),(187544,’needle’),(187547,’older woman younger woman relationship’),(187551,’telephone sex’),(187554,’person running amok’),(187643,’sabbath’),(187651,’brain scan’),(187652,’radiation sickness’),(187657,’parachutist’),(187660,’rubik\’s cube’),(187675,’medical student’),(187676,’confetti’),(187677,’medical school’),(187710,’escapade’),(187717,’laundry room’),(187729,’brutal cop’),(187788,’man punches woman’),(187791,’maid uniform’),(187820,’duct tape gag’),(187821,’bandana’),(187824,’headshot’),(187826,’camoflage uniform’),(187828,’sadistic laughter’),(187844,’flashback’),(187864,’human’),(187891,’paper knife’),(187901,’track and field’),(187903,’gangster rap’),(187989,’suspicious wife’),(187996,’female doctor’),(187999,’playing piano’),(188054,’giant crocodile’),(188072,’mortgage’),(188086,’dodgeball’),(188098,’renewing wedding vows’),(188099,’marriage counselling’),(188112,’bullet proof vest’),(188114,’u.s. marine’),(188124,’medal of valor’),(188127,’police sergeant’),(188133,’felon’),(188134,’golden gun’),(188178,’teenage hero’),(188179,’soaked clothes’),(188186,’painted face’),(188237,’teenage romance’),(188242,’aphrodisiac’),(188259,’money problems’),(188266,’starvation’),(188270,’epic battle’),(188294,’damsel in distress’),(188326,’construction worker’),(188329,’dump truck’),(188351,’catastrophe’),(188354,’swept away’),(188356,’separation from family’),(188374,’boxing day’),(188404,’masquerade’),(188478,’glass’),(188507,’al qaeda’),(188512,’prison camp’),(188519,’water torture’),(188606,’middle america’),(188607,’rube’),(188608,’ice fishing’),(188609,’air conditioner’),(188618,’reformer’),(188645,’bagpipes’),(188647,’silent film star’),(188667,’park avenue’),(188688,’hotel lobby’),(188711,’mexican american border’),(188719,’magistrate’),(188721,’mandarin’),(188725,’trenches’),(188727,’imperial japan’),(188750,’teuflisch’),(188755,’hotel clerk’),(188759,’recruitment’),(188772,’black slave’),(188841,’daydreaming’),(188843,’business partner’),(188907,’street shootout’),(188933,’bar fight’),(188934,’bar brawl’),(188944,’revolver’),(188947,’sidekick’),(188950,’corporation’),(188952,’eaten alive’),(188953,’sign language’),(188955,’hand to hand combat’),(188957,’virus’),(188959,’plague’),(188960,’elevator’),(188973,’pandemic’),(188974,’vehicular accident’),(188987,’boyfriend girlfriend relationship’),(188989,’supernatural power’),(188990,’costume party’),(188991,’drunkenness’),(188993,’true love’),(188994,’publisher’),(189092,’journey’),(189093,’ring’),(189094,’goblin’),(189098,’courage’),(189099,’giant’),(189102,’tunnel’),(189103,’underground lake’),(189108,’buried treasure’),(189111,’ogre’),(189113,’fictional language’),(189114,’climbing a tree’),(189115,’invisibility’),(189119,’ancient’),(189141,’rich man – poor woman’),(189151,’medieval times’),(189262,’righteous rage’),(189359,’rat’),(189361,’sexless marriage’),(189368,’barber’),(189388,’famous’),(189390,’yukon’),(189391,’boy dog relationship’),(189392,’gold miner’),(189400,’lobotomy’),(189411,’disaster film’),(189414,’furnace’),(189421,’female corpse’),(189422,’nazi occupation’),(189433,’tyranny’),(189447,’bipolar’),(189449,’disorder’),(189475,’indiana university’),(189481,’evil mastermind’),(189585,’iguana’),(189601,’trojan horse’),(189748,’soul transference’),(189868,’rumor’),(189881,’philadelphia eagles’),(189920,’harlem’),(189921,’video nasty’),(189933,’economic crisis’),(189934,’sexual disorder’),(189964,’high school rivalry’),(189995,’jesuit’),(190004,’collision in space’),(190005,’year 2079′),(190007,’mental hospital’),(190022,’hansel and gretel’),(190034,’the shadow’),(190061,’harvest’),(190066,’kurdish’),(190075,’cat thief’),(190078,’bull riding’),(190083,’gnome’),(190084,’chance encounter’),(190100,’new school’),(190107,’snowed in’),(190116,’school life’),(190141,’new girl at school’),(190149,’trapped in building’),(190161,’parolee’),(190165,’contraband’),(190187,’eminem’),(190285,’henry viii’),(190296,’buffalo bill’),(190320,’mars civilization’),(190326,’twilight zone’),(190341,’sporting event’),(190349,’chucky’),(190370,’erotic movie’),(190380,’prescription medication’),(190477,’cotton’),(190513,’hopital’),(190530,’naive children’),(190531,’speculative’),(190532,’false history’),(190536,’genie’),(190636,’crime syndicate’),(190654,’russian spy’),(190719,’musical segments’),(190722,’reunited friends’),(190760,’mountie’),(190816,’anniversary’),(190821,’family curse’),(190852,’sponge’),(190855,’joan of arc’),(190890,’attempted strangulation’),(190893,’suicide bombing’),(190938,’landmark’),(190941,’hidden room’),(190947,’stephen hawking’),(190954,’peak oil’),(190981,’intelligence officer’),(190999,’minions’),(191004,’german soldier’),(191007,’skirt’),(191008,’nebraska’),(191009,’housemaid’),(191045,’revenge killing’),(191076,’english pub’),(191088,’overleven’),(191089,’family guy’),(191100,’romantic drama’),(191110,’army base’),(191144,’female mercenary’),(191182,’shin bet’),(191199,’criminal lawyer’),(191205,’burlesque dancer’),(191209,’el paso’),(191219,’superhero kids’),(191222,’the big game’),(191260,’dinner party’),(191314,’kkk’),(191316,’military unit’),(191325,’power company’),(191327,’evil clown’),(191348,’neanderthal’),(191409,’captain nemo’),(191428,’song writing’),(191431,’godard’),(191439,’allan quatermain’),(191441,’nightclub entertainer’),(191479,’british farce’),(191494,’numbers’),(191509,’news’),(191543,’stalinism’),(191564,’body horror’),(191574,’cobra’),(191583,’beauty pageant’),(191586,’trapped in space’),(191591,’benji’),(191599,’palace intrigue’),(191600,’assassination attempt’),(191604,’professional thief’),(191616,’sepia color’),(191652,’greenpeace’),(191655,’karma’),(191682,’babes’),(191726,’nazism’),(191739,’gnomes’),(191750,’ninjutsu’),(191786,’stenographer’),(191790,’debutante’),(191815,’breakdown’),(191831,’war zone’),(191845,’bank heist’),(191881,’research laboratory’),(191915,’trans-siberian railway’),(191959,’ex-fugitive’),(191960,’freaky’),(192002,’biblical’),(192032,’saved from hanging’),(192050,’partition’),(192096,’bali’),(192097,’target’),(192099,’the white house’),(192125,’egyptologist’),(192134,’asperger\’s’),(192143,’borrow’),(192210,’online gaming’),(192213,’wanderer’),(192215,’beastmaster’),(192230,’philosopher’),(192311,’social class’),(192345,’soccer team’),(192389,’rajah’),(192394,’broken heart’),(192473,’highwayman’),(192519,’emigrant’),(192528,’mimes’),(192544,’donuts’),(192555,’family dog’),(192655,’guns’),(192657,’gold digger’),(192705,’four-wheelers’),(192706,’soda’),(192707,’aqueduct’),(192708,’beer bong’),(192709,’giant ice cream cone’),(192779,’mount everest’),(192786,’sweepstakes’),(192789,’eating contest’),(192828,’parking’),(192829,’justin bieber’),(192865,’burial ground’),(192913,’warrior’),(192918,’prehistoric man’),(192940,’geography’),(192942,’insects’),(192962,’alien attack’),(192966,’passage of time’),(192993,’red riding hood’),(192995,’frog prince’),(193008,’red army’),(193013,’extremist’),(193017,’nuns’),(193046,’noodle’),(193049,’estrangement’),(193102,’collapse’),(193149,’suspended animation’),(193167,’wendigo’),(193191,’incredibile’),(193192,’timothy’),(193193,’era’),(193194,’glaciale’),(193196,’deriva’),(193201,’apprendista’),(193213,’george washington’),(193225,’driven insane’),(193263,’old mansion’),(193282,’dark secrets’),(193285,’spy spoof’),(193295,’disturbing’),(193305,’dishonesty’),(193309,’police shootout’),(193400,’teen drama’),(193419,’merchant marine’),(193459,’australian aborigine’),(193479,’hypothermia’),(193490,’loop’),(193506,’wildcatter’),(193507,’oil field’),(193521,’part animation’),(193544,’save the day’),(193545,’young heroes’),(193546,’siblings relations’),(193547,’teachers and students’),(193548,’teaching the ways of the world’),(193551,’vigilantism’),(193552,’heroic mission’),(193554,’power relations’),(193575,’b horror’),(193594,’pittsburgh’),(193614,’verona italy’),(193649,’early sound film’),(193674,’bathroom humor’),(193682,’married’),(193698,’torture porn’),(193719,’missing woman’),(193760,’australian outback’),(193817,’rollerblade’),(193889,’investment firm’),(193907,’evil alien’),(194022,’confidence man’),(194063,’messiah’),(194135,’autistic savant’),(194156,’cirque du soleil’),(194165,’presidential elections’),(194215,’multiple dimensions’),(194236,’sorority house’),(194287,’laid off’),(194288,’transamerica pyramid’),(194404,’supervillain’),(194409,’the holocaust’),(194413,’intellectual disability’),(194430,’small village’),(194470,’queen victoria’),(194476,’amelia earhart’),(194531,’natural gas’),(194576,’julius caesar’),(194581,’geronimo’),(194610,’variety’),(194713,’post nuclear’),(194825,’doomsday device’),(194846,’night club owner’),(194879,’columbia’),(194942,’arch villain’),(194943,’henchmen’),(194976,’fur trapper’),(194988,’drag racing’),(194998,’curious’),(195012,’synchronized swimming’),(195026,’spiders’),(195032,’garfield’),(195139,’internment camp’),(195162,’record company’),(195240,’investigative journalism’),(195242,’clark kent’),(195243,’bruce wayne’),(195269,’magical creature’),(195295,’motorcycle chase’),(195323,’evil dictator’),(195325,’crocodile attack’),(195331,’nuclear waste’),(195402,’film noir’),(195410,’fundraiser’),(195435,’snake attack’),(195446,’sword and planet’),(195506,’gags’),(195621,’rust belt’),(195648,’narcotics’),(195687,’airline pilot’),(195730,’self-help’),(195732,’ski’),(195737,’ship hijacking’),(195739,’somali’),(195741,’commando unit’),(195790,’noah’),(195862,’naval warfare’),(195900,’distillery’),(195908,’special ops’),(195999,’sexologist’),(196171,’health inspector’),(196172,’food intoxication’),(196271,’stanley cup’),(196288,’film’),(196315,’helping animals’),(196320,’computer dating’),(196332,’walmart’),(196367,’battle for survival’),(196374,’shakespeare\’s romeo and juliet’),(196376,’sci-fi thriller’),(196377,’sci-fi comedy’),(196407,’environmental law’),(196433,’ruby’),(196483,’space pirate’),(196499,’best man’),(196509,’yokai’),(196521,’dual life’),(196544,’motion capture’),(196557,’mission to mars’),(196581,’lost child’),(196626,’harrassment’),(196645,’prank gone wrong’),(196664,’high school dance’),(196682,’rich man’),(196691,’step sister’),(196700,’wedding day’),(196701,’meant for each other’),(196726,’celebrity cameo’),(196751,’fictionalized biography’),(196905,’step siblings’),(196911,’estranged son’),(196917,’armed robbery’),(196964,’power of goodness’),(197014,’time portal’),(197077,’cliques’),(197083,’jocks’),(197084,’having fun’),(197088,’revenge plot’),(197092,’social climbing’),(197094,’back stabbing’),(197102,’sports injury’),(197106,’dead teenager’),(197107,’goth girls’),(197194,’alien friendship’),(197222,’xanax’),(197239,’regeneration’),(197297,’struggling career’),(197361,’hairstylist’),(197362,’x-ray’),(197430,’missing daughter’),(197487,’witness to a crime’),(197521,’innocent’),(197525,’dominican’),(197526,’enviroment’),(197528,’traveller’),(197591,’roller skates’),(197602,’denunciation’),(197619,’foreign’),(197638,’sattire’),(197643,’slave owner’),(197702,’day in a life’),(197707,’bleak comedy’),(197708,’mental disorders’),(197710,’mind bender’),(197711,’number stations’),(197757,’public pool’),(197758,’female sexuality’),(197822,’american spy’),(197935,’charlatan’),(197952,’scandinavian’),(197990,’mega corporation’),(198001,’anti romantic comedy’),(198015,’experimental surgery’),(198019,’parent-child bond’),(198102,’frankenstein\’s monster’),(198129,’episode film’),(198141,’strange person’),(198225,’religious delusions’),(198270,’parrots’),(198318,’auctioneer’),(198331,’vengeful spirit’),(198423,’moral dilemma’),(198435,’sfx’),(198438,’elite club’),(198441,’fingers’),(198471,’off season’),(198518,’insectarium’),(198536,’hmong’),(198541,’air marshal’),(198673,’unemployed’),(198710,’yoda’),(198780,’obedience’),(198781,’science experiment’),(198914,’institution’),(198929,’adult as a child’),(198962,’run’),(199029,’dealer’),(199040,’strip’),(199050,’player’),(199073,’wife murder’),(199076,’disaster movie’),(199093,’trouble’),(199156,’billion dollars’),(199157,’fake commercial’),(199214,’mental’),(199226,’mother love’),(199232,’jeweler’),(199263,’anger management’),(199274,’arrested’),(199320,’computer scientist’),(199321,’james brown’),(199350,’depressed mom’),(199364,’rehab’),(199526,’psychiatric’),(199600,’call’),(199686,’near-death experience’),(199688,’african american comedy’),(199814,’sorceress’),(199856,’lower east side’),(199947,’confronting the past’),(199978,’stigmata’),(200216,’self acceptance’),(200223,’depth charge’),(200234,’shocking’),(200283,’diaper’),(200460,’connected’),(200574,’motel room’),(200646,’bowling ball’),(200725,’phenomenon’),(200784,’detox’),(200802,’cyrogenics’),(200808,’negotiation’),(200883,’classified’),(200907,’messages’),(200918,’angry’),(200969,’incubus’),(201028,’depravity’),(201058,’foreshadowing’),(201120,’ginger’),(201164,’squad’),(201189,’nfl’),(201243,’rules’),(201294,’hypertrichosis’),(201385,’confidence game’),(201456,’paranoid’),(201484,’complication’),(201554,’crossdressing’),(201689,’year’),(201696,’heartache’),(201712,’climber’),(201713,’isolated’),(201715,’hikers’),(201748,’casa encantada’),(201858,’struggling’),(201870,’invite’),(201871,’dare’),(201885,’pressure’),(201927,’brutal’),(201930,’leisure’),(201952,’pikachu’),(201973,’warhol’),(202098,’criticism’),(202296,’analyst’),(202314,’robot fighting’),(202322,’imaginary’),(202371,’aggressive’),(202401,’experience’),(202420,’pickup’),(202423,’knoxville’),(202429,’fired’),(202506,’legal’),(202526,’lex luthor’),(202540,’origin’),(202541,’silver surfer’),(202550,’substance’),(202551,’schizophrenic’),(202553,’condition’),(202635,’engaged’),(202647,’humanity’),(202692,’issues’),(202703,’deadly’),(202735,’help’),(202816,’bruce banner’),(202838,’programmers’),(203113,’collision’),(203139,’estafa’),(203165,’dredd’),(203175,’south park colorado’),(203258,’underpass’),(203286,’network’),(203287,’anchor’),(203289,’structure’),(203291,’rant’),(203360,’psychotherapist’),(203423,’masked hero’),(203476,’wax’),(203525,’board’),(203528,’stocks’),(203624,’physical deformity’),(203699,’mad hatter’),(204006,’energy company’),(204009,’tourism’),(204017,’suspicious death’),(204035,’different worlds’),(204052,’rodent’),(204060,’monarch’),(204071,’prince albert’),(204090,’bears’),(204173,’racial issues’),(204183,’crimea’),(204222,’spongebob’),(204262,’film editing’),(204267,’heart trouble’),(204298,’loss of a child’),(204312,’loincloth’),(204318,’exoskeleton’),(204357,’cardinal’),(204374,’love story’),(204383,’overflowing with imagination’),(204725,’guyana’),(204836,’selma’),(204841,’statistics’),(204904,’exploding boat’),(204950,’innuendo’),(204959,’grieving parents’),(204967,’runner’),(205399,’muscle car’),(205624,’ozploitation’),(205726,’fear of unknown’),(205731,’invisible woman’),(205733,’small town murder’),(205740,’force field’),(205850,’turn of the century’),(205851,’ultimate fighting championship’),(205852,’mind transfer’),(205853,’quantum computer’),(205854,’mind uploading’),(206039,’analingus’),(206042,’based on the bible’),(206044,’fracking’),(206052,’talking pig’),(206075,’tv news anchor’),(206086,’declared dead’),(206125,’montenegro’),(206150,’dialect’),(206160,’irish immigrant’),(206207,’animal welfare’),(206219,’captivity’),(206263,’hipersexualidad’),(206298,’young adult’),(206304,’mfs’),(206311,’pennsylvania coal miner’),(206318,’cholo’),(206319,’lowrider’),(206364,’anti authority’),(206440,’video tape’),(206472,’masterpiece’),(206515,’usa politics’),(206529,’emergency’),(206530,’distress’),(206544,’bomb attack’),(206545,’young couple’),(206558,’guitar case’),(206571,’bride in black’),(206581,’venezia’),(206642,’homicidal maniac’),(206646,’thick accent’),(206647,’female archeologist’),(206648,’burning car’),(206649,’philosopher\’s stone’),(206650,’french accent’),(206651,’rapping in a car’),(206662,’euthanasia’),(206686,’righting the wronged’),(206687,’chases and races’),(206688,’parents and children’),(206690,’mind and soul’),(206691,’buddies’),(206694,’master villain’),(206695,’master warrior’),(206696,’contests and competitions’),(206700,’fighting crime’),(206701,’criminal heroes’),(206704,’confined’),(206705,’chaos and mayham’),(206706,’human nature’),(206709,’unfulfillment’),(206711,’obsessive quest’),(206713,’master and servant’),(206715,’love and romance’),(206716,’unfulfilled love’),(206718,’cons and scams’),(206720,’teenage life’),(206735,’misfit partners’),(206736,’changing the past or future’),(206737,’getting home’),(206738,’inventions and discoveries’),(206741,’driver\’s test’),(206809,’miraculous event’),(206810,’imaginary kingdom’),(206811,’life turned upside down’),(206812,’nothing goes right’),(206813,’supernatural ability’),(206829,’drug culture’),(206834,’mischievous children’),(206850,’canuxploitation’),(206863,’waiting’),(206977,’hitchhike’),(207003,’mythological’),(207009,’hip hop culture’),(207010,’dance teacher’),(207011,’secret laboratory’),(207031,’stonehenge’),(207046,’murder mystery’),(207059,’white collar criminal’),(207063,’make believe’),(207064,’pretend’),(207069,’behavior’),(207078,’magazine editor’),(207089,’nativity’),(207108,’uncover truth’),(207110,’mysterious character’),(207112,’murderous pair’),(207159,’escaped killer’),(207199,’police department’),(207240,’murder trial’),(207257,’renaissance painting’),(207268,’neo-noir’),(207317,’christmas’),(207372,’quest’),(207390,’missing body’),(207399,’october’),(207411,’monkey king’),(207414,’pilot school’),(207419,’infected’),(207431,’murder suspect’),(207443,’dead end job’),(207444,’morality tale’),(207447,’librarian’),(207492,’night of the living dead’),(207525,’grieving father’),(207528,’trapped underground’),(207538,’rare stamps’),(207545,’freak show’),(207560,’thunderbirds’),(207569,’human subjugation’),(207583,’actress’),(207592,’piano’),(207597,’children\’s perspectives’),(207665,’faithful husband’),(207673,’freak’),(207691,’abuse’),(207695,’japanese mythology’),(207697,’accountant’),(207716,’actor’),(207726,’lousiana bayou’),(207739,’music school’),(207745,’llama’),(207750,’cabin boy’),(207761,’cyclist’),(207767,’erotic thriller’),(207771,’snowmobile’),(207784,’rendezvous’),(207819,’accident’),(207840,’poor people’),(207844,’college student’),(207847,’matt scudder’),(207876,’1920s’),(207883,’1940s’),(207884,’fetus’),(207891,’walking dead’),(207899,’snooping’),(207901,’political prisoner’),(207928,’19th century’),(207935,’manslaughter’),(207937,’forced retirement’),(207941,’17th century’),(207942,’icelandic’),(207968,’judiciary’),(207969,’brisbane queensland’),(207979,’molecular biologist’),(207999,’determination’),(208008,’shootout at a train station’),(208009,’gun fight’),(208043,’bar exam’),(208048,’cannibalism’),(208052,’gangster grip’),(208067,’imperialism’),(208070,’highlands’),(208085,’population control’),(208090,’mayan’),(208095,’sweat’),(208117,’lew harper’),(208123,’french and indian war’),(208143,’park bench’),(208152,’pets’),(208155,’hunting party’),(208170,’abusive marriage’),(208171,’refused services’),(208172,’prison wagon’),(208173,’lost in the desert’),(208174,’buffalo skin’),(208179,’environmental issue’),(208185,’tween girl’),(208208,’state prison’),(208223,’fortune’),(208244,’16th century’),(208260,’commandant’),(208289,’1980s’),(208293,’wood’),(208314,’action heroine’),(208340,’latino lgbt’),(208344,’dysfunctional’),(208349,’child’),(208358,’conquest’),(208385,’sleeper agent’),(208390,’lgbt elderly’),(208394,’logician’),(208395,’cryptography’),(208396,’cuban refugees’),(208397,’death of wife’),(208426,’shamanism’),(208433,’pleasure’),(208445,’virginity’),(208450,’life competition’),(208455,’malcolm x’),(208456,’wmd’),(208457,’dog fight’),(208461,’record deal’),(208462,’popular’),(208463,’pawns’),(208470,’chastity’),(208471,’ashram’),(208473,’expert’),(208476,’starting over’),(208477,’narcissistic personality disorder’),(208498,’youth center’),(208502,’loyal’),(208503,’liaison’),(208504,’confidant’),(208505,’cattle empire’),(208508,’murder plot’),(208513,’anxiety’),(208514,’conjoined’),(208515,’siamese’),(208518,’burial’),(208542,’life’),(208547,’nuclear device’),(208575,’cable guy’),(208580,’acid’),(208586,’acting’),(208590,’barn raising’),(208591,’abortion’),(208592,’floppy disk’),(208611,’1950s’),(208630,’counter terrorism’),(208633,’secret service agent’),(208637,’turbulence’),(208645,’telephone conversation’),(208647,’activist’),(208662,’kangaroo’),(208663,’fan convention’),(208666,’dignity’),(208681,’knight templars’),(208693,’unity’),(208703,’rebellious teenager’),(208705,’fairy godmother’),(208708,’bullet ballet’),(208709,’columbia university’),(208719,’secluded’),(208720,’family estate’),(208725,’irish catholic’),(208731,’world war iii’),(208744,’admissions’),(208756,’changing history’),(208757,’time paradox’),(208764,’fiancu00e9e’),(208772,’home detention’),(208780,’lakota’),(208787,’newcomer’),(208788,’medical drama’),(208795,’bad mother’),(208799,’transphobia’),(208805,’dmt’),(208820,’olympic athlete’),(208847,’out of control’),(208874,’sea lion’),(208916,’movies’),(208965,’carnies’),(208974,’nursing school’),(208975,’nomad’),(208983,’probation’),(208992,’1960s’),(208997,’bureaucrat’),(209005,’boring’),(209022,’massage therapist’),(209027,’artificial’),(209053,’rosh hashanah’),(209063,’motor neuron disease’),(209064,’columnist’),(209069,’sold into slavery’),(209070,’abolitionist’),(209073,’space carrier’),(209074,’drug trafficker’),(209094,’feudality’),(209102,’irresistible’),(209117,’mass child killing’),(209121,’lung cancer’),(209140,’negotiator’),(209141,’followed’),(209157,’childhood sweetheart’),(209220,’live action and animation’),(209222,’misfortune’),(209241,’gang initiation’),(209242,’gunplay’),(209334,’newspaper columnist’),(209339,’mining accident’),(209366,’graduation speech’),(209386,’personification’),(209387,’inanimate objects coming to life’),(209409,’abraham lincoln’),(209417,’parental advisor’),(209455,’cordillera huayhuash’),(209476,’boxing’),(209482,’sagen’),(209493,’21st century’),(209504,’karakoram’),(209506,’college freshman’),(209517,’messenger’),(209525,’mysterious past’),(209560,’aboriginal’),(209568,’folk horror’),(209618,’baton rouge’),(209619,’aborigine’),(209631,’englishman’),(209642,’smithsonian’),(209649,’wizard of oz’),(209672,’jewel robbery’),(209714,’3d’),(209734,’mocumentary’),(209748,’war machine’),(209756,’agent coulson’),(209788,’girl scouts’),(209789,’day of the dead’),(209790,’bullfighting’),(209799,’whistleblower’),(209817,’political thriller’),(209818,’asgard’),(209822,’iron patriot’),(209823,’extremis’),(209838,’acapella’),(209853,’cybercrime’),(209856,’visual storytelling’),(209893,’jungle girl’),(209940,’village people’),(209983,’romanian new wave’),(209987,’new mexican cinema’),(209994,’mina’),(210009,’wallace & gromit’),(210012,’mumblegore’),(210018,’half sister’),(210024,’anime’),(210039,’gender identity’),(210085,’regency period’),(210090,’lego’),(210108,’perth’),(210112,’skype’),(210162,’grim’),(210163,’dire’),(210184,’1910s’),(210190,’turboman’),(210191,’navidad’),(210234,’man eating plant’),(210284,’off screen rape’),(210295,’classmates’),(210313,’action’),(210346,’wookie’),(210347,’revenge drama’),(210351,’friendship drama’),(210367,’loneliness in space’),(210383,’coding’),(210414,’unfinished film’),(210429,’oxygen tank’),(210450,’noah\’s ark’),(210469,’charlie brown’),(210530,’spiritism’),(210531,’thai boxing’),(210605,’workplace humor’),(210608,’1990s’),(210610,’world politics’),(210689,’virility’),(210894,’clone troopers’),(211062,’ethics’),(211105,’ramses’),(211141,’columbia broadcasting system (cbs)’),(211142,’manatee’),(211143,’conservation’),(211215,’county fair’),(211269,’emotions’),(211295,’riches to rags’),(211359,’alien teenager’),(211389,’divergent’),(211392,’huntsman’),(211487,’space centre’),(211504,’wildlife reserve’),(211505,’wildlife conservation’),(211572,’spanish movie’),(211660,’old age’),(211669,’photo studio’),(211674,’muscles’),(211703,’death of boyfriend’),(211710,’partying’),(211711,’spleen’),(211712,’evil genius’),(212009,’crystal skull’),(212330,’slap’),(212404,’verbal abuse’),(212406,’sadistic horror’),(212412,’very little dialogue’),(212424,’killer dog’),(212430,’eaten by animal’),(212435,’meta film’),(212516,’dark future’),(212542,’communication’),(212562,’cellphone video’),(212609,’dog missing’),(212642,’abusive father’),(212643,’abusive husband’),(212737,’philosophical’),(212757,’ex special forces’),(212760,’interspecies romance’),(212796,’workplace romance’),(212801,’ex cia agent’),(212873,’co-parenting’),(212887,’peep hole’),(212912,’air force base’),(212913,’healer’),(213097,’15th century’),(213102,’teen spy’),(213104,’teen superheroes’),(213132,’sex slavery’),(213295,’missing son’),(213299,’gallipoli campaign’),(213473,’algerian war’),(213488,’marital infidelity’),(213490,’kumbh mela’),(213492,’ganga’),(213798,’allies’),(213826,’ecw’),(213856,’east elbia’),(213873,’dog cat friendship’),(213895,’san andreas’),(213896,’san andreas california’),(213921,’perpetual winter’),(213987,’city ruin’),(214349,’relativity’),(214410,’ottoman empire’),(214463,’post 9/11′),(214465,’helicopter crash’),(214466,’islamabad’),(214472,’stealth aircraft’),(214484,’redhead girl’),(214499,’tv studio’),(214527,’cartographer’),(214544,’horror anthology’),(214548,’1930s’),(214549,’short’),(214555,’children education’),(214594,’play adaptation’),(214596,’cia agent’),(214633,’living with parents’),(214644,’christmas holiday’),(214655,’absurdism’),(214664,’beauty standards’),(214714,’futuristic car’),(214715,’futuristic city’),(214730,’retrofuturism’),(214780,’courtroom drama’),(214789,’fiji’),(214810,’bank fraud’),(214820,’robot human relationship’),(214956,’alan smithee’),(214963,’northern canada’),(214965,’savant’),(214978,’vengeful’),(214983,’crime epic’),(214985,’tampa’),(215020,’tarkovskyesque’),(215141,’secret formula’),(215163,’hazmat suit’),(215184,’chivalry’),(215191,’strange’),(215200,’pretend relationship’),(215205,’danube’),(215235,’dead brother’),(215258,’healing gift’),(215292,’anger issues’),(215299,’environmental disaster’),(215305,’entrails’),(215320,’solteros’),(215325,’what if’),(215404,’laxative’),(215485,’condominium’),(215492,’amputee’),(215533,’french polynesia’),(215534,’polynu00e9sie franu00e7aise’),(215571,’bad kids’),(215572,’krampus’),(215678,’partially lost film’),(215774,’stringer’),(215787,’bucket list’),(215861,’abandoned mine’),(215876,’prison rape’),(215938,’muscular’),(216079,’truck stop’),(216919,’boys’),(216921,’animal protection’),(216931,’medieval india’),(216932,’ancient india’),(216942,’fourth dimension’),(216966,’santa monica california’),(216994,’budweiser’),(217064,’mexican cartel’),(217076,’voice imitation’),(217083,’reluctant hero’),(217084,’toaster’),(217120,’amazon river’),(217133,’post cold war’),(217142,’nsa agent’),(217311,’sex party’),(217324,’murder hunt’),(217405,’missed opportunity’),(217421,’key west’),(217452,’buddy film’),(217467,’music tour’),(217469,’reference to rodney king’),(217474,’intimidation by police’),(217475,’los angeles riots’),(217482,’compton california’),(217880,’cigarette girl’),(217961,’invasive species’),(218009,’man slaps a woman’),(218024,’amateur radio’),(218032,’mass destruction’),(218099,’elderly man’),(218102,’host body’),(218105,’body snatching’),(218121,’murder of a police officer’),(218122,’cyber terrorism’),(218124,’chinese military’),(218130,’cyber terrorist’),(218132,’cyber thriller’),(218182,’overprotective father’),(218190,’home education’),(219404,’action hero’),(219605,’lobbyist’),(219681,’tobacco industry’),(219731,’nicotine’),(219779,’fling’),(219781,’fraternal twins’),(219785,’reference to moby dick’),(219786,’new ager’),(219787,’twin synchronization’),(219800,’casters’),(219826,’stronger villain’),(219832,’despicable’),(219843,’immunity’),(219849,’catfishing’),(219869,’humvee’),(219881,’weeds’),(219903,’political drama’),(219965,’nanobots’),(219972,’giant squid’),(219989,’returned alive’),(219990,’ghouls’),(219991,’elimination derby’),(220046,’groundhog day’),(220076,’young entrepreneur’),(220082,’professional reputation’),(220084,’grayscale’),(220085,’defence company’),(220086,’jump the shark’),(220087,’team building’),(220112,’mad cow disease’),(220192,’dirty joke’),(220194,’air guitar’),(220197,’beer pong’),(220204,’winery’),(220232,’yin yang’),(220265,’napoleon bonaparte’),(220266,’fandom’),(220314,’wealth differences’),(220348,’womb’),(220363,’chemotherapy’),(220392,’alien parasites’),(220446,’violent man’),(220448,’bipolar disorder’),(220451,’wedding arranger’),(220453,’class system’),(220468,’emasculation’),(220487,’rich vs poor’),(220492,’war trauma’),(220506,’online hookup’),(220628,’pizza shop’),(220649,’british monarchy’),(220667,’denial of death’),(220670,’aerialist’),(220831,’facebook’),(220844,’volcanic ash’),(220855,’pixels’),(220885,’no memory’),(220888,’jesuit priest’),(220903,’humanoid robot’),(220933,’fine art’),(220935,’nerve gas’),(220979,’aura’),(221004,’investment’),(221015,’snoopy’),(221023,’college friends’),(221034,’khumba’),(221037,’yogi’),(221039,’modern fairy tale’),(221091,’pat garrett’),(221092,’aircraft carrier’),(221178,’stampede’),(221193,’perfect murder’),(221272,’arachnophobia’),(221295,’sound barrier’),(221355,’nature documentary’),(221385,’gnosticism’),(221387,’occultism’),(221446,’flying boat’),(221475,’bachelorette party’),(221536,’exploring’),(221549,’waterloo’),(221604,’shed’),(221605,’skylight’),(221615,’mauling’),(221652,’bathrobe’),(221653,’destruction of earth’),(221654,’intergalactic travel’),(221655,’islington england’),(221656,’talking robot’),(221756,’radio plays’),(221810,’honey pot’),(221828,’stage production’),(221835,’kronos’),(221836,’overthrow olympus’),(221871,’unlikely heroes’),(221872,’failed business’),(221904,’politics of scarcity’),(221911,’vanity film’),(221912,’eco-terrorists’),(221913,’multiple felonies’),(221945,’small town thieves’),(221954,’city of argos’),(221955,’mistaken parentage’),(221957,’constitutional convention’),(221958,’legalized murder’),(221960,’social allegory’),(222108,’rubber mask’),(222114,’fear of dying’),(222133,’shot in the heart’),(222173,’social experiment’),(222174,’girl next door’),(222186,’publishing’),(222195,’navy veterans’),(222333,’blender’),(222337,’saladin’),(222340,’king richard’),(222347,’morgana’),(222423,’blast’),(222512,’parson’),(222513,’mashup’),(222529,’rescue operation’),(222665,’missing wife’),(222721,’head coach’),(222782,’two guns belt’),(222784,’cole younger’),(222787,’the lone ranger’),(222793,’online predator’),(222797,’repression’),(222812,’therapist patient relationship’),(222842,’squire’),(222850,’art teacher’),(222855,’dragonheart’),(222915,’forcefield’),(223009,’keith mallory’),(223059,’animal horror’),(223060,’self healing’),(223064,’come back’),(223067,’crime solving’),(223083,’kama’),(223084,’perm’),(223149,’soccer coach’),(223155,’rhedosaurus’),(223162,’accidental love’),(223183,’bike messenger’),(223202,’do over’),(223211,’whale oil’),(223212,’nantucket’),(223213,’rural pennsylvania’),(223221,’accepting death’),(223267,’moving on’),(223344,’archeologist’),(223438,’based on young adult novel’),(223448,’fairies’),(223471,’rural america’),(223504,’distress signal’),(223540,’singularity’),(223595,’jesus’),(223635,’internet dating’),(223636,’wooden boats’),(224279,’bittersweet’),(224472,’new life’),(224516,’toy story’),(224534,’recess’),(224552,’iconic’),(224563,’beekeeper’),(224564,’orlando florida’),(224625,’halfway house’),(224636,’horror comedy’),(224637,’line drawing’),(224663,’new french extremism’),(224795,’drinking blood’),(224875,’method acting’),(224876,’past relationship’),(225061,’friend’),(225156,’concert tour’),(225209,’dreams’),(225210,’memories’),(225470,’vlad’),(225523,’h. g. wells’),(225547,’songs’),(225707,’reconnaissance’),(225710,’sexual discrimination’),(225822,’actors’),(225938,’axe’),(225947,’amazon jungle’),(226028,’eccentric man’),(226039,’human cloning’),(226106,’mind games’),(226128,’filmes focados em um professor’),(226146,’25th century’),(226150,’airplane hijack’),(226177,’xenomorph’),(226178,’alien queen’),(226179,’explosive decompression’),(226180,’swimming underwater’),(226219,’insurance risk manager’),(226226,’prom night’),(226233,’apollo program’),(226234,’cape kennedy’),(226235,’lunar mission’),(226236,’spacecraft accident’),(226240,’radio telescope’),(226268,’governer’),(226343,’generation-x’),(226344,’generation-z’),(226370,’hoverboard’),(226371,’video phone’),(226376,’corrupt cop’),(226380,’haitian gang’),(226381,’minefield’),(226409,’crisis of conscience’),(226410,’cabinet officer’),(226411,’corrupt policeman’),(226426,’mass grave’),(226427,’cement truck’),(226428,’playboy mansion’),(226429,’shooting range’),(226435,’yellow bikini’),(226464,’wrigley field’),(226465,’holiday inn’),(226471,’goggles’),(226473,’comrade’),(226474,’german submarine’),(226475,’naval battle’),(226476,’periscope’),(226499,’manhunt’),(226510,’sports marketing firm’),(226521,’chase on the roof’),(226522,’security leak’),(226553,’mayoral campaign’),(226580,’taj mahal’),(226581,’ford mustang’),(226594,’investigative reporter’),(226595,’launchpad’),(226620,’political cover-up’),(226626,’aurora borealis’),(226645,’combat drone’),(226689,’newsletter’),(226710,’epinephrine’),(226738,’ultraviolence’),(226740,’chain of command’),(226741,’launch code’),(226742,’sonar’),(226754,’silent protagonist’),(226763,’disintegration’),(226774,’father son conflict’),(226778,’commuter train’),(226790,’bookstore’),(226791,’gainesville florida’),(226825,’shenanigans’),(226838,’federal reserve bank’),(226846,’power plant’),(226907,’box cutter’),(226930,’feedback’),(226931,’mic stand’),(226981,’blood ritual’),(227023,’old couple’),(227035,’white gloves’),(227106,’banana boat’),(227198,’stolen pet’),(227201,’designer drug’),(227206,’potus’),(227328,’mighty mo’),(227329,’uss missouri’),(227364,’evil brother’),(227385,’eternal’),(227411,’secret hideout’),(227432,’kuala lumpur malaysia’),(227489,’derelict ship’),(227497,’turing test’),(227532,’hit man’),(227591,’elasticity’),(227595,’absorbing power’),(227616,’surfer dude’),(227642,’platoon leader’),(227655,’hearing voices’),(227686,’myth’),(227771,’altering history’),(227808,’biscuit’),(227811,’boa constrictor’),(227824,’bus accident’),(227825,’storm drain’),(227860,’turbo intercepter’),(227863,’bearer bonds’),(227864,’comeuppance’),(227887,’flatulence’),(227890,’military law’),(227892,’pikey’),(227900,’blacklight’),(227944,’strip show’),(227945,’high stakes’),(228041,’prodigy’),(228081,’christmas parade’),(228194,’collision course’),(228232,’tonto’),(228244,’the sixties’),(228280,’rural farm’),(228295,’orc’),(228342,’u7eddu5730u5976u9738′),(228343,’u5367u5e95u80a5u5988′),(228344,’bigu7206u4efbu52a1′),(228345,’u8d85u7ea7u5988u5988′),(228417,’plano texas’),(228491,’suicidal mission’),(228495,’falsifying’),(228519,’macau china’),(228523,’inspired by true events’),(228602,’second wife’),(228607,’x-ray vision’),(228610,’railgun’),(228646,’gum’),(228666,’male nanny’),(228676,’publicist’),(228690,’imperial seal’),(228752,’prey’),(228753,’loss of faith’),(228755,’viet cong’),(228756,’pittsburgh steelers’),(228768,’noodle salad’),(228897,’paranormal investigator’),(228935,’valak’),(228936,’annabelle’),(228988,’slow cinema’),(229043,’baseball scout’),(229046,’failing eyesight’),(229049,’blurry vision’),(229050,’blurred sight’),(229051,’mongrel’),(229053,’mountain’),(229066,’waltzing matilda’),(229067,’trampled to death’),(229069,’child hitman’),(229078,’test flight’),(229211,’military crime’),(229266,’dc extended universe’),(229287,’wwe’),(229299,’affair’),(229388,’filmes contra o comunismo’),(229652,’alien encounter’),(229675,’grove’),(229676,’bosque’),(229740,’body transformation’),(229851,’fictionalized history’),(229863,’ancient evil’),(229893,’als’),(229980,’smartphone’),(230024,’daddys home’),(230052,’chloroform’),(230112,’ramanujam’),(230113,’math genius’),(230137,’cannibals’),(230191,’haunted’),(230314,’lgbt family’),(230413,’mothman’),(230456,’indians vs. settlers’),(230607,’antihero’),(230616,’fat man’),(230775,’batman’),(230809,’planes’),(230873,’animal lead’),(230910,’ark’),(230912,’supervivencia’),(231027,’mosque’),(231063,’umerziehung’),(231069,’inspired by a true story’),(231097,’u0393u03b7′),(231121,’hoover dam’),(231149,’mob’),(231225,’friends with benefit’),(231277,’alien technology’),(231318,’paris france’),(231403,’elf’),(231407,’fang vamp’),(231621,’plane’),(231630,’gender stereotypes’),(231641,’unfaithful husband’),(231642,’personality disorder’),(231846,’operation trudy jackson’),(231847,’general douglas macarthur’),(231848,’operation x-ray’),(231849,’incheon’),(231932,’career vs family’),(231933,’life reprioritizing’),(232085,’hobo’),(232116,’wolves’),(232222,’20th century’),(232235,’brothers’),(232260,’aspiring musician’),(232281,’unofficial remake’),(232318,’solar’),(232339,’destruction of mankind’),(232411,’people change’),(232429,’image comics’),(232430,’comic book industry’),(232441,’sister sister incest’),(232452,’jedi master’),(232453,’jedi training’),(232454,’droid’),(232471,’transvestite’),(232533,’immortal’),(232534,’tepes’),(232580,’new species of human’),(232581,’side effects’),(232582,’narcotic abuse’),(232587,’philosophic conflict’),(232607,’funny’),(232700,’business rivalry’),(232716,’genital mutilation’),(232763,’arrested development’),(232766,’vengeance’),(232791,’spider general’),(232795,’halloween night’),(232802,’girl dog relationship’),(232819,’phantom jam’),(232926,’odin’),(232932,’heimdall’),(232987,’brigands’),(232999,’cameos’),(233004,’angels’),(233005,’cybernetics’),(233016,’segregation’),(233020,’thalassophobia’),(233021,’ugly’),(233023,’landslide’),(233024,’korean’),(233025,’divination’),(233027,’romantic’),(233034,’search for dog’),(233035,’trees’),(233036,’dirt road’),(233037,’assaulting an officer’),(233038,’gallon of water’),(233047,’smoking weed’),(233048,’shoes’),(233055,’vienna’),(233065,’gypsies’),(233069,’set in one room’),(233072,’uneasy alliance’),(233073,’rag tag group’),(233082,’trust fund baby’),(233129,’motorbike’),(233134,’classism’),(233153,’white water rafting’),(233155,’cryonics’),(233167,’lovecraftian’),(233292,’animal rights organization’),(233296,’students’),(233300,’genetic mutation’),(233324,’village council’),(233360,’air attack’),(233443,’legendary perfomer’),(233447,’alaskan malamute’),(233450,’proto-slasher’),(233452,’dove family-approved’),(233558,’stolen patent’),(233617,’popular girl’),(233618,’bitch’),(233706,’night creatures’),(233944,’you\’ve got red on you’),(233950,’skinheads’),(234040,’louisville’),(234042,’late coming of age’),(234073,’bandits’),(234095,’feel good’),(234109,’downtrodden’),(234110,’saviour’),(234124,’judgment call’),(234129,’cool hair’),(234169,’cern’),(234183,’animal sidekick’),(234184,’powhatan’),(234185,’land claim’),(234197,’adultress’),(234213,’sword and sorcery’),(234290,’motorcycle gangs’),(234297,’lahore’),(234319,’scientists’),(234341,’real estate developer’),(234356,’nazi’),(234360,’puppy mill’),(234361,’animal rescues’),(234362,’college intern’),(234363,’overboard’),(234364,’crane the bird’),(234365,’space based weapon’),(234367,’great soundtrack’),(234368,’kickass’),(234456,’baby geniuses’),(234469,’south central l.a.’),(234505,’adrenaline junkie’),(234506,’thrill seeker’),(234551,’film in a film’),(234555,’psychedelic drug’),(234587,’montreal canadiens’),(234626,’edwardian england’),(234630,’cruise liner’),(234694,’superpowers’),(234766,’jigsaw’),(234767,’swastika tattoo’),(234778,’mission control’),(234779,’coal shed’),(234849,’tiki culture’),(234886,’secret location’),(234944,’brain capacity’),(234945,’synthetic drug’),(234946,’human brain’),(235098,’taking a risk’),(235135,’based on real events’),(235220,’replacement’),(235228,’lookalikes’),(235261,’abduction’),(235277,’classic hollywood’),(235354,’fear of clowns’),(235424,’intersecting lives’),(235459,’cattivissimo’),(235476,’u.s. ambassador’),(235513,’alien dna’),(235525,’toyko’),(235573,’chemical leak’),(235574,’mutations’),(235606,’models’),(235615,’trojan’),(235616,’bronze age’),(235617,’sparta greece’),(235618,’helen of troy’),(235619,’homer\’s iliad’),(235625,’capuchin monkey’),(235626,’tortuga’),(235679,’yucatec maya language’),(235690,’frank sinatra’),(235691,’singers’),(235729,’husband wife relationship’),(235768,’singing false’),(235791,’barbarian horde’),(235792,’2nd century’),(235793,’successor’),(235972,’awful leader’),(235974,’taking resposibility’),(236055,’gay couple’),(236176,’steam’),(236185,’ghost rider’),(236189,’future noir’),(236294,’lancaster, pa’),(236312,’origins of life’),(236316,’anarchic comedy’),(236373,’fat woman’),(236374,’attractiveness’),(236376,’commoner’),(236377,’emotional abuse’),(236458,’magician’),(236475,’rio 1′),(236476,’ru00edo 1′),(236534,’bu0171nu00f6s utakon’),(236590,’2000 ad’),(236778,’autocracy’),(236891,’beautiful princess’),(236892,’groupthink’),(236896,’serial kiler’),(236969,’cat lady’),(237016,’love spell’),(237224,’mk ultra’),(237225,’experimental drug’),(237378,’teenage killer’),(237849,’asian man’),(237850,’asian lead’),(237851,’drugs’),(237901,’children\’s services’),(238010,’herion’),(238128,’savagery’),(238130,’brothers love same woman’),(238134,’military outpost’),(238135,’vomiting blood’),(238136,’gory violence’),(238137,’mysterious events’),(238138,’chemical plant’),(238140,’forced to kill’),(238182,’truck hijacking’),(238183,’bank loan’),(238189,’social decay’),(238190,’ptsd’),(238192,’poisoning’),(238196,’the light brigade’),(238197,’horses’),(238198,’british lancers’),(238206,’society ball’),(238222,’year 2002′);
/*!40000 ALTER TABLE `keyword` ENABLE KEYS */;
UNLOCK TABLES;
—
— Table structure for table `language`
—
DROP TABLE IF EXISTS `language`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `language` (
`language_id` int(10) NOT NULL AUTO_INCREMENT,
`language_code` varchar(10) DEFAULT NULL,
`language_name` varchar(500) DEFAULT NULL,
PRIMARY KEY (`language_id`)
) ENGINE=InnoDB AUTO_INCREMENT=24702 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
—
— Dumping data for table `language`
—
LOCK TABLES `language` WRITE;
/*!40000 ALTER TABLE `language` DISABLE KEYS */;
INSERT INTO `language` VALUES (24574,’en’,’English’),(24575,’sv’,’svenska’),(24576,’de’,’Deutsch’),(24577,’xx’,’No Language’),(24578,’ja’,’u65e5u672cu8a9e’),(24579,’fr’,’Franu00e7ais’),(24580,’es’,’Espau00f1ol’),(24581,’ar’,’u0627u0644u0639u0631u0628u064au0629′),(24582,’la’,’Latin’),(24583,’km’,”),(24584,’vi’,’Tiu1ebfng Viu1ec7t’),(24585,’tr’,’Tu00fcrku00e7e’),(24586,’el’,’u03b5u03bbu03bbu03b7u03bdu03b9u03bau03ac’),(24587,’zh’,’u666eu901au8bdd’),(24588,’ru’,’Pu0443u0441u0441u043au0438u0439′),(24589,’ga’,’Gaeilge’),(24590,’cn’,’u5e7fu5ddeu8bdd / u5ee3u5ddeu8a71′),(24591,’hu’,’Magyar’),(24592,’he’,’u05e2u05b4u05d1u05b0u05e8u05b4u05d9u05ea’),(24593,’ne’,”),(24594,’si’,”),(24595,’it’,’Italiano’),(24596,’nl’,’Nederlands’),(24597,’fi’,’suomi’),(24598,’pt’,’Portuguu00eas’),(24599,’gd’,”),(24600,’fa’,’u0641u0627u0631u0633u06cc’),(24601,’ur’,’u0627u0631u062fu0648′),(24602,’da’,’Dansk’),(24603,’th’,’u0e20u0e32u0e29u0e32u0e44u0e17u0e22′),(24604,’no’,’Norsk’),(24605,’sq’,’shqip’),(24606,’pl’,’Polski’),(24607,’is’,’u00cdslenska’),(24608,’tl’,”),(24609,’pa’,’u0a2au0a70u0a1cu0a3eu0a2cu0a40′),(24610,’hi’,’u0939u093fu0928u094du0926u0940′),(24611,’kk’,’u049bu0430u0437u0430u049b’),(24612,’bg’,’u0431u044au043bu0433u0430u0440u0441u043au0438 u0435u0437u0438u043a’),(24613,’sw’,’Kiswahili’),(24614,’ro’,’Romu00e2nu0103′),(24615,’ko’,’ud55cuad6duc5b4/uc870uc120ub9d0′),(24616,’cs’,’u010cesku00fd’),(24617,’sk’,’Slovenu010dina’),(24618,’mi’,”),(24619,’eo’,’Esperanto’),(24620,’so’,’Somali’),(24621,’af’,’Afrikaans’),(24622,’xh’,”),(24623,’zu’,’isiZulu’),(24624,’yi’,”),(24625,’ca’,’Catalu00e0′),(24626,’sr’,’Srpski’),(24627,’sa’,”),(24628,’uk’,’u0423u043au0440u0430u0457u043du0441u044cu043au0438u0439′),(24629,’hr’,’Hrvatski’),(24630,’gl’,’Galego’),(24631,’sh’,”),(24632,’co’,”),(24633,’kw’,”),(24634,’bo’,”),(24635,’bs’,’Bosanski’),(24636,’ps’,’u067eu069au062au0648′),(24637,’iu’,”),(24638,’hy’,”),(24639,’am’,”),(24640,’ce’,”),(24641,’et’,’Eesti’),(24642,’ku’,”),(24643,’nv’,”),(24644,’mn’,”),(24645,’to’,”),(24646,’bn’,’u09acu09beu0982u09b2u09be’),(24647,’ny’,”),(24648,’st’,”),(24649,’dz’,”),(24650,’cy’,’Cymraeg’),(24651,’wo’,’Wolof’),(24652,’ka’,’u10e5u10d0u10e0u10d7u10e3u10dau10d8′),(24653,’br’,”),(24654,’ta’,’u0ba4u0baeu0bbfu0bb4u0bcd’),(24655,’id’,’Bahasa indonesia’),(24656,’ml’,”),(24657,’te’,’u0c24u0c46u0c32u0c41u0c17u0c41′),(24658,’ky’,’??????’),(24659,’bm’,’Bamanankan’),(24660,’sl’,’Slovenu0161u010dina’),(24701,’nb’,’Unknown’);
/*!40000 ALTER TABLE `language` ENABLE KEYS */;
UNLOCK TABLES;
—
— Table structure for table `language_role`
—
DROP TABLE IF EXISTS `language_role`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `language_role` (
`role_id` int(10) NOT NULL,
`language_role` varchar(20) DEFAULT NULL,
PRIMARY KEY (`role_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
—
— Dumping data for table `language_role`
—
LOCK TABLES `language_role` WRITE;
/*!40000 ALTER TABLE `language_role` DISABLE KEYS */;
INSERT INTO `language_role` VALUES (1,’Original’),(2,’Spoken’);
/*!40000 ALTER TABLE `language_role` ENABLE KEYS */;
UNLOCK TABLES;
—
— Table structure for table `movie`
—
DROP TABLE IF EXISTS `movie`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `movie` (
`movie_id` int(10) NOT NULL AUTO_INCREMENT,
`title` varchar(1000) DEFAULT NULL,
`budget` int(10) DEFAULT NULL,
`homepage` varchar(1000) DEFAULT NULL,
`overview` varchar(1000) DEFAULT NULL,
`popularity` decimal(12,6) DEFAULT NULL,
`release_date` date DEFAULT NULL,
`revenue` bigint(20) DEFAULT NULL,
`runtime` int(5) DEFAULT NULL,
`movie_status` varchar(50) DEFAULT NULL,
`tagline` varchar(1000) DEFAULT NULL,
`vote_average` decimal(4,2) DEFAULT NULL,
`vote_count` int(10) DEFAULT NULL,
PRIMARY KEY (`movie_id`)
) ENGINE=InnoDB AUTO_INCREMENT=459489 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
—
— Dumping data for table `movie`
—
LOCK TABLES `movie` WRITE;
/*!40000 ALTER TABLE `movie` DISABLE KEYS */;
INSERT INTO `movie` VALUES (5,’Four Rooms’,4000000,”,’It\’s Ted the Bellhop\’s first night on the job…and the hotel\’s very unusual guests are about to place him in some outrageous predicaments. It seems that this evening\’s room service is serving up one unbelievable happening after another.’,22.876230,’1995-12-09′,4300000,98,’Released’,’Twelve outrageous guests. Four scandalous requests. And one lone bellhop, in his first day on the job, who\’s in for the wildest New year\’s Eve of his life.’,6.50,530),(11,’Star Wars’,11000000,’http://www.starwars.com/films/star-wars-episode-iv-a-new-hope’,’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 captain 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.’,126.393695,’1977-05-25′,775398007,121,’Released’,’A long time ago in a galaxy far, far away…’,8.10,6624),(12,’Finding Nemo’,94000000,’http://movies.disney.com/finding-nemo’,’Nemo, an adventurous young clownfish, is unexpectedly taken from his Great Barrier Reef home to a dentist\’s office aquarium. It\’s up to his worrisome father Marlin and a friendly but forgetful fish Dory to bring Nemo home — meeting vegetarian sharks, surfer dude turtles, hypnotic jellyfish, hungry seagulls, and more along the way.’,85.688789,’2003-05-30′,940335536,100,’Released’,’There are 3.7 trillion fish in the ocean, they\’re looking for one.’,7.60,6122),(13,’Forrest Gump’,55000000,”,’A man with a low IQ has accomplished great things in his life and been present during significant historic events – in each case, far exceeding what anyone imagined he could do. Yet, despite all the things he has attained, his one true love eludes him. \’Forrest Gump\’ is the story of a man who rose above his challenges, and who proved that determination, courage, and love are more important than ability.’,138.133331,’1994-07-06′,677945399,142,’Released’,’The world will never be the same, once you\’ve seen it through the eyes of Forrest Gump.’,8.20,7927),(14,’American Beauty’,15000000,’http://www.dreamworks.com/ab/’,’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.’,80.878605,’1999-09-15′,356296601,122,’Released’,’Look closer.’,7.90,3313),(16,’Dancer in the Dark’,12800000,”,’Selma, a Czech immigrant on the verge of blindness, struggles to make ends meet for herself and her son, who has inherited the same genetic disorder and will suffer the same fate without an expensive operation. When life gets too difficult, Selma learns to cope through her love of musicals, escaping life\’s troubles – even if just for a moment – by dreaming up little numbers to the rhythmic beats of her surroundings.’,22.022228,’2000-05-17′,40031879,140,’Released’,’You don\’t need eyes to see.’,7.60,377),(18,’The Fifth Element’,90000000,”,’In 2257, a taxi driver is unintentionally given the task of saving a young girl who is part of the key that will ensure the survival of humanity.’,109.528572,’1997-05-07′,263920180,126,’Released’,’There is no future without it.’,7.30,3885),(19,’Metropolis’,92620000,”,’In a futuristic city sharply divided between the working class and the city planners, the son of the city\’s mastermind falls in love with a working class prophet who predicts the coming of a savior to mediate their differences.’,32.351527,’1927-01-10′,650422,153,’Released’,’There can be no understanding between the hands and the brain unless the heart acts as mediator.’,8.00,657),(20,’My Life Without Me’,0,’http://www.clubcultura.com/clubcine/clubcineastas/isabelcoixet/mividasinmi/index.htm’,’A Pedro Almodovar production in which a fatally ill mother with only two months to live creates a list of things she wants to do before she dies with out telling her family of her illness.’,7.958831,’2003-03-07′,9726954,106,’Released’,”,7.20,77),(22,’Pirates of the Caribbean: The Curse of the Black Pearl’,140000000,’http://disney.go.com/disneyvideos/liveaction/pirates/main_site/main.html’,’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.’,271.972889,’2003-07-09′,655011224,143,’Released’,’Prepare to be blown out of the water.’,7.50,6985),(24,’Kill Bill: Vol. 1′,30000000,’http://www.miramax.com/movie/kill-bill-volume-1/’,’An assassin is shot at the altar by her ruthless employer, Bill and other members of their assassination circle â�� but \’The Bride\’ lives to plot her vengeance. Setting out for some payback, she makes a death list and hunts down those who wronged her, saving Bill for last.’,79.754966,’2003-10-10′,180949000,111,’Released’,’Go for the kill.’,7.70,4949),(25,’Jarhead’,72000000,”,’Jarhead is a film about a US Marine Anthony Swoffordâ��s experience in the Gulf War. After putting up with an arduous boot camp, Swafford and his unit are sent to the Persian Gulf where they are earger to fight but are forced to stay back from the action. Meanwhile Swofford gets news of his girlfriend is cheating on him. Desperately he wants to kill someone and finally put his training to use.’,32.227223,’2005-11-04′,96889998,125,’Released’,’Welcome to the suck.’,6.60,765),(28,’Apocalypse Now’,31500000,’http://www.apocalypsenow.com’,’At the height of the Vietnam war, Captain Benjamin Willard is sent on a dangerous mission that, officially, \”does not exist, nor will it ever exist.\” His goal is to locate – and eliminate – a mysterious Green Beret Colonel named Walter Kurtz, who has been leading his personal army on illegal guerrilla missions into enemy territory.’,49.973462,’1979-08-15′,89460381,153,’Released’,’This is the end…’,8.00,2055),(33,’Unforgiven’,14000000,”,’William Munny is a retired, once-ruthless killer turned gentle widower and hog farmer. To help support his two motherless children, he accepts one last bounty-hunter mission to find the men who brutalized a prostitute. Joined by his former partner and a cocky greenhorn, he takes on a corrupt sheriff.’,37.380435,’1992-08-07′,159157447,131,’Released’,’Some legends will never be forgotten. Some wrongs can never be forgiven.’,7.70,1113),(35,’The Simpsons Movie’,75000000,’http://www.simpsonsmovie.com/’,’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.’,46.875375,’2007-07-25′,527068851,87,’Released’,’See our family. And feel better about yours.’,6.90,2264),(38,’Eternal Sunshine of the Spotless Mind’,20000000,’http://www.eternalsunshine.com’,’Joel Barish, heartbroken that his girlfriend underwent a procedure to erase him from her memory, decides to do the same. However, as he watches his memories of her fade away, he realises that he still loves her, and may be too late to correct his mistake.’,56.481487,’2004-03-19′,72258126,108,’Released’,’You can erase someone from your mind. Getting them out of your heart is another story.’,7.90,3652),(55,’Amores perros’,2000000,”,’Three different people in Mexico City are catapulted into dramatic and unforeseen circumstances in the wake of a terrible car crash: a young punk stumbles into the sinister underground world of dog fighting; an injured supermodel\’s designer pooch disappears into the apartment\’s floorboards; and an ex-radical turned hit man rescues a gunshot Rotweiler.’,23.281616,’2000-06-16′,20908467,154,’Released’,’Love. Betrayal. Death.’,7.60,521),(58,’Pirates of the Caribbean: Dead Man\’s Chest’,200000000,’http://disney.go.com/disneypictures/pirates/’,’Captain Jack Sparrow works his way out of a blood debt with the ghostly Davey Jones, he also attempts to avoid eternal damnation.’,145.847379,’2006-06-20′,1065659812,151,’Released’,’Jack is back!’,7.00,5246),(59,’A History of Violence’,32000000,”,’An average family is thrust into the spotlight after the father commits a seemingly self-defense murder at his diner.’,34.628738,’2005-09-23′,60740827,96,’Released’,’Tom Stall had the perfect life… until he became a hero.’,6.90,832),(62,’2001: A Space Odyssey’,10500000,”,’Humanity finds a mysterious object buried beneath the lunar surface and sets off to find its origins with the help of HAL 9000, the world\’s most advanced super computer.’,86.201184,’1968-04-10′,68700000,149,’Released’,’An epic drama of adventure and exploration’,7.90,2998),(65,’8 Mile’,41000000,’http://movies.uip.de/8mile/’,’The setting is Detroit in 1995. The city is divided by 8 Mile, a road that splits the town in half along racial lines. A young white rapper, Jimmy \”B-Rabbit\” Smith Jr. summons strength within himself to cross over these arbitrary boundaries to fulfill his dream of success in hip hop. With his pal Future and the three one third in place, all he has to do is not choke.’,32.798571,’2002-11-08′,215000000,110,’Released’,’Every moment is another chance.’,6.80,1626),(66,’Absolute Power’,50000000,”,’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.’,13.576765,’1997-02-14′,50068310,121,’Released’,’Corrupts Absolutely.’,6.40,223),(68,’Brazil’,15000000,”,’Low-level bureaucrat Sam Lowry escapes the monotony of his day-to-day life through a recurring daydream of himself as a virtuous hero saving a beautiful damsel. Investigating a case that led to the wrongful arrest and eventual death of an innocent man instead of wanted terrorist Harry Tuttle, he meets the woman from his daydream, and in trying to help her gets caught in a web of mistaken identities, mindless bureaucracy and lies.’,41.089863,’1985-02-20′,0,132,’Released’,’It\’s only a state of mind.’,7.50,861),(69,’Walk the Line’,28000000,”,’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.’,35.580032,’2005-09-13′,186438883,136,’Released’,’Love is a burning thing.’,7.30,718),(70,’Million Dollar Baby’,30000000,’http://www.milliondollarbaby-derfilm.de/’,’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.’,70.456012,’2004-12-15′,216763646,132,’Released’,’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.’,7.70,2439),(71,’Billy Elliot’,5000000,”,’Set against the background of the 1984 Miner\’s Strike, Billy Elliot is an 11 year old boy who stumbles out of the boxing ring and onto the ballet floor. He faces many trials and triumphs as he strives to conquer his family\’s set ways, inner conflict, and standing on his toes!’,20.428237,’2000-05-18′,110000000,110,’Released’,’Inside every one of us is a special talent waiting to come out. The trick is finding it.’,7.40,750),(73,’American History X’,20000000,’http://www.historyx.com/’,’Derek Vineyard is paroled after serving 3 years in prison for killing two thugs who tried to break into/steal his truck. Through his brother, Danny Vineyard\’s narration, we learn that before going to prison, Derek was a skinhead and the leader of a violent white supremacist gang that committed acts of racial crime throughout L.A. and his actions greatly influenced Danny. Reformed and fresh out of prison, Derek severs contact with the gang and becomes determined to keep Danny from going down the same violent path as he did.’,73.567232,’1998-10-30′,23875127,119,’Released’,’Some Legacies Must End.’,8.20,3016),(74,’War of the Worlds’,132000000,”,’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 and young daughter for a rare weekend visit, a strange and powerful lightning storm touches down.’,48.572726,’2005-06-28′,591739379,116,’Released’,’They\’re already here.’,6.20,2322),(75,’Mars Attacks!’,70000000,’http://marsattacks.warnerbros.com/’,’\’We come in peace\’ is not what those green men from Mars mean when they invade our planet, armed with irresistible weapons and a cruel sense of humor. This star studded cast must play victim to the alienâ��s fun and games in this comedy homage to science fiction films of the \’50s and \’60s.’,44.090535,’1996-12-12′,101371017,106,’Released’,’Nice planet. We\’ll take it!’,6.10,1509),(76,’Before Sunrise’,2500000,”,’A dialogue marathon of a film, this fairytale love story of an American boy and French girl. During a day and a night together in Vienna their two hearts collide.’,23.672571,’1995-01-27′,5535405,105,’Released’,’Can the greatest romance of your life last only one night?’,7.70,959),(77,’Memento’,9000000,’http://www.otnemem.com/’,’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.’,60.715151,’2000-10-11′,39723096,113,’Released’,’Some memories are best forgotten.’,8.10,4028),(78,’Blade Runner’,28000000,’http://www.warnerbros.com/blade-runner’,’In the smog-choked dystopian Los Angeles of 2019, blade runner Rick Deckard is called out of retirement to terminate a quartet of replicants who have escaped to Earth seeking their creator for a way to extend their short life spans.’,94.056131,’1982-06-25′,33139618,117,’Released’,’Man has made his match… now it\’s his problem.’,7.90,3509),(79,’è�±é��’,31000000,”,’One man defeated three assassins who sought to murder the most powerful warlord in pre-unified China.’,23.607392,’2002-12-19′,177394432,99,’Released’,’One man\’s strength will unite an empire.’,7.20,635),(80,’Before Sunset’,2700000,’http://www.warnerbros.com/?site=beforesunset#/page=movies&pid=f-57b53b9e/BEFORE_SUNSET&asset=059437/Before_Sunset_-_Trailer_1A&type=video/’,’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.’,14.799323,’2004-02-10′,15992615,80,’Released’,’What if you had a second chance with the one that got away?’,7.60,718),(83,’Open Water’,130000,”,’Two divers are left out at sea without a boat. Thereâ��s nothing but water for miles, unless they look at whatâ��s underneath them…’,15.611857,’2004-08-06′,54667954,79,’Released’,’Scream all you want.’,5.40,315),(85,’Raiders of the Lost Ark’,18000000,’http://www.indianajones.com’,’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.’,68.159596,’1981-06-12′,389925971,115,’Released’,’Indiana Jones – the new hero from the creators of JAWS and STAR WARS.’,7.70,3854),(87,’Indiana Jones and the Temple of Doom’,28000000,’http://www.indianajones.com’,’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.’,66.976776,’1984-05-23′,333000000,118,’Released’,’If adventure has a name… it must be Indiana Jones.’,7.10,2781),(89,’Indiana Jones and the Last Crusade’,48000000,’http://www.indianajones.com/crusade’,’When Dr. Henry Jones Sr. suddenly goes missing while pursuing the Holy Grail, eminent archaeologist Indiana must team up with Marcus Brody, Sallah and Elsa Schneider to follow in his father\’s footsteps and stop the Nazis from recovering the power of eternal life.’,80.972475,’1989-05-24′,474171806,127,’Released’,’The man with the hat is back. And this time, he\’s bringing his Dad.’,7.60,3152),(90,’Beverly Hills Cop’,15000000,”,’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.’,29.843818,’1984-11-29′,316360478,105,’Released’,’The Heat Is On!’,6.80,961),(95,’Armageddon’,140000000,”,’When an asteroid threatens to collide with Earth, NASA honcho Dan Truman determines the only way to stop it is to drill into its surface and detonate a nuclear bomb. This leads him to renowned driller Harry Stamper, who agrees to helm the dangerous space mission provided he can bring along his own hotshot crew. Among them is the cocksure A.J. who Harry thinks isn\’t good enough for his daughter, until the mission proves otherwise.’,58.485967,’1998-07-01′,553799566,151,’Released’,’The Earth\’s Darkest Day Will Be Man\’s Finest Hour’,6.40,2482),(96,’Beverly Hills Cop II’,20000000,”,’Detroit cop, Axel Foley 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.’,25.284360,’1987-05-18′,299965036,100,’Released’,”,6.10,613),(98,’Gladiator’,103000000,”,’In the year 180, the death of emperor Marcus Aurelius throws the Roman Empire into chaos. Maximus is one of the Roman army\’s most capable and trusted generals and a key advisor to the emperor. As Marcus\’ devious son Commodus ascends to the throne, Maximus is set to be executed. He escapes, but is captured by slave traders. Renamed Spaniard and forced to become a gladiator, Maximus must battle to the death with other men for the amusement of paying audiences. His battle skills serve him well, and he becomes one of the most famous and admired men to fight in the Colosseum. Determined to avenge himself against the man who took away his freedom and laid waste to his family, Maximus believes that he can use his fame and skill in the ring to avenge the loss of his family and former glory. As the gladiator begins to challenge his rule, Commodus decides to put his own fighting mettle to the test by squaring off with Maximus in a battle to the death.’,95.301296,’2000-05-01′,457640427,155,’Released’,’A Hero Will Rise.’,7.90,5439),(100,’Lock, Stock and Two Smoking Barrels’,1350000,’http://www.universalstudiosentertainment.com/lock-stock-and-two-smoking-barrels/’,’A card sharp and his unwillingly-enlisted friends need to make a lot of cash quick after losing a sketchy poker match. To do this they decide to pull a heist on a small-time gang who happen to be operating out of the flat next door.’,16.032594,’1998-03-05′,3897569,105,’Released’,’A Disgrace to Criminals Everywhere.’,7.50,1648),(103,’Taxi Driver’,1300000,”,’A mentally unstable Vietnam War veteran works as a night-time taxi driver in New York City where the perceived decadence and sleaze feeds his urge for violent action, attempting to save a preadolescent prostitute in the process.’,58.845025,’1976-02-07′,28262574,114,’Released’,’On every street in every city, there\’s a nobody who dreams of being a somebody.’,8.00,2535),(104,’Lola rennt’,1530000,”,’Lola receives a phone call from her boyfriend Manni. 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 Manni. Otherwise, he will rob a store to get the money. Three different alternatives may happen depending on some minor event along Lola\’s run.’,27.365620,’1998-08-20′,7267585,81,’Released’,’Every second of every day you\’re faced with a decision that can change your life.’,7.20,664),(105,’Back to the Future’,19000000,’http://www.backtothefuture.com/movies/backtothefuture1′,’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 – return to 1985.’,76.603233,’1985-07-03′,381109762,116,’Released’,’He\’s the only kid ever to get into trouble before he was born.’,8.00,6079),(106,’Predator’,18000000,”,’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 its victims as it goes along. Occasionally seeing through its eyes, the audience sees it is an intelligent alien hunter, hunting them for sport, killing them off one at a time.’,50.009408,’1987-06-11′,98235548,107,’Released’,’If it bleeds, we can kill it…’,7.30,2093),(107,’Snatch’,10000000,”,’The second film from British director Guy Ritchie. Snatch tells an obscure story similar to his first fast-paced crazy character-colliding filled film â��Lock, Stock and Two Smoking Barrels.â�� There are two overlapping stories here â�� one is the search for a stolen diamond, and the other about a boxing promoter whoâ��s having trouble with a psychotic gangster.’,53.595686,’2000-09-01′,83557872,103,’Released’,’Stealin\’ Stones and Breakin\’ Bones.’,7.70,2912),(111,’Scarface’,25000000,”,’After getting a green card in exchange for assassinating a Cuban government official, Tony Montana stakes a claim on the drug trade in Miami. Viciously murdering anyone who stands in his way, Tony eventually becomes the biggest drug lord in the state, controlling nearly all the cocaine that comes through Miami. But increased pressure from the police, wars with Colombian drug cartels and his own drug-fueled paranoia serve to fuel the flames of his eventual downfall.’,70.105981,’1983-12-08′,65884703,170,’Released’,’The world is yours…’,8.00,2948),(114,’Pretty Woman’,14000000,”,’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?’,45.473484,’1990-03-23′,463000000,119,’Released’,’Who knew it was so much fun to be a hooker?’,7.00,1746),(115,’The Big Lebowski’,15000000,’http://www.biglebowskibluray.com/splash.php’,’Jeffrey \”The Dude\” Lebowski, a Los Angeles slacker who only wants to bowl and drink white Russians, is mistaken for another Jeffrey Lebowski, a wheelchair-bound millionaire, and finds himself dragged into a strange series of events involving nihilists, adult film producers, ferrets, errant toes, and large sums of money.’,49.230089,’1998-03-06′,46189568,117,’Released’,’Times like these call for a Big Lebowski.’,7.80,2926),(116,’Match Point’,15000000,”,’Match Point is Woody Allenâ��s 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.’,30.669913,’2005-10-26′,85306374,124,’Released’,’Passion Temptation Obsession’,7.30,1105),(117,’The Untouchables’,25000000,”,’Young Treasury Agent Elliot Ness arrives in Chicago and is determined 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 on 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.’,38.272889,’1987-06-02′,76270454,119,’Released’,’What are you prepared to do?’,7.60,1384),(118,’Charlie and the Chocolate Factory’,150000000,’https://www.warnerbros.com/charlie-and-chocolate-factory’,’A young boy wins a tour through the most magnificent chocolate factory in the world, led by the world\’s most unusual candy maker.’,53.905592,’2005-07-13′,474968763,115,’Released’,’Willy Wonka is semi-sweet and nuts.’,6.70,3624),(120,’The Lord of the Rings: The Fellowship of the Ring’,93000000,’http://www.lordoftherings.net/’,’Young hobbit Frodo Baggins, after inheriting a mysterious ring from his uncle Bilbo, must leave his home in order to keep it from falling into the hands of its evil creator. Along the way, a fellowship is formed to protect the ringbearer and make sure that the ring arrives at its final destination: Mt. Doom, the only place where it can be destroyed.’,138.049577,’2001-12-18′,871368364,178,’Released’,’One ring to rule them all’,8.00,8705),(121,’The Lord of the Rings: The Two Towers’,79000000,’http://www.lordoftherings.net/’,’Frodo and Sam are trekking to Mordor to destroy the One Ring of Power while Gimli, Legolas and Aragorn search for the orc-captured Merry and Pippin. All along, nefarious wizard Saruman awaits the Fellowship members at the Orthanc Tower in Isengard.’,106.914973,’2002-12-18′,926287400,179,’Released’,’A New Power Is Rising.’,8.00,7487),(122,’The Lord of the Rings: The Return of the King’,94000000,’http://www.lordoftherings.net’,’Aragorn is revealed as the heir to the ancient kings as he, Gandalf and the other members of the broken fellowship struggle to save Gondor from Sauron\’s forces. Meanwhile, Frodo and Sam bring the ring closer to the heart of Mordor, the dark lord\’s realm.’,123.630332,’2003-12-01′,1118888979,201,’Released’,’The eye of the enemy is moving.’,8.10,8064),(128,’ã��ã�®ã�®ã��姫’,26500000,”,’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.’,60.732738,’1997-07-12′,159375308,134,’Released’,’The Fate Of The World Rests On The Courage Of One Warrior.’,8.20,1983),(129,’å��ã�¨å��å°�ã�®ç¥�é� ã��’,15000000,’http://movies.disney.com/spirited-away’,’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?’,118.968562,’2001-07-20′,274925095,125,’Released’,’The tunnel led Chihiro to a mysterious town…’,8.30,3840),(134,’O Brother, Where Art Thou?’,26000000,”,’In the deep south during the 1930s, three escaped convicts search for hidden treasure while a relentless lawman pursues them. On their journey they come across many comical characters and incredible situations. Based upon Homer\’s \’Odyssey\’.’,39.742009,’2000-08-30′,71868327,106,’Released’,’They have a plan…but not a clue.’,7.30,1112),(137,’Groundhog Day’,14600000,”,’A narcissistic TV weatherman, along with his attractive-but-distant producer and mawkish cameraman, is sent to report on Groundhog Day in the small town of Punxsutawney, where he finds himself repeating the same day over and over.’,52.744331,’1993-02-11′,70906973,101,’Released’,’He\’s having the worst day of his life… over, and over…’,7.40,2301),(141,’Donnie Darko’,6000000,”,’After narrowly escaping a bizarre accident, a troubled teenager is plagued by visions of a large bunny rabbit that manipulates him to commit a series of crimes.’,61.210016,’2001-01-18′,1270522,113,’Released’,’You can never go too far’,7.70,3452),(142,’Brokeback Mountain’,14000000,’http://www.brokebackmountain.com’,’Brokeback Mountain is an Ang Lee film about two modern day cowboys who meet on a shepherding job in the summer of â��63. 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.’,44.135568,’2005-09-02′,178043761,134,’Released’,’Love is a force of nature.’,7.50,1480),(146,’å�§è��è��é¾�’,17000000,”,’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.’,45.742254,’2000-10-01′,213525736,120,’Released’,’A timeless story of strength, secrets and two warriors who would never surrender.’,7.20,927),(149,’ã�¢ã�ã�©’,8000000,’http://www.bandaivisual.co.jp/akira/’,’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.’,39.338097,’1988-07-16′,553171,124,’Released’,’Neo-Tokyo is about to E.X.P.L.O.D.E.’,7.80,773),(152,’Star Trek: The Motion Picture’,35000000,”,’When a destructive space entity is spotted approaching Earth, Admiral Kirk resumes command of the Starship Enterprise in order to intercept, examine, and hopefully stop it.’,24.616634,’1979-12-06′,139000000,132,’Released’,’The human adventure is just beginning.’,6.20,530),(153,’Lost in Translation’,4000000,”,’Two lost souls visiting Tokyo — the young, neglected wife of a photographer and a washed-up movie star shooting a TV commercial — find an odd solace and pensive freedom to be real in each other\’s company, away from their lives in America.’,45.666620,’2003-08-31′,119723856,102,’Released’,’Everyone wants to be found.’,7.30,1895),(154,’Star Trek II: The Wrath of Khan’,12000000,”,’Admiral James T. Kirk is feeling old; the prospect of accompanying his old ship the Enterprise on a two week cadet cruise is not making him feel any younger. But the training cruise becomes a a life or death struggle when Khan escapes from years of exile and captures the power of creation itself.’,22.434102,’1982-06-03′,96800000,113,’Released’,’At the end of the universe lies the beginning of vengeance.’,7.30,675),(155,’The Dark Knight’,185000000,’http://thedarkknight.warnerbros.com/dvdsite/’,’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.’,187.322927,’2008-07-16′,1004558444,152,’Released’,’Why So Serious?’,8.20,12002),(157,’Star Trek III: The Search for Spock’,18000000,”,’Admiral Kirk and his bridge crew risk their careers stealing the decommissioned Enterprise to return to the restricted Genesis planet to recover Spock\’s body.’,15.314027,’1984-05-31′,87000000,105,’Released’,’A dying planet. A fight for life.’,6.40,434),(161,’Ocean\’s Eleven’,85000000,’http://www.warnerbros.co.uk/movies/oceans-eleven’,’Less than 24 hours into his parole, charismatic thief Danny Ocean is already rolling out his next plan: In one night, Danny\’s hand-picked crew of specialists will attempt to steal more than $150 million from three Las Vegas casinos. But to score the cash, Danny risks his chances of reconciling with ex-wife, Tess.’,60.929352,’2001-12-07′,450717150,116,’Released’,’Are you in or out?’,7.20,3783),(162,’Edward Scissorhands’,20000000,”,’A small suburban town receives a visit from a castaway unfinished science experiment named Edward.’,47.513630,’1990-12-05′,53000000,105,’Released’,’His scars run deep.’,7.50,3601),(163,’Ocean\’s Twelve’,110000000,’http://oceans12.warnerbros.com/’,’Danny Ocean reunites with his old flame and the rest of his merry band of thieves in carrying out three huge heists in Rome, Paris and Amsterdam â�� but a Europol agent is hot on their heels.’,76.840712,’2004-12-09′,362744280,125,’Released’,’Twelve is the new eleven.’,6.40,2124),(165,’Back to the Future Part II’,40000000,’http://www.backtothefuture.com/movies/backtothefuture2′,’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.’,43.345252,’1989-11-20′,332000000,108,’Released’,’Roads? Where we\’re going, we don\’t need roads!’,7.40,3829),(167,’K-PAX’,48000000,’http://www.k-pax.com/’,’Prot is a patient at a mental hospital who claims to be from a far away Planet. His psychiatrist tries to help him, only to begin to doubt his own explanations.’,30.920075,’2001-10-22′,50315140,120,’Released’,’Change the way you look at the world.’,7.10,695),(168,’Star Trek IV: The Voyage Home’,24000000,”,’Fugitives of the Federation for their daring rescue of Spock from the doomed Genesis Planet, Admiral Kirk (William Shatner) and his crew begin their journey home to face justice for their actions. But as they near Earth, they find it at the mercy of a mysterious alien presence whose signals are slowly destroying the planet. In a desperate attempt to answer the call of the probe, Kirk and his crew race back to the late twentieth century. However they soon find the world they once knew to be more alien than anything they\’ve encountered in the far reaches of the galaxy!’,22.258428,’1986-11-25′,133000000,119,’Released’,’The key to saving the future can only be found in the past.’,6.90,477),(169,’Predator 2′,35000000,”,’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.’,27.934978,’1990-11-20′,57120318,108,’Released’,’Silent. Invisible. Invincible. He\’s in town with a few days to kill.’,5.90,730),(170,’28 Days Later’,5000000,”,’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.’,45.490374,’2002-10-31′,82719885,113,’Released’,’His fear began when he woke up alone. His terror began when he realised he wasn\’t.’,7.10,1777),(172,’Star Trek V: The Final Frontier’,30000000,”,’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.’,19.578249,’1989-06-09′,70200000,107,’Released’,’Adventure and imagination will meet at the final frontier.’,5.60,376),(173,’20,000 Leagues Under the Sea’,5000000,”,’A ship sent to investigate a wave of mysterious sinkings encounters the advanced submarine, the Nautilus, commanded by Captain Nemo.’,9.358197,’1954-12-23′,28200000,127,’Released’,’The mightiest motion picture of them all!’,6.80,157),(174,’Star Trek VI: The Undiscovered Country’,27000000,”,’On the eve of retirement, Kirk and McCoy are charged with assassinating the Klingon High Chancellor and imprisoned. The Enterprise crew must help them escape to thwart a conspiracy aimed at sabotaging the last best hope for peace.’,16.188572,’1991-12-05′,96900000,113,’Released’,’The battle for peace has begun.’,6.70,413),(176,’Saw’,1200000,”,’Obsessed with teaching his victims the value of life, a deranged, sadistic serial killer abducts the morally wayward. Once captured, they must face impossible choices in a horrific game of survival. The victims must fight to win their lives back, or die trying…’,63.655973,’2004-10-01′,103911669,103,’Released’,’Live or die. Make your choice.’,7.20,2184),(177,’The Fisher King’,24000000,”,’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.’,16.146572,’1991-09-09′,41895491,137,’Released’,’A Modern Day Tale About The Search For Love, Sanity, Ethel Merman And The Holy Grail.’,7.20,341),(179,’The Interpreter’,80000000,’http://www.theinterpretermovie.com/’,’After Silvia Broome, an interpreter at United Nations headquarters, overhears plans of an assassination, an American Secret Service agent is sent to investigate.’,18.699840,’2005-04-08′,162944923,128,’Released’,’The truth needs no translation.’,6.20,392),(180,’Minority Report’,102000000,”,’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.’,65.948959,’2002-06-20′,358372926,145,’Released’,’The system is perfect until it comes after you.’,7.10,2608),(182,’The Good German’,32000000,’http://www.the-good-german.de’,’An American journalist played by George Clooney arrives in Berlin just after the end of World War Two. He becomes involved in a murder mystery surrounding a dead GI who washes up at a lakeside mansion during the Potsdam negotiations between the Allied powers. Soon his investigation connects with his search for his married pre-war German lover played by Cate Blanchett.’,5.347936,’2006-12-08′,5914908,108,’Released’,’If war is Hell, then what comes after?’,5.90,86),(184,’Jackie Brown’,12000000,”,’Jackie Brown is a flight attendant who gets caught in the middle of smuggling cash into the country for her gunrunner boss. When the cops try to use Jackie to get to her boss, she hatches a planâ��with help from a bail bondsmanâ��to keep the money for herself. Based on Elmore Leonard\’s novel â��Rum Punchâ��.’,40.631671,’1997-12-24′,39673162,154,’Released’,’Six players on the trail of a half a million in Cash. There\’s only one question… Who\’s playing who?’,7.30,1514),(186,’Lucky Number Slevin’,27000000,”,’Slevin is mistakenly put in the middle of a personal war between the cityâ��s biggest criminal bosses. Under constant watch, Slevin must try not to get killed by an infamous assassin and come up with an idea of how to get out of his current dilemma. A film with many twists and turns.’,36.921445,’2006-02-24′,56308881,110,’Released’,’Wrong Time. Wrong Place. Wrong Number.’,7.40,1323),(187,’Sin City’,40000000,’http://www.miramax.com/movie/sin-city/’,’Welcome to Sin City. This town beckons to the tough, the corrupt, the brokenhearted. Some call it darkâ�¦ Hard-boiled. Then there are those who call it home â�� Crooked cops, sexy dames, desperate vigilantes. Some are seeking revenge, others lust after redemption, and then there are those hoping for a little of both. A universe of unlikely and reluctant heroes still trying to do the right thing in a city that refuses to care.’,66.003433,’2005-04-01′,158733820,124,’Released’,’Walk down the right back alley in Sin City and you can find anything…’,7.20,2691),(189,’Sin City: A Dame to Kill For’,65000000,’http://sincity-2.com/’,’Some of Sin City\’s most hard-boiled citizens cross paths with a few of its more reviled inhabitants.’,85.428395,’2014-08-20′,39407616,102,’Released’,’There is no justice without sin.’,6.30,1286),(193,’Star Trek: Generations’,38000000,”,’Captain Jean-Luc Picard and the crew of the Enterprise-D find themselves at odds with the renegade scientist Soran who is destroying entire star systems. Only one man can help Picard stop Soran\’s scheme…and he\’s been dead for seventy-eight years.’,14.779041,’1994-11-17′,120000000,118,’Released’,’Boldly go.’,6.40,452),(194,’Le fabuleux destin d\’Amélie Poulain’,10000000,’http://www.die-fabelhafte-welt-der-amelie.de’,’At a tiny Parisian café, the adorable yet painfully shy Amélie (Audrey Tautou) accidentally discovers a gift for helping others. Soon Amelie is spending her days as a matchmaker, guardian angel, and all-around do-gooder. But when she bumps into a handsome stranger, will she find the courage to become the star of her very own love story?’,73.720244,’2001-04-25′,173921954,122,’Released’,’One person can change your life forever.’,7.80,3310),(196,’Back to the Future Part III’,40000000,’http://www.backtothefuture.com/movies/backtothefuture3′,’The final installment of the Back to the Future trilogy finds Marty digging the trusty DeLorean out of a mineshaft and looking up Doc in the Wild West of 1885. But when their time machine breaks down, the travelers are stranded in a land of spurs. More problems arise when Doc falls for pretty schoolteacher Clara Clayton, and Marty tangles with Buford Tannen.’,45.769562,’1990-05-25′,244527583,118,’Released’,’They\’ve saved the best trip for last… But this time they may have gone too far.’,7.10,2900),(197,’Braveheart’,72000000,”,’Enraged at the slaughter of Murron, his new bride and childhood love, Scottish warrior William Wallace slays a platoon of the local English lord\’s soldiers. This leads the village to revolt and, eventually, the entire country to rise up against English rule.’,60.722162,’1995-05-24′,210000000,177,’Released’,’Every man dies. Not every man truly lives.’,7.70,3336),(199,’Star Trek: First Contact’,46000000,’http://www.startrek.com/startrek/view/series/MOV/008/index.html’,’The Borg, a relentless race of cyborgs, are on a direct course for Earth. Violating orders to stay away from the battle, Captain Picard and the crew of the newly-commissioned USS Enterprise E pursue the Borg back in time to prevent the invaders from changing Federation history and assimilating the galaxy.’,25.671300,’1996-11-21′,150000000,111,’Released’,’Resistance is futile.’,7.00,661),(200,’Star Trek: Insurrection’,70000000,”,’When an alien race and factions within Starfleet attempt to take over a planet that has \”regenerative\” properties, it falls upon Captain Picard and the crew of the Enterprise to defend the planet\’s people as well as the very ideals upon which the Federation itself was founded.’,19.711951,’1998-12-10′,118000000,103,’Released’,’The battle for paradise has begun.’,6.30,391),(201,’Star Trek: Nemesis’,60000000,”,’En route to the honeymoon of William Riker to Deanna Troi on her home planet of Betazed, Captain Jean-Luc Picard and the crew of the U.S.S. Enterprise receives word from Starfleet that a coup has resulted in the installation of a new Romulan political leader, Shinzon, who claims to seek peace with the human-backed United Federation of Planets. Once in enemy territory, the captain and his crew make a startling discovery: Shinzon is human, a slave from the Romulan sister planet of Remus, and has a secret, shocking relationship to Picard himself.’,21.605533,’2002-12-13′,67312826,117,’Released’,’A generation\’s final journey… begins.’,6.10,479),(203,’Mean Streets’,500000,”,’A small-time hood must choose from among love, friendship and the chance to rise within the mob.’,17.002096,’1973-10-02′,3000000,110,’Released’,’You don\’t make up for your sins in church. You do it in the streets…’,7.20,345),(205,’Hotel Rwanda’,17500000,’http://www.metrofilms.com/hotelrwanda/’,’Inspired by true events, this film takes place in Rwanda in the 1990s when more than a million Tutsis were killed in a genocide that went mostly unnoticed by the rest of the world. Hotel owner Paul Rusesabagina houses over a thousand refuges in his hotel in attempt to save their lives.’,28.605420,’2004-09-11′,38000000,121,’Released’,’When the world closed its eyes, he opened his arms.’,7.50,793),(207,’Dead Poets Society’,16400000,”,’At an elite, old-fashioned boarding school in New England, a passionate English teacher inspires his students to rebel against convention and seize the potential of every day, courting the disdain of the stern headmaster.’,55.458584,’1989-06-02′,235860116,129,’Released’,’He was their inspiration. He made their lives extraordinary.’,8.10,2705),(214,’Saw III’,10000000,”,’Jigsaw has disappeared. Along with his new apprentice Amanda, the puppet-master behind the cruel, intricate games that have terrified a community and baffled police has once again eluded capture and vanished. While city detective scramble to locate him, Doctor Lynn Denlon and Jeff Reinhart are unaware that they are about to become the latest pawns on his vicious chessboard.’,33.124871,’2006-10-27′,163876815,108,’Released’,’Suffering? You Haven\’t Seen Anything Yet…’,6.10,1071),(215,’Saw II’,4000000,”,’When a new murder victim is discovered with all the signs of Jigsaw\’s hand, Detective Eric Matthews begins a full investigation and apprehends Jigsaw with little effort. But for Jigsaw, getting caught is just another part of his plan. Eight more of his victims are already fighting for their lives and now it\’s time for Matthews to join the game…’,42.187986,’2005-10-28′,152925093,92,’Released’,’Oh Yes… There Will Be Blood.’,6.30,1251),(217,’Indiana Jones and the Kingdom of the Crystal Skull’,185000000,’http://www.indianajones.com/site/index.html’,’Set during the Cold War, the Soviets â�� led by sword-wielding Irina Spalko â�� are in search of a crystal skull which has supernatural powers related to a mystical Lost City of Gold. After being captured and then escaping from them, Indy is coerced to head to Peru at the behest of a young man whose friend â�� and Indy\’s colleague â�� Professor Oxley has been captured for his knowledge of the skull\’s whereabouts.’,75.674458,’2008-05-21′,786636033,122,’Released’,’The adventure continues . . .’,5.70,2495),(218,’The Terminator’,6400000,’http://www.mgm.com/#/our-titles/1970/The-Terminator/’,’In the post-apocalyptic future, reigning tyrannical supercomputers teleport a cyborg assassin known as the \”Terminator\” back to 1984 to kill 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?’,74.234793,’1984-10-26′,78371200,108,’Released’,’Your future is in his hands.’,7.30,4128),(219,’Volver’,12899867,’http://www.volver-lapelicula.com’,’Raimunda (Penélope Cruz) works and lives Madrid with her husband Paco and daughter Paula. Her sister Sole (Lola Dueñas) lives nearby and they both miss their mother Irene (Carmen Maura), who died several years ago in a house fire along with their father. A former neighbor from their hometown reports that she has seen the ghost of Irene and both daughters do not believe her. After a murder and a family tragedy, Irene\’s spirit materializes around her daughters to help comfort them.’,19.747809,’2006-03-16′,85582407,121,’Released’,’Return.’,7.30,406),(223,’Rebecca’,1288000,”,’A self-conscious bride is tormented by the memory of her husband\’s dead first wife.’,18.426825,’1940-04-12′,6000000,130,’Released’,’The shadow of this woman darkened their love.’,7.70,336),(226,’Boys Don\’t Cry’,2000000,’http://www.foxsearchlight.com/boysdontcry/’,’Female born, Teena Brandon adopts his male identity of Brandon Teena and attempts to find himself and love in Nebraska.’,15.557144,’1999-09-02′,11540607,118,’Released’,’A true story about finding the courage to be yourself.’,7.20,353),(227,’The Outsiders’,10000000,”,’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.’,13.455373,’1983-03-25′,33697647,91,’Released’,’They grew up on the outside of society. They weren\’t looking for a fight. They were looking to belong.’,6.90,291),(231,’Syriana’,50000000,’http://syrianamovie.warnerbros.com/’,’The Middle Eastern oil industry is the backdrop of this tense drama, which weaves together numerous story lines. Bennett Holiday is an American lawyer in charge of facilitating a dubious merger of oil companies, while Bryan Woodman, a Switzerland-based energy analyst, experiences both personal tragedy and opportunity during a visit with Arabian royalty. Meanwhile, veteran CIA agent Bob Barnes uncovers an assassination plot with unsettling origins.’,16.871194,’2005-11-23′,94000000,128,’Released’,’Everything is connected.’,6.30,451),(235,’Stand by Me’,8000000,”,’After the death of a friend, a writer recounts a boyhood journey to find the body of a missing boy.’,51.109279,’1986-08-22′,52287414,89,’Released’,’For some, it\’s the last real taste of innocence, and the first real taste of life. But for everyone, it\’s the time that memories are made of.’,7.80,1522),(238,’The Godfather’,6000000,’http://www.thegodfather.com/’,’Spanning the years 1945 to 1955, a chronicle of 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.’,143.659698,’1972-03-14′,245066411,175,’Released’,’An offer you can\’t refuse.’,8.40,5893),(239,’Some Like It Hot’,2883848,”,’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 band 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 and a very determined suitor.’,39.309820,’1959-03-18′,25000000,122,’Released’,’The movie too HOT for words!’,8.00,808),(240,’The Godfather: Part II’,13000000,”,’In the continuing saga of the Corleone crime family, a young Vito Corleone grows up in Sicily and in 1910s New York. In the 1950s, Michael Corleone attempts to expand the family business into Las Vegas, Hollywood and Cuba.’,105.792936,’1974-12-20′,47542841,200,’Released’,’I don\’t feel I have to wipe everybody out, Tom. Just my enemies.’,8.30,3338),(242,’The Godfather: Part III’,54000000,’http://www.imdb.com/title/tt0099674/’,’In the midst of trying to legitimize his business dealings in 1979 New York and Italy, aging mafia don, Michael Corleone seeks forgiveness for his sins while taking a young protege under his wing.’,59.194915,’1990-12-24′,136766062,162,’Released’,’All the power on earth can\’t change destiny.’,7.10,1546),(243,’High Fidelity’,30000000,”,’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.’,23.982956,’2000-03-17′,47126295,113,’Released’,’A comedy about fear of commitment, hating your job, falling in love and other pop favorites.’,7.00,628),(245,’About a Boy’,27000000,’http://movies.uip.de/aboutaboy/’,’Will Freeman is a hip Londoner who one day realizes that his friends are all involved with the responsibilities of married life and that leaves him alone in the cold. Passing himself off as a single father, he starts to meet a string of single mums, confident in his ability to leave them behind when they start to ask for a commitment. But Will\’s hope of a continued bachelorhood is interrupted when he meets 12-year old Marcus, in many ways his complete opposite.’,28.227984,’2002-04-26′,129000000,101,’Released’,’One ordinary couple. One little white lie.’,6.60,607),(248,’Pocketful of Miracles’,2900000,”,’Damon Runyon\’s fairytale, sweet and funny, is told by director Frank Capra. Boozy, brassy Apple Annie, a beggar with a basket of apples, is as much as part of downtown New York as old Broadway itself. Bootlegger Dave the Dude is a sucker for her apples — he thinks they bring him luck. But Dave and girlfriend Queenie Martin need a lot more than luck when it turns out that Annie is in a jam and only they can help: Annie\’s daughter Louise, who has lived all her life in a Spanish convent, is coming to America with a Count and his son. The count\’s son wants to marry Louise, who thinks her mother is part of New York society. It\’s up to Dave and Queenie and their Runyonesque cronies to turn Annie into a lady and convince the Count and his son that they are hobnobbing with New York\’s elite.’,3.370225,’1961-12-18′,5000000,136,’Released’,’You have to see it to believe it!’,7.30,25),(251,’Ghost’,22000000,”,’Sam Wheat is a banker, Molly Jensen is an artist, and the two are madly in love. However, when Sam is murdered by his friend and corrupt business partner Carl Bruner over a shady business deal, he is left to roam the earth as a powerless spirit. When he learns of Carl\’s betrayal, Sam must seek the help of psychic Oda Mae Brown to set things right and protect Molly from Carl and his goons.’,41.967005,’1990-07-12′,505000000,127,’Released’,’A love that will last forever.’,6.90,1339),(252,’Willy Wonka & the Chocolate Factory’,3000000,”,’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?’,23.981601,’1971-06-29′,4000000,100,’Released’,’It\’s Scrumdiddlyumptious!’,7.40,798),(253,’Live and Let Die’,7000000,’http://www.mgm.com/view/movie/1130/Live-and-Let-Die/’,’James Bond must investigate a mysterious murder case of a British agent in New Orleans. Soon he finds himself up against a gangster boss named Mr. Big.’,30.465138,’1973-07-05′,161777836,121,’Released’,’Roger Moore is James Bond.’,6.40,533),(254,’King Kong’,207000000,”,’In 1933 New York, an overly ambitious movie producer coerces his cast and hired ship crew to travel to mysterious Skull Island, where they encounter Kong, a giant ape who is immediately smitten with the leading lady.’,61.226010,’2005-12-14′,550000000,187,’Released’,’The eighth wonder of the world.’,6.60,2337),(257,’Oliver Twist’,50000000,’http://www.olivertwistthemovie.co.uk/’,’Oliver Twist the modern filmed version of Charles Dickens bestseller, a Roman Polanski adaptation. The classic Dickens tale, where an orphan meets a pickpocket on the streets of London. From there, he joins a household of boys who are trained to steal for their master.’,20.415572,’2005-09-23′,42093706,130,’Released’,”,6.70,274),(261,’Cat on a Hot Tin Roof’,3000000,”,’Brick, an alcoholic ex-football player, drinks his days away and resists the affections of his wife, Maggie. His reunion with his father, Big Daddy, who is dying of cancer, jogs a host of memories and revelations for both father and son.’,16.553594,’1958-02-17′,17570324,108,’Released’,’Just one pillow on her bed … and just one desire in her heart!’,7.60,165),(268,’Batman’,35000000,”,’The Dark Knight of Gotham City begins his war on crime with his first major enemy being the clownishly homicidal Joker, who has seized control of Gotham\’s underworld.’,44.104469,’1989-06-23′,411348924,126,’Released’,’Have you ever danced with the devil in the pale moonlight?’,7.00,2096),(272,’Batman Begins’,150000000,’http://www2.warnerbros.com/batmanbegins/index.html’,’Driven by tragedy, billionaire Bruce Wayne dedicates his life to uncovering and defeating the corruption that plagues his home, Gotham City. Unable to work within the system, he instead creates a new identity, a symbol of fear for the criminal underworld – The Batman.’,115.040024,’2005-06-10′,374218673,140,’Released’,’Evil fears the knight.’,7.50,7359),(274,’The Silence of the Lambs’,19000000,”,’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. but her Faustian relationship with Lecter soon leads to his escape, and now two deranged killers are on the loose.’,18.174804,’1991-02-01′,272742922,119,’Released’,’To enter the mind of a killer she must challenge the mind of a madman.’,8.10,4443),(277,’Underworld’,22000000,’http://www.sonypictures.com/movies/underworld/site/main.html’,’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.’,81.829237,’2003-09-19′,95708457,121,’Released’,’Underworld’,6.60,2512),(278,’The Shawshank Redemption’,25000000,”,’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.’,136.747729,’1994-09-23′,28341469,142,’Released’,’Fear can hold you prisoner. Hope can set you free.’,8.50,8205),(279,’Amadeus’,18000000,”,’The incredible story of genius musician Wolfgang Amadeus Mozart, told in flashback by his peer and secret rival Antonio Salieri â�� now confined to an insane asylum.’,31.826750,’1984-10-26′,51973029,160,’Released’,’…Everything you\’ve heard is true’,7.80,1076),(280,’Terminator 2: Judgment Day’,100000000,”,’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.’,101.741550,’1991-07-01′,520000000,137,’Released’,’It\’s nothing personal.’,7.70,4185),(284,’The Apartment’,3000000,”,’Bud Baxter is a minor clerk in a huge New York insurance company, until he discovers a quick way to climb the corporate ladder. He lends out his apartment to the executives as a place to take their mistresses. Although he often has to deal with the aftermath of their visits, one night he\’s left with a major problem to solve.’,22.889294,’1960-06-15′,25000000,125,’Released’,’Movie-wise, there has never been anything like it – laugh-wise, love-wise, or otherwise-wise!’,8.10,483),(285,’Pirates of the Caribbean: At World\’s End’,300000000,’http://disney.go.com/disneypictures/pirates/’,’Captain Barbossa, long believed to be dead, has come back to life and is headed to the edge of the Earth with Will Turner and Elizabeth Swann. But nothing is quite as it seems.’,139.082615,’2007-05-19′,961000000,169,’Released’,’At the end of the world, the adventure begins.’,6.90,4500),(288,’High Noon’,730000,”,’High Noon is about a recently freed leader of a gang of bandits in the desert who is looking to get revenge on the Sheriff who put him in jail. A legendary western film from the Austrian director Fred Zinnemann.’,18.644023,’1952-03-27′,8000000,85,’Released’,’The story of a man who was too proud to run.’,7.60,334),(289,’Casablanca’,878000,”,’In Casablanca, Morocco in December 1941, a cynical American expatriate meets a former lover, with unforeseen complications.’,43.729123,’1942-11-26′,10462500,102,’Released’,’They had a date with fate in Casablanca!’,7.90,1422),(291,’Riding Giants’,2600000,’http://www.sonyclassics.com/ridinggiants/’,’Riding Giants is story about big wave surfers who have become heroes and legends in their sport. Directed by the skateboard guru Stacy Peralta.’,0.895946,’2004-07-09′,3166000,105,’Released’,”,7.60,23),(292,’Dave Chappelle\’s Block Party’,3000000,’http://www.chappellesblockparty.com/home.html’,’The American comedian/actor delivers a story about the alternative Hip Hop scene. A small town Ohio manâ��s moves to Brooklyn, New York, to throw an unprecedented block party. Filmed with inspiration from the 1973 documentary Wattstax.’,1.697846,’2005-09-12′,11718595,100,’Released’,”,6.40,28),(296,’Terminator 3: Rise of the Machines’,200000000,”,’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 â�¦ just like he promised.’,69.405188,’2003-07-02′,435000000,109,’Released’,’The Machines Will Rise.’,5.90,2143),(297,’Meet Joe Black’,90000000,’http://www.meetjoeblack.com/’,’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.’,36.069611,’1998-11-12′,142940100,178,’Released’,’Sooner or later everyone does.’,6.90,1147),(298,’Ocean\’s Thirteen’,85000000,’http://oceans13.warnerbros.com/’,’Danny Ocean\’s team of criminals are back and composing a plan more personal than ever. When ruthless casino owner Willy Bank doublecrosses Reuben Tishkoff, causing a heart attack, Danny Ocean vows that he and his team will do anything to bring down Willy Bank along with everything he\’s got. Even if it means asking for help from an enemy.’,42.069993,’2007-06-07′,311312624,122,’Released’,’What are the odds of getting even? 13 to one.’,6.50,1999),(302,’Swimming Pool’,7800000,’http://www.marsdistribution.com/xml/flash.html?cfilm=46022′,’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.’,11.000654,’2003-05-18′,22441323,102,’Released’,’On the surface, all is calm’,6.40,153),(306,’Beverly Hills Cop III’,50000000,”,’Back in sunny southern California and on the trail of two murderers, Axel Foley again teams up with LA 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.’,20.333953,’1994-05-24′,119208989,104,’Released’,”,5.50,434),(309,’Festen’,1300000,’http://nimbusfilm.dk/film/festen/?lang=en’,’A grandiose party to celebrate a sixtieth birthday unleashes a family drama with all the lies that conceal horrendous secrets. The eldest son, Christian, stages a showdown with the popular pater familias; his provocative, moving after-dinner speech dislodges all the masks, which finally fall completely as the father-son conflict intensifies and the bewildered guests look on.’,10.240917,’1998-05-20′,0,105,’Released’,”,7.70,207),(310,’Bruce Almighty’,80000000,’http://www.brucealmighty.com/’,’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.’,109.684788,’2003-05-23′,484572835,101,’Released’,’In Bruce we trust’,6.40,3012),(311,’Once Upon a Time in America’,30000000,”,’A former Prohibition-era Jewish gangster returns to the Lower East Side of Manhattan over thirty years later, where he once again must confront the ghosts and regrets of his old life.’,49.336397,’1984-02-16′,0,229,’Released’,’Crime, passion and lust for power – Sergio Leone\’s explosive saga of gangland America.’,8.20,1069),(314,’Catwoman’,100000000,”,’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.’,32.271938,’2004-07-22′,82102379,104,’Released’,’CATch her in IMAX’,4.20,808),(319,’True Romance’,12500000,”,’Clarence marries hooker Alabama, steals cocaine from her pimp, and tries to sell it in Hollywood, while the owners of the coke try to reclaim it.’,35.268557,’1993-09-09′,12281551,120,’Released’,’Stealing, Cheating, Killing. Who said romance was dead?’,7.50,749),(320,’Insomnia’,46000000,”,’Two Los Angeles homicide detectives are dispatched to a northern town where the sun doesn\’t set to investigate the methodical murder of a local teen.’,41.322708,’2002-05-24′,113714830,118,’Released’,’A tough cop. A brilliant killer. An unspeakable crime.’,6.80,1148),(321,’Mambo Italiano’,4361898,’http://mamboitaliano.ca/’,’A sweet comic film about an Italian man who comes out of the closet and the affect it has on his life and his crazy family. A family movie about the stereotypes of homosexuals and Italians â�� called by critics \”the gay\” My Big Fat Greek Wedding.’,2.080741,’2003-06-06′,3031801,92,’Released’,’Things change. Family doesn\’t.’,5.60,28),(322,’Mystic River’,25000000,”,’A story about friendship and loyalty, guilt and vengeance, and the fateful affect the past has on the present.’,31.242999,’2003-10-07′,156822020,138,’Released’,’We bury our sins, we wash them clean.’,7.60,1422),(326,’Snakes on a Plane’,33000000,”,’America is on the search for the murderer Eddie Kim. Sean Jones must fly to L.A. to testify in a hearing against Kim. Accompanied by FBI agent Neville Flynn, the flight receives some unexpected visitors.’,19.642328,’2006-08-06′,62022014,105,’Released’,’At 30,000 feet, snakes aren\’t the deadliest thing on this plane.’,5.10,497),(327,’Brother’,12000000,’http://www.office-kitano.co.jp/brother/index.html’,’A Japanese Yakuza gangsterâ��s deadly existence in his homeland gets him exiled to Los Angeles, California, where he is taken in by his little brother and his brotherâ��s gang. This is the first English film by Takeshi Kitano.’,5.327714,’2000-09-09′,15250000,114,’Released’,’Are You Japanese?’,6.80,107),(329,’Jurassic Park’,63000000,’http://www.jurassicpark.com/’,’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, the park is anything but amusing as the security systems go off-line and the dinosaurs escape.’,40.413191,’1993-06-11′,920100000,127,’Released’,’An adventure 65 million years in the making.’,7.60,4856),(330,’The Lost World: Jurassic Park’,73000000,”,’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.’,2.502487,’1997-05-23′,229074524,129,’Released’,’Something has survived.’,6.20,2487),(331,’Jurassic Park III’,93000000,”,’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.’,1.859364,’2001-07-18′,368780809,92,’Released’,’This time, it\’s not just a walk in the park!’,5.70,2077),(332,’Inspector Gadget’,75000000,”,’John Brown is a bumbling but well-intentioned security guard who is badly injured in an explosion planned by an evil mastermind. He is taken to a laboratory, where Brenda, a leading robotics surgeon, replaces his damaged limbs with state-of-the-art gadgets and tools. Named \”Inspector Gadget\” by the press, John — along with his niece, Penny, and her trusty dog, Brain — uses his new powers to discover who was behind the explosion.’,17.561955,’1999-07-23′,0,78,’Released’,’The greatest hero ever assembled.’,4.30,318),(334,’Magnolia’,37000000,’http://www.magnoliamovie.com/’,’An epic mosaic of many interrelated characters in search of happiness, forgiveness, and meaning in the San Fernando Valley.’,30.993736,’1999-12-08′,48451803,188,’Released’,’Things fall down. People look up. And when it rains, it pours.’,7.50,825),(335,’C\’era una volta il West’,5000000,”,’This classic western masterpiece is an epic film about a widow whose 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 a desperado to protect the woman and her land.’,49.333137,’1968-12-21′,5321508,175,’Released’,’There were three men in her life. One to take her… one to love her… and one to kill her.’,8.10,1128),(338,’Good bye, Lenin!’,4800000,’http://www.good-bye-lenin.de/index2.php’,’An affectionate and refreshing East/West-Germany comedy about a boy whoâ��s 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.’,11.086001,’2003-02-09′,79384880,121,’Released’,’The German Democratic Republic lives on — in 79 square meters!’,7.40,586),(342,’Sommersturm’,2700000,’http://www.sommersturm.de/main.html’,’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…’,3.120747,’2004-09-02′,0,98,’Released’,”,6.70,59),(345,’Eyes Wide Shut’,65000000,’http://eyeswideshut.warnerbros.com/’,’After Dr. Bill Hartford\’s wife, Alice, admits to having sexual fantasies about a man she met, Bill becomes obsessed with having a sexual encounter. He discovers an underground sexual group and attends one of their meetings — and quickly discovers that he is in over his head.’,27.870312,’1999-07-14′,162091208,159,’Released’,’Cruise. Kidman. Kubrick.’,7.10,1234),(346,’ä¸�人ã�®ä¾�’,2000000,”,’A samurai answers a village\’s request for protection after he falls on hard times. The town needs protection from bandits, so the samurai gathers six others to help him teach the people how to defend themselves, and the villagers provide the soldiers with food. A giant battle occurs when 40 bandits attack the village.’,39.756748,’1954-04-26′,271841,207,’Released’,’The Mighty Warriors Who Became the Seven National Heroes of a Small Town’,8.20,878),(348,’Alien’,11000000,’https://www.facebook.com/alienanthology/’,’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.’,94.184658,’1979-05-25′,104931801,117,’Released’,’In space no one can hear you scream.’,7.90,4470),(350,’The Devil Wears Prada’,35000000,’http://www.devilwearspradamovie.com/’,’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â��t let her succeed if she doesnâ��t fit into the high class elegant look of their magazine when all she really wants to be a good journalist.’,83.893257,’2006-06-30′,326551094,109,’Released’,’Meet Andy Sachs. A million girls would kill to have her job. She\’s not one of them.’,7.00,3088),(364,’Batman Returns’,80000000,”,’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, all the time deciding just what must be done with the Catwoman.’,59.113174,’1992-06-19′,280000000,126,’Released’,’The Bat, the Cat, the Penguin.’,6.60,1673),(377,’A Nightmare on Elm Street’,1800000,”,’Teenagers in a small town are dropping like flies, apparently in the grip of mass hysteria causing their suicides. A cop\’s daughter, Nancy Thompson (Heather Langenkamp) traces the cause to child molester Fred Krueger (Robert Englund), who was burned alive by angry parents many years before. Krueger has now come back in the dreams of his killers\’ children, claiming their lives as his revenge. Nancy and her boyfriend, Glen (Johnny Depp), must devise a plan to lure the monster out of the realm of nightmares and into the real world…’,38.204158,’1984-11-14′,25504513,91,’Released’,’If Nancy Doesn\’t Wake Up Screaming, She Won\’t Wake Up At All!’,7.20,1180),(380,’Rain Man’,25000000,”,’Selfish yuppie Charlie Babbitt\’s father left a fortune to his savant brother Raymond and a pittance to Charlie; they travel cross-country.’,49.510658,’1988-12-11′,412800000,133,’Released’,’A journey through understanding and fellowship.’,7.60,1709),(387,’Das Boot’,14000000,’http://www.dasboot.com’,’A German submarine hunts allied ships during the Second World War, but it soon becomes the hunted. The crew tries to survive below the surface, while stretching both the boat and themselves to their limits.’,26.967494,’1981-09-16′,85000000,149,’Released’,’When the hunters become the hunted’,7.90,613),(388,’Inside Man’,45000000,’http://theinsideman.net’,’Bank robber Dalton Russell enters a Manhattan bank, locks the doors and takes hostages, working methodically and without haste. Detective Frazier is assigned to negotiate, but his mind is occupied with the corruption charges he is facing. With an army of police surrounding the bank, the thief, the cop and a high-profile \’fixer\’ enter high-stakes negotiations.’,45.220386,’2006-03-23′,184376254,129,’Released’,’It looked like the perfect bank robbery. But you can\’t judge a crime by its cover.’,7.30,1630),(389,’12 Angry Men’,350000,”,’The defense and the prosecution have rested and the jury is filing into the jury room to decide if a young Spanish-American is guilty or innocent of murdering his father. What begins as an open and shut case soon becomes a mini-drama of each of the jurors\’ prejudices and preconceptions about the trial, the accused, and each other.’,59.259204,’1957-03-25′,1000000,96,’Released’,’Life is in their hands. Death is on their minds.’,8.20,2078),(391,’Per un pugno di dollari’,200000,”,’The Man With No Name enters the Mexican village of San Miguel in the midst of a power struggle among the three Rojo brothers and sheriff John Baxter. When a regiment of Mexican soldiers bearing gold intended to pay for new weapons is waylaid by the Rojo brothers, the stranger inserts himself into the middle of the long-simmering battle, selling false information to both sides for his own benefit.’,38.771062,’1964-09-12′,14500000,99,’Released’,’In his own way he is perhaps, the most dangerous man who ever lived!’,7.60,883),(392,’Chocolat’,25000000,”,’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.’,28.727731,’2000-12-14′,152500343,121,’Released’,’…and the world is still indulging!’,6.80,951),(393,’Kill Bill: Vol. 2′,30000000,”,’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. She 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 â�¦ but kill Bill.’,50.622607,’2004-04-16′,152159461,136,’Released’,’The bride is back for the final cut.’,7.60,3948),(395,’AVP: Alien vs. Predator’,70000000,’http://www.avp-movie.com/’,’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.’,42.957216,’2004-08-12′,171183863,101,’Released’,’Whoever wins… We lose’,5.50,1217),(398,’Capote’,7000000,’http://www.sonyclassics.com/capote/’,’A biopic of the writer, Truman Capote and his assignment for The New Yorker to write the non-fiction book, \’In Cold Blood\’.’,17.434862,’2005-09-30′,49084830,114,’Released’,’In Cold Blood’,6.80,384),(400,’Things to Do in Denver When You\’re Dead’,8000000,”,’A mafia film in Tarantino style with a star-studded cast. Jimmyâ��s â��The Saintâ�� gangster career has finally ended. Yet now he finds him self doing favors for a wise godfather known as â��The Man with the Plan.â��’,6.932221,’1995-12-01′,529766,116,’Released’,’Protect. Love. Honor. Avenge.’,6.70,85),(401,’Garden State’,2500000,’http://www2.foxsearchlight.com/gardenstate/’,’Andrew returns to his hometown for the funeral of his mother, a journey that reconnects him with past friends. The trip coincides with his decision to stop taking his powerful antidepressants. A chance meeting with Sam – a girl also suffering from various maladies – opens up the possibility of rekindling emotional attachments, confronting his psychologist father, and perhaps beginning a new life.’,30.583959,’2004-07-28′,26781723,102,’Released’,”,7.10,618),(403,’Driving Miss Daisy’,7500000,”,’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.’,19.585801,’1989-12-13′,145793296,99,’Released’,’The funny, touching and totally irresistible story of a working relationship that became a 25-year friendship.’,7.00,350),(404,’The Straight Story’,10000000,”,’\”The Straight Story\” chronicles a trip made by 73-year-old Alvin Straight from Laurens, Iowa, to Mt. Zion, Wisconsin, in 1994 while riding a lawn mower. The man undertook his strange journey to mend his relationship with his ill, estranged, 75-year-old brother Lyle.’,15.280261,’1999-10-15′,0,112,’Released’,”,7.70,306),(408,’Snow White and the Seven Dwarfs’,1488423,’http://movies.disney.com/snow-white-and-the-seven-dwarfs’,’A beautiful girl, Snow White, takes refuge in the forest in the house of seven dwarfs to hide from her stepmother, the wicked Queen. The Queen is jealous because she wants to be known as \”the fairest in the land,\” and Snow White\’s beauty surpasses her own.’,80.171283,’1937-12-20′,184925486,83,’Released’,’The Happiest, Dopiest, Grumpiest, Sneeziest movie of the year.’,6.90,1914),(409,’The English Patient’,27000000,”,’Beginning in the 1930s, \”The English Patient\” tells the story of Count Almásy who is a Hungarian map maker employed by the Royal Geographical Society to chart the vast expanses of the Sahara Desert along with several other prominent explorers. As World War II unfolds, Almásy enters into a world of love, betrayal, and politics that is later revealed in a series of flashbacks while Almásy is on his death bed after being horribly burned in a plane crash.’,29.381878,’1996-11-14′,231976425,162,’Released’,’In love, there are no boundaries.’,7.00,542),(411,’The Chronicles of Narnia: The Lion, the Witch and the Wardrobe’,180000000,”,’Siblings Lucy, Edmund, Susan and Peter 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.’,67.391328,’2005-12-07′,748806957,143,’Released’,’Evil Has Reigned For 100 Years…’,6.70,2629),(414,’Batman Forever’,100000000,”,’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.’,48.205606,’1995-05-31′,336529144,121,’Released’,’Courage now, truth always…’,5.20,1498),(415,’Batman & Robin’,125000000,”,’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.’,50.073575,’1997-06-20′,238207122,125,’Released’,’Strength. Courage. Honor. And loyalty.’,4.20,1418),(421,’The Life Aquatic with Steve Zissou’,50000000,”,’Wes Andersonâ��s incisive quirky comedy build up stars complex characters like in â��The Royal Tenenbaumsâ�� 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.’,25.237969,’2004-12-10′,34808403,119,’Released’,’The deeper you go, the weirder life gets.’,7.10,775),(423,’The Pianist’,35000000,’http://www.thepianistmovie.com/’,’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.’,50.587541,’2002-09-24′,120072577,150,’Released’,’Music was his passion. Survival was his masterpiece.’,8.00,1864),(424,’Schindler\’s List’,22000000,’http://www.schindlerslist.com/’,’The true story of how businessman Oskar Schindler saved over a thousand Jewish lives from the Nazis while they worked as slaves in his factory during World War II.’,104.469351,’1993-11-29′,321365567,195,’Released’,’Whoever saves one life, saves the world entire.’,8.30,4329),(425,’Ice Age’,59000000,’http://www.iceagemovies.com/films/ice-age’,’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.’,99.561972,’2002-03-10′,383257136,81,’Released’,’They came. They thawed. They conquered.’,7.10,3857),(429,’Il buono, il brutto, il cattivo’,1200000,’http://www.mgm.com/#/our-titles/766/The-Good,-the-Bad-and-the-Ugly’,’While the Civil War rages between the Union and the Confederacy, three men â�� a quiet loner, a ruthless hit man and a Mexican bandit â�� comb the American Southwest in search of a strongbox containing $200,000 in stolen gold.’,88.377076,’1966-12-23′,6000000,161,’Released’,’For three men the Civil War wasn\’t hell. It was practice.’,8.10,2311),(431,’Cube’,250000,”,’Seven strangers are taken out of their daily lives and placed mysteriously in a deadly cube where they all agree they must find their way out.’,44.656151,’1997-09-09′,501818,90,’Released’,’Don\’t look for a reason… Look for a way out.’,6.90,1069),(433,’Mary Poppins’,6000000,”,’The movie combines a diverting story, songs, color and sequences of live action blended with the movements of animated figures. Mary Poppins is a kind of Super-nanny who flies in with her umbrella in response to the request of the Banks children and proceeds to put things right with the aid of her rather extraordinary magical powers before flying off again.’,59.961523,’1964-08-27′,102272727,139,’Released’,’It\’s supercalifragilisticexpialidocious!’,7.40,1183),(435,’The Day After Tomorrow’,125000000,’http://www.thedayaftertomorrow.com/’,’After years of increases in the greenhouse effect, havoc is wreaked globally in the form of catastrophic hurricanes, tornadoes, tidal waves, floods and the beginning of a new Ice Age. Paleoclimatologist, Jack Hall tries to warn the world while also shepherding to safety his son, trapped in New York after the city is overwhelmed by the start of the new big freeze.’,41.380094,’2004-05-26′,544272402,124,’Released’,’Where will you be?’,6.20,2392),(436,’MarÃa, llena eres de gracia’,0,’http://www.mariallenaeresdegracia.com/index.html’,’A pregnant Colombian teenager becomes a drug mule to make some desperately needed money for her family.’,3.027892,’2004-01-18′,0,101,’Released’,’Based on 10,000 true stories.’,6.90,101),(440,’Aliens vs Predator: Requiem’,40000000,’http://www.avp-r.com/’,’A sequel to 2004\’s Alien vs. Predator, the iconic creatures from two of the scariest film franchises in movie history wage their most brutal battle ever – in our own backyard. The small town of Gunnison, Colorado becomes a war zone between two of the deadliest extra-terrestrial life forms – the Alien and the Predator. When a Predator scout ship crash-lands in the hills outside the town, Alien Facehuggers and a hybrid Alien/Predator are released and begin to terrorize the town.’,39.381913,’2007-12-25′,41797066,94,’Released’,’The Last Place On Earth We Want To Be Is In The Middle’,4.90,740),(451,’Leaving Las Vegas’,3600000,’http://www.mgm.com/title_title.do?title_star=LEAVINGL’,’Ben Sanderson, an alcoholic Hollywood screenwriter who lost everything because of his drinking, arrives in Las Vegas to drink himself to death. There, he meets and forms an uneasy friendship and non-interference pact with prostitute Sera.’,22.030517,’1995-10-27′,49800000,112,’Released’,’I Love You… The Way You Are.’,7.10,360),(453,’A Beautiful Mind’,60000000,’http://www.abeautifulmind.com/’,’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 discovery that turns his entire world upside down. Now it is only with Alicia\’s help that he will be able to recover his mental strength and regain his status as the great mathematician we know him as today..’,59.248437,’2001-12-11′,313542341,135,’Released’,’I need to believe that something extra ordinary is possible…’,7.70,3009),(454,’Romeo + Juliet’,14500000,’http://www.romeoandjuliet.com/’,’In director Baz Luhrmann\’s contemporary take on William Shakespeare\’s classic tragedy, the Montagues and Capulets have moved their ongoing feud to the sweltering suburb of Verona Beach, where Romeo and Juliet fall in love and secretly wed. Though the film is visually modern, the bard\’s dialogue remains.’,41.493042,’1996-10-31′,147298761,120,’Released’,’My only love sprung from my only hate.’,6.70,1374),(455,’Bend It Like Beckham’,3500159,’http://www2.foxsearchlight.com/benditlikebeckham/’,’Jess Bhamra, the daughter of a strict Indian couple in London, is not permitted to play organized soccer, even though she is 18. When Jess is playing for fun one day, her impressive skills are seen by Jules Paxton, who then convinces Jess to play for her semi-pro team. Jess uses elaborate excuses to hide her matches from her family while also dealing with her romantic feelings for her coach, Joe.’,22.054546,’2002-04-11′,76578641,112,’Released’,’Sometimes, to follow your dreams… you\’ve got to bend the rules!’,6.20,578),(462,’Erin Brockovich’,52000000,’http://www.brockovich.com/movie.html’,’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.’,30.347332,’2000-03-17′,256271286,131,’Released’,’She brought a small town to its feet and a huge corporation to its knees.’,7.10,716),(464,’SÃ¥ som i himmelen’,0,’http://www.wie-im-himmel-derfilm.de/start.html’,’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.’,4.321249,’2004-09-03′,0,132,’Released’,”,6.90,42),(468,’My Own Private Idaho’,2500000,”,’In this loose adaptation of Shakespeare\’s \”Henry IV,\” Mike Waters (River Phoenix) is a gay hustler afflicted with narcolepsy. Scott Favor (Keanu Reeves) is the rebellious son of a mayor. Together, the two travel from Portland, Oregon to Idaho and finally to the coast of Italy in a quest to find Mike\’s estranged mother. Along the way they turn tricks for money and drugs, eventually attracting the attention of a wealthy benefactor and sexual deviant.’,10.363642,’1991-10-17′,0,104,’Released’,’It\’s not where you go, it\’s how you get there.’,7.10,212),(470,’21 Grams’,20000000,’http://www.21-grams.com/index.php’,’This is the story of three gentle persons: Paul Rivers an ailing mathematician lovelessly married to an English émigré, Christina Peck, an upper-middle-class suburban housewife, happily married and mother of two little girls, and Jack Jordan, an ex-convict who has found in his Christian faith the strength to raise a family. They will be brought together by a terrible accident that will change their lives. By the final frame, none of them will be the same as they will learn harsh truths about love, faith, courage, desire and guilt, and how chance can change our worlds irretrievably, forever.’,32.243357,’2003-09-06′,60427839,124,’Released’,’How much does life weigh?’,7.20,918),(473,’Pi’,60000,’http://www.pithemovie.com/’,’The debut film from Darren Aronofsky in which a mathematical genius Maximilian Cohen discovers a link in the connection between numbers and reality and thus believes he can predict the future.’,27.788067,’1998-07-10′,3221152,84,’Released’,’There will be no order, only chaos’,7.10,586),(479,’Shaft’,46000000,”,’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.’,19.643365,’2000-06-15′,107196498,99,’Released’,’Still the man, any questions?’,5.50,308),(480,’Monsoon Wedding’,0,”,’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 she used an Indian-American production to illustrate these themes modern day Indians are very familiar with.’,8.109958,’2001-08-30′,0,114,’Released’,’A stressed father, a bride-to-be with a secret, a smitten event planner, and relatives from around the world create much ado about the preparations for an arranged marriage in India.’,6.80,57),(489,’Good Will Hunting’,10000000,’http://www.miramax.com/movie/good-will-hunting’,’Will Hunting has a genius-level IQ but chooses to work as a janitor at MIT. When he solves a difficult graduate-level math problem, his talents are discovered by Professor Gerald Lambeau, who decides to help the misguided youth reach his potential. When Will is arrested for attacking a police officer, Professor Lambeau makes a deal to get leniency for him if he will get treatment from therapist Sean Maguire.’,43.734886,’1997-12-05′,225933435,126,’Released’,’Some people can never believe in themselves, until someone believes in them.’,7.90,2811),(492,’Being John Malkovich’,13000000,”,’Spike Jonzeâ��s 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â��s mad and controlling world of overtaking another human body.’,27.546914,’1999-09-30′,22863596,112,’Released’,’Ever wanted to be someone else? Now you can.’,7.30,1101),(496,’Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan’,18000000,’http://www.boratmovie.com/’,’Kazakh journalist Borat Sagdiyev travels to America to make a documentary. As he zigzags across the nation, Borat meets real people in real situations with hysterical consequences. His backwards behavior generates strong reactions around him exposing prejudices and hypocrisies in American culture.’,29.487784,’2006-11-01′,261572744,82,’Released’,’Come to Kazakhstan, it\’s nice!’,6.50,1579),(497,’The Green Mile’,60000000,’http://thegreenmile.warnerbros.com/’,’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.’,103.698022,’1999-12-10′,284600000,189,’Released’,’Miracles do happen.’,8.20,4048),(500,’Reservoir Dogs’,1200000,”,’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.’,66.925866,’1992-09-02′,14661007,99,’Released’,’Every dog has his day.’,8.00,3697),(503,’Poseidon’,160000000,’http://www2.warnerbros.com/poseidon/’,’A packed cruise ship traveling the Atlantic is hit and overturned by a massive wave, compelling the passengers to begin a dramatic fight for their lives.’,21.133748,’2006-05-12′,181674817,99,’Released’,’Mayday’,5.50,583),(504,’Monster’,8000000,”,’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.’,19.683187,’2003-11-16′,60378584,110,’Released’,’The first female serial killer of America’,7.00,485),(507,’Killing Zoe’,1500000,”,’Zed (Eric Stoltz) is an American vault-cracker who travels to Paris to meet up with his old friend Eric (Jean-Hugues Anglade). Eric and his gang have planned to raid the only bank in the city which is open on Bastille day. After offering his services, Zed soon finds himself trapped in a situation beyond his control when heroin abuse, poor planning and a call-girl named Zoe all conspire to turn the robbery into a very bloody siege.’,5.817519,’1993-10-01′,418961,96,’Released’,”,6.10,111),(508,’Love Actually’,40000000,’http://www.loveactually.com/’,’Follows seemingly unrelated people as their lives begin to intertwine while they fall in â�� and out â�� of love. Affections languish and develop as Christmas draws near.’,37.073127,’2003-09-07′,244931766,135,’Released’,’The ultimate romantic comedy.’,7.00,1869),(509,’Notting Hill’,42000000,’http://www.notting-hill.com/’,’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.’,28.969151,’1999-05-13′,363889678,124,’Released’,’Can the most famous film star in the world fall for the man on the street?’,7.00,1262),(510,’One Flew Over the Cuckoo\’s Nest’,3000000,”,’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.’,127.525581,’1975-11-18′,108981275,133,’Released’,’If he\’s crazy, what does that make you?’,8.20,2919),(512,’Scoop’,4000000,’http://www.scoopmovie.net/’,’An American journalism student in London scoops a big story, and begins an affair with an aristocrat as the incident unfurls.’,17.229537,’2006-07-27′,31584901,96,’Released’,’The perfect man. The perfect story. The perfect murder.’,6.40,420),(522,’Ed Wood’,18000000,”,’The mostly true story of the legendary \”worst director of all time\”, who, with the help of his strange friends, filmed countless B-movies without ever becoming famous or successful.’,24.548633,’1994-09-27′,5887457,127,’Released’,’When it came to making bad movies, Ed Wood was the best.’,7.30,630),(524,’Casino’,52000000,”,’The life of the gambling paradise â�� Las Vegas â�� and its dark mafia underbelly.’,40.066880,’1995-11-22′,116112375,178,’Released’,’No one stays at the top forever.’,7.80,1307),(525,’The Blues Brothers’,27000000,”,’Jake Blues is just out of jail, and teams up with his brother, Elwood on a \’mission from God\’ 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, while getting in a bit of trouble here and there.’,44.714264,’1980-06-17′,115229890,133,’Released’,’They\’ll never get caught. They\’re on a mission from God.’,7.50,1065),(526,’Ladyhawke’,20000000,”,’Captain Etienne Navarre is a man on whose shoulders lies a cruel curse. Punished for loving each other, Navarre must become a wolf by night whilst his lover, Lady Isabeau, takes the form of a hawk by day. Together, with the thief Philippe Gaston, they must try to overthrow the corrupt Bishop and in doing so break the spell.’,14.370111,’1985-03-27′,18432000,121,’Released’,’No force in Heaven will release them. No power on Earth can save them.’,6.80,260),(533,’The Curse of the Were-Rabbit’,30000000,’http://www.wallaceandgromit.com/films/the-curse-of-the-wererabbit’,’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.’,30.380747,’2005-09-04′,192452832,85,’Released’,’Something bunny is going on…’,6.80,643),(534,’Terminator Salvation’,200000000,’https://www.warnerbros.com/terminator-salvation’,’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.’,71.862892,’2009-05-20′,371353001,115,’Released’,’The End Begins.’,5.90,2463),(535,’Flashdance’,4000000,”,’The popular 1980â��s 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â��s her dream to be a professional dancer and now is her chance. The film has a great soundtrack with an Oscar winning song.’,18.422323,’1983-04-14′,92921203,95,’Released’,’When the dancer becomes the dance.’,6.10,302),(539,’Psycho’,806948,”,’When larcenous real estate clerk Marion Crane goes on the lam with a wad of cash and hopes of starting a new life, she ends up at the notorious Bates Motel, where manager Norman Bates cares for his housebound mother. The place seems quirky, but fineâ�¦ until Marion decides to take a shower.’,93.067866,’1960-06-16′,32000000,109,’Released’,’The master of suspense moves his cameras into the icy blackness of the unexplored!’,8.20,2320),(540,’D.E.B.S.’,3500000,”,’The star of a team of teenage crime fighters falls for the alluring villainess she must bring to justice.’,6.396936,’2004-01-21′,0,91,’Released’,’Evil is so totally busted!’,5.60,90),(542,’El Crimen del Padre Amaro’,1800000,’http://padreamaro.ad2.com/site/home_eng.htm’,’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.’,2.179428,’2002-10-01′,0,118,’Released’,’Lead us not into temptation’,6.20,36),(544,’There\’s Something About Mary’,23000000,’http://www.aboutmary.com/’,’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.’,57.110486,’1998-07-15′,369884651,119,’Released’,’Love Is In The Hair.’,6.50,1590),(546,’Transamerica’,1000000,’http://www.transamerica-movie.com/’,’Bree is about to get a sex change operation that will finally allow her to actually be what sheâ��s already been in her mind for a long time: a transitioned woman. Yet before this happens she suddenly runs into her son who ends up coming for the trip across the United States.’,9.773398,’2005-12-23′,13350369,103,’Released’,’Life is a Journey. Bring an Open Mind.’,6.90,144),(547,’The Horse Whisperer’,60000000,”,’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.’,12.867352,’1998-05-14′,186883563,170,’Released’,”,6.70,292),(549,’Basquiat’,2962051,”,’Director Julian Schnabel illustrates the portrait of 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â��s New York.’,3.636634,’1996-08-09′,3011195,108,’Released’,’In 1981, A Nineteen-Year-Old Unknown Graffiti Writer Took The New York Art World By Storm. The Rest Is Art History.’,6.60,94),(550,’Fight Club’,63000000,’http://www.foxmovies.com/movies/fight-club’,’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.’,146.757391,’1999-10-15′,100853753,139,’Released’,’Mischief. Mayhem. Soap.’,8.30,9413),(557,’Spider-Man’,139000000,’http://www.sonypictures.com/movies/spider-man/’,’After being bitten by a genetically altered spider, nerdy high school student Peter Parker is endowed with amazing powers.’,82.502566,’2002-05-01′,821708551,121,’Released’,’With great power comes great responsibility.’,6.80,5265),(558,’Spider-Man 2′,200000000,’http://www.sonypictures.com/movies/spider-man2/’,’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.’,35.149586,’2004-06-25′,783766341,127,’Released’,’There\’s a hero in all of us.’,6.70,4321),(559,’Spider-Man 3′,258000000,’http://www.sonypictures.com/movies/spider-man3/’,’The seemingly invincible Spider-Man goes up against an all-new crop of villain â�� including the shape-shifting Sandman. While Spider-Manâ��s superpowers are altered by an alien organism, his alter ego, Peter Parker, deals with nemesis Eddie Brock and also gets caught up in a love triangle.’,115.699814,’2007-05-01′,890871626,139,’Released’,’The battle within.’,5.90,3576),(562,’Die Hard’,28000000,”,’NYPD cop, John McClane\’s plan to reconcile with his estranged wife is thrown for a serious loop when minutes after he arrives at her office, the entire building is overtaken by a group of terrorists. With little help from the LAPD, wisecracking McClane sets out to single-handedly rescue the hostages and bring the bad guys down.’,66.169628,’1988-07-15′,140767956,131,’Released’,’40 Stories. Twelve Terrorists. One Cop.’,7.50,3948),(563,’Starship Troopers’,105000000,”,’Set in the future, the story follows a young soldier named Johnny Rico and his exploits in the Mobile Infantry. 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\”.’,58.782359,’1997-11-06′,121214377,129,’Released’,’The only good bug is a dead bug.’,6.70,1560),(568,’Apollo 13′,52000000,”,’The true story of technical troubles that scuttle the Apollo 13 lunar mission in 1971, risking the lives of astronaut Jim Lovell and his crew, with the failed journey turning 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.’,68.140214,’1995-06-30′,355237933,140,’Released’,’Houston, we have a problem.’,7.30,1599),(573,’Frenzy’,3500000,”,’A serial murderer is strangling women with a necktie. The London police have a suspect, but he is the wrong man.’,10.219942,’1972-05-25′,12600000,116,’Released’,’Just an ordinary necktie used with a deadly new twist.’,7.10,158),(576,’The Wild Bunch’,6244087,”,’Aging outlaw Pike Bishop (William Holden) prepares to retire after one final robbery. Joined by his gang, which includes Dutch Engstrom (Ernest Borgnine) and brothers Lyle (Warren Oates) and Tector Gorch (Ben Johnson), Bishop discovers the heist is a setup orchestrated in part by his old partner, Deke Thornton (Robert Ryan). As the remaining gang takes refuge in Mexican territory, Thornton trails them, resulting in fierce gunfights with plenty of casualties’,14.970654,’1969-06-17′,638641,145,’Released’,’If you only want to spend two hours in a movie theatre and go home and forget it, stay away from THE WILD BUNCH.’,7.60,259),(577,’To Die For’,20000000,”,’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 Nicole Kidman in the leading role.’,12.309715,’1995-05-20′,21284514,106,’Released’,’All she wanted was a little attention.’,6.70,175),(578,’Jaws’,7000000,’http://www.jaws25.com/’,’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.’,50.152327,’1975-06-18′,470654000,124,’Released’,’Don\’t go in the water.’,7.50,2542),(579,’Jaws 2′,20000000,”,’Police chief Brody must protect the citizens of Amity after a second monstrous shark begins terrorizing the waters.’,19.636044,’1978-06-16′,187884007,116,’Released’,’Just when you thought it was safe to go back in the water…’,5.90,406),(580,’Jaws: The Revenge’,23000000,”,’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.’,12.777008,’1987-07-17′,51881013,89,’Released’,’This time, itâ��s personal.’,3.50,224),(581,’Dances with Wolves’,22000000,”,’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.’,45.707835,’1990-11-09′,424208848,181,’Released’,’Inside everyone is a frontier waiting to be discovered.’,7.60,1046),(582,’Das Leben der Anderen’,2000000,”,’A tragic love story set in East Berlin with the backdrop of an undercover Stasi controlled culture. Stasi captain Wieler is ordered to follow author Dreyman and plunges deeper and deeper into his life until he reaches the threshold of doubting the system.’,34.938177,’2006-03-15′,70000000,137,’Released’,’Before the Fall of the Berlin Wall, East Germany\’s Secret Police Listened to Your Secrets.’,7.90,958),(584,’2 Fast 2 Furious’,76000000,”,’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 Fuentes to bring Verone down.’,10.520961,’2003-06-05′,236350661,107,’Released’,’How Fast Do You Want It?’,6.20,2028),(585,’Monsters, Inc.’,115000000,’http://movies.disney.com/monsters-inc’,’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.’,106.815545,’2001-11-01′,562816256,92,’Released’,’We Scare Because We Care.’,7.50,5996),(586,’Wag the Dog’,15000000,”,’During the final weeks of a presidential race, the President is accused of sexual misconduct. To distract the public until the election, the President\’s adviser hires a Hollywood producer to help him stage a fake war.’,13.581966,’1997-12-25′,64256513,97,’Released’,’A comedy about truth, justice and other special effects.’,6.70,270),(587,’Big Fish’,70000000,”,’Throughout his life Edward Bloom has always been a man of big appetites, enormous passions and tall tales. In his later years, he remains a huge mystery to his son, William. Now, to get to know the real man, Will begins piecing together a true picture of his father from flashbacks of his amazing adventures.’,46.199482,’2003-12-25′,122919055,125,’Released’,’An adventure as big as life itself.’,7.60,1994),(588,’Silent Hill’,50000000,’http://www.sonypictures.com/homevideo/silenthill/’,’The eerie and deserted ghost town of Silent Hill draws a young mother desperate to find a cure for her only child\’s illness. Unable to accept the doctor\’s diagnosis that her daughter should be permanently institutionalized for psychiatric care, Rose flees with her child, heading for the abandoned town in search of answers â�� and ignoring the protests of her husband. It\’s soon clear this place is unlike anywhere she\’s ever been. It\’s smothered by fog, inhabited by a variety of strange beings and periodically overcome by a living \’darkness\’ that literally transforms everything it touches. As Rose searches for her little girl, she begins to learn the history of the strange town and realizes that her daughter is just a pawn in a larger game.’,32.927994,’2006-04-21′,97607453,125,’Released’,’We\’ve been expecting you.’,6.30,1067),(590,’The Hours’,25000000,”,’\”The Hours\” is the story of three women searching for more potent, meaningful lives. Each is alive at a different time and place, all are linked by their yearnings and their fears. Their stories intertwine, and finally come together in a surprising, transcendent moment of shared recognition.’,20.953265,’2002-12-27′,41597830,114,’Released’,’The time to hide is over. The time to regret is gone. The time to live is now.’,7.00,451),(591,’The Da Vinci Code’,125000000,’http://www.sonypictures.com/homevideo/thedavincicode/index.html’,’When the curator of the Louvre is found murdered in the famed museum\’s hallowed halls, Harvard professor, Robert Langdon and cryptographer, Sophie Neve must untangle a deadly web of deceit involving the works of Leonardo da Vinci.’,45.313197,’2006-05-17′,767820459,149,’Released’,’Seek the truth.’,6.50,2704),(592,’The Conversation’,1600000,”,’Surveillance expert Harry Caul (Gene Hackman) is hired by a mysterious client\’s brusque aide (Harrison Ford) to tail a young couple, Mark (Frederic Forrest) and Ann (Cindy Williams). Tracking the pair through San Francisco\’s Union Square, Caul and his associate Stan (John Cazale) manage to record a cryptic conversation between them. Tormented by memories of a previous case that ended badly, Caul becomes obsessed with the resulting tape, trying to determine if the couple are in danger.’,20.810292,’1974-04-07′,4420000,113,’Released’,’Harry Caul is an invader of privacy. The best in the business.’,7.50,372),(593,’СолÑ�Ñ�иÑ�’,0,”,’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.’,24.132271,’1972-03-20′,0,167,’Released’,”,7.70,357),(594,’The Terminal’,60000000,’http://www.theterminal-themovie.com/’,’Viktor Navorski is a man without a country; his plane took off just as a coup d\’etat exploded in his homeland, leaving it in shambles, and now he\’s stranded at Kennedy Airport, where he\’s holding a passport that nobody recognizes. While quarantined in the transit lounge until authorities can figure out what to do with him, Viktor simply goes on living â�� and courts romance with a beautiful flight attendant.’,57.753914,’2004-06-17′,219417255,128,’Released’,’Life is waiting.’,7.00,1910),(595,’To Kill a Mockingbird’,2000000,”,’In a small Alabama town in the 1930s, scrupulously honest and highly respected lawyer, Atticus Finch puts his career on the line when he agrees to represent Tom Robinson, a black man accused of rape. The trial and the events surrounding it are seen through the eyes of Finch\’s six-year-old daughter, Scout. While Robinson\’s trial gives the movie its momentum, there are plenty of anecdotal occurrences before and after the court date: Scout\’s ever-strengthening bond with older brother, Jem, her friendship with precocious young Dill Harris, her father\’s no-nonsense reactions to such life-and-death crises as a rampaging mad dog, and especially Scout\’s reactions to, and relationship with, Boo Radley, the reclusive \’village idiot\’ who turns out to be her salvation when she is attacked by a venomous bigot.’,22.139842,’1962-12-25′,13129846,129,’Released’,”,8.00,657),(597,’Titanic’,200000000,’http://www.titanicmovie.com’,’84 years later, a 101-year-old woman named Rose DeWitt Bukater tells the story to her granddaughter Lizzy Calvert, Brock Lovett, Lewis Bodine, Bobby Buell and Anatoly Mikailavich on the Keldysh about her life set in April 10th 1912, on a ship called Titanic when young Rose boards the departing ship with the upper-class passengers and her mother, Ruth DeWitt Bukater, and her fiancé, Caledon Hockley. Meanwhile, a drifter and artist named Jack Dawson and his best friend Fabrizio De Rossi win third-class tickets to the ship in a game. And she explains the whole story from departure until the death of Titanic on its first and last voyage April 15th, 1912 at 2:20 in the morning.’,100.025899,’1997-11-18′,1845034188,194,’Released’,’Nothing on Earth could come between them.’,7.50,7562),(598,’Cidade de Deus’,3300000,’http://cidadededeus.globo.com/’,’Cidade de Deus is a shantytown that started during the 1960s and became one of Rio de Janeiroâ��s most dangerous places in the beginning of the 1980s. To tell the story of this place, the movie describes the life of various characters, all seen by the point of view of the narrator, Buscapé. Buscapé was raised in a very violent environment. Despite the feeling that all odds were against him, he finds out that life can be seen with other eyes: The eyes of an artist. By accident, he becomes a professional photographer, gaining his freedom.’,44.356711,’2002-02-05′,30641770,130,’Released’,’If you run you\’re dead… if you stay, you\’re dead again. Period.’,8.10,1814),(601,’E.T. the Extra-Terrestrial’,10500000,’http://www.et20.com/’,’After a gentle alien becomes stranded on Earth, the being is discovered and befriended by a young boy named Elliott. Bringing the extraterrestrial into his suburban California house, Elliott introduces E.T., as the alien is dubbed, to his brother and his little sister, Gertie, and the children decide to keep its existence a secret. Soon, however, E.T. falls ill, resulting in government intervention and a dire situation for both Elliott and the alien.’,56.105798,’1982-04-03′,792910554,115,’Released’,’He is afraid. He is alone. He is three million light years from home.’,7.30,3269),(602,’Independence Day’,75000000,”,’On July 2, a giant alien mothership enters orbit around Earth and deploys several dozen saucer-shaped \’destroyer\’ spacecraft that quickly lay waste to major cities around the planet. On July 3, the United States conducts a coordinated counterattack that fails. On July 4, a plan is devised to gain access to the interior of the alien mothership in space, in order to plant a nuclear missile.’,60.442593,’1996-06-25′,816969268,145,’Released’,’Earth. Take a good look. It might be your last.’,6.70,3260),(603,’The Matrix’,63000000,’http://www.warnerbros.com/matrix’,’Set in the 22nd century, The Matrix tells the story of a computer hacker who joins a group of underground insurgents fighting the vast and powerful computers who now rule the earth.’,104.309993,’1999-03-30′,463517383,136,’Released’,’Welcome to the Real World.’,7.90,8907),(604,’The Matrix Reloaded’,150000000,”,’Six months after the events depicted in The Matrix, Neo has proved to be a good omen for the free humans, as more and more humans are being freed from the matrix and brought to Zion, the one and only stronghold of the Resistance. Neo himself has discovered his superpowers including super speed, ability to see the codes of the things inside the matrix and a certain degree of pre-cognition. But a nasty piece of news hits the human resistance: 250,000 machine sentinels are digging to Zion and would reach them in 72 hours. As Zion prepares for the ultimate war, Neo, Morpheus and Trinity are advised by the Oracle to find the Keymaker who would help them reach the Source. Meanwhile Neo\’s recurrent dreams depicting Trinity\’s death have got him worried and as if it was not enough, Agent Smith has somehow escaped deletion, has become more powerful than before and has fixed Neo as his next target.’,70.785910,’2003-05-15′,738599701,138,’Released’,’Free your mind.’,6.70,3443),(605,’The Matrix Revolutions’,150000000,”,’The human city of Zion defends itself against the massive invasion of the machines as Neo fights to end the war at another front while also opposing the rogue Agent Smith.’,73.313918,’2003-11-05′,424988211,129,’Released’,’Everything that has a beginning has an end.’,6.40,3096),(606,’Out of Africa’,31000000,”,’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.’,13.864975,’1985-12-20′,128499205,161,’Released’,’Based on a true story.’,7.00,279),(607,’Men in Black’,90000000,’http://www.sonypictures.com/homevideo/meninblack/’,’Men in Black follows the exploits of agents Kay and Jay, members of a top-secret organization established to monitor and police alien activity on Earth. The two Men in Black find themselves in the middle of the deadly plot by an intergalactic terrorist who has arrived on Earth to assassinate two ambassadors from opposing galaxies. In order to prevent worlds from colliding, the MiB must track down the terrorist and prevent the destruction of Earth. It\’s just another typical day for the Men in Black.’,104.121555,’1997-07-02′,589390539,98,’Released’,’Protecting the Earth from the scum of the universe.’,6.90,4412),(608,’Men in Black II’,140000000,’http://www.sonypictures.com/homevideo/meninblackii/’,’Kay and Jay reunite to provide our best, last and only line of defense against a sinister seductress who levels the toughest challenge yet to the MIB\’s untarnished mission statement â�� protecting Earth from the scum of the universe. It\’s been four years since the alien-seeking agents averted an intergalactic disaster of epic proportions. Now it\’s a race against the clock as Jay must convince Kay â�� who not only has absolutely no memory of his time spent with the MIB, but is also the only living person left with the expertise to save the galaxy â�� to reunite with the MIB before the earth submits to ultimate destruction.’,91.332849,’2002-07-03′,441818803,88,’Released’,’Same Planet. New Scum.’,6.00,3114),(609,’Poltergeist’,10700000,”,’Steve Freeling lives with his wife, Diane, and their three children, Dana, Robbie, and Carol Anne, in Southern California where he sells houses for the company that built the neighborhood. It starts with just a few odd occurrences, such as broken dishes and furniture moving around by itself. However, when he realizes that something truly evil haunts his home, Steve calls in a team of parapsychologists led by Dr. Lesh to help before it\’s too late.’,36.230204,’1982-06-04′,122200000,114,’Released’,’They\’re here.’,7.00,794),(612,’Munich’,70000000,”,’During the 1972 Olympic Games in Munich, eleven Israeli athletes are taken hostage and murdered by a Palestinian terrorist group known as Black September. In retaliation, the Israeli government recruits a group of Mossad agents to track down and execute those responsible for the attack.’,29.035222,’2005-12-22′,130358911,164,’Released’,’The world was watching in 1972 as 11 Israeli athletes were murdered at the Munich Olympics. This is the story of what happened next.’,6.90,696),(613,’Der Untergang’,18339750,’http://www.downfallthefilm.com/’,’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. When the end finally does come, and Hitler lies dead by his own hand, what is left of his military must find a way to end the killing that is the Battle of Berlin, and lay down their arms in surrender.’,32.445895,’2004-09-08′,92180910,156,’Released’,’April 1945, a nation awaits its…Downfall’,7.70,1037),(615,’The Passion of the Christ’,30000000,’http://www.thepassionofthechrist.com/’,’\”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.’,38.171417,’2004-02-25′,611899420,127,’Released’,’By his wounds, we were healed.’,6.90,864),(616,’The Last Samurai’,140000000,”,’Nathan Algren is an American hired to instruct the Japanese army in the ways of modern warfare, which finds him 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.’,52.341226,’2003-12-05′,456758981,154,’Released’,’In the face of an enemy, in the heart of one man, lies the soul of a warrior.’,7.30,1895),(617,’Wild Things’,20000000,”,’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…’,25.041992,’1998-03-20′,67200000,108,’Released’,’They\’re dying to play with you.’,6.30,444),(619,’The Bodyguard’,25000000,”,’A former Secret Service agent grudgingly takes an assignment to protect a pop idol who\’s threatened by a crazed fan. At first, the safety-obsessed bodyguard and the self-indulgent diva totally clash. But before long, all that tension sparks fireworks of another sort, and the love-averse tough guy is torn between duty and romance.’,26.576385,’1992-11-25′,411006740,129,’Released’,’Never let her out of your sight. Never let your guard down. Never fall in love.’,6.10,661),(621,’Grease’,6000000,”,’Australian good girl Sandy and greaser Danny fell in love over the summer. But when they unexpectedly discover they\’re now in the same high school, will they be able to rekindle their romance despite their eccentric friends?’,67.608041,’1978-07-07′,181813770,110,’Released’,’Grease is the word’,7.20,1581),(622,’The Ninth Gate’,38000000,”,’An all-expenses-paid international search for a rare copy of the book, \’The Nine Gates of the Shadow Kingdom\’ brings an unscrupulous book dealer deep into a world of murder, double-dealing and satanic worship.’,30.359164,’1999-08-24′,58401898,133,’Released’,’Every book has a life of its own.’,6.30,756),(627,’Trainspotting’,4000000,’http://www.miramax.com/movie/trainspotting/’,’Renton, deeply immersed in the Edinburgh drug scene, tries to clean up and get out, despite the allure of the drugs and influence of friends.’,63.513324,’1996-02-23′,16491080,93,’Released’,’Choose life.’,7.80,2655),(628,’Interview with the Vampire’,60000000,”,’A vampire relates his epic life story of love, betrayal, loneliness, and dark hunger to an over-curious reporter.’,50.163785,’1994-11-11′,223664608,123,’Released’,’Drink from me and live forever’,7.20,1516),(629,’The Usual Suspects’,6000000,’http://www.mgm.com/#/our-titles/2083/The-Usual-Suspects’,’Held in an L.A. interrogation room, Verbal Kint attempts to convince the feds that a mythic crime lord, Keyser Soze, not only exists, but was also responsible for drawing him and his four partners into a multi-million dollar heist that ended with an explosion in San Pedro harbor â�� leaving few survivors. Verbal lures his interrogators with an incredible story of the crime lord\’s almost supernatural prowess.’,64.025031,’1995-07-19′,23341568,106,’Released’,’Five Criminals. One Line Up. No Coincidence.’,8.10,3254),(630,’The Wizard of Oz’,2777000,’http://thewizardofoz.warnerbros.com/’,’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.’,67.417542,’1939-08-15′,33754967,102,’Released’,’We\’re off to see the Wizard, the wonderful Wizard of Oz!’,7.40,1642),(634,’Bridget Jones\’s Diary’,25000000,”,’A chaotic Bridget Jones meets a snobbish lawyer, and he soon enters her world of imperfections.’,35.310712,’2001-04-13′,281929795,97,’Released’,’Health Warning: Adopting Bridget\’s lifestyle could seriously damage your health.’,6.50,1356),(639,’When Harry Met Sally…’,16000000,”,’During their travels from Chicago to New York, Harry and Sally Will debate whether or not sex ruins a perfect relationship between a man and a woman. Eleven years and later, they\’re still no closer to finding the answer.’,18.430419,’1989-07-21′,92823546,96,’Released’,’Can two friends sleep together and still love each other in the morning?’,7.30,950),(640,’Catch Me If You Can’,52000000,’https://www.facebook.com/CatchMeIfYouCanMovie’,’A true story about Frank Abagnale Jr. who, before his 19th birthday, successfully conned millions of dollars worth of checks as a Pan Am pilot, doctor, and legal prosecutor. An FBI agent makes it his mission to put him behind bars. But Frank not only eludes capture, he revels in the pursuit.’,73.944049,’2002-12-25′,352114312,141,’Released’,’The true story of a real fake.’,7.70,3795),(641,’Requiem for a Dream’,4500000,’http://www.requiemforadream.com/’,’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.’,11.573034,’2000-10-27′,7390108,102,’Released’,”,7.90,2443),(642,’Butch Cassidy and the Sundance Kid’,6000000,”,’In late 1890s Wyoming, Butch Cassidy is the affable, clever and talkative leader of the outlaw Hole in the Wall Gang. His closest companion is the laconic dead-shot \’Sundance Kid\’. As the west rapidly becomes civilized, the law finally catches up to Butch, Sundance and their gang. Chased doggedly by a special posse, the two decide to make their way to South America in hopes of evading their pursuers once and for all.’,24.499996,’1969-09-23′,102308889,110,’Released’,’Not that it matters, but most of it is true.’,7.40,650),(644,’A.I. Artificial Intelligence’,100000000,”,’A robotic boy, the first programmed to love, David is adopted as a test case by a Cybertronics employee and his wife. Though he gradually becomes their child, a series of unexpected circumstances make this life impossible for David. Without final acceptance by humans or machines, David embarks on a journey to discover where he truly belongs, uncovering a world in which the line between robot and machine is both vast and profoundly thin.’,34.035114,’2001-06-29′,235926552,146,’Released’,’David is 11 years old. He weighs 60 pounds. He is 4 feet, 6 inches tall. He has brown hair. His love is real. But he is not.’,6.80,1974),(646,’Dr. No’,950000,’http://www.mgm.com/#/our-titles/566/Dr.-No’,’In the film that launched the James Bond saga, Agent 007 battles mysterious Dr. No, a scientific genius bent on destroying the U.S. space program. As the countdown to disaster begins, Bond must go to Jamaica, where he encounters beautiful Honey Ryder, to confront a megalomaniacal villain in his massive island headquarters.’,48.901542,’1962-10-04′,59600000,110,’Released’,’NOW meet the most extraordinary gentleman spy in all fiction!’,6.90,940),(650,’Boyz n the Hood’,6500000,”,’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.’,17.705671,’1991-07-12′,57504069,112,’Released’,’Once upon a time in South Central L.A… It ain\’t no fairy tale.’,7.40,364),(652,’Troy’,175000000,”,’In year 1250 B.C. during the late Bronze age, two emerging nations begin to clash. 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 to fight the never before defeated Trojans.’,66.803149,’2004-05-13′,497409852,163,’Released’,’For passion. For honor. For destiny. For victory. For love.’,6.90,2759),(654,’On the Waterfront’,910000,”,’Terry Malloy dreams about being a prize fighter, while tending his pigeons and running errands at the docks for Johnny Friendly, the corrupt boss of the dockers union. Terry witnesses a murder by two of Johnny\’s thugs, and later meets the dead man\’s sister and feels responsible for his death. She introduces him to Father Barry, who tries to force him to provide information for the courts that will smash the dock racketeers.’,16.015599,’1954-06-22′,9600000,108,’Released’,’The Man Lived by the Jungle Law of the Docks!’,8.00,357),(657,’From Russia with Love’,2000000,’http://www.mgm.com/view/movie/717/From-Russia-With-Love/’,’Agent 007 is back in the second installment of the James Bond series, this time battling a secret crime organization known as SPECTRE. Russians Rosa Klebb and Kronsteen are out to snatch a decoding device known as the Lektor, using the ravishing Tatiana to lure Bond into helping them. Bond willingly travels to meet Tatiana in Istanbul, where he must rely on his wits to escape with his life in a series of deadly encounters with the enemy’,41.298723,’1963-10-11′,78898765,115,’Released’,’The world\’s masters of murder pull out all the stops to destroy Agent 007!’,6.90,760),(658,’Goldfinger’,2500000,’http://www.mgm.com/view/movie/760/Goldfinger/’,’Special agent 007 (Sean Connery) comes face to face with one of the most notorious villains of all time, and now he must outwit and outgun the powerful tycoon to prevent him from cashing in on a devious scheme to raid Fort Knox — and obliterate the world\’s economy.’,47.812466,’1964-09-17′,124881062,110,’Released’,’Everything he touches turns into excitement!’,7.20,987),(660,’Thunderball’,5500000,’http://www.mgm.com/view/movie/2009/Thunderball/’,’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.’,31.036000,’1965-12-16′,141195658,130,’Released’,’Look up! Look down! Look out!’,6.50,562),(663,’Saw IV’,10000000,’http://movies.break.com/saw4/’,’Jigsaw and his apprentice Amanda are dead. Now, upon the news of Detective Kerry\’s murder, two seasoned FBI profilers, Agent Strahm and Agent Perez, arrive in the terrified community to assist the veteran Detective Hoffman in sifting through Jigsaw\’s latest grisly remains and piecing together the puzzle. However, when SWAT Commander Rigg is abducted and thrust into a game, the last officer untouched by Jigsaw has but ninety minutes to overcome a series of demented traps and save an old friend…or face the deadly consequences.’,29.244768,’2007-10-25′,139352633,93,’Released’,’You think it is over…but the games have just begun’,5.90,903),(664,’Twister’,92000000,”,’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.’,32.079995,’1996-05-10′,494471524,113,’Released’,’The Dark Side of Nature.’,6.10,950),(666,’Central do Brasil’,2900000,”,’An emotive journey of a former school teacher, who writes letters for illiterate people, and a young boy, whose mother has just died, as they search for the father he never knew.’,5.928937,’1998-01-16′,5596708,113,’Released’,’He was looking for the father he never knew. She was looking for a second chance.’,7.60,126),(667,’You Only Live Twice’,9500000,’http://www.mgm.com/view/movie/2347/You-Only-Live-Twice/’,’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.’,28.675891,’1967-06-12′,111584787,117,’Released’,’You Only Live Twice…and Twice is the only way to live!’,6.50,531),(668,’On Her Majesty\’s Secret Service’,6500000,’http://www.mgm.com/view/movie/1411/On-Her-Majesty%E2%80%99s-Secret-Service/’,’James 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.’,25.289665,’1969-12-12′,81974493,142,’Released’,’Far up! Far out! Far more! James Bond 007 is back!’,6.50,456),(670,’ì�¬ë��ë³´ì�´’,3000000,”,’With no clue how he came to be imprisoned, drugged and tortured for 15 years, a desperate businessman seeks revenge on his captors.’,56.763490,’2003-01-01′,14980005,120,’Released’,’15 years of imprisonment, five days of vengeance’,8.00,1945),(671,’Harry Potter and the Philosopher\’s Stone’,125000000,’http://harrypotter.warnerbros.com/harrypotterandthedeathlyhallows/mainsite/index.html’,’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.’,109.984351,’2001-11-16′,976475550,152,’Released’,’Let the Magic Begin.’,7.50,7006),(672,’Harry Potter and the Chamber of Secrets’,100000000,”,’Ignoring threats to his life, Harry returns to Hogwarts to investigate â�� aided by Ron and Hermione â�� a mysterious series of attacks.’,132.397737,’2002-11-13′,876688482,161,’Released’,’Hogwarts is back in session.’,7.40,5815),(673,’Harry Potter and the Prisoner of Azkaban’,130000000,”,’Harry, Ron and Hermione return to Hogwarts for another magic-filled year. Harry comes face to face with danger yet again, this time in the form of escaped convict, Sirius Black â�� and turns to sympathetic Professor Lupin for help.’,79.679601,’2004-05-31′,789804554,141,’Released’,’Something wicked this way comes.’,7.70,5877),(674,’Harry Potter and the Goblet of Fire’,150000000,’http://harrypotter.warnerbros.com/’,’Harry starts his fourth year at Hogwarts, competes in the treacherous Triwizard Tournament and faces the evil Lord Voldemort. Ron and Hermione help Harry manage the pressure â�� but Voldemort lurks, awaiting his chance to destroy Harry and all that he stands for.’,101.250416,’2005-11-05′,895921036,157,’Released’,’Dark And Difficult Times Lie Ahead.’,7.50,5608),(675,’Harry Potter and the Order of the Phoenix’,150000000,’http://www.harrypotterorderofthephoenix.com/’,’Returning for his fifth year of study at Hogwarts, Harry 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.’,78.144395,’2007-06-28′,938212738,138,’Released’,’Evil Must Be Confronted.’,7.40,5494),(676,’Pearl Harbor’,140000000,”,’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.’,34.206690,’2001-05-21′,449220945,183,’Released’,’It takes a moment to change history. It takes love to change lives.’,6.60,1791),(679,’Aliens’,18500000,”,’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.’,67.660940,’1986-07-18′,183316455,137,’Released’,’This Time It\’s War’,7.70,3220),(680,’Pulp Fiction’,8000000,”,’A burger-loving hit man, his philosophical partner, a drug-addled gangster\’s moll and a washed-up boxer converge in this sprawling, comedic crime caper. Their adventures unfurl in three stories that ingeniously trip back and forth in time.’,121.463076,’1994-10-08′,213928762,154,’Released’,’Just because you are a character doesn\’t mean you have character.’,8.30,8428),(681,’Diamonds Are Forever’,7200000,’http://www.mgm.com/view/movie/529/Diamonds-Are-Forever/’,’Diamonds are stolen only to be sold again in the international market. James Bond infiltrates a smuggling mission to find out whoâ��s guilty. The mission takes him to Las Vegas where Bond meets his archenemy Blofeld.’,34.634181,’1971-12-13′,116019547,120,’Released’,’The man who made 007 a household number’,6.30,553),(682,’The Man with the Golden Gun’,7000000,’http://www.mgm.com/view/movie/1213/The-Man-with-the-Golden-Gun/’,’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.’,30.214716,’1974-12-01′,97572000,125,’Released’,’The man with the golden gun is ready to assassinate James Bond.’,6.30,524),(686,’Contact’,90000000,’http://www.warnerbros.com/contact’,’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.’,55.249434,’1997-07-11′,171120329,150,’Released’,’If it\’s just us, it seems like an awful waste of space.’,7.20,1308),(687,’Dead Man Walking’,11000000,”,’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 portrayal of Sister Helen Prejean.’,15.864928,’1995-12-29′,39363635,122,’Released’,”,7.30,337),(688,’The Bridges of Madison County’,24000000,”,’Photographer Robert Kincaid wanders into the life of housewife Francesca Johnson for four days in the 1960s.’,17.606087,’1995-05-28′,182016617,135,’Released’,’The path of Francesca Johnson\’s future seems destined due to an unexpected fork in the road…’,7.30,385),(691,’The Spy Who Loved Me’,14000000,’http://www.mgm.com/view/movie/1891/The-Spy-Who-Loved-Me/’,’Russian and British submarines with nuclear missiles on board both vanish from sight without a trace. England 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.’,27.173470,’1977-07-07′,185438673,125,’Released’,’It\’s the BIGGEST. It\’s the BEST. It\’s BOND. And B-E-Y-O-N-D.’,6.60,507),(692,’Pink Flamingos’,12000,”,’Notorious Baltimore criminal and underground figure Divine goes up against Connie & Raymond Marble, a sleazy married couple who make a passionate attempt to humiliate her and seize her tabloid-given title as \”The Filthiest Person Alive\”.’,4.553644,’1972-03-12′,6000000,93,’Released’,’An exercise in poor taste.’,6.20,110),(693,’Meet the Fockers’,80000000,’http://www.meetthefockers.com/index.php’,’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 parents. Unlike their happily matched offspring, the future in-laws find themselves in a situation of opposites that definitely do not attract.’,32.829538,’2004-12-22′,516642939,115,’Released’,’Misery loves family.’,6.10,1373),(694,’The Shining’,19000000,”,’Jack Torrance accepts a caretaker job at the Overlook Hotel, where he, along with his wife Wendy and their son Danny, must live isolated from the rest of the world for the winter. But they aren\’t prepared for the madness that lurks within.’,78.699993,’1980-05-22′,44017374,144,’Released’,’A masterpiece of modern horror.’,8.10,3757),(698,’Moonraker’,34000000,’http://www.mgm.com/view/movie/1292/Moonraker/’,’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.’,29.887404,’1979-06-26′,210308099,126,’Released’,’Outer space now belongs to 007.’,5.90,541),(699,’For Your Eyes Only’,28000000,’http://www.mgm.com/view/movie/695/For-Your-Eyes-Only/’,’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.’,26.090746,’1981-06-23′,195312802,127,’Released’,’No one comes close to James Bond, 007.’,6.30,490),(700,’Octopussy’,27500000,’http://www.mgm.com/view/movie/1394/Octopussy/’,’James Bond is sent to investigate after a fellow â��00â�� 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.’,25.633663,’1983-06-05′,187500000,131,’Released’,’James Bondâ��s all time high.’,6.20,527),(702,’A Streetcar Named Desire’,1800000,”,’Disturbed Blanche DuBois moves in with her sister in New Orleans and is tormented by her brutish brother-in-law while her reality crumbles around her.’,14.884756,’1951-09-18′,8000000,125,’Released’,’…Blanche, who wanted so much to stay a lady…’,7.60,281),(703,’Annie Hall’,4000000,”,’In the city of New York, comedian Alvy Singer falls in love with the ditsy Annie Hall.’,35.892034,’1977-04-19′,38251425,93,’Released’,’A nervous romance.’,7.80,1010),(704,’A Hard Day\’s Night’,560000,’http://www.thebeatles.com/film/hard-days-night’,’Capturing John Lennon, Paul McCartney, George Harrison and Ringo Starr in their electrifying element, \’A Hard Day\’s Night\’ is a wildly irreverent journey through this pastiche of a day in the life of The Beatles during 1964. The band have to use all their guile and wit to avoid the pursuing fans and press to reach their scheduled television performance, in spite of Paul\’s troublemaking grandfather and Ringo\’s arrest.’,10.730056,’1964-07-06′,12299668,88,’Released’,’The Beatles, starring in their first full-length, hilarious, action-packed film!’,7.30,168),(707,’A View to a Kill’,30000000,’http://www.mgm.com/view/movie/2101/A-View-to-a-Kill/’,’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.’,27.230493,’1985-05-24′,152427960,131,’Released’,’Has James Bond finally met his match?’,6.00,506),(708,’The Living Daylights’,40000000,’http://www.mgm.com/view/movie/1132/The-Living-Daylights/’,’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.’,23.331459,’1987-06-29′,191185897,130,’Released’,’Licensed to thrill.’,6.20,440),(709,’Licence to Kill’,32000000,’http://www.mgm.com/view/movie/1111/License-to-Kill/’,’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.’,28.221190,’1989-07-07′,156167015,133,’Released’,’His bad side is a dangerous place to be.’,5.90,541),(710,’GoldenEye’,58000000,’http://www.mgm.com/view/movie/757/Goldeneye/’,’James Bond must unmask the mysterious head of the Janus Syndicate and prevent the leader from utilizing the GoldenEye weapons system to inflict devastating revenge on Britain.’,59.824565,’1995-11-16′,352194034,130,’Released’,’No limits. No fears. No substitutes.’,6.60,1174),(711,’Finding Forrester’,43000000,”,’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.’,19.043286,’2000-12-21′,80049764,136,’Released’,’In an ordinary place, he found the one person to make his life extraordinary.’,7.00,302),(712,’Four Weddings and a Funeral’,6000000,’http://workingtitlefilms.com/film.php?filmID=59′,’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.’,29.834065,’1994-03-09′,254700832,117,’Released’,’Five good reasons to stay single.’,6.60,632),(713,’The Piano’,7000000,”,’After a long voyage from Scotland, pianist Ada McGrath and her young daughter, Flora, are left with all their belongings, including a piano, on a New Zealand beach. Ada, who has been mute since childhood, has been sold into marriage to a local man named Alisdair Stewart. Making little attempt to warm up to Alisdair, Ada soon becomes intrigued by his Maori-friendly acquaintance, George Baines, leading to tense, life-altering conflicts.’,17.681707,’1993-05-19′,116700000,121,’Released’,”,7.10,281),(714,’Tomorrow Never Dies’,110000000,’http://www.mgm.com/view/movie/2029/Tomorrow-Never-Dies/’,’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.’,42.887121,’1997-12-11′,333011068,119,’Released’,’Yesterday is a memory. Today is history. Tomorrow is in the hands of one man.’,6.00,925),(744,’Top Gun’,15000000,”,’For Lieutenant Pete \’Maverick\’ Mitchell and his friend and Co-Pilot Nick \’Goose\’ Bradshaw being accepted into an elite training school for fighter pilots is a dream come true. A tragedy, as well as personal demons, threaten Pete\’s dreams of becoming an Ace pilot.’,58.900647,’1986-05-16′,356830601,110,’Released’,’Up there with the best of the best.’,6.70,1698),(745,’The Sixth Sense’,40000000,”,’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.’,73.085576,’1999-08-06′,672806292,107,’Released’,’Not every gift is a blessing.’,7.70,3147),(746,’The Last Emperor’,23000000,”,’A dramatic history of Pu Yi, the last of the Emperors of China, from his lofty birth and brief reign in the Forbidden City, the object of worship by half a billion people; through his abdication, his decline and dissolute lifestyle; his exploitation by the invading Japanese, and finally to his obscure existence as just another peasant worker in the People\’s Republic.’,21.189028,’1987-10-21′,43984230,163,’Released’,’He was the Lord of Ten Thousand Years, the absolute monarch of China. He was born to rule a world of ancient tradition. Nothing prepared him for our world of change.’,7.40,355),(747,’Shaun of the Dead’,4000000,”,’Shaun lives a supremely uneventful life, which revolves around his girlfriend, his mother, and, above all, his local pub. This gentle routine is threatened when the dead return to life and make strenuous attempts to snack on ordinary Londoners.’,49.124860,’2004-04-09′,30039392,99,’Released’,’A romantic comedy. With zombies.’,7.50,2420),(752,’V for Vendetta’,54000000,’http://vforvendetta.warnerbros.com/’,’In a world in which Great Britain has become a fascist state, a masked vigilante known only as \’V\’ conducts guerrilla warfare against the oppressive British government. When \’V\’ rescues a young woman from the secret police, he finds in her an ally with whom he can continue his fight to free the people of Britain.’,84.630969,’2006-03-15′,132511035,132,’Released’,’People should not be afraid of their governments. Governments should be afraid of their people.’,7.70,4442),(754,’Face/Off’,80000000,”,’An antiterrorism agent goes under the knife to acquire the likeness of a terrorist and gather details about a bombing plot. When the terrorist escapes custody, he undergoes surgery to look like the agent so he can get close to the agent\’s family.’,46.075037,’1997-06-27′,245676146,138,’Released’,’In order to catch him, he must become him.’,6.80,1583),(755,’From Dusk Till Dawn’,19000000,’http://www.miramax.com/movie/from-dusk-till-dawn/’,’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.’,64.181668,’1996-01-19′,25836616,108,’Released’,’One night is all that stands between them and freedom. But it\’s going to be a hell of a night.’,6.90,1603),(756,’Fantasia’,2280000,’http://movies.disney.com/fantasia’,’Walt Disney\’s timeless masterpiece is an extravaganza of sight and sound! See the music come to life, hear the pictures burst into song and experience the excitement that is Fantasia over and over again.’,32.875469,’1940-11-13′,83320000,124,’Released’,’The most sensational sound you\’ll ever see!’,7.20,808),(762,’Monty Python and the Holy Grail’,400000,’http://www.sonypictures.com/cthe/montypython/’,’King Arthur, accompanied by his squire, recruits his Knights of the Round Table, including Sir Bedevere the Wise, Sir Lancelot the Brave, Sir Robin the Not-Quite-So-Brave-As-Sir-Lancelot and Sir Galahad the Pure. On the way, Arthur battles the Black Knight who, despite having had all his limbs chopped off, insists he can still fight. They reach Camelot, but Arthur decides not to enter, as \”it is a silly place\”.’,64.782984,’1975-03-13′,5028948,91,’Released’,’And now! At Last! Another film completely different from some of the other films which aren\’t quite the same as this one is.’,7.80,1708),(764,’The Evil Dead’,350000,”,’When a group of college students finds a mysterious book and recording in the old wilderness cabin they\’ve rented for the weekend, they unwittingly unleash a demonic force from the surrounding forest.’,35.037625,’1981-10-15′,29400000,85,’Released’,’The Ultimate Experience In Grueling Terror’,7.30,894),(765,’Evil Dead II’,3600000,”,’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 â��The Book of the Dead.â�� As they play the recording an evil power is unleashed taking over Lindaâ��s body.’,35.674774,’1987-03-13′,5923044,84,’Released’,’The Sequel To The Ultimate Experience In Grueling Terror’,7.60,742),(766,’Army of Darkness’,11000000,”,’A man is accidentally transported to 1300 A.D., where he must battle an army of the dead and retrieve the Necronomicon so he can return home.’,33.758281,’1992-10-09′,0,81,’Released’,’Trapped in time. Surrounded by evil. Low on gas.’,7.30,838),(767,’Harry Potter and the Half-Blood Prince’,250000000,’http://harrypotter.warnerbros.com/harrypotterandthehalf-bloodprince/dvd/index.html’,’As Harry begins his sixth year at Hogwarts, he discovers an old book marked as \’Property of the Half-Blood Prince\’, and begins to learn more about Lord Voldemort\’s dark past.’,98.885637,’2009-07-07′,933959197,153,’Released’,’Dark Secrets Revealed’,7.40,5293),(768,’From Hell’,35000000,”,’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.’,26.134678,’2001-10-19′,74558115,122,’Released’,’Only the legend will survive.’,6.60,741),(769,’GoodFellas’,25000000,’http://www.warnerbros.com/goodfellas’,’The true story of Henry Hill, a half-Irish, half-Sicilian Brooklyn kid who is adopted by neighbourhood gangsters at an early age and climbs the ranks of a Mafia family under the guidance of Jimmy Conway.’,63.654244,’1990-09-12′,46836394,145,’Released’,’Three Decades of Life in the Mafia.’,8.20,3128),(770,’Gone with the Wind’,4000000,”,’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.’,48.982550,’1939-12-15′,400176459,238,’Released’,’The greatest romance of all time!’,7.70,970),(771,’Home Alone’,18000000,’https://www.foxconnect.com/home-alone-4.html’,’Eight-year-old Kevin McCallister makes the most of the situation after his family unwittingly leaves him behind when they go on Christmas 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 before.’,2.186927,’1990-11-09′,476684675,103,’Released’,’A Family Comedy Without the Family.’,7.10,2414),(772,’Home Alone 2: Lost in New York’,18000000,”,’Instead of flying to Florida with his folks, Kevin ends up alone in New York, where he gets a hotel room with his dad\’s credit cardâ��despite problems from a clerk and meddling bellboy. But when Kevin runs into his old nemeses, the Wet Bandits, he\’s determined to foil their plans to rob a toy store on Christmas eve.’,81.487685,’1992-11-19′,358991681,120,’Released’,’He\’s up past his bedtime in the city that never sleeps.’,6.30,2395),(773,’Little Miss Sunshine’,8000000,’http://www.foxsearchlight.com/littlemisssunshine/’,’A family loaded with quirky, colorful characters piles into an old van and road trips to California for little Olive to compete in a beauty pageant.’,14.793177,’2006-07-26′,100523181,102,’Released’,’A family on the verge of a breakdown’,7.50,1686),(782,’Gattaca’,36000000,”,’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.’,70.398356,’1997-09-07′,12532777,106,’Released’,’There is no gene for the human spirit.’,7.50,1808),(783,’Gandhi’,22000000,”,’In the early years of the 20th century, Mohandas K. Gandhi, a British-trained lawyer, forsakes all worldly possessions to take up the cause of Indian independence. Faced with armed resistance from the British government, Gandhi adopts a policy of \’passive resistance\’, endeavouring to win freedom for his people without resorting to bloodshed.’,35.227212,’1982-11-30′,77737889,191,’Released’,’His triumph changed the world forever.’,7.40,716),(786,’Almost Famous’,60000000,”,’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.’,21.547446,’2000-09-15′,47383689,122,’Released’,’Experience it. Enjoy it. Just don\’t fall for it.’,7.40,797),(787,’Mr. & Mrs. Smith’,110000000,”,’After five (or six) years of vanilla-wedded bliss, ordinary suburbanites John and Jane Smith are stuck in a huge rut. Unbeknownst to each other, they are both coolly lethal, highly-paid assassins working for rival organisations. When they discover they\’re each other\’s next target, their secret lives collide in a spicy, explosive mix of wicked comedy, pent-up passion, nonstop action and high-tech weaponry.’,44.635452,’2005-06-07′,478207520,120,’Released’,’Smart and sexy.’,6.50,2965),(788,’Mrs. Doubtfire’,25000000,”,’Loving but irresponsible dad Daniel Hillard, estranged from his exasperated spouse, is crushed by a court order allowing only weekly visits with his kids. When Daniel learns his ex needs a housekeeper, he gets the job — disguised as an English nanny. Soon he becomes not only his children\’s best pal but the kind of parent he should have been from the start.’,30.884535,’1993-11-24′,441286195,125,’Released’,’She makes dinner. She does windows. She reads bedtime stories. She\’s a blessing… in disguise.’,7.00,1591),(790,’The Fog’,1000000,’http://www.theofficialjohncarpenter.com/the-fog/’,’Strange things begin to occurs as a tiny California coastal town prepares to commemorate its centenary. Inanimate objects spring eerily to life; Rev. Malone stumbles upon a dark secret about the town\’s founding; radio announcer Stevie witnesses a mystical fire; and hitchhiker Elizabeth discovers the mutilated corpse of a fisherman. Then a mysterious iridescent fog descends upon the village, and more people start to die.’,14.518598,’1980-02-08′,21378361,89,’Released’,’Lock your doors. Bolt your windows. There\’s something in THE FOG!’,6.40,311),(792,’Platoon’,6000000,”,’As a young and naive recruit in Vietnam, Chris Taylor faces a moral crisis when confronted with the horrors of war and the duality of man.’,49.802914,’1986-12-18′,138530565,120,’Released’,’The first casualty of war is innocence.’,7.50,1205),(794,’The Omen’,2800000,”,’Immediately after their miscarriage, the US diplomat Robert Thorn adopts the newborn Damien without the knowledge of his wife. Yet what he doesnâ��t know is that their new son is the son of the devil. A classic horror film with Gregory Peck from 1976.’,25.939385,’1976-06-06′,60922980,111,’Released’,’It is the greatest mystery of all because no human being will ever solve it.’,7.20,476),(795,’City of Angels’,55000000,”,’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.’,21.272734,’1998-04-10′,198685114,114,’Released’,’She didn\’t believe in angels until she fell in love with one.’,6.40,529),(796,’Cruel Intentions’,10500000,”,’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.’,23.449703,’1999-03-05′,75902208,97,’Released’,’In the game of seduction, There is only one rule: Never fall in love.’,6.60,827),(801,’Good Morning, Vietnam’,13000000,”,’Radio funny man Adrian Cronauer is sent to Vietnam to bring a little comedy back into the lives of the soldiers. After setting up shop, Cronauer delights the G.I.s but shocks his superior officer, Sergeant Major Dickerson, with his irreverent take on the war. While Dickerson attempts to censor Cronauer\’s broadcasts, Cronauer pursues a relationship with a Vietnamese girl named Trinh, who shows him the horrors of war first-hand.’,18.362333,’1987-12-23′,123922370,121,’Released’,’Time to rock it from the Delta to the DMZ!’,7.10,642),(802,’Lolita’,2000000,”,’Humbert Humbert is a middle-aged British novelist who is both appalled by and attracted to the vulgarity of American culture. When he comes to stay at the boarding house run by Charlotte Haze, he soon becomes obsessed with Lolita, the woman\’s teenaged daughter.’,23.962109,’1962-06-13′,9250000,153,’Released’,’How did they ever make a movie of …’,7.30,395),(805,’Rosemary\’s Baby’,3200000,”,’A young couple moves into an infamous New York apartment building to start a family. Things become frightening as Rosemary begins to suspect her unborn baby isn\’t safe around their strange neighbors.’,26.180367,’1968-06-12′,33395426,136,’Released’,’Pray for Rosemary\’s Baby’,7.50,863),(807,’Se7en’,33000000,’http://www.sevenmovie.com/’,’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.’,79.579532,’1995-09-22′,327311859,127,’Released’,’Seven deadly sins. Seven ways to die.’,8.10,5765),(808,’Shrek’,60000000,’http://www.shrek.com/’,’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.’,67.298732,’2001-05-16′,484409218,90,’Released’,’The greatest fairy tale never told.’,7.30,4056),(809,’Shrek 2′,150000000,’http://www.shrek2.com/’,’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.’,47.320801,’2004-05-19′,919838758,93,’Released’,’Once upon another time…’,6.70,2988),(810,’Shrek the Third’,160000000,’http://www.shrekthethird.com/flash/index.html’,’The King of Far Far Away has died and Shrek and Fiona are to become King & Queen. However, Shrek wants to return to his cozy swamp and live in peace and quiet, so when he finds out there is another heir to the throne, they set off to bring him back to rule the kingdom.’,42.986467,’2007-05-17′,798958165,93,’Released’,’Who\’s ready for Thirds?’,6.00,2278),(811,’Silent Running’,1000000,”,’In a future Earth barren of all flora and fauna, the planet\’s ecosystems exist only in large pods attached to spacecraft. When word comes in that the pods are to be jettisoned into space and destroyed so that the spacecraft can be reused for commercial purposes, most of the crew of the Valley Forge rejoice at the prospect of going home. Not so for botanist Freeman Lowell who loves the forest and its creatures, so decides to take matters into his own hands to protect what he loves.’,11.095414,’1972-03-09′,0,89,’Released’,’Amazing companions on an incredible journey…that journeys beyond imagination!’,6.30,177),(812,’Aladdin’,28000000,’http://movies.disney.com/aladdin’,’Princess Jasmine grows tired of being forced to remain in the palace and she sneaks out into the marketplace in disguise where she meets street-urchin Aladdin and the two fall in love, although she may only marry a prince. After being thrown in jail, Aladdin and becomes embroiled in a plot to find a mysterious lamp with which the evil Jafar hopes to rule the land.’,92.982009,’1992-11-25′,504050219,90,’Released’,’Wish granted!’,7.40,3416),(813,’Airplane!’,3500000,”,’Alcoholic pilot, Ted Striker has developed a fear of flying due to wartime trauma, but nevertheless boards a passenger jet in an attempt to woo back his stewardess girlfriend. Food poisoning decimates the passengers and crew, leaving it up to Striker to land the plane with the help of a glue-sniffing air traffic controller and Striker\’s vengeful former Air Force captain, who must both talk him down.’,46.116885,’1980-07-02′,83453539,88,’Released’,’What\’s slower than a speeding bullet, and able to hit tall buildings at a single bound?’,7.10,1074),(816,’Austin Powers: International Man of Mystery’,16500000,”,’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.’,36.157160,’1997-05-02′,67683989,94,’Released’,’If he were any cooler, he\’d still be frozen, baby!’,6.50,1013),(817,’Austin Powers: The Spy Who Shagged Me’,33000000,”,’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.’,18.316151,’1999-06-08′,310940086,95,’Released’,’I\’m back, baby!’,6.20,1011),(818,’Austin Powers in Goldmember’,63000000,’http://www.austinpowers.com/’,’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.’,40.137264,’2002-07-26′,296655431,94,’Released’,’He\’s still evil… He\’s still deadly… and he\’s still surrounded by frickin\’ idiots!’,5.90,979),(819,’Sleepers’,44000000,”,’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.’,16.245068,’1996-10-18′,165615285,147,’Released’,’When friendship runs deeper than blood.’,7.30,715),(820,’JFK’,40000000,”,’New Orleans District Attorney Jim Garrison discovers there\’s more to the Kennedy assassination than the official story.’,26.820410,’1991-12-20′,205405498,189,’Released’,’The story that wonâ��t go away.’,7.50,502),(821,’Judgment at Nuremberg’,3000000,”,’In 1947, four German judges who served on the bench during the Nazi regime face a military tribunal to answer charges of crimes against humanity. Chief Justice Haywood hears evidence and testimony not only from lead defendant Ernst Janning and his defense attorney Hans Rolfe, but also from the widow of a Nazi general, an idealistic U.S. Army captain and reluctant witness Irene Wallner.’,13.338539,’1961-12-01′,10000000,186,’Released’,’The event the world will never forget’,7.60,155),(824,’Moulin Rouge!’,52500000,”,’A celebration of love and creative inspiration takes place in the infamous, gaudy and glamorous Parisian nightclub, at the cusp of the 20th century. A young poet, who is plunged into the heady world of Moulin Rouge, begins a passionate affair with the club\’s most notorious and beautiful star.’,57.374341,’2001-03-09′,179213434,127,’Released’,’No Laws. No Limits. One Rule. Never Fall In Love.’,7.40,1300),(826,’The Bridge on the River Kwai’,3000000,”,’The 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.’,23.109959,’1957-10-02′,33300000,161,’Released’,’It spans a whole new world of entertainment!’,7.70,542),(834,’Underworld: Evolution’,50000000,’http://www.sonypictures.com/movies/underworldawakening/’,’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.’,49.020045,’2006-01-12′,111340801,106,’Released’,’My God. Brother, what have you done?’,6.40,1528),(837,’Videodrome’,5952000,”,’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.’,18.119265,’1983-02-04′,2120439,87,’Released’,’First it controls your mind. Then it destroys your body.’,7.10,454),(838,’American Graffiti’,777000,”,’A couple of high school graduates spend one final night cruising the strip with their buddies before they go off to college.’,19.326115,’1973-08-01′,140000000,110,’Released’,’Where were you in \’62?’,6.90,324),(840,’Close Encounters of the Third Kind’,20000000,”,’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.’,52.456505,’1977-11-16′,303788635,135,’Released’,’We are not alone.’,7.20,1098),(841,’Dune’,40000000,”,’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.’,25.876582,’1984-12-14′,30925690,137,’Released’,’A world beyond your experience, beyond your imagination.’,6.50,562),(844,’2046′,12000000,’http://www.wkw2046.com/’,’2046 is the sequel to Wong Kar-Waisâ�� 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.’,12.664787,’2004-05-20′,19271312,129,’Released’,’Are you still in the mood for love?’,6.90,206),(846,’The X Files’,66000000,”,’Mulder and Scully, now taken off the FBI\’s X Files cases, must find a way to fight the shadowy elements of the government to find out the truth about a conspiracy that might mean the alien colonization of Earth.’,18.599910,’1998-06-19′,189198313,121,’Released’,’Fight the Future’,6.60,488),(848,’Dragonslayer’,18000000,”,’The sorcerer and his apprentice Galen are on a mission to kill an evil dragon in order to save the Kingâ��s 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.’,3.258422,’1981-06-26′,14110013,108,’Released’,’In the Dark Ages, Magic was a weapon. Love was a mystery. Adventure was everywhere… And Dragons were real.’,6.50,67),(849,’Krull’,27000000,”,’A prince and a fellowship of companions set out to rescue his bride from a fortress of alien invaders who have arrived on their home planet.’,9.904881,’1983-07-29′,16519460,117,’Released’,’A world light-years beyond your imagination.’,5.80,129),(850,’A Christmas Story’,0,”,’The comic mishaps and adventures of a young boy named Ralph, trying to convince his parents, teachers, and Santa that a Red Ryder B.B. gun really is the perfect Christmas gift for the 1940s.’,15.128316,’1983-11-18′,19294144,94,’Released’,’Peace, Harmony, Comfort and Joy… Maybe Next Year.’,7.40,344),(853,’Enemy at the Gates’,68000000,”,’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.’,41.273567,’2001-03-13′,96976270,131,’Released’,’Some Men Are Born To Be Heroes.’,7.20,999),(854,’The Mask’,23000000,”,’When timid bank clerk Stanley Ipkiss discovers a magical mask containing the spirit of the Norse god Loki, his entire life changes. While wearing the mask, Ipkiss becomes a supernatural playboy exuding charm and confidence which allows him to catch the eye of local nightclub singer Tina Carlyle. Unfortunately, under the mask\’s influence, Ipkiss also robs a bank, which angers junior crime lord Dorian Tyrell, whose goons get blamed for the heist.’,85.303180,’1994-07-29′,351583407,101,’Released’,’From zero to hero.’,6.60,2472),(855,’Black Hawk Down’,92000000,”,’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.’,44.455166,’2001-12-28′,172989651,144,’Released’,’Leave No Man Behind.’,7.20,1811),(857,’Saving Private Ryan’,70000000,”,’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.’,76.041867,’1998-07-24′,481840909,169,’Released’,’The mission is a man.’,7.90,5048),(859,’Dangerous Liaisons’,14000000,”,’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â��s 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â��t go as planned in this love triangle drama.’,14.480628,’1988-12-16′,34670720,119,’Released’,’Lust. Seduction. Revenge. The Game As You\’ve Never Seen It Played Before.’,7.00,257),(860,’WarGames’,12000000,’http://www.mgm.com/title_title.do?title_star=WARGAMES’,’High School student David Lightman (Matthew Broderick) has a talent for hacking. But while trying to hack into a computer system to play unreleased video games, he unwittingly taps into the Defense Department\’s war computer and initiates a confrontation of global proportions! Together with his girlfriend (Ally Sheedy) and a wizardly computer genius (John Wood), David must race against time to outwit his opponent…and prevent a nuclear Armageddon.’,23.161754,’1983-06-03′,79567667,114,’Released’,’Is it a game, or is it real?’,7.00,504),(861,’Total Recall’,65000000,”,’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.’,43.129703,’1990-06-01′,261317921,113,’Released’,’They stole his mind, now he wants it back.’,7.10,1710),(862,’Toy Story’,30000000,’http://toystory.disney.com/toy-story’,’Led by Woody, Andy\’s toys live happily in his room until Andy\’s birthday brings Buzz Lightyear onto the scene. Afraid of losing his place in Andy\’s heart, Woody plots against Buzz. But when circumstances separate Buzz and Woody from their owner, the duo eventually learns to put aside their differences.’,73.640445,’1995-10-30′,373554033,81,’Released’,”,7.70,5269),(863,’Toy Story 2′,90000000,’http://toystory.disney.com/toy-story-2′,’Andy heads off to Cowboy Camp, leaving his toys to their own devices. Things shift into high gear when an obsessive toy collector named Al McWhiggen, owner of Al\’s Toy Barn kidnaps Woody. Andy\’s toys mount a daring rescue mission, Buzz Lightyear meets his match and Woody has to decide where he and his heart truly belong.’,73.575118,’1999-10-30′,497366869,92,’Released’,’The toys are back!’,7.30,3806),(864,’Cool Runnings’,14000000,”,’When a Jamaican sprinter is disqualified from the Olympic Games, he enlists the help of a dishonored coach to start the first Jamaican Bobsled Team.’,22.409117,’1993-09-30′,154864401,98,’Released’,’One dream. Four Jamaicans. Twenty below zero.’,6.80,491),(865,’The Running Man’,27000000,”,’By 2017, the global economy has collapsed and American society has become a totalitarian police state, censoring all cultural activity. The government pacifies the populace by broadcasting a number of game shows in which convicted criminals fight for their lives, including the gladiator-style The Running Man, hosted by the ruthless Damon Killian, where â��runnersâ�� attempt to evade â��stalkersâ�� and certain death for a chance to be pardoned and set free.’,30.131498,’1987-11-13′,38122105,101,’Released’,’A game nobody survives. But Schwarzenegger has yet to play.’,6.40,703),(866,’Finding Neverland’,25000000,”,’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â��s life and the inspiration that lead him to create his masterpiece â��Peter Pan.â��’,34.160448,’2004-10-17′,116766556,106,’Released’,’Where will your imagination take you?’,7.20,1223),(868,’Tsotsi’,3000000,’http://www.tsotsimovie.com/’,’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 in the process learns that maybe the gangster life isnâ��t the best way.’,2.504169,’2005-08-18′,9879971,94,’Released’,’In this world… Redemption comes just once.’,6.90,94),(869,’Planet of the Apes’,100000000,”,’After a spectacular crash-landing on an uncharted planet, brash astronaut Leo Davidson 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.’,51.188633,’2001-07-25′,362211740,119,’Released’,’You\’ll be sorry you were ever born human’,5.60,1243),(872,’Singin\’ in the Rain’,2540800,”,’In 1927 Hollywood, Don Lockwood and Lina Lamont are a famous on-screen romantic pair in silent movies, but Lina mistakes the on-screen romance for real love. When their latest film is transformed into a musical, Don has the perfect voice for the songs, but strident voice faces the studio to dub her voice. Aspiring actress, Kathy Selden is brought in and, while she is working on the movie, Don falls in love with her.’,36.556954,’1952-04-10′,7200000,103,’Released’,’What a Glorious Feeling!’,7.80,727),(873,’The Color Purple’,15000000,”,’An epic tale spanning forty years in the life of Celie (Whoopi Goldberg), an African-American woman living in the South who survives incredible abuse and bigotry. After Celie\’s abusive father marries her off to the equally debasing \”Mister\” Albert Johnson (Danny Glover), things go from bad to worse, leaving Celie to find companionship anywhere she can. She perseveres, holding on to her dream of one day being reunited with her sister in Africa. Based on the novel by Alice Walker.’,17.571533,’1985-12-18′,146292009,154,’Released’,’It\’s about life. It\’s about love. It\’s about us.’,7.70,338),(874,’A Man for All Seasons’,3900000,”,’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 Thomas More stands up in opposition to the King even though he knows heâ��s risking his own life. An award winning film from 1966.’,9.541688,’1966-12-12′,28350000,120,’Released’,’…a motion picture for all times!’,7.50,89),(879,’Hook’,70000000,”,’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. 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, in this family-oriented fantasy from director Steven Spielberg.’,33.648404,’1991-12-11′,300854823,144,’Released’,’What if Peter Pan grew up?’,6.60,1532),(881,’A Few Good Men’,40000000,’http://www.sonypictures.com/movies/afewgoodmen/’,’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.’,40.379966,’1992-12-11′,243240178,138,’Released’,”,7.10,877),(887,’The Best Years of Our Lives’,2100000,”,’It\’s the hope that sustains the spirit of every GI: the dream of the day when he will finally return home. For three WWII veterans, the day has arrived. But for each man, the dream is about to become a nightmare. Captain Fred Derry is returning to a loveless marriage; Sergeant Al Stephenson is a stranger to a family that\’s grown up without him; and young sailor Homer Parrish is tormented by the loss of his hands. Can these three men find the courage to rebuild their world? Or are the best years of their lives a thing of the past?’,8.387170,’1946-12-25′,23650000,172,’Released’,’Three wonderful loves in the best picture of the year!’,7.60,143),(888,’The Flintstones’,46000000,”,’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.’,28.964162,’1994-05-26′,341631208,91,’Released’,’Yabba-Dabba-Doo!’,5.00,543),(889,’The Flintstones in Viva Rock Vegas’,83000000,’http://www.vivarockvegas.com/’,’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?’,6.248309,’2000-04-28′,59468275,90,’Released’,’Get ready to rock!’,4.40,134),(905,’Die Büchse der Pandora’,0,”,’The rise and inevitable fall of an amoral but naive young woman whose insouciant eroticism inspires lust and violence in those around her.’,1.824184,’1929-01-30′,0,109,’Released’,”,7.60,45),(907,’Doctor Zhivago’,11000000,”,’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 Christie play two protagonists who in fact love each other yet because of their current situation cannot find a way be together.’,12.854853,’1965-12-22′,111858363,197,’Released’,’Turbulent were the times and fiery was the love story of Zhivago, his wife and the passionate, tender Lara.’,7.40,247),(913,’The Thomas Crown Affair’,48000000,”,’A very rich and successful playboy amuses himself by stealing artwork, but may have met his match in a seductive detective.’,18.102572,’1999-08-06′,124305181,113,’Released’,’How do you get the man who has everything?’,6.60,339),(920,’Cars’,120000000,’http://disney.go.com/disneyvideos/animatedfilms/cars/’,’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.’,82.643036,’2006-06-08′,461983149,117,’Released’,’Ahhh… it\’s got that new movie smell.’,6.60,3877),(921,’Cinderella Man’,88000000,’http://www.cinderellamanmovie.com/index.php’,’The true story of boxer, Jim Braddock who, in the 1920â��s after his retirement, has a surprise comeback in order to get him and his family out of a socially poor state.’,24.100863,’2005-06-02′,108539911,144,’Released’,’One man\’s extraordinary fight to save the family he loved.’,7.30,616),(924,’Dawn of the Dead’,28000000,’http://www.dawnofthedeadmovie.net/’,’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.’,44.529429,’2004-03-19′,102356381,101,’Released’,’When the undead rise, civilization will fall.’,6.80,1016),(925,’Do the Right Thing’,6500000,”,’On the hottest day of the year on a street in the Bedford-Stuyvesant section of Brooklyn, everyone\’s hate and bigotry smolders and builds until it explodes into violence.’,15.580335,’1989-06-30′,37295445,120,’Released’,’It\’s the hottest day of the summer. You can do nothing, you can do something, or you can…’,7.60,292),(926,’Galaxy Quest’,45000000,”,’The stars of a 1970s sci-fi show – now scraping a living through re-runs and sci-fi conventions – are beamed aboard an alien spacecraft. Believing the cast\’s heroic on-screen dramas are historical documents of real-life adventures, the band of aliens turn to the ailing celebrities for help in their quest to overcome the oppressive regime in their solar system.’,30.816341,’1999-12-23′,90683916,102,’Released’,’A comedy of Galactic Proportions.’,6.90,710),(927,’Gremlins’,11000000,”,’When Billy Peltzer is given a strange but adorable pet named Gizmo for Christmas, he inadvertently breaks the three important rules of caring for a Mogwai, and unleashes a horde of mischievous gremlins on a small town.’,45.072136,’1984-06-07′,153083102,106,’Released’,’Don\’t get him wet, keep him out of bright light, and never feed him after midnight.’,6.90,1596),(928,’Gremlins 2: The New Batch’,50000000,”,’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!’,33.986370,’1990-06-15′,41482207,106,’Released’,’Here they grow again.’,6.20,652),(935,’Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb’,1800000,”,’Insane General Jack D. Ripper initiates a nuclear strike on the Soviet Union. As soon as the actions of General \”Buck\” Turgidson are discovered, a war room full of politicians, generals and a Russian diplomat all frantically try to stop the nuclear strike. Near the end is a scene that is probably the most uniquely unforgettable performance of Slim Pickens in his movie career. Peter Sellers plays multiple roles in this film.’,41.996783,’1964-01-29′,9440272,95,’Released’,’The hot-line suspense comedy’,8.00,1442),(943,’Lethal Weapon 3′,35000000,”,’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.’,36.172182,’1992-05-15′,321731527,118,’Released’,’The magic is back again!’,6.40,811),(944,’Lethal Weapon 4′,140000000,”,’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.’,24.855701,’1998-07-10′,285444603,127,’Released’,’The faces you love. The action you expect.’,6.30,767),(947,’Lawrence of Arabia’,15000000,”,’An epic about British officer T.E. Lawrence\’s mission to aid the Arab tribes in their revolt against the Ottoman Empire during the First World War. Lawrence becomes a flamboyant, messianic figure in the cause of Arab unity but his psychological instability threatens to undermine his achievements.’,41.286336,’1962-12-10′,69995385,216,’Released’,”,7.80,851),(948,’Halloween’,300000,’http://www.theofficialjohncarpenter.com/halloween/’,’In John Carpenter\’s horror classic, a psychotic murderer, institutionalized since childhood for the murder of his sister, escapes and stalks a bookish teenage girl and her friends while his doctor chases him through the streets.’,30.301307,’1978-10-25′,70000000,91,’Released’,’The Night He Came Home’,7.40,1035),(950,’Ice Age: The Meltdown’,80000000,’http://www.iceagemovies.com/films/ice-age-the-meltdown’,’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.’,85.115058,’2006-03-23′,660940780,91,’Released’,’The Ice age is melting away.’,6.50,2951),(951,’Kindergarten Cop’,15000000,”,’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 â�¦ in more ways than one.’,5.411154,’1990-12-21′,201957688,111,’Released’,’Go ahead, you tell him you didn\’t do your homework.’,5.80,628),(953,’Madagascar’,75000000,”,’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.’,48.110909,’2005-05-25′,532680671,86,’Released’,’Someone\’s got a zoo loose.’,6.60,3237),(954,’Mission: Impossible’,80000000,’http://www.missionimpossible.com/’,’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.’,75.290998,’1996-05-22′,457696359,110,’Released’,’Expect the Impossible.’,6.70,2631),(955,’Mission: Impossible II’,125000000,’http://www.missionimpossible.com/’,’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, should Hunt choose to accept it, plunges him into the center of an international crisis of terrifying magnitude.’,54.931334,’2000-05-24′,546388105,123,’Released’,’Expect the impossible again.’,5.90,1928),(956,’Mission: Impossible III’,150000000,’http://www.missionimpossible.com/’,’Retired from active duty to train new IMF agents, Ethan Hunt is called back into action to confront sadistic arms dealer, Owen Davian. Hunt must try to protect his girlfriend while working with his new team to complete the mission.’,63.079003,’2006-05-03′,397850012,126,’Released’,’The Mission Begins 05:05:06.’,6.50,2028),(957,’Spaceballs’,22700000,’http://www.mgm.com/view/movie/1873/Spaceballs/’,’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?’,39.890798,’1987-06-24′,38119483,96,’Released’,’May the schwartz be with you’,6.70,902),(978,’Seven Years in Tibet’,70000000,”,’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.’,16.929910,’1997-09-12′,131457682,136,’Released’,’At the end of the world his real journey began.’,7.00,630),(979,’Irréversible’,0,”,’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.’,32.476098,’2002-05-22′,792,97,’Released’,’Time destroys everything.’,7.10,538),(985,’Eraserhead’,10000,”,’Henry Spencer tries to survive his industrial environment, his angry girlfriend, and the unbearable screams of his newly born mutant child.’,20.399578,’1977-03-19′,7000000,89,’Released’,’Where your nightmares end…’,7.50,485),(987,’The Front Page’,4000000,”,’A journalist suffering from burn-out wants to finally say goodbye to his office â�� but his boss doesnâ��t like the idea one bit.’,4.117968,’1974-12-01′,0,105,’Released’,”,6.90,68),(990,’The Hustler’,2000000,”,’Fast Eddie Felson is a small-time pool hustler with a lot of talent but a self-destructive attitude. His bravado causes him to challenge the legendary Minnesota Fats to a high-stakes match.’,17.639478,’1961-09-25′,7600000,134,’Released’,’They called him Fast Eddie. He was a winner. He was a loser. He was a hustler.’,7.60,240),(1018,’Mulholland Drive’,15000000,”,’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.’,31.609850,’2001-05-16′,20117339,147,’Released’,’An actress longing to be a star. A woman searching for herself. Both worlds will collide… on Mulholland Drive.’,7.60,1477),(1024,’Heavenly Creatures’,5000000,’http://www.miramax.com/movie/heavenly-creatures’,’Based on the true story of Juliet Hulme and Pauline Parker, two close friends who share a love of fantasy and literature, who conspire to kill Pauline\’s mother when she tries to end the girls\’ intense and obsessive relationship.’,8.753409,’1994-09-02′,3049135,99,’Released’,’From a secret world no one could see… came a crime no one could believe.’,7.00,294),(1051,’The French Connection’,1800000,”,’Tough narcotics detective \’Popeye\’ Doyle is in hot pursuit of a suave French drug dealer who may be the key to a huge heroin-smuggling operation.’,15.978136,’1971-10-09′,41158757,104,’Released’,’There are no rules and no holds barred when Popeye cuts loose!’,7.40,422),(1073,’Arlington Road’,21500000,”,’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.’,12.819447,’1999-03-19′,0,117,’Released’,’Your Paranoia Is Real.’,7.00,239),(1088,’Whale Rider’,8000000,’http://www.whaleriderthemovie.com/’,’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 tradition to pick a male leader. Pai loves Koro more than anyone in the world, but she must fight him and a thousand years of tradition to fulfill her destiny.’,12.439495,’2003-01-30′,41400000,101,’Released’,”,7.10,111),(1090,’The Thirteenth Floor’,16000000,”,’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.’,19.890428,’1999-04-16′,18564088,100,’Released’,’Question reality. You can go there even though it doesn\’t exist.’,6.80,378),(1091,’The Thing’,15000000,’http://www.theofficialjohncarpenter.com/the-thing/’,’Scientists in the Antarctic are confronted by a shape-shifting alien that assumes the appearance of the people that it kills.’,52.731379,’1982-06-25′,19629760,109,’Released’,’Man is The Warmest Place to Hide.’,7.80,1588),(1103,’Escape from New York’,6000000,’http://www.theofficialjohncarpenter.com/escape-from-new-york/’,’In 1997, the island of Manhattan 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.’,24.351305,’1981-05-22′,50244700,99,’Released’,’1997. New York City is now a maximum security prison. Breaking out is impossible. Breaking in is insane.’,6.90,703),(1116,’The Wind That Shakes the Barley’,6500000,”,’Set during the 1920â��s Irish revolution against the British, an Irish medical student is about to start his new job in London â�� but after he witnesses the mercenary atrocities of the British, he decides to join his brother in the IRA to fight for Irish independence.’,6.787967,’2006-05-18′,22889018,124,’Released’,’Winner of the PALME D\’OR at the 2006 Cannes Film Festival.’,7.10,154),(1123,’Catch a Fire’,0,”,’The true story of anti-apartheid activists in South Africa, and particularly the life of Patrick Chamusso, a timid foreman at Secunda CTL, the largest synthetic fuel plant in the world. Patrick is wrongly accused, imprisoned and tortured for an attempt to bomb the plant, with the injustice transforming the apolitical worker into a radicalised insurgent, who then carries out his own successful sabotage mission.’,4.052219,’2006-10-27′,4291965,101,’Released’,’The spark that ignites us, unites us.’,6.40,25),(1124,’The Prestige’,40000000,’http://wwws.warnerbros.de/theprestige/’,’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.’,74.440708,’2006-10-19′,109676311,130,’Released’,’Are You Watching Closely?’,8.00,4391),(1125,’Dreamgirls’,70000000,’http://www.dreamgirlsmovie.com/’,’Three young women â�� Deena Jones, Effie White and Lorrell Robinson â�� dream of becoming pop stars and they get their wish when they\’re chosen to be backup singers for the legendary James \’Thunder\’ Early.’,14.486311,’2006-12-25′,154937680,134,’Released’,’One Dream Will Change Everything’,6.60,284),(1164,’Babel’,25000000,”,’Tragedy strikes a married couple on vacation in the Moroccan desert, touching off an interlocking story involving four different families.’,25.785925,’2006-09-08′,135330182,143,’Released’,’If You Want to be Understood…Listen’,6.90,1055),(1165,’The Queen’,15000000,’http://www.thequeenmovie.co.uk/’,’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.’,19.113278,’2006-09-15′,123384128,103,’Released’,’Our Leaders. Ourselves.’,6.80,338),(1213,’The Talented Mr. Ripley’,40000000,’http://www.miramax.com/movie/the-talented-mr-ripley/’,’Tom Ripley is a calculating young man who believes it\’s better to be a fake somebody than a real nobody. Opportunity knocks in the form of a wealthy U.S. shipbuilder who hires Tom to travel to Italy to bring back his playboy son, Dickie. Ripley worms his way into the idyllic lives of Dickie and his girlfriend, plunging into a daring scheme of duplicity, lies and murder.’,31.385257,’1999-12-25′,128798265,139,’Released’,’How far would you go to become someone else?’,7.00,767),(1245,’The Remains of the Day’,11500000,”,’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.’,15.355589,’1993-11-05′,23237911,134,’Released’,’Diamond in the Rough’,7.50,202),(1246,’Rocky Balboa’,24000000,’http://www.rocky.com/’,’When he loses a highly publicized virtual boxing match to ex-champ Rocky Balboa, reigning heavyweight titleholder, Mason Dixon retaliates by challenging Rocky 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.’,30.445257,’2006-12-20′,155721132,102,’Released’,’It ain\’t over \’til it\’s over.’,6.50,835),(1248,’Hannibal Rising’,50000000,’http://hannibalrising.com/’,’The story of the early, murderous roots of the cannibalistic killer, Hannibal 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.’,6.567065,’2007-02-06′,82169884,121,’Released’,’It started with revenge.’,6.00,654),(1250,’Ghost Rider’,110000000,’http://www.sonypictures.com/movies/ghostrider/’,’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 go-getting reporter, and also with Mephistopheles, who offers to release Johnny\’s soul if Johnny becomes the fabled, fiery \’Ghost Rider\’.’,46.834704,’2007-02-16′,228738393,114,’Released’,’Hell Is About To Be Unleashed’,5.20,1712),(1251,’Letters from Iwo Jima’,19000000,’http://iwojimathemovie.warnerbros.com/lettersofiwojima/framework/framework.html’,’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.’,24.472480,’2006-12-19′,68673228,141,’Released’,’The battle of Iwo Jima seen through the eyes of the Japanese soldiers.’,7.20,541),(1255,’괴물’,11000000,’http://www.hostmovie.com/’,’Gang-du is a dim-witted man working at his father\’s tiny snack bar near the Han River. One day, Gang-du\’s one and only daughter Hyun-seo comes back from school irritated. She is angry at her uncle, Nam-il, who visited her school as her guardian shamelessly drunk. Ignoring her father\’s excuses for Nam-il, Hyun-seo is soon engrossed in her aunt Nam-joo\’s archery tournament on TV. Meanwhile, outside of the snack bar, people are fascinated by an unidentified object hanging onto a bridge. In an instant, the object reveals itself as a terrifying creature turning the riverbank into a gruesome sea of blood¡¦ Amid the chaos, Hyun-seo is helplessly snatched up by the creature right before Gang-du\’s eyes. These unforeseen circumstances render the government powerless to act. But receiving a call of help from Hyun-seo, the once-ordinary citizen Gang-du and his family are thrust into a battle with the monster to rescue their beloved Hyun-seo.’,27.655270,’2006-07-27′,88489643,119,’Released’,’Monsters are real.’,6.70,537),(1257,’Because I Said So’,0,’http://www.becauseisaidsomovie.com/index_intro.htm’,’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.’,18.678415,’2007-02-02′,69485490,102,’Released’,’She\’s just your normal, overprotective, overbearing, over-the-top mother.’,5.80,191),(1259,’Notes on a Scandal’,15000000,’http://www.foxsearchlight.com/NOAS/’,’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.’,12.576381,’2006-12-25′,49469904,92,’Released’,’One woman\’s secret is another woman\’s power. One woman\’s fear is another woman\’s weapon. One woman\’s life is in another woman\’s hands….’,6.90,235),(1262,’Stranger Than Fiction’,30000000,’http://www.sonypictures.com/homevideo/strangerthanfiction/’,’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.’,32.267890,’2006-09-09′,53653224,113,’Released’,’Harold Crick isn\’t ready to go. Period.’,7.10,721),(1265,’Bridge to Terabithia’,60000000,’http://disney.go.com/disneyvideos/liveaction/bridgetoterabithia/’,’Jesse Aarons trained all summer to become the fastest runner in school, so he\’s very upset when newcomer Leslie Burke outruns him and everyone else. Despite this and other differences, including that she\’s rich, he\’s poor, and she\’s a city girl, he\’s a country boy, the two become fast friends. Together, they create Terabithia, a land of monsters, trolls, ogres, and giants and rule as king and queen.’,40.646102,’2007-02-16′,137587063,96,’Released’,’Close your eyes, but keep your mind wide open.’,7.00,1113),(1266,’Street Kings’,20000000,”,’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.’,18.666876,’2008-04-10′,65569869,109,’Released’,’Their city. Their rules. No prisoners.’,6.30,363),(1268,’Mr. Bean\’s Holiday’,25000000,”,’Mr. Bean wins a trip to Cannes where he unwittingly separates a young boy from his father and must help the two reunite. On the way he discovers France, bicycling and true love, among other things.’,27.683874,’2007-03-22′,229736344,90,’Released’,’Disaster has a passport.’,6.10,663),(1271,’300′,65000000,’http://300themovie.warnerbros.com’,’Based on Frank Miller\’s graphic novel, \”300\” is very loosely based 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.’,65.197968,’2006-12-09′,422610419,117,’Released’,’Spartans, prepare for glory!’,7.00,4997),(1272,’Sunshine’,50000000,”,’Fifty years into the future, the sun is dying, and Earth is threatened by arctic temperatures. A team of astronauts is sent to revive the Sun â�� but the mission fails. Seven years later, a new team is sent to finish the mission as mankindâ��s last hope.’,51.502884,’2007-04-05′,32017803,107,’Released’,’If the sun dies, so do we.’,7.00,1182),(1273,’TMNT’,34000000,’https://www.warnerbros.com/tmnt’,’After the defeat of their old arch nemesis, The Shredder, the Turtles have grown apart as a family. Struggling to keep them together, their rat sensei, Splinter, becomes worried when strange things begin to brew in New York City.’,18.392170,’2007-03-23′,95608995,90,’Released’,”,6.00,345),(1282,’Dogtown and Z-Boys’,0,’http://www.sonypictures.com/classics/dogtown/’,’Dogtown 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.’,3.291609,’2001-01-18′,0,91,’Released’,”,7.20,52),(1359,’American Psycho’,7000000,”,’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.’,45.310443,’2000-04-13′,34266564,102,’Released’,’I think my mask of sanity is about to slip.’,7.30,2066),(1360,’Frida’,12000000,”,’\”Frida\” chronicles the life Frida Kahlo shared unflinchingly and openly with Diego Rivera, as the young couple took the art world by storm. From her complex and enduring relationship with her mentor and husband to her illicit and controversial affair with Leon Trotsky, to her provocative and romantic entanglements with women, Frida Kahlo lived a bold and uncompromising life as a political, artistic, and sexual revolutionary’,18.422327,’2002-08-29′,56298474,123,’Released’,’Prepare to be seduced’,7.30,383),(1365,’Monster\’s Ball’,4000000,”,’Set in the southern USA, a racist white man, Hank, 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 inter-racial affair leads to confusion and new ideas for the two unlikely lovers.’,14.042041,’2001-11-11′,44909486,111,’Released’,’A lifetime of change can happen in a single moment.’,6.50,250),(1366,’Rocky’,1000000,”,’When world heavyweight boxing champion, Apollo Creed wants to give an unknown fighter a shot at the title as a publicity stunt, his handlers choose palooka Rocky Balboa, an uneducated collector for a Philadelphia loan shark. Rocky teams up with trainer Mickey Goldmill to make the most of this once in a lifetime break.’,72.198080,’1976-11-21′,117235147,119,’Released’,’His whole life was a million-to-one shot.’,7.50,1791),(1368,’First Blood’,15000000,”,’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.’,63.071046,’1982-10-22′,125212904,93,’Released’,’This time he\’s fighting for his life.’,7.20,1488),(1369,’Rambo: First Blood Part II’,44000000,”,’John Rambo is released from prison by the government for a top-secret covert mission to the last place on Earth he\’d want to return – the jungles of Vietnam.’,38.653969,’1985-05-21′,300400432,96,’Released’,’What most people call hell, he calls home.’,6.30,864),(1370,’Rambo III’,63000000,”,’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.’,31.294717,’1988-05-24′,189015611,102,’Released’,’The first was for himself. The second for his country. This time it\’s to save his friend.’,5.70,690),(1372,’Blood Diamond’,100000000,”,’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.’,52.792678,’2006-12-07′,170877916,143,’Released’,’It will cost you everything.’,7.30,2281),(1378,’Shortbus’,2000000,’http://www.shortbusthemovie.com’,’A group of New Yorkers caught up in their milieu converge at an underground salon infamous for its blend of art, music, politics, and carnality.. The characters converge in a weekly Brooklyn salon loosely inspired by various underground NYC gatherings that took place in the early 2000\’s.’,14.846001,’2006-05-20′,5179037,101,’Released’,’Open Your Mind. And Everything Else.’,6.30,140),(1381,’The Fountain’,35000000,’http://thefountainmovie.warnerbros.com/’,’Spanning over one thousand years, and three parallel stories, The Fountain is a story of love, death, spirituality, and the fragility of our existence in this world.’,24.606012,’2006-09-06′,15304890,96,’Released’,’Death is the road to awe’,6.80,827),(1382,’Me and You and Everyone We Know’,0,’http://www.meandyoumovie.com/’,’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éra d\’Or at Cannes.’,9.719094,’2005-06-17′,0,90,’Released’,”,7.00,107),(1389,’Out of Sight’,48000000,”,’Meet Jack Foley, a smooth criminal who bends the law and is determined to make one last heist. Karen Sisco is a federal marshal who chooses all the right moves â�¦ and all the wrong guys. Now they\’re willing to risk it all to find out if there\’s more between them than just the law. Variety hails Out of Sight as \”a sly, sexy, vastly entertaining film.\”‘,16.000178,’1998-06-26′,77745568,123,’Released’,’Opposites attract.’,6.50,333),(1391,’Y tu mamá también’,5000000,”,’In Mexico, two teenage boys and an attractive older woman embark on a road trip and learn a thing or two about life, friendship, sex, and each other.’,16.890285,’2001-06-08′,33616692,106,’Released’,’Life has its ways of teaching. Life has its ways to confuse us. Life has its ways to move us. Life has its ways to amaze. Life has its ways to hurt us. Life has its ways to heal. Life has its ways to inspire.’,7.30,315),(1402,’The Pursuit of Happyness’,55000000,’http://www.sonypictures.com/homevideo/thepursuitofhappyness/’,’The true story of Christopher Gardner, who invests heavily in a device known as a \’Bone Density Scanner\’, only to find himself struggle to sell the product as it\’s just marginally better than the current technology, and much more expensive. His wife leaves him, he loses his house, bank account and credit cards and, now forced to live out in the streets with his young son, he\’s desperate to find a steady job. He takes on a job as a stockbroker but, before he can receive pay, he needs to go through 6 months of training, and must sell his devices.’,80.581367,’2006-12-14′,307077295,117,’Released’,”,7.70,2525),(1408,’Cutthroat Island’,98000000,”,’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.’,7.029308,’1995-12-22′,10017322,119,’Released’,’The Course Has Been Set. There Is No Turning Back. Prepare Your Weapons. Summon Your Courage. Discover the Adventure of a Lifetime!’,5.70,136),(1412,’Sex, Lies, and Videotape’,1200000,”,’A sexually repressed woman\’s husband is having an affair with her sister. The arrival of a visitor with a rather unusual fetish changes everything.’,10.869492,’1989-08-18′,0,100,’Released’,”,6.70,185),(1415,’Party Monster’,5000000,”,’The New York club scene of the 80s and 90s was a world like no other. Into this candy-colored, mirror ball playground stepped Michael Alig, a wannabe from nowhere special. Under the watchful eye of veteran club kid James St. James, Alig quickly rose to the top… and there was no place to go but down.’,4.129165,’2003-09-05′,742898,98,’Released’,’\’Til death do they party…’,5.90,58),(1417,’El laberinto del fauno’,19000000,’http://www.panslabyrinth.com’,’Living with her tyrannical stepfather in a new home with her pregnant mother, 10-year-old Ofelia feels alone until she explores a decaying labyrinth guarded by a mysterious faun who claims to know her destiny. If she wishes to return to her real father, Ofelia must complete three terrifying tasks.’,90.809408,’2006-05-27′,83258226,118,’Released’,’What happens when make-believe believes it\’s real?’,7.60,3041),(1422,’The Departed’,90000000,’http://thedeparted.warnerbros.com/’,’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. 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.’,63.429157,’2006-10-05′,289847354,151,’Released’,’Lies. Betrayal. Sacrifice. How far will you take it?’,7.90,4339),(1424,’November’,0,”,’Sophie Jacobs is going through the most difficult time of her life. Now, she just has to find out if it\’s real.’,5.742359,’2004-07-22′,0,73,’Released’,”,4.90,11),(1427,’Perfume: The Story of a Murderer’,50000000,’http://www.parfum.film.de/’,’Jean-Baptiste Grenouille, born in the stench of 18th century Paris, develops a superior olfactory sense, which he uses to create the world\’s finest perfumes. However, his work takes a dark turn as he tries to preserve scents in the search for the ultimate perfume.’,42.551902,’2006-09-13′,132180323,147,’Released’,’Based on the best-selling novel’,7.10,1165),(1428,’Once Upon a Time in Mexico’,29000000,”,’Hitman \”El Mariachi\” becomes involved in international espionage involving a psychotic CIA agent and a corrupt Mexican general.’,27.555646,’2003-09-11′,98185582,102,’Released’,’The Time Has Come.’,6.20,594),(1429,’25th Hour’,15000000,”,’The filmed adaptation from 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.’,30.196039,’2002-12-16′,13060843,135,’Released’,’This life was so close to never happening.’,7.20,629),(1430,’Bowling for Columbine’,4000000,’http://www.bowlingforcolumbine.com/index.php’,’Why do 11,000 people die in America each year at the hands of gun violence? Talking heads yelling from every TV camera blame everything from Satan to video games. But are we that much different from many other countries? What sets us apart? How have we become both the master and victim of such enormous amounts of violence? This is not a film about gun control. It is a film about the fearful heart and soul of the United States, and the 280 million Americans lucky enough to have the right to a constitutionally protected Uzi. From a look at the Columbine High School security camera tapes to the home of Oscar-winning NRA President Charlton Heston, from a young man who makes homemade napalm with The Anarchist\’s Cookbook to the murder of a six-year-old girl by another six-year-old, Bowling for Columbine is a journey through America, through our past, hoping to discover why our pursuit of happiness is so riddled with violence.’,11.414843,’2002-10-09′,35564473,120,’Released’,’One nation under the gun.’,7.30,453),(1435,’Tarnation’,218,”,’Filmmaker Jonathan Caouette\’s documentary on growing up with his schizophrenic mother — a mixture of snapshots, Super-8, answering machine messages, video diaries, early short films, and more — culled from 19 years of his life.’,1.063439,’2003-10-19′,1162014,91,’Released’,”,7.50,22),(1439,’Anna and the King’,75000000,”,’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.’,13.327372,’1999-12-16′,0,148,’Released’,”,6.40,197),(1440,’Little Children’,26000000,’http://www.littlechildrenmovie.com’,’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.’,11.942862,’2006-10-06′,14821658,136,’Released’,”,6.90,240),(1443,’The Virgin Suicides’,6000000,’http://www.paramountvantage.com/virginsuicides/html_3/’,’A group of male friends become obsessed with five mysterious sisters who are sheltered by their strict, religious parents.’,26.218912,’1999-04-21′,10409377,97,’Released’,’Beautiful, mysterious, haunting, invariably fatal. Just like life.’,7.10,817),(1452,’Superman Returns’,270000000,’http://www.superman.com’,’Superman returns to discover his 5-year absence has 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 Man of Steel.’,57.925623,’2006-06-28′,391081192,154,’Released’,”,5.40,1400),(1487,’Hellboy’,66000000,’http://www.sonypictures.com/homevideo/hellboy/’,’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.’,47.479755,’2004-04-02′,99318987,122,’Released’,’From the Dark Side to Our Side.’,6.50,2225),(1491,’The Illusionist’,40000000,”,’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.’,36.960953,’2006-08-18′,86915017,110,’Released’,’Nothing Is What It Seems.’,7.10,1615),(1493,’Miss Congeniality’,45000000,”,’When the local FBI office receives a letter from a terrorist known only as \’The Citizen\’, it\’s quickly determined that he\’s planning his next act at the Miss America beauty pageant. Because tough-as-nails Gracie Hart is the only female Agent at the office, she\’s chosen to go undercover as the contestant from New Jersey.’,32.624355,’2000-12-14′,212000000,111,’Released’,’Never Mess With An Agent In A Dress.’,6.10,961),(1494,’滿å��ç�¡å¸¶é»�é��ç�²’,110,’http://ent.sina.com.cn/hjj/’,’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.’,9.950505,’2006-12-21′,0,114,’Released’,’Unspeakable secrets are hidden within the Forbidden City.’,6.60,203),(1495,’Kingdom of Heaven’,130000000,’http://www.kingdomofheavendvd.com/’,’After his wife dies, a blacksmith named Balian is thrust into royalty, political intrigue and bloody holy wars during the Crusades.’,44.490453,’2005-05-03′,211643158,144,’Released’,’Be without fear in the face of your enemies. Safeguard the helpless, and do no wrong’,6.60,1157),(1497,’Teenage Mutant Ninja Turtles II: The Secret of the Ooze’,25000000,”,’The Turtles and the Shredder battle once again, this time for the last cannister of the ooze that created the Turtles, which Shredder wants to create an army of new mutants.’,15.505137,’1991-03-22′,78000000,88,’Released’,’Cowabunga, it\’s the new turtle movie.’,5.80,286),(1499,’Teenage Mutant Ninja Turtles III’,21000000,”,’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.’,10.207065,’1993-03-17′,42000000,96,’Released’,’The Turtles Are Back….In Time.’,5.10,184),(1523,’The Last King of Scotland’,6000000,”,’Young Scottish doctor, Nicholas Garrigan decides it\’s time for an adventure after he finishes his formal education, so he decides to try his luck in Uganda, and arrives during the downfall of President Obote. General Idi Amin comes to power and asks Garrigan to become his personal doctor.’,26.286954,’2006-09-01′,48027970,121,’Released’,’Charming. Magnetic. Murderous.’,7.40,558),(1535,’Spy Game’,92000000,”,’Veteran spy Nathan Muir is on the verge of retiring from the CIA when he learns that his one-time protégé 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.’,27.166757,’2001-11-18′,143049560,126,’Released’,’It\’s not how you play the game. It\’s how the game plays you.’,6.80,579),(1537,’Changing Lanes’,45000000,”,’A rush-hour fender-bender on New York City\’s crowded FDR Drive, under most circumstances, wouldn\’t set off a chain reaction that could decimate two people\’s lives. But on this day, at this time, a minor collision will turn two complete strangers into vicious adversaries. Their means of destroying each other might be different, but their goals, ultimately, will be the same: Each will systematically try to dismantle the other\’s life in a reckless effort to reclaim something he has lost.’,17.270539,’2002-04-07′,94935764,89,’Released’,’An ambitious lawyer, a desperate father, they had no reason to meet, until today,’,5.90,299),(1538,’Collateral’,65000000,”,’Cab driver Max picks up a man who offers him $600 to drive him around. But the promise of easy money sours when Max realizes his fare is an assassin.’,44.815022,’2004-08-04′,217764291,120,’Released’,’It started like any other night.’,7.00,1451),(1542,’Office Space’,10000000,”,’Three office workers strike back at their evil employers by hatching a hapless attempt to embezzle money.’,18.366362,’1999-02-19′,12827813,89,’Released’,’Work sucks.’,7.40,1050),(1544,’Imagine Me & You’,0,’http://www.foxsearchlight.com/imaginemeandyou/’,’During her wedding ceremony, Rachel notices Luce in the audience and feels instantly drawn to her. The two women become close friends, and when Rachel learns that Luce is a lesbian, she realizes that despite her happy marriage to Heck, she is falling for Luce. As she questions her sexual orientation, Rachel must decide between her stable relationship with Heck and her exhilarating new romance with Luce.’,9.100352,’2005-02-01′,2455831,93,’Released’,’There goes the bride.’,7.00,177),(1546,’Thumbsucker’,0,”,’Justin, a teenager boy, throws himself and everyone around him into chaos when he attempts to break free from his addiction to his thumb.’,4.757625,’2005-01-23′,1919197,96,’Released’,”,6.10,67),(1547,’The Lost Boys’,8500000,”,’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 of teenage friends take it upon themselves to hunt down the vampires that they suspect of a few mysterious murders and restore peace and calm to their town.’,24.750909,’1987-07-31′,32222567,97,’Released’,’Sleep all day. Party all night. Never grow old. Never die. It\’s fun to be a vampire.’,6.80,538),(1548,’Ghost World’,7000000,”,’A quirky girl tries to figure out what to do now that she had graduated from high school, and forms a friendship with an eccentric 40-year-old record collector after playing a prank on him with her best friend.’,14.072941,’2001-07-20′,0,111,’Released’,’Accentuate the negative.’,7.10,426),(1550,’Pieces of April’,300000,’http://www.piecesofaprilmovie.com/’,’Quirky and rebellious April Burns lives with her boyfriend in a low-rent New York City apartment miles away from her emotionally distant family. But when she discovers that her mother has a fatal form of breast cancer, she invites the clan to her place for Thanksgiving. While her father struggles to drive her family into the city, April — an inexperienced cook — runs into kitchen trouble and must ask a neighbor for help.’,4.270596,’2003-01-19′,0,81,’Released’,’She\’s the one in every family.’,6.40,64),(1551,’Flatliners’,26000000,”,’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.’,24.114459,’1990-08-09′,61489265,115,’Released’,’Some lines shouldn\’t be crossed.’,6.30,404),(1555,’L\’Auberge espagnole’,5300000,”,’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.’,13.034602,’2002-05-17′,3897799,122,’Released’,’They came from Paris, Rome, London and Berlin to… the Spanish Apartment… where a year can change a lifetime.’,7.00,266),(1562,’28 Weeks Later’,15000000,”,’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.’,34.759855,’2007-04-26′,64238440,100,’Released’,’When days turn to weeks… the horror returns.’,6.50,1197),(1571,’Live Free or Die Hard’,110000000,”,’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.’,48.933370,’2007-06-20′,383531464,128,’Released’,’The old school cop is back!’,6.40,2089),(1572,’Die Hard: With a Vengeance’,90000000,”,’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.’,51.881077,’1995-05-19′,366101666,128,’Released’,’Think fast. Look alive. Die hard.’,6.90,2066),(1573,’Die Hard 2′,70000000,”,’John McClane is an off-duty cop gripped with a feeling of déjà 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.’,57.698470,’1990-07-02′,240031094,124,’Released’,’Die Harder’,6.60,1896),(1574,’Chicago’,45000000,”,’Murderesses Velma Kelly and Roxie Hart find themselves on death row together and fight for the fame that will keep them from the gallows in 1920s Chicago.’,32.217425,’2002-12-26′,306776732,113,’Released’,’If You Can\’t Be Famous, Be Infamous’,6.90,677),(1576,’Resident Evil’,33000000,’http://www.sonypictures.com/movies/residentevil/index.html’,’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.’,40.715623,’2002-03-15′,102984862,100,’Released’,’A secret experiment. A deadly virus. A fatal mistake.’,6.40,2065),(1577,’Resident Evil: Apocalypse’,45000000,”,’As the city is locked down under quarantine, Alice joins a small band of elite soldiers, enlisted to rescue the missing daughter of the creator of the mutating T-virus. It\’s a heart-pounding race against time as the group faces off against hordes of blood- thirsty zombies, stealthy Lickers, mutant canines and the most sinister foe yet.’,29.880122,’2004-09-10′,129394835,94,’Released’,’You\’re all going to die.’,6.10,1267),(1578,’Raging Bull’,18000000,”,’When Jake LaMotta steps into a boxing ring and obliterates his opponent, he\’s a prizefighter. But when he treats his family and friends the same way, he\’s a ticking time bomb, ready to go off at any moment. Though LaMotta wants his family\’s love, something always seems to come between them. Perhaps it\’s his violent bouts of paranoia and jealousy. This kind of rage helped make him a champ, but in real life, he winds up in the ring alone.’,35.524457,’1980-11-14′,23000000,129,’Released’,”,7.70,938),(1579,’Apocalypto’,40000000,”,’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.’,41.570047,’2006-12-07′,120175290,139,’Released’,’No one can outrun their destiny.’,7.30,1221),(1581,’The Holiday’,85000000,’http://www.sonypictures.com/movies/theholiday/’,’Two women, one (Cameron Diaz) from America and one (Kate Winslet) from Britain, swap homes at Christmastime after bad breakups with their boyfriends. Each woman finds romance with a local man (Jude Law, Jack Black) but realizes that the imminent return home may end the relationship.’,44.967453,’2006-12-08′,194168700,136,’Released’,’It\’s Christmas Eve and we are going to go celebrate being young and being alive.’,6.70,1225),(1584,’School of Rock’,35000000,’http://www.schoolofrockmovie.com/’,’Fired from his band and hard up for cash, guitarist and vocalist Dewey Finn finagles his way into a job as a fourth-grade substitute teacher at a private school, where he secretly begins teaching his students the finer points of rock \’n\’ roll. The school\’s hard-nosed principal is rightly suspicious of Finn\’s activities. But Finn\’s roommate remains in the dark about what he\’s doing.’,43.057323,’2003-10-03′,131282949,108,’Released’,’He just landed the gig of his life: 5th grade.’,6.70,1414),(1585,’It\’s a Wonderful Life’,3180000,”,’George Bailey has spent his entire life giving of himself to the people of Bedford Falls. He has always longed to travel but never had the opportunity in order to prevent rich skinflint Mr. Potter from taking over the entire town. All that prevents him from doing so is George\’s modest building and loan company, which was founded by his generous father. But on Christmas Eve, George\’s Uncle Billy loses the business\’s $8,000 while intending to deposit it in the bank. Potter finds the misplaced money, hides it from Billy, and George\’s troubles begin.’,42.868495,’1946-12-20′,9644124,130,’Released’,’It\’s a wonderful laugh! It\’s a wonderful love!’,8.00,1076),(1586,’Secret Window’,40000000,”,’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.’,32.908414,’2004-03-12′,92913171,96,’Released’,’The most important part of a story is the ending.’,6.40,972),(1587,’What\’s Eating Gilbert Grape’,11000000,”,’Gilbert has to care for his brother Arnie and his obese mother, which gets in the way when love walks into his life.’,33.282794,’1993-12-17′,30000000,118,’Released’,’A film about the love you find…In the last place you look.’,7.50,919),(1588,’Bring It On’,28000000,’https://www.uphe.com/movies/bring-it-on’,’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, the Toros\’ road to total cheer glory takes a shady turn when she discovers that their perfectly-choreographed routines were in fact stolen.’,14.754281,’2000-08-25′,90449929,98,’Released’,’May the best moves win.’,5.80,568),(1590,’Copying Beethoven’,11000000,”,’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 become involved in his masterpiece but slowly comes to trust in Anna\’s assistance and in the end becomes quite fond of her. By the time the piece is performed, her presence in his life is an absolute necessity. Her deep understanding of his work is such that she even corrects mistakes he has made, while her passionate personality opens a door into his private world.’,5.062687,’2006-09-10′,0,104,’Released’,”,6.20,42),(1591,’Nirgendwo in Afrika’,0,”,’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.’,3.481517,’2001-12-11′,0,140,’Released’,’One family\’s tale of a homeland lost… and a homeland found.’,7.00,32),(1593,’Night at the Museum’,110000000,”,’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.’,48.780039,’2006-10-20′,574480841,108,’Released’,’Where History Comes To Life’,6.30,2862),(1597,’Meet the Parents’,55000000,”,’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.’,29.972240,’2000-10-06′,330444045,108,’Released’,’First comes love. Then comes the interrogation.’,6.60,1698),(1598,’Cape Fear’,35000000,”,’Sam Bowden is a small-town corporate attorney. 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 about loss.’,27.714043,’1991-11-15′,182300000,128,’Released’,’There is nothing in the dark that isn\’t there in the light. Except fear.’,7.00,675),(1599,’I Heart Huckabees’,22000000,”,’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.’,14.925633,’2004-09-10′,0,106,’Released’,’An existential comedy’,6.20,239),(1613,’The 51st State’,28,”,’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 double-crosses.’,9.670031,’2001-12-07′,14,93,’Released’,’Nice Wheels. Dirty Deals. And One Mean Mother In A Kilt.’,5.90,173),(1619,’The Way of the Gun’,8500000,”,’Parker and Longbaugh are a pair of low-level petty criminals, living off the grid and funding their existence through unconventional and often illegal means. Wanting to move past petty crime, they vow to get the proverbial \”big score.’,8.775844,’2000-09-08′,19125401,119,’Released’,”,6.40,100),(1620,’Hitman’,24000000,’http://www.hitmanmovie.com/’,’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.’,42.669304,’2007-11-21′,99965753,89,’Released’,’Assassin 47′,5.90,966),(1621,’Trading Places’,40600000,”,’A snobbish investor and a wily street con-artist find their positions reversed as part of a bet by two callous millionaires.’,34.022209,’1983-06-07′,90400000,116,’Released’,’Some very funny business.’,7.10,738),(1624,’Liar Liar’,45000000,”,’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.’,26.721386,’1997-03-21′,181000000,86,’Released’,’Trust me.’,6.40,1424),(1635,’The Island’,126000000,’http://www.theisland-themovie.com/’,’In 2019, Lincoln Six-Echo is a resident of a seemingly \”Utopian\” but contained facility. Like all of the inhabitants of this carefully-controlled environment, Lincoln hopes to be chosen to go to The Island â�� reportedly the last uncontaminated location on the planet. But Lincoln soon discovers that everything about his existence is a lie.’,37.680560,’2005-07-20′,162949164,136,’Released’,’Your time will come…’,6.50,1770),(1636,’Bedazzled’,48000000,”,’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.’,19.348007,’2000-10-19′,90383208,93,’Released’,’Meet the Devil. She\’s giving Elliott seven wishes. But not a chance in Hell.’,5.60,512),(1637,’Speed’,30000000,”,’Los Angeles SWAT cop Jack Traven is up against bomb expert Howard Payne, who\’s after major ransom money. First it\’s a rigged elevator in a very tall building. Then it\’s a rigged bus–if it slows, it will blow, bad enough any day, but a nightmare in LA traffic. And that\’s still not the end.’,49.526736,’1994-06-09′,350448145,116,’Released’,’Get ready for rush hour’,6.80,1783),(1639,’Speed 2: Cruise Control’,160000000,”,’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.’,23.336875,’1997-06-13′,164508066,121,’Released’,’As the stakes get higher, the ride gets even faster.’,4.10,434),(1640,’Crash’,6500000,’http://www.crashfilm.com/’,’Los Angeles citizens with vastly separate lives collide in interweaving stories of race, loss and redemption.’,28.223163,’2004-01-13′,98410061,112,’Released’,’You think you know who you are. You have no idea.’,7.20,1149),(1642,’The Net’,22000000,”,’Angela Bennett is a freelance software engineer who lives in a world of computer technology. When a cyber friend asks Bennett to debug a new game, she inadvertently becomes involved in a conspiracy that will soon turn her life upside down. While on vacation in Mexico, her purse is stolen. She soon finds that people and events may not be what they seem as she becomes the target of an assassination. Her vacation is ruined. She gets a new passport at the U.S. Embassy in Mexico but it has the wrong name, Ruth Marx. When she returns to the U.S. to sort things out, she discovers that Ruth Marx has an unsavory past and a lengthy police record. To make matters worse, another person has assumed her real identity …’,23.218144,’1995-07-28′,110627965,114,’Released’,’No driver\’s license, no credit cards, no passport, no access to her bank accounts in a foreign country … She finds her identity stolen.’,5.60,354),(1645,’A Time to Kill’,40000000,”,’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.’,25.219805,’1996-07-24′,152266007,149,’Released’,’Experience a time you\’ll never forget.’,7.00,509),(1646,’Freedom Writers’,21000000,’http://www.freedomwriters.com/’,’A young teacher inspires her class of at-risk students to learn tolerance, apply themselves, and pursue education beyond high school.’,17.746981,’2007-01-05′,41170784,123,’Released’,’Their story. Their world. Their future.’,7.50,356),(1648,’Bill & Ted\’s Excellent Adventure’,10000000,’http://www.billandted.org/’,’In the small town of San Dimas, a few miles away from Los Angeles, there are two nearly brain dead teenage boys going by the names of Bill S, Preston ESQ. and Ted Theodore Logan, they have a dream together of starting their own rock and roll band called the \”Wyld Stallyns\”. Unfortunately, they are still in high school and on the verge of failing out of their school as well, and if they do not pass their upcoming history report, they will be separated as a result of Ted\’s father sending him to military school. But, what Bill and Ted do not know is that they must stay together to save the future. So, a man from the future named Rufus came to help them pass their report. So, both Bill and Ted decided to gather up historical figures which they need for their report. They are hoping that this will help them pass their report so they can stay together.’,25.929893,’1989-02-17′,40485039,90,’Released’,’History is about to be rewritten by two guys who can\’t spell.’,6.70,454),(1649,’Bill & Ted\’s Bogus Journey’,0,”,’Amiable slackers Bill and Ted are once again roped into a fantastical adventure when De Nomolos, a villain from the future, sends evil robot duplicates of the two lads to terminate and replace them. The robot doubles actually succeed in killing Bill and Ted, but the two are determined to escape the afterlife, challenging the Grim Reaper to a series of games in order to return to the land of the living.’,11.349664,’1991-07-19′,0,98,’Released’,’Once… they made history. Now… they are history.’,5.90,308),(1651,’La sirène du Mississipi’,0,”,’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.’,3.654018,’1969-06-18′,0,123,’Released’,’The Bride Came as Advertised…With an Unadvertised Special’,6.70,32),(1656,’The Legend of Zorro’,75000000,’http://www.sonypictures.com/homevideo/thelegendofzorro/index.html’,’Having spent the last 10 years fighting injustice and cruelty, Alejandro de la Vega is now facing his greatest challenge: his loving wife Elena has thrown him out of the house! Elena has filed for divorce and found comfort in the arms of Count Armand, a dashing French aristocrat. But Alejandro knows something she doesn\’t: Armand is the evil mastermind behind a terrorist plot to destroy the United States. And so, with his marriage and the county\’s future at stake, it\’s up to Zorro to save two unions before it\’s too late.’,31.054334,’2005-10-24′,142400065,129,’Released’,’The original caped crusader is back!’,5.90,893),(1667,’La Marche de l\’empereur’,8000000,’http://empereur.luc-jacquet.com/index_flash.htm’,’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.’,17.537154,’2005-01-26′,127392239,80,’Released’,’In the harshest place on Earth, love finds a way.’,6.90,358),(1669,’The Hunt for Red October’,30000000,’http://www.paramount.com/movies/hunt-red-october’,’A new Soviet nuclear missile sub (a Boomer) heading out on her maiden voyage that is being tracked by a Los Angeles class American submarine suddenly goes silent and \”disappears\”. This focuses the attention of both U.S. Intelligence and the U.S. Navy on the Russian Sub Commander . When it is determined that the silent Soviet Boomer may be headed for American coastal waters panic ensues. A CIA analyst, Jack Ryan, convinces the brass that the Boomer\’s commander may intend something other than a nuclear first strike in mind. A perilous and tense cat-and-mouse game ensues.’,46.212155,’1990-03-02′,199200000,134,’Released’,’Invisible. Silent. Stolen.’,7.20,957),(1677,’Ray’,40000000,”,’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.’,21.743321,’2004-10-29′,124731534,152,’Released’,’The extraordinary life story of Ray Charles.’,7.20,467),(1683,’The Reaping’,40000000,’http://www.thereapingmovie.com’,’Katherine Morrissey, a former Christian missionary, lost her faith after the tragic deaths of her family. Now she applies her expertise to debunking religious phenomena. When a series of biblical plagues overrun a small town, Katherine arrives to prove that a supernatural force is not behind the occurrences, but soon finds that science cannot explain what is happening. Instead, she must regain her faith to combat the evil that waits in a Louisiana swamp.’,13.445697,’2007-04-05′,62771059,99,’Released’,’What Hath God Wrought?’,5.40,205),(1685,’Beneath the Planet of the Apes’,3000000,”,’Astronaut Brent is sent to rescue Taylor but crash lands on the Planet of the Apes, just like Taylor did in the original film. Taylor has disappeared into the Forbidden Zone so Brent and Nova try to follow and find him. He discovers a cult of humans that fear the Apes\’ latest military movements and finds himself in the middle. Tension mounts to a climactic battle between ape and man deep in the bowels of the planet.’,24.393296,’1970-05-01′,18999718,95,’Released’,’An army of civilized apes…A fortress of radiation-crazed super humans…Earth\’s final battle is about to begin – Beneath the atomic rubble of what was once the city of New York!’,6.20,361),(1687,’Escape from the Planet of the Apes’,2500000,”,’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.’,18.309610,’1971-05-20′,12348905,98,’Released’,’Meet baby Milo who has Washington terrified.’,6.30,264),(1688,’Conquest of the Planet of the Apes’,1700000,”,’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.’,18.828683,’1972-06-29′,9700000,88,’Released’,’All new! The revolt of the apes. The most awesome spectacle in the annals of science fiction!’,6.10,236),(1690,’Hostel’,4800000,’http://www.hostelfilm.com/’,’Three backpackers head to a Slovakian city that promises to meet their hedonistic expectations, with no idea of the hell that awaits them.’,38.831920,’2005-01-06′,80578934,94,’Released’,’Welcome To Your Worst Nightmare’,5.70,887),(1691,’Hostel: Part II’,10200000,”,’Following a geographical tour of Slovakia, three young American women are lured into a hostel by a handsome young man who sells them to the twisted masters, ties them up and brings upon an unthinkable world of pain.’,20.745052,’2007-06-08′,35619521,93,’Released’,’Americans…they have no imagination.’,5.60,453),(1696,’The Devil\’s Rejects’,0,’http://robzombie.com/movies/the-devils-rejects/’,’The sequel to House of 1000 Corpses â�� the Firefly family are ambushed at their isolated home by Sheriff Wydell and a squad of armed men guns blazing â�� yet only Otis and his sister, Baby, manage to escape the barrage of bullets unharmed. Hiding out in a backwater motel, the wanted siblings wait to rendezvous with their errant father, Captain Spaulding, killing whoever happens to stand in their way.’,16.754452,’2005-07-22′,0,107,’Released’,’Death walks behind. Hell waits ahead.’,6.60,322),(1698,’Anatomie’,0,”,’Medical student Paula Henning wins a place at an exclusive Heidelberg medical school. When the body of a young man she met on the train turns up on her dissection table, she begins to investigate the mysterious circumstances surrounding his death, and uncovers a gruesome conspiracy perpetrated by an Antihippocratic secret society operating within the school.’,5.025938,’2000-02-03′,0,103,’Released’,’Some study. Some are studied.’,6.10,61),(1701,’Con Air’,75000000,”,’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.’,45.154631,’1997-06-01′,224012234,115,’Released’,’They were deadly on the ground; Now they have wings’,6.50,1270),(1705,’Battle for the Planet of the Apes’,1700000,”,’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.’,13.315383,’1973-06-15′,8844595,93,’Released’,’The final chapter in the incredible Apes saga. The most suspenseful showdown ever filmed as two civilizations battle for the right to inherit what\’s left of the earth!’,5.50,215),(1710,’Copycat’,0,”,’An agoraphobic psychologist and a female detective must work together to take down a serial killer who copies serial killers from the past.’,14.211699,’1995-10-27′,0,124,’Released’,’One man is copying the most notorious killers in history one at a time. Together, two women must stop him from killing again. Or they\’re next.’,6.40,194),(1717,’All the King\’s Men’,55000000,’http://www.sonypictures.com/homevideo/allthekingsmen/’,’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.’,7.768223,’2006-09-10′,9450897,125,’Released’,’Some people will do anything to gain power. Some will do anything to keep it.’,5.70,95),(1722,’Captain Corelli\’s Mandolin’,57000000,’http://movies.uip.de/corellismandoline/’,’When a Greek fisherman leaves to fight with the Greek army during WWII, his fiancee falls in love with the local Italian commander. The film is based on a novel about an Italian soldier\’s experiences during the Italian occupation of the Greek island of Cephalonia (Kefalonia), but Hollywood made it into a pure love story by removing much of the \”unpleasant\” stuff.’,9.061866,’2001-08-17′,62112895,131,’Released’,”,5.50,145),(1724,’The Incredible Hulk’,150000000,”,’Scientist Bruce Banner scours the planet for an antidote to the unbridled force of rage within him: the Hulk. But when the military masterminds who dream of exploiting his powers force him back to civilization, he finds himself coming face to face with a new, deadly foe.’,62.898336,’2008-06-12′,163712074,114,’Released’,’You\’ll like him when he\’s angry.’,6.10,3021),(1725,’West Side Story’,6000000,”,’In the slums of the upper West Side of Manhattan, New York, a gang of Polish-American teenagers called the Jets compete with a rival gang of recently immigrated Puerto Ricans, the Sharks, to \”own\” the neighborhood streets. Tensions are high between the gangs but two kids, one from each rival gang, fall in love leading to tragedy.’,23.431117,’1961-10-18′,43656822,152,’Released’,’The screen achieves one of the great entertainments in the history of motion pictures’,7.00,389),(1726,’Iron Man’,140000000,’http://www.ironmanmovie.com/’,’After being held captive in an Afghan cave, billionaire engineer Tony Stark creates a unique weaponized suit of armor to fight evil.’,120.725053,’2008-04-30′,585174222,126,’Released’,’Heroes aren\’t born. They\’re built.’,7.40,8776),(1729,’The Forbidden Kingdom’,55000000,’http://www.forbiddenkingdommovie.com/’,’An American teenager who is obsessed with Hong Kong cinema and kung-fu classics makes an extraordinary discovery in a Chinatown pawnshop: the legendary stick weapon of the Chinese sage and warrior, the Monkey King. With the lost relic in hand, the teenager unexpectedly finds himself travelling back to ancient China to join a crew of warriors from martial arts lore on a dangerous quest to free the imprisoned Monkey King.’,17.097041,’2008-04-18′,127906624,104,’Released’,’The battle for eternity is the fantasy of a lifetime.’,6.30,461),(1734,’The Mummy Returns’,98000000,”,’Rick and Evelyn O\’Connell, along with their 8 year old son Alex, discover the key to the legendary Scorpion King\’s might, the fabled Bracelet of Anubis. Unfortunately, a newly resurrected Imhotep has designs on the bracelet as well, and isn\’t above kidnapping its new bearer, Alex, to gain control of Anubis\’ otherworldly army.’,41.862983,’2001-04-28′,433013274,130,’Released’,’The most powerful force on earth is about to be unleashed by the two people who should know better.’,6.00,2206),(1735,’The Mummy: Tomb of the Dragon Emperor’,145000000,’http://www.themummy.com/’,’Archaeologist Rick O\’Connell travels 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 wife and son to quash the so-called \’Dragon Emperor\’ and his abuse of supernatural power.’,60.034162,’2008-07-01′,401128639,112,’Released’,’A New Evil Awakens.’,5.20,1387),(1770,’Michael Collins’,28000000,”,’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.’,8.314624,’1996-10-25′,16900000,132,’Released’,’Ireland, 1916. His Dreams Inspired Hope. His Words Ignited Passion. His Courage Forged A Nation\’s Destiny.’,6.70,97),(1771,’Captain America: The First Avenger’,140000000,’http://captainamerica.marvel.com/’,’Predominantly set during World War II, Steve Rogers is a sickly man from Brooklyn who\’s transformed into super-soldier Captain America to aid in the war effort. Rogers must stop the Red Skull â�� Adolf Hitler\’s ruthless head of weaponry, and the leader of an organization that intends to use a mysterious device of untold powers for world domination.’,74.506246,’2011-07-22′,370569774,124,’Released’,’When patriots become heroes’,6.60,7047),(1777,’Fahrenheit 9/11′,6000000,”,’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.’,16.209850,’2004-06-25′,119114517,122,’Released’,’Controversy… what controversy?’,6.80,397),(1779,’Roger & Me’,160000,”,’A documentary about the closure of General Motors\’ plant at Flint, Michigan, which resulted in the loss of 30,000 jobs. Details the attempts of filmmaker Michael Moore to get an interview with GM CEO Roger Smith.’,3.284903,’1989-09-01′,6706368,91,’Released’,”,7.40,90),(1781,’An Inconvenient Truth’,1000000,’http://www.climatecrisis.net/’,’A documentary on Al Gore\’s campaign to make the issue of global warming a recognized problem worldwide.’,14.139004,’2006-01-24′,46243000,100,’Released’,’By far the most terrifying film you will ever see.’,6.70,251),(1788,’Footloose’,8200000,”,’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.’,25.034140,’1984-02-17′,80035402,107,’Released’,”,6.40,505),(1792,’Stuck on You’,55000000,”,’In Martha\’s Vineyard, Mass., conjoined twins Walt (Greg Kinnear) and Bob Tenor (Matt Damon) make the best of their handicap by being the fastest grill cooks in town. While outgoing Walt hopes to one day become a famous actor, shy Bob prefers to stay out of the spotlight. When a fading Hollywood actress, Cher (Cher), decides to get her show \”Honey and the Beaze\” cancelled, she hires Walt — and his brotherly appendage — as her costars. But their addition surprisingly achieves the opposite.’,8.802525,’2003-12-10′,33828318,118,’Released’,’Whatever happens to the boys, one thing is certain. Nothing will ever come between them.’,5.10,188),(1808,’Velvet Goldmine’,0,”,’Almost a decade has elapsed since Bowie esque glam superstar Brian Slade staged his own death and escaped the spotlight of the London scene. Now, investigative journalist Arthur Stuart is on assignment to uncover the truth of the enigmatic Slade\’s rise and fall. Stuart, himself forged by the music of the 1970s, explores the larger-than-life stars who were once his idols and what has become of them since the turn of the new decade.’,10.932711,’1998-10-23′,1053788,119,’Released’,’Style matters. Even when it comes to murder.’,6.90,116),(1809,’The Rules of Attraction’,4000000,”,’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.’,11.387335,’2002-10-11′,0,110,’Released’,’We all run on instinct’,6.30,168),(1813,’The Devil\’s Advocate’,57000000,”,’A hotshot lawyer gets more than he bargained for when he learns his new boss is Lucifer himself.’,33.847300,’1997-10-17′,152944660,144,’Released’,’Evil has its winning ways.’,7.20,1374),(1817,’Phone Booth’,13000000,”,’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.’,38.018085,’2002-09-09′,97837138,81,’Released’,’No options. No lies. No fear. No deals. Just keep talking.’,6.70,1062),(1819,’You, Me and Dupree’,54000000,’http://www.youmeanddupree.com/’,’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.’,18.600367,’2006-07-14′,130431368,108,’Released’,’Two\’s company. Dupree\’s a crowd.’,5.40,407),(1824,’50 First Dates’,75000000,”,’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â�¦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.’,61.437586,’2004-02-13′,196482882,99,’Released’,’Imagine having to win over the girl of your dreams… every friggin\’ day.’,6.60,2105),(1830,’Lord of War’,42000000,”,’Yuri Orlov is a globetrotting arms dealer and, through some of the deadliest war zones, he struggles to stay one step ahead of a relentless Interpol agent, his business rivals and even some of his customers who include many of the world\’s most notorious dictators. Finally, he must also face his own conscience.’,34.828241,’2005-09-16′,24127895,122,’Released’,’Where there\’s a will, there\’s a weapon’,7.00,1335),(1831,’The Next Best Thing’,25000000,”,’A comedy-drama about best friends – one a straight woman, Abbie, the other a gay man, Robert – who decide to have a child together. Five years later, Abbie falls in love with a straight man and wants to move away with her and Robert\’s little boy Sam, and a nasty custody battle ensues.’,3.707511,’2000-03-03′,24362772,108,’Released’,’Best Friends Make The Best Mistakes’,4.30,29),(1832,’Dogma’,10000000,’http://www.dogma-movie.com/’,’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.’,14.543435,’1999-11-12′,30652890,130,’Released’,’It can be Hell getting into Heaven’,6.80,823),(1833,’Rent’,40000000,’http://www.sonypictures.com/movies/rent/’,’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.’,10.433667,’2005-11-23′,31670620,135,’Released’,’No day but today.’,6.70,155),(1844,’Entrapment’,66000000,’http://www.foxmovies.com.au/entrapment’,’Two thieves, who travel in elegant circles, try to outsmart each other and, in the process, end up falling in love.’,25.877794,’1999-04-29′,212404396,112,’Released’,’The trap is set.’,6.00,602),(1850,’Man on the Moon’,82000000,’http://www.universalpictures.com/manonthemoon/’,’A film about the life and career of the eccentric avant-garde comedian, Andy Kaufman.’,24.444186,’1999-12-22′,47434430,118,’Released’,’Hello, my name is Andy and this is my movie.’,6.90,435),(1852,’World Trade Center’,63000000,”,’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.’,24.697533,’2006-08-09′,162945894,128,’Released’,’The world saw evil that day. Two men saw something else.’,5.90,447),(1858,’Transformers’,150000000,’http://www.transformersmovie.com/’,’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.’,25.468493,’2007-06-27′,709709780,144,’Released’,’Their war. Our world.’,6.60,4040),(1865,’Pirates of the Caribbean: On Stranger Tides’,380000000,’http://disney.go.com/pirates/index-on-stranger-tides.html#/video/’,’Captain Jack Sparrow crosses paths with a woman from his past, 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, Jack finds himself on an unexpected adventure in which he doesn\’t know who to fear more: Blackbeard or the woman from his past.’,135.413856,’2011-05-14′,1045713802,136,’Released’,’Live Forever Or Die Trying.’,6.40,4948),(1874,’Goodbye Bafana’,30000000,”,’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.’,12.257654,’2007-02-11′,0,140,’Released’,”,7.00,38),(1878,’Fear and Loathing in Las Vegas’,18500000,”,’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.’,44.511363,’1998-05-22′,10680275,118,’Released’,’Buy the ticket, take the ride.’,7.20,1301),(1880,’Red Dawn’,4200000,”,’It is the mid-1980s. From out of the sky, Soviet and Cuban troops begin landing on the football field of a Colorado high school. In seconds, the paratroops have attacked the school and sent a group of teenagers fleeing into the mountains. Armed only with hunting rifles, pistols and bows and arrows, the teens struggles to survive the bitter winter and Soviet KGB patrols hunting for them.’,11.743085,’1984-08-10′,38376497,114,’Released’,”,6.40,215),(1883,’Malcolm X’,34000000,”,’The biopic of the controversial and influential Black Nationalist leader.’,19.822791,’1992-11-18′,48169908,202,’Released’,”,7.20,370),(1885,’The Karate Kid’,8000000,”,’Hassled by the school bullies, Daniel LaRusso has his share of adolescent woes. Luckily, his apartment building houses a resident martial arts master: Kesuke Miyagi, who agrees to train Daniel … and ends up teaching him much more than self-defense. Armed with newfound confidence, skill and wisdom, Daniel ultimately faces off against his tormentors in this hugely popular classic underdog tale.’,28.456572,’1984-06-22′,90815558,126,’Released’,’Only the \’Old One\’ could teach him the secrets of the masters.’,6.90,891),(1887,’Marie Antoinette’,40000000,’http://www.sonypictures.com/homevideo/marieantoinette/index.html’,’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.’,22.364549,’2006-05-24′,60474340,123,’Released’,’Rumor. Scandal. Fame. Revolution.’,6.50,642),(1891,’The Empire Strikes Back’,18000000,’http://www.starwars.com/films/star-wars-episode-v-the-empire-strikes-back’,’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.’,78.517830,’1980-05-17′,538400000,124,’Released’,’The Adventure Continues…’,8.20,5879),(1892,’Return of the Jedi’,32350000,’http://www.starwars.com/films/star-wars-episode-vi-return-of-the-jedi’,’As Rebel leaders map their strategy for an all-out attack on the Emperor\’s newer, bigger Death Star. Han Solo remains frozen in the cavernous desert fortress of Jabba the Hutt, the most loathsome outlaw in the universe, who is also keeping Princess Leia as a slave girl. Now a master of the Force, Luke Skywalker rescues his friends, but he cannot become a true Jedi Knight until he wages his own crucial battle against Darth Vader, who has sworn to win Luke over to the dark side of the Force.’,46.509071,’1983-05-23′,572700000,135,’Released’,’The Empire Falls…’,7.90,4665),(1893,’Star Wars: Episode I – The Phantom Menace’,115000000,’http://www.starwars.com/films/star-wars-episode-i-the-phantom-menace’,’Anakin Skywalker, a young slave strong with the Force, is discovered on Tatooine. Meanwhile, the evil Sith have returned, enacting their plot for revenge against the Jedi.’,54.035265,’1999-05-19′,924317558,136,’Released’,’Every generation has a legend. Every journey has a first step. Every saga has a beginning.’,6.30,4432),(1894,’Star Wars: Episode II – Attack of the Clones’,120000000,’http://www.starwars.com/films/star-wars-episode-ii-attack-of-the-clones’,’Ten years after the invasion of Naboo, the galaxy is on the brink of civil war. Under the leadership of a renegade Jedi named Count Dooku, thousands of solar systems threaten to break away from the Galactic Republic. When an assassination attempt is made on Senator Padmé Amidala, the former Queen of Naboo, twenty-year-old Jedi apprentice Anakin Skywalker is assigned to protect her. In the course of his mission, Anakin discovers his love for Padmé as well as his own darker side. Soon, Anakin, Padmé, and Obi-Wan Kenobi are drawn into the heart of the Separatist movement and the beginning of the Clone Wars.’,43.987061,’2002-05-15′,649398328,142,’Released’,’A Jedi Shall Not Know Anger. Nor Hatred. Nor Love.’,6.40,3992),(1895,’Star Wars: Episode III – Revenge of the Sith’,113000000,’http://www.starwars.com/films/star-wars-episode-iii-revenge-of-the-sith’,’Years after the onset of the Clone Wars, the noble Jedi Knights lead 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 and Jedi Master Yoda are forced into hiding. The only hope for the galaxy are Anakin\’s own offspring â�� the twin children born in secrecy who will grow up to become heroes.’,44.108427,’2005-05-17′,850000000,140,’Released’,’The saga is complete.’,7.10,4116),(1900,’Traffic’,48000000,”,’An exploration of the United States of America\’s war on drugs from multiple perspectives. For the new head of the Office of National Drug Control Policy, the war becomes personal when he discovers his well-educated daughter is abusing cocaine within their comfortable suburban home. In Mexico, a flawed, but noble policeman agrees to testify against a powerful general in league with a cartel, and in San Diego, a drug kingpin\’s sheltered trophy wife must learn her husband\’s ruthless business after he is arrested, endangering her luxurious lifestyle.’,25.170217,’2000-12-27′,207515725,147,’Released’,’No one gets away clean’,6.90,562),(1901,’In Good Company’,0,”,’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.’,15.376391,’2004-12-29′,0,109,’Released’,’He\’s rich, young and handsome. He\’s in love with you and he\’s your dad\’s boss.’,5.90,194),(1903,’Vanilla Sky’,68000000,”,’David Aames (Tom Cruise) has it all: wealth, good looks and gorgeous women on his arm. But just as he begins falling for the warmhearted Sofia (Penelope Cruz), his face is horribly disfigured in a car accident. That\’s just the beginning of his troubles as the lines between illusion and reality, between life and death, are blurred.’,27.299301,’2001-12-10′,203388341,136,’Released’,’Forget everything you know, and open your eyes.’,6.50,1078),(1904,’Memoirs of a Geisha’,85000000,’http://www.sonypictures.com/homevideo/memoirsofageisha/index.html’,’A sweeping romantic epic set in Japan in the years before World War II, a penniless Japanese child is torn from her family to work as a maid in a geisha house.’,16.595874,’2005-12-06′,162242962,145,’Released’,’My world is as forbidden as it is fragile; without its mysteries, it cannot survive.’,7.30,652),(1907,’The Beach’,40000000,”,’Twenty-something Richard travels to Thailand and finds himself in possession of a strange map. Rumours state that it leads to a solitary beach paradise, a tropical bliss – excited and intrigued, he sets out to find it.’,41.362082,’2000-02-11′,144056873,119,’Released’,’Somewhere on this planet it must exist.’,6.30,1233),(1909,’Don Juan DeMarco’,25000000,”,’John Arnold DeMarco is a man who believes he is Don Juan, the greatest lover in the world. Clad in a cape and mask, DeMarco undergoes psychiatric treatment with Dr. Jack Mickler to cure him of his apparent delusion. But the psychiatric sessions have an unexpected effect on the psychiatric staff and, most profoundly, Dr Mickler, who rekindles the romance in his complacent marriage.’,8.870614,’1994-10-01′,22200000,97,’Released’,’The story of the man who thought he was the greatest lover in the world… and the people who tried to cure him of it!’,6.20,183),(1911,’The 13th Warrior’,160000000,”,’In AD 922, Arab courtier, Ahmad Ibn Fadlan accompanies a party of Vikings to the barbaric North to combat a terror that slaughters Vikings and devours their flesh.’,27.220157,’1999-08-27′,61698899,102,’Released’,’Prey for the living.’,6.40,510),(1913,’Mar adentro’,12806000,”,’The Sea Inside is about Spaniard Ramón Sampedro, who fought a 30-year campaign to win the right to end his life with dignity. It is the story of Ramónâ��s relationships with two women: Julia a lawyer who supports his cause, and Rosa, a local woman who wants to convince him that life is worth living.’,17.363739,’2004-09-03′,38535221,125,’Released’,’Sensitive Drama About a Polemic Theme’,7.20,219),(1921,’Sweet November’,40000000,”,’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.’,19.372805,’2001-02-16′,65754228,119,’Released’,’She Just Needed A Month To Change His Life For Ever.’,6.40,278),(1924,’Superman’,55000000,”,’Mild-mannered Clark Kent works as a reporter at the Daily Planet alongside his crush, Lois Lane â�� who\’s in love with Superman. Clark must summon his superhero alter ego when the nefarious Lex Luthor launches a plan to take over the world.’,48.507081,’1978-12-13′,300218018,143,’Released’,’You\’ll Believe a Man Can Fly!’,6.90,1022),(1927,’Hulk’,137000000,”,’Bruce Banner, a genetics researcher with a tragic past, suffers massive radiation exposure in his laboratory that causes him to transform into a raging green monster when he gets angry.’,34.981698,’2003-06-19′,245360480,138,’Released’,’Unleash the hero within’,5.30,1533),(1930,’The Amazing Spider-Man’,215000000,’http://www.theamazingspiderman.com’,’Peter Parker is an outcast high schooler abandoned by his parents as a boy, leaving him to be raised by his Uncle Ben and Aunt May. Like most teenagers, Peter is trying to figure out who he is and how he got to be the person he is today. As Peter discovers a mysterious briefcase that belonged to his father, he begins a quest to understand his parents\’ disappearance â�� leading him directly to Oscorp and the lab of Dr. Curt Connors, his father\’s former partner. As Spider-Man is set on a collision course with Connors\’ alter ego, The Lizard, Peter will make life-altering choices to use his powers and shape his destiny to become a hero.’,89.866276,’2012-06-27′,752215857,136,’Released’,’The untold story begins.’,6.50,6586),(1931,’Stomp the Yard’,13000000,”,’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.’,6.922050,’2007-05-16′,75511123,114,’Released’,’He will challenge their traditions. Their traditions will change his life.’,6.10,88),(1933,’The Others’,0,”,’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.’,25.881355,’2001-08-02′,0,101,’Released’,’Sooner or later she\’ll see them, then everything will be different.’,7.40,1660),(1934,’Shakespeare in Love’,25000000,”,’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.’,31.792964,’1998-12-11′,289317794,122,’Released’,’Love is the only inspiration.’,6.80,796),(1946,’eXistenZ’,15000000,”,’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.’,21.928025,’1999-04-14′,2856712,97,’Released’,’Play it. Live it. Kill for it.’,6.70,475),(1947,’An Unfinished Life’,30000000,’http://www.miramax.com/anunfinishedlife/’,’Stoic and heartbroken, Einar Gilkyson quietly lives in the rugged Wyoming ranchlands alongside his only trusted friend, Mitch Bradley. 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 even as buried anger and accusations resurface, the way is opened for unexpected connection, adventure, and forgiveness.’,6.353971,’2005-09-09′,18618284,108,’Released’,’Every secret takes on a life of its own.’,6.70,161),(1948,’Crank’,12000000,”,’Professional assassin Chev Chelios learns his rival has injected him with a poison that will kill him if his heart rate drops.’,47.992817,’2006-08-31′,42931041,88,’Released’,’There are a thousand ways to raise your adrenaline. Today, Chev Chelios will need every single one.’,6.60,1151),(1949,’Zodiac’,65000000,”,’The true story of the investigation of \’The Zodiac Killer\’, a serial killer who terrified the San Francisco Bay Area, taunting police with his ciphers and letters. The case becomes an obsession for four men as their lives and careers are built and destroyed by the endless trail of clues.’,51.970905,’2007-03-02′,84785914,157,’Released’,’There\’s more than one way to lose your life to a killer.’,7.30,2023),(1950,’Lucky You’,0,’http://luckyyoumovie.warnerbros.com/’,’A professional poker player whose astounding luck at the table fails to translate into his lonesome love life attempts to win the World Series of Poker while simultaneously earning the affections of a beautiful Las Vegas singer.’,6.162872,’2007-05-01′,5761917,124,’Released’,’Change your game. Change your life.’,5.40,81),(1951,’Manderlay’,14200000,”,’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.’,7.051450,’2005-05-16′,674918,139,’Released’,’Liberation. Whether They Want It Or Not.’,6.90,78),(1954,’The Butterfly Effect’,13000000,”,’A young man struggles to access sublimated childhood memories. He finds a technique that allows him to travel back into the past, to occupy his childhood body and change history. However, he soon finds that every change he makes has unexpected consequences.’,73.307513,’2004-01-22′,96060858,113,’Released’,’Such minor changes, such huge consequences.’,7.30,2060),(1955,’The Elephant Man’,5000000,”,’A Victorian surgeon rescues a heavily disfigured man being mistreated by his \”owner\” as a side-show freak. Behind his monstrous façade, there is revealed a person of great intelligence and sensitivity. Based on the true story of Joseph Merrick (called John Merrick in the film), a severely deformed man in 19th century London.’,30.271066,’1980-10-02′,26010864,124,’Released’,’I am not an animal! I am a human being! I… am… a man!’,7.90,719),(1956,’Gerry’,3500000,”,’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.’,5.038953,’2002-01-12′,0,103,’Released’,”,6.20,68),(1957,’Enough’,38000000,’http://www.sonypictures.com/movies/enough/’,’Working-class waitress Slim thought she was entering a life of domestic bliss when she married Mitch, the man of her dreams. After the arrival of their first child, her picture perfect life is shattered when she discovers Mitch\’s hidden possessive dark side, a controlling and abusive alter ego that can turn trust, love and tranquility into terror. Terrified for her child\’s safety, Slim flees with her daughter. Relentless in his pursuit and enlisting the aid of lethal henchmen, Mitch continually stalks the prey that was once his family.’,11.500783,’2002-05-24′,51801187,114,’Released’,’Everyone has a limit.’,6.20,264),(1958,’8 femmes’,8000000,”,’Eight women gather to celebrate Christmas in a snowbound cottage, only to find the family patriarch dead with a knife in his back. Trapped in the house, every woman becomes a suspect, each having her own motive and secret.’,8.204829,’2002-01-08′,0,111,’Released’,’Living in a house full of women can be murder.’,6.90,196),(1961,’My Name Is Bruce’,1500000,’http://www.dhentertainment.com/projects/1.my-name-bruce/’,’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.’,7.559100,’2007-10-01′,173066,86,’Released’,’Fearless! Unstoppable! Ready For His Close-Up!’,5.90,107),(1966,’Alexander’,155000000,”,’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 farther than any westerner had ever gone, all the way to India.’,39.019229,’2004-11-21′,167298192,175,’Released’,’The greatest legend of all was real.’,5.60,927),(1969,’Bandidas’,35000000,”,’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â�¦and a few good heists.’,20.277040,’2006-01-18′,10496317,93,’Released’,’Being BAD never looked so GOOD!’,5.80,307),(1970,’The Grudge’,10000000,”,’American nurse, Karen Davis moves to Tokyo and encounters a vengeful supernatural spirit known as The Grudge that often possesses its victims. When a series of horrifying and mysterious deaths occur â�� with the spirit passing its curse onto each victim – Karen must find away to break the spell before she becomes the spirit\’s next victim.’,35.695442,’2004-10-22′,183474602,92,’Released’,’It never forgives. It never forgets.’,5.80,865),(1975,’The Grudge 2′,20000000,’http://www.sonypictures.com/homevideo/thegrudge2/’,’In Tokyo, a young woman is exposed to the same mysterious curse that afflicted her sister. 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.’,13.906944,’2006-10-13′,39143839,102,’Released’,’What Was Once Trapped, Will Now Be Unleashed’,5.20,283),(1979,’4: Rise of the Silver Surfer’,130000000,”,’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.’,60.810723,’2007-06-13′,289047763,92,’Released’,’Discover the secret of the Surfer.’,5.40,2589),(1985,’The Constant Gardener’,25000000,”,’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.’,20.679652,’2005-08-31′,82466670,129,’Released’,’Love. At any cost.’,6.80,417),(1988,’A Mighty Heart’,16000000,’http://www.amightyheartmovie.com/’,’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.’,9.717392,’2007-01-01′,18928871,100,’Released’,’One woman dared to keep hope alive’,6.70,95),(1989,’My Blueberry Nights’,10000000,”,’Elizabeth 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.’,10.733761,’2007-05-16′,21786738,111,’Released’,’How do you say goodbye to someone you can\’t imagine living without?’,6.00,190),(1995,’Lara Croft: Tomb Raider’,115000000,”,’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.’,41.498631,’2001-06-11′,274703340,100,’Released’,’Born into Wealth. Groomed by the Elite. Trained for Combat.’,5.70,2192),(1996,’Lara Croft Tomb Raider: The Cradle of Life’,95000000,”,’Lara Croft ventures to an underwater temple in search of the mythological Pandora\’s Box but, after securing it, it is promptly stolen by the villainous leader of a Chinese crime syndicate. Lara must recover the box before the syndicate\’s evil mastermind uses it to construct a weapon of catastrophic capabilities.’,56.811056,’2003-07-21′,156505388,117,’Released’,’Adventuress Lara Croft goes on a quest to save the mythical Pandora\’s Box’,5.50,1418),(1997,’Deux frères’,74500000,”,’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.’,8.884318,’2004-04-07′,62172050,109,’Released’,’Two infant tiger cubs, separated from their parents and each other.’,6.90,180),(1999,’In the Bedroom’,1700000,”,’Summertime on the coast of Maine, \”In the Bedroom\” centers on the inner dynamics of a family in transition. Matt Fowler is a doctor practicing in his native Maine and is married to New York born Ruth Fowler, a music teacher. He is involved in a love affair with a local single mother. As the beauty of Maine\’s brief and fleeting summer comes to an end, these characters find themselves in the midst of unimaginable tragedy.’,6.979638,’2001-11-23′,0,130,’Released’,’A young man. An older woman. Her ex-husband. Things are about to explode…’,6.40,89),(2001,’We Own the Night’,21000000,”,’A New York nightclub manager tries to save his brother and father from Russian mafia hitmen.’,14.518708,’2007-05-25′,54926886,117,’Released’,’Two brothers on opposite sides of the law. Beyond their differences lies loyalty.’,6.50,323),(2008,’Wu Ji’,0,’http://thepromisemovie.net’,’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 rescues her from death, she is tormented by their inevitable parting. Meanwhile, Kunlun, the slave of a great general, is searching for the lost memories of a family he once had. Soon the fate of these two intertwine when the princess believes the general to be her hero, thus pulling him into this web of fate. What end will befallen our three characters? Are their fates already sealed by a higher power, or can they still choose a life they want?’,3.866026,’2005-12-15′,0,98,’Released’,’the promise’,5.00,29),(2009,’4 luni, 3 sÄ�ptÄ�mîni È�i 2 zile’,852510,”,’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.’,9.270133,’2007-08-24′,1185783,113,’Released’,’At what moment do we begin to live?’,7.30,156),(2011,’Persepolis’,7300000,’http://www.sonypictures.com/classics/persepolis/’,’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.’,24.281951,’2007-05-23′,0,95,’Released’,”,7.70,450),(2013,’Le scaphandre et le papillon’,14000000,”,’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.’,13.654940,’2007-05-22′,19777647,112,’Released’,’Let your imagination set you free’,7.40,283),(2018,’The Wedding Planner’,35000000,”,’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é 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.’,14.949395,’2001-01-26′,94728529,103,’Released’,’His big day is her big problem.’,5.50,427),(2022,’Mr. Deeds’,50000000,”,’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é on Deeds.’,18.121404,’2002-06-28′,171269535,96,’Released’,’Small town kid, big time right hook.’,5.60,644),(2023,’Hidalgo’,100000000,”,’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…’,16.759252,’2004-03-05′,108103450,136,’Released’,’Unbridled. Unbroken. Unbeaten.’,6.50,318),(2024,’The Patriot’,110000000,”,’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.’,23.657284,’2000-06-28′,215294342,165,’Released’,’Some things are worth fighting for.’,6.80,1099),(2026,’Hostage’,52000000,”,’When a mafia accountant is taken hostage on his beat, a police officer â�� wracked by guilt from a prior stint as a negotiator â�� must negotiate the standoff, even as his own family is held captive by the mob.’,23.663713,’2005-03-09′,77944725,113,’Released’,’Every Second Counts’,6.20,512),(2034,’Training Day’,45000000,”,’On his first day on the job as a narcotics officer, a rookie cop works with a rogue detective who isn\’t what he appears.’,52.081131,’2001-10-05′,104876233,122,’Released’,’The only thing more dangerous than the line being crossed, is the cop who will cross it.’,7.30,1634),(2043,’Along Came a Spider’,60000000,”,’When a teacher kidnaps a girl from a prestigious school, homicide detective, Alex Cross takes the case and teams up with young security agent, Jezzie Flannigan in hope 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.’,21.252797,’2001-04-06′,105178561,104,’Released’,’The game is far from over.’,6.10,400),(2044,’The Lake House’,40000000,’http://wwws.warnerbros.de/thelakehouse/’,’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.’,29.887360,’2006-06-16′,114830111,99,’Released’,’How do you hold on to someone you\’ve never met?’,6.50,670),(2048,’I, Robot’,120000000,”,’In 2035, where robots are common-place 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.’,95.914473,’2004-07-15′,347234916,115,’Released’,’Laws are made to be broken.’,6.70,3793),(2054,’Mr. Holland\’s Opus’,0,”,’In 1965, passionate musician Glenn Holland 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.’,6.775294,’1995-12-29′,106269971,137,’Released’,’Of All the Lives He Changed, the One That Changed the Most Was His Own.’,6.90,113),(2055,’Open Range’,22000000,”,’A former gunslinger is forced to take up arms again when he and his cattle crew are threatened by a corrupt lawman.’,19.068175,’2003-08-29′,68296293,139,’Released’,’No place to run. No reason to hide.’,7.00,262),(2056,’The Station Agent’,500000,”,’When his only friend dies, a man born with dwarfism moves to rural New Jersey to live a life of solitude, only to meet a chatty hot dog vendor and a woman dealing with her own personal loss.’,11.578545,’2003-01-26′,8679814,88,’Released’,’Loneliness is much better when you have got someone to share it with.’,7.40,210),(2057,’Original Sin’,42000000,”,’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’,14.831402,’2001-08-03′,35402320,118,’Released’,’This is not a love story – it\’s a story about love.’,5.80,198),(2059,’National Treasure’,100000000,”,’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.’,58.849256,’2004-11-19′,347451894,131,’Released’,’The greatest adventure history has ever revealed.’,6.40,1926),(2062,’Ratatouille’,150000000,’http://disney.go.com/disneypictures/ratatouille/’,’A rat named Remy dreams of becoming a great French chef despite his family\’s wishes and the obvious problem of being a rat in a decidedly rodent-phobic profession. When fate places Remy in the sewers of Paris, he finds himself ideally situated beneath a restaurant made famous by his culinary hero, Auguste Gusteau. Despite the apparent dangers of being an unlikely – and certainly unwanted – visitor in the kitchen of a fine French restaurant, Remy\’s passion for cooking soon sets into motion a hilarious and exciting rat race that turns the culinary world of Paris upside down.’,65.677399,’2007-06-22′,623722818,111,’Released’,’He\’s dying to become a chef.’,7.50,4369),(2067,’Mission to Mars’,90000000,”,’When contact is lost with the crew of the first Mars expedition, a rescue mission is launched to discover their fate.’,16.058284,’2000-03-10′,60874615,114,’Released’,’Let There Be Life.’,5.70,369),(2069,’The Whole Nine Yards’,41300000,”,’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.’,23.441135,’2000-02-18′,106371651,98,’Released’,’In the heart of suburbia, a hit man with heart has just moved in.’,6.20,531),(2074,’Flirting with Disaster’,7000000,”,’Adopted as a child, new father Mel Colpin (Ben Stiller) decides he cannot name his son until he knows his birth parents, and determines to make a cross-country quest to find them. Accompanied by his wife, Nancy (Patricia Arquette), and an inept yet gorgeous adoption agent, Tina (Tea Leoni), he departs on an epic road trip that quickly devolves into a farce of mistaken identities, wrong turns, and overzealous and love-struck ATF agents (Josh Brolin, Richard Jenkins).’,5.500324,’1996-03-22′,14702438,92,’Released’,’A comedy about sex, love, family and other accidents waiting to happen.’,6.30,66),(2080,’X-Men Origins: Wolverine’,150000000,’http://www.x-menorigins.com/’,’After seeking to live a normal life, Logan sets out to avenge the death of his girlfriend by undergoing the mutant Weapon X program and becoming Wolverine.’,5.954334,’2009-04-28′,373062864,107,’Released’,’Witness the Origin.’,6.20,4021),(2084,’Birthday Girl’,13000000,”,’A shy bank clerk orders a Russian mail order bride, and finds his life turned upside down.’,5.831302,’2001-09-06′,0,93,’Released’,”,6.10,103),(2085,’Romeo Must Die’,25000000,”,’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 â�¦ or worse!’,19.750059,’2000-03-20′,91036760,115,’Released’,’In the city ruled by criminals, two families have forgotten their fear. He will make them remember.’,6.00,330),(2088,’Romeo Is Bleeding’,11500000,”,’A corrupt cop gets in over his head when he tries to assassinate a beautiful Russian hit-woman.’,4.850402,’1993-09-13′,3275585,100,’Released’,’The story of a cop who wanted it bad and got it worse.’,5.70,36),(2100,’The Last Castle’,72000000,”,’A Court Martialed general rallies together 1200 inmates to rise against the system that put him away.’,15.433244,’2001-10-19′,27642707,131,’Released’,’A Castle Can Only Have One King’,7.00,285),(2105,’American Pie’,11000000,”,’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 all \”score.\” by their senior prom.’,60.767168,’1999-07-09′,235483004,95,’Released’,’There\’s nothing like your first piece.’,6.40,2296),(2110,’Wasabi’,15300000,”,’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.’,18.209570,’2001-10-31′,0,94,’Released’,’For those who take their action raw.’,6.20,283),(2112,’Payback’,90000000,”,’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.’,17.457947,’1999-02-05′,161626121,100,’Released’,’No More Mr. Nice Guy.’,6.70,548),(2114,’Final Fantasy: The Spirits Within’,137000000,”,’Led by a strange dream, scientist Aki Ross struggles to collect the eight spirits in the hope of creating a force powerful enough to protect the planet. With the aid of the Deep Eyes Squadron and her mentor, Dr. Sid, Aki must save the Earth from its darkest hate and unleash the spirits within.’,26.074908,’2001-07-02′,85131830,106,’Released’,’Unleash a new reality’,5.90,433),(2116,’Out of Time’,50000000,”,’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.’,14.993459,’2003-10-03′,55495563,105,’Released’,’The Clock Is Ticking…’,6.10,298),(2118,’L.A. Confidential’,35000000,”,’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.’,24.860326,’1997-09-19′,126216940,138,’Released’,’Everything is suspect… Everyone is for sale… And nothing is what it seems.’,7.70,1310),(2119,’Days of Thunder’,60000000,”,’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.’,16.278022,’1990-06-27′,157920733,107,’Released’,’You can\’t stop the thunder.’,5.90,353),(2122,’The Whole Ten Yards’,40000000,”,’Jimmy \’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.’,14.729386,’2004-04-07′,26155781,98,’Released’,’They missed each other. This time, their aim is better.’,5.50,278),(2123,’Me, Myself & Irene’,51000000,”,’Rhode Island State Trooper Charlie Baileygates 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.’,39.001682,’2000-06-22′,149270999,116,’Released’,’From gentle to mental.’,6.10,927),(2133,’The Perfect Storm’,120000000,”,’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.’,25.752118,’2000-03-15′,325756637,130,’Released’,’The storm is coming.’,6.20,597),(2135,’The Time Machine’,80000000,’http://timemachine.countingdown.com/’,’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.’,25.978555,’2002-03-04′,123729176,96,’Released’,’The greatest adventure THROUGH all time!’,5.80,631),(2140,’Kiss of the Dragon’,25000000,”,’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.’,16.936576,’2001-07-06′,64437847,98,’Released’,’Kiss Fear Goodbye’,6.40,298),(2142,’Cop Land’,15000000,’http://www.miramax.com/movie/cop-land’,’Freddy Heflin is the sheriff of a place everyone calls â��Cop Landâ�� â�� a small and seemingly peaceful town populated by the big city police officers heâ��s long admired. Yet something ugly is taking place behind the townâ��s peaceful facade. And when Freddy uncovers a massive, deadly conspiracy among these local residents, he is forced to take action and make a dangerous choice between protecting his idols and upholding the law.’,19.284129,’1997-08-15′,44862187,104,’Released’,’No One Is Above The Law.’,6.60,382),(2148,’The Cotton Club’,58000000,”,’The story of the people that frequented Harlem\’s famous nightclubs, \’The Cotton Club\’, and those that ran it.’,8.590750,’1984-12-14′,25928721,127,’Released’,’It was the jazz age. It was an era of elegance and violence. The action was gambling. The stakes were life and death.’,6.60,68),(2155,’Reindeer Games’,42000000,”,’After assuming his dead cellmate\’s identity to get with his girlfriend, an ex-con finds himself the reluctant participant in a casino heist.’,11.470135,’2000-02-25′,32168970,124,’Released’,’The trap is set. The game is on.’,5.40,173),(2157,’Lost in Space’,80000000,”,’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.’,17.455024,’1998-04-03′,136159423,130,’Released’,’Danger, Will Robinson!’,5.00,388),(2162,’Chill Factor’,70000000,”,’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.’,3.276912,’1999-09-01′,11263966,101,’Released’,’This Fall, Action is served on the rocks, with a twist.’,5.30,29),(2163,’Breakdown’,36000000,”,’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.’,9.176339,’1997-05-02′,50159144,95,’Released’,’It could happen to you.’,6.60,198),(2176,’The Glass House’,30000000,”,’After the parents of Ruby and her younger brother, Rhett, are killed in a car crash, their parents\’ best friends, Erin and Terry Glass, become their guardians. The children hear promises of a world of opulence and California fun — all they have to do is move into the Glasses\’ gated house. Before very long, though, Ruby suspects that Erin and Terry may not be the ideal guardians they seemed to be.’,9.448517,’2001-09-14′,23619609,106,’Released’,’The glass is about to be shattered…’,5.40,201),(2185,’Big Trouble’,40000000,”,’The story of how a mysterious suitcase brings together, and changes, the lives of a divorced dad, an unhappy housewife, two hitmen, a pair of street thugs, two love struck teens, two FBI men and a psychedelic toad. Based on Pulitzer Prize-winning humorist Dave Barry\’s best-selling first novel, \”Big Trouble.\”‘,5.201688,’2002-04-05′,8493890,85,’Released’,’They have forty-five minutes to save the world. They need forty-six.’,6.30,80),(2196,’Death at a Funeral’,9000000,’http://www.deathatafuneral-themovie.com/’,’Chaos ensues when a man tries to expose a dark secret regarding a recently deceased patriarch of a dysfunctional British family.’,20.410354,’2007-02-09′,46,90,’Released’,’From director Frank Oz comes the story of a family that puts the F U in funeral.’,6.90,497),(2207,’16 Blocks’,55000000,”,’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.’,32.310220,’2006-03-01′,65664721,105,’Released’,’For a New York cop and his witness, the distance between life and death just got very short.’,6.20,661),(2211,’Aimee & Jaguar’,0,”,’Berlin 1943/44 (\”The Battle of Berlin\”). Felice, an intelligent and courageous Jewish woman who lives under a false name, belongs to an underground organization. Lilly, a devoted mother of four, though an occasional unfaithful wife, is desperate for love. An unusual and passionate love between them blossoms despite the danger of persecution and nightly bombing raids. The Gestapo is on Felice\’s trail. Her friends flee, she decides to sit out the war with Lilly. One hot day in August 1944, the Gestapo is waiting in Lilly\’s flat…’,2.832628,’1999-02-10′,0,125,’Released’,”,6.30,20),(2251,’Unfaithful’,50000000,”,’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.’,14.382253,’2002-05-10′,119137784,124,’Released’,’Where do you go when you\’ve gone too far?’,6.30,276),(2252,’Eastern Promises’,51500000,’http://www.focusfeatures.com/easternpromises/’,’A Russian teenager living in London who dies during childbirth leaves clues to a midwife in her journal that could tie her child to a rape involving a violent Russian mob family.’,35.481169,’2007-09-14′,55112356,100,’Released’,’Every sin leaves a mark.’,7.20,848),(2253,’Valkyrie’,75000000,”,’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ührer.’,38.832842,’2008-12-25′,200276000,121,’Released’,’Many saw evil. They dared to stop it.’,6.70,1173),(2255,’Chasing Amy’,250000,’http://www.viewaskew.com/chasingamy/’,’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.’,20.601483,’1997-04-04′,12021272,113,’Released’,’It\’s not who you love. It\’s how.’,6.70,433),(2266,’Paris, je t\’aime’,13000000,”,’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.’,10.573191,’2006-05-16′,4857367,120,’Released’,’Fall in love with Paris 18 times.’,6.80,207),(2268,’The Golden Compass’,180000000,’http://www.goldencompassmovie.com/index_german.html’,’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.’,42.990906,’2007-12-04′,372234864,113,’Released’,’There are worlds beyond our own – the compass will show the way.’,5.80,1303),(2270,’Stardust’,70000000,’http://www.stardustmovie.com’,’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.’,48.032734,’2007-08-09′,135560026,127,’Released’,’This Summer A Star Falls. The Chase Begins.’,7.10,1184),(2275,’The General\’s Daughter’,60000000,”,’When the body of Army Capt. Elizabeth Campbell is found on a Georgia military base, two investigators, Warrant Officers Paul Brenner and Sara Sunhill, are ordered to solve her murder. What they uncover is anything but clear-cut. Unseemly details emerge about Campbell\’s life, leading to allegations of a possible military coverup of her death and the involvement of her father, Lt. Gen. Joseph Campbell.’,18.345613,’1999-06-18′,149705852,116,’Released’,’Go behind the lies.’,6.10,205),(2277,’Bicentennial Man’,100000000,”,’Richard Martin buys a gift, a new NDR-114 robot. The product is named Andrew by the youngest of the family\’s children. \”Bicentennial Man\” follows the life and times of Andrew, a robot purchased as a household appliance programmed to perform menial tasks. As Andrew begins to experience emotions and creative thought, the Martin family soon discovers they don\’t have an ordinary robot.’,24.939295,’1999-12-17′,93700000,131,’Released’,’One robot\’s 200 year journey to become an ordinary man.’,6.90,963),(2280,’Big’,18000000,”,’A young boy, Josh Baskin makes a wish at a carnival machine to be big. He wakes up the following morning to find that it has been granted and his body has grown older overnight. But he is still the same 13-year-old boy inside. Now he must learn how to cope with the unfamiliar world of grown-ups including getting a job and having his first romantic encounter with a woman. What will he find out about this strange world?’,20.716023,’1988-06-03′,151668774,104,’Released’,’You\’re Only Young Once But For Josh It Might Just Last A Lifetime.’,6.90,993),(2287,’Rize’,0,”,’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.’,1.623769,’2005-01-15′,0,86,’Released’,”,5.90,13),(2288,’Closer’,27000000,”,’A witty, romantic, and very dangerous love story about chance meetings, instant attractions, and casual betrayals. Two couples disintegrate when they begin destructive adulterous affairs with each other.’,22.636908,’2004-12-01′,115505027,104,’Released’,’If you believe in love at first sight, you never stop looking.’,6.70,811),(2289,’Cold Mountain’,79000000,”,’In this classic story of love and devotion set against the backdrop of the American Civil War, a wounded Confederate soldier named W.P. Inman deserts his unit and travels across the South, aiming to return to his young wife, Ada, who he left behind to tend their farm. As Inman makes his perilous journey home, Ada struggles to keep their home intact with the assistance of Ruby, a mysterious drifter sent to help her by a kindly neighbor.’,24.598479,’2003-12-24′,173013509,154,’Released’,’Find the strength. Find the courage. No matter what it takes… find the way home.’,6.70,533),(2290,’Jakob the Liar’,0,”,’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.’,8.962245,’1999-09-16′,0,120,’Released’,’When all hope was lost, he invented it.’,6.00,90),(2292,’Clerks’,27000,’http://www.miramax.com/movie/clerks/’,’Convenience and video store clerks Dante and Randal are sharp-witted, potty-mouthed 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.’,19.748658,’1994-09-13′,3151130,92,’Released’,’Just because they serve you doesn\’t mean they like you.’,7.40,755),(2293,’Mallrats’,6000000,”,’Both dumped by their girlfriends, two best friends seek refuge in the local mall.’,16.139771,’1995-10-20′,2122561,94,’Released’,’They\’re not there to shop. They\’re not there to work. They\’re just there.’,6.80,392),(2294,’Jay and Silent Bob Strike Back’,22000000,”,’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.’,21.865021,’2001-08-22′,33788161,104,’Released’,’Hollywood had it coming’,6.40,480),(2295,’Clerks II’,5000000,”,’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.’,18.077963,’2006-05-25′,26888376,97,’Released’,’With No Power Comes No Responsibility’,6.90,398),(2300,’Space Jam’,80000000,’http://www.warnerbros.com/archive/spacejam/movie/jam.htm’,’In a desperate attempt to win a basketball match and earn their freedom, the Looney Tunes seek the aid of retired basketball champion, Michael Jordan.’,36.125715,’1996-11-15′,250200000,88,’Released’,’Get ready to jam.’,6.50,1288),(2309,’Inkheart’,60000000,’http://www.inkheartmovie.com/’,’The adventures of a father and his young daughter, in their search for a long lost book that will help reunite a missing, close relative.’,27.018886,’2008-12-11′,57490374,106,’Released’,’Every story ever written is just waiting to become real.’,6.00,592),(2310,’Beowulf’,70000000,’http://www.beowulfmovie.com/’,’6th-century Scandinavian warrior, Beowulf embarks on a mission to slay the manlike ogre Grendel, a descendant of Cain.’,35.601665,’2007-11-05′,195735876,115,’Released’,’Evil breeds pain.’,5.50,841),(2312,’In the Name of the King: A Dungeon Siege Tale’,60000000,’http://www.inthenameoftheking.com/’,’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.’,15.406173,’2007-11-29′,0,127,’Released’,’Rise and fight’,4.10,224),(2320,’Executive Decision’,55000000,”,’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.’,17.231675,’1996-03-15′,121969216,133,’Released’,’Fasten your seat belts’,5.80,256),(2355,’Reign Over Me’,20000000,’http://www.sonypictures.com/movies/reignoverme/index.html’,’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.’,20.827780,’2007-03-23′,22222308,124,’Released’,’Let in the unexpected.’,7.10,334),(2359,’Sicko’,9000000,”,’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 losing peoples lives. \”The more people you deny health insurance the more money we make\” is the business model for health care providers in America.’,14.098952,’2007-05-18′,24538513,123,’Released’,’This might hurt a little.’,7.30,235),(2370,’Topaz’,4000000,”,’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.’,5.975604,’1969-12-18′,6000000,143,’Released’,’Hitchcock takes you behind the actual headlines to expose the most explosive spy scandal of the century!’,6.10,77),(2395,’Astérix aux Jeux Olympiques’,97250400,’http://www.asterixauxjeuxolympiques.com/index.php’,’Astérix and Obélix have to win the Olympic Games in order to help their friend Alafolix marry Princess Irina (portrayed by supermodel Vanessa Hessler). Brutus (Benoît 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.’,20.344364,’2008-01-13′,132900000,116,’Released’,”,5.00,471),(2428,’The Greatest Story Ever Told’,20000000,”,’All-star epic retelling of Christ\’s life.’,3.011205,’1965-02-15′,15473333,199,’Released’,”,6.50,41),(2447,’The Nativity Story’,35000000,”,’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.’,3.721272,’2006-12-01′,0,101,’Released’,’Her child would change the world.’,6.40,35),(2453,’Harley Davidson and the Marlboro Man’,23000000,’http://www.mgm.com/title_title.do?title_star=HARLEYDA’,’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.’,12.869436,’1991-08-23′,7434726,98,’Released’,’When the going gets tough… the tough take the law into their own hands.’,6.10,82),(2454,’The Chronicles of Narnia: Prince Caspian’,225000000,”,’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.’,53.978602,’2008-05-15′,419651413,150,’Released’,’Hope has a new face.’,6.30,1630),(2486,’Eragon’,100000000,’http://www.eragonmovie.com/’,’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.’,30.863434,’2006-12-14′,249288105,104,’Released’,’As darkness falls, the last dragon will choose its rider.’,4.90,967),(2493,’The Princess Bride’,16000000,”,’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.’,44.533612,’1987-09-18′,30857814,98,’Released’,’It\’s as real as the feelings you feel.’,7.60,1486),(2501,’The Bourne Identity’,60000000,’http://www.universalstudiosentertainment.com/the-bourne-identity/’,’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. However, Bourne realizes that he has the combat and mental skills of a world-class spy â�� but who does he work for?’,86.476817,’2002-06-14′,214034224,119,’Released’,’He was the perfect weapon until he became the target.’,7.30,3583),(2502,’The Bourne Supremacy’,75000000,’https://www.uphe.com/movies/the-bourne-supremacy’,’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.’,53.213931,’2004-07-23′,288500217,108,’Released’,’They should have left him alone.’,7.20,2825),(2503,’The Bourne Ultimatum’,70000000,’http://www.universalstudiosentertainment.com/the-bourne-ultimatum/’,’Bourne is brought out of hiding once again 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 while dodging The Company\’s best efforts to eradicate him.’,45.381501,’2007-08-03′,442824138,115,’Released’,’Remember everything. Forgive nothing.’,7.30,2888),(2539,’Spanglish’,80000000,”,’Mexican immigrant and single mother Flor Moreno finds housekeeping work with Deborah and John Clasky, a well-off couple with two children of their own. When Flor admits she can\’t handle the schedule because of her daughter, Cristina, Deborah decides they should move into the Clasky home. Cultures clash and tensions run high as Flor and the Claskys struggle to share space while raising their children on their own, and very different, terms.’,14.209329,’2004-12-17′,55041367,130,’Released’,’Every family has a hero.’,5.80,369),(2567,’The Aviator’,116000000,”,’A biopic depicting the life of filmmaker and aviation pioneer Howard Hughes from 1927 to 1947, during which time he became a successful film producer and an aviation magnate, while simultaneously growing more unstable due to severe obsessive-compulsive disorder.’,45.616098,’2004-12-17′,102000000,170,’Released’,’For some men, the sky was the limit. For him, it was just the beginning.’,7.00,1489),(2575,’The Tailor of Panama’,21000000,”,’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.’,7.047975,’2001-02-11′,28008462,109,’Released’,’In a place this treacherous, what a good spy needs is a spy of his own.’,6.20,92),(2577,’Code 46′,7500000,”,’A futuristic \’Brief Encounter\’, a love story in which the romance is doomed by genetic incompatibility.’,8.859657,’2003-09-02′,0,92,’Released’,’How do you solve a crime when the last thing you want to know is the truth?’,6.20,116),(2604,’Born on the Fourth of July’,14000000,”,’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.’,25.949277,’1989-12-20′,161001698,145,’Released’,’A story of innocence lost and courage found.’,6.70,395),(2610,’Shopgirl’,10284523,”,’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ée 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.’,4.820166,’2005-10-21′,11588205,104,’Released’,”,5.70,75),(2619,’Splash’,8000000,”,’A successful businessman falls in love with the girl of his dreams. There\’s one big complication though; he\’s fallen hook, line and sinker for a mermaid.’,21.735068,’1984-03-09′,69821334,111,’Released’,’Allen Bauer Thought He\’d Never Find The Right Woman… He Was Only Half Wrong!’,6.10,321),(2621,’Return to Me’,24000000,”,’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.’,5.771479,’2000-04-07′,36609995,115,’Released’,’A comedy straight from the heart’,6.10,67),(2636,’The Specialist’,45000000,”,’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.’,16.582709,’1994-10-07′,170362582,110,’Released’,’The government taught him to kill. Now he\’s using his skills to help a woman seek revenge against the Miami underworld.’,5.50,313),(2637,’The Mothman Prophecies’,32000000,”,’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.’,14.733513,’2002-01-25′,55157539,119,’Released’,’What do you see?’,6.10,305),(2639,’Deconstructing Harry’,20000000,”,’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.’,11.352693,’1997-08-26′,10686841,96,’Released’,’Harry Block has written a best seller… bout his best friends… he revealed their deepest secrets… and they\’re not pleased… now Harry Block is going to Hell…’,7.30,187),(2642,’Two Weeks Notice’,60000000,”,’Dedicated environmental lawyer Lucy Kelson goes to work for billionaire George Wade as part of a deal to preserve a community center. Indecisive and weak-willed George grows dependent on Lucy\’s guidance on everything from legal matters to clothing. Exasperated, Lucy gives notice and picks Harvard graduate June Carter as her replacement. As Lucy\’s time at the firm nears an end, she grows jealous of June and has second thoughts about leaving George.’,24.153567,’2002-12-19′,93354918,101,’Released’,’Over. Done. Finished. A comedy about love at last glance.’,5.90,487),(2649,’The Game’,50000000,”,’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 nearly a nanosecond, Nicholas finds himself consumed by a dangerous set of ever-changing rules, unable to distinguish where the charade ends and reality begins.’,62.925175,’1997-09-12′,109423648,129,’Released’,’What do you get for the man who has everything?’,7.50,1506),(2652,’Hard Candy’,950000,’http://hardcandymovie.com/’,’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.’,25.918007,’2005-01-14′,7022209,103,’Released’,’Strangers shouldn\’t talk to little girls.’,6.80,701),(2655,’What Lies Beneath’,100000000,”,’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.’,15.835672,’2000-07-21′,155464351,130,’Released’,’He was the perfect husband until his one mistake followed them home.’,6.30,488),(2661,’Batman’,1377800,”,’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.’,9.815394,’1966-07-30′,0,105,’Released’,’He\’s Here Big As Life In A Real Bat-Epic’,6.10,203),(2662,’House of 1000 Corpses’,7000000,’http://robzombie.com/movies/house-of-1000-corpses/’,’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.’,19.301432,’2003-04-11′,16829545,89,’Released’,’You\’ll never get out alive.’,6.00,306),(2666,’Dark City’,27000000,”,’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.’,39.324831,’1998-02-27′,27200316,100,’Released’,’A world where the night never ends.’,7.20,828),(2667,’The Blair Witch Project’,60000,’http://www.blairwitch.com/’,’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.’,41.690578,’1999-07-14′,248000000,81,’Released’,’The scariest movie of all time is a true story.’,6.30,1055),(2669,’The Bounty’,25000000,”,’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.’,7.436491,’1984-05-04′,8613462,132,’Released’,’After 200 years, the truth behind the legend.’,6.50,108),(2675,’Signs’,72000000,”,’A family living on a farm finds mysterious crop circles in their fields which suggests something more frightening to come.’,28.848187,’2002-08-02′,408247917,106,’Released’,’Itâ��s not like they didnâ��t warn us.’,6.40,1599),(2687,’Memoirs of an Invisible Man’,40000000,’http://www.theofficialjohncarpenter.com/memoirs-of-an-invisible-man/’,’After a freak accident, an invisible yuppie runs for his life from a treacherous CIA official while trying to cope with his new life.’,7.222985,’1992-02-28′,14358033,99,’Released’,’An adventure like you\’ve never seen.’,5.70,125),(2698,’Evan Almighty’,175000000,’http://www.evanalmighty.com/’,’God contacts Congressman Evan Baxter and tells him to build an ark in preparation for a great flood.’,27.082182,’2007-06-09′,173000000,96,’Released’,’A comedy of biblical proportions’,5.30,1151),(2749,’15 Minutes’,60000000,”,’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 partner, filming everything to sell to the local tabloid TV show \”Top Story.\”‘,15.205371,’2001-03-01′,56359980,120,’Released’,’America Likes to Watch’,5.70,191),(2752,’40 Days and 40 Nights’,17000000,”,’Matt Sullivan\’s last big relationship ended in disaster and ever since his heart\’s been aching and his commitment\’s been lacking. Then came Lent, that time of year when everybody gives something up. That\’s when Matt decides to go where no man\’s gone before and make a vow: No sex. Whatsoever. For 40 straight days. At first he has everything under control. That is until the woman of his dreams, Erica, walks into his life.’,14.181360,’2002-03-01′,0,94,’Released’,’Easier said than done.’,5.20,297),(2755,’About Schmidt’,30000000,”,’66-year-old Warren Schmidt is a retired insurance salesman and has no particular plans other than to drive around in the motor home his wife insisted they buy. He\’s not altogether bitter, but not happy either, as everything his wife does annoys him, and he disapproves of the man his daughter is about to marry. When his wife suddenly dies, he sets out to postpone the imminent marriage of his daughter to a man he doesn\’t like, while coping with discoveries about his late wife and himself in the process.’,19.925026,’2002-12-13′,105834556,125,’Released’,’Schmidt Happens’,6.70,362),(2756,’The Abyss’,70000000,”,’A civilian oil rig crew is recruited to conduct a search and rescue effort when a nuclear submarine mysteriously sinks. One diver soon finds himself on a spectacular odyssey 25,000 feet below the ocean\’s surface where he confronts a mysterious force that has the power to change the world or destroy it.’,24.961625,’1989-08-09′,90000098,139,’Released’,’There\’s everything you\’ve ever known about adventure, and then there\’s The Abyss.’,7.10,808),(2757,’Adaptation.’,19000000,’http://www.sonypictures.com/homevideo/adaptation/index.html’,’A love-lorn script writer grows increasingly desperate in his quest to adapt the book \’The Orchid Thief\’.’,26.441669,’2002-12-06′,32801173,114,’Released’,’From the creator of Being John Malkovich, comes the story about the creator of Being John Malkovich.’,7.30,638),(2770,’American Pie 2′,30000000,”,’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…’,36.432598,’2001-08-10′,287553595,108,’Released’,’This Summer It\’s All About Sticking Together.’,6.00,1344),(2771,’American Splendor’,0,’http://www.newline.com/properties/americansplendor.html’,’An original mix of fiction and reality illuminates the life of comic book hero everyman Harvey Pekar.’,7.792851,’2003-08-15′,6003587,101,’Released’,’Ordinary life is pretty complex stuff’,7.10,120),(2779,’The Curse of the Jade Scorpion’,0,”,’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.’,9.317265,’2001-08-05′,0,103,’Released’,’Love stings’,6.50,165),(2786,’Pierrot le fou’,300000,”,’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.’,7.791898,’1965-08-29′,0,110,’Released’,”,7.60,127),(2787,’Pitch Black’,23000000,’http://www.pitchblack.com/’,’When their ship crash-lands on a remote planet, the marooned passengers soon learn that escaped convict Riddick isn\’t the only thing they have to fear. Deadly creatures lurk in the shadows, waiting to attack in the dark, and the planet is rapidly plunging into the utter blackness of a total eclipse. With the body count rising, the doomed survivors are forced to turn to Riddick with his eerie eyes to guide them through the darkness to safety. With time running out, there\’s only one rule: Stay in the light.’,18.493202,’2000-02-18′,53187659,108,’Released’,’Don\’t be afraid of the dark. Be afraid of what\’s in the dark’,6.70,1789),(2789,’The Chronicles of Riddick’,105000000,”,’After years of outrunning ruthless bounty hunters, escaped convict Riddick suddenly finds himself caught between opposing forces in a fight for the future of the human race. Now, waging incredible battles on fantastic and deadly worlds, this lone, reluctant hero will emerge as humanity\’s champion – and the last hope for a universe on the edge of annihilation.’,27.835436,’2004-06-11′,115772733,119,’Released’,’All the power in the universe can\’t change destiny’,6.30,1570),(2830,’My Boss\’s Daughter’,14000000,”,’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.’,14.813614,’2003-08-21′,0,83,’Released’,”,4.40,180),(2832,’Identity’,30000000,”,’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.’,45.915165,’2003-04-25′,90259536,90,’Released’,’The secret lies within.’,7.10,1061),(2841,’Un long dimanche de fiançailles’,47000000,”,’In 1919, Mathilde was 19 years old. Two years earlier, her fiancé Manech left for the front at the Somme. Like millions of others he was \”killed on the field of battle.\” It\’s written in black and white on the official notice. But Mathilde refuses to believe it. If Manech had died, she would know. She hangs on to her intuition as tightly as she would onto the last thread of hope linking her to her lover. A former sergeant tells her in vain that Manech died in the no man\’s land of a trench named Bingo Crepescule, in the company of four other men condemned to die for self-inflicted wounds. Her path ahead is full of obstacles but Mathilde is not frightened. Anything is possible to someone who is willing to challenge fate…’,23.054510,’2004-10-26′,0,133,’Released’,’Never let go’,7.10,346),(2895,’The Apostle’,5000000,”,’After his happy life spins out of control, a preacher from Texas changes his name, goes to Louisiana and starts preaching on the radio.’,4.227807,’1997-10-09′,0,134,’Released’,’The hardest soul to save was his own.’,6.10,38),(2898,’As Good as It Gets’,50000000,”,’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.’,37.885022,’1997-12-19′,314178011,139,’Released’,’A comedy from the heart that goes for the throat.’,7.20,915),(2900,’The Astronaut\’s Wife’,75000000,”,’When astronaut Spencer Armacost returns to Earth after a mission that nearly cost him his life, he decides to take a desk job in order to see his beautiful wife, Jillian, more often. Gradually, Jillian notices that Spencer\’s personality seems to have changed, but her concerns fade when she discovers that she\’s pregnant. As Jillian grows closer to becoming a mother, her suspicions about Spencer return. Why does it seem as if he\’s a different person?’,20.697556,’1999-08-26′,19598588,109,’Released’,’How well do you know the one you love?’,5.40,254),(2907,’The Addams Family’,30000000,”,’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?’,37.179547,’1991-11-22′,191502426,99,’Released’,’Weird Is Relative’,6.70,848),(2925,’The First Wives Club’,26000000,”,’After years of helping their hubbies climb the ladder of success, three mid-life Manhattanites have been dumped for a newer, curvier model. But the trio is determined to turn their pain into gain. They come up with a cleverly devious plan to hit their exes where it really hurts – in the wallet!’,10.704596,’1996-09-20′,116400000,102,’Released’,’Don\’t get mad. Get everything.’,6.50,166),(2959,’License to Wed’,35000000,’http://licensetowedthemovie.warnerbros.com/’,’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.’,14.503568,’2007-07-04′,69307224,91,’Released’,’First came love… then came Reverend Frank.’,5.20,253),(2976,’Hairspray’,50000000,’http://www.hairspraymovie.com/’,’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.’,31.160542,’2007-07-13′,90450008,117,’Released’,’When you follow your own beat, the world will follow you.’,6.50,709),(2977,’Becoming Jane’,16500000,’http://becomingjane-themovie.com/’,’A biographical portrait of a pre-fame Jane Austen and her romance with a young Irishman.’,18.236284,’2007-03-02′,37311672,120,’Released’,’Her own life is her greatest inspiration.’,6.90,317),(2989,’Roar’,17000000,’http://www.roarthemovie.com/’,’Roar follows a family who are attacked by various African animals at the secluded home of their keeper.’,1.156410,’1981-11-12′,2000000,102,’Released’,’No animals were harmed in the making of this movie. 70 members of the cast and crew were.’,5.60,19),(3021,’1408′,25000000,’http://www.1408-themovie.com/’,’A man who specializes in debunking paranormal occurrences checks into the fabled room 1408 in the Dolphin Hotel. Soon after settling in, he confronts genuine terror.’,35.169779,’2007-07-12′,94679598,104,’Released’,’The only demons in room 1408 are those within you.’,6.50,1343),(3028,’Jekyll and Hyde … Together Again’,0,”,’Dr. Jekyll (Mark Blankfield) inhales white powder and becomes an obnoxious Southern Californian.’,0.805312,’1982-11-10′,0,87,’Released’,’The comedy that examines modern living through chemistry’,4.60,5),(3033,’Gods and Monsters’,10000000,’http://www.godsandmonsters.net/’,’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.’,5.588652,’1998-01-21′,6451628,105,’Released’,”,6.80,81),(3034,’Young Frankenstein’,2800000,”,’A young neurosurgeon inherits the castle of his grandfather, the famous Dr. Victor von Frankenstein. In the castle he finds a funny hunchback, a pretty lab assistant and the elderly housekeeper. Young Frankenstein believes that the work of his grandfather was delusional, but when he discovers the book where the mad doctor described his reanimation experiment, he suddenly changes his mind.’,36.444894,’1974-12-15′,86273333,106,’Released’,’The scariest comedy of all time!’,7.70,854),(3040,’Ð�оÑ�ной дозоÑ�’,4200000,”,’Among normal humans live the \”Others\” possessing various supernatural powers. They are divided up into the forces of light and the forces of the dark, who signed a truce several centuries ago to end a devastating battle. Ever since, the forces of light govern the day while the night belongs to their dark opponents. In modern day Moscow the dark Others actually roam the night as vampires while a \”Night Watch\” of light forces, among them Anton, the movie\’s protagonist, try to control them and limit their outrage’,12.540624,’2004-06-27′,32000000,114,’Released’,’All That Stands Between Light And Darkness Is The Night Watch.’,6.30,210),(3049,’Ace Ventura: Pet Detective’,15000000,”,’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!’,41.249004,’1994-02-04′,107217396,86,’Released’,’He\’s the best there is! (Actually, he\’s the only one there is.)’,6.40,1648),(3050,’Doctor Dolittle’,71000000,”,’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!’,21.462935,’1998-06-22′,294456605,85,’Released’,’He doesn\’t just talk to the animals!’,5.40,686),(3059,’Intolerance’,385907,”,’The story of a poor young woman, separated by prejudice from her husband and baby, is interwoven with tales of intolerance from throughout history.’,3.232447,’1916-09-04′,8394751,197,’Released’,’The Cruel Hand of Intolerance’,7.40,60),(3060,’The Big Parade’,245000,”,’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.’,0.785744,’1925-11-05′,22000000,151,’Released’,”,7.00,21),(3062,’42nd Street’,439000,”,’A producer puts on what may be his last Broadway show, and at the last moment a chorus girl has to replace the star.’,1.933366,’1933-02-02′,2281000,89,’Released’,”,6.10,37),(3078,’It Happened One Night’,325000,”,’Ellie Andrews has just tied the knot with society aviator King Westley when she is whisked away to her father\’s yacht and out of King\’s clutches. Ellie jumps ship and eventually winds up on a bus headed back to her husband. Reluctantly she must accept the help of out-of- work reporter Peter Warne. Actually, Warne doesn\’t give her any choice: either she sticks with him until he gets her back to her husband, or he\’ll blow the whistle on Ellie to her father. Either way, Peter gets what he wants… a really juicy newspaper story!’,11.871424,’1934-02-22′,4500000,105,’Released’,’TOGETHER… for the first time’,7.70,275),(3080,’Top Hat’,609000,”,’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.’,3.898498,’1935-09-06′,3202000,101,’Released’,’They\’re Dancing Cheek-To-Cheek Again!’,7.40,59),(3082,’Modern Times’,1,”,’The Tramp struggles to live in modern industrial society with the help of a young homeless woman.’,28.276480,’1936-02-05′,8500000,87,’Released’,’He stands alone as the greatest entertainer of modern times! No one on earth can make you laugh as heartily or touch your heart as deeply…the whole world laughs, cries and thrills to his priceless genius!’,8.10,856),(3083,’Mr. Smith Goes to Washington’,1500000,”,’Naive and idealistic Jefferson Smith, leader of the Boy Rangers, is appointed on a lark by the spineless governor of his state. He is reunited with the state\’s senior senator–presidential hopeful and childhood hero, Senator Joseph Paine. In Washington, however, Smith discovers many of the shortcomings of the political process as his earnest goal of a national boys\’ camp leads to a conflict with the state political boss, Jim Taylor. Taylor first tries to corrupt Smith and then later attempts to destroy Smith through a scandal.’,12.262400,’1939-10-19′,9600000,129,’Released’,’Romance, drama, laughter and heartbreak… created out of the very heart and soil of America!’,7.90,241),(3089,’Red River’,3000000,”,’Dunson is driving his cattle to Red River when his adopted son, Matthew, turns against him.’,5.344815,’1948-08-26′,9012000,133,’Released’,’Big as the men who faced this challenge! Bold as the women who loved them!’,7.30,82),(3093,’Basic Instinct 2′,70000000,”,’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.’,13.483387,’2006-03-29′,38629478,114,’Released’,’Everything interesting begins in the mind’,4.60,180),(3116,’Midnight Cowboy’,3600000,”,’A naive male prostitute and his sickly friend struggle to survive on the streets of New York City.’,21.119209,’1969-05-25′,44785053,113,’Released’,’Whatever you hear about Midnight Cowboy is true.’,7.40,299),(3131,’Gangs of New York’,100000000,’http://video.movies.go.com/gangsofnewyork/’,’It\’s 1863. America was born in the streets. Amsterdam Vallon returns to the Five Points of America to seek vengeance against the psychotic gangland kingpin, Bill the Butcher, who murdered his father years earlier. 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.’,46.160048,’2002-12-14′,193772504,167,’Released’,’America was born in the streets.’,7.10,1910),(3132,’Bad Company’,70000000,”,’When a Harvard-educated CIA agent is killed during an operation, the secret agency recruits his twin brother.’,14.086292,’2002-06-07′,65977295,116,’Released’,’Two Mismatched Partners. One Messed Up Case!’,5.40,228),(3170,’Bambi’,858000,’http://movies.disney.com/bambi’,’Bambi\’s tale unfolds from season to season as the young prince of the forest learns about life, love, and friends.’,47.651878,’1942-08-14′,267447150,70,’Released’,’A great love story.’,6.80,1405),(3172,’Bandits’,75000000,”,’Two bank robbers fall in love with the girl they\’ve kidnapped.’,24.353302,’2001-10-12′,67631903,123,’Released’,’Two\’s company, three\’s a crime.’,6.20,302),(3175,’Barry Lyndon’,11000000,”,’In the Eighteenth Century, in a small village in Ireland, Redmond Barry is a young farm boy in love with 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.’,29.543331,’1975-12-18′,20000000,184,’Released’,’At long last Redmond Barry became a gentleman – and that was his tragedy.’,7.70,505),(3179,’Beavis and Butt-Head Do America’,12000000,”,’Mike Judge\’s slacker duo, Beavis and Butt-Head, wake to discover their TV has been stolen. Their search for a new one takes them on a clueless adventure across America where they manage to accidentally become America\’s most wanted.’,12.606290,’1996-12-15′,0,81,’Released’,’Coming to a screen bigger than your TV.’,6.50,168),(3291,’Good Night, and Good Luck.’,7000000,’http://wip.warnerbros.com/goodnightgoodluck/’,’The story of journalist, Edward R Murrow\’s stand against Senator McCarthy\’s anti-communist witch-hunts in the early 1950s.’,17.717681,’2005-09-16′,54600000,93,’Released’,’They took on the Government with nothing but the truth.’,6.80,273),(3472,’Dirty Pretty Things’,0,”,’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, a Turkish woman, and a Nigerian doctor named Okwe 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 called to fix a toilet in one of the rooms. He discovers the plumbing has been clogged by a human heart.’,9.177896,’2002-09-05′,0,97,’Released’,’Every dream has its price.’,6.80,131),(3482,’The Train’,5800000,”,’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 all happen smoothly but he is also part of a dwindling group of resistance fighters tasked with preventing the theft. He and others stage an elaborate ruse to keep the train from ever leaving French territory.’,4.490290,’1964-09-21′,6800000,133,’Released’,’It carried their hopes, their nation\’s honour!’,7.20,72),(3489,’88 Minutes’,30000000,”,’\”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.’,16.883429,’2007-02-14′,16930884,108,’Released’,’He has 88 minutes to solve a murder. His own.’,5.70,313),(3509,’A Scanner Darkly’,8700000,’http://www.warnerbros.com/movies/home-entertainment/scanner-darkly-a/d7c290af-c285-41c4-a4d6-efb3a86b3893.html’,’An undercover cop in a not-too-distant future becomes involved with a dangerous new drug and begins to lose his own identity as a result.’,26.093043,’2006-05-25′,7659918,100,’Released’,’Everything Is Not Going To Be OK’,6.80,532),(3512,’Under Siege 2: Dark Territory’,60000000,”,’A passenger train has been hijacked by an electronics expert and turned into an untraceable command center for a weapons satellite. He has planned to blow up Washington DC and only one man can stop him, former Navy SEAL Casey Ryback.’,13.080725,’1995-07-13′,104324083,100,’Released’,’Last time he rocked the boat. This time the sky\’s the limit.’,5.60,210),(3536,’U-571′,62000000,’http://www.u-571.com/’,’In the midst of World War II, the battle under the sea rages and the Nazis have the upper hand as the Allies are unable to crack their war codes. However, after a wrecked U-boat sends out an SOS signal, the Allies realise this is their chance to seize the \’enigma coding machine\’.’,18.096884,’2000-04-20′,127666415,116,’Released’,’Heroes are ordinary men who do extraordinary things in extraordinary times.’,6.10,340),(3558,’Girl, Interrupted’,40000000,”,’Set in the changing world of the late 1960\’s, Susanna Kaysen\’s prescribed \”short rest\” from a psychiatrist she had met only once becomes a strange, unknown journey into Alice\’s Wonderland, where she struggles with the thin line between normal and crazy. Susanna soon realizes how hard it is to get out once she has been committed, and she ultimately has to choose between the world of people who belong inside or the difficult world of reality outside.’,10.713521,’1999-12-21′,0,127,’Released’,’The crazy thing is, you\’re not crazy.’,7.60,721),(3580,’Changeling’,55000000,’http://www.changelingmovie.net’,’Christine Collins is overjoyed when her kidnapped son is brought back home. But when Christine suspects that the boy returned to her isn\’t her child, the police captain has her committed to an asylum.’,27.509160,’2008-01-30′,113020255,141,’Released’,’To find her son, she did what no one else dared.’,7.30,1131),(3587,’Bogus’,32000000,”,’Recently orphaned, a young boy is taken in by his godmother who is shocked to realize that she can see the boy\’s imaginary friend: a flamboyant, French magician named Bogus.’,3.379454,’1996-09-06′,0,110,’Released’,’A comedy about losing your heart, finding your inner child and meeting the one friend you\’ve always tried to avoid.’,5.40,44),(3594,’The Number 23′,30000000,’http://wwws.warnerbros.de/number23/’,’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.’,23.197408,’2007-02-23′,77566815,101,’Released’,’First it takes hold of your mind…then it takes hold of your life.’,6.30,1018),(3595,’Ransom’,80000000,”,’When a rich man\’s son is kidnapped, he cooperates with the police at first but then tries a unique tactic against the criminals.’,16.411345,’1996-11-08′,309492681,117,’Released’,’Someone is going to pay.’,6.40,470),(3597,’I Know What You Did Last Summer’,17000000,”,’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.\”‘,27.654472,’1997-10-17′,125586134,100,’Released’,’If you\’re going to bury the truth, make sure it stays buried.’,5.60,687),(3600,’I Still Know What You Did Last Summer’,65000000,”,’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?’,20.793026,’1998-11-13′,40002112,100,’Released’,’Someone is dying for a second chance.’,5.10,374),(3604,’Flash Gordon’,35000000,”,’A football player and his friends travel to the planet Mongo and find themselves fighting the tyrant, Ming the Merciless, to save Earth.’,12.343507,’1980-09-01′,27107960,111,’Released’,’He\’ll save every one of us!’,6.10,233),(3635,’Girl with a Pearl Earring’,0,”,’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.’,19.944479,’2003-08-31′,31466789,101,’Released’,’Discover the mystery behind the legend.’,6.40,377),(3638,’No Reservations’,28000000,’http://noreservationsmovie.warnerbros.com/’,’Master chef Kate Armstrong runs her life and her kitchen with intimidating intensity. However, a recipe for disaster may be in the works when she becomes the guardian of her young niece while crossing forks with the brash sous-chef who just joined her staff. Though romance blooms in the face of rivalry, Kate needs to look outside the kitchen to find true happiness.’,15.794946,’2007-07-25′,92601050,104,’Released’,’Life isn\’t always made to order.’,6.10,327),(3682,’54’,13000000,”,’Shane, a Jersey boy with big dreams, crosses the river in hopes of finding a more exciting life at Studio 54. When Steve Rubell, the mastermind behind the infamous disco, plucks Shane from the sea of faces clamoring to get inside his club, Shane not only gets his foot in the door, but lands a coveted job behind the bar â�� and a front-row seat at the most legendary party on the planet.’,11.880899,’1998-08-28′,16757163,106,’Released’,’You\’ve never been anywhere until you\’ve been here’,5.50,135),(3683,’Flags of Our Fathers’,90000000,”,’There were five Marines and one Navy Corpsman photographed raising the U.S. flag on Mt. Suribachi by Joe Rosenthal on February 23, 1945. This is the story of three of the six surviving servicemen â�� John \’Doc\’ Bradley, Pvt. Rene Gagnon and Pvt. Ira Hayes, who fought in the battle to take Iwo Jima from the Japanese.’,23.936600,’2006-10-18′,65900249,132,’Released’,’They fight for their country but they die for their friends.’,6.70,526),(3766,’The Lady from Shanghai’,2300000,”,’A romantic drifter gets caught between a corrupt tycoon and his voluptuous wife.’,8.055084,’1947-12-24′,0,87,’Released’,’I told you… you know nothing about wickedness’,7.20,102),(3877,’Things We Lost in the Fire’,16000000,’http://www.thingswelostinthefiremovie.com/’,’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.’,8.842869,’2007-09-26′,2849142,113,’Released’,’Hope comes with letting go.’,6.70,90),(3902,’I\’m Not There.’,20000000,’http://www.imnotthere-movie.com/’,’Six actors portray six personas of music legend Bob Dylan in scenes depicting various stages of his life, chronicling his rise from unknown folksinger to international icon and revealing how Dylan constantly reinvented himself.’,13.032308,’2007-10-01′,4001121,135,’Released’,’All I Can Do Is Be Me Whoever That Is’,6.60,195),(3933,’Corpse Bride’,40000000,’http://corpsebridemovie.warnerbros.com/’,’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.’,43.571612,’2005-09-09′,117195061,77,’Released’,’There\’s been a grave misunderstanding.’,7.20,1894),(3981,’What Women Want’,70000000,”,’Advertising executive Nick Marshall is as cocky as they come, but what happens to a chauvinistic guy when he can suddenly hear what women are thinking? Nick gets passed over for a promotion, but after an accident enables him to hear women\’s thoughts, he puts his newfound talent to work against Darcy, his new boss, who seems to be infatuated with him.’,31.391650,’2000-12-15′,374111707,127,’Released’,’He has the power to hear everything women are thinking. Finally… a man is listening.’,6.10,992),(3989,’Team America: World Police’,32000000,’http://www.teamamerica.com’,’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â�¦ Samuel L Jackson, Tim Robbins, Sean Penn, Michael Moore, Helen Hunt, Matt Damon, Susan Sarandon, George Clooney, Danny Glover, Ethan Hawke, Alec Baldwinâ�¦ or does it?’,26.509175,’2004-10-10′,50907422,98,’Released’,’Putting The \’F\’ back in \’Freedom\”,6.60,660),(4011,’Beetlejuice’,15000000,”,’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.’,58.553213,’1988-02-29′,73326666,92,’Released’,’He\’s guaranteed to put some life in your afterlife.’,7.10,1444),(4012,’The Believer’,1500000,”,’The movie tells the story of a young Jewish man who becomes fiercely anti-Semitic.’,9.856826,’2001-01-19′,416925,98,’Released’,”,6.80,151),(4032,’My Girl’,16500000,”,’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…’,20.935169,’1991-11-27′,0,102,’Released’,’When your Dad\’s an undertaker, your Mom\’s in heaven, and your Grandma\’s got a screw loose…it\’s good to have a friend who understands you. Even if he is a boy.’,7.00,428),(4105,’Black Rain’,30000000,”,’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.’,11.196020,’1989-09-22′,45892212,125,’Released’,’Their country. Their laws. Their game. His rules.’,6.20,243),(4107,’Bloody Sunday’,0,”,’The dramatised story of the Irish civil rights protest march on January 30 1972 which ended in a massacre by British troops.’,7.330691,’2002-01-16′,773228,107,’Released’,”,7.20,53),(4108,’The Transporter’,21000000,”,’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.’,34.433521,’2002-10-02′,43928932,92,’Released’,’Rules are made to be broken.’,6.60,1692),(4133,’Blow’,53000000,”,’A boy named George Jung grows up in a struggling family in the 1950\’s. His mother nags at her husband as he is trying to make a living for the family. It is finally revealed that George\’s father cannot make a living and the family goes bankrupt. George does not want the same thing to happen to him, and his friend Tuna, in the 1960\’s, suggests that he deal marijuana. He is a big hit in California in the 1960\’s, yet he goes to jail, where he finds out about the wonders of cocaine. As a result, when released, he gets rich by bringing cocaine to America. However, he soon pays the price.’,28.350529,’2001-04-04′,83282296,124,’Released’,’Based on a True Story.’,7.40,1317),(4147,’Road to Perdition’,80000000,”,’Mike Sullivan works as a hit man for crime boss John Rooney. Sullivan views Rooney as a father figure, however after his son is witness to a killing, Mike Sullivan finds himself on the run in attempt to save the life of his son and at the same time looking for revenge on those who wronged him.’,49.078546,’2002-07-12′,181001478,117,’Released’,’Pray for Michael Sullivan.’,7.30,1077),(4148,’Revolutionary Road’,35000000,”,’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.’,20.360549,’2008-12-19′,75225693,119,’Released’,’How do you break free without breaking apart?’,6.70,796),(4170,’Trade’,12000000,’http://www.trade-derfilm.de/’,’A Texas cop (Kevin Kline), whose own daughter might have been forced into sexual slavery, joins forces with a Mexican youth (Cesar Ramos) to find the boy\’s sister, who was abducted and forced into prostitution. Meanwhile, a Ukrainian woman who was promised a better life in America also becomes a victim.’,11.237374,’2007-01-23′,0,120,’Released’,’Each year, more than 1,000,000 people are trafficked across international borders… against their will.’,6.80,67),(4174,’Spellbound’,1500000,”,’When Dr. Anthony Edwardes arrives at a Vermont mental hospital to replace the outgoing hospital director, Dr. Constance Peterson, a psychoanalyst, discovers Edwardes is actually an impostor. The man confesses that the real Dr. Edwardes is dead and fears he may have killed him, but cannot recall anything. Dr. Peterson, however is convinced his impostor is innocent of the man\’s murder, and joins him on a quest to unravel his amnesia through psychoanalysis.’,11.145915,’1945-12-28′,7000000,111,’Released’,’The maddest love that ever possessed a woman.’,7.30,160),(4232,’Scream’,14000000,”,’A killer known as Ghostface begins killing off teenagers, and as the body count begins rising, one girl and her friends find themselves contemplating the \’rules\’ of horror films as they find themselves living in a real-life one.’,45.996110,’1996-12-20′,173046663,111,’Released’,’Someone has taken their love of scary movies one step too far.’,7.00,1476),(4233,’Scream 2′,24000000,”,’Two years after the terrifying events that occurred in Woodsboro, Sidney is now attending Windsor College in Cincinnati, and 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.’,35.244037,’1997-12-09′,172363301,120,’Released’,’Someone has taken their love of sequels one step too far.’,6.10,840),(4234,’Scream 3′,40000000,”,’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.’,24.992057,’2000-02-03′,161834276,116,’Released’,’Someone has taken their love of trilogies one step too far.’,5.70,736),(4244,’The Kid’,65000000,’http://movies.disney.com/the-kid’,’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.’,18.281798,’2000-07-07′,69700000,104,’Released’,’Nobody ever grows up quite like they imagined.’,6.00,238),(4248,’Scary Movie 2′,45000000,”,’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.’,35.376971,’2001-07-04′,141220678,83,’Released’,’No More Mercy. No More Shame. No More Sequels – Honest! – We Lied.’,5.40,982),(4251,’Veer-Zaara’,7000000,”,’The story of the love between Veer Pratap Singh, an Indian, and Zaara Hayaat Khan, a Pakistani…a love so great it knows no boundaries…’,3.721858,’2004-11-12′,29385320,192,’Released’,’A Love Legend’,7.40,64),(4256,’Scary Movie 3′,48000000,”,’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.’,36.585509,’2003-10-24′,220673217,84,’Released’,’Great trilogies come in threes.’,5.80,912),(4257,’Scary Movie 4′,45000000,”,’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.’,32.549282,’2006-04-13′,178262620,83,’Released’,’Bury the grudge. Burn the village. See the saw.’,5.30,750),(4258,’Scary Movie 5′,20000000,”,’Home with their newly-formed family, happy parents Dan and Jody are haunted by sinister, paranormal activities. Determined to expel the insidious force, they install security cameras and discover their family is being stalked by an evil dead demon.’,36.819044,’2013-04-11′,78378744,86,’Released’,’Evil is coming. Bring protection.’,4.60,793),(4327,’Charlie\’s Angels’,92000000,”,’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.’,40.203950,’2000-11-02′,264105545,98,’Released’,’Get Some Action’,5.60,1232),(4347,’Atonement’,30000000,”,’As a 13-year-old, fledgling writer Briony Tallis irrevocably changes the course of several lives when she accuses her older sister\’s lover of a crime he did not commit.’,33.369305,’2007-08-29′,129266061,123,’Released’,’Torn apart by betrayal. Separated by war. Bound by love.’,7.40,1049),(4348,’Pride & Prejudice’,28000000,’http://www.prideandprejudicemovie.net/splash.html’,’Pride & Prejudice is a humorous story of love and life among English gentility during the Georgian era. Mr. Bennet is an English gentleman living in Hertfordshire with his overbearing wife and five 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 dependent on the daughters making good marriages.’,36.583830,’2005-09-16′,121147947,135,’Released’,’A romance ahead of its time.’,7.70,1358),(4349,’The Kingdom’,70000000,’http://www.thekingdommovie.com/’,’A team of U.S. government agents is sent to investigate the bombing of an American facility in the Middle East.’,26.123705,’2007-08-22′,86658558,110,’Released’,’How do you stop an enemy who isn\’t afraid to die?’,6.50,513),(4379,’Monster-in-Law’,43000000,”,’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.’,10.411996,’2005-05-13′,154749918,101,’Released’,’This relationship is going to be a real mother.’,5.60,406),(4380,’Shall We Dance?’,50000000,’http://www.miramax.com/shallwedance/’,’Upon first sight of a beautiful instructor, a bored and overworked estate lawyer signs up for ballroom dancing lessons.’,14.231899,’2004-10-15′,170128460,107,’Released’,’Step out of the ordinary’,5.90,297),(4421,’G.I. Jane’,50000000,”,’A female Senator succeeds in enrolling a woman into Combined Reconnaissance Team training where everyone expects her to fail.’,19.434672,’1997-08-22′,48169156,125,’Released’,’Failure is not an option.’,6.00,395),(4442,’The Brothers Grimm’,88000000,”,’Folklore collectors and con artists, Jake and Will Grimm, travel from village to village pretending to protect townsfolk from enchanted creatures and performing exorcisms. However, they are put to the test when they encounter a real magical curse in a haunted forest with real magical beings, requiring genuine courage.’,40.138009,’2005-08-26′,105316267,118,’Released’,’Eliminating Evil Since 1812.’,5.60,818),(4464,’Seabiscuit’,87000000,’http://www.seabiscuitmovie.com/’,’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.’,14.824166,’2003-07-22′,148336445,141,’Released’,’The hopes of a nation rode on a long shot.’,6.70,216),(4474,’My Super Ex-Girlfriend’,0,”,’When New York architect Matt Saunders dumps his new girlfriend Jenny Johnson – a smart, sexy and reluctant superhero known as G-Girl – she uses her powers to make his life a living hell!’,20.252143,’2006-06-20′,60896147,95,’Released’,’Hell hath no fury like a superwoman scorned.’,4.80,442),(4476,’Legends of the Fall’,30000000,”,’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.’,26.952727,’1994-12-16′,160638883,133,’Released’,’After the Fall from Innocence the Legend begins.’,7.20,619),(4477,’The Devil\’s Own’,90000000,”,’Frankie McGuire, one of the IRA\’s deadliest assassins, draws an American family into the crossfire of terrorism. But when he is sent to the U.S. to buy weapons, Frankie is housed with the family of Tom O\’Meara, a New York cop who knows nothing about Frankie\’s real identity. Their surprising friendship, and Tom\’s growing suspicions, forces Frankie to choose between the promise of peace or a lifetime of murder.’,15.350451,’1997-03-12′,140807547,107,’Released’,’They come from different worlds. They fight for different causes. Now, two men from opposite sides of the law are about to go to war.’,5.90,290),(4512,’The Assassination of Jesse James by the Coward Robert Ford’,30000000,’http://jessejamesmovie.warnerbros.com/’,’Outlaw Jesse James is rumored be the \’fastest gun in the West\’. An eager recruit into James\’ notorious gang, Robert Ford eventually grows jealous of the famed outlaw and, when Robert and his brother sense an opportunity to kill James, their murderous action elevates their target to near mythical status.’,35.533520,’2007-09-02′,14711793,160,’Released’,’Beyond the myth lies America\’s greatest betrayal’,7.00,776),(4513,’30 Days of Night’,30000000,’http://www.30daysofnight.com/’,’This is the story of an isolated Alaskan town that is plunged into darkness for a month each year when the sun sinks below the horizon. As the last rays of light fade, the town is attacked by a bloodthirsty gang of vampires bent on an uninterrupted orgy of destruction. Only the small town\’s husband-and-wife Sheriff team stand between the survivors and certain destruction.’,33.394082,’2007-10-17′,75505973,113,’Released’,’They\’re Coming!’,6.20,767),(4515,’Lions for Lambs’,35000000,”,’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.’,9.789027,’2007-10-22′,63215872,92,’Released’,’If you don\’t STAND for something, you might FALL for anything.’,6.00,216),(4517,’Elizabeth: The Golden Age’,55000000,”,’When Queen Elizabeth\’s reign is threatened by ruthless familial betrayal and Spain\’s invading army, she and her shrewd adviser must act to safeguard to the lives of her people.’,15.274137,’2007-09-09′,74237563,114,’Released’,’Woman. Warrior. Queen.’,6.60,303),(4518,’Elizabeth’,30000000,”,’The story of the ascension to the throne and the early reign of Queen Elizabeth the First, the endless attempts by her council to marry her off, the Catholic hatred of her and her romance with Lord Robert Dudley.’,14.179538,’1998-09-13′,82150642,124,’Released’,’Declared illegitimate aged 3. Tried for treason aged 21. Crowned Queen aged 25.’,7.10,334),(4523,’Enchanted’,85000000,’http://disney.go.com/disneypictures/enchanted/’,’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 fairy tale prince back home – she has to wonder: Can a storybook view of romance survive in the real world?’,29.219980,’2007-11-20′,340487652,107,’Released’,’This fairytale princess is about to meet a real Prince Charming’,6.60,1449),(4547,’Panic Room’,48000000,’http://www.sonypictures.com/movies/panicroom/’,’Trapped in their New York brownstone\’s panic room, a hidden chamber built as a sanctuary in the event of break-ins, newly divorced Meg Altman and her young daughter Sarah play a deadly game of cat-and-mouse with three intruders – Burnham, Raoul and Junior – during a brutal home invasion. But the room itself is the focal point because what the intruders really want is inside it.’,53.043124,’2002-03-29′,196397415,111,’Released’,”,6.50,1267),(4550,’ì¹�ì �í�� ê¸�ì��ì�¨’,0,’http://www.lady-vengeance.de/’,’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?’,17.074843,’2005-07-29′,23803308,115,’Released’,’All she wanted was a peaceful life… they didn\’t give it.’,7.40,356),(4551,’Be Cool’,53000000,”,’Disenchanted with the movie industry, Chili Palmer tries the music industry, meeting and romancing a widow of a music exec on the way.’,18.614720,’2005-03-04′,95226116,118,’Released’,’Everyone is looking for the next big hit’,5.40,292),(4553,’The Machinist’,5000000,”,’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…’,35.252056,’2004-02-09′,8203235,101,’Released’,’A little guilt goes a long way…’,7.30,1247),(4566,’Michael Clayton’,25000000,’http://michaelclayton.warnerbros.com/’,’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.’,18.961323,’2007-09-28′,92991835,119,’Released’,’The truth can be adjusted’,6.50,501),(4584,’Sense and Sensibility’,16500000,”,’Rich Mr. Dashwood dies, leaving his second wife and her daughters poor by the rules of inheritance. Two daughters are the titular opposites.’,20.898711,’1995-12-13′,135000000,136,’Released’,’Lose your heart and come to your senses.’,7.20,352),(4597,’Armored’,20000000,”,’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.’,15.212290,’2009-12-04′,22942221,88,’Released’,’Who will be the last man standing?’,5.50,208),(4599,’Raising Helen’,50000000,”,’Helen Harris has a glamorous, big-city life working for one of New York\’s hottest modeling agencies. But suddenly her free-spirited life gets turned upside down when she must chose between the life she\’s always loved, and the new loves of her life!’,13.298205,’2004-05-27′,49718611,119,’Released’,’Her uptown life gets turned inside out!’,5.90,189),(4614,’The Sum of All Fears’,68000000,’http://www.paramount.com/movies/sum-all-fears’,’When the president of Russia suddenly dies, a man whose politics are virtually unknown succeeds him. The change in political leaders sparks paranoia among American CIA officials, so CIA director Bill Cabot recruits a young analyst to supply insight and advice on the situation. Then the unthinkable happens: a nuclear bomb explodes in a U.S. city, and America is quick to blame the Russians.’,22.392544,’2002-05-31′,193000000,124,’Released’,’27,000 nuclear weapons. One is missing.’,5.90,437),(4638,’Hot Fuzz’,12000000,’http://www.universalstudiosentertainment.com/hot-fuzz/’,’Top London cop, PC Nicholas Angel is good. Too good. To stop the rest of his team from looking bad, he is reassigned to the quiet town of Sandford, paired with simple country cop, and everything seems quiet until two actors are found decapitated. It is addressed as an accident, but Angel isn\’t going to accept that, especially when more and more people turn up dead.’,38.623178,’2007-02-14′,80573774,121,’Released’,’Big cops. Small town. Moderate violence.’,7.40,2199),(4657,’Jindabyne’,0,’http://www.sonyclassics.com/jindabyne/’,’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.’,8.950864,’2006-07-20′,0,123,’Released’,’Under the surface of every life lies a mystery’,5.70,25),(4688,’Across the Universe’,0,’http://www.acrosstheuniverse.com/’,’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.’,11.872841,’2007-09-14′,0,133,’Released’,’All you need is love.’,7.10,410),(4723,’Southland Tales’,17000000,’http://darko.com/film_southlandtales.html’,’Set in the futuristic landscape of Los Angeles on July 4, 2008, as it stands on the brink of social, economic and environmental disaster. Boxer Santaros is an action star who\’s stricken with amnesia. His life intertwines with Krysta Now, an adult film star developing her own reality television project, and Ronald Taverner, a Hermosa Beach police officer who holds the key to a vast conspiracy.’,9.349386,’2006-05-15′,374743,144,’Released’,’Have a nice apocalypse.’,5.20,153),(4806,’Runaway Bride’,70000000,”,’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.’,20.230535,’1999-07-30′,309457509,116,’Released’,’Catch her if you can.’,5.70,455),(4816,’Ghost Dog: The Way of the Samurai’,0,”,’An African-American Mafia hit man who models himself after the samurai of old finds himself targeted for death by the mob.’,18.223139,’1999-09-13′,0,116,’Released’,’All assassins live beyond the law â�¦ only one follows the code’,7.20,298),(4824,’The Jackal’,60000000,”,’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.’,19.747459,’1997-11-14′,159330280,124,’Released’,’How do you stop an assassin who has no identity?’,6.10,527),(4836,’Layer Cake’,6500000,’http://www.sonypictures.co.uk/homevideo/layercake/index.html’,’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…’,24.003400,’2004-09-30′,11850214,105,’Released’,”,7.00,559),(4858,’The Invasion’,80000000,”,’Washington, D.C. psychologist Carol Bennell and her colleague Dr. Ben Driscoll are the only two people on Earth who are aware of an epidemic running rampant through the city. They discover an alien virus aboard a crashed space shuttle that transforms anyone who comes into contact with it into unfeeling drones while they sleep. Carol realizes her son holds the key to stopping the spread of the plague and she races to find him before it is too late.’,15.673154,’2007-08-17′,15071514,99,’Released’,’Do not trust anyone. Do not show emotion. Do not fall asleep.’,5.70,359),(4911,’Dark Blue’,15000000,”,’Set during the Rodney King riots, a robbery homicide investigation triggers a series of events that will cause a corrupt LAPD officer to question his tactics.’,6.373316,’2002-12-14′,9237470,118,’Released’,’1992, L.A is at boiling point. One cop\’s turning up the heat’,6.50,85),(4912,’Confessions of a Dangerous Mind’,30000000,”,’Television made him famous, but his biggest hits happened off screen. Television producer by day, CIA assassin by night, Chuck Barris was recruited by the CIA at the height of his TV career and trained to become a covert operative. Or so Barris said.’,18.165957,’2002-12-30′,33013805,113,’Released’,’Some things are better left top secret.’,6.60,275),(4922,’The Curious Case of Benjamin Button’,150000000,’http://www.benjaminbutton.com/’,’Tells the story of Benjamin Button, a man who starts aging backwards with bizarre consequences.’,60.269279,’2008-11-24′,333932083,166,’Released’,’Life isn\’t measured in minutes, but in moments.’,7.30,3292),(4929,’Hang \’em High’,1800000,”,’Marshall Jed Cooper survives a hanging, vowing revenge on the lynch mob that left him dangling. To carry out his oath for vengeance, he returns to his former job as a lawman. Before long, he\’s caught up with the nine men on his hit list and starts dispensing his own brand of Wild West justice.’,11.756943,’1968-07-31′,6800000,114,’Released’,’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!’,6.70,192),(4935,’ã��ã�¦ã�«ã�®å��ã��å��’,24000000,”,’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.’,49.549984,’2004-11-19′,234710455,119,’Released’,’The two lived there’,8.20,1991),(4942,’Leatherheads’,58000000,’http://www.leatherheadsmovie.com/’,’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.’,7.739276,’2008-03-24′,41299492,114,’Released’,’If Love Is a Game, Who\’ll Make the First Pass?’,5.70,130),(4944,’Burn After Reading’,37000000,”,’When a disc containing memoirs of a former CIA analyst falls into the hands of Linda Litzke and Chad Feldheimer, the two gym employees see a chance to make enough money for her to have life-changing cosmetic surgery. Predictably, events whirl out of control for the duo doofuses and those in their orbit.’,31.941347,’2008-09-05′,163720069,96,’Released’,’Intelligence is relative.’,6.50,1222),(4951,’10 Things I Hate About You’,16000000,”,’Bianca, a tenth grader, has never gone on a date, but she isn\’t allowed to go out with boys until her older sister Kat 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.’,54.550275,’1999-03-30′,53478166,97,’Released’,’How do I loathe thee? Let me count the ways.’,7.30,1701),(4953,’Be Kind Rewind’,0,”,’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.’,17.662683,’2008-01-20′,0,102,’Released’,’You name it, we shoot it.’,6.20,424),(4958,’The Legend of Bagger Vance’,80000000,”,’World War I has left golfer Rannulph Junuh a poker-playing alcoholic, his perfect swing gone. Now, however, he needs to get it back to play in a tournament to save the financially ravaged golf course of a long-ago sweetheart. Help arrives in the form of mysterious caddy Bagger Vance.’,16.848899,’2000-11-02′,39459427,126,’Released’,’It Was Just A Moment Ago.’,6.30,251),(4959,’The International’,50000000,’http://www.sonypictures.com/movies/theinternational/site/’,’An interpol agent and an attorney are determined to bring one of the world\’s most powerful banks to justice. Uncovering money laundering, arms trading, and conspiracy to destabilize world 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.’,13.391833,’2009-02-03′,60161391,118,’Released’,’Is your money making a killing?’,6.00,368),(4960,’Synecdoche, New York’,21000000,’http://www.sonyclassics.com/synecdocheny’,’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.’,12.761176,’2008-10-24′,0,124,’Released’,”,7.40,278),(4964,’Knocked Up’,30000000,’http://knockedupmovie.com/’,’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.’,22.527211,’2007-06-01′,219076518,129,’Released’,’Save the due date.’,6.20,1214),(4965,’Impostor’,40000000,”,’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.’,9.579975,’2001-12-03′,0,102,’Released’,’In the Future, not everyone is who they seem to be.’,6.10,135),(4967,’Keeping the Faith’,30000000,”,’Best friends since they were kids, Rabbi Jacob Schram and Father Brian Finn are dynamic and popular young men living and working on New York\’s Upper West Side. When Anna Reilly, once their childhood friend and now grown into a beautiful corporate executive, suddenly returns to the city, she reenters Jake and Brian\’s lives and hearts with a vengeance. Sparks fly and an unusual and complicated love triangle ensues.’,8.085872,’2000-04-14′,37036004,127,’Released’,’If you have to believe in something, you may as well believe in love.’,5.90,159),(4970,’Gothika’,40000000,’http://gothikamovie.warnerbros.com/’,’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.’,27.303608,’2003-11-21′,141591324,98,’Released’,’Because someone is dead doesn\’t mean they\’re gone.’,5.80,629),(4982,’American Gangster’,100000000,’http://www.americangangster.net/’,’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.’,42.361215,’2007-11-02′,266465037,157,’Released’,’There are two sides to the American dream’,7.40,1502),(4995,’Boogie Nights’,15000000,”,’Set in 1977, back when sex was safe, pleasure was a business and business was booming, idealistic porn producer Jack Horner aspires to elevate his craft to an art form. Horner discovers Eddie Adams, a hot young talent working as a busboy in a nightclub, and welcomes him into the extended family of movie-makers, misfits and hangers-on that are always around. Adams\’ rise from nobody to a celebrity adult entertainer is meteoric, and soon the whole world seems to know his porn alter ego, \”Dirk Diggler\”. Now, when disco and drugs are in vogue, fashion is in flux and the party never seems to stop, Adams\’ dreams of turning sex into stardom are about to collide with cold, hard reality.’,19.855790,’1997-09-11′,43101594,155,’Released’,’The life of a dreamer, the days of a business, and the nights in between.’,7.50,796),(4997,’Wonderland’,5000000,”,’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.’,7.790680,’2003-10-23′,2466444,104,’Released’,’Sex, drugs, murder. Welcome to L.A.’,6.20,73),(5038,’Vicky Cristina Barcelona’,15000000,”,’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.’,32.758254,’2008-08-15′,96408652,96,’Released’,’Life is the ultimate work of art’,6.70,1020),(5072,’Severance’,0,’http://www.severancefilm.com’,’Members (Danny Dyer, Laura Harris, Tim McInnerny) of the Palisades Defense Corp. sales group arrive in Europe for a team-building exercise. A fallen tree blocks the route, and they must hike to their destination. However, a psychotic killer lurks in the woods, and he has a horrible fate in mind for each of the co-workers.’,12.898984,’2006-05-19′,0,96,’Released’,’The Company Is Making Cutbacks’,6.40,169),(5123,’August Rush’,25000000,’http://augustrushmovie.warnerbros.com/’,’A drama with fairy tale elements, where an orphaned musical prodigy uses his gift as a clue to finding his birth parents.’,29.533437,’2007-11-21′,66122026,114,’Released’,’An incredible journey moving at the speed of sound’,7.10,797),(5125,’Rendition’,27500000,’http://www.renditionmovie.com’,’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.’,12.741073,’2007-09-07′,24748670,120,’Released’,’What if someone you love…just disappeared?’,6.20,205),(5126,’Martian Child’,0,”,’A recently-widowed, science fiction writer considers whether to adopt a hyper-imaginative 6-year-old abandoned and socially-rejected boy who says he\’s really from Mars.’,5.737161,’2007-11-02′,0,106,’Released’,’doesn\’t matter where you come from, as long as you find where you belong!’,6.80,79),(5137,’Sky Captain and the World of Tomorrow’,70000000,’http://www.skycaptain.com/’,’When gigantic robots attack New York City, \”Sky Captain\” uses his private air force to fight them off. His ex-girlfriend, reporter Polly Perkins, has been investigating the recent disappearance of prominent scientists. Suspecting a link between the global robot attacks and missing men, Sky Captain and Polly decide to work together. They fly to the Himalayas in pursuit of the mysterious Dr. Totenkopf, the mastermind behind the robots.’,24.664776,’2004-09-17′,57958696,107,’Released’,’Who will save us?’,5.70,439),(5172,’The Astronaut Farmer’,13000000,’http://theastronautfarmermovie.warnerbros.com/’,’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, and the FAA stalls him when he files a flight plan â�� but Charles is undeterred.’,6.764437,’2006-10-15′,11130889,104,’Released’,”,6.20,123),(5174,’Rush Hour 3′,140000000,”,’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.’,22.571780,’2007-08-08′,258022233,91,’Released’,’The Rush Is On!’,6.10,783),(5175,’Rush Hour 2′,90000000,”,’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. The boys are soon up to their necks in fist fights and life-threatening situations. A trip back to the U.S. may provide the answers about the bombing, the counterfeiting, and the true allegiance of sexy customs agent Isabella.’,35.814765,’2001-08-03′,347325802,90,’Released’,’Get ready for a second Rush!’,6.40,1054),(5176,’3:10 to Yuma’,55000000,’http://www.310toyumathefilm.com/’,’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.’,48.801089,’2007-09-06′,70016220,122,’Released’,’Time waits for one man.’,6.90,1188),(5178,’The Good Heart’,3800000,’http://www.thegoodheartfilm.com/’,’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 with customers and, absolutely no women. Lucas is a quick study, but their friendship is put to the test when the distraught and beautiful April (Isild Le Besco) shows up at the bar seeking shelter, and Lucas insists they help her out.’,2.201678,’2009-09-11′,0,95,’Released’,’Everyone needs a refuge from the world.’,6.00,21),(5236,’Kiss Kiss Bang Bang’,15000000,”,’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…’,32.690038,’2005-09-05′,15785148,103,’Released’,’SeX. MurdEr. MyStery. Welcome to the party.’,7.20,886),(5255,’The Polar Express’,165000000,”,’When a doubting young boy takes an extraordinary train ride to the North Pole, he embarks on a journey of self-discovery that shows him that the wonder of life never fades for those who believe.’,47.323228,’2004-11-10′,305875730,100,’Released’,’This holiday season… believe.’,6.40,1474),(5279,’Gosford Park’,19800000,”,’Multiple storylined drama set in 1932, showing the lives of upstairs guest and downstairs servants at a party in a country house in England.’,11.693272,’2001-11-07′,87754044,137,’Released’,’Tea at four. Dinner at eight. Murder at midnight.’,6.80,246),(5353,’The Hunting Party’,0,’http://www.thehuntingpartymovie.com/’,’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’,8.048305,’2007-09-03′,0,101,’Released’,’How can they find the world\’s most wanted war criminal when the C.I.A. can\’t? [by actually looking]’,6.60,96),(5393,’Happily N\’Ever After’,47000000,’http://www.happilyneverafterthefilm.com/’,’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.’,10.410933,’2006-09-14′,38085778,75,’Released’,’Fairy Tale Endings Aren\’t What They Used To Be’,4.60,104),(5491,’Battlefield Earth’,44000000,”,’In the year 3000, man is no match for the Psychlos, a greedy, manipulative race of aliens on a quest for ultimate profit. Led by the powerful Terl, the Psychlos 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.’,7.891470,’2000-05-10′,21400000,118,’Released’,’Take Back The Planet’,3.00,255),(5494,’George and the Dragon’,32000000,”,’A knight returning from the Crusades takes on a dragon and becomes a legend.’,4.120549,’2004-03-28′,0,93,’Released’,”,5.00,13),(5503,’The Fugitive’,44000000,”,’Wrongfully accused of murdering his wife, Richard Kimble escapes from the law in an attempt to find her killer and clear his name. Pursuing him is a team of U.S. marshals led by Deputy Samuel Gerard, a determined detective who will not rest until Richard is captured. As Richard leads the team through a series of intricate chases, he discovers the secrets behind his wife\’s death and struggles to expose the killer before it is too late.’,54.884297,’1993-08-06′,368875760,130,’Released’,’A murdered wife. A one-armed man. An obsessed detective. The chase begins.’,7.20,1220),(5516,’The Ladykillers’,0,”,’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.’,23.666229,’2004-03-25′,0,104,’Released’,’The greatest criminal minds of all time have finally met their match.’,6.00,415),(5528,’Les Choristes’,0,’http://www.pathedistribution.com/accueil/filmcatalogue.php?IDFilm=498′,’Set in 1940\’s France, a new teacher at a school for disruptive boys gives hope and inspiration.’,20.982455,’2004-03-17′,0,96,’Released’,”,7.50,526),(5550,’RoboCop 3′,22000000,”,’The mega corporation Omni Consumer Products is still bent on creating their pet project, Delta City, to replace the rotting city of Detroit. Unfortunately, the inhabitants of the area have no intention of abandoning their homes simply for desires of the company. To this end, OCP have decided to force them to leave by employing a ruthless mercenary army to attack and harass them. An underground resistance begins and in this fight, Robocop must decide where his loyalties lie.’,14.725467,’1993-04-17′,10696210,104,’Released’,’He\’s back to lay down the law.’,4.20,305),(5551,’Space Cowboys’,65000000,’http://movies.warnerbros.com/spacecowboys/index.html’,’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, but 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 to Earth.’,15.772081,’2000-07-31′,128884132,130,’Released’,’Space will never be the same.’,6.30,403),(5559,’Bee Movie’,150000000,’http://www.beemovie.com/’,’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.’,29.332905,’2007-10-28′,287594577,91,’Released’,’Born to bee wild.’,5.70,1171),(5689,’The Blue Lagoon’,4500000,”,’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?’,22.585384,’1980-07-05′,58853106,104,’Released’,’A sensuous story of natural love.’,5.80,408),(5708,’Control’,0,’http://www.controlthemovie.com’,’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.’,11.357474,’2007-09-26′,8159508,121,’Released’,”,7.50,200),(5722,’Beyond the Valley of the Dolls’,2090000,’http://www.beyondthevalleyofthedolls.com/home.html’,’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?’,4.289003,’1970-07-17′,40000000,109,’Released’,’This Is Not A Sequel. There Has Never Been Anything Like It!’,6.60,53),(5723,’Once’,160000,’http://www.foxsearchlight.com/once/’,’A vacuum repairman moonlights as a street musician and hopes for his big break. One day a Czech immigrant, who earns a living selling flowers, approaches him with the news that she is also an aspiring singer-songwriter. The pair decide to collaborate, and the songs that they compose reflect the story of their blossoming love.’,19.052179,’2007-03-23′,20710513,85,’Released’,’How often do you find the right person?’,7.30,453),(5759,’Baghead’,0,”,’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?’,3.299345,’2008-01-21′,0,84,’Released’,”,5.80,23),(5769,’Tom Jones’,1000000,”,’Tom loves Sophie and Sophie loves Tom. But Tom and Sophie are of differering classes. Can they find a way through the mayhem to be true to love?’,2.833166,’1963-10-06′,37600000,128,’Released’,’Tom Jones! . . . loves and loves and loves and loves . . .’,6.10,39),(5780,’Torn Curtain’,3000000,”,’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.’,7.924982,’1966-07-13′,13000000,128,’Released’,’It tears you apart with suspense!’,6.40,120),(5820,’The Sentinel’,60000000,”,’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.’,15.352807,’2006-04-19′,77920346,108,’Released’,’In 141 years, there\’s never been a traitor in the Secret Service…. Until Now.’,5.80,225),(5822,’Sweet Sweetback\’s Baadasssss Song’,150000,’http://www.sonyclassics.com/badass/’,’After saving a Black Panther from some racist cops, a black male prostitute goes on the run from \”the man\” with the help of the ghetto community and some disillusioned Hells Angels.’,0.132878,’1971-04-23′,15200000,97,’Released’,’The Film that THE MAN doesn\’t want you to see!’,4.60,18),(5852,’Angel Eyes’,53000000,’http://angeleyesmovie.warnerbros.com/index_noflash.html’,’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.’,6.454634,’2001-05-15′,29700000,102,’Released’,’The deeper you look, the more you will find.’,5.60,88),(5854,’Family Plot’,2000000,”,’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.’,3.832858,’1976-04-09′,7900000,121,’Released’,’Thereâ��s no body in the family plot.’,6.70,86),(5876,’The Mist’,18000000,’http://www.themist-movie.com/’,’After a violent storm, a dense cloud of mist envelops a small Maine town, trapping artist David Drayton and his five-year-old son in a local grocery store with other people. They soon discover that the mist conceals deadly horrors that threaten their lives, and worse, their sanity.’,37.104353,’2007-11-21′,57096190,126,’Released’,’Belief divides them, mystery surrounds them, but fear changes everything.’,6.70,1399),(5900,’De jurk’,0,”,’The story of a summer dress and those who have to do with it, especially the train conductor (played by van Warmerdam, the director). The dress functions as catalyst for the whimsical events, which turns out to be either tragic or hilarious.’,0.144031,’1996-03-21′,0,103,’Released’,”,7.00,3),(5902,’A Bridge Too Far’,22000000,”,’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.’,20.256571,’1977-06-15′,50750000,175,’Released’,’Out of the sky comes the screen\’s most incredible spectacle of men and war!’,6.90,207),(5915,’Into the Wild’,15000000,’http://www.intothewild.com/’,’The true story of top student and athlete, Christopher McCandless, who after graduating from Emory University in 1992, abandoned his possessions, gave his entire $24,000 savings account to charity and hitchhiked to Alaska to live in the wilderness.’,43.644978,’2007-09-11′,56255142,148,’Released’,’Into the heart. Into the soul.’,7.80,3045),(5925,’The Great Escape’,4000000,”,’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.’,35.061467,’1963-06-20′,11744471,172,’Released’,’Put a fence in front of these men… and they\’ll climb it!’,7.80,717),(5955,’The Pledge’,35000000,’http://movies.warnerbros.com/thepledge/’,’A police chief about to retire pledges to help a woman find her daughter\’s killer. Based on a story by Swiss writer Friedrich Dürrenmatt.’,12.495436,’2001-01-09′,29400000,123,’Released’,”,6.50,215),(5966,’Along Came Polly’,42000000,’http://www.alongcamepolly.com/’,’Reuben Feffer is a guy who\’s spent his entire life playing it safe. Polly Prince 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.’,33.238296,’2004-01-16′,171963386,90,’Released’,’For the most cautious man on Earth, life is about to get interesting.’,5.80,773),(5971,’We\’re No Angels’,20000000,”,’Two escaped cons only prayer to escape is to pass themselves off as priests and pass by the police blockade at the border into the safety of Canada.’,9.927018,’1989-12-15′,0,106,’Released’,’Escaped convicts disguised as priests. It\’ll take a miracle to get away with this one.’,5.60,105),(5994,’The Family Man’,60000000,”,’Jack\’s lavish, fast-paced lifestyle changes one Christmas night when he stumbles into a grocery store holdup and disarms the gunman. The next morning he wakes up in bed lying next to Kate, his college sweetheart he left in order to pursue his career, and to the horrifying discovery that his former life no longer exists. As he stumbles through this alternate suburban universe, Jack finds himself at a crossroad where he must choose between his high-power career and the woman he loves.’,19.705489,’2000-12-12′,0,125,’Released’,’What if you made different choices? What if you said yes, instead of no? What if you got a second chance?’,6.50,521),(6007,’Elling’,0,”,’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.’,2.526356,’2001-03-16′,0,89,’Released’,”,7.00,51),(6016,’The Good Thief’,0,”,’A compulsive gambler plans the heist of his life – a priceless collection of art from the world-class Casino Riviera in Monte Carlo.’,2.774811,’2003-04-03′,0,108,’Released’,’He doesn\’t want money. He wants what money can\’t buy.’,6.00,31),(6020,’Sorority Boys’,12000000,”,’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.’,3.444542,’2002-03-22′,0,93,’Released’,”,4.60,47),(6023,’P.S. I Love You’,30000000,”,’A young widow discovers that her late husband has left her 10 messages intended to help ease her pain and start a new life.’,29.489274,’2007-11-15′,156835339,126,’Released’,’His life ended. Now, a new one will begin.’,6.90,977),(6038,’Shanghai Knights’,50000000,”,’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.’,16.251204,’2003-02-06′,88323487,115,’Released’,’A Royal Kick In The Arse.’,6.00,692),(6068,’Six Days Seven Nights’,70000000,”,’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.’,18.264635,’1998-06-12′,164000000,98,’Released’,’After this week in paradise, theyâ��re going to need a vacation.’,5.60,332),(6071,’Kiss of Death’,40000000,”,’Jimmy Kilmartin is an ex-con living in Astoria in the New York City borough of Queens, trying to stay clean and raising a family with his wife Bev. But when his cousin Ronnie causes him to take a fall for driving an illegal transport of stolen cars, a police officer named Calvin Hart is injured and Jimmy lands back in prison. In exchange for an early release, he is asked to help bring down a local crime boss named Little Junior Brown. Jimmy remarries and attempts to renew a relationship with his child. But he is sent undercover by Detective Hart to work with Junior and infiltrate his operations. As soon as Little Junior kills an undercover federal agent with Jimmy watching, the unscrupulous district attorney and the feds further complicate his life. He must take down Junior or face the consequences.’,6.908940,’1995-04-21′,0,101,’Released’,”,5.70,81),(6073,’The Mexican’,57000000,”,’Jerry Welbach, a reluctant bagman, has been given two ultimatums: The first is from his mob boss to travel to Mexico and retrieve a priceless antique pistol, known as \”the Mexican\”… or suffer the consequences. The second is from his girlfriend Samantha to end his association with the mob. Jerry figures alive and in trouble with Samantha is better than the more permanent alternative, so he heads south of the border.’,21.021809,’2001-03-01′,147845033,123,’Released’,’Love with the safety off.’,5.80,441),(6106,’Salvador’,4500000,”,’A second rated journalist from the US tries his luck in El Salvador during the military dictatorship in the 1980s.’,3.819796,’1986-04-23′,0,123,’Released’,’Based on a true story.’,7.00,71),(6114,’Dracula’,40000000,”,’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.’,45.022964,’1992-11-13′,215862692,128,’Released’,’Love never dies.’,7.10,1056),(6116,’Spice World’,25000000,”,’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.’,6.889437,’1997-12-19′,100000000,93,’Released’,’You say you want a revolution?’,4.70,123),(6171,’Dreamcatcher’,68000000,’http://dreamcatchermovie.warnerbros.com/’,’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.’,26.792794,’2003-03-21′,75715436,136,’Released’,’A circle of friendship. A web of mystery. A pattern of fear.’,5.30,567),(6217,’Cat People’,0,”,’After years of separation, Irina (Nastassja Kinski) and her minister brother, Paul (Malcolm McDowell), reunite in New Orleans in this erotic tale of the supernatural. When zoologists capture a wild panther, Irina is drawn to the cat — and the zoo curator (John Heard) is drawn to her. Soon, Irina\’s brother will have to reveal the family secret: that when sexually aroused, they turn into predatory jungle cats.’,5.698720,’1982-04-02′,0,118,’Released’,’They are something more than lovers who are about to become something less than human.’,6.00,94),(6278,’Reign of Fire’,60000000,”,’In post-apocalyptic England, an American volunteer and a British survivor team up to fight off a brood of fire-breathing dragons seeking to return to global dominance after centuries of rest underground. The Brit — leading a clan of survivors to hunt down the King of the Dragons — has much at stake: His mother was killed by a dragon, but his love is still alive.’,27.615108,’2002-07-12′,43061982,101,’Released’,’Fight Fire With Fire’,6.00,669),(6282,’Coyote Ugly’,45000000,”,’Graced with a velvet voice, 21-year-old Violet Sanford heads to New York to pursue her dream of becoming a songwriter only to find her aspirations sidelined by the accolades and notoriety she receives at her \”day\” job as a barmaid at Coyote Ugly. The \”Coyotes\” as they are affectionately called tantalize customers and the media alike with their outrageous antics, making Coyote Ugly the watering hole for guys on the prowl.’,26.797810,’2000-07-30′,113916474,100,’Released’,’This party never ends.’,5.80,575),(6415,’Three Kings’,75000000,”,’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.’,34.973086,’1999-09-27′,108000000,114,’Released’,’It\’s good to be King.’,6.60,692),(6435,’Practical Magic’,75000000,”,’Sally and Gillian Owens, born into a magical family, have mostly avoided witchcraft themselves. But when Gillian\’s vicious boyfriend, Jimmy Angelov, dies unexpectedly, the Owens sisters give themselves a crash course in hard magic. With policeman Gary Hallet growing suspicious, the girls struggle to resurrect Angelov — and unwittingly inject his corpse with an evil spirit that threatens to end their family line.’,15.142701,’1998-10-16′,46683377,104,’Released’,’For two sisters from a family of witches, falling in love is the trickiest spell of all.’,6.30,338),(6439,’Racing Stripes’,30000000,”,’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.’,8.058109,’2005-01-06′,93772522,102,’Released’,’Cheer \’til you\’re horse!’,5.10,123),(6440,’The Shipping News’,0,”,’An emotionally-beaten man with his young daughter moves to his ancestral home in Newfoundland to reclaim his life.’,11.139900,’2001-12-18′,0,111,’Released’,’You\’ll never guess what you\’ll find inside…’,6.40,108),(6466,’Freddy vs. Jason’,30000000,”,’Evil dream-demon Freddy Krueger devises a plan to manipulate the unstoppable Jason Vorhees into hacking up the teenagers of Elm Street in an effort to make people remember the name Freddy Krueger, thus freeing him from limbo.’,26.695920,’2003-08-15′,114908830,97,’Released’,’Evil Will Battle Evil’,5.80,594),(6477,’Alvin and the Chipmunks’,60000000,’http://www.chipmunks.com’,’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.’,47.336034,’2007-12-13′,361366633,92,’Released’,’Get your squeak on!’,5.50,1177),(6478,’Beyond the Sea’,23000000,”,’Based on the life and career of legendary entertainer, Bobby Darin, the biopic moves back and forth between his childhood and adulthood, to tell the tale of his remarkable life. Kevin Spacey did his own singing for Beyond the Sea, recreating Bobby Darin\’s vocal style with uncanny accuracy.’,6.138213,’2004-12-17′,0,118,’Released’,’In the era of cool, Bobby Darin was the soundtrack.’,6.50,55),(6479,’I Am Legend’,150000000,’http://iamlegend.warnerbros.com/’,’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.’,70.867401,’2007-12-14′,585349010,101,’Released’,’The last man on Earth is not alone’,6.90,4853),(6488,’Arachnophobia’,31000000,”,’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.’,15.895661,’1990-08-09′,53208180,103,’Released’,’Eight legs, two fangs, and an attitude.’,6.20,433),(6519,’The Dukes of Hazzard’,50000000,’http://www.warnerbros.com/dukes-hazzard/index_splash’,’Cousins, Bo and Luke Duke, with the help of their eye-catching cousin, Daisy and moonshine-running Uncle Jesse, try and save the family farm from being destroyed by Hazzard County\’s corrupt commissioner, Boss Hogg. Their efforts constantly find the \’Duke Boys\’ eluding authorities in \’The General Lee\’, their 1969 orange Dodge Charger that keeps them one step ahead of the dimwitted antics of the small southern town\’s Sheriff, Roscoe P. Coltrane.’,15.982120,’2005-08-05′,110803676,104,’Released’,’Cousins. Outlaws. Thrillbillies.’,5.10,316),(6520,’First Knight’,55000000,”,’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.’,19.143321,’1995-07-07′,127600435,134,’Released’,’Their greatest battle would be for her love.’,5.90,311),(6521,’The Contender’,9000000,”,’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.’,7.029126,’2000-10-13′,0,126,’Released’,’Sometimes you can assassinate a leader without firing a shot.’,6.70,60),(6537,’El orfanato’,0,”,’A woman brings her family back to her childhood home, which used to be an orphanage, intent on reopening it. Before long, her son starts to communicate with a new invisible friend.’,29.071955,’2007-08-27′,44000000,105,’Released’,’A tale of love. A story of horror.’,7.10,633),(6538,’Charlie Wilson\’s War’,75000000,’http://www.charliewilsonswar.net/’,’The true story of Texas congressman Charlie Wilson\’s covert dealings in Afghanistan, where his efforts to assist rebels in their war with the Soviets had some unforeseen and long-reaching effects.’,18.700310,’2007-12-19′,119000410,102,’Released’,’Based on a true story. You think we could make all this up?’,6.50,338),(6552,’Idle Hands’,25000000,”,’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é about idle hands being the devil\’s playground has a kernel of truth after all.’,8.583217,’1999-04-30′,4152230,92,’Released’,’The touching story of a boy and his right hand.’,6.10,182),(6557,’27 Dresses’,30000000,’http://www.27dressesthemovie.com/’,’Altruistic Jane finds herself facing her worst nightmare as her younger sister announces her engagement to the man Jane secretly adores.’,30.695228,’2008-01-10′,160259319,111,’Released’,’She\’s about to find the perfect fit.’,6.10,978),(6575,’Walk Hard: The Dewey Cox Story’,35000000,’http://www.walkhard-movie.com/’,’Singer Dewey Cox overcomes adversity to become a musical legend.’,10.735220,’2007-12-21′,18317151,96,’Released’,’Life made him tough. Love made him strong. Music made him hard.’,6.60,212),(6615,’Lars and the Real Girl’,12000000,’http://www.larsandtherealgirl-themovie.com/’,’Sometimes you find love where you\’d least expect it. Just ask Lars, 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 unique love triangle, hoping to somehow discover the real meaning of true love.’,15.817096,’2007-10-12′,11293663,106,’Released’,’The search for true love begins outside the box.’,7.10,509),(6623,’The Peacemaker’,50000000,”,’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.’,15.931084,’1997-09-26′,0,124,’Released’,’How do you get the world\’s attention?’,5.80,255),(6639,’Love in the Time of Cholera’,45000000,’http://www.loveinthetime.com/’,’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.’,5.361699,’2007-10-04′,4607608,139,’Released’,’How long would you wait for love?’,6.40,81),(6687,’Transsiberian’,15000000,”,’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.’,11.428903,’2008-01-18′,5926410,111,’Released’,’You can\’t escape your lies.’,6.50,195),(6795,’Zathura: A Space Adventure’,65000000,”,’After their father is called into work, two young boys, Walter and Danny, are left in the care of their teenage sister, Lisa, and told they must stay inside. Walter and Danny, who anticipate a boring day, are shocked when they begin playing Zathura, a space-themed board game, which they realize has mystical powers when their house is shot into space. With the help of an astronaut, the boys attempt to return home.’,15.194239,’2005-11-06′,64321501,101,’Released’,’Adventure Is Waiting’,6.10,779),(6877,’Failure to Launch’,50000000,”,’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.’,18.806031,’2006-03-10′,88715192,97,’Released’,’To leave the nest, some men just need a little push.’,5.50,399),(6933,’One Missed Call’,20000000,’http://onemissedcallmovie.warnerbros.com/’,’Several people start receiving voice-mails from their future selves — messages which include the date, time, and some of the details of their deaths.’,12.458131,’2008-01-04′,0,87,’Released’,’What will it sound like when you die?’,4.70,171),(6947,’The Village’,60000000,”,’When a willful young man tries to venture beyond his sequestered Pennsylvania hamlet, his actions set off a chain of chilling incidents that will alter the community forever.’,27.491891,’2004-07-30′,256697520,108,’Released’,’There is no turning back’,6.20,1071),(6950,’Outbreak’,50000000,”,’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.’,30.397496,’1995-03-10′,189859560,127,’Released’,’This animal carries a deadly virus… and the greatest medical crisis in the world is about to happen.’,6.30,513),(6957,’The 40 Year Old Virgin’,26000000,’http://www.universalstudiosentertainment.com/the-40-year-old-virgin/’,’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.’,38.473732,’2005-08-11′,109449237,116,’Released’,’The longer you wait, the harder it gets’,6.20,1983),(6961,’The Wedding Date’,15000000,’https://www.uphe.com/movies/the-wedding-date’,’With the wedding of her younger sister fast approaching, Kat Ellis faces the undesirable prospect of traveling alone to London for the ceremony. While this is bad enough, Jeffrey, the man who left her as they moved closer to marriage, happens to be the groom\’s best man. Determined to show everyone — most of all Jeffrey — that her romantic life is as full and thrilling as ever, Kat hires a charming male escort as her date.’,10.194097,’2005-02-04′,47175038,88,’Released’,’Love doesn\’t come cheap.’,6.20,230),(6963,’The Weather Man’,20000000,”,’A Chicago weather man, separated from his wife and children, debates whether professional and personal success are mutually exclusive.’,14.031377,’2005-10-20′,12482775,101,’Released’,’Dave Spritz is about to take his best shot . . . at life’,6.00,289),(6964,’Something\’s Gotta Give’,80000000,”,’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.’,16.939441,’2003-12-12′,266728738,128,’Released’,’Schmucks are people too.’,6.30,410),(6968,’Der Baader Meinhof Komplex’,27000000,’http://www.bmk.film.de/’,’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.’,7.727035,’2008-09-24′,0,150,’Released’,”,7.10,157),(6972,’Australia’,130000000,”,’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.’,28.840997,’2008-11-18′,49554002,165,’Released’,’Welcome to Australia!’,6.30,694),(6973,’In the Valley of Elah’,23000000,’http://wip.warnerbros.com/inthevalleyofelah/’,’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.’,15.676123,’2007-08-31′,29541790,124,’Released’,’Sometimes finding the truth is easier than facing it.’,6.60,261),(6977,’No Country for Old Men’,25000000,”,’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 the violent pursuit of money and justice collide.’,53.645267,’2007-11-08′,171600000,122,’Released’,’There are no clean getaways.’,7.70,3003),(6978,’Big Trouble in Little China’,25000000,’http://www.theofficialjohncarpenter.com/big-trouble-in-little-china/’,’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 immortal sorcerer, Lo Pan and his three invincible cronies. Lo Pan must marry a girl with green eyes so he can regain his physical form.’,29.796394,’1986-05-30′,11000000,99,’Released’,’Adventure doesn\’t come any bigger!’,7.10,705),(7006,’White Noise 2: The Light’,0,”,’A man\’s family brought back from the verge of death, he then discovers he can identify people who are about to die.’,6.814247,’2007-01-05′,0,99,’Released’,’Sometimes they don\’t come back alone.’,5.60,80),(7191,’Cloverfield’,25000000,’http://www.cloverfieldmovie.com/’,’Five young New Yorkers throw their friend a going-away party the night that a monster the size of a skyscraper descends upon the city. Told from the point of view of their video camera, the film is a document of their attempt to survive the most surreal, horrifying event of their lives.’,46.942396,’2008-01-15′,170764026,85,’Released’,’Some Thing Has Found Us’,6.40,2251),(7214,’Coach Carter’,30000000,”,’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.’,23.234651,’2005-01-14′,76669806,136,’Released’,’It begins on the street. It ends here.’,7.30,496),(7220,’The Punisher’,33000000,’http://marvel.com/movies/movie/5/the_punisher’,’When undercover FBI agent Frank Castle\’s wife and son are slaughtered, he becomes \’the Punisher\’ — a ruthless vigilante willing to go to any length to avenge his family.’,35.099611,’2004-04-15′,54700105,124,’Released’,’There is no justice, there is only revenge.’,6.10,766),(7278,’Meet the Spartans’,30000000,’http://www.meetthespartans.com/’,’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,’,10.608998,’2008-01-24′,84646831,84,’Released’,’The Bigger the Hit, The Harder They Fall’,3.70,359),(7288,’Duplex’,40000000,”,’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!’,15.590001,’2003-09-26′,19322135,89,’Released’,”,5.90,482),(7299,’Equilibrium’,20000000,”,’In a dystopian future, a totalitarian regime maintains peace by subduing the populace with a drug, and displays of emotion are punishable by death. A man in charge of enforcing the law rises to overthrow the system.’,44.566609,’2002-12-06′,5359645,107,’Released’,’In a future where freedom is outlawed, outlaws will become heroes.’,6.90,1552),(7301,’Lonesome Jim’,0,”,’Failing to make it on his own, 27-year-old Jim moves back in with his parents and deals with crippling family obligations.’,3.433625,’2005-11-16′,0,91,’Released’,”,6.40,26),(7303,’Maid in Manhattan’,55000000,’http://www.sonypictures.com/movies/maidinmanhattan/’,’Marisa Ventura is a struggling single mom who works at a posh Manhattan hotel and dreams of a better life for her and her young son. One fateful day, hotel guest and senatorial candidate Christopher Marshall meets Marisa and mistakes her for a wealthy socialite. After an enchanting evening together, the two fall madly in love. But when Marisa\’s true identity is revealed, issues of class and social status threaten to separate them. Can two people from very different worlds overcome their differences and live happily ever after?’,19.738215,’2002-12-13′,154906693,105,’Released’,”,5.60,485),(7304,’Running Scared’,17000000,’https://www.warnerbros.com/running-scared’,’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.’,19.311572,’2006-01-06′,9500000,122,’Released’,’Every bullet leaves a trail.’,7.00,331),(7305,’Alive’,32000000,”,’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.’,14.488510,’1993-01-15′,36733909,120,’Released’,’They survived the impossible…by doing the unthinkable.’,6.70,374),(7326,’Juno’,7500000,’http://www.foxsearchlight.com/juno/’,’A young girl named Juno gets herself pregnant and tries to stand on her own, but soon learns a few lessons about being grown up.’,19.782725,’2007-12-05′,231411584,96,’Released’,’A comedy about growing up… and the bumps along the way.’,7.00,2244),(7341,’The Rage: Carrie 2′,21000000,”,’After the suicide of her only friend, Rachel has never felt more on the outside. The one person who reached out to her, Jessie, also happens to be part of the popular crowd that lives to torment outsiders like her. But Rachel has something else that separates her from the rest, a secret amazing ability to move things with her mind. Sue Snell, the only survivor of Carrie White\’s rampage twenty-two years ago, may hold the key to helping Rachel come to terms with her awesome, but unwanted power. But as Rachel slowly learns to trust, a terrible trap is being laid for her. And making her angry could prove to be fatal.’,4.781538,’1999-03-11′,17762705,104,’Released’,’Looks Can Kill’,5.10,76),(7345,’There Will Be Blood’,25000000,”,’When ruthless oil prospector, Daniel Plainview 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 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 accumulation of wealth and power causes his true self to surface, and he begins to slowly alienate himself from everyone in his life.’,37.817905,’2007-12-28′,77208711,158,’Released’,’There Will Be Greed. There Will Be Vengeance.’,7.90,1537),(7347,’Tropa de Elite’,4000000,’http://www.tropadeeliteofilme.com.br/’,’In 1997, before the visit of the pope to Rio de Janeiro, Captain Nascimento from BOPE (Special Police Operations Battalion) is assigned to eliminate the risks of the drug dealers in a dangerous slum nearby where the pope intends to be lodged.’,23.604936,’2007-10-12′,0,115,’Released’,’On the streets of Rio only the elite survive’,7.80,504),(7350,’The Bucket List’,45000000,’http://www.warnerbros.com/bucket-list’,’Corporate billionaire Edward Cole and working class mechanic Carter Chambers are worlds apart. At a crossroads in their lives, they share a hospital room and discover they have two things in common: a desire to spend the time they have left doing everything they ever wanted to do and an unrealized need to come to terms with who they are. Together they embark on the road trip of a lifetime, becoming friends along the way and learning to live life to the fullest, with insight and humor.’,31.305336,’2007-12-25′,175372502,97,’Released’,’Find the joy.’,7.00,1111),(7364,’Sahara’,130000000,”,’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.’,21.605568,’2005-04-06′,119269486,124,’Released’,’Dirk Pitt. Adventure has a new name.’,5.70,434),(7443,’Chicken Run’,45000000,”,’Having been hopelessly repressed and facing eventual certain death at the British chicken farm where they are held, Rocky the american 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.’,31.789029,’2000-06-21′,224834564,84,’Released’,’This ain\’t no chick flick. It\’s poultry in motion.’,6.50,1150),(7445,’Brothers’,26000000,”,’When his helicopter goes down during his fourth tour of duty in Afghanistan, Marine Sam Cahill is presumed dead. Back home, brother Tommy steps in to look over Samâ��s wife, Grace, and two children. Samâ��s surprise homecoming triggers domestic mayhem.’,22.076380,’2009-01-27′,43318349,104,’Released’,’There are two sides to every family.’,6.80,633),(7446,’Tropic Thunder’,92000000,’http://www.tropicthunder.com/’,’Vietnam veteran \’Four Leaf\’ Tayback\’s memoir, Tropic Thunder, is being made into a film, but Director Damien Cockburn canâ��t control the cast of prima donnas. Behind schedule and over budget, Cockburn is ordered by a studio executive to get filming back on track, or risk its cancellation. On Tayback\’s advice, Cockburn drops the actors into the middle of the jungle to film the remaining scenes but, unbeknownst to the actors and production, the group have been dropped in the middle of the Golden Triangle, the home of heroin-producing gangs.’,43.192048,’2008-08-09′,188072649,107,’Released’,’The movie they think they\’re making… isn\’t a movie anymore.’,6.50,1667),(7450,’Titan A.E.’,75000000,”,’A young man finds out that he holds the key to restoring hope and ensuring survival for the human race, while an alien species called the Dredge are bent on mankind\’s destruction.’,14.443810,’2000-06-16′,36754634,94,’Released’,’When Earth Ends, The Adventure Begins.’,6.30,313),(7451,’xXx’,70000000,’http://www.sonypictures.com/movies/xxx/’,’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.’,46.217769,’2002-08-09′,277448382,124,’Released’,’A New Breed Of Secret Agent.’,5.80,1424),(7453,’The Hitchhiker\’s Guide to the Galaxy’,50000000,”,’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.\”‘,51.742065,’2005-01-15′,104478416,109,’Released’,’Don\’t leave Earth without it.’,6.60,1315),(7459,’Speed Racer’,120000000,’http://www.speedracerthemovie.warnerbros.com/’,’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 an end to the corruption and criminal activities. Inspired by the cartoon series.’,17.060695,’2008-05-09′,93945766,135,’Released’,’Go!’,5.70,354),(7461,’Vantage Point’,40000000,’http://www.vantagepoint-movie.com/index.php’,’The attempted assassination of the American President is told and re-told from several different perspectives.’,24.862767,’2008-02-01′,151161491,90,’Released’,’8 Strangers, 8 points of view. 1 Truth.’,6.20,716),(7484,’Open Season’,85000000,’http://www.sonypictures.com/movies/openseason/’,’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.’,26.619510,’2006-09-29′,197309027,83,’Released’,’One Fur All & All Fur One’,6.10,656),(7485,’Shooter’,61000000,’http://www.shootermovie.com/’,’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.’,37.378081,’2007-03-22′,95696996,124,’Released’,’Yesterday was about honor. Today is about justice.’,6.90,1462),(7501,’Knockaround Guys’,15000000,’http://www.newline.com/properties/knockaroundguys.html’,’Four sons of well-known New York mobsters must retrieve a bag of cash from a small Montana town ruled by a corrupt sheriff.’,8.113634,’2001-09-07′,12000000,92,’Released’,’If they don\’t finish the job, their fathers will finish them.’,5.90,97),(7504,’1947: Earth’,0,”,’It\’s 1947 and the borderlines between India and Pakistan are being drawn. A young girl bears witnesses to tragedy as her ayah is caught between the love of two men and the rising tide of political and religious violence.’,1.246883,’1998-09-16′,528972,101,’Released’,”,6.60,9),(7509,’Water’,0,”,’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.’,2.787375,’2005-09-08′,10422387,115,’Released’,”,6.80,34),(7510,’Running with Scissors’,12000000,”,’Young Augusten Burroughs absorbs experiences that could make for a shocking memoir: the son of an alcoholic father and an unstable mother, 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.’,4.770195,’2006-10-27′,6754898,116,’Released’,’Ever have one of those lives?’,5.80,78),(7512,’Idiocracy’,30000000,”,’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.’,27.940093,’2006-09-01′,495303,84,’Released’,’In the future, intelligence is extinct.’,6.30,664),(7515,’London’,0,”,’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.’,5.350423,’2005-02-10′,0,92,’Released’,’One young man\’s incredible journey of self-discovery’,6.10,96),(7516,’Smokin\’ Aces’,17000000,’http://www.smokinaces.net/’,’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.’,23.491962,’2006-12-09′,57103895,109,’Released’,’Nobody gets away clean.’,6.40,534),(7518,’Over the Hedge’,80000000,”,’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.’,36.327050,’2006-04-22′,343397247,83,’Released’,’Taking back the neighborhood… One snack at a time.’,6.30,1074),(7547,’Come Early Morning’,6000000,”,’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.’,3.427061,’2006-01-10′,0,97,’Released’,’Before you fall in love, you need to love yourself.’,5.90,10),(7548,’The Libertine’,0,”,’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.’,7.588597,’2004-09-16′,0,114,’Released’,’He didn\’t resist temptation. He pursued it.’,5.90,128),(7552,’Fun with Dick and Jane’,100000000,’http://www.sonypictures.com/movies/funwithdickandjane/’,’After Dick Harper loses his job at Globodyne in an Enron-esque collapse, he and his wife, Jane, turn to crime in order to handle the massive debt they now face. Two intelligent people, Dick and Jane actually get pretty good at robbing people and even enjoy it — but they have second thoughts when they\’re reminded that crime can hurt innocent people. When the couple hears that Globodyne boss Jack McCallister actually swindled the company, they plot revenge.’,25.159168,’2005-12-21′,202026112,90,’Released’,’Giving big businesses a run for their money!’,5.90,627),(7553,’Waiting…’,3000000,”,’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.’,10.230583,’2005-10-07′,18637690,94,’Released’,’What happens in the kitchen ends up on the plate.’,6.20,237),(7735,’Die Welle’,7500000,’http://www.welle.film.de/’,’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.’,25.281197,’2008-03-11′,19000000,107,’Released’,’Evil is something that you learn’,7.50,841),(7737,’Resident Evil: Extinction’,45000000,’http://www.sonypictures.com/movies/residentevilextinction/index.html’,’Years after the Racoon City catastrophe, survivors travel across the Nevada desert, hoping to make it to Alaska. Alice joins the caravan and their fight against hordes of zombies and the evil Umbrella Corp.’,12.065380,’2007-09-20′,148412065,94,’Released’,’The Extinction Is Coming…’,6.10,1292),(7859,’Half Nelson’,700000,’http://www.halfnelsonthefilm.co.uk/’,’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.’,12.378031,’2006-08-11′,4911725,107,’Released’,’Secrets don\’t let go.’,6.50,240),(7863,’Shine’,0,”,’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.’,10.396305,’1996-01-21′,0,105,’Released’,’A true story of the mystery of music and the miracle of love’,7.30,131),(7870,’Down in the Valley’,8000000,’http://www.downinthevalleyfilm.com/main.htm’,’On a trip to the beach, a teenage girl named Tobe meets a charismatic stranger named Harlan, who dresses like a cowboy and claims to be a former ranch hand. The pair feel an instant attraction and begin a relationship, but her father, a lawman, is suspicious of her lover.’,7.433574,’2005-05-13′,852872,112,’Released’,’Sometimes it\’s hard to find your way.’,5.90,63),(7873,’Harsh Times’,2000000,’http://www.harshtimes.com/’,’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.’,12.999023,’2005-09-11′,5967038,120,’Released’,’Take A Ride To The Edge’,6.30,197),(7874,’Black Snake Moan’,15000000,’http://www.moanmovie.com/’,’A God-fearing bluesman takes to a wild young woman who, as a victim of childhood sexual abuse, is looking everywhere for love, but never quite finding it.’,11.429607,’2006-12-08′,10903846,116,’Released’,’To save his soul he must save hers.’,6.60,243),(7913,’Rang De Basanti’,2200000,”,’A young idealistic English filmmaker, Sue, arrives in India to make a film on Indian revolutionaries Bhagat Singh, Chandrashekhar Azad and their contemporaries and their fight for freedom from the British Raj. Owing to a lack of funds, she recruits students from Delhi University to act in her docu-drama. She finds DJ, who passed out five years back but still wants to be a part of the University because he doesn\’t think there\’s too much out there in the real world to look forward to. Karan, the son of Industrialist Rajnath Singhania, who shares an uncomfortable relationship with his father, but continues to live off him, albeit very grudgingly. Aslam, is a middle class Muslim boy, who lives in the by-lanes near Jama Masjid, poet, philosopher and guide to his friends. Sukhi, the group\’s baby, innocent, vulnerable and with a weakness for only one thing – girls. Laxman Pandey…’,5.206967,’2006-01-26′,11502151,157,’Released’,’A Generation Awakens’,7.20,97),(7942,’Run Fatboy Run’,10000000,’http://www.runfatboyrunmovie.com/’,’Five years after jilting his pregnant fiancée on their wedding day, out-of-shape Dennis decides to run a marathon to win her back.’,14.905357,’2007-09-06′,33000000,100,’Released’,’Love. Commitment. Responsibility. There\’s nothing he won\’t run away from.’,6.20,238),(7944,’Shine a Light’,0,’http://www.shinealightmovie.com/’,’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.’,2.162522,’2008-02-07′,0,122,’Released’,’A master director shining his light on the best rock band on the planet.’,7.20,44),(7973,’سÙ�ر بÙ�ات’,0,’http://www.bacfilms.com/site/caramel/’,’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.’,4.554574,’2007-07-01′,0,96,’Released’,”,6.80,52),(7978,’The Wolfman’,150000000,’http://www.thewolfmanmovie.com/’,’Lawrence Talbot, an American man on a visit to Victorian London to make amends with his estranged father, gets bitten by a werewolf and, after a moonlight transformation, leaves him with a savage hunger for flesh.’,21.214571,’2010-02-11′,0,102,’Released’,’When the moon is full the legend comes to life’,5.50,549),(7979,’The Kite Runner’,20000000,’http://www.kiterunnermovie.com/’,’After spending years in California, Amir returns to his homeland in Afghanistan to help his old friend Hassan, whose son is in trouble.’,10.446722,’2007-10-14′,73276047,128,’Released’,’There is a way to be good again.’,7.30,394),(7980,’The Lovely Bones’,65000000,’http://www.lovelybones.com’,’After being brutally murdered, 14-year-old Susie Salmon watches from heaven over her grief-stricken family — and her killer. As she observes their daily lives, she must balance her thirst for revenge with her desire for her family to heal.’,29.257137,’2009-12-26′,93525586,136,’Released’,’The story of a life and everything that came after…’,6.60,1065),(8007,’Behind Enemy Lines’,40000000,”,’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.’,24.012986,’2001-11-17′,91753202,106,’Released’,’His only weapon is his will to survive.’,6.00,457),(8009,’Highlander’,16000000,”,’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.’,29.253833,’1986-03-07′,5900000,116,’Released’,’There can be only one.’,6.80,624),(8011,’Highlander III: The Sorcerer’,26000000,”,’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.’,7.964451,’1994-11-29′,36800000,99,’Released’,’Throughout time they have hunted each other fulfilling the prophecy, that there can be only one.’,4.50,110),(8012,’Get Shorty’,30250000,”,’Chili Palmer is a Miami mobster who gets sent by his boss, the psychopathic \”Bones\” Barboni, to collect a bad debt from Harry Zimm, a Hollywood producer who specializes in cheesy horror films. When Chili meets Harry\’s leading lady, the romantic sparks fly. After pitching his own life story as a movie idea, Chili learns that being a mobster and being a Hollywood producer really aren\’t all that different.’,15.585138,’1995-10-20′,115101622,105,’Released’,’The mob is tough, but itâ��s nothing like show business.’,6.40,302),(8046,’Gigli’,54000000,’http://www.sonypictures.com/homevideo/catalog/catalogDetail_DVD043396087576.html’,’Gigli is ordered to kidnap the psychologically challenged younger brother of a powerful federal prosecutor. When plans go awry, Gigli\’s boss sends in Ricki, a gorgeous free-spirited female gangster who has her own set of orders to assist with the kidnapping. But Gigli begins falling for the decidedly unavailable Ricki, which could be a hazard to his occupation.’,9.053456,’2003-08-01′,7266209,121,’Released’,’Life doesn\’t play by the rules.’,3.50,104),(8051,’Punch-Drunk Love’,25000000,”,’A beleaguered small-business owner gets a harmonium and embarks on a romantic journey with a mysterious woman.’,15.960916,’2002-10-25′,17000000,95,’Released’,”,6.90,530),(8053,’The Three Burials of Melquiades Estrada’,15000000,”,’When brash Texas border officer Mike Norton (Barry Pepper) wrongfully kills and buries the friend and ranch hand of Pete Perkins (Tommy Lee Jones), the latter is reminded of a promise he made to bury his friend, Melquiades Estrada (Julio Cesar Cedillo), in his Mexican home town. He kidnaps Norton and exhumes Estrada\’s corpse, and the odd caravan sets out on horseback for Mexico. As Estrada\’s body begins to rot, Norton begins to unravel, but Perkins remains determined to honor his vow.’,12.163832,’2005-11-17′,12036149,121,’Released’,’Nobody is beyond redemption.’,7.00,177),(8054,’The Imaginarium of Doctor Parnassus’,30000000,’http://doctorparnassus.com/’,’A traveling theater company gives its audience much more than they were expecting.’,37.181019,’2009-10-01′,64352607,123,’Released’,”,6.30,869),(8055,’The Reader’,32000000,”,’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 fact at the expense of her freedom.’,33.923786,’2008-12-10′,113019290,124,’Released’,’Behind the mystery lies a truth that will make you question everything you know.’,7.20,813),(8060,’Married Life’,12000000,’http://www.sonyclassics.com/marriedlife/’,’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.’,3.004432,’2007-09-12′,0,90,’Released’,”,6.10,38),(8065,’21’,35000000,’http://www.sonypictures.com/movies/21/’,’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 are being trained by Professor Rosa of the skill of card counting at blackjack.’,45.149948,’2008-03-27′,69823199,123,’Released’,’They proved the Vegas Blackjack System was beatable…by beating the hell out of it.’,6.50,1375),(8068,’Desperado’,7000000,”,’A gunslinger is embroiled in a war with a local drug runner.’,25.511217,’1995-08-25′,25405445,104,’Released’,’When the smoke clears, it just means he\’s reloading.’,6.80,881),(8069,’Barbarella’,9000000,”,’In the far future, a highly sexual woman is tasked with finding and stopping the evil Durand-Durand. Along the way she encounters various unusual people.’,14.171759,’1968-10-10′,2500000,98,’Released’,’See Barbarella do her thing!’,5.70,146),(8077,’Alien³’,50000000,”,’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.’,45.856409,’1992-05-22′,159773545,114,’Released’,’The bitch is back.’,6.20,1633),(8078,’Alien: Resurrection’,70000000,”,’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 â�¦ as are the new aliens. Ripley must team with a band of smugglers to keep the creatures from reaching Earth.’,37.449630,’1997-11-12′,162000000,109,’Released’,’It\’s already too late.’,5.90,1365),(8080,’Suspect Zero’,27000000,”,’A killer is on the loose, and an FBI agent sifts through clues and learns that the bloodthirsty felon\’s victims of choice are other serial killers.’,8.715822,’2004-08-27′,13000000,99,’Released’,’Who\’s next?’,5.50,98),(8090,’Untraceable’,35000000,’http://www.sonypictures.com/movies/untraceable/’,’Special Agent Jennifer Marsh (Diane Lane) works in an elite division of the FBI dedicated to fighting cybercrime. She thinks she has seen it all, until a particularly sadistic criminal arises on the Internet. This tech-savvy killer posts live feeds of his crimes on his website; the more hits the site gets, the faster the victim dies. Marsh and her team must find the elusive killer before time runs out.’,12.677505,’2008-01-22′,32483410,101,’Released’,’A cyber killer has finally found the perfect accomplice: You.’,5.90,238),(8095,’Cleopatra’,31115000,”,’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.’,13.244365,’1963-06-12′,71000000,248,’Released’,’The motion picture the world has been waiting for!’,6.70,146),(8141,’You Kill Me’,4000000,’http://www.youkillmethefilm.com/’,’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.’,6.091951,’2007-02-09′,2426851,90,’Released’,’Professional alcoholic hit man gets life back on track thanks to her’,6.20,80),(8193,’Napoleon Dynamite’,400000,”,’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.’,23.603514,’2004-06-11′,46118097,95,’Released’,’He\’s out to prove he\’s got nothing to prove.’,6.70,554),(8195,’Ronin’,55000000,”,’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\’, and gives them the thorny task of recovering the case.’,32.657488,’1998-09-25′,41610884,122,’Released’,’Your ally could become your enemy.’,6.70,658),(8197,’Midnight in the Garden of Good and Evil’,35000000,”,’A visiting city reporter\’s assignment suddenly revolves around the murder trial of a local millionaire, whom he befriends.’,5.525544,’1997-11-21′,25105255,155,’Released’,”,6.30,157),(8198,’The Quiet American’,30000000,”,’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.’,5.133744,’2002-11-22′,27674124,101,’Released’,”,6.40,81),(8202,’Ã�on Flux’,62000000,”,’400 years into the future, disease has wiped out the majority of the world\’s population, except one walled city, Bregna, ruled by a congress of scientists. When Ã�on Flux, the top operative in the underground \’Monican\’ rebellion, is sent on a mission to kill a government leader, she uncovers a world of secrets.’,29.954302,’2005-11-30′,52304001,93,’Released’,’The Perfect World Meets The Perfect Assassin’,5.40,703),(8204,’The Spiderwick Chronicles’,90000000,”,’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.’,21.436682,’2008-02-14′,162839667,95,’Released’,’Their World Is Closer Than You Think.’,6.30,572),(8224,’8MM’,40000000,”,’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.’,25.580272,’1999-02-26′,96618699,123,’Released’,’You can\’t prepare for where the truth will take you.’,6.10,474),(8247,’Jumper’,85000000,’http://www.fox.co.uk/jumper’,’David Rice is a man who knows no boundaries, a Jumper, born with the uncanny ability to teleport instantly to anywhere on Earth. When he discovers others like himself, David is thrust into a dangerous and bloodthirsty war while being hunted by a sinister and determined group of zealots who have sworn to destroy all Jumpers. Now, Davidâ��s extraordinary gift may be his only hope for survival!’,21.218000,’2008-02-10′,222231186,88,’Released’,’anywhere is possible.’,5.90,1799),(8265,’Bienvenue chez les ch\’tis’,11000000,’http://www.bienvenuechezleschtis-lefilm.com/’,’Although living a comfortable life in Salon-de-Provence, a charming town in the South of France, Julie has been feeling depressed for a while. To please her, Philippe Abrams, a post office administrator, her husband, tries to obtain a transfer to a seaside town, on the French Riviera, at any cost. The trouble is that he is caught red-handed while trying to scam an inspector. Philippe is immediately banished to the distant unheard of town of Bergues, in the Far North of France…’,18.923181,’2008-01-09′,53191886,106,’Released’,”,6.80,615),(8271,’Disturbia’,20000000,’http://www.disturbia.com/’,’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.’,31.690456,’2007-04-12′,117760134,105,’Released’,’The quieter the street, the darker the secrets….’,6.60,1006),(8272,’The Savages’,0,’http://www.foxsearchlight.com/thesavages’,’A sister and brother face the realities of familial responsibility as they begin to care for their ailing father.’,5.663889,’2007-01-19′,0,114,’Released’,”,6.80,110),(8273,’American Wedding’,55000000,”,’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.’,36.194802,’2003-08-01′,231449203,103,’Released’,’Forever hold your piece.’,6.00,1129),(8285,’The Spirit’,60000000,’http://www.mycityscreams.com/’,’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.’,14.848560,’2008-12-25′,39031337,103,’Released’,’I\’m gonna kill you all kinds of dead.’,4.70,320),(8291,’Poetic Justice’,14000000,’http://www.janetjackson.com’,’In this film, we see the world through the eyes of main character Justice, a young African-American poet. A mail carrier invites a few friends along for a long overnight delivery run.’,3.650857,’1993-07-23′,27515786,109,’Released’,’A Street Romance.’,6.90,47),(8292,’Four Brothers’,45000000,’http://fourbrothersmovie.com’,’Four adopted brothers return to their Detroit hometown when their mother is murdered and vow to exact revenge on the killers.’,24.694551,’2005-08-11′,92374674,109,’Released’,’They came home to bury mom… and her killer’,6.70,607),(8293,’Howards End’,0,’http://www.bfi.org.uk/whats-on/bfi-film-releases/howards-end’,’Merchant Ivoryâ��s adaptation of EM Forsterâ��s classic 1910 novel, starring Emma Thompson, Helena Bonham Carter, Anthony Hopkins & Vanessa Redgrave returns to the big screen in a beautiful new 4K restoration. Stunning location photography, lavishly detailed sets & elegant period costumes, this compelling saga follows the interwoven fates and misfortunes of three families amid the changing times of Edwardian England. It tells the story of two free-spirited, cosmopolitan sisters, Margaret (Emma Thompson) and Helen Schlegel (Helena Bonham Carter), who collide with the world of the very wealthy ÂÂâ�� one sister benefiting from the acquaintance with the Wilcoxes (owners of the beloved country home Howards End), the other all but destroyed by it. Anthony Hopkins is the conservative industrialist Henry Wilcox and Vanessa Redgrave is his ailing wife Ruth Wilcox.’,5.897391,’1992-03-13′,25966555,140,’Released’,”,6.90,95),(8321,’In Bruges’,15000000,’http://www.filminfocus.com/film/in_bruges’,’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.’,25.329493,’2008-02-08′,34533783,107,’Released’,’Shoot first. Sightsee later.’,7.40,1388),(8326,’Holes’,20000000,”,’Stanley\’s family is cursed with bad luck. Unfairly sentenced to months of detention at Camp Green Lake, he and his campmates are forced by the warden to dig holes in order to build character. What they don\’t know is that they are digging holes in order to search for a lost treasure hidden somewhere in the camp.’,22.001408,’2003-04-18′,0,117,’Released’,’Some secrets are too big to keep hidden.’,6.70,383),(8328,’Step Up 2: The Streets’,23000000,”,’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.’,28.973074,’2008-02-14′,150816700,98,’Released’,’It\’s not where you\’re from. It\’s where you\’re at.’,6.50,640),(8329,'[REC]’,1500000,’http://www.3l-filmverleih.de/rec’,’A television reporter and cameraman follow emergency workers into a dark apartment building and are quickly locked inside with something terrifying.’,31.691617,’2007-04-10′,30448000,78,’Released’,’One witness. One camera’,7.10,934),(8337,’They Live’,4000000,’http://www.theofficialjohncarpenter.com/they-live/’,’Nada, a down-on-his-luck construction worker, discovers a pair of special sunglasses. Wearing them, he is able to see the world as it really is: people being bombarded by media and government with messages like \”Stay Asleep\”, \”No Imagination\”, \”Submit to Authority\”. Even scarier is that he is able to see that some usually normal-looking people are in fact ugly aliens in charge of the massive campaign to keep humans subdued.’,29.852608,’1988-11-23′,13008928,94,’Released’,’Who are they? And what do they want?’,7.10,550),(8338,’Blindness’,25000000,’http://www.blindness-themovie.com/’,’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.’,17.603823,’2008-05-14′,19844979,121,’Released’,”,6.40,387),(8346,’My Big Fat Greek Wedding’,5000000,”,’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.’,18.115566,’2002-02-22′,368744044,95,’Released’,’Love is here to stay… so is her family.’,6.20,671),(8355,’Ice Age: Dawn of the Dinosaurs’,90000000,’http://www.iceagemovies.com/films/ice-age-dawn-of-the-dinosaurs’,’Times are changing for Manny the moody mammoth, Sid the motor mouthed sloth and Diego the crafty saber-toothed tiger. Life heats up for our heroes when they meet some new and none-too-friendly neighbors â�� the mighty dinosaurs.’,69.457898,’2009-06-29′,886686817,94,’Released’,’You Won\’t Believe Your Ice!’,6.50,2271),(8357,’What the #$*! Do We (K)now!?’,0,”,’Amanda (Marlee Maitlin) is a divorced woman who makes a living as a photographer. During the Fall of the year Amanda begins to see the world in new and different ways when she begins to question her role in life, her relationships with her career and men and what it all means. As the layers to her everyday experiences fall away insertions in the story with scientists, and philosophers and religious leaders impart information directly to an off-screen interviewer about academic issues, and Amanda begins to understand the basis to the quantum world beneath. During her epiphany as she considers the Great Questions raised by the host of inserted thinkers, Amanda slowly comprehends the various inspirations and begins to see the world in a new way.’,7.288352,’2004-04-23′,10000000,109,’Released’,’Time to get wise.’,5.80,34),(8358,’Cast Away’,90000000,”,’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.’,57.739713,’2000-12-22′,429632142,143,’Released’,’At the edge of the world, his journey begins.’,7.50,3218),(8359,’Kit Kittredge: An American Girl’,0,’http://www.americangirl.com/movie/’,’The Great Depression hits home for nine year old Kit Kittredge when her dad loses his business and leaves to find work. Oscar nominee Abigail Breslin stars as Kit, leading a splendid cast in the first ever \”American Girl\” theatrical movie. In order to keep their home, Kit and her mother must take in boarders – paying house – guests who turn out to be full of fascinating stories. When mother\’s lockbox containing all their money is stolen, Kit\’s new hobo friend Will is the prime suspect. Kit refuses to believe that Will would steal, and her efforts to sniff out the real story get her and friends into big trouble. The police say the robbery was an inside job, committed by someone they know. So if it wasn\’t Will, then who did it.’,6.271410,’2008-07-02′,0,101,’Released’,’Kit Kittredge, a resourceful young girl, helps her mother run a boardinghouse after her father loses his job.’,6.40,34),(8363,’Superbad’,20000000,’http://www.areyousuperbad.com/’,’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 a fake ID-toting friend, the guys\’ evening takes a turn into chaotic territory.’,33.436092,’2007-08-17′,121463226,113,’Released’,’Come and Get Some!’,7.00,2100),(8367,’Robin Hood: Prince of Thieves’,48000000,”,’When the dastardly Sheriff of Nottingham murders Robin\’s father, the legendary archer vows vengeance. To accomplish his mission, Robin joins forces with a band of exiled villagers (and comely Maid Marian), and together they battle to end the evil sheriff\’s reign of terror.’,28.803729,’1991-06-14′,390493908,143,’Released’,’For the good of all men, and the love of one woman, he fought to uphold justice by breaking the law.’,6.60,909),(8373,’Transformers: Revenge of the Fallen’,150000000,’http://www.transformersmovie.com/’,’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.’,21.939663,’2009-06-19′,836297228,150,’Released’,’Revenge is coming.’,6.00,3138),(8374,’The Boondock Saints’,6000000,’http://www.theboondocksaints.com’,’With a God-inspired moral obligation to act against evil, twin brothers Conner and Murphy set out to rid Boston of criminals. However, rather than working within the system, these Irish Americans decide to take swift retribution into their own hands.’,34.917447,’1999-01-22′,30471,108,’Released’,’Thy Kingdom Come. Thy Will Be Done.’,7.20,837),(8386,’How High’,12000000,’http://www.howhighmovie.com/’,’Multi-platinum rap superstars Redman and Method Man star as Jamal and Silas, two regular guys who smoke something magical, ace their college entrance exams and wind up at Harvard. Ivy League ways are strange but Silas and Jamal take it in a stride — until their supply of supernatural smoke runs dry. That\’s when they have to start living by their wits and rely on their natural resources to make the grade.’,11.510281,’2001-12-21′,31155435,93,’Released’,’They\’ve got their degrees all rolled up.’,6.30,218),(8390,’Definitely, Maybe’,0,’http://www.definitelymaybemovie.com/’,’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.’,29.173266,’2008-02-08′,55447968,112,’Released’,’Three relationships. Three disasters. One last chance.’,6.70,620),(8408,’Day of the Dead’,3500000,”,’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.’,18.025206,’1985-07-19′,34000000,96,’Released’,’The darkest day of horror the world has ever known.’,6.90,270),(8409,’A Man Apart’,36000000,’http://www.newline.com/properties/manaparta.html’,’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.’,19.854932,’2003-04-04′,44350926,109,’Released’,’Love changes a man. Revenge tears him apart.’,5.80,258),(8413,’Event Horizon’,60000000,”,’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.’,29.787135,’1997-08-15′,26673242,96,’Released’,’Infinite Space – Infinite Terror’,6.50,742),(8416,’Il conformista’,750000,”,’A weak-willed Italian man becomes a fascist flunky who goes abroad to arrange the assassination of his old teacher, now a political dissident.’,8.429295,’1970-10-21′,0,107,’Released’,’Bertolucci\’s Masterpiece about Sex and Politics’,7.60,127),(8427,’I Spy’,70000000,”,’When the Switchblade, the most sophisticated prototype stealth fighter created yet, is stolen from the U.S. government, one of the United States\’ top spies, Alex Scott, is called to action. What he doesn\’t expect is to get teamed up with a cocky civilian, World Class Boxing Champion Kelly Robinson, on a dangerous top secret espionage mission. Their assignment: using equal parts skill and humor, catch Arnold Gundars, one of the world\’s most successful arms dealers.’,13.267631,’2002-10-31′,33561137,97,’Released’,’Attitude meets espionage.’,5.20,269),(8435,’A Cock and Bull Story’,0,’http://www.tristramshandymovie.com/’,’Steve Coogan, an arrogant actor with low self-esteem and a complicated love life, is playing the eponymous role in an adaptation of \”The Life and Opinions of Tristram Shandy, Gentleman\” being filmed at a stately home. He constantly spars with actor Rob Brydon, who is playing Uncle Toby and believes his role to be of equal importance to Coogan\’s.’,3.500741,’2005-07-17′,0,94,’Released’,’Because everyone loves an accurate period piece.’,6.20,43),(8452,’The 6th Day’,82000000,”,’Futuristic action about a man who meets a clone of himself and stumbles into a grand conspiracy about clones taking over the world.’,18.447479,’2000-11-17′,96085477,123,’Released’,’Are You Who You Think You Are’,5.70,595),(8456,’Never Back Down’,20000000,’http://www.neverbackdownthemovie.com/’,’Rebellious Jake Tyler is lured into an ultimate underground fight Scene at his new high school, after receiving threats to the safety of his friends and family Jake decides to seek the mentoring of a veteran fighter who trains him for one final no-holds-barred elimination fight with his nemesis and local martial arts champion Ryan McCarthy.’,26.214250,’2008-03-04′,41627431,115,’Released’,’Win or lose… Everyone has their fight.’,6.40,497),(8457,’Drillbit Taylor’,40000000,’http://www.drillbittaylor.com/’,’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.’,15.055732,’2008-03-20′,0,102,’Released’,’You get what you pay for’,5.50,275),(8461,’Funny Games’,15000000,’http://wip.warnerbros.com/funnygames/’,’When Ann, husband George and son Georgie arrive at their holiday home they are visited by a pair of polite and seemingly pleasant young men. Armed with deceptively sweet smiles and some golf clubs, they proceed to terrorize and torture the tight-knit clan, giving them until the next day to survive.’,15.175289,’2007-10-20′,7938872,112,’Released’,’Let the games begin…’,6.30,545),(8467,’Dumb and Dumber’,16000000,”,’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.’,35.777067,’1994-12-16′,247275374,107,’Released’,’What the one doesn\’t have, the other is missing.’,6.50,1859),(8469,’Animal House’,2700000,’http://www.animalhouse.com/’,’At a 1962 College, Dean Vernon Wormer is determined to expel the entire Delta Tau Chi Fraternity, but those troublemakers have other plans for him.’,17.332585,’1978-07-27′,141000000,109,’Released’,’It was the Deltas against the rules… the rules lost!’,7.00,418),(8470,’John Q’,36000000,”,’John Quincy Archibald is 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.’,27.465433,’2002-02-15′,102244770,116,’Released’,’Give a father no options and you leave him no choice.’,7.00,594),(8487,’Wild Wild West’,170000000,”,’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.’,40.748915,’1999-06-29′,222104681,106,’Released’,’It\’s a whole new west.’,5.10,1020),(8488,’Hitch’,70000000,”,’Dating coach Alex \’Hitch\’ Hitchens mentors a bumbling client, Albert, who hopes to win the heart of the glamorous Allegra Cole. While Albert makes progress, Hitch faces his own romantic setbacks when proven techniques fail to work on Sara Melas, a tabloid reporter digging for dirt on Allegra Cole\’s love life. When Sara discovers Hitch\’s connection to Albert â�� now Allegra\’s boyfriend â�� it threatens to destroy both relationships.’,34.576913,’2005-02-10′,368100420,118,’Released’,’The cure for the common man.’,6.40,1665),(8489,’Ali’,107000000,”,’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 Americans 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.’,18.866672,’2001-12-11′,87713825,157,’Released’,’Float like a butterfly and sting like a bee.’,6.70,447),(8536,’Superman II’,54000000,”,’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.’,30.515175,’1980-12-04′,190458706,127,’Released’,’The Man of Steel meets his match!’,6.50,629),(8545,’Little Voice’,0,”,’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 talent is special and arranges for her to perform at the local night club, but several problems arise.’,4.647547,’1998-11-05′,0,97,’Released’,’Finding your own voice can be magic.’,6.60,61),(8584,’Shanghai Noon’,55000000,”,’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.’,25.400935,’2000-05-26′,56932305,110,’Released’,’The old west meets the far east.’,6.20,735),(8587,’The Lion King’,45000000,’http://movies.disney.com/the-lion-king’,’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 to get it.’,90.457886,’1994-06-23′,788241776,89,’Released’,’Life\’s greatest adventure is finding your place in the Circle of Life.’,8.00,5376),(8592,’Dick Tracy’,47000000,”,’The comic strip detective finds his life vastly complicated when Breathless Mahoney makes advances towards him while he is trying to battle Big Boy Caprice\’s united mob,’,7.859226,’1990-06-15′,103738726,103,’Released’,’Their turf. Their game. Their rules. They didn\’t count on HIS law…’,5.90,251),(8617,’Prom Night’,0,’http://www.sonypictures.com/movies/promnight/’,’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.’,9.642041,’2008-04-10′,14796236,88,’Released’,’A Night To Die For.’,4.80,167),(8618,’The History Boys’,4000000,’http://www.foxsearchlight.com/site/thehistoryboys/’,’The story of an unruly class of bright, funny history students at a Yorkshire grammar school 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.’,3.771652,’2006-10-02′,13401952,109,’Released’,’History. It\’s just one bloody thing after another.’,6.60,66),(8619,’Master and Commander: The Far Side of the World’,150000000,’http://www.masterandcommanderthefarsideoftheworld.com/’,’After an abrupt and violent encounter with a French warship inflicts severe damage upon his ship, a captain of the British Royal Navy begins a chase over two oceans to capture or destroy the enemy, though he must weigh his commitment to duty and ferocious pursuit of glory against the safety of his devoted crew, including the ship\’s thoughtful surgeon, his best friend.’,36.973031,’2003-11-14′,212011111,138,’Released’,’The courage to do the impossible lies in the hearts of men.’,6.90,790),(8643,’The Exorcism of Emily Rose’,19000000,”,’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.’,32.602868,’2005-09-09′,144216468,122,’Released’,’What happened to Emily?’,6.30,659),(8645,’The Happening’,60000000,’http://www.thehappeningmovie.com’,’When a deadly airborne virus threatens to wipe out the northeastern United States, teacher Elliott Moore (Mark Wahlberg) and his wife (Zooey Deschanel) flee from contaminated cities into the countryside in a fight to discover the truth. Is it terrorism, the accidental release of some toxic military bio weapon — or something even more sinister? John Leguizamo and Betty Buckley co-star in this thriller from writer-director M. Night Shyamalan.’,20.501582,’2008-06-11′,163403799,91,’Released’,’We\’ve Sensed It. We\’ve Seen The Signs. Now… It\’s Happening.’,4.90,950),(8649,’Bringing Out the Dead’,32000000,”,’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.’,15.560918,’1999-10-22′,0,121,’Released’,”,6.60,225),(8656,’Deep Impact’,75000000,”,’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 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.’,34.070054,’1998-05-08′,140464664,120,’Released’,’Heaven and Earth are about to collide.’,5.90,855),(8665,’K-19: The Widowmaker’,100000000,”,’When Russia\’s first nuclear submarine malfunctions on its maiden voyage, the crew must race to save the ship and prevent a nuclear disaster.’,15.625949,’2002-07-19′,35168966,138,’Released’,’Fate has found its hero.’,6.10,264),(8669,’Charlie Bartlett’,12000000,’http://www.charliebartlett-themovie.com/’,’Awkward teenager Charlie Bartlett (Anton Yelchin) has trouble fitting in at a new high school. Charlie needs some friends fast, and decides that the best way to find them is to appoint himself the resident psychiatrist. He becomes one of the most popular guys in school by doling out advice and, occasionally, medication, to the student body.’,9.779444,’2008-02-22′,0,97,’Released’,’Popularity is a state of mind.’,6.50,225),(8675,’Orgazmo’,1000000,’http://www.orgazmodvd.com/’,’Joe Young is a devout Mormon living in L.A. trying to raise enough money to go back to Utah and marry his girlfriend, Lisa. Joe is spreading the word about the church of Latter Day Saints one day when he\’s confronted by two burly bodyguards. A scuffle breaks out, and Joe\’s martial arts skills impress Maxxx Orbison, who directs pornographic movies.’,5.065160,’1997-09-06′,0,94,’Released’,’Fighting crime never felt so good!’,6.20,115),(8676,’Fool\’s Gold’,70000000,’http://www.warnerbros.com/fools-gold’,’Treasure hunter Ben \”Finn\” Finnegan has sunk his marriage to Tess and his trusty boat in his obsessive quest to find the legendary Queen\’s Dowry. When he finds a vital clue that may finally pinpoint the treasure\’s whereabouts, he drags Tess and her boss, billionaire Nigel Honeycutt, along on the hunt. But Finn is not the only one interested in the gold; his former mentor-turned-enemy Moe Fitch will stop at nothing to beat him to it.’,21.789615,’2008-02-07′,111231041,112,’Released’,’This February True Love Takes a Dive.’,5.40,444),(8681,’Taken’,25000000,”,’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.’,80.879032,’2008-02-18′,226830568,93,’Released’,’They took his daughter. He\’ll take their lives.’,7.20,4369),(8688,’Snake Eyes’,73000000,”,’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.’,20.790703,’1998-08-07′,103891409,98,’Released’,’Believe everything except your eyes.’,5.80,327),(8698,’The League of Extraordinary Gentlemen’,78000000,”,’To prevent a world war from breaking out, famous characters from Victorian literature band together to do battle against a cunning villain.’,47.436675,’2003-07-11′,179265204,110,’Released’,’The power of seven become a league of one.’,5.70,1155),(8699,’Anchorman: The Legend of Ron Burgundy’,26000000,”,’It\’s the 1970s, and San Diego super-sexist anchorman Ron Burgundy is the top dog in local TV, but that\’s all about to change when ambitious reporter Veronica Corningstone arrives as a new employee at his station.’,29.342744,’2004-07-09′,90574188,94,’Released’,’They bring you the news so you don\’t have to get it yourself.’,6.70,1493),(8741,’The Thin Red Line’,52000000,”,’Based on the graphic novel by James Jones, The Thin Red Line tells the story of a group of men, an Army Rifle company called C-for-Charlie, who change, suffer, and ultimately make essential discoveries about themselves during the fierce World War II battle of Guadalcanal. It follows their journey, from the surprise of an unopposed landing, through the bloody and exhausting battles that follow, to the ultimate departure of those who survived. A powerful frontline cast – including Sean Penn, Nick Nolte, Woody Harrelson and George Clooney – explodes into action in this hauntingly realistic view of military and moral chaos in the Pacific during World War II.’,40.072583,’1998-12-25′,98126565,170,’Released’,’Every man fights his own war.’,7.20,771),(8744,’Albino Alligator’,6000000,”,’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.’,2.388683,’1996-09-09′,0,97,’Released’,’They Planned The Perfect Crime… Until It All Went Perfectly Wrong!’,5.60,45),(8780,’Baby Mama’,30000000,’http://www.babymamamovie.net/’,’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.’,11.409124,’2008-04-23′,63833449,99,’Released’,’Would you put your eggs…in this basket?’,5.80,205),(8810,’Mad Max 2′,2000000,”,’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.’,37.117362,’1981-12-24′,24600832,95,’Released’,’When all that\’s left is one last chance, pray that he\’s still out there … somewhere!’,7.30,957),(8814,’Doom’,60000000,”,’A team of space marines known as the Rapid Response Tactical Squad, led by Sarge, is sent to a science facility on Mars after somebody reports a security breach. There, they learn that the alert came after a test subject, a mass murderer purposefully injected with alien DNA, broke free and began killing people. Dr. Grimm, who is related to team member Reaper, informs them all that the chromosome can mutate humans into monsters — and is highly infectious.’,29.261348,’2005-10-20′,55987321,105,’Released’,’No one gets out alive.’,5.00,609),(8818,’Evita’,55000000,’http://en.wikipedia.org/wiki/Evita_(film)’,’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ón, and the most beloved and hated woman in Argentina.’,7.027139,’1996-12-14′,141047179,134,’Released’,’The Most Anticipated Motion Picture Event of The Year’,5.90,120),(8831,’Timecop’,27000000,”,’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.’,13.308127,’1994-09-15′,101646581,99,’Released’,’They killed his wife ten years ago. There\’s still time to save her. Murder is forever… until now.’,5.50,282),(8834,’Conspiracy Theory’,75000000,”,’A man obsessed with conspiracy theories becomes a target after one of his theories turns out to be true. Unfortunately, in order to save himself, he has to figure out which theory it is.’,22.179658,’1997-08-07′,136982834,135,’Released’,’What if your most paranoid nightmares had just come true?’,6.50,431),(8835,’Legally Blonde’,18000000,”,’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.’,25.439540,’2001-07-13′,141774679,96,’Released’,’Don\’t judge a book by its hair color!’,6.10,882),(8836,’The X Files: I Want to Believe’,30000000,”,’Six years after the events of The X-Files series finale, former FBI agent Doctor Dana Scully is now a staff physician at Our Lady of Sorrows, a Catholic hospital, and treating a boy named Christian who has Sandhoff disease, a terminal brain condition. FBI agent Drummy arrives to ask Scullyâ��s help in locating Fox Mulder, the fugitive former head of the X-Files division, and says they will call off its manhunt for him if he will help investigate the disappearances of several women, including young FBI agent Monica Banan. 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.’,25.454549,’2008-07-24′,68369434,104,’Released’,’To find the truth, you must believe.’,5.50,523),(8838,’Mercury Rising’,60000000,”,’Renegade FBI agent Art Jeffries protects a nine-year-old autistic boy who has cracked the government\’s new \”unbreakable\” code.’,18.877795,’1998-04-03′,0,111,’Released’,’Someone knows too much.’,6.00,368),(8839,’Casper’,50000000,”,’Furious that her late father only willed her his gloomy-looking mansion rather than his millions, Carrigan Crittenden is ready to burn the place to the ground when she discovers a map to a treasure hidden in the house. But when she enters the rickety mansion to seek her claim, she is frightened away by a wicked wave of ghosts. Determined to get her hands on this hidden fortune, she hires afterlife therapist Dr. James Harvey to exorcise the ghosts from the mansion. Harvey and his daughter Kat move in, and soon Kat meets Casper, the ghost of a young boy who\’s \”the friendliest ghost you know.\” But not so friendly are Casper\’s uncles–Stretch, Fatso and Stinkie–who are determined to drive all \”fleshies\” away.’,19.830132,’1995-05-26′,287928194,100,’Released’,’Get an afterlife’,6.00,1019),(8840,’DragonHeart’,57000000,”,’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.’,31.791979,’1996-05-31′,115267375,103,’Released’,’You will believe.’,6.40,535),(8841,’Entre les murs’,0,”,’Teacher and novelist François Bégaudeau plays a version of himself as he negotiates a year with his racially mixed students from a tough Parisian neighborhood.’,13.437038,’2008-09-24′,28814580,128,’Released’,’The dynamics of a multicultural class and its teacher will enlighten.’,6.80,174),(8842,’Against the Ropes’,39000000,”,’A fictional story inspired by North America\’s most famous female boxing promoter, Jackie Kallen. Her struggle to survive and succeed in a male dominated sport.’,2.817364,’2004-02-20′,6614280,106,’Released’,”,4.50,32),(8843,’The Cell’,33000000,”,’A psychotherapist journeys inside a comatose serial killer in the hopes of saving his latest victim.’,25.413955,’2000-08-17′,104155843,107,’Released’,’Enter The Mind Of A Killer’,6.00,436),(8847,’Standard Operating Procedure’,0,’http://www.sonyclassics.com/standardoperatingprocedure/’,’Errol Morris examines the incidents of abuse and torture of suspected terrorists at the hands of U.S. forces at the Abu Ghraib prison.’,0.888986,’2008-02-12′,0,117,’Released’,”,6.60,14),(8848,’The Bank Job’,20000000,’http://thebankjobmovie.com/’,’Terry is a small-time car dealer trying to leave his shady past behind and start a family. Martine is a beautiful model from Terry\’s old neighbourhood who knows that Terry is no angel. When Martine proposes a foolproof plan to rob a bank, Terry recognises the danger but realises this may be the opportunity of a lifetime. As the resourceful band of thieves burrows its way into a safe-deposit vault at a Lloyds Bank, they quickly realise that, besides millions in riches, the boxes also contain secrets that implicate everyone from London\’s most notorious underworld gangsters to powerful government figures, and even the Royal Family. Although the heist makes headlines throughout Britain for several days, a government gag order eventually brings all reporting of the case to an immediate halt.’,30.387754,’2008-02-28′,64822796,112,’Released’,”,6.60,697),(8849,’Alfie’,60000000,”,’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.’,15.219263,’2004-10-22′,13395939,103,’Released’,’Meet a man who never met a woman he didn\’t love.’,5.60,248),(8850,’The Shadow’,25000000,”,’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.’,8.178203,’1994-07-01′,48063435,108,’Released’,’The Shadow Knows!’,5.40,138),(8854,’Steel’,16000000,”,’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 now,\” the good-guy hero tells two crime victims he rescues. There\’ll be a lot of thrillin\’ before Steel himself can start chillin.\”,2.848727,’1997-08-15′,1686429,97,’Released’,’Heroes don\’t come any bigger.’,4.30,48),(8859,’Dude, Whereâ��s My Car?’,13000000,”,’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.’,25.316146,’2000-12-15′,73180723,83,’Released’,’After a night they can\’t remember, comes a day they\’ll never forget.’,5.20,509),(8869,’Eight Legged Freaks’,0,”,’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.’,17.834976,’2002-07-17′,0,99,’Released’,’Do you hate spiders? Do you really hate spiders? Well they don\’t like you either.’,5.40,295),(8870,’Red Planet’,80000000,”,’Astronauts search for solutions to save a dying Earth by searching on Mars, only to have the mission go terribly awry.’,13.800656,’2000-11-10′,33463969,106,’Released’,’Not A Sound. Not A Warning. Not A Chance. Not Alone.’,5.40,267),(8871,’How the Grinch Stole Christmas’,123000000,’http://www.grinched.com/’,’Inside a snowflake exists the magical land of Whoville. In Whoville, live the Whos, an almost mutated sort of Munchkin-like people. All the Whos 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, whom he equally abhors. Yet a small child, Cindy Lou Who, decides to try befriending the Grinch.’,45.419668,’2000-11-17′,345141403,104,’Released’,’He puts the mean in green.’,6.20,1386),(8872,’Wayne\’s World’,20000000,”,’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.’,21.815122,’1992-02-14′,121697323,94,’Released’,’You\’ll laugh. You\’ll cry. You\’ll hurl.’,6.50,728),(8874,’My Best Friend\’s Wedding’,38000000,”,’When she receives word that her longtime platonic pal Michael O\’Neal is getting married to debutante Kimberly Wallace, food critic Julianne Potter realizes her true feelings for Michael — and sets out to sabotage the wedding.’,15.401855,’1997-06-19′,299288605,105,’Released’,’It\’s about finding the love of your life. And deciding what to do about it.’,6.30,584),(8875,’Timber Falls’,2600000,”,’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.’,3.687574,’2007-12-07′,0,97,’Released’,”,5.20,38),(8879,’Pale Rider’,0,”,’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.’,14.574995,’1985-06-28′,41410568,115,’Released’,’… and hell followed with him.’,7.00,251),(8883,’Flammen & Citronen’,6500000,’http://www.flammenogcitronen.dk/’,’During Nazi occupation, red-headed Bent Faurschou-Hviid (\”Flame\”) and Jørgen 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 agent. Also, someone in their circle is a traitor. Can Bent and Jørgen kill an über-target, evade capture, and survive the war? And is this heroism, naiveté, or mere hatred?’,7.028946,’2008-03-25′,0,130,’Released’,”,6.80,68),(8885,’Vals Im Bashir’,2000000,’http://waltzwithbashir.com’,’Much awarded animated documentary, in which director and Israeli army veteran Ari Folman interviews friends and former soldiers about their memories of the 1982 Lebanon war and especially the Sabra and Shatila massacre in Beirut. The usage on animation enabled Folman to illustrate their personal memories and dreams.’,14.082510,’2008-06-25′,11125849,90,’Released’,”,7.80,291),(8909,’Wanted’,75000000,’http://www.wantedmovie.com/’,’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.’,73.822890,’2008-06-19′,258270008,110,’Released’,’Choose your destiny.’,6.40,2528),(8913,’Pet Sematary’,11500000,”,’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.’,20.747994,’1989-04-21′,57469467,103,’Released’,’Sometimes dead is better.’,6.40,407),(8914,’Deep Blue Sea’,60000000,”,’On a remote former submarine refueling facility called Aquatica, a team of scientists are searching for a cure for Alzheimer\’s disease. Dr. Susan McAlester genetically engineers three Mako sharks, intending to increase their brain capacity so that they can harvest the tissue as a cure for Alzheimer\’s. Unfortunately, the increased brain capacity also makes the sharks smarter, faster, and more dangerous. Aquatica\’s financial backers are skeptical and nervous about the tests, and send a corporate executive to visit the facility.’,22.991269,’1999-07-28′,73648228,105,’Released’,’Bigger. Smarter. Faster. Meaner.’,5.60,604),(8916,’Antz’,60000000,”,’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.’,41.515702,’1998-10-02′,171757863,83,’Released’,’Every ant has his day.’,6.00,1272),(8920,’Garfield’,50000000,”,’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.’,17.667826,’2004-06-10′,200804534,80,’Released’,’Get ready for frisky business.’,5.20,820),(8922,’Jeepers Creepers’,10000000,”,’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.’,23.316208,’2001-07-01′,59217789,90,’Released’,’Whatâ��s eating you?’,6.10,720),(8942,’Wendy and Lucy’,200000,”,’Wendy, a near-penniless drifter, is traveling to Alaska in search of work, and her only companion is her dog, Lucy. Already perilously close to losing everything, Wendy hits a bigger bump in the road when her old car breaks down and she is arrested for shoplifting dog food. When she posts bail and returns to retrieve Lucy, she finds that the dog is gone, prompting a frantic search for her pet.’,0.713906,’2008-05-22′,0,80,’Released’,’On the long road, friendship is everything.’,6.40,64),(8944,’What Just Happened’,25000000,’http://whatjusthappenedfilm.com/’,’During the course of an ordinary week in Hollywood, movie producer Ben (Robert De Niro) must navigate his way through shark-infested waters as he struggles to complete his latest projects. A demanding studio boss (Catherine Keener) demands extensive changes to a movie starring Sean Penn, while another chief won\’t greenlight a project unless star Bruce Willis shaves his beard. Meanwhile, Ben tries to reconcile with his wife and maintain a relationship with his young daughter.’,8.316530,’2008-10-17′,6673422,104,’Released’,’Admit nothing.’,5.20,127),(8952,’I Love You Phillip Morris’,13000000,”,’Steve Russell 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 the charismatic Phillip Morris. Smitten, Russell devotes his entire life to being with Morris regardless of the consequences.’,19.664699,’2009-01-18′,10652035,98,’Released’,’The Conman who wouldn\’t go straight.’,6.40,503),(8953,’Steamboy’,20000000,”,’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.’,9.129808,’2004-07-17′,0,126,’Released’,’He will save the future.’,6.40,102),(8960,’Hancock’,150000000,’http://www.sonypictures.com/movies/hancock/’,’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?’,56.758411,’2008-07-01′,624029371,92,’Released’,’Bad Behavior. Bad Attitude. Real Hero.’,6.20,2961),(8961,’Bad Boys II’,130000000,”,’Out-of-control, trash-talking buddy cops Marcus Burnett and Mike Lowrey of the Miami Narcotics Task Force reunite, and 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 Marcus discovers that playboy Mike is secretly romancing Marcusâ�� sexy sister.’,38.068736,’2003-07-18′,273339556,147,’Released’,’If you can\’t stand the heat, get out of Miami.’,6.30,1564),(8963,’Crimson Tide’,53000000,”,’On a US nuclear missile sub, a young first officer stages a mutiny to prevent his trigger happy captain from launching his missiles before confirming his orders to do so.’,20.334629,’1995-05-12′,157387195,116,’Released’,’Danger runs deep.’,7.00,498),(8966,’Twilight’,37000000,’http://www.twilightthemovie.com’,’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.’,127.084938,’2008-11-20′,392616625,122,’Released’,’When you can live forever, what do you live for?’,5.80,3561),(8967,’The Tree of Life’,32000000,’http://www.twowaysthroughlife.com/’,’The impressionistic story of a Texas family in the 1950s. The film follows the life journey of the eldest son, Jack, through the innocence of childhood to his disillusioned adult years as he tries to reconcile a complicated relationship with his father. Jack finds himself a lost soul in the modern world, seeking answers to the origins and meaning of life while questioning the existence of faith.’,43.862456,’2011-05-18′,54674226,139,’Released’,’Nothing stands still.’,6.50,987),(8968,’Boogeyman’,20000000,’http://www.uip.de/lo/goodies/posters/pl_boogeyman.html’,’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?’,11.624230,’2005-02-04′,67192859,89,’Released’,’You thought it was just a story.’,4.60,191),(8970,’The Out-of-Towners’,75000000,”,’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.’,4.842626,’1999-04-02′,29000000,90,’Released’,’They fell in love 24 years ago… and in the next 24 hours, they\’ll remember why.’,5.00,45),(8975,’The Marine’,20000000,”,’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.’,7.679336,’2006-10-13′,22165608,92,’Released’,’War is Fine But The Fight Continues’,5.00,163),(8976,’A Lot Like Love’,30000000,”,’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?’,19.212552,’2005-04-22′,42886719,107,’Released’,’There\’s nothing better than a great romance… to ruin a perfectly good friendship.’,6.50,318),(8978,’Assault on Precinct 13′,30000000,”,’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.’,18.706504,’2005-01-19′,35294470,109,’Released’,’Unite and fight.’,6.00,311),(8981,’Dear Frankie’,0,”,’Nine-year-old Frankie and his single mum Lizzie have been on the move ever since Frankie can remember, most recently arriving in a seaside Scottish town. Wanting to protect her deaf son from the truth that they\’ve run away from his father, Lizzie has invented a story that he is away at sea on the HMS Accra. Every few weeks, Lizzie writes Frankie a make-believe letter from his father, telling of his adventures in exotic lands. As Frankie tracks the ship\’s progress around the globe, he discovers that it is due to dock in his hometown. With the real HMS Accra arriving in only a fortnight, Lizzie must choose between telling Frankie the truth or finding the perfect stranger to play Frankie\’s father for just one day…’,3.113190,’2004-05-18′,0,105,’Released’,”,7.00,46),(8982,’à¸�à¹�มยำà¸�ุà¹�à¸�’,6000000,”,’In Bangkok, the young Kham was raised by his father in the jungle with elephants as members of their family. When his old elephant and the baby Kern are stolen by criminals, Kham finds that the animals were sent to Sidney. He travels to Australia, where he locates the baby elephant in a restaurant owned by the evil Madame Rose, the leader of an international Thai mafia. With the support of the efficient Thai sergeant Mark, who was involved in a conspiracy, Kham fights to rescue the animal from the mobsters.’,11.818320,’2005-08-11′,27165581,108,’Released’,’Vengeance Knows No Mercy’,6.80,167),(8984,’Disclosure’,55000000,”,’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.’,15.064058,’1994-12-09′,214015089,123,’Released’,’Sex Is Power.’,5.90,210),(8987,’The River Wild’,45000000,”,’While on a family vacation, rafting expert Gail takes on a pair of armed killers while navigating a spectacularly violent river.’,12.362876,’1994-09-30′,0,111,’Released’,’The vacation is over’,6.10,210),(8988,’Stop-Loss’,25000000,’http://www.stoplossmovie.com/’,’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.’,4.002579,’2008-03-28′,11207130,113,’Released’,’The bravest place to stand is by each other\’s side.’,6.10,82),(8998,’Friends with Money’,6500000,”,’After she quits her lucrative job, Olivia finds herself unsure about her future and her relationships with her successful and wealthy friends.’,11.885221,’2006-09-07′,13368437,88,’Released’,”,5.10,128),(8999,’Derailed’,22000000,’http://weinsteinco.com/films/derailed/’,’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.’,17.709100,’2005-11-11′,57479076,108,’Released’,’He never saw it coming.’,6.10,319),(9003,’Hellraiser’,1000000,”,’Larry and his wife, Julia move into an old house and discover a hideous creature – the man\’s half-brother, who is also the woman\’s former lover – hiding upstairs. Having lost his earthly body to a trio of S&M demons, the Cenobites, Frank, is brought back into existence by a drop of blood on the floor. He soon forces his former mistress to bring him his necessary human sacrifices to complete his body… but the Cenobites won\’t be happy about this.’,22.583834,’1987-09-11′,14564027,94,’Released’,’He\’ll tear your soul apart.’,6.90,449),(9007,’Just Like Heaven’,58000000,”,’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.’,13.435730,’2005-09-16′,102854431,95,’Released’,’It\’s a wonderful afterlife.’,6.50,579),(9008,’The Insider’,90000000,”,’Tells the true story of a 60 Minutes television series exposé of the tobacco industry, as seen through the eyes of a real tobacco executive, Jeffrey Wigand’,26.153669,’1999-10-28′,60289912,157,’Released’,’Two men driven to tell the truth… whatever the cost.’,7.30,481),(9009,’Dark Water’,30000000,”,’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.’,14.376463,’2005-06-27′,25473093,105,’Released’,’This Season, The Mystery Of The Darkness Will Consume Your Life’,5.30,274),(9012,’Jackass: The Movie’,5000000,”,’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!!’,14.752587,’2002-10-21′,64282312,87,’Released’,’Do not attempt this at home.’,6.10,345),(9013,’Midnight Run’,30000000,”,’An accountant embezzles $15 million of mob money, jumps bail and is chased by bounty hunters, the FBI, and the Mafia.’,12.821329,’1988-07-20′,38413606,126,’Released’,’This could be the beginning of a beautiful friendship.’,7.20,238),(9016,’Treasure Planet’,140000000,”,’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!’,38.924136,’2002-11-26′,109578115,95,’Released’,’Find your place in the universe.’,7.20,948),(9021,’The Santa Clause 2′,65000000,”,’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.’,14.646884,’2002-10-31′,172855065,104,’Released’,’What\’s Christmas Fun without some Reindeer Games?’,5.50,297),(9022,’All the Boys Love Mandy Lane’,750000,’http://www.mandylane.co.uk’,’Beautiful Mandy Lane isn\’t a party girl but, when classmate Chloe invites the Texas high school student to a bash in the countryside, she reluctantly accepts. After hitching a ride with a vaguely scary older man, the teens arrive at their destination. Partying ensues, and Mandy\’s close pal, Emmet, keeps a watchful eye on the young males making a play for Mandy. Then two of the students are murdered.’,12.284939,’2008-02-15′,0,90,’Released’,’Everyone is dying to be with her. Someone is killing for it.’,5.70,209),(9023,’Spirit: Stallion of the Cimarron’,80000000,”,’As a wild stallion travels across the frontiers of the Old West, he befriends a young human and finds true love with a mare.’,41.670544,’2002-05-24′,122563539,83,’Released’,’Leader. Hero. Legend.’,7.40,831),(9026,’The Importance of Being Earnest’,0,”,’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…’,7.250379,’2002-05-17′,0,97,’Released’,’Everybody Loves Ernest… But Nobody\’s Quite Sure Who He Really Is.’,6.70,127),(9027,’The Guru’,0,”,’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.’,4.093288,’2002-08-21′,0,91,’Released’,’When he talks, women listen.’,5.10,75),(9029,’What Happens in Vegas’,35000000,”,’During a wild vacation in Las Vegas, career woman Joy McNally and playboy Jack Fuller come to the sober realization that they have married each other after a night of drunken abandon. They are then compelled, for legal reasons, to live life as a couple for a limited period of time. At stake is a large amount of money.’,38.100488,’2008-05-07′,170000000,99,’Released’,’Get Lucky’,5.80,923),(9030,’The Eye’,12000000,’http://www.theeyethefilm.com’,’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.’,11.135734,’2008-02-01′,56309766,98,’Released’,’How can you believe your eyes when they\’re not yours?’,5.50,281),(9032,’Big Daddy’,34200000,”,’A lazy law school grad adopts a kid to impress his girlfriend, but everything doesn\’t go as planned and he becomes the unlikely foster father.’,34.868590,’1999-06-25′,234801895,93,’Released’,’Nature called. Look who answered.’,6.10,875),(9034,’The Banger Sisters’,10000000,”,’In the late \’60s, the self-proclaimed belles of the rock \’n\’ roll ball, rocked the worlds of every music legend whose pants they could take off — and they have the pictures to prove it. But it\’s been more than two decades since the Banger Sisters earned their nickname — or even laid eyes on each other. Their reunion is the collision of two women\’s worlds; one who\’s living in the past, and one who\’s hiding from it. Together they learn to live in the moment.’,6.015354,’2002-09-20′,0,98,’Released’,’Some friendships last forever… like it or not.’,5.50,62),(9035,’Slither’,15500000,”,’A small town is taken over by an alien plague, turning residents into zombies and all forms of mutant monsters.’,17.327279,’2006-03-31′,0,95,’Released’,’Horror Has A New Face’,6.30,317),(9036,’Eight Below’,40000000,”,’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.’,24.287306,’2006-02-17′,120455994,120,’Released’,’The Most Amazing Story Of Survival, Friendship, And Adventure Ever Told.’,6.70,542),(9042,’The Cave’,30000000,”,’After a group of biologists discovers a huge network of unexplored caves in Romania and, believing it to be an undisturbed eco-system that has produced a new species, they hire the best American team of underwater cave explorers in the world. While exploring deeper into the underwater caves, a rockslide blocks their exit, and they soon discover a larger carnivorous creature has added them to its food chain.’,10.756266,’2005-08-25′,15007991,97,’Released’,’There are places man was never meant to go.’,5.10,202),(9043,’The Family Stone’,0,”,’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.’,14.190837,’2005-12-14′,0,103,’Released’,’Feel The Love’,6.20,249),(9045,’Amen.’,0,”,’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.’,5.930533,’2002-02-13′,0,132,’Released’,’Two Men Two Worlds One Cause’,7.10,75),(9053,’DOA: Dead or Alive’,21000000,”,’Four beautiful rivals at an invitation-only martial-arts tournament join forces against a sinister threat. Princess Kasumi is an aristocratic warrior trained by martial-arts masters. Tina Armstrong is a wrestling superstar. Helena Douglas is an athlete with a tragic past. Christie Allen earns her keep as a thief and an assassin-for-hire.’,12.790408,’2006-09-07′,480314,87,’Released’,’They\’re the ultimate fighters. They\’ve got the looks. They\’ve got the moves, and the men fall at their feet.’,5.00,205),(9059,’Tales from the Crypt: Demon Knight’,0,”,’A man on the run is hunted by a demon known as the Collector.’,7.710797,’1995-01-13′,0,92,’Released’,’Ready for your deadtime story?’,6.70,94),(9067,’Tank Girl’,25000000,”,’Based on the British cult comic-strip, our tank-riding anti-heroine fights a mega-corporation, which controls the world\’s water supply.’,8.186936,’1995-03-31′,4064495,98,’Released’,’In 2033, justice rides a tank and wears lip gloss.’,5.50,138),(9072,’Little Man’,64000000,’http://www.littleman-movie.com/’,’After leaving the prison, the dwarf criminal Calvin Sims joins to his moron brother Percy to steal an expensive huge diamond in a jewelry for the mobster Walken. They are chased by the police, and Calvin hides the stone in the purse of the executive Vanessa Edwards, whose husband Darryl Edwards wants to have a baby. Percy convinces Calvin to dress like a baby and be left in front of the Edwards\’s house to get inside the house and retrieve the diamond. Darryl and Vanessa keep Calvin for the weekend and decide to adopt him, while Walken threatens Darryl to get the stone back.’,12.421504,’2006-08-31′,101595121,98,’Released’,’Big things come in small packages’,5.30,261),(9074,’The Man’,0,”,’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’,6.925645,’2005-09-08′,12382362,83,’Released’,’One guy walks the walk. The other talks and talks.’,5.40,133),(9075,’Zwartboek’,21000000,”,’In the Nazi-occupied Netherlands during World War II, a Jewish singer infiltrates the regional Gestapo headquarters for the Dutch resistance.’,13.906611,’2006-09-01′,26193068,145,’Released’,’To fight the enemy, she must become one of them.’,7.20,277),(9087,’The American President’,62000000,”,’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.’,11.056763,’1995-11-17′,107879496,106,’Released’,’Why can\’t the most powerful man in the world have the one thing he wants most?’,6.50,195),(9089,’Home for the Holidays’,0,”,’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.’,4.031585,’1995-11-02′,17519169,103,’Released’,’We\’ll do it every year..until we get it right’,6.30,39),(9092,’Snow White: A Tale of Terror’,26000000,”,’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.’,4.810621,’1997-07-18′,0,100,’Released’,’The fairy tale is over.’,6.00,62),(9093,’The Four Feathers’,35000000,”,’The story, set in 1875, follows a British officer (Heath Ledger) who resigns his post when he learns of his regiment\’s plan to ship out to the Sudan for the conflict with the Mahdi. His friends and fiancée send him four white feathers which symbolize cowardice. To redeem his honor he disguises himself as an Arab and secretly saves the lives of those who branded him a coward.’,10.103640,’2002-09-08′,29882645,132,’Released’,’Freedom. Country. Honor. Passion. To save his best friend, one man must risk everything he loves.’,6.50,159),(9095,’Mary Reilly’,47000000,”,’A housemaid falls in love with Dr. Jekyll and his darkly mysterious counterpart, Mr. Hyde.’,6.067212,’1996-02-23′,12379402,104,’Released’,’The untold story of Jekyll and Hyde’,5.70,74),(9096,’Medicine Man’,40000000,”,’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.’,7.021871,’1992-02-07′,0,106,’Released’,’He turned his back on civilization. Only to discover he had the power to save it.’,5.80,114),(9099,’Sgt. Bilko’,0,”,’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.’,5.417787,’1996-03-29′,0,90,’Released’,’All he ever wanted was an honest week\’s pay for an honest day\’s work.’,5.50,94),(9100,’The Craft’,15000000,”,’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.’,19.517239,’1996-05-03′,24769466,101,’Released’,’Welcome to the witching hour.’,6.30,380),(9104,’Buffalo Soldiers’,15000000,”,’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.’,6.329672,’2001-09-08′,0,98,’Released’,’War is hell… but peace is f*#!%!! boring.’,6.50,93),(9208,’Broken Arrow’,50000000,”,’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.’,22.769108,’1996-02-09′,150270147,108,’Released’,’Prepare to Go Ballistic.’,5.70,453),(9257,’S.W.A.T.’,80000000,’http://www.sonypictures.com/homevideo/swat/’,’Hondo Harrelson recruits Jim Street to join an elite unit of the Los Angeles Police Department. Together they seek out more members, including tough Deke Kay and single mom Chris Sanchez. The team\’s first big assignment is to escort crime boss Alex Montel to prison. It seems routine, but when Montel offers a huge reward to anyone who can break him free, criminals of various stripes step up for the prize.’,34.052253,’2003-08-08′,116643346,117,’Released’,’You\’re either S.W.A.T. or you\’re not.’,5.80,770),(9260,’Welcome to Collinwood’,1200000,”,’Five hapless inner-city low-lifes attempt to burgle a pawnbroker\’s safe, but end up being plagued by bad luck.’,3.582733,’2002-05-24′,0,86,’Released’,’Five guys. One safe. No brains.’,6.20,50),(9266,’Blue Crush’,25000000,”,’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…’,11.429430,’2002-08-08′,51842679,104,’Released’,’Three Friends, One Passion, No Limits.’,5.60,159),(9268,’Eraser’,100000000,’http://www.warnerbros.com/eraser’,’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.’,24.507987,’1996-06-21′,242295562,115,’Released’,’He will erase your past to protect your future.’,5.60,543),(9271,’Virtuosity’,30000000,”,’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.’,5.301589,’1995-08-04′,24048000,106,’Released’,’Justice needs a new program.’,5.40,163),(9273,’Ace Ventura: When Nature Calls’,30000000,”,’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.’,34.391792,’1995-11-10′,212385533,90,’Released’,’New animals. New adventures. Same hair.’,6.10,1099),(9275,’Death to Smoochy’,55000000,”,’Tells the story of Rainbow Randolph, the corrupt, costumed star of a popular children\’s TV show, who is fired over a bribery scandal and replaced by squeaky-clean Smoochy, a puffy fuscia rhinoceros. As Smoochy catapults to fame – scoring hit ratings and the affections of a network executive – Randolph makes the unsuspecting rhino the target of his numerous outrageous attempts to exact revenge and reclaim his status as America\’s sweetheart.’,11.329727,’2002-03-28′,0,109,’Released’,’Get ready for an unexpected hit.’,5.90,132),(9276,’The Faculty’,15000000,”,’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.’,21.535126,’1998-12-25′,40283321,104,’Released’,’Take me to your teacher.’,6.20,492),(9277,’The Sting’,5500000,”,’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.’,28.500913,’1973-12-25′,159616327,129,’Released’,’…all it takes is a little confidence.’,7.90,622),(9279,’Jingle All the Way’,60000000,”,’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, his son tells Howard that he wants for Christmas is an action figure of his son\’s television hero, he tries hard to to make it up to him. Unfortunately for Howard, it is Christmas Eve, and every store is sold out of Turbo Man, now Howard must travel all over town and compete with everybody else to find a Turbo Man action figure.’,22.501041,’1996-11-15′,129832389,89,’Released’,’Two Dads, One Toy, No Prisoners.’,5.50,575),(9280,’Femme Fatale’,35000000,”,’A woman tries to straighten out her life, even as her past as a con-woman comes back to haunt her.’,9.072780,’2002-11-06′,16838910,114,’Released’,’Nothing is more desirable or more deadly than a woman with a secret.’,6.20,142),(9281,’Witness’,12000000,”,’A sheltered Amish child is the sole witness of a brutal murder in a restroom at a Philadelphia train station, and he must be protected. The assignment falls to a taciturn detective who goes undercover in a Pennsylvania Dutch community. On the farm, he slowly assimilates despite his urban grit and forges a romantic bond with the child\’s beautiful mother.’,19.195399,’1985-02-08′,68706993,113,’Released’,’A big city cop. A small country boy. They have nothing in common… but a murder.’,7.00,375),(9282,’11:14′,6000000,”,’Tells the seemingly random yet vitally connected story of a set of incidents that all converge one evening at 11:14pm. The story follows the chain of events of five different characters and five different storylines that all converge to tell the story of murder and deceit.’,15.048067,’2003-05-16′,0,86,’Released’,’Fate can change in seconds.’,6.80,206),(9285,’Road Trip’,16000000,”,’Four friends take off on an 1800 mile road trip to retrieve an illicit tape mistakenly mailed to a girl friend.’,14.759948,’2000-05-19′,119754278,93,’Released’,’The greatest college tradition of all.’,5.90,542),(9286,’Final Destination 3′,25000000,”,’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.’,31.643410,’2006-02-10′,117719158,93,’Released’,’This Ride Will Be The Death Of You.’,5.80,974),(9288,’Dungeons & Dragons: Wrath of the Dragon God’,0,”,’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.’,4.901936,’2005-01-01′,0,105,’Released’,”,4.80,36),(9289,’The Longest Day’,10000000,”,’The retelling of June 6, 1944, from the perspectives of the Germans, US, British, Canadians, 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\”‘,19.524972,’1962-09-25′,50100000,178,’Released’,’This is the day that changed the world… When history held its breath.’,7.20,234),(9290,’Crocodile Dundee in Los Angeles’,21150000,”,’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’,6.081772,’2001-04-12′,39438674,92,’Released’,’He heard there was wildlife in L.A. He didn\’t know how wild.’,4.70,146),(9291,’The Longest Yard’,82000000,”,’Pro quarter-back, Paul Crewe and former college champion and coach, Nate Scarboro are doing time 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 quite another way.’,26.065735,’2005-05-19′,190320568,113,’Released’,’If you can\’t get out, get even.’,6.20,785),(9292,’Hudson Hawk’,65000000,”,’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.’,16.803457,’1991-05-23′,17218080,100,’Released’,’Danger is his middle name.’,5.40,269),(9294,’Phenomenon’,32000000,”,’An ordinary man sees a bright light descend from the sky, and discovers he now has super-intelligence and telekinesis.’,15.039407,’1996-07-05′,152036382,123,’Released’,’Some things in life just can\’t be explained.’,6.20,323),(9297,’Monster House’,75000000,’http://www.sonypictures.com/movies/monsterhouse/’,’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.’,36.368839,’2006-07-21′,140175006,91,’Released’,’The House is . . . ALIVE!’,6.30,874),(9302,’Up Close & Personal’,60000000,”,’Tally Atwater 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 is a brilliant, hard edged, veteran newsman. He sees Tally has talent and becomes her mentor. Tallyâ��s 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 that brings them together, also threatens to drive them apart…’,4.801849,’1996-03-01′,0,119,’Released’,’Every Day we Have, is One More Than We Deserve.’,5.90,50),(9303,’Bound’,4500000,”,’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.’,15.359952,’1996-09-13′,7011317,108,’Released’,’In their world, you can\’t buy freedom, but you can steal it.’,6.90,198),(9304,’Multiplicity’,45000000,”,’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 Doug a rather unusual solution to his problems: cloning.’,11.120344,’1996-07-19′,0,117,’Released’,’Sometimes to get more out of life, you have to make more of yourself.’,5.50,154),(9306,’The Island of Dr. Moreau’,40000000,”,’A shipwrecked sailor stumbles upon a mysterious island and is shocked to discover that a brilliant scientist and his lab assistant have found a way to combine human and animal DNA with horrific results.’,13.210898,’1996-08-23′,49627779,96,’Released’,’The gates of hell are unlocked.’,4.60,147),(9310,’American Dreamz’,17000000,”,’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.’,7.864011,’2006-03-04′,7314027,107,’Released’,’Imagine a country where more people vote for a pop idol than they do for their next President.’,4.90,95),(9311,’Smilla\’s Sense of Snow’,35000000,”,’Smilla Jaspersen, half Danish, half Greenlander, attempts to understand the death of a small boy who falls from the roof of her apartment building. Suspecting wrongdoing, Smilla uncovers a trail of clues leading towards a secretive corporation that has made several mysterious expeditions to Greenland. Scenes from the film were shot in Copenhagen and western Greenland. The film was entered into the 47th Berlin International Film Festival, where director Bille August was nominated for the Golden Bear.’,5.419181,’1997-02-13′,0,121,’Released’,’Some Tracks Should Never Be Uncovered.’,6.60,60),(9312,’Mortal Kombat’,18000000,”,’For nine generations an evil sorcerer has been victorious in hand-to-hand battle against his mortal enemies. If he wins a tenth Mortal Kombat tournament, desolation and evil will reign over the multiverse forever. To save Earth, three warriors must overcome seemingly insurmountable odds, their own inner demons, and superhuman foes in this action/adventure movie based on one of the most popular video games of all time.’,16.470895,’1995-08-18′,122195920,101,’Released’,’Nothing In This World Has Prepared You For This.’,5.40,442),(9313,’The Man in the Iron Mask’,0,”,’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.’,28.980270,’1998-03-12′,0,132,’Released’,’For the honor of a king. And the destiny of a country. All for one.’,6.30,1018),(9315,’Flightplan’,55000000,”,’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.’,32.051450,’2005-09-22′,223387299,98,’Released’,’If Someone Took Everything You Live For… How Far Would You Go To Get It Back?’,6.10,772),(9327,’The Nutty Professor’,54000000,”,’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.’,20.281190,’1996-06-26′,128769345,95,’Released’,’Inside Sherman Klump, a party animal is about to break out.’,5.40,702),(9331,’Clear and Present Danger’,62000000,”,’CIA Analyst Jack Ryan is drawn into an illegal war fought by the US government against a Colombian drug cartel.’,18.832471,’1994-08-03′,215887717,141,’Released’,’The war of drugs would lead him to the war of power.’,6.40,386),(9334,’The Scorpion King’,60000000,’http://www.the-scorpion-king.com/’,’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.’,37.537093,’2002-04-16′,165333180,92,’Released’,’Warrior. Legend. King.’,5.30,779),(9335,’Transporter 2′,32000000,”,’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.’,47.561200,’2005-08-02′,85167639,87,’Released’,’The Best In The Business Is Back In The Game.’,6.20,1061),(9336,’Police Academy’,4500000,”,’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 realises that he is enjoying being a police cadet and decides he wants to stay… while Harris decides he wants Mahoney out!’,15.002502,’1984-03-22′,146198896,96,’Released’,’What an Institution!’,6.50,602),(9339,’Click’,82500000,”,’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.’,41.176631,’2006-06-22′,237681299,107,’Released’,’What If You Had A Remote… That Controlled Your Universe?’,6.00,2104),(9341,’The Core’,60000000,”,’Geophysicist Dr. Josh Keyes discovers that an unknown force has caused the earth\’s inner core to stop rotating. With the planet\’s magnetic field rapidly deteriorating, our atmosphere literally starts to come apart at the seams with catastrophic consequences. To resolve the crisis, Keyes, along with a team of the world\’s most gifted scientists, travel into the earth\’s core. Their mission: detonate a device that will reactivate the core.’,29.211255,’2003-03-28′,74208267,136,’Released’,’Earth has a deadline.’,5.40,516),(9342,’The Mask of Zorro’,95000000,”,’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.’,31.086791,’1998-07-16′,250288523,136,’Released’,’No one has seen his face… but everyone … knows this mark.’,6.30,1183),(9344,’Kids’,1500000,”,’A controversial portrayal of teens in New York City which exposes a deeply disturbing world of sex and substance abuse. The film focuses on a sexually reckless, freckle-faced boy named Telly, whose goal is to have sex with as many different girls as he can. When Jenny, a girl who has had sex only once, tests positive for HIV, she knows she contracted the disease from Telly. When Jenny discovers that Telly\’s idea of \”safe sex\” is to only have sex with virgins, and is continuing to pass the disease onto other unsuspecting girls, Jenny makes it her business to try to stop him.’,13.291991,’1995-07-28′,7412216,91,’Released’,”,6.80,279),(9348,’Species’,35000000,”,’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.’,23.607071,’1995-07-07′,113374103,108,’Released’,’Our time is up.’,5.50,453),(9350,’Cliffhanger’,70000000,”,’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 who are looking for boxes full of money.’,26.199090,’1993-05-28′,255000211,112,’Released’,’The height of adventure.’,6.10,588),(9352,’EuroTrip’,25000000,”,’When Scott learns that his longtime cyber-buddy from Berlin is a gorgeous young woman, he and his friends embark on a trip across Europe.’,25.848003,’2004-02-20′,20796847,93,’Released’,’No actual Europeans were harmed in the making of this film.’,6.50,656),(9353,’Nacho Libre’,32000000,’http://www.nacholibre.com/’,’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.’,14.642055,’2006-06-16′,80197993,92,’Released’,’He\’s not lean. He\’s not mean. He\’s nacho average hero.’,5.60,359),(9355,’Mad Max Beyond Thunderdome’,12305523,”,’Mad Max becomes a pawn in a decadent oasis of a technological society, and when exiled, becomes the deliverer of a colony of children.’,36.582038,’1985-06-29′,36230219,107,’Released’,’Two men enter. One man leaves.’,5.90,748),(9357,’One Hour Photo’,12000000,”,’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!\”‘,20.624896,’2002-08-21′,52223306,96,’Released’,’The things that we fear the most have already happened to us…’,6.60,435),(9358,’Final Destination 2′,26000000,”,’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.’,37.355826,’2003-01-31′,90426405,90,’Released’,’Death is like a boomerang. it keeps coming back’,5.90,1023),(9360,’Anaconda’,45000000,”,’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.’,27.684779,’1997-04-11′,136885767,89,’Released’,’When You Can\’t Breathe You Can\’t Scream.’,4.70,610),(9361,’The Last of the Mohicans’,40000000,”,’As the English and French soldiers battle for control of the 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 reluctantly saved by Hawkeye, an orphaned settler adopted by the last of the Mohicans.’,37.776566,’1992-09-25′,75505856,112,’Released’,’The first American hero.’,7.10,732),(9362,’Tremors’,11000000,”,’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 an 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.’,32.579697,’1990-01-19′,48572000,96,’Released’,’The monster movie that breaks new ground.’,6.60,864),(9366,’Donnie Brasco’,35000000,”,’An FBI undercover agent infilitrates the mob and finds himself identifying more with the mafia life at the expense of his regular one.’,40.370442,’1997-02-27′,41954997,127,’Released’,’Based on a true story.’,7.40,1147),(9367,’El Mariachi’,220000,”,’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.’,14.269792,’1992-09-04′,2040920,81,’Released’,’He didn\’t come looking for trouble, but trouble came looking for him.’,6.60,238),(9372,’Super Size Me’,65000,”,’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.’,10.400603,’2004-01-17′,28575078,100,’Released’,’The first ever reality-based movie … everything begins and ends in 30 days!’,6.60,506),(9374,’Death Becomes Her’,55000000,”,’Madeline is married to Ernest, who was once arch-rival Helen\’s fiance. After recovering from a mental breakdown, Helen vows to kill Madeline and steal back Ernest. Unfortunately for everyone, the introduction of a magic potion causes things to be a great deal more complicated than a mere murder plot.’,29.498304,’1992-07-30′,149022650,104,’Released’,’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.’,6.30,636),(9378,’Thir13en Ghosts’,0,”,’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 \”designed by the devil and powered by the dead\” to open the Eye of Hell. Aided by Dennis, a ghost hunter, and his rival Kalina, a ghost rights activist out to set the ghosts free, the group must do what they can to get out of the house alive.’,20.392858,’2001-10-26′,0,91,’Released’,’There are ghosts around us all the time. Most of them don\’t want to hurt us. But, there are exceptions…’,5.40,440),(9381,’Babylon A.D.’,70000000,’http://www.babylonadmovie.com/’,’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.’,27.568194,’2008-08-20′,72108608,101,’Released’,’Kill or be Killed.’,5.40,676),(9383,’Hollow Man’,95000000,”,’Cocky researcher, Sebastian Caine is working on a project to make living creatures invisible and he\’s so confident he\’s found the right formula that he tests it on himself and soon begins to vanish. The only problem is â�� no-one can determine how to make him visible again. Caine\’s predicament eventually drives him mad, with terrifying results.’,28.200874,’2000-08-04′,190213455,112,’Released’,’What would you do if you knew you couldn\’t be seen?’,5.60,634),(9384,’Starsky & Hutch’,60000000,”,’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.’,28.848842,’2004-03-05′,170268750,101,’Released’,’They\’re the man.’,5.60,644),(9387,’Conan the Barbarian’,20000000,”,’A film adaptation of the classic sword and sorcery hero, Conan the Barbarian. A horde of rampaging warriors massacre the parents of young Conan and enslave the young child for years on The Wheel of Pain. As the sole survivor of the childhood massacre, Conan is released from slavery and taught the ancient arts of fighting. Transforming himself into a killing machine, Conan travels into the wilderness to seek vengeance on Thulsa Doom, the man responsible for killing his family. In the wilderness, Conan takes up with the thieves Valeria and Subotai. The group comes upon King Osric, who wants the trio of warriors to help rescue his daughter who has joined Doom in the hills.’,31.802807,’1982-04-02′,79114085,129,’Released’,’Thief. Warrior. Gladiator. King.’,6.60,650),(9388,’Thank You for Smoking’,6500000,”,’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 industry has killed more people. Nick\’s greatest enemy is Vermont\’s Senator Ortolan Finistirre, who defends in the Senate the use a skull and crossed bones in the cigarette packs. Nick\’s son Joey Naylor lives with his mother, and has the chance to know his father in a business trip. When the ambitious reporter Heather Holloway betrays Nick disclosing confidences he had in bed with her, his life turns upside-down. But Nick is good in what he does for the mortgage.’,29.011530,’2005-09-05′,24793509,92,’Released’,’Tobacco lobbyist Nick Naylor is trying to SAVE YOUR ASH!’,7.10,664),(9389,’Renaissance’,18000000,”,’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.’,9.244181,’2006-03-16′,1831348,105,’Released’,’Paris 2054. Live forever or die trying’,6.70,77),(9390,’Jerry Maguire’,50000000,”,’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.’,27.039636,’1996-12-06′,273552592,139,’Released’,’Everybody loved him… Everybody disappeared.’,6.70,913),(9392,’The Descent’,0,”,’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.’,23.413188,’2005-07-08′,0,99,’Released’,’Scream your last breath.’,6.80,1005),(9396,’Crocodile Dundee II’,0,”,’Australian outback expert protects his New York love from gangsters who\’ve followed her down under.’,15.474831,’1988-05-19′,239606210,110,’Released’,’The world\’s favourite adventurer is back for more! much more!’,5.50,303),(9398,’Zoolander’,28000000,”,’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.’,38.095800,’2001-09-28′,60780981,89,’Released’,’3% Body Fat. 1% Brain Activity.’,6.10,1337),(9400,’Set It Off’,9000000,’http://www.newline.com/properties/setitoff.html’,’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.’,6.717994,’1996-11-06′,41590886,118,’Released’,’It\’s about crime. It\’s about payback. It\’s about survival.’,6.90,66),(9408,’Surf\’s Up’,85000000,’http://www.sonypictures.com/homevideo/surfsup/’,’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 fortune. 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.’,23.230851,’2007-06-08′,149044513,85,’Released’,’In the coldest place on Earth, he\’s the hottest thing around.’,5.90,601),(9414,’The Man Who Knew Too Little’,20000000,”,’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.’,6.397042,’1997-11-14′,13801755,97,’Released’,’Heâ��s on a mission so secret, even he doesnâ��t know about it.’,6.50,125),(9416,’Money Talks’,0,”,’Money Talks is a 1997 American comedy film directed by Brett Ratner. Sought by police and criminals, a small-time huckster makes a deal with a TV newsman for protection.’,7.615653,’1997-08-22′,0,97,’Released’,’This ain\’t no buddy movie.’,5.90,87),(9422,’A Civil Action’,70000000,”,’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.’,10.147321,’1998-03-05′,56702901,115,’Released’,’Justice has its price.’,6.10,109),(9424,’Disturbing Behavior’,15000000,”,’Steve Clark (James Marsden) is a newcomer in the town of Cradle Bay, and he quickly realizes that there\’s something odd about his high school classmates. The clique known as the \”Blue Ribbons\” are the eerie embodiment of academic excellence and clean living. But, like the rest of the town, they\’re a little too perfect. When Steve\’s rebellious friend Gavin (Nick Stahl) mysteriously joins their ranks, Steve searches for the truth with fellow misfit Rachel (Katie Holmes).’,9.378688,’1998-07-24′,17507368,84,’Released’,’In Cradle Bay it doesnâ��t matter if youâ��re not perfect. You will be.’,5.50,104),(9425,’Soldier’,75000000,’http://www.wb-soldier.com/’,’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.’,11.873856,’1998-10-23′,14567883,99,’Released’,’Left for dead on a remote planet for obsolete machines and people, a fallen hero has one last battle to fight’,6.10,221),(9427,’The Full Monty’,3500000,”,’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.’,17.002623,’1997-08-13′,257850122,91,’Released’,’The year\’s most revealing comedy.’,6.80,363),(9428,’The Royal Tenenbaums’,21000000,”,’An estranged family of former child prodigies reunites when their father announces he has a terminal illness.’,24.130810,’2001-10-05′,71441250,110,’Released’,’Family isnâ��t a word, itâ��s a sentence.’,7.40,1286),(9429,’A Night at the Roxbury’,17000000,”,’Despite being well into adulthood, brothers Doug and Steve Butabi still live at home and work in the flower shop owned by their dad. They exist only to hit on women at discos, though they\’re routinely unsuccessful until a chance run-in with Richard Grieco gets them inside the swank Roxbury club. Mistaken for high rollers, they meet their dream women, Vivica and Cambi, and resolve to open a club of their own.’,12.709227,’1998-10-01′,30331165,81,’Released’,’Score!’,5.90,198),(9430,’Go’,6500000,”,’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.’,11.142389,’1999-04-09′,28451622,98,’Released’,’A weekend wasted is never a wasted weekend.’,7.00,196),(9433,’The Edge’,0,”,’The plane carrying wealthy Charles Morse crashes down in the Alaskan wilderness. Together with the two other passengers, photographer Robert and assistant Stephen, Charles devises a plan to help them reach civilization. However, his biggest obstacle might not be the elements, or even the Kodiak bear stalking them — it could be Robert, whom Charles suspects is having an affair with his wife and would not mind seeing him dead.’,20.632673,’1997-09-06′,43312294,117,’Released’,’They were fighting over a woman when the plane went down. Now, their only chance for survival is each other.’,6.70,349),(9434,’Grosse Pointe Blank’,0,”,’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.’,13.817269,’1997-04-11′,28084357,107,’Released’,’Even a hit man deserves a second shot.’,6.90,275),(9437,’Kiss the Girls’,27000000,”,’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.’,18.913000,’1997-10-03′,60527873,115,’Released’,’Smart Girls. Pretty Girls. Missing Girls.’,6.20,345),(9440,’Primary Colors’,65000000,”,’In this adaptation of the best-selling roman à clef about Bill Clinton\’s 1992 run for the White House, the young and gifted Henry Burton is tapped to oversee the presidential campaign of Governor Jack Stanton. Burton is pulled into the politician\’s colorful world and looks on as Stanton — who has a wandering eye that could be his downfall — contends with his ambitious wife, Susan, and an outspoken adviser, Richard Jemmons.’,9.110247,’1998-03-20′,0,143,’Released’,’What went down on the way to the top.’,6.10,94),(9441,’Stepmom’,0,”,’Jackie is a divorced mother of two. Isabel is the career minded girlfriend of Jackieâ��s ex-husband Luke, 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.’,16.368283,’1998-12-25′,0,124,’Released’,’Be there for the joy. Be there for the tears. Be there for each other.’,6.90,277),(9443,’Chariots of Fire’,5500000,”,’The true story of British athletes preparing for and competing in the 1924 Summer Olympics.’,10.439971,’1981-05-15′,58972904,123,’Released’,’This is the story of two men who run, not to run, but to prove something to the world. They will sacrifice anything to achieve their goals… except their honor.’,6.80,207),(9444,’Anastasia’,53000000,”,’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.’,45.565918,’1997-11-20′,139804348,94,’Released’,’Discover the Adventure Behind the Greatest Mystery of Our Time.’,7.40,1432),(9447,’Babe: Pig in the City’,90000000,”,’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.’,11.356079,’1998-11-25′,69131860,92,’Released’,’This little pig went to the city…’,5.20,305),(9448,’The Big Hit’,13000000,”,’Affable hit man Melvin Smiley is constantly being scammed by his cutthroat colleagues in the life-ending business. So, when he and his fellow assassins kidnap the daughter of an electronics mogul, it\’s naturally Melvin who takes the fall when their prime score turns sour. That\’s because the girl is the goddaughter of the gang\’s ruthless crime boss. But, even while dodging bullets, Melvin has to keep his real job secret from his unsuspecting fiancée, Pam.’,6.425528,’1998-04-24′,27007143,91,’Released’,’Nothing\’s more dangerous than some nice guys… with a little time to kill.’,6.10,109),(9449,’The Borrowers’,29000000,”,’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.’,10.364582,’1997-12-05′,0,86,’Released’,’Little People. Big Trouble. Lots of fun.’,5.80,135),(9451,’Election’,0,”,’A high school teacher\’s personal life becomes complicated as he works with students during the school elections.’,13.476596,’1999-04-23′,0,99,’Released’,’Reading. Writing. Revenge.’,6.70,270),(9452,’Bulworth’,30000000,”,’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.’,4.523630,’1998-05-15′,29202884,108,’Released’,’Brace yourself. This politician is about to tell the truth!’,6.30,66),(9454,’EverAfter’,26000000,”,’A unique 16th century woman, Danielle possesses a love of books, and can easily quote from Sir Thomas Moreâ��s 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.’,21.988861,’1998-07-31′,65705772,121,’Released’,’Desire. Defy. Escape.’,6.80,399),(9455,’The Corruptor’,25000000,”,’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.’,4.068107,’1999-03-12′,15156200,110,’Released’,’You can\’t play by the rules if there aren\’t any.’,6.00,57),(9457,’Deep Rising’,45000000,”,’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.’,6.513856,’1998-01-30′,11203026,106,’Released’,’Full Scream Ahead’,6.00,154),(9459,’Woodstock’,600000,”,’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.’,3.409764,’1970-03-26′,34505110,225,’Released’,’3 days of peace, music…and love.’,7.10,66),(9464,’Buffalo \’66’,1500000,”,’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.’,10.009994,’1998-01-20′,2375097,110,’Released’,’Billy Brown just got out of jail. Now he\’s going to serve some real time. He\’s going home.’,7.10,166),(9466,’Celebrity’,0,”,’The career and personal life of writer Lee are at a standstill, so he divorces his bashful wife, Robin, and dives into a new job as an entertainment journalist. His assignments take him to the swankiest corners of Manhattan, but as he jumps from one lavish party to another and engages in numerous empty romances, he starts to doubt the worth of his work. Meanwhile, top TV producer Tony falls for Robin and introduces her to the world of celebrity.’,7.594593,’1998-09-07′,0,113,’Released’,’A funny look at people who will do anything to get famous… or stay famous.’,6.00,111),(9469,’He Got Game’,25000000,”,’A basketball player\’s father must try to convince him to go to a college so he can get a shorter sentence.’,10.232599,’1998-05-01′,21567853,136,’Released’,’The father, the son and the holy game.’,6.70,134),(9470,’å��夫’,20000000,”,’Set in Canton, China in the 1940s, the story revolves in a town ruled by the Axe Gang, Sing who desperately wants to become a member. He stumbles into a slum ruled by eccentric landlords who turns out to be the greatest kung-fu masters in disguise. Sing\’s actions eventually cause the Axe Gang and the slumlords to engage in an explosive kung-fu battle. Only one side will win and only one hero will emerge as the greatest kung-fu master of all.’,13.658985,’2004-02-10′,100914445,99,’Released’,’So many gangsters…so little time.’,7.20,831),(9471,’Charlie\’s Angels: Full Throttle’,120000000,”,’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.’,33.616115,’2003-06-27′,259175788,106,’Released’,’This summer the Angels are back.’,5.20,914),(9472,’DodgeBall: A True Underdog Story’,20000000,”,’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.’,41.156217,’2004-06-18′,167722310,92,’Released’,’Grab Life By The Ball’,6.20,981),(9473,’South Park: Bigger, Longer & Uncut’,21000000,”,’When the four boys see an R-rated movie featuring Canadians Terrance and Philip, they are pronounced \”corrupted\”, and their parents pressure the United States to wage war against Canada.’,27.197799,’1999-06-30′,0,81,’Released’,’UH-OH.’,7.10,893),(9476,’A Knight\’s Tale’,65000000,”,’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.’,36.670399,’2001-05-11′,117487473,132,’Released’,’He Will Rock You’,6.60,907),(9481,’The Bone Collector’,73000000,”,’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.’,33.884459,’1999-11-04′,151493655,118,’Released’,’Serial killer vs. forensic genius’,6.50,826),(9486,’Johnny English’,40000000,”,’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.’,28.029015,’2003-04-06′,160583018,88,’Released’,’He knows no fear, he knows no danger, he knows nothing.’,6.00,852),(9487,’A Bug\’s Life’,120000000,’http://movies.disney.com/a-bugs-life’,’On behalf of \”oppressed bugs everywhere,\” an inventive ant named Flik hires a troupe of warrior bugs to defend his bustling colony from a horde of freeloading grasshoppers led by the evil-minded Hopper.’,87.350802,’1998-11-25′,363258859,95,’Released’,’An epic presentation of miniature proportions.’,6.80,2303),(9488,’Spy Kids 2: The Island of Lost Dreams’,38000000,”,’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.’,24.085144,’2002-08-07′,119723358,100,’Released’,’Little Spies. Big Attitudes’,5.30,521),(9489,’You\’ve Got Mail’,65000000,’http://youvegotmail.warnerbros.com’,’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 putting her out of business.’,28.540267,’1998-12-17′,250821495,119,’Released’,’Someone you pass on the street may already be the love of your life.’,6.30,838),(9490,’Half Baked’,8000000,”,’Three lovable party buds try to bail their friend out of jail. But just when the guys have mastered a plan, everything comes dangerously close to going up in smoke.’,7.894489,’1998-01-16′,17460020,82,’Released’,’They\’ll do anything to save their best bud.’,6.40,177),(9493,’Twins’,15000000,”,’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.’,17.638286,’1988-12-09′,216614388,107,’Released’,’Only their mother can tell them apart.’,5.70,559),(9495,’The Crow’,15000000,”,’Exactly one year after young rock guitarist Eric Draven and his fiancée are brutally killed by a ruthless gang of criminals, Draven — watched over by a hypnotic crow — returns from the grave to exact revenge.’,44.690107,’1994-05-11′,94000000,102,’Released’,’Real love is forever.’,7.30,953),(9502,’Kung Fu Panda’,130000000,’http://www.kungfupanda.com/’,’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.’,84.689648,’2008-06-04′,631744560,90,’Released’,’Prepare for awesomeness.’,6.90,3145),(9504,’Glengarry Glen Ross’,12500000,”,’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.’,13.939054,’1992-09-15′,10725228,100,’Released’,’Lie. Cheat. Steal. All in a dayâ��s work.’,7.50,323),(9509,’Man on Fire’,70000000,”,’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.’,45.299089,’2004-04-23′,130293714,146,’Released’,’Creasy\’s art is death, and he is about to paint his masterpiece.’,7.30,1553),(9513,’Garfield: A Tail of Two Kitties’,0,”,’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.’,16.930969,’2006-06-15′,141702264,78,’Released’,’The Ego has landed.’,5.10,464),(9515,’The Matador’,10000000,”,’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 â�¦ once he gets acclimated to it.’,5.647538,’2005-05-12′,17297244,96,’Released’,’A hitman and a salesman walk into a bar…’,6.20,136),(9516,’Menace II Society’,3500000,”,’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.’,3.418871,’1993-05-26′,27900000,97,’Released’,’This is the truth. This is what\’s real.’,7.20,173),(9517,’Bully’,0,”,’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.’,6.677093,’2001-06-15′,480811,113,’Released’,’It\’s 4 a.m… do you know where your kids are?’,6.70,125),(9526,’A Prairie Home Companion’,10000000,”,’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’,5.025446,’2006-06-09′,0,105,’Released’,’Radio Like You\’ve Never Seen It Before’,6.40,81),(9531,’Superman III’,39000000,”,’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.’,22.164202,’1983-06-17′,75850624,125,’Released’,’If the world\’s most powerful computer can control even Superman…no one on earth is safe.’,5.30,490),(9532,’Final Destination’,23000000,”,’After a teenager has a terrifying vision of him and his friends dying in a plane crash, he prevents the accident only to have Death hunt them down, one by one.’,38.799596,’2000-03-16′,53302314,98,’Released’,’No accidents. No coincidences. No escapes. You can\’t cheat death.’,6.40,1378),(9533,’Red Dragon’,78000000,”,’Former FBI Agent Will Graham, who was once almost killed by the savage Hannibal \’The Cannibal\’ Lecter, now has no choice but to face him again, as it seems Lecter is the only one who can help Graham track down a new serial killer.’,10.083905,’2002-09-29′,209196298,124,’Released’,’Before the Silence.’,6.70,1115),(9535,’Analyze This’,80000000,”,’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.’,29.415229,’1999-03-05′,176885658,103,’Released’,’New York\’s most powerful gangster is about to get in touch with his feelings. YOU try telling him his 50 minutes are up.’,6.40,503),(9541,’Jersey Girl’,35000000,”,’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.’,14.699342,’2004-03-25′,36098382,102,’Released’,’He wanted it all…but he got more than he bargained for.’,5.80,325),(9543,’Prince of Persia: The Sands of Time’,150000000,’http://disney.go.com/disneypictures/princeofpersia’,’A rogue prince reluctantly joins forces with a mysterious princess and together, they race against dark forces to safeguard an ancient dagger capable of releasing the Sands of Time â�� gift from the gods that can reverse time and allow its possessor to rule the world.’,62.169881,’2010-05-19′,335154643,116,’Released’,’Defy the Future’,6.20,2317),(9544,’FearDotCom’,40000000,”,’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.’,6.756886,’2002-08-09′,18902015,101,’Released’,’The last site you\’ll ever see.’,3.20,105),(9548,’The Adventures of Ford Fairlane’,49000000,”,’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?’,2.808428,’1990-07-11′,20423389,104,’Released’,’Kojak. Columbo. Dirty Harry. Wimps.’,6.20,71),(9549,’The Right Stuff’,27000000,”,’A chronicle of the original Mercury astronauts in the formation of America\’s space program: Alan Shepherd, the first American in space; Gus Grissom, the benighted astronaut for whom nothing works out as planned; John Glenn, the straight-arrow \’boy scout\’ of the bunch who was the first American to orbit the earth; and the remaining pilots: Deke Slayton, Scott Carpenter and Wally Schirra.’,17.567332,’1983-10-20′,21500000,193,’Released’,’How the future began.’,7.30,235),(9550,’å��é�¢å��ä¼�’,0,”,’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.’,21.064082,’2004-05-19′,92863945,119,’Released’,”,7.10,439),(9552,’The Exorcist’,8000000,’http://theexorcist.warnerbros.com/’,’12-year-old Regan MacNeil begins to adapt an explicit new personality as strange events befall the local area of Georgetown. Her mother becomes torn between science and superstition in a desperate bid to save her daughter, and ultimately turns to her last hope: Father Damien Karras, a troubled priest who is struggling with his own faith.’,47.584643,’1973-12-26′,441306145,122,’Released’,’Something almost beyond comprehension is happening to a girl on this street, in this house… and a man has been sent for as a last resort. This man is The Exorcist.’,7.50,2005),(9555,’Rabbit-Proof Fence’,0,”,’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.’,2.128211,’2002-02-04′,0,94,’Released’,’Follow Your Heart, Follow The Fence’,6.80,84),(9557,’Boat Trip’,20000000,”,’Two straight men mistakenly end up on a \”gays only\” cruise.’,7.034752,’2002-10-01′,8586376,94,’Released’,’… once you\’re on, you\’ll want to get off…’,4.70,146),(9562,’Timeline’,80000000,”,’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.’,11.222680,’2003-11-26′,19480739,116,’Released’,’They had to travel into the past to save the future’,5.40,318),(9563,’Any Given Sunday’,55000000,”,’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.’,23.127561,’1999-12-16′,100230832,163,’Released’,’Play or be Played.’,6.80,422),(9566,’The Fan’,55000000,”,’When the San Francisco Giants pay centerfielder Bobby Rayburn $40 million to lead their team to the World Series, no one is happier or more supportive than #1 fan Gil Renard. So when Rayburn becomes mired in the worst slump of his career, the obsessed Renard decides to stop at nothing to help his idol regain his former glory… not even murder.’,4.366488,’1996-08-15′,18626419,116,’Released’,’All fans have a favorite player. This one has a favorite target.’,5.70,194),(9567,’Tears of the Sun’,70000000,”,’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 to retrieve a Doctors Without Borders physician.’,27.055085,’2003-03-07′,85632458,121,’Released’,’He was trained to follow orders. He became a hero by defying them.’,6.40,573),(9570,’The Black Hole’,20000000,”,’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.’,8.265317,’1979-12-18′,35841901,98,’Released’,’A journey that begins where everything ends!’,6.10,131),(9571,’Dazed and Confused’,6900000,”,’The adventures of a group of 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.’,26.181753,’1993-09-24′,7993039,102,’Released’,’See it with a bud.’,7.40,583),(9573,’Blood Work’,50000000,”,’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.’,10.089065,’2002-08-04′,26199517,110,’Released’,’He\’s a heartbeat away from catching the killer’,6.10,206),(9574,’Flubber’,80000000,”,’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.’,11.503960,’1997-11-26′,177977226,93,’Released’,’Catch it if you can!’,5.30,695),(9576,’Tootsie’,21000000,”,’Michael Dorsey is an unemployed actor with an impossible reputation. In order to find work and fund his friend\’s play he dresses as a woman, Dorothy Michaels, and lands the part in a daytime drama. Dorsey loses himself in this woman role and essentially becomes Dorothy Michaels, captivating women all around the city and inspiring them to break free from the control of men and become more like Dorsey\’s initial identity. This newfound role, however, lands Dorsey in a hot spot between a female friend/\’lover,\’ a female co-star he falls in love with, that co-star\’s father who falls in love with him, and a male co-star who yearns for his affection.’,20.818567,’1982-12-16′,177200000,116,’Released’,’What do you get when you cross a hopelessly straight starving actor with a dynamite red sequined dress? You get America\’s hottest new actress.’,6.90,421),(9582,’A Guy Thing’,20000000,”,’Paul Morse is a good guy. When his friends throw him a wild bachelor party, he just wants to keep his conscience clean — which is why he\’s shocked when he wakes up in bed with a beautiful girl named Becky and can\’t remember the night before. Desperate to keep his fiancée, Karen, from finding out what may or may not be the truth, he tells her a teensy lie. Soon his lies are spiraling out of control and his life is a series of comical misunderstandings.’,5.596835,’2003-01-17′,17432163,101,’Released’,’Boy meets girl. Boy meets girl\’s cousin.’,5.30,83),(9583,’Divine Secrets of the Ya-Ya Sisterhood’,27000000,”,’A mother and daughter dispute is resolved by the \”Yaya sisterhood\” – long time friends of the mother.’,5.576937,’2002-06-07′,0,116,’Released’,’The Secret Is Out.’,5.60,65),(9587,’Little Women’,18000000,”,’With their father away as a chaplain in the Civil War, Jo, 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.’,16.418639,’1994-12-21′,0,115,’Released’,’The story that has lived in our hearts for generations, now comes to the screen for the holidays.’,7.00,215),(9588,’Quigley Down Under’,0,”,’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.’,11.360997,’1990-10-17′,0,119,’Released’,’There\’s a price on his head. A girl on his mind. And a twinkle in his eye.’,6.50,119),(9591,’That Thing You Do!’,0,”,’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.’,14.885388,’1996-10-04′,34585416,108,’Released’,’In every life there comes a time when that dream you dream becomes that thing you do.’,6.80,225),(9593,’Last Action Hero’,85000000,”,’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.’,32.044191,’1993-06-18′,137298489,130,’Released’,’This isn\’t the movies anymore.’,6.10,712),(9594,’Double Impact’,15000000,”,’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.’,10.484642,’1991-08-10′,30102717,110,’Released’,’Two brothers separated by the violence. Now together in a mission of revenge.’,5.30,215),(9598,’Babe’,30000000,”,’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.’,34.366450,’1995-07-18′,254134910,89,’Released’,’A little pig goes a long way.’,6.00,733),(9600,’Big Momma\’s House’,30000000,”,’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.’,24.389194,’2000-05-31′,173959438,98,’Released’,’This FBI agent is going undercover… and he\’s concealing more than a weapon.’,5.60,506),(9603,’Clueless’,12000000,”,’Shallow, rich and socially successful Cher is at the top of her Beverly Hills high school\’s pecking scale. Seeing herself as a matchmaker, Cher first coaxes two teachers into dating each other. Emboldened by her success, she decides to give hopelessly klutzy new student Tai a makeover. When Tai becomes more popular than she is, Cher realizes that her disapproving ex-stepbrother was right about how misguided she was — and falls for him.’,16.051328,’1995-07-19′,0,97,’Released’,’Sex. Clothes. Popularity. Is there a problem here?’,6.90,803),(9607,’Super Mario Bros.’,48000000,”,’Mario and Luigi, plumbers from Brooklyn, find themselves in an alternate universe where evolved dinosaurs live in hi-tech squalor. They\’re the only hope to save our universe from invasion by the dino dictator, Koopa.’,14.587367,’1993-05-28′,20915465,104,’Released’,’This Ain\’t No Game.’,4.00,232),(9610,’Conan the Destroyer’,18000000,”,’Based on a character created by Robert E. Howard, this fast-paced, occasionally humorous sequel to Conan the Barbarian features the hero (Arnold Schwarzenegger) as he is commissioned by the evil queen Taramis (Sarah Douglas) to safely escort a teen princess (Olivia D\’Abo) and her powerful bodyguard (Wilt Chamberlain) to a far away castle to retrieve the magic Horn of Dagon. Unknown to Conan, the queen plans to sacrifice the princess when she returns and inherit her kingdom after the bodyguard kills Conan. The queen\’s plans fail to take into consideration Conan\’s strength and cunning and the abilities of his sidekicks: the eccentric wizard Akiro (Mako), the wild woman Zula (Grace Jones), and the inept Malak (Tracey Walter). Together the hero and his allies must defeat both mortal and supernatural foes in this voyage to sword-and-sorcery land.’,18.379124,’1984-06-29′,100000000,103,’Released’,’The most powerful legend of all is back in a new adventure.’,5.80,383),(9613,’Spider’,0,’http://www.spiderthemovie.com/’,’A mentally disturbed man takes residence in a halfway house. His mind gradually slips back into the realm created by his illness, where he replays a key part of his childhood.’,6.948401,’2002-12-13′,0,98,’Released’,’The only thing worse than losing your mind… is finding it again.’,6.40,168),(9614,’Happy Gilmore’,12000000,”,’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.’,26.598884,’1996-02-16′,41205099,92,’Released’,’He doesn\’t play golf… he destroys it.’,6.50,755),(9615,’The Fast and the Furious: Tokyo Drift’,85000000,’http://www.thefastandthefurious3.com/’,’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’,8.282876,’2006-06-03′,158468292,104,’Released’,’On the streets of Tokyo, speed needs no translation…’,6.10,1705),(9616,’The Order’,35000000,”,’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.’,3.746806,’2003-09-05′,11560806,102,’Released’,’Every soul has its price.’,4.80,91),(9618,’Tango & Cash’,55000000,”,’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 Perret.’,22.787667,’1989-12-22′,63408614,104,’Released’,’Two of L.A.\’s top rival cops are going to have to work together… Even if it kills them.’,6.10,458),(9619,’Dante\’s Peak’,116000000,”,’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.’,16.904440,’1997-02-07′,178127760,108,’Released’,’The pressure is building…’,5.70,428),(9620,’Paycheck’,60000000,”,’Michael Jennings is a genius who\’s hired â�� and paid handsomely â�� by high-tech firms to work on highly sensitive projects, after which his short-term memory is erased so he\’s incapable of breaching security. But at the end of a three-year job, he\’s told he isn\’t getting a paycheck and instead receives a mysterious envelope. In it are clues he must piece together to find out why he wasn\’t paid â�� and why he\’s now in hot water.’,29.018826,’2003-12-25′,96269812,119,’Released’,’Remember the future.’,5.90,581),(9621,’Elizabethtown’,57000000,”,’Drew Baylor 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 with whom he falls in love.’,22.894898,’2005-10-06′,52034889,123,’Released’,’It\’s a heck of a place to find yourself’,6.10,327),(9623,’The Juror’,44000000,”,’With his gangster boss on trial for murder, a mob thug known as \”the Teacher\” tells Annie Laird she must talk her fellow jurors into a not-guilty verdict, implying that he\’ll kill her son Oliver if she fails. She manages to do this, but, when it becomes clear that the mobsters might want to silence her for good, she sends Oliver abroad and tries to gather evidence of the plot against her, setting up a final showdown.’,3.937352,’1996-02-02′,0,118,’Released’,’There is no defense.’,5.50,89),(9624,’On Deadly Ground’,50000000,”,’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.’,9.114168,’1994-02-18′,49000000,102,’Released’,’His Battle To Save The Alaskan Wilderness And Protect Its People Can Only Be Won…’,4.50,104),(9625,’The Glimmer Man’,45000000,”,’A former government operative renowned for his stealth, Jack Cole is now a Los Angeles police detective. When a series of horrible murders occurs in the metro area, Cole is assigned to the case, along with tough-talking fellow cop Jim Campbell. Although the two men clash, they gradually become effective partners as they uncover a conspiracy linked to the killings, which also involves terrorism and organized crime.’,6.250282,’1996-10-04′,0,92,’Released’,’Two good cops. One bad situation.’,4.70,100),(9626,’Red Sonja’,17900000,”,’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.’,12.752463,’1985-04-09′,6948633,89,’Released’,’A woman and a warrior that became a legend.’,5.00,206),(9631,’The Negotiator’,50000000,”,’The police try to arrest expert hostage negotiator Danny Roman, who insists he\’s being framed for his partner\’s murder in what he believes is an elaborate conspiracy. Thinking there\’s evidence in the Internal Affairs offices that might clear him, he takes everyone in the office hostage and demands that another well-known negotiator be brought in to handle the situation and secretly investigate the conspiracy.’,28.725621,’1998-07-29′,44547681,140,’Released’,’He frees hostages for a living. Now he\’s taking hostages to survive.’,6.80,582),(9637,’Scooby-Doo’,84000000,”,’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.’,31.435539,’2002-06-14′,275650703,88,’Released’,’Get a Clue’,5.40,820),(9641,’Cheaper by the Dozen 2′,60000000,”,’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,’,18.831023,’2005-12-21′,129181830,94,’Released’,’Same Big Family… Even Bigger Adventure.’,5.70,526),(9644,’National Lampoon\’s Loaded Weapon 1′,0,”,’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.’,12.963328,’1993-02-04′,0,84,’Released’,’See it before they make the sequel!’,5.70,157),(9645,’Ghost Ship’,35000000,”,’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.’,27.724913,’2002-10-25′,68349884,91,’Released’,’Sea Evil’,5.30,531),(9647,’Scrooged’,0,”,’In this modern take on Charles Dickens\’ \”A Christmas Carol,\” Frank Cross (Bill Murray) is a wildly successful television executive whose cold ambition and curmudgeonly nature has driven away the love of his life, Claire Phillips (Karen Allen). But after firing a staff member, Eliot Loudermilk (Bobcat Goldthwait), on Christmas Eve, Frank is visited by a series of ghosts who give him a chance to re-evaluate his actions and right the wrongs of his past.’,21.620317,’1988-11-22′,60328000,101,’Released’,’The spirits will move you in odd and hysterical ways.’,6.70,390),(9654,’The Italian Job’,60000000,’http://www.italianjobmovie.com/’,’Charlie Croker pulled off the crime of a lifetime. The one thing that he didn\’t plan on was being double-crossed. Along with a drop-dead gorgeous safecracker, Croker and his team take off to re-steal the loot and end up in a pulse-pounding, pedal-to-the-metal chase that careens up, down, above and below the streets of Los Angeles.’,62.766854,’2003-05-30′,176070171,110,’Released’,’Get in. Get out. Get even.’,6.60,1919),(9655,’She\’s the Man’,20000000,”,’Viola Johnson is in a real jam. Complications threaten her scheme to pose as her twin brother, Sebastian, and take his place at a new boarding school. She falls in love with her handsome roommate, Duke, who loves beautiful Olivia, who has fallen for Sebastian! As if that were not enough, Viola\’s twin returns from London ahead of schedule but has no idea that his sister has already replaced him on campus.’,10.814390,’2006-03-17′,33889159,105,’Released’,’If you wanna chase your dream, sometimes you gotta break the rules.’,6.40,671),(9656,’Black Christmas’,9000000,”,’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).’,4.134327,’2006-12-25′,21510851,84,’Released’,’This holiday season, the slay ride begins.’,4.80,119),(9659,’Mad Max’,400000,”,’In a dystopian future Australia, a vicious biker gang murders a cop\’s family, and makes his fight with them personal.’,33.142185,’1979-04-12′,100000000,93,’Released’,’The Maximum Force Of The Future’,6.60,1213),(9662,’Les triplettes de Belleville’,8000000,’http://www.sonyclassics.com/triplets/’,’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.’,13.944645,’2003-06-11′,1477676,80,’Released’,”,7.30,231),(9664,’Flyboys’,60000000,”,’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.’,13.155999,’2006-09-22′,17800000,140,’Released’,’Inspired by a true story’,6.30,271),(9665,’Glory’,18000000,”,’Robert Gould Shaw leads the US Civil War\’s first all-black volunteer company, fighting prejudices of both his own Union army and the Confederates.’,16.102271,’1989-12-15′,26828365,122,’Released’,’Their innocence. Their heritage. Their lives.’,7.40,383),(9667,’The Jacket’,29000000,”,’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.’,24.240361,’2005-03-04′,21126225,103,’Released’,’Terror has a new name.’,6.80,455),(9671,’Crocodile Dundee’,5000000,”,’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ïve 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.’,16.072466,’1986-09-26′,328203506,97,’Released’,’There\’s a little of him in all of us.’,6.30,503),(9672,’Infamous’,13000000,”,’While researching his book In Cold Blood, writer Truman Capote develops a close relationship with convicted murderers Dick Hickock and Perry Smith.’,3.680896,’2006-11-16′,1151330,110,’Released’,’There\’s more to the story than you know’,6.40,60),(9675,’Sideways’,16000000,’http://www.foxsearchlight.com/sideways/’,’Two middle-aged men embark on a spiritual journey through Californian wine country. One is an unpublished novelist suffering from depression, and the other is only days away from walking down the aisle.’,23.425431,’2004-10-22′,109502303,126,’Released’,’In search of wine. In search of women. In search of themselves.’,6.90,478),(9676,’The Black Dahlia’,50000000,”,’Lee Blanchard and Bucky Bleichert are former boxers-turned-cops in 1940s Los Angeles and, when an aspiring young actress turns up dead, Blanchard and Bleichert must grapple with corruption, narcissism, stag films and family madness as they pursue the killer.’,15.213484,’2006-09-15′,49111202,121,’Released’,’Inspired by the most notorious unsolved murder in California history.’,5.70,287),(9678,’Little Nicky’,85000000,”,’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.’,18.335992,’2000-11-10′,0,90,’Released’,’He\’s Never Been To Earth. He\’s Never Even Slept Over Some Other Dude\’s House.’,5.20,438),(9679,’Gone in Sixty Seconds’,90000000,”,’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.’,52.995628,’2000-06-09′,237202299,118,’Released’,’Ice Cold, Hot Wired.’,6.10,1485),(9682,’Pulse’,38000000,’http://www.pulsethemovie.net/’,’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.’,9.662715,’2006-08-11′,29907685,90,’Released’,’You are now infected.’,5.00,150),(9683,’Bubble Boy’,0,”,’Jimmy is young man who was born without an immune system and has lived his life within a plastic bubble in his bedroom… who pines for the sweet caresses of girl-next-door Chloe. But when Chloe decides to marry her high school boyfriend, Jimmy — bubble suit and all — treks cross-country to stop her. Swoosie Kurtz, as Jimmy\’s overprotective mom, co-stars along with Fabio, who portrays the leader of a religious cult.’,10.131123,’2001-08-24′,0,84,’Released’,’Life is an adventure. Don\’t blow it.’,5.10,163),(9685,’Igby Goes Down’,9000000,”,’A young man\’s peculiar upbringing renders him unable to competently cope with the struggle of growing up.’,2.062087,’2002-09-13′,4777465,97,’Released’,’Insanity is relative.’,6.50,95),(9686,’New York Stories’,15000000,”,’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.’,6.684096,’1989-03-10′,0,124,’Released’,’One city, three stories tall.’,6.20,64),(9689,’Hollywood Ending’,16000000,”,’Woody Allen stars as Val Waxman, a two-time Oscar winner turned washed-up, neurotic director in desperate need of a comeback. When it comes, Waxman finds himself backed into a corner: Work for his ex-wife Ellie or forfeit his last shot. Is Val blinded by love when he opts for the reconnect? Is love blind when it comes to Ellie\’s staunch support? Literally and figuratively, the proof is the picture.’,8.711782,’2002-05-03′,0,112,’Released’,’It\’s going to be a shot in the dark!’,6.40,113),(9691,’Assassins’,50000000,”,’Assassin Robert Rath arrives at a funeral to kill a prominent mobster, only to witness a rival hired gun complete the job for him — with grisly results. Horrified by the murder of innocent bystanders, Rath decides to take one last job and then return to civilian life. But finding his way out of the world of contract killing grows ever more dangerous as Rath falls for his female target and becomes a marked man himself.’,23.073933,’1995-10-06′,30303072,132,’Released’,’In the shadows of life, In the business of death, One man found a reason to live…’,6.00,387),(9693,’Children of Men’,76000000,’http://www.universalstudiosentertainment.com/children-of-men/’,’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.’,35.387874,’2006-09-22′,69959751,109,’Released’,’The future\’s a thing of the past.’,7.40,2071),(9697,’Lady in the Water’,75000000,”,’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.’,20.219385,’2006-07-21′,42285169,110,’Released’,’Time is running out for a happy ending.’,5.30,409),(9700,’The Lost City’,9600000,”,’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.’,3.588529,’2005-09-03′,4386236,144,’Released’,”,6.00,24),(9701,’North Country’,35000000,’http://northcountrymovie.warnerbros.com/’,’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.’,12.779201,’2005-02-12′,25224242,126,’Released’,’All She Wanted Was To Make A Living. Instead She Made History.’,6.80,125),(9702,’Bound by Honor’,35000000,”,’Based on the true life experiences of poet Jimmy Santiago Baca, the film focuses on half-brothers Paco and Cruz, and their bi-racial cousin Miklo. It opens in 1972, as the three are members of an East L.A. gang known as the \”Vatos Locos\”, and the story focuses on how a violent crime and the influence of narcotics alter their lives. Miklo is incarcerated and sent to San Quentin, where he makes a \”home\” for himself. Cruz becomes an exceptional artist, but a heroin addiction overcomes him with tragic results. Paco becomes a cop and an enemy to his \”carnal\”, Miklo.’,9.122828,’1993-02-05′,0,180,’Released’,’An epic story of three brothers. Bound by blood. Divided by fate. Driven by destiny.’,7.70,115),(9703,’The Last Legion’,67000000,”,’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.’,12.282911,’2007-04-19′,25303038,102,’Released’,’The end of an empire…the beginning of a legend.’,5.00,207),(9705,’Swordfish’,102000000,”,’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.’,36.788745,’2001-06-07′,147080413,99,’Released’,’Log On. Hack In. Go Anywhere. Get Everything.’,6.10,932),(9707,’Bubba Ho-tep’,1000000,”,’Bubba Ho-tep tells the \”true\” story of what really did become of Elvis Presley. We find Elvis 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. He must team up with JFK and fight an ancient Egyptian mummy for the souls of their fellow residents.’,9.954848,’2002-06-09′,0,92,’Released’,’The King vs. The King of the Dead.’,6.70,191),(9709,’My Summer of Love’,0,”,’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.’,3.939753,’2004-08-20′,0,86,’Released’,’The most dangerous thing to want is more.’,6.00,59),(9713,’Holy Man’,60000000,”,’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.’,9.265672,’1998-10-08′,0,114,’Released’,’The Comedy Where Nothing\’s Sacred!’,4.90,111),(9715,’Hope Floats’,0,”,’Birdee Pruitt has been humiliated on live television by her best friend, Connie, who\’s been sleeping with Birdee\’s husband, Bill. Birdee tries starting over with her daughter, Bernice, by returning to her small Texas hometown, but she\’s faced with petty old acquaintances who are thrilled to see Birdee unhappy — except for her friend Justin. As he helps Birdee get back on her feet, love begins to blossom.’,7.922716,’1998-05-29′,0,114,’Released’,’When life fell apart, love fell into place.’,5.80,81),(9716,’Everyone Says I Love You’,20000000,”,’A New York girl sets her father up with a beautiful woman in a shaky marriage while her half sister gets engaged.’,12.379781,’1996-12-06′,0,101,’Released’,”,6.50,147),(9718,’Talladega Nights: The Ballad of Ricky Bobby’,72500000,’http://www.sonypictures.com/homevideo/talladeganights/’,’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.’,12.599836,’2006-08-04′,162966177,116,’Released’,’The story of a man who could only count to #1′,6.20,491),(9725,’Friday the 13th Part 2′,1250000,”,’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.’,16.517777,’1981-05-01′,21722776,87,’Released’,’The body count continues…’,6.00,315),(9726,’A Good Year’,35000000,”,’Failed London banker Max Skinner inherits his uncle\’s vineyard in Provence, where he spent many childhood holidays. Upon his arrival, he meets a woman from California who tells Max she is his long-lost cousin and that the property is hers.’,16.782471,’2006-09-09′,42064105,118,’Released’,’Everything matures… eventually.’,6.50,357),(9728,’Friday the 13th Part III’,4000000,”,’An idyllic summer turns into a nightmare of unspeakable terror for yet another group of naive counselors. Ignoring Camp Crystal Lake\’s bloody legacy, one by one they fall victim to the maniacal Jason who stalks them at every turn.’,14.206525,’1982-08-13′,36690067,95,’Released’,’There\’s nowhere to hide. We dare you to try.’,5.70,254),(9729,’Where the Truth Lies’,25000000,”,’An ambitious reporter probes the reasons behind the sudden split of a 1950s comedy team.’,4.051221,’2005-10-07′,0,107,’Released’,”,5.90,66),(9730,’Friday the 13th: The Final Chapter’,2600000,”,’After the Crystal Lake Massacres, Jason is pronounced dead and taken to the hospital morgue, where he is mysteriously revived, allowing his diabolical killing spree to continue at the camp where the gruesome slaughtering began. But this time, in addition to terrified teenagers, he meets a young boy named Tommy who has a special talent for horror masks and make up, leading up to a horrifying, bloody battle! Has Jason finally met his match?’,14.013414,’1984-04-13′,32980880,91,’Released’,’Jason\’s Back, and this is the one you\’ve been screaming for.’,5.90,237),(9731,’Friday the 13th: A New Beginning’,2200000,”,’Homicidal maniac Jason returns from the grave to cause more bloody mayhem. Young Tommy may have escaped from Crystal Lake, but heâ��s still haunted by the gruesome events that happened there. When gory murders start happening at the secluded halfway house for troubled teens where he now lives, it seems like his nightmarish nemesis, Jason, is back for more sadistic slaughters. But as things spiral out of control and the body count rises, Tommy begins to wonder if heâ��s become the killer he fears most.’,12.639469,’1985-03-22′,21930418,92,’Released’,’A New Beginning to the first step in terror.’,5.10,196),(9737,’Bad Boys’,19000000,”,’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.’,33.872182,’1995-04-07′,141407024,118,’Released’,’Whatcha gonna do?’,6.50,1699),(9741,’Unbreakable’,75000000,”,’An ordinary man makes an extraordinary discovery when a train accident leaves his fellow passengers dead â�� and him unscathed. The answer to this mystery could lie with the mysterious Elijah Price, a man who suffers from a disease that renders his bones as fragile as glass.’,42.006908,’2000-11-13′,248118121,106,’Released’,’Some things are only revealed by accident.’,6.90,1946),(9746,’Kundun’,28000000,”,’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. The Dalai Lama escaped to India in 1959 and has been living in exile in Dharamsala ever since.’,7.039189,’1997-12-25′,5684789,134,’Released’,”,6.80,91),(9754,’Firewall’,45000000,”,’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.’,18.186026,’2006-02-10′,82800000,105,’Released’,’Nothing Is More Dangerous Than A Man With Everything To Lose.’,5.60,267),(9759,’Cellular’,25000000,’http://www.cellularthemovie.com/’,’A young man receives an emergency phone call on his cell phone from an older woman. She claims to have been kidnapped â�� and the kidnappers have targeted her husband and child next.’,24.459948,’2004-09-06′,56422687,94,’Released’,’If the signal dies so does she’,6.10,537),(9760,’Epic Movie’,20000000,”,’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’,6.064638,’2007-01-25′,86865564,86,’Released’,’We know it\’s big. We measured.’,3.20,326),(9762,’Step Up’,12000000,”,’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\’s 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\’s ultra-elite Maryland School of the Arts’,45.477802,’2006-08-11′,114194847,104,’Released’,’Every Second Chance Begins With a First Step’,6.70,1060),(9763,’Goal!: The Dream Begins’,30000000,”,’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.’,16.541791,’2005-06-06′,27610873,118,’Released’,’Every Dream Has A Beginning’,6.60,238),(9766,’Gridiron Gang’,30000000,”,’Teenagers at a juvenile detention center, under the leadership of their counselor, gain self-esteem by playing football together.’,9.278361,’2006-09-15′,41480851,125,’Released’,’One goal. A second chance.’,6.50,206),(9767,’The Break-Up’,52000000,’https://www.uphe.com/movies/the-break-up’,’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.’,26.251217,’2006-06-01′,204999686,106,’Released’,’. . . pick a side.’,5.60,832),(9770,’Mad City’,50000000,”,’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.’,3.314004,’1997-11-07′,10541523,114,’Released’,’One man will make a mistake. The other will make it a spectacle.’,5.90,81),(9772,’Air Force One’,85000000,”,’Russian terrorists conspire to hijack the aircraft with the president and his family on board. The commander in chief finds himself facing an impossible predicament: give in to the terrorists and sacrifice his family, or risk everything to uphold his principles – and the integrity of the nation.’,36.387950,’1997-07-25′,315156409,124,’Released’,’The fate of a nation rests on the courage of one man.’,6.20,840),(9776,’Head of State’,0,”,’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 .’,3.457194,’2003-01-01′,0,95,’Released’,”,5.30,71),(9778,’Serendipity’,28000000,”,’Although 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 again.’,14.530803,’2001-10-05′,77516304,90,’Released’,’Sometimes True Love Can Have More Than One Face.’,6.60,521),(9779,’The Sisterhood of the Traveling Pants’,25000000,”,’Four best friends (Tibby, Lena, Carmen & Bridget) who buy a mysterious pair of pants that fits each of them, despite their differing sizes, and makes whoever wears them feel fabulous. When faced with the prospect of spending their first summer apart, the pals decide they\’ll swap the pants so that each girl in turn can enjoy the magic.’,17.173720,’2005-06-01′,39053061,119,’Released’,’Laugh. Cry. Share the pants.’,6.30,386),(9781,’Detroit Rock City’,6500000,”,’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!’,5.700333,’1999-08-13′,4217115,95,’Released’,’Kiss The Rules Goodbye.’,6.70,100),(9782,’The Night Listener’,0,”,’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.’,7.173059,’2006-02-12′,0,91,’Released’,’You never know who\’s listening.’,5.50,57),(9783,’Sublime’,0,”,’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.’,6.833164,’2007-06-15′,0,113,’Released’,”,5.30,33),(9787,’Lords of Dogtown’,25000000,”,’The film follows the surf and skateboarding trends that originated in Venice, California during the 1970s.’,8.127728,’2005-06-03′,13411957,107,’Released’,’They never thought they\’d be famous, but they always thought they\’d be friends.’,7.00,210),(9792,’The Hills Have Eyes’,15000000,’http://www.foxsearchlight.com/thehillshaveeyes/’,’Based on Wes Craven\’s 1977 suspenseful cult classic, The Hills Have Eyes is the story of a family road trip that goes terrifyingly awry when the travelers become stranded in a government atomic zone. Miles from nowhere, the Carter family soon realizes the seemingly uninhabited wasteland is actually the breeding ground of a blood-thirsty mutant family…and they are the prey.’,35.107857,’2006-03-10′,69623713,107,’Released’,’The lucky ones die first.’,6.10,705),(9793,’The Hills Have Eyes II’,15000000,”,’A group of National Guard trainees find themselves battling against a vicious group of mutants on their last day of training in the desert.’,17.141376,’2007-03-22′,0,89,’Released’,’Help isn\’t coming.’,5.20,351),(9794,’Employee of the Month’,12000000,”,’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.’,9.559737,’2006-10-06′,38368909,103,’Released’,’A slacker competes with a repeat winner for the \”Employee of the Month\” title at work’,5.30,153),(9798,’Enemy of the State’,90000000,”,’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.’,41.207568,’1998-11-20′,250649836,132,’Released’,’It\’s not paranoia if they\’re really after you.’,6.70,1240),(9799,’The Fast and the Furious’,38000000,”,’Domenic Toretto is a Los Angeles street racer suspected of masterminding a series of big-rig hijackings. When undercover cop Brian O\’Conner infiltrates Toretto\’s iconoclastic crew, he falls for Toretto\’s sister and must choose a side: the gang or the LAPD.’,6.909942,’2001-06-22′,207283925,106,’Released’,’Live life 1/4 mile at a time.’,6.60,3428),(9800,’Philadelphia’,26000000,”,’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.’,44.301745,’1993-12-22′,206678440,125,’Released’,’No one would take on his case… until one man was willing to take on the system.’,7.60,988),(9801,’Bridget Jones: The Edge of Reason’,50000000,”,’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, a strange contractor and the worst vacation of her life.’,28.803802,’2004-11-10′,40203020,108,’Released’,’Same Bridget. Brand new diary.’,6.10,750),(9802,’The Rock’,75000000,”,’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 â�� or he will launch 15 rockets carrying deadly VX gas into the San Francisco Bay area.’,51.469576,’1996-06-06′,335062621,136,’Released’,’Alcatraz. Only one man has ever broken out. Now five million lives depend on two men breaking in.’,6.90,1456),(9804,’Waterworld’,175000000,”,’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.’,44.640292,’1995-07-28′,264218220,135,’Released’,’Beyond the horizon lies the secret to a new beginning.’,5.90,992),(9806,’The Incredibles’,92000000,’http://disney.go.com/disneyvideos/animatedfilms/incredibles/main.html’,’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.’,77.817571,’2004-11-05′,631442092,115,’Released’,’No gut, no glory’,7.40,5152),(9809,’Let\’s Go to Prison’,4000000,”,’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.’,4.598410,’2006-11-17′,4630045,84,’Released’,’Welcome to the slammer’,5.50,69),(9813,’The Quiet’,900000,”,’After her widowed father dies, deaf teenager Dot moves in with her godparents, Olivia and Paul Deer. The Deers\’ daughter, Nina, is openly hostile to Dot, but that does not prevent her from telling her secrets to her silent stepsister, including the fact that she wants to kill her lecherous father.’,4.097100,’2005-09-12′,381420,96,’Released’,’Isn\’t it time everyone hears your secrets?’,6.10,73),(9816,’Save the Last Dance’,13000000,”,’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.’,9.969624,’2001-01-12′,91038276,112,’Released’,’The Only Person You Need To Be Is Yourself.’,6.30,352),(9819,’Marvin\’s Room’,0,”,’A leukemia patient attempts to end a 20-year feud with her sister to get her bone marrow.’,6.130231,’1996-12-18′,0,98,’Released’,’A story about the years that keep us apart… And the moments that bring us together.’,6.60,124),(9821,’The Mighty’,0,”,’This tells the story of a strong friendship between a young boy with Morquio\’s syndrome and an older boy who is always bullied because of his size. Adapted from the novel, Freak the Mighty, the film explores a building of trust and friendship. Kevin, an intelligent guy helps out Maxwell to improve his reading skills. In return, Kevin wants Maxwell to take him out places since he is not allowed out unauthorized. Being the social outcasts of the town, Kevin and Maxwell come to realize that they are similar to each other and accept that they are \”freaks\” and nothing will stop them.’,5.497682,’1998-10-23′,0,100,’Released’,’The quest for friendship is the noblest cause of all’,7.10,51),(9822,’Mighty Joe Young’,90000000,”,’As a child living in Africa, Jill Young saw her mother killed while protecting wild gorillas from poachers led by Andrei Strasser. Now an adult, Jill cares for an orphaned gorilla named Joe — who, due to a genetic anomaly, is 15 feet tall. When Gregg O\’Hara arrives from California and sees the animal, he convinces Jill that Joe would be safest at his wildlife refuge. But Strasser follows them to the U.S., intent on capturing Joe for himself.’,6.643778,’1998-12-25′,0,114,’Released’,’Survival is an instinct.’,5.90,208),(9823,’Mortal Kombat: Annihilation’,30000000,”,’A group of heroic warriors has only six days to save the planet in \”Mortal Kombat Annihilation.\” To succeed they must survive the most spectacular series of challenges any human, or god, has ever encountered as they battle an evil warlord bent on taking control of Earth. Sequel to the film \”Mortal Kombat,\” and based on the popular video game.’,11.916389,’1997-11-21′,51376861,95,’Released’,’The world was created in six days, so too shall it be destroyed and on the seventh day mankind will rest… in peace’,3.80,221),(9824,’Mystery Men’,68000000,”,’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.’,12.948627,’1999-08-06′,29762011,121,’Released’,’We\’re not your classic heroes, we\’re the other guys.’,5.70,250),(9825,’Lake Placid’,27000000,”,’When a man is eaten alive by an unknown creature, the local Game Warden teams up with a paleontologist from New York to find the beast. Add to the mix an eccentric philanthropist with a penchant for \”Crocs\”, 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!’,11.678561,’1999-07-15′,56870414,82,’Released’,’You\’ll never know what bit you.’,5.50,247),(9826,’The Phantom’,45000000,”,’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.’,9.025236,’1996-06-06′,17300889,100,’Released’,’Slam Evil!’,4.70,136),(9829,’United 93′,15000000,”,’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.’,17.501380,’2006-04-28′,76286096,111,’Released’,’September 11, 2001. Four planes were hijacked. Three of them reached their target. This is the story of the fourth.’,6.90,367),(9833,’The Phantom of the Opera’,70000000,”,’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’,18.927463,’2004-12-08′,154648887,143,’Released’,’The classic musical comes to the big screen for the first time.’,7.00,438),(9836,’Happy Feet’,100000000,’http://www.warnerbros.com/happy-feet’,’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!’,37.272385,’2006-11-16′,384335608,108,’Released’,’WARNING: May Cause Toe-Tapping.’,5.90,1410),(9837,’The Prince of Egypt’,70000000,”,’This is the extraordinary tale of two brothers named Moses and Ramses, one born of royal blood, and one an orphan with a secret past. Growing up the best of friends, they share a strong bond of free-spirited youth and good-natured rivalry. But the truth will ultimately set them at odds, as one becomes the ruler of the most powerful empire on earth, and the other the chosen leader of his people! Their final confrontation will forever change their lives and the world.’,29.464852,’1998-12-15′,218613188,99,’Released’,’The Power Is Real.’,6.80,817),(9839,’Beyond Borders’,35000000,”,’Beyond Borders is an epic tale of the turbulent romance between two star-crossed lovers set against the backdrop of the world\’s most dangerous hot spots. Academy Award winner Angelina Jolie stars as Sarah Jordan, an American living in London in 1984. She is married to Henry Bauford son of a wealthy British industrialist, when she encounters Nick Callahan a renegade doctor, whose impassioned plea for help to support his relief efforts in war-torn Africa moves her deeply. As a result, Sarah embarks upon a journey of discovery that leads to danger, heartbreak and romance in the far corners of the world.’,6.523472,’2003-10-23′,0,127,’Released’,’Where hope survives.’,6.70,110),(9842,’School for Scoundrels’,20000000,”,’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.’,8.244324,’2006-09-29′,17807569,100,’Released’,’Life\’s A Game. Learn How To Play.’,5.60,111),(9849,’My Favorite Martian’,65000000,”,’News producer, Tim O\’Hara gets himself fired for unwillingly compromising his bosses\’ daughter 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.’,6.806920,’1999-02-11′,36850101,94,’Released’,’The martian has landed. There goes the neighborhood.’,5.10,80),(9869,’Patriot Games’,45000000,”,’When CIA Analyst Jack Ryan interferes with an IRA assassination, a renegade faction targets Jack and his family as revenge.’,19.637704,’1992-06-04′,178051587,117,’Released’,’Not for honor. Not for country. For his wife and child.’,6.30,433),(9870,’Forgetting Sarah Marshall’,30000000,’http://www.forgettingsarahmarshall.com/’,’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.’,50.670253,’2008-04-17′,105173115,111,’Released’,’You lose some, you get some.’,6.40,1172),(9877,’Urban Legend’,14000000,”,’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.’,12.159009,’1998-09-25′,72527595,99,’Released’,’It Happened To Someone Who Knows Someone You Know… You\’re Next.’,5.60,290),(9879,’Striptease’,50000000,”,’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.’,11.106006,’1996-06-28′,113309743,115,’Released’,’Some People Get Into Trouble No Matter What They WEAR.’,4.40,205),(9880,’The Princess Diaries’,37000000,”,’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.’,40.176265,’2001-08-03′,165335153,115,’Released’,’She rocks. She rules. She reigns.’,6.50,1023),(9882,’The Siege’,70000000,”,’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.’,20.089933,’1998-11-06′,116672912,116,’Released’,’On November 6th our freedom is history’,6.00,352),(9884,’Collateral Damage’,85000000,’http://www.wbshop.com/product/code/1000040993.do’,’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.’,18.827753,’2002-02-06′,78382433,108,’Released’,’What would you do if you lost everything?’,5.50,427),(9889,’Shallow Hal’,40000000,”,’A shallow man falls in love with a 300 pound woman because of her \”inner beauty\”.’,29.854773,’2001-11-01′,141069860,114,’Released’,’Are You A Shallow Guy?’,5.70,731),(9890,’The Stepford Wives’,90000000,”,’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.’,19.224754,’2004-06-10′,102000000,93,’Released’,’The wives of Stepford have a secret.’,5.40,334),(9893,’Sleepover’,0,”,’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!’,5.842299,’2004-07-09′,0,89,’Released’,’The rules are set. The game is on.’,5.30,101),(9894,’The Cable Guy’,47000000,”,’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.’,19.525659,’1996-06-10′,102825796,96,’Released’,’There\’s no such thing as free cable.’,5.70,594),(9895,’Man of the Year’,20000000,”,’The irreverent host of a political satire talk show decides to run for president and expose corruption in Washington. His stunt goes further than he expects when he actually wins the election, but a software engineer suspects that a computer glitch is responsible for his surprising victory.’,11.203335,’2006-10-09′,41237648,115,’Released’,’Elections are made to be broken.’,5.80,129),(9896,’Rat Race’,48000000,”,’In an ensemble film about easy money, greed, manipulation and bad driving, a Las Vegas casino tycoon entertains his wealthiest high rollers — a group that will bet on anything — by pitting six ordinary people against each other in a wild dash for $2 million jammed into a locker hundreds of miles away. The tycoon and his wealthy friends monitor each racer\’s every move to keep track of their favorites. The only rule in this race is that there are no rules.’,18.600490,’2001-07-30′,85498534,112,’Released’,’563 miles. 9 people. $2 million. 1001 problems!’,6.00,518),(9899,’The Producers’,45000000,”,’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.’,6.803965,’2005-12-25′,38058335,134,’Released’,”,6.10,151),(9900,’Grandma\’s Boy’,0,”,’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.’,9.974681,’2006-01-06′,6538177,94,’Released’,’A movie that proves you\’re never too old to come of age.’,6.60,220),(9902,’Wrong Turn’,12600000,”,’Chris crashes into a carload of other young people, and the group of stranded motorists is soon lost in the woods of West Virginia, where they\’re hunted by three cannibalistic mountain men who are grossly disfigured by generations of inbreeding.’,33.555764,’2003-05-30′,28650575,84,’Released’,’It\’s the last one you\’ll ever take.’,6.00,635),(9903,’The Hoax’,25000000,”,’In what would cause a fantastic media frenzy, Clifford Irving sells his bogus biography of Howard Hughes to a premiere publishing house in the early 1970s.’,5.073536,’2006-10-14′,11772461,116,’Released’,’Never let the truth get in the way of a good story.’,6.40,60),(9906,’The Ant Bully’,50000000,’http://www.theantbully.com’,’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.’,20.239061,’2006-07-27′,55181129,88,’Released’,’The battle for the lawn is on.’,5.50,366),(9907,’Barnyard’,51000000,”,’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.’,10.430832,’2006-08-04′,72779000,90,’Released’,’What happens in the barn stays in the barn’,5.30,225),(9912,’The World\’s Fastest Indian’,25000000,”,’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.’,8.450513,’2005-10-12′,0,127,’Released’,”,7.30,166),(9913,’The Skeleton Key’,43000000,”,’A hospice nurse working at a spooky New Orleans plantation home finds herself entangled in a mystery involving the house\’s dark past.’,29.105407,’2005-07-29′,91974818,104,’Released’,’Fearing Is Believing’,6.40,573),(9916,’The Last Sin Eater’,0,”,’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.’,2.371477,’2007-02-09′,0,117,’Released’,”,6.20,11),(9918,’Glory Road’,0,”,’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.’,8.305085,’2006-01-13′,42647449,118,’Released’,’The incredible story of the team that changed the game forever.’,7.20,144),(9919,’How to Lose a Guy in 10 Days’,50000000,”,’An advice columnist, Andie Anderson (Kate Hudson), tries pushing the boundaries of what she can write about in her new piece about how to get a man to leave you in 10 days. Her editor, Lana (Bebe Neuwirth), loves it, and Andie goes off to find a man she can use for the experiment. Enter executive Ben Berry (Matthew McConaughey), who is so confident in his romantic prowess that he thinks he can make any woman fall in love with him in 10 days. When Andie and Ben meet, their plans backfire.’,23.854701,’2003-02-07′,177371441,116,’Released’,’One of them is lying. So is the other.’,6.30,850),(9920,’Ultraviolet’,30000000,’http://www.sonypictures.com/movies/ultraviolet/’,’In the late 21st century, a subculture of humans have emerged who have been modified genetically by a vampire-like disease, giving them enhanced speed, incredible stamina and acute intelligence. As they are set apart from \”normal\” and \”healthy\” humans, the world is pushed to the brink of worldwide civil war aimed at the destruction of the \”diseased\” population. In the middle of this crossed-fire is – an infected woman – Ultraviolet, who finds herself protecting a nine-year-old boy who has been marked for death by the human government as he is believed to be a threat to humans.’,15.895340,’2006-03-03′,31070211,87,’Released’,’The blood war is on.’,4.80,458),(9922,’The Postman’,80000000,”,’In 2013 there are no highways, no I-ways, no dreams of a better tomorrow, only scattered survivors across what was once the Unites States. Into this apocalyptic wasteland comes an enigmatic drifter with a mule, a knack for Shakespeare and something yet undiscovered: the power to inspire hope.’,14.564667,’1997-12-25′,17626234,177,’Released’,’The year is 2013. One man walked in off the horizon and hope came with him.’,6.10,299),(9923,’Domino’,50000000,”,’The daughter of actor, Laurence Harvey turns away from her career as a Ford model to become a bounty hunter.’,18.394571,’2005-09-22′,22944502,127,’Released’,’Heads You Live… Tails You Die.’,6.00,444),(9928,’Robots’,75000000,”,’Rodney Copperbottom is a young robot inventor who dreams of making the world a better place, until the evil Ratchet takes over Big Weld Industries. Now, Rodney\’s dreams â�� and those of his friends â�� are in danger of becoming obsolete.’,29.558157,’2005-03-10′,260696994,91,’Released’,’You can shine no matter what you\’re made of.’,6.00,1333),(9930,’Legal Eagles’,0,”,’District Attorney Tom Logan is set for higher office, at least until he becomes involved with defence lawyer Laura Kelly and her unpredictable client Chelsea Deardon. It seems the least of Chelsea\’s crimes is the theft of a very valuable painting, but as the women persuade Logan to investigate further and to cut some official corners, a much more sinister scenario starts to emerge.’,7.519433,’1986-06-18′,0,116,’Released’,’Tom Logan has a law partner who put a dog on the witness stand. A client who can\’t enter a room without a crime being committed. And a case that could turn out to be the murder of the year. His.’,5.80,51),(9932,’Analyze That’,60000000,”,’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.’,21.089520,’2002-12-06′,55003135,96,’Released’,’Back in therapy’,5.70,380),(9942,’Major League’,11000000,”,’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!’,7.559192,’1989-02-16′,49797148,107,’Released’,’A comedy with bats and balls.’,6.60,217),(9944,’The Pelican Brief’,45000000,”,’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.’,17.923254,’1993-12-16′,195268056,141,’Released’,’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.’,6.30,371),(9945,’Vampires’,20000000,’http://www.theofficialjohncarpenter.com/vampires/’,’The church enlists a team of vampire-hunters to hunt down and destroy a group of vampires searching for an ancient relic that will allow them to exist in sunlight.’,17.016284,’1998-04-15′,0,108,’Released’,’From the Master of Evil. Comes a New Breed of Terror’,5.80,255),(9946,’End of Days’,100000000,’http://www.end-of-days.com/’,’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 atheist called Jericho Cane.’,20.652943,’1999-11-24′,211989043,121,’Released’,’Prepare for the end.’,5.50,482),(9947,’Elektra’,43000000,’http://marvel.com/movies/movie/13/elektra’,’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.’,28.613892,’2005-01-13′,56681566,97,’Released’,’Looks can kill’,4.80,575),(9950,’Find Me Guilty’,13000000,”,’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.’,12.321302,’2006-03-16′,2636637,125,’Released’,”,6.50,138),(9952,’Rescue Dawn’,10000000,”,’A US Fighter pilot\’s epic struggle of survival after being shot down on a mission over Laos during the Vietnam War.’,17.078656,’2006-09-09′,7177143,126,’Released’,’A true story of survival… declassified.’,6.90,336),(9954,’The Covenant’,20000000,”,’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.’,15.804814,’2006-09-08′,37597471,97,’Released’,’Only the power of Hell can help them.’,5.20,288),(9955,’Blades of Glory’,53000000,”,’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.’,19.412028,’2007-03-30′,0,93,’Released’,’Kick Some Ice.’,5.90,569),(9957,’The Benchwarmers’,0,”,’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.’,6.745560,’2006-04-07′,0,80,’Released’,’Get off the bench and get into the game.’,5.20,242),(9962,’The Good Girl’,8000000,”,’A discount store clerk strikes up an affair with a stock boy who considers himself the incarnation of Holden Caulfield.’,9.799177,’2002-01-12′,16856124,93,’Released’,’It\’s her last best chance… is she going to take it?’,6.10,181),(9963,’Premonition’,20000000,”,’A depressed housewife who 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 day after to a world in which he is still dead.’,22.049787,’2007-02-08′,84146832,96,’Released’,’Reality is only a nightmare away’,5.80,381),(9969,’Deck the Halls’,0,”,’Two neighbors have it out after one of them decorates his house for the holidays so brightly that it can be seen from space.’,5.952527,’2006-11-22′,47231070,93,’Released’,’There glows the neighborhood’,5.10,109),(9975,’Curious George’,50000000,”,’When The Man in the Yellow Hat befriends Curious George in the jungle, they set off on a non-stop, fun-filled journey through the wonders of the big city toward the warmth of true friendship.’,9.894346,’2006-02-10′,69834815,86,’Released’,’Get Carried Away With The Cutest Little Monkey Around!’,6.20,106),(9978,’Stormbreaker’,40000000,”,’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, when he was killed. Alex is recruited by Alan Blunt to continue the mission. He is sent to Cornwall to investigate a new computer system, which Darrius Sayle has created. He plans to give the new computer systems to every school in the country, but Mr. Blunt has other ideas and Alex must find out what it is.’,16.282962,’2006-07-21′,23937870,93,’Released’,’Rule the school. Save the world.’,5.10,213),(9981,’Kicking & Screaming’,45000000,”,’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.’,8.992690,’2005-05-13′,56070433,95,’Released’,’One man could lead this team to glory. . . That man was busy’,5.60,176),(9982,’Chicken Little’,150000000,’http://movies.disney.com/chicken-little’,’When the sky really is falling and sanity has flown the coop, who will rise to save the day? Together with his hysterical band of misfit friends, Chicken Little must hatch a plan to save the planet from alien invasion and prove that the world\’s biggest hero is a little chicken.’,47.973995,’2005-11-04′,314432665,81,’Released’,’When it comes to saving the world, it helps to be a little chicken.’,5.60,944),(9986,’Charlotte\’s Web’,85000000,”,’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.’,14.132583,’2006-12-15′,144000000,97,’Released’,’Something unexpected, unbelievable, unforgettable.’,5.80,288),(9988,’Beerfest’,17500000,”,’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.’,14.304444,’2006-08-25′,19179969,110,’Released’,’Prepare for the ultimate chug of war.’,5.80,172),(9989,’Antitrust’,30000000,’http://www.antitrustthemovie.com/’,’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.’,8.359599,’2001-01-12′,18195610,108,’Released’,’Truth can be dangerous…Trust can be deadly.’,5.80,153),(9991,’Mean Machine’,0,”,’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.’,8.816995,’2001-12-26′,0,99,’Released’,’It\’s Not Just About Football, It\’s About Pride Inside!’,6.00,157),(9992,’Arthur et les Minimoys’,86000000,”,’Arthur is a spirited ten-year old whose parents are away looking for work, whose eccentric grandfather has been missing for several years, and who lives with his grandmother in a country house that, in two days, will be repossessed, torn down, and turned into a block of flats unless Arthur\’s grandfather returns to sign some papers and pay off the family debt. Arthur discovers that the key to success lies in his own descent into the land of the Minimoys, creatures no larger than a tooth, whom his grandfather helped relocate to their garden. Somewhere among them is hidden a pile of rubies, too. Can Arthur be of stout heart and save the day? Romance beckons as well, and a villain lurks.’,27.097932,’2006-12-13′,107944236,94,’Released’,’Adventure awaits in your own backyard.’,6.00,639),(10003,’The Saint’,68000000,”,’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’,20.913852,’1997-04-03′,118063304,116,’Released’,’Never reveal your name. Never turn your back. Never surrender your heart.’,5.90,302),(10008,’An American Haunting’,0,”,’Based on the true events of the only case in US History where a spirit caused the death of a man.’,7.436315,’2005-05-05′,0,83,’Released’,’Possession Knows No Bounds’,5.30,142),(10012,’Cursed’,35000000,”,’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.’,11.195593,’2005-02-25′,19294901,97,’Released’,’What doesn\’t kill you makes you stronger.’,5.10,167),(10013,’Peggy Sue Got Married’,18000000,”,’Peggy Sue faints at a Highschool reunion. When she wakes up she finds herself in her own past, just before she finished school.’,12.243887,’1986-10-05′,41382841,103,’Released’,’Knowing what you know now, what would you do differently?’,5.90,136),(10014,’A Nightmare on Elm Street Part 2: Freddy\’s Revenge’,3000000,”,’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.’,21.607228,’1985-10-31′,29999213,87,’Released’,’Someone is coming back to Elm Street!’,5.70,361),(10016,’Ghosts of Mars’,28000000,’http://www.theofficialjohncarpenter.com/ghost-of-mars/’,’Melanie Ballard (Natasha Henstridge) is a hard nosed police chief in the year 2025. She and a police snatch squad are sent to Mars to apprehend a dangerous criminal James Williams (Ice Cube). Mars has been occupied by humans for some time and they have set up mining facilities. The mining activities on Mars have unleashed the spirits of alien beings who gradually possess the bodies of the workers. It soon turns out that catching the dangerous fugitive takes a back seat as the alien spirits begin to rid their planet of the \’invaders\’.’,13.145205,’2001-08-24′,14010832,98,’Released’,’Terror is the same on any planet.’,4.80,296),(10017,’The Wraith’,2700000,”,’Packard Walsh and his motorized gang control and terrorize an Arizona desert town where they force drivers to drag-race so they can \’win\’ their vehicles. After Walsh beats the decent teenager Jamie Hankins to death after finding him with his girlfriend, a mysterious power creates Jake Kesey, an extremely cool motor-biker who has a car which is invincible. Jake befriends Jamie\’s girlfriend Keri Johnson, takes Jamie\’s sweet brother Bill under his wing and manages what Sheriff Loomis couldn\’t; eliminate Packard\’s criminal gang the hard way…’,10.476440,’1986-11-21′,3500000,93,’Released’,’He\’s not from around here…’,5.90,108),(10022,’The Pacifier’,56000000,’http://movies.disney.com/the-pacifier’,’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.’,35.476300,’2005-03-04′,113006880,95,’Released’,’Welcome to the infantry.’,5.80,842),(10024,’My Sister\’s Keeper’,30000000,’http://www.mysisterskeepermovie.com/’,’Sara and Brian live an idyllic life with their young son and daughter. But their family is rocked by sudden, heartbreaking news that forces them to make a difficult and unorthodox choice in order to save their baby girl\’s life. The parents\’ desperate decision raises both ethical and moral questions and rips away at the foundation of their relationship. Their actions ultimately set off a court case that threatens to tear the family apart, while revealing surprising truths that challenge everyone\’s perceptions of love and loyalty and give new meaning to the definition of healing.’,24.091520,’2009-06-26′,95714875,109,’Released’,’A tale of life, love, and letting go.’,7.10,598),(10025,’Just My Luck’,28000000,”,’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.’,22.074306,’2006-05-12′,38159905,103,’Released’,’Everything changed in the wink of an eye.’,5.80,491),(10027,’Unleashed’,45000000,’http://www.universalstudiosentertainment.com/unleashed/’,’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.’,25.999888,’2005-02-02′,50871113,103,’Released’,’Serve No Master’,6.60,518),(10028,’Honey’,18000000,”,’Honey Daniels (Jessica Alba) dreams of making a name for herself as a hip-hop choreographer. When she\’s not busy hitting downtown clubs with her friends, she teaches dance classes at a nearby community center in Harlem, N.Y., as a way to keep kids off the streets. Honey thinks she\’s hit the jackpot when she meets a hotshot director (David Moscow) who casts her in one of his music videos. But, when he starts demanding sexual favors from her, Honey makes a decision that will change her life.’,18.492655,’2003-11-24′,62646763,94,’Released’,’Her dream. Her terms’,6.00,303),(10029,’Very Bad Things’,30000000,”,’Kyle Fisher has one last night to celebrate life as a single man before marrying Laura, so he sets out to Vegas with four of his best buddies. But a drug and alcohol filled night on the town with a stripper who goes all the way, turns into a cold night in the desert with shovels when the stripper goes all the way into a body bag after dying in their bathroom. And that\’s just the first of the bodies to pile up before Kyle can walk down the aisle…’,5.671691,’1998-09-11′,9898412,100,’Released’,’They\’ve been bad. Very bad.’,6.20,179),(10030,’Good Luck Chuck’,25000000,’http://www.goodluckchuckthemovie.com/’,’Cursed since childhood, dentist Charlie Kagan cannot find the right woman. Even worse, he learns that each of his ex-girlfriends finds true love with the man she meets after her relationship with him ends. Hearing of Charlie\’s reputation as a good-luck charm, women from all over line up for a quick tryst. But when Charlie meets the woman of his dreams, he must find a way to break the curse or risk losing her to the next man she meets.’,21.729434,’2007-09-21′,59192128,101,’Released’,’He has to break his curse before she breaks his heart.’,5.50,444),(10034,’High Heels and Low Lifes’,0,”,’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.’,1.769593,’2001-07-16′,0,86,’Released’,’They\’re not bad girls. They\’re just behaving that way.’,6.40,12),(10040,’Miss Congeniality 2: Armed and Fabulous’,0,”,’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.’,19.998581,’2005-03-11′,0,115,’Released’,’You might feel a little prick’,5.30,425),(10045,’Banlieue 13′,12000000,’http://www.banlieue13-lefilm.com/’,’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.’,17.493735,’2004-11-09′,9584131,84,’Released’,’Welcome to District B13. Welcome to the future’,6.50,565),(10047,’Joan of Arc’,60000000,”,’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.’,21.084542,’1999-10-18′,66976317,148,’Released’,”,6.20,367),(10048,’Stealth’,135000000,”,’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.’,17.889530,’2005-07-28′,76932943,121,’Released’,’Fear The Sky’,4.90,331),(10050,’Get Over It’,10000000,”,’When Berke Landers, a popular high school basketball star, gets dumped by his life-long girlfriend, Allison, he soon begins to lose it. But with the help of his best friend Felix\’s sister Kelly, he follows his ex into the school\’s spring musical. Thus ensues a love triangle loosely based upon Shakespeare\’s \”A Midsummer Night\’s Dream\”, where Berke is only to find himself getting over Allison and beginning to fall for Kelly.’,11.592129,’2001-03-08′,0,87,’Released’,’Young, Free And Single. Again.’,5.50,75),(10052,’Dragonfly’,60000000,”,’A grieving doctor is being contacted by his late wife through his patients near death experiences.’,8.927137,’2002-02-22′,52322400,104,’Released’,’When someone you love dies… are they gone forever?’,6.10,204),(10053,’When a Stranger Calls’,15000000,’http://www.sonypictures.com/movies/whenastrangercalls/site/’,’Far away from the site of a gruesome murder, a teenager named Jill Johnson arrives at a luxurious home for a baby-sitting job. With the children fast asleep, she settles in for what she expects to be an ordinary evening. Soon, the ringing of a phone and the frightening words of a sadistic caller turn Jill\’s routine experience into a night of terror.’,4.688212,’2006-02-03′,66966987,87,’Released’,’Whatever You Do, Don\’t Answer The Phone.’,5.40,268),(10054,’Spy Kids’,35000000,”,’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.\”‘,21.543389,’2001-03-18′,147934180,88,’Released’,’Real spies…only smaller’,5.50,867),(10060,’Get Rich or Die Tryin\”,40000000,”,’A tale of an inner city drug dealer who turns away from crime to pursue his passion, rap music.’,12.885985,’2005-11-09′,46442528,117,’Released’,’If You Think You Know the Story…You Don\’t Know the Man.’,6.30,186),(10061,’Escape from L.A.’,50000000,’http://www.theofficialjohncarpenter.com/escape-from-la/’,’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.’,21.637234,’1996-08-09′,42277365,97,’Released’,’Snake Is Back.’,5.60,373),(10065,’The Amityville Horror’,19000000,”,’A family is terrorized by demonic forces after moving into a home that was the site of a grisly mass-murder.’,30.205943,’2005-04-15′,108047131,90,’Released’,’What happened over the next 28 days has never been explained.’,6.00,588),(10066,’House of Wax’,40000000,”,’A group of unwitting teens are stranded near a strange wax museum and soon must fight to survive and keep from becoming the next exhibit.’,17.157738,’2005-04-30′,68766121,113,’Released’,’Prey. Slay. Display’,5.50,677),(10067,’The Shaggy Dog’,50000000,’http://movies.disney.com/the-shaggy-dog-2006′,’The tale of a workaholic dad-turned-dog who finds that being man\’s best friend shows him the most important job – being a great dad.’,4.280619,’2006-03-09′,61112916,98,’Released’,’It\’s going to be a ruff day.’,4.50,137),(10068,’Nine 1/2 Weeks’,17000000,”,’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.’,12.313143,’1986-02-14′,6735922,117,’Released’,’They Broke Every Rule’,5.80,177),(10069,’Stay Alive’,9000000,”,’After the mysterious, brutal death of an old friend, a group of teenagers find themselves in possession of \”Stay Alive,\” an ultra-realistic 3-D videogame based on the spine-chilling true story of a 17th century noblewoman, known as \”The Blood Countess.\” The gamers don\’t know anything about the game other than they\’re not supposed to have it… and they\’re dying to play it. Not able to resist temptation, the kids begin to play the grisly game but soon make a chilling connection — they are each being murdered one-by-one in the same way as the characters they played in the game. As the line between the game world and the real world disappears, the teens must find a way to defeat the vicious and merciless Blood Countess, all the while trying to… stay alive.’,4.345030,’2006-03-24′,27105095,100,’Released’,’You die in the game – you die for real.’,5.30,155),(10070,’Feast’,0,’http://www.feast-movie.com/’,’Patrons locked inside of a bar are forced to fight monsters.’,8.825113,’2005-10-14′,658573,95,’Released’,”,6.10,160),(10071,’The Brothers Solomon’,0,”,’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.’,8.312153,’2007-09-07′,0,93,’Released’,’They want to put a baby in you.’,4.90,46),(10072,’A Nightmare on Elm Street 3: Dream Warriors’,5000000,”,’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.’,17.304055,’1987-02-27′,44793222,96,’Released’,’If you think you\’re ready for Freddy, think again!’,6.50,354),(10073,’Date Movie’,20000000,”,’Spoof of romantic comedies which focuses on a man (Campbell), his crush (Hannigan), his parents (Coolidge, Willard), and her father (Griffin).’,10.098722,’2006-02-17′,48548426,83,’Released’,’An Unprotected Comedy’,3.60,222),(10074,’Hot Rod’,0,”,’For Rod Kimball, performing stunts is a way of life, even though he is rather accident-prone. Poor Rod cannot even get any respect from his stepfather, Frank, who beats him up in weekly sparring matches. When Frank falls ill, Rod devises his most outrageous stunt yet to raise money for Frank\’s operation — and then Rod will kick Frank\’s butt.’,6.309587,’2007-08-03′,14334401,88,’Released’,’Smack destiny in the face.’,6.30,313),(10075,’Blood and Chocolate’,0,”,’A young teenage werewolf is torn between honoring her family\’s secret and her love for a man.’,12.295216,’2007-01-26′,0,98,’Released’,’The hunt never tasted so sweet.’,5.40,87),(10077,’A Sound of Thunder’,80000000,’http://asoundofthunder.warnerbros.com/’,’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.’,7.342892,’2005-05-15′,5989640,110,’Released’,’Some Rules Should Never Be Broken.’,4.80,111),(10090,’Reno 911!: Miami’,10000000,”,’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.’,4.207456,’2007-02-23′,20342161,84,’Released’,’In a time of crisis, America will call Reno 911!’,5.60,72),(10092,’Cry_Wolf’,1000000,”,’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.’,6.926926,’2005-09-16′,10047674,90,’Released’,’Nobody believes a liar…even when they\’re telling the truth.’,5.60,126),(10096,’13 Going on 30′,37000000,”,’After total humiliation at her thirteenth birthday party, Jenna Rink wants to just hide until she\’s thirty. With a little magic, her wish is granted, but it turns out that being thirty isn\’t as always as awesome as she thought it would be!’,41.569541,’2004-04-13′,96455697,98,’Released’,’For some, 13 feels like it was just yesterday. For Jenna, it was.’,6.30,1204),(10105,’Saints and Soldiers’,780000,”,’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.’,6.003418,’2003-09-11′,0,90,’Released’,”,6.60,98),(10115,’Stick It’,0,”,’Haley is a naturally gifted athlete but, with her social behavior, the teen seems intent on squandering her abilities. After a final brush with the law, a judge sentences her to an elite gymnastics academy run by a legendary, hard-nosed coach. Once there, Haley\’s rebellious attitude wins her both friends and enemies.’,9.750557,’2006-04-21′,0,105,’Released’,’The world of competitive gymnastics is about to be turned on its head.’,6.30,148),(10117,’Action Jackson’,7000000,”,’Vengence drives a tough Detroit cop to stay on the trail of a power hungry auto magnate who\’s systematically eliminating his competition.’,6.872784,’1988-02-12′,20256975,96,’Released’,’It\’s Time For’,4.90,50),(10131,’A Nightmare on Elm Street 4: The Dream Master’,7000000,”,’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.’,17.113408,’1988-08-19′,72500000,99,’Released’,’Terror beyond your wildest dreams.’,5.80,281),(10132,’Talk Radio’,4000000,”,’A rude, contemptuous talk show host becomes overwhelmed by the hatred that surrounds his program just before it goes national.’,4.541908,’1988-12-21′,3468572,110,’Released’,’The last neighborhood in America.’,6.70,46),(10133,’Cypher’,7500000,’http://www.miramax.com/cypher/’,’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.’,11.636883,’2002-10-01′,0,95,’Released’,’Never forget who you are’,6.70,192),(10135,’Road House’,15000000,”,’The Double Deuce is the meanest, loudest and rowdiest bar south of the Mason-Dixon Line, and Dalton (Patrick Swayze) has been hired to clean it up. He might not look like much, but the Ph.D.-educated bouncer proves he\’s more than capable — busting the heads of troublemakers and turning the roadhouse into a jumping hot-spot. But Dalton\’s romance with the gorgeous Dr. Clay (Kelly Lynch) puts him on the bad side of cutthroat local big shot Brad Wesley (Ben Gazzara).’,6.216203,’1989-05-19′,30050028,114,’Released’,’Dalton lives like a loner, fights like a professional. And loves like there\’s no tomorrow.’,6.30,252),(10136,’The Golden Child’,25000000,”,’A detective specializing in missing children is on a madcap mission to save a youth with mystical powers who\’s been abducted by an evil cult. He battles a band of super-nasties, scrambles through a booby-trapped chamber of horrors and traverses Tibet to obtain a sacred dagger.’,15.262130,’1986-12-12′,79817939,94,’Released’,’Eddie Murphy is the chosen one.’,5.60,304),(10137,’Stuart Little’,133000000,”,’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.’,30.475297,’1999-12-17′,300135367,84,’Released’,’The Little Family Just Got Bigger’,5.80,959),(10138,’Iron Man 2′,200000000,’http://www.ironmanmovie.com/’,’With the world now aware of his dual life as the armored superhero Iron Man, billionaire inventor Tony Stark faces pressure from the government, the press and the public to share his technology with the military. Unwilling to let go of his invention, Stark, with Pepper Potts and James \’Rhodey\’ Rhodes at his side, must forge new alliances â�� and confront powerful enemies.’,77.300194,’2010-04-28′,623933331,124,’Released’,’It\’s not the armor that makes the hero, but the man inside.’,6.60,6849),(10139,’Milk’,20000000,’http://focusfeatures.com/film/milk/’,’The story of California\’s first openly gay elected official, Harvey Milk, who became an outspoken agent for change, seeking equal rights and opportunities for all. His great love for the city and its people brought him backing from young and old, straight and gay, alike â�� at a time when prejudice and violence against gays was openly accepted as the norm.’,30.909699,’2008-11-26′,54586584,128,’Released’,’Never Blend In.’,7.10,612),(10140,’The Chronicles of Narnia: The Voyage of the Dawn Treader’,155000000,”,’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.’,49.661984,’2010-08-13′,415686217,113,’Released’,’Return to magic. Return to hope. Return to Narnia.’,6.20,1514),(10147,’Bad Santa’,23000000,’http://www.miramax.com/movie/bad-santa’,’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.’,26.588730,’2003-11-26′,76488889,91,’Released’,’He doesn\’t care if you\’re naughty or nice.’,6.50,656),(10152,’Dumb and Dumberer: When Harry Met Lloyd’,19000000,”,’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.’,15.677470,’2003-06-13′,39267515,85,’Released’,’The evolution of dumb…’,4.10,210),(10153,’Sphere’,75000000,’http://www.warnerbros.com/movies/home-entertainment/sphere/7bdffe73-2a0e-4e7a-98e7-cee4d723e0b3.html’,’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.’,18.659880,’1998-02-13′,13100000,134,’Released’,’A thousand feet beneath the sea, the blackest holes are in the mind…’,5.80,476),(10154,’Mickey Blue Eyes’,0,”,’An English auctioneer proposes to the daughter of a mafia kingpin, only to realize that certain \”favors\” would be asked of him.’,6.786117,’1999-08-16′,0,102,’Released’,’A romantic comedy you can\’t refuse’,5.30,140),(10156,’History of the World: Part I’,11000000,”,’An uproarious version of history that proves nothing is sacred â�� not even the Roman Empire, the French Revolution and the Spanish Inquisition.’,14.282314,’1981-06-12′,31672907,92,’Released’,’Ten million years in the making. The truth, the whole truth, and everything, but the truth!’,6.50,204),(10159,’The Rundown’,85000000,’http://www.therundown.com/’,’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.’,24.107835,’2003-09-26′,80916492,104,’Released’,’cut to the chase’,6.40,514),(10160,’A Nightmare on Elm Street 5: The Dream Child’,8000000,”,’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?’,12.654051,’1989-08-11′,22168359,89,’Released’,’Now Freddyâ��s a daddy, heâ��s killing for two.’,5.50,245),(10162,’Waking Ned’,0,”,’When a lottery winner dies of shock, his fellow townsfolk attempt to claim the money.’,5.735912,’1998-09-15′,0,91,’Released’,’How far would you go to win a fortune!’,7.40,54),(10163,’The Lawnmower Man’,10000000,”,’A simple man is turned into a genius through the application of computer science.’,10.125029,’1992-03-05′,32101000,108,’Released’,’God made him simple. Science made him a god.’,5.40,197),(10167,’Half Past Dead’,13000000,”,’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.’,6.337063,’2002-11-15′,0,98,’Released’,”,4.60,82),(10179,’The Ice Pirates’,9000000,”,’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.’,3.810697,’1984-03-16′,0,91,’Released’,’A totally SPACED adventure! …You have to be there to see it.’,5.70,49),(10183,’Frozen River’,0,”,’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.’,4.805651,’2008-08-01′,0,97,’Released’,”,6.70,99),(10184,’He\’s Just Not That Into You’,40000000,’http://www.hesjustnotthatintoyoumovie.com/’,’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.’,26.253357,’2009-02-06′,177259441,129,’Released’,’Are you the exception…or the rule?’,6.20,959),(10185,’The Midnight Meat Train’,15000000,’http://www.midnightmeattrainthemovie.com’,’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 young woman, Leon defends her and the guys move on. On the next morning, Leon discovers that the woman is missing. He goes to the police station, but Detective Lynn Hadley does not give much attention to him and discredits his statement. Leon becomes obsessed to find what happened with the stranger and he watches the subway station. When he sees the elegant butcher Mahogany in the train, Leon believes he might be a murderer and stalks him everywhere, in the beginning of his journey to the darkness.’,19.913961,’2008-08-07′,3533227,98,’Released’,’The most terrifying ride you\’ll ever take’,6.00,290),(10186,’The Rocker’,15000000,’http://www.rockermovie.com’,’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.’,13.832376,’2008-08-20′,8762890,102,’Released’,’Opportunity rocks.’,5.60,156),(10187,’Swing Vote’,21000000,”,’In a remarkable turn of events, the result of the presidential election comes down to one man\’s vote.’,5.815881,’2008-08-01′,17600000,120,’Released’,’One ordinary guy is giving the candidates a reason to run.’,5.80,65),(10188,’The Sisterhood of the Traveling Pants 2′,27000000,”,’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.’,11.870301,’2008-08-06′,44352417,117,’Released’,’Some friends just fit together.’,6.00,238),(10189,’Pineapple Express’,27000000,’http://www.sonypictures.com/movies/pineappleexpress/’,’A stoner and his dealer are forced to go on the run from the police after the pothead witnesses a cop commit a murder.’,41.832392,’2008-08-06′,101624843,111,’Released’,’Put this in your pipe and smoke it.’,6.60,1148),(10191,’How to Train Your Dragon’,165000000,’http://www.howtotrainyourdragon.com/’,’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, and instead befriends the beast â�� which he names Toothless â�� much to the chagrin of his warrior father’,67.263269,’2010-03-05′,494878759,98,’Released’,’One adventure will change two worlds’,7.50,4227),(10192,’Shrek Forever After’,165000000,’http://www.shrekforeverafter.com/’,’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â��where Rumpelstiltskin is king, ogres are hunted, and he and Fiona have never metâ��he sets out to restore his world and reclaim his true love.’,44.041186,’2010-05-16′,752600867,93,’Released’,’It ain\’t Ogre… Til it\’s Ogre’,6.00,1959),(10193,’Toy Story 3′,200000000,’http://disney.go.com/toystory/’,’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.’,59.995418,’2010-06-16′,1066969703,103,’Released’,’No toy gets left behind.’,7.60,4597),(10195,’Thor’,150000000,’http://thor.marvel.com/’,’Against his father Odin\’s will, The Mighty Thor – a powerful but arrogant warrior god – recklessly reignites 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.’,86.493424,’2011-04-21′,449326618,115,’Released’,’Two worlds. One hero.’,6.60,6525),(10196,’The Last Airbender’,150000000,’http://www.thelastairbendermovie.com/’,’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.’,33.769336,’2010-06-30′,318502923,103,’Released’,’Four nations, one destiny’,4.70,1151),(10197,’Nine’,80000000,’http://nine-movie.com/’,’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.’,9.357734,’2009-12-03′,53825515,112,’Released’,’This Holiday Season, Be Italian’,5.10,165),(10198,’The Princess and the Frog’,105000000,’http://disney.go.com/disneypictures/princessandthefrog/’,’A waitress, desperate to fulfill her dreams as a restaurant owner, is set on a journey to turn a frog prince back into a human being, but she has to do face the same problem after she kisses him.’,62.479574,’2009-12-08′,267045765,97,’Released’,’Every Love Story Begins With a Kiss…’,6.70,1247),(10199,’The Tale of Despereaux’,60000000,’https://www.uphe.com/movies/the-tale-of-despereaux’,’Once upon a time… in the far away kingdom of Dor… lived a brave and virtuous mouse with comically oversized ears who dreamt of becoming a knight. Banished from his home for having such lofty ambitions, Despereaux sets off on an amazing adventure with his good-hearted rat friend Roscuro, who leads him, at long last, on a very noble quest to rescue an endangered princess and save an entire kingdom from darkness.’,16.493576,’2008-12-19′,50877145,93,’Released’,’Small Mouse. Big Dreams’,5.80,258),(10200,’The Day the Earth Stood Still’,80000000,”,’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.’,41.890722,’2008-12-10′,233093859,104,’Released’,’12.12.08 is the Day the Earth Stood Still’,5.20,1043),(10201,’Yes Man’,70000000,”,’Carl Allen has stumbled across a way to shake free of post-divorce blues and a dead-end job: embrace life and say yes to everything.’,43.849351,’2008-12-09′,225990978,104,’Released’,’One Word Can Change Everything.’,6.40,1813),(10202,’Bedtime Stories’,80000000,”,’Skeeter Bronson is a down-on-his-luck guy who\’s always telling bedtime stories to his niece and nephew. But his life is turned upside down when the fantastical stories he makes up for entertainment inexplicably turn into reality. Can a bewildered Skeeter manage his own unruly fantasies now that the outrageous characters and situations from his mind have morphed into actual people and events?’,23.531721,’2008-12-24′,212874442,99,’Released’,’Whatever they dream up… he has to survive.’,5.90,901),(10204,’Around the World in 80 Days’,110000000,”,’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.’,22.643776,’2004-06-16′,72178895,120,’Released’,’Let your imagination soar.’,5.70,672),(10207,’Message in a Bottle’,80000000,”,’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.’,10.810510,’1999-02-22′,118880016,131,’Released’,’A story of love lost and found.’,5.80,196),(10208,’Muppets from Space’,24000000,”,’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.’,6.589193,’1999-07-14′,16290976,87,’Released’,’Space. It\’s not as deep as you think.’,5.80,92),(10212,’Ravenous’,12000000,”,’Upon receiving reports of missing persons at Fort Spencer, a remote Army outpost on the Western frontier, Capt. John Boyd investigates. After arriving at his new post, Boyd and his regiment aid a wounded frontiersman who recounts a horrifying tale of a wagon train murdered by its supposed guide — a vicious U.S. Army colonel gone rogue. Fearing the worst, the regiment heads out into the wilderness to verify the gruesome claims’,9.164386,’1999-03-16′,0,100,’Released’,’You Are Who You Eat’,6.90,141),(10214,’Son of the Mask’,84000000,”,’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.’,17.815595,’2005-02-18′,0,94,’Released’,’Who\’s next?’,3.60,338),(10215,’Sliding Doors’,6000000,”,’Gwyneth Paltrow plays London publicist Helen, effortlessly sliding between parallel storylines that show what happens if she does or does not catch a train back to her apartment. Love. Romantic entanglements. Deception. Trust. Friendship. Comedy. All come into focus as the two stories shift back and forth, overlap and surprisingly converge.’,15.639016,’1998-04-23′,58000000,99,’Released’,’What if one split second sent your life in two completely different directions?.’,6.50,354),(10217,’The Sweet Hereafter’,5000000,”,’A small mountain community in Canada is devastated when a school bus accident leaves more than a dozen of its children dead. A big-city lawyer arrives to help the survivors\’ and victims\’ families prepare a class-action suit, but his efforts only seem to push the townspeople further apart. At the same time, one teenage survivor of the accident has to reckon with the loss of innocence brought about by a different kind of damage.’,7.673124,’1997-05-14′,3263585,112,’Released’,’There is no such thing as the simple truth.’,6.80,103),(10218,’Swingers’,200000,”,’This is a story about Mike, a guy who left his girl in New York when he came to LA to be a star. It\’s been six months since his girlfriend left him and he\’s not doing so good. So, his pal and some other friends try and get him back in the social scene and forget about his 6 year relationship.’,13.971674,’1996-10-18′,4505922,94,’Released’,’Cocktails first. Questions later.’,6.80,253),(10219,’Snow Falling on Cedars’,0,”,’A Japanese-American fisherman may have killed his neighbor Carl at sea. In the 1950s, race figures in the trial. So does reporter Ishmael.’,2.794830,’1999-12-22′,0,127,’Released’,’From the director of \’Shine\”,6.30,32),(10220,’Rounders’,12000000,”,’A young man is a reformed gambler who must return to playing big stakes poker to help a friend pay off loan sharks.’,18.422008,’1998-09-11′,22921898,121,’Released’,’Trust everyone… But always cut the cards.’,6.90,439),(10223,’A Simple Plan’,0,”,’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’,10.178917,’1998-12-11′,0,121,’Released’,’Sometimes good people do evil things.’,6.90,187),(10225,’Friday the 13th Part VI: Jason Lives’,3000000,”,’As a child, Tommy killed mass-murderer Jason. But now, years later, he is tormented by the fear that maybe Jason isnâ��t really dead. Determined to finish off the infamous killer once and for all, Tommy and a friend dig up Jasonâ��s corpse in order to cremate him. Unfortunately, things go seriously awry, and Jason is instead resurrected, sparking a new chain of ruthlessly brutal murders. Now itâ��s up to Tommy to stop the dark, devious and demented deaths that he unwittingly brought about.’,11.158167,’1986-08-01′,19472057,86,’Released’,’Kill or be killed!’,5.70,216),(10226,’Haute tension’,0,”,’Alexia travels with her friend Marie to spend a couple of days with her family in their farm in the country. They arrive late and they are welcomed by Alexia\’s father. Late in the night, a sadistic and sick killer breaks into the farmhouse, slaughters Alexia\’s family–including their dog–and kidnaps Alexia. Marie hides from the criminal and tries to help the hysterical and frightened Alexia, chase the maniac, and disclose his identity in the end.’,4.952983,’2003-06-18′,0,91,’Released’,’Hearts will bleed.’,6.60,271),(10229,’A Walk to Remember’,11000000,’http://www2.warnerbros.com/walktoremember/main.html’,’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.’,33.283554,’2002-01-25′,41227069,101,’Released’,’She didn\’t belong. She was misunderstood. And she would change him forever.’,7.50,1018),(10238,’Viskningar och rop’,0,”,’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.’,11.347855,’1972-12-21′,0,91,’Released’,’A haunting and shattering film experience.’,7.80,115),(10246,’Porky\’s’,4000000,”,’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.’,12.891276,’1981-11-13′,125728258,94,’Released’,’Keep an eye out for the funniest movie about growing up ever made!’,6.10,183),(10253,’ë��ì��’,70000000,”,’Based on the Korean legend, unknown creatures will return and devastate the planet. Reporter Ethan Kendrick is called in to investigate the matter…’,4.822033,’2007-02-08′,53587404,90,’Released’,’They\’ve made our world their battleground’,4.00,104),(10269,’Yentl’,12000000,”,’A Jewish girl disguises herself as a boy to enter religious training.’,3.389249,’1983-11-18′,30400000,132,’Released’,”,6.20,51),(10279,’Summer of Sam’,0,”,’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.’,3.707890,’1999-07-02′,0,142,’Released’,’No one is safe from son of sam’,6.30,112),(10280,’Thinner’,0,”,’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.’,7.866961,’1996-10-25′,0,92,’Released’,’Let the curse fit the crime.’,5.50,124),(10281,’Friday the 13th Part VII: The New Blood’,2800000,”,’Tina possesses the gift of telekinesis, allowing her to move things and see the future, using the power of her mind. But when a devious doctor tries to exploit her ability, the gift becomes a hellish curse. Tina unwittingly unchains the merciless bloodthirsty Jason Voorhees from his watery grave, igniting a bloodbath that ends in the ultimate showdown in strength of mind versus pure evil matter.’,9.070842,’1988-05-13′,19170001,88,’Released’,’Jason is back, but this time someone\’s waiting!’,5.30,192),(10283,’Friday the 13th Part VIII: Jason Takes Manhattan’,5000000,”,’The Big Apple\’s in big trouble, as indestructible psycho-fiend Jason Vorhees hits the road to New York City. After a shocking return from beyond the grave, the diabolical Jason ships out abroad a teen-filled \”love boat\” bound for New York, which he soon transforms into the ultimate voyage of the damned. Then one of his terrified victims escapes into the nightmarish maze of Manhattan\’s subways and sewers, only to confront Jason one final time.’,12.904615,’1989-07-28′,14000000,100,’Released’,’The Big Apple\’s in BIG trouble!’,4.80,191),(10285,’Jason Goes to Hell: The Final Friday’,3000000,”,’Jason Voorhees, the living, breathing essence of evil, is back for one fierce, final fling! Tracked down and blown to bits by a special FBI task force, everyone now assumes that he\’s finally dead. But everybody assumes wrong. Jason has been reborn with the bone-chilling ability to assume the identity of anyone he touches. The terrifying truth is that he could be anywhere, or anybody. In this shocking, blood-soaked finale to Jason\’s carnage-ridden reign of terror, the horrible secret of his unstoppable killing instinct is finally revealed.’,10.341982,’1993-08-13′,15938065,87,’Released’,’Evil has finally found a home.’,4.20,193),(10288,’Fido’,8000000,’http://www.fidothemovie.com/’,’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.’,5.244518,’2006-09-07′,426224,91,’Released’,’Good dead are hard to find’,6.60,135),(10306,’Poltergeist III’,10500000,”,’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?’,11.225044,’1988-06-10′,14144000,98,’Released’,’He\’s found her.’,4.50,123),(10307,’Stigmata’,29000000,”,’A young woman with no strong religious beliefs, Frankie Paige begins having strange and violent experiences, showing signs of the wounds that Jesus received when crucified. When the Vatican gets word of Frankie\’s situation, a high-ranking cardinal requests that the Rev. Andrew Kiernan investigate her case. Soon Kiernan realizes that very sinister forces are at work, and tries to rescue Frankie from the entity that is plaguing her.’,14.993169,’1999-09-10′,50041732,103,’Released’,’The messenger must be silenced.’,6.00,242),(10312,’Patch Adams’,50000000,”,’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.’,35.537397,’1998-12-25′,202292902,115,’Released’,’Laughter is contagious’,7.00,832),(10313,’The Men Who Stare at Goats’,24000000,’http://www.themenwhostareatgoatsmovie.com/’,’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.’,20.692190,’2009-10-17′,68729358,93,’Released’,’No goats. No glory.’,5.90,742),(10314,’She\’s All That’,10000000,”,’High school hotshot Zach Siler is the envy of his peers. But his popularity declines sharply when his cheerleader girlfriend, Taylor, leaves him for sleazy reality-television star Brock Hudson. Desperate to revive his fading reputation, Siler agrees to a seemingly impossible challenge. He has six weeks to gain the trust of nerdy outcast Laney Boggs — and help her to become the school\’s next prom queen.’,8.987600,’1999-01-29′,103166989,95,’Released’,’These two opposites attract… but EVERYONE\’S trying to keep them apart!’,5.70,418),(10315,’Fantastic Mr. Fox’,40000000,’http://www.foxsearchlight.com/fantasticmrfox/’,’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.’,41.258956,’2009-10-23′,46471023,87,’Released’,’Dig the life fantastic!’,7.50,1176),(10316,’The Ides of March’,12500000,’http://www.sonypictures.com/movies/theidesofmarch/’,’Dirty tricks stand to soil an ambitious young press spokesman\’s idealism in a cutthroat presidential campaign where \’victory\’ is relative.’,20.317469,’2011-09-24′,75993061,101,’Released’,’Ambition seduces. Power corrupts.’,6.50,910),(10317,’Our Brand Is Crisis’,28000000,’http://www.ourbrandiscrisismovie.com/’,’A feature film based on the documentary \”Our Brand Is Crisis\”, which focuses on the use of American political campaign strategies in South America.’,12.921594,’2015-09-11′,7002261,108,’Released’,’May the best campaign win.’,5.80,195),(10320,’The Ring Two’,50000000,”,’Rachel Keller must prevent evil Samara from taking possession of her son\’s soul.’,32.233713,’2005-03-17′,161451538,110,’Released’,’The dead don\’t sleep.’,5.40,632),(10327,’Legally Blonde 2: Red, White & Blonde’,45000000,”,’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.’,4.340616,’2003-07-02′,124914842,95,’Released’,’Bigger. Bolder. Blonder.’,5.10,377),(10329,’Congo’,50000000,”,’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.’,10.755847,’1995-06-09′,152022101,109,’Released’,’Where you are the endangered species.’,5.00,213),(10330,’Freaky Friday’,26000000,”,’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é. When a magical fortune cookie switches their personalities, they each get a peek at how the other person feels, thinks and lives.’,24.345651,’2003-08-03′,110230332,97,’Released’,’Mondays are manic. Wednesdays are wild. And Fridays are about to get a little freaky.’,6.00,879),(10331,’Night of the Living Dead’,114000,”,’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.’,25.666029,’1968-10-01′,30000000,96,’Released’,’If it doesn\’t scare you, you\’re already dead!’,7.50,580),(10333,’The Prince of Tides’,30000000,”,’A troubled man talks to his suicidal sister\’s psychiatrist about their family history and falls in love with her in the process.’,3.845231,’1991-12-25′,74787599,132,’Released’,’A story about the memories that haunt us, and the truth that sets us free.’,5.90,56),(10336,’Spawn’,40000000,”,’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.’,19.833664,’1997-07-31′,87840042,96,’Released’,’Born in darkness. Sworn to justice.’,5.00,336),(10339,’Moby Dick’,4500000,”,’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.’,5.224593,’1956-06-27′,10400000,116,’Released’,’From the immortal adventure classic…of whaling men, their ships, and the sea!’,6.90,89),(10350,’Wing Commander’,30000000,”,’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.’,5.259585,’1999-03-11′,0,100,’Released’,’An action packed thrill ride!’,4.00,72),(10353,’Les Visiteurs 2 : Les Couloirs du temps’,0,”,’The sequel to The Visitors reunites us with those lovable ruffians from the French Medieval ages who – through magic – are transported into the present, with often drastic consequences. Godefroy de Montmirail travels to today to recover the missing family jewels and a sacred relic, guarantor of his wife-to-be\’s fertility. The confrontation between Godefroy\’s repellent servant Jack the Crack and his descendent, the effete Jacquart, present-day owner of the chateau, further complicates the matter.’,12.283025,’1998-02-11′,0,118,’Released’,’They come back!’,5.80,221),(10357,’Volcano’,90000000,”,’An earthquake shatters a peaceful Los Angeles morning and opens a fissure deep into the earth, causing lava to start bubbling up. As a volcano begins forming in the La Brea Tar Pits, the director of the city\’s emergency management service, Mike Roark, working with geologist Amy Barnes, must then use every resource in the city to try and stop the volcano from consuming Los Angeles.’,19.836124,’1997-04-25′,0,104,’Released’,’The coast is toast’,5.20,376),(10358,’Zack and Miri Make a Porno’,24000000,’http://www.zackandmiri.com’,’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.’,27.326466,’2008-09-18′,42105111,102,’Released’,’What would you do to get out of debt?’,6.10,721),(10362,’Two Lovers’,12000000,”,’A depressed man moves back in with his parents following a recent heartbreak.’,8.290636,’2008-11-19′,3148182,110,’Released’,”,6.60,154),(10364,’Catch-22′,18000000,”,’A bombardier in World War II tries desperately to escape the insanity of the war. However, sometimes insanity is the only sane way to cope with a crazy situation. Catch-22 is a parody of a \”military mentality\” and of a bureaucratic society in general.’,4.504377,’1970-06-24′,24911670,121,’Released’,”,6.70,72),(10366,’Universal Soldier: The Return’,45000000,”,’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.’,14.566664,’1999-08-05′,10667893,82,’Released’,’Prepare to become obsolete’,4.20,135),(10368,’Tea with Mussolini’,12000000,”,’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.’,2.238646,’1999-03-25′,21001563,117,’Released’,”,5.80,32),(10375,’D-Tox’,55000000,”,’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.’,12.669778,’2002-01-04′,6416302,96,’Released’,’Survival is a Killer.’,5.30,123),(10377,’My Cousin Vinny’,11000000,”,’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!’,19.231507,’1992-03-13′,64088552,120,’Released’,’Truth, Justice and the Gambini Way’,7.30,384),(10383,’Lost Souls’,0,”,’A small group of Catholics led by an ailing priest believe that Satan intends to become man, just as God did in the person of Jesus. The writings of a possessed mental patient lead them to Peter Kelson, a writer who studies serial killers. They think it\’s his body Satan will occupy. The youngest in the group, a teacher named Maya Larkin, goes to Peter to investigate further and to convince him to believe in the possibility of Evil incarnate. Other signs come to him as he and Maya them take a journey full of strange occurrences, self-discovery, and an ultimate showdown’,3.312385,’2000-10-13′,0,97,’Released’,”,4.50,38),(10384,’Supernova’,90000000,”,’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.’,5.762037,’2000-01-14′,14828081,91,’Released’,’In the farthest reaches of space, something has gone terribly wrong.’,4.90,109),(10385,’Hanging Up’,40000000,”,’A trio of sisters bond over their ambivalence toward the approaching death of their curmudgeonly father, to whom none of them was particularly close.’,3.415534,’2000-02-16′,36037909,94,’Released’,’Every family has a few hang-ups.’,5.00,40),(10386,’The Iron Giant’,70000000,’https://www.warnerbros.com/iron-giant’,’In the small town of Rockwell, Maine in October 1957, a giant metal machine befriends a nine-year-old boy and ultimately finds its humanity by unselfishly saving people from their own fears and prejudices.’,61.245957,’1999-08-06′,23159305,86,’Released’,’It came from outer space!’,7.60,1436),(10388,’The Limey’,10000000,”,’The Limey follows Wilson (Terence Stamp), a tough English ex-con who travels to Los Angeles to avenge his daughter\’s death. Upon arrival, Wilson goes to task battling Valentine (Peter Fonda) and an army of L.A.\’s toughest criminals, hoping to find clues and piece together what happened. After surviving a near-death beating, getting thrown from a building and being chased down a dangerous mountain road, the Englishman decides to dole out some bodily harm of his own.’,8.902102,’1999-05-15′,3193102,89,’Released’,’Vengeance knows no boundaries.’,6.60,105),(10390,’For Love of the Game’,50000000,”,’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.’,9.622345,’1999-09-17′,0,137,’Released’,’Billy Chapel must choose between the woman he loves and the game he lives for.’,6.30,88),(10391,’Bless the Child’,40000000,”,’When Maggie\’s sister Jenna saddles her with an autistic newborn named Cody she touches Maggie\’s heart and becomes the daughter she has always longed for. But six years later Jenna suddenly re-enters her life and, with her mysterious new husband, Eric Stark, abducts Cody. Despite the fact that Maggie has no legal rights to Cody, FBI agent John Travis, takes up her cause when he realizes that Cody shares the same birth date as several other recently missing children.’,3.321949,’2000-08-11′,0,107,’Released’,’Mankind\’s last hope just turned six.’,4.90,71),(10393,’The Replacements’,0,”,’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.’,14.837288,’2000-08-07′,0,118,’Released’,’Throw the ball. Catch the girl. Keep it simple.’,6.10,203),(10395,’Wolf’,0,”,’Publisher Will Randall becomes a werewolf and has to fight to keep his job.’,13.758526,’1994-06-17′,0,125,’Released’,’The animal is out.’,6.00,216),(10397,’Angela\’s Ashes’,25,”,’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 difficult despite his having fought for the IRA, and when he does find money, he spends the money on drink.’,4.887940,’1999-12-25′,13,145,’Released’,”,7.00,59),(10398,’Double Jeopardy’,70000000,”,’A woman framed for her husband\’s murder suspects he is still alive; as she has already been tried for the crime, she can\’t be re-prosecuted if she finds and kills him.’,19.439386,’1999-09-24′,177841558,105,’Released’,’Murder isn\’t always a crime.’,6.20,278),(10400,’The Hurricane’,50000000,”,’The story of Rubin \”Hurricane\” Carter, a boxer wrongly imprisoned for murder, and the people who aided in his fight to prove his innocence.’,20.825781,’1999-09-17′,73956241,146,’Released’,’His greatest fight was for justice.’,7.20,396),(10402,’Deuce Bigalow: Male Gigolo’,17000000,”,’Deuce Bigalow is a less than attractive, down on his luck aquarium cleaner. One day he wrecks the house of a gigolo and needs quick money to repair it. The only way he can make it is to become a gigolo himself, taking on an unusual mix of female clients. He encounters a couple of problems, though. He falls in love with one of his unusual clients, and a sleazy police officer is hot on his trail.’,9.832326,’1999-12-10′,65535067,88,’Released’,’He charges $10 but heâ��s willing to negotiate.’,5.50,308),(10410,’Hoffa’,35000000,”,’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.’,5.926966,’1992-12-25′,0,140,’Released’,”,6.10,81),(10413,’Nowhere to Run’,0,”,’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.’,11.689337,’1993-01-15′,0,94,’Released’,’When the law can\’t protect the innocent, the only hero left is an outlaw.’,5.50,119),(10414,’The Mighty Ducks’,10000000,”,’After reckless young lawyer Gordon Bombay gets arrested for drunk driving, he must coach a kids hockey team for his community service. Gordon has experience on the ice, but isn\’t eager to return to hockey, a point hit home by his tense dealings with his own former coach, Jack Reilly. The reluctant Gordon eventually grows to appreciate his team, which includes promising young Charlie Conway, and leads them to take on Reilly\’s tough players.’,8.932837,’1992-10-01′,50752337,101,’Released’,’They can\’t skate. They can\’t win. They can\’t be serious.’,6.40,198),(10416,’What Planet Are You From?’,60000000,”,’A highly-evolved planet, whose denizens feel no emotion and reproduce by cloning, plans to take over Earth from the inside by sending an operative, fashioned with a humming, mechanical penis, to impregnate an earthling and stay until the birth. The alien, Harold Anderson, goes to Phoenix as a banker and sets to work finding a mate. His approaches to women are inept, and the humming phallus doesn\’t help, but on the advice of a banking colleague, he cruises an AA meeting, meets Susan, and somehow convinces her to marry. The clock starts to tick: will she conceive, have a baby, and lose Harold (and the child) to his planet before he discovers emotion and starts to care?’,2.275331,’2000-03-03′,0,105,’Released’,’To save his planet, an alien must find a woman on Earth to have his baby. There\’s just one problem.’,5.40,37),(10425,’The Death and Life of Bobby Z’,22000000,”,’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.’,12.893219,’2007-07-23′,413454,97,’Released’,’To live a life of his own, he has to die first.’,5.80,103),(10426,’Friday After Next’,20000000,”,’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.’,7.499639,’2002-11-22′,33526835,85,’Released’,’The party\’s back in the \’hood!’,6.00,100),(10428,’Hackers’,20000000,”,’Along with his new friends, a teenager who was arrested by the US Secret Service and banned from using a computer for writing a computer virus discovers a plot by a nefarious hacker, 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.’,17.842246,’1995-09-14′,7563728,107,’Released’,’There is no right or wrong, only fun and boring’,6.20,398),(10431,’War’,25000000,”,’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?’,18.896239,’2007-08-24′,40452643,103,’Released’,’Vengeance is the ultimate weapon.’,6.00,414),(10436,’The Age of Innocence’,34000000,”,’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.’,9.133747,’1993-09-17′,32255440,139,’Released’,’In a world of tradition. In an age of innocence. They dared to break the rules.’,7.00,169),(10437,’The Muppet Christmas Carol’,0,”,’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.’,15.085981,’1992-12-10′,27281507,85,’Released’,”,7.20,212),(10439,’Hocus Pocus’,28000000,”,’After 300 years of slumber, three sister witches are accidentally resurrected in Salem on Halloween night, and it us up to three kids and their newfound feline friend to put an end to the witches\’ reign of terror once and for all.’,18.650748,’1993-07-16′,39514713,96,’Released’,’It\’s just a bunch of Hocus Pocus.’,6.40,471),(10445,’Shadowlands’,22000000,”,’C.S. Lewis, a world-renowned writer and professor, leads a passionless life until he meets spirited poet Joy Gresham’,5.609755,’1993-12-25′,0,131,’Released’,”,6.80,61),(10448,’Rapa Nui’,20000000,”,’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.’,3.581906,’1994-09-09′,305070,107,’Released’,”,6.20,33),(10461,’Get Carter’,63600000,”,’Remake of the Michael Caine classic. 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.’,4.494788,’2000-10-06′,19412993,102,’Released’,’The Truth Hurts’,4.80,145),(10468,’28 Days’,43000000,”,’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.’,5.418921,’2000-04-06′,0,103,’Released’,’The Life of the Party… before she got a life.’,6.00,208),(10471,’Next Friday’,11000000,”,’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\’s dad decides that it would be a good idea for Craig to hide out with his Uncle Elroy and cousin Day-Day in Rancho Cucamonga… but trouble seems to find him there also.’,9.337388,’2000-01-12′,59827328,98,’Released’,’The suburbs make the hood look good.’,6.40,135),(10472,’Down to You’,9000000,”,’College coeds in New York City, Al, the son of a celebrity chef, and Imogen, a talented artist, become smitten the second they lay eyes on one another at a bar. However, the road to happiness is not a smooth one. Outside forces, including a predatory porn star who wants to lure Al into her bed, threaten to pull apart the young lovers before their romance has a chance to really flourish.’,3.269459,’2000-01-21′,0,91,’Released’,’A new comedy about giving first love a second chance.’,4.90,70),(10476,’Hustle & Flow’,8000000,”,’With help from his friends, a Memphis pimp in a mid-life crisis attempts to become a successful hip-hop emcee.’,6.395030,’2005-07-22′,23563727,116,’Released’,’The music will inspire them. The dream will unite them. This summer get crunk.’,6.90,99),(10477,’Driven’,94000000,”,’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 tragic racing accident which nearly took his life.’,8.468586,’2001-04-27′,54744738,116,’Released’,’Get ready for the race of your life.’,4.50,179),(10478,’Tin Cup’,45000000,”,’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.’,10.731574,’1996-08-16′,53854588,135,’Released’,’Golf Pro. Love Amateur.’,5.90,150),(10480,’Nurse Betty’,24000000,”,’What happens when a person decides that life is merely a state of mind? If you\’re Betty, a small-town waitress and soap opera fan from Fair Oaks, Kansas, you refuse to believe that you can\’t be with the love of your life just because he doesn\’t really exist. After all, life is no excuse for not living. Traumatized by a savage event, Betty enters into a fugue state that allows — even encourages — her to keep functioning… in a kind of alternate reality.’,3.572339,’2000-09-08′,0,108,’Released’,’She\’s chasing a dream… they\’re chasing her.’,5.90,111),(10481,’102 Dalmatians’,85000000,”,’Get ready for a howling good time as an all new assortment of irresistible animal heroes are unleashed in this great family tail! In an unlikely alliance, the outrageous Waddlesworth… a parrot who thinks he\’s a Rottweiler… teams up with Oddball… an un-marked Dalmation puppy eager to earn her spots! Together they embark on a laugh-packed quest to outwit the ever-scheming Cruella De Vil’,9.895061,’2000-10-07′,183611771,100,’Released’,’Meet Two Unlikely Heroes With A Bone To Pick.’,5.10,313),(10483,’Death Race’,45000000,’http://www.deathracemovie.net/’,’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.’,42.578770,’2008-08-22′,73762516,105,’Released’,’Get ready for a killer race.’,6.00,1175),(10488,’Nim\’s Island’,37000000,”,’A young girl inhabits an isolated island with her scientist father and communicates with a reclusive author of the novel she\’s reading.’,14.353279,’2008-04-03′,100076342,96,’Released’,’Your adventure starts here.’,5.60,330),(10490,’Drop Dead Gorgeous’,10000000,”,’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 sweet) Amber Atkins won\’t give up without a fight.’,6.736274,’1999-07-23′,10571408,98,’Released’,’The battle between the good and the bad is bound to get ugly.’,6.40,86),(10496,’Bats’,0,”,’Genetically mutated bats escape and it\’s up to a bat expert and the local sheriff to stop them.’,1.537859,’1999-10-22′,10,91,’Released’,’They will suck you dry’,4.10,35),(10501,’The Road to El Dorado’,95000000,”,’After a failed swindle, two con-men end up with a map to El Dorado, the fabled \”city of gold,\” and an unintended trip to the New World. Much to their surprise, the map does lead the pair to the mythical city, where the startled inhabitants promptly begin to worship them as gods. The only question is, do they take the worshipful natives for all they\’re worth, or is there a bit more to El Dorado than riches?’,37.054554,’2000-03-31′,76432727,89,’Released’,’They came for the gold… they stayed for the adventure.’,7.00,858),(10514,’The Andromeda Strain’,6500000,”,’When virtually all of the residents of Piedmont, New Mexico, are found dead after the return to Earth of a space satellite, the head of the US Air Force\’s Project Scoop declares an emergency. A group of eminent scientists led by Dr. Jeremy Stone scramble to a secure laboratory and try to first isolate the life form while determining why two people from Piedmont – an old alcoholic and a six-month-old baby – survived. The scientists methodically study the alien life form unaware that it has already mutated and presents a far greater danger in the lab, which is equipped with a nuclear self-destruct device designed to prevent the escape of dangerous biological agents..’,12.524953,’1971-03-12′,12376563,131,’Released’,’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!’,7.00,190),(10521,’Bride Wars’,30000000,’http://www.bridewars.com’,’Two best friends become rivals when their respective weddings are accidentally booked for the same day.’,33.385429,’2009-01-09′,114663461,89,’Released’,’May the best bride win’,5.90,856),(10523,’W.’,25100000,’http://www.wthefilm.com’,’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â��s 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â��s decision to invade Iraq.’,10.445391,’2008-10-17′,29506464,131,’Released’,’A life misunderestimated.’,6.10,143),(10527,’Madagascar: Escape 2 Africa’,150000000,’http://www.madagascar-themovie.com’,’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.’,44.141021,’2008-10-30′,603900354,89,’Released’,’Still together. Still lost!’,6.20,1810),(10528,’Sherlock Holmes’,90000000,’http://sherlock-holmes-movie.warnerbros.com/’,’Eccentric consulting detective, Sherlock Holmes and Doctor John Watson battle to bring down a new nemesis and unravel a deadly plot that could destroy England.’,57.834787,’2009-12-23′,524028679,128,’Released’,’Nothing escapes him.’,7.00,5766),(10530,’Pocahontas’,55000000,”,’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.’,47.845589,’1995-06-14′,346079773,81,’Released’,’An American legend comes to life.’,6.70,1457),(10533,’The Scarlet Letter’,50000000,”,’Set in puritanical Boston in the mid 1600s, the story of seamstress Hester Prynne, who is outcast after she becomes pregnant by a respected reverend. She refuses to divulge the name of the father, is \”convicted\” of adultery and forced to wear a scarlet \”A\” until an Indian attack unites the Puritans and leads to a reevaluation of their laws and morals.’,7.442680,’1995-10-13′,10382407,135,’Released’,’When intimacy is forbidden and passion is a sin, love is the most defiant crime of all.’,5.50,108),(10534,’White Squall’,38000000,”,’Teenage boys discover discipline and camaraderie on an ill-fated sailing voyage.’,10.047579,’1996-02-02′,10300000,129,’Released’,”,6.30,86),(10535,’Spy Hard’,18000000,”,’The evil Gen. Rancor has his sights set on world domination, and only one man can stop him: Dick Steele, also known as Agent WD-40. Rancor needs to obtain a computer circuit for the missile that he is planning to fire, so Steele teams up with Veronique Ukrinsky, a KGB agent whose father designed the chip. Together they try to locate the evil mastermind\’s headquarters, where Veronique\’s father and several other hostages are being held.’,11.238522,’1996-05-24′,0,81,’Released’,’All the action. All the women. Half the intelligence.’,4.90,147),(10537,’The Doors’,38000000,”,’The story of the famous and influential 1960\’s rock band and its lead singer and composer, Jim Morrison.’,10.794175,’1991-03-01′,34416893,140,’Released’,’The Ultimate Story of Sex, Drugs & Rock \’N\’ Roll’,6.70,275),(10545,’The Hunchback of Notre Dame’,100000000,”,’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.’,46.727941,’1996-06-21′,100138851,91,’Released’,”,6.80,1129),(10549,’Hamlet’,0,”,’Hamlet, Prince of Denmark, returns home to find his father murdered and his mother remarrying the murderer, his uncle. Meanwhile, war is brewing.’,9.814785,’1996-12-25′,0,242,’Released’,”,7.30,117),(10550,’Ballistic: Ecks vs. Sever’,70000000,”,’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.’,8.373780,’2002-09-20′,19924033,91,’Released’,”,4.30,97),(10555,’Shark Tale’,75000000,”,’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.’,47.094369,’2004-09-20′,367275019,90,’Released’,’The story of what happens when one little fish tells a great white lie…’,5.80,1557),(10557,’East Is East’,3800000,”,’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.’,3.667372,’1999-05-14′,28200000,97,’Released’,’A comedy of families, a chip shop… and a very randy dog.’,6.50,59),(10559,’Frequency’,31000000,”,’When a rare phenomenon gives police officer John Sullivan the chance to speak to his father, 30 years in the past, he takes the opportunity to prevent his dad\’s tragic death. After his actions inadvertently give rise to a series of brutal murders he and his father must find a way to fix the consequences of altering time.’,19.258041,’2000-04-28′,68106245,118,’Released’,’The future is listening.’,7.00,462),(10560,’Center Stage’,18000000,”,’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.’,6.961736,’2000-05-12′,17200925,115,’Released’,’Life doesn\’t hold tryouts.’,6.80,90),(10563,’Three to Tango’,20000000,”,’Oscar and Peter land a career-making opportunity when a Chicago tycoon chooses them to compete for the design of a cultural center. The tycoon mistakenly believes that Oscar is gay and has him spy on his mistress Amy. Oscar goes along with it and ends up falling in love with Amy.’,7.553773,’1999-10-22′,0,98,’Released’,’All\’s fair in the war of love.’,5.40,62),(10564,’Where the Heart Is’,15000000,”,’Novalee Nation is a 17-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.’,6.857923,’2000-04-27′,33771174,120,’Released’,’Laughter is harder… Friendship is stronger… Trust is deeper… When it comes from the heart.’,6.90,155),(10567,’Dinosaur’,127500000,”,’An orphaned dinosaur raised by lemurs joins an arduous trek to a sancturary after a meteorite shower destroys his family home.’,26.548594,’2000-05-19′,354248063,82,’Released’,’You have never seen anything like this.’,6.20,542),(10569,’Small Time Crooks’,0,”,’A loser of a crook and his wife strike it rich when a botched bank job\’s cover business becomes a spectacular success.’,11.423533,’2000-05-19′,0,94,’Released’,’They took a bite out of crime’,6.40,155),(10571,’Boys and Girls’,16000000,”,’Ryan and Jennifer are opposites who definitely do not attract. At least that\’s what they always believed. When they met as twelve-year-olds, they disliked one another. When they met again as teenagers, they loathed each other. But when they meet in college, the uptight Ryan and the free-spirited Jennifer find that their differences bind them together and a rare friendship develops.’,9.119797,’2000-06-16′,20627372,94,’Released’,’Warning: Sex Changes Everything’,5.40,103),(10577,’Dracula 2000′,28000000,”,’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.’,6.756771,’2000-12-22′,33000337,99,’Released’,’The Most Seductive Evil of All Time Has Now Been Unleashed in Ours.’,4.60,148),(10585,’Child\’s Play’,9000000,”,’A single mother gives her son a beloved doll for his birthday, only to discover that it is possessed with the soul of a serial killer.’,27.600843,’1988-11-08′,44196684,87,’Released’,’Chucky is one mean S.O.B.’,6.30,581),(10586,’The Ghost and the Darkness’,50000000,”,’Sir Robert Beaumont is behind schedule on a railroad in Africa. Enlisting noted engineer John Henry Patterson to right the ship, Beaumont expects results. Everything seems great until the crew discovers the mutilated corpse of the project\’s foreman, seemingly killed by a lion. After several more attacks, Patterson calls in famed hunter Charles Remington, who has finally met his match in the bloodthirsty lions.’,12.465250,’1996-10-11′,75000000,109,’Released’,’Prey For The Hunters’,6.40,236),(10588,’The Cat in the Hat’,0,”,’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.’,18.251129,’2003-11-21′,0,82,’Released’,’Don\’t mess with the hat.’,4.90,366),(10589,’After the Sunset’,60000000,’http://www.afterthesunset.com/’,’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.’,14.113066,’2004-11-12′,61347797,97,’Released’,’Who will walk away?’,6.00,226),(10590,’We Were Soldiers’,75000000,”,’The story of the first major battle of the American phase of the Vietnam War and the soldiers on both sides that fought it.’,19.708731,’2002-03-01′,114660784,138,’Released’,’400 U.S paratroopers. 4000 Vietnamese soldiers. 12 000 miles away from home. 1 man led them into battle.’,6.70,521),(10591,’The Girl Next Door’,25000000,”,’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.’,39.784026,’2004-04-09′,30411183,108,’Released’,’Matt never saw her coming… but all his friends had!’,6.30,824),(10592,’Hart\’s War’,70000000,”,’Fourth-generation Army Col. William McNamara is imprisoned in a brutal German POW camp. Still, as the senior-ranking American officer, he commands his fellow inmates, keeping a sense of honor alive in a place where honor is easy to destroy, all under the dangerous eye of the Luftwafe vetran Col. Wilhelm Visser. Never giving up the fight to win the war, McNamara is silently planning, waiting for his moment to strike back at the enemy. A murder in the camp gives him the chance to set a risky plan in motion. With a court martial to keep Visser and the Germans distracted, McNamara orchestrates a cunning scheme to escape and destroy a nearby munitions plant, enlisting the unwitting help of young Lt. Tommy Hart. Together with his men, McNamara uses a hero\’s resolve to carry out his mission, ultimately forced to weigh the value of his life against the good of his country.’,14.244518,’2002-02-15′,32287044,125,’Released’,’Beyond Courage, Beyond Honor.’,5.90,241),(10603,’George of the Jungle’,55000000,”,’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.’,22.573237,’1997-07-15′,0,92,’Released’,’Watch out!’,5.40,496),(10610,’The Medallion’,41000000,”,’A Hong Kong detective suffers a fatal accident involving a mysterious medallion and is transformed into an immortal warrior with superhuman powers.’,14.653718,’2003-08-15′,0,88,’Released’,”,5.30,281),(10611,’Barbershop’,12000000,”,’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.’,10.297189,’2002-04-01′,75781642,102,’Released’,’Everyone\’s gettin\’ lined up.’,6.20,137),(10615,’Pootie Tang’,0,”,’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.’,3.115754,’2001-06-29′,0,81,’Released’,’Too cool for words.’,5.40,43),(10622,’ä¸�å��好人’,12716953,”,’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.’,7.077505,’1997-01-31′,18814720,113,’Released’,’Fight first. Apologize later.’,6.30,128),(10623,’Cradle 2 the Grave’,25000000,”,’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.’,12.837116,’2003-02-28′,56489558,101,’Released’,’Mortal enemies make dangerous friends.’,5.80,236),(10625,’Mean Girls’,17000000,’http://www.meangirls.com/’,’Cady Heron is a hit with The Plastics, the A-list girl clique at her new school, until she makes the mistake of falling for Aaron Samuels, the ex-boyfriend of alpha Plastic Regina George.’,36.423717,’2004-04-30′,129042871,97,’Released’,’Welcome to girl world.’,6.90,2320),(10628,’Kangaroo Jack’,0,”,’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.’,10.292864,’2003-01-17′,0,89,’Released’,’He stole the money… And he\’s not giving it back.’,4.30,203),(10629,’Veronica Guerin’,17000000,”,’In this true story, Veronica Guerin is an investigative reporter for an Irish newspaper. As the drug trade begins to bleed into the mainstream, Guerin decides to take on and expose those responsible. Beginning at the bottom with addicts, Guerin then gets in touch with John Traynor, a paranoid informant. Not without some prodding, Traynor leads her to John Gilligan, the ruthless head of the operation, who does not take kindly to Guerin\’s nosing.’,9.583578,’2003-07-11′,1569918,98,’Released’,’Why would anyone want to kill Veronica Guerin?’,6.80,59),(10632,’The Hunted’,55000000,”,’In the wilderness of British Columbia, two hunters are tracked and viciously murdered by Aaron Hallum. Former Special Operations instructor, L.T. Bonham is approached and asked to apprehend Hallum, his former student, who has \’gone rogue\’ after suffering severe battle stress from his time in Kosovo.’,8.634954,’2003-03-11′,34234008,94,’Released’,’Some men should not be found.’,6.00,189),(10634,’Friday’,3500000,’http://www.newline.com/properties/friday.html’,’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.’,25.574800,’1995-04-26′,28215918,91,’Released’,’A lot can go down between thursday and saturday…’,7.00,503),(10637,’Remember the Titans’,30000000,’http://movies.disney.com/remember-the-titans’,’After leading his football team to 15 winning seasons, coach Bill Yoast is demoted and replaced by Herman Boone â�� tough, opinionated and as different from the beloved Yoast as he could be. The two men learn to overcome their differences and turn a group of hostile young men into true champions.’,25.996219,’2000-09-29′,136706683,113,’Released’,’History is written by the winners.’,7.40,821),(10641,’Autumn in New York’,65000000,”,’Autumn in New York follows the sexual exploits of Will Keane – 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. 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.’,8.680334,’2000-08-11′,0,103,’Released’,’He fell in love for the first time. She fell in love forever.’,5.70,135),(10642,’Loser’,0,”,’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.’,5.214408,’2000-07-21′,0,98,’Released’,’Dare to be different.’,5.00,120),(10643,’Gojira ni-sen mireniamu’,1000000,”,’Godzilla saves Tokyo from a flying saucer that transforms into the beast Orga.’,3.322721,’1999-12-11′,10037390,107,’Released’,’Get ready to crumble.’,5.90,43),(10646,’Tomcats’,11000000,”,’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!’,7.063053,’2001-03-30′,23430766,95,’Released’,’The Last Man Standing Gets The Kitty.’,4.90,74),(10647,’Pay It Forward’,40000000,”,’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.’,24.313684,’2000-10-12′,55707411,122,’Released’,’When someone does you a big favor, don\’t pay it back… Pay It Forward’,7.00,432),(10655,’Gettysburg’,0,”,’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.’,5.529035,’1993-10-08′,25000000,254,’Released’,”,6.60,90),(10656,’Subway’,2000000,”,’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 Héléna, blow a safe, rob a train, evade the hapless Metro police, and start a rock band’,5.261065,’1985-04-10′,390659,104,’Released’,’An underground story where lives intertwine’,6.30,86),(10658,’Howard the Duck’,37000000,”,’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…’,11.374306,’1986-08-01′,37962774,110,’Released’,’You will believe that a duck can talk.’,5.10,221),(10661,’You Don\’t Mess with the Zohan’,90000000,’http://www.youdontmesswiththezohan.com/’,’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.’,40.597344,’2008-06-05′,201596308,113,’Released’,’Lather. Rinse. Save the world.’,5.50,1048),(10663,’The Waterboy’,23000000,”,’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.’,23.839127,’1998-11-06′,185991646,90,’Released’,’You can mess with him. But don\’t mess with his water.’,5.90,512),(10664,'[REC]²’,5600000,’http://www.rec2themovie.com/’,’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.’,22.341462,’2009-09-15′,18469680,85,’Released’,’Fear Revisited’,6.40,489),(10673,’Wall Street’,15000000,”,’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.’,24.898687,’1987-12-10′,43848069,126,’Released’,’Every dream has a price.’,7.00,546),(10674,’Mulan’,90000000,”,’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.’,67.427755,’1998-06-18′,304320254,88,’Released’,’This time, the princess saves the prince.’,7.60,2008),(10676,’Halloween III: Season of the Witch’,2500000,”,’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.’,12.030456,’1982-10-22′,14400000,98,’Released’,’…and now the earth will run with blood again!’,5.00,229),(10678,’Bringing Down the House’,20000000,”,’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.’,8.351385,’2003-03-07′,132675402,105,’Released’,’Everything he needed to know about life, she learned in prison.’,5.40,183),(10681,’WALL·E’,180000000,’http://disney.go.com/disneypictures/wall-e/’,’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.’,66.390712,’2008-06-22′,521311860,98,’Released’,’An adventure beyond the ordinar-E.’,7.80,6296),(10683,’Happiness’,3000000,”,’The lives of many individuals connected by the desire for happiness, often from sources usually considered dark or evil.’,10.757539,’1998-10-16′,2807390,139,’Released’,’Finding happiness can be a tragic comedy.’,7.40,194),(10684,’Courage Under Fire’,46000000,”,’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….’,12.971122,’1996-07-04′,100860818,117,’Released’,’A medal for honor. A search for justice. A battle for truth.’,6.20,232),(10685,’The Watcher’,33000000,”,’FBI agent Joel Campbell, burnt-out and shell-shocked after years spent chasing serial killers, flees L.A. to begin a new life for himself in Chicago. But five months later, Joel\’s best laid plans are abruptly cut short when his new hometown becomes the setting for some particularly gruesome murders–murders that could only have been committed by one man: David Allen Griffin. One of Joel\’s most elusive and cunning nemeses, Griffin has followed his former pursuer to Chicago in order to play a sadistic game of cat and mouse. Taunting Joel with photographs of his intended victims and leaving his crime scenes meticulously free of clues in order to keep the police at bay, Griffin derives as much pleasure out of watching Joel react to every movement as watching his victims die. But when Griffin moves into Joel\’s inner circle, Joel must quickly find some way to stop him before someone close to him becomes the next one to die.’,7.339908,’2000-09-08′,0,96,’Released’,’Don\’t go home alone.’,4.90,110),(10691,’Crazy/Beautiful’,13000000,”,’At Pacific Palisades High, a poor Latino falls hard for a troubled girl from the affluent neighborhood.’,6.130096,’2001-06-29′,16929123,99,’Released’,’When it\’s real. When it\’s right. Don\’t let anything stand in your way.’,6.60,96),(10696,’Glitter’,22000000,”,’Similar to Mariah\’s life story. Mariah plays the role of a young singer who is eager to become a big star. She dates a DJ who helps her get into the music business.’,3.809131,’2001-09-21′,5271666,104,’Released’,’In music she found her dream, her love, herself.’,3.40,38),(10705,’Henry V’,9000000,”,’Gritty adaption of William Shakespeare\’s play about the English King\’s bloody conquest of France.’,4.641006,’1989-10-05′,0,137,’Released’,’The great adventure of a king who defied the odds to prove himself a man.’,7.40,71),(10707,’The Squid and the Whale’,1500000,”,’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.’,13.788054,’2005-10-05′,11098131,81,’Released’,’Joint custody blows.’,6.90,226),(10708,’Daddy Day Care’,60000000,”,’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.’,18.106021,’2003-05-03′,164433867,92,’Released’,’Who\’s your daddy?’,5.60,506),(10710,’Envy’,40000000,”,’A man becomes increasingly jealous of his friend\’s newfound success.’,9.842771,’2004-04-30′,0,99,’Released’,’Success didnâ��t go to his head, it went to his neighbor.’,4.80,139),(10712,’Far from Heaven’,13500000,”,’In 1950s Connecticut, a housewife faces a marital crisis and mounting racial tensions in the outside world.’,9.982885,’2002-09-01′,29027914,107,’Released’,’It\’s time to stop hiding from the truth.’,6.90,144),(10715,’Looney Tunes: Back in Action’,80000000,”,’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.’,16.715631,’2003-11-14′,68514844,90,’Released’,’Real life has never been so animated.’,5.60,297),(10718,’Torque’,40000000,”,’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, 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.’,7.360793,’2004-01-16′,46546197,84,’Released’,’Circuit of Fire’,4.70,119),(10719,’Elf’,32000000,”,’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.’,16.901954,’2003-10-09′,173398518,97,’Released’,’This holiday, discover your inner elf.’,6.40,987),(10724,’Firefox’,18000000,”,’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.’,8.700565,’1982-06-13′,70687344,136,’Released’,’…the most devastating killing machine ever built… his job… steal it!’,5.50,139),(10727,’Darkness Falls’,0,”,’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’,11.199544,’2003-01-24′,0,86,’Released’,’Evil rises.’,4.90,161),(10731,’The Client’,45000000,”,’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.’,17.746719,’1994-07-20′,117615211,119,’Released’,’A district attorney out for a conviction. A new lawyer out of her league. A young boy who knew too much.’,6.40,278),(10733,’The Alamo’,145000000,”,’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.’,10.660441,’2004-04-07′,25819961,137,’Released’,’You will never forget’,5.80,106),(10734,’Escape from Alcatraz’,8000000,”,’Escape from Alcatraz tells the story of the only three men ever to escape from the infamous maximum security prison at Alcatraz. In 29 years, the seemingly impenetrable federal penitentiary, which housed Al Capone and \”Birdman\” Robert Stroud, was only broken once – by three men never heard of again.’,26.356697,’1979-06-22′,43000000,111,’Released’,’No one has ever escaped from Alcatraz…and no one ever will!’,7.20,561),(10735,’What a Girl Wants’,0,”,’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.’,7.057765,’2003-03-27′,0,105,’Released’,’Trying to fit in. Born to stand out.’,5.80,368),(10739,’Anything Else’,0,”,’Jerry Falk, an aspiring writer in New York, falls in love at first sight with a free-spirited young woman named Amanda He has heard the phrase that life is like \”anything else,\” but soon he finds that life with the unpredictable Amanda isn\’t like anything else at all.’,8.945081,’2003-08-27′,0,108,’Released’,’In any relationship one person always does the heavy lifting.’,6.20,149),(10740,’Birth’,20000000,”,’It took Anna 10 years to recover from the death of her husband, Sean, but now she\’s on the verge of marrying her boyfriend, Joseph, and finally moving on. However, on the night of her engagement party, a young boy named Sean turns up, saying he is her dead husband reincarnated. At first she ignores the child, but his knowledge of her former husband\’s life is uncanny, leading her to believe that he might be telling the truth.’,7.698075,’2004-09-08′,0,100,’Released’,’Be careful what you wish for.’,5.90,179),(10741,’Bobby’,0,”,’In 1968 the lives of a retired doorman, hotel manager, lounge singer, busboy, beautician and others intersect in the wake of Robert F. Kennedy\’s assassination at the Ambassador Hotel in Los Angeles.’,11.706309,’2006-09-05′,0,120,’Released’,’He saw wrong and tried to right it. He saw suffering and tried to heal it. He saw war and tried to stop it.’,6.40,119),(10743,’Confidence’,0,”,’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.’,9.874190,’2003-04-25′,0,97,’Released’,’It\’s not about the money. It\’s about the money.’,6.40,126),(10744,’The Cooler’,32000000,”,'(William H. Macy) works at a Las Vegas casino, where he uses his innate ability to bring about misfortune in those around him to jinx gamblers into losing. His imposing boss, Shelly Kaplow (Alec Baldwin), is happy with the arrangement. But Bernie finds unexpected happiness when he begins dating attractive waitress Natalie Belisario (Maria Bello).’,9.976428,’2003-01-17′,0,101,’Released’,’When your life depends on losing… the last thing you need is lady luck.’,6.70,89),(10748,’St. Trinian\’s’,0,’http://www.sttriniansmovie.co.uk/’,’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 red.’,7.377587,’2007-12-21′,0,101,’Released’,’Taking higher education to a new low.’,5.60,142),(10756,’The Haunted Mansion’,90000000,”,’Workaholic Jim Evers and his wife/business partner, Sara get a call one night from mansion owner, Edward Gracey wants to sell his house. Once the Evers family arrive at the mansion a butler takes them to dine with Gracey. Gracey takes one look at Sara and he thinks she\’s his lost lover.’,16.302378,’2003-11-25′,182290266,99,’Released’,’Check your pulse at the door… if you have one.’,5.20,466),(10758,’Waitress’,2000000,”,’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.’,9.672990,’2007-05-25′,22179430,108,’Released’,’If only life were as easy as pie’,6.70,129),(10760,’Sydney White’,16500000,”,’A modern retelling of Snow White set against students in their freshman year of college in the greek system.’,10.746480,’2007-09-21′,13620075,108,’Released’,’Freshman year is no fairytale’,6.00,236),(10761,’Made of Honor’,40000000,”,’Tom and Hannah 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.’,19.574774,’2008-05-02′,84601681,101,’Released’,’He\’ll do anything to get the groom out of the picture.’,6.00,394),(10762,’Without a Paddle’,19000000,”,’Three friends, whose lives have been drifting apart, reunite for the funeral of a fourth childhood friend. When looking through their childhood belongings, they discover a trunk which contained details on a quest their friend was attempting. It revealed that he was hot on the trail of the $200,000 that went missing with airplane hijacker D.B. Cooper in 1971. They decide to continue his journey, but do not understand the dangers they will soon encounter.’,8.584398,’2004-08-20′,69631118,95,’Released’,’The call of the wild, the thrill of adventure. The mistake of a lifetime.’,5.30,214),(10764,’Quantum of Solace’,200000000,’http://www.mgm.com/view/movie/234/Quantum-of-Solace/’,’Quantum of Solace continues the adventures of James Bond after 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 that the organization that blackmailed Vesper is far more complex and dangerous than anyone had imagined.’,107.928811,’2008-10-30′,586090727,106,’Released’,’For love, for hate, for justice, for revenge.’,6.10,2965),(10765,’Private Benjamin’,0,”,’A sheltered young high society woman joins the army on a whim and finds herself in a more difficult situation than she ever expected.’,12.188380,’1980-10-06′,0,109,’Released’,”,6.00,102),(10771,’The Tuxedo’,0,”,’Cabbie-turned-chauffeur Jimmy Tong learns there is really only one rule when you work for playboy millionaire Clark Devlin : Never touch Devlin\’s prized tuxedo. But when Devlin is temporarily put out of commission in an explosive accident, Jimmy puts on the tux and soon discovers that this extraordinary suit may be more black belt than black tie. Paired with a partner as inexperienced as he is, Jimmy becomes an unwitting secret agent.’,21.549232,’2002-09-27′,0,98,’Released’,’Suit up for action!’,5.30,483),(10773,’Mrs Henderson Presents’,0,”,’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’,2.894154,’2005-09-09′,0,103,’Released’,”,6.40,62),(10774,’Network’,3800000,”,’A TV network cynically exploits a deranged ex-TV anchor\’s ravings and revelations about the media for their own profit.’,17.234745,’1976-11-01′,23689877,121,’Released’,’Not since the dawn of time has America experienced a man like Howard Beale!’,7.70,381),(10776,’Little Shop of Horrors’,25000000,”,’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.’,12.113235,’1986-12-19′,38748395,94,’Released’,’Don\’t feed the plants.’,6.60,384),(10781,’The Texas Chainsaw Massacre: The Beginning’,16000000,”,’Chrissie and her friends set out on a road trip for a final fling before one is shipped off to Vietnam. Along the way, bikers harass the foursome and cause an accident that throws Chrissie from the vehicle. The lawman who arrives on the scene kills one of the bikers and brings Chrissie\’s friends to the Hewitt homestead, where young Leatherface is learning the tools of terror.’,21.380635,’2006-10-06′,0,91,’Released’,’What you know about fear… doesn\’t even come close.’,5.90,402),(10782,’Basic’,50000000,”,’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.’,19.226763,’2003-04-18′,42792561,98,’Released’,’Deception is their most deadly weapon.’,6.20,286),(10783,’Lucky Numbers’,65000000,”,’Russ Richards is a TV weatherman and local celebrity on the verge of losing his shirt. Desperate to escape financial ruin, he schemes with Crystal the TV station\’s lotto ball girl to rig the state lottery drawing. The numbers come up right, but everything else goes wrong as the plan starts to unravel and the game turns rough.’,2.952595,’2000-10-27′,0,105,’Released’,’When they put their heads together… it\’s a no brainer.’,4.90,52),(10786,’Robin and Marian’,0,”,’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 â�¦ who\’s joined a nunnery!’,3.199904,’1976-03-11′,0,106,’Released’,’Love is the greatest adventure of all.’,6.60,50),(10796,’The One’,49000000,”,’A sheriff\’s deputy fights an alternate universe version of himself who grows stronger with each alternate self he kills.’,21.746245,’2001-11-02′,72700000,87,’Released’,’Stealing the power of the universes one by one.’,5.70,437),(10800,’Chasseurs de dragons’,15000000,”,’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.’,8.884405,’2008-03-19′,0,80,’Released’,’Dragon hunting isn\’t a fairy tale’,6.50,129),(10802,’Showgirls’,45000000,”,’A young drifter named Nomi arrives in Las Vegas to become a dancer and soon sets about clawing and pushing her way to become a top showgirl.’,14.513305,’1995-09-22′,20350754,128,’Released’,’Beyond your wildest dreams. Beyond your wildest fantasies.’,4.90,256),(10803,’Logan\’s Run’,9000000,”,’An idyllic sci-fi future has one major drawback: All citizens get a chance of being \’renewed\’ in a Civic Ceremony at their 30th birthday, unless they run and escape before their time comes.’,12.268143,’1976-06-23′,25000000,119,’Released’,’The only thing you can\’t have in Logan\’s world is your 30th birthday. Unless you run away.’,6.60,269),(10806,’In & Out’,35000000,”,’A midwestern teacher questions his sexuality after a former student makes a comment about him at the Academy Awards.’,11.897925,’1997-09-10′,0,90,’Released’,’An out-and-out comedy.’,6.30,177),(10808,’Dr. Dolittle 2′,70000000,”,’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 a fight no matter what kind of animal expression they have and everyone agrees to do it and save their home.’,13.543053,’2001-06-22′,176104344,87,’Released’,’The doctor is in again.’,4.90,410),(10822,’Savage Grace’,4600000,”,’This examination of a famous scandal from the 1970s explores the relationship between Barbara Baekeland and her only son, Antony. Barbara, a lonely social climber unhappily married to the wealthy but remote plastics heir Brooks Baekeland, dotes on Antony, who is homosexual. As Barbara tries to \”cure\” Antony of his sexuality — sometimes by seducing him herself — the groundwork is laid for a murderous tragedy.’,3.531877,’2007-05-18′,0,97,’Released’,’Truth is more shocking than fiction.’,5.70,60),(10833,’Heartbreakers’,35000000,”,’Max and Page are a brilliant mother/daughter con team who have their grift down to a fine science. Max targets wealthy, willing men and marries them. Page then seduces them, and Max catches her husband in the act. Then it\’s off to palimony city and the next easy mark.’,13.932203,’2001-03-23′,0,123,’Released’,’Caution: Dangerous Curves Ahead’,5.70,254),(10844,’Out of the Blue’,0,”,’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 town, 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 for 24 hours while a handful of under-resourced and under-armed local policemen risked their lives trying to find him and save the survivors. Based on true events.’,0.706355,’2006-10-12′,0,103,’Released’,’The true story of a small town massacre’,5.90,18),(10858,’Nixon’,44000000,”,’An all-star cast powers this epic look at American President Richard M. Nixon, a man carrying the fate of the world on his shoulders while battling the self-destructive demands from within. Spanning his troubled boyhood in California to the shocking Watergate scandal that would end his presidency.’,3.770161,’1995-12-22′,13681765,192,’Released’,’Triumphant in Victory, Bitter in Defeat. He Changed the World, But Lost a Nation.’,7.10,71),(10861,’Maximum Risk’,25000000,”,’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.’,10.115011,’1996-09-13′,51702483,100,’Released’,’The Other Side of Safety.’,5.20,101),(10865,’Atlantis: The Lost Empire’,120000000,’http://www.disney.com/atlantis’,’The world\’s most highly qualified crew of archaeologists and explorers is led by historian Milo Thatch as they board the incredible 1,000-foot submarine Ulysses and head deep into the mysteries of the sea.’,51.548589,’2001-06-02′,186053725,95,’Released’,’Atlantis is waiting…’,6.70,1224),(10866,’Joy Ride’,23000000,”,’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.’,11.183197,’2001-10-05′,36642838,97,’Released’,’It was just a joke, just for fun.’,6.30,325),(10871,’Switchback’,37000000,”,’FBI agent Dennis Quaid tries to catch a serial killer who kidnapped his son.’,4.131546,’1997-10-31′,6482195,118,’Released’,’The hunter becomes the hunted.’,5.80,52),(10873,’Shadow of the Vampire’,8000000,”,’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.\”‘,5.939230,’2000-05-15′,8279017,92,’Released’,’An Unspeakable Horror. A Creative Genius. Captured For Eternity.’,6.60,148),(10876,’Quills’,13500000,”,’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.’,7.261196,’2000-11-22′,7060876,124,’Released’,’There are no bad words… only bad deeds.’,6.80,128),(10877,’Exit Wounds’,50000000,’http://www.exitwounds.net/’,’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.’,12.601306,’2001-03-13′,79958599,101,’Released’,’This Is Gonna Hurt’,5.30,110),(10878,’Saving Silverman’,22000000,”,’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.’,12.887673,’2001-02-09′,19351569,90,’Released’,’They swore nothing would come between them. Then evil walked in the door’,5.40,154),(10885,’Shutter’,0,”,’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.’,8.864368,’2008-03-21′,0,85,’Released’,’The most terrifying images are the ones that are real.’,5.30,180),(10890,’Stripes’,10000000,”,’John Winger, an indolent sad sack in his 30s, impulsively joins the U.S. Army after losing his job, his girlfriend and his apartment.’,10.892398,’1981-06-25′,85300000,106,’Released’,’The story of a man who wanted to keep the world safe for democracy…and meet girls.’,6.50,249),(10894,’May’,500000,”,’Psychological horror about a lonely young woman traumatized by a difficult childhood, and her increasingly desperate attempts to connect with the people around her.’,8.650779,’2002-01-13′,150277,93,’Released’,’Be Careful… She Just Might Take Your Heart.’,6.30,152),(10895,’Pinocchio’,2600000,”,’Lonely toymaker Geppetto has his wishes answered when the Blue Fairy arrives to bring his wooden puppet Pinocchio to life. Before becoming a real boy, however, Pinocchio must prove he\’s worthy as he sets off on an adventure with his whistling sidekick and conscience, Jiminy Cricket. From Stromboli\’s circus to Pleasure Island, Pinocchio is tested by many temptations, but slowly learns how to navigate right from wrong. With a few mishaps along the way, Geppetto\’s \”little woodenhead\” finally gets it right, proving that when you wish upon a star dreams really can come true!’,46.007991,’1940-02-23′,84300000,88,’Released’,’For anyone who has ever wished upon a star.’,6.90,1355),(10913,’Dear Wendy’,0,”,’In a blue-collar American town, a group of teens bands together to form the Dandies, a gang of gunslingers led by Dick Dandelion. Following a code of strict pacifism at odds with the fact that they all carry guns, the group eventually lets in Sebastian, the grandson of Dick\’s childhood nanny, Clarabelle, who fears the other gangs in the area. Dick and company try to protect Clarabelle, but events transpire that push the gang past posturing.’,2.597665,’2005-01-22′,0,105,’Released’,’One shot is all it takes.’,5.60,33),(10914,’All Hat’,0,’http://allhatthemovie.com/’,’An ex-con returns to his rural Ontario roots and outwits a corrupt and wealthy thoroughbred owner trying to take over a slew of local farms. Ray Dokes, a charming ex-ballplayer, returns from jail to discover the rural landscape of his childhood transformed by urban development. Determined to stay out of trouble, Ray heads to the farm of his old friend Pete Culpepper, a crusty Texas cowboy who trains losing racehorses and whose debts are growing faster than his corn.’,0.137535,’2007-09-11′,0,89,’Released’,”,1.00,1),(10923,’Agent Cody Banks’,28000000,”,’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.’,11.859396,’2003-03-14′,58795814,102,’Released’,’Save the world. Get the girl. Pass math.’,5.00,284),(10925,’The Return of the Living Dead’,4000000,”,’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 seeking their favorite food: brains!’,14.961629,’1985-05-15′,14237000,91,’Released’,’They\’re Back From The Grave and Ready To Party!’,7.30,267),(10929,’Willard’,22000000,”,’Desperate for companionship, the repressed Willard befriends a group of rats that inhabit his late father\’s deteriorating mansion. In these furry creatures, Willard finds temporary refuge from daily abuse at the hands of his bedridden mother and his father\’s old partner, Frank. Soon it becomes clear that the brood of rodents is ready and willing to exact a vicious, deadly revenge on anyone who dares to bully their sensitive new master.’,1.322528,’2003-03-14′,0,100,’Released’,’When the cat\’s away, the rats will play.’,5.80,82),(10930,’La fleur du mal’,0,”,’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.’,1.229667,’2003-02-09′,0,104,’Released’,”,5.70,10),(10934,’Under the Tuscan Sun’,0,”,’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.’,12.309718,’2003-04-30′,0,113,’Released’,’Life offers you a thousand chances … all you have to do is take one.’,6.40,172),(10935,’Heaven\’s Gate’,44000000,”,’Harvard graduate James Averill (Kris Kristofferson) is the sheriff of prosperous Jackson County, Wyo., when a battle erupts between the area\’s poverty-stricken immigrants and its wealthy cattle farmers. The politically connected ranch owners fight the immigrants with the help of Nathan Champion (Christopher Walken), a mercenary competing with Averill for the love of local madam Ella Watson (Isabelle Huppert). As the struggle escalates, Averill and Champion begin to question their decisions.’,5.380124,’1980-11-19′,3484331,219,’Released’,’The only thing greater than their passion for America… was their passion for each other.’,6.40,55),(10944,’In the Cut’,12000000,”,’Following the gruesome murder of a young woman in her neighborhood, a self-determined woman living in New York City–as if to test the limits of her own safety–propels herself into an impossibly risky sexual liaison. Soon she grows increasingly wary about the motives of every man with whom she has contact–and about her own.’,10.536092,’2003-09-09′,23,119,’Released’,’Everything you know about desire is dead wrong.’,4.60,89),(10947,’High School Musical’,4200000,’http://tv.disney.go.com/disneychannel/originalmovies/highschoolmusical/index.html’,’Troy (Zac Efron), the popular captain of the basketball team, and Gabriella (Vanessa Anne Hudgens), the brainy and beautiful member of the academic club, break all the rules of East High society when they secretly audition for the leads in the school\’s musical. As they reach for the stars and follow their dreams, everyone learns about acceptance, teamwork, and being yourself. And it\’s all set to fun tunes and very cool dance moves!’,16.536374,’2006-01-20′,0,98,’Released’,’This School Rocks Like No Other!’,6.10,1000),(10950,’I Am Sam’,22000000,”,’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.’,26.071644,’2001-12-28′,92542418,132,’Released’,’love is all you need’,7.20,530),(10955,’Ripley\’s Game’,30000000,”,’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 game, can Ripley maintain control? Does it stop at one killing? What if Ripley develops a conscience?’,2.981047,’2002-09-02′,0,110,’Released’,”,6.60,69),(10956,’Joe Dirt’,17700000,”,’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.’,15.976335,’2001-04-10′,30987695,91,’Released’,’He Came. He Cleaned. He Conquered.’,5.50,242),(10970,’Silent Movie’,0,”,’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.’,7.315935,’1976-06-17′,0,86,’Released’,”,6.70,78),(10972,’Session 9′,1500000,”,’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.’,11.064228,’2001-08-10′,373967,100,’Released’,’Fear is a place.’,6.20,251),(10981,’Nothing’,0,”,’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.’,3.408955,’2003-09-09′,0,90,’Released’,”,5.80,38),(10982,’Hoodwinked!’,15000000,’http://www.hoodwinkedthemovie.com’,’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 impatient Chief Grizzly.’,23.980329,’2005-12-16′,51053787,80,’Released’,’Armed And Dangerously Dumb.’,5.90,479),(10984,’Valentine’,0,”,’Five friends are stalked and murdered by a masked assailant while preparing for Valentine\’s Day.’,5.904126,’2001-02-01′,0,96,’Released’,’Remember that kid everyone ignored on Valentineâ��s Day? – He remembers you.’,5.00,114),(10985,’The New Guy’,13000000,’http://www.sonypictures.com/movies/thenewguy/’,’Nerdy high school senior Dizzy Harrison has finally gotten lucky — after purposely getting expelled, he takes lessons in \’badass cool\’ from a convict and enrolls at a new school. But can he keep up the ruse?’,13.525704,’2002-05-10′,0,88,’Released’,’A zero will rise.’,5.70,151),(10987,’Halloween: The Curse of Michael Myers’,5000000,”,’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.’,9.483717,’1995-09-29′,15116634,88,’Released’,’Haddonfield is ready to celebrate Halloween…. so is Michael Myers!’,5.00,170),(10991,’Pokémon 3: The Movie’,16000000,’http://movies.warnerbros.com/pk3/’,’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!’,9.188850,’2000-07-08′,68411275,93,’Released’,’Pokémon: Spell of the Unknown’,5.90,137),(10992,’Cats & Dogs’,60000000,’http://catsanddogsmovie.warnerbros.com/cmp/main.html’,’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.’,18.735024,’2001-07-04′,93375151,87,’Released’,’Things Are Gonna Get Hairy!’,5.00,352),(10994,’White Oleander’,0,”,’A teenager journeys through a series of foster homes after her mother goes to prison for committing a crime of passion.’,9.423866,’2002-10-11′,0,109,’Released’,”,7.20,108),(10996,’Stuart Little 2′,120000000,”,’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.’,27.990284,’2002-07-19′,169956806,78,’Released’,’A Little Goes A Long Way’,5.40,613),(10998,’Fatal Attraction’,14000000,”,’A married man\’s one night stand comes back to haunt him when that lover begins to stalk him and his family.’,16.742972,’1987-09-11′,320145693,119,’Released’,’A look that led to an evening. A mistake he\’ll regret…FOR THE REST OF HIS LIFE.’,6.60,291),(10999,’Commando’,10000000,”,’John Matrix, the former leader of a special commando strike force that always got the toughest jobs done, is forced back into action when his young daughter is kidnapped. To find her, Matrix has to fight his way through an array of punks, killers, one of his former commandos, and a fully equipped private army. With the help of a feisty stewardess and an old friend, Matrix has only a few hours to overcome his greatest challenge: finding his daughter before she\’s killed.’,34.224204,’1985-10-03′,57500000,90,’Released’,’Somewhere… somehow… someone\’s going to pay.’,6.40,742),(11001,’Blue Streak’,65000000,”,’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’,16.865782,’1999-09-17′,117758500,93,’Released’,’He\’s A Cop That\’s Not.’,6.10,352),(11004,’Wonder Boys’,35000000,”,’Grady (Michael Douglas) is a 50-ish English professor who hasn\’t had a thing published in years — not since he wrote his award winning \”Great American Novel\” 7 years ago. This weekend proves even worse than he could imagine as he finds himself reeling from one misadventure to another in the company of a new wonder boy author.’,9.011729,’2000-02-22′,0,111,’Released’,’Undependable. Unpredictable. Unforgettable.’,6.90,161),(11007,’Cheaper by the Dozen’,40000000,”,’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.’,26.516624,’2003-12-24′,190212113,98,’Released’,’Growing pains? They\’ve got twelve of them!’,6.00,699),(11011,’Ri¢hie Ri¢h’,40000000,”,’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.’,14.398356,’1994-12-19′,0,95,’Released’,’An adventure so big… even the world\’s richest kid can\’t afford to miss it!’,5.40,415),(11013,’Secretary’,4000000,”,’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.’,19.107285,’2002-01-11′,9304609,104,’Released’,’Assume the position.’,6.70,376),(11015,’The Relic’,60000000,”,’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.’,12.621769,’1997-01-10′,33956608,110,’Released’,’The Next Evolution In Terror.’,5.80,130),(11022,’Narc’,6500000,”,’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.’,8.526635,’2002-01-14′,12633747,105,’Released’,”,6.80,142),(11023,’Thirteen’,2000000,”,’Tracy is a normal 13-year-old trying to make it in school. After befriending the most popular girl at school, Evie, Tracy\’s world is turned upside down when Evie introduces her 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.’,20.331593,’2003-08-20′,4601043,100,’Released’,’It\’s happening so fast.’,6.70,339),(11024,’Scooby-Doo 2: Monsters Unleashed’,0,”,’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?’,22.644275,’2004-03-24′,181466833,93,’Released’,’They came. They saw. They ran.’,5.40,500),(11025,’New York Minute’,0,”,’Top student Jane Ryan heads to Manhattan for a college-scholarship competition. Her rebellious twin Roxy Ryan goes along to crash a video shoot. But anything can happen – and does – in a romp involving a pursuing truant officer, a smuggler, hunkalicious guys and the girls\’ realization that when the chips are down, a sister can be the best friend of all.’,10.040300,’2004-05-01′,0,91,’Released’,”,5.50,185),(11026,’Exorcist: The Beginning’,80000000,”,’Having lived through traumatizing events during WWII, Father Lankester Merrin takes a sabbatical from the Church to conduct archaeological excavations in British-administered East Africa. Merrin unearths an ancient Byzantine church believed have been built and then immediately buried to keep down evil from the crypt below. The natives are convinced that uncovering the church has unleashed a demon, and begin to violently clash with the British military troops. As the village rapidly disintegrates into chaos and war, Merrin must face-off with the demon which has taken possession of somebody close to him.’,15.761384,’2004-08-20′,78000586,114,’Released’,’Go back to where the horror began.’,4.70,183),(11027,’The Postman Always Rings Twice’,12000000,”,’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.’,6.803763,’1981-03-20′,0,122,’Released’,’You Will Feel The Heat’,6.40,110),(11033,’Dressed to Kill’,6500000,”,’A mysterious, tall, blonde woman, wearing sunglasses murders one of a psychiatrist\’s patients, and now she\’s after the prostitute who witnessed it.’,11.208769,’1980-06-25′,31899000,105,’Released’,’The Latest Fashion In Murder’,6.80,157),(11036,’The Notebook’,29000000,’http://www.newline.com/properties/notebookthe.html’,’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.’,55.109138,’2004-06-25′,115603229,123,’Released’,’Behind every great love is a great story.’,7.70,3067),(11042,’Les Invasions barbares’,8000000,”,’In this belated sequel to \’The Decline of the American Empire\’, 50-something Montreal college professor, Remy, learns that he is dying of liver cancer. He decides to make amends meet to his friends and family before he dies. He first tries to made peace with his ex-wife Louise, who asks their estranged son Sebastian, a successful businessman living in London, to come home. Sebastian makes the impossible happen, using his contacts and disrupting the entire Canadian system in every way possible to help his father fight his terminal illness to the bitter end, while he also tries to reunite his former friends, Pierre, Alain, Dominique, Diane, and Claude to see their old friend before he passes on.’,3.030910,’2003-05-21′,3432342,99,’Released’,’A provocative new comedy about sex, friendship, and all other things that invade our lives.’,6.70,77),(11051,’The Last Temptation of Christ’,7000000,”,’Jesus, a humble Judean carpenter beginning to see that he is the son of God, is drawn into revolutionary action against the Roman occupiers by Judas — despite his protestations that love, not violence, is the path to salvation. The burden of being the savior of mankind torments Jesus throughout his life, leading him to doubt. As he is put to death on the cross, Jesus is tempted by visions of an ordinary life married to Mary Magdalene.’,14.672151,’1988-08-12′,8373585,164,’Released’,”,7.00,201),(11056,’Darkness’,0,’http://www.miramax.com/movie/darkness’,’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.’,6.340135,’2002-10-02′,0,102,’Released’,’A house. A past. A secret. Will you dare enter?’,5.60,112),(11058,’Godsend’,25000000,”,’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.’,12.102350,’2004-04-30′,30114487,102,’Released’,’When a miracle becomes a nightmare, evil is born.’,4.70,114),(11062,’City Hall’,0,”,’The accidental shooting of a boy in New York leads to an investigation by the Deputy Mayor, and unexpectedly far-reaching consequences.’,3.621837,’1996-02-16′,0,111,’Released’,’It started with a shootout on a rainswept street and ended in a scandal that shattered New York.’,6.00,67),(11065,’O’,0,”,’Hot 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…’,4.146752,’2001-08-31′,16017403,95,’Released’,’Trust. Seduction. Betrayal.’,5.80,75),(11066,’Boomerang’,40000000,”,’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.’,6.420434,’1992-06-30′,70100000,117,’Released’,’A Player Who\’s About to be Played.’,5.40,134),(11072,’Blazing Saddles’,2600000,”,’A town â�� where everyone seems to be named Johnson â�� is in the way of the railroad and, 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, so Hedley convinces him to send the town the first black sheriff in the west.’,22.793929,’1974-02-07′,119500000,93,’Released’,’Never give a saga an even break!’,7.20,609),(11086,’The Majestic’,72000000,”,’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.’,11.215702,’2001-12-21′,37317558,152,’Released’,’Sometimes your life comes into focus one frame at a time.’,6.60,188),(11090,’The Animal’,22000000,”,’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.’,13.786075,’2001-06-01′,84772742,84,’Released’,’He wasn\’t much of a man… Now he\’s not much of an animal!’,4.60,304),(11091,’Riding in Cars with Boys’,48000000,”,’A single mother, with dreams of becoming a writer, has a son at the age of 15 in 1965, and goes through a failed marriage with the drug-addicted father.’,7.226115,’2001-10-19′,35743308,132,’Released’,’One day can make your life; one day can ruin your life. All life is is four or five big days that change everything.’,6.50,103),(11093,’House of Sand and Fog’,16500000,”,’Behrani, an Iranian immigrant buys a California bungalow, thinking he can fix it up, sell it again, and make enough money to send his son to college. However, the house is the legal property of former drug addict Kathy. After losing the house in an unfair legal dispute with the county, she is left with nowhere to go. Wanting her house back, she hires a lawyer and befriends a police officer. Neither Kathy nor Behrani have broken the law, so they find themselves involved in a difficult moral dilemma.’,12.102725,’2003-12-19′,16942795,126,’Released’,’Some dreams can\’t be shared.’,7.00,199),(11096,’Hide and Seek’,25000000,”,’David Callaway tries to piece together his life in the wake of his wife\’s suicide and has been left to raise his nine-year-old daughter, Emily on his own. David is at first amused to discover that Emily has created an imaginary friend named \’Charlie\’, but it isn\’t long before \’Charlie\’ develops a sinister and violent side, and as David struggles with his daughter\’s growing emotional problems, he comes to the frightening realisation that \’Charlie\’ isn\’t just a figment of Emily\’s imagination.’,18.228538,’2005-01-27′,122644820,101,’Released’,’Come out, come out, whatever you are.’,6.10,440),(11109,’Vera Drake’,11000000,”,’Abortionist Vera Drake finds her beliefs and practices clash with the mores of 1950s Britain â�� a conflict that leads to tragedy for her family.’,4.131918,’2004-10-22′,0,125,’Released’,’Wife. Mother. Criminal.’,6.80,80),(11113,’My Fair Lady’,17000000,”,’A misogynistic and snobbish phonetics professor agrees to a wager that he can take a flower girl and make her presentable in high society.’,20.786616,’1964-10-21′,72070731,170,’Released’,’The loverliest motion picture of them all!’,7.40,352),(11128,’Ladder 49′,60000000,”,’Under the watchful eye of his mentor, Captain Mike Kennedy, probationary firefighter Jack Morrison matures into a seasoned veteran at a Baltimore fire station. However, Jack has reached a crossroads 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.’,10.999910,’2004-10-01′,74541707,115,’Released’,’Their greatest challenge lies in rescuing one of their own’,6.20,207),(11129,’Human Traffic’,600000,”,’All that exists now is clubs, drugs, pubs and parties. I\’ve got 48 hours off from the world, man I\’m gonna blow steam out of my head like a screaming kettle. I\’m gonna talk cods hit to strangers all night. I\’m gonna lose the plot on the dance floor, the free radicals inside me are freaking man! Tonight I\’m Jip Travolta, I\’m Peter Popper, I\’m going to Never Never Land with my chosen family, man. We\’re going to get more spaced out than Neil Armstrong ever did. Anything could happen tonight, you know? This could be the best night of my life! I\’ve got 73 quid in my back burner. I\’m gonna wax the lot, man. The milky bars are on me! Yeah!’,4.859873,’1999-06-04′,4000000,99,’Released’,’The Weekend has Landed!’,6.80,97),(11130,’The Princess Diaries 2: Royal Engagement’,40000000,”,’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…’,30.002907,’2004-08-06′,95149435,113,’Released’,’It can take a lifetime to find true love; she\’s got 30 days!’,6.00,697),(11132,’Confessions of a Teenage Drama Queen’,15000000,”,’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 also the leadership of their mates. When the last concert of Sidarthur is sold-out, Lola plans with Ella to travel to New York and buy the tickets from scalpers. However, the girls get into trouble while helping the lead singer and Lola\’s idol Stu Wolf, changing their lives forever.’,7.424798,’2004-02-17′,29331068,89,’Released’,’She\’s making a scene over everything.’,5.10,221),(11137,’The Prince & Me’,0,”,’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.’,17.943945,’2004-03-28′,0,111,’Released’,’Finding your inner princess can be such a royal pain.’,5.90,278),(11141,’Laws of Attraction’,28000000,”,’Amidst a sea of litigation, two New York City divorce lawyers find love.’,6.201404,’2004-04-04′,30016165,90,’Released’,’Love always has the last word.’,5.60,104),(11152,’The Ruins’,8000000,”,’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’,13.715715,’2008-04-02′,0,91,’Released’,’Terror has evolved.’,5.60,265),(11153,’National Lampoon\’s Vacation’,15000000,”,’Clark Griswold is on a quest to take his family on a quest to Walley World theme park for a vacation, but things don\’t go exactly as planned.’,22.838834,’1983-07-28′,61399552,98,’Released’,’Every summer Chevy Chase takes his family on a little trip. This year he went too far.’,7.10,410),(11156,’Coco avant Chanel’,0,’http://www.cocoavantchanel.fr’,’2009 biopic about the early life of Coco Chanel. 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.’,8.426589,’2009-04-22′,0,110,’Released’,’Before she was France\’s famous mademoiselle…’,6.60,246),(11162,’The Merchant of Venice’,0,”,’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.’,12.467267,’2004-09-03′,0,138,’Released’,”,6.70,144),(11165,’Tora! Tora! Tora!’,25485000,”,’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.’,9.795985,’1970-01-26′,29548291,144,’Released’,’The incredible attack on Pearl Harbor.’,6.90,147),(11170,’We Are Marshall’,65000000,”,’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.’,8.629665,’2006-12-12′,43545364,124,’Released’,’From the ashes we rose.’,6.70,186),(11172,’Music and Lyrics’,40000000,”,’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.’,17.659032,’2007-02-09′,145896422,96,’Released’,’Share the music with someone you love.’,6.20,554),(11176,’The Muppet Movie’,0,”,’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.’,10.639916,’1979-05-31′,76657000,97,’Released’,’More entertaining than humanly possible.’,7.00,164),(11184,’Kinsey’,0,”,’Kinsey is a portrait of researcher Alfred Kinsey, driven to uncover the most private secrets of a nation. What begins for Kinsey as a scientific endeavor soon takes on an intensely personal relevance, ultimately becoming an unexpected journey into the mystery of human behavior.’,6.799314,’2004-09-04′,0,118,’Released’,’Let\’s talk about sex’,6.60,131),(11186,’Child\’s Play 2′,13000000,”,’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.’,16.681567,’1990-11-09′,35763605,84,’Released’,’Look out Jack! Chucky\’s back!’,5.80,308),(11190,’Ð�озвÑ�аÑ�ение’,0,”,’A 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.’,7.744166,’2003-06-25′,0,105,’Released’,”,7.40,100),(11191,’Mystic Pizza’,0,”,’Three teenage girls come of age while working at a pizza parlor in Mystic Connecticut.’,6.379933,’1988-10-13′,0,104,’Released’,’A Romantic Comedy With The Works’,5.90,123),(11194,’Touching the Void’,0,”,’A documentary based on the book of the same name by Joe Simpson about Simpson\’s and Simon Yates\’ disastrous and near-fatal attempt to climb 6,344m Siula Grande in the Cordillera Huayhuash in the Peruvian Andes in 1985.’,14.045887,’2003-09-05′,13885802,106,’Released’,”,7.60,138),(11199,’Wild Hogs’,0,’http://video.movies.go.com/wildhogs/’,’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.’,31.719463,’2007-03-02′,253625427,100,’Released’,’A lot can happen on the road to nowhere.’,5.60,648),(11202,’Patton’,12000000,”,’\”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.’,21.933822,’1970-01-25′,89800000,172,’Released’,’The Rebel Warrior’,7.30,323),(11208,’Wicker Park’,30000000,”,’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 left him without a word two years earlier, walking out of a restaurant one day.’,9.301562,’2004-09-03′,13001257,114,’Released’,’Passion never dies.’,6.70,157),(11212,’Baby\’s Day Out’,50000000,”,’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 than a little bit smarter than the three bumbling criminals.’,21.312186,’1994-07-01′,16671505,99,’Released’,’No bib. No crib. No problem.’,5.80,274),(11217,’Club Dread’,8500000,”,’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!’,2.620820,’2004-02-27′,5001655,104,’Released’,’A vacation to die for’,5.10,107),(11219,’The Trouble with Harry’,1200000,”,’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.’,6.920873,’1955-10-03′,7000000,99,’Released’,’A THRILLER with a difference!’,6.90,149),(11228,’Daylight’,80000000,”,’A group of armed robbers fleeing the police head for the New Jersey Tunnel and run right into trucks transporting toxic waste. The spectacular explosion that follows results in both ends of the tunnel collapsing and the handful of people who survived the explosion are now in peril. Kit Latura is the only man with the skill and knowledge to lead the band of survivors out of the tunnel before the structure collapses.’,16.681269,’1996-12-06′,159212469,115,’Released’,’No air. No escape. No time.’,5.80,378),(11229,’Freeway’,3000000,”,’Following the arrest of her mother, Ramona, young Vanessa Lutz decides to go in search of her estranged grandmother. On the way, she is given a ride by school counselor Bob Wolverton. During the journey, Lutz begins to realize that Bob is the notorious I-5 Killer and manages to escape by shooting him several times. Wounded but still very much alive, Bob pursues Lutz across the state in this modern retelling of Little Red Riding Hood.’,4.682881,’1996-08-23′,0,110,’Released’,’Her life is no fairy tale.’,6.50,95),(11232,’Kate & Leopold’,0,”,’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.’,11.940711,’2001-12-25′,0,118,’Released’,’If they lived in the same century they\’d be perfect for each other.’,6.00,418),(11237,’Anacondas: The Hunt for the Blood Orchid’,20000000,”,’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, fifty-foot-long flesh-eaters who\’ll stop at nothing to protect their breeding ground, the blood orchid\’s home.’,9.855474,’2004-08-26′,70992898,97,’Released’,”,4.90,199),(11240,’My Beautiful Laundrette’,860000,”,’Omar, a homosexual Pakistani boy living in London with his alcoholic father, lifts a chunk of drug money from another Pakistani and, with his lover Johnny, decides to renovate a grungy laundrette.’,3.703005,’1985-09-07′,2451545,97,’Released’,”,6.60,51),(11247,’A Cinderella Story’,19000000,’http://www2.warnerbros.com/acinderellastory/index.html’,’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 in Sam\’s life goes wacko!’,25.281320,’2004-07-10′,70067909,95,’Released’,’Once upon a time… can happen any time.’,6.10,713),(11249,’Seed of Chucky’,12000000,”,’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’,12.653831,’2004-11-11′,24829644,87,’Released’,’Fear The Second Coming’,4.90,287),(11253,’Hellboy II: The Golden Army’,85000000,”,’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.’,58.579760,’2008-07-11′,160388063,120,’Released’,’Saving the world is a hell of a job.’,6.50,1527),(11257,’A Room with a View’,3000000,”,’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?’,7.961559,’1985-12-13′,20966644,117,’Released’,”,6.90,156),(11258,’Hard Rain’,70000000,”,’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.’,10.930537,’1998-01-16′,19870567,97,’Released’,’In the worst storm in living memory, one guard stands between five men and three million dollars.’,5.50,179),(11260,’Meet Dave’,60000000,’http://www.meetdavemovie.com/’,’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.’,18.676291,’2008-07-08′,50650079,90,’Released’,’There\’s a Whole Other World Going on Inside of Him.’,5.00,371),(11282,’Harold & Kumar Go to White Castle’,9000000,”,’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.’,18.514292,’2004-05-30′,23936908,88,’Released’,’Fast Food. High Times.’,6.60,693),(11283,’Nanny McPhee’,25000000,”,’Widower Cedric Brown (Colin Firth) hires Nanny McPhee (Emma Thompson) to care for his seven rambunctious children, who have chased away all previous nannies. Taunted by Simon (Thomas Sangster) and his siblings, Nanny McPhee uses mystical powers to instill discipline. And when the children\’s great-aunt and benefactor, Lady Adelaide Stitch (Angela Lansbury), threatens to separate the kids, the family pulls together under the guidance of Nanny McPhee.’,24.356483,’2005-10-21′,122489822,97,’Released’,’You\’ll Learn To Love Her. Warts And All.’,6.40,711),(11284,’Freddy\’s Dead: The Final Nightmare’,11000000,”,’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.’,16.856231,’1991-09-05′,34872033,89,’Released’,’They saved the best for last.’,5.10,272),(11287,’A League of Their Own’,40000000,”,’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.’,21.661028,’1992-07-01′,107458785,128,’Released’,’To achieve the incredible, you have to attempt the impossible.’,6.70,354),(11298,’The Howling’,1000000,”,’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.’,6.532855,’1981-04-03′,17985893,91,’Released’,’Imagine your worst fear a reality’,6.40,161),(11302,’Bananas’,2000000,”,’When a bumbling New Yorker is dumped by his activist girlfriend, he travels to a tiny Latin American nation and becomes involved in its latest rebellion.’,5.941852,’1971-04-28′,11833696,82,’Released’,”,6.70,165),(11306,’Extreme Measures’,38000000,”,’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.’,3.426555,’1996-09-27′,17380126,118,’Released’,’Not all surgery is intended to cure.’,5.70,80),(11308,’The Hotel New Hampshire’,7500000,”,’The film talks about a family that weathers all sorts of disasters and keeps going in spite of it all. It is noted for its wonderful assortment of oddball characters.’,2.226412,’1984-03-09′,0,109,’Released’,’If you experienced \”The World According To Garp\” and found it witty, delightful and totally unpredictable, then be happily surprised all over again when you join the fun and games that go on at the…Hotel New Hampshire.’,5.80,26),(11313,’Hearts in Atlantis’,31000000,”,’A widowed mother and her son change when a mysterious stranger enters their lives.’,7.067620,’2001-09-07′,24185781,101,’Released’,’What if one of life\’s great mysteries moved in upstairs?’,6.40,131),(11321,’Seven Pounds’,55000000,’http://www.sonypictures.com/movies/sevenpounds/’,’An IRS agent with a fateful secret embarks on an extraordinary journey of redemption by forever changing the lives of seven strangers.’,41.472404,’2008-12-18′,168167691,123,’Released’,’Seven names. Seven strangers. One secret.’,7.50,2039),(11322,’Public Enemies’,80000000,’http://www.publicenemies.net/’,’Depression-era bank robber John Dillinger\’s charm and audacity endear him to much of America\’s downtrodden public, but he\’s also a thorn in the side of J. Edgar Hoover and the fledgling FBI. Desperate to capture the elusive outlaw, Hoover makes Dillinger his first Public Enemy Number One and assigns his top agent, Melvin Purvis, the task of bringing him in dead or alive.’,33.691694,’2009-07-01′,214104620,140,’Released’,’America\’s Most Wanted.’,6.50,1344),(11323,’The Informant!’,22000000,’http://theinformantmovie.warnerbros.com/’,’A rising star at agri-industry giant Archer Daniels Midland (ADM), Mark Whitacre suddenly turns whistleblower. Even as he exposes his companyâ��s multi-national price-fixing conspiracy to the FBI, Whitacre envisions himself being hailed as a hero of the common man and handed a promotion.’,17.772518,’2009-09-18′,35424826,108,’Released’,’Based on a tattle-tale.’,6.00,301),(11324,’Shutter Island’,80000000,’http://www.shutterisland.com/’,’World War II soldier-turned-U.S. Marshal Teddy Daniels investigates the disappearance of a patient from a hospital for the criminally insane, but his efforts are compromised by his troubling visions and also by a mysterious doctor.’,81.914696,’2010-02-18′,294804195,138,’Released’,’Someone is missing.’,7.80,6336),(11336,’The Dead Zone’,10000000,”,’Johnny Smith is a schoolteacher with his whole life ahead of him but, after leaving his fiancee\’s home one night, is involved in a car crash which leaves him in a coma for 5 years. When he wakes, he discovers he has an ability to see into the past, present and future life of anyone with whom he comes into physical contact.’,16.785120,’1983-10-21′,20766616,103,’Released’,’In his mind, he has the power to see the future. In his hands, he has the power to change it.’,6.90,311),(11342,’Warlock’,7000000,”,’A warlock flees from the 17th to the 20th century, with a witch-hunter in hot pursuit. A Warlock (Julian Sands) is taken captive in Boston, Massachusetts in 1691 by a witch-hunter Giles Redferne (Richard Grant). He is sentenced to death for his activities, including the bewitching of Redferne\’s bride-to-be, but before the execution a demon appears and propels the Warlock forward in time to 20th century Los Angeles, California. Redferne follows through the portal.\r The Warlock attempts to assemble The Grand Grimoire, a Satanic book that will reveal the \”true\” name of God. Redferne and the Warlock then embark on a cat-and-mouse chase with the Grand Grimoire, and Kassandra (Lori Singer), a waitress who encounters Giles while he\’s attempting to find Warlock.’,9.887662,’1989-06-01′,0,103,’Released’,’Satan also has one son.’,5.80,95),(11351,’Jeepers Creepers 2′,17000000,”,’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.’,19.045146,’2003-08-08′,63102666,104,’Released’,’He can taste your fear.’,5.50,299),(11353,’Bowfinger’,55000000,”,’On the verge of bankruptcy and desperate for his big break, aspiring filmmaker Bobby Bowfinger concocts a crazy plan to make his ultimate dream movie. Rallying a ragtag team that includes a starry-eyed ingenue, a has-been diva and a film studio gofer, he sets out to shoot a blockbuster featuring the biggest star in Hollywood, Kit Ramsey — only without letting Ramsey know he\’s in the picture.’,13.191829,’1999-08-12′,0,97,’Released’,’The con is on.’,6.00,254),(11354,’The Upside of Anger’,0,’http://www.newline.com/properties/upsideofanger.html’,’After her husband runs off with his secretary, Terry Wolfmeyer is left to fend for herself — and her four daughters. As she hits rock bottom, Terry finds a friend and drinking buddy in next-door neighbor Denny, a former baseball player. As the two grow closer, and her daughters increasingly rely on Denny, Terry starts to have reservations about where their relationship is headed.’,6.246400,’2005-01-23′,0,118,’Released’,’Sometimes what tears us apart helps us put it back together.’,6.40,72),(11357,’Halloween 4: The Return of Michael Myers’,5000000,”,’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.’,9.302349,’1988-10-21′,17768757,88,’Released’,’Horror has returned to Haddonfield.’,5.90,209),(11358,’Walking Tall’,56000000,”,’A former U.S. soldier returns to his hometown to find it overrun by crime and corruption, which prompts him to clean house.’,23.438398,’2004-04-02′,57223890,86,’Released’,’One man will stand up for what\’s right.’,6.00,381),(11359,’The Indian in the Cupboard’,45000000,”,’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.’,11.095914,’1995-07-14′,0,96,’Released’,”,5.90,134),(11361,’Halloween 5: The Revenge of Michael Myers’,5000000,”,’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.’,8.008844,’1989-10-12′,11642254,96,’Released’,’Michael Lives, And This Time They\’re Ready!’,5.20,183),(11362,’The Count of Monte Cristo’,35000000,”,’Edmond Dantés\’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és escapes with the help of a fellow inmate and plots his revenge, cleverly insinuating himself into the French nobility.’,26.595983,’2002-01-23′,75395048,131,’Released’,’Prepare for adventure. Count on revenge.’,7.30,453),(11363,’She\’s the One’,3500000,”,’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’,8.406025,’1996-08-26′,9482579,96,’Released’,’A romantic comedy about two brothers… and the one thing that came between them.’,5.70,70),(11370,’The Musketeer’,40000000,”,’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.’,3.296933,’2001-09-07′,27053815,104,’Released’,’As you\’ve never seen it before.’,5.20,56),(11371,’The Score’,68000000,”,’An aging thief hopes to retire and live off his ill-gotten wealth when a young kid convinces him into doing one last heist.’,22.572323,’2001-07-13′,71069884,124,’Released’,’There are no partners in crime’,6.70,423),(11374,’Edtv’,80000000,”,’Video store clerk Ed agrees to have his life filmed by a camera crew for a tv network.’,14.298297,’1999-03-26′,0,122,’Released’,’Fame. Be careful. It\’s out there.’,5.70,166),(11375,’Hollywood Homicide’,75000000,”,’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.’,10.605084,’2003-06-09′,51142659,116,’Released’,”,5.00,166),(11377,’House on Haunted Hill’,19000000,”,’A remake of the 1959 film of the same name. A millionaire offers a group of diverse people $1,000,000 to spend the night in a haunted house with a horrifying past.’,13.664614,’1999-10-29′,40846082,93,’Released’,’Evil loves to party.’,5.50,209),(11382,’Bullets Over Broadway’,0,”,’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 Ellen. Meanwhile David puts up with Warner Purcell, the leading man who is a compulsive eater, Helen Sinclair, the grand dame who wants her part jazzed up, and Cheech, Olive\’s interfering hitman / bodyguard. Eventually, the playwright must decide whether art or life is more important.’,7.829295,’1994-10-14′,0,98,’Released’,”,7.00,130),(11386,’The Crying Game’,3705538,’http://www.miramax.com/movie/the-crying-game/’,’Irish Republican Army member Fergus (Stephen Rea) forms an unexpected bond with Jody (Forest Whitaker), a kidnapped British soldier in his custody, despite the warnings of fellow IRA members Jude (Miranda Richardson) and Maguire (Adrian Dunbar). Jody makes Fergus promise he\’ll visit his girlfriend, Dil (Jaye Davidson), in London, and when Fergus flees to the city, he seeks her out. Hounded by his former IRA colleagues, he finds himself increasingly drawn to the enigmatic, and surprising, Dil.’,8.839651,’1992-09-02′,62548947,112,’Released’,’Play At Your Own Risk.’,6.90,176),(11395,’The Santa Clause’,22000000,”,’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.’,16.234053,’1994-11-10′,189833357,97,’Released’,’What if your dad was Santa Claus?’,6.30,489),(11397,’Not Another Teen Movie’,16000000,”,’On a bet, a gridiron hero at John Hughes High School sets out to turn a bespectacled plain Jane into a beautiful and popular prom queen in this outrageous send-up of the teen movie genre.’,23.423082,’2001-12-07′,66468332,89,’Released’,’They served you Breakfast. They gave you Pie. Now weâ��re gonna stuff your face.’,5.50,431),(11398,’The Art of War’,40000000,”,’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.’,7.832337,’2000-08-23′,30199105,117,’Released’,’Who is your foe?’,5.60,135),(11400,’The New World’,30000000,”,’A drama about explorer John Smith and the clash between Native Americans and English settlers in the 17th century.’,19.106154,’2005-12-25′,30536013,135,’Released’,’Once discovered, it was changed forever.’,6.40,330),(11404,’Driving Lessons’,0,”,’A shy teenage boy trying to escape the influence of his domineering mother, has his world changed when he begins to work for a retired actress.’,7.667888,’2006-04-30′,0,98,’Released’,”,6.30,47),(11411,’Superman IV: The Quest for Peace’,17000000,”,’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.’,17.062117,’1987-07-23′,19300000,90,’Released’,’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.’,4.10,318),(11412,’The Long Kiss Goodnight’,65000000,”,’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’,15.858629,’1996-10-11′,89456761,120,’Released’,’What\’s forgotten is not always gone.’,6.50,314),(11426,’From Here to Eternity’,1650000,”,’In 1941 Hawaii, a private is cruelly punished for not boxing on his unit\’s team, while his captain\’s wife and second in command are falling in love.’,6.915201,’1953-08-04′,30500000,118,’Released’,’Pouring out of impassioned pages…brawling their way to greatness on the screen!’,7.20,133),(11431,’Fever Pitch’,30000000,”,’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.’,9.965073,’2005-04-06′,50451307,103,’Released’,’A Comedy About The Game of Love.’,5.90,182),(11439,’The Ghost Writer’,45000000,”,’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.’,21.118196,’2010-02-12′,60222298,128,’Released’,’Read between the lies.’,6.70,670),(11442,’Halloween: Resurrection’,13000000,”,’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!’,11.045593,’2002-07-01′,37664855,94,’Released’,’Evil finds its way home’,4.50,228),(11446,’Welcome to the Dollhouse’,0,”,’An unattractive 7th grader struggles to cope with suburban life as the middle child with un-attentive parents and bullies at school.’,5.870319,’1995-05-24′,0,88,’Released’,’Not all girls want to play with dolls.’,6.90,103),(11451,’Herbie Fully Loaded’,50000000,”,’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.’,12.050755,’2005-06-22′,66002004,101,’Released’,’Start your engines…’,5.10,542),(11452,’National Lampoonâ��s Van Wilder’,5000000,”,’Van Wilder has been attending college for far too many years and is scared to graduate, but Vanâ��s father eventually realizes what is going on. When he stops paying his son\’s tuition fees, Van must come up with the money if he wants to stay in college, so he and his friends come up with a great fund-raising idea â�� throwing parties. However, when the college magazine finds out and reporter, Gwen is sent to do a story on Van Wilder, things get a little complicated.’,35.108498,’2002-03-29′,38275483,92,’Released’,’Don\’t Graduate. Celebrate.’,5.90,858),(11453,’Deuce Bigalow: European Gigolo’,22000000,”,’Deuce Bigalow goes to Amsterdam after a little accident including two irritating kids and a bunch of aggressive dolphins. There he meets up with his old friend T.J. Hicks. But a mysterious killer starts killing some of Amsterdam\’s finest gigolos and T.J. is mistaken for the extremely gay murderer. Deuce must enter the gigolo industry again to find the real murderer and clear T.J.\’s name.’,10.259461,’2005-08-06′,22400154,83,’Released’,’For the women of Europe… The price of love just got a lot cheaper.’,4.70,225),(11456,’Domestic Disturbance’,75000000,”,’A divorced father discovers that his 12-year-old son\’s new stepfather is not what he made himself out to be.’,8.418560,’2001-10-30′,54249294,89,’Released’,’He will do anything to protect his family.’,5.40,113),(11457,’Life as a House’,18000000,”,’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.’,5.706767,’2001-10-25′,0,125,’Released’,’Seen from a distance, it\’s perfect.’,7.20,120),(11458,’People I Know’,20000000,”,’A New York press agent must scramble when his major client becomes embroiled in a huge scandal.’,6.377308,’2002-11-21′,0,100,’Released’,”,5.50,48),(11459,’Sky High’,35000000,’http://disney.go.com/disneypictures/skyhigh/’,’Set in a world where superheroes are commonly known and accepted, young Will Stronghold, the son of the Commander and Jetstream, tries to find a balance between being a normal teenager and an extraordinary being.’,11.041659,’2005-07-29′,86369815,100,’Released’,’Saving The World… One Homework Assignment At A Time.’,5.80,550),(11460,’Red Eye’,26000000,”,’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 decide what to do with the menacing man at her side.’,8.802626,’2005-08-04′,57891803,85,’Released’,’Fear takes flight.’,6.20,455),(11467,’America\’s Sweethearts’,0,”,’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.’,10.698929,’2001-07-17′,0,102,’Released’,’Hollywood\’s hottest couple just split up. It\’ll take more than special effects to reunite them.’,5.50,252),(11468,’Salton Sea’,18000000,”,’After the murder of his beloved wife, a man in search of redemption is set adrift in a world where nothing is as it seems. On his journey, he befriends slacker Jimmy \”The Finn\”, becomes involved in rescuing his neighbor Colette from her own demons, and gets entangled in a web of deceit full of unexpected twists and turns.’,10.991281,’2002-01-01′,676698,103,’Released’,’If you\’re looking for the truth, you\’ve come to the wrong place.’,7.00,104),(11469,’Black Knight’,0,”,’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.’,15.913783,’2001-11-21′,0,95,’Released’,’It\’s only a flesh wound!’,5.10,287),(11470,’Jason X’,11000000,”,’In the year 2455, Old Earth is now a contaminated planet abandoned for centuries — a brown world of violent storms, toxic landmasses and poisonous seas. Yet humans have returned to the deadly place that they once fled, not to live, but to research the ancient, rusting artifacts of the long-gone civilizations. But it\’s not the harmful environment that could prove fatal to the intrepid, young explorers who have just landed on Old Earth. For them, it\’s Friday the 13th, and Jason lives!’,11.220643,’2001-07-24′,16951798,91,’Released’,’Evil has an upgrade.’,4.50,291),(11478,’The Skulls’,15000000,”,’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.’,11.375032,’2000-03-31′,35007180,106,’Released’,’Getting in is easy. Getting out is a killer.’,5.80,156),(11495,’Firestarter’,15000000,”,’As youths, Andy McGee (David Keith) and his future wife, Vicky (Heather Locklear), participated in secret experiments, allowing themselves to be subjected to mysterious medical tests. Years later, the couple\’s daughter, Charlie (Drew Barrymore), begins to exhibit the ability of setting fires solely with her mind. This volatile talent makes the youngster extremely dangerous and soon she becomes a target for the enigmatic agency known as \”The Shop.\”‘,11.379652,’1984-05-11′,17080167,114,’Released’,’Will she have the power… to survive?’,5.90,173),(11499,’Frost/Nixon’,0,”,’For three years after being forced from office, Nixon remained silent. But in summer 1977, the steely, cunning former commander-in-chief agreed to sit for one all-inclusive interview to confront the questions of his time in office and the Watergate scandal that ended his presidency. Nixon surprised everyone in selecting Frost as his televised confessor, intending to easily outfox the breezy British showman and secure a place in the hearts and minds of Americans. Likewise, Frost\’s team harboured doubts about their boss\’s ability to hold his own. But as the cameras rolled, a charged battle of wits resulted.’,16.877840,’2008-10-15′,0,122,’Released’,’400 million people were waiting for the truth.’,7.20,328),(11507,’Body Double’,10000000,”,’After losing an acting role and his girlfriend, Jake Scully finally catches a break: he gets offered a gig house-sitting in the Hollywood Hills. While peering through the beautiful home\’s telescope one night, he spies a gorgeous blonde dancing in her window. But when he witnesses the girl\’s murder, it leads Scully through the netherworld of the adult entertainment industry on a search for answers — with porn actress Holly Body as his guide.’,9.525626,’1984-10-25′,8801940,114,’Released’,’You can\’t believe everything you see.’,6.40,137),(11509,’Silverado’,26000000,”,’Four unwitting heroes cross paths on their journey to the sleepy town of Silverado. Little do they know the town where their family and friends reside has been taken over by a corrupt sheriff and a murderous posse. It\’s up to the sharp-shooting foursome to save the day, but first they have to break each other out of jail, and learn who their real friends are.’,10.981038,’1985-07-10′,0,127,’Released’,’Four strangers become friends. Four friends become heros. On the road to…’,7.10,146),(11516,’Le peuple migrateur’,35866397,”,’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’,3.750740,’2001-12-12′,20217080,98,’Released’,”,7.00,49),(11517,’Money Train’,60000000,”,’A vengeful New York transit cop decides to steal a trainload of subway fares; his foster brother, a fellow cop, tries to protect him.’,10.004564,’1995-11-21′,35431113,103,’Released’,’Get on, or GET OUT THE WAY!’,5.40,222),(11519,’1941′,35000000,”,’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.’,10.032626,’1979-12-13′,31755742,113,’Released’,’Paranoia meets pandemonium.’,5.60,143),(11529,’Sweet Home Alabama’,30000000,”,’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.’,18.256028,’2002-09-26′,180622424,108,’Released’,’Sometimes What You\’re Looking For Is Right Where You Left It.’,6.00,394),(11531,’Book of Shadows: Blair Witch 2′,0,”,’Young adults become fascinated by the events of the three missing filmmakers in Maryland, so they decide to go into the same woods and find out what really happened.’,3.890223,’2000-10-27′,0,90,’Released’,’Evil Doesn\’t Die.’,4.30,212),(11535,’Rollerball’,0,”,’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 Cross life in the fast lane collides with reality when he learns that the league\’s owner (Reno) is orchestrating serious on-court accidents to boost ratings. Now Cross plans to take down the owner and his ruthless sport before the game puts an end to him!’,9.306253,’2002-02-08′,0,98,’Released’,’Go Ballistic’,3.40,106),(11536,’The Misfits’,4000000,”,’While filing for a divorce, beautiful ex-stripper Roslyn Taber ends up meeting aging cowboy-turned-gambler Gay Langland and former World War II aviator Guido Racanelli. The two men instantly become infatuated with Roslyn and, on a whim, the three decide to move into Guido\’s half-finished desert home together. When grizzled ex-rodeo rider Perce Howland arrives, the unlikely foursome strike up a business capturing wild horses.’,2.930058,’1961-01-01′,8200000,124,’Released’,’It shouts and sings with life … explodes with love!’,6.80,72),(11543,’Kingpin’,27000000,”,’After bowler Roy Munson 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ïve hit the circuit intent on settling an old score with Big Ern.’,17.329269,’1996-07-04′,25023434,113,’Released’,’You wouldn\’t want to meet these pinheads in an alley.’,6.70,244),(11544,’Lilo & Stitch’,80000000,”,’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.’,55.659988,’2002-06-21′,145771527,85,’Released’,’He\’s coming to our galaxy.’,7.10,1314),(11545,’Rushmore’,9000000,”,’When a beautiful first-grade teacher arrives at a prep school, she soon attracts the attention of an ambitious teenager named Max, who quickly falls in love with her. Max turns to the father of two of his schoolmates for advice on how to woo the teacher. However, the situation soon gets complicated when Max\’s new friend becomes involved with her, setting the two pals against one another in a war for her attention.’,18.289303,’1998-09-17′,17096053,93,’Released’,’Love. Expulsion. Revolution.’,7.50,676),(11546,’Police Academy: Mission to Moscow’,0,”,’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.’,11.946898,’1994-06-09′,126247,83,’Released’,’Just when we thought the Cold War was over, leave it to these guys to heat it up again.’,4.10,178),(11551,’Small Soldiers’,40000000,”,’When missile technology is used to enhance toy action figures, the toys soon begin to take their battle programming too seriously.’,23.088571,’1998-07-10′,54682547,110,’Released’,’The few, the proud, and the small.’,6.20,511),(11560,’High Crimes’,42000000,”,’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.’,14.046705,’2002-04-03′,63781810,115,’Released’,’Everything you trust. Everything you know. May be a lie…’,6.10,184),(11561,’Sleeper’,2000000,”,’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.’,10.664202,’1973-12-17′,18344729,89,’Released’,’Woody Allen takes a nostalgic look at the future.’,7.00,200),(11564,’Class of 1984′,4300000,”,’Andy is a new teacher at a inner city high school that is like nothing he has ever seen before. There is metal detectors at 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.’,5.643023,’1982-08-20′,0,98,’Released’,’Class of 1984. Is this the future?’,6.20,66),(11565,’Big Momma\’s House 2′,40000000,”,’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.’,17.612920,’2006-01-26′,138259062,99,’Released’,’The momma of all comedies is back!!!’,5.40,371),(11576,’It\’s a Mad, Mad, Mad, Mad World’,9400000,”,’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.’,14.562991,’1963-11-07′,60000000,163,’Released’,’The biggest entertainment ever to rock the screen with laughter!’,7.00,140),(11577,’Pat Garrett & Billy the Kid’,4638783,”,’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.’,4.495256,’1973-05-23′,11000000,106,’Released’,’Best of enemies. Deadliest of friends.’,7.20,65),(11583,’The First Great Train Robbery’,6000000,”,’In Victorian England, a master criminal makes elaborate plans to steal a shipment of gold from a moving train.’,12.434688,’1979-01-25′,0,110,’Released’,’Never have so few taken so much from so many.’,6.60,74),(11586,’Exorcist II: The Heretic’,14000000,”,’Bizarre nightmares plague Regan MacNeil four years after her possession and exorcism. Has the demon returned? And if so, can the combined faith and knowledge of a Vatican investigator and a hypnotic research specialist free her from its grasp?’,11.543363,’1977-06-17′,30749142,118,’Released’,’It\’s four years later… what does she remember?’,4.50,133),(11588,’The I Inside’,8800000,”,’Simon Cable wakes up in a hospital bed, confused and disoriented. He soon discovers from doctors that he has amnesia and is unable to remember the last two years of his life. Cable investigates what has happened to him and slowly pieces together his enigmatic past.’,3.789485,’2004-01-15′,0,90,’Released’,’His story began when it all ended’,5.90,62),(11592,’Serial Mom’,13000000,”,’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.’,6.170139,’1994-04-13′,7820688,95,’Released’,’Every Mom Wants to Be Wanted, But Not For Murder One!’,6.40,135),(11596,’New Nightmare’,14000000,”,’Freddy\’s back â�¦ 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?’,14.730796,’1994-10-13′,18090181,112,’Released’,’One, Two, Freddy\’s coming for you…’,6.40,291),(11598,’The Kentucky Fried Movie’,600000,”,’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.’,10.861167,’1977-08-10′,0,83,’Released’,’This movie is totally out of control!’,6.40,66),(11600,’Redacted’,5000000,”,’Redacted is a film written and directed by Brian De Palma that is a fictional drama loosely based on the Mahmudiyah killings in Iraq.’,3.792015,’2007-01-01′,782102,90,’Released’,”,6.20,37),(11601,’Stir of Echoes’,12000000,”,’After being hypnotized by his sister in law, Tom Witzky begins seeing haunting visions of a girl\’s ghost and a mystery begins to unfold around her.’,6.044161,’1999-09-10′,21133087,99,’Released’,’In every mind there is a door that should never be opened.’,6.50,330),(11615,’The Life of David Gale’,50000000,”,’A man against capital punishment is accused of murdering a fellow activist and is sent to death row.’,22.442241,’2003-02-21′,38955598,130,’Released’,’The crime is clear. The truth is not.’,7.30,480),(11618,’The Haunting’,80000000,”,’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 they soon see the true nature of its horror.’,19.375768,’1999-07-23′,91188905,113,’Released’,’Some houses are born bad.’,5.20,369),(11619,’Flushed Away’,149000000,’http://www.dreamworksanimation.com/flushed/’,’London high-society mouse, Roddy is flushed down the toilet by Sid, a common sewer rat. Hang on for a madcap adventure deep in the sewer bowels of Ratropolis, where Roddy meets the resourceful Rita, the rodent-hating Toad and his faithful thugs, Spike and Whitey.’,22.550135,’2006-10-22′,64459316,85,’Released’,’Someone\’s Going Down’,6.00,874),(11620,’Quo Vadis’,8250000,”,’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.’,7.973109,’1951-11-08′,30000000,171,’Released’,’THIS IS THE BIG ONE! The splendor and savagery of the world\’s wickedest empire! Three hours of spectacle you\’ll remember for a lifetime!’,7.00,63),(11622,’Blast from the Past’,35000000,”,’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.’,8.737058,’1999-02-12′,40263020,112,’Released’,’She\’d never met anyone like him. He\’s never met anyone… Period.’,6.30,245),(11624,’Everything You Always Wanted to Know About Sex *But Were Afraid to Ask’,2000000,”,’A collection of seven vignettes, which each address a question concerning human sexuality.’,13.223111,’1972-08-06′,18016290,88,’Released’,”,6.60,215),(11631,’Mamma Mia!’,52000000,”,’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.’,30.780599,’2008-07-03′,609841637,108,’Released’,’Take a trip down the aisle you\’ll never forget’,6.40,1386),(11632,’Vanity Fair’,23000000,”,’Beautiful, funny, passionate, and calculating, Becky is the orphaned daughter of a starving English artist and a French chorus girl. She yearns for a more glamorous life than her birthright promises and resolves to conquer English society by any means possible. A mere ascension into the heights of society is simply not enough. So Becky finds a patron in the powerful Marquess of Steyne whose whims enable Becky to realise her dreams. But is the ultimate cost too high for her?’,6.618149,’2004-09-01′,16123851,141,’Released’,’On September 1st, a heroine will rise.’,5.50,73),(11635,’Old School’,24000000,’http://www.oldschool-themovie.com’,’Three friends attempt to recapture their glory days by opening up a fraternity near their alma mater.’,24.701660,’2003-02-21′,87055349,91,’Released’,’All the fun of college, none of the education.’,6.60,541),(11637,’Are We There Yet?’,32000000,”,’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.’,13.590677,’2005-01-20′,97918663,95,’Released’,’24 hours. 350 miles. His girlfriend\’s kids. What could possibly go wrong?’,5.20,221),(11638,’Guess Who’,35000000,”,’The fiancé of an African-American woman who\’s met with skepticism and suspicion from her father when she takes him home for the all-important introduction. As the wedding approaches, Dad must come to terms with his future son-in-law.’,3.742630,’2005-03-25′,68915888,105,’Released’,’His house. His rules. Some in-laws were made to be broken.’,5.50,225),(11644,’Blow Out’,18000000,”,’Jack Terry is a master sound recordist who works on grade-B horror movies. Late one evening, he is recording sounds for use in his movies when he hears something unexpected through his sound equipment and records it. Curiosity gets the better of him when the media become involved, and he begins to unravel the pieces of a nefarious conspiracy. As he struggles to survive against his shadowy enemies and expose the truth, he does not know whom he can trust.’,13.628601,’1981-07-24′,12000000,108,’Released’,’Murder has a sound all of its own!’,7.30,236),(11648,’Must Love Dogs’,30000000,’http://www2.warnerbros.com/mustlovedogs/’,’Sarah Nolan is 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.’,11.120167,’2005-07-21′,58405313,98,’Released’,”,5.80,140),(11658,’í��극기 í��ë� 리며’,0,”,’In 1950, in South Korea, shoe-shiner Jin-tae Lee and his 18-year-old old student brother, Jin-seok Lee, form a poor but happy family with their mother, Jin-tae\’s fiancé Young-shin Kim, and her young sisters. Jin-tae and his mother are tough workers, who sacrifice themselves to send Jin-seok to the university. When North Korea invades the South, the family escapes to a relative\’s house in the country, but along their journey, Jin-seok is forced to join the army to fight in the front, and Jin-tae enlists too to protect his young brother. The commander promises Jin-tae that if he gets a medal he would release his brother, and Jin-tae becomes the braver soldier in the company. Along the bloody war between brothers, the relationship of Jin-seok with his older brother deteriorates leading to a dramatic and tragic end.’,9.572705,’2004-02-05′,15,140,’Released’,”,7.40,133),(11661,’Joyeux Noël’,22000000,”,’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.’,13.960945,’2005-11-09′,17709155,116,’Released’,’France 1914. A moment of humanity that made history.’,7.20,212),(11665,’Get Smart’,80000000,’http://getsmartmovie.warnerbros.com/’,’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?’,23.496054,’2008-06-19′,230685453,110,’Released’,’Saving The World…And Loving It!’,6.00,1051),(11667,’Street Fighter’,35000000,”,’Col. Guile and various other martial arts heroes fight against the tyranny of Dictator M. Bison and his cohorts.’,19.286099,’1994-12-22′,99423521,102,’Released’,’The fight to save the world is on!’,4.10,325),(11676,’Nothing to Lose’,25000000,”,’Advertising executive Nick Beame learns that his wife is sleeping with his employer. In a state of despair, he encounters a bumbling thief whose attempted carjacking goes awry when Nick takes him on an involuntary joyride. Soon the betrayed businessman and the incompetent crook strike up a partnership and develop a robbery-revenge scheme. But it turns out that some other criminals in the area don\’t appreciate the competition.’,8.618208,’1997-07-18′,0,97,’Released’,’When the odds are against you, sometimes the only bet is yourself.’,6.30,174),(11678,’Vertical Limit’,75000000,’https://www.epicbuzz.net/movies/vertical-limit’,’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.’,13.318744,’2000-12-08′,215663859,124,’Released’,’The Mountain Will Decide.’,5.90,283),(11679,’xXx: State of the Union’,60000000,’http://www.sonypictures.com/movies/xxxstateoftheunion/’,’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).’,36.689223,’2005-04-27′,71073932,101,’Released’,’Prepare for the next level’,4.70,549),(11683,’Land of the Dead’,15000000,”,’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.’,15.262492,’2005-06-24′,46770602,93,’Released’,’The dead shall inherit the Earth.’,6.00,381),(11687,’Les visiteurs’,0,”,’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’,8.893676,’1993-01-27′,0,107,’Released’,’They Weren\’t Born Yesterday!’,7.10,420),(11688,’The Emperor\’s New Groove’,100000000,”,’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.’,51.113717,’2000-12-09′,169327687,78,’Released’,’It\’s All About…..ME!’,7.20,1490),(11690,’Bloodsport’,1500000,”,’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.’,17.496990,’1988-02-26′,11806119,92,’Released’,’The true story of an American ninja.’,6.60,363),(11692,’The Adventures of Pluto Nash’,100000000,”,’The year is 2087, the setting is the moon. Pluto Nash, the high-flying successful owner of the hottest nightclub in the universe, 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.’,12.092241,’2002-08-15′,7103973,95,’Released’,’Action\’s future has arrived…’,4.40,142),(11697,’The Man Who Shot Liberty Valance’,3200000,”,’A senator, who became famous for killing a notorious outlaw, returns for the funeral of an old friend and tells the truth about his deed.’,11.735287,’1962-04-22′,8000000,123,’Released’,’Together For The First Time – James Stewart – John Wayne – in the masterpiece of four-time Academy Award winner John Ford’,7.40,265),(11699,’The Bad Lieutenant: Port of Call – New Orleans’,25000000,”,’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.’,17.339852,’2009-09-11′,10589102,122,’Released’,’The only criminal he can\’t catch is himself.’,6.00,326),(11702,’The Replacement Killers’,30000000,”,’Hired assassin John Lee is asked by Chinatown crime boss Terence Wei to murder the young son of policeman Stan Zedkov. Lee has the boy in his sights, but his conscience gets the better of him, and he spares the child\’s life. Afraid that Wei will take revenge on his family in China, Lee seeks out expert forger Meg Coburn to obtain the passport he needs to get out of the country, but a band of replacement killers is soon on his trail.’,9.607391,’1998-02-06′,19204929,87,’Released’,’Kill or be replaced.’,6.00,127),(11770,’å°�æ��足ç��’,0,”,’A young Shaolin follower reunites with his discouraged brothers to form a soccer team using their martial art skills to their advantage.’,17.547680,’2001-07-12′,42776760,113,’Released’,’Get ready to kick some grass!’,6.60,491),(11775,’Intolerable Cruelty’,60000000,”,’A revenge-seeking gold digger marries a womanizing Beverly Hills lawyer with the intention of making a killing in the divorce.’,22.620125,’2003-09-02′,119940815,100,’Released’,’They can\’t keep their hands off each others assets.’,5.80,391),(11778,’The Deer Hunter’,15000000,”,’A group of working-class friends decides to enlist in the Army during the Vietnam War and finds it to be hellish chaos — not the noble venture they imagined. Before they left, Steven married his pregnant girlfriend — and Michael and Nick were in love with the same woman. But all three are different men upon their return.’,19.786392,’1978-12-08′,50000000,183,’Released’,’One of the most important and powerful films of all time!’,7.80,921),(11780,’Rob Roy’,28000000,”,’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.’,10.703456,’1995-04-13′,31596911,139,’Released’,’Honor made him a man. Courage made him a hero. History made him a legend.’,6.50,148),(11798,’This Is England’,2380000,’http://www.thisisenglandmovie.co.uk/’,’A story about a troubled boy growing up in England, set in 1983. He comes across a few skinheads on his way home from school, after a fight. They become his new best friends even like family. Based on experiences of director Shane Meadows.’,8.395624,’2006-09-12′,8176544,101,’Released’,’Run with the crowd, stand alone, you decide.’,7.40,363),(11802,’Space Chimps’,37000000,’http://www.spacechimpspower.com/’,’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.’,6.293217,’2008-07-17′,63800345,81,’Released’,’Houston, we have a problem!’,5.20,99),(11804,’White Noise’,10000000,”,’An architect\’s desire to speak with his wife from beyond the grave using EVP (Electronic Voice Phenomenon), becomes an obsession with supernatural repercussions.’,14.447723,’2005-01-07′,91196419,101,’Released’,’The line separating the living from the dead has been crossed.’,5.60,261),(11812,’The Sweetest Thing’,43000000,’http://www.sonypictures.com/movies/thesweetestthing/’,’Christina\’s love life is stuck in neutral. After years of avoiding the hazards of a meaningful relationship, one night while club-hopping with her girlfriends, she meets Peter, her perfect match. Fed up with playing games, she finally gets the courage to let her guard down and follow her heart, only to discover that Peter has suddenly left town. Accompanied by Courtney, she sets out to capture the one that got away.’,18.656320,’2002-04-12′,68696770,84,’Released’,’A romantic comedy without the sugar.’,5.30,280),(11817,’Bulletproof Monk’,52000000,”,’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.’,15.207070,’2003-03-28′,0,104,’Released’,’A power beyond measure requires a protector without equal.’,5.10,278),(11818,’Kurtlar vadisi – Irak’,10000000,”,’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.’,1.465762,’2006-02-03′,0,122,’Released’,’Some Men Are Born to be Heroes’,4.30,7),(11820,’Mona Lisa Smile’,65000000,”,’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.’,19.718544,’2003-12-19′,0,117,’Released’,’In a world that told them how to think, she showed them how to live.’,6.50,393),(11823,’Wimbledon’,31000000,”,’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.’,16.736734,’2004-09-13′,41512007,98,’Released’,’She\’s the golden girl. He\’s the longshot. It\’s a match made in…’,6.00,293),(11826,’Sexy Beast’,5000000,”,’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.’,11.212730,’2000-09-13′,0,89,’Released’,’There\’s a bit of the beast in all of us.’,7.00,217),(11827,’Heavy Metal’,9300000,”,’A glowing orb terrorizes a young girl with a collection of stories of dark fantasy, eroticism and horror.’,12.928269,’1981-08-07′,0,90,’Released’,’A Step Beyond Science Fiction’,6.20,148),(11831,’Amistad’,36000000,”,’In 1839, the slave ship Amistad set sail from Cuba to America. During the long trip, Cinque leads the slaves in an unprecedented uprising. They are then held prisoner in Connecticut, and their release becomes the subject of heated debate. Freed slave Theodore Joadson wants Cinque and the others exonerated and recruits property lawyer Roger Baldwin to help his case. Eventually, John Quincy Adams also becomes an ally.’,3.698276,’1997-12-03′,74000000,155,’Released’,’Freedom is not given. It is our right at birth. But there are some moments when it must be taken.’,6.80,316),(11835,’Death Sentence’,20000000,”,’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.’,12.643703,’2007-08-31′,16974459,105,’Released’,’Protect what\’s yours.’,6.50,297),(11836,’The SpongeBob SquarePants Movie’,30000000,”,’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.’,27.870755,’2004-11-14′,140161792,87,’Released’,’Bigger. Better. More absorbent.’,6.70,574),(11843,’The Return of the Pink Panther’,5000000,”,’The famous Pink Panther jewel 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 Asian manservant â�� to reveal the identity of \’The Phantom\’.’,6.470766,’1975-05-21′,41833347,113,’Released’,”,6.70,137),(11858,’Renaissance Man’,40000000,”,’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.’,4.516953,’1994-06-03′,24332324,128,’Released’,’One Man\’s Mission To Teach The Few, The Proud… The Impossible!’,5.90,81),(11863,’Jade’,50000000,”,’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.’,8.189406,’1995-10-13′,9851610,95,’Released’,’Some fantasies go too far.’,5.20,44),(11866,’Flight of the Phoenix’,45000000,”,’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.’,20.374308,’2004-12-17′,21009180,113,’Released’,’Out of the ashes, hope will rise.’,5.70,276),(11870,’Big Fat Liar’,15000000,”,’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.’,9.125594,’2002-02-08′,52970014,88,’Released’,’The truth is never overrated’,5.60,197),(11873,’The Color of Money’,13800000,”,’Former pool hustler \”Fast Eddie\” Felson decides he wants to return to the game by taking a pupil. He meets talented but green Vincent Lauria and proposes a partnership. As they tour pool halls, Eddie teaches Vincent the tricks of scamming, but he eventually grows frustrated with Vincent\’s showboat antics, leading to an argument and a falling-out. Eddie takes up playing again and soon crosses paths with Vincent as an opponent.’,17.339300,’1986-10-07′,52293982,119,’Released’,’The Hustler isn\’t what he used to be. But he has the next best thing. A kid who is.’,6.70,291),(11876,’Le Hussard sur le toit’,35000000,”,’In a time of war and disease, a young officer gallantly tries to help a young woman find her husband.’,2.877488,’1995-09-20′,15000000,135,’Released’,”,6.70,25),(11887,’High School Musical 3: Senior Year’,0,’http://disney.go.com/disneypictures/highschoolmusical3′,’It\’s almost graduation day for high school seniors Troy, Gabriella, Sharpay, Chad, Ryan and Taylor â�� and the thought of heading off in separate directions after leaving East High has these Wildcats thinking they need to do something they\’ll remember forever. Together with the rest of the Wildcats, they stage a spring musical reflecting their hopes and fears about the future and their unforgettable experiences growing up together. But with graduation approaching and college plans in question, what will become of the dreams, romances, and friendships of East High\’s senior Wildcats?’,21.801188,’2008-10-22′,0,116,’Released’,”,6.20,821),(11888,’Snow Dogs’,33000000,”,’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.’,13.655735,’2002-01-18′,0,99,’Released’,’Get ready for mush hour!’,5.30,185),(11889,’Iris’,0,”,’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.’,2.714043,’2001-12-14′,0,91,’Released’,”,6.20,47),(11891,’Kung Pow: Enter the Fist’,0,”,’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.\r 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’,8.288813,’2002-01-25′,0,81,’Released’,”,6.10,159),(11892,’Murder by Numbers’,50000000,”,’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.’,16.167093,’2002-04-19′,56714147,120,’Released’,’The only flaw in their plan was her.’,6.00,268),(11901,’High Plains Drifter’,5500000,”,’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.’,19.127239,’1973-04-19′,15700000,105,’Released’,’Welcome to Hell’,7.40,278),(11904,’Young Sherlock Holmes’,18000000,”,’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.’,8.321586,’1985-12-04′,0,109,’Released’,’Before a lifetime of adventure, they lived the adventure of a lifetime.’,6.70,167),(11908,’Hatchet’,0,’http://www.hatchetmovie.com/’,’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.’,12.677016,’2006-04-27′,0,83,’Released’,’Stay out of the swamp.’,5.70,159),(11917,’Saw V’,10800000,”,’Detective Hoffman is seemingly the last person alive to carry on the Jigsaw legacy. But when his secret is threatened, he must go on the hunt to eliminate all the loose ends.’,32.943848,’2008-10-23′,113857533,92,’Released’,’You Won\’t Believe How It Ends’,5.90,820),(11918,’Superhero Movie’,35000000,”,’The team behind Scary Movie takes on the comic book genre in this tale of Rick Riker, a nerdy teen imbued with superpowers by a radioactive dragonfly. And because every hero needs a nemesis, enter Lou Landers, aka the villainously goofy Hourglass.’,19.088655,’2008-03-27′,25871834,85,’Released’,’The greatest Superhero movie of all time! (not counting all the others)’,4.90,379),(11932,’Bride of Chucky’,25000000,”,’Chucky hooks up with another murderous doll, the bridal gown-clad Tiffany, for a Route 66 murder spree with their unwitting hosts.’,14.340095,’1998-10-16′,50671850,89,’Released’,’Chucky Gets Lucky.’,5.50,350),(11934,’The Hudsucker Proxy’,30000000,”,’A naive business graduate is installed as president of a manufacturing company as part of a stock scam.’,14.188982,’1994-03-11′,0,111,’Released’,’They took him for a fall guy… but he threw them for a hoop.’,7.10,275),(11935,’Capricorn One’,5000000,”,’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’,11.095219,’1977-12-10′,0,123,’Released’,’The mission was a sham. The murders were real.’,6.40,131),(11954,’Lifeforce’,25000000,”,’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.’,12.183620,’1985-06-20′,0,116,’Released’,’In the blink of an eye, the terror begins.’,6.20,135),(11956,’Chacun Cherche Son Chat’,0,”,’When Chloe (Garance Clavel), a young Parisian, decides to take a long-overdue vacation, she has to find someone to look after Gris-Gris, her beloved cat. Everyone, including her gay male roommate, refuses to help her, but she finally makes an arrangement with the elderly Madame Renée (Renée Le Calm), who often watches over other peoples\’ cats and dogs. However, when Chloe comes back, Madame Renée tells her that unfortunately the cat has been lost, and the unlucky owner goes on a search for her dear animal friend. While looking for the cat, she meets many colorful characters who populate the neighborhood.’,1.410387,’1996-04-03′,0,91,’Released’,’No man. No job. No cat.’,6.10,16),(11959,’UHF’,5000000,”,’The eccentric new manager of a UHF television channel tries to save the station from financial ruin with an odd array of programming.’,4.070044,’1989-07-21′,0,97,’Released’,’A lot of TV stations have forgotten what \”quality\” means, but not Channel 62. They NEVER knew what it meant.’,6.70,89),(11967,’Young Guns’,13000000,”,’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.’,9.499325,’1988-08-12′,44726644,107,’Released’,’Six reasons why the west was wild.’,6.60,258),(11968,’Into the Blue’,50000000,”,’When they take some friends on an extreme sport adventure, the last thing Jared and Sam expect to see below the shark-infested waters is a legendary pirate ship rumored to contain millions of dollars in gold. But their good fortune is short-lived, as a ruthless gang of criminals gets word of what they have uncovered.’,14.723467,’2005-09-30′,44434439,110,’Released’,’Treasure has its price.’,5.80,458),(11969,’Tombstone’,25000000,”,’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.’,30.537845,’1993-12-25′,56505065,130,’Released’,’Justice is coming.’,7.40,626),(11971,’Much Ado About Nothing’,8000000,”,’In this Shakespearean farce, Hero and her groom-to-be, Claudio, team up with Claudio\’s commanding officer, Don Pedro, the week before their wedding to hatch a matchmaking scheme. Their targets are sharp-witted duo Benedick and Beatrice — a tough task indeed, considering their corresponding distaste for love and each other. Meanwhile, meddling Don John plots to ruin the wedding.’,10.193770,’1993-05-07′,0,111,’Released’,’Romance. Mischief. Seduction. Revenge. Remarkable.’,7.20,189),(11973,’Thirteen Days’,80000000,”,’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.’,18.261210,’2000-12-24′,34566746,145,’Released’,’You\’ll never believe how close we came’,6.90,189),(11975,’The Rainmaker’,40000000,”,’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.’,12.229516,’1997-11-18′,45916769,135,’Released’,’They were totally unqualified to try the case of a lifetime… but every underdog has his day.’,6.70,235),(11977,’Caddyshack’,6000000,”,’At an exclusive country club, an ambitious young caddy, Danny Noonan, 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 favour of the elitist Judge Smails, and then the caddy golf tournament which Smails sponsors.’,15.929648,’1980-07-25′,39846344,98,’Released’,’The snobs against the slobs!’,6.60,365),(11978,’Men of Honor’,32000000,”,’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.’,24.147269,’2000-09-13′,48814909,129,’Released’,’History is made by those who break the rules.’,7.00,544),(11979,’Queen of the Damned’,35000000,”,’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?’,11.644243,’2002-02-10′,45479110,101,’Released’,’This time there are no interviews.’,5.40,239),(11980,’The Prophecy’,8,”,’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.’,11.818333,’1995-09-01′,16,98,’Released’,’On ancient ground, at the edge of the world, an evil born in heaven is about to be unleashed on earth.’,6.40,138),(11983,’Proof of Life’,65000000,”,’Alice hires a professional negotiator to obtain the release of her engineer husband, who has been kidnapped by anti-government guerrillas in South America.’,14.866901,’2000-12-08′,0,135,’Released’,”,6.00,208),(12079,’Spun’,2000000,”,’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.’,6.249262,’2002-06-01′,0,101,’Released’,’The ultimate speed freak\’s tale.’,6.60,132),(12085,’Mad Money’,0,”,’Three female employees of the Federal Reserve plot to steal money that is about to be destroyed.’,6.847133,’2008-01-17′,0,104,’Released’,”,5.90,140),(12088,’Fortress’,8000000,”,’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’,8.708229,’1992-09-30′,6739141,95,’Released’,’The high-tech prison thirty stories below ground. Built to withstand anything… Execpt an innocent man.’,5.70,168),(12090,’Just Married’,18000000,”,’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.’,18.475180,’2003-01-09′,101564935,95,’Released’,’Welcome to the honeymoon from hell.’,5.30,404),(12093,’Lilja 4-Ever’,0,”,’Lilya lives in poverty and dreams of a better life. Her mother moves to the United States and abandons her to her aunt, who neglects her. Lilya hangs out with her friends, Natasha and Volodya, who is suicidal. Desperate for money, she starts working as a prostitute, and later meets Andrei. He offers her a good job in Sweden, but when Lilya arrives her life quickly enters a downward spiral.’,7.759215,’2002-08-23′,0,109,’Released’,”,7.70,139),(12094,’Jackass Number Two’,11000000,”,’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.’,11.227087,’2006-09-22′,72778712,95,’Released’,’Guess who just made number two?’,6.40,298),(12096,’The Pink Panther’,0,”,’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.’,25.450534,’2006-01-18′,0,93,’Released’,’Pardon His French.’,5.60,550),(12100,’Windtalkers’,115000000,”,’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.’,18.714197,’2002-06-14′,77628265,134,’Released’,’Honor Was Their Code.’,5.80,341),(12103,’Don\’t Say a Word’,50000000,”,’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..’,11.596207,’2001-09-28′,100020092,113,’Released’,’…I\’ll never tell.’,6.00,220),(12106,’The Quick and the Dead’,32000000,”,’A mysterious woman comes to compete in a quick-draw elimination tournament, in a town taken over by a notorious gunman.’,16.473355,’1995-02-09′,18552460,107,’Released’,’Think you are quick enough?’,6.30,427),(12107,’Nutty Professor II: The Klumps’,84000000,”,’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.’,17.783361,’2000-07-27′,123307945,106,’Released’,’The Klumps are back!’,4.70,332),(12109,’It\’s All Gone Pete Tong’,2000000,”,’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.’,3.911445,’2004-09-12′,120620,90,’Released’,”,7.10,52),(12113,’Body of Lies’,70000000,’http://wwws.warnerbros.co.uk/bodyoflies/’,’The CIAâ��s hunt is on for the mastermind of a wave of terrorist attacks. Roger Ferris is the agencyâ��s man on the ground, moving from place to place, scrambling to stay ahead of ever-shifting events. An eye in the sky â�� a satellite link â�� watches Ferris. At the other end of that real-time link is the CIAâ��s Ed Hoffman, strategizing events from thousands of miles away. And as Ferris nears the target, he discovers trust can be just as dangerous as it is necessary for survival.’,37.507136,’2008-10-10′,113280098,128,’Released’,’Trust no one. Deceive everyone.’,6.50,895),(12117,’Instinct’,80000000,”,’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 things about himself and life, and so does Anthony Hopkins character, Dr. Powell.’,7.386394,’1999-06-04′,0,126,’Released’,”,6.20,146),(12120,’My Stepmother is an Alien’,20000000,”,’Trying to rescue her home planet from destruction, a gorgeous extraterrestrial named Celeste arrives on Earth and begins her scientific research. She woos quirky scientist Dr. Steve Mills, a widower with a young daughter. Before long, Celeste finds herself in love with Steve and her new life on Earth, where she experiences true intimacy for the first time. But when she loses sight of her mission, she begins to question where she belongs.’,9.455596,’1988-12-09′,13854000,108,’Released’,’Man\’s closest encounter.’,5.30,131),(12123,’Chain Reaction’,50000000,”,’Two researchers in a green alternative energy project are put on the run when they are framed for murder and treason.’,20.588620,’1996-08-02′,60209334,107,’Released’,’Reaction Time 8-4-96′,5.30,284),(12133,’Step Brothers’,65000000,”,’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.’,22.977983,’2008-07-25′,128107642,98,’Released’,’They grow up so fast.’,6.50,1062),(12138,’3000 Miles to Graceland’,62000000,”,’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.’,11.262655,’2001-02-23′,18720175,125,’Released’,’Crime Is King.’,5.80,178),(12142,’Alone in the Dark’,20000000,”,’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.’,9.292987,’2005-01-28′,10442808,96,’Released’,’Can mankind defeat the army of darkness unleashed by an ancient evil cult?’,3.10,173),(12144,’The Land Before Time’,12300000,”,’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 one a different species, and they encounter several obstacles as they learn to work together in order to survive.’,28.670193,’1988-11-18′,84460846,69,’Released’,’A new adventure is born.’,7.00,640),(12149,’Frailty’,11000000,”,’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.\”‘,16.003958,’2001-11-17′,13110448,100,’Released’,’No Soul Is Safe.’,7.00,334),(12150,’Sea of Love’,19000000,”,’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.’,11.473160,’1989-09-15′,110879513,113,’Released’,’Deception is dangerous. Desire is deadly.’,6.70,141),(12153,’White Chicks’,37000000,”,’Two FBI agent brothers, Marcus and Kevin Copeland, accidentally foil a drug bust. As punishment, they are forced to escort a pair of socialites to the Hamptons, where they\’re going to be used as bait for a kidnapper. But when the girls realize the FBI\’s plan, they refuse to go. Left without options, Marcus and Kevin decide to pose as the sisters, transforming themselves from African-American men into a pair of blonde, white women.’,28.703007,’2004-06-23′,113086475,109,’Released’,’They\’re going deep undercover.’,6.30,679),(12154,’Three Men and a Baby’,0,”,’Three bachelors find themselves forced to take care of a baby left by one of the guy\’s girlfriends.’,12.335827,’1987-11-27′,0,102,’Released’,’They changed her diapers. She changed their lives.’,5.80,253),(12155,’Alice in Wonderland’,200000000,’http://disney.go.com/wonderland/’,’Alice, an unpretentious and individual 19-year-old, is betrothed to a dunce of an English nobleman. At her engagement party, she escapes the crowd to consider whether to go through with the marriage and falls down a hole in the garden after spotting an unusual rabbit. Arriving in a strange and surreal place called \’Underland,\’ she finds herself in a world that resembles the nightmares she had as a child, filled with talking animals, villainous queens and knights, and frumious bandersnatches. Alice realizes that she is there for a reason â�� to conquer the horrific Jabberwocky and restore the rightful queen to her throne.’,78.530105,’2010-03-03′,1025491110,108,’Released’,’You\’re invited to a very important date.’,6.40,4645),(12158,’Vampire in Brooklyn’,14000000,”,’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.’,6.772615,’1995-10-27′,19800000,100,’Released’,’A comic tale of horror and seduction.’,4.50,111),(12159,’What Dreams May Come’,85000000,”,’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.’,21.891078,’1998-10-02′,71485043,113,’Released’,’After life there is more. The end is just the beginning.’,6.80,577),(12160,’Wyatt Earp’,63000000,”,’Covering the life and times of one of the West\’s most iconic heroes Wyatt Earp weaves an intricate tale of 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.’,13.859307,’1994-06-24′,25052000,191,’Released’,’The epic story of love and adventure in a lawless land.’,6.50,202),(12162,’The Hurt Locker’,15000000,’http://www.thehurtlocker-movie.com/’,’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.’,47.006162,’2008-10-10′,42000000,131,’Released’,’You\’ll know when you\’re in it.’,7.20,1840),(12163,’The Wrestler’,6000000,’http://www.thewrestlermovie.com/’,’Aging wrestler Randy \”The Ram\” Robinson is long past his prime but still ready and rarin\’ to go on the pro-wrestling circuit. After a particularly brutal beating, however, Randy hangs up his tights, pursues a serious relationship with a long-in-the-tooth stripper, and tries to reconnect with his estranged daughter. But he can\’t resist the lure of the ring and readies himself for a comeback.’,40.196514,’2008-09-07′,44703995,109,’Released’,’Love. Pain. Glory.’,7.30,1000),(12177,’The Love Guru’,62000000,’http://www.lovegurumovie.com/’,’Born in America and raised in an Indian ashram, Pitka returns to his native land to seek his fortune as a spiritualist and self-help expert. His skills are put to the test when he must get a brokenhearted hockey player\’s marriage back on track in time for the man to help his team win the Stanley Cup.’,13.218008,’2008-06-20′,41819064,87,’Released’,’His Karma is Huge’,4.30,242),(12182,’Nick and Norah\’s Infinite Playlist’,9000000,”,’Nick cannot stop obsessing over his ex-girlfriend, Tris, until Tris\’ friend Norah suddenly shows interest in him at a club. Thus beings an odd night filled with ups and downs as the two keep running into Tris and her new boyfriend while searching for Norah\’s drunken friend, Caroline, with help from Nick\’s band mates. As the night winds down, the two have to figure out what they want from each other.’,20.452449,’2008-10-03′,32973937,89,’Released’,’Every night has a soundtrack.’,6.40,379),(12183,’The Wendell Baker Story’,0,”,’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.’,1.265683,’2005-08-03′,0,99,’Released’,”,5.20,16),(12184,’The Other Boleyn Girl’,35000000,”,’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.’,22.939557,’2008-02-28′,0,115,’Released’,’Two sisters divided for the love of a king.’,6.40,477),(12192,’Pathology’,8000000,”,’Medical student Ted Grey (Milo Ventimiglia) graduates at the top of his class and quickly joins an elite pathology program, whose top students invite him into their circle. There he uncovers a gruesome secret: They play a game in which one tries to commit the perfect, undetectable murder, then the others compete to determine the victim\’s cause of death.’,9.782433,’2008-04-11′,0,95,’Released’,’No body is safe.’,5.60,144),(12193,’Four Christmases’,80000000,”,’Brad and Kate have made something of an art form out of avoiding their families during the holidays, but this year their foolproof plan is about go bust — big time. Stuck at the city airport after all departing flights are canceled, the couple is embarrassed to see their ruse exposed to the world by an overzealous television reporter. Now, Brad and Kate are left with precious little choice other than to swallow their pride and suffer the rounds.’,19.500893,’2008-11-26′,163733697,88,’Released’,’His father, her mother, his mother and her father all in one day.’,5.30,331),(12201,’Edge of Darkness’,80000000,”,’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.’,24.657931,’2010-01-29′,74901339,117,’Released’,’Some secrets take us to the edge.’,6.20,487),(12207,’é��æ�³äº�’,0,”,’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.’,15.046612,’1994-02-03′,0,102,’Released’,’He\’s got a secret weapon with a lot of kick.’,7.20,242),(12211,’Highlander: Endgame’,25000000,”,’Immortals Connor and Duncan Macleod join forces against a man from Connor\’s distant past in the highlands of Scotland, Kell, an immensely powerful immortal who leads an army of equally powerful and deadly immortal swordsmen and assassins. No immortal alive has been able to defeat Kell yet, and neither Connor nor Duncan are skilled enough themselves to take him on and live. The two of them eventually come to one inevitable conclusion; one of them must die so that the combined power of both the Highlanders can bring down Kell for good. There can be only one… the question is, who will it be?’,11.782725,’2000-09-01′,15843608,87,’Released’,’It will take two immortals to defeat the ultimate evil. But in the end, there can be only one.’,4.40,104),(12212,’Urban Legends: Final Cut’,14000000,”,’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.’,8.885017,’2000-09-19′,38574362,97,’Released’,’Legends Never Die.’,4.40,100),(12220,’The Story of Us’,50000000,”,’Ben and Katie Jordan are a married couple who go through hard times in fifteen years of marriage.’,6.225770,’1999-10-13′,58900031,95,’Released’,”,5.90,75),(12227,’White Fang’,14000000,”,’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.’,13.137240,’1991-01-18′,34793160,107,’Released’,’Where civilization ends, their journey begins.’,6.50,135),(12228,’Inside Deep Throat’,2000000,”,’In 1972, a seemingly typical shoestring budget pornographic film was made in a Florida hotel, \”Deep Throat,\” starring Linda Lovelace. This film would surpass the wildest expectation of everyone involved to become one of the most successful independent films of all time. It caught the public imagination which met the spirit of the times, even as the self appointed guardians of public morality struggled to suppress it, and created, for a brief moment, a possible future where sexuality in film had a bold artistic potential. This film covers the story of the making of this controversial film, its stunning success, its hysterical opposition along with its dark side of mob influence and allegations of the on set mistreatment of the film\’s star. In short, the combined events would redefine the popular appeal of pornography, even as more cynical developments would lead it down other paths.’,3.980072,’2005-02-11′,653621,92,’Released’,’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.’,6.80,31),(12244,’9′,30000000,”,’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.’,55.806402,’2009-08-19′,48428063,79,’Released’,’When our world ended their mission began.’,6.60,1262),(12245,’The Oxford Murders’,14100000,”,’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’,9.318033,’2008-01-18′,0,107,’Released’,’There is no way of finding a single absolute truth’,5.70,188),(12246,’Ð�онгол’,18000000,”,’The story recounts the early life of Genghis Khan, a slave who went on to conquer half the world in the 11th century.’,10.144900,’2007-09-20′,26527510,120,’Released’,’Greatness comes to those who take it.’,6.50,158),(12247,’Shotgun Stories’,0,’http://www.shotgunstories.com/’,’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.’,5.251143,’2007-10-01′,0,92,’Released’,’Two families. One feud. No going back.’,6.90,57),(12257,’Home Fries’,15000000,”,’Dorian and Angus chase down their womanizing stepfather with a helicopter, frightening him to death. In his effort to cover their tracks, Dorian begins investigating his stepfather\’s mistress, Sally. She works at a fast-food drive-through, she\’s pregnant and Dorian quickly falls in love with her. Unfortunately, his scheming mother wants Sally dead. And Sally isn\’t sure she wants Dorian to be her child\’s father and also his brother.’,3.033471,’1998-11-25′,10443316,93,’Released’,’A long shot romance in a short order world.’,4.80,32),(12271,’Factory Girl’,7000000,”,’In the mid-1960s, wealthy debutant Edie Sedgwick meets artist Andy Warhol. She joins Warhol\’s famous Factory and becomes his muse. Although she seems to have it all, Edie cannot have the love she craves from Andy, and she has an affair with a charismatic musician, who pushes her to seek independence from the artist and the milieu.’,11.400229,’2006-12-29′,0,90,’Released’,’When Andy met Edie, life imitated art.’,6.20,81),(12277,’Undercover Brother’,25000000,”,’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.’,6.086083,’2002-05-31′,41604473,86,’Released’,’He\’s All Action’,5.50,112),(12279,’Spy Kids 3-D: Game Over’,38000000,”,’Carmen\’s caught in a virtual reality game designed by the Kids\’ new nemesis, the Toymaker. It\’s up to Juni to save his sister, and ultimately the world.’,21.998734,’2003-07-25′,197011982,84,’Released’,’3rd Mission. 3rd Dimension.’,4.70,511),(12281,’Mean Creek’,500000,’http://www.meancreekmovie.com/’,’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.’,8.519202,’2004-01-15′,603943,90,’Released’,’Beneath the surface, everyone has a secret.’,6.90,106),(12289,’Chi bi’,80341000,’http://www.redclifffilm.com’,’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.’,14.837500,’2008-07-10′,127814609,150,’Released’,’The future will be decided.’,7.10,205),(12312,’Joe Somebody’,38000000,”,’When underappreciated video specialist Joe Scheffer is brutally humiliated by the office bully Mark McKinney in front of his daughter, Joe begins a quest for personal redemption. He proceeds by enduring a personal make-over and takes martial arts lessons from a B-action star. As news spreads of his rematch with Mark, Joe suddenly finds himself the center of attention, ascending the corporate ladder and growing in popularity. He\’s determined to show everyone in his life that he is not a nobody, but a force to be reckoned with.’,5.257009,’2001-12-21′,0,99,’Released’,’Someone just picked on the wrong nobody.’,5.50,40),(12400,’Redbelt’,7000000,”,’Is there room for principle in Los Angeles? Mike Terry teaches jujitsu and barely makes ends meet. His Brazilian wife, whose family promotes fights, wants to see Mike in the ring making money, but to him competition is degrading. A woman sideswipes Mike\’s car and then, after an odd sequence of events, shoots out the studio\’s window. Later that evening, Mike rescues an action movie star in a fistfight at a bar. In return, the actor befriends Mike, gives him a gift, offers him work on his newest film, and introduces Mike\’s wife to his own – the women initiate business dealings. Then, things go sour all at once, Mike\’s debts mount, and going into the ring may be his only option.’,5.091253,’2008-04-07′,0,99,’Released’,’There\’s always a way out. You just have to find it.’,6.40,76),(12403,’A Perfect Getaway’,14000000,”,’For their honeymoon, newlyweds Cliff and Cydney head to the tropical islands of Hawaii. While journeying through the paradisaical countryside the couple encounters Kale and Cleo, two disgruntled hitchhikers and Nick and Gina, two wild but well-meaning spirits who help guide them through the lush jungles. The picturesque waterfalls and scenic mountainsides quickly give way to terror when Cliff and Cydney learn of a grisly murder that occurred nearby and realize that they\’re being followed by chance acquaintances that suspiciously fit the description of the killers.’,20.792603,’2009-06-08′,22852638,98,’Released’,’Welcome to paradise. Enter at your own risk.’,6.20,351),(12404,’Me and Orson Welles’,25000000,”,’New York, 1937. A teenager hired to star in Orson Welles\’ production of Julius Caesar becomes attracted to a career-driven production assistant.’,3.593165,’2009-11-25′,2336172,114,’Released’,’If you want to discover life learn from the master’,6.60,49),(12405,’Slumdog Millionaire’,15000000,’http://www.foxsearchlight.com/slumdogmillionaire’,’Jamal Malik is an impoverished Indian teen who becomes a contestant on the Hindi version of â��Who Wants to Be a Millionaire?â�� but, after he wins, he is suspected of cheating.’,59.258969,’2008-05-12′,377910544,120,’Released’,’What does it take to find a lost love? A. Money, B. Luck, C. Smarts, D. Destiny’,7.60,2827),(12410,’Good’,0,”,’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.’,2.397987,’2008-12-11′,0,96,’Released’,’Anything that makes people happy can\’t be bad can it?’,6.30,29),(12412,’Miracle at St. Anna’,45000000,”,’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.’,11.387408,’2008-09-15′,9323833,160,’Released’,”,6.30,90),(12429,’å´�ã�®ä¸�ã�®ã��ã��ã�§’,41677699,”,’The son of a sailor, 5-year old Sosuke lives a quiet life on an oceanside cliff with his mother Lisa. One fateful day, he finds a beautiful goldfish trapped in a bottle on the beach and upon rescuing her, names her Ponyo. But she is no ordinary goldfish. The daughter of a masterful wizard and a sea goddess, Ponyo uses her father\’s magic to transform herself into a young girl and quickly falls in love with Sosuke, but the use of such powerful sorcery causes a dangerous imbalance in the world. As the moon steadily draws nearer to the earth and Ponyo\’s father sends the ocean\’s mighty waves to find his daughter, the two children embark on an adventure of a lifetime to save the world and fulfill Ponyo\’s dreams of becoming human.’,39.586760,’2008-07-19′,187479518,100,’Released’,’Welcome To A World Where Anything Is Possible.’,7.50,926),(12437,’Underworld: Rise of the Lycans’,35000000,”,’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.’,51.927471,’2009-01-22′,91353501,92,’Released’,’Every war has a beginning.’,6.20,1428),(12454,’All or Nothing’,9000000,”,’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…’,2.872281,’2002-05-17′,0,128,’Released’,”,7.00,33),(12479,’Breakfast of Champions’,12000000,”,’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.’,2.695896,’1999-02-13′,0,110,’Released’,”,5.20,28),(12484,’The Forsaken’,5000000,”,’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.’,2.739307,’2001-04-27′,0,90,’Released’,’The night… has an appetite.’,4.90,47),(12486,’Farce of the Penguins’,0,”,’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 falls hard for Melissa. She seems to like him. A crisis develops when Jimmy comes upon something soft in the dark. Can friends forgive? Does parenthood await Carl and Melissa?’,1.963219,’2006-12-01′,0,80,’Released’,’What Happens In Antarctica… Stays in Antarctica’,3.20,13),(12498,’Sling Blade’,1000000,”,’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.’,14.805264,’1996-08-30′,24475416,135,’Released’,’A simple man. A difficult choice.’,7.40,231),(12506,’Cry Freedom’,0,”,’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.’,3.735723,’1987-11-05′,0,157,’Released’,”,6.90,51),(12508,’Rock Star’,57000000,”,’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. Loosely inspired by the true story of the heavy metal band Judas Priest.’,11.608150,’2001-09-04′,16991902,105,’Released’,’The story of a wanna be who got to be.’,6.00,190),(12509,’Pollock’,0,”,’In August of 1949, Life Magazine ran a banner headline that begged the question: \”Jackson Pollock: Is he the greatest living painter in the United States?\” The film is a look back into the life of an extraordinary man, a man who has fittingly been called \”an artist dedicated to concealment, a celebrity who nobody knew.\” As he struggled with self-doubt, engaging in a lonely tug-of-war between needing to express himself and wanting to shut the world out, Pollock began a downward spiral.’,8.483531,’2000-09-06′,0,122,’Released’,’A true portrait of life and art.’,6.60,91),(12535,’High Anxiety’,3400000,”,’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.’,5.690619,’1977-12-25′,31063038,94,’Released’,’The Master of Comedy takes on The Master of Suspense!’,6.50,84),(12555,’Obsluhoval jsem anglického krále’,0,’http://www.anglickykral.cz/’,’Jan DÃtÄ� 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.’,2.387463,’2006-12-19′,0,120,’Released’,”,7.00,22),(12569,’Extract’,8000000,’http://www.extract-the-movie.com/’,’The owner of a factory that produces flavor extracts, Joel Reynold seems to have it all, but really doesn\’t. What\’s missing is sexual attention from his wife, Suzie. Joel hatches a convoluted plan to get Suzie to cheat on him, thereby clearing the way for Joel to have an affair with Cindy, an employee. But what Joel doesn\’t know is that Cindy is a sociopathic con artist, and a freak workplace accident clears the way for her to ruin Joel forever.’,14.652342,’2009-09-03′,10848783,92,’Released’,’Sticking it to the man has never looked so good.’,5.70,192),(12573,’A Serious Man’,7000000,”,’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.’,23.612409,’2009-10-02′,31430334,105,’Released’,’…seriously!’,6.60,483),(12586,’Bella’,0,”,’An international soccer star is on his way to sign a multimillion dollar contract when something happens that brings his career to an abrupt end. A beautiful waitress, 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.’,1.814802,’2006-09-09′,0,91,’Released’,’One person can change your life forever’,6.70,37),(12589,’Jimmy Neutron: Boy Genius’,25000000,”,’Jimmy Neutron is a boy genius and way ahead of his friends, but when it comes to being cool, he\’s a little behind. All until one day when his parents, and parents all over Earth are kidnapped by aliens, it\’s up to him to lead all the children of the world to rescue their parents.’,12.739721,’2001-12-21′,80936232,83,’Released’,’He may be small, but he\’s got a big brain!’,5.60,231),(12596,’Pushing Tin’,33000000,”,’Two air traffic controllers (John Cusack, Billy Bob Thornton) who thrive on living dangerously compete to outdo each other on several levels.’,9.060642,’1999-04-23′,0,124,’Released’,’A comedy about losing control’,5.70,116),(12602,’Die Schlangengrube und das Pendel’,0,”,’In the Olden Tymes, Count Regula is drawn and quartered for killing twelve virgins in his dungeon torture chamber. Thirty-five years later, he comes back to seek revenge on the daughter of his intended thirteenth victim and the son of his prosecutor in order to attain immortal life.’,1.296784,’1967-10-05′,0,85,’Released’,’UNBELIEVABLE! Until You See It With Your Own Eyes!’,6.30,12),(12610,’Osmosis Jones’,75000000,’http://www.osmosisjones.com/’,’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.’,10.545440,’2001-08-07′,13596911,95,’Released’,’Every BODY needs a hero’,5.90,228),(12612,’Freeze Frame’,0,”,’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.’,4.922397,’2004-05-01′,0,99,’Released’,”,6.90,18),(12618,’Random Hearts’,64000000,”,’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 were travelling together. Dutch then goes to Chandler and tells her that he suspects that they were having an affair. He tells her that he wants to know the truth; she tells him that she doesn\’t but she later joins him and they grow close.’,4.137237,’1999-10-08′,74608570,133,’Released’,’In a perfect world…they never would have met.’,5.30,63),(12620,’The House Bunny’,25000000,’http://www.thehousebunny.com/’,’Shelley is living a carefree life until a rival gets her tossed out of the Playboy Mansion. With nowhere to go, fate delivers her to the sorority girls from Zeta Alpha Zeta. Unless they can sign a new pledge class, the seven socially clueless women will lose their house to the scheming girls of Phi Iota Mu. In order to accomplish their goal, they need Shelley to teach them the ways of makeup and men; at the same time, Shelley needs some of what the Zetas have – a sense of individuality. The combination leads all the girls to learn how to stop pretending and start being themselves.’,25.838073,’2008-08-22′,70442940,97,’Released’,’For the girls of ZETA house college life was no party, until Shelley showed up.’,5.60,529),(12621,’Hamlet 2′,0,”,’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.’,5.293363,’2008-01-21′,0,92,’Released’,’One high school drama teacher is about to make a huge number 2.’,6.10,56),(12634,’The Big Bounce’,50000000,”,’A small-time con artist and a Hawaiian real estate developer\’s mischievous, enterprising mistress team up for a potential $200,000 score.’,6.397388,’2004-01-30′,6808550,88,’Released’,’It\’s all in who you trust’,5.00,76),(12637,’New York, New York’,0,”,’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.’,3.876242,’1977-06-21′,0,155,’Released’,”,6.10,67),(12657,’Soul Plane’,16000000,”,’Following a ridiculously awful flight that leads to his pet\’s death, Nashawn Wade files a lawsuit against the airline, and wins a multimillion-dollar settlement. Determined to create a better flying experience, Nashawn starts his own airline, one that caters to an African-American clientele. Going into business with a tricked-out plane piloted by the smooth Capt. Mack, the airline hits a snag when it has to deal with the family of Elvis Hunkee.’,9.400404,’2004-05-28′,14822346,86,’Released’,’Announcing the arrival of the first airline with soul.’,4.70,108),(12658,’Someone Like You…’,23000000,”,’Jane Goodale has everything going for her. She\’s a producer on a popular daytime talk show, and is in a hot romance with the show\’s dashing executive producer Ray. But when the relationship goes terribly awry, Jane begins an extensive study of the male animal, including her womanizing roommate Eddie. Jane puts her studies and romantic misadventure to use as a pseudonymous sex columnist — and becomes a sensation.’,7.901891,’2001-03-30′,0,97,’Released’,’The story about the one that got away and the one she never saw coming.’,6.00,118),(12690,’Appaloosa’,20000000,”,’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.’,16.074397,’2008-09-12′,20211394,115,’Released’,’Feelings get you killed.’,6.30,299),(12703,’The Brown Bunny’,10000000,”,’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.’,3.412162,’2004-08-27′,0,93,’Released’,’I\’m not going to be okay, Bud.’,5.50,62),(12704,’Ishtar’,55000000,”,’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’,2.410546,’1987-05-15′,14375181,107,’Released’,”,4.20,28),(12763,’Take the Lead’,30000000,”,’A former professional dancer volunteers to teach dance in the New York public school system and, 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.’,8.999675,’2006-03-17′,34742066,108,’Released’,’Never Follow’,6.60,162),(12770,’Stealing Harvard’,0,”,’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 â�¦ but Duff\’s hare-brained schemes spin quickly out of control.’,7.321181,’2002-09-13′,0,85,’Released’,’Their intentions were honorable. Their methods were criminal.’,4.40,46),(12771,’Serving Sara’,29000000,”,’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.’,8.939410,’2002-08-20′,16930185,100,’Released’,’The One Thing That Could Bring Them Together Is Revenge.’,5.00,85),(12779,’Swept Away’,10000000,”,’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.’,4.570043,’2002-10-11′,598645,89,’Released’,’A snooty socialite is stranded on a Mediterranean island with a communist sailor.’,4.80,50),(12783,’The Duchess’,0,’http://www.theduchessmovie.com/’,’A chronicle of the life of 18th century aristocrat Georgiana, Duchess of Devonshire, who was reviled for her extravagant political and personal life.’,18.591657,’2008-09-05′,0,110,’Released’,’Based on the incredible true story.’,6.70,396),(12797,’Ghost Town’,0,”,’Dentist, 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.’,17.988170,’2008-09-19′,0,102,’Released’,’He sees dead people… and they annoy him.’,6.40,286),(12819,’Alpha and Omega’,20000000,’http://alphaandomega3d.com/index.html’,’Two mismatched wolves embark on a cross-country quest to get back home and restore peace in their pack after being relocated thousands of miles away by well-meaning park rangers. Quick-witted Humphrey (voice of Justin Long) likes to frolic with friends and play video games with squirrels; disciplined Kate (voice of Hayden Panettiere) likes to call the shots and hunt caribou. Normally, an omega wolf like Humphrey would never stand a chance with an alpha wolf like Kate, but when they\’re both transported halfway across the country they must work together to get back to their natural habitat. And it won\’t be easy either, because the one thing Humphrey and Kate can agree on is that they don\’t have anything in common. Perhaps by working together toward a common goal, however, the two contentious traveling companions will finally realize that even lone wolves can use a helping paw every once in a while.’,12.300789,’2010-09-17′,39300000,88,’Released’,’A Pawsome 3D Adventure’,5.30,124),(12837,’The Secret Life of Bees’,11000000,’http://www.foxsearchlight.com/thesecretlifeofbees/’,’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.’,7.645979,’2008-09-17′,38105395,114,’Released’,’Bring Your Girlfriends, Sisters, Mothers and Daughters.’,7.40,158),(12838,’Chacun sa nuit’,0,”,’A story about bunch of people who live in a town in provincial France. At the center of it all is Pierre, a conceited and vain bisexual musician in his late teens who acts as a magnet, to varying degrees, for a whole array of characters – from his sister Lucie, with whom he has a heated incestuous relationship, to a city councilor with whom he participates in gay orgies. When Pierre turns up dead, Lucie investigates the reasons for his demise and charts the network of sadomasochistic relationships that crisscross the town.’,4.665026,’2006-07-21′,0,95,’Released’,”,5.80,12),(12877,’Dead Man\’s Shoes’,0,”,’A soldier returns home to his small town and exacts a deadly revenge on the thugs who tormented his dimwitted brother while he was away.’,12.818441,’2004-09-29′,0,90,’Released’,’He\’s in all of us.’,7.20,151),(12901,’No End in Sight’,2000000,’http://www.noendinsightmovie.com’,’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.’,2.283796,’2007-07-27′,1431623,102,’Released’,’The American Occupation of Iraq. The Inside Story From the Ultimate Insiders.’,7.20,23),(12920,’Dreamer: Inspired By a True Story’,0,”,’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.’,6.048743,’2005-09-10′,0,106,’Released’,”,6.30,67),(13001,’Stargate: The Ark of Truth’,7000000,”,’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.’,8.591387,’2008-03-11′,8900000,97,’Released’,’The lines have been drawn. The battle has been waged. Only one thing can save us…’,6.90,140),(13006,’Split Second’,7,”,’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.’,4.857028,’1992-05-01′,5,90,’Released’,’He\’s seen the future. Now he has to kill it.’,5.70,63),(13007,’Religulous’,0,’http://www.lionsgate.com/religulous/’,’Commentator-comic Bill Maher plays devil\’s advocate with religion as he talks to believers about their faith. Traveling around the world, Maher examines the tenets of Christianity, Judaism and Islam and raises questions about homosexuality, proof of Christ\’s existence, Jewish Sabbath laws, violent Muslim extremists.’,9.774126,’2008-10-01′,0,101,’Released’,’Heaven help us.’,7.20,197),(13025,’Diary of the Dead’,2000000,”,’A group of young film students run into real-life zombies while filming a horror movie of their own.’,15.351412,’2007-09-08′,5364858,95,’Released’,’Where will you be when the end begins?’,5.40,190),(13027,’Eagle Eye’,80000000,”,’Jerry Shaw and Rachel Holloman are two strangers whose lives are suddenly thrown into turmoil by a mysterious woman they have never met. Threatening their lives and family, the unseen caller uses everyday technology to control their actions and push them into increasing danger. As events escalate, Jerry and Rachel become the country\’s most-wanted fugitives and must figure out what is happening to them.’,46.887983,’2008-09-25′,178066569,118,’Released’,’Don\’t walk. Run.’,6.30,1018),(13051,’Max Payne’,35000000,’http://www.maxpaynethemovie.com’,’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.’,25.903237,’2008-10-15′,85416905,100,’Released’,’When a Man Has Lost Everything. He Only has Revenge’,5.20,613),(13053,’Bolt’,150000000,’http://movies.disney.com/bolt’,’Bolt is the star of the biggest show in Hollywood. The only problem is, he thinks it\’s real. After he\’s accidentally shipped to New York City and separated from Penny, his beloved co-star and owner, Bolt must harness all his \”super powers\” to find a way home.’,41.845878,’2008-11-21′,309979994,98,’Released’,’Fully Awesome. Ridonculous. Let It Begin.’,6.30,1750),(13056,’Punisher: War Zone’,20500000,’http://punisherwarzonemovie.com’,’Waging his one-man war on the world of organized crime, ruthless vigilante-hero Frank Castle sets his sights on overeager mob boss Billy Russoti. After Russoti is left horribly disfigured by Castle, he sets out for vengeance under his new alias: Jigsaw. With the \”Punisher Task Force\” hot on his trail and the FBI unable to take Jigsaw in, Frank must stand up to the formidable army that Jigsaw has recruited before more of his evil deeds go unpunished.’,17.112498,’2008-12-05′,10089373,102,’Released’,’Vengeance has a name’,5.60,294),(13064,’Airborne’,2600000,”,’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. Mitchell and Wiley end up enduring weeks of torture from the guys. Then, the big guys and Mitchell and Wiley have to learn to get along to try to beat the Central High School rivals in a competition down Devil\’s Backbone’,8.001156,’1993-09-17′,2850263,91,’Released’,’There are two kinds of people: those who get AIRBORNE…and those who don\’t.’,6.10,20),(13066,’I Want Someone to Eat Cheese With’,0,”,’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.’,1.742383,’2006-01-01′,0,80,’Released’,”,5.70,12),(13067,’In the Land of Women’,10000000,’http://www.warnerbros.com/land-women’,’After a bad breakup with his girlfriend leaves him heartbroken, Carter Webb moves to Michigan to take care of his ailing grandmother. Once there, he gets mixed up in the lives of the mother and daughters who live across the street.’,12.792446,’2007-04-16′,17500000,97,’Released’,’Get ready to fall’,5.80,160),(13072,’Brooklyn Rules’,8000000,”,’Brooklyn, 1985. With the mob world as a backdrop, three life-long friends struggle with questions of love, loss and loyalty.’,4.090382,’2007-04-30′,458232,99,’Released’,’Not made to be broken’,5.80,18),(13074,’Resurrecting the Champ’,0,”,’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.’,4.898437,’2007-06-14′,0,112,’Released’,”,5.90,60),(13075,’Sherrybaby’,2000000,”,’After serving time in prison, former drug addict Sherry Swanson returns home to reclaim her young daughter from family members who have been raising the child. Sherry\’s family, especially her sister-in-law, doubt Sherry\’s ability to be a good mother, and Sherry finds her resolve to stay clean slowly weakening.’,4.261509,’2006-09-08′,622806,96,’Released’,’No one makes it alone.’,6.30,41),(13079,’The Life Before Her Eyes’,8000000,”,’As the 15th anniversary of a fatal high school shooting approaches, former pupil Diana McFee is haunted by memories of the tragedy. After losing her best friend Maureen in the attack, Diana has been profoundly affected by the incident – her seemingly perfect life shaped by the events of that day.’,9.728143,’2007-09-08′,0,90,’Released’,’Your life can change in an instant. That instant can last forever.’,6.10,88),(13090,’Sunshine Cleaning’,5000000,’http://www.sunshinecleaning-themovie.com’,’A single mother 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.’,19.336367,’2008-01-18′,16174377,102,’Released’,’life\’s a messy business.’,6.50,255),(13092,’How to Lose Friends & Alienate People’,27000000,”,’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\”.’,16.785866,’2008-10-02′,17286299,110,’Released’,’He\’s across the pond, and out of his depth.’,6.20,244),(13121,’Teeth’,0,”,’Dawn is an active member of her high-school chastity club but, when she meets Tobey, nature takes its course, and the pair answer the call. They suddenly learn she is a living example of the vagina dentata myth, when the encounter takes a grisly turn.’,7.359286,’2007-01-19′,0,94,’Released’,’Every rose has its thorns.’,5.20,210),(13132,’All the Real Girls’,0,’http://www.sonyclassics.com/alltherealgirls/’,’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.’,3.659240,’2003-08-01′,0,108,’Released’,’Love is a puzzle. These are the pieces.’,5.90,30),(13150,’Pride and Glory’,30000000,’http://www.prideandglorymovie.com/’,’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.’,10.703602,’2008-09-09′,31148328,130,’Released’,’Truth. Honor. Loyalty. Family. What are you willing to sacrifice?’,6.30,240),(13154,’Showdown in Little Tokyo’,8000000,”,’An American with a Japanese upbringing, Chris Kenner is a police officer assigned to the Little Tokyo section of Los Angeles. Kenner is partnered with Johnny Murata, a Japanese-American who isn\’t in touch with his roots. Despite their differences, both men excel at martial arts, and utilize their formidable skills when they go up against Yoshida, a vicious yakuza drug dealer with ties to Kenner\’s past.’,8.403859,’1991-08-23′,2275557,79,’Released’,’One\’s a warrior. One\’s a wise guy. They\’re two L.A. cops going after a gang of drug lords. Feet first.’,5.70,95),(13155,’Return to Oz’,25000000,’http://movies.disney.com/return-to-oz’,’Dorothy, saved from a psychiatric experiment by a mysterious girl, finds herself back in the land of her dreams, and makes delightful new friends, and dangerous new enemies.’,5.650125,’1985-06-21′,11137801,109,’Released’,’An all-new adventure down the yellow brick road.’,6.70,120),(13156,’Secondhand Lions’,0,’http://www.newline.com/properties/secondhandlions.html’,’\”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.’,15.011624,’2003-09-19′,0,111,’Released’,”,6.90,260),(13158,’Aqua Teen Hunger Force Colon Movie Film for Theaters’,0,”,’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.’,1.453146,’2007-04-13′,0,86,’Released’,”,6.50,35),(13159,’Georgia Rule’,20000000,”,’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.’,7.878177,’2007-05-11′,0,113,’Released’,’In this family, attitude doesn\’t skip a generation.’,5.60,130),(13160,’Over Her Dead Body’,10000000,’http://www.overherdeadbodymovie.com’,’After his fiancée, Kate, dies in an accident on their wedding day, veterinarian Henry grows depressed. To help him move on, his sister has him visit psychic Ashley and gives her Kate\’s diary. Ashley uses the journal\’s details to convincingly deliver the fake message that Kate wants Henry to move on. However, Kate\’s ghost is watching over Ashley and Henry. Furious when they fall for each other, she vows to sabotage their relationship.’,12.067921,’2008-02-01′,0,95,’Released’,’She\’s passed on… But she\’s not moving on.’,5.30,145),(13166,’Freddy Got Fingered’,0,”,’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.’,8.710294,’2001-04-18′,0,87,’Released’,’A touching story of a young man who desperately wants to make his daddy proud.’,4.60,115),(13173,’The Ten’,0,”,’Ten stories, each inspired by one of the ten commandments.’,3.865122,’2007-08-03′,0,96,’Released’,’If He\’d meant the commandments literally, He\’d have written them in stone.’,4.90,57),(13183,’Watchmen’,130000000,’https://www.warnerbros.com/watchmen’,’In a gritty and alternate 1985 the glory days of costumed vigilantes have been brought to a close by a government crackdown, but after one of the masked veterans is brutally murdered an investigation into the killer is initiated. The reunited heroes set out to prevent their own destruction, but in doing so uncover a sinister plot that puts all of humanity in grave danger.’,64.798873,’2009-03-05′,185258983,163,’Released’,’Justice is coming to all of us. No matter what we do.’,7.00,2811),(13184,’Bangkok Dangerous’,45000000,’http://www.bangkokdangerousmovie.net/’,’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.’,14.813057,’2008-08-21′,42487390,99,’Released’,’There\’s only one way out.’,5.00,332),(13187,’A Charlie Brown Christmas’,0,”,’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.’,8.701183,’1965-12-09′,0,25,’Released’,’That\’s what Christmas is all about, Charlie Brown!’,7.50,153),(13191,’War, Inc.’,5000000,’http://www.firstlookstudios.com/films/warinc/’,’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.’,6.265659,’2008-04-28′,1296184,106,’Released’,’When it comes to war… America means business’,5.60,86),(13193,’Saved!’,0,’http://www.savedmovie.com/’,’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â��until Maryâ��s \”perfect Christian boyfriend\” Dean tells her, as theyâ��re swimming underwater, that he thinks he\’s gay.’,9.851230,’2004-01-21′,0,92,’Released’,”,6.30,147),(13197,’10th & Wolf’,8000000,”,’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.’,3.942464,’2006-02-19′,143451,107,’Released’,’The Intersection Where Family, Honor and Betrayal Collide.’,6.30,24),(13198,’Wristcutters: A Love Story’,0,’http://wristcutters.com/official_site’,’Zia, distraught over breaking up with his girlfriend, decides to end it all. Unfortunately, he discovers that there is no real ending, only a run-down afterlife that is strikingly similar to his old one, just a bit worse. Discovering that his ex-girlfriend has also \”offed\” herself, he sets out on a road trip, with his Russian rocker friend, to find her. Their journey takes them through an absurd purgatory where they discover that being dead doesn\’t mean you have to stop livin\’!’,8.542921,’2006-01-24′,0,88,’Released’,’Life is a trip, but the afterlife is one hell of a ride’,6.70,160),(13201,’Deuces Wild’,0,’http://www.mgm.com/sites/deuceswild/intro/’,’1950s 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.’,0.753481,’2002-05-03′,0,96,’Released’,’Some lines should never be crossed.’,5.50,34),(13223,’Gran Torino’,33000000,’http://www.thegrantorino.com/’,’Walt Kowalski is a widower who holds onto his prejudices despite the changes in his Michigan neighborhood and the world around him. Kowalski is a grumpy, tough-minded, unhappy old man who can\’t get along with either his kids or his neighbors. He is a Korean War veteran whose prize possession is a 1972 Gran Torino he keeps in mint condition. When his neighbor Thao, a young Hmong teenager under pressure from his gang member cousin, tries to steal his Gran Torino, Kowalski sets out to reform the youth. Drawn against his will into the life of Thao\’s family, Kowalski is soon taking steps to protect them from the gangs that infest their neighborhood.’,50.745300,’2008-12-09′,269958228,116,’Released’,’Ever come across somebody you shouldn\’t have messed with?’,7.80,3086),(13250,’Butterfly on a Wheel’,20000000,”,’A sociopathic kidnapper methodically pushes a desperate pair of parents to their absolute breaking point.’,13.118983,’2007-07-27′,0,95,’Released’,’Lives will be broken’,6.30,130),(13260,’Semi-Pro’,0,’http://newline.com/properties/semipro.html’,’Jackie Moon is the owner, promoter, coach, and star player of the Flint Michigan Tropics of the American Basketball Association (ABA). In 1976 before the ABA collapses, the National Basketball Association (NBA) plans to merge with the best teams of the ABA at the end of the season. Only the top four teams will make the move and the worst teams will fold. The Tropics are the worst team in the league and if they want to make it to the NBA, Jackie Moon must rally his team and start winning. The only problem is the fact that Jackie Moon is not really the coach and star basketball player he thinks he is. To keep his team from oblivion and leave his mark in the city, Jackie Moon must inspire his team to win fourth place in the playoffs.’,10.449975,’2008-02-28′,33472850,91,’Released’,’Putting the funk into the dunk.’,5.40,251),(13279,’Lakeview Terrace’,20000000,”,’A young interracial couple has just moved into their California dream home when they become the target of their next-door neighbor, who disapproves of their relationship. A tightly wound LAPD officer has appointed himself the watchdog of the neighborhood. His nightly foot patrols and overly watchful eyes bring comfort to some, but he becomes increasingly aggressive to the newlyweds. These persistent intrusions into their lives cause the couple to fight back.’,20.495749,’2008-09-19′,27640028,110,’Released’,’What Could Be Safer Than Living Next to a Cop?’,5.90,292),(13282,’Death Race 2000′,300000,”,’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.’,6.473667,’1975-04-27′,8000000,80,’Released’,’A Cross Country Road Wreck!’,5.90,124),(13335,’Harold & Kumar Escape from Guantanamo Bay’,12000000,’http://www.haroldandkumar.com’,’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.’,26.219598,’2008-04-25′,43493123,107,’Released’,’This time they\’re running from the joint.’,6.20,497),(13342,’Fast Times at Ridgemont High’,4500000,”,’Follows a group of high school students growing up in southern California, based on the real-life adventures chronicled by Cameron Crowe. Stacy Hamilton and Mark Ratner are looking for a love interest, and are helped along by their older classmates, Linda Barrett and Mike Damone, respectively. The center of the film is held by Jeff Spicoli, a perpetually stoned surfer dude who faces off with the resolute Mr. Hand, who is convinced that everyone is on dope.’,20.403344,’1982-08-13′,27092880,90,’Released’,’Fast Cars, Fast Girls, Fast Carrots…Fast Carrots?’,7.00,322),(13362,’Taxi to the Dark Side’,1000000,’http://www.taxitothedarkside.com/’,’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′,0.748565,’2007-04-30′,274661,106,’Released’,’In 2002, a young cap driver picked up a few passengers near his home in Afghanistan… He never returned’,6.60,53),(13363,’The Man from Earth’,0,’http://manfromearth.com/’,’An impromptu goodbye party for Professor John Oldman becomes a mysterious interrogation after the retiring scholar reveals to his colleagues he never ages and has walked the earth for 14,000 years.’,31.339015,’2007-06-10′,0,87,’Released’,’From one of the acclaimed writers of Star Trek and The Twilight Zone comes a story that transcends both time and space…’,7.70,687),(13370,’A Mighty Wind’,6000000,”,’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.’,4.053017,’2003-04-16′,18750246,91,’Released’,’Back together for the first time, again.’,6.60,74),(13374,’Ice Princess’,25000000,”,’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.’,13.288177,’2005-03-17′,27645491,98,’Released’,”,5.90,185),(13389,’Righteous Kill’,60000000,’http://www.righteouskill-themovie.com’,’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?’,18.380176,’2008-09-11′,73174566,101,’Released’,’Most people respect the badge. Everybody respects the gun.’,5.90,375),(13403,’Hedwig and the Angry Inch’,0,”,’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.’,4.254220,’2001-07-20′,0,95,’Released’,’An anatomically incorrect rock odyssey’,7.40,80),(13405,’é»�ç�³ç��å©å�’,40000000,’http://www.childrenofhuangshi.com/’,’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.’,8.978408,’2008-07-03′,7400000,125,’Released’,’War made them orphans, one man made them legends’,6.50,52),(13408,’The Wash’,7000000,”,’With the rent due and his car booted, Sean (Dr. Dre) has to come up with some ends…and fast. When his best buddy and roommate Dee Loc (Snoop Dogg), suggests that Sean get a job busting suds down at the local car wash.’,2.453459,’2001-11-16′,10229331,93,’Released’,’When you\’re down \’n dirty, it all comes out in…’,5.30,26),(13411,’Malibu\’s Most Wanted’,0,”,’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\”.’,7.314796,’2003-04-10′,0,86,’Released’,”,4.70,77),(13429,’Donkey Punch’,0,’http://www.donkeypunchmovie.co.uk/’,’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.’,3.283886,’2008-07-18′,0,99,’Released’,’This party is going overboard’,4.50,52),(13435,’Antwone Fisher’,12500000,”,’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.’,13.349012,’2002-12-19′,23367586,120,’Released’,’Antwone Fisher is at war… with himself.’,6.70,137),(13448,’Angels & Demons’,150000000,’http://www.angelsanddemons.com/’,’Harvard symbologist Robert Langdon investigates a mysterious symbol seared into the chest of a murdered physicist. He discovers evidence of the unimaginable, the rebirth of an ancient secret brotherhood known as the Illuminati, the most powerful underground organization ever to walk the earth.’,67.447636,’2009-05-13′,356613439,138,’Released’,”,6.50,2129),(13460,’Doomsday’,30000000,”,’A lethal virus spreads throughout the British isles,infecting millions and killing hundreds of thousands. To contain the threat, acting authorities brutally quarantine the country as it succumbs to fear and chaos. The quarantine is successful. Three decades later, the Reaper virus violently resurfaces in a major city. An elite group of specialists is urgently dispatched into the still-quarantined country to retrieve a cure by any means necessary. Shut off from the rest of the world, the unit must battle through a landscape that has become a waking nightmare.’,21.538222,’2008-03-14′,22211426,108,’Released’,’Mankind has an expiration date.’,5.80,363),(13475,’Star Trek’,150000000,”,’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.’,73.616808,’2009-05-06′,385680446,127,’Released’,’The future begins.’,7.40,4518),(13476,’Win a Date with Tad Hamilton!’,17000000,”,’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.’,7.701041,’2004-01-23′,16980098,95,’Released’,’In every love story, there\’s only room for one leading man.’,5.50,160),(13483,’Awake’,86000000,”,’While undergoing heart surgery, a man experiences 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.’,18.172736,’2007-11-28′,14373825,84,’Released’,’Every year, one in 700 people wake up during surgery.’,6.30,395),(13490,’Welcome Home Roscoe Jenkins’,35000000,”,’Martin Lawrence leads an all-star cast, including Cedric the Entertainer, Mo\’Nique, and Mike Epps, in the hit comedy \”Welcome Home Roscoe Jenkins.\” When a celebrated TV show host (Lawrence) returns to his hometown in the South, his family is there to remind him that going home is no vacation! It\’s one outrageous predicament after another when big-city attitude and small-town values collide in this hysterical comedy critics are praising for its \”over-the-top hilarity!\” (Roger Moore, Orlando Sentinel).’,6.248273,’2008-02-08′,43650785,114,’Released’,’Roscoe Jenkins aims for the heartstrings and funny bones, a raucous helping of family soul food.’,5.70,57),(13491,’Arn: Tempelriddaren’,25000000,”,’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.’,6.091033,’2007-12-17′,0,139,’Released’,’A Knight in the Holy Land. A Woman in the Frozen North. A War that Kept Them Apart.’,6.40,76),(13495,’Alatriste’,24000000,”,’In 17th century Spain Diego Alatriste, a brave and heroic soldier, is fighting in his King\’s army in the Flandes region. His best mate, Balboa, falls in a trap and, near to death, asks Diego to look after his son and teach him to be a soldier.’,6.009644,’2006-09-01′,23321954,145,’Released’,”,5.60,61),(13496,’American Outlaws’,35000000,”,’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.’,6.727949,’2001-08-17′,13678913,94,’Released’,’Sometimes the wrong side of the law is the right place to be.’,5.70,55),(13497,’Drumline’,20000000,”,’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.’,4.748929,’2002-12-13′,57588485,118,’Released’,’Half time is game time’,6.20,116),(13498,’Man of the House’,40000000,”,’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.’,6.004422,’2005-02-25′,0,100,’Released’,’Protecting witnesses is a challenge. Living with them is impossible.’,5.40,120),(13501,’The Good Night’,15000000,”,’Gary, a musician, is trapped in an unhappy relationship with his live-in lover, Dora. He becomes enthralled with a beautiful seductress who enters his dreams, and tries to control his dream-state so he can spend more and more time with her. When Gary sees his mystery woman\’s face on a bus billboard, he discovers she is real, and fate brings him an opportunity to meet her.’,12.185204,’2007-01-25′,20380,93,’Released’,’Dreaming is believing.’,5.70,41),(13503,’Texas Rangers’,0,”,’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.’,5.641978,’2001-11-30′,0,110,’Released’,”,5.40,19),(13508,’Who Killed the Electric Car?’,1000000,’http://www.whokilledtheelectriccar.com/’,’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.’,5.323184,’2006-08-04′,1678874,92,’Released’,’A lack of consumer confidence… or conspiracy?’,7.20,59),(13510,’Eden Lake’,0,”,’Eden Lake is a relentlessly tense and immaculately paced horror-thriller about modern youth gone wild. When a young couple goes to a remote wooded lake for a romantic getaway, their quiet weekend is shattered by an aggressive group of local kids. Rowdiness quickly turns to rage as the teens terrorize the couple in unimaginable ways, and a weekend outing becomes a bloody battle for survival.’,20.362373,’2008-09-12′,3983997,91,’Released’,’A weekend by the lake, with views to die for.’,6.70,406),(13515,’Mirrors’,35000000,”,’An ex-cop and his family are the target of an evil force that is using mirrors as a gateway into their home.’,19.774543,’2008-08-15′,72436439,110,’Released’,’There is evil…On the other side.’,6.00,485),(13516,’Slacker Uprising’,0,”,’Slacker Uprising is a movie of Michael Moore\’s tour of colleges in swing states during the 2004 election, with a goal to encourage 18â��29 year olds to vote, and the response it received. The film is a re-edited version of Captain Mike Across America, which played at the Toronto International Film Festival in 2007. It is one of the first feature length films made by a known director to be released as a free and legal download online. The free download is only available to those residing in the United States and Canada. The film was also made available free for online viewing and download on the Lycos Cinema platform as well as iTunes and blip.tv. It had a one-night-only run at the Michigan Theater, where Michael Moore spoke briefly. The film is available in DVD format. Slacker Uprising features live performances or appearances by Eddie Vedder, Roseanne Barr, Joan Baez, Tom Morello, R.E.M., Steve Earle, and Viggo Mortensen. The original score is by Anti-Flag.’,1.619635,’2007-09-27′,0,102,’Released’,”,5.90,10),(13518,’Fuel’,0,’http://thefuelfilm.com/’,’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.’,0.197469,’2008-11-14′,0,90,’Released’,”,7.00,3),(13523,’Sex Drive’,19000000,’http://www.sexdrivethemovie.com/’,’A high school senior drives cross-country with his best friends to hook up with a babe he met online.’,17.952817,’2008-10-16′,18755936,109,’Released’,’He\’s leaving virgin territory’,6.00,342),(13536,’City By The Sea’,40000000,”,’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 is a dedicated and well-respected New York City police detective who has gone to great lengths to distance himself from his past.’,3.476966,’2002-09-06′,22433915,108,’Released’,’When you\’re searching for a killer… the last suspect you want to see is your son.’,5.70,92),(13537,’Shattered Glass’,6000000,”,’Fact-based 2003 drama about the young journalist Stephen Glass, who got a job at The New Republic in 1995 and for three years fabricated at least half of the stories he wrote.’,6.272570,’2003-11-14′,2944752,94,’Released’,”,6.60,111),(13538,’Straightheads’,0,”,’There is instant chemistry between Alice (Gillian Anderson), a businesswoman, and Adam (Danny Dyer), a younger working-class man who installs a security system in her London apartment. She takes him to a party in the country, and they end up making love. But the night turns horrific when they encounter three thugs who maim Adam and rape Alice. The incident turns them into fearful recluses until Alice spots the leader of their attackers (Anthony Calf) — and the two victims plot a brutal revenge.’,8.302951,’2007-04-27′,0,88,’Released’,’Let the revenge fit the crime’,5.20,40),(13539,’Here On Earth’,0,”,’A rich college kid is taught a lesson after a joy ride ends up destroying a country restaurant.’,3.313257,’2000-03-23′,0,96,’Released’,”,5.40,48),(13551,’The Dead Girl’,0,”,’The clues to a young woman\’s death come together as the lives of seemingly unrelated people begin to intersect.’,3.069605,’2006-11-07′,0,85,’Released’,’One life ends. Seven others begin.’,6.40,66),(13569,’Thr3e’,0,”,’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.’,1.946715,’2006-12-01′,0,101,’Released’,”,4.80,21),(13576,’Michael Jackson\’s This Is It’,60000000,’http://www.thisisit-movie.com’,’A compilation of interviews, rehearsals and backstage footage of Michael Jackson as he prepared for his series of sold-out shows in London.’,15.798622,’2009-10-28′,0,111,’Released’,’Like You\’ve Never Seen Him Before’,6.70,247),(13579,’The Longshots’,0,”,’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.’,4.030724,’2008-08-22′,0,94,’Released’,”,6.50,11),(13596,’My Best Friend\’s Girl’,20000000,’http://www.mybestfriendsgirlmovie.com’,’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.’,17.145287,’2008-09-19′,36620508,101,’Released’,’It\’s funny what love can make you do…’,5.40,220),(13600,’City of Ember’,55000000,’http://www.cityofember.com/’,’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.’,23.465539,’2008-10-07′,17869048,90,’Released’,’Escape is the only option’,6.20,605),(13649,’High School Musical 2′,0,’http://www.disneychannel.com/highschoolmusical2′,’The East High Wildcats are ready to have the time of their lives. Troy (Zac Efron) is thrilled when heâ��s offered a job in a country club, but itâ��s all part of Sharpayâ��s (Ashley Tisdale) plot to lure him away from Gabriella (Vanessa Hudgens). How will it all turn out? All questions are answered on the night of the clubâ��s Talent Show.’,21.017550,’2007-08-17′,7000000,104,’Released’,”,6.10,843),(13673,’Christmas with the Kranks’,60000000,”,’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.’,9.225166,’2004-11-24′,0,99,’Released’,’No! Ho! Ho!’,5.20,193),(13680,’The Game Plan’,22000000,’http://movies.disney.com/the-game-plan’,’Bachelor football star Joe Kingman seems to have it all. He is wealthy and carefree, and his team is on the way to capturing a championship. Suddenly, he is tackled by some unexpected news: He has a young daughter, the result of a last fling with his ex-wife. Joe must learn to balance his personal and professional lives with the needs of his child.’,20.699212,’2007-09-28′,147880543,110,’Released’,’Half his size, twice the trouble … and she\’s moving in.’,6.00,428),(13682,’Pooh\’s Heffalump Movie’,0,”,’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.’,9.031540,’2005-02-11′,0,68,’Released’,’There\’s something new in the Hundred Acre Wood.’,6.40,88),(13685,’Bottle Rocket’,7000000,”,’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.’,11.700578,’1996-02-21′,560069,91,’Released’,’They\’re not really criminals, but everyone\’s got to have a dream.’,6.80,281),(13688,’é�·æ±�ä¸�è��’,0,”,’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 which proves to be much, much more once the young boy starts to play with it.’,12.373248,’2008-01-30′,47301471,86,’Released’,’It\’s out of this world.’,6.10,107),(13689,’Peaceful Warrior’,0,’http://www.thepeacefulwarriormovie.com/’,’A chance encounter with a stranger changes the life of a college gymnast.’,8.326131,’2006-03-30′,0,120,’Released’,’There are no ordinary moments.’,7.30,90),(13700,’Home on the Range’,110000000,’http://movies.disney.com/home-on-the-range’,’When a greedy outlaw schemes to take possession of the \”Patch Of Heaven\” dairy farm, three determined cows, a karate-kicking stallion and a colorful corral of critters join forces to save their home. The stakes are sky-high as this unlikely animal alliance risk their hides and match wits with a mysterious band of bad guys.’,19.625972,’2004-04-02′,103951461,76,’Released’,’Bust a Moo’,5.70,389),(13751,’Akeelah and the Bee’,8000000,’http://www.akeelahandthebee.com/splash.html’,’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 regional bee. As the possibility of making it all the way to the Scripps National Spelling Bee looms, Akeelah could provide her community with someone to rally around and be proud of — but only if she can overcome her insecurities and her distracting home life. She also must get past Dr. Larabee\’s demons, and a field of more experienced and privileged fellow spellers.’,4.932893,’2006-04-28′,18948425,112,’Released’,’Changing the world… one word at a time.’,6.70,81),(13768,’Tuck Everlasting’,0,”,’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.’,4.115398,’2002-10-11′,0,90,’Released’,’If you could choose to live forever, would you?’,6.40,128),(13776,’Diner’,0,”,’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.’,5.871930,’1982-04-02′,0,110,’Released’,’Suddenly, life was more than French fries, gravy, and girls.’,6.90,83),(13778,’Dickie Roberts: Former Child Star’,0,”,’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.’,10.149569,’2003-09-05′,0,98,’Released’,’50 million people used to watch him on TV. Now he washes their cars.’,5.10,64),(13785,’Best in Show’,0,”,’The tension is palpable, the excitement is mounting and the heady scent of competition is in the air as hundreds of eager contestants from across America prepare to take part in what is undoubtedly one of the greatest events of their lives — the Mayflower Dog Show. The canine contestants and their owners are as wondrously diverse as the great country that has bred them.’,10.982255,’2000-09-19′,0,90,’Released’,’Some pets deserve a little more respect than others.’,6.70,166),(13788,’The Unborn’,16000000,’http://www.theunbornmovie.net/’,’A young woman fights the spirit that is slowly taking possession of her.’,15.788784,’2009-01-09′,76514050,87,’Released’,’Evil will do anything to live.’,4.80,365),(13805,’Disaster Movie’,25000000,’http://www.disastermovie.net/’,’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.’,16.238961,’2008-08-29′,14109284,87,’Released’,’Your favorite movies are going to be destroyed.’,3.00,240),(13807,’æ�¾â�§é��’,4500000,”,’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.’,8.486390,’2006-09-06′,0,110,’Released’,”,7.00,46),(13809,’RockNRolla’,18000000,’http://rocknrolla.warnerbros.com/’,’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.’,31.887978,’2008-09-04′,25739015,114,’Released’,’A story of sex, thugs and rock \’n roll.’,6.90,836),(13811,’Knowing’,50000000,’http://knowing-themovie.com/’,’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.’,32.693093,’2009-03-19′,155446362,121,’Released’,’Knowing is everything…’,5.90,1486),(13812,’Quarantine’,12000000,”,’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.’,8.083995,’2008-10-10′,40855419,89,’Released’,’Contain The Truth.’,5.50,339),(13816,’Idlewild’,0,”,’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.’,2.711955,’2006-08-25′,0,121,’Released’,”,5.10,17),(13820,’Repo Man’,1500000,”,’A down and out young punk gets a job working with a seasoned repo man, but what awaits him in his new career is a series of outlandish adventures revolving around aliens, the CIA, and a most wanted \’64 Chevy.’,11.353440,’1984-02-20′,2300000,92,’Released’,’Itâ��s 4 a.m. Do you know where your car is?’,6.70,144),(13824,’Superstar’,0,”,’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.’,4.047010,’1999-10-08′,0,81,’Released’,’Dare to dream.’,5.10,83),(13827,’Surfer, Dude’,6000000,’http://www.surferdudethemovie.com/’,’A wave twisting tale of a soul searching surfer experiencing an existential crisis.’,2.404626,’2008-09-05′,69497,85,’Released’,”,4.70,25),(13836,’Race to Witch Mountain’,50000000,”,’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.’,23.935053,’2009-03-12′,106303988,98,’Released’,’The race is on’,5.50,509),(13849,’The Cottage’,0,”,’In 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.’,8.396850,’2008-02-07′,0,92,’Released’,’Sleeps Six Bloody Comfortably’,6.30,80),(13853,’The Clan of the Cave Bear’,15000000,”,’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.’,5.484679,’1986-01-17′,0,98,’Released’,’At The Dawn Of Mankind, A Woman Led The Way.’,4.80,27),(13856,’Special’,1000000,’http://www.specialthemovie.com/’,’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.’,1.260314,’2006-01-30′,7202,81,’Released’,”,6.60,32),(13888,’Return to the Blue Lagoon’,11000000,”,’In this sequel to the 1980 classic, two children are stranded on a beautiful island in the South Pacific. With no adults to guide them, the two make a simple life together and eventually become tanned teenagers in love.’,9.705589,’1991-08-02′,2807854,98,’Released’,’Return to the Romance, Return to the Adventure…’,5.10,153),(13889,’ã�¾ã��ã� ã� ã��’,0,”,’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.’,2.930853,’1993-04-17′,0,134,’Released’,”,7.50,20),(13898,’داÛ�رÙ�’,0,”,’Various women struggle to function in the oppressively sexist society of contemporary Iran.’,1.193779,’2000-09-08′,0,90,’Released’,”,6.60,17),(13908,’The Master of Disguise’,0,”,’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!’,4.382761,’2002-08-02′,0,80,’Released’,’He can get into any disguise… getting out is another story.’,3.70,78),(13909,’She Wore a Yellow Ribbon’,1600000,”,’After Custer and the 7th Cavalry are wiped out by Indians, everyone expects the worst. Capt. Nathan Brittles is ordered out on patrol but he\’s also required to take along Abby Allshard, wife of the Fort\’s commanding officer, and her niece, the pretty Olivia Dandridge, who are being evacuated for their own safety. Brittles is only a few days away from retirement and Olivia has caught the eye of two of the young officers in the Company, Lt. Flint Cohill and 2nd Lt. Ross Pennell. She\’s taken to wearing a yellow ribbon in her hair, a sign that she has a beau in the Cavalry, but refuses to say for whom she is wearing it.’,8.535178,’1949-10-22′,5400000,103,’Released’,’John Ford\’s New and Finest Picture of the Fighting Cavalry!’,7.10,61),(13919,’The Chumscrubber’,0,”,’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.’,3.528643,’2005-06-08′,0,108,’Released’,’Fear. Trust. Love.’,6.70,62),(13920,’Radio’,32000000,”,’High school 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.’,9.254647,’2003-10-24′,52277485,109,’Released’,’His courage made them champions.’,6.80,141),(13922,’The Great Raid’,80000000,”,’As World War II rages, the elite Sixth Ranger Battalion is given a mission of heroic proportions: push 30 miles behind enemy lines and liberate over 500 American prisoners of war.’,8.923215,’2005-08-12′,10166502,132,’Released’,’The most daring rescue mission of our time is a story that has never been told’,6.80,91),(13937,’Raising Cain’,12000000,”,’When neighborhood kids begin vanishing, Jenny suspects her child psychologist husband, Carter, may be resuming the deranged experiments his father performed on Carter when he was young. Now, it falls to Jenny to unravel the mystery. And as more children disappear, she fears for her own child\’s safety.’,7.558959,’1992-08-07′,37170057,91,’Released’,’Demented. Deranged. Deceptive. De Palma.’,5.90,65),(13938,’The Last Dragon’,10000000,”,’A young man searches for the \”master\” to obtain the final level of martial arts mastery known as the glow. Along the way he must fight an evil martial arts expert and rescue a beautiful singer from an obsessed music promoter.’,4.928777,’1985-03-22′,25754284,108,’Released’,’His family thinks he\’s crazy. His enemies think he\’s no challenge. But she knows he\’s THE LAST DRAGON.’,6.40,69),(13948,’An American Carol’,20000000,’http://www.americancarol.com/’,’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.’,2.605374,’2008-10-03′,7000000,83,’Released’,’Laugh like you\’re country depends on it.’,4.10,20),(13950,’All About the Benjamins’,14000000,”,’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, Wright finds himself in the thieves\’ getaway van and ends up having to escape from them after they discover their booty is fake, much to the displeasure of their ruthless boss (Flanagan). When Wright meets up with his girlfriend (Mendes), he discovers that his recently purchased lottery ticket is the sole winner of $60 million. Unfortunately, his wallet, which held the ticket, was left in the thieves\’ van, so he persuades Jackson to help him get it back.’,5.102258,’2002-03-08′,25482931,95,’Released’,’Money can make people do funny things.’,5.80,48),(13960,’ATL’,20000000,”,’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.’,5.422285,’2006-03-31′,21170563,105,’Released’,’A New American Story’,6.00,32),(13963,’The Last Waltz’,0,’http://www.mgm.com/#/our-titles/1092/The-Last-Waltz/’,’Martin Scorsese\’s rockumentary intertwines footage from \”The Band\’s\” incredible farewell tour with probing backstage interviews and featured performances by Eric Clapton, Bob Dylan, Joni Mitchell, Ringo Starr and other rock legends.’,3.277287,’1978-05-01′,321952,117,’Released’,’It Started as a Concert. It Became a Celebration.’,7.90,64),(13967,’Miss Potter’,30000000,”,’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.’,8.386432,’2006-12-03′,35078241,92,’Released’,’The life of Beatrix Potter is the most enchanting tale of all.’,6.30,141),(13972,’The Women’,16000000,’http://thewomen.warnerbros.com/index.html’,’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.’,8.832100,’2008-09-12′,50007546,114,’Released’,”,4.60,96),(13973,’Choke’,3000000,”,’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.’,11.637458,’2008-09-26′,3830137,92,’Released’,’From the author of Fight Club’,6.00,127),(13982,’8 Heads in a Duffel Bag’,0,”,’Mafia hitman Tommy Spinelli (Joe Pesci) is flying to San Diego with a bag that holds eight severed heads, which he\’s bringing to his superiors to prove that some troublesome rival mobsters are permanently out of the picture. When his bag gets accidentally switched at the airport, Tommy must track down his duffel bag and the 8 heads it contains.’,5.016607,’1997-04-18′,0,95,’Released’,’A mindless comedy.’,5.40,39),(13983,’Finishing The Game’,0,”,’In 1973, martial arts great Bruce Lee died, his final film, Game of Death, left unfinished. With the public hungry for more Lee, movie execs decide to find a replacement. This outrageous satire looks at the entire process, from the oddball candidates to the greed and racial motivations that drive the final decision. There\’s big business in the movies, and Finishing the Game skewers it with an eye for \’70s detail.’,0.459625,’2007-01-21′,0,84,’Released’,”,4.90,8),(13990,’The Wackness’,6000000,’http://www.sonyclassics.com/thewackness/’,’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.’,7.161051,’2008-07-03′,2899975,99,’Released’,”,6.20,94),(13991,’College’,7000000,’http://college-themovie.com/’,’A wild weekend is in store for three high school seniors who visit a local college campus as prospective freshmen.’,7.034618,’2008-08-28′,6230276,94,’Released’,”,4.80,48),(13994,’Romance & Cigarettes’,0,”,’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.’,4.056774,’2005-09-13′,2945242,105,’Released’,”,6.00,33),(13996,’Bottle Shock’,5000000,’http://www.bottleshockthemovie.com/’,’Paris-based wine expert Steven Spurrier heads to California in search of cheap wine that he can use for a blind taste test in the French capital. Stumbling upon the Napa Valley, the stuck-up Englishman is shocked to discover a winery turning out top-notch chardonnay. Determined to make a name for himself, he sets about getting the booze back to Paris.’,6.174435,’2008-08-06′,4040588,110,’Released’,’Based on a true story of love, victory, and fermentation’,6.60,60),(14012,’Flicka’,15000000,”,’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.’,3.043589,’2006-10-20′,21000000,95,’Released’,”,6.10,52),(14014,’The Hammer’,0,”,’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.’,0.957022,’2007-04-01′,0,88,’Released’,’Some Guys Don\’t Know Their Destiny Till It Hits Them In The Face.’,6.50,15),(14022,’Slacker’,0,”,’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.’,3.320622,’1990-07-27′,0,97,’Released’,”,6.40,77),(14024,’Raise Your Voice’,15000000,’http://www.newline.com/properties/raiseyourvoice.html’,’Raise Your Voice is a coming-of-age story centered around a small-town singer, 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.’,10.907100,’2004-08-10′,14867514,103,’Released’,’Don\’t Hold Back …Don\’t Give Up.’,6.00,211),(14033,’Soul Survivors’,0,”,’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 A 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’,3.231848,’2001-09-06′,0,84,’Released’,”,4.40,49),(14034,’What\’s the Worst That Could Happen?’,45000000,”,’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.’,7.185212,’2001-05-31′,0,94,’Released’,’It takes a thief to nail a crook.’,5.10,66),(14043,’Nancy Drew’,0,”,’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?’,5.034800,’2007-06-15′,0,99,’Released’,’Small Town Girl. Big Time Adventure.’,5.80,143),(14047,’The Great Debaters’,15000000,”,’The true story of 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.’,10.841580,’2007-12-27′,30226144,126,’Released’,’When the nation was in need, he inspired them to give us hope.’,6.90,151),(14048,’Man on Wire’,0,’http://www.manonwire.com/’,’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.’,14.331992,’2008-07-25′,2957978,94,’Released’,’1974. 1350 feet up. The artistic crime of the century.’,7.50,275),(14054,’Snow Angels’,0,”,’Waitress Annie has separated from her suicidal alcoholic husband, Glenn. Glenn has become an evangelical Christian, but his erratic attempts at getting back into Annie\’s life have alarmed her. High school student Arthur works at Annie\’s restaurant, growing closer to a new kid in town, Lila, after class. When Glenn and Annie\’s daughter go missing, the whole town searches for her, as he increasingly spirals out of control.’,4.262374,’2008-03-07′,414404,106,’Released’,’Some will fall. Some will fly.’,6.50,48);
INSERT INTO `movie` VALUES (14057,’Trust the Man’,9000000,”,’Overachieving actress, Rebecca (Moore), must come to grips with her failing marriage to stay-at-home dad, Tom (Duchovny). While Rebecca\’s slacker brother, Tobey (Billy Crudup), can\’t seem to commit to his aspiring-novelist girlfriend, Elaine (Maggie Gyllenhaal). As both relationships spin out of control, the two couples embark on a quest to rediscover the magic and romance of falling in love in New York.’,5.254500,’2005-09-01′,0,103,’Released’,’Men play the game. Women know the score.’,5.50,29),(14112,’Auto Focus’,7000000,”,’A successful TV star during the 1960s, former \”Hogan\’s Heroes\” actor Bob Crane projects a wholesome family-man image, but this front masks his persona as a sex addict who records and photographs his many encounters with women, often with the help of his seedy friend, John Henry Carpenter. This biographical drama reveals how Crane\’s double life takes its toll on him and his family, and ultimately contributes to his death’,7.051521,’2002-10-18′,2062066,104,’Released’,’A day without sex is a day wasted.’,6.10,56),(14113,’Zoom’,35000000,”,’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\”.’,10.304172,’2006-08-11′,12506188,83,’Released’,’They\’re going to save the world… as long as they\’re home for dinner.’,4.90,135),(14114,’You Got Served’,0,”,’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.’,3.804597,’2004-01-30′,0,95,’Released’,’If you want respect, you\’ve got to take it.’,4.80,75),(14120,’End of the Spear’,0,’http://www.endofthespear.com/’,’\”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’,1.834280,’2005-12-02′,0,108,’Released’,”,6.10,15),(14137,’Beer League’,0,’http://www.beerleaguethemovie.com/’,’An unemployed slacker (Lange) inspires his softball teammates to improve their game so they won\’t get kicked out of the local league.’,1.738920,’2006-09-15′,0,86,’Released’,’No Gut… No Glory.’,5.30,22),(14139,’Los cronocrÃmenes’,2600000,’http://www.cronocrimenes.com/’,’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.’,19.029650,’2007-09-20′,553198,92,’Released’,’A trip back in time from the present to…’,7.00,308),(14144,’Daddy Day Camp’,6000000,’http://www.sonypictures.com/movies/daddydaycamp/site/’,’Seeking to offer his son the satisfying summer camp experience that eluded him as a child, the operator of a neighborhood daycare center opens his own camp, only to face financial hardship and stiff competition from a rival camp.’,12.601677,’2007-08-08′,18197398,89,’Released’,’The summer is going to be in tents.’,4.40,91),(14156,’Impact Point’,0,”,’Pro Beach Volleyball star, Kelly Reyes, faces challenges everyday, fierce competitors, the press, but nothing could prepare her for him.’,1.532518,’2008-06-13′,0,90,’Released’,”,5.70,5),(14160,’Up’,175000000,’http://disney.go.com/disneypictures/up/’,’Carl Fredricksen spent his entire life dreaming of exploring the globe and experiencing life to its fullest. But at age 78, life seems to have passed him by, until a twist of fate (and a persistent 8-year old Wilderness Explorer named Russell) gives him a new lease on life.’,92.201962,’2009-05-13′,735099082,96,’Released’,”,7.70,6870),(14161,’2012′,200000000,’http://www.sonypictures.com/movies/2012′,’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\” to escape the impending cataclysm, Curtis struggles to find a way to save his family. Meanwhile, volcanic eruptions and earthquakes of unprecedented strength wreak havoc around the world.’,45.274225,’2009-10-10′,769653595,158,’Released’,’We Were Warned.’,5.60,4903),(14164,’Dragonball Evolution’,100000000,”,’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.’,21.677732,’2009-04-01′,0,85,’Released’,’The legend comes to life.’,2.90,462),(14165,’Ta Ra Rum Pum’,0,’http://www.yashrajfilms.com/microsites/TRRP/microflash.html’,’A poor New York resident, who is of Indian origin, dreams of becoming a fast car race driver. He endeavors, and his efforts are rewarded when he selected by a little-known group called \’RACING SADDLES\’. He joins them and soon becomes their ace race driver. This man, whose name is Rajveer, then meets with a rich American woman, also of Indian origin, whose name is Radhika. Both fall in love with each other. They cannot get married, because Radhika\’s family hates Rajveer mainly because he is very poor. But Radhika is very stubborn, so she marries him. She loses all her rights to her family\’s wealth. They get married and become parents of two children. They also become very rich. Then Rajveer has an accident which changes their lives forever. They get into debt and stand to lose everything. Will Radhika be forced to return back to her family?’,0.553752,’2007-04-27′,0,156,’Released’,”,6.00,13),(14175,’Valiant’,35000000,”,’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.’,14.051852,’2005-03-25′,19478106,76,’Released’,’Some pigeons eat crumbs, others make history.’,5.20,235),(14177,’Beauty Shop’,25000000,”,’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.’,5.625632,’2005-06-02′,36351350,105,’Released’,’A Cut Above’,5.40,115),(14181,’Boiler Room’,26000000,”,’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.’,11.233081,’2000-02-18′,28780255,118,’Released’,’Welcome to the new American dream.’,6.50,201),(14191,’Aquamarine’,12000000,’http://www.aquamarinemovie.com/’,’Two teenage girls discover that mermaids really do exist after a violent storm washes one ashore. The mermaid, a sassy creature named Aquamarine, is determined to prove to her father that real love exists, and enlists the girls\’ help in winning the heart of a handsome lifeguard.’,16.931846,’2006-03-03′,23006849,104,’Released’,’A Fish-Out-Of-Water Comedy.’,5.80,364),(14195,’Cecil B. Demented’,10000000,”,’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.’,4.176066,’2000-05-17′,0,87,’Released’,’Demented Forever!’,6.20,51),(14199,’The Adventures of Sharkboy and Lavagirl’,50000000,’http://www.miramax.com/movie/the-adventures-of-sharkboy-and-lavagirl/’,’Everyone always knew that Max had a wild imagination, but no one believed that his wildest creations — a boy raised by watchful great white sharks and a girl with the force of a volcano — were real. Now, these two pint-sized action masters will show Max that even an ordinary kid has what it takes to be extraordinary.’,12.311010,’2005-06-10′,69425966,92,’Released’,’Smaller heroes. Just as super.’,4.40,269),(14202,’The Painted Veil’,19400000,”,’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.’,20.746932,’2006-12-09′,0,125,’Released’,’Sometimes the greatest journey is the distance between two people.’,7.10,312),(14220,’Strange Wilderness’,0,”,’With the ratings dropping for a wilderness-themed TV show, two animal fans go to the Andes in search of Bigfoot.’,4.961306,’2008-02-01′,6575282,87,’Released’,’This ain\’t March of the Penguins.’,4.70,69),(14256,’Winter Passing’,3500000,”,’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 well-being.’,3.643608,’2006-02-07′,113783,98,’Released’,’Sometimes you go looking for something you want. . . and find what you need.’,6.70,28),(14271,’Beyond the Mat’,2053648,”,’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.’,2.778633,’1999-10-22′,500000,102,’Released’,”,7.80,17),(14275,’Hoop Dreams’,700000,”,’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\”.’,9.188431,’1994-09-12′,7830611,171,’Released’,’An Extraordinary True Story.’,7.70,87),(14278,’Murderball’,300000,”,’Quadriplegics, who play full-contact rugby in wheelchairs, overcome unimaginable obstacles to compete in the Paralympic Games in Athens, Greece.’,1.085909,’2005-07-22′,1750211,88,’Released’,”,6.90,23),(14283,’The Red Violin’,18000000,”,’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.’,6.188690,’1998-09-10′,9495408,131,’Released’,”,7.30,99),(14284,’In the Shadow of the Moon’,2000000,”,’Archival material from the original NASA film footage â�� much of it seen for the first time â�� plus 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.’,3.431590,’2007-01-19′,0,109,’Released’,”,7.60,31),(14290,’Better Luck Tomorrow’,0,”,’A group of over-achieving Asian-American high school seniors enjoy a power trip when they dip into extra-curricular criminal activities.’,3.877036,’2002-01-12′,0,101,’Released’,’Never underestimate an overachiever.’,6.50,27),(14292,’Miracle’,28000000,”,’In 1980, the United States Ice Hockey team\’s coach, Herb Brooks, put a ragtag squad of college kids up against the legendary juggernaut from the Soviet Union at the Olympic Games. Despite the long odds, Team USA carried the pride of a nation yearning for a distraction from world events. With the world watching, the team rose to the occasion, prompting broadcaster Al Michaels\’ now famous question to the millions viewing at home: \”Do you believe in miracles?\” Yes!’,7.534003,’2004-02-06′,64445708,135,’Released’,’If you believe in yourself, anything can happen.’,7.00,159),(14293,’Poolhall Junkies’,0,”,’A retired pool hustler is forced to pick up the stick again when his brother starts a game he can\’t finish.’,5.902590,’2002-06-07′,0,99,’Released’,’It\’s your shot. Take it.’,6.50,25),(14295,’You Can Count on Me’,0,”,’A single mother\’s life is thrown into turmoil after her struggling, rarely-seen younger brother returns to town.’,7.142448,’2000-11-17′,0,111,’Released’,”,6.80,88),(14299,’Cadillac Records’,12000000,”,’The story of sex, violence, race and rock and roll in 1950s Chicago, and 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.’,13.427427,’2008-12-05′,0,109,’Released’,”,6.90,86),(14306,’Marley & Me’,60000000,’http://marleyandmemovie.com/’,’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.’,30.951203,’2008-12-25′,244082376,115,’Released’,’Heel the love.’,6.90,1343),(14317,’The Wild Thornberrys Movie’,35000000,”,’Eliza and Debbie are two sisters who don\’t always get along. But their relationship is put to the test when Debbie\’s life is in danger, and Eliza might have to give up her power to talk to animals….’,5.784661,’2002-12-20′,0,85,’Released’,’You don\’t need extraordinary powers to do extraordinary things.’,5.80,44),(14324,’Virgin Territory’,38000000,”,’The film is set in Tuscany during the Black Death. As in the Decameron, ten young Florentines take refuge from the plague. But instead of telling stories, they have lusty adventures, bawdy exchanges, romance and swordplay. There are randy nuns, Saracen pirates, and a sexy cow.’,6.760922,’2007-12-17′,5410749,93,’Released’,’Anything Can Happen When You\’re In … Virgin Territory’,4.30,75),(14325,’The Express’,40000000,”,’Based on the incredible true story, The Express follows the inspirational life of college football hero Ernie Davis, the first African-American to win the Heisman Trophy.’,3.878230,’2008-10-10′,9793496,130,’Released’,’He changed our country… one yard at a time.’,7.10,71),(14337,’Primer’,7000,’http://www.primermovie.com’,’Friends/fledgling entrepreneurs invent a device in their garage that reduces the apparent mass of any object placed inside it, but they accidentally discover that it has some highly unexpected capabilities — ones that could enable them to do and to have seemingly anything they want. Taking advantage of this unique opportunity is the first challenge they face. Dealing with the consequences is the next.’,23.307949,’2004-10-08′,424760,77,’Released’,’What happens if it actually works?’,6.90,658),(14351,’Crossover’,5800000,’http://www.sonypictures.com/movies/crossover/’,’The 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.’,3.201886,’2006-09-01′,7000000,95,’Released’,”,4.20,10),(14353,’Repo! The Genetic Opera’,0,”,’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.’,5.897479,’2008-07-18′,188126,98,’Released’,’Not Your Parent\’s Opera’,6.70,100),(14358,’Mad Hot Ballroom’,0,”,’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.’,0.772668,’2005-05-13′,0,105,’Released’,”,7.20,8),(14359,’Doubt’,20000000,”,’In 1964, a Catholic school nun questions a priest\’s ambiguous relationship with a troubled young student, suspecting him of abuse. He denies the charges, and much of the film\’s quick-fire dialogue tackles themes of religion, morality, and authority.’,20.975165,’2008-11-27′,50907234,104,’Released’,’There is no evidence. There are no witnesses. But for one, there is no doubt.’,7.00,435),(14369,’Out Cold’,24000000,”,’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\’.’,4.120640,’2001-11-21′,14782676,89,’Released’,’They haven\’t quite figured it all out, but they\’re getting a little warmer.’,5.80,53),(14392,’æ��å��ç��’,40000000,”,’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.’,6.884467,’2007-12-12′,0,126,’Released’,”,6.30,83),(14395,’à¤�à¤à¥� à¤�लविदा ना à¤�हना’,7400000,”,’Dev and Maya are both married to different people. Settled into a life of domestic ritual, and convinced that they are happy in their respective relationships, they still yearn for something deeper and more meaningful, which is precisely what they find in each other.’,3.246903,’2006-08-11′,17000000,193,’Released’,’A Love…. That Broke All Relationships’,6.10,42),(14396,’Code Name: The Cleaner’,20000000,”,’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.’,9.361460,’2007-01-05′,10337477,84,’Released’,”,4.70,78),(14405,’Beverly Hills Chihuahua’,20000000,”,’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.’,12.252640,’2008-10-03′,149281606,91,’Released’,’50% Warrior. 50% Lover. 100% Chihuahua.’,4.90,209),(14411,’Sinbad: Legend of the Seven Seas’,60000000,’http://sinbad-themovie.com/main.html’,’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.’,18.815442,’2003-07-02′,26288320,86,’Released’,”,6.60,372),(14425,’PCU’,9000000,”,’Nervous high school senior Tom Lawrence visits Port Chester University, where he gets a taste of politically correct college life when he\’s guided by fraternity wild man Droz and his housemates at The Pit. But Droz and his pals have rivals in nasty preppy Rand McPherson and the school\’s steely president. With their house threatened with expulsion, Droz and company decide to throw a raging party where the various factions will collide.’,8.738737,’1994-04-29′,4350774,79,’Released’,’Flunk \’em if they can\’t take a joke.’,6.00,41),(14429,’Drive Me Crazy’,8000000,”,’Nicole and Chase live next door to each other but are worlds apart. However, they plot a scheme to date each other in order to attract the interest and jealousy of their respective romantic prey. But in the mist of planning a gala centennial celebration, Nicole and Chase find that the one they always wanted was closer than they ever thought.’,4.482714,’1999-10-01′,22593409,91,’Released’,’The last guy she wants is the only one she needs.’,5.80,62),(14434,’I Think I Love My Wife’,11000000,”,’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.’,4.536745,’2007-03-16′,13196245,90,’Released’,’In marriage no one can hear you scream.’,5.00,55),(14435,’My Bloody Valentine’,15000000,’http://www.mybloodyvalentinein3d.com/’,’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â��s Day, he woke upâ�¦and brutally murdered twenty-two people with a pickaxe before being killed.’,13.706357,’2009-01-16′,100734718,101,’Released’,’He\’s gonna break your heart.’,5.30,299),(14438,’Fireproof’,500000,’http://www.fireproofthemovie.com/’,’In Albany, the marriage of Caleb end Catherine Holt is in crisis and they decide to divorce. However, Caleb\’s father, John, proposes that his son delays their separation process for forty days and follow a procedure called \”The Love Dare\” to make them love each other again.’,6.093989,’2008-09-26′,33456317,122,’Released’,’Never Leave Your Partner Behind.’,7.00,100),(14442,’Ella Enchanted’,31000000,’http://www.miramax.com/movie/ella-enchanted/’,’Ella lives in a magical world in which each child, at the moment of their birth, is given a virtuous \”gift\” from a fairy godmother. Ella\’s so-called gift, however, is obedience. This birthright proves itself to be quite the curse once Ella finds herself in the hands of several unscrupulous characters whom she quite literally cannot disobey. Determined to gain control of her life and decisions, Ella sets off on a journey to find her fairy godmother who she hopes will lift the curse. The path, however, isn\’t easy — Ella must outwit a slew of unpleasant obstacles including ogres, giants, wicked stepsisters, elves and Prince Charmont\’s evil uncle, who wants to take over the crown and rule the kingdom.’,22.715920,’2004-04-09′,27388767,96,’Released’,’Get enchanted’,5.90,437),(14444,’The Rugrats Movie’,30000000,”,’Tommy faces responsibility when Dil, his new baby brother, is born. As with all newborns, the child becomes a bane to Tommy and the rest of his gang. They decide to return Dil to where he came from, the hospital, but they get lost along the way. Can they find their way home and can Tommy and Dil learn to get along?’,7.981116,’1998-11-20′,100491683,79,’Released’,”,5.70,147),(14451,’Død snø’,800000,’http://www.deadsnow.com’,’Eight medical students on a ski trip to Norway discover that Hitler\’s horrors live on when they come face to face with a battalion of zombie Nazi soldiers intent on devouring anyone unfortunate enough to wander into the remote mountains where they were once sent to die.’,11.205726,’2009-01-09′,1984662,91,’Released’,’Eins, Zwei, Die!’,6.10,311),(14462,’The Manchurian Candidate’,80000000,”,’When his army unit was ambushed during the first Gulf War, Sergeant Raymond Shaw saved his fellow soldiers just as his commanding officer, then-Captain Ben Marco, was knocked unconscious. Brokering the incident for political capital, Shaw eventually becomes a vice-presidential nominee, while Marco is haunted by dreams of what happened — or didn\’t happen — in Kuwait. As Marco (now a Major) investigates, the story begins to unravel, to the point where he questions if it happened at all. Is it possible the entire unit was kidnapped and brainwashed to believe Shaw is a war hero as part of a plot to seize the White House? Some very powerful people at Manchurian Global corporation appear desperate to stop him from finding out.’,21.394281,’2004-07-30′,96105964,129,’Released’,’This summer everything is under control.’,6.20,393),(14474,’The Oh in Ohio’,5000000,”,’Priscilla and Jack appear to be the perfect couple, but they have a secret: She is sexually frustrated. They separate in the hope of resolving the situation. While Jack moves into a bachelor pad and begins an affair with a student, Priscilla discovers the joys of self-pleasuring and finds an unusual bed-mate.’,6.759235,’2006-03-30′,0,88,’Released’,’One woman\’s story is about to climax.’,5.80,27),(14517,’Mirrormask’,4000000,”,’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’,7.758188,’2005-01-25′,866999,101,’Released’,’The Other Side of Reason. The Other Side of Fate. The Other Side of Truth.’,6.60,102),(14536,’New in Town’,8000000,’http://www.newintownmovie.com/’,’Lucy Hill is an ambitious up-and-coming executive living in Miami. She loves her shoes, she loves her cars and she loves climbing the corporate ladder. When she is offered a temporary assignment â�� in the middle of nowhere â�� to restructure a manufacturing plant, she jumps at the opportunity, knowing that a big promotion is close at hand. What begins as a straight-forward assignment becomes a life-changing experience as Lucy discovers greater meaning in her life and, most unexpectedly, the man of her dreams.’,13.987772,’2009-01-30′,29010817,97,’Released’,’She\’s an executive on the move. But her career is taking her a little farther than she expected.’,5.20,99),(14538,’ä¸�å�½ä¹�è§�é¾�å�¸ç�²’,0,”,’The aging Zhao embarks on his final and greatest campaign, a road to adventure that will crown his name in glory for all time.’,4.127155,’2008-04-03′,0,102,’Released’,”,6.60,35),(14544,’Roll Bounce’,0,”,’From Wikipedia, the free encyclopedia. Roll Bounce is a 2005 American comedy-drama film written by Norman Vance Jr. and directed by Malcolm D. Lee. The film stars hip hop artist Bow Wow as the leader of a roller skating crew in 1970s Chicago. The film also stars Nick Cannon, Meagan Good, Brandon T. Jackson, Wesley Jonathan, Chi McBride, Kellita Smith, and Jurnee Smollett. Description above from the Wikipedia article Roll Bounce, licensed under CC-BY-SA, full list of contributors on Wikipedia.’,2.596338,’2005-09-23′,0,112,’Released’,”,6.10,27),(14557,’Dead Man on Campus’,0,”,’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 out.’,7.708227,’1998-08-21′,0,96,’Released’,”,5.60,49),(14560,’Paul Blart: Mall Cop’,26000000,’http://paulblartmallcop.com/’,’Mild-mannered Paul Blart (Kevin James) has always had huge dreams of becoming a State Trooper. Until then, he patrols the local mall as a security guard. With his closely cropped moustache, personal transporter and gung-ho attitude, only Blart seems to take his job seriously. All that changes when a team of thugs raids the mall and takes hostages. Untrained, unarmed and a super-size target, Blart has to become a real cop to save the day.’,31.250383,’2009-01-15′,183293131,91,’Released’,’Safety Never Takes A Holiday.’,5.20,788),(14574,’The Boy in the Striped Pyjamas’,12500000,”,’When his family moves from their home in Berlin to a strange new house in Poland, young Bruno befriends Shmuel, a boy who lives on the other side of the fence where everyone seems to be wearing striped pajamas. Unaware of Shmuel\’s fate as a Jewish prisoner or the role his own Nazi father plays in his imprisonment, Bruno embarks on a dangerous journey inside the camp\’s walls.’,34.821223,’2008-05-07′,20416563,94,’Released’,’Lines may divide us, but hope will unite us.’,7.70,1451),(14576,’Shade’,6800000,”,’Tiffany, Charlie and Vernon are con artists looking to up the ante from their typical scams. They figure a good way of doing this is taking down Dean \”The Dean\” Stevens, a well-known cardsharp, in a rigged game. However, they first need enough money to enter a game with Stevens, so they decide to strike a deal with fellow crook Larry Jennings to scam a local gangster — which turns out to be a bad idea.’,4.665309,’2003-05-18′,0,101,’Released’,’Lie, cheat, steal… your deal!’,6.10,73),(14577,’Dirty Work’,0,”,’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.’,9.066881,’1998-06-12′,0,82,’Released’,’Revenge is a dish best served DIRTY.’,6.50,66),(14578,’Outside Providence’,7000000,”,’In this coming-of-age comedy, Tim Dunphy is leading a go-nowhere existence, spending his days smoking pot and hanging out with his best friend, Drugs Delaney. But Tim\’s lazy days of getting high are jettisoned after a brush with the law convinces his blue-collar dad to send him to a Connecticut prep school. The one saving grace of the new school is Jane, a fellow student Tim falls for immediately.’,2.627232,’1999-08-16′,7292175,96,’Released’,’Tim\’s getting a future… whether he likes it or not!’,5.60,30),(14582,’Passchendaele’,0,’http://www.passchendaelethemovie.com’,’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’,2.405911,’2008-10-17′,0,114,’Released’,”,6.30,26),(14585,’In the Company of Men’,0,”,’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.’,2.634007,’1997-01-19′,0,97,’Released’,’Are all men bastards…or just misunderstood?’,6.80,44),(14608,’Partition’,0,”,’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.’,2.131524,’2007-02-02′,0,116,’Released’,”,6.40,6),(14623,’Thunderbirds’,57000000,’http://www.thunderbirdsmovie.com’,’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.’,9.278750,’2004-07-23′,28283637,95,’Released’,”,4.20,91),(14624,’The Ultimate Gift’,0,”,’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.’,4.976268,’2006-10-20′,0,114,’Released’,”,6.80,78),(14629,’Woman on Top’,8000000,”,’Set to the intoxicating rhythms of Brazil, \”Woman on Top\” is a spicy, sexy comedy about the magic of food, love and music. Meet Isabella, a sultry enchantress born with the special gift of melting the palates and hearts of men everywhere. When she decides to break free from her rocky marriage and the stifling kitchen of her husband\’s restaurant in Brazil, she spirits off to San Francisco in pursuit of her dreams of a real culinary career.’,3.535789,’2000-09-22′,0,92,’Released’,’Want to know how she got there?’,5.50,46),(14631,’The Work and the Glory II: American Zion’,6500000,’http://www.workandtheglory.com/’,’\”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 account of a valiant struggle to exercise the rights promised by a fledgling nation. \”The Work and the Glory: American Zion\” unearths the story of the passion behind the movement which eventually launched the largest American migration and the colonization of the West: the vision of a promised land in America.’,2.639106,’2005-10-21′,2025032,100,’Released’,”,8.00,6),(14635,’The Rookie’,20000000,”,’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 to his end of the deal, is nearly laughed off the try-out field–until he gets onto the mound, where he confounds the scouts (and himself) by clocking successive 98 mph fastballs, good enough for a minor-league contract with the Tampa Bay Devil Rays. Jim\’s still got a lot of pitches to throw before he makes it to The Show, but with his big-league dreams revived, there\’s no telling where he could go.’,11.263361,’2002-03-25′,75597042,127,’Released’,’Sometimes dreams come back to life.’,6.50,110),(14652,’Bon voyage’,0,”,’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.’,0.494460,’2003-04-16′,0,114,’Released’,”,5.70,20),(14655,’Soul Men’,0,”,’Two former backup soul singers, Louis and Floyd, have not spoken to each other in 20 years, and reluctantly agree to travel across the country together to a reunion concert to honor their recently-deceased lead singer. Cleo, a beautiful young woman who is believed to be Floyd\’s daughter, accompanies them as a new singer.’,5.483671,’2008-11-07′,0,103,’Released’,”,6.30,47),(14662,’Slums of Beverly Hills’,5000000,”,’In 1976, a lower-middle-class teenager struggles to cope living with her neurotic family of nomads on the outskirts of Beverly Hills.’,6.308298,’1998-08-14′,0,91,’Released’,’Growing Up is Hard to Do’,6.50,44),(14709,’Varsity Blues’,0,”,’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.’,9.229999,’1999-01-15′,0,106,’Released’,’It takes a hero to know what\’s worth winning.’,6.00,122),(14729,’The Long Riders’,10000000,”,’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.’,2.959547,’1980-05-12′,15795189,99,’Released’,’\”All the world likes an outlaw. For some damn reason they remember \’em.\” – Jesse James’,6.60,50),(14736,’Love & Basketball’,20000000,”,’A young African-American couple navigates the tricky paths of romance and athletics in this drama. Quincy McCall (Omar Epps) and Monica Wright (Sanaa Lathan) grew up in the same neighborhood and have known each other since childhood. As they grow into adulthood, they fall in love, but they also share another all-consuming passion: basketball. They\’ve followed the game all their lives and have no small amount of talent on the court. As Quincy and Monica struggle to make their relationship work, they follow separate career paths though high school and college basketball and, they hope, into stardom in big-league professional ball.’,2.027393,’2000-04-21′,27728118,124,’Released’,’All\’s fair in love and basketball.’,7.40,88),(14745,’The Haunting of Molly Hartley’,0,’http://www.mylifetime.com/movies/the-haunting-of-molly-hartley’,’When teenage Molly Hartley moves to a new town, she\’s haunted by terrifying visions that may have to do with dark secrets from her past. Something evil lurks just beneath the lush surfaces of her private-school world, and it holds the rights to her very soul. On the eve of her 18th birthday, Molly is about to discover the truth of just who or what she is destined to become.’,8.309894,’2008-10-31′,0,82,’Released’,’Her past is yet to come.’,4.30,48),(14757,’Osama’,46000,”,’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.’,1.447734,’2003-05-20′,0,83,’Released’,’To save her family a girl must become a boy’,6.30,32),(14758,’Good Dick’,0,’http://www.gooddickthefilm.com/’,’A fidgety, wisecracking video store clerk develops a fixation on a particularly reclusive customer, a frequent visitor to the pornography section of Cinefile, the video store where he works in Los Angeles. After multiple failures to impress her during their brief daily transactions, he finds her street address in the store\’s database, drives to her apartment building and initiates an unconventional campaign to win her affections.’,1.948435,’2008-10-03′,0,86,’Released’,’A hard man… is good to find.’,6.10,34),(14778,’Last Orders’,0,”,’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 disappointments are woven together in their memories of Jack and his wife Amy’,3.603842,’2001-09-10′,0,109,’Released’,”,6.00,22),(14799,’For Your Consideration’,12000000,”,’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.’,4.330428,’2006-11-22′,5542025,86,’Released’,”,5.90,43),(14811,’Fiddler on the Roof’,9000000,”,’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. Nominated for eight Academy Awards.’,7.623979,’1971-11-03′,83304330,181,’Released’,’To Life!’,7.40,134),(14823,’London to Brighton’,0,”,’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.’,3.060685,’2006-12-01′,0,85,’Released’,’Innocence has nowhere to hide’,6.50,34),(14834,’Not Easily Broken’,0,’http://www.sonypictures.com/movies/noteasilybroken/site/’,’A car accident and shifting affections test the bond between a married couple.’,5.129900,’2009-01-09′,0,99,’Released’,”,6.30,9),(14836,’Coraline’,60000000,’http://coraline.com/’,’When Coraline moves to an old house, she feels bored and neglected by her parents. She finds a hidden door with a bricked up passage. During the night, she crosses the passage and finds a parallel world where everybody has buttons instead of eyes, with caring parents and all her dreams coming true. When the Other Mother invites Coraline to stay in her world forever, the girl refuses and finds that the alternate reality where she is trapped is only a trick to lure her.’,51.146047,’2009-02-05′,124596398,100,’Released’,’Be careful what you wish for.’,7.30,1386),(14844,’Chasing Liberty’,23000000,”,’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.’,3.362045,’2004-01-09′,12,111,’Released’,’How do you fall in love with the whole world watching?’,6.10,152),(14846,’Little Black Book’,35000000,”,’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.’,6.246199,’2004-08-06′,22034832,111,’Released’,’Have you ever been tempted to look inside his…’,5.20,112),(14849,’Dead Like Me: Life After Death’,0,”,’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.’,7.864905,’2009-02-17′,0,87,’Released’,”,5.80,65),(14854,’Lone Wolf McQuade’,5000000,”,’The archetypical 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.’,8.452666,’1983-04-14′,12232628,107,’Released’,’The \’Mad Dog\’ Criminal…The \’Lone Wolf\’ Lawman…The Ultimate Showdown.’,5.50,67),(14869,’G.I. Joe: The Rise of Cobra’,175000000,’http://www.gijoemovie.com/’,’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.’,32.852443,’2009-08-04′,302469017,118,’Released’,’When all else fails, they don\’t.’,5.60,1962),(14873,’The Jungle Book 2′,20000000,”,’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.’,19.819893,’2003-02-07′,135680000,72,’Released’,’Feel the jungle beat’,5.60,269),(14877,’September Dawn’,11000000,”,’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.’,3.646848,’2007-05-17′,0,110,’Released’,”,5.00,16),(14902,’1776′,0,”,’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.’,1.807571,’1972-11-09′,0,142,’Released’,’The award winning musical comes to the screen!’,7.10,20),(14914,’Flash of Genius’,0,’http://flashofgenius.net/’,’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.’,3.350297,’2008-09-07′,0,119,’Released’,’Corporations have time, money, and power on their side. All Bob Kearns had was the truth.’,6.30,59),(14976,’Rachel Getting Married’,0,”,’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.’,14.345428,’2008-10-03′,0,113,’Released’,”,6.10,163),(15005,’One Night with the King’,20000000,’http://8x.com/onenight/main.html’,’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.’,3.476925,’2006-10-13′,13391174,123,’Released’,’Feel The Touch Of Destiny’,6.10,12),(15013,’Wah-Wah’,0,”,’Set at the end of the 1960s, as Swaziland is about to receive independence from United Kingdom, the film follows the young Ralph Compton, at 12, through his parents\’ traumatic separation, till he\’s 14. The film is largely based on Richard E. Grant\’s own experiences as a teenager in Swaziland, where his father was head of education for the British government administration.’,2.356244,’2005-08-17′,0,120,’Released’,’Every family has its own language’,6.30,8),(15017,’Blonde Ambition’,10000000,”,’A young professional woman (Simpson) unwittingly becomes the pawn of two business executives in their bid to oust the head of a mega-conglomerate.’,3.064563,’2007-12-21′,0,93,’Released’,’Small-town girl. Big-time dreams.’,3.90,29),(15028,’Clockstoppers’,26000000,”,’Until now, Zak Gibbs\’ greatest challenge has been to find 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 seems to come to a stop, everything and everybody frozen in time. Zak quickly learns how to manipulate the device and he and his quick-witted and beautiful new friend, Francesca, start to have some real fun.’,5.894163,’2002-03-17′,38793283,94,’Released’,’The adventure of a lifetime, in a few mere seconds.’,4.90,89),(15037,’Can\’t Hardly Wait’,10000000,”,’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.’,11.350382,’1998-06-12′,25605015,100,’Released’,’Yesterday\’s history. Tomorrow\’s the future. Tonight\’s the party.’,6.10,122),(15045,’Fat Albert’,0,”,’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.’,7.157635,’2004-12-12′,0,93,’Released’,”,4.30,69),(15049,’Bon Cop Bad Cop’,8000000,”,’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.’,5.069095,’2006-07-06′,12671300,116,’Released’,’Shoot First Translate Later’,6.50,42),(15059,’The Loss of Sexual Innocence’,4000000,”,’The story of the sexual development of a filmmaker through three stages of his life.’,2.866934,’1999-04-29′,0,106,’Released’,”,5.20,9),(15067,’ì¢�ì�� ë��, ë��ì�� ë��, ì�´ì��í�� ë��’,10000000,”,’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.’,11.847324,’2008-07-16′,0,130,’Released’,’A Fistful of Fun!’,7.10,193),(15070,’Undisputed’,20000000,”,’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.’,17.227376,’2002-08-23′,12398628,96,’Released’,’Two Enemies … The Mob … The Ultimate Showdown.’,6.10,139),(15074,’Extreme Ops’,40000000,”,’While filming an advertisement, some extreme sports enthusiasts unwittingly stop a group of terrorists.’,2.911819,’2002-11-27′,10959475,93,’Released’,’Fear is a trigger’,5.00,28),(15092,’Crank: High Voltage’,20000000,’http://www.crank2.com/’,’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.’,35.542809,’2009-04-16′,34560577,96,’Released’,’Stay Charged, Stay Alive!’,5.90,861),(15121,’The Sound of Music’,8200000,”,’Film adaptation of a classic Rodgers and Hammerstein musical based on a nun who becomes a governess for an Austrian family.’,37.960289,’1965-03-02′,286214286,174,’Released’,’The happiest sound in all the world!’,7.40,941),(15122,’Love Stinks’,0,”,’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 wants to remain single and together, she becomes quite bitter. In the next hour of the movie, the two engage in behavior that makes the War of the Roses look like child\’s play.’,3.347885,’1999-09-10′,0,94,’Released’,”,5.40,11),(15158,’Phantasm II’,3000000,’http://phantasm.com’,’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.’,5.003615,’1988-07-08′,7282851,97,’Released’,’The ball is back!’,6.30,94),(15173,’Jonah: A VeggieTales Movie’,0,”,’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.’,1.446172,’2002-10-04′,0,82,’Released’,’Fresh Fish. Mixed Vegetables.’,6.40,22),(15186,’Full Frontal’,2000000,”,’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.’,1.956860,’2002-08-02′,2506446,96,’Released’,’Everybody Needs A Release’,4.80,26),(15189,’Hotel for Dogs’,35000000,”,’Placed in a foster home that doesn\’t allow pets, 16-year-old Andi and her younger brother, Bruce, turn an abandoned hotel into a home for their dog. Soon other strays arrive, and the hotel becomes a haven for every orphaned canine in town. But the kids have to do some quick thinking to keep the cops off their tails.’,13.257530,’2009-01-16′,73034460,100,’Released’,’No stray gets turned away.’,5.70,202),(15198,’Mystery, Alaska’,28000000,”,’In Mystery, Alaska, life revolves around the legendary Saturday hockey game at the local pond. But everything changes when the hometown team unexpectedly gets booked in an exhibition match against the New York Rangers. When quirky small-towners, slick promoters and millionaire athletes come together.’,4.436792,’1999-10-01′,8888143,119,’Released’,’A Small Town on the Outskirts of Greatness.’,6.00,69),(15208,’Bathory’,0,”,’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.’,2.500218,’2008-07-04′,0,141,’Released’,”,5.60,31),(15237,’De-Lovely’,20000000,”,’From Paris to Venice to Broadway to Hollywood, the lives of Cole Porter and his wife, Linda were never less than glamorous and wildly unconventional. And though Cole\’s thirst for life strained their marriage, Linda never stopped being his muse, inspiring some of the greatest sons of the twentieth century.’,3.138118,’2004-07-02′,0,125,’Released’,”,6.30,32),(15239,’The Toxic Avenger’,0,”,’Tromaville has a monstrous new hero. The Toxic Avenger is born when mop boy Melvin Junko falls into a vat of toxic waste. Now evildoers will have a lot to lose.’,6.672008,’1984-05-01′,0,82,’Released’,’He was 98lbs. of solid nerd until he became…’,6.30,113),(15250,’This Christmas’,13000000,”,’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.’,2.388918,’2007-11-27′,0,117,’Released’,’You can\’t exchange family.’,7.10,29),(15256,’200 Cigarettes’,6000000,”,’A collection of twentysomethings try to cope with relationships, loneliness, desire and their individual neuroses.’,3.561198,’1999-02-26′,6852450,101,’Released’,’It\’s 11:59 on New Years Eve… do you know where your date is?’,6.10,44),(15268,’Street Fighter: The Legend of Chun-Li’,50000000,”,’When a teenager, Chun-Li witnesses the kidnapping of her father by wealthy crime lord M. Bison. When she grows up, she goes into a quest for vengeance and becomes the famous crime-fighter of the Street Fighter universe.’,8.139676,’2009-02-27′,12764201,97,’Released’,’Some fight for power. Some fight for us.’,3.90,112),(15301,’Twilight Zone: The Movie’,10000000,”,’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\”.’,12.902975,’1983-06-24′,29450919,101,’Released’,’You\’re travelling through another dimension. A dimension, not only of sight and sound, but of mind. A journey into a wondrous land whose boundaries are that of imagination. Next stop, the Twilight Zone!’,6.20,161),(15365,’Witless Protection’,0,”,’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’,1.821840,’2008-02-22′,0,97,’Released’,’Protecting America\’s assets.’,4.00,26),(15373,’Role Models’,28000000,”,’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.’,24.917665,’2008-02-03′,92380927,99,’Released’,’They\’re about to get more than they plea-bargained for.’,6.40,564),(15389,’Metropolitan’,225000,”,’A sparkling comedic chronicle of a middle-class young manâ��s romantic misadventures among New York Cityâ��s debutante society. Stillmanâ��s 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.’,1.014966,’1990-08-03′,0,98,’Released’,’Finally… A film about the downwardly mobile.’,7.00,38),(15394,’Owning Mahowny’,0,”,’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-handed bank fraud in Canadian history, grossing over $10 million in eighteen months to feed his gambling obsession.’,8.045488,’2003-05-02′,0,104,’Released’,’To some it\’s a game. To others it\’s a habit. But to Dan Mahowny — beating the odds is everything’,6.80,37),(15487,’The Greatest Game Ever Played’,25000000,”,’A biopic of 20-year-old Francis Ouimet who defeated his golfing idol and 1900 US Open Champion, Harry Vardon.’,7.538513,’2005-09-30′,15431177,120,’Released’,’Based on a True Story’,6.90,110),(15489,’Snow Day’,0,”,’When a school in upstate New York is snowed in, a group of students hi-jack a plow to keep the school closed..’,7.964289,’2000-02-11′,0,89,’Released’,’Roads closed. Schools shut. Rules were made to be frozen!’,4.80,51),(15511,’VeggieTales: The Pirates Who Don\’t Do Anything’,0,”,’Set Sail For Adventure! A 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! Larry 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.’,1.800119,’2008-01-11′,0,85,’Released’,”,5.90,25),(15512,’Monsters vs Aliens’,175000000,’http://www.monstersvsaliens.com/’,’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…’,36.167578,’2009-03-19′,381509870,94,’Released’,’When aliens attack, monsters fight back.’,6.00,1423),(15544,’Extreme Movie’,0,”,’A sketch comedy movie about the joys and embarrassments of teen sex. But mostly the embarrassments.’,8.148187,’2008-12-05′,0,88,’Released’,’UNRATED. A film with many happy endings…’,3.90,44),(15556,’At First Sight’,0,”,’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.’,5.778724,’1999-01-15′,0,128,’Released’,’Science gave him sight. She gave him vision.’,5.90,48),(15568,’Gracie’,9000000,”,’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 reserves of strength she never knew existed, and persists in changing everyone\’s beliefs in what she is capable of, including her own. She faces an uphill battle when she fights to give women the opportunity to play competitive soccer. But as the beautiful and strong person that she has always been but she also brings her family together in the face of their own tragedy.’,2.365328,’2007-06-01′,2955039,97,’Released’,”,6.00,17),(15581,’Who\’s Your Caddy?’,0,”,’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.’,2.881239,’2007-07-27′,0,93,’Released’,”,3.80,18),(15582,’Teen Wolf Too’,0,”,’Although awkward college student Todd Howard is particularly adept at science, he\’s paying for school with an athletic scholarship that he will lose should he not fare well in an upcoming boxing tournament. Luckily for Todd, he has inherited the same family curse that once turned his cousin into a werewolf. As he transforms into the hairy, fanged, howling monster, he finds both his physical agility and his popularity skyrocketing — but at what cost?’,4.103764,’1987-11-20′,0,95,’Released’,’High school was easy. But college is a whole different ANIMAL.’,3.80,46),(15624,’Conversations with Other Women’,450000,”,’Reunited at a wedding after many years, former lovers again feel the pull of a mutual attraction neither is willing to admit. Escaping the reception for the privacy of a hotel room, the unnamed pair explore the choices of the past that led them to the present.’,4.442355,’2006-06-07′,973525,84,’Released’,’There are two sides to every love story.’,6.20,38),(15639,’Larry the Cable Guy: Health Inspector’,0,”,’A slovenly cable repairman becomes a big-city health inspector and is tasked with uncovering the source of a food poisoning epidemic.’,2.184708,’2006-03-24′,0,89,’Released’,”,3.30,17),(15644,’Paparazzi’,20000000,”,’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.’,9.149089,’2004-09-03′,16605763,84,’Released’,’One good shot deserves another.’,5.80,52),(15647,’Kissing Jessica Stein’,1000000,”,’Jessica, a Jewish copy editor 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, a thirtysomething art gallerist.’,3.990215,’2001-04-21′,10013424,97,’Released’,’When it comes to love, sometimes she just can\’t think straight.’,5.90,48),(15648,’The Perfect Man’,0,’http://www.watchvideoseries.com/movies/the-perfect-man-2005/’,’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.’,11.158906,’2005-06-17′,0,100,’Released’,’Is it all too good to be true?’,5.50,203),(15655,’The Tigger Movie’,30000000,’http://www.tigger.com’,’As it happens, everybody – Pooh, Piglet, Eeyore, Roo, Rabbit, Owl – is busy preparing a suitable winter home for Eeyore. When everything they 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?’,9.829859,’2000-02-11′,45554533,77,’Released’,”,6.30,143),(15660,’Mommie Dearest’,0,”,’In this biographical film, glamorous yet lonely star Joan Crawford takes in two orphans, and at first their unconventional family seems happy. But after Joan\’s attempts at romantic fulfillment go sour and she is fired from her contract with MGM studios, her callous and abusive behavior towards her daughter Christina becomes even more pronounced. Christina leaves home and takes her first acting role, only to find her mother\’s presence still overshadowing her.’,3.102862,’1981-09-18′,0,129,’Released’,’The meanest mother of them all’,6.50,54),(15670,’Madea Goes to Jail’,0,’http://www.madeagoestojailmovie.com/’,’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!’,3.107371,’2009-02-16′,90508336,103,’Released’,”,6.40,52),(15673,’Connie and Carla’,20000000,”,’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’,6.102663,’2004-04-16′,11341016,98,’Released’,’When you follow your dream, there\’s no telling what you\’ll become.’,6.40,24),(15699,’Opal Dream’,5000000,”,’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.’,1.458884,’2006-11-22′,140666,86,’Released’,”,6.10,7),(15708,’Latter Days’,850000,”,’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.’,5.424916,’2003-07-10′,819939,107,’Released’,’Aaron prays. Christian plays… Opposites attract.’,6.70,56),(15745,’Made’,5000000,”,’Two aspiring boxers lifelong friends get involved in a money-laundering scheme through a low-level organized crime group.’,4.149628,’2001-07-13′,5476060,94,’Released’,’Welcome to disorganized crime.’,6.30,55),(15765,’What\’s Love Got to Do with It’,0,”,’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.’,7.921311,’1993-06-09′,0,118,’Released’,’Who needs a heart when a heart can be broken?’,6.90,72),(15797,’Only the Strong’,6000000,”,’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.’,5.411243,’1993-08-27′,3283371,99,’Released’,’The ultimate martial art.’,6.90,29),(15800,’Trekkies’,0,”,’A hilarious look at the universe\’s most fervent fans.’,2.777540,’1997-10-18′,0,86,’Released’,”,6.30,22),(15875,’Donovan\’s Reef’,2686000,”,’\’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.’,1.897263,’1963-06-12′,6600000,109,’Released’,’Gangway…For This Years BIG Adventure!’,6.00,30),(15907,’Duma’,12000000,’http://dumamovie.warnerbros.com/’,’An orphaned cheetah becomes the best friend and pet of a young boy living in South Africa.’,4.795244,’2005-04-22′,0,100,’Released’,’Some friendships are wilder than others’,6.90,41),(15927,’A Passage to India’,8000000,”,’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é, 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).’,9.548391,’1984-12-14′,27187653,163,’Released’,’David Lean, the Director of \”Doctor Zhivago\”, \”Lawrence of Arabia\” and \”The Bridge on the River Kwai\”, invites you on . .’,6.90,67),(15976,’Ha-Buah’,0,”,’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.’,1.494360,’2006-06-06′,0,114,’Released’,”,7.60,20),(15983,’Invasion U.S.A.’,0,”,’A one-man army comes to the rescue of the United States when a spy attempts an invasion.’,4.192064,’1985-09-27′,0,107,’Released’,’America wasn\’t ready…but HE was!’,5.30,49),(15992,’Abandon’,25000000,”,’A psychological thriller about a senior at one of America\’s most prestigious universities. Under enormous pressure to complete her thesis and earn a top job at one of the world\’s most competitive consulting firms, Katie is still coping with the sudden unexplained disappearance of her first love two years prior. As the investigation continues, Katie is forced to choose between past passions and new possibilities, even as new facts are uncovered.’,3.888776,’2002-10-14′,10719357,99,’Released’,’Watch who you leave behind.’,4.60,45),(16005,’The Lucky Ones’,0,’http://www.theluckyonesmovie.com/’,’The story revolves around three soldiers â�� Colee, T.K. and Cheaver â�� 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.’,8.747922,’2008-09-26′,0,113,’Released’,”,6.30,55),(16016,’Rejsen til Saturn’,0,”,’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.’,1.776624,’2008-09-26′,0,90,’Released’,”,4.90,10),(16028,’They’,17000000,”,’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..’,4.544216,’2002-11-01′,0,89,’Released’,’Are you afraid of the dark? You should be.’,4.60,74),(16052,’Selena’,20000000,”,’In this biographical drama, Selena Quintanilla is born into a musical Mexican-American family in Texas. Her father, Abraham, realizes that his young daughter is talented and begins performing with her at small venues. She finds success and falls for her guitarist, Chris Perez, who draws the ire of her father. Seeking mainstream stardom, Selena begins recording an English-language album which, tragically, she would never complete.’,6.925920,’1997-03-21′,60000000,127,’Released’,’Discover the true story of one of America\’s brightest stars… that faded too soon.’,7.00,114),(16072,’Gods and Generals’,56000000,”,’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.’,4.362535,’2003-02-21′,12923936,214,’Released’,’The nations heart was touched by…’,6.10,48),(16096,’House Party 2′,0,”,’Kid\’N\’Play leave their neighborhood and enter the world of adulthood and higher education. Play attempts to get rich quick in the music business while Kid faces the challenges of college.’,3.673566,’1991-10-23′,0,94,’Released’,”,4.70,21),(16110,’Thomas and the Magic Railroad’,0,”,’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 Lily and her morose grandfather, plus the secret engine.’,1.916351,’2000-07-26′,0,85,’Released’,’Little Engines CAN Do Big Things…’,4.60,8),(16112,’The Adventures of Elmo in Grouchland’,0,”,’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, realizing that he was selfish with his friend and responsible for what happened.’,3.091590,’1999-10-01′,0,73,’Released’,’The Good, The Bad and The Stinky.’,6.30,14),(16148,’Zero Effect’,5000000,”,’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.’,2.732031,’1998-01-30′,1980338,116,’Released’,’The world\’s most private detective.’,6.00,55),(16155,’Safe Men’,0,”,’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.’,1.190729,’1998-08-17′,0,88,’Released’,’Welcome to the world of disorganised crime.’,6.30,16),(16158,’The Wood’,6000000,”,’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.’,5.537646,’1999-07-16′,25059640,106,’Released’,’From best friends to best men.’,7.10,34),(16161,’Baby Boy’,16000000,”,’The story of Jody, a misguided, 20-year-old African-American who is really just a baby boy finally forced-kicking and screaming to face the commitments of real life. Streetwise and jobless, he has not only fathered two children by two different women-Yvette and Peanut but still lives with his own mother. He can\’t seem to strike a balance or find direction in his chaotic life.’,7.854989,’2001-06-27′,29381649,130,’Released’,’Just a Baby Boy.’,7.40,55),(16162,’The Best Man’,9000000,’http://www.universalpictures.com/bestman/’,’Harper, a writer who\’s about to explode into the mainstream leaves behind his girlfriend Robin and heads to New York City to serve as best man for his friend Lance\’s wedding. Once there, he reunites with the rest of his college circle.’,3.951041,’1999-10-22′,34573780,120,’Released’,”,6.80,38),(16172,’Simply Irresistible’,6000000,”,’After her mother\’s death, mediocre chef Amanda Shelton is having trouble attracting customers to her family\’s restaurant. While shopping for ingredients, she is given a magical crab by mysterious Gene O\’Reilly. Afterward, Amanda\’s dishes suddenly become excellent, inducing strong emotional reactions in everyone who eats them. Tom Bartlett, who is preparing to open his own eatery, tries her cooking and falls in love.’,5.696491,’1999-02-05′,4398989,95,’Released’,’Magic opened up their hearts… Love did the rest.’,5.50,52),(16186,’Diary of a Mad Black Woman’,0,”,’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.’,3.784535,’2005-02-25′,0,116,’Released’,’Time heals the heart. Faith heals the rest.’,6.40,71),(16205,’Jack Brooks: Monster Slayer’,0,”,’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.’,2.659804,’2007-10-09′,0,85,’Released’,’…I used to be a plumber’,5.70,59),(16222,’Whatever It Takes’,15000000,”,’A nerdy teen, Ryan Woodman is smitten with the popular and gorgeous Ashley Grant, who apparently has no interest in him. Meanwhile, dim star athlete Chris Campbell has his eye on Ryan\’s brainy and beautiful friend, Maggie Carter. The two agree to help each other in their romantic quests, but, as they come closer to their goals, both Ryan and Chris suspect that they might be pursuing the wrong girls.’,8.074807,’2000-03-31′,9902115,94,’Released’,’How low will they go to get the girls of their dreams?’,5.00,37),(16232,’Mr. 3000′,30000000,”,’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.’,2.850896,’2004-06-15′,21800302,104,’Released’,’Big league. Big mouth. Big time.’,5.00,66),(16241,’The Boys from Brazil’,0,”,’Nazi hunter Ezra Lieberman discovers a sinister and bizarre plot to rekindle the Third Reich.’,5.315213,’1978-10-05′,0,125,’Released’,’If they survive…will we?’,6.60,101),(16281,’Creepshow’,8000000,”,’Inspired by the E.C. comics of the 1950s, George A.Romero and Stephen King bring five tales of terror to the screen.’,13.661289,’1982-11-12′,21028755,120,’Released’,’The Most Fun You\’ll Ever Have… BEING SCARED!’,6.70,226),(16288,’Creepshow 2′,3500000,”,’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?’,10.729884,’1987-05-01′,14000000,92,’Released’,’When the curtain goes up, the terror begins.’,5.90,129),(16290,’Jackass 3D’,20000000,”,’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.’,20.991740,’2010-10-15′,117224271,94,’Released’,’Don\’t try this at home’,6.40,428),(16300,’Down to Earth’,0,”,’After dying before his time, an aspiring comic gets a second shot at life… by being reincarnated as a wealthy but un-likable businessman.’,9.166658,’2001-02-16′,0,87,’Released’,”,4.90,95),(16320,’Serenity’,39000000,”,’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.’,45.388937,’2005-08-25′,38869464,119,’Released’,’Can\’t stop the signal.’,7.40,1264),(16323,’The Rose’,9250000,”,’Midler is the rock-and-roll singer Mary Rose Foster (known as the Rose to her legions of fans), whose romantic relationships and mental health are continuously imperiled by the demands of life on the road.’,7.000949,’1979-11-07′,29174648,125,’Released’,’She gave and gave, until she had nothing left to give’,6.80,28),(16337,’The Texas Chainsaw Massacre 2′,4700000,”,’A radio host is victimized by the cannibal family as a former Texas Marshall hunts them.’,9.617777,’1986-08-22′,8025872,101,’Released’,’After a decade of silence… The buzzz is back!’,5.90,139),(16340,’Rugrats in Paris: The Movie’,30,”,’The Rugrats are back! There\’s Tommy the brave one, Chuckie the timid one, Phil and Lil the odd couple, Dil, and spoiled brat Angelica. This time they\’re wreaking havoc in Paris, France, where Tommy\’s dad Stu is summoned after yet another one of his inventions took a dump.’,4.590277,’2000-09-14′,103,78,’Released’,’Ooo la la! Paris will never be the same!’,6.00,100),(16351,’Ararat’,0,”,’A variety of characters, some close relatives, others distant strangers, are each affected by the making of a film about the Armenian Genocide of 1915.’,1.326264,’2002-05-20′,0,115,’Released’,”,5.70,16),(16353,’Ong Bak 2′,8500000,’http://www.ongbak2themovie.com/’,’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.’,9.029489,’2008-12-04′,8936663,98,’Released’,’Warrior. Conqueror. Legend.’,6.00,152),(16358,’Eulogy’,0,”,’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.’,9.085482,’2004-10-15′,0,91,’Released’,”,6.40,34),(16363,’The Best Little Whorehouse in Texas’,35000000,”,’The town sheriff and a madame team up to stop a television evangelist from shutting down the local whorehouse, the famed \”Chicken Ranch.\”‘,4.189378,’1982-07-23′,69701637,114,’Released’,’With Burt and Dolly this much fun just couldn\’t be legal!’,5.90,41),(16388,’The Brothers McMullen’,0,”,’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 â�� love, sex, marriage, religion and family â�� in the 1990s. Directed, written, produced by and starring Edward Burns.’,1.578903,’1995-08-09′,0,98,’Released’,’Sometimes the Best Friends Are the Ones You\’ve Known Your Whole Life.’,6.30,23),(16406,’Dick’,13000000,”,’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.’,4.742537,’1999-08-04′,27500000,94,’Released’,’The unmaking of the president’,5.70,67),(16428,’Breakin\’ All the Rules’,0,”,’Inspired by his fiancée (who dumped him), a man publishes a break-up handbook for men, becoming a bestselling author in the process.’,6.904734,’2004-05-14′,0,85,’Released’,’When it comes to getting dumped… He wrote the book.’,5.80,21),(16433,’Grand Theft Parsons’,0,”,’There are times when it\’s right and proper to simply bury the dead. This is not one of those times… Gram Parsons was one of the most influential musicians of his time; a bitter, brilliant, genius who knew Elvis, tripped with the Stones and fatally overdosed on morphine and tequila in 1973. And from his dying came a story. A story from deep within folklore; a story of friendship, honour and adventure; a story so extraordinary that if it didn\’t really happen, no one would believe it. Two men, a hearse, a dead rock star, five gallons of petrol, and a promise. And the most extraordinary chase of modern times.’,1.998557,’2003-06-18′,0,88,’Released’,’It\’s better to burn out than to fade away.’,6.00,11),(16441,’The Beastmaster’,0,”,’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, which leads him on his quest for revenge against his father\’s killers.’,6.377523,’1982-08-20′,14056528,118,’Released’,’Born with the courage of an eagle, the strength of a black tiger, and the power of a god.’,6.00,97),(16448,’Waiting for Guffman’,0,”,’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!\”‘,4.348416,’1996-01-31′,0,84,’Released’,’There\’s a good reason some talent remains undiscovered.’,7.30,63),(16471,’Modern Problems’,0,”,’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.’,4.293706,’1981-12-25′,0,89,’Released’,”,5.60,23),(16508,’Doug\’s 1st Movie’,0,”,’Doug and his pal Skeeter set\’s out to find the monster of Lucky Duck Lake. Though things get really out of hand when some one blurts out that the monster is real.’,1.884840,’1999-03-26′,0,77,’Released’,’You\’ll Dig Doug!’,5.40,22),(16523,’Where the Wild Things Are’,100000000,’http://wherethewildthingsare.warnerbros.com/’,’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.’,31.586215,’2009-10-16′,100086793,101,’Released’,’There\’s one in all of us.’,6.40,572),(16538,’I Love You, Man’,41000000,’http://www.iloveyouman.com/’,’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.\”‘,25.391899,’2009-03-20′,91636986,105,’Released’,’He needed a best man… He got the worst.’,6.50,515),(16558,’Duplicity’,78146652,’http://www.universalstudiosentertainment.com/duplicity/’,’Two romantically-engaged corporate spies 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.’,13.630049,’2009-03-19′,60000000,125,’Released’,’Outwit. Outspy. Outsmart. Outplay. Then get out.’,5.70,201),(16564,’Oorlogswinter’,4000000,’http://www.sonyclassics.com/winterinwartime/’,’During World War II in the freezing Netherlands winter of 1944/1945 the western Netherlands are in the grip of a famine. Many people move east to provide for their families. Fourteen year old Michiel can\’t wait to join the Dutch resistance, to the dismay of his father, who, as mayor, works to prevent escalations in the village.’,5.013575,’2008-11-17′,530048,103,’Released’,’In 1945 Holland, a boy must choose between good and evil.’,6.80,66),(16577,’Astro Boy’,65000000,’http://www.astroboy-themovie.com/’,’Set in futuristic Metro City, Astro Boy is about a young robot with incredible powers created by a brilliant scientist in the image of the son he has lost. Unable to fulfill the grieving man\’s expectations, our hero embarks on a journey in search of acceptance, experiencing betrayal and a netherworld of robot gladiators, before he returns to save Metro City and reconcile with the father who had rejected him.’,24.857079,’2009-10-15′,44091067,94,’Released’,’Have a blast.’,6.10,409),(16608,’The Proposition’,2000000,”,’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.’,14.617944,’2005-10-06′,5048693,104,’Released’,’This land will be civilized.’,7.10,218),(16614,’Adventureland’,9500000,’http://www.adventurelandthefilm.com/’,’In the summer of 1987, a college graduate 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.’,19.978021,’2009-04-03′,17164377,107,’Released’,’Nothing brings people together like a crappy summer job.’,6.40,737),(16617,’Mindhunters’,27000000,’http://www.mindhunters-thefilm.com/’,’Trainees in the FBI\’s psychological profiling program must put their training into practice when they discover a killer in their midst.’,17.193659,’2004-05-07′,21148829,106,’Released’,’For seven elite profilers, finding a serial killer is a process of elimination. Their own.’,6.30,333),(16619,’Ordinary People’,6000000,”,’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.’,12.541983,’1980-09-19′,0,124,’Released’,’Everything is in its proper place…except the past.’,7.40,145),(16620,’La Bamba’,6500000,”,’Biographical story of the rise from nowhere of singer Ritchie Valens whose life was cut short by a plane crash.’,6.847099,’1987-07-24′,54215416,108,’Released’,’Born into poverty. Destined for stardom. He lived the American dream.’,6.80,116),(16633,’Somewhere in Time’,5100000,”,’Young writer, Richard Collier is met on the opening night of his first play by an old lady who begs him to, \”Come back to me.\” Mystified, he tries to find out about her, and learns that she is a famous stage actress from the early 1900s. Becoming more and more obsessed with her, he manages â�� by self-hypnosis â�� to travel back in time where he meets her. They fall in love, a matching that is not appreciated by her manager. Can their love outlast the immense problems caused by their \’time\” difference, and can Richard remain in a time that is not his?’,5.934016,’1980-10-02′,0,103,’Released’,’Beyond fantasy. Beyond obsession. Beyond time itself… he will find her.’,7.20,102),(16642,’Days of Heaven’,0,”,’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â��Malick captures it all with dreamlike authenticity, creating at once a timeless American idyll and a gritty evocation of turn-of-the-century labor.’,13.857194,’1978-09-13′,0,94,’Released’,’Your eyes… Your ears… Your senses… will be overwhelmed.’,7.60,234),(16643,’Life or Something Like It’,40000000,”,’A reporter Lanie Kerrigan interviews a psychic homeless man for a fluff piece about a football game\’s score. Instead he tells her that her life has no meaning and is going to end in just a few days, which sparks her to action, trying to change the pattern of her life…’,8.980846,’2002-04-26′,16872671,103,’Released’,”,5.70,124),(16651,’The Other Side of Heaven’,7000000,”,’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 deep-rooted suspicion to earn the trust and love of the Tongan people he has come to serve. Throughout his adventure-filled three years on the islands, he discovers friends and wisdom in the most unlikely places. John H. Groberg\’s Tongan odyssey will change his life forever.’,2.206097,’2001-04-12′,4720371,113,’Released’,’An Epic Journey.’,6.70,14),(16653,’The Singles Ward’,0,”,’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 is he going for the right reasons?’,0.920591,’2002-01-30′,0,102,’Released’,’The Road to Eternal Marriage Has Never Been Longer’,7.50,4),(16690,’Return to Never Land’,20000000,”,’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.’,15.341196,’2002-02-14′,109862682,72,’Released’,’The Classic Continues’,6.10,290),(16727,’The Namesake’,12000000,”,’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.’,3.604863,’2006-09-02′,20138836,122,’Released’,’Two Worlds. One Journey.’,6.80,50),(16769,’Coal Miner\’s Daughter’,15000000,”,’Biography of Loretta Lynn, a country and western singer that came from poverty to fame.’,3.826685,’1980-03-07′,67182787,125,’Released’,’She was married at 13. She had four kids by the time she was 20. She\’s been hungry and poor. She\’s been loved and cheated on. She became a singer because it was the only thing she could do. She became a star because it was the only way she could do it.’,7.20,67),(16781,’Madea\’s Family Reunion’,6000000,”,’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.’,5.882208,’2006-02-24′,57231524,110,’Released’,”,6.00,77),(16784,’Welcome to Mooseport’,30000000,”,’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).’,3.314094,’2004-02-24′,14000000,110,’Released’,”,4.80,54),(16857,’The Dangerous Lives of Altar Boys’,0,”,’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.’,2.248880,’2002-06-14′,0,104,’Released’,”,6.40,53),(16858,’All That Jazz’,0,”,’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.’,5.159407,’1979-12-20′,37823676,123,’Released’,’All that work. All that glitter. All that pain. All that love. All that crazy rhythm. All that jazz.’,7.30,85),(16866,’Planet 51′,70000000,’http://www.sonypictures.com/movies/planet51/’,’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.’,23.661071,’2009-11-19′,104945765,91,’Released’,’Something strange is coming to their planet…Us!’,5.60,556),(16869,’Inglourious Basterds’,70000000,’http://www.inglouriousbasterds-movie.com/’,’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.’,72.595961,’2009-08-18′,319131050,153,’Released’,’Once upon a time in Nazi occupied France…’,7.90,6430),(16871,’Drag Me to Hell’,30000000,’http://www.dragmetohell.net/’,’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.’,45.083509,’2009-03-15′,90810892,99,’Released’,’Christine Brown has a good job, a great boyfriend, and a bright future. But in three days, she\’s going to hell.’,6.20,966),(16888,’The Ladies Man’,24000000,”,’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?’,2.259537,’2000-10-13′,13700000,84,’Released’,’He\’s cool. He\’s clean. He\’s a love machine.’,5.70,34),(16899,’Easy Virtue’,0,’http://www.easyvirtuethemovie.co.uk/’,’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.’,8.387573,’2008-01-01′,0,93,’Released’,’Let\’s Misbehave!’,6.30,108),(16911,’Obitaemyy Ostrov’,36500000,’http://oostrov.ru’,’On the threshold of 22nd century, furrowing the space, protagonist from the Free Search Group makes emergency landing on an unknown planet where he must stay. People who are living on this planet have remained at the stone level of the 20th century, with its social problems, miserable ecology and shaky world..’,2.785832,’2008-12-18′,21834845,115,’Released’,”,5.30,23),(16988,’How She Move’,0,”,’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….’,1.782666,’2008-01-25′,0,94,’Released’,”,3.00,6),(16991,’Observe and Report’,0,”,’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.’,10.529143,’2009-04-10′,24007324,86,’Released’,’Right now, the world needs a hero.’,5.60,225),(16995,’State of Play’,60000000,’http://www.stateofplaymovie.net/’,’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.’,21.685719,’2009-04-17′,87784194,127,’Released’,’Find The Truth’,6.70,484),(16996,’17 Again’,20000000,’http://www.17againmovie.com/’,’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.’,52.571674,’2009-03-11′,136267476,102,’Released’,’Who says you\’re only young once?’,6.10,1350),(17043,’The Crocodile Hunter: Collision Course’,0,”,’Aussie adventurer Steve Irwin aka The Crocodile Hunter has avoided the death-roll and nabbed another feisty croc, hoping to save it from poachers. What Steve doesn\’t know is that the crocodile has innocently swallowed a top secret US satellite beacon, and the poachers are actually American special agents sent to retrieve it. Crikey! In the Outback and through the bush with his wife Terri\’s ever-present commentary ringing out over the countryside (\”That was a close one, Steve!\”), the Crocodile Hunter is out to save the gorgeous croc and relocate him. It won\’t be easy, but if he can handle bird-eating spiders and venomous snakes without getting bitten, gun-wielding agents shouldn\’t be too much of a problem.’,1.714972,’2002-07-26′,33082548,90,’Released’,’His First Big-Screen Adventure!’,5.30,34),(17044,’The Land Girls’,0,”,’During World War II, the organisation \”The Women\’s Land Army\” recruited women to work on British farms while the men were off to war. Three such \”land girls\” of different social backgrounds – quiet Stella, young hairdresser Prue, and Cambridge graduate Ag – become best friends in spite of their different backgrounds.’,1.278092,’1998-09-25′,0,111,’Released’,’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.’,7.00,3),(17047,’Agent Cody Banks 2: Destination London’,26000000,’http://www.mgm.com/view/Movie/33/’,’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.’,10.925618,’2004-12-03′,28818995,100,’Released’,’Adventure is an attitude.’,5.20,144),(17113,’The Ballad of Jack and Rose’,1500000,”,’Jack Slavin is an environmentalist with a heart condition who lives with his daughter, Rose, on an isolated island. While Jack fights against developers who wish to build in the area, he also craves more contact with other people. When he invites his girlfriend, Kathleen, and her sons, Rodney and Thaddius, to move in, Rose is upset. The complicated family dynamics makes things difficult for everyone in the house.’,3.618646,’2005-03-25′,712294,111,’Released’,’Selfhood begins with a walking away, and love is proved in the letting go.’,6.50,43),(17127,’The Object of My Affection’,15000000,”,’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.’,5.164281,’1998-04-17′,46905889,111,’Released’,’Sometimes The Most Desirable Relationship Is The One You Can\’t Have’,5.60,72),(17130,’Crossroads’,12000000,”,’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 her going to Los Angeles for a record contract audition. They all decide to go together and they leave. With a little money, they set out on the road with a guy named Ben. When one of them tells the other a rumor that he might be a homicidal maniac they are all scared of him. When they reach LA, Lucy falls in love with Ben and against her father\’s wishes, she stays and she goes to the audition.’,6.703319,’2002-02-15′,61141030,93,’Released’,’Dreams change. Friends are forever’,4.70,158),(17134,’12 Rounds’,20000000,’http://www.12rounds-movie.com/’,’When New Orleans cop Danny Fisher prevents a brilliant thief from successfully carrying out his latest heist, the thief\’s girlfriend is accidentally killed. Hungry for revenge, the criminal mastermind breaks out of prison and kidnaps Danny\’s fiancee. To save her, Danny must successfully navigate his way through an elaborate series of tasks and puzzles, or else watch the love of his life die.’,15.661350,’2009-03-19′,17280326,108,’Released’,’Survive all 12′,5.70,220),(17139,’Karakter’,4500000,”,’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.’,0.011697,’1997-04-17′,0,122,’Released’,”,7.70,25),(17170,’Bright Lights, Big City’,0,”,’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 ?’,2.753501,’1988-04-01′,0,107,’Released’,”,4.70,28),(17182,’Eye for an Eye’,20000000,”,’It\’s fire and brimstone time as grieving mother Karen McCann takes justice into her own hands when a kangaroo court in Los Angeles fails to convict Robert Doob, the monster who raped and murdered her 17-year-old daughter.’,3.996392,’1996-01-12′,0,101,’Released’,’What do you do when justice fails?’,5.80,63),(17186,’Supercross’,0,”,’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.’,3.713050,’2005-08-16′,3102550,80,’Released’,”,5.40,29),(17187,’The Emperor\’s Club’,0,”,’William Hundert is a passionate and principled Classics professor who finds his tightly-controlled world shaken and inexorably altered when a new student, Sedgewick Bell, walks into his classroom. What begins as a fierce battle of wills gives way to a close student-teacher relationship, but results in a life lesson for Hundert that will still haunt him a quarter of a century later.’,6.796079,’2002-11-22′,0,108,’Released’,’In everyone\’s life there\’s that one person who makes all the difference.’,6.90,96),(17202,’Why Did I Get Married?’,15000000,”,’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’,2.005111,’2007-10-12′,55184721,113,’Released’,’Because we complete each other\’s sentences.’,6.10,33),(17264,’The Black Stallion’,2700000,”,’While traveling with his father, young Alec becomes fascinated by a mysterious Arabian stallion that is brought on board and stabled in the ship he is sailing on. When it tragically sinks both he and the horse survive only to be stranded on a deserted island. He befriends it, so when finally rescued both return to his home where they soon meet Henry Dailey, a once successful trainer. Together they begin training the horse to race against the fastest ones in the world.’,11.359720,’1979-10-17′,37799643,118,’Released’,’From the moment he first saw the stallion, he knew it would either destroy him, or carry him where no one had ever been beforeâ�¦’,7.00,59),(17277,’The Fall of the Roman Empire’,19000000,”,’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.’,4.229942,’1964-03-24′,4750000,188,’Released’,’The Most Magnificent Re-Creation . . . Of An Ancient Empire . . . Launches A New Epoch In Motion Pictures . . .’,6.00,33),(17287,’Poultrygeist: Night of the Chicken Dead’,0,”,’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…’,3.905877,’2006-12-26′,0,103,’Released’,”,5.90,41),(17332,’The Soloist’,60000000,’http://www.soloistmovie.com’,’A Los Angeles journalist befriends a homeless Juilliard-trained musician, while looking for a new article for the paper.’,17.299333,’2009-04-24′,31720158,109,’Released’,’Life has a mind of its own’,6.60,234),(17334,’The Other End of the Line’,14000000,”,’An employee at an Indian call-center travels to San Francisco to be with a guy she falls for over the phone’,3.393648,’2008-10-29′,0,106,’Released’,”,6.10,50),(17339,’Force 10 from Navarone’,5000000,”,’Mallory and Miller are back. The survivors of Navarone are sent on a mission along with a unit called Force 10, which is led by Colonel Barnsby. But Force 10 has a mission of their own which the boys know nothing about.’,5.348446,’1978-11-01′,7230000,118,’Released’,”,6.40,91),(17345,’Flywheel’,0,”,’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.’,1.048524,’2003-01-01′,0,120,’Released’,”,6.80,19),(17379,’Last Holiday’,45000000,”,’After she\’s diagnosed with a terminal illness, a shy woman decides to take a European vacation.’,6.156015,’2006-01-13′,38399961,112,’Released’,’She always thought she was somebody special… and she was.’,6.40,119),(17403,’How to Deal’,0,”,’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.’,3.199784,’2003-07-18′,0,99,’Released’,’Rule #1 There are no rules.’,5.70,42),(17431,’Moon’,5000000,’http://www.sonyclassics.com/moon/’,’With only three weeks left in his three year contract, Sam Bell is getting anxious to finally return to Earth. He is the only occupant of a Moon-based manufacturing facility along with his computer and assistant, GERTY. When he has an accident however, he wakens to find that he is not alone.’,46.114184,’2009-06-12′,9760104,97,’Released’,’The last place you\’d ever expect to find yourself.’,7.60,1794),(17436,’The Informers’,18000000,’http://www.theinformers.com/’,’A collection of intersecting short stories set in early 1980\’s Los Angeles, depicts a week in the lives of an assortment of socially alienated, mainly well-off characters who numb their sense of emptiness with casual sex, violence, and drugs.’,6.333869,’2008-11-05′,382174,98,’Released’,’Greed is good. Sex is easy. Youth is forever.’,4.40,60),(17577,’The Devil\’s Tomb’,10000000,”,’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.’,5.099472,’2009-05-26′,0,90,’Released’,’An evil entombed for 2000 years… until now.’,4.00,53),(17578,’The Adventures of Tintin’,130000000,’http://www.us.movie.tintin.com/’,’Intrepid young reporter, Tintin and his loyal dog, Snowy are thrust into a world of high adventure when they discover a ship carrying an explosive secret. As Tintin is drawn into a centuries-old mystery, Ivan Ivanovitch Sakharine suspects him of stealing a priceless treasure. Tintin and Snowy, with the help of salty, cantankerous Captain Haddock and bumbling detectives, Thompson & Thomson, travel half the world, one step ahead of their enemies as Tintin endeavors to find The Unicorn, a sunken ship that may hold a vast fortune, but also an ancient curse.’,89.938296,’2011-10-25′,371940071,107,’Released’,’This year, discover how far adventure will take you.’,6.70,2061),(17610,’Year One’,60000000,”,’When a couple of lazy hunter-gatherers are banished from their primitive village, they set off on an epic journey through the ancient world.’,25.293538,’2009-06-18′,62357900,97,’Released’,’Meet your ancestors’,4.60,524),(17622,’Fifty Dead Men Walking’,0,”,’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.’,4.481897,’2008-09-10′,0,117,’Released’,”,6.10,35),(17644,’Barney\’s Great Adventure’,0,”,’Mom and dad dump son Cody, daughter Abby, her best friend Marcella and a baby on the farm with Grandpa and Grandma. Purple dinosaur Barney soon appears to entertain kids, and when a large colorful egg deposited on a farm by a shooting star is accidentally carted off, Barney and kids start their chase for it’,0.722911,’1998-01-01′,0,76,’Released’,”,2.90,8),(17654,’District 9′,30000000,’http://www.d-9.com/’,’Aliens land in South Africa and, with their ship totally disabled, 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).’,63.136780,’2009-08-05′,210819611,112,’Released’,’You are not welcome here.’,7.30,3382),(17663,’Anne of Green Gables’,0,’http://www.anneofgreengables.com/’,’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.’,8.772574,’1985-12-01′,0,199,’Released’,”,8.20,68),(17707,’Brokedown Palace’,25000000,”,’Best friends Alice and Darlene take a trip to Thailand after graduating high school. In Thailand, they meet a captivating Australian man, who calls himself Nick Parks. Darlene is particularly smitten with Nick and convinces Alice to take Nick up on his offer to treat the two of them to what amounts to a day trip to Hong Kong. In the airport, the girls are seized by the police and shocked to discover that one of their bags contains heroin.’,7.296459,’1999-08-13′,13000000,100,’Released’,’Their graduation present was a trip to paradise, but they never thought they would land in hell.’,6.20,111),(17708,’Corky Romano’,11000000,”,’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.’,3.495758,’2001-10-12′,23978402,86,’Released’,’Undercover and Out The Way!’,4.10,54),(17709,’Dudley Do-Right’,70000000,”,’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?’,8.792054,’1999-08-27′,0,77,’Released’,’From the creator of \’George of the Jungle\’ comes a new kind of hero’,3.80,48),(17710,’Hey Arnold! The Movie’,0,”,’When a powerful developer named Mr. Scheck wants to knock down all the stores and houses in Arnold\’s neighborhood to build a huge \”mall-plex\”, it looks likes the neighborhood is doomed to disappear. But with the help of a superhero and a mysterious deep-voiced stranger, Arnold and Gerald will need to recover a crucial document in order to save their beloved neighborhood.’,5.856363,’2002-06-28′,0,76,’Released’,’A Big Problem Calls For a Big Head’,5.60,62),(17711,’The Adventures of Rocky & Bullwinkle’,76000000,”,’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.’,8.981427,’2000-06-30′,35134820,88,’Released’,’This summer it\’s not the same old bull.’,3.90,87),(17734,’Thirteen Conversations About One Thing’,0,”,’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.’,6.997495,’2001-09-02′,0,104,’Released’,’Ask yourself if you\’re really happy.’,6.40,25),(17768,’A Funny Thing Happened on the Way to the Forum’,0,”,’A wily slave must unite a virgin courtesan and his young smitten master to earn his freedom.’,8.902102,’1966-10-16′,0,99,’Released’,’Something for Everyone!’,6.10,24),(17795,’My Fellow Americans’,0,”,’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.’,2.809378,’1996-12-20′,0,101,’Released’,’A comedy about life, liberty and the pursuit of two ex-presidents.’,6.30,46),(17813,’Alex & Emma’,30000000,’http://alexandemmamovie.warnerbros.com/’,’Writer Alex Sheldon (Luke Wilson) must finish his novel within a month. If he doesn\’t, he won\’t get paid. And, if that happens, angry Mafia types to whom he owes money will come looking for him. In order to expedite things, Alex hires typist Emma Dinsmore (Kate Hudson) and begins dictating his novel. The book is about a doomed love affair between a character similar to Alex and a character named Polina Delacroix (Sophie Marceau). But, as Alex falls for Emma, his work takes a different turn.’,4.352422,’2003-06-16′,15368897,96,’Released’,’Is it love… or are they just imagining things?’,5.00,68),(17820,’Show Boat’,2300000,”,’A dashing Mississippi river gambler wins the affections of the daughter of the owner of the Show Boat.’,1.606314,’1951-07-13′,11000000,107,’Released’,’It\’s NEW!’,6.90,18),(17834,’A Simple Wish’,28000000,”,’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.’,1.767479,’1997-07-11′,8345056,86,’Released’,’Anabel made a wish. Murray made a mess’,5.50,46),(17880,’Because of Winn-Dixie’,14000000,”,’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.’,3.334804,’2005-02-18′,32645546,106,’Released’,’Discover what happens when you go looking for a miracle and a miracle comes looking for you.’,6.10,61),(17908,’My Dog Skip’,7000000,’http://mydogskip.warnerbros.com/’,’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.’,5.675535,’2000-01-14′,0,95,’Released’,’Every family needs an optimist.’,6.50,69),(17917,’Oliver!’,10000000,”,’Musical adaptation of Charles Dickens\’ Oliver Twist, a classic tale of an orphan who runs away from the workhouse and joins up with a group of boys headed by the Artful Dodger and trained to be pickpockets by master thief Fagin.’,8.305998,’1968-09-26′,37402877,153,’Released’,’Much Much More Than a Musical!’,7.00,103),(17926,’Undiscovered’,9000000,’http://www.undiscoveredfilm.com/’,’A group of aspiring entertainers try to establish careers for themselves in the city of Los Angeles.’,2.009597,’2005-08-26′,1046166,97,’Released’,’They Know Each Other By Heart.’,4.50,12),(17979,’A Christmas Carol’,200000000,’http://disney.go.com/disneypictures/achristmascarol/?cmp=dcom_VAN_WDSHE_ACC_van_dcomcc__Extl’,’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.’,39.744242,’2009-11-04′,325233863,96,’Released’,’Season\’s Greedings’,6.60,1095),(17994,’Witchboard’,0,”,’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.’,7.151154,’1986-12-31′,0,98,’Released’,’It\’s more than just a game.’,5.90,58),(17995,’DysFunktional Family’,0,”,’Between sets from his hilarious live stand-up routine, in which he riffs on everything from Michael Jackson to terrorism, comedian Eddie Griffin tours his hometown of Kansas City and introduces viewers to his eccentric clan in this edgy mockumentary. Griffin\’s uproarious family members include oddballs such as Uncle Buckey, a former pimp, and Uncle Curtis, who possesses an extensive porn collection … much of which he filmed himself!’,1.580027,’2003-04-04′,0,89,’Released’,”,6.10,4),(18041,’Gossip’,14000000,”,’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.’,5.833687,’2000-04-21′,5108820,90,’Released’,’It can turn you on, or turn on you.’,5.50,68),(18045,’The Dark Hours’,500000,”,’Dr. Samantha Goodman is a beautiful, young psychiatrist. Burnt out, she drives to the familyâ��s 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.’,1.428483,’2005-03-11′,0,80,’Released’,”,5.50,22),(18065,’Next Day Air’,0,’http://nextdayair-movie.com/’,’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.’,2.747402,’2009-02-06′,0,84,’Released’,”,5.30,36),(18074,’Duets’,0,”,’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.’,2.254530,’2000-09-09′,0,112,’Released’,’Six littles souls in search of a little harmony.’,5.50,34),(18079,’Nueve Reinas’,1500000,”,’An Argentinian crime drama revolving around a sheet of rare stamps (the Nine Queens).’,8.589355,’2000-08-31′,0,114,’Released’,’Sticky & Square’,7.40,153),(18126,’Hannah Montana: The Movie’,35000000,’http://disney.go.com/disneypictures/hannahmontanamovie/’,’When Miley Stewart (aka pop-star Hannah Montana) gets too caught up in the superstar celebrity lifestyle, her dad decides it\’s time for a total change of scenery. But sweet nibblets! Miley must trade in all the glitz and glamour of Hollywood for some ol\’ blue jeans on the family farm in Tennessee, and question if she can be both Miley Stewart and Hannah Montana. With a little help from her friends â�� and awesome guest stars Taylor Swift, Rascal Flatts and Vanessa Williams â�� will she figure out whether to choose Hannah or Miley?’,13.788422,’2009-04-10′,155545279,102,’Released’,’She has the best of both worlds…now she has to choose just one.’,6.00,449),(18147,’Unaccompanied Minors’,26000000,”,’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.’,10.006282,’2006-12-08′,0,90,’Released’,’No plane, no parents, no problem!’,5.40,66),(18162,’Land of the Lost’,100000000,”,’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.’,19.388410,’2009-06-05′,68688831,102,’Released’,’Right place. Wrong time.’,5.30,381),(18191,’Edmond’,10000000,’http://www.edmondthefilm.com/’,’Seemingly mild-mannered businessman Edmond Burke visits a fortuneteller and hears a remark that spurs him to leave his wife abruptly and seek what is missing from his life. Encounters with strangers and unsavory people weaken the barriers encompassing his long-suppressed rage, until Edmond explodes in violence.’,2.803642,’2005-08-31′,0,82,’Released’,’Every fear hides a wish.’,6.00,50),(18206,’Alone With Her’,1000000,”,’The harrowing story of a disturbed young man\’s attempts to win the affections of an unsuspecting young woman. When Doug first sees Amy, he instantly falls for her and begins to watch her every move, going so far as to set up spy cameras in her apartment. However, as his fascination grows into obsession he\’s no longer satisfied with just watching.’,2.175696,’2006-04-28′,10018,78,’Released’,’Anytime. Anywhere. He\’s watching.’,6.20,20),(18238,’Lesbian Vampire Killers’,0,’http://www.lesbianvampirekillersmovie.com/’,’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.’,6.632891,’2009-03-16′,0,86,’Released’,’After Twilight, The Real Party Starts.’,5.30,124),(18239,’The Twilight Saga: New Moon’,50000000,’http://www.twilightthemovie.com/’,’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.’,94.815867,’2009-03-15′,709827462,130,’Released’,’The Next Chapter Begins.’,5.60,2436),(18240,’The Proposal’,40000000,’http://www.myspace.com/proposalmovie’,’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.’,36.238968,’2009-06-01′,317375031,108,’Released’,’Here comes the bribe…’,6.70,1804),(18254,’Reds’,32000000,”,’A radical American journalist becomes involved with the Communist revolution in Russia and hopes to bring its spirit and idealism to the United States.’,4.602185,’1981-12-25′,40382659,195,’Released’,’Not since Gone With The Wind has there been a great romantic epic like it!’,7.10,67),(18276,’Hoot’,0,”,’A young man (Lerman) moves from Montana to Florida with his family, where he\’s compelled to engage in a fight to protect a population of endangered owls.’,7.712206,’2006-05-05′,0,91,’Released’,’It\’s time to stand up for the little guys.’,5.50,44),(18292,’George Washington’,0,”,’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.’,2.058834,’2000-10-01′,0,89,’Released’,”,6.40,36),(18320,’The Young Victoria’,35000000,’http://www.theyoungvictoriamovie.com/’,’From Academy Award® winners Graham King and Martin Scorsese, along with the makers of Gosford Park and The Departed, comes the story of Queen Victoriaâ��s early rise to power. From an object of a royal power-struggle to her romantic courtship and legendary marriage to Prince Albert, Emily Blunt (The Devil Wears Prada) gives a stunning performance as the young Victoria. Packed with drama, romance, breath-taking cinematography, lavish costumes and featuring an outstanding British cast including Jim Broadbent, Harriet Walter, Mark Strong, Paul Bettany, Miranda Richardson, and Rupert Friend, The Young Victoria has captivated British audiences, and is the film that Company magazine called â��an epic British film, which will sweep you up in her remarkable story.â��’,16.343317,’2009-03-04′,27409889,105,’Released’,’Love rules all.’,7.00,322),(18357,’The Country Bears’,35000000,’http://movies.disney.com/the-country-bears’,’For Beary Barrington, The Country Bears\’ young #1 fan, fitting in with his all-too-human family is proving im-paws-ible. When he runs away to find Country Bear Hall and his heroes, he discovers the venue that made them famous is near foreclosure. Beary hightails it over the river and through the woods to get the Bears in the Band back together for an all-out reunion concert to save Country Bear Hall.’,6.908351,’2002-07-26′,0,88,’Released’,’It\’s A Bear Getting The Family Together!’,4.30,20),(18360,’Night at the Museum: Battle of the Smithsonian’,150000000,’http://www.nightatthemuseummovie.com’,’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.’,81.781591,’2009-05-20′,413106170,105,’Released’,’When the lights go off the battle is on.’,5.90,1971),(18405,’The Last House on the Left’,15000000,’http://www.thelasthouseontheleft.com/’,’A group of teenage girls heading into the city 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.’,19.760383,’2009-03-13′,32721635,110,’Released’,’If someone hurt someone you love, how far would you go to get revenge?’,6.20,440),(18442,’Decoys’,5000000,”,’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.’,3.054340,’2004-02-27′,0,95,’Released’,’They can seduce anyone… Prey it isn\’t you!’,4.70,33),(18475,’The Cookout’,16000000,”,’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.’,0.830596,’2004-09-03′,12,97,’Released’,’This summer, get your grill on!’,4.60,10),(18480,’Brüno’,42000000,”,’Flamboyantly gay Austrian television reporter Bruno stirs up trouble with unsuspecting guests and large crowds through brutally frank interviews and painfully hilarious public displays of homosexuality.’,16.122168,’2009-07-08′,0,83,’Released’,’Borat was so 2006′,5.40,518),(18487,’The Taking of Pelham 1 2 3′,100000000,’http://www.sonypictures.com/movies/thetakingofpelham123/’,’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.’,40.597856,’2009-06-11′,150166126,106,’Released’,’I can\’t get it out of my head. I\’m gonna die today.’,6.20,954),(18501,’Gamer’,50000000,’http://gamerthemovie.com’,’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).’,27.631262,’2009-09-03′,40828540,95,’Released’,’In the near future, you don\’t live to play… you\’ll play to live.’,5.60,760),(18516,’Adam Resurrected’,10000000,”,’Before the war, in Berlin, Adam was 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.’,2.574014,’2008-08-08′,0,106,’Released’,”,6.40,22),(18530,’The Cry of the Owl’,11500000,’http://www.ctvint.fr/pages/fiche.asp?id=3583′,’A young woman becomes inexplicably attracted to a man who is stalking her. When her boyfriend goes missing, the stalker is the immediate suspect, until a game of jealousy and betrayal turns deadly.’,4.759190,’2009-02-07′,0,101,’Released’,’What would you do if someone was watching you?’,5.50,29),(18533,’Bronson’,230000,’http://www.bronsonthemovie.com’,’A young man who was sentenced to 7 years in 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.’,18.450613,’2008-10-09′,2260712,92,’Released’,’The Man. The Myth. The Celebrity.’,6.90,733),(18550,’Fled’,25000000,”,’During a routine prison work detail, convict Piper is chained to Dodge, a cyberhacker, when gunfire breaks out. Apparently, the attack is related to stolen money that the Mafia is after, and some computer files that somebody wants desperately to bury. The pair, who don\’t exactly enjoy each other\’s company, escape and must work together if they are to reach Atlanta alive. Luckily, they meet a woman who may be willing to help them.’,2.772550,’1996-07-19′,17193231,98,’Released’,’See how they run.’,5.20,47),(18570,’Food, Inc.’,0,’http://www.takepart.com/foodinc’,’Documentary filmmaker Robert Kenner examines how mammoth corporations have taken over all aspects of the food chain in the United States, from the farms where our food is grown to the chain restaurants and supermarkets where it\’s sold. Narrated by author and activist Eric Schlosser, the film features interviews with average Americans about their dietary habits, commentary from food experts like Michael Pollan and unsettling footage shot inside large-scale animal processing plants.’,15.017162,’2008-09-07′,0,94,’Released’,’You\’ll never look at dinner the same way again.’,7.40,217),(18602,’Morvern Callar’,0,”,’Following her boyfriend\’s suicide, supermarket clerk Morvern Callar passes off his unpublished novel as her own…’,2.507912,’2002-01-01′,0,97,’Released’,”,7.20,34),(18615,’Fur: An Imaginary Portrait of Diane Arbus’,16800000,’http://www.furmovie.com/’,’In 1958 New York Diane Arbus is a housewife and mother who works as an assistant to her husband, a photographer employed by her wealthy parents. Respectable though her life is, she cannot help but feel uncomfortable in her privileged world. One night, a new neighbor catches Diane\’s eye, and the enigmatic man inspires her to set forth on the path to discovering her own artistry.’,4.358255,’2006-08-30′,2281089,122,’Released’,’A love story.’,5.80,73),(18616,’No Man\’s Land: The Rise of Reeker’,2000000,”,’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 â�� The Reeker.’,4.346271,’2008-05-01′,0,88,’Released’,”,4.40,27),(18632,’A Dog\’s Breakfast’,120000,’http://www.adogsbreakfastmovie.com/’,’If you\’ve never been good at anything in your life, why would murder be any different? Patrick (David Hewlett) has always had a somewhat combative relationship with his little sister Marilyn (Kate Hewlett), but when she brings home her new sci-fi soap star fiancé Ryan (Paul McGillion), it\’s all out war. When Patrick fails to drive a wedge between the happy couple, he reaches for sharper instruments.’,2.213889,’2007-03-03′,0,88,’Released’,’Man\’s best friend makes the worst accomplice.’,5.90,24),(18681,’Eye of the Beholder’,15000000,”,’A reclusive surveillance expert is hired to spy on a mysterious blackmailer, who just may be a serial killer.’,4.302941,’1999-09-04′,0,109,’Released’,’Obsession is in the eye of the beholder.’,5.30,42),(18701,’Being Julia’,0,”,’Julia Lambert is a true diva: beautiful, talented, weathly and famous. She has it all – including a devoted husband who has mastermined her brilliant career – but after years of shining in the spotlight she begins to suffer from a severe case of boredom and longs for something new and exciting to put the twinkle back in her eye. Julia finds exactly what she\’s looking for in a handsome young American fan, but it isn\’t long before the novelty fling adds a few more sparks than she was hoping for. Fortuately for her, this surprise twist in the plot will trust her back into the greatest role of her life.’,1.946634,’2004-09-03′,0,104,’Released’,’Passion. Obsession. Revenge. Prepare for the performance of a lifetime.’,6.40,23),(18712,’Sands of Iwo Jima’,1000000,”,’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.’,3.851000,’1949-12-14′,7800000,100,’Released’,’A Great Human Story… Makes A Mighty Motion Picture!!!’,6.20,33),(18713,’The Jerky Boys’,0,”,’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.’,1.735462,’1995-02-03′,0,82,’Released’,”,4.80,10),(18734,’L.I.E. Long Island Expressway’,700000,’http://tartanvideo.com/film.asp?ProjectID={C668EA2C-810D-4E33-AB5C-9B8B00FA4B8A}’,’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.’,7.731064,’2001-01-20′,1667192,97,’Released’,’On the Long Island Expressway there are lanes going east, lanes going west, and lanes going straight to hell.’,6.70,31),(18736,’The Lizzie McGuire Movie’,17000000,’http://disneydvd.disney.go.com/the-lizzie-mcguire-movie.html’,’Lizzie McGuire has graduated from middle school and takes a trip to Rome, Italy.’,11.927667,’2003-04-25′,55534455,94,’Released’,’The only risk in taking an adventure is not taking it at all.’,5.70,280),(18777,’Slow Burn’,15500000,”,’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.’,6.630856,’2005-09-12′,1237615,93,’Released’,’The truth is just a trick of light.’,5.50,16),(18785,’The Hangover’,35000000,’http://hangoverpart2.warnerbros.com/dvd/’,’When three friends finally come to after a raucous night of bachelor-party revelry, they find a baby in the closet and a tiger in the bathroom. But they can\’t seem to locate their best friend, Doug â�� who\’s supposed to be tying the knot. Launching a frantic search for Doug, the trio perseveres through a nasty hangover to try to make it to the church on time.’,82.211660,’2009-06-05′,459270619,100,’Released’,’Some guys just can\’t handle Vegas.’,7.20,6173),(18808,’Highway’,14000000,”,’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 Cobain\’s memorial, and they help a circus sideshow family. Why is Pilot so set on Seattle, will the goons catch Jack, and is there any way the friends\’ competing needs can be resolved?’,3.419685,’2002-01-01′,0,97,’Released’,’It started as a desperate escape and became the wildest ride of their lives’,5.60,37),(18823,’Clash of the Titans’,125000000,’http://www.clash-of-the-titans.com/’,’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.’,47.686442,’2010-04-01′,232713139,106,’Released’,’Titans will clash.’,5.60,2233),(18828,’Double Take’,0,”,’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’,1.903405,’2001-01-12′,0,88,’Released’,’One big shot. One big mouth. The switch is on.’,5.50,24),(18840,’The White Countess’,0,”,’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.’,4.488547,’2005-10-30′,0,135,’Released’,”,6.90,21),(18841,’The Lost Skeleton of Cadavra’,0,”,’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.\”‘,1.680525,’2001-09-12′,0,90,’Released’,’No One Can Stand Its Mental Power!’,6.50,30),(18869,’Jimmy and Judy’,0,’http://www.jimmyandjudymovie.com/’,’Two misunderstood suburban kids challenge society and run from the police while documenting all of their deeds with a digital camera.’,1.255771,’2006-01-01′,0,99,’Released’,”,5.40,8),(18885,’3 Ninjas Kick Back’,0,”,’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.’,2.645722,’1994-05-06′,0,93,’Released’,’Colt, Rocky and Tum Tum are back for bigger kicks in an all new adventure’,4.50,48),(18886,’Flight of the Intruder’,35000000,”,’U.S. Navy pilot Lt. Jake Grafton and his bombardier buddy, Lt. Cmdr. Virgil Cole, are two soldiers embedded in the Vietnam War growing frustrated by the military\’s constraints on their missions. Despite the best efforts of their commanding officer, Cmdr. Frank Camparelli, to re-engage them, this disillusioned pair decide to take the war effort into their own hands with an explosive battle plan that could well get them court-martialed.’,6.817290,’1991-01-18′,0,115,’Released’,’The only thing they can count on is each other.’,5.70,31),(18892,’Jawbreaker’,3000000,”,’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.’,4.337685,’1999-01-30′,3076820,87,’Released’,’Suck it and see…’,5.90,90),(18900,’In Cold Blood’,3500000,”,’A 1967 film based on Truman Capote\’s book of the same name. After a botched robbery results in the brutal murder of a rural family, two drifters elude police, in the end coming to terms with their own mortality and the repercussions of their vile atrocity.’,7.821438,’1967-12-14′,13007551,134,’Released’,”,7.40,82),(18923,’A Home at the End of the World’,6500000,”,’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 tension and tears which culminate in a strong yet fragile friendship between the three.’,5.483531,’2004-07-23′,1548955,96,’Released’,’Family can be whatever you want it to be.’,6.80,45),(18925,’Facing the Giants’,100000,’http://www.facingthegiants.com/’,’A losing coach with an underdog football team faces their giants of fear and failure on and off the field to surprising results.’,4.563698,’2006-09-29′,10178331,111,’Released’,’Never give up. Never back down. Never lose faith.’,6.60,64),(18937,’Quest for Camelot’,40000000,”,’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.’,16.059443,’1998-05-15′,38172500,86,’Released’,’An evil knight gives nobility a bad name.’,6.90,190),(18947,’The Boat That Rocked’,50000000,’http://www.theboatthatrocked.net/’,’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 wanted control of popular culture via the British Broadcasting Corporation. Loosely based on the events in Britain in the 60\’s when the Labour government of Harold Wilson, wanted to bring the pirate stations under control, enough to see the passage of the Marine Broadcasting Offences Act on 15 August 1967′,31.022330,’2009-04-01′,36348784,116,’Released’,’On air. Off shore. Out of control.’,7.20,666),(18975,’The Adventures of Pinocchio’,0,”,’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.’,6.718497,’1996-07-26′,0,90,’Released’,’A new angle on the classic tale… And that\’s no lie!’,5.00,54),(19052,’Light It Up’,0,”,’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.’,1.212956,’1999-11-04′,0,99,’Released’,”,6.60,7),(19084,’Johnson Family Vacation’,12000000,”,’AAA can\’t help the roadside emergency that is the JOHNSON FAMILY VACATION. Even the on-board navigation system has a meltdown on Nate Johnson and his family\’s cross-country trek to their annual family reunion/grudge match. Reluctantly along for the ride are Nate\’s wife, who\’s only in it for the kids; their rapper-wannabe son; their teenage daughter who\’s fashioned herself as the next Lolita; and their youngest, whose imaginary dog Nate just can\’t seem to keep track of. Can the Johnsons survive each other and all the obstacles the road throws at them to make it to Caruthersville, Missouri? Can they find Missouri?’,4.623609,’2004-04-07′,31179516,97,’Released’,’Take the ride.’,4.70,30),(19150,’The Crew’,0,”,’Four retired mobsters plan one last crime to save their retirement home.’,2.634119,’2000-08-21′,0,88,’Released’,”,6.40,11),(19153,’The Real Cancun’,0,”,’Sixteen American college students drink, flirt, fight and canoodle during their Spring Break vacation in Cancun, Mexico.’,0.456485,’2003-04-23′,0,96,’Released’,”,3.30,8),(19187,’The Hebrew Hammer’,1000000,”,’A Jewish blaxploitation hero saves Hanukkah from the clutches of Santa Claus\’s evil son.’,1.600797,’2003-01-01′,0,85,’Released’,”,5.90,18),(19204,’…E tu vivrai nel terrore! L\’aldilà ‘,0,”,’A young woman inherits an old hotel in Louisiana where after a series of supernatural \’accidents\’, she learns that the building was built over one of the entrances to Hell.’,8.022122,’1981-04-22′,0,87,’Released’,’The seven dreaded gateways to Hell are concealed in seven cursed placesâ�¦ And from the day the gates of Hell are opened, the dead will walk the earth.’,6.60,117),(19255,’Away We Go’,17000000,”,’Verona and Burt have moved to Colorado to be close to Burt\’s parents but, with Veronica expecting their first child, Burtâ��s parents decide to move to Belgium, now leaving them in a place they hate and without a support structure in place. They set off on a whirlwind tour of of disparate locations where they have friends or relatives, sampling not only different cities and climates but also different families. Along the way they realize that the journey is less about discovering where they want to live and more about figuring out what type of parents they want to be.’,10.135590,’2009-06-05′,14899417,98,’Released’,”,6.70,189),(19265,’Whatever Works’,15000000,’http://www.sonypictures.com/classics/whateverworks/’,’Whatever Works explores the relationship between a crotchety misanthrope, Boris and a naïve, impressionable young runaway from the south, Melody. When Melody\’s uptight parents arrive in New York to rescue her, they are quickly drawn into wildly unexpected romantic entanglements. Everyone discovers that finding love is just a combination of lucky chance and appreciating the value of \”whatever works.\”‘,21.857387,’2009-06-19′,35097815,92,’Released’,’A new comedy’,6.80,350),(19316,’Saving Face’,0,”,’A Chinese-American lesbian and her traditionalist mother are reluctant to go public with secret loves that clash against cultural expectations.’,2.487255,’2004-09-12′,0,91,’Released’,’A romantic comedy about right, wrong and everything in between.’,6.80,32),(19344,’Loving Annabelle’,900000,’http://www.lovingannabelle.com/’,’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.’,7.145832,’2006-03-08′,0,76,’Released’,”,6.40,55),(19366,’Josie and the Pussycats’,22000000,”,’Josie, Melody and Val are three small-town girl musicians determined to take their rock band out of their garage and straight to the top, while remaining true to their look, style and sound. They get a record deal which brings fame and fortune but soon realize they are pawns of two people who want to control the youth of America. They must clear their names, even if it means losing fame and fortune.’,6.404571,’2001-04-06′,0,98,’Released’,’They were three small time girls, with big time dreams. Now, fate is giving the Pussycats, the chance of a lifetime.’,5.30,72),(19405,’Recess: School\’s Out’,10000000,”,’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 auditorium. This is the work of the insidious ex-principal of Third Street, Phillium Benedict and his gang of ninjas and secret service look-alikes! Benedict is planning to get rid of Summer Vacation using his newly-acquired Tractor Beam, which he stole from the US Military Base in an effort to raise US Test Scores, and it\’s up to the Recess Gang to stop him! In the end.’,5.699058,’2001-01-27′,44460850,83,’Released’,’Saving The World One Playground At A Time’,6.60,67),(19419,’Screwed’,0,”,’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.’,5.359381,’2000-05-12′,0,81,’Released’,”,4.90,23),(19457,’The Yards’,0,’https://www.miramax.com/movie/the-yards’,’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.’,10.150993,’2000-04-27′,0,115,’Released’,’He\’s the target of the most merciless family in New York. His own.’,6.00,97),(19489,’Held Up’,0,”,’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 by-the-book rescue, Michael has to keep the robber calm, find out what\’s in the crate, aid the negotiations, and get back to Rae. The Stockholm Syndrome asserts its effect.’,1.569449,’1999-10-08′,0,89,’Released’,”,4.90,11),(19495,’Nomad’,25000000,”,’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.’,8.212018,’2005-07-17′,0,112,’Released’,’Courage know no limit’,4.30,17),(19556,’Miss March’,0,”,’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.’,9.371534,’2009-03-13′,0,89,’Released’,’After four years in a coma, Eugene Pratt is going to be reunited with his high school sweetheart… on pages 95-97.’,5.40,77),(19585,’G-Force’,150000000,’http://disney.go.com/disneypictures/gforce/’,’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 to defeat the villain and save the world?’,26.710398,’2009-07-21′,292817841,88,’Released’,’The world needs bigger heroes’,5.10,510),(19615,’Flying By’,0,”,’A real estate developer goes to his 25th high school reunion without his wife, and finds his old teenage band playing. They get him up on stage for a couple of songs, and convince him come to a rehearsal. His wife is outraged that he played. His daughter thinks it\’s kind of cool. His Mother, in a retirement home, encourages him to enjoy life. He feels some temporary relief from the pressures of business complexities and the stress of marriage tensions. The band gets booked at a popular bar, which leads to a last minute booking to open for a reunion tour, with the possibility of additional tour dates. But the band has internal conflicts. He faces a tough decision to give it a shot even though it will affect his marriage, his family, particularly his daughter, and his business.’,1.546169,’2009-01-01′,0,95,’Released’,’It\’s about the music’,7.00,2),(19644,’ì�¤ë¯¸ë��’,8000000,”,’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.’,2.606320,’2003-12-24′,0,135,’Released’,”,6.60,28),(19724,’Imagine That’,55000000,’http://www.imaginethatmovie.com/’,’A financial executive who can\’t stop his career downspiral is invited into his daughter\’s imaginary world, where solutions to his problems await.’,12.340384,’2009-06-19′,0,107,’Released’,’What if your daughter\’s imagination… Was the secret to your success?’,5.70,134),(19803,’Underclassman’,0,”,’A young detective goes undercover at an elite private school to destroy an international stolen car ring.’,2.083856,’2005-09-02′,0,95,’Released’,”,5.50,28),(19840,’I Love You, Beth Cooper’,18000000,’http://www.iloveyoubethcoopermovie.com/’,’Nerdy teenager Denis Cooverman (Paul Rust) harbors a secret crush on Beth Cooper (Hayden Panettiere), the hottest girl in high school. During his graduation speech, Denis lets the cat out of the bag and declares his love for Beth, who, instead of dissing Denis, shows up at his house later that day and promises to show him the time of his life.’,14.151920,’2009-07-10′,0,102,’Released’,’Popularity is nice. Popular girls are not.’,5.10,197),(19844,’Kiss the Bride’,0,”,’In high school, Matt and Ryan were best friends. More than friends, actually. But in the ensuing ten years, they\’ve lost contact. So when Matt receives an invitation to Ryan\’s wedding he\’s surprised – especially that Ryan is marrying a woman!’,1.654260,’2007-01-01′,0,100,’Released’,”,4.20,11),(19848,’The Players Club’,0,”,’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.’,5.769822,’1998-04-08′,0,104,’Released’,’Here, we get down and dirty.’,6.40,14),(19898,’Pandorum’,33000000,’http://www.pandorummovie.com/’,’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.’,28.353517,’2009-09-08′,20645327,108,’Released’,’Don\’t fear the end of the world. Fear what happens next.’,6.50,774),(19899,’Couples Retreat’,70000000,’http://www.couplesretreatmovie.com/’,’Four couples, all friends, descend on a tropical island resort. Though one husband and wife are there to work on their marriage, the others just want to enjoy some fun in the sun. They soon find, however, that paradise comes at a price: Participation in couples therapy sessions is mandatory. What started out as a cut-rate vacation turns into an examination of the common problems many face.’,26.676487,’2009-09-19′,171844840,113,’Released’,’It may be paradise… but it\’s no vacation.’,5.30,588),(19901,’Daybreakers’,20000000,’http://www.daybreakersmovie.com/’,’In the year 2019, a plague has transformed almost every human into vampires. Faced with a dwindling blood supply, the fractured dominant race plots their survival; meanwhile, a researcher works with a covert band of vampires on a way to save humankind.’,28.019226,’2009-01-06′,51416464,98,’Released’,’In 2019, The Most Precious Natural Resource… Is Us.’,6.00,634),(19904,’The Stepfather’,0,’http://www.welcometothefamily.com/’,’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?’,7.924428,’2009-10-16′,0,101,’Released’,’Daddy\’s home.’,5.40,167),(19905,’The Goods: Live Hard, Sell Hard’,10000000,’http://www.livehardsellhard.com/’,’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â��s 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.’,3.352702,’2009-08-14′,0,90,’Released’,”,5.40,58),(19908,’Zombieland’,23600000,’http://www.zombieland.com/’,’Columbus has made a habit of running from what scares him. Tallahassee doesn\’t have fears. If he did, he\’d kick their ever-living ass. In a world overrun by zombies, these two are perfectly evolved survivors. But now, they\’re about to stare down the most terrifying prospect of all: each other.’,57.300674,’2009-10-07′,102391382,88,’Released’,’This place is so dead’,7.20,3550),(19912,’The Final Destination’,40000000,’http://www.TheFinalDestinationMovie.com/’,’After a young man\’s premonition of a deadly race-car crash helps saves the lives of his peers, Death sets out to collect those who evaded their end.’,32.478077,’2009-08-26′,186167139,82,’Released’,’Rest In Pieces’,5.40,831),(19913,'(500) Days of Summer’,7500000,’http://500days.com’,’Tom (Joseph Gordon-Levitt), greeting-card writer and hopeless romantic, is caught completely off-guard when his girlfriend, Summer (Zooey Deschanel), suddenly dumps him. He reflects on their 500 days together to try to figure out where their love affair went sour, and in doing so, Tom rediscovers his true passions in life.’,45.610993,’2009-07-17′,60722734,95,’Released’,’It was almost like falling in love.’,7.20,2904),(19933,’The Brave Little Toaster’,2000000,”,’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.’,6.863020,’1987-07-09′,0,90,’Released’,’Imagine if Your Toaster Went on a Journey of its Own!’,6.70,93),(19959,’Surrogates’,80000000,’http://chooseyoursurrogate.com/’,’Set in a futuristic world where humans live in isolation and interact through surrogate robots, a cop is forced to leave his home for the first time in years in order to investigate the murders of others\’ surrogates.’,36.664991,’2009-09-24′,122444772,89,’Released’,’How do you save humanity when the only thing that\’s real is you?’,5.90,1195),(19994,’Jennifer\’s Body’,16000000,”,’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?’,32.257414,’2009-09-18′,31556061,100,’Released’,’She\’s evil… and not just high school evil.’,5.30,837),(19995,’Avatar’,237000000,’http://www.avatarmovie.com/’,’In the 22nd century, a paraplegic Marine is dispatched to the moon Pandora on a unique mission, but becomes torn between following orders and protecting an alien civilization.’,150.437577,’2009-12-10′,2787965087,162,’Released’,’Enter the World of Pandora.’,7.20,11800),(19997,’Niagara’,1250000,”,’Rose Loomis and her older, gloomier husband, George, are vacationing at a cabin in Niagara Falls, N.Y. The couple befriend Polly and Ray Cutler, who are honeymooning in the area. Polly begins to suspect that something is amiss between Rose and George, and her suspicions grow when she sees Rose in the arms of another man. While Ray initially thinks Polly is overreacting, things between George and Rose soon take a shockingly dark turn.’,9.903992,’1953-01-21′,8500000,92,’Released’,’A raging torrent of emotion that even nature can\’t control!’,6.70,79),(20009,’Slackers’,14000000,”,’Dave, Sam and Jeff are about to graduate from Holden University with honors in lying, cheating and scheming. The three roommates have proudly scammed their way through the last four years of college and now, during final exams, these big-men-on-campus are about to be busted by the most unlikely dude in school. Self-dubbed Cool Ethan, an ambitious nerd with a bad crush, enters their lives one day and everything begins to unravel.’,9.371811,’2002-02-01′,6413915,86,’Released’,’When all else fails… cheat.’,5.40,60),(20024,’The End of the Affair’,23000000,”,’On a rainy London night in 1946, novelist Maurice Bendrix has a chance meeting with Henry Miles, husband of his ex-mistress Sarah, who abruptly ended their affair two years before. Bendrix\’s obsession with Sarah is rekindled; he succumbs to his own jealousy and arranges to have her followed.’,6.921263,’1999-12-03′,10827816,102,’Released’,”,6.60,55),(20055,’The Betrayed’,3500000,”,’Kidnappers force a young mother (Melissa George) to recover money stolen by her shady husband (Christian Campbell).’,1.348114,’2008-09-27′,0,98,’Released’,’What she doesn\’t know could kill her.’,5.20,10),(20065,’Purple Violets’,4000000,”,’Patti Petalson is a promising writer, but her marriage and conventional job keep her from her dream. She longs to return to her writing, especially after running into her first love Brian Callahan, a successful crime novelist. Kate is Patti\’s best friend since college; she\’s a tough-talking schoolteacher who plays therapist to all Patti\’s problems, while she\’s got a few of her own.’,0.936232,’2007-04-30′,0,103,’Released’,’A second chance for a first love.’,5.70,9),(20083,’æ�°å®¿äº�件’,15000000,’http://shinjukuincident.emp.hk/’,’Iron Zhao aka Steelhead, a truck repairman from China\’s Northeast, and settles down as an illegal immigrant in Tokyo. After a series of run-ins with the Yakuza, he rises to power as the Don of Chinese illegal immigrants. However, things get out of control when he\’s foolish enough to believe in clean getaways in a world that offers none, and soon comes to seal his own fate.’,5.294319,’2009-03-22′,0,119,’Released’,’They destroyed his life… Now he\’ll destroy them all.’,6.70,65),(20156,’Exotica’,0,”,’In the upscale Toronto strip club Exotica, dancer Christina is visited nightly by the obsessive Francis, a depressed tax auditor. Her ex-boyfriend, the club\’s MC, Eric, still jealously pines for her even as he introduces her onstage, but Eric is having his own relationship problems with the club\’s owner, Zoe. Meanwhile Thomas, a mysterious pet-shop owner, is about to become unexpectedly involved in their lives. Gradually, connections between the traumatic pasts of these characters are revealed.’,5.446832,’1994-09-24′,0,103,’Released’,’In a world of temptation, obsession is the deadliest desire.’,6.50,64),(20178,’World\’s Greatest Dad’,10000000,’http://www.worldsgreatestdadfilm.com/’,’Robin Williams stars as Lance Clayton, a man who has learned to settle. He dreamed of being a rich and famous writer, but has only managed to make it as a high school poetry teacher. His only son Kyle (Daryl Sabara) is an insufferable jackass who wonâ��t give his father the time of day. He is dating Claire (Alexie Gilmore), the schoolâ��s adorable art teacher, but she doesnâ��t want to get serious –‘,9.805551,’2009-08-20′,295750,99,’Released’,’Lance Clayton is about to get everything he deserves.’,6.50,177),(20296,’Chocolate: Deep Dark Secrets’,0,”,’Christmas Eve, London. While the snow-clad city gets ready to celebrate the festival of peace and joy, a series of bizarre incidents shatter the Christmas calm. A couple of luckless Indians find themselves hauled by the London police and made scapegoats. Or are they?Chocolate unfolds a web of sinister plots, slowly unearthing true and mystifying personalities of seven individuals. Seven high-strung, distinctive people who\’ve chosen to remain in the foreign land hoping to make or break their lives.’,0.887821,’2005-09-16′,0,200,’Released’,”,3.40,6),(20309,’Say It Isn\’t So’,25000000,”,’Boy meets girl; boy falls in love (and had wild, non-stop sex) with girl; boy loses girl… when they discover they are brother and sister! But when he learns that he\’s the victim of the ultimate case of mistaken identity, the lovesick young man — whom everyone still thinks is after some taboo thrills — must race across the country to stop her from marrying another man.’,2.909346,’2001-03-12′,0,95,’Released’,”,4.80,47),(20322,’The Brothers’,0,”,’This is the story of four African-American \”yuppies\” (a banker, a doctor, a lawyer, and a \”playboy\”) who call themselves \”The Brothers\”. When the playboy gets engaged, the other three friends find themselves having to come to terms with their own issues of commitment and honesty…’,3.029944,’2001-03-23′,0,106,’Released’,”,6.50,10),(20337,’Martin Lawrence Live: Runteldat’,3000000,”,’The controversial bad-boy of comedy delivers a piercing look at his life, lifting the metaphorical smokescreen that he feels has clouded the public view, commenting on everything from the dangers of smoking to the trials of relationships, and unleashing a nonstop litany of raucous anecdotes, stinging social commentary and very personal reflections about life.’,0.295226,’2002-08-01′,19184015,113,’Released’,”,5.00,1),(20352,’Despicable Me’,69000000,’http://www.despicable.me/’,’Villainous Gru lives up to his reputation as a despicable, deplorable and downright unlikable guy when he hatches a plan to steal the moon from the sky. But he has a tough time staying on task after three orphans land in his care.’,113.858273,’2010-07-08′,543513985,95,’Released’,’Superbad. Superdad.’,7.10,6478),(20360,’Namastey London’,0,’http://www.erosentertainment.com/namasteylondon’,’Indian-born Manmohan Malhotra decided to re-locate to London, England, established himself, returned to India, got married to Bebo, and after a period of 4 years got a visa for her so that she could live with him. Shortly thereafter she gave birth to Jasmeet. Manmohan was always embarrassed of Bebo, as she was overly healthy and not quite sophisticated, as a result he always left her at home, while he socialized. Bebo did not want Jasmeet to end up like her, so got her admitted in an English Medium school, encouraged to mingle with Caucasian friends, and as a result Jasmeet was transformed in to Jazz – a stunningly beautiful young woman, British in looks, talk, habits, and heart. Manmohan\’s plans to get her married to an Indian boy are all in vain. His friend, Parvez Khan, is in a similar situation with his son, Imran, openly romancing a Caucasian blonde, Susan. Manmohan decides to take his family for a tour in India…’,1.840511,’2007-03-27′,0,128,’Released’,”,6.60,29),(20391,’Paint Your Wagon’,20000000,”,’A Michigan farmer and a prospector form a partnership in the California gold country. Their adventures include buying and sharing a wife, hijacking a stage, kidnapping six prostitutes, and turning their mining camp into a boom town. Along the way there is plenty of drinking, gambling, and singing. They even find time to do some creative gold mining.’,7.902536,’1969-10-15′,31678778,158,’Released’,’Stake Your Claim To The Musical Goldmine of \’69!’,6.20,63),(20406,’Rockaway’,0,”,’Trane is a decorated war hero just shipped home to the States from Afghanistan after the brutal murder of his wife and child back in Rockaway, Queens. Upon his return, Trane encounters his old friend Dave, who describes the new forces of crime and prostitution that have moved into their neighborhood and caused the destruction of his family.’,0.361554,’2007-07-07′,0,76,’Released’,”,5.80,2),(20455,’Digimon: The Movie’,5500000,”,’The first story focused on Tai and Kari Kamiya four years before their adventure in the Digital World. It shows their first encounter with Digimon and what happened to them (as well as the other children). Tai and Kari wake one morning to find a Digi-Egg that came out of their computer the night before and the egg soon hatches, revealing a Botamon. The Digimon then evolves into Koromon and then Agumon (not the same one that became friends with Tai in the series, and yet, somehow, both Koromon and Kari remember each other), who then goes out and unintentionally destroys a good part of the neighborhood with Kari riding on his back. A second Digi-Egg appears in the sky to reveal an evil digimon, Parrotmon. Agumon then Digivolves to Greymon but isn\’t strong enough to beat Parrotmon and is knocked out. Tai grabs Kari\’s whistle and wakes up Greymon, who defeats Parrotmon and disappears with him.’,3.738700,’2000-03-17′,0,82,’Released’,”,6.20,72),(20468,’The Big Tease’,0,’http://thebigtease.warnerbros.com/index.html’,’Thinking he\’s competing in Los Angeles\’ hot Platinum Scissors contest, Scottish hairstylist Crawford (Craig Ferguson) leaves Glasgow with a film crew to capture the event. When he learns he\’s a mere audience member, Crawford must find a way to become the mane event. Abhorrent Norwegian Stig is his stiff-as-gel competition. Drew Carey and others make cameo appearances in this hysterical mockumentar’,0.502396,’1999-01-01′,0,87,’Released’,’He saw. He combed. He conquered.’,5.80,6),(20483,’Catch That Kid’,18000000,”,’Athletic 12-year-old Maddy (Kristen Stewart) shares an enthusiasm for mountain climbing with her father, Tom (Sam Robards). Unfortunately, Tom suffers a spinal injury while scaling Mount Everest, and his family is unable to afford the surgery that can save him. Maddy decides to get the money for her father\’s operation by robbing a high-security bank. She relies on her climbing skills and help from her geeky friends (Max Thieriot, Corbin Bleu) to pull it off successfully.’,4.492859,’2004-02-06′,16702864,92,’Released’,’They\’re on a mission without permission.’,4.90,76),(20504,’The Book of Eli’,80000000,”,’A post-apocalyptic tale, in which a lone man fights his way across America in order to protect a sacred book that holds the secrets to saving humankind.’,32.363538,’2010-01-14′,157107755,118,’Released’,’Some will kill to have it. He will kill to protect it.’,6.60,2164),(20520,’The Motel’,0,”,’Thirteen-year-old Ernest Chin lives and works at a sleazy hourly-rate motel on a strip of desolate suburban bi-way. Misunderstood by his family and blindly careening into puberty, Ernest befriends Sam Kim, a self-destructive yet charismatic Korean man who has checked in. Sam teaches the fatherless boy all the rites of manhood.’,0.120505,’2005-01-01′,0,75,’Released’,’Out of Place in the Middle of Nowhere.’,7.00,3),(20526,’TRON: Legacy’,170000000,’http://disney.go.com/tron/’,’Sam Flynn, the tech-savvy and daring son of Kevin Flynn, investigates his father\’s disappearance and is pulled into The Grid. With the help of a mysterious program named Quorra, Sam quests to stop evil dictator Clu from crossing into the real world.’,73.795050,’2010-12-10′,400062763,125,’Released’,’The Game Has Changed.’,6.30,2841),(20533,’Jonah Hex’,47000000,’http://jonah-hex.warnerbros.com/’,’Gunslinger Jonah Hex (Josh Brolin) is appointed by President Ulysses Grant to track down terrorist Quentin Turnbull (John Malkovich), a former Confederate officer determined on unleashing hell on earth. Jonah not only secures freedom by accepting this task, he also gets revenge on the man who slayed his wife and child. Megan Fox plays a prostitute as well as Jonah Hex\’s love interst in the film.’,22.581313,’2010-06-18′,10539000,80,’Released’,’Revenge gets ugly.’,4.40,420),(20542,’Delgo’,40000000,’http://www.delgo.com/’,’In a divided land, it takes a rebellious boy and his clandestine love for a Princess of an opposing race to stop a war orchestrated by a power hungry villain.’,4.238482,’2008-12-12′,0,94,’Released’,”,5.40,15),(20616,’Swimfan’,8500000,’http://swimfan.film.ru/’,’Ben Cronin has it all: the admiration of his many friends, a terrific girlfriend, and he\’s on the fast-track to an athletic scholarship. Ben\’s rock-solid, promising future and romance are turned upside-down with the arrival of Madison Bell. Madison, the new girl in town, quickly sets her sights on the impressionable Ben. While their first few meetings are innocent enough, the obsessive and seductive Madison wants more … much more.’,4.844451,’2002-09-06′,34411240,84,’Released’,’His biggest fan just became his worst nightmare.’,5.00,70),(20653,’Roadside Romeo’,7000000,’http://www.roadsideromeo.com/’,’This is the story of Romeo. A dude who was living the life. He had the works – the mansion to live in, the chicks to party with and the cars to be driven around in. Until one day, the family he was the favourite pet of, decided to move and left him back, abandoned on the mean streets of Mumbai. Romeo is now faced with situations he has never been in before. He encounters four strays, who scare the daylights out of him. But soon, he smooth talks his way into their hearts and he makes friends. Then, Romeo finds love! He encounters the beautiful, ravishing Laila, the most beautiful girl he has ever seen – and he loses his heart to her at first sight. Finally, he encounters a villain! The dreaded Don of the area – Charlie Anna. The Don who everyone is scared of. So hop on to the adventure as Romeo, wins friendship, love and a new life – in spite of Charlie Anna and his gang!’,0.253595,’2008-10-24′,1100000,93,’Released’,”,6.70,3),(20662,’Robin Hood’,200000000,’http://www.robinhoodthemovie.com/’,’When soldier Robin happens upon the dying Robert of Loxley, he promises to return the man\’s sword to his family in Nottingham. There, he assumes Robert\’s identity; romances his widow, Marion; and draws the ire of the town\’s sheriff and King John\’s henchman, Godfrey.’,37.668301,’2010-05-12′,310669540,140,’Released’,’Rise and rise again, until lambs become lions.’,6.20,1398),(20694,’Rugrats Go Wild’,0,”,’Rugrats Go Wild is a 2003 crossover animated film, with two animated Nickelodeon television series Rugrats and The Wild Thornberrys.The film was produced by Klasky Csupo and released in theaters on June 13, 2003 by Paramount Pictures and Nickelodeon Movies. It also makes this the Rugrats series finale, after the show ceased production. As there are currently no further Rugrats movies in production, Rugrats Go Wild stands as the final Rugrats film. It is the only Nickelodeon film to be a crossover. Although it is a crossover film, it is primarily a Rugrats movie as the main plot focuses on the those characters.The Rugrats family vacation takes an exotic detour when their boat capsizes and they become shipwrecked on a deserted tropical island. With the jungle as their new backyard, the babies reace wildly from one dangerous adventure to the nextâ�¦soon to discover that someone else is on the island. It\’s The Wild Thornberrys…on an island adventure of their own!’,8.255708,’2003-06-13′,0,84,’Released’,’The Family Vacation Goes Overboard’,5.60,61),(20697,’Ready to Rumble’,24000000,’http://readytorumble.warnerbros.com/flash.html’,’Two slacker wrestling fans are devastated by the ousting of their favorite character by an unscrupulous promoter.’,3.113009,’2000-04-07′,12372410,107,’Released’,’They\’re headed to the big time…face first.’,4.70,49),(20737,’Air Bud’,3000000,”,’A young boy and a talented stray dog with an amazing basketball playing ability become instant friends. Rebounding from his father\’s accidental death, 12-year-old Josh Framm moves with his family to the small town of Fernfield, Washington. The new kid in town, Josh has no friends and is too shy to try out for the school basketball team. Instead he prefers to practice alone on an abandoned court, he befriends a runaway golden retriever named Buddy. Josh is amazed when he realizes that Buddy loves basketball…that is playing basketball…and he is GOOD! Josh eventually makes the school team and Buddy is named the Team Mascot. Josh and Buddy become the stars of halftime. Buddy\’s half-time talent draws media attention. Unfortunately, when Buddy\’s mean former owner, Norm Snively, comes along with a scheme to cash in on the pup\’s celebrity, it looks like they are going to be separated.’,11.241802,’1997-08-01′,23144499,98,’Released’,’He Sits. He Stays. He Shoots. He Scores.’,5.30,106),(20761,’Play It to the Bone’,24000000,”,’Two aging fighters in LA, friends, get a call from a Vegas promoter because his undercard fighters for a Mike Tyson bout that night are suddenly unavailable. He wants them to box each other. They agree as long as the winner gets a shot at the middleweight title. They enlist Grace, Cesar\’s current and Vinnie\’s ex girlfriend, to drive them to Vegas.’,5.566203,’1999-12-25′,8434146,124,’Released’,”,5.70,53),(20763,’Radio Flyer’,35000000,”,’A father reminisces about his childhood when he and his younger brother moved to a new town with their mother, her new husband and their dog, Shane. When the younger brother is subjected to physical abuse at the hands of their brutal stepfather, Mike decides to convert their toy trolley, the \”Radio Flyer\”, into a plane to fly him to safety.’,3.503408,’1992-02-21′,4651977,114,’Released’,’Powered by imagination.’,6.60,53),(20764,’Sleep Dealer’,2500000,’http://www.sleepdealer.com/’,’Set in a near-future, militarized world marked by closed borders, virtual labor and a global digital network that joins minds and experiences, three strangers risk their lives to connect with each other and break the barriers of technology.’,4.624691,’2008-12-10′,107559,90,’Released’,’Crossing the border just got easier. Plug into the new American dream.’,6.00,40),(20766,’The Road’,32000000,’http://www.theroad-movie.com/’,’A father and his son walk alone through burned America. Nothing moves in the ravaged landscape save the ash on the wind and water. It is cold enough to crack stones, and, when the snow falls it is gray. The sky is dark. Their destination is the warmer south, although they don\’t know what, if anything, awaits them there.’,41.075532,’2009-11-25′,27635305,111,’Released’,’In a moment the world changed forever.’,6.80,1087),(20770,’But I\’m a Cheerleader’,0,”,’Megan is an all-American girl. A cheerleader. She has a boyfriend. But Megan doesn\’t like kissing her boyfriend very much. And she\’s pretty touchy with her cheerleader friends. Her conservative parents worry that she must be a lesbian and send her off to \”sexual redirection\” school, where she must learn how to be straight.’,4.826908,’1999-09-12′,0,85,’Released’,’A Comedy Of Sexual Disorientation.’,6.50,101),(20794,’Novocaine’,6000000,’http://www.novocaineonline.com/’,’A dentist finds himself a murder suspect after a sexy patient seduces him into prescribing her drugs’,4.148253,’2001-11-23′,2025238,95,’Released’,”,6.00,44),(20829,’Funny People’,75000000,’http://www.funnypeoplemovie.com’,’Famous and wealthy funnyman George Simmons doesn\’t give much thought to how he treats people until a doctor delivers stunning health news, forcing George to reevaluate his priorities with a little help from aspiring stand-up comic Ira.’,20.199057,’2009-07-31′,61458982,146,’Released’,’George Simmons was prepared to die, but then a funny thing happened.’,5.70,390),(20856,’Aliens in the Attic’,45000000,’http://www.aliensintheatticmovie.com/’,’It\’s summer vacation, but the Pearson family kids are stuck at a boring lake house with their nerdy parents. That is until feisty, little, green aliens crash-land on the roof, with plans to conquer the house AND Earth! Using only their wits, courage and video game-playing skills, the youngsters must band together to defeat the aliens and save the world – but the toughest part might be keeping the whole thing a secret from their parents! Featuring an all-star cast including Ashley Tisdale, Andy Richter, Kevin Nealon, Tim Meadows and Doris Roberts, Aliens In The Attic is the most fun you can have on this planet!’,13.707183,’2009-07-31′,57881056,86,’Released’,’The aliens vs. the Pearsons’,5.30,244),(20857,’Hardball’,32000000,”,’An aimless young man who is scalping tickets, gambling and drinking, agrees to coach a Little League team from the Cabrini Green housing project in Chicago as a condition of getting a loan from a friend.’,5.683281,’2001-09-14′,40222729,106,’Released’,’The most important thing in life is showing up’,6.30,123),(20862,’Smoke Signals’,0,”,’Young Indian man Thomas is a nerd in his reservation, wearing oversize glasses and telling everyone stories no-one wants to hear. His parents died in a fire in 1976, and Thomas was saved by Arnold. Arnold soon left his family, and Victor hasn\’t seen his father for 10 years. When Victor hears Arnold has died, Thomas offers him funding for the trip to get Arnold\’s remains’,2.304552,’1998-01-16′,0,89,’Released’,”,6.60,24),(20943,’The Ugly Truth’,38000000,’http://www.thetruthisntpretty.com/’,’A romantically challenged morning show producer is reluctantly embroiled in a series of outrageous tests by her chauvinistic correspondent to prove his theories on relationships and help her find love. His clever ploys, however, lead to an unexpected result.’,22.332927,’2009-07-24′,205298907,96,’Released’,’The battle of the sexes is on.’,6.40,972),(20981,’The Call of Cthulhu’,50000,’http://www.cthulhulives.org/cocmovie/index.html’,’A dying professor leaves his great-nephew a collection of documents pertaining to the Cthulhu Cult. The nephew begins to learn why the study of the cult so fascinated his grandfather. Bit-by-bit he begins piecing together the dread implications of his grandfather\’s inquiries, and soon he takes on investigating the Cthulhu cult as a crusade of his own.’,1.777148,’2005-01-01′,0,47,’Released’,”,6.90,41),(21014,’Keeping Up with the Steins’,0,”,’All hilarity breaks loose in this heartwarming coming-of-age comedy when three generations of Fiedlers collide in a crazy family reunion. As they prepare for the biggest Bar Mitzvah on the block, they begin to see that they\’re much more alike than they\’d originally thought.’,3.562563,’2006-05-12′,0,90,’Released’,’A 13-year-old boy uses his upcoming bar mitzvah to reconcile the strained relationship between his father and grandfather.’,5.20,18),(21074,’Brick Lane’,0,”,’The grind of daily life as a Brick Lane Bangladessi as seen through the eyes of Nazneen (Chatterjee), who at 17 enters an arranged marriage with Chanu (Kaushik). Years later, living in east London with her family, she meets a young man Karim (Simpson).’,0.262135,’2007-11-16′,0,102,’Released’,”,5.20,15),(21208,’Orphan’,20000000,”,’A married couple with a rocky past adopt 9-year old, Esther to fill the void created by a recently-stillborn baby. However, Esther is not quite who she seems.’,29.295801,’2009-07-24′,41596251,123,’Released’,’Can you keep a secret?’,6.70,1261),(21283,’Steppin: The Movie’,0,’http://www.myspace.com/steppinmovie’,’Every college campus has its rivalries and UTS is no different. At this university, the Geeks run the campus and the greatest Steppers are king of the hill. When a local radio station announces the beginning of the step competition season, the campus fraternities and sororities fight to recruit the best talent that will help them win the big-money prize.’,0.328498,’2009-05-19′,0,85,’Released’,”,5.00,4),(21301,’Barbershop 2: Back in Business’,18000000,”,’The continuing adventures of the barbers at Calvin\’s Barbershop. Gina, a stylist at the beauty shop next door, is now trying to cut in on his buisness. Calvin is again struggling to keep his father\’s shop and traditions alive–this time against urban developers looking to replace mom & pop establishments with name-brand chains. The world changes, but some things never go out of style–from current events and politics to relationships and love, you can still say anything you want at the barbershop.’,6.501815,’2004-01-20′,65070412,106,’Released’,’Let your hair down’,5.60,74),(21309,’River\’s Edge’,19000000,”,’A group of high school friends discover that they are in the presence of a killer. One of them, Samson, has murdered his girlfriend Jamie. He brags to his friends about killing her, and when they discover he is telling the truth, their reactions vary.’,6.463806,’1986-08-27′,0,99,’Released’,’The most controversial film you will see this year.’,6.70,59),(21311,’I Dreamed of Africa’,34000000,”,’Inspired by the true story of indomitable Kuki Gallmann, the film tells of a beautiful and inquisitive woman who had the courage to escape from her comfortable yet monotonous life in Italy to start anew in the African wilderness with her son, Emanuele, and her new husband, Paolo. Gallmann faces great danger there but eventually becomes a celebrated conservationist.’,1.656695,’2000-05-05′,0,114,’Released’,’Sometimes the adventure of a lifetime becomes life itself.’,5.30,18),(21334,’بÚ�Ù�â��Ù�اÛ� آسÙ�اÙ�’,180000,’http://www.miramax.com/movie/children-of-heaven/’,’Zohre\’s shoes are gone; her older brother Ali lost them. They are poor, there are no shoes for Zohre until they come up with an idea: they will share one pair of shoes, Ali\’s. School awaits…’,7.072118,’1997-08-01′,900000,89,’Released’,’A Little Secret…Their Biggest Adventure!’,7.80,112),(21338,’Stone Cold’,0,”,’Joe Huff (Brian Bosworth) is a tough, loner cop with a flair for infiltrating dangerous biker gangs. The FBI blackmail Joe into an undercover operation that entails infiltrating \”The Brotherhood\” – a powerful Mississippi biker gang linked in the murder of government officials as well as dealing drugs with the mafia.’,3.623002,’1991-05-17′,0,92,’Released’,’A cop who enforces his own brand of justice.’,5.70,34),(21345,’å��京!å��京!’,12000000,’http://www.cityoflifeanddeath.co.uk/’,’City of Life and Death takes place in 1937, during the height of the Second Sino-Japanese War. The Imperial Japanese Army has just captured the then-capital of the Republic of China, Nanjing. What followed was known as the Nanking Massacre, or the Rape of Nanking, a period of several weeks wherein tens of thousands of Chinese soldiers and civilians were killed.’,4.793348,’2009-04-22′,10652498,132,’Released’,”,7.60,55),(21349,’Anywhere But Here’,23000000,’http://www.foxmovies.com/anywherebuthere/’,’In this adaptation of the Mona Simpson novel, single mother Adele August is bad with money, and even worse when it comes to making decisions. Her straight-laced daughter, Ann, is a successful high school student with Ivy League aspirations. When Adele decides to pack up and move the two of them from the Midwest to Beverly Hills, Calif., to pursue her dreams of Hollywood success, Ann grows frustrated with her mother\’s irresponsible and impulsive ways.’,8.976738,’1999-11-12′,18653615,114,’Released’,’A story of a mother who knows best… and a daughter who knows better.’,5.90,66),(21355,’All the Pretty Horses’,57000000,’http://alltheprettyhorses.com/’,’The year is 1949. A young Texan named John Grady finds himself without a home after his mother sells the ranch where he has spent his entire life. Lured south of the border by the romance of cowboy life and the promise of a fresh start, Cole and his pal embark on an adventure that will test their resilience, define their maturity, and change their lives forever.’,7.524671,’2000-12-11′,0,117,’Released’,’Some passions can never be tamed.’,5.80,60),(21413,’The Battle of Shaker Heights’,1000000,”,’A quirky teen with a penchant for war reenactments, Kelly Ernswiler obsesses over military tactics with his buddy Bart. The school bully is one of Kelly\’s regular headaches, and he also has to deal with a frustrating situation at home, where his father is a recovering drug addict. Kelly\’s life gets even more complicated when he falls for Tabby, Bart\’s pretty and soon-to-be-wed older sister.’,5.202090,’2003-08-22′,0,79,’Released’,’When you\’re 17, every day is war.’,5.60,17),(21461,’Lage Raho Munna Bhai’,0,”,’A hilarious underworld gangster known as Munna Bhai falls comically in love with a radio host by the name of Jahnvi, who runs an elders\’ home, which is taken over by an unscrupulous builder, who gets the residents kicked out ironically with the help of Munna\’s sidekick, Circuit, while Munna is busy romancing Jahnvi elsewhere.’,2.436019,’2006-01-01′,0,144,’Released’,’They\’re back… and they\’re not alone!’,7.60,44),(21494,’Molière’,0,’http://www.moliere-lefilm.com/’,’Molière, a down-and-out actor-cum-playwright up to his ears in debt. When the wealthy Jourdain offers to cover that debt (so that Molière\’s theatrical talents might help Jourdain win the heart of a certain widowed marquise), hilarity ensues.’,4.613350,’2007-01-31′,0,115,’Released’,”,6.70,45),(21512,’The Blood of Heroes’,0,”,’Set in a futuristic world where the only sport that has survived in a wasted society is the brutal game known as jugging. Sallow, the leader of a rag-tag team, has played in the main Leagues before, but was cast out because of indiscretions with a lady. However now joined by a talented newcomer, Kidda, an ambitious young peasant girl he and his team find they have one last chance for glory’,6.416780,’1989-10-19′,882290,100,’Released’,’When juggers play there is only one way to live – THE HARD WAY!’,5.90,31),(21525,’Tupac: Resurrection’,300000,’http://www.tupac-resurrection.com/’,’Home movies, photographs, and recited poetry illustrate the life of Tupac Shakur, one of the most beloved, revolutionary, and volatile hip-hop MCs of all time.’,1.314576,’2003-01-23′,7808524,112,’Released’,’In his own words’,8.00,26),(21610,’Nighthawks’,5000000,”,’An international terrorist has New York in a grip of panic and it\’s up to Det. Sgt. Deke DaSilva to take him down.’,7.058868,’1981-03-17′,19905359,99,’Released’,’A terrorist holds New York in a grip of fear – and only Stallone can take him on.’,6.40,86),(21612,’The Funeral’,12500000,”,’The story concerns the funeral of one of three brothers in a family of gangsters that lived in New York in 1930s. Details of the past of the brothers and their families are shown through a series of flashbacks, climaxing in a shocking ending.’,2.950618,’1996-01-26′,1227324,99,’Released’,’One family, one murder, too many lies.’,7.30,31),(21641,’The Damned United’,10000000,”,’Taking over Leeds United, Brian Clough\’s abrasive approach and his clear dislike of the players\’ dirty style of play make it certain there is going to be friction. Glimpses of his earlier career help explain both his hostility to previous manager Don Revie and how much he is missing right-hand man Peter Taylor’,13.409125,’2009-03-27′,0,97,’Released’,’They love me for what I\’m not… …they hate me for what I am.’,7.20,152),(21724,’Dance Flick’,0,”,’Street dancer, Thomas Uncles is from the wrong side of the tracks, but his bond with the beautiful Megan White might help the duo realize their dreams as they enter in the mother of all dance battles.’,7.326034,’2009-05-22′,0,83,’Released’,”,4.70,71),(21755,’The Brothers Bloom’,20000000,’http://www.brothersbloom.com/’,’The Brothers Bloom are the best con men in the world, swindling millionaires with complex scenarios of lust and intrigue. Now they\’ve decided to take on one last job â�� showing a beautiful and eccentric heiress the time of her life with a romantic adventure that takes them around the world.’,10.218307,’2008-09-09′,5530764,114,’Released’,’They\’d never let the truth come between them.’,6.80,203),(21765,’Good Boy!’,17000000,’http://www.goodboy.com/’,’An intergalactic dog pilot from Sirius (the dog star), visits Earth to verify the rumors that dogs have failed to take over the planet.’,3.560330,’2003-10-10′,0,87,’Released’,’Rover is about to take over.’,4.70,30),(21801,’The Slaughter Rule’,0,”,’A young man finds solace with a young woman, his mother, and a high-school football coach who recruits him to quarterback a six-man team.’,1.390909,’2002-01-01′,0,112,’Released’,”,6.20,9),(21972,’Like Mike’,30000000,”,’Calvin and his friends, who all live in an orphanage, find old shoes with the faded letters MJ connected to a powerline. One stormy night, they go to get the shoes when Calvin and the shoes are struck by lightning. Calvin now has unbelievable basketball powers and has the chance to play for the NBA.’,5.736670,’2002-07-03′,0,99,’Released’,’Think like Mike, Achieve like Mike, Be Like Mike.’,5.70,100),(22007,’Train’,0,”,’This new Train tells the tale of an American wrestling team who board a train that just so happens to be used as a supermarket for organ harvesters.’,3.280081,’2008-10-16′,0,94,’Released’,’You\’re in for a hell of a ride.’,4.80,36),(22013,’Elmer Gantry’,3000000,”,’An ex-football player becomes a popular evangelist in the 1920s Midwest.’,6.734965,’1960-06-19′,10400000,146,’Released’,’If there was a dollar to be made – Gantry would make it… If there was a soul to be saved – Gantry would save it…’,7.30,41),(22051,’Adam’,0,’http://www.foxsearchlight.com/adam/’,’Adam, a lonely man with Asperger\’s Syndrome, develops a relationship with his upstairs neighbor, Beth.’,8.308442,’2009-07-29′,2277396,99,’Released’,’A story about two strangers. One a little stranger than the other…’,6.90,150),(22074,’Capitalism: A Love Story’,20000000,’http://www.capitalismalovestory.com/’,’Michael Moore\’s Capitalism: A Love Story comes home to the issue he\’s been examining throughout his career: the disastrous impact of corporate dominance on the everyday lives of Americans (and by default, the rest of the world).’,10.500980,’2009-09-06′,17436509,120,’Released’,’Ask not what your C.E.O. can do for you, but what you can do for your C.E.O.’,7.00,167),(22102,’Troop Beverly Hills’,0,”,’A Beverly Hills housewife in the middle of a divorce tries to find focus in her life by taking over her daughter\’s Wilderness Girls troop.’,3.455018,’1989-03-22′,0,105,’Released’,’When the going gets tough, the tough go shopping!’,5.60,56),(22215,’Chéri’,23000000,”,’A sumptuous dramatic comedy set in late 19th Century France, during the Belle Epoque, a period of social and cultural excess in European upper classes which ended only as the First World War erupted.’,5.494047,’2009-02-10′,9366227,86,’Released’,”,5.90,56),(22256,’Without Limits’,25000000,”,’The film follows the life of famous 1970s runner Steve Prefontaine from his youth days in Oregon to the University of Oregon where he worked with the legendary coach Bill Bowerman, later to Olympics in Munich and his early death at 24 in a car crash.’,3.849873,’1998-09-11′,777423,117,’Released’,’PRE. The way he competed. The way he lived his life.’,6.20,19),(22267,’Ride with the Devil’,38000000,”,’Ride with the Devil follows four people who are fighting for truth and justice amidst the turmoil of the American Civil War. Director Ang Lee takes us to a no man\’s land on the Missouri/Kansas border where a staunch loyalist, an immigrant\’s son, a freed slave, and a young widow form an unlikely friendship as they learn how to survive in an uncertain time. In a place without rules and redefine the meaning of bravery and honor.’,5.516207,’1999-11-24′,635096,138,’Released’,’In a No-man\’s Land between North and South, You didn\’t fight for the Blue or the Grey… You fought for your friends and family.’,6.60,49),(22301,’Hell\’s Angels’,3950000,”,’Two brothers attending Oxford enlist with the Royal Flying Corps when World War I breaks out. Roy and Monte Rutledge have very different personalities. Monte is a freewheeling womanizer, even with his brother\’s girlfriend Helen. He also proves to have a yellow streak when it comes to his Night Patrol duties. Roy is made of strong moral fiber and attempts to keep his brother in line. Both volunteer for an extremely risky two man bombing mission for different reasons. Monte wants to lose his cowardly reputation and Roy seeks to protect his brother. Roy loves Helen; Helen enjoys an affair with Monte; before they leave on their mission over Germany they find her in still another man\’s arms. Their assignment to knock out a strategic German munitions facility is a booming success, but with a squadron of fighters bearing down on them afterwards, escape seems unlikely.’,8.484123,’1930-11-15′,8000000,127,’Released’,’Howard Hughes\’ Thrilling Multi-Million Dollar Air Spectacle’,6.10,19),(22314,’In Too Deep’,7000000,”,’A fearless cop is taking on a ruthless crimelord. He knew the risks. He just didn\’t know how far he would have to go.’,2.772178,’1999-08-25′,14011454,97,’Released’,”,6.20,17),(22327,’Youth in Revolt’,18000000,’http://youthinrevolt-themovie.com/’,’Nick Twisp (Michael Cera), a teen with a taste for the finer things in life like Sinatra and Fellini, falls hopelessly in love with the beautiful, free-spirited Sheeni Saunders (Portia Doubleday) while on a family vacation. But family, geography and jealous ex-lovers conspire to keep these two apart. Nick abandons his dull, predictable life and develops a rebellious alter ego: François. With his ascot, his moustache and his cigarette, François will stop at nothing to be with Sheeni, and leads Nick on a path of destruction with unpredictable consequences..’,13.462544,’2009-09-11′,0,87,’Released’,’Every \”Revolution\” Needs A Leader’,5.90,319),(22345,’Baby Geniuses’,12000000,”,’Scientist hold talking, super-intelligent babies captive, but things take a turn for the worse when a mix-up occurs between a baby genius and its twin.’,4.580081,’1999-03-12′,36450736,97,’Released’,’Think innocent. Think helpless. Think again. Naps are history.’,3.30,75),(22479,’Kansas City’,18000000,”,’Robert Altman\’s story is a riff on race, class, and power cross-cuts between the two kidnappings and the background of corrupt politics and virtuoso jazz music. It all takes place in Kansas City in 1934.’,5.380733,’1996-08-16′,0,116,’Released’,’Kansas City, 1934. Anything could happen here. One night it did.’,6.10,12),(22488,’Love\’s Abiding Joy’,0,”,’The continued Westward journey of settlers Missie and Willie Lahaye. Their roots now firmly planted as they set up homestead in the far West, Missie begins to realize her passion for teaching as Willie cares for the couple\’s young daughter Kathy while expanding the family ranch with a little help from sons Jeff and Matthew. When the frontier railroad comes to town, the pleasure of a long-promised visit from Missie\’s father Clark is suddenly offset by the tragic death of young Kathy. As the untimely demise of their beloved daughter begins to drive an emotional wedge between Missie and Willie, the devastated father unexpectedly accepts an offer made by the powerful Samuel Doros to assume the role of town sheriff. Their faith shaken and their once close-knit bond suddenly torn asunder, Missie and Willie desperately attempt to bring their crumbling family back together as son Jeff faces a series of dangers while hopelessly falling for Doros\’ beautiful daughter Colette.’,1.128559,’2006-10-06′,0,87,’Released’,”,5.80,12),(22530,’Bled’,0,”,’Sai, a young artist living in a downtown warehouse delves into an ancient world of blood and lust. An enigmatic foreigner seduces her to try a long forgotten drug making her the prey of a dimensional vampire who needs her new found hunger for blood to cross over from his world to hers.’,1.039149,’2008-01-01′,0,95,’Released’,’Every addiction has its price.’,3.80,4),(22538,’Scott Pilgrim vs. the World’,60000000,’http://www.scottpilgrimthemovie.com/’,’Scott Pilgrim is a film adaptation of the critically acclaimed, award-winning series of graphic novels of the same name by Canadian cartoonist Bryan Lee Oâ��Malley. Scott Pilgrim is a 23 year old Canadian slacker and wannabe rockstar who falls in love with an American delivery girl, Ramona V. Flowers, and must defeat her seven \”evil exes\” to be able to date her.’,38.885195,’2010-07-27′,47664559,112,’Released’,’Get the hot girl. Defeat her evil exes. Hit love where it hurts.’,7.20,2126),(22556,’The Yellow Handkerchief’,15000000,’http://www.theyellowhandkerchief.com/’,’Set in the present-day southern United States, The Yellow Handkerchief stars William Hurt as Brett Hanson, an ex-convict who embarks on a road trip. Hanson hitches a ride with two troubled teens, Martine (Kristen Stewart) and Gordy (Eddie Redmayne) traversing post-Hurricane Katrina Louisiana in an attempt to reach his ex-wife and long-lost love, May (Maria Bello). Along the way, the three reflect on their existence, struggle for acceptance, and find their way not only through Louisiana, but through life.’,3.803495,’2008-12-17′,317000,102,’Released’,”,6.40,52),(22597,’The Broken Hearts Club: A Romantic Comedy’,1000000,”,’A group of friends search for fun, love and ultimately themselves in West Hollywood. This movie is an entertaining, and sometimes cynical look into the lives of six gay men trying to come to terms with what being gay and single (or gay and partnered) means to them.’,3.424158,’2000-02-01′,1744858,94,’Released’,”,6.30,25),(22600,’Jerusalema’,0,”,’This South African movie tracks the rise of a once-petty criminal to the heights of the criminal underworld. After cutting his teeth on hijacking, before moving onto bigger game, an ambitious man hits a setback when most of his gang are shot.’,1.717376,’2008-02-11′,0,120,’Released’,’Welcome to the promised land.’,6.80,16),(22617,’Dinner Rush’,0,”,’Is it just another evening at the hugely popular Italian restaurant of proprietor and bookmaker Louis Cropa in New York? Anything but as tonight\’s guests include; a local police detective and his wife specially invited by the owner; on the balcony rival bookmaker gangsters from Queens who want to become partners in the restaurant; in the corner renowned food critic \’the food nymph\’ is her usual demanding self; and at the bar, seemingly unnoticed, is Ken. As the evening continues enter Duncan, inveterate gambler and sous-chef on-the-line in the frenetic kitchen downstairs, who acts as the catalyst that causes the evening to draw to its inevitable, explosive, deadly conclusion.’,1.096355,’2000-09-01′,0,99,’Released’,”,7.10,19),(22649,’A Farewell to Arms’,4,”,’British nurse Catherine Barkley (Helen Hayes) and American Lieutenant Frederic Henry (Gary Cooper) fall in love during the First World War in Italy. Eventually separated by Frederic\’s transfer, tremendous challenges and difficult decisions face each, as the war rages on. Academy Awards winner for Best Cinematography and for Best Sound, Recording. Nominated for Best Picture and for Best Art Direction.’,1.199451,’1932-12-08′,25,89,’Released’,’Every woman who has loved will understand’,6.20,28),(22787,’Whiteout’,40000000,’http://www.whiteoutmovie.com/’,’The only U.S. Marshal assigned to Antarctica, Carrie Stetko will soon leave the harsh environment behind for good â�� in three days, the sun will set and the Amundsen-Scott Research Station will shut down for the long winter. When a body is discovered out on the open ice, Carrie\’s investigation into the continent\’s first homicide plunges her deep into a mystery that may cost her her own life.’,14.818718,’2009-09-09′,12206028,101,’Released’,’See Your Last Breath’,5.30,220),(22794,’Cloudy with a Chance of Meatballs’,100000000,’http://www.cloudywithachanceofmeatballs.com/’,’Inventor Flint Lockwood creates a machine that makes clouds rain food, enabling the down-and-out citizens of Chewandswallow to feed themselves. But when the falling food reaches gargantuan proportions, Flint must scramble to avert disaster. Can he regain control of the machine and put an end to the wild weather before the town is destroyed?’,46.781182,’2009-09-17′,242988466,90,’Released’,’Prepare to get served.’,6.50,1747),(22796,’Simon Birch’,20000000,”,’Simon Birch tells the story of Joe and Simon\’s heart-warming journey of friendship. Simon Birch was born with a condition that makes him much smaller than all the other kids in town. Now, due to his condition, Simon thinks God made him this way for a reason and highly believes in God. Together, Joe and Simon go on a journey of trust and friendship to find the answers to many things. Their friendship is put to the test when some unfortunate events happen.’,11.090254,’1998-09-11′,18253415,114,’Released’,’Destiny has big plans for little Simon Birch.’,6.50,52),(22798,’Whip It’,15000000,”,’In Bodeen, Texas, Land Of The Dragon, an indie-rock loving misfit finds a way of dealing with her small-town misery after she discovers a roller derby league in nearby Austin.’,20.059020,’2009-09-13′,16633035,111,’Released’,’Be Your Own Hero’,6.70,357),(22803,’Law Abiding Citizen’,53000000,”,’A frustrated man decides to take justice into his own hands after a plea bargain sets one of his family\’s killers free. He targets not only the killer but also the district attorney and others involved in the deal.’,49.593978,’2009-10-15′,126690726,109,’Released’,’The System Must Pay.’,7.20,1486),(22804,’Saw VI’,11000000,’http://www.saw6film.com/’,’Special Agent Strahm is dead, and Detective Hoffman has emerged as the unchallenged successor to Jigsaw\’s legacy. However, when the FBI draws closer to Hoffman, he is forced to set a game into motion, and Jigsaw\’s grand scheme is finally understood.’,31.900899,’2009-10-22′,68233629,90,’Released’,’The Game Has Come Full Circle’,6.00,722),(22805,’Motherhood’,0,”,’Motherhood is a comedy written and directed by Katherine Dieckmann, and stars Uma Thurman, Anthony Edwards and Minnie Driver. Shot on location in New Yorkâ��s West Village, focuses on the dilemmas of motherhood, such as marriage, work, and self, shown in the trials and tribulations of one pivotal day.’,10.955567,’2009-01-21′,0,90,’Released’,”,4.70,44),(22820,’Gentlemen Broncos’,10000000,’http://www.gentlemenbroncos.com/’,’A teenager attends a fantasy writers\’ convention where he discovers his idea has been stolen by an established novelist.’,3.193777,’2009-09-30′,0,89,’Released’,’Oinus, Ainous, Anous, Odious.’,6.20,51),(22821,’The Boondock Saints II: All Saints Day’,8000000,’http://www.sonypictures.com/movies/boondocksaints2/’,’Skillfully framed by an unknown enemy for the murder of a priest, wanted vigilante MacManus brothers Murphy and Connor must come out of hiding on a sheep farm in Ireland to fight for justice in Boston.’,13.517017,’2009-11-24′,10629321,118,’Released’,’The Saints Are Calling’,5.90,261),(22824,’The Fourth Kind’,10000000,’http://www.thefourthkind.net/’,’Since the 1960s, a disproportionate number of the population in and around Nome, Alaska, have gone missing. Despite FBI investigations, the disappearances remain a mystery. Dr. Abigail Tyler, a psychologist, may be on the verge of blowing the unsolved cases wide open when, during the course of treating her patients, she finds evidence of alien abductions.’,22.888173,’2009-11-06′,42333295,98,’Released’,’There are four kinds of alien encounters. The fourth kind is abduction.’,5.80,441),(22825,’The Box’,30000000,’http://thebox-movie.warnerbros.com/’,’Norma and Arthur Lewis, a suburban couple with a young child, receive a simple wooden box as a gift, which bears fatal and irrevocable consequences. A mysterious stranger delivers the message that the box promises to bestow upon its owner $1 million with the press of a button. However pressing this button will simultaneously cause the death of another human being somewhere in the world; someone they don\’t know. With just 24 hours to have the box in their possession, Norma and Arthur find themselves in the cross-hairs of a startling moral dilemma and must face the true nature of their humanity.’,21.606001,’2009-09-17′,33333531,115,’Released’,’All you have to do is push the button.’,5.40,597),(22832,’Ninja Assassin’,40000000,’http://ninja-assassin-movie.warnerbros.com/’,’Ninja Assassin follows Raizo (Rain), one of the deadliest assassins in the world. Taken from the streets as a child, he was transformed into a trained killer by the Ozunu Clan, a secret society whose very existence is considered a myth. But haunted by the merciless execution of his friend by the Clan, Raizo breaks free from them and vanishes. Now he waits, preparing to exact his revenge.’,19.085403,’2009-09-29′,60462347,99,’Released’,’Fear not the weapon, but the hand that wields it.’,6.20,371),(22881,’The Blind Side’,29000000,’http://www.theblindsidemovie.com/’,’Oversized African-American, Michael Oher, the teen from across the tracks and a broken home, has nowhere to sleep at age 16. Taken in by an affluent Memphis couple, Michael embarks on a remarkable rise to play for the NFL.’,25.767395,’2009-11-20′,309208309,129,’Released’,’Based on the extraordinary true story’,7.20,1597),(22894,’Legion’,26000000,’http://www.legionmovie.com’,’When God loses faith in humankind, he sends his legion of angels to bring on the Apocalypse. Humanity\’s only hope for survival lies in a group of strangers trapped in an out-of-the-way, desert diner with the Archangel Michael.’,30.981604,’2010-01-21′,67918658,100,’Released’,’When the last angel falls, the fight for mankind begins.’,5.20,629),(22897,’It\’s Complicated’,85000000,’http://itscomplicatedmovie.com/’,’Ten years after their divorce, Jane and Jake Adler unite for their son\’s college graduation and unexpectedly end up sleeping together. But Jake is married, and Jane is embarking on a new romance with her architect. Now, she has to sort out her life â�� just when she thought she had it all figured out.’,16.479851,’2009-12-23′,219103655,121,’Released’,’First comes marriage. Then comes divorce. And then…’,6.20,360),(22907,’Takers’,32000000,’http://www.whoarethetakers.com/’,’A seasoned team of bank robbers, including Gordon Jennings (Idris Elba), John Rahway (Paul Walker), A.J. (Hayden Christensen), and brothers Jake (Michael Ealy) and Jesse Attica (Chris Brown) successfully complete their latest heist and lead a life of luxury while planning their next job. When Ghost (Tip T.I. Harris), a former member of their team, is released from prison he convinces the group to strike an armored car carrying $20 million. As the \”Takers\” carefully plot out their strategy and draw nearer to exacting the grand heist, a reckless police officer (Matt Dillon) inches closer to apprehending the criminals.’,18.472420,’2010-08-26′,69055695,107,’Released’,’Who\’s Taking Who?’,6.00,394),(22908,’A Room for Romeo Brass’,0,”,’Two twelve-year-old boys, Romeo and Gavin, undergo an extraordinary test of character and friendship when Morell, a naive but eccentric and dangerous stranger, comes between them. Morell befriends with the two boys and later asks them to help him pursue Romeo\’s beautiful elder sister. He gradually becomes more violent after she rejects him.’,1.391958,’1999-08-23′,0,90,’Released’,”,7.30,18),(22913,’24 7: Twenty Four Seven’,0,”,’In a typical English working-class town, the juveniles have nothing more to do than hang around in gangs. One day, Alan Darcy, a highly motivated man with the same kind of youth experience, starts trying to get the young people off the street and into doing something they can believe in: Boxing. Darcy opens a boxing club, aiming to bring the rival gangs together.’,0.744406,’1997-08-31′,0,96,’Released’,”,6.30,10),(22947,’Up in the Air’,25000000,’http://www.theupintheairmovie.com/’,’George Clooney plays the dry cynical character of Ryan Bingham, an executive who specializes in \”downsizing\”. Ryan lives out of his suitcase, traveling the country for the sole purpose terminating unwanted employees day after day. Just as Ryan is about to reach his life-long goal of the ten million mile frequent flyer mark some major changes come his way. Changes that threaten to crack the cold heartless exterior that is Ryan Bingham.’,33.704181,’2009-09-05′,163670000,109,’Released’,’The story of a man ready to make a connection.’,6.70,1205),(22949,’Old Dogs’,35000000,’http://disney.go.com/olddogs/’,’Charlie and Dan have been best friends and business partners for thirty years; their Manhattan public relations firm is on the verge of a huge business deal with a Japanese company. With two weeks to sew up the contract, Dan gets a surprise: a woman he married on a drunken impulse nearly nine years before (annulled the next day) shows up to tell him he\’s the father of her twins, now seven, and she\’ll be in jail for 14 days for a political protest. Dan volunteers to keep the tykes, although he\’s up tight and clueless. With Charlie\’s help is there any way they can be dad and uncle, meet the kids\’ expectations, and still land the account?’,13.707843,’2009-11-24′,92219310,88,’Released’,’Life is Not Child-Proof.’,5.20,210),(22954,’Invictus’,60000000,’http://invictusmovie.warnerbros.com’,’Newly elected President Nelson Mandela knows his nation remains racially and economically divided in the wake of apartheid. Believing he can bring his people together through the universal language of sport, Mandela rallies South Africa\’s rugby team as they make their historic run to the 1995 Rugby World Cup Championship match.’,23.851190,’2009-12-10′,122233971,134,’Released’,’His people needed a leader. He gave them a champion.’,7.00,1125),(22970,’The Cabin in the Woods’,30000000,’http://www.discoverthecabininthewoods.com/’,’Five college friends spend the weekend at a remote cabin in the woods, where they get more than they bargained for. Together, they must discover the truth behind the cabin in the woods.’,73.987775,’2012-04-12′,66486080,95,’Released’,’If you hear a strange sound outside… have sex’,6.50,2263),(22971,’Dear John’,25000000,”,’Sergeant John Tyree is home on a 2 week leave from Germany. He meets Savannah after he dives into the ocean to retrieve Savannah\’s purse that had fallen off the pier. John falls in love with Savannah who is a student on spring break helping build a house for Habitat for Humanity. A romance occurs and Savannah falls deeply in love with John. She promises to write John overseas until he returns.’,19.402816,’2010-02-04′,114977104,115,’Released’,’Love brought them together. Will fate tear them apart?’,6.60,1262),(22972,’Green Zone’,100000000,’http://www.greenzonemovie.com/’,’During the U.S.-led occupation of Baghdad in 2003, Chief Warrant Officer Roy Miller and his team of Army inspectors were dispatched to find weapons of mass destruction believed to be stockpiled in the Iraqi desert. Rocketing from one booby-trapped and treacherous site to the next, the men search for deadly chemical agents but stumble instead upon an elaborate cover-up that threatens to invert the purpose of their mission.’,30.254021,’2010-03-11′,94882889,115,’Released’,’Chief Warrant Officer Roy Miller is done following orders’,6.40,717),(23048,’Hot Tub Time Machine’,36000000,’http://www.mgm.com/view/Movie/2387/Hot-T…’,’A malfunctioning time machine at a ski resort takes a man back to 1986 with his two friends and nephew, where they must relive a fateful night and not change anything to make sure the nephew is born.’,33.926473,’2010-03-26′,64572262,101,’Released’,’Kick some past’,6.00,894),(23049,’My Life in Ruins’,17000000,’http://www.foxsearchlight.com/mylifeinruins/’,’A Greek tour guide named Georgia attempts to recapture her kefi (Greek for mojo) by guiding a ragtag group of tourists around Greece and showing them the beauty of her native land. Along the way, she manages to open their eyes to the wonders of an exotic foreign land while beginning to see the world through a new set of eyes in the process.’,5.787891,’2009-02-06′,20455276,95,’Released’,’The most fun you can have without a passport.’,5.60,101),(23069,’Benji’,0,’http://www.benji.com/MeetBenji.htm’,’A stray dog saves two kidnapped children.’,2.651418,’1974-10-17′,0,86,’Released’,”,6.10,35),(23082,’The Invention of Lying’,18500000,’http://the-invention-of-lying.warnerbros.com/’,’Set in a world where the concept of lying doesn\’t exist, a loser changes his lot when he invents lying and uses it to get ahead.’,16.665841,’2009-09-13′,31912793,100,’Released’,’In a world where everyone can only tell the truth… This guy can lie.’,6.00,518),(23168,’The Town’,37000000,’http://thetownmovie.warnerbros.com/’,’Doug MacRay is a longtime thief, who, smarter than the rest of his crew, is looking for his chance to exit the game. When a bank job leads to the group kidnapping an attractive branch manager, he takes on the role of monitoring her â�� but their burgeoning relationship threatens to unveil the identities of Doug and his crew to the FBI Agent who is on their case.’,24.218358,’2010-09-15′,154026136,125,’Released’,’Welcome to the bank robbery capital of America.’,7.00,1468),(23169,’Remember Me’,20000000,’http://rememberme-movie.com/’,’Still reeling from a heartbreaking family event and his parents\’ subsequent divorce, Tyler Hawkins discovers a fresh lease on life when he meets Ally Craig, a gregarious beauty who witnessed her mother\’s death. But as the couple draws closer, the fallout from their separate tragedies jeopardizes their love.’,36.764666,’2010-03-12′,0,113,’Released’,’Live in the moments.’,6.90,948),(23172,’The Spy Next Door’,28000000,”,’Former CIA spy Bob Ho takes on his toughest assignment to date: looking after his girlfriend\’s three kids, who haven\’t exactly warmed to their mom\’s beau. And when one of the youngsters accidentally downloads a top-secret formula, Bob\’s longtime nemesis, a Russian terrorist, pays a visit to the family.’,14.639324,’2010-01-15′,45236543,94,’Released’,’Spying is easy, Babysitting is hard’,5.50,345),(23330,’The Ballad of Cable Hogue’,3716946,”,’Double-crossed and left without water in the desert, Cable Hogue is saved when he finds a spring. It is in just the right spot for a much needed rest stop on the local stagecoach line, and Hogue uses this to his advantage. He builds a house and makes money off the stagecoach passengers. Hildy, a prostitute from the nearest town, moves in with him. Hogue has everything going his way until the advent of the automobile ends the era of the stagecoach.’,2.676535,’1970-05-13′,5000000,121,’Released’,”,6.90,47),(23367,’Bandslam’,20000000,’http://bandslam-movie.com/’,’A high school social outcast and the popular girl bond through a shared love of music.’,7.716606,’2009-08-06′,5210988,111,’Released’,’Band Together’,5.40,126),(23398,’Alvin and the Chipmunks: The Squeakquel’,75000000,’http://www.munkyourself.com/’,’Pop sensations Alvin, Simon and Theodore end up in the care of Dave Seville\’s twenty-something nephew Toby. The boys must put aside music super stardom to return to school, and are tasked with saving the school\’s music program by winning the $25,000 prize in a battle of the bands. But the Chipmunks unexpectedly meet their match in three singing chipmunks known as The Chipettes – Brittany, Eleanor and Jeanette. Romantic and musical sparks are ignited when the Chipmunks and Chipettes square off.’,29.412262,’2009-12-21′,443140005,88,’Released’,’The Boys are back in town… and they have competition.’,5.40,666),(23479,’The Bad News Bears’,35000000,”,’An aging, down-on-his-luck ex-minor leaguer coaches a team of misfits in an ultra-competitive California little league.’,6.889633,’1976-04-07′,35323292,102,’Released’,’The coach is waiting for his next beer. The pitcher is waiting for her first bra. The team is waiting for a miracle. Consider the possibilities.’,6.90,97),(23483,’Kick-Ass’,28000000,”,’Dave Lizewski is an unnoticed high school student and comic book fan who one day decides to become a super-hero, even though he has no powers, training or meaningful reason to do so.’,45.054936,’2010-03-22′,96188903,117,’Released’,’Shut up. Kick ass.’,7.10,4645),(23531,’Whipped’,3000000,”,’Three to one may sound like fairly good odds, but it depends on the game. When the \”one\” is one very irresistible woman and the \”three\” are three hopelessly smitten guys, the deck is pretty stacked. In the battle of the sexes, the first rule is to never underestimate the power of a woman.’,2.144354,’2000-09-01′,0,82,’Released’,’Never underestimate the power of a woman.’,3.10,11),(23570,’The Pallbearer’,8000000,”,’Aspiring architect Tom Thompson is told by mysterious Ruth Abernathy that his best friend, \”Bill,\” has taken his own life. Except that Tom has never met Bill and neither have his incredulous friends. So when Tom foolishly agrees to give the eulogy at Bill\’s funeral, it sets him on a collision course with Ruth — who is revealed to be Bill\’s oversexed mother — and Julie DeMarco, the longtime crush Tom hasn\’t seen since they were teens.’,2.149469,’1996-05-03′,0,97,’Released’,’Something magical is about to unfold in the most unexpected place.’,4.60,30),(23618,’The Original Kings of Comedy’,0,”,’The Original Kings of Comedy achieves the seemingly impossible task of capturing the rollicking and sly comedy routines of stand-up and sitcom vets Steve Harvey, D.L. Hughley, Cedric the Entertainer, and Bernie Mac and the magic of experiencing a live concert show. Director Spike Lee and his crew plant a multitude of cameras in a packed stadium and onstage (as well as backstage, as they follow the comedians) to catch the vivid immediacy of the show, which is as much about the audience as it is about the jokes.’,1.918959,’2000-08-18′,0,115,’Released’,’We Got Jokes’,6.30,15),(23629,’Sucker Punch’,82000000,’http://suckerpunchmovie.warnerbros.com’,’A young girl is institutionalized by her abusive stepfather. Retreating to an alternative reality as a coping strategy, she envisions a plan which will help her escape from the mental facility.’,39.127082,’2011-03-24′,89792502,110,’Released’,’You will be unprepared’,5.90,1623),(23631,’Machete’,20000000,’http://www.vivamachete.com/’,’After being set-up and betrayed by the man who hired him to assassinate a Texas Senator, an ex-Federale launches a brutal rampage of revenge against his former boss.’,26.396191,’2010-09-01′,31327899,105,’Released’,’He was given an offer he couldn\’t refuse…’,6.30,1150),(23655,’Groove’,0,”,’An inside look into one night in the San Francisco underground rave scene.’,1.094540,’2000-06-08′,0,86,’Released’,’Are you feeling it?’,5.60,6),(23685,’Monkeybone’,75000000,”,’After a car crash sends repressed cartoonist Stu Miley (Fraser) into a coma, he and the mischievous Monkeybone, his hilariously horny alter-ego, wake up in a wacked-out waystation for lost souls. When Monkeybone takes over Stu\’s body and escapes to wreak havoc on the real world, Stu has to find a way to stop him before his sister pulls the plug on reality forever!’,8.098369,’2001-02-23′,5409517,93,’Released’,’If It Yells, If It Swings, It\’s Got To Be Monkeybone!’,4.30,78),(23706,’All About Steve’,15000000,’http://www.allaboutstevemovie.com/’,’After one short date, a brilliant crossword constructor decides that a CNN cameraman is her true love. Because the cameraman\’s job takes him hither and yon, she crisscrosses the country, turning up at media events as she tries to convince him they are perfect for each other.’,13.237835,’2009-09-04′,40105542,99,’Released’,’A Comedy That Clings’,4.70,295),(23730,’C.H.U.D.’,1250000,”,’A rash of bizarre murders in New York City seems to point to a group of grotesquely deformed vagrants living in the sewers. A courageous policeman, a photo journalist and his girlfriend, and a nutty bum, who seems to know a lot about the creatures, band together to try and determine what the creatures are and how to stop them.’,4.455440,’1984-08-31′,3412497,88,’Released’,’They\’re not staying down there anymore!’,5.30,62),(23742,’Cop Out’,30000000,’http://copoutmovie.warnerbros.com/dvd/’,’Detectives Jimmy and Paul, despite nine years as partners, can still sometimes seem like polar opposites â�� especially when Paul\’s unpredictable antics get them suspended without pay. Already strapped for cash and trying to pay for his daughter\’s wedding, Jimmy decides to sell a rare baseball card that\’s worth tens of thousands. Unfortunately, when the collector\’s shop is robbed and the card vanishes with the crook, Paul and Jimmy end up going rogue, tracking down the card and the drug ring behind its theft, all on their own time, and without any backup â�� except for each other.’,25.825771,’2010-02-26′,55583804,107,’Released’,’Rock out with your Glock out’,5.30,511),(23759,’Centurion’,12000000,’http://www.centurionmovie.com/’,’Britain, A.D. 117. Quintus Dias, the sole survivor of a Pictish raid on a Roman frontier fort, marches north with General Virilus\’ legendary Ninth Legion, under orders to wipe the Picts from the face of the Earth and destroy their leader, Gorlacon.’,22.708647,’2010-02-15′,6814789,97,’Released’,’History is written in blood’,5.90,386),(23827,’Paranormal Activity’,15000,’http://www.paranormalactivity-movie.com/’,’After a young, middle class couple moves into a suburban \’starter\’ tract house, they become increasingly disturbed by a presence that may or may not be somehow demonic but is certainly most active in the middle of the night. Especially when they sleep. Or try to.’,47.456823,’2007-09-14′,193355800,86,’Released’,’What Happens When You Sleep?’,5.90,1316),(23963,’Pontypool’,1500000,”,’When disc jockey Grant Mazzy reports to his basement radio station in the Canadian town of Pontypool, he thinks it\’s just another day at work. But when he hears reports of a virus that turns people into zombies, Mazzy barricades himself in the radio booth and tries to figure out a way to warn his listeners about the virus and its unlikely mode of transmission.’,4.680206,’2009-03-06′,32000,93,’Released’,’Shut up or die.’,6.60,183),(23988,’Stan Helsing’,108,”,’It\’s Halloween night and video store clerk Stan Helsing just got stuck with a last minute request to deliver some videos. With his best friend, his best friend\’s date, and a smoking hot ex-girlfriend waiting to go to a party, Stan convinces them to take a side trip to Stormy Night Estates for the drop. But the group gets locked inside and Stan discovers he\’s actually Stan Van Helsing, descendan’,7.410523,’2009-10-27′,0,90,’Released’,’The most feared monsters in cinematic history have met their match…’,4.00,97),(24021,’The Twilight Saga: Eclipse’,68000000,’http://eclipsethemovie.com’,’Bella once again finds herself surrounded by danger as Seattle is ravaged by a string of mysterious killings and a malicious vampire continues her quest for revenge. In the midst of it all, she is forced to choose between her love for Edward and her friendship with Jacob, knowing that her decision has the potential to ignite the ageless struggle between vampire and werewolf. With her graduation quickly approaching, Bella is confronted with the most important decision of her life.’,107.069763,’2010-06-23′,698491347,124,’Released’,’It all begins … With a choice.’,5.80,2301),(24034,’Teacher\’s Pet’,10000000,”,’Spot (Lane) is a dog who can talk and read. Posing as a human, he sneaks into school with his master Leonard (Flemming). Educational adventures ensue’,1.374409,’2004-01-16′,0,74,’Released’,’A musical tail about one dog\’s dream of becoming a boy’,5.50,2),(24055,’The Puffy Chair’,0,’http://www.thepuffychairmovie.com’,’Josh\’s life is pretty much in the toilet. He\’s a failed NYC indie rocker, and a failing booking agent. But he finds the potential of a small victory in a really bad idea. He decides to purchase a 1985 Lazy Boy on eBay, just like the one his dad had when Josh was a kid. He\’ll drive cross-country for the chair, staying with Emily at his brother\’s house on the way, and deliver it to his father as a surprise birthday gift. But when Rhett ends up coming along for the ride, it\’s three people and a giant purple puffy chair in a too-small van… and one of them has to go before the trip\’s end.’,1.243955,’2005-01-17′,0,85,’Released’,”,6.20,15),(24066,’Happy, Texas’,1700000,”,’Two escaped convicts roll into the village of Happy, Texas, where they\’re mistaken for a gay couple who work as beauty pageant consultants. They go along with it to duck the police, but the local sheriff has a secret of his own.’,2.079125,’1999-12-03′,1943649,98,’Released’,’Escaped convicts disguised as beauty pageant experts? This could get ugly’,5.50,39),(24071,’Mumford’,0,”,’In the small town of Mumford, a psychologist of the same name moves in and quickly becomes very popular, despite a questionable past.’,4.310168,’1999-09-24′,0,112,’Released’,’Some towns have all the fun.’,6.30,26),(24100,’The Little Vampire’,22000000,”,’Based on the popular books, the story tells of Tony who wants a friend to add some adventure to his life. What he gets is Rudolph, a vampire kid with a good appetite. The two end up inseparable, but their fun is cut short when all the hopes of the vampire race could be gone forever in single night. With Tony\’s access to the daytime world, he helps them to find what they\’ve always wanted.’,4.365196,’2000-10-27′,13555988,95,’Released’,’They\’re not just best friends, they\’re blood brothers.’,6.10,77),(24113,’Town & Country’,90000000,”,’Porter Stoddard is a well-known New York architect who is at a crossroads… a nexus where twists and turns lead to myriad missteps some with his wife Ellie, others with longtime friends Mona and her husband Griffin. Deciding which direction to take often leads to unexpected encounters with hilarious consequences.’,1.004579,’2001-04-27′,10372291,104,’Released’,’There\’s no such thing as a small affair.’,3.70,16),(24126,’Warlock: The Armageddon’,0,”,’Every six hundred years, a great evil has the opportunity to escape and unleash Armageddon. A group of five stones has the power to either free the evil, or banish it for another six hundred years. An order of Druids battles with a Warlock determined to unleash his father upon the world.’,3.107149,’1993-05-01′,0,98,’Released’,”,5.20,38),(24137,’An Ideal Husband’,14000000,”,’Sir Robert Chiltern is a successful Government minister, well-off and with a loving wife. All this is threatened when Mrs Cheveley appears in London with damning evidence of a past misdeed. Sir Robert turns for help to his friend Lord Goring, an apparently idle philanderer and the despair of his father. Goring knows the lady of old, and, for him, takes the whole thing pretty seriously.’,4.519523,’1999-04-15′,18535191,97,’Released’,’He just doesn\’t know it yet.’,6.30,46),(24150,’Halloween II’,15000000,’http://www.halloween2-movie.com/’,’Laurie Strode struggles to come to terms with her brother Micheal\’s deadly return to Haddonfield, Illinois; meanwhile, Michael prepares for another reunion with his sister.’,12.929525,’2009-08-28′,39421467,105,’Released’,’Family Is Forever’,5.10,267),(24206,’Silent Trigger’,15000000,”,’Waxman is a former Special Forces soldier who is now working as a heavily armed assassin for a top secret government agency. When a covert mission goes terribly wrong, Waxman and fellow assassin Clegg become that agency\’s prime targets.’,2.609057,’1996-06-26′,76382,93,’Released’,’The Terms are Clear. Kill or be Killed.’,5.00,22),(24226,’The Verdict’,16000000,”,’Frank Galvin is a down-on-his luck lawyer, reduced to drinking and ambulance chasing. Former associate Mickey Morrissey reminds him of his obligations in a medical malpractice suit that he himself served to Galvin on a silver platter: all parties willing to settle out of court. Blundering his way through the preliminaries, he suddenly realizes that perhaps after all the case should go to court; to punish the guilty, to get a decent settlement for his clients, and to restore his standing as a lawyer.’,7.980632,’1982-12-08′,53977250,129,’Released’,’The doctors want to settle, the Church wants to settle, their lawyers want to settle, and even his own clients are desperate to settle. But Galvin is determined to defy them all. He will try the case.’,7.40,131),(24227,’Excessive Force’,3000000,”,’Chicago policeman Terry McCain is determined to put away mobster Sal DiMarco, who always gets acquitted on technicalities. While monitoring a drug sale, a shootout ensues, and one of Terry\’s fellow officers gets away with $3 million of Sal\’s money. Suspecting Terry took the cash, the mobster sends his men to kill Terry\’s brother, Dylan, and partner, Frankie Hawkins. Furious, Terry sets out to take his revenge by any means necessary.’,1.279106,’1993-05-14′,1200000,87,’Released’,’You have the right to remain silent… permanently.’,4.50,10),(24264,’Sheena’,25000000,”,’Sheena\’s white parents are killed while on Safari. She is raised by the mystical witch woman of an African tribe. When her foster mother is framed for the murder of a political leader, Sheena and a newsman, Vic Casey are forced to flee while pursued by the mercenaries hired by the real killer, who hopes to assume power. Sheena\’s ability to talk to the animals and knowledge of jungle lore give them a chance against the high tech weapons of the mercenaries.’,4.020194,’1984-08-17′,5778353,117,’Released’,”,5.00,22),(24266,’The Man from Snowy River’,3500000,”,’Jim Craig has lived his first 18 years in the mountains of Australia on his father\’s farm. The death of his father forces him to go to the low lands to earn enough money to get the farm back on its feet. Kirk Douglas plays two roles as twin brothers who haven\’t spoken for years, one of whom was Jim\’s father\’s best friend and the other of whom is the father of the girl he wants to marry.’,3.656491,’1982-03-02′,20659423,104,’Released’,’The story of a boy suddenly alone in the world. The men who challenge him. And the girl who helps him become a man.’,6.80,37),(24356,’Masked and Anonymous’,0,”,’Amidst unrest, organizers put on a benefit concert.’,1.717290,’2003-08-08′,0,112,’Released’,’Would you reach out your hand to save a drowning man if you thought he might pull you in?’,5.20,13),(24363,’House of D’,0,’http://www.houseofdthemovie.com/’,’An American artist living a bohemian existence in Paris, Tom Warshaw (David Duchovny) is trying to make sense of his troubled adult life by reflecting upon his extraordinary childhood.’,6.337735,’2005-04-15′,0,97,’Released’,”,6.10,23),(24418,’Cirque du Freak: The Vampire\’s Assistant’,40000000,”,’Darren Shan is a regular teenage kid. He and his friend Steve find out about a Freak Show coming to town and work hard at trying to find tickets. They do, and together they go to \”Cirque du Freak\” where they see many strange acts including a wolf-man and a bearded lady’,16.424807,’2009-10-23′,28169671,109,’Released’,’Meet Darren. He\’s sixteen going on immortal.’,5.50,348),(24420,’The Time Traveler\’s Wife’,39000000,”,’Due to a genetic disorder, handsome librarian Henry DeTamble involuntarily zips through time, appearing at various moments in the life of his true love, the beautiful artist Clare Abshire.’,37.492928,’2009-08-14′,101229792,107,’Released’,”,6.70,798),(24424,’Ajami’,0,’http://www.kino.com/ajami/’,’Ajami is an area of Tel Aviv in Israel where Arabs, Palestinians, Jews and Christians live together in a tense atmosphere. Omar, an Israeli Arab, struggles to save his family from a gang of extortionists. He also courts a beautiful Christian girl: Hadir. Malek, an illegal Palestinian worker, tries to collect enough money to pay for his mother\’s operation. Dando, an Israeli cop, does his utmost to find his missing brother who may have been killed by Palestinians.’,0.517990,’2009-09-17′,0,120,’Released’,”,6.80,27),(24428,’The Avengers’,220000000,’http://marvel.com/avengers_movie/’,’When an unexpected enemy emerges and threatens global safety and security, Nick Fury, director of the international peacekeeping agency known as S.H.I.E.L.D., finds himself in need of a team to pull the world back from the brink of disaster. Spanning the globe, a daring recruitment effort begins!’,144.448633,’2012-04-25′,1519557910,143,’Released’,’Some assembly required.’,7.40,11776),(24432,’Doogal’,0,’http://www.doogalmovie.com/’,’This is the story of Doogal, an adorable candy-loving mutt who goes on a mission to save the world.’,1.682839,’2006-02-24′,0,85,’Released’,’Things are about to get hairy.’,3.20,18),(24438,’Did You Hear About the Morgans?’,58000000,”,’In New York City, an estranged couple who witness a murder are relocated to small-town Wyoming as part of a witness-protection program.’,14.403696,’2009-12-17′,85280250,103,’Released’,’We\’re not in Manhattan anymore.’,5.10,276),(24469,’Fish Tank’,3000000,”,’Everything changes for 15 year old Mia when her mum brings home a new boyfriend.’,12.686720,’2009-05-14′,2357852,123,’Released’,’Live, love and give as good as you get.’,6.90,250),(24575,’Raise the Titanic’,0,”,’To obtain a supply of a rare mineral, a ship raising operation is conducted for the only known source, the Titanic.’,1.630541,’1980-01-01′,0,115,’Released’,’They\’ve found the Titanic. There\’s just one thing left to do…’,5.20,21),(24621,’Chasing Papi’,0,”,’Playboy Thomas Fuentes has so far been able to skate by in life on good looks and charm alone. But when his duplicitous relationships with three women — impassioned waitress Cici, meticulous lawyer Lorena and bored socialite Patricia — spiral out of control, he suffers a mental breakdown. His doctor recommends that he choose just one girlfriend — but can he choose in time before they discover his deception?’,1.118511,’2003-04-16′,6126237,80,’Released’,’Three women. Three cities. Three times the trouble.’,6.30,16),(24662,’Cats Don\’t Dance’,32000000,”,’Danny, an ambitious singing/dancing cat, goes to Hollywood and overcomes several obstacles to fulfill his dream of becoming a movie star.’,4.098444,’1997-03-26′,3566637,75,’Released’,’It\’s a Jungle Out There!’,7.10,24),(24663,’The Open Road’,0,’http://www.theopenroadmovie.com/’,’Minor leaguer Carlton Garret takes an unexpected road trip to track down his estranged father, legendary baseball player Kyle Garret when Carltonâ��s mother becomes sick. Once reunited, Carlton struggles to deal with the series of misadventures caused by his fatherâ��s antics. Attempts at bonding come to a head as the mismatched duo make their way from Ohio back home to Houston to reunite the family.’,1.388136,’2009-02-07′,0,90,’Released’,’They\’ve got a long way to go’,4.80,19),(24664,’Bamboozled’,0,”,’TV producer Pierre Delacroix (Damon Wayans) becomes frustrated when network brass reject his sitcom idea. Hoping to get fired, Delacroix pitches the worst idea he can think of: a minstrel show. The network not only airs it, but it incredibly becomes a smash hit. Michael Rapaport co-stars in this searing satire.’,2.234110,’2000-10-06′,0,135,’Released’,”,6.30,24),(24684,’An Education’,7500000,’http://www.sonyclassics.com/aneducation/’,’A coming-of-age story about a teenage girl in 1960s suburban London, and how her life changes with the arrival of a playboy nearly twice her age.’,16.990308,’2009-10-29′,26096852,100,’Released’,’An education isn\’t always by the book.’,6.80,409),(24746,’Six-String Samurai’,2000000,”,’In a post-apocalyptic world where the Russians have taken over a nuked USA and Elvis is king of Lost Vegas, Buddy is a \’50s rocker and wandering warrior rolled into one, too-cool package. Armed with his six-string in one hand and his sword in the other, Buddy is on his way to Vegas to succeed Elvis as King. Along the way, he saves an orphan who decides to tag along.’,1.892183,’1998-09-18′,124494,91,’Released’,’Vegas Needs a New King.’,5.80,36),(24747,’Bobby Jones: Stroke of Genius’,0,”,’The story of golf icon and legend, Bobby Jones, who retired from competition at the tender age of 28.’,2.897449,’2004-04-30′,0,120,’Released’,”,5.50,19),(24748,’Hud’,2500000,”,’Hud Bannon is a ruthless young man who tarnishes everything and everyone he touches. Hud represents the perfect embodiment of alienated youth, out for kicks with no regard for the consequences. There is bitter conflict between the callous Hud and his stern and highly principled father, Homer. Hud\’s nephew Lon admires Hud\’s cheating ways, though he soon becomes too aware of Hud\’s reckless amorality to bear him anymore. In the world of the takers and the taken, Hud is a winner. He\’s a cheat, but, he explains, \”I always say the law was meant to be interpreted in a lenient manner.\”‘,6.829190,’1963-05-29′,10000000,112,’Released’,’The man with the barbed-wire soul.’,7.50,66),(24803,’Julie & Julia’,40000000,’http://www.julieandjulia.com/’,’Julia Child and Julie Powell â�� both of whom wrote memoirs â�� find their lives intertwined. Though separated by time and space, both women are at loose ends… until they discover that with the right combination of passion, fearlessness and butter, anything is possible.’,22.853006,’2009-08-06′,129540499,123,’Released’,’Based on Two True Stories’,6.60,560),(24869,’Ink’,250000,”,’Invisible forces exert power over us in our sleep. A mercenary named Ink, on a literal nightmare mission, captures the spirit of 8-year-old Emma in the dream world. To save her, the dream-givers marshal all their resources, focusing on saving the soul of Emma\’s tragically broken father.’,5.217002,’2009-01-23′,0,106,’Released’,’dreams’,6.40,101),(24913,’April Fool\’s Day’,5000000,”,’A group of eight college friends gather together at an island mansion belonging to heiress Muffy St. John to celebrate their final year of school. They soon discover that each has a hidden secret from their past which is revealed, and soon after, they turn up dead.’,8.190888,’1986-03-27′,0,89,’Released’,’Childish pranks turn into a bloody battle for survival!’,5.80,73),(24940,’Head Over Heels’,14000000,”,’Ordinary single girl Amanda Pierce (Monica Potter) unexpectedly finds herself sharing an awesome Manhattan apartment with four sexy supermodels. Determined to bring Amanda into their world, the models give her the ultimate makeover. The plan works fabulously as Amanda connects with next door charmer Jim Winston (Freddie Prinze, Jr.). That is, until one night…’,4.667230,’2001-02-02′,10424470,86,’Released’,’Unleash your inner model.’,5.30,73),(24961,’The Wiz’,24000000,”,’A Thanksgiving dinner brings a host of family together in a Harlem apartment, where a 24-year-old schoolteacher named Dorothy Gale (Diana Ross) lives with her Aunt Em (Theresa Merritt) and Uncle Henry (Stanley Greene). Extremely introverted, she has, as Aunt Em teases her, \”never been south of 125th Street\”, and refuses to move out and on with her life.’,2.753313,’1978-10-24′,21049053,134,’Released’,’From the book that\’s an American traditionâ�¦ from the smash-hit Broadway showâ�¦ the entertainment of the year!’,5.90,58),(24973,’The Egyptian’,5000000,”,’In eighteenth-dynasty Egypt, Sinuhe, a poor orphan, becomes a brilliant physician and with his friend Horemheb is appointed to the service of the new Pharoah. Sinuhe\’s personal triumphs and tragedies are played against the larger canvas of the turbulent events of the 18th dynasty. As Sinuhe is drawn into court intrigues he learns the answers to the questions he has sought since his birth.’,4.079111,’1954-08-25′,15000000,139,’Released’,’To Nefer, shameless temptress of Babylon, he surrendered his parents\’ hope of immortality!’,6.00,11),(24977,’Michael Jordan to the Max’,0,”,’This documentary showcases basketball player Michael Jordan\’s awe-inspiring moves, providing behind-the-scenes and on-the-court action, including footage of Jordan and the Chicago Bulls going head-to-head against the Utah Jazz in the 1997 NBA Finals. Phil Jackson and Bob Costas are interviewed (among others), and the awesome soundtrack includes songs by Earth, Wind and Fire, Fatboy Slim and Freddie King.’,1.830306,’2000-05-05′,21268532,46,’Released’,’Up close some heroes get even bigger.’,7.50,10),(24985,’The Heart of Me’,7000000,”,’Drama set in 1930s London with two sisters, Madeleine married to Rickie, and Dinah, who falls in love with him. Rickie and Dinah begin an affair which is to have repercussions throughout all their lives.’,1.498245,’2002-01-01′,0,96,’Released’,”,7.70,5),(25066,’Tales from the Hood’,6000000,”,’A strange funeral director tells four strange tales of horror with an African American focus to three drug dealers he traps in his place of business.’,3.892040,’1995-05-24′,12000000,98,’Released’,’Chill or be Chilled’,5.40,32),(25113,’The Four Seasons’,0,”,’Three middle-aged wealthy couples take vacations together in Spring, Summer, Autumn and Winter. Along the way we are treated to mid-life, marital, parental and other crises.’,8.067702,’1981-05-22′,0,107,’Released’,”,6.30,16),(25132,’Shorts’,40000000,”,’A young boy\’s discovery of a colorful, wish-granting rock causes chaos in the suburban town of Black Falls when jealous kids and scheming adults alike set out to get their hands on it.’,4.100942,’2009-08-21′,28972508,89,’Released’,’Not So TALL Tales From The Director Of \’Spy Kids\”,5.10,44),(25166,’Drowning Mona’,16000000,”,’The recently deceased Mona Dearly (Bette Midler) was many things: an abusive wife, a domineering mother, a loud-mouthed neighbor and a violent malcontent. So when her car and corpse are discovered in the Hudson River, police Chief Wyatt Rash (Danny DeVito) immediately suspects murder rather than an accident. But, since the whole community of Verplanck, N.Y., shares a deep hatred for this unceasingly spiteful woman, Rash finds his murder investigation overwhelmed with potential suspects.’,3.021835,’2000-03-03′,15427192,96,’Released’,’The death of Mona Dearly wasn\’t so much a whodunnit, as a who didn\’t.’,5.40,43),(25186,’Janky Promoters’,10000000,’http://www.jankypromoters.com/’,’Two shady concert promoters get into hot water when their chance to book a superstar rapper goes awry.’,1.728816,’2009-10-16′,9069,85,’Released’,”,7.00,5),(25189,’The Mirror Has Two Faces’,42000000,”,’Rose Morgan (Barbara Streisand), who still lives with her mother (Lauren Bacall), is a professor of Romantic Literature who desperately longs for passion in her life. Gregory Larkin (Jeff Bridges), a mathematics professor, has been burned by passionate relationships and longs for a sexless union based on friendship and respect.’,3.844926,’1996-11-15′,0,126,’Released’,’A story about just how wrong two people can be before they can be right.’,6.50,47),(25195,’Leap Year’,19000000,’http://www.leapyearfilm.net’,’When yet another anniversary passes without a marriage proposal from her boyfriend, Anna decides to take action. Aware of a Celtic tradition that allows women to pop the question on Feb. 29, she plans to follow her lover to Dublin and ask him to marry her. Fate has other plans, however, and Anna winds up on the other side of the Emerald Isle with handsome, but surly, Declan — an Irishman who may just lead Anna down the road to true love.’,21.959742,’2010-01-08′,29922472,100,’Released’,’Anna planned to propose to her boyfriend on February 29th. This is not her boyfriend.’,6.40,465),(25196,’Crazy Heart’,7000000,”,’When reporter Jean Craddock interviews Bad Blake — an alcoholic, seen-better-days country music legend — they connect, and the hard-living crooner sees a possible saving grace in a life with Jean and her young son. But can he leave behind an existence playing in the shadow of Tommy, the upstart kid he once mentored?’,17.697042,’2009-12-16′,39462438,112,’Released’,’The harder the life, the sweeter the song.’,6.80,274),(25208,’The Caveman\’s Valentine’,0,”,’In this spine-tingling and visually stunning thriller, Academy AwardÃ�®-nominee Samuel L. Jackson (Unbreakable, Shaft, Pulp Fiction delivers a \”full-throttle performance\” (People) as Romulus Ledbetter, a misunderstood musician turned recluse, hiding from personal demons in a New York City cave. When Romulus finds the frozen body of a young drifter in a tree, the authorities – including his police officer daughter (Aunjanne Ellis) – claim the death is accidental. Romulus is convinced the man was murdered by prominent art photographer David Leppenraub (Colm Feore). But how can he prove he\’s right when everyone thinks he\’s insane?’,4.722403,’2001-01-19′,0,105,’Released’,”,6.00,27),(25209,’Annie Get Your Gun’,3768785,”,’This film adaptation of Irving Berlin\’s classic musical stars Betty Hutton as gunslinger Annie Oakley, who romances fellow sharpshooter Frank Butler (Howard Keel) as they travel with Buffalo Bill\’s Wild West Show. Previously off target when it comes to love, Annie proves you can get a man with a gun in this battle-of-the-sexes extravaganza, which features timeless numbers like \”Anything You Can Do\” and \”There\’s No Business Like Show Business.\”‘,1.726175,’1950-05-17′,8000000,107,’Released’,”,7.30,22),(25212,’Deterrence’,0,”,’The President of the United States must deal with an international military crisis while confined to a Colorado diner during a freak snowstorm.’,2.171288,’2000-03-10′,0,101,’Released’,”,6.10,7),(25248,’Saint Ralph’,0,”,’This Canadian made comedy/drama, set in Hamilton, Ontario in 1954, is a sweet and – at times – goofy story that becomes increasingly poignant as the minutes tick by.\r It\’s the fictional tale of a wayward 9th grader, Ralph (Adam Butcher), who is secretly living on his own while his widowed, hospitalized mother remains immersed in a coma. Frequently in trouble with Father Fitzpatrick (Gordon Pinsent), the principal of his all-boys, Catholic school, Ralph is considered something of a joke among peers until he decides to pull off a miracle that could save his mother, i.e., winning the Boston Marathon. Coached by a younger priest and former runner, Father Hibbert (Campbell Scott), whose cynicism has been lifted by the boy\’s pure hope, Ralph applies himself to his unlikely mission, fending off naysayers and getting help along a very challenging path from sundry allies and friends.’,1.688495,’2004-09-11′,0,95,’Released’,’He\’s hoping for a miracle. He doesn\’t have a prayer.’,7.30,24),(25312,’Yes’,0,”,’She is a scientist. He is a Lebanese doctor. They meet at a banquet and fall into a carefree, passionate relationship. But difficulties abound because of his heritage and her loveless marriage. She flies to Havana to sort things out on the beach and in the cabarets. She sends him a ticket, but harbors no illusions that He will join her in this Caribbean melting pot.’,3.677831,’2005-08-05′,0,100,’Released’,”,5.90,7),(25350,’Imaginary Heroes’,10000000,’http://www.sonypictures.com/classics/imaginary/site.html’,’Matt Travis is good-looking, popular, and his school\’s best competitive swimmer, so everyone is shocked when he inexplicably commits suicide. As the following year unfolds, each member of his family struggles to recover from the tragedy with mixed results.’,2.852830,’2004-09-14′,0,111,’Released’,’People are never who they seem to be.’,6.30,29),(25353,’La véritable histoire du Chat Botté’,0,”,’A free adaptation of Charles Perrault\’s famous Puss\’n Boots, \”The True Story of Puss\’n Boots\” is a story for young and old for the first time on cinema screens.’,1.684948,’2009-04-01′,0,82,’Released’,”,3.80,7),(25376,’El secreto de sus ojos’,2000000,’http://www.elsecretodesusojos.com’,’A retired legal counselor writes a novel hoping to find closure for one of his past unresolved homicide cases and for his unreciprocated love with his superior – both of which still haunt him decades later.’,25.894065,’2009-08-13′,33965843,129,’Released’,”,7.80,626),(25379,’The Blue Butterfly’,0,”,’Based on a true story, The Blue Butterfly tells the story of a terminally ill 10-year-old boy whose dream is to catch the most beautiful butterfly on Earth, the mythic and elusive Blue Morpho. His mother persuades a renowned entomologist to take them on a trip to the jungle to search for the butterfly, leading to an adventure that will transform their lives’,1.985552,’2004-02-20′,0,97,’Released’,”,6.80,6),(25388,’March or Die’,0,”,’The French Foreign Legion, in the early 20s, is tasked to protect a group of Archaeologists in the middle east. After scenes depicting the hardship of day-to-day Foreign Legion life, and the ragtag collection of people who join, the local Arabs take offence at the Archaeologists and declare Jihad. A large battle takes place, with the inevitable last stand.’,3.829937,’1977-09-08′,0,107,’Released’,”,6.20,16),(25428,’I Love Your Work’,0,”,’A fictional movie star, Gray Evans, goes through the disintegration of his marriage, his gradual mental breakdown, and his increasing obsession with a young film student who reminds Gray of his own life before becoming famous. A dark psychological drama, I Love Your Work explores the pressures of fame and the difference between getting what you want and wanting what you get.’,3.313339,’2003-10-05′,0,111,’Released’,”,6.50,2),(25461,’Raising Victor Vargas’,800000,’http://www.lhp.com.sg/victor/’,’The film follows Victor, a Lower East Side teenager, as he deals with his eccentric family, including his strict grandmother, his bratty sister, and a younger brother who completely idolizes him. Along the way he tries to win the affections of Judy, who is very careful and calculating when it comes to how she deals with men.’,3.643662,’2002-05-16′,2816116,88,’Released’,”,7.80,13),(25462,’Two Can Play That Game’,6000000,”,’Vivica A. Fox sizzles as a woman scorned who plans to get her man back by any means necessary. In this comedy about players and those who \”get played.\” As corporate overachiever and all-around fly chick Shanté Smith, Fox thinks she\’s got the goods to keep her slickster boyfriend (Morris Chestnut) from straying – until he discovers a greener pasture, Shanté\’s archrival (Gabrielle Union)’,2.272130,’2001-09-07′,0,90,’Released’,”,6.60,17),(25520,’The House of Mirth’,10000000,”,’A woman risks losing her chance of happiness with the only man she has ever loved.’,3.007816,’2000-09-23′,5164404,140,’Released’,’When a woman has the beauty men admire and women envy…it is wise to tread carefully.’,6.40,25),(25636,’Jesus\’ Son’,0,”,’A young man turns from drug addiction and petty crime to a life redeemed by a discovery of compassion’,5.581743,’1999-09-05′,0,107,’Released’,”,6.70,22),(25643,’Love Happens’,18000000,’http://www.lovehappensmovie.com’,’Dr. Burke Ryan is a successful self-help author and motivational speaker with a secret. While he helps thousands of people cope with tragedy and personal loss, he secretly is unable to overcome the death of his late wife. It\’s not until Burke meets a fiercely independent florist named Eloise that he is forced to face his past and overcome his demons.’,13.472365,’2009-09-18′,36133014,109,’Released’,’Sometimes when you least expect it…’,5.60,180),(25678,’American Ninja 2: The Confrontation’,0,”,’On a remote Caribbean island, Army Ranger Joe Armstrong saves an old friend from the clutches of \”The Lion\”, an evil super-criminal who has kidnapped a local scientist and mass-produced an army of mutant Ninja warriors.’,5.061107,’1987-05-01′,0,90,’Released’,”,4.90,49),(25704,’Post Grad’,15000000,’http://www.foxsearchlight.com/postgrad/’,’Ryden Malby has a master plan. Graduate college, get a great job, hang out with her best friend and find the perfect guy. But her plan spins hilariously out of control when sheâ��s forced to move back home with her eccentric family.’,7.446069,’2009-08-21′,6405245,89,’Released’,’A Pre-Life Crisis.’,5.00,100),(25719,’Shooting Fish’,3000000,’http://www.foxsearchlight.com/shootfish/’,’Two con artists (Dan Futterman, Stuart Townsend) hire an unwitting medical-school student (Kate Beckinsale) as a secretary for their latest scam.’,1.204941,’1997-08-22′,302204,109,’Released’,’Fat cats are too easy. Go for the big fish.’,7.00,23),(25763,’Damnation Alley’,17000000,”,’A small group of survivors at a military installation who survived World War 3 attempt to drive across the desolate wasteland to where they hope more survivors are living. Hopefully their specially built vehicles will protect them against the freakish weather mutated plant and animal life and other dangers along the way.’,2.215261,’1977-09-10′,8720000,91,’Released’,”,5.00,27),(25769,’Carriers’,0,”,’Four friends fleeing a viral pandemic soon learn they are more dangerous than any virus.A deadly virus has spread across the globe. Contagion is everywhere, no one is safe and no one can be trusted. Four young attractive people race through the back roads of the American West to the pounding beat of a vacation soundtrack. Their aim is to retreat to secluded utopian beach in the Gulf of Mexico, where they could peacefully wait out the pandemic and survive the apocalyptic disease. Their plans take a grim turn when their car breaks down on an isolated road starting a chain of events that will seal the fate of each of them in an inexorable and horrifying voyage of hell through a western landscape populated by only the hideous dead or the twisted living.’,12.708963,’2009-09-04′,5802422,84,’Released’,’The rules are simple. You break them, you die…’,5.80,282),(25784,’Vượt Sóng’,1300000,’http://www.journeyfromthefall.com/home.aspx’,’Thirteen years after the end of the Vietnam War, a family who was tragically affected by the war are forced to emigrate to America.’,0.072066,’2006-02-22′,639000,135,’Released’,”,5.00,1),(25786,’Samantha: An American Girl Holiday’,0,”,’Kindhearted Samantha Parkington\’s world starts to change the day Nellie O\’Malley walks into her life. Nellie, her father, and her two little sisters have moved in next door to be servants for the Ryland family. Though they come from completely different backgrounds, Samantha and Nellie become fast friends. The girls turn to each other in happiness and sorrow, adventure and danger.’,4.980585,’2004-11-23′,0,86,’Released’,”,4.60,9),(25793,’Precious’,10000000,’http://www.weareallprecious.com/’,’Set in Harlem in 1987, Claireece \”Precious\” Jones is a 16-year-old African American girl born into a life no one would want. She\’s pregnant for the second time by her absent father; at home, she must wait hand and foot on her mother, an angry woman who abuses her emotionally and physically. School is chaotic and Precious has reached the ninth grade with good marks and a secret–she can\’t read.’,18.664624,’2009-11-06′,47536959,110,’Released’,’Life is hard. Life is short. Life is painful. Life is rich. Life is….Precious.’,6.90,417),(25941,’Harry Brown’,7300000,”,’An elderly ex-serviceman and widower looks to avenge his best friend\’s murder by doling out his own form of justice.’,16.829837,’2009-11-11′,10329747,103,’Released’,’Every man has a breaking point.’,6.70,348),(25968,’Veronika Decides to Die’,9000000,’http://www.veronikadecidestodiethemovie.com/’,’After a frantic suicide attempt, Veronika awakens inside a mysterious mental asylum. Under the supervision of an unorthodox psychiatrist who specializes in controversial treatment, Veronika learns that she has only weeks to live.’,4.799022,’2009-05-16′,0,103,’Released’,’For Veronika, confronting death… is discovering life.’,5.80,75),(25975,’My Date with Drew’,0,”,’Ever since the second grade when he first saw her in E.T. The Extraterrestrial, Brian Herzlinger has had a crush on Drew Barrymore. Now, 20 years later he\’s decided to try to fulfill his lifelong dream by asking her for a date. There\’s one small problem: She\’s Drew Barrymore and he\’s, well, Brian Herzlinger, a broke 27-year-old aspiring filmmaker from New Jersey.’,1.929883,’2005-08-05′,0,90,’Released’,”,6.30,16),(25983,’The House of the Devil’,0,”,’In the 1980s, college student Samantha Hughes takes a strange babysitting job that coincides with a full lunar eclipse. She slowly realizes her clients harbor a terrifying secret.’,8.628485,’2009-04-25′,0,95,’Released’,’Talk on the phone. Finish your homework. Watch TV. Die.’,6.00,197),(26022,’My Name Is Khan’,12000000,’http://www.mynameiskhanthefilm.com/’,’Rizwan Khan, a Muslim from the Borivali section of Mumbai, has Asperger\’s syndrome. He marries a Hindu single mother, Mandira, in San Francisco. After 9/11, Rizwan is detained by authorities at LAX who treat him as a terrorist because of his condition and his race.’,14.719886,’2010-02-12′,42345360,145,’Released’,’I am Muslim and i am not a terrorist’,7.70,232),(26039,’Point Blank’,2500000,”,’After being double-crossed and left for dead, a mysterious man named Walker single-mindedly tries to retrieve the rather inconsequential sum of money that was stolen from him.’,5.164423,’1967-08-30′,3200000,92,’Released’,’There are two kinds of people in his up-tight world: his victims and his women. And sometimes you can\’t tell them apart.’,7.10,95),(26171,’Everybody\’s Fine’,21000000,’http://www.everybodysfinemovie.com/’,’Eight months after the death of his wife, Frank Goode looks forward to a reunion with his four adult children. When all of them cancel their visits at the last minute, Frank, against the advice of his doctor, sets out on a road trip to reconnect with his offspring. As he visits each one in turn, Frank finds that his children\’s lives are not quite as picture-perfect as they\’ve made them out to be.’,15.440465,’2009-12-04′,0,99,’Released’,’Frank\’s travelling light but carrying excess baggage.’,6.50,284),(26268,’Harper’,3500000,”,’Harper is a cynical private eye in the best tradition of Bogart. He even has Bogie\’s Baby hiring him to find her missing husband, getting involved along the way with an assortment of unsavory characters and an illegal-alien smuggling ring.’,2.938973,’1966-02-23′,12000000,121,’Released’,’Harper takes a case – and the payoff is murder.’,6.20,35),(26306,’Prefontaine’,8000000,”,’It\’s the true-life story of legendary track star Steve Prefontaine, the exciting and sometimes controversial \”James Dean of Track,\” whose spirit captured the heart of the nation! Cocky, charismatic, and tough, \”Pre\” was a running rebel who defied rules, pushed limits … and smashed records …’,8.717235,’1997-01-24′,589304,106,’Released’,’He beat the odds… And became a legend!’,6.70,21),(26320,’Taking Woodstock’,0,’http://www.takingwoodstockthemovie.co.uk/’,’The story of Elliot Tiber and his family, who inadvertently played a pivotal role in making the famed Woodstock Music and Arts Festival into the happening that it was. When Elliot hears that a neighboring town has pulled the permit on a hippie music festival, he calls the producers thinking he could drum up some much-needed business for his parents\’ run-down motel. Three weeks later, half a million people are on their way to his neighborâ��s farm in White Lake, New York, and Elliot finds himself swept up in a generation-defining experience that would change his lifeâ��and American cultureâ��forever.’,11.870161,’2009-09-03′,0,120,’Released’,’A Generation Began In His Backyard.’,6.20,127),(26352,’A Low Down Dirty Shame’,10000000,”,’A black detective becomes embroiled in a web of danger while searching for a fortune in missing drug money. During the course of his investigation, he encounters various old connections, ultimately confronting the criminal responsible for Shame\’s expulsion from the force. He must also deal with two women, Angela, a beautiful old flame, and Peaches, his energetic but annoying sidekick.’,3.290639,’1994-11-23′,29392418,100,’Released’,’He\’s armed and dangerously funny.’,6.00,31),(26367,’I Can Do Bad All By Myself’,0,”,’When Madea catches sixteen-year-old Jennifer and her two younger brothers looting her home, she decides to take matters into her own hands and delivers the young delinquents to the only relative they have: their aunt April. A heavy-drinking nightclub singer who lives off of Raymond, her married boyfriend, April wants nothing to do with the kids.’,2.242809,’2009-09-11′,0,113,’Released’,”,6.00,40),(26371,’Maurice’,0,”,’After his lover rejects him, a young man trapped by the oppressiveness of Edwardian society tries to come to terms with and accept his sexuality.’,11.552247,’1987-09-18′,0,134,’Released’,”,7.10,61),(26379,’Paa’,3250000,’http://www.paathefilm.com/’,’He suffers from a progeria like syndrome. Mentally he is 13 but physically he looks 5 times older. In spite of his condition, Auro is a very happy boy. He lives with his mother Vidya, who is a gynaecologist. Amol is young, progressive politician. He is a man with a mission. Auro is Amol\’s son. Paa is a \’rare\’ story about a father-son, son-father relationship.’,2.126139,’2009-12-04′,0,133,’Released’,”,6.60,19),(26388,’Buried’,1987650,’http://www.experienceburied.com/index.html’,’Paul is a U.S. truck driver working in Iraq. After an attack by a group of Iraqis he wakes to find he is buried alive inside a coffin. With only a lighter and a cell phone it\’s a race against time to escape this claustrophobic death trap.’,32.841229,’2010-09-24′,19152480,94,’Released’,’170,000 sq miles of desert. 90 minutes of oxygen. No way out.’,6.60,827),(26389,’From Paris with Love’,52000000,’http://www.frompariswithlovefilm.com/’,’James Reese has a good job as an ambassador\’s aid in France, but his real passion is a side gig, working in a minor role in the CIA. He would love to be a full-fledged agent and can\’t believe his luck when he lands an assignment with Charlie Wax. Trigger-happy Charlie soon has James crying for his desk job, but when he learns that the same guys they\’re trying to catch are after him, James realizes that Charlie may be his only hope of survival.’,27.916284,’2010-02-05′,52826594,92,’Released’,’Two agents. One city. No merci.’,6.10,675),(26390,’Brooklyn\’s Finest’,17000000,”,’Enforcing the law within the notoriously rough Brownsville section of the city and especially within the Van Dyke housing projects is the NYPD\’s sixty-fifth precinct. Three police officers struggle with the sometimes fine line between right and wrong.’,18.790102,’2009-01-16′,29536299,133,’Released’,’This is War. This is Brooklyn.’,6.20,293),(26428,’Agora’,70000000,’http://www.agoralapelicula.com/’,’A historical drama set in Roman Egypt, concerning philosopher Hypatia of Alexandria and her relationship with her slave Davus, who is torn between his love for her and the possibility of gaining his freedom by joining the rising tide of Christianity.’,18.888806,’2009-05-17′,39041505,127,’Released’,’Alexandria, Egypt. 391 A.D. The World Changed Forever.’,6.90,395),(26466,’Triangle’,12000000,”,’The story revolves around the passengers of a yachting trip in the Atlantic Ocean who, when struck by mysterious weather conditions, jump to another ship only to experience greater havoc on the open seas.’,25.496926,’2009-10-16′,0,99,’Released’,’A Passage to Hell’,6.90,612),(26486,’The Last Shot’,0,”,’A movie director-screenwriter finds a man to finance his latest project but soon discovers that the producer is actually an undercover FBI agent working on a mob sting operation.’,6.769800,’2004-09-24′,0,90,’Released’,”,5.90,15),(26518,’Old Joy’,300000,”,’Two old pals reunite for a camping trip in Oregon\’s Cascade Mountains.’,1.673208,’2006-01-01′,0,73,’Released’,”,6.30,36),(26602,’Summer Catch’,34000000,”,’A coming-of-age romantic comedy set against the backdrop of the Cape Cod Baseball League. Local boy Ryan Dunne (Freddie Prinze Jr.), now a pitcher for Boston College, meets Tenley Parrish (Jessica Biel), the daughter of a wealthy couple who summer on the Cape. Ryan and Tenley fall in love, much to the chagrin of their families, while Ryan clings to one last hope of being discovered and signed to a pro baseball contract.’,3.960098,’2001-08-22′,19693891,108,’Released’,’Are you game?’,4.80,63),(26618,’Clay Pigeons’,0,”,’Clay is a young man in a small town who witnesses his friend, Earl kill himself because of the ongoing affair that Clay was having with the man\’s wife, Amanda. Feeling guilty, Clay now resists the widow when she presses him to continue with their sexual affairs. Clay inadvertently befriends a serial killer named Lester Long, who murders the widow in an attempt to \”help\” his \”fishing buddy.\”‘,4.221313,’1998-09-25′,0,104,’Released’,’Some killers are strange, some are deranged, and some are just plain psycho.’,6.30,39),(26665,’Aberdeen’,0,”,’Kaisa is a Scot, a successful London lawyer, who snorts coke and has one-night stands with strangers. Her mother calls from Aberdeen with some story begging her to fly to Norway and collect her alcoholic dad whom she hasn\’t seen in years.’,1.068819,’2000-07-05′,0,113,’Released’,”,7.00,6),(26672,’The Thief and the Cobbler’,28000000,”,’It is written among the limitless constellations of the celestial heavens, and in the depths of the emerald seas, and upon every grain of sand in the vast deserts, that the world which we see is an outward and visible dream, of an inward and invisible reality … Once upon a time there was a golden city. In the center of the golden city, atop the tallest minaret, were three golden balls. The ancients had prophesied that if the three golden balls were ever taken away, harmony would yield to discord, and the city would fall to destruction and death. But… the mystics had also foretold that the city might be saved by the simplest soul with the smallest and simplest of things. In the city there dwelt a lowly shoemaker, who was known as Tack the Cobbler. Also in the city… existed a Thief, who shall be … nameless.’,2.439184,’1993-09-23′,669276,72,’Released’,”,6.80,26),(26673,’Frat Party’,0,”,’Duffy the big man on campus who is marrying Adriana, a debutante heiress to a global wine fortune, right after they both graduate from the same prestigious University. Unfortunately , the final Frat Party of his college career is the night before his wedding and there are many obstacles in his way, including a soon to be Father -In-Law who is less than happy with his daughter\’s choice.’,0.783842,’2009-01-01′,0,84,’Released’,”,3.50,4),(26688,’Sorority Row’,12500000,”,’When five sorority girls inadvertently cause the murder of one of their sisters in a prank gone wrong, they agree to keep the matter to themselves and never speak of it again, so they can get on with their lives. This proves easier said than done, when after graduation a mysterious killer goes after the five of them and anyone who knows their secret.’,8.780512,’2009-09-09′,27206120,101,’Released’,’The Sisters of Theta Pi Are Dying To Keep a Secret.’,5.40,177),(26710,’My Baby\’s Daddy’,0,”,’A trio of young men are forced to grow up quick when their girlfriends all become pregnant around the same time.’,4.480167,’2004-01-09′,51,86,’Released’,”,4.30,15),(26748,’Lone Star’,5000000,”,’When the skeleton of his murdered predecessor is found, Sheriff Sam Deeds unearths many other long-buried secrets in his Texas border town.’,5.960149,’1996-06-21′,13269963,135,’Released’,’John Sayles invites you to return to the scene of the crime.’,6.90,77),(26791,’Brigham City’,1000000,”,’Wes Clayton is a lawman and a bishop in a Mormon community called Brigham. The town is shaken when a woman from California is found murdered. Clayton and his young deputy work with an FBI agent sent to investigate. As a civil and spiritual leader in the frightened town, Clayton must uncover the town\’s deepest secrets, find the murderer and keep Brigham from ripping itself apart.’,0.280083,’2001-03-30′,852206,119,’Released’,”,7.30,4),(26815,’Rocket Singh: Salesman of the Year’,1250000,’http://www.yashrajfilms.com/microsites/rocketsingh/rswebsite.html’,’Rocket Singh – Salesman of the Year is the sometimes thoughtless, sometimes thoughtful story of a fresh graduate trying to find a balance between the maddening demands of the \’professional\’ way, and the way of his heart – and stumbling upon a crazy way which turned his world upside down, and his career right side up. Welcome to the world of sales boss!’,3.000435,’2009-12-11′,0,156,’Released’,’Welcome to the world of sales boss!’,7.00,27),(26837,’B-Girl’,0,’http://www.bgirlmovie.com/’,’A young female breakdancer, Angel, moves to Los Angeles after an attack by an ex-boyfriend nearly ends her dance career forever. B-Girl follows Angel through recovery and acceptance of a new life as she busts a move into the male-centric world of underground hip hop.’,0.631571,’2009-07-29′,0,84,’Released’,”,5.50,7),(26843,’Lion of the Desert’,35000000,”,’This movie tells the story of Omar Mukhtar, an Arab Muslim rebel who fought against the Italian conquest of Libya in WWII. It gives western viewers a glimpse into this little-known region and chapter of history, and exposes the savage means by which the conquering army attempted to subdue the natives.’,2.864979,’1981-04-17′,0,173,’Released’,’He was a man of honor in a war without any.’,7.40,34),(26899,’The Mudge Boy’,800000,”,’Duncan Mudge, mid-teens, lives apart from his rural world populated by his distant father and rough local kids. His main companionship is a chicken left after his mother\’s death until the neighbor\’s son befriends him.’,5.292536,’2003-01-17′,62852,94,’Released’,”,7.30,23),(26916,’Mercy Streets’,0,”,’Estranged twin brothers – one a con man, the other an Episcopal deacon – accidentally switch places… and find God in the process.’,0.099902,’2000-10-31′,0,106,’Released’,”,5.50,2),(26963,’The Secret of Kells’,0,’http://www.thesecretofkells.com/’,’Adventure awaits 12 year old Brendan who must fight Vikings and a serpent god to find a crystal and complete the legendary Book of Kells. In order to finish Brother Aiden\’s book, Brendan must overcome his deepest fears on a secret quest that will take him beyond the abbey walls and into the enchanted forest where dangerous mythical creatures hide. Will Brendan succeed in his quest?’,10.621353,’2009-02-09′,0,75,’Released’,’Turn the darkness into light’,7.30,181),(27004,’Ca$h’,7000000,”,’A stroke of good luck turns lethal for Sam Phelan and his wife Leslie when they are faced with a life-changing decision that brings strange and sinister Pyke Kubic to their doorstep. As Pyke leads Sam and Leslie on a tumultuous adventure through the streets of Chicago, each are pulled deeper and deeper into a desperate spiral of deception and violence â�� all in the name of money.’,8.207425,’2010-01-01′,46488,108,’Released’,”,6.00,73),(27022,’The Sorcerer\’s Apprentice’,150000000,’http://disney.go.com/disneypictures/sorcerersapprentice/’,’Balthazar Blake is a master sorcerer in modern-day Manhattan trying to defend the city from his arch-nemesis, Maxim Horvath. Balthazar can\’t do it alone, so he recruits Dave Stutler, a seemingly average guy who demonstrates hidden potential, as his reluctant protégé. The sorcerer gives his unwilling accomplice a crash course in the art and science of magic, and together, these unlikely partners work to stop the forces of darkness.’,35.580815,’2010-07-13′,215283742,109,’Released’,’It\’s The Coolest Job Ever.’,5.80,1470),(27023,’Saint John of Las Vegas’,3800000,’http://www.saintjohnmovie.com/’,’An ex-gambler is lured back into the game by a veteran insurance-fraud investigator.’,2.559806,’2009-06-10′,111731,84,’Released’,”,5.90,18),(27029,’The Nun\’s Story’,3500000,”,’Gabrielle Van Der Mal gave up everything to become a nun. But her faith and her vows are forever being tested: first in the missionary Congo hospital where she assists the brilliant and handsome Dr. Fortunati and then at the mother house in France when World War II has broken out and the nuns are forbidden by the order to take sides.’,3.281509,’1959-06-18′,12800000,149,’Released’,’Her Faith Remained Strong and True in the Face of Africa\’s Terrors!’,7.40,46),(27191,’The Greatest Show on Earth’,4000000,”,’To ensure a full profitable season, circus manager Brad Braden engages The Great Sebastian, though this moves his girlfriend Holly from her hard-won center trapeze spot. Holly and Sebastian begin a dangerous one-upmanship duel in the ring, while he pursues her on the ground.’,8.988455,’1952-01-10′,36000000,152,’Released’,”,6.60,50),(27205,’Inception’,160000000,’http://inceptionmovie.warnerbros.com/’,’Cobb, a skilled thief who commits corporate espionage by infiltrating the subconscious of his targets is offered a chance to regain his old life as payment for a task considered to be impossible: \”inception\”, the implantation of another person\’s idea into a target\’s subconscious.’,167.583710,’2010-07-14′,825532764,148,’Released’,’Your mind is the scene of the crime.’,8.10,13752),(27322,’Love Jones’,10000000,”,’Darius Lovehall is a young black poet in Chicago who starts dating Nina Moseley, a beautiful and talented photographer. While trying to figure out if they\’ve got a \”love thing\” or are just \”kicking it,\” they hang out with their friend, talking about love and sex. Then Nina tests the strength of Darius\’ feelings and sets a chain of romantic complications into motion.’,1.000178,’1997-03-14′,0,104,’Released’,’Get Together. Fall Apart. Start Over.’,8.10,12),(27329,’สุริà¹�ยà¹�à¸�’,0,”,’During the 16th century, as Thailand contends with both a civil war and Burmese invasion, a beautiful princess rises up to help protect the glory of the Kingdom of Ayothaya. Based on the life of Queen Suriyothai.’,0.843067,’2001-08-17′,0,185,’Released’,”,5.10,6),(27342,’Malone’,0,”,’Erstwhile C.I.A. assassin Richard Malone hopes for a tranquil retirement in the placid Pacific Northwest, but what he gets is a rumble with a right-wing extremist plotting a secret revolution. Adapted from the novel \”Shotgun,\” by William Wingate.’,1.610132,’1987-05-01′,0,92,’Released’,’Ex-Cop, Ex-CIA, Explosive’,6.80,15),(27360,’King\’s Ransom’,0,”,’Hoping to foil his own gold-digging wife\’s plan, a loathsome businessman arranges his own kidnapping, only to realize that there are plenty of other people interested in his wealth as well.’,5.079017,’2005-04-22′,0,95,’Released’,”,5.10,14),(27374,’Lake Mungo’,0,’http://www.lakemungo.com’,’16 year old Alice Palmer drowns in a local dam. When her body is recovered and, her grieving family buries her. The family experiences a series of strange, inexplicable events centered in and around their home. Unsettled, the Palmers seek the help of psychic and parapsychologist, Ray Kemeny. Ray discovers that Alice led a secret, double life. At Lake Mungo, Alice\’s secret past emerges.’,4.653047,’2008-06-17′,0,84,’Released’,’If you\’ve never seen a ghost… Look closer.’,6.10,90),(27380,’Megaforce’,0,”,’Megaforce is an elite multi-national military unit that does the jobs that individual governments wont. When the peaceful Republic of Sardun in under threat from their more aggressive neighbour the beautiful Major Zara (Persis Khambatta) and General Byrne-White (Edward Mulhare) see the help of Ace Hunter (Barry Bostwick) and Megaforce.’,1.110179,’1982-06-25′,0,99,’Released’,’Deeds not Words’,3.50,15),(27404,’My Big Fat Independent Movie’,0,”,’This film is a spoof along the lines of \”Scary Movie\” and \”Not Another Teen Movie.\” It includes parodies of some of the indie film world\’s most renowned movies such as \”Memento,\” \”Pulp Fiction,\” \”Magnolia,\” \”My Big Fat Greek Wedding,\” \”Amelie,\” \”Run Lola Run,\” \”El Mariachi,\” \”The Good Girl,\” \”Pi,\” \”Swingers\” and many others.’,0.688220,’2005-03-04′,0,80,’Released’,’The lowbrow comedy for the highbrow crowd.’,3.00,5),(27420,’Graduation Day’,0,”,’After a high school track runner, named Laura, suddenly dies from a heart attack after finishing a 30-second 200-meter race, a killer wearing a sweat suit and a fencing mask begins killing off her friends on the school track team one by one. The suspects include the track coach Michaels, Laura\’s sister Anne who arrives in town for the funeral, the creepy school principal Mr. Guglione, and Laura\’s strange boyfriend Kevin.’,1.452199,’1981-05-01′,0,96,’Released’,’Some kids are dying to graduate…’,5.00,22),(27451,’Harvard Man’,0,”,’College has always been a time for experimentation, sexual, cultural and otherwise. \”Harvard Man\” plays out against a background of love, sex, basketball, crime and experimentation. Action and philosophy in young people\’s quest to discover their true identity.’,5.336243,’2001-01-01′,0,99,’Released’,’Passion, Seduction, Deception.’,4.80,15),(27455,’Foolish’,0,”,’\’Foolish\’ Waise is a talented comedian with a hard-edge trying to make it in the comedy clubs in LA while his brother is a hard-nosed gangster trying to make it on the streets. With all the competition they face in their chosen \”professions,\” their biggest battle is with each other over the love of a pretty girl.’,0.796009,’1999-04-09′,6033999,84,’Released’,’This big mouth is ready for the big time’,6.30,3),(27549,’Beastmaster 2: Through the Portal of Time’,6000000,”,’Mark Singer returns as Dar, the warrior who can talk to the beasts. Dar is forced to travel to earth to stop his evil brother from stealing an atomic bomb, and turning their native land from a desert into… well… a desert! Written by Jim Palin’,1.478505,’1991-06-08′,869325,107,’Released’,”,4.60,17),(27551,’The Barbarians’,0,”,’Orphaned brothers Kutchek and Gore are adopted by a tribe led by Canary the owner of a powerful jewel. The evil Kadar wants both Canary and the jewel. Attacking the tribe he kidnaps Canary but the stone eludes him. The brothers are taken to be trained as gladiators and years later have grown to be VERY big. They escape and set off on a quest to find the jewel and rescue Canary.’,1.631993,’1987-03-01′,0,87,’Released’,’Warriors. Conquerors. Heroes.’,5.10,8),(27569,’Extraordinary Measures’,31000000,’http://www.extraordinarymeasuresthemovie.com’,’Working-class father John Crowley is finally on the fast track to corporate success when his two young children, Megan and Patrick, are diagnosed with Pompe disease – a condition that prevents the body from breaking down sugar. With the support of his wife, Aileen, John ditches his career and teams with unconventional specialist Dr. Robert Stonehill to found a bio-tech company and develop a cure in time to save the lives of Megan and Patrick. As Dr. Stonehill works tirelessly to prove the theories that made him the black sheep of the medical community, a powerful bond is forged between the two unlikely allies.’,6.487344,’2010-01-21′,15134293,105,’Released’,’Don\’t hope for a miracle. Make one.’,6.00,89),(27573,’The Bounty Hunter’,40000000,’http://www.thebountyhunter-movie.net/’,’Milo Boyd is a bounty hunter whose latest gig is rather satisfying, as he finds out that the bail-skipper he must chase down is his own ex-wife, Nicole — but she has no intention of getting nabbed without a fight. Complicating matters, Nicole\’s wannabe-boyfriend, Stewart, joins the chase.’,33.747825,’2010-03-16′,136000000,110,’Released’,’It\’s a Job. It Isn\’t Personal. Well, Maybe a Little…’,5.50,858),(27576,’Salt’,110000000,’http://www.sonypictures.com/homevideo/salt/’,’As a CIA officer, Evelyn Salt swore an oath to duty, honor and country. Her loyalty will be tested when a defector accuses her of being a Russian spy. Salt goes on the run, using all her skills and years of experience as a covert operative to elude capture. Salt\’s efforts to prove her innocence only serve to cast doubt on her motives, as the hunt to uncover the truth behind her identity continues and the question remains: \”Who is Salt?\”‘,48.829437,’2010-07-21′,293329073,100,’Released’,’Who is Salt?’,6.20,2093),(27578,’The Expendables’,80000000,’http://expendablesthemovie.com/’,’Barney Ross leads a band of highly skilled mercenaries including knife enthusiast Lee Christmas, a martial arts expert, heavy weapons specialist, demolitionist, and a loose-cannon sniper. When the group is commissioned by the mysterious Mr. Church to assassinate the dictator of a small South American island, Barney and Lee visit the remote locale to scout out their opposition and discover the true nature of the conflict engulfing the city.’,77.580661,’2010-08-03′,274470394,103,’Released’,’Choose Your Weapon.’,6.00,2926),(27579,’The American’,20000000,’http://focusfeatures.com/film/the_american/’,’Dispatched to a small Italian town to await further orders, assassin Jack embarks on a double life that may be more relaxing than is good for him.’,18.632156,’2010-08-31′,65464324,104,’Released’,”,5.80,481),(27581,’The Other Guys’,100000000,’http://www.theotherguys-movie.com/’,’NYPD detectives Christopher Danson (Johnson) and P.K. Highsmith (Jackson) are the baddest and most beloved cops in New York City. They don\’t get tattoos, other men get tattoos of them. Two desks over and one back, sit detectives Allen Gamble (Ferrell) and Terry Hoitz (Wahlberg). You\’ve seen them in the background of photos of Danson and Highsmith, out of focus and eyes closed. They\’re not heroes, they\’re \”the other guys.\” But every cop has his or her day and soon Gamble and Hoitz stumble into a seemingly innocuous case no other detective wants to touch that could turn into NYC\’s biggest crime. It\’s the opportunity of their lives, but do these guys have the right stuff?’,24.399642,’2010-08-06′,170432927,107,’Released’,’When the cops are busy… Our only hope is…’,6.10,1383),(27582,’The Mechanic’,40000000,’http://www.themechanicmovie.com/’,’Arthur Bishop is a \’mechanic\’ – an elite assassin with a strict code and unique talent for cleanly eliminating targets. It\’s a job that requires professional perfection and total detachment, and Bishop is the best in the business. But when he is ordered to take out his mentor and close friend Harry, Bishop is anything but detached.’,44.094856,’2011-01-13′,51070807,93,’Released’,’Someone has to fix the problems.’,6.30,1045),(27585,’Rabbit Hole’,5000000,’http://www.rabbitholefilm.com/’,’Life for a happy couple is turned upside down after their young son dies in an accident.’,10.095184,’2010-12-16′,5129058,91,’Released’,’The only way out is through.’,6.90,165),(27586,’The Runaways’,10000000,”,’Joan Jett and Cherie Currie, two rebellious teenagers from Southern California, become the frontwomen for the Runaways — the now-legendary group that paved the way for future generations of female rockers. Under the Svengalilike influence of impresario Kim Fowley, the band becomes a huge success.’,17.611971,’2010-03-19′,2995811,106,’Released’,’It\’s 1975 and they\’re about to explode.’,6.30,254),(27588,’Forget Me Not’,0,”,’It\’s graduation weekend, and Sandy Channing, the popular class president of her small-town high school, should be enjoying the time of her life. But when her friends start disappearing, Sandy discovers they have unwittingly awakened the vengeful spirit of a girl they wronged long ago. Fighting for her sanity, Sandy must unlock a dark secret from her own past before it\’s too late.’,5.065752,’2009-10-22′,0,103,’Released’,”,5.00,66),(27686,’State Fair’,0,”,’During their annual visit to the Iowa State Fair, the Frake family enjoy many adventures. Proud patriarch Abel (Charles Winninger) has high hopes for his champion swine Blueboy; and his wife Melissa (Fay Bainter) enters the mincemeat and pickles contest…with hilarious results.’,1.847822,’1945-08-29′,0,96,’Released’,”,6.20,19),(27723,’Psycho Beach Party’,1500000,”,’Spoof of 1960\’s Beach Party/Gidget surfing movies mixed with slasher horror films. A not-so-innocent girl in 1960\’s Malibu becomes the first girl surfer at Malibu Beach, only she suffers from dissociative identity disorder and occasionally her alter ego, a sexually aggressive, foul-speaking girl, comes out. During her \”episodes\” several beach goers are found murdered.’,2.855963,’2000-08-06′,0,95,’Released’,’Party till you drop. Dead.’,6.00,26),(27759,’55 Days at Peking’,17000000,”,’Diplomats, soldiers and other representatives of a dozen nations fend off the siege of the International Compound in Peking during the 1900 Boxer Rebellion. The disparate interests unite for survival despite competing factions, overwhelming odds, delayed relief and tacit support of the Boxers by the Empress of China and her generals.’,3.321095,’1963-05-06′,10000000,154,’Released’,’A handful of men and women held out against the frenzied hordes of bloodthirsty fanatics!’,6.30,36),(27845,’Trees Lounge’,0,”,’Tommy has lost his job, his love and his life. He lives in a small apartment above the Trees Lounge, a bar which he frequents along with a few other regulars without lives. He gets a job driving an ice cream truck and ends up getting involved with the seventeen-year-old niece of his ex-girlfriend. This gets him into serious trouble with her father.’,3.443916,’1996-10-11′,0,95,’Released’,”,6.70,51),(27936,’Micmacs à tire-larigot’,33000000,”,’A man and his friends come up with an intricate and original plan to destroy two big weapons manufacturers. Avid movie-watcher and video store clerk Bazil has had his life all but ruined by weapons of war. His father was killed by a landmine in Morocco and one fateful night a stray bullet from a nearby shootout embeds itself in his skull, leaving him on the verge of instantaneous death. Losing his job and his home, Bazil wanders the streets until he meets Slammer, a pardoned convict who introduces him to a band of eccentric junkyard dealers including Calculator, a math expert and statistician, Buster, a record-holder in human cannonball feats, Tiny Pete, an artistic craftsman of automatons, and Elastic Girl, a sassy contortionist. When chance reveals to Bazil the two weapons manufacturers responsible for building the instruments of his destruction, he constructs a complex scheme for revenge that his newfound family is all too happy to help set in motion.’,7.663515,’2009-10-28′,14000000,100,’Released’,’Non Stop Madness’,6.80,148),(27983,’Yours, Mine and Ours’,0,”,’When a widower with 10 children marries a widow with 8, can the 20 of them ever come together as one big happy family?’,2.094151,’1968-04-24′,0,111,’Released’,’Their wedding night set new attendence records’,6.20,26),(27995,’She\’s Gotta Have It’,0,”,’The story of Nola Darling\’s simultaneous sexual relationships with three different men is told by her and by her partners and other friends. All three men wanted her to commit solely to them; Nola resists being \”owned\” by a single partner.’,6.722213,’1986-08-08′,0,84,’Released’,’A Seriously Sexy Comedy’,6.10,25),(28005,’Kama Sutra – A Tale of Love’,3000000,”,’Tara and Maya are two inseparable friends in India. Their tastes, habits, and hobbies are the same. Years later, the two have matured, but have maintained their friendship. Tara gets married to the local prince, Raj Singh, who soon succeeds the throne as the sole heir. After the marriage, Raj gets bored of Tara and starts seeking another female to satisfy his sexual needs. He notices Maya and is instantly attracted to her. He has her included as one of his courtesans, and is intimate with her. Watch what happens when Tara finds out and the extent she will go to keep her marriage intact.’,3.937939,’1996-09-11′,4109095,117,’Released’,”,5.70,35),(28029,’A Walk on the Moon’,14000000,”,’The world of a young housewife is turned upside down when she has an affair with a free-spirited blouse salesman.’,6.370267,’1999-01-29′,0,107,’Released’,’It was the summer of Woodstock… when she became the woman she always wanted to be.’,6.20,21),(28053,’City Island’,6000000,”,’The Rizzos, a family who doesn\’t share their habits, aspirations, and careers with one another, find their delicate web of lies disturbed by the arrival of a young ex-con brought home by Vince, the patriarch of the family, who is a corrections officer in real life, and a hopeful actor in private.’,6.497285,’2009-03-06′,6670712,104,’Released’,’Truth is stranger than family’,6.90,113),(28089,’The Messenger’,6500000,’http://www.themessengermovie.com/’,’Will Montgomery (Ben Foster), a U.S. Army Staff Sergeant who has returned home from Iraq, is assigned to the Armyâ��s Casualty Notification service. Montgomery is partnered with Captain Tony Stone (Woody Harrelson), to give notice to the families of fallen soldiers. The Sergeant is drawn to Olivia Pitterson (Samantha Morton), to whom he has delivered news of her husbandâ��s death.’,8.432401,’2009-11-13′,1521261,113,’Released’,’The Scars of War Will Last Forever’,7.10,119),(28121,’A Thin Line Between Love and Hate’,0,”,’Nightclub manager Darnell Wright is a perpetual playboy who is almost as devoted to his job as he is to the pursuit of beautiful women. After he sets his sights on the ultra-classy Brandi Web, he launches an all-out assault to win her heart. Ultimately, charm, lust and passion prevail, but Darnell learns the hard way that when you play, you pay. Brandi is much harder to get rid of than she was to get–especially when she realizes that she has a rival vying for Darnell\’s affection. When he finally decides to call it quits, Brandi becomes an obsessed femme fatale stalking the new love of her life.’,2.088251,’1996-04-04′,0,108,’Released’,’When you play, you pay.’,5.70,15),(28165,’The Toxic Avenger Part II’,0,”,’The Toxic Avenger is lured to Tokyo, Japan by the evil corporation Apocalypse Inc. So while the Toxic Avenger is fighting crime in Tokyo, Apocalypse Inc. spread evil in Tromaville.’,1.791331,’1989-02-24′,0,96,’Released’,”,5.30,39),(28178,’Hachi: A Dog\’s Tale’,16000000,”,’A drama based on the true story of a college professor\’s bond with the abandoned dog he takes into his home.’,43.217089,’2009-06-13′,47801389,93,’Released’,’A true story of faith, devotion and undying love.’,7.70,1717),(28211,’Chloe’,15000000,”,’A doctor hires an escort to seduce her husband, whom she suspects of cheating, though unforeseen events put the family in danger.’,26.373864,’2009-03-25′,8459458,96,’Released’,’If the one you love was lying to you, how far would you go to find out the truth?’,5.90,498),(28260,’Return of the Living Dead 3′,2000000,”,’Colonel Reynolds and his group of government scientists continue their work on re-animating the dead for military use. His son Curt uses a stolen security pass to sneak in with his thrill-seeking girlfriend Julie, with shocking, deadly results!’,7.502934,’1993-10-01′,54207,97,’Released’,’She\’s to die for.’,5.90,88),(28353,’How to Be a Player’,0,”,’Dray is a young playboy whose only objective in life seems to be to have sex with as many girls as he can without getting caught by his girlfriend Lisa. Dray\’s sister Jenny and her friend Katrina plan to show him that the way he lives is wrong and organize a party in Malibu, inviting all of his girlfriends.’,1.202450,’1997-08-06′,13960203,93,’Released’,”,5.30,8),(28355,’Case 39′,27000000,’http://www.case39movie.com/mainsite/’,’In her many years as a social worker, Emily Jenkins believes she has seen it all, until she meets 10-year-old Lilith and the girl\’s cruel parents. Emily\’s worst fears are confirmed when the parents try to harm the child, and so Emily assumes custody of Lilith while she looks for a foster family. However, Emily soon finds that dark forces surround the seemingly innocent girl, and the more she tries to protect Lilith, the more horrors she encounters.’,23.917982,’2009-08-13′,29000000,109,’Released’,’Some cases should never be opened.’,6.10,563),(28580,’The Lost Weekend’,1250000,”,’Don Birnam, a long-time alcoholic, has been sober for ten days and appears to be over the worst… but his craving has just become more insidious. Evading a country weekend planned by his brother and girlfriend, he begins a four-day bender that just might be his last – one way or another.’,6.903314,’1945-11-25′,11000000,101,’Released’,’The screen dares to open the strange and savage pages of a shocking bestseller!’,7.40,112),(28665,’Fame’,0,”,’An updated version of the 1980 musical, which centered on the students of the New York Academy of Performing Arts.’,7.668063,’2009-01-01′,0,107,’Released’,”,5.50,135),(28666,’The Woman Chaser’,0,”,’A 1950s used-car salesman (Patrick Warburton) wants to make a low-budget film about a trucker who accidentally runs down a child.’,0.619979,’1999-10-08′,0,90,’Released’,”,4.90,4),(28902,’In Dreams’,0,”,’Claire Cooper dreams strange things from time to time. One night, she dreams about a little girl being taken away by a stranger…’,3.226243,’1999-01-15′,0,100,’Released’,’You don\’t have to sleep to dream’,5.40,44),(28932,’F.I.S.T.’,11,”,’Johnny Kovak joins the Teamsters trade-union in a local chapter in the 1930s and works his way up in the organization. As he climbs higher and higher his methods become more ruthless and finally senator Madison starts a campaign to find the truth about the alleged connections with the Mob.’,3.375208,’1978-04-26′,11,145,’Released’,”,6.40,29),(29015,’The Specials’,0,”,’America\’s 7th Best Superhero Team, the Specials, are a group of geeks and oddballs. We get to see one day in their lives as fan and new member Nightbird joins the group, just in time for the group to get a new line of action figures. But the members\’ extreme personalities and personal issues threaten to rip the group apart.’,9.055447,’2000-09-22′,0,82,’Released’,”,5.50,11),(29064,’The Omega Code’,0,”,’In this spiritual thriller, an ancient prophecy is about to be fulfilled as a secret code brings the world to the edge of Apocalypse. Gillen Lane (Casper Van Dien) is a expert on theology and mythology who has gained international fame as a motivational speaker.’,1.288173,’1999-10-15′,2400000,100,’Released’,”,4.40,17),(29076,’Gun Shy’,10000000,”,’Legendary undercover DEA agent Charlie Mayough has suddenly lost his nerves of steel. On the verge of a career-induced mental breakdown, and in complete fear of trigger-happy Mafia leader Fulvio Nesstra, Charlie seeks psychiatric help and finds himself relying on the support of an unstable therapy group and nurse Judy just to get through his work.’,3.988432,’2000-02-04′,1631839,101,’Released’,’The Agency\’s best has a bad case of nerves.’,5.40,24),(29078,’The Game of Their Lives’,0,”,’Based on a true story, this film tells the tale of the 1950 US soccer team who, against all odds, beat England 1 – 0 in the city of Belo Horizonte, Brazil. Although no US team has yet won a World Cup title, this story is about the family traditions and passions which shaped the lives of the players who made up this team of underdogs.’,2.013405,’2005-01-01′,0,101,’Released’,”,5.80,14),(29122,’An Everlasting Piece’,0,”,’Colin (Barry McEvoy) is a Catholic and George (Brian O\’Byrne) is a poetry-loving Protestant. In Belfast in the 1980s, they could have been enemies, but instead they became business partners. After persuading a mad wig salesman, known as the Scalper (Billy Connolly), to sell them his leads, the two embark on a series of house calls’,0.068246,’2000-12-22′,0,103,’Released’,’Piece on Earth.’,6.00,1),(29146,’Charly’,950000,”,’An experiment on a simpleton turns him into a genius. When he discovers what has been done to him he struggles with whether or not what was done to his was right.’,0.178689,’1968-09-23′,814666,103,’Released’,’A love story that begins with an incredible experiment!’,6.60,28),(29193,’The Spanish Prisoner’,10000000,”,’An employee of a corporation with a lucrative secret process is tempted to betray it. But there\’s more to it than that.’,3.091077,’1997-09-08′,13835130,110,’Released’,’It\’s the oldest con in the book.’,7.10,73),(29262,’Casa de Areia’,0,”,’A woman is taken along with her mother in 1910 to a far-away desert by her husband, and after his passing, is forced to spend the next 59 years of her life hopelessly trying to escape it.’,0.389471,’2005-05-13′,0,115,’Released’,”,6.70,9),(29339,’Nicholas Nickleby’,0,”,’The Charles Dickens story of Nicholas Nickleby, a young boy in search of a better life for his recently torn-apart family. A young compassionate man struggles to save his family and friends from the abusive exploitation of his coldheartedly grasping uncle.’,5.099923,’2002-12-27′,0,132,’Released’,”,6.80,49),(29371,’The Incredibly True Adventure of Two Girls In Love’,0,”,’An adventurous love story between two young women of different social and economic backgrounds who find themselves going through all the typical struggles of a new romance.’,1.708190,’1995-06-16′,0,94,’Released’,”,5.70,13),(29406,’Trucker’,2000000,’http://truckermovie.net/’,’Loner Diane Ford (Michelle Monaghan) is a truck driver with an 11-year-old son, Peter (Jimmy Bennett), whom she never sees, and that\’s fine with her. But, when Peter\’s father, Len (Benjamin Bratt), falls ill, he asks Diane to take care of their son for a while. Eventually, Diane reluctantly agrees, but she quickly realizes that caring for a child interferes with her independent lifestyle — and Peter isn\’t all that thrilled with the arrangement, either.’,1.201730,’2008-04-24′,0,90,’Released’,’Some Things in life you can\’t leave behind’,6.80,16),(29426,’Survival of the Dead’,4000000,’http://magnetreleasing.com/survivalofthedead/’,’On an island off the coast of North America, local residents simultaneously fight a zombie epidemic while hoping for a cure to return their un-dead relatives back to their human state.’,10.789912,’2010-05-06′,0,90,’Released’,’Death isn\’t what it used to be.’,4.60,116),(29427,’The Crazies’,20000000,”,’Four friends find themselves trapped in their small hometown after they discover their friends and neighbors going quickly and horrifically insane.’,28.867568,’2010-02-26′,54956140,101,’Released’,’Fear Thy Neighbor’,6.20,633),(29461,’Soul Food’,0,”,’Traditional Sunday dinners at Mama Joe\’s (Irma P. Hall) turn sour when sisters Teri (Vanessa L. Williams), Bird (Nia Long) and Maxine (Vivica A. Fox) start bringing their problems to the dinner table in this ensemble comedy. When tragedy strikes, it\’s up to grandson Ahmad (Brandon Hammond) to pull the family together and put the soul back into the family\’s weekly gatherings. Michael Beach, Mekhi P’,4.105363,’1997-09-26′,0,114,’Released’,’There\’s Plenty For Everyone!’,6.60,19),(29463,’Krush Groove’,3000000,”,’Russell Walker is a young, successful manager of rap performers, handling acts for the Krush Groove label, including Run-DMC and The Fat Boys. When Run-D.M.C. has a hit record and Russell needs more money to press more copies, he borrows it from a street hustler and soon regrets his decision.’,0.720091,’1985-10-25′,0,97,’Released’,’It\’s chillin\’!’,7.00,11),(29514,’Due occhi diabolici’,9000000,”,’Two horror segments based on Edgar Allan Poe stories set in and around the city of Pittsburgh. \”The Facts in the Case of M. Valdemar\” concerns a cheating wife who is trying to scam her dying husband out of millions by having her doctor/hypnotist lover hypnotize the geezer into signing his dough over to her. The old man dies while under hypnosis and is stuck in the limbo between the here and the hereafter. The door to the physical world is opened and the undead attempt to enter it. \”Black Cat\” is the story of Rodd Usher, an alcoholic photographer/artist, who descends into madness after he kills a stray cat that his live-in girlfriend Annabelle brings home. One murder leads to another, and the complex cover-ups begin.’,8.218383,’1990-01-25′,0,120,’Released’,’When I wake you… you\’ll be dead’,6.00,35),(29595,’Wal-Mart: The High Cost of Low Price’,0,’http://www.walmartmovie.com/’,’This documentary takes the viewer on a deeply personal journey into the everyday lives of families struggling to fight Goliath. From a family business owner in the Midwest to a preacher in California, from workers in Florida to a poet in Mexico, dozens of film crews on three continents bring the intensely personal stories of an assault on families and American values.’,1.404175,’2005-11-04′,0,98,’Released’,”,6.90,24),(29697,’Faith Like Potatoes’,0,”,’Frank Rautenbach leads a strong cast as Angus Buchan, a Zambian farmer of Scottish heritage, who leaves his farm in the midst of political unrest and racially charged land reclaims and travels south with his family to start a better life in KwaZulu Natal,South Africa.’,0.147886,’2006-10-27′,0,97,’Released’,”,6.00,9),(29715,’Major Dundee’,3800000,”,’During the last winter of the Civil War, cavalry officer Amos Dundee leads a contentious troop of Army regulars, Confederate prisoners and scouts on an expedition into Mexico to destroy a band of Apaches who have been raiding U.S. bases in Texas.’,3.490215,’1965-04-07′,14873,123,’Released’,”,6.20,38),(29731,’And Then Came Love’,0,”,’Successful New York journalist and single mom Julie Davidson\’s (Vanessa Williams) six-year old son Jake (Jeremy Gumbs) is acting up, so she finds his sperm-donor father Paul Cooper (Kevin Daniels), who\’s a struggling actor and law-school drop-out.’,0.280829,’2007-01-01′,0,90,’Released’,”,5.00,1),(29912,’The Robe’,4100000,”,’Marcellus is a tribune in the time of Christ. He is in charge of the group that is assigned to crucify Jesus. Drunk, he wins Jesus\’ homespun robe after the crucifixion. He is tormented by nightmares and delusions after the event. Hoping to find a way to live with what he has done, and still not believing in Jesus, he returns to Palestine to try and learn what he can of the man he killed.’,4.028875,’1953-09-16′,36000000,135,’Released’,’The first motion picture in CinemaScope–the modern miracle you see without glasses!’,6.40,42),(29917,’Exam’,0,’http://www.examthemovie.com/’,’The final candidates for a highly desirable corporate job are locked together in an exam room and given a test so simple and confusing that tension begins to unravel.’,20.265518,’2009-06-19′,0,101,’Released’,’How far would you go to win the ultimate job?’,6.60,523),(29920,’Snabba Cash’,0,’http://www.filmensnabbacash.se/’,’A three-tiered story centered around drugs and organized crime, and focused on a young man who becomes a runner for a coke dealer.’,7.217328,’2010-01-15′,0,124,’Released’,”,6.50,63),(29963,’Bright Star’,8500000,’http://www.brightstar-movie.com/’,’In 1818, high-spirited young Fanny Brawne finds herself increasingly intrigued by the handsome but aloof poet John Keats, who lives next door to her family friends the Dilkes. After reading a book of his poetry, she finds herself even more drawn to the taciturn Keats. Although he agrees to teach her about poetry, Keats cannot act on his reciprocated feelings for Fanny, since as a struggling poet he has no money to support a wife.’,9.230073,’2009-11-05′,4440055,119,’Released’,’First love burns brightest.’,6.80,107),(29996,’Solomon and Sheba’,5000000,”,’Under the rule of King David, Israel is united and prosperous although surrounded by enemies including Egypt and its allies. The aging King David favors his younger son, Solomon, as his successor, but David\’s elder son Prince Adonijah, a warrior, declares himself King. When David learns of this, he publicly announces Solomon to be his successor. Adonijah and Joab, his general, withdraw in rage. Israel prospers under King Solomon\’s wise and benevolent rule and is seen as a threat to more tyrannical monarchs in the region. The Pharaoh of Egypt agrees to cede a Red Sea port to the Queen of Sheba in a plot to undermine Solomon\’s rule. Sheba is to seduce Solomon and introduce Sheban pagan worship into Jerusalem. Meanwhile, Prince Adonijah, now banished, also conspires with Pharaoh and is given an army to defeat Solomon. The film is a highly fictionalized dramatization of events depicted in The Bible — First Kings chapter 10 and Second Chronicles chapter 9.’,0.835617,’1959-12-25′,12200000,139,’Released’,’Only once in 3000 years…anything like…’,5.40,8),(30082,’Forty Shades of Blue’,1500000,”,’A Russian woman living in Memphis with a much older rock-n-roll legend experiences a personal awakening when her husband\’s estranged son comes to visit.’,0.071377,’2005-12-07′,0,108,’Released’,”,6.00,2),(30128,’I Hope They Serve Beer in Hell’,7000000,”,’Tucker decides to take an impromptu trip to celebrate his friend\’s bachelor party. He drags his friend into a lie with his fiancée, gets him into trouble and then abandons him in order to pursue a hilarious carnal interest. Tucker is disinvited to the wedding, and in order to get back in, Tucker has to find a way to balance his narcissism with the demands of friendship.’,7.155519,’2009-09-25′,1429299,106,’Released’,”,5.70,20),(30139,’Phat Girlz’,0,”,’Two plus-sized ladies meet the men of their dreams in the most unexpected of ways.’,0.982624,’2006-01-01′,0,99,’Released’,”,3.70,10),(30141,’The Singing Detective’,0,”,’From his hospital bed, a writer suffering from a skin disease hallucinates musical numbers and paranoid plots.’,6.335881,’2003-10-24′,0,109,’Released’,’When it comes to murder, seduction and betrayal he wrote the book. Now he\’s living it!’,5.90,41),(30246,’Civil Brand’,0,”,’Forced to work under slave-like conditions in a \”prison for profit\” program, the inmates of a mostly-African-American female prison, Whitehead Correctional, try to take over the institution. At the core of the story is Frances, who finds herself in prison after being falsely convicted of murder, and who is told that her baby has been murdered, sparking her to lead her fellow inmates in the protest’,0.665512,’2003-08-29′,0,95,’Released’,”,5.30,4),(30309,’Real Women Have Curves’,0,”,’There\’s more to Ana Garcia than meets the eye. Should she leave home, go to college and experience life? Or stay home, get married, and keep working in her sisterâ��s struggling garment factory? It may seem like an east decision, but for 18 year-old Ana, every choice she makes this summer will change her life. At home, she is bound to a mother who wants her to become someone she\’s not. But at school, she\’s encouraged by a teacher who sees her potential and adored by a boyfriend who loves her for who she is. Right now, Ana may be making clothes for less shapely women. But she\’s about to discover that real women take chances, have flaws, embrace life, and above all, have curves!’,1.026243,’2002-01-01′,0,86,’Released’,”,5.80,19),(30315,’Kingdom of the Spiders’,500000,”,’Investigating the mysterious deaths of a number of farm animals, vet Rack Hansen discovers that his town lies in the path of hoards of migrating tarantulas. Before he can take action, the streets are overrun by killer spiders, trapping a small group of towns folk in a remote hotel.’,2.537032,’1977-08-24′,17000000,97,’Released’,’A Living, Crawling, Hell on Earth!’,5.70,30),(30379,’Megiddo: The Omega Code 2′,0,”,’Stone (the Antichrist) becomes President of the European Union and uses his seat of power to dissolve the United Nations and create a one world government called the World Union.’,0.809588,’2001-09-07′,0,104,’Released’,’In The Beginning, The End Had A Name.’,3.60,8),(30497,’The Texas Chain Saw Massacre’,85000,”,’Five friends visiting their grandfather\’s house in the country are hunted and terrorized by a chain-saw wielding killer and his family of grave-robbing cannibals.’,29.262427,’1974-10-01′,30859000,83,’Released’,’Who will survive and what will be left of them?’,7.20,590),(30596,’å��æ��å��å��’,23000000,’http://www.bodyguardsandassassins.com/’,’In 1905, revolutionist Sun Yat-Sen visits Hong Kong to discuss plans with Tongmenghui members to overthrow the Qing dynasty. But when they find out that assassins have been sent to kill him, they assemble a group of protectors to prevent any attacks.’,7.876883,’2009-12-18′,5837674,139,’Released’,’To save a nations future, they must protect one man from its past.’,6.50,57),(30867,’Scott Walker: 30 Century Man’,0,”,’A documentary on the influential musician Scott Walker.’,0.607782,’2006-10-31′,0,95,’Released’,”,7.00,8),(30890,’Radio Days’,16000000,”,’The Narrator (Woody Allen) tells us how the radio influenced his childhood in the days before TV. In the New York City of the late 1930s to the New Year\’s Eve 1944, this coming-of-age tale mixes the narrator\’s experiences with contemporary anecdotes and urban legends of the radio stars.’,7.612849,’1987-01-30′,0,90,’Released’,”,7.00,127),(30943,’The Deep End of the Ocean’,38000000,”,’Michelle Pfeiffer is ferocious in the role of a desperate mother whose 3-year-old son disappears during her high school reunion. Nine years later, by chance, he turns up in the town in which the family has just relocated. Based on Jacquelyn Mitchard\’s best-selling novel (an Oprah book club selection), the movie effectively presents the troubling dynamics that exist between family members who\’ve suffered such an unsettling loss.’,4.746085,’1999-03-12′,28121100,106,’Released’,’The search for her son was over. The search for her family was just beginning.’,5.90,54),(30973,’The Visual Bible: The Gospel of John’,10000000,”,’A word for word depiction of the life of Jesus Christ from the Good News Translation Bible as recorded in the Gospel of John.’,3.208172,’2003-09-11′,4069090,125,’Released’,’For God loved the world So much…’,8.20,12),(30979,’The Horse Boy’,0,”,’Filmmaker Michel Orion Scott captures a magical journey into a little-known world, in a documentary which chronicles Rupert Isaacson and Kristin Neff\’s personal odyssey to make sense of their child\’s autism, and find healing for him and themselves in the unlikeliest of places.’,0.465404,’2009-11-25′,0,93,’Released’,”,5.50,2),(31005,’Moonlight Mile’,21000000,”,’As he copes with the death of his fiancee along with her parents, a young man must figure out what he wants out of life.’,8.982335,’2002-09-09′,10011050,117,’Released’,”,6.50,52),(31007,’Welcome to the Rileys’,0,’http://www.welcometotherileys-movie.com/’,’Years after their teenage daughterâ��s death, Lois and Doug Riley, an upstanding Indiana couple, are frozen by estranging grief. Doug escapes to New Orleans on a business trip. Compelled by urgencies he doesnâ��t understand, he insinuates himself into the life of an underage hooker, becoming her platonic guardian.’,6.085879,’2010-10-29′,42145,110,’Released’,”,6.40,139),(31064,’The Business of Strangers’,0,”,’Julie Styron thinks she is going to be fired, but instead discovers that she is being promoted. Trapped in an airport hotel, she wants to celebrate but finds only the company of her young assistant, Paula Murphy. As the night progresses, the two women get to know each other. They flirt, they drink, they lie; personal flaws are revealed and exposed. But at the end of the night their relationship turns and becomes a complex battle of power, authority, and wit.’,1.369649,’2001-01-19′,0,84,’Released’,”,5.70,19),(31117,’Superbabies: Baby Geniuses 2′,0,’http://www.sonypictures.com/movies/superbabiesbabygeniuses2/index.html’,’Following on from the plot of the last movie, babies can communicate with each other using \’baby talk\’, and have an innate knowledge of the secrets of the universe. The baby geniuses become involved in a scheme by media mogul Bill Biscane (Jon Voight). Helping the geniuses is a legendary superbaby named Kahuna. He joins up with several other babies in an attempt to stop Biscane, who intends to use a state-of-the-art satellite system to control the world\’s population.’,5.886228,’2004-08-27′,9109322,88,’Released’,’Meet the new generation of superheroes.’,1.90,35),(31163,’Chicken Tikka Masala’,0,”,’Jimi (Chris Bisson), the Chopra family\’s only son, gets caught off guard when his high-handed parents (Saeed Jaffrey and Jamila Massey) announce an arranged marriage to Simran (Jinder Mahal), a lovely girl from a respectable family. Problem is, Jimi\’s gay, so to hide his homosexuality, he spins an ever-more elaborate web of deceit — but how long can he conceal the truth?’,0.258413,’2005-04-22′,0,90,’Released’,”,3.50,5),(31166,’I Come with the Rain’,18000000,”,’Kline, a former Los Angeles police officer turned private detective, is hired by a powerful pharmaceutical conglomerate boss to investigate in Asia the disappearance of his only son, Shitao, whom he has not seen in person since the boy was ten. Now in his 30s, Shitao has gone missing in the Philippines where he had been helping in an orphanage.’,8.266124,’2009-05-14′,0,114,’Released’,”,5.60,20),(31174,’Richard III’,0,”,’Shakespeare\’s Play transplanted into a 1930s setting.’,5.107235,’1995-12-29′,0,104,’Released’,’I can smile, and murder while I smile’,6.90,49),(31175,’Soul Kitchen’,5000000,’http://www.soul-kitchen-film.com/?l=en’,’SOUL KITCHEN film centers on a likable but hopelessly disorganized restauranteur, Zinos, whose cafe is second home to a motley crew of lovable eccentrics. When his girlfriend Nadine up and moves to Shanghai, a love-sick Zinos decides to fly after her, leaving his restaurant in the hands of his unreliable ex-con brother Illias. Both decisions turn out disastrous: Illias gambles away the restaurant to a shady real estate agent, and Zinos finds Nadine with a new lover. If the brothers can stop arguing and get it together, the Soul Kitchen might still have one last chance at staying in business. The mayhem that follows is a hilariously entertaining story of self-realization, set to an irresistibly soulful soundtrack.’,5.461487,’2009-09-09′,17872796,99,’Released’,”,7.10,116),(31203,’Le petit Nicolas’,0,”,’Nicolas has a happy existence, parents who love him, a great group of friends with whom he has great fun, and all he wants is that nothing to changes… However, one day, he overhears a conversation that leads him to believe that his life might change forever, his mother is pregnant!. He panics and envisions the worst: soon a little brother will…’,20.362025,’2009-09-30′,0,91,’Released’,”,5.90,306),(31246,’From Justin to Kelly’,12000000,”,’A lonely, sexually repressed man. A depressed woman. A summer camp. On this fateful night, they will meet… and their hearts will become one.’,1.623338,’2003-06-20′,4922166,90,’Released’,’The tale of two American Idols.’,3.00,23),(31306,’Crazy in Alabama’,0,”,’An abused wife heads to California to become a movie star while her nephew back in Alabama has to deal with a racially-motivated murder involving a corrupt sheriff.’,5.770246,’1999-10-22′,0,111,’Released’,”,6.50,12),(31535,’Chairman of the Board’,0,”,’A surfer becomes the head of a major company.’,0.587276,’1998-03-13′,0,95,’Released’,’Work sucks!’,2.70,13),(31582,’Flawless’,0,”,’An ultraconservative police officer suffers a debilitating stroke and is assigned to a rehabilitative program that includes singing lessons – with the drag queen next door.’,5.271559,’1999-11-26′,4488529,112,’Released’,”,5.90,56),(31640,’Blood and Wine’,26000000,”,’A man who has failed as a father and husband commits a heist to make money for his fledging business, but things become complicated when his wife interferes.’,1.492056,’1996-10-03′,0,101,’Released’,’There is no honour amongst thieves.’,5.50,34),(31668,’All The Queen\’s Men’,15000000,”,’A mismatched team of British Special Services agents led by an American must infiltrate, in disguise, a female-run Enigma factory in Berlin and bring back the decoding device that will end the war.’,1.833058,’2001-10-14′,23000,99,’Released’,”,6.10,7),(31867,’Repo Men’,32000000,’http://www.repomenarecoming.com/’,’In the future, medical technology has advanced to the point where people can buy artificial organs to extend their lives. But if they default on payments, an organization known as the Union sends agents to repossess the organs. Remy is one of the best agents in the business, but when he becomes the recipient of an artificial heart, he finds himself in the same dire straits as his many victims.’,25.799697,’2010-03-18′,18409891,111,’Released’,’For a price, any organ in your body can be replaced. But it can also be repossessed.’,6.20,620),(31908,’Ghosts of Mississippi’,0,”,’Ghosts of Mississippi is a drama covering the final trial of the assassin, Bryon De La Beckwith, of the 60s civil rights leader Medgar Evers. It begins with the murder and the events surrounding the two initial trials which both ended in a hung jury. The movie then covers District Attorney, Bobby DeLaughters transformation and alliance with Myrlie Evers, wife of Medgar Evers, of the, as he becomes more involved with bringing Beckwith to trial for the third time 30 years later. Some of the characters are played by the actual participants in this story.’,8.102925,’1996-12-20′,0,130,’Released’,’From the director of A FEW GOOD MEN comes a compelling TRUE STORY.’,6.20,40),(31909,’Invaders from Mars’,12000000,”,’In this remake of the classic 50s SF tale, a boy tries to stop an invasion of his town by aliens who take over the the minds of his parents, his least-liked schoolteacher and other townspeople. With the aid of the school nurse the boy enlists the aid of the U.S. Marines.’,4.234269,’1986-01-01′,4884663,100,’Released’,’Their conquest has already begun… He know they\’re here.’,5.50,57),(31915,’Prophecy’,12000000,”,’A Savage beast, grown to monstrous size and driven mad by toxic wastes that are poisoning the waters, spreads terror and death on a Maine countryside.’,8.616590,’1979-01-01′,54000000,102,’Released’,”,5.40,25),(31932,’City of Ghosts’,0,”,’A con man (Dillon) travels to Cambodia (also on the run from law enforcement in the U.S.) to collect his share in an insurance scam, but discovers more than he bargained for’,2.644860,’2002-01-01′,0,116,’Released’,”,5.40,18),(32222,’American Desi’,250000,”,’This is a fun-loving romantic comedy reminiscent of the great teen films of the 80\’s.From Kris, an All-American boy from India, to Ajay, an Afro-Centric Hindu homeboy, to Farah, a devoutly religious but modern Muslim girl, \’American Desi\’ tells the story of a unique set of characters and their culture from a decidedly hip and youthful point of view.’,0.126304,’2001-01-01′,0,100,’Released’,”,5.00,4),(32235,’Northfork’,0,”,’\”We are all angels. It is what we do with our wings that separates us.\” In the next two days, the town of Northfork will cease to exist. The year is 1955 and Northfork is literally about to be \”dammed,\” flooded to make way for a new hydroelectric project.’,1.980265,’2003-01-01′,0,103,’Released’,”,6.70,24),(32274,’Cradle Will Rock’,0,”,’A true story of politics and art in the 1930s USA, centered around a leftist musical drama and attempts to stop its production.’,4.901553,’1999-12-10′,0,132,’Released’,”,7.20,18),(32275,’Duel in the Sun’,6000000,”,’Beautiful half-breed Pearl Chavez becomes the ward of her dead father\’s first love and finds herself torn between her sons, one good and the other bad.’,7.604450,’1946-12-31′,20400000,144,’Released’,’Emotions . . . As Violent As The Wind-Swept Prairie !’,6.20,37),(32316,’Marci X’,20000000,”,’A Jewish-American Princess is forced to take control of a hard-core hip-hop record label and tries to rein the one of the label\’s most controversial rappers.’,5.653270,’2003-08-22′,1675706,84,’Released’,’Uptown Gets Down.’,3.30,12),(32395,’The Greatest’,6000000,”,’Teenagers Rose and Bennett were in love, and then a car crash claimed Bennett\’s life. He left behind a grieving mother, father and younger brother, and Rose was left all alone. She has no family to turn to for support, so when she finds out she\’s pregnant, she winds up at the Brewer\’s door. She needs their help, and although they can\’t quite admit it, they each need her so they can begin to heal.’,6.903186,’2009-01-17′,0,99,’Released’,”,6.20,34),(32456,’Two Girls and a Guy’,1000000,”,’Two women confront their boyfriend, a two-timing actor who professed eternal love to each.’,4.868050,’1997-09-07′,2057193,84,’Released’,’Thanks to his two girlfriends Blake is about to learn a new sexual position. Honesty’,5.40,24),(32579,’La misma luna’,0,’http://www.foxsearchlight.com/underthesamemoon’,’Tells the parallel stories of nine-year-old Carlitos and his mother, Rosario. In the hopes of providing a better life for her son, Rosario works illegally in the U.S. while her mother cares for Carlitos back in Mexico.’,2.756435,’2008-03-20′,23311391,106,’Released’,’The love between a mother and a son knows no Boundraries.’,7.00,28),(32657,’Percy Jackson & the Olympians: The Lightning Thief’,95000000,”,’Accident prone teenager, Percy discovers he\’s actually a demi-God, the son of Poseidon, and he is needed when Zeus\’ lightning is stolen. Percy must master his new found skills in order to prevent a war between the Gods that could devastate the entire world.’,61.121717,’2010-02-01′,226497209,118,’Released’,’Worlds Collide’,6.00,2010),(32740,’à¤�à¥�ष’,0,”,’Krishna (Roshan) is born with magical powers – a legacy from his father. Priya (Chopra) comes into his life and becomes his world. When she beckons him to Singapore, he follows. In Singapore, Dr. Siddhant Arya (Shah), the megalomaniac scientist is on the verge of changing the future forever. Only one man stands between Dr. Siddharth Arya and his destructive dreams. To block his ruthless ambitions — Krishna must become Krrish.’,3.759988,’2006-06-23′,0,154,’Released’,”,5.50,46),(32823,’Get Him to the Greek’,40000000,’http://www.gethimtothegreek.net/’,’Pinnacle records has the perfect plan to get their sinking company back on track: a comeback concert in LA featuring Aldous Snow, a fading rockstar who has dropped off the radar in recent years. Record company intern Aaron Green is faced with the monumental task of bringing his idol, out of control rock star Aldous Snow, back to LA for his comeback show.’,17.869443,’2010-06-04′,90029656,109,’Released’,’Aaron Green has 72 hours to get a Rock Star from London to L.A. Pray for him.’,5.90,612),(32856,’Valentine\’s Day’,52000000,’http://www.valentinesdaymovie.com/’,’More than a dozen Angelenos navigate Valentine\’s Day from early morning until midnight. Three couples awake together, but each relationship will sputter; are any worth saving? A grade-school boy wants flowers for his first true love; two high school seniors plan first-time sex at noon; a TV sports reporter gets the assignment to find romance in LA; a star quarterback contemplates his future; two strangers meet on a plane; grandparents, together for years, face a crisis; and, an \”I Hate Valentine\’s Day\” dinner beckons the lonely and the lied to. Can Cupid finish his work by midnight?’,25.419290,’2010-02-10′,216485654,125,’Released’,’A Love Story. More or Less.’,5.70,1013),(33106,’ç�¯ç��ç��èµ�车’,0,”,’An action-adventure story focused on the lives of express deliverymen, traffic cops and lonely beauties.’,0.406645,’2009-01-20′,0,99,’Released’,”,7.40,13),(33155,’Galaxina’,5500000,’http://www.crownintlpictures.com/dgtitles.html’,’Galaxina is a lifelike, voluptuous android who is assigned to oversee the operations of an intergalactic Space Police cruiser captained by incompetent Cornelius Butt. When a mission requires the ship\’s crew to be placed in suspended animation for decades, Galaxina finds herself alone for many years, developing emotions and falling in love with the ship\’s pilot, Thor.’,2.141143,’1980-06-06′,4865000,95,’Released’,’She\’s too good to be true…and too real to be otherwise.’,3.30,16),(33157,’Waterloo’,25000000,”,’After defeating France and imprisoning Napoleon on Elba, ending two decades of war, Europe is shocked to find Napoleon has escaped and has caused the French Army to defect from the King back to him. The best of the British generals, the Duke of Wellington, beat Napolean\’s best generals in Spain and Portugal, but now must beat Napoleon himself with an Anglo Allied army.’,1.894749,’1970-10-26′,3052000,128,’Released’,”,7.00,31),(33196,’í�´ì�´ë��’,16000000,”,’Man-sik and Yeon-hee, are unsure as to whether they can overcome past wounds and continue being a couple. Dr. Kim, who cautions against a possible mega-tsunami at Haeundae, collapses in agony springing from an unexpected turn-up of his daughter and divorced wife. Hyoung-sik, after rescuing a woman from Seoul, rides out a ferocious storm to gladden her heart. A tsunami which destroys Haeundae symbolizes the establishment of a typical axis called provocation of conflicts, and later the inner spaces of the couples without anything left behind after all conflicts have ended’,4.628525,’2009-06-06′,11301649,120,’Released’,”,6.50,48),(33217,’Diary of a Wimpy Kid’,15000000,’http://www.fox.co.uk/diary-of-a-wimpy-kid’,’Greg Heffley is headed for big things, but first he has to survive the scariest, most humiliating experience of any kidâ��s life â�� middle school! That wonâ��t be easy, considering heâ��s surrounded by hairy-freckled morons, wedgie-loving bullies and a moldy slice of cheese with nuclear cooties!’,21.095489,’2010-03-19′,75700498,92,’Released’,’It\’s not a diary, it\’s a movie.’,5.90,355),(33430,’Twin Falls Idaho’,0,”,’Francis and Blake Falls are Siamese twins who live in a neat little room in a rundown hotel. While sharing some organs, Blake is always fit and Francis is very sickly. Into their world comes a young lady, who turns their world upside down. She gets involved with Blake, and convinces the two to attend a Halloween party, where they can pass themselves off as wearing a costume. Eventually Francis becomes really ill, and they have to be separated. They then face the physical and mental strains that come from their proposed separation.’,0.619136,’1999-07-30′,0,111,’Released’,’A different kind of love story.’,7.00,11),(33468,’The Brain That Wouldn\’t Die’,62000,”,’Dr. Bill Cortner (Jason Evers) and his fiancée, Jan Compton (Virginia Leith), are driving to his lab when they get into a horrible car accident. Compton is decapitated. But Cortner is not fazed by this seemingly insurmountable hurdle. His expertise is in transplants, and he is excited to perform the first head transplant. Keeping Compton\’s head alive in his lab, Cortner plans the groundbreaking yet unorthodox surgery. First, however, he needs a body.’,2.407048,’1962-02-25′,0,82,’Released’,’Alive… without a body… fed by an unspeakable horror from hell!’,4.40,32),(33511,’Nowhere Boy’,0,’http://www.nowhereboy.co.uk/’,’The drama tells the story of Lennon\’s teenage years and the start of his journey to becoming a successful musician. The story also examines the impact on his early life and personality of the two dominant females in his childhood’,1.950959,’2009-12-25′,0,98,’Released’,’As a boy all John Lennon needed was love.’,7.20,244),(33542,’ç´�ç�ªå��’,7500000,”,’Keong comes from Hong Kong to visit New York for his uncle\’s wedding. His uncle runs a market in the Bronx and Keong offers to help out while Uncle is on his honeymoon. During his stay in the Bronx, Keong befriends a neighbor kid and beats up some neighborhood thugs who cause problems at the market. One of those petty thugs in the local gang stumbles into a criminal situation way over his head.’,17.318839,’1995-01-30′,32392047,91,’Released’,’No Fear. No Stuntman. No Equal.’,6.50,240),(33644,’How Stella Got Her Groove Back’,20000000,”,’Through good times and bad, Stella and Delilah have always had each other. Now, Stella\’s so busy building a life that she\’s forgotten how to really live. But Delilah is about to change all that. What starts as a quick trip to Jamaica, end as an exhilarating voyage of self discovery as Stella learns to open her heart and find love – even if it\’s with a man 20 years her junior.’,2.003047,’1998-08-14′,37672350,124,’Released’,’Sometimes you have to break the rules to free your heart.’,6.00,24),(33667,’Gentleman\’s Agreement’,2000000,”,’A magazine writer poses as a Jew to expose anti-Semitism.’,5.381536,’1947-11-11′,7800000,118,’Released’,”,6.80,47),(33676,’Losin\’ It’,7000000,”,’Set in 1965, four Los Angeles school friends — Woody, Dave, Spider and Wendell — go on a series of misadventures when they head to Tijuana, Mexico, for a night of cruisin\’, causing trouble, and to lose their virginity.’,2.550045,’1983-04-08′,1246141,100,’Released’,’The last word about the first time.’,4.50,31),(33693,’Funny Ha Ha’,0,”,’Unsure of what to do next, 23-year-old Marnie tries her best to navigate life after college in this romantic comedy. Still partying like there\’s no tomorrow, Marnie drags herself out of bed for her miserable temp job and can\’t decide whether she\’s wasting her time going after best buddy Alex, who doesn\’t seem to be interested.’,0.362633,’2002-09-20′,76901,85,’Released’,”,6.30,8),(33870,’Mao\’s Last Dancer’,25000000,’http://www.maoslastdancermovie.com/’,’At the age of 11, Li was plucked from a poor Chinese village by Madame Mao\’s cultural delegates and taken to Beijing to study ballet. In 1979, during a cultural exchange to Texas, he fell in love with an American woman. Two years later, he managed to defect and went on to perform as a principal dancer for the Houston Ballet and as a principal artist with the Australian Ballet.’,1.876811,’2009-10-01′,20719451,117,’Released’,’æ��å��ç��è��è��’,6.80,28),(33909,’Wall Street: Money Never Sleeps’,70000000,’http://www.wallstreetmoneyneversleeps.com/’,’As the global economy teeters on the brink of disaster, a young Wall Street trader partners with disgraced former Wall Street corporate raider Gordon Gekko on a two tiered mission: To alert the financial community to the coming doom, and to find out who was responsible for the death of the young trader\’s mentor.’,23.256450,’2010-09-02′,134748021,133,’Released’,’Gordon never gives up.’,5.80,493),(34016,’She\’s Out of My League’,20000000,’http://www.getyourrating.com/’,’When he starts dating drop-dead gorgeous Molly, insecure airport security agent Kirk can\’t believe it. As his friends and family share their doubts about the relationship lasting, Kirk does everything he can to avoid losing Molly forever.’,16.176976,’2010-03-11′,49779728,104,’Released’,’When she\’s this hot, You get one shot.’,5.90,525),(34043,’On the Line’,0,”,’\’N Sync heartthrobs Lance Bass and Joey Fatone stretch their thespian muscles in their acting debut. A young man (Bass) is smitten with a girl (Emmanuelle Chriqui) he meets on a subway train and spends the rest of the movie trying to reunite with her. The man\’s best friend (Fatone) helps him in his quest by wallpapering Chicago with posters and signs that soon become the talk of the town.’,3.084874,’2001-10-26′,0,85,’Released’,”,4.10,10),(34069,’Cargo’,0,’http://www.cargoderfilm.ch http://cargothemovie.com’,’The story of CARGO takes place on rusty space-freighter KASSANDRA on its way to Station 42. The young medic LAURA is the only one awake on board while the rest of the crew lies frozen in hibernation sleep. In 4 months will Laura\’s shift be over.’,10.142218,’2009-09-24′,0,120,’Released’,”,5.90,140),(34086,’Spaced Invaders’,3000000,”,’A crew of Martians overhears a radio broadcast of Orson Welles\’ \”War of the Worlds\” coming from Earth, and, thinking the Martian fleet is attacking Earth, they land their broken-down ship in a backwater mid-American town. As luck would have it, they land on Halloween and get mistaken for trick-or-treaters. Comedy ensues as the Martians try to get taken seriously.’,1.586598,’1990-04-27′,15369573,100,’Released’,”,4.70,25),(34099,’Brave New Girl’,0,”,’Holly has everything it takes to be a star; the voice, the dream and the dedication, but she lacks the means to break away from her humble Texas upbringing. Then she gets the chance to attend an art and music school on the East coast and her future suddenly looks bright. But the road to stardom is a bumpy one.’,0.180940,’2004-04-25′,0,120,’Released’,”,3.70,3),(34101,’Hollywood Shuffle’,0,”,’Aspiring actor and hot-dog stand employee Bobby Taylor catches the ire of his grandmother for auditioning for a role in the regrettably titled exploitation film \”Jivetime Jimmy\’s Revenge.\” When Tinseltown Studios casts Taylor in the title role, he has a series of conflicted dreams satirizing African-American stereotypes in Hollywood, and must reconcile his career goals with his desire to remain a positive role model for his little brother.’,2.353483,’1987-03-20′,0,78,’Released’,’Bobby Taylor was on his way to becoming a star, when a funny thing happened…’,5.70,19),(34106,’You Can\’t Take It With You’,1644736,”,’Alice, the only relatively normal member of the eccentric Sycamore family, falls in love with Tony Kirby. His wealthy banker father, Anthony P. Kirby, and his snobbish mother, strongly disapprove of the match. When the Kirbys are invited to dinner to become better acquainted with their future in-laws, things do not turn out the way Alice had hoped.’,3.426314,’1938-08-23′,7433101,126,’Released’,’YOU\’LL LOVE THEM ALL FOR GIVING YOU THE SWELLEST TIME YOU\’VE EVER HAD!’,7.20,79),(34152,’Crooklyn’,0,”,’From Spike Lee comes this vibrant semi-autobiographical portrait of a school-teacher, her stubborn jazz-musician husband and their five kids living in \’70s Brooklyn.’,1.892180,’1994-05-13′,0,115,’Released’,”,6.70,31),(34314,’Turbulence’,55000000,”,’On a flight transporting dangerous convicts, murderer Ryan Weaver manages to break free and cause complete chaos throughout the plane. As various people on board fall victim to Weaver, it is ultimately down to flight attendant Teri Halloran to keep the aircraft from crashing, with on-ground support from an air traffic controller. While Halloran struggles to pilot the plane, Weaver continues to terrorize the surviving members of the crew.’,4.700024,’1997-01-09′,11466088,100,’Released’,’If you weren\’t afraid of flying before, you will be now.’,5.20,62),(34335,’Nine Dead’,2000000,’http://www.ninedead.com/’,’Communication is the key to the survival for nine strangers who have been kidnapped by a masked gunman and told that one of them will die every ten minutes until they discover how they are all connected. Who of the nine lives and who dies?’,9.687930,’2010-01-01′,0,98,’Released’,’It doesn\’t have to end this way’,5.20,84),(34341,’Men with Brooms’,7500000,”,’A witty and clever comedy that follows four longtime curling friends reunited by the last wishes of their recently deceased coach and set out to win the Golden Broom. Realising that the out of shape crew will be hard-pressed to win without a coach, Cutter swallows his pride and calls upon a retired curling champion – his estranged father. Now, these men with brooms, along with their new eccentric coach and Cutter\’s new romantic interest Amy, set off on a comedic journey which takes them from frozen lakes to huge arenas, searching for perfect stones, lost loves and second chances.’,1.369528,’2002-09-20′,4245870,102,’Released’,”,4.50,7),(34417,’Good Intentions’,0,’http://www.goodintentionsmovie.com/’,’Meet Etta Milford. Loving Wife. Doting Mother. Armed Robber. Etta\’s husband constantly blows their money on make-shift inventions. When she decides to secretly take \”investment\” matters into her own hands – things quickly go awry! With their savings gone, her husband suspicious, and their children out of control, Etta concocts a scheme to get back their money and save her family.’,0.304566,’2010-03-09′,0,85,’Released’,”,5.00,6),(34549,’Max Keeble\’s Big Move’,12000000,”,’Max Keeble, the victim of his 7th grade class, plots revenge when he learns he\’s moving; it backfires when he doesn\’t move after all.’,1.081822,’2001-10-05′,17292381,86,’Released’,’His World. His Rules.’,5.40,33),(34563,’Our Family Wedding’,14000000,’http://www.foxsearchlight.com/ourfamilywedding/’,’The weeks leading up to a young couple\’s wedding is comic and stressful, especially as their respective fathers try to lay to rest their feud.’,6.733485,’2010-03-12′,21409028,103,’Released’,’To have and to hold… \’Til dads do us part.’,5.70,39),(34584,’The Neverending Story’,27000000,”,’While hiding from bullies in his school\’s attic, a young boy discovers the extraordinary land of Fantasia, through a magical book called The Neverending Story. The book tells the tale of Atreyu, a young warrior who, with the help of a luck dragon named Falkor, must save Fantasia from the destruction of The Nothing.’,47.862016,’1984-04-05′,20158808,102,’Released’,’A boy who needs a friend finds a world that needs a hero in a land beyond imagination!’,7.00,1002),(34592,’ZMD: Zombies of Mass Destruction’,0,’http://www.zmdthemovie.com/’,’An idyllic island town is under attack by that most invasive of pests: zombies! Port Gamble is being overrun with braineaters, and the people seem powerless to stave them off. But wait, a rag tag band of rebels is trying to turn the tide and push the invading hordes of undead back.’,1.563711,’2009-01-01′,0,92,’Released’,’They\’re just like you … only dead’,4.70,31),(34647,’Enter the Void’,13000000,’http://www.ifcfilms.com/films/enter-the-void’,’This psychedelic tour of life after death is seen entirely from the point of view of Oscar (Nathaniel Brown), a young American drug dealer and addict living in Tokyo with his prostitute sister, Linda (Paz de la Huerta). When Oscar is killed by police during a bust gone bad, his spirit journeys from the past — where he sees his parents before their deaths — to the present — where he witnesses his own autopsy — and then to the future, where he looks out for his sister from beyond the grave.’,20.399550,’2009-05-05′,754249,161,’Released’,”,7.20,387),(34653,’A Single Man’,7000000,’http://www.asingleman-movie.com/’,’Adapted from a 1964 novel of the same name, the film follows a day in the life of George Falconer, a British college professor reeling with the recent and sudden loss of his longtime partner. This traumatic event makes George challenge his own will to live as he seeks the console of close friend Charley who is struggling with her own questions about life.’,21.626288,’2009-10-19′,0,101,’Released’,”,7.30,463),(34697,’Butterfly’,0,”,’Orson Welles, as judge Rauch, holds a lengthy trial against Jess Tyler, a caretaker deserted by his wife ten years before, who\’s accused of improper relations with his daughter Kady. Complications follows when Wash, father of Kady\’s baby, comes back to take her away.’,1.063615,’1982-02-05′,0,107,’Released’,’A Controversial Thriller of Murder and Revenge.’,5.00,12),(34723,’The Adventures of Huck Finn’,6500000,”,’Climb aboard for an extraordinary version of Mark Twain\’s sweeping adventure when Walt Disney presents The Adventures of Huck Finn, starring Elijah Wood (The Lord of the Rings). Directed by Stephen Sommers (The Mummy, The Mummy Returns), it\’s the unforgettable saga of a mischievous youngster and a runaway slave’,2.163683,’1993-04-02′,0,108,’Released’,’For anyone who has ever dreamed of running away from it all’,6.20,42),(34769,’Defendor’,3500000,”,’A crooked cop, a mob boss and the young girl they abuse are the denizens of a city\’s criminal underworld. It\’s a world that ordinary Arthur Poppington doesn\’t understand and doesn\’t belong in, but is committed to fighting when he changes into a vigilante super-hero of his own making, Defendor. With no power other than courage Defendor takes to the streets to protect the city\’s innocents.’,8.453420,’2009-09-12′,44462,101,’Released’,’An unexpected hero will rise.’,6.50,195),(34806,’The Back-Up Plan’,35000000,’http://www.theback-upplan.com/’,’When Zoe tires of looking for Mr. Right, she decides to have a baby on her own. But on the day she\’s artificially inseminated, she meets Stan, who seems to be just who she\’s been searching for all her life. Now, Zoe has to figure out how to make her two life\’s dreams fit with each other.’,18.382920,’2010-04-23′,77477008,106,’Released’,’Fall in love, get married, have a baby. Not necessarily in that order.’,5.70,458),(34813,’The Losers’,25000000,’http://www.the-losers.com/’,’A tale of double cross and revenge, centered upon the members of an elite U.S. Special Forces unit sent into the Bolivian jungle on a search and destroy mission. The team-Clay, Jensen, Roque, Pooch and Cougar -find themselves the target of a lethal betrayal instigated from inside by a powerful enemy known only as Max. Presumed dead, the group makes plans to even the score when they\’re joined by the mysterious Aisha, a beautiful operative with her own agenda. Working together, they must remain deep undercover while tracking the heavily-guarded Max, a ruthless man bent on embroiling the world in a new high-tech global war.’,24.903418,’2010-04-23′,23580000,97,’Released’,’Anyone Else Would Be Dead By Now.’,6.20,515),(34851,’Predators’,40000000,”,’A mercenary reluctantly leads a motley crew of warriors who soon come to realize they\’ve been captured and deposited on an alien planet by an unknown nemesis. With the exception of a peculiar physician, they are all cold-blooded killers, convicts, death squad members… hunters who have now become the hunted.’,47.649554,’2010-07-03′,126248813,107,’Released’,’Fear is Reborn’,6.00,1206),(34941,’The Last Time I Committed Suicide’,0,”,’Neal Cassady is living the beat life during the 1940s, working at The Tire Yard and and philandering around town. However, he has visions of a happy life with kids and a white picket fence. When his girlfried, Joan, tries to kill herself he gets scared and runs away. But when Joan reappears will he take the chance at that happiness, or will he turn his back on it?’,0.596889,’1997-06-20′,0,92,’Released’,’Life is what happens when you\’re busy making plans’,6.70,7),(35019,’Nanny McPhee and the Big Bang’,35000000,’http://www.nannymcphee.co.uk/’,’Nanny McPhee appears at the door of a harried young mother, Mrs. Isabel Green, who is trying to run the family farm while her husband is away at war. But once sheâ��s arrived, Nanny McPhee discovers that the children are fighting a war of their own against two spoiled city cousins who have just moved in. Relying on everything from a flying motorcycle and a statue that comes to life to a tree-climbing piglet and a baby elephant, Nanny uses her magic to teach her mischievous charges five new lessons.’,23.835055,’2010-03-26′,93246388,109,’Released’,’You\’ll Believe That Pigs Can Fly!’,6.00,436),(35032,’The Pirate’,3700000,”,’A girl is engaged to the local richman, but meanwhile she has dreams about the legendary pirate Macoco. A traveling singer falls in love with her and to impress her he poses as the pirate.’,0.905220,’1948-06-11′,2956000,102,’Released’,’The great MGM musical romance’,6.60,17),(35056,’Date Night’,55000000,’http://www.datenight-movie.com/’,’Phil and Claire Foster fear that their mild-mannered relationship may be falling into a stale rut. During their weekly date night, their dinner reservation leads to their being mistaken for a couple of thieves â�� and now a number of unsavoury characters want Phil and Claire killed.’,38.061680,’2010-04-08′,152263880,97,’Released’,’One ordinary couple. One little white lie.’,5.90,1122),(35073,’The Beast from 20,000 Fathoms’,210000,”,’The Beast from 20,000 Fathoms is a 1953 science fiction film directed by Eugène Lourié and stars Paul Christian, Paula Raymond and Cecil Kellaway with visual effects by Ray Harryhausen. The film is about an atomic bomb test in the Arctic Circle that unfreezes a hibernating fictional dinosaur, a Rhedosaurus, that begins to wreak havoc in New York City.’,2.043661,’1953-06-13′,5000000,80,’Released’,’It\’s alive !’,6.70,41),(35169,’Furry Vengeance’,35000000,’http://www.furryvengeance-movie.com/’,’When real estate developer Dan Sanders finalizes plans to level a swath of pristine Oregon forest to make way for a soulless housing subdivision, a band of woodland creatures rises up to throw a monkey wrench into the greedy scheme. Just how much mischief from the furry critters can the businessman take before he calls it quits?’,13.668633,’2010-04-02′,39340177,92,’Released’,’He came. He saw. They conquered.’,4.60,149),(35199,’Wordplay’,0,”,’From the masters who create the mind-bending diversions to the tense competition at the American Crossword Puzzle Tournament, Patrick Creadon\’s documentary reveals a fascinating look at a decidedly addictive pastime. Creadon captures New York Times editor Will Shortz at work, talks to celebrity solvers — including Bill Clinton and Ken Burns — and presents an intimate look at the national tournament and its competitors.’,0.906096,’2006-06-26′,0,94,’Released’,”,7.30,10),(35219,’The Missing Person’,0,”,’Private detective John Rosow is hired to tail a man on a train from Chicago to Los Angeles. Rosow gradually uncovers the man\’s identity as a missing person; one of the thousands presumed dead after the 9/11 terrorist attacks on the World Trade Center. Persuaded by a large reward, Rosow is charged with bringing the missing person back to his wife in New York City.’,1.161034,’2009-01-16′,0,95,’Released’,’John Rosow is a private investigator. And an alcoholic. He just got the case of his life.’,6.40,9),(35688,’Why Did I Get Married Too?’,20000000,’http://www.whydidigetmarriedtoomovie.com/’,’Four couples reunite for their annual vacation in order to socialize and to spend time analyzing their marriages. Their intimate week in the Bahamas is disrupted by the arrival of an ex-husband determined to win back his recently remarried wife.’,2.986286,’2010-04-02′,60072596,121,’Released’,’Marriage is an institution they\’re committed to.’,6.10,29),(35689,’Don McKay’,0,”,’Everything appears off-kilter when a man returns to his hometown after 25 years to visit his former lover.’,1.496454,’2009-04-24′,0,87,’Released’,’Some secrets are better left buried.’,5.40,21),(35690,’The Last Song’,0,”,’A drama centered on a rebellious girl who is sent to a Southern beach town for the summer to stay with her father. Through their mutual love of music, the estranged duo learn to reconnect.’,23.139971,’2010-03-31′,0,107,’Released’,’A story about family, first love, second chances and the moment in life that lead you back home.’,6.90,923),(35691,’Letters to God’,0,’http://www.letterstogodthemovie.com’,’A young boy fighting cancer writes letters to God, touching lives in his neighborhood and inspiring hope among everyone he comes in contact. An unsuspecting substitute postman, with a troubled life of his own, becomes entangled in the boy\’s journey and his family by reading the letters. They inspire him to seek a better life for himself and his own son he\’s lost through his alcohol addiction.’,3.644872,’2010-04-09′,0,110,’Released’,”,6.50,37),(35696,’Juwanna Mann’,15600000,’http://www.juwannamann.com/’,’A basketball star is booted out of the NBA when his on-court antics go too far, so he poses as a woman and joins the WUBA.’,2.244947,’2002-06-21′,0,91,’Released’,”,4.20,20),(35791,’Resident Evil: Afterlife’,60000000,’http://www.sonypictures.com/movies/residentevilafterlife/site/’,’In a world ravaged by a virus infection, turning its victims into the Undead, Alice continues on her journey to find survivors and lead them to safety. Her deadly battle with the Umbrella Corporation reaches new heights, but Alice gets some unexpected help from an old friend. A new lead that promises a safe haven from the Undead takes them to Los Angeles, but when they arrive the city is overrun by thousands of Undead – and Alice and her comrades are about to step into a deadly trap.’,2.143764,’2010-09-09′,300228084,97,’Released’,’She\’s back…And she\’s bringing a few of her friends.’,5.80,1363),(35944,’Lucky Break’,0,”,’Half-way through his 12-year prison sentence for an incompetent armed robbery, Jimmy Hands gets a lucky break: he\’s transferred to a prison from which he can probably escape. He convinces the governor to stage a musical in an old chapel next to the prison\’s outer wall. He rounds up volunteer actors and puts his escape plan into production. Two other barriers, besides the wall, confront him: the arrival of a nasty inmate, John Toombes, who insists on joining the escape, and Jimmy\’s feelings of attraction for Anabel, a social worker who agrees to appear in the play. Opening night approaches: is this Jimmy\’s breakout performance?’,0.669169,’2001-08-24′,0,107,’Released’,”,6.50,11),(36046,’The Work and the Glory’,7500000,’http://www.workandtheglory.com/’,’When Benjamin Steed and Mary Ann Steed relocate their family to upstate New York in the early 1800\’s, they unwittingly settle in a town divided along religious lines. After their new hired help turns out to be at the center of the uproar, each member of the Steed family must come to terms with their own beliefs in the face of heavy persecution. Together they struggle to weather the raging controversy surrounding a young man named Joseph Smith.’,0.571663,’2004-11-24′,3347647,110,’Released’,’One Man….A Remarkable Vision; One Family….A Desperate Struggle’,6.10,7),(36047,’The In Crowd’,15000000,’http://in-crowd.warnerbros.com/’,’A mentally disturbed young woman takes a job at a posh country club and falls in with a clique of wealthy college kids where she\’s taken under the wing of the clique\’s twisted leader, who harbors some dark secrets too terrifying to tell.’,0.249245,’2000-07-19′,5217498,105,’Released’,’What would you do to get in?’,4.70,15),(36095,’ã�ã�¥ã�¢’,20000,”,’A wave of gruesome murders is sweeping Tokyo. The only connection is a bloody X carved into the neck of each of the victims. In each case, the murderer is found near the victim and remembers nothing of the crime. Detective Takabe and psychologist Sakuma are called in to figure out the connection, but their investigation goes nowhere…’,0.212443,’1997-11-06′,99000,111,’Released’,’Madness. Terror. Murder.’,7.40,63),(36334,’Deadline – U.S.A.’,0,”,’With three days before his paper folds, a crusading editor tries to expose a vicious gangster.’,0.225627,’1952-03-14′,0,87,’Released’,”,6.90,17),(36351,’Light Sleeper’,5000000,”,’A drug dealer with upscale clientele is having moral problems going about his daily deliveries. A reformed addict, he has never gotten over the wife that left him, and the couple that use him for deliveries worry about his mental well-being and his effectiveness at his job. Meanwhile someone is killing women in apparently drug-related incidents.’,6.063868,’1992-08-21′,0,103,’Released’,’He was a good man in a deadly business. She was his only way out.’,5.70,15),(36355,’Flipper’,25530000,”,’Sandy Ricks is sent by his mom to Coral Key, a rustic island in the Florida keys, to spend the summer with his uncle Porter Ricks. Sandy dislikes everything about his new environment until a new friend comes into his life, a dolphin named Flipper, that brings uncle and nephew together and leads Sandy on the summer adventure of a lifetime.’,4.475007,’1996-05-17′,20080020,95,’Released’,’This summer it\’s finally safe to go back in the water.’,5.30,84),(36419,’After.Life’,4500000,’http://www.afterlifethefilm.com/’,’A young woman caught between life and death… and a funeral director who appears to have the gift of transitioning the dead, but might just be intent on burying her alive.’,14.570359,’2010-04-09′,3606395,104,’Released’,’Life is the symptom. Death is the cure.’,5.40,251),(36549,’Yesterday Was a Lie’,0,’http://www.heliconarts.com/yesterday/’,’Hoyle a girl with a sharp mind and a weakness for bourbon — finds herself on the trail of a reclusive genius. But her work takes a series of unforeseen twists as events around her grow increasingly fragmented… disconnected… surreal. With an ethereal lounge singer and her loyal partner as her only allies, Hoyle is plunged into a dark world of intrigue and earth-shattering cosmological secrets. Haunted by an ever-present shadow whom she is destined to face, Hoyle discovers that the most powerful force in the universe — the power to bend reality, the power to know the truth — lies within the depths of the human heart.’,0.145014,’2008-01-01′,0,89,’Released’,”,6.00,4),(36557,’Casino Royale’,150000000,’http://www.mgm.com/#/our-titles/233/Casino-Royale-(2006)’,’Le Chiffre, a banker to the world\’s terrorists, is scheduled to participate in a high-stakes poker game in Montenegro, where he intends to use his winnings to establish his financial grip on the terrorist market. M sends Bond â�� on his maiden mission as a 00 Agent â�� to attend this game and prevent Le Chiffre from winning. With the help of Vesper Lynd and Felix Leiter, Bond enters the most important poker game in his already dangerous career.’,88.935165,’2006-11-14′,599045960,144,’Released’,’Everyone has a past. Every legend has a beginning.’,7.30,3855),(36584,’Interview with the Assassin’,500000,”,’Out of work TV cameraman Ron Kobelski is approached by his formerly reclusive neighbor Walter Ohlinger. Ohlinger claims that he was the mysterious \”second gunman\” that shot and killed President Kennedy. Ohlinger has kept quiet all these years, but has decided to tell his story now that he has been diagnosed with terminal cancer. Kobelski is skeptical of his neighbor\’s story, after his investigations provide ambiguous answers. His attitude changes, however, after he receives threatening messages on his answering machine, and spots shadowy figures in his backyard. Is Ohlinger telling the truth? Or is there a bigger conspiracy at work?’,0.471264,’2002-05-09′,0,88,’Released’,’Dallas. 1963. The second shooter.’,5.60,5),(36586,’Blade II’,54000000,’http://www.warnerbros.com/blade-ii’,’A rare mutation has occurred within the vampire community – The Reaper. A vampire so consumed with an insatiable bloodlust that they prey on vampires as well as humans, transforming victims who are unlucky enough to survive into Reapers themselves. Blade is asked by the Vampire Nation for his help in preventing a nightmare plague that would wipe out both humans and vampires.’,67.169587,’2002-03-22′,155010032,117,’Released’,’Faster. Sharper. Deadlier.’,6.20,1528),(36593,’The Naked Gun 33â��: The Final Insult’,30000000,”,’Frank Drebin is persuaded out of retirement to go undercover in a state prison. There he is to find out what top terrorist, Rocco, has planned for when he escapes. Frank\’s wife, Jane, is desperate for a baby.. this adds to Frank\’s problems. A host of celebrities at the Academy awards ceremony are humiliated by Frank as he blunders his way trying to foil Rocco.’,28.624038,’1994-03-18′,51132598,83,’Released’,’A Mad Bomber is on the Loose, and If Anyone Can Stop Him….So Can Frank!’,6.30,521),(36597,’Wuthering Heights’,0,’http://www.pbs.org/wgbh/masterpiece/wutheringheights/index.html’,’Foundling Heathcliff is raised by the wealthy Earnshaws in Yorkshire but in later life launches a vendetta against the family.’,4.409263,’2009-01-18′,0,142,’Released’,”,6.90,37),(36643,’The World Is Not Enough’,135000000,’http://www.mgm.com/view/movie/231/The-World-Is-Not-Enough/’,’Greed, revenge, world dominance and high-tech terrorism â�� it\’s all in a day\’s work for Bond, who\’s on a mission to a protect beautiful oil heiress from a notorious terrorist. In a race against time that culminates in a dramatic submarine showdown, Bond works to defuse the international power struggle that has the world\’s oil supply hanging in the balance.’,39.604363,’1999-11-08′,361832400,128,’Released’,’As the countdown begins for the new millennium there is still one number you can always count on.’,6.00,862),(36647,’Blade’,45000000,’http://www.warnerbros.com/blade’,’When Blade\’s mother was bitten by a vampire during pregnancy, she did not know that she gave her son a special gift while dying: All the good vampire attributes in combination with the best human skills. Blade and his mentor Whistler battle an evil vampire rebel (Deacon Frost) who plans to take over the outdated vampire council, capture Blade and resurrect voracious blood god La Magra.’,43.815492,’1998-08-21′,131183530,120,’Released’,’Part Man. Part Vampire. All Hero.’,6.50,1905),(36648,’Blade: Trinity’,65000000,’http://www.warnerbros.com/blade-trinity’,’For years, Blade has fought against the vampires in the cover of the night. But now, after falling into the crosshairs of the FBI, he is forced out into the daylight, where he is driven to join forces with a clan of human vampire hunters he never knew existed – The Nightstalkers. Together with Abigail and Hannibal, two deftly trained Nightstalkers, Blade follows a trail of blood to the ancient creature that is also hunting him, the original vampire, Dracula.’,49.660055,’2004-12-08′,128905366,123,’Released’,’The final hunt begins.’,5.70,1252),(36657,’X-Men’,75000000,”,’Two mutants, Rogue and Wolverine, come to a private academy for their kind whose resident superhero team, the X-Men, must oppose a terrorist organization with similar powers.’,4.668910,’2000-07-13′,296339527,104,’Released’,’Evolution Begins’,6.80,4097),(36658,’X2′,110000000,”,’Professor Charles Xavier and his team of genetically gifted superheroes face a rising tide of anti-mutant sentiment led by Col. William Stryker. Storm, Wolverine and Jean Grey must join their usual nemeses â�� Magneto and Mystique â�� to unhinge Stryker\’s scheme to exterminate all mutants.’,2.871739,’2003-04-24′,407711549,133,’Released’,’The time has come for those who are different to stand united.’,6.80,3506),(36668,’X-Men: The Last Stand’,210000000,”,’When a cure is found to treat mutations, lines are drawn amongst the X-Men and The Brotherhood, a band of powerful mutants organized under Xavier\’s former ally, Magneto.’,3.857526,’2006-05-24′,459359555,104,’Released’,’Take a Stand’,6.30,3525),(36669,’Die Another Day’,140000000,’http://www.mgm.com/view/movie/232/Die-Another-Day/’,’Bond takes on a North Korean leader who undergoes DNA replacement procedures that allow him to assume different identities. American agent, Jinx Johnson assists Bond in his attempt to thwart the villain\’s plans to exploit a satellite that is powered by solar energy.’,54.159392,’2002-11-17′,431971116,133,’Released’,’Heâ��s never been cooler.’,5.80,1092),(36670,’Never Say Never Again’,36000000,’http://www.mgm.com/view/movie/1345/Never-Say-Never-Again/’,’James Bond returns as the secret agent 007 one more time to battle the evil organization SPECTRE. Bond must defeat Largo, who has stolen two atomic warheads for nuclear blackmail. But Bond has an ally in Largo\’s girlfriend, the willowy Domino, who falls for Bond and seeks revenge. This is the last time for Sean Connery as Her Majesty\’s Secret Agent 007.’,23.380757,’1983-10-07′,160000000,134,’Released’,’Sean Connery is James Bond 007′,5.80,338),(36691,’Solitary Man’,15000000,’http://www.solitarymanmovie.com/’,’A car magnate watches his personal and professional life hit the skids because of his business and romantic indiscretions.’,7.497306,’2009-09-07′,5024782,90,’Released’,’Ben loves his family almost as much as he loves himself’,5.80,84),(36696,’Ð�елка и СÑ�Ñ�елка. Ð�вÑ�зднÑ�е Ñ�обаки’,25000000,”,’Belka, the amazing flying dog is unexpectedly hurdled into the streets of Moscow when the rocket she is in malfunctions during one of her circus routines. Fortunately the crash leads her to meet a streetwise dog named Strelka and her irredeemable rat friend Venya. Together with other amusing friends found along the way, the three find themselves in a space program-training center where they get sent away in a rocket, leaving planet Earth…’,5.753564,’2010-03-18′,6500000,85,’Released’,”,6.30,10),(36739,’School Daze’,0,”,’In the South of the United States are taking place confrontations between two groups of students who have different ideas and are not able to accept the one of the oponent.’,3.159574,’1988-02-12′,0,121,’Released’,”,6.20,26),(36811,’The Last Station’,0,’http://www.sonyclassics.com/thelaststation/’,’A historical drama that illustrates Russian author Leo Tolstoy\’s struggle to balance fame and wealth with his commitment to a life devoid of material things. The Countess Sofya, wife and muse to Leo Tolstoy, uses every trick of seduction on her husband\’s loyal disciple, whom she believes was the person responsible for Tolstoy signing a new will that leaves his work and property to the Russian people.’,3.659292,’2009-09-04′,0,112,’Released’,’Intoxicating. Infuriating. Impossible. Love.’,6.70,55),(36819,’Time Bandits’,5000000,”,’Young history buff Kevin can scarcely believe it when six dwarfs emerge from his closet one night. Former employees of the Supreme Being, they\’ve purloined a map charting all of the holes in the fabric of time and are using it to steal treasures from different historical eras. Taking Kevin with them, they variously drop in on Napoleon, Robin Hood and King Agamemnon before the Supreme Being catches up with them.’,14.779537,’1981-07-13′,42365581,116,’Released’,’All the dreams you\’ve ever had and not just the good ones.’,6.60,249),(36825,’The R.M.’,0,’http://www.halestormentertainment.com/p_movies_details.asp?mID=jnlppmp8′,’Jared Phelps (Kirby Heyborne) has completed two years of full-time missionary service for The Church of Jesus Christ of Latter-day Saints. His mission president has promised him that he will be blessed for his service, and he thinks he has it all worked out. His girlfriend has waited for him. His boss promised that he could have his old job back, and he has already sent his application to BYU. Everything that can go wrong does go wrong. His girlfriend dumps him. His loses his job, and he isn\’t accepted to BYU. Then, it gets even worse, and he has to decide if choosing the right is worth all the trouble.’,0.082978,’2003-01-31′,0,101,’Released’,’Just when you thought it was safe to go back into the world…’,4.80,4),(36955,’True Lies’,115000000,”,’Harry Tasker is a secret agent for the United States Government. For years, he has kept his job from his wife, but is forced to reveal his identity and try to stop nuclear terrorists when he and his wife are kidnapped by them.’,38.729418,’1994-07-14′,378882411,141,’Released’,’When he said I do, he never said what he did.’,6.80,1116),(36970,’Oceans’,0,’http://oceans-lefilm.com/’,’An ecological drama/documentary, filmed throughout the globe. Part thriller, part meditation on the vanishing wonders of the sub-aquatic world.’,10.706613,’2009-10-17′,19406406,84,’Released’,’Explore the depths of our planet\’s oceans. Experience the stories that connect their world to ours.’,7.30,111),(37003,’U2 3D’,15000000,’http://www.u23dmovie.com/’,’A 3-D presentation of U2\’s global \”Vertigo\” tour. Shot at seven different shows, this production employs the greatest number of 3-D cameras ever used for a single project.’,0.335195,’2007-05-19′,22730842,85,’Released’,’Hear See Experience’,6.70,10),(37028,’The Magic Flute’,0,’http://www.magicflutefilm.com/’,’During World War I, in an unnamed country, a soldier named Tamino is sent by the Queen of the Night to rescue her daughter Pamina from the clutches of the supposedly evil Sarastro. But all is not as it seems.’,0.548435,’2006-09-07′,0,133,’Released’,”,6.90,6),(37056,’Letters to Juliet’,30000000,’http://www.letterstojuliet-movie.com/’,’An American girl on vacation in Italy finds an unanswered \”letter to Juliet\” — one of thousands of missives left at the fictional lover\’s Verona courtyard, which are typically answered by a the \”secretaries of Juliet\” — and she goes on a quest to find the lovers referenced in the letter.’,16.520830,’2010-05-14′,0,105,’Released’,’What if you had a second chance to find true love?’,6.60,796),(37080,’Mother and Child’,7000000,”,’The lives of three women have a commonality: adoption. Karen is a physical therapist who regrets that, as a teenager, she gave up her daughter for adoption. Elizabeth was an adopted child and is now a successful lawyer, but her personal life lacks warmth. Lucy and her husband have failed to conceive and now hope to adopt a baby to make their family complete.’,5.517597,’2009-11-07′,0,125,’Released’,”,6.70,46),(37137,’The Naked Gun 2½: The Smell of Fear’,23000000,”,’Bumbling cop Frank Drebin is out to foil the big boys in the energy industry, who intend to suppress technology that will put them out of business.’,27.332560,’1991-06-28′,86930411,85,’Released’,’If you see only one movie this year…you ought to get out more often’,6.60,546),(37165,’The Truman Show’,60000000,”,’Truman Burbank is the star of \”The Truman Show\”, a 24-hour-a-day \”reality\” TV show that broadcasts every aspect of his life — live and in color — without his knowledge. His entire life has been an unending soap opera for consumption by the rest of the world. And everyone he knows — including his wife and his best friend — is really an actor, paid to be part of his life.’,56.488027,’1998-06-04′,264118201,103,’Released’,’On the air. Unaware.’,7.80,4537),(37206,’A Shine of Rainbows’,6000000,”,’An orphaned boy named Tomás is adopted by Maire Oâ��Donnell to live on a whimsical Irish isle filled with new friends, secret caves and a lost baby pup seal stranded on the coast. But when Maire\’s reluctant husband Alec refuses to accept Tomás as his own son, the boy drifts down a fateful path of adventure and self-discovery, illuminating how rainbows can shine around – and within – us all.’,12.099486,’2009-10-01′,0,101,’Released’,’An abandoned child brings the colors of love into their lives.’,6.30,14),(37232,’Travellers and Magicians’,0,’http://www.travellersandmagicians.com/’,’A young government official, named Dondup, who is smitten with America (he even has a denim gho) dreams of escaping there while stuck in a beautiful but isolated village. He hopes to connect in the U.S. with a visa out of the country. He misses the one bus out of town to Thimphu, however, and is forced to hitchhike and walk along the Lateral Road to the west, accompanied by an apple seller, a Buddhist monk with his ornate, dragon-headed dramyin, a drunk, a widowed rice paper maker, and his beautiful daughter, Sonam.’,0.749699,’2003-09-09′,0,108,’Released’,’The bitter and the sweet of temporary things.’,6.80,9),(37233,’The Firm’,42000000,”,’Mitch McDeere is a young man with a promising future in Law. About to sit his Bar exam, he is approached by \’The Firm\’ and made an offer he doesn\’t refuse. Seduced by the money and gifts showered on him, he is totally oblivious to the more sinister side of his company. Then, two Associates are murdered. The FBI contact him, asking him for information and suddenly his life is ruined. He has a choice – work with the FBI, or stay with the Firm. Either way he will lose his life as he knows it. Mitch figures the only way out is to follow his own plan…’,23.736535,’1993-06-30′,270248367,154,’Released’,’Power can be murder to resist.’,6.60,501),(37414,’The Killer Inside Me’,13000000,’http://www.killerinsideme.com/’,’Deputy Sheriff Lou Ford is a pillar of the community in his small west Texas town, patient and apparently thoughtful. Some people think he is a little slow and maybe boring, but that is the worst they say about him. But then nobody knows about what Lou calls his \”sickness\”: he is a brilliant, but disturbed sociopathic sadist.’,11.892615,’2010-02-19′,0,109,’Released’,’Nobody See\’s It Coming’,6.00,173),(37495,’Four Lions’,967686,’http://www.four-lions.co.uk/’,’Four Lions tells the story of a group of British jihadists who push their abstract dreams of glory to the breaking point. As the wheels fly off, and their competing ideologies clash, what emerges is an emotionally engaging (and entirely plausible) farce. In a storm of razor-sharp verbal jousting and large-scale set pieces, Four Lions is a comic tour de force; it shows that-while terrorism is about ideology-it can also be about idiots.’,20.544999,’2010-05-07′,4270000,101,’Released’,’We are 4 Lions.’,7.00,423),(37498,’Knock Off’,33000000,”,’Marcus Ray (Jean-Claude Van Damme), a sales representative for \”V SIX\” jeans, and his partner, Tommy Hendricks (Rob Schneider), are about to be busted for selling \”knock off\” jeans. Their American contact, Karan Leigh, who by the way is not only their employer but a CIA agent sent to find the mole in their operation, is threatening them with a jail term if they do not prove their innocence.’,2.706207,’1998-09-04′,0,91,’Released’,’There is no substitute.’,4.70,64),(37532,’Slam’,1,”,’Slam tells the story of Ray Joshua, an original, gifted young MC trapped in a war-zone housing project known as Dodge City. Unable to find a job, Ray copes with the despair and poverty of his neighborhood by using his wits and verbal talent. Written by Offline Publicist Young Ray Joshua lives in the Washington, DC, district known as Dodge City, which is dominated by gang wars. One day he is arrested when his drug dealer is gunned down while talking to him. He is put to prison where two rival gangs, Thug Life and the Union, want to recruit him as a member.’,0.292450,’1998-10-07′,0,100,’Released’,’Words make sense of a world that won\’t.’,6.70,7),(37686,’Super 8′,50000000,’http://www.super8-movie.com/’,’In 1979 Ohio, several youngsters are making a zombie movie with a Super-8 camera. In the midst of filming, the friends witness a horrifying train derailment and are lucky to escape with their lives. They soon discover that the catastrophe was no accident, as a series of unexplained events and disappearances soon follows. Deputy Jackson Lamb, the father of one of the kids, searches for the terrifying truth behind the crash.’,37.069253,’2011-06-08′,260095987,112,’Released’,’It Arrives.’,6.60,2435),(37694,’Proud’,0,’http://www.proudthemovie.com/’,’The true story of the only African-American crew to take a Navy warship into combat in World War II.’,0.023681,’2004-07-02′,0,87,’Released’,’Proudly We Served’,5.50,3),(37707,’Splice’,26000000,’http://www.splicethefilm.com/’,’Elsa and Clive, two young rebellious scientists, defy legal and ethical boundaries and forge ahead with a dangerous experiment: splicing together human and animal DNA to create a new organism. Named \”Dren\”, the creature rapidly develops from a deformed female infant into a beautiful but dangerous winged human-chimera, who forges a bond with both of her creators – only to have that bond turn deadly.’,23.227877,’2009-10-06′,0,104,’Released’,’Science\’s newest miracle…is a mistake.’,5.50,671),(37710,’The Tourist’,100000000,’http://thetourist-movie.com/’,’American tourist Frank (Johnny Depp) meets mysterious British woman Elsie (Angelina Jolie) on the train to Venice. Romance seems to bud, but there\’s more to her than meets the eye. Remake of the 2005 French film \”Anthony Zimmer\”, written and directed by Jérôme Salle.’,41.426678,’2010-12-08′,278731369,103,’Released’,’It all started when he met a woman’,6.00,1699),(37718,’The Muse’,0,”,’What happens when a screenwriter (Brooks) loses his edge, he turns to anyone he can for help… even if it\’s the mythical \”Zeus\’s Daughter\” (Stone). And he\’s willing to pay, albeit reluctantly, whatever price it takes to satisfy this goddess, especially when her advice gets him going again on a sure-fire script. However, this is not the limit of her help, she also gets the writer\’s wife (MacDowell) going on her own bakery enterprise, much to the chagrin of Brooks, who has already had to make many personal sacrifices for his own help.’,2.857936,’1999-08-27′,0,97,’Released’,’In Goddess we trust.’,5.30,31),(37724,’Skyfall’,200000000,’http://www.skyfall-movie.com’,’When Bond\’s latest assignment goes gravely wrong and agents around the world are exposed, MI6 is attacked forcing M to relocate the agency. These events cause her authority and position to be challenged by Gareth Mallory, the new Chairman of the Intelligence and Security Committee. With MI6 now compromised from both inside and out, M is left with one ally she can trust: Bond. 007 takes to the shadows – aided only by field agent, Eve – following a trail to the mysterious Silva, whose lethal and hidden motives have yet to reveal themselves.’,93.004993,’2012-10-25′,1108561013,143,’Released’,’Think on your sins.’,6.90,7604),(37735,’Easy A’,8000000,’http://letsnotandsaywedid.com/’,’After a little white lie about losing her virginity gets out, a clean cut high school girl sees her life paralleling Hester Prynne\’s in \”The Scarlet Letter,\” which she is currently studying in school – until she decides to use the rumor mill to advance her social and financial standing.’,45.395839,’2010-09-10′,74952305,92,’Released’,’The rumour-filled totally false account of how I ruined my flawless reputation.’,6.70,2210),(37737,’Kites’,0,’http://www.kites-thefilm.com/’,’In the harsh terrain of the Mexican desert, a mortally wounded man is left for dead in the heat of the desert sun. This is Jay. Once a street smart, carefree young guy. Now, a wanted man. As death looms, the only thing that keeps him alive is the quest to find the love of his life, Natasha. A woman betrothed to another man, but surely destined for Jay. A woman who comes into his life like a bolt of lightning and changes it forever.’,4.807549,’2010-05-21′,0,131,’Released’,”,6.00,40),(37786,’Sex and the City 2′,100000000,’http://www.sexandthecitymovie.com/’,’Carrie, Charlotte, and Miranda are all married now, but they\’re still up for a little fun in the sun. When Samantha gets the chance to visit one of the most extravagant vacation destinations on the planet and offers to bring them all along, they surmise that a women-only retreat may be the perfect excuse to eschew their responsibilities and remember what life was like before they decided to settle down.’,18.325897,’2010-05-26′,288347692,146,’Released’,’Carrie on.’,5.40,426),(37799,’The Social Network’,40000000,’http://www.thesocialnetwork-movie.com/’,’On a fall night in 2003, Harvard undergrad and computer programming genius Mark Zuckerberg sits down at his computer and heatedly begins working on a new idea. In a fury of blogging and programming, what begins in his dorm room as a small site among friends soon becomes a global social network and a revolution in communication. A mere six years and 500 million friends later, Mark Zuckerberg is the youngest billionaire in history… but for this entrepreneur, success leads to both personal and legal complications.’,69.278220,’2010-09-30′,224920315,120,’Released’,’You don\’t get to 500 million friends without making a few enemies.’,7.10,3391),(37821,’Killers’,75000000,’http://killersfilm.com/’,’When an elite assassin marries a beautiful computer whiz after a whirlwind romance, he gives up the gun and settles down with his new bride. That is, until he learns that someone from his past has put a contract out on his life.’,23.004607,’2010-06-04′,98159963,100,’Released’,’Perfect wife. Perfect target.’,5.70,772),(37834,’Knight and Day’,117000000,’http://www.knightanddaymovie.com’,’A fugitive couple goes on a glamorous and sometimes deadly adventure where nothing and no one â�� even themselves â�� are what they seem. Amid shifting alliances and unexpected betrayals, they race across the globe, with their survival ultimately hinging on the battle of truth vs. trust.’,44.906918,’2010-06-15′,261930431,109,’Released’,’Every Hit Man Deserves a Second Shot!’,5.90,1547),(37842,’Les herbes folles’,0,’http://www.sonyclassics.com/wildgrass/’,’Marguerite loses her wallet, and it\’s found by Georges, a seemingly happy head of family. As he looks through the wallet and examines the photos of Marguerite, he finds he\’s fascinated with her and her life, and soon his curiosity about her becomes an obsession.’,1.866443,’2009-05-20′,0,104,’Released’,”,5.80,22),(37903,’Das weisse Band’,15238800,’http://www.sonyclassics.com/thewhiteribbon/’,’Strange events happen in a small village in the north of Germany during the years just before World War I, which seem to be ritual punishment. The abused and suppressed children of the villagers seem to be at the heart of this mystery.’,17.947390,’2009-05-21′,0,144,’Released’,”,7.20,255),(37931,’MacGruber’,10000000,’http://iamrogue.com/macgruber/’,’Ex-special operative MacGruber (Forte) is called back into action to take down his archenemy, Dieter Von Cunth (Kilmer), who\’s in possession of a nuclear warhead and bent on destroying Washington, DC.’,14.038512,’2010-05-21′,6110000,90,’Released’,’He\’s the ultimate tool.’,5.10,179),(37950,’Charlie St. Cloud’,44000000,”,’Accomplished sailor Charlie St. Cloud has the adoration of his mother Claire and his little brother Sam, as well as a college scholarship that will lead him far from his sleepy Pacific Northwest hometown. But his bright future is cut short when a tragedy strikes and takes his dreams with it. After his high-school classmate Tess returns home unexpectedly, Charlie grows torn between honoring a promise he made four years earlier and moving forward with newfound love. And as he finds the courage to let go of the past for good, Charlie discovers the soul most worth saving is his own.’,21.754330,’2010-05-01′,48190704,99,’Released’,’Life is for living.’,6.80,566),(37958,’Immortals’,75000000,’http://www.immortalsmovie.com/splash/’,’Theseus is a mortal man chosen by Zeus to lead the fight against the ruthless King Hyperion, who is on a rampage across Greece to obtain a weapon that can destroy humanity.’,37.917002,’2011-11-10′,226904017,110,’Released’,’The Gods need a hero.’,5.70,880),(37964,’Brown Sugar’,8000000,”,’Sidney is a writer who\’s just left her L.A. Times music review gig to edit New York hip-hop magazine XXL. Dre is an executive with a hip-hop record company based in New York. They\’ve known each other since they met as children, when both discovered hip-hop for the first time. Now that they\’re back together, they should be perfect for each other, except that Dre\’s about to marry lawyer Reese and Sidney claims not to be interested in Dre romantically. Meanwhile, Dre is growing increasingly restless with his company\’s focus on profit over artistry, which leads to signing the gimmicky duo Ren and Ten while ignoring the talented Chris’,3.501158,’2002-10-05′,27362712,109,’Released’,’When did you first fall in love with hip-hop?’,7.00,31),(37985,’The Trials Of Darryl Hunt’,0,”,’\”The Trials of Darryl Hunt\” is a feature documentary about a brutal rape/murder case and a wrongly convicted man, Darryl Hunt, who spent nearly twenty years in prison for a crime he did not commit. Both a social justice story and a personally driven narrative, the film chronicles this capital case from 1984 through 2004. With exclusive footage from two decades, the film frames the judicial and emotional response to a chilling crime – and the implications that reverberate from Hunt\’s conviction – against a backdrop of class and racial bias in the South and in the American criminal justice system.’,0.150660,’2007-06-15′,0,106,’Released’,”,6.80,4),(38007,’Ira & Abby’,0,”,’A neurotic, young psychology student, with low self-esteem, has a chance encounter with a free-spirited, extremely gregarious woman who works at the Paris Health Club in New York City, and who suggests that they immediately get married to see how it will work out. Both of the student\’s parents are analysts, and they provide the happy couple with a gift certificate for a year of marriage counseling as a wedding present.’,0.595136,’2006-01-01′,0,104,’Released’,’First comes love, then comes marriage, then comes therapy.’,5.80,9),(38031,’You Will Meet a Tall Dark Stranger’,22000000,”,’Two married couples find only trouble and heartache as their complicated lives unfold. After 40 years of marriage, Alfie leaves his wife to pursue what he thinks is happiness with a call girl. His wife, Helena, reeling from abandonment, decides to follow the advice of a psychic. Sally, the daughter of Alfie and Helena, is unhappy in her marriage and develops a crush on her boss, while her husband, Roy, falls for a woman engaged to be married.’,12.465400,’2010-05-23′,0,98,’Released’,”,5.80,251),(38033,’Chain Letter’,0,”,’Six friends receive a mysterious chain letter via text messaging and in their email accounts from a maniac who\’s hunting down teenagers who fail to forward his online chain letter. Who knew they should take the threats in the chain letter seriously? Or that chain letters using the teens\’ favorite technologies to track them can kill? This maniacal game pits friend against friend as they race to beat rules that seem impossible to escape. Break the chain, lose a life. Do you pass it on? Does friendship mean anything?’,2.504156,’2010-10-01′,0,96,’Released’,’If you don\’t forward it, you die.’,3.90,37),(38050,’The Adjustment Bureau’,50200000,’http://www.theadjustmentbureau.com/’,’A man glimpses the future Fate has planned for him â�� and chooses to fight for his own destiny. Battling the powerful Adjustment Bureau across, under and through the streets of New York, he risks his destined greatness to be with the only woman he\’s ever loved.’,26.607720,’2011-03-03′,127869379,106,’Released’,’Fight for your fate.’,6.50,1652),(38055,’Megamind’,130000000,’http://www.megamind.com’,’Bumbling supervillain Megamind finally defeats his nemesis, the superhero Metro Man. But without a hero, he loses all purpose and must find new meaning to his life.’,68.757242,’2010-10-28′,321887208,95,’Released’,’His brain is off the chain.’,6.70,1918),(38073,’Going the Distance’,32000000,’http://going-the-distance.warnerbros.com/’,’Erin and Garrett are very much in love. When Erin moves to San Francisco to finish her journalism degree and Garrett stays behind in New York to work in the music industry, they gamely keep the romance alive with webcams and frequent-flyer miles. But just when it seems the lovers will soon be reunited, they each score a big break that could separate them for good.’,13.611544,’2010-09-01′,42045846,102,’Released’,’A comedy about meeting each other halfway.’,6.00,262),(38093,’Just Wright’,0,”,’A physical therapist falls for the basketball player she is helping recover from a career-threatening injury.’,10.409253,’2010-05-14′,21520719,100,’Released’,’In this game every shot counts.’,6.10,99),(38117,’Beastly’,17000000,’http://www.beastlythemovie.com/’,’A curse transforms a handsome and arrogant young man into everything he detests in this contemporary retelling of Beauty and the Beast. Wealthy Kyle Kingson has everything a teenager could want in life, but he still gets off on humiliating the weaker and less attractive. When Kyle invites his misfit classmate Kendra to an environmental rally at their school, she questions his motivations but reluctantly accepts. Later, Kyle blows Kendra off, prompting the spurned goth girl to cast a dark spell on the swaggering egotist.’,24.054062,’2011-01-21′,43165571,86,’Released’,’Love is never ugly.’,6.00,849),(38153,’Shadow Conspiracy’,45000000,”,’Bobby Bishop (Sheen) is a special assistant to the President of the United States. Accidentally, he meets his friend professor Pochenko on the street. Pochenko has time to tell Bishop about some conspiracy in the White House but then immediately gets killed by an assassin. Now bad guys are after Bobby as the only man who knows about a plot. Bishop must now not only survive, but to stop the conspirators from achieving their goal. And he doesn\’t know whom to trust.’,3.848893,’1997-01-31′,2154540,103,’Released’,”,4.00,11),(38167,’Eat Pray Love’,60000000,’http://www.sonypictures.com/movies/eatpraylove/’,’Liz Gilbert had everything a modern woman is supposed to dream of having â�� a husband, a house and a successful career â�� yet like so many others, she found herself lost, confused and searching for what she really wanted in life. Newly divorced and at a crossroads, Gilbert steps out of her comfort zone, risking everything to change her life, embarking on a journey around the world that becomes a quest for self-discovery. In her travels, she discovers the true pleasure of nourishment by eating in Italy, the power of prayer in India and, finally and unexpectedly, the inner peace and balance of true love in Bali.’,28.800112,’2010-08-12′,204594016,133,’Released’,’Let Yourself GO’,5.80,636),(38223,’Harriet the Spy’,12000000,”,’When the secret notebook of a young girl who fancies herself a spy is found by her friends, her speculations make her very unpopular! Can she win her friends back?’,4.630930,’1996-07-10′,0,100,’Released’,’On your case!’,5.70,46),(38303,’You Again’,20000000,”,’History — make that high school — may repeat itself when Marni learns that Joanna, the mean girl from her past, is set to be her sister-in-law. Before the wedding bells toll, Marni must show her brother that a tiger doesn\’t change its stripes. On Marni\’s side is her mother, while Joanna\’s backed by her wealthy aunt.’,19.962713,’2010-09-24′,32005248,105,’Released’,’What doesn\’t kill you… is going to marry your brother.’,6.00,368),(38317,’Zookeeper’,80000000,’http://www.zookeeper-movie.com/’,’A comedy about a zookeeper who might be great with animals, but he doesn\’t know anything about the birds and the bees. The man can\’t find love, so he decides to quit his job at the zoo, but his animal friends try to stop him and teach him that Mother Nature knows best when it comes to love.’,27.462640,’2011-07-06′,169852759,102,’Released’,’Welcome to his jungle.’,5.30,498),(38319,’Your Highness’,49900000,’http://www.yourhighnessmovie.net/’,’A fantasy movie about an arrogant, lazy prince and his more heroic brother who must complete a quest in order to save their father\’s kingdom.’,21.408222,’2011-04-08′,26121638,102,’Released’,’Get your quest on.’,5.20,501),(38321,’Priest’,60000000,’http://www.priest-themovie.com/’,’In an alternate world, humanity and vampires have warred for centuries. After the last Vampire War, the veteran Warrior Priest lives in obscurity with other humans inside one of the Church\’s walled cities. When the Priest\’s niece is kidnapped by vampires, the Priest breaks his vows to hunt them down. He is accompanied by the niece\’s boyfriend, who is a wasteland sheriff, and a former Warrior Priestess.’,28.350927,’2011-05-05′,78309131,87,’Released’,’Vampire Killer’,5.40,692),(38322,’Big Mommas: Like Father, Like Son’,32000000,’http://www.bigmommaslikefatherlikeson.com/’,’FBI agent Malcolm Turner and his 17-year-old son, Trent, go undercover at an all-girls performing arts school after Trent witnesses a murder. Posing as Big Momma and Charmaine, they must find the murderer before he finds them.’,15.901137,’2011-02-16′,83615414,107,’Released’,’Momma\’s got back-up.’,5.30,313),(38356,’Transformers: Dark of the Moon’,195000000,’http://www.transformersmovie.com/’,’Sam Witwicky takes his first tenuous steps into adulthood while remaining a reluctant human ally of Autobot-leader Optimus Prime. The film centers around the space race between the USSR and the USA, suggesting there was a hidden Transformers role in it all that remains one of the planet\’s most dangerous secrets.’,28.529607,’2011-06-28′,1123746996,154,’Released’,’The invasion we always feared. An enemy we never expected.’,6.10,3299),(38357,’Morning Glory’,40000000,’http://www.morningglorymovie.com/’,’A young and devoted morning television producer is hired as an executive producer on a long-running morning show at a once-prominent but currently failing station in New York City. Eager to keep the show on air, she recruits a former news journalist and anchor who disapproves of co-hosting a show that does not deal with real news stories.’,22.491388,’2010-01-12′,58785180,102,’Released’,’Breakfast TV just got interesting.’,6.10,412),(38358,’The Last Exorcism’,1800000,’http://thelastexorcism.com/’,’After years of performing â��exorcismsâ�� and taking believersâ�� money, Reverend Marcus travels to rural Louisiana with a film crew so he can dispel what he believes is the myth of demonic possession. The dynamic reverend is certain that this will be another routine â��exorcismâ�� on a disturbed religious fanatic but instead comes upon the blood-soaked farm of the Sweetzer family and a true evil he would have never thought imaginable.’,14.838986,’2010-08-27′,67738090,87,’Released’,’Believe In Him.’,5.60,328),(38363,’Fair Game’,22000000,’http://www.fairgame-movie.com/’,’Wife and mother Valerie Plame (Naomi Watts) has a double life as a CIA operative, hiding her vocation from family and friends. Her husband, Joseph Wilson (Sean Penn), writes a controversial article in The New York Times, refuting stories about the sale of enriched uranium to Iraq, Then Valerie\’s secret work and identity is leaked to the press. With her cover blown and other people endangered, Valerie\’s career and personal life begin to unravel.’,12.549490,’2010-05-20′,24188922,108,’Released’,’Wife. Mother. Spy.’,6.50,235),(38365,’Grown Ups’,80000000,’http://www.grownups-movie.com/’,’After their high school basketball coach passes away, five good friends and former teammates reunite for a Fourth of July holiday weekend.’,38.864027,’2010-06-24′,271430189,102,’Released’,’Boys will be boys. . . some longer than others.’,6.00,1705),(38415,’Bran Nue Dae’,7,”,’In the Summer of 1965 a young man is filled with the life of the idyllic old pearling port Broome – fishing, hanging out with his mates and his girl. However his mother returns him to the religious mission for further schooling. After being punished for an act of youthful rebellion, he runs away from the mission on a journey that ultimately leads him back home.’,0.050456,’2009-08-09′,7,82,’Released’,’Bran Nue Dae’,5.20,6),(38428,’Gandhi, My Father’,0,’http://gandhimyfather.erosentertainment.com/’,’With Gandhi My Father, producer Anil Kapoor and director Feroz Abbas Khan have shed light onto Gandhi the person, rather than Gandhi the icon. Using Gandhiâ��s political career as a canvas, the film paints a picture of his intricate, complex, and strained relationship with his son Harilal Gandhi.’,0.080704,’2007-08-03′,0,136,’Released’,’To the People…He was a Father. To his Son…he was a Father he never had.’,6.00,2),(38448,’Ondine’,12000000,’http://www.ondinefilm.com’,’An Irish fisherman discovers a woman in his fishing net believing her to be a mermaid.’,5.841285,’2009-09-14′,1644755,111,’Released’,’The truth is not what you know. It\’s what you believe.’,6.50,84),(38541,’The Divide’,3000000,”,’Survivors of a nuclear attack are grouped together for days in the basement of their apartment building, where fear and dwindling supplies wear away at their dynamic.’,11.882563,’2011-03-13′,22000,112,’Released’,’The lucky ones died in the blast’,5.70,197),(38543,’Ironclad’,25000000,”,’In the year 1215, the rebel barons of England have forced their despised King John to put his royal seal on the Magna Carta, a seminal document that upheld the rights of free men. Yet within months of pledging himself to the great charter, the King reneged on his word and assembled a mercenary army on the south coast of England with the intention of bringing the barons and the country back under his tyrannical rule. Barring his way stood the mighty Rochester castle, a place that would become the symbol of the rebel\’s momentous struggle for justice and freedom.’,12.317080,’2011-03-03′,0,121,’Released’,’Heavy metal goes medieval.’,6.20,227),(38570,’The 41â��Yearâ��Old Virgin Who Knocked Up Sarah Marshall and Felt Superbad About It’,0,”,’Follows Andy, who needs to hook up with a hottie, pronto, because he hasn\’t had sex in… well, forever – and his luck isn\’t the only thing that\’s hard. His equally horny teenage roommates also need it superbad, and with the help of their nerdy pal, McAnalovin\’ and his fake I.D., they may tap more than just a keg.’,5.628399,’2010-06-08′,0,82,’Released’,”,3.20,34),(38579,’Marmaduke’,50000000,’http://www.themarmadukemovie.com/’,’When Phil and Debbie Winslow relocate from their native Kansas to the sunny climes of Orange County, their big-hearted, havoc-wreaking Great Dane gets a taste of the dog\’s life, California-style.’,12.256220,’2010-06-04′,83761844,87,’Released’,’Live Large’,5.00,149),(38665,’The Legend of the Lone Ranger’,18000000,”,’When the young Texas Ranger, John Reid, is the sole survivor of an ambush arranged by the militaristic outlaw leader, Butch Cavendich, he is rescued by an old childhood Comanche friend, Tonto. When he recovers from his wounds, he dedicates his life to fighting the evil that Cavendich represents. To this end, John Reid becomes the great masked western hero, The Lone Ranger. With the help of Tonto, the pair go to rescue President Grant when Cavendich takes him hostage.’,11.725805,’1981-08-20′,2945600,98,’Released’,’The untold story of the man behind the mask, and the legend behind the man.’,3.70,14),(38717,’Madison’,0,”,’In 1971, air-conditioner repairman and boat enthusiast Jim McCormick entertains his desire to \’go down\’ as a legend in the record books when the Gold Cup hydroplane boat race improbably comes to his small town of Madison, Indiana. Immediately, Jim seizes his opportunity to enter the contest. With a motley crew of fellow mechanics and friends at his side, Jim fixes up his old boat and brings hope to the blighted industrial city. Written by Sujit R. Varma’,0.212108,’2001-01-23′,0,99,’Released’,’A town\’s future is riding with one man.’,5.30,3),(38745,’Gulliver\’s Travels’,112000000,”,’Travel writer Lemuel Gulliver takes an assignment in Bermuda, but ends up on the island of Liliput, where he towers over its tiny citizens.’,22.845143,’2010-12-25′,237382724,85,’Released’,’Something big is going down.’,4.90,621),(38757,’Tangled’,260000000,’http://disney.go.com/disneypictures/tangled/’,’When the kingdom\’s most wanted-and most charming-bandit Flynn Rider hides out in a mysterious tower, he\’s taken hostage by Rapunzel, a beautiful and feisty tower-bound teen with 70 feet of magical, golden hair. Flynn\’s curious captor, who\’s looking for her ticket out of the tower where she\’s been locked away for years, strikes a deal with the handsome thief and the unlikely duo sets off on an action-packed escapade, complete with a super-cop horse, an over-protective chameleon and a gruff gang of pub thugs.’,48.681969,’2010-11-24′,591794936,100,’Released’,’They\’re taking adventure to new lengths.’,7.40,3330),(38778,’Dinner for Schmucks’,69000000,’http://www.dinnerforschmucks.com/’,’Rising executive Tim Wagner works for a boss who hosts a monthly dinner in which the guest who brings the biggest buffoon gets a career-boost. Tim plans on not attending until he meets Barry, a man who builds dioramas using stuffed mice. Barry\’s blundering but good intentions send Tim\’s life into a downward spiral, threatening a major business deal and possibly scuttling Tim\’s engagement to his fiancee.’,11.023691,’2010-07-30′,86387857,114,’Released’,’Takes One To Know One.’,5.50,531),(38780,’Rampage’,0,”,’The boredom of small town life is eating Bill Williamson alive. Feeling constrained and claustrophobic in the meaningless drudgery of everyday life and helpless against overwhelming global dissolution, Bill begins a descent into madness. His shockingly violent plan will shake the very foundations of society by painting the streets red with blood.’,7.101197,’2009-08-14′,0,85,’Released’,’Vengeance is ruthless.’,6.00,131),(38786,’The Blood of My Brother: A Story of Death in Iraq’,0,”,’THE BLOOD OF MY BROTHER goes behind the scenes of one Iraqi family\’s struggle to survive amidst the carnage of the growing Shia insurgency. Nineteen-year-old Ibrahim dreams of revenge when his brother is shot and killed by an American patrol. With scenes of fighting and death on the streets of Baghdad, this is the closest most viewers will ever come to being in Iraq; kneeling in prayer amidst a thousand Muslim worshipers, feeling the roar of low-flying Apaches, riding atop a sixty-ton tank, driving with masked resistance fighters to attack American positions, fleeing the threat of an overwhelming response, the blood in the street, a tank on fire, or the cold, distant stare of a dead Iraqi fighter. Written by Andrew Berends.’,0.005256,’2005-11-25′,0,90,’Released’,”,0.00,0),(38810,’Î�Ï�νÏ�δονÏ�αÏ�’,0,’http://www.dogtooth.gr/’,’Three teenagers are confined to an isolated country estate that could very well be on another planet. The trio spend their days listening to endless homemade tapes that teach them a whole new vocabulary. Any word that comes from beyond their family abode is instantly assigned a new meaning. Hence \’the sea\’ refers to a large armchair and \’zombies\’ are little yellow flowers. Having invented a brother whom they claim to have ostracized for his disobedience, the uber-controlling parents terrorize their offspring into submission.’,28.858238,’2009-06-01′,110197,94,’Released’,’The cat is the most feared animal there is!’,6.90,332),(38843,’Ramona and Beezus’,0,’http://www.ramonaandbeezus.com/’,’Ramona is a little girl with a very big imagination and a nose for mischief. Her playful antics keep everyone in her loving family on their toes, including her older sister Beezus, who\’s just trying to survive her first year of high school. Through all the ups and downs of childhood, Ramona and Beezus learn that anything\’s possible when you believe in yourself and rely on each other.’,9.681147,’2010-07-23′,0,103,’Released’,’A Little Sister Goes A Long Way.’,6.10,245),(38940,’Men of War’,0,”,’Nick Gunar is a burnt-out, jaded and hard-up former mercenary who is having a difficult time adjusting to civilian life. At the end of his rope, he is hired by the Nitro Mine Corporation to strong-arm the natives of a South China Sea island into giving up their rights to its valuable mineral resources. Nick loathes the thought of another mission, but this seemingly easy job will earn him enough money to get back with his estranged family. He recruits some of his former mercenary buddies to help him with the job. The island people refuse to give up their land and Nick decides to help them fight the greedy corporation that hired him. As greed and treachery begin to unravel, Nick\’s band of mercenaries choose sides.’,1.734764,’1994-09-04′,0,103,’Released’,’Killers for hire are paid for what they can do, not for what they believe… until today.’,5.40,29),(38970,’Ricordati di me’,0,”,’The story of a normal Italian family in which come out the dreams of those who have lost their possibilities and of those who want to realize them. Carlo and Giulia are a married couple who have each given up their aspirations in order to live an average life. Their 19-year-old son, Paolo, is having trouble finding an identity, while their 18-year-old daughter, Valentina, has already figured out how to use sex to her advantage. The family goes through a crisis when Carlo begins having an affair, Giulia attempt to seduce the director of a local stage production she is in, and Valentina does what she does best to land an audition for a TV show’,4.240495,’2003-02-11′,0,125,’Released’,’Some loves are never forgotten’,5.80,44),(38985,’Sorcerer’,22000000,”,’Four exiled international criminals on the run hide out in a remote Nicaraguan village whose economy is dependent on an oil company. An oil well 200 miles away catches fire and can be extinguished only with explosives. The criminals are given a chance to earn a great deal of money by transporting highly volatile and sensitive explosives through hazardous and rugged terrain full of obstacles and danger.’,9.088209,’1977-06-24′,12000000,121,’Released’,’WANTED. Four men willing to drive a cargo of death to escape a life in hell.’,7.40,98),(39013,’Winter\’s Bone’,2000000,’http://www.wintersbonemovie.com/’,’17 year-old Ree Dolly sets out to track down her father, who put their house up for his bail bond and then disappeared. If she fails, Ree and her family will be turned out into the Ozark woods. Challenging her outlaw kin\’s code of silence and risking her life, Ree hacks through the lies, evasions and threats offered up by her relatives and begins to piece together the truth.’,20.834883,’2010-06-11′,13831503,100,’Released’,’Talking Just Causes Witnesses’,6.80,565),(39037,’The Good Guy’,3200000,”,’Ambitious young Manhattanite and urban conservationist Beth (Bledel) wants it all: a good job, good friends, and a good guy to share the city with. Of course that last one is often the trickiest of all. Beth falls hard for Tommy (Porter), a sexy, young Wall Street hot-shot. But just as everything seems to be falling into place, complications arise in the form of Tommy\’s sensitive and handsome co-worker Daniel (Greenberg). Beth soon learns that the game of love in the big city is a lot like Wall Street — high risk, high reward and everybody has an angle.’,2.631688,’2009-04-25′,0,90,’Released’,”,5.40,59),(39053,’Cyrus’,7000000,’http://www.foxsearchlight.com/cyrus/’,’With John\’s social life at a standstill and his ex-wife about to get remarried, a down on his luck divorcée finally meets the woman of his dreams, only to discover she has another man in her life – her son. Before long, the two are locked in a battle of wits for the woman they both love-and it appears only one man can be left standing when it\’s over.’,15.212569,’2010-06-18′,0,91,’Released’,’John met the woman of his dreams. Then he met her son …’,6.10,133),(39055,’Free Style’,0,’http://www.freestylemovie.com/’,’Cale Bryant is determined to win a coveted spot on the Grand National motocross racing team. With the support of his loving mother, precocious little sister and new girlfriend, Cale proves against all odds that he has the heart, the willpower and the courage never to give up on his dream.’,0.122874,’2008-12-24′,140987,94,’Released’,’It\’s Time To Soar.’,5.80,4),(39141,’Tadpole’,150000,”,’Beautiful, sophisticated women are all over Oscar Grubman. He is sensitive and compassionate, speaks French fluently, is passionate about Voltaire, and thinks the feature that tells the most about a woman is her hands. On the train home from Chauncey Academy for the Thanksgiving weekend, Oscar confides in his best friend that he has plans for this vacation–he will win the heart of his true love. But there is one major problem–Oscar\’s true love is his stepmother Eve. Oscar is certain that he could be a better mate to Eve than his work-obsessed father. He fails to win Eve\’s heart and is consequently dejected. Oscar\’s path to his true love is further crossed by Diane, Eve\’s best friend who, one night while wearing Eve\’s borrowed perfumed scarf, offers him temporary comfort in an unconventional tryst. For Diane, Oscar fills a void in her life. For Oscar, Diane is somewhat of a distraction, as his continued pursuit of Eve leads to an unexpected resolution.’,8.570328,’2002-11-01′,2891288,78,’Released’,’Everyone says he should date girls his own age. Oscar respectfully disagrees.’,5.50,19),(39180,’See Spot Run’,0,”,’A drug sniffing agent canine is a target for an assassin boss so the FBI calls Witness Protection to send him somewhere else. Meanwhile a single Mom puts her 6 year old boy James in the care of her irresponsible, mailman, neighbor, Gordon, when the babysitter bails on her. Meanwhile, an assassin mob boss hires 2 goons to kill Agent 11. But when 11 escapes from the van when they tried to kill him, he hides in Gordon\’s Mailtruck that James is in too. And guess what they name him. Spot.’,6.579017,’2001-03-02′,0,94,’Released’,’The Smart One Isn\’t Wearing Any Pants.’,4.80,44),(39183,’Once in a Lifetime: The Extraordinary Story of the New York Cosmos’,1000000,”,’In the 1970s the North American Soccer League marked the first attempt to introduce soccer to American sports fans. While most teams had only limited success at best, one managed to break through to genuine mainstream popularity – the New York Cosmos. The brainchild of Steve Ross (Major executive at Warner Communications) and the Ertegun brothers (Founders of Atlantic Records), the Cosmos got off to a rocky start in 1971, but things changed in 1975 when the world\’s most celebrated soccer star, the Brazilian champion Pele, signed with the Cosmos for a five-million-dollar payday. With the arrival of Pele, the Cosmos became a hit and the players became the toast of the town, earning their own private table at Studio 54. A number of other international soccer stars were soon lured to the Cosmos, including Franz Beckenbauer, Rodney Marsh, and Carlos Alberto, but with the turn of the decade, the team began losing favor with fans and folded in 1985.’,0.436148,’2006-01-01′,0,97,’Released’,’The untold story of the team that had America at its feet.’,4.70,3),(39209,’Shalako’,1455000,”,’Sean Connery is Shalako, a guide in the old West who has to rescue an aristocratic British hunting party from Indians and bandits.’,3.598457,’1968-11-06′,2620000,113,’Released’,’Sean Connery is Shalako! Shalako means action! Action means Bardot!’,5.40,12),(39210,’Somewhere’,8000000,’http://www.scsomewhere.com/’,’A hard-living Hollywood actor re-examines his life after his 11-year-old daughter surprises him with a visit.’,9.590373,’2010-09-03′,0,98,’Released’,”,6.00,208),(39254,’Real Steel’,110000000,’http://www.steelgetsreal.com/’,’In the near-future, Charlie Kenton is a washed-up fighter who retired from the ring when robots took over the sport. After Charlie\’s robot is trashed, he reluctantly teams up with his estranged son Max to rebuild and train an unlikely contender.’,37.195046,’2011-09-28′,299268508,127,’Released’,’If you get one shot, make it real.’,6.60,2692),(39269,’Out of the Blue’,0,”,’Dennis Hopper is a hard-drinking truck driver who loses control of his truck under the influence and slams it into a busload of screaming children. After serving his five year jail sentence, Hopper finds his daughter, Cebe (Linda Manz), the love of his live, grown into a rebellious punk in a backwater town, having barely been looked after by her junkie mon (Sharron Farrell). Cebe\’s hopes of once again becoming a \”normal\” family painfully proves to be doomed, as she desperately tries to hold everyone together. Hopper\’s loose, naturalistic style and sympathetic, yet critical attitude infuses the drama with a painful power that finally erupts in a devastating and thrillling conclusion.’,0.679351,’1980-05-01′,0,94,’Released’,’A harrowing drama from the director of Easy Rider’,6.50,17),(39303,’2:13′,3500000,”,’A police profiler has just returned from psychiatric leave only to find that he is caught up in a serial killer\’s rampage. Fighting to keep buried the trauma of his childhood, he must confront the all too-familiar flesh masks that the killer leaves on the faces of his victims. He must face his own demons along with the killer to save his small eroding existence.’,1.271621,’2009-04-25′,0,96,’Released’,’Killers Are Not Born … They Are Made’,4.60,10),(39349,’Sugar Hill’,0,’http://en.wikipedia.org/wiki/Sugar_Hill_(1994_film)’,’Sugar Hill is a 1994 American crime-drama/neo-noir film starring Wesley Snipes and Michael Wright as brothers Roemello and Raynathan Skuggs. The film focuses on the two brothers, who are major drug dealers in the Harlem neighborhood of New York City.’,2.580808,’1994-02-25′,0,123,’Released’,’He wanted power. He wanted revenge. Now he just wants out.’,5.20,13),(39437,’Beloved’,0,”,’After Paul D. finds his old slave friend Sethe in Ohio and moves in with her and her daughter Denver, a strange girl comes along by the name of \”Beloved\”. Sethe and Denver take her in and then strange things start to happen…’,1.453765,’1998-10-16′,0,172,’Released’,’The past has a life of its own.’,5.90,26),(39451,’Little Fockers’,100000000,’http://www.littlefockers.net/’,’It has taken 10 years, two little Fockers with wife Pam and countless hurdles for Greg to finally get in with his tightly wound father-in-law, Jack. After the cash-strapped dad takes a job moonlighting for a drug company, Jack\’s suspicions about his favorite male nurse come roaring back. When Greg and Pam\’s entire clan descends for the twins\’ birthday party, Greg must prove to the skeptical Jack that he\’s fully capable as the man of the house.’,32.389353,’2010-12-21′,310650585,98,’Released’,’Kids bring everyone closer, right?’,5.40,1060),(39486,’Secretariat’,35000000,’http://disney.go.com/disneypictures/secretariat/’,’Housewife and mother Penny Chenery agrees to take over her ailing father\’s Virginia-based Meadow Stables, despite her lack of horse-racing knowledge. Against all odds, Chenery – with the help of veteran trainer Lucien Laurin – manages to navigate the male-dominated business, ultimately fostering the first Triple Crown winner in 25 years.’,9.525037,’2010-08-20′,60251371,123,’Released’,’The Impossible True Story’,6.80,103),(39513,’Paul’,40000000,’http://paulthemovie.co.uk/’,’For the past 60 years, a space-traveling smart-ass named Paul has been locked up in a top-secret military base, advising world leaders about his kind. But when he worries heâ��s outlived his usefulness and the dissection table is drawing uncomfortably close, Paul escapes on the first RV that passes by his compound in Area 51. Fortunately, it contains the two earthlings who are most likely to rescue and harbor an alien on the run.’,43.151268,’2011-02-14′,97552050,104,’Released’,’Who\’s up for a close encounter?’,6.50,1789),(39514,’RED’,58000000,”,’When his peaceful life is threatened by a high-tech assassin, former black-ops agent, Frank Moses reassembles his old team in a last ditch effort to survive and uncover his assailants.’,41.430245,’2010-10-13′,71664962,111,’Released’,’Still armed. Still dangerous. Still got it.’,6.60,2808),(39538,’Contagion’,60000000,’http://contagionmovie.warnerbros.com/’,’As an epidemic of a lethal airborne virus – that kills within days – rapidly grows, the worldwide medical community races to find a cure and control the panic that spreads faster than the virus itself.’,38.820858,’2011-09-08′,137551594,106,’Released’,’Nothing spreads like fear’,6.20,1325),(39541,’Stolen Summer’,0,”,’Pete, an eight-year-old Catholic boy growing up in the suburbs of Chicago in the mid-1970s, attends Catholic school, where as classes let out for the summer, he\’s admonished by a nun to follow the path of the Lord, and not that of the Devil. Perhaps taking this message a bit too seriously, Pete decides it\’s his goal for the summer to help someone get into heaven; having been told that Catholicism is the only sure path to the kingdom of the Lord, Pete decides to convert a Jew to Catholicism in order to improve their standing in the afterlife. Hoping to find a likely candidate, Pete begins visiting a nearby synagogue, where he gets to know Rabbi Jacobson, who responds to Pete\’s barrage of questions with good humor. Pete also makes friends with the Rabbi\’s son, Danny, who is about the same age; when he learns that Danny is seriously ill, he decides Danny would be an excellent choice for conversion.’,0.870660,’2002-03-22′,0,91,’Released’,’You saw the back-stabbing. Now see the final cut.’,6.40,9),(39563,’The Eclipse’,0,’http://www.theeclipsefilm.com/’,’Michael Farr (Hinds) is a widower living in a misty Irish seaside town who is struggling to adjust to his new role as the sole caretaker of his two children. Still reeling from the death of his wife, he has been plagued by terrifying apparitions. When he volunteers at a local literary festival, he finds himself drawn to Lena Morelle (Hjejle), an empathetic author of supernatural fiction (Hjelje). While Lena tries to help Michael with the mystery of his nightmarish visions, she must contend with problems of her ownâ��sheâ��s being jealously pursued by a self-obsessed novelist (Quinn), her one-time lover. As the three adultsâ�� lives converge, the turbulence of the phantom world will soon have nothing on that of the living.’,9.342465,’2009-04-24′,0,88,’Released’,’If there is life after death – love lives on’,6.10,15),(39691,’Cats & Dogs 2 : The Revenge of Kitty Galore’,85000000,’http://catsanddogsmovie.warnerbros.com/’,’The ongoing war between the canine and feline species is put on hold when they join forces to thwart a rogue cat spy with her own sinister plans for conquest.’,11.773980,’2010-07-30′,112483764,82,’Released’,’Just like real spies… only furrier.’,4.90,119),(39780,’Oscar and Lucinda’,0,”,’After a childhood of abuse by his evangelistic father, misfit Oscar Hopkins becomes an Anglican minister and develops a divine obsession with gambling. Lucinda Leplastrier is a rich Australian heiress shopping in London for materials for her newly acquired glass factory back home. Deciding to travel to Australia as a missionary, Oscar meets Lucinda aboard ship, and a mutual obsession blossoms. They make a wager that will alter each of their destinies.’,0.139384,’1997-12-31′,0,132,’Released’,’They dared to play the game of love, faith, and chance.’,6.20,25),(39781,’The Kids Are All Right’,3500000,’http://filminfocus.com/focusfeatures/film/the_kids_are_all_right/’,’Two women, Nic and Jules, brought a son and daughter into the world through artificial insemination. When one of their children reaches age, both kids go behind their mothers\’ backs to meet with the donor. Life becomes so much more interesting when the father, two mothers and children start to become attached to each other.’,15.338211,’2010-07-09′,34705850,106,’Released’,’Nic and Jules had the perfect family, until they met the man who made it all possible.’,6.50,506),(39800,’Life During Wartime’,4500000,’http://www.ifcfilms.com/films/life-during-wartime-2′,’Friends, family, and lovers struggle to find love, forgiveness, and meaning in an almost war-torn world riddled with comedy and pathos. Follows Solondz\’s film Happiness (1998).’,3.108881,’2009-10-10′,744816,97,’Released’,”,6.30,30),(39806,’Princess Kaiulani’,9000000,’http://www.princesskaiulanimovie.com/’,’Lush scenery and gorgeous photography highlight this bio of Princess Kaiulani (Q\’Orianka Kilcher), a 19th-century Hawaiian princess raised in England but determined to maintain her people\’s independence from aggressive American businessmen. After being sent to England as a child by her Scottish father, Kaiulani returns to Hawaii and becomes a political activist who fights to retain her throne, even though she must leave her English paramour.’,0.717811,’2010-05-14′,771499,130,’Released’,’Her heart was torn between love and the future of Hawaii…’,4.80,14),(39833,’Love Me Tender’,1000000,”,’Elvis Prestley\’s first film is a Civil War drama.’,1.444258,’1956-11-15′,9000000,89,’Released’,’HEAR ELVIS SING . . .’,5.50,21),(39845,’Love Ranch’,0,”,’Story of a couple that starts the first legal brothel in Nevada and a boxer they own a piece of.’,5.000126,’2010-06-30′,0,117,’Released’,’When It Comes To Love… Everyone Pays A Price.’,6.00,21),(39851,’Clean’,0,”,’After losing her husband to a heroin overdose, Emily Wang fights to overcome her own addictions and to be reconciled with her estranged son.’,1.464566,’2004-09-01′,0,111,’Released’,’When you don\’t have a choice, you change.’,6.70,17),(39895,’From a Whisper to a Scream’,1100000,”,’The uncle of an executed murderess relates four stories of his hometown, Oldfield, to a reporter. In the first, an elderly man pursues a romance with a younger woman, even to the grave and beyond. In the second, a wounded man on the run from creditors is rescued by a backwoods hermit who holds the secret to eternal life. In the third, a glass-eating carny pays the ultimate price for looking for love on the outside. And in the fourth, a group of Civil War soldiers are held captive by a household of orphans with strange intentions for them.’,1.220072,’1987-09-25′,1400000,99,’Released’,’Welcome to Oldfield. Stop in for a night of pure terror.’,6.80,15),(39939,’Super Troopers’,3000000,’http://www.brokenlizard.com/’,’Five bored, occasionally high and always ineffective Vermont state troopers must prove their worth to the governor or lose their jobs. After stumbling on a drug ring, they plan to make a bust, but a rival police force is out to steal the glory.’,16.312803,’2001-01-18′,18492362,100,’Released’,”,6.60,362),(40001,’Mrs. Winterbourne’,25000000,”,’Connie Doyle is eighteen and pregnant her boyfriend has kicked her out. She accidentaly ends up on a train where she meets Hugh Winterbourne and his wife Patricia who is pregnant. The train wrecks and she wakes up in the hosptial to find out that it\’s been assumed that she\’s Patricia. Hugh\’s mother takes her in and she falls in love with Hugh\’s brother Bill. Just when she thinks everything is going her way, her ex-boyfriend shows up.’,7.946769,’1996-04-19′,10070000,105,’Released’,’The story of a girl who is going from filthy to rich’,5.30,25),(40160,’Meteor’,0,”,’After a collision with a comet, a nearly 8km wide piece of the asteroid \”Orpheus\” is heading towards Earth. If it will hit it will cause a incredible catastrophe which will probably extinguish mankind. To stop the meteor NASA wants to use the illegal nuclear weapon satellite \”Hercules\” but discovers soon that it doesn\’t have enough fire power. Their only chance to save the world is to join forces with the USSR who have also launched such an illegal satellite. But will both governments agree?’,2.637355,’1979-10-19′,0,107,’Released’,’There\’s No Place On Earth To Hide!’,5.10,36),(40185,’Camping Sauvage’,0,”,’Un camping au bord d\’un lac pendant les vacances d\’été. Camille, 17 ans, y traîne son ennui coincée entre ses parents et son petit ami. Elle rencontre Blaise, la quarantaine, tout juste embauché comme moniteur de voile. Camille et Blaise connaissent tous deux ce même mal de vivre qui les rapproche et les éloigne des autres. Mais leur complicité alimente la rumeur d\’une liaison qui exaspère leur entourage et déchaîne les passions. Ils se lancent alors à corps perdus dans une dangereuse histoire d\’amour…’,0.203230,’2005-10-13′,0,80,’Released’,”,4.80,4),(40247,’Please Give’,3000000,’http://www.sonyclassics.com/pleasegive/’,’In New York City, a husband and wife butt heads with the granddaughters of the elderly woman who lives in the apartment the couple owns.’,5.325156,’2010-01-22′,0,90,’Released’,”,6.00,57),(40264,’Vampires Suck’,20000000,’http://www.dancingwerewolves.com/’,’Becca, an anxious, non-vampire teen is torn between two boys. Before she can choose, Becca must get around her controlling father, who embarrasses Becca by treating her like a child. Meanwhile, Becca\’s friends contend with their own romantic issues – all of which collide at the prom.’,17.165039,’2010-08-18′,80547866,82,’Released’,’Some sagas just won\’t die.’,4.20,315),(40428,’8: The Mormon Proposition’,0,”,’Filmmaker and ex-Church of Jesus Christ of Latter-day Saints member Reed Cowan examines that church\’s nationwide efforts to prevent the legalization of gay marriage – including California\’s Proposition 8, which was passed by voters in 2008. Confidential church documents, statements by high-ranking church officials and other sources detail 30 years of efforts to turn back gay rights, particularly by the Mormon-sponsored National Organization for Marriage.’,0.424957,’2010-01-01′,0,80,’Released’,’Equality for some.’,5.50,6),(40494,’Trapeze’,4000000,”,’A pair of men try to perform the dangerous \”triple\” in their trapeze act. Problems arise when the duo is made into a trio following the addition of a sexy female performer.’,1.379354,’1956-05-30′,14400000,105,’Released’,’High…High…High…Above Them All! – in excitement! – in spectacle! – in fire, flesh and fury!’,6.40,22),(40505,’I Got the Hook Up’,0,”,’Two broke buddies feel lucky when they come upon a truckload of cellular phones and begin selling them out of the back of their van. Trouble arises though, when the phones develop faults. The two friends then not only have to deal with unsatisfied customers but also the FBI.’,0.593068,’1998-05-27′,0,93,’Released’,’A truckload of cell phones… turns into a boatload of cash!’,5.40,8),(40652,’Une femme mariée: Suite de fragments d\’un film tourné en 1964′,120000,”,’Charlotte is young and modern, not a hair out of place, superficial, cool; she reads fashion magazines – does she have the perfect bust? She lives in a Paris suburb with her son and her husband Pierre, a pilot. Her lover is Robert, an actor. Assignations with him, dinner with her husband and a client, consulting a physician: there\’s tension at home, Pierre had her followed a few months before, their marital play has an edge, Pierre slaps her and apologizes. She quizzes Robert: is he acting when he\’s with her? Events may force her to choose Robert or Pierre. Close-ups fill the screen; is there more than surface? Her eyes tear up. The horrors of war provide a distant counterpoint.’,1.112792,’1964-12-04′,0,95,’Released’,’She Loves Two Men… She is Married to One!’,7.10,20),(40658,’Starsuckers’,0,’http://www.starsuckersmovie.com’,’Starsuckers is the most controversial documentary of the year, and was released in British cinemas in November 2009 to critical acclaim. It\’s a darkly humourous and shocking exposé of the celebrity obsessed media, that uncovers the real reasons behind our addiction to fame and blows the lid on the corporations and individuals who profit from it.’,0.429083,’2009-09-30′,0,103,’Released’,”,6.20,5),(40688,’Meet the Deedles’,24000000,”,’Two surfers end up as Yellowstone park rangers and have to stop a former ranger who is out for revenge.’,2.353441,’1998-03-27′,4562146,93,’Released’,’Fish out of water…Surfers in Yellowstone’,4.10,19),(40769,’Mutual Appreciation’,500000,”,’Alan is a musician who leaves a busted-up band for New York, and a new musical voyage. He tries to stay focused and fends off all manner of distractions, including the attraction to his good friend\’s girlfriend. Film of the \”Mumblecore\” genre.’,0.123068,’2005-03-01′,0,109,’Released’,”,6.10,8),(40794,’Mine vaganti’,7000000,’http://www.minevaganti.net/’,’Tommaso is the youngest son of the Cantones, a large, traditional southern Italian family operating a pasta-making business since the 1960s. On a trip home from Rome, where he studies literature and lives with his boyfriend, Tommaso decides to tell his parents the truth about himself. But when he is finally ready to come out in front of the entire family, his older brother Antonio ruins his plans.’,7.720692,’2010-02-12′,8220215,110,’Released’,”,7.00,118),(40805,’The Green Hornet’,120000000,’http://www.sonypictures.com/movies/thegreenhornet/’,’Britt Reid (Seth Rogen), the heir to the largest newspaper fortune in Los Angeles, is a spoiled playboy who has been, thus far, happy to lead an aimless life. After his father (Tom Wilkinson) dies, Britt meets Kato (Jay Chou), a resourceful company employee. Realizing that they have the talent and resources to make something of their lives, Britt and Kato join forces as costumed crime-fighters to bring down the city\’s most-powerful criminal, Chudnofsky (Christoph Waltz).’,31.703608,’2011-01-12′,227817248,119,’Released’,’Breaking the Law to Protect It.’,5.50,1251),(40807,’50/50′,8000000,’http://www.50-50themovie.com/’,’Inspired by a true story, a comedy centered on a 27-year-old guy who learns of his cancer diagnosis, and his subsequent struggle to beat the disease.’,33.372828,’2011-09-30′,39187783,100,’Released’,’It takes a pair to beat the odds.’,7.00,1261),(40862,’Iraq for Sale: The War Profiteers’,0,’http://iraqforsale.org/’,’Documentary portraying the actions of U.S. corporate contractors in the U.S.-Iraq war. Interviews with employees and former employees of such companies as Halliburton, CACI, and KBR suggest that government cronyism is behind apparent \”sweetheart\” deals that give such contractors enormous freedom to profit from supplying support and material to American troops while providing little oversight. Survivors of employees who were killed discuss the claim that the companies cared more for profit than for the welfare of their own workers, and soldiers indicate that the quality of services provided is sub-standard and severely in contradiction to the comparatively huge profits being generated. Also depicted are the unsuccessful attempts by the filmmakers to get company spokesmen to respond to the charges made by the interviewees.’,1.517771,’2006-01-01′,0,75,’Released’,”,8.00,6),(40880,’Pandaemonium’,0,”,’Set in England during the early 19th century, Pandaemonium evokes late-1960s America in its depiction of the relationship between Samuel Taylor Coleridge (Linus Roach) and William Wordsworth (John Hannah). Instead of going to Vietnam, Wordsworth goes off to fight against the French while Coleridge stays at home and promotes utopianism. After the war, the poets live and work together with Coleridge\’s wife, Sara (Samantha Morton), and Wordsworth\’s sister, Dorothy (Emily Woof). At first this communal arrangement works to the advantage of Coleridge–who does some of his best writing while Wordsworth stagnates–until Coleridge becomes addicted to opium. Wordsworth, meanwhile, doesn\’t find his voice until he abandons his friend. In 20th-century vernacular, Wordsworth is the yuppie, Coleridge the hippie.’,0.165367,’2001-06-29′,0,124,’Released’,”,4.50,2),(40914,’Royal Kill’,0,”,’A fearsome warrior from the Kingdom of Samarza arrives in America to assassinate a high school girl. The girl does not know it, but she is the last living heir to the Kingdom. A noble guard arrives in America to protect the young princess.’,1.088501,’2009-04-10′,0,90,’Released’,”,2.80,6),(40920,’The Business of Fancydancing’,200000,”,’Seymour Polatkin is a successful, gay Indian poet from Spokane who confronts his past when he returns to his childhood home on the reservation to attend the funeral of a dear friend.’,0.061040,’2002-01-14′,0,103,’Released’,’Sometimes going home is the hardest journey of all.’,8.00,2),(40932,’Can\’t Stop the Music’,0,”,’Movie about the Village People filmed in a documentary style.’,6.574285,’1980-06-20′,0,124,’Released’,’The Musical Comedy Smash of the 80\’s!’,4.90,9),(40963,’Little Big Top’,0,”,’An aging out of work clown returns to his small hometown, resigned to spend the rest of his days in a drunken stupor. But when his passion for clowning is reawakened by the local amateur circus he finds his smile.’,0.092100,’2006-01-01′,0,0,’Rumored’,”,10.00,1),(41009,’Perrierâ��s Bounty’,0,’http://www.perriersbounty.ie/’,’A gangster named Perrier looks to exact his revenge on a trio of fugitives responsible for the accidental death of one of his cronies.’,3.810943,’2009-09-11′,0,88,’Released’,’Blood is thicker than water. Nothing is thicker than thieves.’,5.10,24),(41110,’Io sono l\’amore’,0,’http://www.iamlovemovie.com/’,’Emma left Russia to live with her husband in Italy. Now a member of a powerful industrial family, she is the respected mother of three, but feels unfulfilled. One day, Antonio, a talented chef and her son\’s friend, makes her senses kindle.’,5.355763,’2009-09-05′,0,120,’Released’,”,6.90,73),(41144,’To Save A Life’,0,’http://tosavealifemovie.com/’,’Jake Taylor has everything. He has a beautiful girl, he\’s the champion in basketball and beer pong, and everyone loves him. Then, an old childhood friend, whom Jake used to be friends with, commits suicide. Jake begins to think. He wonders what he could\’ve done to save his friend\’s life. A youth minister tells him that Jake needs God. So Jake becomes a Christian. However, things begin to spin out of control. His dad is cheating on his mom, his girlfriend is pregnant, and his former friends ridicule and mock him. During all this, Jake is going to realize just what it means to be a Christian and how, to save a life.’,0.050210,’2009-11-05′,0,120,’Released’,’Some people are just dying to be heard.’,6.20,21),(41154,’Men in Black 3′,225000000,’http://www.sonypictures.com/movies/meninblack3/’,’Agents J (Will Smith) and K (Tommy Lee Jones) are back…in time. J has seen some inexplicable things in his 15 years with the Men in Black, but nothing, not even aliens, perplexes him as much as his wry, reticent partner. But when K\’s life and the fate of the planet are put at stake, Agent J will have to travel back in time to put things right. J discovers that there are secrets to the universe that K never told him – secrets that will reveal themselves as he teams up with the young Agent K (Josh Brolin) to save his partner, the agency, and the future of humankind.’,52.035179,’2012-05-23′,624026776,106,’Released’,’They are back… in time.’,6.20,4160),(41210,’The Switch’,19000000,’http://theswitch-movie.com/’,’An unmarried 40-year-old woman turns to a turkey baster in order to become pregnant. Seven years later, she reunites with her best friend, who has been living with a secret: he replaced her preferred sperm sample with his own.’,27.494037,’2010-05-11′,49830607,101,’Released’,’The most unexpected comedy ever conceived.’,5.90,583),(41216,’Legend of the Guardians: The Owls of Ga\’Hoole’,80000000,’http://legendoftheguardians.warnerbros.com/’,’Soren, a young barn owl, is kidnapped by owls of St. Aggie\’s, ostensibly an orphanage, where owlets are brainwashed into becoming soldiers. He and his new friends escape to the island of Ga\’Hoole, to assist its noble, wise owls who fight the army being created by the wicked rulers of St. Aggie\’s. The film is based on the first three books in the series.’,37.321848,’2010-07-10′,140073390,97,’Released’,’On his way to finding a legend…he will become one.’,6.50,703),(41233,’Step Up 3D’,30000000,’http://stepupmovie.com/’,’A tight-knit group of New York City street dancers, including Luke and Natalie, team up with NYU freshman Moose, and find themselves pitted against the world\’s best hip hop dancers in a high-stakes showdown that will change their lives forever.’,25.060342,’2010-08-04′,159291809,107,’Released’,’Two Worlds. One Dream.’,6.60,582),(41248,’La Fille du RER’,0,”,’The Girl on the Train is a 2009 French drama film directed by André Téchiné. Jeanne is a young woman, striking but otherwise without qualities. Her mother tries to get her a job in the office of a lawyer, Bleistein, her lover years ago. Jeanne fails the interview but falls into a relationship with Franck, a wrestler whose dreams and claims of being in a legitimate business partnership Jeanne is only too happy to believe. When Franck is arrested, he turns on Jeanne for her naivety; she\’s stung and seeks attention by making up a story of an attack on a train. Is there any way out for her?’,2.351706,’2009-03-18′,0,105,’Released’,”,5.60,10),(41283,’Faster’,24000000,’http://www.fasterthemovie.com/’,’Driver (Dwayne Johnson) has spent the last 10 years in prison planning revenge for the murder of his brother. Now that Driver is free to carry out his deadly plan only two men stand in his way- Billy Bob Thornton plays a veteran cop and Oliver Jackson-Cohen, a crazy hitman. With those two close on his trail, Driver races to carry out his mission as the mystery surrounding his brothers murder deepens.’,26.324874,’2010-11-23′,23081726,98,’Released’,’Slow Justice is no Justice’,6.10,568),(41317,’Caravans’,0,”,’This epic adventure-drama based on James Michener\’s best-selling novel concerns a young American embassy official who is sent into the Middle-Eastern desert to find the missing daughter of a US Senator. The young woman has left her husband, a Colonel in the Shadom – she was his number two wife – and has opted for the lifestyle of a nomadic tribe. When the diplomat locates the girl he joins the caravan and attempts to persuade the girl to return.’,0.633004,’1978-11-02′,0,127,’Released’,”,5.80,1),(41382,’Lottery Ticket’,0,”,’Kevin Carson is a young man living in the projects who has to survive a three-day weekend after his opportunistic neighbors find out he\’s holding a winning lottery ticket worth $370 million’,9.054803,’2010-08-20′,0,99,’Released’,’Winning is Just the Beginning Surviving is Another Story’,5.60,54),(41402,’Let Me In’,20000000,’http://www.letmein-movie.com’,’A bullied young boy befriends a young female vampire who lives in secrecy with her guardian. A remake of the movie â��Let The Right One Inâ�� which was an adaptation of a book.’,19.705311,’2010-10-01′,24145613,116,’Released’,’Innocence dies. Abby doesn\’t.’,6.70,641),(41436,’Paranormal Activity 2′,3000000,’http://www.paranormalmovie.com/trailer/’,’Just as Dan and Kristi welcome a newborn baby into their home, a demonic presence begins terrorizing them, tearing apart their perfect world and turning it into an inescapable nightmare. Security cameras capture the torment, making every minute horrifyingly real.’,22.789649,’2010-10-20′,177512032,91,’Released’,’In 2009 you demanded it. Nothing can prepare you for what\’s next.’,5.70,722),(41439,’Saw 3D’,20000000,’http://www.saw3dmovie.com’,’As a deadly battle rages over Jigsaw\’s brutal legacy, a group of Jigsaw survivors gathers to seek the support of self-help guru and fellow survivor Bobby Dagen, a man whose own dark secrets unleash a new wave of terror.’,36.133536,’2010-10-21′,136150434,90,’Released’,’The Traps Come Alive’,5.80,730),(41446,’Scream 4′,40000000,’http://www.scream-4.com/’,’Sidney Prescott, now the author of a self-help book, returns home to Woodsboro on the last stop of her book tour. There she reconnects with Sheriff Dewey and Gale, who are now married, as well as her cousin Jill and her Aunt Kate. Unfortunately, Sidney\’s appearance also brings about the return of Ghostface, putting Sidney, Gale, and Dewey, along with Jill, her friends, and the whole town of Woodsboro in danger.’,35.219260,’2011-04-11′,97138686,111,’Released’,’New Decade. New Rules.’,6.10,902),(41469,’Next Stop Wonderland’,0,”,’A lighthearted story about a man and a woman who seem destined to be together… and the hilarious chain of accidents that seem determined to keep them apart!’,1.334481,’1998-08-21′,0,96,’Released’,’Romance Is Her Destination.’,6.00,20),(41479,’The Joneses’,10000000,’http://www.thejonesesmovie.com/’,’A seemingly perfect family moves into a suburban neighborhood, but when it comes to the truth as to why they\’re living there, they don\’t exactly come clean with their neighbors.’,14.979375,’2009-09-13′,7022728,96,’Released’,’They\’re not just living the American dream, they\’re selling it.’,6.10,210),(41488,’The Statement’,0,”,’The film is set in France in the 1990s, the French were defeated by the Germans early in World War II, an armistice was signed in 1940 which effectively split France into a German occupied part in the North and a semi-independent part in the south which became known as Vichy France. In reality the Vichy government was a puppet regime controlled by the Germans. Part of the agreement was that the Vichy Government would assist with the \’cleansing\’ of Jews from France. The Vichy government formed a police force called the Milice, who worked with the Germans…’,2.653988,’2003-12-12′,0,120,’Released’,’At the end of World War II, many of those involved in war crimes were prosecuted. Some got away. Until now.’,5.90,23),(41508,’Sorstalanság’,0,”,’An Hungarian youth comes of age at Buchenwald during World War II. György Köves is 14, the son of a merchant who\’s sent to a forced labor camp. After his father\’s departure, György gets a job at a brickyard; his bus is stopped and its Jewish occupants sent to camps. There, György find camaraderie, suffering, cruelty, illness, and death. He hears advice on preserving one\’s dignity and self-esteem. He discovers hatred. If he does survive and returns to Budapest, what will he find? What is natural; what is it to be a Jew? Sepia, black and white, and color alternate to shade the mood.’,1.906807,’2005-02-10′,0,140,’Released’,’You can close your eyes. You can turn away. But you will never forget.’,6.50,28),(41513,’The Smurfs’,110000000,’http://www.smurfhappens.com/’,’When the evil wizard Gargamel chases the tiny blue Smurfs out of their village, they tumble from their magical world and into ours — in fact, smack dab in the middle of Central Park. Just three apples high and stuck in the Big Apple, the Smurfs must find a way to get back to their village before Gargamel tracks them down.’,36.654220,’2011-07-29′,563749323,103,’Released’,’Smurf Happens.’,5.50,1179),(41515,’Yogi Bear’,80000000,’http://www.yogibear.com/’,’Jellystone Park has been losing business, so greedy Mayor Brown decides to shut it down and sell the land. That means families will no longer be able to experience the natural beauty of the outdoors — and, even worse, Yogi and Boo Boo will be tossed out of the only home they\’ve ever known. Faced with his biggest challenge ever, Yogi must prove that he really is \”smarter than the average bear\” as he and Boo Boo join forces with their old nemesis Ranger Smith to find a way to save Jellystone Park from closing forever.’,11.187696,’2010-12-11′,201584141,80,’Released’,’Life\’s a Pic-A-Nic’,5.20,220),(41630,’No Strings Attached’,25000000,’http://www.nostringsattachedmovie.com/’,’Emma is a busy doctor who sets up a seemingly perfect arrangement when she offers her best friend Adam a relationship with one rule: No strings attached. But when a fling becomes a thing, can sex friends stay best friends?’,38.688822,’2011-01-21′,147780440,107,’Released’,’Friendship has its benefits.’,6.10,1331),(41730,’Desert Blue’,0,”,’An academic obsessed with \”roadside attractions\” and his tv-star daughter finally discover the world\’s largest ice cream cone, the centerpiece for an old gold-rush town struggling to stay on the map. They end up staying longer than expected because of an accident that spilled an unknown cola ingredient all over the highway. They spend the next few days with the various residents of the town which include a teenage girl who loves to blow things up and a boy trying to keep alive his fathers dream of building a beachside resort in the middle of the desert.’,1.116206,’1999-06-06′,0,90,’Released’,’Once You Get There, You\’ll Never Want To Leave’,5.50,9),(41733,’Due Date’,65000000,’http://duedatemovie.warnerbros.com/’,’Peter Highman must scramble across the US in five days to be present for the birth of his first child. He gets off to a bad start when his wallet and luggage are stolen, and put on the \’no-fly\’ list. Peter embarks on a terrifying journey when he accepts a ride from an actor.’,43.865294,’2010-11-04′,211780824,95,’Released’,’Leave Your Comfort Zone’,6.20,1685),(41823,’Mo\’ Better Blues’,10000000,”,’Opens with Bleek as a child learning to play the trumpet, his friends want him to come out and play but mother insists he finish his lessons. Bleek grows into adulthood and forms his own band – The Bleek Gilliam Quartet. The story of Bleek\’s and Shadow\’s friendly rivalry on stage which spills into their professional relationship and threatens to tear apart the quartet.’,3.079862,’1990-08-03′,16153593,129,’Released’,”,6.30,47),(41830,’The Party\’s Over’,0,”,’An American businessman visits London and is horrified to discover his nubile teenage daughter has become involved with a gang of thuggish \”beatniks\”. Her involvement leads to wild parties, sex, death and necrophilia.’,0.118324,’1965-04-22′,0,94,’Released’,”,6.10,6),(41894,’Blood Done Sign My Name’,0,”,’A drama based on the true story in which a black Vietnam-era veteran is allegedly murdered by a local white businessman who is later exonerated. The plot focuses on the role of a local high school teacher and the civil unrest that followed the acquittal.’,0.397341,’2010-02-01′,0,0,’Released’,’No one changes the world alone.’,6.00,5),(42033,’Def-Con 4′,0,”,’Two men and a woman circle the globe in a satellite armed with a nuclear device. The third world war breaks out, and a few months later the satellite crashes. They survive the crash but one man gets killed by survivors and the other man gets caught. The woman stays by the remains of the the satellite but is soon caught by evil punks who have taken power.’,0.319792,’1985-03-15′,0,88,’Released’,’The last defense. The last hope. The battle for the future of the world has begun.’,2.80,10),(42057,’Hai Marjawaan!’,0,’http://www.itsawonderfulafterlife.com/’,’Indian mother Mrs Sethi\’s (Azmi) obsession with marrying off her daughter turns murderous. With jokes that routinely miss the mark and cringeworthy slapstick, this black comedy farce shouldn\’t work. Somehow, though, it does. (c) Empire Magazine’,1.259968,’2010-05-07′,0,99,’Released’,’Finding the right man can be murder’,4.30,9),(42109,’Gabriela, Cravo e Canela’,0,”,’In 1925, Gabriela becomes cook, mistress, and then wife of Nacib, a bar owner in a small Brazilian coastal town runs by the local colonels. Nacib becomes tired of Gabriela\’s uneducated ways, and annuls the marriage when he finds her in bed with his friend Tonico. The political ways of the town modernize slightly and Gabriela returns as Nacib\’s mistress.’,0.557602,’1983-03-24′,0,99,’Released’,”,6.00,2),(42151,’Down Terrace’,31192,’http://downterrace.blogspot.com/’,’After serving jail time for a mysterious crime, Bill and Karl get out of jail and become preoccupied with figuring out who turned them in to the police. On top of that, the \”family business\” is on the rocks, and the motley crew of criminals who operate out of Down Terrace aren\’t feeling terribly trusting of one another. It might look like an ordinary house, but at Down Terrace, the walls are closing in..’,1.330379,’2009-09-01′,10000,89,’Released’,’You\’re only as good as the people you know.’,6.30,26),(42188,’Never Let Me Go’,15000000,’http://www.foxsearchlight.com/neverletmego/’,’As children, Kathy, Ruth, and Tommy spend their childhood at an idyllic and secluded English boarding school. As they grow into adults, they must come to terms with the complexity and strength of their love for one another while also preparing for the haunting reality awaiting them.’,30.983397,’2010-09-15′,9455232,104,’Released’,’These students have everything they need. Except time.’,6.80,737),(42222,’Julia’,0,”,’At the behest of an old and dear friend, playwright Lillian Hellman undertakes a dangerous mission to smuggle funds into Nazi Germany.’,6.077735,’1977-10-02′,0,117,’Released’,’The story of two women whose friendship suddenly became a matter of life and death.’,6.30,30),(42297,’Burlesque’,55000000,’http://www.burlesquethemovie.com/’,’The Burlesque Lounge has its best days behind it. Tess, a retired dancer and owner of the venue, struggles to keep the aging theater alive, facing all kinds of financial and artistic challenges. With the Lounge\’s troupe members becoming increasingly distracted by personal problems and a threat coming from a wealthy businessman\’s quest to buy the spot from Tess, the good fortune seems to have abandoned the club altogether. Meanwhile, the life of Ali, a small-town girl from Iowa, is about to change dramatically. Hired by Tess as a waitress at the Lounge, Ali escapes a hollow past and quickly falls in love with the art of burlesque. Backed by newfound friends amongst the theater\’s crew, she manages to fulfill her dreams of being on stage herself. Things take a dramatic turn though when Ali\’s big voice makes her become the main attraction of the revue’,22.863516,’2010-11-23′,89519773,119,’Released’,’It takes a legend… to make a star’,6.90,573),(42345,’The Molly Maguires’,11000000,”,’Life is rough in the coal mines of 1876 Pennsylvania. A secret group of Irish emigrant miners, known as the Molly Maguires, fights against the cruelty of the mining company with sabotage and murder. A detective, also an Irish emigrant, is hired to infiltrate the group and report on its members. But on which side do his sympathies lie?’,1.396985,’1970-01-27′,2200000,124,’Released’,”,5.90,16),(42497,’Pink Narcissus’,27000,”,’An erotic poem set in the fantasies of a young male prostitute.’,0.027811,’1971-01-01′,0,64,’Released’,’A unique experience in visual fantasy!’,6.00,9),(42586,’Darling Lili’,0,”,’Set in Paris during World War I. Lili Smith/Schmidt is a German spy being requested to go under cover to help Germany during the war, to try and find out their plans. Her \”uncle\” wishes her to fulfill the operation, whereas one of his colleagues believed she is not capable of performing such an operation as she is British. She soon finds herself following Major William Larrabee\’s every move and spending all her time either with him or thinking of him. Her \”uncle\” realises she\’s in love with him but Lili is not facing that she is. Things & people are coming between her true fate. But what is it…’,0.816883,’1970-01-01′,0,107,’Released’,’She gave away secrets to one side and her heart to the other.’,4.90,8),(42618,’Sweet Charity’,8000000,”,’Taxi dancer Charity continues to have Faith in the human race despite apparently endless disappointments at its hands, and Hope that she will finally meet the nice young man to romance her away from her sleazy life. Maybe, just maybe, handsome Oscar will be the one to do it.’,0.709143,’1969-01-01′,20000000,149,’Released’,’Love is what it\’s all about!’,6.50,15),(42684,’Skyline’,10000000,”,’When strange lights descend on the city of Los Angeles, people are drawn outside like moths to a flame where an extraterrestrial force threatens to swallow the entire human population off the face of the Earth. Now the band of survivors must fight for their lives as the world unravels around them.’,26.268209,’2010-11-11′,66821036,100,’Released’,’Don\’t look up’,4.70,507),(42807,’The Newton Boys’,27000000,”,’Four Newton brothers are a poor farmer family in the 1920s. The oldest of them, Willis, one day realizes that there\’s no future in the fields and offers his brothers to become a bank robbers. Soon the family agrees. They become very famous robbers, and five years later execute the greatest train robbery in American history.’,3.123583,’1998-03-26′,76000000,113,’Released’,’Four Brothers. Four Criminals. For The Money… They Would Stop At Nothing.’,5.90,44),(42819,’The City of Your Final Destination’,0,”,’28-year-old Kansas University doctoral student Omar Razaghi wins a grant to write a biography of Latin American writer Jules Gund. Omar must get through to three people who were close to Gund–his brother, widow, and younger mistress–so he can get authorization to write the biography. Written by Marisa_Gabriella, edited by Krystal Frauendienst’,1.353971,’2009-03-21′,0,114,’Released’,”,5.70,9),(42888,’How Do You Know’,120000000,’http://www.howdoyouknow-movie.com/’,’After being cut from the USA softball team and feeling a bit past her prime, Lisa finds herself evaluating her life and in the middle of a love triangle, as a corporate guy in crisis competes with her current, baseball-playing beau.’,11.137655,’2010-12-17′,48668907,121,’Released’,’How do you know it\’s love?’,4.90,223),(42889,’The Virginity Hit’,2000000,’http://www.thevirginityhit.com/’,’Four guys, one camera, and their experience chronicling the exhilarating and terrifying rite of passage: losing your virginity. As these guys help their buddy get laid, they\’ll have to survive friends with benefits, Internet hookups, even porn stars during an adventure that proves why you will always remember your first time.’,3.125382,’2010-09-10′,563706,120,’Released’,”,4.60,19),(43074,’Ghostbusters’,144000000,’http://www.ghostbusters.com/’,’Following a ghost invasion of Manhattan, paranormal enthusiasts Erin Gilbert and Abby Yates, nuclear engineer Jillian Holtzmann, and subway worker Patty Tolan band together to stop the otherworldly threat.’,66.218060,’2016-07-14′,229147509,116,’Released’,’Who You Gonna Call?’,5.30,2142),(43090,’Gunless’,10000000,’http://gunless.ca/’,’A quiet and peaceful community in the Dominion of Canada is shaken up by the arrival of a wounded and stinky gun-toting American cowboy, simply known as The Montana Kid, wanted for the alleged killing of seven men. A subsequent clarification reveals that his real name is Sean Rafferty, and he admits to killing, not seven, but eleven men. Things only get worse after Sean gets in the bad books of the local militia, and with armed bounty hunters hot on his trail, challenges the local unarmed blacksmith, Jack Smith, to a duel – wild west style! Written by rAjOo’,3.753703,’2010-04-30′,0,89,’Released’,’Fastest draw in the North… kinda.’,6.70,27),(43213,’Chicago Overcoat’,3200000,”,’The fates of an aging hitman and a washed up detective become entwined when one last job leads to one last chance to settle an old score.’,1.034844,’2009-10-10′,0,95,’Released’,’The glory days are back’,6.10,5),(43266,’How Green Was My Valley’,1250000,”,’At the turn of the century in a Welsh mining village, the Morgans (he stern, she gentle) raise coal-mining sons and hope their youngest will find a better life. Lots of atmosphere, very sentimental view of pre-union miners\’ lives. The film is based on the 1939 Richard Llewellyn novel of the same name.’,7.700190,’1941-10-28′,6000000,118,’Released’,’Millions Have Read This Great Novel… Millions more will see an even greater picture!’,6.80,72),(43306,’A Guy Named Joe’,2627000,”,’Pete Sandidge (Tracy), a daredevil bomber pilot, dies when he crashes his plane into a German aircraft carrier, leaving his devoted girlfriend, Dorinda (Irene Dunne), who is also a pilot, heartbroken. In heaven, Pete receives a new assignment: he is to become the guardian angel for Ted Randall (Van Johnson), a young Army flyer. Invisibly, Pete guides Ted through flight school and into combat, but the ectoplasmic mentor\’s tolerance is tested when Ted falls for Dorinda. Ultimately, however, Pete not only comes to terms with their relationship but also acts as Dorinda\’s copilot when she undertakes a dangerous bombing raid, so that Ted won\’t have to. Remade by Steven Speilberg in 1989 as ALWAYS’,0.531444,’1944-03-01′,5363000,120,’Released’,’A GUY – A GAL – A PAL – It\’s Swell!’,6.00,8),(43347,’Love & Other Drugs’,30000000,’http://www.loveandotherdrugsthemovie.com/’,’Maggie, an alluring free spirit who won\’t let anyone – or anything – tie her down. But she meets her match in Jamie, whose relentless and nearly infallible charm serve him well with the ladies and in the cutthroat world of pharmaceutical sales. Maggie and Jamie\’s evolving relationship takes them both by surprise, as they find themselves under the influence of the ultimate drug: love.’,20.236951,’2010-11-22′,102820008,112,’Released’,’Addicted to one-night stands or dependent on one another?’,6.60,1233),(43418,’Beneath Hill 60′,7347125,’http://www.beneathhill60.com.au/index.htm’,’The true story of Australia\’s cat-and-mouse underground mine warfare â�� one of the most misunderstood, misrepresented and mystifying conflicts of WW I. It was a secret struggle BENEATH the Western Front that combined daring engineering, technology and science, and few on the surface knew of the brave, claustrophobic and sometimes barbaric work of these tunnellers.’,3.949796,’2010-04-15′,0,122,’Released’,’BENEATH HILL 60 featuring Captain Woodward MC commanding the Australian Hill 60 Tunnelers of World War 1′,7.30,40),(43434,’Carlos’,18000000,”,’The story of Venezuelan revolutionary, Ilich Ramirez Sanchez, who founded a worldwide terrorist organization and raided the OPEC headquarters in 1975 before being caught by the French police.’,1.138383,’2010-05-19′,871279,338,’Released’,’The man who hijacked the world’,6.70,50),(43539,’The Next Three Days’,30000000,’http://www.thenextthreedaysmovie.com/index.html’,’A married couple\’s life is turned upside down when the wife is accused of a murder. Lara Brennan is arrested for murdering her boss with whom she had an argument. It seems she was seen leaving the scene of the crime and her fingerprints were on the murder weapon. Her husband, John would spend the next few years trying to get her released, but there\’s no evidence that negates the evidence against her. And when the strain of being separated from her family, especially her son, gets to her, John decides to break her out. So he does a lot of research to find a way.’,34.421696,’2010-11-18′,51148651,133,’Released’,’What if you had 72 hours to save everything you live for?’,6.90,905),(43546,’Bathing Beauty’,2361000,”,’A big splash in her first starring role: Esther Williams is a teacher at a women\’s college — and wacky Red Skelton enrolls to be near her. An astonishing flames-and-fountains aquatic finale.’,0.628051,’1944-07-01′,6892000,101,’Released’,’M.G.M\’s Mammoth Technicolor Musical Spectacle!’,7.00,4),(43593,’Piranha 3D’,24000000,’http://www.piranha-3d.com’,’Each year the population of sleepy Lake Victoria, Arizona explodes from 5,000 to 50,000 residents for the annual Spring Break celebration. But then, an earthquake opens an underwater chasm, releasing an enormous swarm of ancient Piranha that have been dormant for thousands of years, now with a taste for human flesh. This year, there\’s something more to worry about than the usual hangovers and complaints from locals, a new type of terror is about to be cut loose on Lake Victoria.’,23.343839,’2010-08-20′,83188165,88,’Released’,’There\’s something in the water.’,5.30,581),(43595,’She Done Him Wrong’,200000,”,’New York singer and nightclub owner Lady Lou has more men friends than you can imagine. Unfortunately one of them is a vicious criminal who\’s escaped and is on the way to see \”his\” girl, not realising she hasn\’t exactly been faithful in his absence. Help is at hand in the form of young Captain Cummings a local temperance league leader though.’,0.622752,’1933-02-09′,2200000,66,’Released’,’Mae West gives a \’Hot Time\’ to the nation!’,5.10,27),(43610,’The Valley of Decision’,2160000,”,’Mary Rafferty comes from a poor family of steel mill workers in 19th Century Pittsburgh. Her family objects when she goes to work as a maid for the wealthy Scott family which controls the mill. Mary catches the attention of handsome scion Paul Scott, but their romance is complicated by Paul\’s engagement to someone else and a bitter strike among the mill workers.’,0.181300,’1945-06-01′,9132000,119,’Released’,”,5.80,4),(43630,’The Helix… Loaded’,0,”,’ ‘,0.020600,’2005-01-01′,0,97,’Rumored’,”,4.80,2),(43653,’The Living Wake’,0,”,’â��The Living Wakeâ�� is a dark comedy set in a timeless storybook universe. Self-proclaimed artist and genius, K. Roth Binew, has one day to live. He has enlisted his best and only friend, Mills Joquin, to take him around on a bicycle powered rickshaw. In a final attempt to probe lifeâ��s deepest mysteries, Binew endures one ridiculous trial after the next. He concludes his day with a final performance, his living wake. On a makeshift stage in an open field, Binewâ��s friends and enemies gather to witness his madness one final time.’,0.383442,’2007-01-01′,0,91,’Released’,”,5.00,1),(43743,’Fabled’,0,”,’Joseph just broke up with his girlfriend and is not taking it very well. He thinks she is plotting against him with their mutual psychiatrist. His dog is missing and he suspects the people at work might be behind it. Then there is the unshakable guilt over his past. It just might all be bearable, somehow possible to live through, if it weren\’t for those damned \’monsters\’ that keep trying to kill him. Through an allegorical \’fable\’ that is told in parallel with Joseph\’s struggle, we are left to decide for ourselves in the end, who is the crow and who is the wolf., was someone out to get Joseph, was it a stroke of bad luck, or was it all in his head?’,0.003352,’2002-01-01′,0,84,’Released’,’There once was a wolf named Lupold…’,0.00,0),(43839,’Alexander\’s Ragtime Band’,2000000,”,’Roger Grant, a classical violinist, disappoints his family and teacher when he organizes a jazz band, but he and the band become successful. Roger falls in love with his singer Stella, but his reluctance to lose her leads him to thwart her efforts to become a solo star. When the World War separates them in 1917, Stella marries Roger\’s best friend Charlie. Roger comes home after the war and an important concert at Carnegie Hall brings the corners of the romantic triangle together.’,0.483974,’1938-05-24′,4000000,106,’Released’,’An American Cavalcade!’,4.80,6),(43867,’The Prisoner of Zenda’,0,”,’An Englishman on a Ruritarian holiday must impersonate the king when the rightful monarch, a distant cousin, is drugged and kidnapped.’,4.021389,’1937-09-03′,0,101,’Released’,’The most thrilling swordfight ever filmed…’,8.40,11),(43884,’The Charge of the Light Brigade’,1200000,”,’Major Vickers is an Officer in the 27th Lancers in India in 1856. Whilst the regiment is out on manoeuvres, the barracks are attacked by Surat Khan and his soldiers who massacre British women and children. This leaves an inextinguishable memory and Vickers promises to avenge the dead.’,2.968235,’1936-10-20′,2736000,115,’Released’,’The reckless lancers sweep on and on – so that a woman\’s heart might not be broken! You\’re not fighting a single legion – you\’re fighting the entire British army, Surat Khan!’,6.80,18),(43923,’It\’s Kind of a Funny Story’,8000000,’http://focusfeatures.com/its_kind_of_a_funny_story’,’A clinically depressed teenager gets a new start after he checks himself into an adult psychiatric ward.’,13.143045,’2010-07-06′,6491240,101,’Released’,’Sometimes what\’s in your head isn\’t as crazy as you think.’,6.90,672),(43931,’My Soul to Take’,25000000,”,’A serial killer returns to his hometown to stalk seven children who share the same birthday as the date he was allegedly put to rest.’,7.001176,’2010-10-08′,19829957,107,’Released’,’Only One Has The Power To Save Their Souls’,5.20,147),(43933,’Monsters’,500000,’http://www.monstersfilm.com/’,’Six years ago NASA discovered the possibility of alien life within our solar system. A probe was launched to collect samples, but crashed upon re-entry over Central America. Soon after, new life forms began to appear and half of Mexico was quarantined as an infected zone. Today, the American and Mexican military still struggle to contain \”the creatures,\” while a journalist agrees to escort a shaken tourist through the infected zone in Mexico to the safety of the U.S. border.’,26.406001,’2010-06-18′,4242978,94,’Released’,’After Six Years, They\’re No Longer Aliens. They\’re Residents’,6.20,587),(43935,’Dylan Dog: Dead of Night’,20000000,’http://dylandogdeadofnight.com/’,’Supernatural private eye, Dylan Dog, seeks out the monsters of the Louisiana bayou in his signature red shirt, black jacket and blue jeans.’,10.617236,’2011-03-16′,4634062,107,’Released’,’No pulse? No problem’,4.50,139),(43942,’Freakonomics’,3000000,’http://www.magpictures.com/freakonomics/’,’Some of the world\’s most innovative documentary filmmakers will explore the hidden side of everything.’,1.781462,’2010-10-01′,103735,93,’Released’,’Things you always thought you knew but didn\’t’,6.60,36),(43947,’I Spit on Your Grave’,2000000,”,’A remake of the 1979 controversial cult classic, I Spit on Your Grave retells the horrific tale of writer Jennifer Hills who takes a retreat from the city to a charming cabin in the woods to start on her next book. But Jennifer\’s presence in the small town attracts the attention of a few morally deprived locals led by Johnny, the town\’s service station owner, his two co-workers, Andy and Stanley, who along with their socially and mentally challenged friend Matthew, set out one night to teach this city girl a lesson.’,26.281839,’2010-06-17′,572809,108,’Released’,’It\’s Date Night’,6.30,519),(43949,’Flipped’,14000000,’http://www.warnerbros.com/flipped’,’When Juli meets Bryce in the second grade, she knows it\’s true love. After spending six years trying to convince Bryce the same, she\’s ready to give up – until he starts to reconsider.’,24.210698,’2010-08-06′,1755212,89,’Released’,’You never forget your first love.’,7.40,418),(43959,’Soul Surfer’,18000000,’http://www.soulsurferthemovie.com/’,’Soul Surfer is the inspiring true story of teen surfer Bethany Hamilton. Bethany lost her left arm in a shark attack and courageously overcame all odds to become a champion again, through her sheer determination and unwavering faith.Bethany (AnnaSophia Robb) was born to surf. A natural talent who took to the waves at a young age, she was leading an idyllic life on Kauai, participating in national surf competitions with her best friend Alana (Lorraine Nicholson), when everything changed. On Halloween morning, a 14-foot tiger shark came out of nowhere and seemed to shatter all her dreams.Soul Surfer reveals Bethany\’s fight to recover from her ordeal and how she grappled with the question of her future. Strengthened by the love of her parents, Tom (Dennis Quaid) and Cheri (Helen Hunt), and supported by her youth group leader Sara (Carrie Underwood), Bethany refuses to give in or give up, and begins a bold return to the water.’,19.234672,’2011-04-08′,47088990,106,’Released’,’When you come back from a loss, beat the odds, and never say never, you find a champion.’,6.90,342),(44009,’Another Year’,8000000,’http://www.anotheryear-movie.com/’,’Mike Leighâ��s much praised 2010 tragicomical drama. During a year, a very content couple approaching retirement are visited by friends and family less happy with their lives.’,7.235794,’2010-11-05′,18124262,129,’Released’,”,7.00,97),(44040,’Devil’,10000000,’http://www.thenightchronicles.com/devil/’,’A group of people trapped in a elevator realizes that the devil is among them.’,30.934688,’2010-01-13′,33583175,80,’Released’,’Bad Things Happen For A Reason’,5.80,816),(44048,’Unstoppable’,100000000,”,’A runaway train, transporting deadly, toxic chemicals, is barreling down on Stanton, Pennsylvania, and only two men can stop it: a veteran engineer and a young conductor. Thousands of lives hang in the balance as these ordinary heroes attempt to chase down one million tons of hurtling steel and prevent an epic disaster.’,37.698465,’2010-11-04′,167805466,98,’Released’,’1,000,000 Tons. 100,000 Lives. 100 Minutes.’,6.30,1165),(44092,’å��é�¨’,12000000,’http://jianyu.ent.sina.com.cn/’,’Set in ancient China, Zeng Jing is a skilled assassin who finds herself in possession of a mystical Buddhist monk\’s remains. She begins a quest to return the remains to its rightful resting place, and thus places herself in mortal danger because a team of assassins is in a deadly pursuit to possess the remains which holds an ancient power-wielding secret.’,4.930129,’2010-09-01′,0,117,’Released’,”,6.70,57),(44113,’Stone’,22000000,’http://www.stonemovie.com/stone.html’,’Parole officer Jack Mabry has only a few weeks left before retirement and wishes to finish out the cases he\’s been assigned. One such case is that of Gerald \’Stone\’ Creeson, a convicted arsonist who is up for parole. Jack is initially reluctant to indulge Stone in the coarse banter he wishes to pursue and feels little sympathy for the prisoner\’s pleads for an early release. Seeing little hope in convincing Jack himself, Stone arranges for his wife to seduce the officer, but motives and intentions steadily blur amidst the passions and buried secrets of the corrupted players in this deadly game of deception.’,12.445176,’2010-10-07′,9479718,105,’Released’,’Some People Tell Lies. Others Live Them.’,5.20,192),(44115,’127 Hours’,18000000,”,’The true story of mountain climber Aron Ralston\’s remarkable adventure to save himself after a fallen boulder crashes on his arm and traps him in an isolated canyon in Utah.’,52.464877,’2010-11-05′,35692920,94,’Released’,’There is no force more powerful than the will to live.’,7.00,2606),(44147,’Wild Target’,8000000,’http://www.wildtargetmovie.com/’,’Victor Maynard is a middle-aged, solitary assassin, who lives to please his formidable mother, despite his own peerless reputation for lethal efficiency. His professional routine is interrupted when he finds himself drawn to one of his intended victims, Rose. He spares her life, unexpectedly acquiring in the process a young apprentice, Tony. Believing Victor to be a private detective, his two new companions tag along, while he attempts to thwart the murderous attentions of his unhappy client’,10.791954,’2010-06-17′,3453043,98,’Released’,’They said \’Take her out\’. He got the wrong idea.’,6.40,215),(44214,’Black Swan’,13000000,’http://www.foxsearchlight.com/blackswan/’,’A ballet dancer wins the lead in \”Swan Lake\” and is perfect for the role of the delicate White Swan – Princess Odette – but slowly loses her mind as she becomes more and more like Odile, the Black Swan.’,91.285683,’2010-12-02′,327803731,108,’Released’,’In the era of personal branding, the scariest possibility is that someone might be better at being you than you are.’,7.30,4430),(44260,’Lake of Fire’,0,”,’An unflinching look at the how the battle over abortion rights has played out in the United States over the last 15 years’,0.475748,’2006-09-09′,25,152,’Released’,’Exploring the Issue that Divides the World’,8.00,10),(44264,’True Grit’,38000000,’http://www.truegritmovie.com/’,’Following the murder of her father by hired hand Tom Chaney, 14-year-old farm girl Mattie Ross sets out to capture the killer. To aid her, she hires the toughest U.S. Marshal she can find, a man with \”true grit,\” Reuben J. \”Rooster\” Cogburn. Mattie insists on accompanying Cogburn, whose drinking, sloth, and generally reprobate character do not augment her faith in him. Against his wishes, she joins him in his trek into the Indian Nations in search of Chaney. They are joined by Texas Ranger LaBoeuf, who wants Chaney for his own purposes. The unlikely trio find danger and adventure on the journey, and each has his or her \”grit\” tested.’,49.292384,’2010-12-22′,252276927,110,’Released’,’Punishment Comes One Way or Another.’,7.20,1668),(44413,’La niña santa’,1400000,”,’Amalia is an adolescent girl who is caught in the throes of her emerging sexuality and her deeply held passion for her Catholic faith. These two drives mingle when the visiting Dr. Jano takes advantage of a crowd to get inappropriately close to the girl. Repulsed by him but inspired by an inner burning, Amalia decides it is her God-given mission to save the doctor from his behavior, and she begins to stalk Dr. Jano, becoming a most unusual voyeur.’,0.684881,’2004-05-06′,0,106,’Released’,’She is both temptation and salvation.’,6.80,10),(44490,’Chuck & Buck’,0,”,’Buck is a man-child who has lived his existence in a life of kindergarten collages and lollipops. Buck remembers his old childhood friend Chuck, with whom he feels a need to reconnect with after having invited him to his mother\’s funeral. Buck treks out to LA where Chuck, now a music record executive, is living his life. Buck ends up developing an obsession with Chuck and begins stalking him.’,0.812855,’2000-01-21′,0,96,’Released’,’REMEMBER THOSE GAMES WE USED TO PLAY?’,5.70,16),(44555,’ä¸�æ�ªæ��æ¡�æ��å¥�’,0,”,’Wang is a gloomy, cunning and avaricious noodle shop owner in a desert town in China. His neglected, sharp-tongued wife is involved in a secret affair with Li, one of Wangâ��s employees. A timid man, Li reluctantly keeps the gun his lover has bought to kill her husband. But Wang is watching their every move. He bribes patrol officer Zhang to murder the illicit couple. It seems like a perfect plan: the affair will come to a cruel, bloody but satisfying endâ�¦ or so he thinks. The equally wicked Zhang has an agenda of his own. As the plot twists, more blood will flow, and ever greater violence will eruptâ�¦’,1.416796,’2009-12-11′,0,95,’Released’,”,4.80,13),(44562,’Ed and His Dead Mother’,0,”,’A mourning son makes a deal to reanimate his one year dead mother, however things turn into an unexpected direction.’,0.023436,’1993-06-04′,0,93,’Released’,’A family reunion with some minor complications.’,5.50,12),(44564,’The Dilemma’,70000000,’http://www.thedilemmamovie.com’,’Longtime friends Ronny and Nick are partners in an auto-design firm. They are hard at work on a presentation for a dream project that would really launch their company. Then Ronny spots Nick\’s wife out with another man, and in the process of investigating the possible affair, he learns that Nick has a few secrets of his own. As the presentation nears, Ronny agonizes over what might happen if the truth gets out.’,14.780634,’2011-01-13′,67112664,111,’Released’,’Two best friends. Nothing could come between them… or could it?’,5.20,304),(44594,’Barry Munday’,0,”,’Barry Munday, a libido-driven wage slave who spends all his time either ogling, fantasizing about or trying to pick up women, wakes up in hospital after a freak attack only to find that his testicles have been removed.’,1.975941,’2010-03-13′,0,95,’Released’,’A comedy that hits you right where it counts.’,6.30,22),(44603,’Hereafter’,50000000,’http://hereafter.warnerbros.com/’,’A supernatural thriller centered on three people — a blue-collar American, a French journalist and a London school boy — who are touched by death in different ways.’,13.365715,’2010-10-15′,105197635,129,’Released’,’Touched by death. Changed by life.’,5.80,510),(44634,’Woman Thou Art Loosed’,3000000,”,’An adaptation of Bishop T.D. Jakes\’ self-help novel, chronciling a woman\’s struggle to come to terms with her legacy of abuse, addiction and poverty.’,0.019984,’2004-09-30′,6804016,94,’Released’,”,5.00,3),(44638,’The Tempest’,20000000,’http://www.tempest-themovie.com/’,’An adaptation of the play by William Shakespeare. Prospera (a female version of Shakespeare\’s Prospero) is the usurped ruler of Milan who has been banished to a mysterious island with her daughter. Using her magical powers, she draws her enemies to the island to exact her revenge.’,3.620537,’2010-12-10′,346594,110,’Released’,”,6.00,31),(44639,’Inside Job’,2000000,’http://www.sonyclassics.com/insidejob/’,’A film that exposes the shocking truth behind the economic crisis of 2008. The global financial meltdown, at a cost of over $20 trillion, resulted in millions of people losing their homes and jobs. Through extensive research and interviews with major financial insiders, politicians and journalists, Inside Job traces the rise of a rogue industry and unveils the corrosive relationships which have corrupted politics, regulation and academia.’,16.930914,’2010-10-08′,7871522,109,’Released’,’The film that cost $20,000,000,000,000 to make.’,7.70,286),(44718,’Get Low’,7500000,”,’A movie spun out of equal parts folk tale, fable and real-life legend about the mysterious, 1930s Tennessee hermit who famously threw his own rollicking funeral party… while he was still alive.’,6.557643,’2010-01-22′,0,103,’Released’,’Every secret dies somewhere.’,6.50,100),(44754,’Margaret’,14000000,’http://www.foxsearchlight.com/margaret/’,’A young woman witnesses a bus accident, and is caught up in the aftermath, where the question of whether or not it was intentional affects many people\’s lives.’,4.898424,’2011-09-30′,46495,149,’Released’,”,6.10,86),(44770,’The Exploding Girl’,0,”,’On a summer break from college, Ivy, a young epileptic woman, struggles to balance her feelings for her fledgling boyfriend while her friend Al crashes with her for the season.’,0.611081,’2009-04-22′,0,80,’Released’,”,6.40,15),(44826,’Hugo’,170000000,’http://www.hugomovie.com/’,’Hugo is an orphan boy living in the walls of a train station in 1930s Paris. He learned to fix clocks and other gadgets from his father and uncle which he puts to use keeping the train station clocks running. The only thing that he has left that connects him to his dead father is an automaton (mechanical man) that doesn\’t work without a special key which Hugo needs to find to unlock the secret he believes it contains. On his adventures, he meets with a shopkeeper, George Melies, who works in the train station and his adventure-seeking god-daughter. Hugo finds that they have a surprising connection to his father and the automaton, and he discovers it unlocks some memories the old man has buried inside regarding his past.’,32.319043,’2011-11-22′,185770160,126,’Released’,’One of the most legendary directors of our time takes you on an extraordinary adventure.’,7.00,2141),(44833,’Battleship’,209000000,”,’When mankind beams a radio signal into space, a reply comes from â��Planet Gâ��, in the form of several alien crafts that splash down in the waters off Hawaii. Lieutenant Alex Hopper is a weapons officer assigned to the USS John Paul Jones, part of an international naval coalition which becomes the world\’s last hope for survival as they engage the hostile alien force of unimaginable strength. While taking on the invaders, Hopper must also try to live up to the potential his brother, and his fiancée\’s father, Admiral Shane, expect of him.’,64.928382,’2012-04-11′,303025485,131,’Released’,’The Battle for Earth Begins at Sea’,5.50,2114),(44835,’Hesher’,7000000,’http://www.hesherthemovie.com/’,’A young boy has lost his mother and is losing touch with his father and the world around him. Then he meets Hesher who manages to make his life even more chaotic.’,13.635828,’2010-01-22′,382946,106,’Released’,’Sometimes life gives you the finger and sometimes it gives you…’,6.70,212),(44853,’The Claim’,0,”,’A prospector sells his wife and daughter to another gold miner for the rights to a gold mine. Twenty years later, the prospector is a wealthy man who owns much of the old west town named Kingdom Come. But changes are brewing and his past is coming back to haunt him. A surveyor and his crew scouts the town as a location for a new railroad line and a young woman suddenly appears in the town and is evidently the man\’s daughter.’,2.996284,’2000-12-29′,0,120,’Released’,’Everything has a price.’,5.60,17),(44857,’Molly’,0,”,’Molly McKay is a profoundly autistic twenty-something woman who has lived in an institution from a young age following her parents\’ death in a car accident. When the institution must close due budget cuts, Molly is left in the charge of her neurotypical, older brother, Buck McKay, an advertising executive and perennial bachelor. Buck allows her to undergo an experimental medical treatment, with unexpectedly drastic results.’,2.636193,’1999-10-22′,0,102,’Released’,’Innocence is bliss. See the world through her.’,5.50,14),(44865,’ä¸�代å®�師’,3860000,”,’Ip Man\’s peaceful life in Foshan changes after Gong Yutian seeks an heir for his family in Southern China. Ip Man then meets Gong Er who challenges him for the sake of regaining her family\’s honor. After the Second Sino-Japanese War, Ip Man moves to Hong Kong and struggles to provide for his family. In the mean time, Gong Er chooses the path of vengeance after her father was killed by Ma San.’,19.947265,’2013-01-08′,64076736,130,’Released’,’In Martial Arts there is no right or wrong, only the last man standing.’,6.30,273),(44896,’Rango’,135000000,’http://www.rangomovie.com/’,’When Rango, a lost family pet, accidentally winds up in the gritty, gun-slinging town of Dirt, the less-than-courageous lizard suddenly finds he stands out. Welcomed as the last hope the town has been waiting for, new Sheriff Rango is forced to play his new role to the hilt.’,29.913530,’2011-03-02′,245724603,107,’Released’,’Heroes come in all different colors.’,6.60,2051),(44912,’Green Lantern’,200000000,’http://greenlanternmovie.warnerbros.com/’,’For centuries, a small but powerful force of warriors called the Green Lantern Corps has sworn to keep intergalactic order. Each Green Lantern wears a ring that grants him superpowers. But when a new enemy called Parallax threatens to destroy the balance of power in the Universe, their fate and the fate of Earth lie in the hands of the first human ever recruited.’,51.872839,’2011-06-16′,219851172,114,’Released’,’In our darkest hour, there will be light.’,5.10,2487),(44943,’Battle: Los Angeles’,70000000,’http://www.battlela.com’,’The Earth is attacked by unknown forces. As people everywhere watch the world\’s great cities fall, Los Angeles becomes the last stand for mankind in a battle no one expected. It\’s up to a Marine staff sergeant and his new platoon to draw a line in the sand as they take on an enemy unlike any they\’ve ever encountered before.’,49.199234,’2011-03-08′,202466756,116,’Released’,’It\’s not war. It\’s survival.’,5.50,1448),(44944,’For Colored Girls’,0,’http://www.forcoloredgirlsmovie.com/’,’About existence from the perspective of 20 nameless black females. Each of the women portray one of the characters represented in the collection of twenty poems, revealing different issues that impact women in general and women of color in particular.’,1.934524,’2010-11-05′,37000000,134,’Released’,’Many voices. One poem.’,7.00,22),(44945,’Trust’,9500000,’http://www.trustmovie2011.com/’,’A suburban family is torn apart when fourteen-year-old Annie meets her first boyfriend online. After months of communicating via online chat and phone, Annie discovers her friend is not who he originally claimed to be. Shocked into disbelief, her parents are shattered by their daughter\’s actions and struggle to support her as she comes to terms with what has happened to her once innocent life.’,21.230737,’2010-09-10′,120000,104,’Released’,’What took her family years to build, a stranger stole in an instant.’,6.60,307),(44990,’Breaking Upwards’,0,”,’\’Breaking Upwards\’ explores a young, real-life New York couple who, four years in and battling codependency, decide to intricately strategize their own break up. Based on an actual experiment devised by director/actor Daryl Wein and actress Zoe Lister-Jones, the film loosely interprets a year in their lives exploring alternatives to monogamy, and the madness that ensues. An uncensored look at young love, lust, and the pangs of codependency, \’Breaking Upwards\’ follows its characters as they navigate each others\’ emotions across the city they love. It begs the question: is it ever possible to grow apart together?’,0.674570,’2009-03-14′,0,88,’Released’,”,5.60,12),(45054,’There Be Dragons’,0,’http://therebedragonsmovie.com/’,’Arising out of the horror of the Spanish Civil War, a candidate for canonization is investigated by a journalist who discovers his own estranged father had a deep, dark and devastating connection to the saint\’s life.While researching the life of Josemaria Escriva, the controversial founder of Opus Dei, the young journalist Robert uncovers hidden stories of his estranged father Manolo, and is taken on a journey through the dark, terrible secrets of his familyâ��s past.’,6.668679,’2011-03-25′,0,112,’Released’,”,5.90,27),(45132,’Super’,2500000,’http://www.thecrimsonbolt.com/’,’After his wife falls under the influence of a drug dealer, an everyday guy transforms himself into Crimson Bolt, a superhero with the best intentions, though he lacks for heroic skills.’,12.204569,’2010-09-09′,324138,96,’Released’,’Shut up, crime!’,6.60,441),(45138,’Gli intoccabili’,0,”,’After serving 12 years behind bars for armed robbery, tough guy Hank McCain finds himself the pawn of a ruthless mob runt\’s rebellion against a high level don. When McCain discovers that he\’s been betrayed and abandoned by his new employer, he retaliates with a high stakes Las Vegas casino heist that erupts into all-out war on the streets of Los Angeles, San Francisco and New York. Not blood, nor lust, nor wedding vows can come between McCain and his money…or his machine gun.’,0.700127,’1969-04-01′,0,116,’Released’,’Even the Mafia Calls Him Mister!’,7.30,6),(45145,’Johnny Suede’,500000,”,’A struggling young musician and devoted fan of Ricky Nelson wants to be just like his idol and become a rock star.’,1.354816,’1991-08-18′,0,97,’Released’,’Keeping up an image can be a full time job.’,4.70,13),(45153,’Eve\’s Bayou’,0,”,’The story is set in 1962 Louisiana. The big Batiste family is headed by charming doctor Louis. Though he is married to beautiful Roz, he has a weakness for attractive women patients. One day Louis is flirting with married and sexy Metty Mereaux, not knowing that he is observed by his youngest idealistic daughter Eve, who is there by accident. Eve can not forget the incident which is traumatic for her naivete and shares a secret with older sister Cisely. Lies start to roll…’,1.126941,’1997-09-07′,0,109,’Released’,’The secrets that hold us together can also tear us apart.’,6.10,27),(45226,’The Pursuit of D.B. Cooper’,0,”,’A speculation on the fate of the famous hijacker who parachuted with his ransom and disappeared in the mountains. Has Cooper succeeded in following a meticulous plan to disappear into anonymity despite the best efforts of a dogged cop?’,1.379643,’1981-11-13′,0,100,’Released’,’Who says you can\’t take it with you?’,6.80,4),(45243,’The Hangover Part II’,80000000,’http://hangoverpart2.warnerbros.com/’,’The Hangover crew heads to Thailand for Stu\’s wedding. After the disaster of a bachelor party in Las Vegas last year, Stu is playing it safe with a mellow pre-wedding brunch. However, nothing goes as planned and Bangkok is the perfect setting for another adventure with the rowdy group.’,58.040149,’2011-05-25′,254455986,102,’Released’,’The Wolfpack Is Back’,6.20,3739),(45269,’The King\’s Speech’,15000000,’http://www.kingsspeech.com/’,’The King\’s Speech tells the story of the man who became King George VI, the father of Queen Elizabeth II. After his brother abdicates, George (\’Bertie\’) reluctantly assumes the throne. Plagued by a dreaded stutter and considered unfit to be king, Bertie engages the help of an unorthodox speech therapist named Lionel Logue. Through a set of unexpected techniques, and as a result of an unlikely friendship, Bertie is able to find his voice and boldly lead the country into war.’,54.053576,’2010-09-06′,414211549,118,’Released’,’Find your voice.’,7.60,2752),(45272,’Country Strong’,15000000,’http://www.countrystrong-movie.com/’,’Soon after the rising young singer-songwriter Beau Williams gets involved with a fallen, emotionally unstable country star Kelly Canter, the pair embark on a career resurrection tour helmed by her husband/manager James and featuring a beauty queen-turned-singer Chiles Stanton. Between concerts, romantic entanglements and old demons threaten to derail them all.’,7.809701,’2010-12-22′,20529194,117,’Released’,’It doesn\’t matter where you\’ve been as long as you come back strong.’,5.90,80),(45317,’The Fighter’,25000000,’http://www.thefightermovie.com’,’The Fighter, is a drama about boxer \”Irish\” Micky Ward\’s unlikely road to the world light welterweight title. His Rocky-like rise was shepherded by half-brother Dicky, a boxer-turned-trainer who rebounded in life after nearly being KO\’d by drugs and crime.’,31.019381,’2010-12-17′,93617009,116,’Released’,’Every dream deserves a fighting chance.’,7.20,1486),(45324,’Casino Jack’,12500000,’http://www.casinojack-movie.com/’,’Based on a true story, a hot shot Washington DC lobbyist and his protégé go down hard as their schemes to peddle influence lead to corruption and murder.’,6.546037,’2010-09-16′,1083683,108,’Released’,’Honor. Integrity. Principles. Everything is negotiable.’,6.00,94),(45380,’ç�¯ç��ç��ç�³å¤´’,0,”,’Three thieves try to steal a valuable jade that is tightly guarded by a security chief. But the security guards are not the only obstacle these thieves are facing. An extremely unlucky internationally known master thief is also trying to get a hand on this piece of precious jade. What would be the final destination of this piece of crazy stone?’,1.685020,’2006-01-01′,0,98,’Released’,”,6.90,22),(45610,’Machine Gun Preacher’,30000000,’http://www.machinegunpreacher.org/movie/’,’The true story of Sam Childers, a former drug-dealing biker who finds God and became a crusader for hundreds of Sudanese children who\’ve been kidnapped and pressed into duty as soldiers.’,13.268936,’2011-09-23′,2527904,129,’Released’,’Hope is the greatest weapon of all’,6.40,286),(45612,’Source Code’,32000000,’http://www.enterthesourcecode.com/’,’Decorated soldier Captain Colter Stevens wakes up in the body of an unknown man, discovering he\’s involved in a mission to find the bomber of a Chicago commuter train. He learns he\’s part of a top-secret experimental program that enables him to experience the final 8 minutes of another person\’s life. Colter re-lives the train incident over and over again, gathering more clues each time. But can he discover who is responsible for the attack before the next one happens?’,59.198880,’2011-03-30′,147332697,93,’Released’,’Make Every Second Count’,7.10,2699),(45649,’Rubber’,500000,’http://www.rubberfilm.com/’,’In the California desert, the adventures of a telepathic killer-tire, mysteriously attracted by a very pretty girl, as witnessed by incredulous onlookers.’,9.108949,’2010-07-09′,98017,85,’Released’,’Are you TIRED of the expected?’,5.70,251),(45650,’The Hole’,0,’http://www.theholein3d.com/’,’After moving into a new neighbourhood, brothers Dane & Lucas and their neighbour Julie discover a bottomless hole in the basement of their home. They find that once the hole is exposed, evil is unleashed. With strange shadows lurking around every corner and nightmares coming to life, they are forced to come face to face with their darkest fears to put an end to the mystery of THE HOLE.’,9.983004,’2009-09-09′,0,92,’Released’,’What Are You So Afraid Of?’,5.60,244),(45658,’Everything Must Go’,5000000,’http://www.everythingmustgo-themovie.com’,’When an alcoholic relapses, causing him to lose his wife and his job, he holds a yard sale on his front lawn in an attempt to start over. A new neighbor might be the key to his return to form.’,9.169411,’2010-10-15′,2614773,97,’Released’,’Lost is a good place to find yourself’,6.00,208),(45767,’Time Changer’,0,”,’The year is 1890 and Bible professor Russell Carlisle has written a new manuscript entitled \”The Changing Times\”. His colleague, Dr. Norris Anderson, believes that what Carlisle has written could greatly affect the future of coming generations and, using his secret time machine, Anderson sends Carlisle over 100 years into the future, offering him a glimpse of where his beliefs will lead.’,0.339757,’2002-10-25′,0,95,’Released’,’What if you could see the future impact of your beliefs? One man will.’,5.20,9),(45791,’And When Did You Last See Your Father?’,0,”,’The story of a son\’s conflicting memories of his dying father.’,1.939054,’2007-10-05′,92,92,’Released’,’Between every father and his son there is a story to be told.’,6.90,13),(45881,’The Bridge of San Luis Rey’,0,’http://www.thebridgeofsanluisreymovie.com/’,’The Bridge of San Luis Rey is American author Thornton Wilder\’s second novel, first published in 1927 to worldwide acclaim. It tells the story of several interrelated people who die in the collapse of an Inca rope-fiber suspension bridge in Peru, and the events that lead up to their being on the bridge.[ A friar who has witnessed the tragic accident then goes about inquiring into the lives of the victims, seeking some sort of cosmic answer to the question of why each had to die. The novel won the Pulitzer Prize in 1928.’,0.515677,’2004-01-01′,0,120,’Released’,”,5.40,15),(45958,’Biutiful’,0,”,’This is a story of a man in free fall. On the road to redemption, darkness lights his way. Connected with the afterlife, Uxbal is a tragic hero and father of two who\’s sensing the danger of death. He struggles with a tainted reality and a fate that works against him in order to forgive, for love, and forever.’,13.930763,’2010-10-20′,25147786,148,’Released’,’You don\’t choose your family. We all belong to somebody, but to belong to Uxbal and Marambra, is both a blessing and a curse.’,7.00,291),(46138,’Made in Dagenham’,7200000,”,’A dramatization of the 1968 strike at the Ford Dagenham car plant, where female workers walked out in protest against sexual discrimination.’,6.138802,’2010-09-11′,0,113,’Released’,’In the fight for equal rights, an ordinary woman achieves something extraordinary.’,6.60,94),(46146,’Trolljegeren’,3500000,’http://trolljegeren.no/’,’A group of students investigates a series of mysterious bear killings, but learns that there are much more dangerous things going on. They start to follow a mysterious hunter, learning that he is actually a troll hunter.’,12.982319,’2010-10-29′,4159678,103,’Released’,’You believe it when you see it!’,6.70,583),(46195,’Rio’,90000000,’http://www.riomovies.com/’,’Captured by smugglers when he was just a hatchling, a macaw named Blu never learned to fly and lives a happily domesticated life in Minnesota with his human friend, Linda. Blu is thought to be the last of his kind, but when word comes that Jewel, a lone female, lives in Rio de Janeiro, Blu and Linda go to meet her. Animal smugglers kidnap Blu and Jewel, but the pair soon escape and begin a perilous adventure back to freedom — and Linda.’,46.200042,’2011-04-03′,484635760,96,’Released’,’1 out of every 8 Americans is afraid of flying. Most of them don\’t have feathers.’,6.50,2166),(46252,’Rust’,0,”,’In the midst of a midlife crisis of faith, a man finds hope where he least expects it â�� his hometown. James Moore (Golden Globe nominee Corbin Bernsen) is a former pastor who returns home to discover a family new to the area has been killed in a mysterious fire, and his childhood friend is implicated in the murder. Convinced of his friendâ��s innocence, James sets out on a mission to find the truthâ�¦ and in the process, rediscovers his own lost faith. An uplifting drama about faith, family, and the powerful ties that bind a community together.’,0.399491,’2010-10-07′,0,94,’Released’,”,0.00,0),(46256,’The Lion of Judah’,15000000,’http://www.lionofjudahthemovie.com/’,’Upon learning that Judah has been trapped in the clutches of the townspeople and faces the possibility of being the sacrifice at the annual Festival, the stable mates leave their cozy barn and embark on an adventure to find and free their friend.’,0.165909,’2011-06-03′,0,87,’Released’,’The lamb who saved the world!’,5.80,2),(46261,’Don\’t Be Afraid of the Dark’,25000000,’http://www.dontbeafraidofthedark.com/’,’A young girl sent to live with her father and his new girlfriend discovers creatures in her new home who want to claim her as one of their own.’,14.562197,’2010-11-06′,36993168,99,’Released’,’Fear is never just make believe’,5.40,341),(46332,’Des hommes et des dieux’,4000000,’http://www.sonyclassics.com/ofgodsandmen/’,’French drama based on the 1996 kidnapping and killing of seven monks in Algeria. A group of Trappist monks reside in the monastery of Tibhirine in Algeria, where they live in harmony with the largely muslim population. When a bloody conflict between Algeria\’s army and Muslim Jihadi insurgents disrupts the peace, they are forced to consider fleeing the monastery and deserting the villagers they have ministered to. In the face of deadly violence the monks wrestle with their faith and their convictions, eventually deciding to stay and help their neighbours keep the army and the insurgents at bay.’,4.992475,’2010-05-18′,41424067,120,’Released’,’In the face of terror, their greatest weapon was faith…’,6.50,91),(46415,’Neal \’n\’ Nikki’,0,”,’The film, as its name implies, centres on Gurneal \”Neal\” Ahluwalia and Nikkita \”Nikki\” Bakshi (Uday Chopra and Tanisha), two Canadians of Indian descent, born and raised in British Columbia. Before getting married Neal wants to spend one month on vacation in total freedom by meeting women, going to clubs…’,0.285131,’2005-12-09′,0,122,’Released’,’Nice is out…Naughty is in’,2.30,4),(46420,’The Loved Ones’,0,’http://www.thelovedonesmovie.com/’,’Lola Stone asked Brent Mitchell to the prom, but Brent said no, and now he\’s screwed. What happens when Lola doesn\’t get what she wants? She enlists Daddy\’s help to throw a prom of her own, where she is queen and Brent is king — whether he likes it or not. THE LOVED ONES is what happens when puppy love goes horribly, violently wrong. Brent should have said yes…’,4.989985,’2009-09-13′,0,84,’Released’,’Don\’t break her heart’,6.60,207),(46435,’Topsy-Turvy’,0,”,’After their production \”Princess Ida\” meets with less-than-stunning reviews, the relationship between Gilbert and Sullivan is strained to breaking. Their friends and associates attempt to get the two to work together again, which opens the way to \”The Mikado,\” one of the duo\’s greatest successes.’,8.628519,’1999-09-03′,0,160,’Released’,’Gilbert & Sullivan & So Much More’,6.70,41),(46503,’All Good Things’,0,”,’Newly-discovered facts, court records and speculation are used to elaborate the true love story and murder mystery of the most notorious unsolved murder case in New York history.’,20.086645,’2010-12-03′,0,101,’Released’,’The perfect love story. Until it became the perfect crime.’,5.90,286),(46528,’The Warrior\’s Way’,42000000,’http://www.iamrogue.com/thewarriorsway’,’An Asian assassin (Dong-gun Jang) is forced to hide in a small town in the American Badlands. Also starring Kate Bosworth, Danny Huston, Tony Cox and Academy Award winner Geoffrey Rush.’,7.349497,’2010-12-02′,11087569,100,’Released’,’Assassin. Hero. Legend.’,6.30,136),(46529,’I Am Number Four’,50000000,’http://www.findnumberfour.com/’,’A teenage fugitive with an incredible secret races to stay one step ahead of the mysterious forces seeking destroy him in this sci-fi action thriller. With three dead and one on the run, the race to find the elusive Number Four begins. Outwardly normal teen John Smith never gets too comfortable in the same identity, and along with his guardian, Henri, he is constantly moving from town to town. With each passing day, John gains a stronger grasp on his extraordinary new powers, and his bond to the beings that share his fantastic fate grows stronger.’,43.450266,’2011-02-18′,144492830,109,’Released’,’Three like him have already been killedâ�¦he is Number Four.’,5.90,1567),(46705,’Blue Valentine’,3500000,’http://www.bluevalentinemovie.com/’,’Dean and Cindy live a quiet life in a modest neighborhood. They appear to have the world at their feet at the outset of the relationship. However, his lack of ambition and her retreat into self-absorption cause potentially irreversible cracks in their marriage.’,26.881611,’2010-12-27′,16566240,112,’Released’,’Nobody Baby But You And Me’,6.90,890),(46727,’Speedway Junky’,1000000,’http://www.speedwayjunky-themovie.com/’,’A naive drifter runs away from his army father in hopes of making it on the car racing circuit. In Las Vegas, he meets a young scam artist, who develops a crush on him. He is then introduced to a whole gang led by a young hustler. The racer-to-be then gets a lesson in the wild side, getting involved in one situation after another. Patsy Kensit makes a cameo as another hustler and Daryl Hannah appears as the scam artist\’s surrogate mom.’,0.340019,’1999-02-11′,0,104,’Released’,’There\’s no place for dreams on the streets of Vegas’,5.20,7),(46729,’Fetching Cody’,1,”,’Art, a drug-addicted dealer and hustler, arrives at his girlfriend Cody\’s apartment to find that she has overdosed on heroin. He tries to fix things by traveling back in time in an attempt to prevent her death.’,0.077876,’2005-10-01′,0,87,’Released’,’How far would you go for love?’,6.80,6),(46738,’Incendies’,6800000,’http://www.sonyclassics.com/incendies/’,’A mother\’s last wishes send twins Jeanne and Simon on a journey to Middle East in search of their tangled roots. Adapted from Wajdi Mouawad\’s acclaimed play, Incendies tells the powerful and moving tale of two young adults\’ voyage to the core of deep-rooted hatred, never-ending wars and enduring love.’,21.285206,’2010-09-04′,7103838,130,’Released’,’The search began at the opening of their mother\’s will.’,7.90,479),(46829,’Barney\’s Version’,30000000,’http://www.barneysversionthemovie.com/’,’The picaresque and touching story of the politically incorrect, fully lived life of the impulsive, irascible and fearlessly blunt Barney Panofsky.’,4.952735,’2010-10-26′,8454301,134,’Released’,’First he got married. Then he got married again. Then he met the love of his life.’,7.20,129),(46838,’Tucker and Dale vs Evil’,5000000,”,’Two hillbillies are suspected of being killers by a group of paranoid college kids camping near the duo\’s West Virginian cabin. As the body count climbs, so does the fear and confusion as the college kids try to seek revenge against the pair.’,19.940245,’2010-01-22′,5476793,89,’Released’,’Evil just messed with the wrong hillbillies.’,7.30,847),(46849,’Eye of the Dolphin’,2500000,”,’Alyssa is a troubled 14-year old, suspended from school a year after her mother has drowned. Her grandmother Lucy, at wit\’s end, decides to take Alyssa to her father, James, whom Alyssa thought was dead for years. He studies dolphin communication at Smith\’s Point, on the Grand Bahama Island. James has not known of Alyssa\’s existence and is clueless about parenthood. The women arrive at the same time that James may lose his research operation to a tourist attraction. Father, daughter, dolphins, and town are on a collision course. Alyssa and James get encouragement from James\’s girlfriend and her father. It\’s the dolphins who can teach, and Alyssa who discovers how to listen.’,0.301884,’2007-08-24′,71904,100,’Released’,’She found her voice in the ocean… And within herself.’,7.10,7),(46889,’Living Out Loud’,12000000,”,’Dramatic comedy about two unlikely people who find each other while looking for love. Judith Nelson (Holly Hunter) is suddenly single after discovering her husband of fifteen years, a successful doctor (Martin Donovan), has been having an affair with a younger woman. Judith stews, plans, plots and fantasizes, but she can\’t decide what to do with her life until she goes out to a night club to see singer Liz Bailey (Queen Latifah), who is full of advice on life and love. While out on the town, Judith is suddenly kissed by a total stranger, which opens her eyes to new possibilities … which is when she notices Pat (Danny De Vito), the elevator operator in her building.’,0.700792,’1998-10-30′,12902790,100,’Released’,”,5.30,11),(46989,’Blue Car’,1000000,”,’Gifted 18-year-old Meg has been abandoned by her father and neglected by her hardworking mother. Left to care for her emotionally disturbed younger sister, her world begins to unravel. She finds an outlet in writing poetry and support from her English teacher, Mr. Auster. But what started out as a mentoring relationship begins to get a bit more complex.’,0.672695,’2002-01-11′,464000,92,’Released’,’Ready or not… the future comes just the same.’,6.70,13),(47088,’The Extra Man’,7000000,’http://www.theextramanmovie.com/’,’THE EXTRA MAN is a sophisticated and moving comedy from filmmakers Shari Springer Berman and Robert Pulcini. THE EXTRA MAN follows Louis Ives (Paul Dano), a lonely dreamer who fancies himself the hero of an F. Scott Fitzgerald novel. When a deeply embarrassing incident forces him to leave his job at an exclusive Princeton prep school, Louis heads to New York City to make a fresh start. He quickly finds a 9 to 5 job at an environmental magazine, where he encounters an entrancing, green-obsessed co-worker Mary (Katie Holmes).’,2.267780,’2010-08-01′,453079,108,’Released’,’They\’re not gigolos, they\’re gentlemen.’,5.90,29),(47327,’Drive Angry’,50000000,’http://www.driveangry3d.com/’,’Milton is a hardened felon who has broken out of Hell, intent on finding the vicious cult who brutally murdered his daughter and kidnapped her baby. He joins forces with Piper, a sexy, tough-as-nails waitress with a 69 Charger, who\’s also seeking redemption of her own. Caught in a deadly race against time, Milton has three days to avoid capture, avenge his daughter\’s death, and save her baby before she\’s mercilessly sacrificed by the cult.’,30.387148,’2011-02-24′,28931401,105,’Released’,’One hell of a ride.’,5.30,600),(47452,’Love and Death on Long Island’,0,”,’Giles De\’Ath is a widower who doesn\’t like anything modern. He goes to movies and falls in love with film star, Ronnie Bostock. He then investigates everything about the movie and Ronnie. After that he travels to Long Island city where Ronnie lives and meets him, pretending that Ronnie is a great actor and that\’s why Giles admires him.’,0.933891,’1997-01-01′,0,93,’Released’,”,6.90,11),(47502,’Faithful’,13000000,”,’A depressed housewife whose husband is having an affair contemplates suicide, but changes her mind when she faces death by a killer hired to do her in.’,1.647335,’1996-04-03′,9789900,91,’Released’,’A comedy about a wife, her husband and his hit man.’,4.80,4),(47534,’Fighting Tommy Riley’,0,”,’An aging trainer and a young fighter, both in need of a second chance, team-up to overcome the demons of their past…and chase the dreams of their future.’,0.045429,’2005-05-06′,0,0,’Released’,”,5.30,4),(47546,’I Want Your Money’,0,’http://www.iwantyourmoney.net/’,’Two versions of the American dream now stand in sharp contrast. One views the money you earned as yours and best allocated by you; the other believes that an elite in Washington knows best how to allocate your wealth. One champions the traditional American dream, which has played out millions of times through generations of Americans, of improving one\’s lot in life and even daring to dream and build big. The other holds that there is no end to the \”good\” the government can do by taking and spending other peoples\’ money in an ever-burgeoning list of programs. The documentary film I Want Your Money exposes the high cost in lost freedom and in lost opportunity to support a Leviathan-like bureaucratic state.’,0.084344,’2010-07-06′,0,92,’Released’,’The film contrasts two views of role that the federal government should play in our daily lives using the words and actions of Ronald Reagan and Barack Obama.’,3.80,5),(47607,’Tiny Furniture’,65000,’http://tinyfurniture.com/’,’After graduating from film school, Aura returns to New York to live with her photographer mother, Siri, and her sister, Nadine, who has just finished high school. Aura is directionless and wonders where to go next in her career and her life. She takes a job in a restaurant and tries unsuccessfully to develop relationships with men, including Keith, a chef where she works, and cult Internet star Jed.’,2.380332,’2010-11-12′,416498,99,’Released’,’Aura would like you to know that she is having a very, very hard time.’,5.60,59),(47686,’Dream with the Fishes’,0,”,’Terry is a suicidal voyeur who treats a dying addict to a final binge, but Terry will only do this if he promises to kill him.’,0.948316,’1997-01-01′,0,97,’Released’,’An oddball odyssey about voyeurism, LSD and nude bowling!’,7.70,10),(47692,’Felicia\’s Journey’,0,”,’A solitary middle-aged bachelor and a naive Irish teenager transform one another\’s lives to arrive at a place of recognition, redemption and wisdom in Atom Egoyan\’s adaptation of William Trevor\’s celebrated 1994 novel. Seventeen and pregnant, Felicia travels to England in search of her lover and is found instead by Joseph Ambrose Hilditch, a helpful catering manager whose kindness masks a serial killer. Hilditch has murdered several young women, but he has no conscious awareness of the crimes; like Felicia, he doesn\’t see his true self. Felicia\’s Journey is a story of innocence lost and regained: Felicia awakens to the world\’s dangers and duplicities; and Hilditch, who grew up lonely and unloved, comes to realize what was taken from him, and what he himself has taken.’,0.470645,’1999-11-24′,0,116,’Released’,”,6.60,23),(47816,’3 Strikes’,6000000,”,’Brian Hooks plays a character who is just released from jail. And the state adopts a \”3 strikes\” rule for felons that involves serious penalties. Hooks has 2 strikes, and wants to change his life for the better. When a friend picks him up, they are pulled over, and his friend shoots at police officers, and Hooks escapes. Now Hooks, a wanted man, must clear his name of having nothing to do with the shooting.’,1.433692,’2000-03-01′,9000000,82,’Released’,’the few, the proud, the paroled.’,5.90,15),(47889,’Ruby in Paradise’,800000,”,’Reeling from her mother\’s recent death, Ruby Lee Gissing relocates to Florida to start anew. After finding a job at a souvenir store, Ruby becomes friends with the shop\’s owner, Mildred Chambers, and slowly acclimates to her new surroundings. Before long, she\’s juggling the affections of Mildred\’s Lothario son, Ricky, and the good-natured Mike. As she wavers between Ricky and Mike, Ruby also tries to come to terms with her past.’,0.594240,’1993-10-08′,1001437,114,’Released’,’A woman\’s search for herself.’,5.60,10),(47890,’Sphinx’,14000000,”,’Egyptologist Erica Baron finds more than she bargained for during her long-planned trip to The Land of the Pharoahs – murder, theft, betrayal, love, and a mummy\’s curse!’,0.310513,’1981-02-11′,439564,118,’Released’,’Someone is hunting tourists out of season.’,6.00,2),(47933,’Independence Day: Resurgence’,165000000,’http://www.warof1996.com’,’We always knew they were coming back. Using recovered alien technology, the nations of Earth have collaborated on an immense defense program to protect the planet. But nothing can prepare us for the aliensâ�� advanced and unprecedented force. Only the ingenuity of a few brave men and women can bring our world back from the brink of extinction.’,48.775723,’2016-06-22′,389681935,120,’Released’,’We had twenty years to prepare. So did they.’,4.90,2491),(47941,’Under the Rainbow’,20000000,”,’In World War II era Los Angeles, the manager of the Culver Hotel leaves his nephew in charge for a weekend. The nephew changes the name to the Hotel Rainbow and overbooks with royalty, assassins, secret agents, Japanese tourists, and munchkins (from the cast of _Wizard of Oz, The (1939)_ ). Secret Service agent Bruce Thorpe and casting director Annie Clark find romance amidst the intrigue and confusion.’,0.173964,’1981-07-31′,2297493,98,’Released’,’Who knew so many little people would throw such a huge party?’,4.90,7),(47964,’A Good Day to Die Hard’,92000000,’http://www.diehardmovie.com/’,’Iconoclastic, take-no-prisoners cop John McClane, finds himself for the first time on foreign soil after traveling to Moscow to help his wayward son Jack – unaware that Jack is really a highly-trained CIA operative out to stop a nuclear weapons heist. With the Russian underworld in pursuit, and battling a countdown to war, the two McClanes discover that their opposing methods make them unstoppable heroes.’,65.402595,’2013-02-06′,304654182,98,’Released’,’Yippee Ki-Yay Mother Russia’,5.20,3493),(48034,’Les petits mouchoirs’,25000000,’http://www.littlewhiteliesmovie.co.uk/’,’Despite a traumatic event, a group of friends decide to go ahead with their annual beach vacation. Their relationships, convictions, sense of guilt and friendship are sorely tested. They are finally forced to own up to the little white lies they\’ve been telling each other.’,15.279021,’2010-10-20′,48531470,154,’Released’,’The one thing friends can\’t escape is a few home truths.’,7.10,380),(48035,’Ordet’,0,”,’How do we understand faith and prayer, and what of miracles? August 1925 on a Danish farm. Patriarch Borgan has three sons: Mikkel, a good-hearted agnostic whose wife Inger is pregnant, Johannes, who believes he is Jesus, and Anders, young, slight, in love with the tailor\’s daughter. The fundamentalist sect of the girl\’s father is anathema to Borgan\’s traditional Lutheranism; he opposes the marriage until the tailor forbids it, then Borgan\’s pride demands that it happen. Unexpectedly, Inger, who is the family\’s sweetness and light, has problems with her pregnancy. The rational doctor arrives, and a long night brings sharp focus to at least four views of faith.’,3.225189,’1955-01-09′,0,126,’Released’,”,7.80,65),(48138,’Unknown’,30000000,’http://unknownmovie.warnerbros.com/’,’An American biologist attending a conference in Berlin awakens from a coma after a car accident, only to discover that someone has taken his identity and that no one, not even his wife, believes him. With the help of an illegal immigrant and a former Stazi agent, he sets out to prove who he is and find out why people are trying to kill him.’,38.643914,’2011-02-16′,130786397,113,’Released’,’Take Back Your Life’,6.50,1265),(48171,’The Rite’,37000000,’http://whatdoyoubelieve.warnerbros.com/’,’Seminary student Michael Kovak (Colin O\’Donoghue) reluctantly attends exorcism school at the Vatican. While heâ��s in Rome, Michael meets an unorthodox priest, Father Lucas (Anthony Hopkins), who introduces him to the darker side of his faith, uncovering the devilâ��s reach even to one of the holiest places on Earth.’,11.492474,’2011-01-28′,96047633,114,’Released’,’You can only defeat it when you believe.’,5.80,556),(48217,’La veuve de Saint-Pierre’,0,”,’In 1850, on the isolated French island of Saint-Pierre, a murder shocks the natives. Two fishermen are arrested. One of them, Louis Ollivier, dies in custody. The other, Neel Auguste, is sentenced to death by the guillotine. The island is so small that it has neither a guillotine nor an executioner. While those are sent for Auguste is placed under the supervision of army Captain.’,1.780065,’2000-01-01′,0,112,’Released’,”,6.70,11),(48231,’A Dangerous Method’,15000000,’http://www.sonyclassics.com/adangerousmethod/’,’Seduced by the challenge of an impossible case, the driven Dr. Carl Jung takes the unbalanced yet beautiful Sabina Spielrein as his patient. Jungâ��s weapon is the method of his master, the renowned Sigmund Freud. Both men fall under Sabinaâ��s spell.’,27.133277,’2011-09-30′,27462041,99,’Released’,’Why deny what you desire the most.’,6.20,571),(48289,’The Debt’,20000000,’http://www.debt-themovie.com/’,’Rachel Singer is a former Mossad agent who tried to capture a notorious Nazi war criminal â�� the Surgeon of Birkenau â�� in a secret Israeli mission that ended with his death on the streets of East Berlin. Now, 30 years later, a man claiming to be the doctor has surfaced, and Rachel must return to Eastern Europe to uncover the truth. Overwhelmed by haunting memories of her younger self and her two fellow agents, the still-celebrated heroine must relive the trauma of those events and confront the debt she has incurred.’,14.857884,’2010-04-11′,45636368,113,’Released’,’Every secret comes with a price.’,6.30,257),(48309,’Prison’,1300000,”,’After Charles Forsyth was sent to the electric chair for a crime he didn\’t commit, he forever haunts the prison where he was executed. Flash forward several years when the prison is reopened, under the control of its new warden Eaton Sharpe, a former security guard who framed Charlie. When prisoners are ordered to break down the wall to the execution room, they unknowingly release the angry spirit of Charles Forsyth, a powerful being distributing his murderous rage to all, leading up to the Warden himself.’,7.605291,’1988-03-04′,354704,102,’Released’,’Horror Has A New Home.’,6.70,27),(48340,’Sanctum’,30000000,’http://www.sanctummovie.com/’,’The 3-D action-thriller Sanctum, from executive producer James Cameron, follows a team of underwater cave divers on a treacherous expedition to the largest, most beautiful and least accessible cave system on Earth. When a tropical storm forces them deep into the caverns, they must fight raging water, deadly terrain and creeping panic as they search for an unknown escape route to the sea. Master diver Frank McGuire (Richard Roxburgh) has explored the South Pacific\’s Esa-ala Caves for months. But when his exit is cut off in a flash flood, Frank\’s team–including 17-year-old son Josh (Rhys Wakefield) and financier Carl Hurley (Ioan Gruffudd)–are forced to radically alter plans. With dwindling supplies, the crew must navigate an underwater labyrinth to make it out. Soon, they are confronted with the unavoidable question: Can they survive, or will they be trapped forever?’,20.063165,’2011-02-03′,108609310,108,’Released’,’The only way out is down.’,5.80,339),(48382,’The Book of Mormon Movie, Volume 1: The Journey’,2000000,”,’The story of Lehi and his wife Sariah and their four sons: Laman, Lemuel, Sam, and Nephi. Lehi leaves Jerusalem because he prophesied unto the people concerning the destruction of Jerusalem, and they sought his life. He journeys into the wilderness with his family. He sends Nephi and his brethren back to Jerusalem after the brass plates and the family of Ishmael. The sons and daughters of Lehi marry the sons and daughters of Ishmael. They take their families and continue into the wilderness. Ishmael dies in the wilderness. They come to the sea. Nephi\’s brethren rebel against him. He confounds them, and builds a ship. They cross the sea to the promised land in the Americas. Lehi dies in the promised land. Nephi\’s brethren rebel against him again. Nephi departs again into the wilderness.’,0.031947,’2003-09-12′,1672730,120,’Released’,’2600 years ago, one family began a remarkable journey and set the course for a latter-day faith. This is their story.’,5.00,2),(48463,’Incident at Loch Ness’,1,”,’The German film director Werner Herzog sets out to the Scottish Highlands to make a documentary, \”Enigma of Loch Ness\”, exploding the myth of the Loch Ness Monster. Meanwhile, another documentary film crew is making a film about Werner Herzog, and we see the production of \”Enigma\” from their point of view. Shooting on a rented boat, tensions begin to rise as director Herzog and his producer, Zak Penn, find themselves at cross-purposes on the black surface of Loch Ness. Things get very edgy when the film crew starts seeing shapes in the murky water.’,1.452152,’2004-12-17′,0,94,’Released’,”,5.90,18),(48572,’Red State’,4000000,”,’Set in Middle America, a group of teens receive an online invitation for sex, though they soon encounter Christian fundamentalists with a much more sinister agenda.’,12.062371,’2011-08-19′,1104682,88,’Released’,’Fear God.’,5.90,316),(48620,’The Mighty Macs’,7000000,’http://www.themightymacs.com/’,’In the early 70s, Cathy Rush becomes the head basketball coach at a tiny, all-girls Catholic college. Though her team has no gym and no uniforms — and the school itself is in danger of being sold — Coach Rush looks to steer her girls to their first national championship.’,2.932784,’2009-10-21′,0,102,’Released’,”,5.00,15),(48988,’Hall Pass’,36000000,’http://hallpassmovie.warnerbros.com/’,’When best buds Rick and Fred begin to show signs of restlessness at home, their wives take a bold approach to revitalize their marriages: they grant the guys a \”hall pass\”, one week of freedom to do whatever they want. At first, it seems like a dream come true, but they quickly discover that their expectations of the single life – and themselves – are completely and hilariously out of sync with reality.’,27.115890,’2011-02-25′,83160734,105,’Released’,’One Week, No Rules’,5.40,611),(49010,’Hobo with a Shotgun’,3000000,’http://www.hobowithashotgun.com/’,’A vigilante homeless man pulls into a new city and finds himself trapped in urban chaos, a city where crime rules and where the city\’s crime boss reigns. Seeing an urban landscape filled with armed robbers, corrupt cops, abused prostitutes and even a pedophile Santa, the Hobo goes about bringing justice to the city the best way he knows how – with a 20-gauge shotgun. Mayhem ensues when he tries to make things better for the future generation. Street justice will indeed prevail.’,16.900433,’2011-05-06′,748453,86,’Released’,’Delivering justice, one shell at a time…’,5.70,211),(49013,’Cars 2′,200000000,’http://www.disney.go.com/cars/’,’Star race car Lightning McQueen and his pal Mater head overseas to compete in the World Grand Prix race. But the road to the championship becomes rocky as Mater gets caught up in an intriguing adventure of his own: international espionage.’,49.986590,’2011-06-11′,559852396,106,’Released’,’Ka-ciao!’,5.80,2033),(49017,’Dracula Untold’,70000000,”,’Vlad Tepes is a great hero, but when he learns the Sultan is preparing for battle and needs to form an army of 1,000 boys, including Vlad\’s son, he vows to find a way to protect his family. Vlad turns to dark forces in order to get the power to destroy his enemies and agrees to go from hero to monster as he\’s turned into the mythological vampire Dracula.’,64.457947,’2014-10-01′,215529201,92,’Released’,’Every bloodline has a beginning’,6.20,2389),(49018,’Insidious’,1500000,’http://www.insidious-movie.com/’,’A family discovers that dark spirits have invaded their home after their son inexplicably falls into an endless sleep. When they reach out to a professional for help, they learn things are a lot more personal than they thought.’,58.594852,’2010-09-13′,97009150,103,’Released’,’It\’s not the house that\’s haunted.’,6.80,1737),(49020,’Submarine’,0,’http://warpfilms.com/feature/submarine/’,’15-year-old deep-thinking Welsh schoolboy, Oliver Tate (Craig Roberts) struggles to initiate and maintain a relationship with Jordana (Yasmin Paige), his devilish, dark-haired classmate at their Swansea high school. As his parents\’ marriage begins to fall apart, similar problems arise in his relationship with Jordana.’,8.518866,’2011-03-18′,864659,97,’Released’,’A comedy that doesn\’t let principles stand in the way of progress.’,7.40,443),(49021,’Killer Elite’,66000000,”,’Based on a shocking true story, Killer Elite pits two of the worldâ��s most elite operativesâ��Danny, an ex-special ops agent and Hunter, his longtime mentorâ��against the cunning leader of a secret military society. Covering the globe from Australia to Paris, London and the Middle East, Danny and Hunter are plunged into a highly dangerous game of cat and mouseâ��where the predators become the prey.’,29.501489,’2011-09-23′,57777106,116,’Released’,’May the best man live.’,6.10,695),(49022,’Something Borrowed’,35000000,’http://somethingborrowedmovie.warnerbros.com/’,’Though Rachel (Ginnifer Goodwin) is a successful attorney and a loyal, generous friend, she is still single. After one drink too many at her 30th-birthday celebration, Rachel unexpectedly falls into bed with her longtime crush, Dex — who happens to be engaged to her best friend, Darcy (Kate Hudson). Ramifications of the liaison threaten to destroy the women\’s lifelong friendship, while Ethan (John Krasinski), Rachel\’s confidant, harbors a potentially explosive secret of his own.’,14.029012,’2011-05-05′,59901913,112,’Released’,’It\’s a thin line between love and friendship.’,5.90,296),(49026,’The Dark Knight Rises’,250000000,’http://www.thedarkknightrises.com/’,’Following the death of District Attorney Harvey Dent, Batman assumes responsibility for Dent\’s crimes to protect the late attorney\’s reputation and is subsequently hunted by the Gotham City Police Department. Eight years later, Batman encounters the mysterious Selina Kyle and the villainous Bane, a new terrorist leader who overwhelms Gotham\’s finest. The Dark Knight resurfaces to protect a city that has branded him an enemy.’,112.312950,’2012-07-16′,1084939099,165,’Released’,’The Legend Ends’,7.60,9106),(49040,’The Bourne Legacy’,130000000,’http://www.thebournelegacy.com/’,’New CIA operative, Aaron Cross experiences life-or-death stakes that have been triggered by the previous actions of Jason Bourne.’,90.336810,’2012-08-08′,276572938,120,’Released’,’There Was Never Just One’,6.00,2651),(49047,’Gravity’,105000000,’http://gravitymovie.warnerbros.com/’,’Dr. Ryan Stone, a brilliant medical engineer on her first Shuttle mission, with veteran astronaut Matt Kowalsky in command of his last flight before retiring. But on a seemingly routine spacewalk, disaster strikes. The Shuttle is destroyed, leaving Stone and Kowalsky completely alone-tethered to nothing but each other and spiraling out into the blackness of space. The deafening silence tells them they have lost any link to Earth and any chance for rescue. As fear turns to panic, every gulp of air eats away at what little oxygen is left. But the only way home may be to go further out into the terrifying expanse of space.’,110.153618,’2013-09-27′,716392705,91,’Released’,’Don\’t Let Go’,7.30,5751),(49049,’Dredd’,50000000,’http://dreddthemovie.com/’,’In the future, America is a dystopian wasteland. The latest scourge is Ma-Ma, a prostitute-turned-drug pusher with a dangerous new drug and aims to take over the city. The only possibility of stopping her is an elite group of urban police called Judges, who combine the duties of judge, jury and executioner to deliver a brutal brand of swift justice. But even the top-ranking Judge, Dredd, discovers that taking down Ma-Ma isnâ��t as easy as it seems in this explosive adaptation of the hugely popular comic series.’,57.673932,’2012-09-07′,41037742,95,’Released’,’Judgement is coming’,6.60,1940),(49051,’The Hobbit: An Unexpected Journey’,250000000,’http://www.thehobbit.com/’,’Bilbo Baggins, a hobbit enjoying his quiet life, is swept into an epic quest by Gandalf the Grey and thirteen dwarves who seek to reclaim their mountain home from Smaug, the dragon.’,108.849621,’2012-11-26′,1021103568,169,’Released’,’From the smallest beginnings come the greatest legends.’,7.00,8297),(49081,’Maurice Richard’,8000000,’http://www.northernstars.ca/titles/2005/maurice_richard.html’,’In the late 1930s, a young machinist named Maurice Richard distinguished himself as a ice hockey player of preternatural talent. Although that was enough to get him into the Montreal Canadiens, his frequent injuries cost him the confidence of his team and the fans. In the face of these doubts, Richard eventually shows the kind of aggressive and skillful play that would make him one of the greatest players of all time as \”The Rocket.\” However for all his success, Richard and his fellow French Canadians face constant discrimination in a league dominated by the English speaking. Although a man of few words, Richard begins to speak his own mind about the injustice which creates a organizational conflict that would culminate in his infamous 1955 season suspension that sparks an ethnic riot in protest. In the face of these challenges, Richard must decide who exactly is he playing for.’,0.983484,’2005-10-25′,2019009,124,’Released’,”,6.10,17),(49365,’Lady in White’,0,”,’Locked in a school closet during Halloween 1962, young Frank witnesses the ghost of a young girl and the man who murdered her years ago. Shortly afterward he finds himself stalked by the killer and is soon drawn to an old house where a mysterious Lady In White lives. As he discovers the secret of the woman he soon finds that the killer may be someone close to him.’,1.435742,’1988-04-22′,0,112,’Released’,’The year is 1962. The place is Willowpoint Falls. Nobody talks about what happened in the school cloakroom 10 years ago. Now, in the dead of night, Frankie Scarlatti is going to find out why.’,6.30,25),(49444,’Kung Fu Panda 2′,150000000,’http://www.kungfupanda.com/’,’Po is now living his dream as The Dragon Warrior, protecting the Valley of Peace alongside his friends and fellow kung fu masters, The Furious Five – Tigress, Crane, Mantis, Viper and Monkey. But Poâ��s new life of awesomeness is threatened by the emergence of a formidable villain, who plans to use a secret, unstoppable weapon to conquer China and destroy kung fu. It is up to Po and The Furious Five to journey across China to face this threat and vanquish it. But how can Po stop a weapon that can stop kung fu? He must look to his past and uncover the secrets of his mysterious origins; only then will he be able to unlock the strength he needs to succeed.’,51.247321,’2011-05-25′,665692281,91,’Released’,’Prepare for the Year of Awesomeness!’,6.70,1880),(49471,’Get on the Bus’,2400000,”,’Get On the Bus follows several Black men on a cross country bus trip to the Million Man March. On the bus are an eclectic set of characters including a laid off aircraft worker, a former Gang Banger, a Hollywood actor, a cop who is of mixed racial background, and a White bus driver, all make the trek discussing issues surrounding the march, manhood, religion, politics, and race.’,4.623059,’1996-10-16′,5731103,120,’Released’,’On October 16, 1996, the one year anniversary of the Million Man March, Spike Lee invites you to lift your head, raise your voice, and…get on the bus.’,7.00,11),(49478,’Warriors of Virtue’,0,”,’A young man, Ryan, suffering from a disability, wishes to join the other kids from his schools football team. During an initiation rite, Ryan is swept away through a whirlpool to the land of Tao. There he is hunted by the evil Lord Komodo, who desires the boy as a key to enter the real world. Ryan is rescued by the protectors of Tao, five humanoid kangaroos, each embued with the five elements and virtues. Ryan learns his valuable lesson while saving the land of Tao.’,0.912395,’1997-05-02′,0,103,’Released’,’In a world beyond your imagination a battle for the universe has begun.’,4.70,9),(49517,’Tinker Tailor Soldier Spy’,30000000,’http://www.tinker-tailor-soldier-spy.com/’,’Recently-retired MI6 agent, George Smiley is doing his best to adjust to a life outside the secret service until a disgraced agent reappears with information concerning a mole at the heart of the service. Smiley is drawn back into the murky field of espionage, tasked with investigating which of his trusted former colleagues has chosen to betray him and their country. Smiley narrows his search to four suspects â�� all experienced, skilled and successful agents â�� but past histories, rivalries and friendships make it far from easy to pinpoint the man who is eating away at the heart of the British establishment.’,33.649652,’2011-09-16′,0,127,’Released’,’How do you find an enemy who is hidden right before your eyes?’,6.60,840),(49519,’The Croods’,135000000,’http://www.thecroodsmovie.com/’,’The Croods is a prehistoric comedy adventure that follows the world\’s first family as they embark on a journey of a lifetime when the cave that has always shielded them from danger is destroyed. Traveling across a spectacular landscape, the Croods discover an incredible new world filled with fantastic creatures — and their outlook is changed forever.’,64.183321,’2013-03-20′,585178928,98,’Released’,’Meet the first modern family.’,6.80,2399),(49520,’The Change-Up’,52000000,’http://www.thechangeupmovie.com/’,’Dave is a married man with two kids and a loving wife , and Mitch is a single man who is at the prime of his sexual life. One fateful night while Mitch and Dave are peeing in a fountain when lightning strikes, they switch bodies.’,32.015477,’2011-08-05′,75450437,112,’Released’,’Who says men can\’t change?’,5.90,736),(49521,’Man of Steel’,225000000,’http://www.manofsteel.com/’,’A young boy learns that he has extraordinary powers and is not of this earth. As a young man, he journeys to discover where he came from and what he was sent here to do. But the hero in him must emerge if he is to save the world from annihilation and become the symbol of hope for all mankind.’,99.398009,’2013-06-12′,662845518,143,’Released’,’You will believe that a man can fly.’,6.50,6359),(49524,’R.I.P.D.’,130000000,’http://www.ripd.com/’,’A recently slain cop joins a team of undead police officers working for the Rest in Peace Department and tries to find the man who murdered him. Based on the comic by Peter M. Lenkov.’,39.448066,’2013-07-18′,61648500,96,’Released’,’To protect and serve the living’,5.40,1260),(49526,’Premium Rush’,35000000,’http://www.premiumrush.com/’,’In Manhattan, a bike messenger picks up an envelope that attracts the interest of a dirty cop, who pursues the cyclist throughout the city.’,17.709888,’2012-08-24′,31083599,91,’Released’,’Ride Like Hell’,6.20,832),(49527,’Man on a Ledge’,42000000,’http://www.manonaledge.com/’,’An ex-cop turned con threatens to jump to his death from a Manhattan hotel rooftop. The NYPD dispatch a female police psychologist to talk him down. However, unbeknownst to the police on the scene, the suicide attempt is a cover for the biggest diamond heist ever pulled.’,34.041407,’2012-01-13′,46221189,102,’Released’,’You can only push an innocent man so far’,6.20,925),(49529,’John Carter’,260000000,’http://movies.disney.com/john-carter’,’John Carter is a war-weary, former military captain who\’s inexplicably transported to the mysterious and exotic planet of Barsoom (Mars) and reluctantly becomes embroiled in an epic conflict. It\’s a world on the brink of collapse, and Carter rediscovers his humanity when he realizes the survival of Barsoom and its people rests in his hands.’,43.926995,’2012-03-07′,284139100,132,’Released’,’Lost in our world, found in another.’,6.10,2124),(49530,’In Time’,40000000,’http://www.intimemovie.com/’,’In the not-too-distant future the aging gene has been switched off. To avoid overpopulation, time has become the currency and the way people pay for luxuries and necessities. The rich can live forever, while the rest try to negotiate for their immortality. A poor young man who comes into a fortune of time, though too late to help his mother from dying. He ends up on the run from a corrupt police force known as \’time keepers\’.’,60.231382,’2011-10-27′,173930596,109,’Released’,’Time Is Power’,6.70,3417),(49538,’X-Men: First Class’,160000000,’http://www.x-menfirstclassmovie.com/’,’Before Charles Xavier and Erik Lensherr took the names Professor X and Magneto, they were two young men discovering their powers for the first time. Before they were arch-enemies, they were closest of friends, working together with other mutants (some familiar, some new), to stop the greatest threat the world has ever known.’,3.195174,’2011-05-24′,353624124,132,’Released’,’Witness the moment that will change our world.’,7.10,5181),(49730,’Red Riding Hood’,42000000,’http://www.redridinghoodmovie.com/’,’Valerie is in love with a brooding outsider, Peter, but her parents have arranged for her to marry another man â�� who is wealthy. Unwilling to lose each other, Valerie and Peter plan to run away together when they learn that Valerie\’s older sister has been killed by a werewolf that prowls the dark forest surrounding their village. Hungry for revenge, the people call on famed werewolf hunter, Father Solomon, to help them kill the wolf. But Solomon\’s arrival brings unintended consequences as he warns that the wolf, who takes human form by day, could be any one of them.’,45.151657,’2011-03-11′,89162162,100,’Released’,’Who\’s afraid?’,5.60,922),(49787,’The Reef’,0,’http://reefmovie.com/’,’A great white shark hunts the crew of a capsized sailboat along the Great Barrier Reef.’,7.245108,’2010-05-15′,0,94,’Released’,’Pray That You Drown First’,5.40,130),(49852,’The Nutcracker: The Untold Story’,90000000,’http://www.nutcrackerin3d.com/’,’Set in 1920\’s Vienna, this a tale of a little girl, whose godfather gives her a special doll one Christmas Eve.’,3.593349,’2010-11-24′,16178959,110,’Released’,”,5.40,50),(49948,’Fantasia 2000′,80000000,’http://movies.disney.com/fantasia-2000′,’Blending lively music and brilliant animation, this sequel to the original \’Fantasia\’ restores \’The Sorcerer\’s Apprentice\’ and adds seven new shorts.’,14.530946,’1999-12-17′,90874570,74,’Released’,”,7.00,292),(49950,’The Roommate’,16000000,’http://www.theroommate-movie.com/’,’When Sara (Minka Kelly), a young design student from Iowa, arrives for college in Los Angeles, she is eager to fit in and get to know the big city. Her wealthy roommate, Rebecca (Leighton Meester), is more than eager to take Sara under her wing and show her the ropes. The two become close, but when Sara begins to branch out and make more friends on campus, Rebecca becomes resentful. Alarmed, Sara moves in with her new boyfriend, causing Rebecca\’s behavior to take a violent turn.’,11.807269,’2011-02-04′,40492759,91,’Released’,’2,000 colleges. 8 million roommates. Which one will you get?’,5.30,224),(49951,’Certifiably Jonathan’,1200000,’http://www.certifiablyjonathan.com/’,’A famous comedian and artist wants to display his work at an art museum. Just when he thinks he\’s lost his touch, a series of famous comedians drop by to help him rekindle his artistic and comedic spark.’,0.047781,’2007-03-01′,0,85,’Released’,”,0.00,0),(49953,’Sammy\’s avonturen: De geheime doorgang’,0,”,’A sea turtle who was hatched in 1959 spends the next 50 years traveling the world while it is being changed by global warming. Born on a Baja, California beach in 1959, new hatchling Sammy must do what his fellow newborn sea turtles are doing: race across the beach to the ocean before they are captured by a seagull or crab. Thus begins Sammy\’s incredible fifty-year ocean journey. Along the way he meets his best friend, a fellow turtle named Ray, and overcomes obstacles both natural and man-made while trying to fulfill his dream of travelling around the world. Throughout his voyage, Sammy never forgets about Shelly – the turtle he saved on his first day and loves passionately from afar. Based on the actual trajectory of a sea turtle\’s life, the film illustrates the dangers humans pose to the species\’ survival. The film combines entertainment with an important environmental message.’,15.805449,’2010-08-03′,0,88,’Released’,’He\’s Turtly Amazing’,5.60,151),(49963,’Walking and Talking’,0,”,’Things have been tough lately for Amelia. Her best friend moved out of the apartment, her cat got cancer, and now her best friend, Laura, is getting married. She copes with things, from the help of Andrew, Frank, Laura, and a brief romance with Bill \”The Ugly Guy\”.’,0.367312,’1996-07-17′,0,86,’Released’,’A movie for everyone who wants to get married and stay single at the same time.’,6.60,7),(50014,’The Help’,25000000,’http://thehelpmovie.com/#/splash’,’Aibileen Clark is a middle-aged African-American maid who has spent her life raising white children and has recently lost her only son; Minny Jackson is an African-American maid who has often offended her employers despite her family\’s struggles with money and her desperate need for jobs; and Eugenia \”Skeeter\” Phelan is a young white woman who has recently moved back home after graduating college to find out her childhood maid has mysteriously disappeared. These three stories intertwine to explain how life in Jackson, Mississippi revolves around \”the help\”; yet they are always kept at a certain distance because of racial lines.’,42.191509,’2011-08-09′,124272124,146,’Released’,’Change begins with a whisper.’,7.80,1910),(50035,’Lovely & Amazing’,250000,”,’Self-esteem and insecurity are at the heart of this comedy about the relationship between a mother and her three confused daughters.’,1.459170,’2001-08-31′,4186931,91,’Released’,”,6.30,23),(50037,’Beyond the Black Rainbow’,1100000,”,’Deep within the mysterious Arboria Institute, a disturbed and beautiful girl is held captive by a doctor in search of inner peace. Her mind controlled by a sinister technology. Silently, she waits for her next session with deranged therapist Dr. Barry Nyle. If she hopes to escape, she must journey through the darkest reaches of The Institute, but Nyle wonʼt easily part with his most gifted and dangerous creation.’,7.717237,’2010-12-03′,0,110,’Released’,’Beyond Science. Beyond Sanity. Beyond Control.’,5.70,77),(50135,’Konferenz der Tiere’,0,’http://www.kdt.film.de/’,’A group of animals waiting for the annual flood they rely on for food and water discover that the humans, who have been destroying their habitats have built a dam for a leisure resort. The animals endeavour to save the delta and send a message to the humans not to interfere with nature.’,8.010046,’2010-10-07′,0,93,’Released’,”,5.50,90),(50321,’Mars Needs Moms’,150000000,’http://disney.go.com/disneypictures/marsneedsmoms/#home’,’When Martians suddenly abduct his mom, mischievous Milo rushes to the rescue and discovers why all moms are so special.’,12.362599,’2011-03-09′,38992758,88,’Released’,’Mom needs a little space.’,5.50,199),(50348,’The Lincoln Lawyer’,40000000,’http://www.thelincolnlawyermovie.com/’,’A lawyer conducts business from the back of his Lincoln town car while representing a high-profile client in Beverly Hills.’,26.072228,’2011-03-17′,85412898,119,’Released’,’This Case is a Dangerous Game of Life and Death’,7.00,902),(50357,’Apollo 18′,5000000,’http://apollo18movie.net/’,’Officially, Apollo 17 was the last manned mission to the moon. But a year later in 1973, three American astronauts were sent on a secret mission to the moon funded by the US Department of Defense. What you are about to see is the actual footage which the astronauts captured on that mission. While NASA denies it\’s authenticity, others say it\’s the real reason we\’ve never gone back to the moon.’,17.028252,’2011-07-20′,25562924,86,’Released’,’There\’s a reason we\’ve never gone back to the moon.’,5.00,356),(50359,’Hop’,63000000,’http://www.iwantcandy.com/’,’E.B., the Easter Bunny\’s teenage son, heads to Hollywood, determined to become a drummer in a rock \’n\’ roll band. In LA, he\’s taken in by Fred after the out-of-work slacker hits E.B. with his car.’,16.791058,’2011-03-30′,183953723,95,’Released’,’Candy, chicks and rock \’n\’ roll.’,5.50,331),(50456,’Hanna’,30000000,’http://hannathemovie.com/’,’A 16-year-old girl raised by her father to be the perfect assassin is dispatched on a mission across Europe. Tracked by a ruthless operatives, she faces startling revelations about her existence and questions about her humanity.’,31.191975,’2011-04-07′,63782078,111,’Released’,’Adapt or die.’,6.50,1263),(50497,’When the Lights Went Out’,0,”,’Yorkshire, 1974, the Maynard family moves into their dream house. It\’s a dream that quickly descends into a panic stricken nightmare as the family discovers a horrifying truth, a truth that will make the history books. The house is already occupied by the most violent poltergeist ever documented, a poltergeist that will tear you from your bed as you sleep and drag you helplessly into the darkness.’,2.805351,’2012-01-31′,0,86,’Released’,’Set in 1974 and based on true events.’,5.80,49),(50538,’Sur le seuil’,0,”,’One day, for no apparent reason, a cop kills 11 children. The same day, horror novelist Thomas Roy tries to commit suicide after cutting his fingers. At first glance, nothing seems to link the two events â�� until Dr. Paul Lacasse, a disillusioned psychiatrist, takes over the case. Prompted by his colleague Jeanne, a fan of Thomas Roy, Dr. Lacasse investigates the writerâ��s past. Hounded by a gossip columnist, Dr. Lacasse uncovers a series of troubling facts that bolster his convictions about the case. As he tries to reassemble the pieces of the puzzle in order to better treat the famous writer, Dr. Lacasse is dragged further and further into a series of events, with terrifying consequences.’,0.205034,’2003-10-03′,0,100,’Released’,”,6.90,8),(50544,’Friends with Benefits’,35000000,’http://www.fwb-movie.com/’,’Jamie is a New York-based executive recruiter who entices Dylan, an art director from Los Angeles, to take a job at the New York office of GQ magazine. Finding that they have much in common, the two become fast friends. Feeling jaded by a number of broken romances, Dylan and Jamie decide that they are ready to quit looking for true love and focus on having fun. However, complications unfold when the two best pals add sex to their relationship.’,40.526587,’2011-07-21′,150483765,109,’Released’,’Some friends come with a happy ending.’,6.50,2237),(50546,’Just Go with It’,80000000,’http://www.justgowithit-movie.com’,’A plastic surgeon, romancing a much younger schoolteacher, enlists his loyal assistant to pretend to be his soon to be ex-wife, in order to cover up a careless lie. When more lies backfire, the assistant\’s kids become involved, and everyone heads off for a weekend in Hawaii that will change all their lives.’,37.026650,’2011-02-10′,214918407,117,’Released’,’Sometimes a guy\’s best wingman… is a wingwoman’,6.30,1543),(50601,’5 Days of War’,20000000,”,’An American journalist and his cameraman are caught in the combat zone during the first Russian airstrikes against Georgia. Rescuing Tatia, a young Georgian schoolteacher separated from her family during the attack, the two reporters agree to help reunite her with her family in exchange for serving as their interpreter. As the three attempt to escape to safety, they witness–and document–the devastation from the full-scale crossfire and cold-blooded murder of innocent civilians.’,5.727602,’2011-04-14′,17479,113,’Released’,’Their only weapon is the truth.’,5.80,62),(50620,’The Twilight Saga: Breaking Dawn – Part 2′,120000000,”,’After the birth of Renesmee, the Cullens gather other vampire clans in order to protect the child from a false allegation that puts the family in front of the Volturi.’,99.687084,’2012-11-13′,829000000,115,’Released’,’The epic finale that will live forever’,6.10,2553),(50646,’Crazy, Stupid, Love.’,50000000,’http://crazystupidlove.warnerbros.com/index.html’,’Cal Weaver is living the American dream. He has a good job, a beautiful house, great children and a beautiful wife, named Emily. Cal\’s seemingly perfect life unravels, however, when he learns that Emily has been unfaithful and wants a divorce. Over 40 and suddenly single, Cal is adrift in the fickle world of dating. Enter, Jacob Palmer, a self-styled player who takes Cal under his wing and teaches him how to be a hit with the ladies.’,37.990705,’2011-07-29′,142851197,118,’Released’,’This Is Stupid’,7.00,2443),(50647,’Wanderlust’,35000000,’http://www.wanderlust-movie.com/Wanderlust/home.html’,’Rattled by sudden unemployment, a Manhattan couple surveys alternative living options, ultimately deciding to experiment with living on a rural commune where free love rules.’,20.908494,’2012-02-23′,24159934,98,’Released’,’Leave your baggage behind’,5.30,394),(50698,’Grave Encounters’,1000000,’http://www.grave-encounters.tv/’,’A crew from a paranormal reality television show lock themselves in a haunted psychiatric hospital. They search for evidence of paranormal activity as they shoot what ends up becoming their final episode.’,13.222268,’2011-09-09′,0,92,’Released’,’They Were Searching For Proof. They Found it.’,6.10,381),(50725,’Take Me Home Tonight’,19000000,’http://www.iamrogue.com/takemehometonight/fullsite/’,’Recent MIT grad Matt Franklin (Topher Grace) should be well on his way to a successful career at a Fortune 500 company, but instead, he rebels against maturity by taking a job at a video store. Matt rethinks his position when his unrequited high-school crush, Tori (Teresa Palmer), walks in and invites him to an end-of-summer party. With the help of his twin sister (Anna Faris) and his best friend (Dan Fogler), Matt hatches a plan to change the course of his life.’,11.766564,’2011-03-04′,6928068,97,’Released’,’Best. Night. Ever.’,6.20,208),(50780,’The Beaver’,21000000,’http://www.thebeaver-movie.com/’,’Suffering from a severe case of depression, toy company CEO Walter Black (Mel Gibson) begins using a beaver hand puppet to help him open up to his family. With his father seemingly going insane, adolescent son Porter (Anton Yelchin) pushes for his parents to get a divorce. Jodie Foster directs and co-stars as Walter\’s wife in this dark comedy that also features Riley Thomas Stewart and Jennifer Lawrence.’,13.847872,’2011-02-11′,970816,91,’Released’,’He\’s here to save Walter\’s life.’,6.30,276),(50837,’Martha Marcy May Marlene’,0,’http://www.foxsearchlight.com/marthamarcymaymarlene/’,’After several years of living with a cult, Martha finally escapes and calls her estranged sister, Lucy, for help. Martha finds herself at the quiet Connecticut home Lucy shares with her new husband, Ted, but the memories of what she experienced in the cult make peace hard to find. As flashbacks continue to torment her, Martha fails to shake a terrible sense of dread, especially in regard to the cult\’s manipulative leader.’,17.806082,’2011-10-21′,3538446,101,’Released’,’You can get away. But you can never escape.’,6.70,277),(50839,’Margin Call’,3500000,’http://www.margincallmovie.com/’,’A thriller that revolves around the key people at an investment bank over a 24-hour period during the early stages of the financial crisis.’,26.259389,’2011-09-28′,19504039,107,’Released’,’Be first. Be smarter. Or cheat.’,6.70,524),(50848,’Le Nom des gens’,4600000,’http://www.namesoflovemovie.com/’,’Bahia Benmahmoud, a free-spirited young woman, has a particular way of seeing political engagement, as she doesn\’t hesitate to sleep with those who don\’t agree with her to convert them to her cause – which is a lot of people, as all right-leaning people are concerned. Generally, it works pretty well. Until the day she meets Arthur Martin, a discreet forty-something who doesn\’t like taking risks. She imagines that with a name like that, he\’s got to be slightly fascist. But names are deceitful and appearances deceiving..’,6.368933,’2010-11-24′,0,100,’Released’,’Make Love, Not War’,7.30,93),(50875,’Higher Ground’,2000000,’http://www.sonyclassics.com/higherground/’,’A chronicle of one woman\’s lifelong struggle with her faith.’,1.699101,’2011-08-26′,841733,109,’Post Production’,”,5.30,14),(50942,’Creature’,0,”,’An amphibious shark-like monster terrorizes an abandoned secret military base and the people who live on the island it is located on. A marine biologist, as well as several other people, try to stop it before it is too late…’,2.857848,’1998-05-17′,0,176,’Released’,’Death from the depths’,4.00,21),(51052,’Arthur Christmas’,0,’http://www.arthurchristmas.com/’,’Each Christmas, Santa and his vast army of highly trained elves produce gifts and distribute them around the world in one night. However, when one of 600 million children to receive a gift from Santa on Christmas Eve is missed, it is deemed â��acceptableâ�� to all but one â�� Arthur. Arthur Claus is Santaâ��s misfit son who executes an unauthorized rookie mission to get the last present half way around the globe before dawn on Christmas morning.’,19.836830,’2011-02-22′,0,97,’Released’,’Ever wonder how 2 Billion presents get delivered all in 1 night?’,6.70,333),(51130,’Open Secret’,0,”,’A couple discovers that their friend has gone missing. Their investigation leads them to believe that anti-semites are behind the disappearance.’,0.186401,’1948-02-14′,0,68,’Released’,’The Pull-No-Punch drama of men chained together by hate!’,7.00,2),(51162,’Winnie the Pooh’,30000000,’http://disney.go.com/pooh/home/’,’During an ordinary day in Hundred Acre Wood, Winnie the Pooh sets out to find some honey. Misinterpreting a note from Christopher Robin, Pooh convinces Tigger, Rabbit, Piglet, Owl, Kanga, Roo, and Eeyore that their young friend has been captured by a creature named \”Backson\” and they set out to save him.’,19.143721,’2011-04-13′,14460000,63,’Released’,’Oh Pooh.’,6.80,258),(51384,’Lovely, Still’,0,”,’A holiday fable that tells the story of an elderly man discovering love for the first time.’,1.286991,’2008-01-01′,0,92,’Released’,’Something mysterious, new, unexpected and lovely is happening to Robert Malone.’,6.20,13),(51497,’Fast Five’,125000000,’http://www.watchvideoseries.com/movies/fast-five-2011-2/’,’Former cop Brian O\’Conner partners with ex-con Dom Toretto on the opposite side of the law. Since Brian and Mia Toretto broke Dom out of custody, they\’ve blown across many borders to elude authorities. Now backed into a corner in Rio de Janeiro, they must pull one last job in order to gain their freedom.’,7.255718,’2011-04-20′,626137675,130,’Released’,’Get the Fifth Gear.’,7.10,2438),(51540,’Horrible Bosses’,35000000,’http://horriblebossesmovie.warnerbros.com/index.html’,’For Nick, Kurt and Dale, the only thing that would make the daily grind more tolerable would be to grind their intolerable bosses into dust. Quitting is not an option, so, with the benefit of a few-too-many drinks and some dubious advice from a hustling ex-con, the three friends devise a convoluted and seemingly foolproof plan to rid themselves of their respective employers… permanently.’,50.309843,’2011-07-08′,117000000,98,’Released’,’Ever wish your boss was dead?’,6.50,2277),(51588,’Prom’,8000000,’http://disney.go.com/disneypictures/prom/index.html#home’,’At â��Prom,â�� every couple has a story and no two are exactly alike. As the big dance approaches for Nova Prescott, itâ��s a battle of wills as she finds herself drawn to the guy who gets in the way of her perfect prom. Fellow seniors Mei and Tyler harbor secrets, while others face all the insecurity and anticipation that surrounds one of high schoolâ��s most seminal events.’,11.837067,’2011-04-29′,10130000,104,’Released’,’There are hundreds of nights in high school, but thereâ��s only one prom.’,5.70,134),(51820,’The Salon’,1500000,”,’A Beauty shop owner finds romance as she struggles to save her business.’,2.028170,’2005-01-13′,0,0,’Released’,’Where you get more than just a hair cut!’,3.50,1),(51828,’One Day’,15000000,’http://www.focusfeatures.com/one_day’,’A romantic comedy centered on Dexter and Emma, who first meet during their graduation in 1988 and proceed to keep in touch regularly. The film follows what they do on July 15 annually, usually doing something together.’,16.629173,’2011-03-02′,59389433,107,’Released’,’Twenty years. Two people.’,7.00,978),(51942,’I Married a Strange Person!’,250,”,’A newlywed develops a strange lump on his neck that gives him the ability to transform people or objects at will. His wife is very upset. Meanwhile, the CEO of Smilecorp learns of this man and his ability and sees a way to achieve world domination if only the man can be taken alive. Animated movie by Bill Plympton.’,0.293649,’1998-08-28′,203,72,’Released’,”,7.50,12),(51955,’Hav Plenty’,0,”,’Lee Plenty is an almost broke would-be novelist and Havilland Savage is rich and very beautiful woman and his friend. When she invites him to her home for New Year\’s Eve, they start to build up a romance.’,0.003142,’1997-09-11′,0,92,’Released’,”,0.00,0),(51995,’Salvation Boulevard’,8000000,’http://www.ifcfilms.com/uncategorized/salvation-boulevard’,’Set in the world of mega-churches in which a former Deadhead-turned-born again-Christian finds himself on the run from fundamentalist members of his mega-church who will do anything to protect their larger-than-life pastor.’,3.653305,’2011-07-15′,0,96,’Released’,’Faith alone doesnâ��t cut it anymore’,5.60,28),(52010,’Ultramarines: A Warhammer 40,000 Movie’,0,’http://ultramarinesthemovie.com/’,’A squad of Ultramarines answer a distress call from an Imperial Shrine World. A full Company of Imperial Fists was stationed there, but there is no answer from them. The squad investigates to find out what has happened there.’,3.891186,’2010-12-10′,0,76,’Released’,’In the grim darkness of the far future there is only war’,5.20,27),(52015,’Stake Land’,650000,’http://www.stakelandthefilm.com/’,’Martin was a normal teenage boy before the country collapsed in an empty pit of economic and political disaster. A vampire epidemic has swept across what is left of the nation\’s abandoned towns and cities, and it\’s up to Mister, a death dealing, rogue vampire hunter, to get Martin safely north to Canada, the continent\’s New Eden.’,12.496261,’2010-09-30′,33245,98,’Released’,’The Most Dangerous Thing Is To Be Alive.’,6.20,285),(52032,’My Dog Tulip’,0,”,’The story of a man who rescues a German shepherd and how the two become fast friends.’,1.170257,’2009-01-01′,246574,83,’Released’,’Sometimes, love really is a bitch.’,7.60,9),(52067,’Cedar Rapids’,0,’http://www.foxsearchlight.com/cedarrapids/’,’A naive Midwesterner insurance salesman travels to a big-city convention in an effort to save the jobs of his co-workers.’,10.254807,’2011-02-11′,6861102,87,’Released’,’Today is the first day… of the rest of his weekend.’,5.90,135),(52449,’Bad Teacher’,20000000,’http://www.areyouabadteacher.com/’,’A lazy, incompetent middle school teacher who hates her job and her students is forced to return to her job to make enough money for a boob job after her rich fiancé dumps her.’,28.497242,’2011-05-16′,216197492,92,’Released’,’She doesn\’t give an F.’,5.40,1584),(52451,’The Three Musketeers’,75000000,’http://www.threemusketeers-movie.com/’,’The hot-headed young D\’Artagnan along with three former legendary but now down on their luck Musketeers must unite and defeat a beautiful double agent and her villainous employer from seizing the French throne and engulfing Europe in war.’,36.605246,’2011-08-31′,132274484,110,’Released’,’Every legend has a new beginning.’,5.60,924),(52462,’The Pet’,0,”,’A young woman in dire financial straights accepts an offer to be a wealthy aristocrat\’s human \”pet\” for six months. Then ruthless modern \”pet-nappers\” kidnap the woman to sell her on the GSM (Global Slave Market).’,1.284741,’2006-05-17′,0,94,’Released’,”,5.30,3),(52520,’Underworld: Awakening’,70000000,’http://www.entertheunderworld.com/’,’After being held in a coma-like state for fifteen years, vampire Selene learns that she has a fourteen-year-old vampire/Lycan hybrid daughter named Nissa, and when she finds her, they must stop BioCom from creating super Lycans that will kill them all.’,58.401204,’2012-01-19′,160112671,88,’Released’,’Vengeance Returns’,6.10,1862),(52790,’The Basket’,0,”,’Peter Coyote (E.T., Erin Brokovich) and Karen Allen (The Perfect Storm) star in this touching family drama about the unifying power of basketball in a community torn apart by war. Both a riveting sports film and a tale of triumph over adversity, The Basket is \”a hoop dream movie with a whole lot of heart\” (Dallas Morning News)! In 1918, when the wheat-farming townspeople of Waterville, Washington, welcome home their first wounded son from WWI, they\’restruck by the harsh reality of war. And just as bigotry and hatred toward two German orphans dividethe close-knit community, a new schoolteacher, Martin (Coyote), rolls into town with some strange ideas and an even stranger leather ball. Through the brand-new game called basketball, Martin strivesto bring harmony to the town…before it tears itself apart!’,0.430758,’2000-05-05′,619042,105,’Released’,”,6.50,6),(53113,’One True Thing’,0,”,’A career woman reassesses her parents\’ lives after she is forced to care for her cancer-stricken mother.’,2.644427,’1998-09-18′,0,127,’Released’,’Love What You Have.’,6.20,27),(53182,’300: Rise of an Empire’,110000000,’http://www.300themovie.com/’,’Based on Frank Miller\’s latest graphic novel Xerxes and told in the breathtaking visual style of the blockbuster \”300,\” this new chapter of the epic saga takes the action to a fresh battlefield–on the sea–as Greek general Themistokles attempts to unite all of Greece by leading the charge that will change the course of the war. \”300: Rise of an Empire\” pits Themistokles against the massive invading Persian forces led by mortal-turned-god Xerxes and Artemesia, the vengeful commander of the Persian navy.’,71.510596,’2014-03-05′,337580051,102,’Released’,’Seize your glory!’,6.10,2397),(53256,’Drei’,0,”,’Hanna and Simon are in a 20 year marriage with an unexiting relationship. By chance, they both meet and start separate affairs with Adam. Adam has no idea that his two lovers are married, until they are all found out when Hanna becomes pregnant, with the natural doubts stemming from their situation.’,5.937602,’2010-12-23′,2611555,119,’Released’,’Imagine the possibilities.’,6.30,31),(53457,’Elle s\’appelait Sarah’,10000000,’http://www.sarahskey.com.au/’,’On the night of 16 July 1942, ten year old Sarah and her parents are being arrested and transported to the Velodrome d\’Hiver in Paris where thousands of other jews are being send to get deported. Sarah however managed to lock her little brother in a closed just before the police entered their appartment.Sixty years later, Julia Jarmond, an American journalist in Paris, gets the assignment to write an article about this raid, a black page in the history of France. She starts digging archives and through Sarah\’s file discovers a well kept secret about her own in-laws.’,10.072199,’2010-09-16′,17511906,111,’Released’,”,7.20,196),(53502,’The Dead Undead’,0,”,’Good Vampires battle Zombie Vampires while trying to hide their own identity and prevent the infection from spreading.’,0.249457,’2010-05-13′,0,90,’Released’,’How Do You Kill Something That\’s Already Dead?’,3.10,6),(53862,’Trippin\”,0,”,’Greg is near the end of his senior year in high school, wanting to go to the prom, eyeing Cinny (the school\’s beauty with brains) from afar, and regularly trippin\’, daydreaming about being a big success as a poet, a student, a lover. His mom wants him to apply to colleges, but Greg hasn\’t a clue. One of his teachers, Mr. Shapic, tries to inspire him, too. He finally figures out he can get close to Cinny if he asks her for help with college applications. But friendship isn\’t enough, he wants romance and a prom date. So, he tells a few lies and, for awhile, it seems to be working. Then, things fall apart and Greg has to figure out how to put the trippin aside and get real.’,0.185373,’1999-05-12′,9016377,94,’Released’,’He\’s a legend in his own mind.’,4.50,4),(53953,’The Tooth Fairy’,0,”,’A woman and her daughter (Nicole Muñoz) encounter a deadly legend at a bed-and-breakfast.’,0.716764,’2006-08-08′,0,0,’Released’,”,4.30,13),(54054,’One for the Money’,40000000,’http://www.oneforthemoneyfilm.com/index2.html’,’An unemployed lingerie buyer convinces her bail bondsman cousin to give her a shot as a bounty hunter. Her first assignment is to track down a former cop on the run for murder â�� the same man who broke her heart years before. With the help of some friends and the best bounty hunter in the business, she slowly learns what it takes to be a true bounty hunter.’,19.438503,’2012-01-26′,36893721,91,’Released’,’She\’s looking for a few not-so-good men’,5.30,388),(54138,’Star Trek Into Darkness’,190000000,”,’When the crew of the Enterprise is called back home, they find an unstoppable force of terror from within their own organization has detonated the fleet and everything it stands for, leaving our world in a state of crisis. With a personal score to settle, Captain Kirk leads a manhunt to a war-zone world to capture a one man weapon of mass destruction. As our heroes are propelled into an epic chess game of life and death, love will be challenged, friendships will be torn apart, and sacrifices must be made for the only family Kirk has left: his crew.’,78.291018,’2013-05-05′,467365246,132,’Released’,’Earth Will Fall’,7.40,4418),(54518,’Justin Bieber: Never Say Never’,13000000,’http://www.justinbieberneversaynever.com/’,’Tells the story of Justin Bieber, the kid from Canada with the hair, the smile and the voice: It chronicles his unprecedented rise to fame, all the way from busking in the streets of Stratford, Canada to putting videos on YouTube to selling out Madison Square Garden in New York as the headline act during the My World Tour from 2010. It features Usher, Scooter Braun, Ludacris, Sean Kingston, Antonio \”L.A.\” Reid, Boyz II Men, Miley Cyrus, Jaden Smith, Justin\’s family members and parts of his crew and huge fanbase in a mix of interviews and guest performances. It was released in 3D in theaters all around the world and is the highest grossing concert movie of all time, beating the previous record held by Michael Jackson\’s This Is It from 2009.’,6.735922,’2011-02-11′,98441954,105,’Released’,’Find out what\’s possible if you never give up.’,4.80,154),(54580,’Los lunes al sol’,4000000,”,’After the closure of their shipyard in Northern Spain, a few former workers: Santa, José, Lino, Amador, Sergei and Reina keep in touch. They meet mainly at a bar owned by their former colleague Rico. Santa is the most superficially confident and the unofficial leader of the group. A court case hangs over him relating to a shipyard lamp he smashed during protest against the closure. José is bitter that his wife, Ana, is employed when he is not. The gap between them is widening and he is fearful that she will leave him for a co-worker. Despite arthritic legs, Ana endures night shifts at a fish factory and thinks her looks are now lost. Not everyone seems to agree including her boss. Lino, an aging family man doggedly pursuing positions beyond his qualifications. The oldest member of the group, Amador, has degenerated into alcoholism after being abandoned by his wife; maintaining an increasingly transparent pretense that his wife will soon return from holiday.’,3.663108,’2002-09-27′,146402,113,’Released’,’This film is not based on a real story. It is based on thousands.’,7.10,36),(54702,’Malevolence’,450000,’http://www.malevolencemovie.com/’,’It\’s ten years after the kidnapping of Martin Bristol. Taken from a backyard swing at his home at the age of six, he is forced to witness unspeakable crimes of a deranged madman. For years, Martin\’s whereabouts have remained a mystery…until now.’,1.077321,’2004-09-10′,0,90,’Released’,”,4.90,14),(54897,’The Grace Card’,200000,’http://www.thegracecardmovie.com/’,’Everything can change in an instant … and take a lifetime to unravel. When Mac McDonald loses his son in an accident, the ensuing 17 years of bitterness and pain erodes his love for his family and leaves him angry with God … and just about everyone else. Mac\’s rage stonewalls his career in the police department and makes for a combustible situation when he\’s partnered with Sam Wright, a rising star on the force who happens to be a part-time pastor and a loving family man. Can they somehow join forces to help one another when it\’s impossible for either of them to look past their differences-especially the most obvious one? Every day, we have the opportunity to rebuild relationships and heal deep wounds by extending and receiving God\’s grace. Offer THE GRACE CARD … and never underestimate the power of God\’s love.’,0.616283,’2011-02-25′,2295733,101,’Released’,’Never Underestimate The Power Of Grace …’,6.50,10),(55123,’Tumbleweeds’,312000,”,’A woman constantly runs from town to town with her 12 year old daughter to escape failed relationships. The film opens with one escape and the shift into a new start in San Diego. There Mom takes up with a controlling trucker and fights with her weirdo boss. Meanwhile, the daughter, used to making the constant shifts, finds a fit at school including getting chosen for a play lead.’,1.505703,’1999-11-28′,1281176,102,’Released’,’They ran away from everything but each other.’,6.20,11),(55180,’The Last Big Thing’,0,”,’From a bland tract house on the outskirts of Los Angeles, Simon Geist (with occasional help from his platonic girlfriend Darla) wages war against all of modern American popular culture. Geist starts up a magazine called \”The Next Big Thing\”, which he uses to confront and insult upcoming actors, comics, models and rock bands. As Geist\’s mysterious Underground Agenda escalates, will he become the \”last big thing\”, or be co-opted by the very forces he is railing against? Written by Van Film Fest’,0.678475,’1998-09-23′,0,98,’Released’,’The culture is going down on itself… go ahead, Scream!’,6.00,3),(55301,’Alvin and the Chipmunks: Chipwrecked’,75000000,’http://www.munkyourself.com/’,’Playing around while aboard a cruise ship, the Chipmunks and Chipettes accidentally go overboard and end up marooned in a tropical paradise. They discover their new turf is not as deserted as it seems.’,23.473004,’2011-12-14′,342695435,87,’Released’,’This holiday it\’s gonna get squeaky.’,5.40,484),(55306,’Ulee\’s Gold’,0,”,’An elderly beekeeper and Vietnam vet must rescue his daughter-in-law and protect his grandchildren from killers.’,0.933920,’1997-06-13′,0,112,’Released’,”,6.50,19),(55347,’Beginners’,3200000,’http://focusfeatures.com/beginners’,’A young man is rocked by two announcements from his elderly father: that he has terminal cancer, and that he has a young male lover.’,11.933449,’2010-09-11′,5332926,105,’Released’,’This is what love feels like.’,6.80,347),(55420,’Another Earth’,100000,’http://www.anotherearth.com/’,’On the night of the discovery of a duplicate Earth in the Solar system, an ambitious young student and an accomplished composer cross paths in a tragic accident.’,25.402697,’2011-07-22′,1776935,92,’Released’,”,6.80,527),(55465,’A Very Harold & Kumar Christmas’,19000000,’http://haroldandkumar.warnerbros.com’,’Six years have elapsed since Guantanamo Bay, leaving Harold and Kumar estranged from one another with very different families, friends and lives. But when Kumar arrives on Harold\’s doorstep during the holiday season with a mysterious package in hand, he inadvertently burns down Harold\’s father-in-law\’s beloved Christmas tree. To fix the problem, Harold and Kumar embark on a mission through New York City to find the perfect Christmas tree, once again stumbling into trouble at every single turn.’,17.971883,’2011-11-04′,35387212,108,’Released’,’Christmas comes prematurely.’,6.00,328),(55561,’Clockwatchers’,0,”,’Iris can best be described as a wallflower. She begins her first day as a temp for the nondescript Global Credit Association by waiting in a chair for two hours…’,1.196943,’1997-01-01′,0,96,’Released’,”,5.60,13),(55567,’Standing Ovation’,0,’http://standingovationmovie.com’,’A group of young girls is competing in a nation teen music video competition.’,0.305922,’2010-07-16′,531826,105,’Released’,’Dance – Sing – Dream’,3.90,6),(55604,’Boom Town’,2000000,”,’McMasters and Sand come to oil towns to get rich. Betsey comes West intending to marry Sand but marries McMasters instead. Getting rich and losing it all teaches McMasters and Sand the value of personal ties.’,1.867004,’1940-08-30′,9172000,119,’Released’,’Where Men Are Rough And Tough . . . And Like Their Women The Same Way !’,6.50,8),(55616,’Dracula: Pages from a Virgin\’s Diary’,1596010,”,’A ballet rendition of Bram Stoker\’s gothic novel DRACULA, presented in a style reminiscent of the silent expressionistic cinema of the early 20th Century. This work employs the subtle and sometimes bold use of color to emphasize its themes, but mainly is presented in black-and-white, or tinted in monochrome. No spoken dialogue can be heard, and the story of a sinister but intriguing immigrant who preys upon young English women unfolds through dance, pantomime and subtitles.’,0.552361,’2002-02-28′,0,75,’Released’,”,6.90,8),(55720,’A Better Life’,10000000,”,’A gardener in East L.A. struggles to keep his son away from gangs and immigration agents while traveling across town to perform landscaping work for the city\’s wealthy landowners.’,4.123533,’2011-06-24′,1759252,98,’Released’,’Every father wants more for his son.’,7.00,54),(55721,’Bridesmaids’,32500000,’http://www.bridesmaidsmovie.com/’,’Annieâ��s life is a mess. But when she finds out her lifetime best friend is engaged, she simply must serve as Lillianâ��s maid of honor. Though lovelorn and broke, Annie bluffs her way through the expensive and bizarre rituals. With one chance to get it perfect, sheâ��ll show Lillian and her bridesmaids just how far youâ��ll go for someone you love.’,17.107065,’2011-04-28′,288383523,125,’Released’,’Save the date’,6.50,1661),(55779,’Final Destination 5′,47000000,’http://finaldestinationmovie.warnerbros.com/index.html’,’In this fifth installment, Death is just as omnipresent as ever, and is unleashed after one manâ��s premonition saves a group of coworkers from a terrifying suspension bridge collapse. But this group of unsuspecting souls was never supposed to survive, and, in a terrifying race against time, the ill-fated group frantically tries to discover a way to escape Deathâ��s sinister agenda.’,38.555482,’2011-08-12′,157887643,92,’Released’,’We all share a common destination.’,5.90,866),(55787,’Water for Elephants’,38000000,’http://waterforelephantsfilm.com/’,’In this captivating Depression-era melodrama, impetuous veterinary student Jacob Jankowski joins a celebrated circus as an animal caretaker but faces a wrenching dilemma when he\’s transfixed by angelic married performer Marlena.’,16.801218,’2011-03-15′,114156230,120,’Released’,’Life is the most spectacular show on earth.’,6.70,850),(55831,’Boynton Beach Club’,0,”,’A handful of men and women of a certain age pick up the pieces of their lives and look for new love after the loss of their mates in this comedy drama from writer-director Susan Seidelman.’,0.188870,’2005-08-05′,0,105,’Released’,”,6.80,3),(55903,’Betty Fisher et autres histoires’,0,”,’Grieving after the death of her young son Joseph, novelist Betty Fisher enters a dark depression. Hoping to bring her out of it, her mother Margot arranges to kidnap another child, Jose, to replace the son Betty lost. Although she knows it\’s wrong, Betty accepts Jose as her new son. Meanwhile, Jose\’s mother Carole is looking for her son with the help of her boyfriend Francois and some of his criminal cohorts.’,0.024186,’2001-09-01′,0,103,’Released’,’Crimes of passion are not always between lovers.’,7.00,3),(56288,’Spy Kids: All the Time in the World’,27000000,’http://spykidsmovie.net/’,’Eight years after the third film, the OSS has become the world\’s top spy agency, while the Spy Kids department has since become defunct. A retired spy Marissa (Jessica Alba) is thrown back into the action along with her stepchildren when a maniacal Timekeeper (Jeremy Piven) attempts to take over the world. In order to save the world, Rebecca (Rowan Blanchard) and Cecil (Mason Cook) must team up with their hated stepmother. Carmen and Juni have since also grown up and will provide gadgets to them.’,14.788073,’2011-08-18′,85564310,89,’Released’,”,4.40,222),(56292,’Mission: Impossible – Ghost Protocol’,145000000,’http://www.missionimpossible.com/’,’In the 4th installment of the Mission Impossible series, Ethan Hunt (Cruise) and his team are racing against time to track down a dangerous terrorist named Hendricks (Nyqvist), who has gained access to Russian nuclear launch codes and is planning a strike on the United States. An attempt to stop him ends in an explosion causing severe destruction to the Kremlin and the IMF to be implicated in the bombing, forcing the President to disavow them. No longer being aided by the government, Ethan and his team chase Hendricks around the globe, although they might still be too late to stop a disaster.’,77.774770,’2011-12-07′,694713380,133,’Released’,’No Plan. No Backup. No Choice.’,6.80,3972),(56491,’In Her Line of Fire’,0,”,’When the Vice President\’s plane goes down near a remote Pacific island, he is kidnapped by rebel forces and held for ransom. It is up to his female Secret Service agent and a press secretary to infiltrate the camp and save him.’,0.429587,’2006-04-21′,0,88,’Released’,’Behind Enemy Lines No Man Can Stop Her. Only One Woman Can Touch Her.’,3.30,9),(56601,’The Perfect Game’,12500000,’http://www.theperfectgamemovie.com’,’Based on a true story, a group of boys from Monterrey, Mexico who become the first non-U.S. team to win the Little League World Series.’,0.903529,’2010-04-01′,3878993,118,’Released’,’Dream for the fences.’,6.30,30),(56666,’Fiza’,1000000,”,’In 1993 Fiza\’s brother disappears during the riots in Mumbai. In 1999 Fiza is tired of waiting and goes looking for him.’,0.043023,’2000-09-08′,623791,170,’Released’,’In Search of her brother’,6.10,7),(56715,’Just Visiting’,0,”,’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.’,10.844882,’2001-04-06′,0,88,’Released’,’They\’re not just from another time, they\’re from France.’,4.80,171),(56930,’Tycoon’,0,”,’Engineer Johnny Munroe is enlisted to build a railroad tunnel through a mountain to reach mines. His task is complicated, and his ethics are compromised, when he falls in love with his boss\’s daughter’,0.042442,’1947-12-27′,0,128,’Released’,’Breath-taking Adventure !’,6.60,4),(57022,’Sunshine State’,0,”,’A woman and her new husband returns to her hometown roots in coastal northern Florida, and must deal with family, business, and encroaching real estate development.’,4.245123,’2002-06-21′,0,141,’Released’,’Greetings from …’,6.00,10),(57089,’Hoodwinked Too! Hood VS. Evil’,30000000,’http://www.hoodwinkedtoomovie.com/’,’Red Riding Hood is training in the group of Sister Hoods, when she and the Wolf are called to examine the sudden mysterious disappearance of Hansel and Gretel.’,10.694417,’2011-04-29′,13521829,86,’Released’,’Not All Fairy Tales Go By the Book.’,4.80,131),(57119,’Jumping the Broom’,6600000,’http://www.jumpingthebroom-movie.com/’,’Two very different families converge on Martha\’s Vineyard one weekend for a wedding.’,4.492455,’2011-05-06′,37710610,112,’Released’,’Sometimes the only way to get past family drama… is to jump right over it.’,6.00,56),(57120,’Meek\’s Cutoff’,0,’http://meekscutoff.com/’,’Set in 1845, this drama follows a group of settlers as they embark on a punishing journey along the Oregon Trail. When their guide leads them astray, the expedition is forced to contend with the unforgiving conditions of the high plain desert.’,4.749885,’2010-09-05′,876302,104,’Released’,’The Road to Civilisation is Not Always Civilised’,6.50,77),(57157,’Young Adult’,12000000,’http://www.youngadultmovie.com/’,’A divorced writer from the Midwest returns to her hometown to reconnect with an old flame, who\’s now married with a family.’,16.183746,’2011-12-16′,22939027,94,’Released’,’Everyone gets old. Not everyone grows up.’,5.60,364),(57158,’The Hobbit: The Desolation of Smaug’,250000000,’http://www.thehobbit.com/’,’The Dwarves, Bilbo and Gandalf have successfully escaped the Misty Mountains, and Bilbo has gained the One Ring. They all continue their journey to get their gold back from the Dragon, Smaug.’,94.370564,’2013-12-11′,958400000,161,’Released’,’Beyond darkness… beyond desolation… lies the greatest danger of all.’,7.60,4524),(57165,’Wrath of the Titans’,150000000,’http://www.wrathofthetitansmovie.org’,’A decade after his heroic defeat of the monstrous Kraken, Perseus-the demigod son of Zeus-is attempting to live a quieter life as a village fisherman and the sole parent to his 10-year old son, Helius. Meanwhile, a struggle for supremacy rages between the gods and the Titans. Dangerously weakened by humanity\’s lack of devotion, the gods are losing control of the imprisoned Titans and their ferocious leader, Kronos, father of the long-ruling brothers Zeus, Hades and Poseidon.’,44.927635,’2012-03-27′,301000000,99,’Released’,’Feel the Wrath’,5.50,1431),(57201,’The Lone Ranger’,255000000,’http://disney.go.com/the-lone-ranger/’,’The Texas Rangers chase down a gang of outlaws led by Butch Cavendish, but the gang ambushes the Rangers, seemingly killing them all. One survivor is found, however, by an American Indian named Tonto, who nurses him back to health. The Ranger, donning a mask and riding a white stallion named Silver, teams up with Tonto to bring the unscrupulous gang and others of that ilk to justice.’,49.046956,’2013-07-03′,89289910,149,’Released’,’Never Take Off the Mask’,5.90,2311),(57212,’War Horse’,66000000,’http://www.warhorsemovie.com/’,’Follows a young man named Albert and his horse, Joey, and how their bond is broken when Joey is sold to the cavalry and sent to the trenches of World War One. Despite being too young to enlist, Albert heads to France to save his friend.’,29.505574,’2011-12-25′,177584879,146,’Released’,’Separated by War. Tested by Battle. Bound by Friendship.’,7.00,992),(57214,’Project X’,12000000,”,’Three high school seniors throw a party to make a name for themselves. As the night progresses, things spiral out of control as word of the party spreads.’,49.070321,’2012-03-01′,100000000,88,’Released’,’Witness it’,6.50,1564),(57294,’Crying with Laughter’,0,”,’Powerfully redemptive and darkly comedic revenge thriller set in the vicious world of stand-up comedy, starring Stephen McCole and Malcolm Shields.’,0.108135,’2009-06-01′,0,93,’Rumored’,’A Bad Trip Down Memory Lane’,7.00,1),(57431,’The Sitter’,25000000,”,’Noah, is not your typical entertain-the-kids-no-matter-how-boring-it-is kind of sitter. He\’s reluctant to take a sitting gig; he\’d rather, well, be doing anything else, especially if it involves slacking. When Noah is watching the neighbor\’s kid he gets a booty call from his girlfriend in the city. To hook up with her, Noah takes to the streets, but his urban adventure spins out of control as he finds himself on the run from a maniacal drug lord.’,19.428994,’2011-12-09′,34942188,81,’Released’,’Worst. Babysitter. Ever.’,5.40,325),(57612,’Dolphins and Whales: Tribes of the Ocean’,6000000,”,’This documentary goes to coral reefs of the Bahamas and the waters of the Kingdom of Tonga for a close encounter with the surviving tribes of the ocean: wild dolphins and belugas, the love of a Humpback mother for her newborn calf, the singing Humpback males, an orca the mighty King of the ocean, and the gentle manatee. Little-known aspects of these creatures capable of sophisticated communication and social interaction. Documents the life of these graceful, majestic yet endangered sea creatures’,0.041651,’2008-02-15′,7518876,42,’Released’,”,8.00,3),(57800,’Ice Age: Continental Drift’,95000000,’http://www.iceagemovies.com/films/ice-age-continental-drift’,’Manny, Diego, and Sid embark upon another adventure after their continent is set adrift. Using an iceberg as a ship, they encounter sea creatures and battle pirates as they explore a new world.’,65.229868,’2012-06-26′,877244782,88,’Released’,’Manny, Diego, and Sid embark upon another adventure after their continent is set adrift.’,6.20,2672),(57825,’Bride & Prejudice’,7000000,”,’A Bollywood update of Jane Austen\’s classic tale, in which 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.’,12.150871,’2004-02-11′,0,111,’Released’,’Bollywood meets Hollywood… And it\’s a perfect match’,6.50,110),(57876,’Area 51′,5000000,”,’Three young conspiracy theorists attempt to uncover the mysteries of Area 51, the government\’s secret location rumored to have hosted encounters with alien beings. What they find at this hidden facility exposes unimaginable secrets.’,7.794000,’2015-05-15′,0,91,’Released’,”,4.20,151),(57943,’The Love Letter’,0,”,’20th century computer games designer Scott exchanges love letters with 19th century poet Elizabeth Whitcomb through an antique desk that can make letters travel through time.’,0.116873,’1998-02-01′,0,98,’Released’,’A letter from the past would change their future forever.’,4.70,3),(58048,’Shanghai Surprise’,17000000,”,’Glendon Wasey is a fortune hunter looking for a fast track out of China. Gloria Tatlock is a missionary nurse seeking the curing powers of opium for her patients. Fate sets them on a hectic, exotic, and even romantic quest for stolen drugs. But they are up against every thug and smuggler in Shangai.’,0.138564,’1986-08-29′,0,97,’Released’,’A romantic adventure for the dangerous at heart.’,2.90,15),(58051,’Housefull’,0,’http://housefull.erosentertainment.com/’,’Believing himself to be a jinx and bringing bad luck upon himself and others, a man attempts to find true love, but ends up in very complicated relationships.’,0.120820,’2010-04-30′,0,135,’Released’,’He found the girl of his dreams, he fell in love and he got married… to all three.’,5.20,29),(58151,’Fright Night’,17000000,’http://www.welcometofrightnight.com’,’A teenager suspects his new neighbour is a vampire. Unable to convince anyone, he tries to enlist the help of a self-proclaimed vampire hunter and magician in this remake of the 1985 comedy-horror classic.’,18.270830,’2011-08-18′,24922237,106,’Released’,’You can\’t run from evil when it lives next door.’,6.00,603),(58224,’Mr. Popper\’s Penguins’,55000000,’http://www.popperspenguins.com/main.html’,’Jim Carrey stars as Tom Popper, a successful businessman whoâ��s clueless when it comes to the really important things in life…until he inherits six â��adorableâ�� penguins, each with its own unique personality. Soon Tomâ��s rambunctious roommates turn his swank New York apartment into a snowy winter wonderland â�� and the rest of his world upside-down.’,32.835777,’2011-06-17′,187361754,94,’Released’,”,5.70,751),(58233,’Johnny English Reborn’,45000000,’http://www.johnnyenglishreborn.com/’,’The most prominent heads of state in the world begin gathering for a conference that could have a major impact on global politics. When MI-7 receives word that the Chinese premier has become the target of some high-powered killers, it falls on Johnny English to save the day. Armed with the latest high-tech weaponry and gadgets that would make even James Bond jealous, the once-disgraced agent uncovers evidence of a massive conspiracy involving some of the world\’s most powerful organisations, and vows to redeem his tarnished reputation by stopping the killers before they can strike.’,35.658500,’2011-09-15′,160078586,101,’Released’,’One man. One mission. No chance.’,6.00,1007),(58428,’The Innkeepers’,750000,’http://www.magnetreleasing.com/theinnkeepers/’,’During the final days at the Yankee Pedlar Inn, two employees determined to reveal the hotel\’s haunted past begin to experience disturbing events as old guests check in for a stay.’,14.386807,’2011-12-01′,78396,102,’Released’,’Some guests never checked out.’,5.40,219),(58431,’Pride and Prejudice and Zombies’,28000000,’https://www.facebook.com/PPZMovie’,’A zombie outbreak has fallen upon the land in this reimagining of Jane Austenâ��s classic tale of the tangled relationships between lovers from different social classes in 19th century England. Feisty heroine Elizabeth Bennet (Lily James) is a master of martial arts and weaponry and the handsome Mr. Darcy (Sam Riley) is a fierce zombie killer, yet the epitome of upper class prejudice. As the zombie outbreak intensifies, they must swallow their pride and join forces on the blood-soaked battlefield in order to conquer the undead once and for all.’,28.397048,’2016-02-04′,16374328,108,’Released’,’Bloody lovely.’,5.50,640),(58492,’The Greatest Movie Ever Sold’,0,’http://www.thegreatestmovieeversold.com/’,’A documentary about branding, advertising and product placement that is financed and made possible by brands, advertising and product placement.’,0.692497,’2011-04-22′,621951,87,’Released’,’He\’s not selling out, he\’s buying in.’,6.40,88),(58574,’Sherlock Holmes: A Game of Shadows’,125000000,’http://sherlockholmes2.warnerbros.com/index.html’,’There is a new criminal mastermind at large (Professor Moriarty) and not only is he Holmesâ�� intellectual equal, but his capacity for evil and lack of conscience may give him an advantage over the detective.’,81.499621,’2011-11-22′,334615000,129,’Released’,’The game is afoot.’,7.00,3886),(58595,’Snow White and the Huntsman’,170000000,’http://www.snowwhiteandthehuntsman.com/’,’After the Evil Queen marries the King, she performs a violent coup in which the King is murdered and his daughter, Snow White, is taken captive. Almost a decade later, a grown Snow White is still in the clutches of the Queen. In order to obtain immortality, The Evil Queen needs the heart of Snow White. After Snow escapes the castle, the Queen sends the Huntsman to find her in the Dark Forest.’,77.178973,’2012-05-30′,396600000,127,’Released’,’The Fairytale is Over’,5.80,3118),(58626,’The Hit List’,6000000,”,’A disgruntled man creates a hit list with a stranger during a drunken night out and must then race to try to save those he marked for extermination as the bodies begin to pile up and all fingers point to him.’,4.957014,’2011-04-02′,0,90,’Released’,’Who\’s on your list?’,5.20,73),(58680,’Woo’,13000000,”,’Gorgeous and extraverted Woo meets insecure and straight-laced law clerk Tim at a blind date.’,1.750054,’1998-05-08′,8026971,84,’Released’,’It\’s Woo\’s world.. we\’re just living in it.’,5.50,10),(58882,’Snow Flower and the Secret Fan’,134005,’http://www.foxsearchlight.com/snowflowerandthesecretfan/’,’A story set in 19th century China and centered on the lifelong friendship between two girls who develop their own secret code as a way to contend with the rigid cultural norms imposed on women.’,2.260315,’2011-07-15′,1332231,104,’Released’,”,5.30,22),(59108,’Tower Heist’,75000000,’http://www.towerheist.com/index.php’,’A luxury condo manager leads a staff of workers to seek payback on the Wall Street swindler who defrauded them. With only days until the billionaire gets away with the perfect crime, the unlikely crew of amateur thieves enlists the help of petty crook Slide to steal the $20 million theyâ��re sure is hidden in the penthouse.’,36.743324,’2011-11-02′,152930623,104,’Released’,’Ordinary guys. An extraordinary robbery.’,5.80,932),(59436,’Midnight in Paris’,30000000,’http://www.sonyclassics.com/midnightinparis’,’A romantic comedy about a family traveling to the French capital for business. The party includes a young engaged couple forced to confront the illusion that a life different from their own is better.’,43.753585,’2011-05-11′,151119219,94,’Released’,”,7.40,1990),(59440,’Warrior’,25000000,’http://www.warriorfilm.com/index2.html’,’The inspirational story of an estranged family that finds redemption in the unlikeliest of placesâ�¦the MMA ring. Tommy Riordan (Tom Hardy), an ex-marine with a tragic past, returns home and enlists his father (Nick Nolte), a recovering alcoholic and former wrestling coach, to train him for â��Spartaâ��, the biggest MMA tournament ever held. But when Tommyâ��s underdog brother, Brendan (Joel Edgerton), fights his way into the tournament, the two brothers must finally confront each other and the forces that pulled them apart. What ensues is the most gut-wrenching, soul-stirring, and unforgettable battle of their lives.’,51.915025,’2011-09-09′,23057115,140,’Released’,’Fight for Family’,7.70,1272),(59457,’Womb’,3100000,”,’A woman\’s consuming love forces her to bear the clone of her dead beloved. From his infancy to manhood, she faces the unavoidable complexities of her controversial decision.’,7.453347,’2010-07-15′,0,111,’Released’,’What are the consequences of giving birth to your dead boyfriend?’,5.90,92),(59678,’Attack the Block’,14350531,’http://attacktheblock.com/’,’A teen gang in a grim South London housing estate must team up with the other residents to protect their neighbourhood from a terrifying alien invasion.’,30.952377,’2011-05-12′,3964682,88,’Released’,’Inner City vs. Outer Space’,6.30,733),(59728,’The 5th Quarter’,6000000,’http://the5thquartermovie.com/’,’In the wake of a car crash that killed his brother, football player Jon Abbate leads his school\’s struggling team to its most successful season ever.’,0.215464,’2011-03-25′,399611,97,’Released’,’Rising from tragedy to triumph’,4.70,12),(59859,’Kick-Ass 2′,28000000,”,’After Kick-Assâ�� insane bravery inspires a new wave of self-made masked crusaders, he joins a patrol led by the Colonel Stars and Stripes. When these amateur superheroes are hunted down by Red Mist â�� reborn as The Mother Fucker â�� only the blade-wielding Hit-Girl can prevent their annihilation.’,40.286350,’2013-07-17′,60700000,103,’Released’,’You Can\’t Fight Your Destiny.’,6.30,2224),(59860,’Monte Carlo’,20000000,”,’Three young women vacationing in Paris find themselves whisked away to Monte Carlo after one of the girls is mistaken for a British heiress.’,17.237143,’2011-07-01′,17425000,109,’Released’,’She\’s having the time of someone else\’s life.’,6.00,593),(59861,’Larry Crowne’,30000000,’http://www.larrycrowne.com/’,’After losing his job, a middle-aged man reinvents himself by going back to college.’,20.355458,’2011-06-30′,36160375,98,’Released’,’Rediscover life and love’,5.70,359),(59917,’Cotton Comes to Harlem’,1200000,”,’The Charismatic black nationalist leader Rev Deke O\’Malley is trying to sell the people of Harlem a dream. Invest $100 in his company and live in Africa. But cops Gravedigger and Coffin know all about Deke and his fraudulent schemes that take advantage of the poor and the ignorant and can\’t wait for a chance to expose him.’,1.079125,’1970-05-27′,0,97,’Released’,’Introducing COFFIN ED and GRAVEDIGGER, two detectives only a mother could love.’,6.70,13),(59930,’The Inkwell’,0,”,’The Inkwell is about a 16-year-old boy coming of age on Martha\’s Vineyard in the summer of 1976.’,0.269661,’1994-04-22′,8880705,110,’Released’,’Summer\’s Never Been So Much Fun!’,3.90,5),(59961,’Safe House’,85000000,’http://www.nooneissafe.com’,’A dangerous CIA renegade resurfaces after a decade on the run. When the safe house he\’s remanded to is attacked by mercenaries, a rookie operative escapes with him. Now, the unlikely allies must stay alive long enough to uncover who wants them dead.’,34.773106,’2012-02-09′,208076205,115,’Released’,’No one is safe’,6.30,1345),(59962,’This Means War’,65000000,’http://www.thismeanswarmovie.com/’,’Two top CIA operatives wage an epic battle against one another after they discover they are dating the same woman.’,38.994297,’2012-02-14′,156974557,103,’Released’,’It\’s SPY Against SPY’,5.90,1389),(59965,’Abduction’,35000000,’http://www.abductionthefilm.com/’,’A young man sets out to uncover the truth about his life after finding his baby photo on a missing persons website.’,19.893646,’2011-09-22′,82087155,106,’Released’,’They stole his life. He\’s taking it back.’,5.60,961),(59967,’Looper’,30000000,’http://loopermovie.com/’,’In the futuristic action thriller Looper, time travel will be invented but it will be illegal and only available on the black market. When the mob wants to get rid of someone, they will send their target 30 years into the past where a looper, a hired gun, like Joe is waiting to mop up. Joe is getting rich and life is good until the day the mob decides to close the loop, sending back Joe\’s future self for assassination.’,46.377628,’2012-09-26′,47042000,118,’Released’,’Hunted By Your Future, Haunted By Your Past’,6.60,4697),(59968,’Our Idiot Brother’,10000000,’http://www.ouridiotbrother.com/’,’Everybody has the sibling who is always just a little bit behind the curve when it comes to getting his life together. For sisters Liz, Miranda and Natalie, that person is their perennially upbeat brother Ned, an erstwhile organic farmer whose willingness to rely on the honesty of mankind is a less-than-optimum strategy for a tidy, trouble-free existence. Ned may be utterly lacking in common sense, but he is their brother and so, after his girlfriend dumps him and boots him off the farm, his sisters once again come to his rescue. As Liz, Miranda and Natalie each take a turn at housing Ned, their brother\’s unfailing commitment to honesty creates more than a few messes in their comfortable routines. But as each of their lives begins to unravel, Ned\’s family comes to realize that maybe, in believing and trusting the people around him, Ned isn\’t such an idiot after all.’,15.688439,’2011-08-26′,17273593,90,’Released’,’Everybody has one’,5.90,365),(59981,’Legends of Oz: Dorothy\’s Return’,70000000,’http://www.dorothyofozthemovie.com/’,’Dorothy wakes up in post-tornado Kansas, only to be whisked back to Oz to try to save her old friends the Scarecrow, the Lion, the Tin Man and Glinda from a devious new villain, the Jester. Wiser the owl, Marshal Mallow, China Princess and Tugg the tugboat join Dorothy on her latest magical journey through the colorful landscape of Oz to restore order and happiness to Emerald City.’,6.682006,’2013-06-13′,18662027,88,’Released’,’There\’s trouble in OZ…’,5.90,43),(60243,’جداÛ�Û� Ù�ادر از سÛ�Ù�Û�Ù�’,800000,”,’A married couple are faced with a difficult decision – to improve the life of their child by moving to another country or to stay in Iran and look after a deteriorating parent who has Alzheimer\’s disease.’,12.049373,’2011-03-15′,0,123,’Released’,’Ugly truth, sweet lies.’,7.70,469),(60304,’Hansel & Gretel: Witch Hunters’,50000000,’http://www.hanselandgretelmovie.com/’,’After getting a taste for blood as children, Hansel and Gretel have become the ultimate vigilantes, hell-bent on retribution. Now, unbeknownst to them, Hansel and Gretel have become the hunted, and must face an evil far greater than witches… their past.’,53.027870,’2013-01-17′,224803475,88,’Released’,’Classic tale. New twist.’,5.70,3239),(60307,’Diary of a Wimpy Kid: Rodrick Rules’,21000000,’http://www.diaryofawimpykidmovie.com/’,’Back in middle school after summer vacation, Greg Heffley and his older brother Rodrick must deal with their parents\’ misguided attempts to have them bond.’,14.329891,’2011-03-25′,72417394,99,’Released’,’Welcome to the next grade’,6.30,238),(60308,’Moneyball’,50000000,’http://www.moneyball-movie.com/’,’The story of Oakland Athletics general manager Billy Beane\’s successful attempt to put together a baseball team on a budget, by employing computer-generated analysis to draft his players.’,46.180421,’2011-09-22′,110206216,133,’Released’,’What are you really worth?’,7.00,1381),(60309,’The Conspirator’,25000000,’http://www.conspiratorthemovie.com/’,’Mary Surratt is the lone female charged as a co-conspirator in the assassination trial of Abraham Lincoln. As the whole nation turns against her, she is forced to rely on her reluctant lawyer to uncover the truth and save her life.’,9.169271,’2010-09-10′,15478800,122,’Released’,’One bullet killed the President. But not one man.’,6.20,137),(60400,’The Blue Bird’,0,”,’Set in mid-Europe sometime in the late 18th century where Mytyl (Shirley Temple), the bratty daughter of a woodcutter (Russell Hicks), finds a unique bird in the Royal Forest and selfishly refuses to give it to her sick friend. That night, she is visited in a dream by a fairy named Berylune (Jessie Ralph ) who sends her and her brother Tyltyl (Johnny Russell) to search for the Blue Bird of Happiness. To accompany them, the fairy magically transforms their dog Tylo (Eddie Collins), cat Tylette (Gale Sondergaard), and lantern (\”Light\”) into human form. The children have a number of adventures. The dream journey makes Mytyl awake as a kinder and gentler girl who has learned to appreciate all the comforts and joys of her home and family.’,1.280733,’1940-01-19′,0,88,’Released’,”,6.40,8),(60420,’Like Crazy’,250000,’http://www.likecrazy.com/’,’A British college student falls for an American student, only to be separated from him when she\’s banned from the U.S. after overstaying her visa.’,21.825564,’2011-10-28′,3542353,90,’Released’,’I Want You. I Need You. I Love You. I Miss You.’,6.40,381),(60421,’Circumstance’,0,’http://www.takepart.com/circumstance’,’A wealthy Iranian family struggles to contain a teenager\’s growing sexual rebellion and her brother\’s dangerous obsession’,2.342390,’2011-08-26′,0,107,’Released’,”,7.40,23),(60422,’Another Happy Day’,4000000,”,’A wedding at her parents\’ Annapolis estate hurls high-strung Lynn into the center of touchy family dynamics.’,3.238466,’2011-11-18′,355688,119,’Released’,’At this wedding, the F-word stands for Family’,6.20,37),(60463,’Sunday School Musical’,0,’http://www.theasylum.cc/product.php?id=148′,’Two competing groups of high school students must rally together and enter a song and dance competition in order to save their church from closing.’,0.460490,’2008-10-21′,0,93,’Released’,”,5.50,4),(60599,’Arbitrage’,12000000,”,’A troubled hedge fund magnate, desperate to complete the sale of his trading empire, makes an error that forces him to turn to an unlikely person for help.’,16.405120,’2012-09-14′,35485056,100,’Released’,’Power is the best alibi.’,6.10,294),(61012,’Silent Hill: Revelation 3D’,20000000,”,’Heather Mason and her father have been on the run, always one step ahead of dangerous forces that she doesn\’t fully understand, Now on the eve of her 18th birthday, plagued by horrific nightmares and the disappearance of her father, Heather discovers she\’s not who she thinks she is. The revelation leads her deeper into a demonic world that threatens to trap her forever.’,23.292761,’2012-10-10′,52302796,94,’Released’,’This Halloween prepare for a 3D ride through hell.’,5.00,432),(61038,’Go for It!’,2450000,’http://www.goforitmovie.com/’,’Carmen is a good student with a bad attitude who lives for dancing in the underground clubs of Chicago. She yearns to be \’somebody\’ but is afraid to believe in herself. Her immigrant Mexican, working-class parents want her to stay in school and get an education, so she attends junior college while working at a grocery store. Carmen\’s professor catches her performing one day in the neighborhood and challenges her to audition to a formal dance school in California. She gets into a fight with her chaotic family and runs away to her best friend Gina\’s place only to find out Gina\’s been getting beat up by her boyfriend. Meanwhile, Carmen\’s boyfriend, Jared wants her to commit and move in with him. Pulled apart in every direction, her dream of dancing fades. Can Carmen overcome her fears and take the biggest chance of her life, or will she succumb to her self-doubt?’,0.500753,’2011-05-13′,0,105,’Released’,”,4.60,5),(61337,’Critical Care’,0,”,’Werner Ernst is a young hospital resident who becomes embroiled in a legal battle between two half-sisters who are fighting over the care of their comatose father. But are they really fighting over their father\’s care, or over his $10 million estate? Meanwhile, Werner must contend with his nutty supervisor, who insists that he only care for patients with full insurance. Can Werner sidestep the hospital\’s legal team and do what\’s best for the patient?’,2.678715,’1997-10-31′,0,107,’Released’,”,6.10,9),(61752,’Girl 6′,12000000,”,’Girl 6 is a 1996 American film by director Spike Lee about a phone sex operator. Theresa Randle played the title character, and playwright Suzan-Lori Parks wrote the screenplay. The soundtrack is composed entirely of songs written by Prince. The film was screened in the Un Certain Regard section at the 1996 Cannes Film Festival. Directors Quentin Tarantino and Ron Silver make cameo appearances as film directors at a pair of interesting auditions.’,2.993939,’1996-03-22′,4939939,108,’Released’,’A fresh, sassy and sexy comedy!’,5.70,16),(61791,’Rise of the Planet of the Apes’,93000000,’http://www.apeswillrise.com/’,’Scientist Will Rodman is determined to find a cure for Alzheimer\’s, the disease which has slowly consumed his father. Will feels certain he is close to a breakthrough and tests his latest serum on apes, noticing dramatic increases in intelligence and brain activity in the primate subjects â�� especially Caesar, his pet chimpanzee.’,138.433168,’2011-08-03′,482860185,105,’Released’,’Evolution Becomes Revolution.’,7.00,4347),(61891,’Anonymous’,30000000,’http://www.anonymous-movie.com/’,’Set against the backdrop of the succession of Queen Elizabeth I, and the Essex Rebellion against her, the story advances the theory that it was in fact Edward De Vere, Earl of Oxford who penned Shakespeare\’s plays.’,16.698316,’2011-10-21′,15395087,130,’Released’,’Was Shakespeare a Fraud?’,6.30,288),(61984,’Space Battleship Yamato’,12000000,”,’In 2199, five years after the Gamilons began an invasion of Earth, the planet has been ravaged by the aliens\’ bombs. The remnants of humanity have fled underground to escape the irradiated surface. One day, former pilot Susumu Kodai discovers a capsule sent from the planet Iscandar that tells of a device that can remove the radiation from the Earth\’s surface. The Earth Defense Force rebuilds the battleship Yamato with a new type of propulsion system to make the 148,000 light year trip to Iscandar in hopes of saving the Earth. Within one year, the radiation will drive the rest of humanity to extinction.’,5.158067,’2010-12-01′,11212294,131,’Released’,”,6.30,59),(62008,’Good Deeds’,0,’http://www.gooddeedsmovie.com/index.html’,’Businessman Wesley Deeds is jolted out of his scripted life when he meets Lindsey, a single mother who works on the cleaning crew in his office building.’,4.448494,’2012-02-23′,0,111,’Released’,’Wesley Deeds is About to Discover the Person He Was Meant to Be.’,6.20,45),(62116,’Nannerl, la soeur de Mozart’,0,”,’A re-imagined account of the early life of Maria Anna \’Nannerl\’ Mozart, five years older than Wolfgang and a musical prodigy in her own right.’,0.774442,’2010-06-09′,0,120,’Released’,”,6.20,13),(62177,’Brave’,185000000,’http://disney.go.com/brave/#/home’,’Brave is set in the mystical Scottish Highlands, where Mérida is the princess of a kingdom ruled by King Fergus and Queen Elinor. An unruly daughter and an accomplished archer, Mérida one day defies a sacred custom of the land and inadvertently brings turmoil to the kingdom. In an attempt to set things right, Mérida seeks out an eccentric old Wise Woman and is granted an ill-fated wish. Also figuring into Méridaâ��s quest â�� and serving as comic relief â�� are the kingdomâ��s three lords: the enormous Lord MacGuffin, the surly Lord Macintosh, and the disagreeable Lord Dingwall.’,125.114374,’2012-06-21′,538983207,93,’Released’,’Change your fate.’,6.70,4641),(62204,’La Guerre du feu’,12000000,”,’A colossal adventure odyssey that turns back the hands of time to the very beginning of man\’s existence. 80,000 years ago, when man roamed the earth, he was exposed to the many harsh elements of nature. Against the perilous atmosphere of rugged terrain, rival tribes and savage beasts, Quest for Fire examines a peaceful tribe\’s search for that all important element fire, and the knowledge to create it. Focusing on human dream as well as realistic insights into pre-historic man, the constant struggle for survival is vividly recreated in this sensational production.’,6.537986,’1981-12-15′,55260558,100,’Released’,”,7.10,109),(62206,’30 Minutes or Less’,28000000,’http://30minutesorless.com/’,’Two fledgling criminals kidnap a pizza delivery guy, strap a bomb to his chest, and advise him that he has mere hours to rob a bank or else…’,25.039383,’2011-08-11′,40547440,83,’Released’,’A lot can happen in 30 minutes.’,5.60,531),(62211,’Monsters University’,200000000,”,’A look at the relationship between Mike and Sulley during their days at Monsters University â�� when they weren\’t necessarily the best of friends.’,89.186492,’2013-06-20′,743559607,104,’Released’,’School never looked this scary.’,7.00,3528),(62213,’Dark Shadows’,150000000,’http://darkshadowsmovie.warnerbros.com’,’Vampire Barnabas Collins is inadvertently freed from his tomb and emerges into the very changed world of 1972. He returns to Collinwood Manor to find that his once-grand estate and family have fallen into ruin.’,50.306728,’2012-05-08′,245527149,113,’Released’,’Every Family Has Its Demons’,5.70,2320),(62214,’Frankenweenie’,39000000,’http://movies.disney.com/frankenweenie-2012′,’When a car hits young Victor\’s pet dog Sparky, Victor decides to bring him back to life the only way he knows how. But when the bolt-necked \”monster\” wreaks havoc and terror in the hearts of Victor\’s neighbors, he has to convince them that Sparky\’s still the good, loyal friend he was.’,27.908783,’2012-10-04′,35287788,87,’Released’,’The electrifying dog is back from beyond the grave’,6.60,932),(62215,’Melancholia’,7400000,”,’Two sisters find their already strained relationship challenged as a mysterious new planet threatens to collide with Earth.’,36.173598,’2011-05-26′,21817298,136,’Released’,’Enjoy it while it lasts’,7.00,885),(62255,’Tracker’,6500000,’http://www.trackerthemovie.com/’,’An ex-Boer war guerrilla in New Zealand is sent out to bring back a Maori accused of killing a British soldier. Gradually they grow to know and respect one another but a posse, led by the British Commanding officer is close behind and his sole intention is to see the Maori hang. Written by Filmfinders 1903. A guerilla fighter from the South African Boer war called Arjan (Winstone) takes on a manhunt for Maori seaman Kereama (Morrison), who is accused of murdering a British soldier. What follows is a cat and mouse pursuit through the varied landscape of NZ with both hunter and huntee testing their bushcraft and wits against that of the other. Written by Anonymous’,2.074295,’2010-05-20′,0,102,’Released’,”,6.00,16),(62402,’Guiana 1838′,0,”,’The abolition of slavery in the British Caribbean in 1834 prompts Gillanders, Arbuthnot & Company in Calcutta, a part of the East India Company, to recruit Coolies from India to fill the resulting labor void. The company hires Sinha, a fierce small-timer to sell dreams of El Dorado to the unsuspecting, impoverished Coolies who are signed to five-year contracts as indentured servants. Upon the Coolies\’ arrival in British Guiana in 1838, the British planters promptly enslave them to ensure that the growth of sugar in the British West Indies will continue uninterrupted. John Scoble of the British and Foreign Anti Slavery Society arrives on the colony a year later to discover a new form of slavery; this time on the backs of Indians.’,0.030253,’2004-09-24′,0,120,’Released’,”,2.80,3),(62630,’The Devil\’s Double’,19100000,”,’A chilling vision of the House of Saddam Hussein comes to life through the eyes of the man who was forced to become the double of Hussein\’s sadistic son.’,10.559414,’2011-02-11′,5728213,109,’Released’,’The 80\’s were brilliant, if you were in charge.’,6.50,208),(62676,’Limbo’,8000000,”,’Unconventional narrative about the interactions amongst a group of people in a small town in Alaska, each of whom has guards a secret.’,0.034259,’1999-06-04′,1997807,126,’Released’,’The Only Thing More Dangerous Than Death… Is Survival.’,7.00,17),(62677,’Songcatcher’,0,”,’After being denied a promotion at the university where she teaches, Doctor Lily Penleric, a brilliant musicologist, impulsively visits her sister, who runs a struggling rural school in Appalachia. There she stumbles upon the discovery of her life – a treasure trove of ancient Scots-Irish ballads, songs that have been handed down from generation to generation, preserved intact by the seclusion of the mountains. With the goal of securing her promotion, Lily ventures into the most isolated areas of the mountains to collect the songs and finds herself increasingly enchanted.’,3.363321,’2001-03-01′,0,109,’Released’,’Fall under its spell..’,5.60,9),(62728,’Brighton Rock’,0,’http://brightonrockmovie.com/’,’Charts the headlong fall of Pinkie, a razor-wielding disadvantaged teenager with a religious death wish.’,3.122152,’2010-09-13′,0,111,’Released’,’Love. Murder. Revenge.’,5.60,35),(62764,’Mirror Mirror’,85000000,”,’After she spends all her money, an evil enchantress queen schemes to marry a handsome, wealthy prince. There\’s just one problem – he\’s in love with a beautiful princess, Snow White. Now, joined by seven rebellious dwarves, Snow White launches an epic battle of good vs. evil…’,48.126297,’2012-03-15′,183018522,106,’Released’,’The Snow White legend comes alive.’,5.50,1114),(62835,’Colombiana’,40000000,’http://www.colombiana-movie.com/’,’Zoe Saldana plays a young woman who, after witnessing her parentsâ�� murder as a child in Bogota, grows up to be a stone-cold assassin. She works for her uncle as a hitman by day, but her personal time is spent engaging in vigilante murders that she hopes will lead her to her ultimate target: the mobster responsible for her parents\’ death.’,33.785969,’2011-07-27′,60965854,108,’Released’,’Revenge is beautiful.’,6.50,824),(62837,’Dolphin Tale’,37000000,’http://dolphintalemovie.warnerbros.com/index.html’,’A story centered on the friendship between a boy and a dolphin whose tail was lost in a crab trap.’,6.638390,’2011-09-23′,95404397,113,’Released’,’Inspired by the amazing true story of Winter.’,6.70,163),(62838,’New Year\’s Eve’,56000000,”,’The lives of several couples and singles in New York intertwine over the course of New Year\’s Eve.’,21.219292,’2011-12-08′,142044638,118,’Released’,’The one night anything is possible.’,5.70,718),(63006,’Dum Maaro Dum’,0,’http://www.dummaarodum.com/’,’We hurtle into the bylanes, beach shacks and raves of Goa with Lorry as his life spirals out of control, with Joki as he tries to redeem the past and with Kamath as he goes no-holds-barred after the mysterious shadow figure behind it all… Punctuated with a soundtrack that moves from pulsating dance tracks to haunting Konkani songs, shot right in the midst of the teeming international tourist hotspots, Dum Maaro Dum takes you on a dramatic, thrilling trip filled with twists, turns, suspense… and a shocking finale!’,0.075817,’2011-04-22′,0,130,’Released’,’Goa. Paradise on Earth. But every Paradise has a few snakes.’,5.40,7),(63020,’The Perez Family’,11000000,”,’In the midst of the Mariel boat lift — a hurried exodus of refugees from Cuba going to America — an immigration clerk accidentally presumes that dissident Juan Raul Perez and Dorita Evita Perez are married. United by their last name and a mutual resolve to emigrate, Dorita and Juan agree to play along. But it gets complicated when the two begin falling for each other just as Juan reunites with his wife, Carmela, whom he hasn\’t seen in decades.’,1.187671,’1995-05-12′,2832826,113,’Released’,’On the way to finding a family, she found love.’,6.60,9),(63287,’The Poker House’,0,”,’Actress Lori Petty makes her directorial debut with this poignant, beautifully crafted film about a teenage girl trying to survive the dismal circumstances of her life with dignity, humor, and basketball.’,2.948576,’2008-06-20′,0,93,’Released’,’Lust, drugs and violence… no place for a kid.’,6.10,47),(63492,’What\’s Your Number?’,20000000,’http://www.whatsyournumbermovie.com/’,’Ally Darling (Anna Faris) is realizing she\’s a little lost in life. Her latest romance has just fizzled out, and she\’s just been fired from her marketing job. Then she reads an eye-opening magazine article that warns that 96 percent of women who\’ve been with 20 or more lovers are unlikely to find a husband. Determined to turn her life around and prove the article wrong, Ally embarks on a mission to find the perfect mate from among her numerous ex-boyfriends.’,19.220789,’2011-09-30′,30426096,106,’Released’,’Ally\’s looking for the best ex of her life.’,6.20,671),(63574,’Joyful Noise’,0,’http://www.joyfulnoisethemovie.com’,’G.G. Sparrow faces off with her choir\’s newly appointed director, Vi Rose Hill, over the group\’s direction as they head into a national competition.’,5.753705,’2012-01-13′,0,117,’Released’,’Dream a whole lot louder’,6.70,33),(64328,’The Muppets’,45000000,’http://disney.go.com/muppets/’,’When Kermit the Frog and the Muppets learn that their beloved theater is slated for demolition, a sympathetic human, Gary, and his puppet roommate, Walter, swoop in to help the gang put on a show and raise the $10 million they need to save the day.’,17.047276,’2011-11-22′,165184237,103,’Released’,’They\’re closer than you think.’,6.50,501),(64499,’Quinceañera’,0,”,’As Magdalena\’s 15th birthday approaches, her simple, blissful life is complicated by the discovery that she\’s pregnant. Kicked out of her house, she finds a new family with her great-granduncle and gay cousin.’,0.034135,’2006-06-05′,0,90,’Released’,’Life\’s no walk in the park’,7.00,7),(64559,’Rien ne va plus’,0,”,’Betty and Victor are a pair of scam artists. One day Betty brings in Maurice, a treasurer of a multinational company. Maurice is due to transfer 5 millions francs out of Switzerland, and Betty is convinced he plans to steal that money.’,0.627964,’1997-10-15′,0,105,’Released’,”,6.40,5),(64639,’Straw Dogs’,25000000,’http://www.strawdogsmovie.com/’,’L.A. screenwriter David Sumner relocates with his wife, Amy, to her hometown in the deep South. There, while tensions build between them, a brewing conflict with locals becomes a threat to them both.’,7.473455,’2011-09-16′,10324441,110,’Released’,’Everyone Has A Breaking Point’,5.50,144),(64678,’The Art of Getting By’,0,’http://www.foxsearchlight.com/theartofgettingby/’,’George, a lonely and fatalistic teen who\’s made it all the way to his senior year without ever having done a real day of work, is befriended by Sally, a popular but complicated girl who recognizes in him a kindred spirit.’,12.690224,’2011-06-17′,1406224,83,’Released’,’The toughest lesson is love.’,6.50,415),(64682,’The Great Gatsby’,105000000,”,’An adaptation of F. Scott Fitzgerald\’s Long Island-set novel, where Midwesterner Nick Carraway is lured into the lavish world of his neighbor, Jay Gatsby. Soon enough, however, Carraway will see through the cracks of Gatsby\’s nouveau riche existence, where obsession, madness, and tragedy await.’,61.196071,’2013-05-10′,351040419,143,’Released’,’Reserving judgments is a matter of infinite hope… I come to the admission that it has a limit.’,7.30,3769),(64685,’Extremely Loud & Incredibly Close’,40000000,’http://extremelyloudandincrediblyclose.warnerbros.com/’,’A year after his father\’s death, Oskar, a troubled young boy, discovers a mysterious key he believes was left for him by his father and embarks on a scavenger hunt to find the matching lock.’,31.066874,’2011-12-24′,55247881,129,’Released’,’This is not a story about September 11th, it\’s a story about every day after.’,6.90,708),(64686,’47 Ronin’,175000000,”,’Based on the original 1941 movie from Japan, and from ancient Japanâ��s most enduring tale, the epic 3D fantasy-adventure 47 Ronin is born. Keanu Reeves leads the cast as Kai, an outcast who joins Oishi (Hiroyuki Sanada), the leader of the 47 outcast samurai. Together they seek vengeance upon the treacherous overlord who killed their master and banished their kind. To restore honor to their homeland, the warriors embark upon a quest that challenges them with a series of trials that would destroy ordinary warriors.’,41.796339,’2013-12-06′,150962475,119,’Released’,’For courage. For loyalty. For honor.’,5.90,1326),(64688,’21 Jump Street’,42000000,’http://www.21jumpstreet-movie.com/’,’In high school, Schmidt was a dork and Jenko was the popular jock. After graduation, both of them joined the police force and ended up as partners riding bicycles in the city park. Since they are young and look like high school students, they are assigned to an undercover unit to infiltrate a drug ring that is supplying high school students synthetic drugs.’,62.714026,’2012-03-12′,201585328,109,’Released’,’They thought the streets were mean. Then they went back to high school.’,6.70,4074),(64689,’Killing Them Softly’,15000000,’http://killingthemsoftlymovie.com/’,’Jackie Cogan is an enforcer hired to restore order after three dumb guys rob a Mob protected card game, causing the local criminal economy to collapse.’,24.612603,’2012-09-20′,37930465,97,’Released’,’In America you\’re on your own.’,5.80,742),(64690,’Drive’,15000000,’http://www.sonypictures.com/movies/drive/’,’A Hollywood stunt performer who moonlights as a wheelman for criminals discovers that a contract has been put on him after a heist gone wrong.’,49.294864,’2011-08-06′,78054825,100,’Released’,’There are no clean getaways.’,7.40,3725),(64720,’Take Shelter’,5000000,’http://www.sonyclassics.com/takeshelter/’,’Plagued by a series of apocalyptic visions, a young husband and father questions whether to shelter his family from a coming storm, or from himself.’,19.807295,’2011-11-25′,3099314,120,’Released’,”,7.10,471),(64807,’Grudge Match’,40000000,”,’A pair of aging boxing rivals are coaxed out of retirement to fight one final bout — 30 years after their last match.’,21.362949,’2013-12-25′,44907260,113,’Released’,’DeNiro vs Stallone’,6.00,433),(64973,’Peace, Propaganda & the Promised Land’,0,”,’This video shows how the foreign policy interests of American political elites-working in combination with Israeli public relations stratgies-influence US news reporting about the Middle East conflict. Combining American and British TV news clips with observations of analysts, journalists and political activists, Peace, Propaganda & the Promised Land provides a brief historical overview, a striking media comparison, and an examination of factors that have distorted U.S. media coverage and, in turn, American public opinion.’,0.020168,’2005-01-28′,0,80,’Released’,”,6.40,4),(65055,’Shark Night’,28000000,’http://www.iamrogue.com/sharknight3d/fullsite/index.html’,’A weekend at a lake house in the Louisiana Gulf turns into a nightmare for seven vacationers as they are subjected to fresh-water shark attacks.’,8.363702,’2011-09-02′,10126458,91,’Released’,’Terror runs deep.’,4.90,132),(65057,’The Descendants’,20000000,’http://www.foxsearchlight.com/thedescendants/’,’With his wife Elizabeth on life support after a boating accident, Hawaiian land baron, Matt King takes his daughters on a trip from Oahu to Kauai to confront the young real estate broker, who was having an affair with Elizabeth before her misfortune.’,40.903931,’2011-09-09′,177243185,115,’Released’,’The South Pacific ain\’t that terrific.’,6.70,934),(65086,’The Woman in Black’,17000000,’http://womaninblack.com/’,’The story follows a young lawyer, Arthur Kipps, who is ordered to travel to a remote village and sort out a recently deceased clientâ��s papers. As he works alone in the clientâ��s isolated house, Kipps begins to uncover tragic secrets, his unease growing when he glimpses a mysterious woman dressed only in black. Receiving only silence from the locals, Kipps is forced to uncover the true identity of the Woman in Black on his own, leading to a desperate race against time when he discovers her true identity.’,43.675191,’2012-02-01′,127730736,95,’Released’,’What did they see?’,6.10,1206),(65203,’The Broadway Melody’,379000,”,’Harriet and Queenie Mahoney, a vaudeville act, come to Broadway, where their friend Eddie Kerns needs them for his number in one of Francis Zanfield\’s shows. Eddie was in love with Harriet, but when he meets Queenie, he falls in love to her, but she is courted by Jock Warriner, a member of the New Yorker high society. It takes a while till Queenie recognizes, that she is for Jock nothing more than a toy, and it also takes a while till Harriet recognizes, that Eddie is in love with Queenie’,0.968865,’1929-02-08′,4358000,100,’Released’,’The pulsating drama of Broadway\’s bared heart speaks and sings with a voice to stir your soul!’,5.00,19),(65448,’Penitentiary’,0,”,’A hitchhiker named Martel Gordone gets in a fight with two bikers over a prostitute, and one of the bikers is killed. Gordone is arrested and sent to prison, where he joins the prison\’s boxing team in an effort to secure an early parole and to establish his dominance over the prison\’s toughest gang.’,0.001117,’1979-12-01′,0,99,’Released’,’There\’s only one way out, and 100 fools stand in the way!’,4.90,8),(65749,’Tango, no me dejes nunca’,0,”,’A dangerous love affair inspires a director to create the most spectacular and bodly seductive dance film ever made. 1998 Oscar Nominee Best Foreign Language Film.’,0.425551,’1998-02-12′,0,115,’Released’,’Tango: do not ever leave me’,6.80,6),(65754,’The Girl with the Dragon Tattoo’,90000000,’http://dragontattoo.com/’,’This English-language adaptation of the Swedish novel by Stieg Larsson follows a disgraced journalist, Mikael Blomkvist, as he investigates the disappearance of a weary patriarch\’s niece from 40 years ago. He is aided by the pierced, tattooed, punk computer hacker named Lisbeth Salander. As they work together in the investigation, Blomkvist and Salander uncover immense corruption beyond anything they have ever imagined.’,47.651083,’2011-12-14′,232617430,158,’Released’,’Evil shall with evil be expelled.’,7.20,2434),(65759,’Happy Feet Two’,130000000,’http://happyfeettwo.warnerbros.com/index.html’,’Mumble the penguin has a problem: his son Erik, who is reluctant to dance, encounters The Mighty Sven, a penguin who can fly! Things get worse for Mumble when the world is shaken by powerful forces, causing him to brings together the penguin nations and their allies to set things right.’,17.773500,’2011-11-17′,150406466,100,’Released’,’Every step counts.’,5.80,373),(66025,’Mooz-lum’,0,’http://moozlumthemovie.com’,’Thanks to a strict Muslim upbringing that largely shielded him from the outside world, Tariq\’s first year of college proves transformative. That is, until the 9/11 terrorist attacks invite growing suspicion and distrust from his angry classmates.’,0.414754,’2011-02-11′,330048,95,’Released’,”,4.50,3),(66125,’Red Dog’,0,’http://www.reddogmovie.com/’,’Based on the legendary true story of the Red Dog who united a disparate local community while roaming the Australian outback in search of his long lost master.’,5.499412,’2011-08-04′,0,92,’Released’,’He\’s Been Everywhere Mate.’,7.10,83),(66195,’The Perfect Host’,0,’http://theperfecthostmovie.com/’,’A criminal on the run cons his way into the wrong dinner party where the host is anything but ordinary.’,6.507094,’2010-07-01′,14870,93,’Released’,’Dinner Parties Are A Dying Art.’,6.20,135),(66468,’N-Secure’,0,’http://www.imdb.com/title/tt1289419/’,’N-Secure is a no holds-barred thrilling drama mixed with murder, mayhem and manipulation among affluent professionals. This film sheds light on a man\’s downfall from the pinnacles of success into the depths of his damaged character. His insecurities lead him into a series of troubled romantic relationships and eventually a web of events that include betrayal and murder.’,0.134560,’2010-10-15′,2592808,0,’Released’,”,4.30,4),(66607,’Salvando al Soldado Perez’,0,’http://www.privateperez.com/’,’La vida ha llevado a Julián Pérez por caminos equivocados, pero el destino le presentará a este hombre la oportunidad de encontrar su redención cuando es enviado a la misión más peligrosa y noble de toda su vida, una misión ordenada por la única autoridad que todavÃa respeta, su madre, Doña Elvira. Julián debe viajar hasta el otro extremo del mundo, a un lugar llamado Irak, a traer de vuelta vivo, a su hermano menor el soldado de infanterÃa Juan Pérez. Con la promesa hecha, Julián Pérez regresa a su natal Sinaloa donde reclutará a un comando de elite, destinado a cumplir una misión suicida: viajar a Irak y salvar al soldado Pérez.’,0.177356,’2011-03-18′,0,105,’Released’,”,6.10,18),(66767,’Beat the World’,10000000,”,’Three dance crews â�� one Latin American, one European and one Canadian â�� prepare to battle at the International Beat the World competition in Detroit. Along the way, they struggle with gambling debt, bad break-ups and their own egos. In the final showdown to become world champions they find that their lifelong hopes, dreams and even lives, are at stake.’,2.873796,’2011-06-10′,0,91,’Released’,’Feel the beat, live the dream.’,4.30,16),(66942,’Griff the Invisible’,2902660,”,’Griff, office worker by day, superhero by night, has his world turned upside down when he meets Melody, a beautiful young scientist who shares his passion for the impossible.’,1.350880,’2011-08-19′,0,93,’Released’,’He\’s a dreamer, stuck in the real world.’,6.10,34),(67238,’Cavite’,0,”,’Adam, a security guard, travels from California to the Philippines, his native land, for his father\’s funeral. He arrives in Manila. As he waits, a phone rings in his backpack; he answers it, and a male voice tells him that his mother and sister are captives and will be killed if Adam doesn\’t cooperate. Over the next hour, the voice sends Adam by bus, taxi, motorized tricycle, and on foot through an urban landscape of busy streets, cramped apartments, a fetid squatters\’ camp, a bank, a cockfighting arena, and a church. Adam\’s conversations with the voice cover murder, Islam, jihad, rebellion in Mindanao, and his family. What is it Adam will be commanded to do?’,0.022173,’2005-03-12′,0,80,’Released’,”,7.50,2),(67373,’This Thing of Ours’,0,”,’Using the Internet and global satellites, a group of gangsters pull off the biggest bank heist in the Mafia\’s history.’,0.046868,’2005-01-01′,0,100,’Released’,”,5.00,1),(67660,’Think Like a Man’,12000000,’http://www.sonypictures.com/movies/thinklikeaman/’,’The balance of power in four couplesâ�� relationships is upset when the women start using the advice in Steve Harveyâ��s book, Act Like A Lady, Think Like A Man, to get more of what they want from their men. When the men realize that the women have gotten a hold of their relationship â��playbook,â�� they decide that the best defense is a good offense and come up with a plan to use this information to their advantage.’,6.035152,’2012-04-16′,96070507,122,’Released’,’Let the mind games begin.’,6.90,281),(67675,’Glee: The Concert Movie’,9000000,’http://movies2.foxjapan.com/glee/’,’A concert documentary shot during the Glee Live! In Concert! summer 2011 tour, featuring song performances and Glee fans\’ life stories and how the show influenced them.’,9.933926,’2011-08-11′,18663238,84,’Released’,”,6.80,79),(67911,’Bucky Larson: Born to Be a Star’,10000000,’http://www.buckylarson.com/’,’A kid from the Midwest moves out to Hollywood in order to follow in his parents footsteps — and become a porn star.’,3.919057,’2011-09-09′,0,97,’Released’,’There Are No Small Actors. Just Small Parts.’,4.40,51),(67913,’The Guard’,6000000,’http://www.sonyclassics.com/theguard’,’Two policemen must join forces to take on an international drug- smuggling gang – one, an unorthodox Irish policeman and the other, a straitlaced FBI agent. Sergeant Gerry Boyle is an eccentric small-town cop with a confrontational and crass personality and a subversive sense of humor. A longtime policeman in County Galway, Boyle is a maverick with his own moral code. He has seen enough of the world to know there isn\’t much to it and has had plenty of time to think about it. When a fellow police officer disappears and Boyle\’s small town becomes key to a large drug trafficking investigation, he is forced to at least feign interest when dealing with the humorless FBI agent Wendell Everett assigned to the case.’,19.411141,’2011-07-07′,19560274,96,’Released’,’The FBI are about to discover that things work a little differently around here.’,6.80,372),(68179,’Escape from Planet Earth’,40000000,’http://www.escapeearthmovie.com/’,’Astronaut Scorch Supernova finds himself caught in a trap when he responds to an SOS from a notoriously dangerous alien planet.’,18.142180,’2013-02-14′,74597643,89,’Released’,’Earth\’s greatest secrets are about to break out!’,5.70,332),(68202,’Without Men’,4,”,’The women of a remote Latin American town are forced to pick up the pieces and remake their world when all the town\’s men are forcibly recruited by communist guerrillas.’,0.280760,’2011-06-29′,0,83,’Released’,”,4.60,8),(68412,’3 Backyards’,0,”,’The story of three people from the same suburban town during the course of one curious autumn day.’,0.178170,’2010-01-01′,0,88,’Released’,”,4.80,4),(68684,’Detention’,10000000,’http://detentionmovie.com/’,’As a killer named Cinderhella stalks the student body at the high school in Grizzly Lake, a group of co-eds band together to survive while they\’re all serving detention.’,10.424596,’2011-03-16′,0,93,’Released’,’Cancel Your Future’,5.70,129),(68718,’Django Unchained’,100000000,’http://unchainedmovie.com/’,’With the help of a German bounty hunter, a freed slave sets out to rescue his wife from a brutal Mississippi plantation owner.’,82.121691,’2012-12-25′,425368238,165,’Released’,’Life, liberty and the pursuit of vengeance.’,7.80,10099),(68721,’Iron Man 3′,200000000,’http://marvel.com/ironman3′,’When Tony Stark\’s world is torn apart by a formidable terrorist called the Mandarin, he starts an odyssey of rebuilding and retribution.’,77.682080,’2013-04-18′,1215439994,130,’Released’,’Unleash the power behind the armor.’,6.80,8806),(68722,’The Master’,32000000,”,’Freddie, a volatile, heavy-drinking veteran who suffers from post-traumatic stress disorder, finds some semblance of a family when he stumbles onto the ship of Lancaster Dodd, the charismatic leader of a new \”religion\” he forms after World War II.’,25.682509,’2012-09-07′,28258060,137,’Released’,’Every Man Needs a Guide’,7.00,701),(68724,’Elysium’,115000000,”,’In the year 2159, two classes of people exist: the very wealthy who live on a pristine man-made space station called Elysium, and the rest, who live on an overpopulated, ruined Earth. Secretary Rhodes (Jodie Foster), a hard line government ofï¬�cial, will stop at nothing to enforce anti-immigration laws and preserve the luxurious lifestyle of the citizens of Elysium. That doesnâ��t stop the people of Earth from trying to get in, by any means they can. When unlucky Max (Matt Damon) is backed into a corner, he agrees to take on a daunting mission that, if successful, will not only save his life, but could bring equality to these polarized worlds.’,67.337670,’2013-08-07′,286140700,109,’Released’,’He can save us all.’,6.40,3439),(68726,’Pacific Rim’,180000000,’http://www.pacificrimmovie.com/’,’When legions of monstrous creatures, known as Kaiju, started rising from the sea, a war began that would take millions of lives and consume humanity\’s resources for years on end. To combat the giant Kaiju, a special type of weapon was devised: massive robots, called Jaegers, which are controlled simultaneously by two pilots whose minds are locked in a neural bridge. But even the Jaegers are proving nearly defenseless in the face of the relentless Kaiju. On the verge of defeat, the forces defending mankind have no choice but to turn to two unlikely heroesâ��a washed-up former pilot (Charlie Hunnam) and an untested trainee (Rinko Kikuchi)â��who are teamed to drive a legendary but seemingly obsolete Jaeger from the past. Together, they stand as mankind\’s last hope against the mounting apocalypse.’,56.523205,’2013-07-11′,407602906,131,’Released’,’To Fight Monsters, We Created Monsters’,6.70,4794),(68727,’Trance’,20000000,”,’A fine art auctioneer mixed up with a gang, joins forces with a hypnotherapist to recover a lost painting. As boundaries between desire, reality and hypnotic suggestion begin to blur, the stakes rise faster than anyone could have anticipated.’,38.802415,’2013-03-27′,24261569,101,’Released’,’Don\’t be a hero.’,6.50,956),(68728,’Oz: The Great and Powerful’,200000000,’http://www.ozthegreatandpowerfulmovie.com’,’Oscar Diggs, a small-time circus illusionist and con-artist, is whisked from Kansas to the Land of Oz where the inhabitants assume he\’s the great wizard of prophecy, there to save Oz from the clutches of evil.’,46.985445,’2013-03-07′,491868548,130,’Released’,’In Oz, nothing is what it seems’,5.70,3530),(68734,’Argo’,44500000,’http://argothemovie.warnerbros.com/’,’As the Iranian revolution reaches a boiling point, a CIA \’exfiltration\’ specialist concocts a risky plan to free six Americans who have found shelter at the home of the Canadian ambassador.’,62.010560,’2012-10-11′,232324128,120,’Released’,’The movie was fake. The mission was real.’,7.10,3423),(68735,’Warcraft’,160000000,’http://www.warcraft-themovie.com/’,’The peaceful realm of Azeroth stands on the brink of war as its civilization faces a fearsome race of invaders: orc warriors fleeing their dying home to colonize another. As a portal opens to connect the two worlds, one army faces destruction and the other faces extinction. From opposing sides, two heroes are set on a collision course that will decide the fate of their family, their people, and their home.’,63.148529,’2016-05-25′,433677183,123,’Released’,’Two worlds. One home.’,6.30,2268),(68737,’Seventh Son’,95000000,’http://www.seventhsonmovie.com/’,’John Gregory, who is a seventh son of a seventh son and also the local spook, has protected the country from witches, boggarts, ghouls and all manner of things that go bump in the night. However John is not young anymore, and has been seeking an apprentice to carry on his trade. Most have failed to survive. The last hope is a young farmer\’s son named Thomas Ward. Will he survive the training to become the spook that so many others couldn\’t?’,63.628459,’2014-12-12′,114178613,102,’Released’,’When darkness falls, the son will rise. When the son falls, the dark knight will rise.’,5.20,957),(68812,’The Iceman’,20000000,”,’The true story of Richard Kuklinski, the notorious contract killer and family man.’,19.494703,’2012-09-01′,1969193,105,’Released’,’Loving husband. Devoted father. Ruthless killer.’,6.40,365),(68818,’Blackthorn’,0,’http://www.blackthornmovie.com/’,’In Bolivia, Butch Cassidy (now calling himself James Blackthorne) pines for one last sight of home, an adventure that aligns him with a young robber and makes the duo a target for gangs and lawmen alike.’,5.223096,’2011-08-31′,623528,98,’Released’,’No destiny’,6.60,73),(68924,’The Ice Storm’,18000000,”,’In the weekend after thanksgiving 1973 the Hoods are skidding out of control. Benjamin Hood reels from drink to drink, trying not to think about his trouble at the office. His wife, Elena, is reading self help books and losing patience with her husband\’s lies. Their son, Paul, home for the holidays, escapes to the city to pursue an alluring rich girl from his prep school. Young, budding nymphomaniac, Wendy Hood roams the neighborhood, innocently exploring liquor cabinets and lingerie drawers of her friends\’ parents, looking for something new. Then an ice storm hits, the worst in a century.’,14.916264,’1997-09-27′,8038061,112,’Released’,’It was 1973, and the climate was changing.’,6.90,176),(69270,’Super Hybrid’,13000000,”,’Late one night, a mysterious car is brought into the Chicago police impound garage after a deadly traffic accident. The on-call mechanics soon discover the car has a mind of its own. With hundreds of horsepower and two tons of reinforced steel at its command, it\’s a seemingly unstoppable killing machine capable of outrunning — and outwitting — humans.’,4.009379,’2010-01-01′,0,95,’Released’,”,4.60,24),(69382,’The Legend of God\’s Gun’,0,”,’A gun-slinging preacher returns to the debaucherous town of Playa Diablo seeking revenge from the notorious scorpion-venom drinking bandito El Sobero – lead outlaw and number one bad guy. El Sobero and his band of bad banditos are also returning to Playa Diablo seeking their own revenge against the town sheriff. With the Bounty Hunter dragging up slowly behind there is sure to be a confrontation of Biblical proportions as they all meet in the circle of death.’,0.003582,’2007-07-08′,0,78,’Released’,”,0.00,0),(69640,’Lies in Plain Sight’,0,”,’â��Lies in Plain Sightâ�� tells the story of Eva and her blind cousin Sofia (Martha Higareda), who were inseparable as children, with Eva the loyal companion who helped Sofia through her tough adolescent years. When Eva suddenly commits suicide, Sofia rushes home to her father, Hector (Benito Martinez), and Evaâ��s parents, Marisol (Rosie Perez) and Rafael (Yul Vásquez), to find answers. But the more she delves into Evaâ��s life, questioning her past boyfriends Ethan (Chad Michael Murray) and Christian (Christoph Sanders), the more Sofia realizes that their childhood was actually filled with dark, disturbing secrets.’,0.479090,’2010-10-03′,0,88,’Released’,”,4.50,4),(69668,’Dream House’,50000000,”,’Publisher, Will Atenton quits a lucrative job in New York to relocate his wife, Libby and their daughters to a quaint town in New England. However, as they settle into their home the Atentons discover that a woman and her children were murdered there, and the surviving husband is the town\’s prime suspect. With help from a neighbor who was close to the murdered family, Will pieces together a horrifying chain of events.’,19.267479,’2011-09-30′,38502340,84,’Released’,’Once upon a time, there were two little girls who lived in a house.’,5.80,391),(69848,’One Man\’s Hero’,0,”,’One Man\’s Hero tells the little-known story of the \”St. Patrick\’s Battalion\” or \”San Patricios,\” a group of mostly Irish and other immigrants of the Catholic faith who deserted to Mexico after encountering religious and ethnic prejudice in the U.S. Army during the Mexican-American War. The plot centers around the personal story of John Riley, an Irishman who had been a sergeant in the American Army who is commissioned as a captain in the Mexican army and commands the battalion, as he leads his men in battle and struggles with authorities on both sides of the border’,0.910529,’1999-08-02′,0,121,’Released’,’One man\’s hero is another man\’s traitor.’,9.30,2),(70006,’Never Back Down 2: The Beatdown’,3000000,”,’Four fighters different backgrounds come together to train under an ex MMA rising star and then ultimately have to fight each other and the traitor in heir midst.’,9.249229,’2011-09-13′,0,90,’Released’,”,5.80,136),(70074,’Bullet to the Head’,55000000,”,’After watching their respective partners die, a cop and a hitman form an alliance in order to bring down their common enemy.’,22.503935,’2013-01-31′,9489829,92,’Released’,’Revenge Never Gets Old.’,5.20,481),(70160,’The Hunger Games’,75000000,’http://www.thehungergames.movie/’,’Every year in the ruins of what was once North America, the nation of Panem forces each of its twelve districts to send a teenage boy and girl to compete in the Hunger Games. Part twisted entertainment, part government intimidation tactic, the Hunger Games are a nationally televised event in which â��Tributesâ�� must fight with one another until one survivor remains. Pitted against highly-trained Tributes who have prepared for these Games their entire lives, Katniss is forced to rely upon her sharp instincts as well as the mentorship of drunken former victor Haymitch Abernathy. If sheâ��s ever to return home to District 12, Katniss must make impossible choices in the arena that weigh survival against humanity and life against love. The world will be watching.’,68.550698,’2012-03-12′,691210692,142,’Released’,’May The Odds Be Ever In Your Favor.’,6.90,9455),(70435,’Haywire’,23000000,’http://www.haywiremovie.com/’,’Mallory Kane is a highly trained operative who works for a government security contractor in the dirtiest, most dangerous corners of the world. After successfully freeing a Chinese journalist held hostage, she is double crossed and left for dead by someone close to her in her own agency. Suddenly the target of skilled assassins who know her every move, Mallory must find the truth in order to stay alive.’,26.257951,’2011-11-06′,33372606,93,’Released’,’They left her no choice.’,5.60,505),(70436,’The Raven’,26000000,”,’A fictionalized account of the last days of Edgar Allan Poe\’s life, in which the poet is in pursuit of a serial killer whose murders mirror those in the writer\’s stories.’,22.520842,’2012-03-09′,29657751,111,’Released’,’The only one who can stop a serial killer is the man who inspired him.’,6.10,426),(70478,’The Stewardesses’,100000,”,’The Stewardesses is a 1969 Softcore 3-D film. Produced on a budget of just over $100,000, the film grossed over $27,000,000 (USD) in 1970 dollars, becoming the most profitable 3-D film ever released. This has now been passed by James Camerons Avatar.’,1.183892,’1969-07-25′,27000000,69,’Released’,’The Unpublishable Novel Is Now America\’s Most Controversial Film!’,4.30,5),(70670,’Hodejegerne’,0,”,’An accomplished headhunter risks everything to obtain a valuable painting owned by a former mercenary..’,20.821846,’2011-08-04′,15699707,100,’Released’,’The hunt is on.’,7.10,399),(70687,’The Sticky Fingers of Time’,250000,”,’A 1950s author (Terumi Matthews) is transported to 1990s Brooklyn, where she meets a woman (Nicole Zaray) who reads about her life.’,0.130169,’1997-06-06′,0,90,’Released’,”,4.80,3),(70829,’The Last Godfather’,13400000,’http://www.lastgodfathermovie.com/’,’Young-goo the son of mafia boss Don Carini, is too foolish to be part of the mafia elite. One day, Young-goo comes to his father and is trained by Tony V to be his father\’s successor. A few days later, Young-goo accidentally rescues Nancy, the only daughter of Don Bonfante, the boss of a rival mafia family. But Vinnie, an under-boss of the Bonfante family kidnapped her and fabricates that Young-goo has taken her. Vinnie\’s behavior provokes an armed conflict between the two families.’,0.680753,’2010-12-29′,16700000,100,’Released’,”,4.70,7),(70868,’I Don\’t Know How She Does It’,24000000,’http://www.weinsteinco.com/#/film/idontknowhow’,’A comedy centered on the life of Kate Reddy, a finance executive who is the breadwinner for her husband and two kids.’,8.630825,’2011-09-16′,30551495,89,’Released’,’If it were easy, men would do it too.’,5.00,141),(70875,’The Harvest (La Cosecha)’,56000,’http://www.facebook.com/theharvestfilm’,’The story of the children who work 12-14 hour days in the fields without the protection of child labor laws. These children are not toiling in the fields in some far away land. They are working in America.’,0.010909,’2011-07-29′,0,80,’Rumored’,”,0.00,0),(70981,’Prometheus’,130000000,’http://www.projectprometheus.com/’,’A team of explorers discover a clue to the origins of mankind on Earth, leading them on a journey to the darkest corners of the universe. There, they must fight a terrifying battle to save the future of the human race.’,68.889395,’2012-05-30′,403170142,124,’Released’,’The Search for Our Beginning Could Lead to Our End.’,6.30,5080),(71157,’Polisse’,0,’http://www.polisse-lefilm.com/’,’The daily grind for the cops of the Police Department\’s Juvenile Protection Unit – taking in child molesters, busting underage pickpockets, interrogating abusive parents, confronting the excesses of teen sexuality, enjoying solidarity with colleagues and laughing uncontrollably at the most unthinkable moments. Knowing the worst exists and living with it. How do these cops balance their private lives and the reality they confront every working day? Fred, the group\’s hypersensitive wild card, is going to have a hard time facing the scrutiny of Melissa, a photographer on a Ministry of the Interior assignment to document the unit.’,14.038703,’2011-10-06′,20374201,127,’Released’,”,7.90,285),(71469,’The Darkest Hour’,30000000,’http://www.darkesthourmovie.com/’,’In Moscow, five young people lead the charge against an alien race which has attacked Earth via our power supply.’,23.328823,’2011-12-22′,64626786,89,’Released’,’Survive The Holidays’,4.80,469),(71547,’Fascination’,0,”,’Young Scott Doherty (Adam Garcia) gets suspicious when his mother (Jacqueline Bisset) plans to wed Oliver Vance (Stuart Wilson) soon after her husband\’s untimely death. Scott investigates with Oliver\’s pretty daughter, Kelly (Alice Evans), who shared Scott\’s doubts about the upcoming nuptials. Along the way, he falls in love with Kelly, but a fatal explosion turns Scott\’s life upside down – and the evidence points to him as the murderer. Has he been framed?’,0.219799,’2004-10-13′,0,95,’Released’,”,3.80,4),(71552,’American Reunion’,50000000,’http://www.americanreunionmovie.com/’,’The characters we met a little more than a decade ago are returning to East Great Falls for their high-school reunion. In one long-overdue weekend, they will discover what has changed, who hasnâ��t and that time and distance canâ��t break the bonds of friendship. It was summer 1999 when four small-town Michigan boys began a quest to lose their virginity. In the years that have passed, Jim and Michelle married while Kevin and Vicky said goodbye. Oz and Heather grew apart, but Finch still longs for Stiflerâ��s mom. Now these lifelong friends have come home as adults to reminisce about â�� and get inspired by â�� the hormonal teens who launched a comedy legend.’,39.920035,’2012-04-04′,234989584,113,’Released’,’Save the best piece for last.’,6.10,1611),(71676,’Ghost Rider: Spirit of Vengeance’,57000000,’http://www.thespiritofvengeance.com/’,’When the devil resurfaces with aims to take over the world in human form, Johnny Blaze reluctantly comes out of hiding to transform into the flame-spewing supernatural hero Ghost Rider — and rescue a 10-year-old boy from an unsavory end.’,48.622278,’2011-12-10′,149217355,95,’Released’,’He Rides Again.’,4.70,1135),(71679,’Resident Evil: Retribution’,65000000,’http://www.residentevil-movie.com/site/’,’The Umbrella Corporationâ��s deadly T-virus continues to ravage the Earth, transforming the global population into legions of the flesh eating Undead. The human raceâ��s last and only hope, Alice, awakens in the heart of Umbrellaâ��s most clandestine operations facility and unveils more of her mysterious past as she delves further into the complex. Without a safe haven, Alice continues to hunt those responsible for the outbreak; a chase that takes her from Tokyo to New York, Washington, D.C. and Moscow, culminating in a mind-blowing revelation that will force her to rethink everything that she once thought to be true. Aided by new found allies and familiar friends, Alice must fight to survive long enough to escape a hostile world on the brink of oblivion. The countdown has begun.’,6.227675,’2012-09-12′,240159255,95,’Released’,’The Ultimate Battle Begins’,5.60,1600),(71688,’The Iron Lady’,13000000,’http://weinsteinco.com/sites/iron-lady/’,’A look at the life of Margaret Thatcher, the former Prime Minister of the United Kingdom, with a focus on the price she paid for power.’,23.378400,’2011-12-30′,114956699,105,’Released’,’Never Compromise’,6.20,527),(71805,’HÃ¥kon HÃ¥konsen’,0,”,’A young Norwegian boy in 1850s England goes to work as a cabin boy and discovers some of his shipmates are actually pirates.’,0.702971,’1990-10-03′,0,92,’Released’,”,6.10,14),(71859,’We Need to Talk About Kevin’,7000000,’http://kevin.oscilloscope.net/’,’The mother of a teenage sociopath who went on a high-school killing spree recalls her son\’s deranged behavior during childhood, as she deals with her grief.’,21.276864,’2011-09-28′,6038942,112,’Released’,”,7.40,677),(71864,’The Odd Life of Timothy Green’,0,’http://disney.go.com/disneypictures/the-odd-life-of-timothy-green/’,’A childless couple bury a box in their backyard, containing all of their wishes for an infant. Soon, a child is born, though Timothy Green is not all that he appears.’,16.394452,’2012-08-15′,51854875,105,’Released’,’He\’s a force of nature.’,6.50,386),(71866,’Tanner Hall’,0,’http://www.tannerhallthefilm.com/’,’Tanner Hall is a vivid peek into the private world of an all-girls boarding school. In a cozy, but run down New England, the knot of adolescent complexity is unraveled through the coming of age stories of four teen-age girls.’,2.015525,’2009-09-14′,0,96,’Released’,”,5.40,32),(71880,’Jack and Jill’,79000000,’http://www.jackandjill-movie.com/’,’Jack Sadelstein, a successful advertising executive in Los Angeles with a beautiful wife and kids, dreads one event each year: the Thanksgiving visit of his twin sister Jill. Jill\’s neediness and passive-aggressiveness is maddening to Jack, turning his normally tranquil life upside down.’,22.132418,’2011-11-11′,149673788,91,’Released’,’His twin sister is coming for the holidays… …and it ain\’t pretty.’,4.10,604),(72086,’The Night Visitor’,0,”,’An insane Swedish farmer escapes from an asylum to get revenge on his sister, her husband and others.’,0.074005,’1971-01-01′,0,106,’Released’,’Locked in the cold asylum of his mind – a sane man stalks his prey…’,7.30,6),(72105,’Ted’,50000000,’http://www.tedisreal.com/’,’John Bennett, a man whose childhood wish of bringing his teddy bear to life came true, now must decide between keeping the relationship with the bear or his girlfriend, Lori.’,68.876910,’2012-06-29′,549368315,106,’Released’,’Ted is coming.’,6.30,4697),(72113,’Carnage’,25000000,’http://www.sonyclassics.com/carnage/site/index.html’,’After 11-year-old Zachary Cowan strikes his classmate across the face with a stick after an argument, the victim\’s parents invite Zachary\’s parents to their Brooklyn apartment to deal with the incident in a civilized manner.’,20.011435,’2011-09-16′,27603069,80,’Released’,’A new comedy of no manners’,7.00,738),(72190,’World War Z’,200000000,’http://www.worldwarzmovie.com’,’Life for former United Nations investigator Gerry Lane and his family seems content. Suddenly, the world is plagued by a mysterious infection turning whole human populations into rampaging mindless zombies. After barely escaping the chaos, Lane is persuaded to go on a mission to investigate this disease. What follows is a perilous trek around the world where Lane must brave horrific dangers and long odds to find answers before human civilization falls.’,81.834855,’2013-06-20′,531865000,116,’Released’,’Remember Philly!’,6.70,5560),(72197,’The Pirates! In an Adventure with Scientists!’,60000000,”,’The luxuriantly bearded Pirate Captain is a boundlessly enthusiastic, if somewhat less-than-successful, terror of the High Seas. With a rag-tag crew at his side, and seemingly blind to the impossible odds stacked against him, the Captain has one dream: to beat his bitter rivals Black Bellamy and Cutlass Liz to the much coveted Pirate of the Year Award. Itâ��s a quest that takes our heroes from the shores of exotic Blood Island to the foggy streets of Victorian London. Along the way they battle a diabolical queen and team up with a haplessly smitten young scientist, but never lose sight of what a pirate loves best: adventure!’,23.700759,’2012-03-12′,118338361,88,’Released’,’It\’s A Plunderful Life’,6.40,374),(72207,’The Five-Year Engagement’,30000000,’http://www.thefiveyearengagementmovie.com/’,’Exactly one year after Tom meets Violet, he surprises her with a wedding ring. By all accounts, Tom and Violet are destined for their happily ever after. However, this engaged couple just keep getting tripped up on the long walk down the aisle.’,27.710630,’2012-04-27′,53909751,124,’Released’,’A comedy about the journey between popping the question and tying the knot.’,5.70,457),(72213,’Courageous’,1000000,’http://www.courageousthemovie.com’,’As law enforcement officers, Adam Mitchell, Nathan Hayes, and their partners are confident and focused. They willingly stand up to the worst the streets have to offer. Yet at the end of the day, they face a challenge that none of them are truly prepared to tackle: fatherhood. They know that God desires to turn the hearts of fathers to their children, but their children are beginning to drift further and further away from them. When tragedy hits home, these men are left wrestling with their hopes, their fears, their faith, and their fathering. Can a new found urgency help these dads draw closer to God … and to their children? COURAGEOUS is the fourth release of Sherwood Pictures, the movie making ministry of Sherwood Church in Albany, Georgia.’,5.961119,’2011-09-30′,34522221,129,’Released’,’Honor Begins at Home.’,6.80,77),(72331,’Abraham Lincoln: Vampire Hunter’,69000000,”,’President Lincoln\’s mother is killed by a supernatural creature, which fuels his passion to crush vampires and their slave-owning helpers.’,38.634767,’2012-06-20′,112265139,94,’Released’,’Are you a patriot or a vampire?’,5.50,1269),(72358,’A Thousand Words’,40000000,’http://www.thousandwordsmovie.com/’,’Jack McCall is a fast-talking literary agent, who can close any deal, any time, any way. He has set his sights on New Age guru Dr. Sinja (Cliff Curtis) for his own selfish purposes. But Dr. Sinja is on to him, and Jackâ��s life comes unglued after a magical Bodhi tree mysteriously appears in his backyard. With every word Jack speaks, a leaf falls from the tree and he realizes that when the last leaf falls, both he and the tree are toast. Words have never failed Jack McCall, but now heâ��s got to stop talking and conjure up some outrageous ways to communicate or heâ��s a goner.’,13.119133,’2012-03-07′,22044277,91,’Released’,’He only has 1000 words left to discover what matters the most.’,6.00,373),(72359,’Peeples’,15,’http://www.peeplesmovie.com/’,’The story follows what happens when a child psychologist surprises his girlfriend by showing up at her political family\’s annual get-together at their Sag Harbor vacation home only to find them desperately in need of therapy.’,5.112809,’2013-05-09′,0,95,’Released’,”,5.60,26),(72387,’Safe’,30000000,’http://www.safethefilm.com/’,’After a former elite agent rescues a 12-year-old Chinese girl who\’s been abducted, they find themselves in the middle of a standoff between Triads, the Russian Mafia and high-level corrupt New York City politicians and police.’,31.926950,’2012-04-16′,40346186,94,’Released’,’She has the code. He is the key.’,6.30,799),(72431,’Red Tails’,58000000,’http://www.redtails2012.com/’,’The story of the Tuskegee Airmen, the first African-American pilots to fly in a combat squadron during World War II.’,12.296030,’2012-01-19′,50365377,125,’Released’,’High-Octane Action and Daring Dogfights!’,5.90,178),(72545,’Journey 2: The Mysterious Island’,79000000,’http://www.themysteriousisland.com/’,’Sean Anderson partners with his mom\’s boyfriend on a mission to find his grandfather, who is thought to be missing on a mythical island.’,40.723459,’2012-01-19′,355692760,94,’Released’,’Believe the Impossible. Discover the Incredible.’,5.80,1030),(72559,’G.I. Joe: Retaliation’,130000000,’http://www.gijoemovie.com’,’Framed for crimes against the country, the G.I. Joe team is terminated by Presidential order. This forces the G.I. Joes into not only fighting their mortal enemy Cobra; they are forced to contend with threats from within the government that jeopardize their very existence.’,59.325589,’2013-03-26′,371876278,110,’Released’,”,5.40,3025),(72570,’The Vow’,30000000,”,’Happy young married couple Paige and Leo are, well, happy. Then a car accident puts Paige into a life-threatening coma. Upon awakening she has lost the previous five years of memories, including those of her beloved Leo, her wedding, a confusing relationship with her parents, or the ending of her relationship with her ex-fiance. Despite these complications, Leo endeavors to win her heart again and rebuild their marriage.’,26.780961,’2012-02-05′,196114570,104,’Released’,”,7.00,1293),(72571,’Paranormal Activity 3′,5000000,’http://www.paranormalmovie.com/’,’In 1988, evil begins to terrorize young sisters Katie and Kristi for the first time when an invisible entity resides in their home.’,29.158130,’2011-10-19′,205703818,83,’Released’,’It Runs In The Family’,5.90,669),(72710,’The Host’,44000000,”,’A parasitic alien soul is injected into the body of Melanie Stryder. Instead of carrying out her race\’s mission of taking over the Earth, \”Wanda\” (as she comes to be called) forms a bond with her host and sets out to aid other free humans.’,42.933027,’2013-03-22′,63327201,125,’Released’,’You will be one of us’,6.00,1817),(72766,’Newlyweds’,9000,”,’A newlywed couple\’s honeymoon is upended by the arrivals of their respective sisters.’,0.642552,’2011-12-26′,0,85,’Released’,’A newlywed couple\’s honeymoon is upended by the arrivals of their respective sisters.’,5.90,5),(72913,’Amigo’,1200000,’http://www3.amigomovie.com/’,’Rafael, a village mayor caught in the murderous crossfire of the Philippine-American War. When U.S. troops occupy his village, Rafael comes under pressure from a tough-as-nails officer to help the Americans in their hunt for Filipino guerilla fighters. But Rafael\’s brother is the head of the local guerillas, and considers anyone who cooperates with the Americans to be a traitor. Rafael quickly finds himself forced to make the impossible, potentially deadly decisions faced by ordinary civilians in an occupied country.’,0.193172,’2010-07-14′,0,128,’Released’,”,6.00,2),(72914,’Fat, Sick & Nearly Dead’,0,’http://www.fatsickandnearlydead.com’,’100 pounds overweight, loaded up on steroids and suffering from a debilitating autoimmune disease, Joe Cross is at the end of his rope and the end of his hope. In the mirror he saw a 310lb man whose gut was bigger than a beach ball and a path laid out before him that wouldn\’t end wellâ�� with one foot already in the grave, the other wasn\’t far behind. FAT, SICK & NEARLY DEAD is an inspiring film that chronicles Joe\’s personal mission to regain his health.’,0.545825,’2010-04-16′,0,97,’Released’,’FAT, SICK & NEARLY DEAD is an inspiring film that chronicles Joe\’s personal mission to regain his health.’,7.10,47),(72976,’Lincoln’,65000000,”,’A revealing drama that focuses on the 16th President\’s tumultuous final months in office. In a nation divided by war and the strong winds of change, Lincoln pursues a course of action designed to end the war, unite the country and abolish slavery. With the moral courage and fierce determination to succeed, his choices during this critical moment will change the fate of generations to come.’,36.307296,’2012-11-09′,275293450,149,’Released’,’With the moral courage and fierce determination to succeed, his choices will change the fate of generations to come.’,6.70,1429),(73191,’The Nutcracker’,19000000,”,’On Christmas Eve, a little girl named Marie (Cohen) falls asleep after a party at her home and dreams herself into a fantastic world where toys become larger than life. She meets up with the Nutcracker Prince (Culkin) who defends her from the Mouse King.’,0.068228,’1993-11-24′,2119994,93,’Released’,’The joy of the New York City Ballet in an exciting family holiday motion picture.’,5.60,5),(73247,’Heartbeeps’,10000000,”,’Heartbeeps stars Andy Kaufman and Bernadette Peters as domestic robots who fall in love and run off together.’,0.518056,’1981-12-18′,2154696,79,’Released’,’Meet a modern nuclear family unlike any other.’,3.80,6),(73511,’The Californians’,0,”,’When real estate mogul Gavin Ransom (Noah Wyle) announces his plan to cover California\’s northern coast with scores of mini-mansions, his environmentalist sister, Olive (Ileana Douglas), launches a protest to stop him. But there\’s trouble ahead when Gavin begins falling for the pretty folk singer (Kate Mara) who\’s helping Olive\’s cause. This clever West Coast satire from writer-director Jonathan Parker is a twist on Henry James\’s The Bostonians.’,0.218736,’2005-10-21′,0,91,’Released’,’All is fair in love and real estate.’,4.00,1),(73532,’Le Havre’,3850000,’http://janusfilms.com/lehavre/’,’Marcel Marx, a former bohemian and struggling author, has given up his literary ambitions and relocated to the port city Le Havre. He leads a simple life based around his wife Arletty, his favourite bar and his not too profitable profession as a shoeshiner. As Arletty suddenly becomes seriously ill, Marcel\’s path crosses with an underage illegal immigrant from Africa, who needs Marcel\’s help to hide from the police.’,10.787322,’2011-05-17′,0,93,’Released’,”,6.80,97),(73567,’Killer Joe’,10000000,’http://killerjoethemovie.com/’,’A cop (Matthew McConaughey) who moonlights as a hit man agrees to kill the hated mother of a desperate drug dealer (Emile Hirsch) in exchange for a tumble with the young man\’s virginal sister (Juno Temple).’,16.436178,’2011-09-10′,3665069,102,’Released’,’A Totally Deep-Fried Texas Redneck Trailer Park Murder Story.’,6.50,425),(73873,’Albert Nobbs’,8000000,’http://albertnobbs-themovie.com’,’Albert Nobbs struggles to survive in late 19th century Ireland, where women aren\’t encouraged to be independent. Posing as a man, so she can work as a butler in Dublin\’s most posh hotel, Albert meets a handsome painter and looks to escape the lie she has been living.’,7.802245,’2011-12-21′,5634828,113,’Released’,’A man with a secret. A woman with a dream.’,6.20,132),(73935,’Vamps’,16000000,”,’The modern-day story focuses on two beautiful young vampires who are living the good nightlife in New York until love enters the picture and each has to make a choice that will jeopardize their immortality.’,7.251897,’2012-08-25′,0,93,’Released’,’Dating Sucks’,4.80,91),(73937,’The Big Year’,41000000,”,’Three fanatical bird-watchers spend an entire year competing to spot the highest number of species as El Nino sends an extraordinary variety of rare breeds flying up into the U.S., but they quickly discover that there are more important things than coming out on top of the competition’,9.419726,’2011-10-13′,7448385,100,’Released’,’Everyone is searching for something.’,5.60,248),(73981,’Ayurveda: Art of Being’,300000,”,’Ayurveda is a science of life and a healing art, where body, mind and spirit are given equal importance. This voyage of thousands of miles across India and abroad takes you on a unique poetic journey, where we encounter remarkable men of medicine or simply a villager who lives in harmony with nature. \”Hope is nature\’s way of enabling us to survive so that we can discover nature itself.\”‘,0.055868,’2001-09-20′,2074000,101,’Released’,”,5.50,3),(74084,’दिल à¤�à¥� à¤à¥� à¤�हà¥�’,0,”,’During the British rule in India, several Indians were lured by the British to travel to distant Mauritius where they would have a better life. Upon reaching this island, the Indians were enslaved, tortured and made to labor in what is now known as the \”Coolie Ghat\”. After the British left India, the Indians in Mauritius decided to continue to live there along with other nationals from different countries.’,0.122704,’2006-12-07′,0,0,’Released’,”,0.00,0),(74457,’Redemption Road’,0,”,’A Tennessee-set drama focused on an individual\’s spiritual redemption.’,0.197264,’2011-08-26′,0,91,’Released’,”,4.70,6),(74465,’We Bought a Zoo’,50000000,’http://www.weboughtazoo.com/’,’Benjamin has lost his wife and, in a bid to start his life over, purchases a large house that has a zoo â�� welcome news for his daughter, but his son is not happy about it. The zoo is need of renovation and Benjamin sets about the work with the head keeper and the rest of the staff, but, the zoo soon runs into financial trouble.’,38.629763,’2011-12-22′,120081841,124,’Released’,’A True Zoo Story’,6.50,909),(74510,’Kevin Hart: Laugh at My Pain’,0,’http://www.kevinhartlaughatmypain.com/’,’Experience the show that quickly became a national phenomenon. Get an up-close and personal look at Kevin Hart back in Philly where he began his journey to become one of the funniest comedians of all time. You will laugh \’til it hurts!’,5.498834,’2011-09-09′,0,89,’Released’,’Alright! Alright! Alright!’,7.70,43),(74534,’The Best Exotic Marigold Hotel’,10000000,’http://www.foxsearchlight.com/thebestexoticmarigoldhotel/’,’British retirees travel to India to take up residence in what they believe is a newly restored hotel. Less luxurious than its advertisements, the Marigold Hotel nevertheless slowly begins to charm in unexpected ways as the residents find new purpose in their old age.’,21.258991,’2011-11-28′,136836156,124,’Released’,’Share the journey. Share the laughter.’,6.90,459),(74536,’The Son of No One’,15000000,”,’A rookie cop is assigned to the 118 Precinct in the same district where he grew up. The Precinct Captain starts receiving letters about two unsolved murders that happened many years ago in the housing projects when the rookie cop was just a kid. These letters bring back bad memories and old secrets that begin to threaten his career and break up his family.’,7.701186,’2011-11-04′,0,90,’Released’,’Serve. Protect. Lie.’,4.80,92),(74643,’The Artist’,15000000,’http://www.warnerbros.fr/the-artist’,’Hollywood, 1927: As silent movie star George Valentin wonders if the arrival of talking pictures will cause him to fade into oblivion, he sparks with Peppy Miller, a young dancer set for a big break.’,29.943316,’2011-05-15′,133432856,100,’Released’,’A Breath Of Fresh Vintage Air’,7.30,1049),(74725,’Kill List’,500000,’http://www.kill-list.com/’,’Nearly a year after a botched job, a hitman takes a new assignment with the promise of a big payoff for three killings. What starts off as an easy task soon unravels, sending the killer into the heart of darkness.’,12.203041,’2011-09-02′,171760,95,’Released’,”,6.00,210),(74777,’Absentia’,70000,”,’Tricia\’s husband Daniel has been missing for seven years. Her younger sister Callie comes to live with her as the pressure mounts to finally declare him \’dead in absentia.\’ As Tricia sifts through the wreckage and tries to move on with her life, Callie finds herself drawn to an ominous tunnel near the house. As she begins to link it to other mysterious disappearances, it becomes clear that Daniel\’s presumed death might be anything but \’natural.\’ The ancient force at work in the tunnel might have set its sights on Callie and Tricia… and Daniel might be suffering a fate far worse than death in its grasp.’,6.328665,’2011-03-03′,0,92,’Released’,’There are fates worse than death.’,5.80,121),(75033,’Winnie Mandela’,15000000,’http://www.dfilmscorp.ca/’,’A drama that chronicles the life of Winnie Mandela from her childhood through her marriage and her husband\’s incarceration.’,1.897761,’2011-09-16′,0,107,’Released’,’Her courage inspired a nation.’,5.20,5),(75174,’The Grey’,25000000,’http://www.thegreythemovie.com/’,’An oil drilling team struggles to survive after a plane crash strands them in the wilds of Alaska. Hunting them is a pack of wolves that sees them as intruders.’,48.552871,’2012-01-26′,77278331,117,’Released’,’Live or Die on This Day’,6.40,1451),(75531,’Isn\’t She Great’,36000000,”,’An unsuccessful over-the-top actress becomes a successful over-the-top authoress in this biography of Jacqueline Susann, the famed writer of \”The Valley Of The Dolls\” and other trashy novels. Facing a failing career, Susann meets a successful promoter who becomes her husband. After several failures to place her in commercials and a TV quiz show, he hits upon the idea for her to become a writer. In the pre-60\’s, her books were looked upon as trash and non-printable. But then the sexual revolution hit and an audience was born for her books. The story shows the hidden behind the scenes story of Susan\’s life, including her autistic son and her continuing bout with cancer that she hid up to her death’,1.068453,’2000-01-28′,3003296,95,’Released’,’Talent Isn\’t Everything…’,4.60,14),(75612,’Oblivion’,120000000,’https://www.uphe.com/movies/oblivion’,’Jack Harper is one of the last few drone repairmen stationed on Earth. Part of a massive operation to extract vital resources after decades of war with a terrifying threat known as the Scavs, Jackâ��s mission is nearly complete. His existence is brought crashing down when he rescues a beautiful stranger from a downed spacecraft. Her arrival triggers a chain of events that forces him to question everything he knows and puts the fate of humanity in his hands.’,67.698004,’2013-04-10′,286168572,124,’Released’,’Earth is a memory worth fighting for’,6.40,4800),(75638,’Red Lights’,14000000,”,’Two investigators of paranormal hoaxes, the veteran Dr. Margaret Matheson and her young assistant, Tom Buckley, study the most varied metaphysical phenomena with the aim of proving their fraudulent origins. Simon Silver, a legendary blind psychic, reappears after an enigmatic absence of 30 years to become the greatest international challenge to both orthodox science and professional sceptics. Tom starts to develop an intense obsession with Silver, whose magnetism becomes stronger with each new manifestation of inexplicable events. As Tom gets closer to Silver, tension mounts, and his worldview is threatened to its core.’,22.748174,’2012-03-02′,13551174,119,’Released’,’How much do you want to believe?’,6.00,376),(75656,’Now You See Me’,75000000,”,’An FBI agent and an Interpol detective track a team of illusionists who pull off bank heists during their performances and reward their audiences with the money.’,71.124686,’2013-05-29′,117698894,115,’Released’,’4 amazing magicians. 3 impossible heists. 1 billion dollars. This is no illusion.’,7.30,5487),(75674,’Act of Valor’,12000000,’http://www.actofvalor.com/’,’When a covert mission to rescue a kidnapped CIA operative uncovers a chilling plot, an elite, highly trained U.S. SEAL team speeds to hotspots around the globe, racing against the clock to stop a deadly terrorist attack.’,21.958055,’2012-02-24′,81272766,110,’Released’,’The only easy day was yesterday’,6.30,417),(75780,’Jack Reacher’,60000000,’http://www.jackreachermovie.com/’,’In an innocent heartland city, five are shot dead by an expert sniper. The police quickly identify and arrest the culprit, and build a slam-dunk case. But the accused man claims he\’s innocent and says \”Get Jack Reacher.\” Reacher himself sees the news report and turns up in the city. The defense is immensely relieved, but Reacher has come to bury the guy. Shocked at the accused\’s request, Reacher sets out to confirm for himself the absolute certainty of the man\’s guilt, but comes up with more than he bargained for.’,56.868399,’2012-12-20′,218340595,130,’Released’,’The Law Has Limits. He Does Not.’,6.30,2998),(75861,’To Write Love on Her Arms’,3400000,’http://www.reneethemovie.com/’,’The story follows 19-year-old Renee who has always loved fairy tales: the idea of a princess, a hero and a happily ever after. But Reneeâ��s life is that of a darker tale: sheâ��s a young woman battling addiction, depression and self-injury. In a creative blend of artistic fantasy balanced with harsh reality, the movie follows Renee on her courageous journey towards recovery.’,6.723057,’2015-03-13′,0,118,’Released’,’Based on the True Story that started a Global Movement.’,6.80,47),(75900,’My Week with Marilyn’,6400000,’http://myweekwithmarilynmovie.com/’,’Sir Laurence Olivier is making a movie in London. Young Colin Clark, an eager film student, wants to be involved and he navigates himself a job on the set. When film star Marilyn Monroe arrives for the start of shooting, all of London is excited to see the blonde bombshell, while Olivier is struggling to meet her many demands and acting ineptness, and Colin is intrigued by her. Colin\’s intrigue is met when Marilyn invites him into her inner world where she struggles with her fame, her beauty and her desire to be a great actress.’,21.006078,’2011-10-17′,35057696,99,’Released’,”,6.60,406),(75986,’Love Letters’,550000,”,’A story of love and obsession. A young radio personality who, after her mother dies, discovers she had been having a love affair for 15 years. Now she finds herself recreating her mother\’s romance by getting involved with a married man.’,0.001586,’1983-04-01′,0,98,’Released’,’Sometimes It\’s Right To Do the Wrong Thing.’,4.60,4),(76025,’Shame’,6500000,’http://www.foxsearchlight.com/shame/’,’Brandon is a New Yorker who shuns intimacy with women but feeds his desires with a compulsive addiction to sex. When his wayward younger sister moves into his apartment stirring memories of their shared painful past, Brandon\’s insular life spirals out of control.’,40.688426,’2011-10-02′,17693675,100,’Released’,”,7.00,875),(76163,’The Expendables 2′,100000000,’http://theexpendables2film.com/’,’Mr. Church reunites the Expendables for what should be an easy paycheck, but when one of their men is murdered on the job, their quest for revenge puts them deep in enemy territory and up against an unexpected threat.’,53.732892,’2012-08-08′,312573423,103,’Released’,’Back for War.’,6.10,2896),(76170,’The Wolverine’,120000000,’http://www.thewolverinemovie.com’,’Wolverine faces his ultimate nemesis – and tests of his physical, emotional, and mortal limits – in a life-changing voyage to modern-day Japan.’,15.953444,’2013-07-23′,415440673,126,’Released’,’When he\’s most vulnerable, he\’s most dangerous.’,6.30,4053),(76203,’12 Years a Slave’,20000000,”,’In the pre-Civil War United States, Solomon Northup, a free black man from upstate New York, is abducted and sold into slavery. Facing cruelty as well as unexpected kindnesses Solomon struggles not only to stay alive, but to retain his dignity. In the twelfth year of his unforgettable odyssey, Solomonâ��s chance meeting with a Canadian abolitionist will forever alter his life.’,95.922900,’2013-10-18′,187000000,134,’Released’,’The extraordinary true story of Solomon Northup’,7.90,3674),(76285,’Percy Jackson: Sea of Monsters’,90000000,’http://www.percyjacksonthemovie.com/us/#!/home’,’In their quest to confront the ultimate evil, Percy and his friends battle swarms of mythical creatures to find the mythical Golden Fleece and to stop an ancient evil from rising.’,40.262261,’2013-08-07′,174578751,106,’Released’,’Where There Are Gods, There Are Monsters.’,5.90,1648),(76338,’Thor: The Dark World’,170000000,’http://marvel.com/thor’,’Thor fights to restore order across the cosmosâ�¦ but an ancient race led by the vengeful Malekith returns to plunge the universe back into darkness. Faced with an enemy that even Odin and Asgard cannot withstand, Thor must embark on his most perilous and personal journey yet, one that will reunite him with Jane Foster and force him to sacrifice everything to save us all.’,99.499595,’2013-10-29′,644571402,112,’Released’,’Delve into the darkness’,6.80,4755),(76341,’Mad Max: Fury Road’,150000000,’http://www.madmaxmovie.com/’,’An apocalyptic story set in the furthest reaches of our planet, in a stark desert landscape where humanity is broken, and most everyone is crazed fighting for the necessities of life. Within this world exist two rebels on the run who just might be able to restore order. There\’s Max, a man of action and a man of few words, who seeks peace of mind following the loss of his wife and child in the aftermath of the chaos. And Furiosa, a woman of action and a woman who believes her path to survival may be achieved if she can make it across the desert back to her childhood homeland.’,434.278564,’2015-05-13′,378858340,120,’Released’,’What a Lovely Day.’,7.20,9427),(76349,’è¾�亥é�©å�½’,30000000,’http://www.1911movie.com/’,’At the beginning of the 20th century, China is in a state of crisis. The country is split into warring factions, the citizens are starving, and recent political reforms have made matters worse, not better. The ruling Qing Dynasty, led by a seven-year-old emperor, and his ruthless mother, Empress Dowager Longyu is completely out of touch after 250 years of unquestioned power. Huang Xing has recently returned from Japan, where he has studied the art of modern warfare. When he finds his country falling apart, he feels he has no choice but to pick up the sword.’,4.065212,’2011-07-03′,108348,125,’Released’,’Fall of the Last Empire’,5.00,41),(76487,’The Devil Inside’,1000000,’http://www.devilinsidemovie.com’,’In Italy, a woman becomes involved in a series of unauthorized exorcisms during her mission to discover what happened to her mother, who allegedly murdered three people during her own exorcism.’,13.152822,’2012-01-06′,101758490,83,’Released’,’No soul is safe.’,4.60,262),(76489,’The Three Stooges’,30000000,’http://www.threestooges.com/movie/index.htm’,’While trying to save their childhood orphanage, Moe, Larry and Curly inadvertently stumble into a murder plot and wind up starring in a reality TV show.’,14.585968,’2012-04-13′,54819301,92,’Released’,’Just Say Moe.’,4.90,140),(76492,’Hotel Transylvania’,85000000,’http://www.welcometohotelt.com’,’Dracula, who operates a high-end resort away from the human world, goes into overprotective mode when a boy discovers the resort and falls for the count\’s teen-aged daughter.’,56.257411,’2012-09-20′,358375603,91,’Released’,’Where monsters go to get away from it all’,6.80,2566),(76493,’The Dictator’,65000000,’http://www.dictatorthemovie.com/’,’The heroic story of a dictator who risks his life to ensure that democracy would never come to the country he so lovingly oppressed.’,31.349143,’2012-05-15′,179379533,83,’Released’,’kurd’,5.90,1743),(76494,’What to Expect When You\’re Expecting’,40000000,’http://whattoexpectthefilm.com/’,’Challenges of impending parenthood turn the lives of five couples upside down. Two celebrities are unprepared for the surprise demands of pregnancy; hormones wreak havoc on a baby-crazy author, while her husband tries not to be outdone by his father, who\’s expecting twins with his young trophy wife; a photographer\’s husband isn\’t sure about his wife\’s adoption plans; a one-time hook-up results in a surprise pregnancy for rival food-truck owners.’,27.009723,’2012-05-17′,79700000,110,’Released’,’It\’s too late to pull out now.’,5.80,594),(76617,’Texas Chainsaw 3D’,20000000,”,’A young woman learns that she has inherited a Texas estate from her deceased grandmother. After embarking on a road trip with friends to uncover her roots, she finds she is the sole owner of a lavish, isolated Victorian mansion. But her newfound wealth comes at a price as she stumbles upon a horror that awaits her in the mansionâ��s dank cellars.’,26.497025,’2013-01-03′,47241945,92,’Released’,’Evil wears many faces.’,5.30,465),(76640,’The Last Stand’,30000000,’http://www.thelaststandfilm.com’,’Ray Owens is sheriff of the quiet US border town of Sommerton Junction after leaving the LAPD following a bungled operation. Following his escape from the FBI, a notorious drug baron, his gang, and a hostage are heading toward Sommerton Junction where the police are preparing to make a last stand to intercept them before they cross the border. Owens is reluctant to become involved but ultimately joins in with the law enforcement efforts’,43.882857,’2013-01-12′,0,107,’Released’,’Not in his town. Not on his watch.’,5.70,1266),(76649,’Pompeii’,130000000,”,’Set in 79 A.D., POMPEII tells the epic story of Milo, a slave turned invincible gladiator who finds himself in a race against time to save his true love Cassia, the beautiful daughter of a wealthy merchant who has been unwillingly betrothed to a corrupt Roman Senator. As Mount Vesuvius erupts in a torrent of blazing lava, Milo must fight his way out of the arena in order to save his beloved as the once magnificent Pompeii crumbles around him.’,50.561849,’2014-02-18′,117831631,105,’Released’,’No warning. No escape.’,5.20,1267),(76706,’Christmas Mail’,0,”,’In this holiday romantic comedy, a mysterious woman who works at the post office answering Santa\’s mail captures the heart of a disillusioned postal carrier’,0.630226,’2010-12-01′,0,89,’Released’,”,5.00,15),(76726,’Chronicle’,15000000,”,’Three high school students make an incredible discovery, leading to their developing uncanny powers beyond their understanding. As they learn to control their abilities and use them to their advantage, their lives start to spin out of control, and their darker sides begin to take over.’,64.504747,’2012-02-01′,145000000,84,’Released’,’What are you capable of?’,6.60,1935),(76757,’Jupiter Ascending’,176000003,’http://www.jupiterascending.com’,’In a universe where human genetic material is the most precious commodity, an impoverished young Earth woman becomes the key to strategic maneuvers and internal strife within a powerful dynastyâ�¦’,85.369080,’2015-02-04′,183987723,124,’Released’,’Expand your universe.’,5.20,2768),(76758,’é��é�µå��ä¸�é�µ’,94000000,’http://www.theflowersofwarmovie.com/’,’A Westerner finds refuge with a group of women in a church during Japan\’s rape of Nanking in 1937. Posing as a priest, he attempts to lead the women to safety.’,12.516546,’2011-12-15′,95311434,145,’Released’,”,7.10,187),(76996,’Love and Other Catastrophes’,0,”,’A day in the life of two film-school students trying to find love and another house-mate.’,0.619348,’1996-08-01′,0,78,’Released’,”,5.80,9),(77016,’End of Watch’,7000000,”,’Two young officers are marked for death after confiscating a small cache of money and firearms from the members of a notorious cartel during a routine traffic stop.’,49.517264,’2012-09-20′,48126384,109,’Released’,’Every moment of your life they stand watch’,7.20,1170),(77156,’Alien Zone’,0,”,’A man who is having an affair with a married woman is dropped off on the wrong street when going back to his hotel. He takes refuge out of the rain when an old man invites him in. He turns out to be a mortician, who tells him the stories of the people who have wound up in his establishment over the course of four stories.’,0.000372,’1978-11-22′,0,90,’Released’,’Don\’t you dare go in there!’,4.00,3),(77174,’ParaNorman’,60000000,’http://paranorman.com’,’In the town of Blithe Hollow, Norman Babcock is a boy who can speak to the dead, but no one besides his eccentric new friend, Neil, believes his ability is real. One day, Norman\’s estranged eccentric uncle tells him of an important annual ritual he must take up to protect the town from an curse cast by a witch it condemned centuries ago. Eventually, Norman decides to cooperate, but things don\’t go according to plan. Now, a magic storm of the witch threatens Blithe Hollow as the accursed dead rise. Together with unexpected new companions, Norman struggles to save his town, only to discover the horrific truth of the curse. With that insight, Norman must resolve the crisis for good as only he can.’,39.539045,’2012-08-03′,107139399,90,’Released’,’It\’s all fun and games until someone raises the dead.’,6.70,789),(77332,’Urbania’,0,”,’Charlie takes an odyssey through grief during a fall weekend in New York City. His encounters are planned and chance: with a homeless man who sleeps by his building, with a friend who\’s dying, with the couple who lives (and noisily loves) in the flat above him, with a bartender and a one-night-stand he follows home, and with a tattooed stranger whom he seeks out and befriends. Along the way, Charlie inhabits a city full of moments of violence and of stories and legends: a kidney thief, a microwaved poodle, a rat in a hot dog bun, a baby left on a car top, a tourist\’s toothbrush, needles in public-phone change slots. Charlie lives and tells his own stories. What caused his melancholy?’,0.065155,’2000-01-24′,0,103,’Released’,’Heard any good stories lately?’,5.20,10),(77459,’Un monstre à Paris’,25000000,”,’Paris,1910. Emile, a shy movie projectionist, and Raoul, a colorful inventor, find themselves embarked on the hunt for a monster terrorizing citizens. They join forces with Lucille, the big-hearted star of the Bird of Paradise cabaret, an eccentric scientist and his irascible monkey to save the monster, who turns out to be an oversized but harmless flea, from the city\’s ruthlessly ambitious police chief.’,17.375562,’2011-10-12′,0,90,’Released’,”,6.50,313),(77495,’Mientras duermes’,5000000,’http://www.mientrasduermeslapelicula.com/’,’Apartment concierge Cesar is a miserable person who believes he was born without the ability to be happy. As a result, he decides his mission is to make life hell for everyone around him. A majority of the tenants are easy to agitate, but Clara proves to be harder than the most. So Cesar goes to creepy extremes to make this young woman mentally break down. Things get even more complicated in this twisted relationship when her boyfriend, Marcos, shows up.’,9.136965,’2011-10-14′,0,107,’Released’,’Someone is watching over you’,7.00,202),(77866,’Contraband’,25000000,’http://www.contrabandmovie.net’,’When his brother-in-law runs afoul of a drug lord, family man Chris Farraday turns to a skill he abandoned long ago â�� smuggling â�� to repay the debt. But the job goes wrong, and Farraday finds himself wanted by cops, crooks and killers alike.’,31.364901,’2012-01-12′,63100000,109,’Released’,’What would you hide to protect your family?’,6.10,770),(77875,’Playing for Keeps’,35000000,”,’A former sports star who\’s fallen on hard times starts coaching his son\’s soccer team in an attempt to get his life together.’,17.932561,’2012-11-29′,0,106,’Released’,”,5.40,240),(77877,’The Lucky One’,25000000,’http://theluckyonemovie.warnerbros.com/’,’U.S. Marine Sergeant Logan Thibault returns from his third tour of duty in Iraq, with the one thing he credits with keeping him alive-a photograph he found of a woman he doesn\’t even know. Learning her name is Beth and where she lives, he shows up at her door, and ends up taking a job at her family-run local kennel. Despite her initial mistrust and the complications in her life, a romance develops between them, giving Logan hope that Beth could be much more than his good luck charm.’,26.811541,’2012-04-19′,99357138,101,’Released’,”,6.80,946),(77883,’The Possession’,14000000,’http://www.thepossessionmovie.com/’,’A young girl buys an antique box at a yard sale, unaware that inside the collectible lives a malicious ancient spirit. The girl\’s father teams with his ex-wife to find a way to end the curse upon their child.’,21.680424,’2012-08-30′,85446075,92,’Released’,’Fear The Demon That Doesn\’t Fear God’,5.80,498),(77930,’Magic Mike’,7000000,’http://magicmikemovie.warnerbros.com’,’Mike, an experienced stripper, takes a younger performer called The Kid under his wing and schools him in the arts of partying, picking up women, and making easy money.’,35.897151,’2012-06-28′,167221571,110,’Released’,’Work all day. Work it all night.’,6.10,1040),(77931,’The Smurfs 2′,105000000,’http://smurfhappens.com’,’The evil wizard Gargamel creates a couple of mischievous Smurf-like creatures called the Naughties that he hopes will let him harness the all-powerful, magical Smurf-essence. But when he discovers that only a real Smurf can give him what he wants, and only a secret spell that Smurfette knows can turn the Naughties into real Smurfs, Gargamel kidnaps Smurfette and brings her to Paris, where he has been winning the adoration of millions as the world¹s greatest sorcerer. It\’s up to Papa, Clumsy, Grouchy, and Vanity to return to our world, reunite with their human friends Patrick and Grace Winslow, and rescue her! Will Smurfette, who has always felt different from the other Smurfs, find a new connection with the Naughties Vexy and Hackus or will the Smurfs convince her that their love for her is True Blue?’,32.473628,’2013-07-30′,347434178,105,’Released’,’Get ready to get naughty!’,5.50,695),(77934,’The Christmas Bunny’,250000,’http://www.thechristmasbunny.com/’,’The Christmas Bunny tells the story of a lonely foster child (Sophie Bolen) who finds a lost, injured rabbit in the woods on Christmas Eve. The rabbit is nursed back to health by The Bunny Lady (Florence Henderson), who runs a rabbit rescue in an old barn behind her Michigan farmhouse.’,0.065103,’2010-11-28′,0,96,’Released’,’Everybody needs some bunny to love.’,5.70,7),(77948,’The Cold Light of Day’,20000000,”,’A young American uncovers a conspiracy during his attempt to save his family, that was kidnapped while on vacation in Spain.’,15.131867,’2012-04-04′,16863583,93,’Released’,’Be careful who you trust.’,4.80,271),(77949,’The Awakening’,4798235,”,’1921 England is overwhelmed by the loss and grief of World War I. Hoax exposer Florence Cathcart (Hall) visits a boarding school to explain sightings of a child ghost.’,25.302160,’2011-08-17′,209696,107,’Released’,’Sometimes dead does not mean gone.’,6.30,458),(77950,’Turbo’,135000000,’http://www.turbomovie.com/’,’The tale of an ordinary garden snail who dreams of winning the Indy 500.’,44.765377,’2013-07-11′,282570682,96,’Released’,’SLO NO MO’,6.10,1074),(77951,’Walking With Dinosaurs’,80000000,’http://www.walkingwithdinosaurs.com/movie/’,’Walking with Dinosaurs 3D is a film depicting life-like 3D dinosaur characters set in photo-real landscapes that transports audiences to the prehistoric world as it existed 70 million years ago. The film is based on the 1999 documentary television miniseries Walking with Dinosaurs, produced by the BBC. Walking with Dinosaurs 3D is being produced by Evergreen Studios, the company that produced Happy Feet, and it is was released on October 11, 2013.’,10.088006,’2013-12-18′,126546518,87,’Released’,’The Greatest Adventure in 70 Million Years’,5.20,133),(77953,’The Campaign’,0,”,’Two rival politicians compete to win an election to represent their small North Carolina congressional district in the United States House of Representatives.’,16.460356,’2012-08-09′,104907746,85,’Released’,’May The Best Loser Win.’,5.60,578),(77987,’Only God Forgives’,4800000,”,’Julian, who runs a Thai boxing club as a front organization for his family\’s drug smuggling operation, is forced by his mother Jenna to find and kill the individual responsible for his brother\’s recent death.’,35.754865,’2013-05-30′,10337387,90,’Released’,’Time to Meet The Devil’,5.60,862),(78149,’An Alan Smithee Film: Burn, Hollywood, Burn’,10000000,”,’Filmmaker Alan Smithee finds himself the unwilling puppet of a potentially bad, big budget action film which he proceeds to steal the reels and leave the cast and crew in a frenzy.’,0.666218,’1998-02-20′,45779,86,’Released’,”,3.00,9),(78307,’On the Outs’,0,’http://www.ontheouts.com/’,’Follows the choices made by three young women – one a drug dealer, one an addict, one a pregnant teen – in Jersey City.’,0.493223,’2004-09-11′,0,86,’Released’,’A drug dealer. An addict. A runaway. The story of 3 girls.’,5.90,6),(78373,’Dancer, Texas Pop. 81′,0,”,’Four guys, best friends, have grown up together in DANCER, TEXAS POP. 81, a tiny town in West Texas. Years ago, they made a solemn vow to leave town together as soon as they graduate. Now, it\’s that weekend and the time has come to \”put up or shut up.\” The clock is ticking and as all 81 people in the town watch, comment, offer advice and place bets, these four very different boys with unique backgrounds struggle with the biggest decision of their lives… whether to stay or leave home.’,0.376662,’1998-05-01′,565592,97,’Released’,’in the middle of nowhere they had everything’,10.00,1),(78381,’Twixt’,7000000,’http://www.twixtmovie.com/’,’A writer with a declining career arrives in a small town as part of his book tour and gets caught up in a murder mystery involving a young girl. That night in a dream, he is approached by a mysterious young ghost named V. He\’s unsure of her connection to the murder in the town, but is grateful for the story being handed to him. Ultimately he is led to the truth of the story, surprised to find that the ending has more to do with his own life than he could ever have anticipated.’,5.060656,’2011-09-10′,0,84,’Released’,’Between the living and the dead, eviil is waiting.’,5.00,85),(78383,’Nurse 3-D’,10,”,’Abby Russell, a beautiful, dedicated nurse with a sinister side, has a secret life in which she targets and punishes dishonest men.’,10.013629,’2013-09-28′,10000000,99,’Released’,’Your pain is her pleasure.’,4.90,119),(78394,’Sea Rex 3D: Journey to a Prehistoric World’,5000000,”,’Through the power of IMAX 3D, experience a wondrous adventure from the dinosaur age. Join Julie, an imaginative young woman, in a unique voyage through time and space. Explore an amazing underwater universe inhabited by larger-than-life creatures which were ruling the seas before dinosaurs conquered the earth. See science come alive in an entertaining manner and get ready for a face-to-face encounter with the T-Rex of the seas!’,4.498368,’2010-05-14′,4074023,41,’Released’,’The T-Rex of the Seas come alive.’,5.90,11),(78698,’Big Miracle’,40000000,’http://www.everybodyloveswhales.com/’,’Based on an inspiring true story, a small-town news reporter (Krasinski) and a Greenpeace volunteer (Barrymore) enlist the help of rival superpowers to save three majestic gray whales trapped under the ice of the Arctic Circle. â��Big Miracleâ�� is adapted from the nonfiction book â��Freeing the Whales: How the Media Created the Worldâ��s Greatest Non-Eventâ�� by Tom Rose.’,8.303696,’2012-02-02′,24719215,107,’Released’,’A family of whales trapped beneath the ice. One unforgettable rescue.’,6.60,152),(78705,’Cama adentro’,0,”,’Buenos Aires is in a deep recession. As the money runs out, the relationship between an employer and her live-in maid changes dramatically.’,0.038706,’2004-09-21′,0,83,’Released’,”,7.80,3),(78814,’We Have Your Husband’,0,”,’American-born Jayne Valseca, her husband Eduardo, the son of a legendary Mexican newspaper publisher, and their two children live an idyllic life on their 1,000 acre ranch outside of a peaceful Mexico town. But in the summer of 2007, their peaceful life is turned into a real-life nightmare when Eduardo is ambushed and kidnapped by strangers. With kidnapping becoming a pervasive and lucrative business in Mexico, Jayne is at the mercy of the kidnappers when they demand millions for the husband\’s safe release. She\’s pushed to the limit to do everything she possibly can to raise the money necessary to bring Eduardo back alive. As Eduardo is starved and tortured, he looses hope of ever seeing his family again but despite the dire and bleak times, Jayne refuses to give up and decides to turn the tables on the kidnappers and makes demands of her own. The film is based on a true story from the book, We Have Your Husband: One Woman\’s Terrifying Story of a Kidnapping in Mexico.’,0.102003,’2011-11-12′,0,89,’Released’,”,5.00,3),(79120,’Weekend’,8000,’http://weekenderfilm.tumblr.com/’,’After a drunken house party with his straight mates, Russell heads out to a gay club. Just before closing time he picks up Glen but what\’s expected to be just a one-night stand becomes something else, something special.’,1.041254,’2011-09-22′,469947,96,’Released’,’A (sort of) love story between two guys over a cold weekend in October.’,7.40,163),(79161,’51 Birch Street’,0,’http://www.51birchstreet.com/index.php’,’Documentary filmmaker Doug Block had every reason to believe his parents\’ 54-year marriage was a good one. But when his mother dies unexpectedly and his father swiftly marries his former secretary, he discovers two parents who are far more complex and troubled than he ever imagined. 51 Birch Street is a riveting personal documentary that explores a universal human question: how much about your parents do you really want to know?’,0.049921,’2006-10-18′,0,90,’Released’,’Do you really want to know your parents?’,6.80,6),(79316,’Devil\’s Due’,7000000,”,’An unexpected pregnancy takes a terrifying turn for newlyweds Zach and Samantha McCall.’,14.741589,’2014-01-08′,36433975,89,’Released’,’The Devil Always Gets His Due’,4.40,216),(79587,’Four Single Fathers’,3,”,’A comedy/drama about four Italian single fathers trying to cope with American ex-wives, children, family, and new relationships, set in New York and Rome.’,0.008263,’2009-01-15′,0,100,’Released’,’Comedy’,0.00,0),(79694,’The Apparition’,17000000,’http://theapparition.warnerbros.com’,’Plagued by frightening occurrences in their home, Kelly and Ben learn that a university\’s parapsychology experiment produced an entity that is now haunting them. The malevolent spirit feeds on fear and torments the couple no matter where they run. Desperate, Kelly and Ben turn to a paranormal researcher, but even with his aid, it may already be too late to save themselves from the terrifying presence.’,6.385234,’2012-08-23′,9627492,82,’Released’,’Once You Believe You Die’,4.50,140),(79698,’The Lovers’,27000000,”,’The Lovers is an epic romance time travel adventure film. Helmed by Roland Joffé from a story by Ajey Jhankar, the film is a sweeping tale of an impossible love set against the backdrop of the first Anglo-Maratha war across two time periods and continents and centred around four characters â�� a British officer in 18th century colonial India, the Indian woman he falls deeply in love with, an American present-day marine biologist and his wife.’,2.418535,’2015-02-13′,0,109,’Released’,’Love is longer than life.’,4.80,34),(79777,’In the Land of Blood and Honey’,10000000,’http://www.inthelandofbloodandhoney.com/’,’During the Bosnian War, Danijel, a soldier fighting for the Serbs, re-encounters Ajla, a Bosnian who\’s now a captive in his camp he oversees. Their once promising connection has become ambiguous as their motives have changed.’,4.267466,’2011-12-23′,303877,127,’Released’,’Love can change what we wantâ�¦ war can change who we are’,5.80,45),(79940,’Tim and Eric\’s Billion Dollar Movie’,0,”,’Two guys get a billion dollars to make a movie, only to watch their dream run off course.’,1.753110,’2012-03-02′,0,94,’Released’,”,5.20,34),(80035,’The Watch’,68000000,”,’Four everyday suburban guys come together as an excuse to escape their humdrum lives one night a week. But when they accidentally discover that their town has become overrun with aliens posing as ordinary suburbanites, they have no choice but to save their neighborhood – and the world – from total extermination.’,39.395881,’2012-07-26′,68267862,98,’Released’,’Got Protection?’,5.30,881),(80215,’Indie Game: The Movie’,0,’http://www.indiegamethemovie.com’,’Indie Game: The Movie is a feature documentary about video games, their creators and the craft. The film follows the dramatic journeys of video game developers as they create and release their games to the world. The film tells the emotional story of friends Edmund McMillen & Tommy Refenes, as they craft their first Xbox game: \”Super Meat Boy\”. It follows Phil Fish, the creator of the highly-anticipated game: \”FEZ\”. After 4 years of working in near solitude, Phil reveals his opus to the public for the first time. And, the film tells the surprising story of one of the highest-rated video games of all time:\”Braid\”. The film is about making video games, but at its core, it\’s about the creative process, and exposing yourself through your work. In short: Making fun and games is anything but fun and games.’,7.676677,’2012-05-18′,0,96,’Released’,”,7.40,203),(80271,’LOL’,11000000,”,’In a world connected by YouTube, iTunes, and Facebook, Lola and her friends navigate the peer pressures of high school romance and friendship while dodging their sometimes overbearing and confused parents. When Lola\’s mom, Anne, \”accidentally\” reads her teenage daughter\’s racy journal, she realizes just how wide their communication gap has grown.’,31.763201,’2012-02-10′,0,97,’Released’,’You can change your status, but not your heart.’,5.90,881),(80274,’Ender\’s Game’,110000000,’http://www.if-sentinel.com/’,’Based on the classic novel by Orson Scott Card, Ender\’s Game is the story of the Earth\’s most gifted children training to defend their homeplanet in the space wars of the future.’,45.948340,’2013-10-23′,125537191,114,’Released’,’This is not a game.’,6.60,2303),(80278,’Lo imposible’,42000000,”,’In December 2004, close-knit family Maria, Henry and their three sons begin their winter vacation in Thailand. But the day after Christmas, the idyllic holiday turns into an incomprehensible nightmare when a terrifying roar rises from the depths of the sea, followed by a wall of black water that devours everything in its path. Though Maria and her family face their darkest hour, unexpected displays of kindness and courage ameliorate their terror.’,47.559928,’2012-09-09′,180274123,113,’Released’,’Nothing is more powerful than the human spirit.’,7.00,2025),(80304,’Casa De Mi Padre’,0,’http://www.casademipadremovie.com/’,’Scheming of a way to save their father\’s ranch, the Alvarez brothers find themselves in a war with Mexico\’s most feared drug lord.’,5.754416,’2012-03-15′,0,84,’Released’,’Funniest movie you\’ll ever read.’,5.50,103),(80321,’Madagascar 3: Europe\’s Most Wanted’,145000000,”,’Alex, Marty, Gloria and Melman are still trying to get back to the Big Apple and their beloved Central Park zoo, but first they need to find the penguins. When they travel to Monte Carlo, they attract the attention of Animal Control after gate crashing a party and are joined by the penguins, King Julian and Co., and the monkeys. How do a lion, zebra, hippo, giraffe, four penguins, two monkeys, three lemurs travel through Europe without attracting attention and get back to New York? They join a traveling circus. Their attempts to get back to New York are consistently hampered by the Captain of Animal Control who wants to make Alex part of her collection. Once they make it back to New York Marty, Alex, Gloria and Melman realize that they want to be part of the traveling circus.’,44.989192,’2012-06-06′,746921274,93,’Released’,’Six years ago, they disappeared without a trace. Next summer, they finally resurface.’,6.40,1808),(80468,’Some Guy Who Kills People’,300000,’http://someguywhokillspeople.com/’,’A former mental patient\’s repressed anger reaches the boiling point, leading him to embark on a mission of revenge against the thugs who once subjected him to severe physical and mental trauma.’,2.733725,’2011-04-14′,0,97,’Released’,’Your number is up.’,5.70,45),(80585,’Rock of Ages’,75000000,’http://www.warnerbros.com/rock-ages’,’A small town girl and a city boy meet on the Sunset Strip, while pursuing their Hollywood dreams.’,23.515938,’2012-06-13′,59418613,123,’Released’,’Nothin\’ but a good time’,6.00,385),(81005,’Jack the Giant Slayer’,195000000,’http://jackthegiantkiller.warnerbros.com’,’The story of an ancient war that is reignited when a young farmhand unwittingly opens a gateway between our world and a fearsome race of giants. Unleashed on the Earth for the first time in centuries, the giants strive to reclaim the land they once lost, forcing the young man, Jack into the battle of his life to stop them. Fighting for a kingdom, its people, and the love of a brave princess, he comes face to face with the unstoppable warriors he thought only existed in legendâ��and gets the chance to become a legend himself.’,43.349855,’2013-02-27′,197687603,114,’Released’,’Prepare for a giant adventure’,5.50,2598),(81188,’Rise of the Guardians’,145000000,’http://www.riseoftheguardians.com/’,’When an evil spirit known as Pitch lays down the gauntlet to take over the world, the immortal Guardians must join forces for the first time to protect the hopes, beliefs and imagination of children all over the world.’,61.788035,’2012-11-21′,306941670,97,’Released’,’You better believe.’,7.10,1922),(81220,’Everything Put Together’,500000,”,’Everything Put Together is a 2000 film directed by Marc Forster starring Radha Mitchell and Megan Mullally.’,0.046903,’2001-11-02′,0,87,’Released’,”,5.00,2),(81390,’A Lonely Place to Die’,4000000,”,’A group of five mountaineers are hiking and climbing in the Scottish Highlands when they discover a young Serbian girl buried in a small chamber in the wilderness. They become caught up in a terrifying game of cat and mouse with the kidnappers as they try to get the girl to safety.’,8.307230,’2011-04-09′,25345000,99,’Released’,’Out here, there\’s nowhere to hide.’,6.20,157),(81796,’Lockout’,20000000,’http://www.lockoutfilm.com/’,’Set in the near future, Lockout follows a falsely convicted ex-government agent , whose one chance at obtaining freedom lies in the dangerous mission of rescuing the President\’s daughter from rioting convicts at an outer space maximum security prison.’,35.232278,’2012-04-12′,32204030,95,’Released’,’Take no prisoners.’,5.80,715),(81836,’To Rome with Love’,17000000,”,’Four tales unfold in the Eternal City: While vacationing in Rome, architect John encounters a young man whose romantic woes remind him of a painful incident from his own youth; retired opera director Jerry discovers a mortician with an amazing voice, and he seizes the opportunity to rejuvenate his own flagging career; a young couple have separate romantic interludes; a spotlight shines on an ordinary man.’,15.013386,’2012-04-20′,73244881,111,’Released’,”,5.60,546),(82505,’House at the End of the Street’,6900000,”,’A mother and daughter move to a new town and find themselves living next door to a house where a young girl murdered her parents. When the daughter befriends the surviving son, she learns the story is far from over.’,25.613197,’2012-09-21′,44287131,101,’Released’,’Fear reaches out… for the girl next door.’,5.60,555),(82507,’Sinister’,3000000,”,’Found footage helps a true-crime novelist realize how and why a family was murdered in his new home, though his discoveries put his entire family in the path of a supernatural entity.’,41.045084,’2012-03-29′,77712439,110,’Released’,’Once you see him, nothing can save you.’,6.70,1573),(82525,’Savages’,45000000,’http://www.savagesfilm.com/’,’Pot growers Ben and Chon face off against the Mexican drug cartel who kidnapped their shared girlfriend.’,31.856589,’2012-07-06′,82966152,131,’Released’,’Young Beautiful Deadly.’,6.20,766),(82532,’Jeff, Who Lives at Home’,10000000,”,’Dispatched from his basement room on an errand for his mother, slacker Jeff might discover his destiny (finally) when he spends the day with his brother as he tracks his possibly adulterous wife.’,10.409155,’2011-09-13′,4417580,83,’Released’,’The first step to finding your destiny is leaving your mother\’s basement.’,6.10,217),(82533,’Damsels in Distress’,0,’http://www.sonyclassics.com/damselsindistress/’,’A trio of beautiful girls set out to revolutionize life at a grungy American university: the dynamic leader Violet Wister, principled Rose and sexy Heather. They welcome transfer student Lily into their group which seeks to help severely depressed students with a program of good hygiene and musical dance numbers.’,3.750338,’2012-04-06′,0,99,’Released’,’For these girls… it\’s not what you learn, it\’s whom you educate.’,5.60,67),(82631,’Won\’t Back Down’,0,”,’Two determined mothersÂ, one a teacher, look to transform their children\’s failing inner city school. Facing a powerful and entrenched bureaucracy, they risk everything to make a difference in the education and future of their children’,2.366251,’2012-09-28′,5310554,121,’Released’,’If you can\’t beat the system… change it’,5.80,40),(82650,’Diary of a Wimpy Kid: Dog Days’,22000000,”,’School is out and Greg is ready for the days of summer, when all his plans go wrong. What on earth is he going to do all summer?’,13.410919,’2012-08-02′,77112176,94,’Released’,’School\’s Out for the summer’,6.00,223),(82654,’Warm Bodies’,35000000,”,’After a zombie becomes involved with the girlfriend of one of his victims, their romance sets in motion a sequence of events that might transform the entire lifeless world.’,43.742241,’2013-01-31′,116980662,97,’Released’,’Cold body. Warm heart.’,6.40,2652),(82675,’Taken 2′,45000000,”,’In Istanbul, retired CIA operative Bryan Mills and his wife are taken hostage by the father of a kidnapper Mills killed while rescuing his daughter.’,49.353524,’2012-09-27′,376141306,91,’Released’,’First they took his daughter. Now they\’re coming for him.’,6.10,2757),(82679,’Fun Size’,14000000,”,’Wren is invited to a Halloween party by her crush, Aaron Riley, but she is also forced by her mother to take her oddball little brother Albert with her when she goes out trick-or-treating on Halloween. When she goes to the party instead, she loses him and must find him before her mother finds out.’,7.487843,’2012-10-25′,11417362,87,’Released’,’Some people just can\’t handle Halloween.’,5.50,134),(82682,’Gangster Squad’,60000000,’http://gangstersquad.warnerbros.com/’,’Los Angeles, 1949. Ruthless, Brooklyn-born mob king Mickey Cohen runs the show in this town, reaping the ill-gotten gains from the drugs, the guns, the prostitutes and â�� if he has his way â�� every wire bet placed west of Chicago. And he does it all with the protection of not only his own paid goons, but also the police and the politicians who are under his control. Itâ��s enough to intimidate even the bravest, street-hardened copâ�¦ except, perhaps, for the small, secret crew of LAPD outsiders led by Sgt. John Oâ��Mara and Jerry Wooters who come together to try to tear Cohenâ��s world apart.’,29.041198,’2013-01-10′,105200903,113,’Released’,’No Names. No Badges. No Mercy.’,6.20,1778),(82684,’Chasing Mavericks’,0,”,’Surfer Jay Moriarity sets out to ride the Northern California break known as Mavericks.’,13.621201,’2012-10-25′,0,117,’Released’,’Legends Start Somewhere’,7.00,216),(82687,’The Guilt Trip’,40000000,”,’An inventor and his mom hit the road together so he can sell his latest invention.’,15.283444,’2012-12-19′,41863726,95,’Released’,’Get ready for one mother of a road trip’,5.40,284),(82690,’Wreck-It Ralph’,165000000,’http://disney.go.com/wreck-it-ralph’,’Wreck-It Ralph is the 9-foot-tall, 643-pound villain of an arcade video game named Fix-It Felix Jr., in which the game\’s titular hero fixes buildings that Ralph destroys. Wanting to prove he can be a good guy and not just a villain, Ralph escapes his game and lands in Hero\’s Duty, a first-person shooter where he helps the game\’s hero battle against alien invaders. He later enters Sugar Rush, a kart racing game set on tracks made of candies, cookies and other sweets. There, Ralph meets Vanellope von Schweetz who has learned that her game is faced with a dire threat that could affect the entire arcade, and one that Ralph may have inadvertently started.’,62.341073,’2012-11-01′,471222889,108,’Released’,’The story of a regular guy just looking for a little wreck-ognition.’,7.10,4570),(82693,’Silver Linings Playbook’,21000000,’http://silverliningsplaybookmovie.com/’,’After spending eight months in a mental institution, a former teacher moves back in with his parents and tries to reconcile with his ex-wife.’,63.599973,’2012-09-08′,205738714,122,’Released’,’Watch For The Signs’,6.90,4742),(82695,’Les Misérables’,61000000,’http://www.lesmiserablesfilm.com’,’An adaptation of the successful stage musical based on Victor Hugo\’s classic novel set in 19th-century France, in which a paroled prisoner named Jean Valjean seeks redemption.’,48.356214,’2012-12-18′,441809770,157,’Released’,’Fight. Dream. Hope. Love.’,7.10,1884),(82696,’Hope Springs’,30000000,”,’After thirty years of marriage, a middle-aged couple attends an intense, week-long counseling session to work on their relationship.’,12.967137,’2012-08-07′,114281051,100,’Released’,’Sometimes to keep the magic, you need to learn a few tricks.’,5.80,284),(82700,’After Earth’,130000000,”,’One thousand years after cataclysmic events forced humanity\’s escape from Earth, Nova Prime has become mankind\’s new home. Legendary General Cypher Raige returns from an extended tour of duty to his estranged family, ready to be a father to his 13-year-old son, Kitai. When an asteroid storm damages Cypher and Kitai\’s craft, they crash-land on a now unfamiliar and dangerous Earth. As his father lies dying in the cockpit, Kitai must trek across the hostile terrain to recover their rescue beacon. His whole life, Kitai has wanted nothing more than to be a soldier like his father. Today, he gets his chance.’,42.840582,’2013-05-30′,243843127,100,’Released’,’Danger is real, fear is a choice’,5.00,2532),(82702,’How to Train Your Dragon 2′,145000000,’http://www.howtotrainyourdragon.com/’,’The thrilling second chapter of the epic How To Train Your Dragon trilogy brings back the fantastical world of Hiccup and Toothless five years later. While Astrid, Snotlout and the rest of the gang are challenging each other to dragon races (the island\’s new favorite contact sport), the now inseparable pair journey through the skies, charting unmapped territories and exploring new worlds. When one of their adventures leads to the discovery of a secret ice cave that is home to hundreds of new wild dragons and the mysterious Dragon Rider, the two friends find themselves at the center of a battle to protect the peace.’,100.213910,’2014-06-12′,609123048,102,’Released’,’The training is over.’,7.60,3106),(82703,’Mr. Peabody & Sherman’,145000000,”,’A young boy and his dog, who happens to have a genius-level IQ, spring into action when their time-travel machine is stolen and moments in history begin to be changed.’,38.734940,’2014-02-07′,272912430,92,’Released’,’He\’s Leaving His Mark On History’,6.70,843),(82990,’Paranormal Activity 4′,5000000,”,’It has been five years since the disappearance of Katie and Hunter, and a suburban family witness strange events in their neighborhood when a woman and a mysterious child move in.’,20.326337,’2012-10-17′,142817992,95,’Released’,’It\’s closer than you think’,5.20,563),(83542,’Cloud Atlas’,102000000,’http://cloudatlas.warnerbros.com/’,’A set of six nested stories spanning time between the 19th century and a distant post-apocalyptic future. Cloud Atlas explores how the actions and consequences of individual lives impact one another throughout the past, the present and the future. Action, mystery and romance weave through the story as one soul is shaped from a killer into a hero and a single act of kindness ripples across centuries to inspire a revolution in the distant future. Based on the award winning novel by David Mitchell. Directed by Tom Tykwer and the Wachowskis.’,73.872343,’2012-10-26′,130482868,172,’Released’,’Everything is Connected’,6.60,2977),(83588,’Middle of Nowhere’,0,”,’\’Middle of Nowhere\’ follows a woman named Ruby who lost her husband to incarceration and lost herself in the process.’,2.836537,’2012-10-12′,0,101,’Released’,”,6.60,7),(83666,’Moonrise Kingdom’,16000000,’http://www.moonrisekingdom.com’,’Set on an island off the coast of New England in the summer of 1965, Moonrise Kingdom tells the story of two twelve-year-olds who fall in love, make a secret pact, and run away together into the wilderness. As various authorities try to hunt them down, a violent storm is brewing off-shore â�� and the peaceful island community is turned upside down in more ways than anyone can handle.’,41.083914,’2012-05-16′,68263166,94,’Released’,’A tormenting and surprising story of children and adults during the stormy days of the summer of 1965.’,7.60,1662),(83686,’The Words’,6000000,’http://www.thewordsmovie.com/’,’The Words follows young writer Rory Jansen who finally achieves long sought after literary success after publishing the next great American novel. There\’s only one catch – he didn\’t write it. As the past comes back to haunt him and his literary star continues to rise, Jansen is forced to confront the steep price that must be paid for stealing another man\’s work, and for placing ambition and success above life\’s most fundamental three words.’,14.988746,’2012-09-07′,13231461,96,’Released’,’There\’s more than one way to take a life.’,6.40,379),(83770,’On the Road’,25000000,’http://www.ontheroad-themovie.com/?lang=en’,’Dean and Sal are the portrait of the Beat Generation. Their search for \”It\” results in a fast paced, energetic roller coaster ride with highs and lows throughout the U.S.’,14.613152,’2012-05-22′,8784318,137,’Released’,’The best teacher is experience.’,5.50,301),(83860,’October Baby’,0,’http://www.octoberbabymovie.net/’,’OCTOBER BABY is the coming of age story of a beautiful and naive college freshman who discovers that her entire life is a lie and sets out on a road trip with a host of misfits to discover herself and the answers she craves.’,1.862210,’2011-10-30′,5355847,107,’Released’,’Every Life Is Beautiful’,6.80,35),(84174,’Bachelorette’,3000000,’https://www.facebook.com/bachelorettemovie/’,’Three friends are asked to be bridesmaids at a wedding of a woman they used to ridicule back in high school.’,20.952820,’2012-08-06′,11947954,87,’Released’,’Old habits party hard.’,5.30,444),(84175,’Beasts of the Southern Wild’,1800000,’http://www.welcometothebathtub.com’,’Hushpuppy, an intrepid six-year-old girl, lives with her father, Wink in \’the Bathtub\’, a southern Delta community at the edge of the world. Winkâ��s tough love prepares her for the unraveling of the universe â�� for a time when heâ��s no longer there to protect her. When Wink contracts a mysterious illness, nature flies out of whack â�� temperatures rise, and the ice caps melt, unleashing an army of prehistoric creatures called aurochs. With the waters rising, the aurochs coming, and Winkâ��s health fading, Hushpuppy goes in search of her lost mother.’,12.471239,’2012-06-29′,21107746,93,’Released’,’I gotta take care of mine.’,6.80,403),(84178,’Black Rock’,0,”,’Three childhood friends set aside their personal issues and reunite for a girlsâ�� weekend on a remote island off the coast of Maine. One wrong move turns their weekend getaway into a deadly fight for survival.’,7.207051,’2012-01-21′,0,83,’Released’,’Not every island is a paradise.’,4.90,78),(84184,’Celeste & Jesse Forever’,0,’http://www.celesteandjesse.com’,’Celeste and Jesse met in high school and got married young. They laugh at the same jokes and finish each otherâ��s sentences. They are forever linked in their friendsâ�� minds as the perfect couple â�� she, a high-powered businesswoman and budding novelist; he, a free spirit who keeps things from getting boring. Their only problem is that they have decided to get divorced. Can their perfect relationship withstand this minor setback?’,9.436431,’2012-08-03′,3094813,91,’Released’,’A Loved Story’,6.40,163),(84188,’Compliance’,0,’http://www.magpictures.com/compliance/’,’Sandra is the manager at a fast-food restaurant, and Becky is her teenaged counter girl who really needs the job. One stressful day, a police officer telephones and accuses Becky of stealing money from a customerâ��s purse, which Becky vehemently denies. Sandra, overwhelmed by her managerial responsibilities, complies with the officerâ��s orders to detain Becky, beginning a nightmare that tragically blurs the lines between expedience, prudence, legality and reason.’,8.942203,’2012-08-23′,319285,90,’Released’,’Power. Manipulation. Obedience.’,6.30,221),(84197,’Filly Brown’,0,”,’â��Majoâ�� Tonorio, a.k.a. Filly Brown, is a raw, young Los Angeles hip-hop artist who spits from the heart. When a sleazy record producer offers her a crack at rap stardom, Majo faces some daunting choices. With an incarcerated mother, a record contract could be the ticket out for her struggling family. But taking the deal means selling out her talent and the true friends who helped her to the cusp of success.’,0.106949,’2013-04-19′,0,100,’Released’,’This is my life.’,5.90,10),(84200,’For a Good Time, Call…’,850000,”,’College \”frenemies\” Lauren and Katie move in together after losing a relationship and rent control, respectively. Sharing Katie\’s late grandmother\’s apartment in New York City, the girls bicker with each other until one fateful night, when Katie\’s noisy bedroom activities make Lauren barge in and discover a dirty little secret. This revelation brings them closer together, and Lauren (the brains) and Katie (the talent) concoct a wildly successful business venture. As profits swell, the girls reevaluate their hopes and dreams and realize that just because someone pees in your hair in college doesn\’t mean she won\’t be your best friend 10 years later.’,14.238376,’2012-08-31′,1243961,85,’Released’,’Lose your hang-ups. Find your calling.’,5.80,110),(84204,’Grabbers’,0,’http://grabbers.ie/’,’Something sinister has come to the shores of Erin Island, unbeknownst to the quaint population of this sleepy fishing village resting somewhere off Irelandâ��s coast. First, some fishermen go missing. Then there is the rash of whale carcasses suddenly washing up on the beach. When the murders start, itâ��s up to two mismatched cops â�� an irresponsible alcoholic and his new partner, a by-the-book woman from the mainland â�� to protect the townsfolk from the giant, bloodsucking, tentacled aliens that prey upon them. Their only weapon, they discover, is booze. If they want to survive the creaturesâ�� onslaught, everyone will have to get very, very drunk!’,9.451228,’2012-08-10′,0,94,’Released’,’For the locals on Erin Island, it\’s last orders.’,6.00,140),(84318,’Kita svajonių komanda’,0,’http://theotherdreamteam.com/’,’The incredible story of the 1992 Lithuanian basketball team, whose athletes struggled under Soviet rule, became symbols of Lithuania\’s independence movement, and â�� with help from the Grateful Dead â�� triumphed at the Barcelona Olympics.’,0.388401,’2012-09-28′,0,89,’Released’,”,6.90,7),(84329,’Robot & Frank’,2500000,’http://robotandfrank-film.com/’,’A delightful dramatic comedy, a buddy picture, and, for good measure, a heist film. Curmudgeonly old Frank lives by himself. His routine involves daily visits to his local library, where he has a twinkle in his eye for the librarian. His grown children are concerned about their fatherâ��s well-being and buy him a caretaker robot. Initially resistant to the idea, Frank soon appreciates the benefits of robotic support â�� like nutritious meals and a clean house â�� and eventually begins to treat his robot like a true companion. With his robotâ��s assistance, Frankâ��s passion for his old, unlawful profession is reignited, for better or worse.’,23.419061,’2012-08-16′,3325038,85,’Released’,’Friendship doesn\’t have an off switch’,6.80,450),(84332,’Safety Not Guaranteed’,750000,”,’Three magazine employees head out on an assignment to interview a guy who placed a classified ad seeking a companion for time travel.’,25.186002,’2012-06-08′,4007792,85,’Released’,’What would you go back for?’,6.80,556),(84355,’Your Sister\’s Sister’,125000,’http://www.yoursisterssister-themovie.com/’,’Iris invites her friend Jack to stay at her family\’s island getaway after the death of his brother. At their remote cabin, Jack\’s drunken encounter with Hannah, Iris\’ sister, kicks off a revealing stretch of days.’,12.833247,’2011-09-11′,3200000,90,’Released’,’A comedy about doing the right thing with the wrong person.’,6.50,137),(84401,’Sholem Aleichem: Laughing In The Darkness’,500000,’http://sholemaleichemthemovie.com/’,’A riveting portrait of the great writer whose stories became the basis of the Broadway musical Fiddler on the Roof. Sholem Aleichem: Laughing in the Darkness tells the tale of the rebellious genius who created an entirely new literature. Plumbing the depths of a Jewish world locked in crisis and on the cusp of profound change, he captured that world with brilliant humor. Sholem Aleichem was not just a witness to the creation of a new modern Jewish identity, but one of the very men who forged it.’,0.109579,’2012-02-24′,845188,93,’Released’,’Before there was Fiddler, there was Tevye… and the man who created him.’,7.00,2),(84659,’The Naked Ape’,0,”,’The Naked Ape is a coming-of-age film following three teenagers on a road trip across the Pacific Southwest.’,0.077577,’2006-09-16′,0,110,’Rumored’,”,5.00,1),(84892,’The Perks of Being a Wallflower’,13000000,’http://perks-of-being-a-wallflower.com/’,’A coming-of-age story based on the best-selling novel by Stephen Chbosky, which follows 15-year-old freshman Charlie, an endearing and naive outsider who is taken under the wings of two seniors. A moving tale of love, loss, fear and hope – and the unforgettable friends that help us through life.’,43.444135,’2012-09-20′,33400000,102,’Released’,’We are infinite.’,7.70,2968),(85350,’Boyhood’,4000000,”,’The film tells a story of a divorced couple trying to raise their young son. The story follows the boy for twelve years, from first grade at age 6 through 12th grade at age 17-18, and examines his relationship with his parents as he grows.’,43.403520,’2014-06-05′,44349000,164,’Released’,’12 years in the making.’,7.50,1971),(85446,’Step Up Revolution’,33000000,”,’Emily arrives in Miami with aspirations to become a professional dancer. She sparks with Sean, the leader of a dance crew whose neighborhood is threatened by Emily\’s father\’s development plans.’,29.775441,’2012-07-26′,140470746,99,’Released’,’One Step Can Change Your World’,6.70,663),(85860,’The FP’,0,”,’Two rival gangs fight for control of Frazier Park — a deadly arena in competitive dance-fight video game \”Beat-Beat Revolution.\”‘,0.838957,’2011-03-13′,0,82,’Released’,’An Ancient Game Becomes A Deadly Sport.’,4.50,11),(86304,’All Superheroes Must Die’,0,”,’Masked vigilantes Charge (Jason Trost), Cutthroat (Lucas Till), The Wall (Lee Valmassy), and Shadow (Sophie Merkley) are rendered powerless by their archenemy (James Remar) and are forced to complete a series of deadly tasks in order to save the lives of more than 100 innocent civilians. Should they fail or refuse to cooperate, the entire town will be destroyed. ~ Jason Buchanan, Rovi’,3.545991,’2011-10-26′,0,78,’Released’,’May The Best Man Win’,4.20,13),(86331,’Q’,1344000,”,’In a social context deteriorated by a countrywide economic crisis, the life of several people will be turned upside down after they meet Cecile, a character who symbolizes desire.’,20.422246,’2011-09-14′,0,103,’Released’,”,4.10,140),(86549,’August’,0,’http://erapfilms.com/august/’,’August tells the story of two former lovers, Troy and Jonathan, who reunite after a long ago painful breakup. After spending several years in Spain, Troy returns to Los Angeles and decides to phone Jonathan and meet for coffee. A seemingly innocent rendezvous turns into an attempt to revive passions past. Only this time it\’s not that simple as Jonathan has a new beau, Raul, and is trying to make the right decision a second time around.’,1.419431,’2011-06-09′,0,100,’Released’,”,6.20,15),(86812,’Sound of My Voice’,0,”,’A journalist and his girlfriend get pulled in while they investigate a cult whose leader claims to be from the future.’,6.192383,’2011-01-22′,0,85,’Released’,”,6.30,108),(86825,’Stoker’,12000000,’http://www.foxsearchlight.com/stoker/’,’After India\’s father dies, her Uncle Charlie, who she never knew existed, comes to live with her and her unstable mother. She comes to suspect this mysterious, charming man has ulterior motives and becomes increasingly infatuated with him.’,27.322212,’2013-02-28′,12077441,99,’Released’,’Innocence Ends.’,6.50,882),(86829,’Inside Llewyn Davis’,11000000,’http://www.cbsfilms.com/inside-llewyn-davis/’,’In Greenwich Village in the early 1960s, gifted but volatile folk musician Llewyn Davis struggles with money, relationships, and his uncertain future following the suicide of his singing partner.’,36.319205,’2013-10-06′,32935319,105,’Released’,”,7.20,834),(86834,’Noah’,125000000,’http://www.noahmovie.com’,’A man who suffers visions of an apocalyptic deluge takes measures to protect his family from the coming flood.’,46.115758,’2014-03-20′,362637473,139,’Released’,’The end of the world is just the beginning.’,5.60,2350),(86837,’Amour’,8900000,”,’Georges and Anne are in their eighties. They are cultivated, retired music teachers. Their daughter, who is also a musician, lives abroad with her family. One day, Anne has a stroke, and the couple\’s bond of love is severely tested.’,17.151293,’2012-07-01′,19839492,127,’Released’,”,7.50,400),(86838,’Seven Psychopaths’,15000000,’http://www.sevenpsychopaths.com/’,’A struggling screenwriter inadvertently becomes entangled in the Los Angeles criminal underworld after his oddball friends kidnap a gangster\’s beloved Shih Tzu.’,32.306455,’2012-09-07′,19422261,110,’Released’,’They Won\’t Take Any Shih Tzu.’,6.70,1206),(87093,’Big Eyes’,10000000,”,’The story of the awakening of the painter, Margaret Keane, her phenomenal success in the 1950s, and the subsequent legal difficulties she had with her husband, who claimed credit for her works in the 1960s.’,28.570174,’2014-12-24′,28883511,105,’Released’,’She created it. He sold it. And they bought it.’,6.80,1196),(87101,’Terminator Genisys’,155000000,’http://www.terminatormovie.com/’,’The year is 2029. John Connor, leader of the resistance continues the war against the machines. At the Los Angeles offensive, John\’s fears of the unknown future begin to emerge when TECOM spies reveal a new plot by SkyNet that will attack him from both fronts; past and future, and will ultimately change warfare forever.’,202.042635,’2015-06-23′,440603537,126,’Released’,’Reset the future’,5.80,3631),(87421,’Riddick’,38000000,’http://www.riddick-movie.com’,’Betrayed by his own kind and left for dead on a desolate planet, Riddick fights for survival against alien predators and becomes more powerful and dangerous than ever before. Soon bounty hunters from throughout the galaxy descend on Riddick only to find themselves pawns in his greater scheme for revenge. With his enemies right where he wants them, Riddick unleashes a vicious attack of vengeance before returning to his home planet of Furya to save it from destruction.’,46.630062,’2013-09-02′,98337295,119,’Released’,’Survival Is His Revenge’,6.20,2035),(87428,’That\’s My Boy’,70000000,’http://www.sonypictures.com/movies/thatsmyboy/’,’While in his teens, Donny fathered a son, Todd, and raised him as a single parent up until Todd\’s 18th birthday. Now, after not seeing each other for years, Todd\’s world comes crashing down when Donny resurfaces just before Todd\’s wedding.’,21.723897,’2012-06-14′,58058367,116,’Released’,’The story of a childâ�¦ and his son.’,5.50,453),(87499,’The East’,6500000,’http://www.theeastmovie.com/’,’An operative for an elite private intelligence firm finds her priorities irrevocably changed after she is tasked with infiltrating an anarchist group known for executing covert attacks upon major corporations.’,16.574756,’2013-05-31′,2401510,116,’Released’,’Spy on us, we\’ll spy on you.’,6.50,305),(87502,’Flight’,31000000,’http://www.paramount.com/flight’,’Commercial airline pilot Whip Whitaker has a problem with drugs and alcohol, though so far he\’s managed to complete his flights safely. His luck runs out when a disastrous mechanical malfunction sends his plane hurtling toward the ground. Whip pulls off a miraculous crash-landing that results in only six lives lost. Shaken to the core, Whip vows to get sober — but when the crash investigation exposes his addiction, he finds himself in an even worse situation.’,42.213765,’2012-11-02′,161772375,138,’Released’,”,6.50,2415),(87567,’The Big Wedding’,35000000,”,’To the amusement of their adult children and friends, long divorced couple Don and Ellie Griffin are once again forced to play the happy couple for the sake of their adopted son\’s wedding after his ultra conservative biological mother unexpectedly decides to fly halfway across the world to attend. With all of the wedding guests looking on, the Griffins are hilariously forced to confront their past, present and future – and hopefully avoid killing each other in the process.’,18.843320,’2013-04-25′,21819348,90,’Released’,’It\’s never too late to start acting like a family’,5.70,414),(87729,’Jefferson in Paris’,14000000,”,’His wife having recently died, Thomas Jefferson accepts the post of United States ambassador to pre-revolutionary France, though he finds it difficult to adjust to life in a country where the aristocracy subjugates an increasingly restless peasantry. In Paris, he becomes smitten with cultured artist Maria Cosway, but, when his daughter visits from Virginia accompanied by her attractive slave, Sally Hemings, Jefferson\’s attentions are diverted.’,0.900442,’1995-03-31′,2474000,139,’Released’,’A powerful man torn between his love for one woman and his secret desire for another.’,5.20,10),(87818,’Movie 43′,6000000,”,’The film is composed of multiple comedy shorts presented through an overarching segment titled \”The Pitch\”, in which Charlie Wessler, a mad screenwriter, is attempting to pitch a script to film executive Griffin Schraeder. After revealing several of the stories in his script, Wessler becomes agitated when Schraeder dismisses his outrageous ideas, and he pulls a gun on him and forces him to listen to multiple other stories before making Schraeder consult his manager, Bob Mone, to purchase the film.’,35.350303,’2013-01-01′,32438988,90,’Released’,’The biggest cast ever assembled for the most outrageous comedy ever made.’,4.40,797),(87825,’Trouble with the Curve’,0,’http://troublewiththecurve.warnerbros.com/’,’Slowed by age and failing eyesight, crack baseball scout Gus Lobel takes his grown daughter along as he checks out the final prospect of his career. Along the way, the two renew their bond, and she catches the eye of a young player-turned-scout.’,18.587114,’2012-09-21′,0,111,’Released’,’Whatever Life Throws at You’,6.60,366),(87826,’Here Comes the Boom’,0,”,’A high school biology teacher moonlights as a mixed-martial arts fighter in an effort to raise money to save the school\’s music program.’,26.799913,’2012-10-11′,73100172,105,’Released’,’No one will fight for his students like Mr. Voss.’,6.00,593),(87827,’Life of Pi’,120000000,’http://www.lifeofpimovie.com/’,’The story of an Indian boy named Pi, a zookeeper\’s son who finds himself in the company of a hyena, zebra, orangutan, and a Bengal tiger after a shipwreck sets them adrift in the Pacific Ocean.’,51.328145,’2012-11-20′,609016565,127,’Released’,’Believe The Unbelievable’,7.20,5797),(87943,’Sisters in Law’,0,”,’Set in Kumba in South West Cameroon Sisters in Law follows Adultery, Rape and Abuse cases led by a Female Judge.’,0.025211,’2005-09-03′,0,104,’Released’,”,7.30,2),(88005,’Seeking a Friend for the End of the World’,10000000,”,’As an asteroid nears Earth, a man finds himself alone after his wife leaves in a panic. He decides to take a road trip to reunite with his high school sweetheart. Accompanying him is a neighbor who inadvertently puts a wrench in his plan.’,30.863082,’2012-06-22′,9636289,101,’Released’,’Nice knowing you.’,6.30,700),(88036,’Sparkle’,14000000,”,’Musical prodigy, Sparkle (Jordin Sparks) struggles to become a star while overcoming issues that are tearing her family apart. From an affluent Detroit area and daughter to a single mother (Whitney Houston), she tries to balance a new romance with music manager Stix (Derek Luke) while dealing with the unexpected challenges her new life will bring as she and her two sisters (Carmen Ejogo and Tika Sumpter) strive to become a dynamic singing group during the Motown-era.’,2.698185,’2012-08-17′,24637469,116,’Released’,’Celebrate the legend.’,5.80,36),(88042,’Parental Guidance’,25000000,”,’Artie and Diane agree to look after their three grandkids when their type-A helicopter parents need to leave town for work. Problems arise when the kids\’ 21st-century behavior collides with Artie and Diane\’s old-school methods.’,14.604911,’2012-12-25′,119772232,104,’Released’,’Here come the grandparents. There go the rules.’,5.70,210),(88641,’There Goes My Baby’,10500000,”,’A group of high school seniors meets in the summer of 1965 and all struggle with the choices they have to make.’,0.037073,’1994-09-02′,123509,99,’Released’,”,8.50,2),(88751,’Journey to the Center of the Earth’,45000000,”,’On a quest to find out what happened to his missing brother, a scientist, his nephew and their mountain guide discover a fantastic and dangerous lost world in the center of the earth.’,53.090422,’2008-07-10′,101702060,93,’Released’,’Same Planet. Different World.’,5.80,1309),(88794,’J. Edgar’,35000000,’http://jedgarmovie.warnerbros.com/dvd/’,’As the face of law enforcement in America for almost 50 years, J. Edgar Hoover was feared and admired, reviled and revered. But behind closed doors, he held secrets that would have destroyed his image, his career and his life.’,28.069419,’2011-11-09′,84606030,137,’Released’,’The most powerful man in the world.’,6.00,741),(89325,’Darling Companion’,0,”,’The story of a woman who loves her dog more than her husband. And then her husband loses the dog.’,2.303865,’2012-04-20′,0,103,’Released’,”,5.30,22),(89492,’This Is 40′,35000000,’http://www.thisis40movie.com/’,’Pete and Debbie are both about to turn 40, their kids hate each other, both of their businesses are failing, they\’re on the verge of losing their house, and their relationship is threatening to fall apart.’,38.429648,’2012-12-20′,88058786,134,’Released’,’The sort-of sequel to \’Knocked Up\”,5.60,896),(89540,’La otra conquista’,0,”,’The film is a drama about the aftermath of the 1520s Spanish Conquest of Mexico told from the perspective of the indigenous Aztec people. It explores the social, religious, and psychological changes brought about by a historical process of colonization that both defined the American continent and is also highly reminiscent of todayâ��s neocolonialism.’,0.015597,’1999-04-01′,0,105,’Released’,’The spirit of a people can never be conquered.’,5.40,4),(89708,’Samsara’,4000000,’http://barakasamsara.com/’,’Samsara is a word that describes the ever turning wheel of life. It is a concept both intimate and vast – the perfect subject for filmmakers Ron Fricke and Mark Magidson, whose previous collaborations include Chronos and Baraka, and who, in the last 20 years, have travelled to over 58 countries together in the pursuit of unique imagery. Samsara takes the form of a nonverbal, guided meditation that will transform viewers in countries around the world as they are swept along a journey of the soul. Through powerful images pristinely photographed in 70mm and a dynamic music score, the film illuminates the links between humanity and the rest of the nature, showing how our life cycle mirrors the rhythm of the planet.’,12.781973,’2011-09-16′,0,102,’Released’,”,8.00,167),(89750,’Pink Ribbons, Inc.’,900000,’http://www.nfb.ca/film/pink_ribbons_inc_clip/’,’Breast cancer has become the poster child of corporate cause-related marketing campaigns. Countless women and men walk, bike, climb and shop for the cure. Each year, millions of dollars are raised in the name of breast cancer, but where does this money go and what does it actually achieve? Pink Ribbons, Inc. is a feature documentary that shows how the devastating reality of breast cancer, which marketing experts have labeled a \”dream cause,\” becomes obfuscated by a shiny, pink story of success.’,0.097913,’2011-09-11′,25000,97,’Released’,’Capitalizing on hope.’,6.80,6),(89857,’High Road’,0,’http://highroadmovie.com/’,’Directed by Matt Walsh, a co-founding member of world-renowned comedy troupe Upright Citizens Brigade, High Road showcases a totally improvised script about Glenn â��Fitzâ�� Fitzgerald (James Pumphrey), a young man whose loyalties are split among his band, his girlfriend Monica(Abby Elliottt) and selling drugs. After his band breaks up, Fitz finds himself dealing drugs out of his garage and bonding with 16-year-old neighborhood kid Jimmy (Dylan Oâ��Brien). As his former band mates (Zach Woods, Matt L. Jones, Lizzy Caplan) begin finding success and one of his drug deals goes awry, Fitz hits the road with Jimmy. Amid car chases, guns, broken bones, sassy cabbies and a suspicious doctor (Horatio Sanz), Fitz has to navigate their way to safe harbor–and he doesnâ��t even know about the surprise Monica has in store for him back home!’,1.292948,’2012-03-06′,0,87,’Released’,’The road less traveled is filled with pot holes.’,5.80,22),(89861,’Stiff Upper Lips’,0,”,’Stiff Upper Lips is a broad parody of British period films, especially the lavish Merchant-Ivory productions of the \’eighties and early \’nineties. Although it specifically targets A Room with a View, Chariots of Fire, Maurice, A Passage to India, and many other films, in a more general way Stiff Upper Lips satirises popular perceptions of certain Edwardian traits: propriety, sexual repression, xenophobia, and class snobbery.’,0.356495,’1998-06-12′,0,99,’Released’,”,10.00,1),(90369,’Now Is Good’,0,”,’A girl dying of leukemia compiles a list of things she\’d like to do before passing away. Topping the list is her desire to lose her virginity.’,14.142073,’2012-05-25′,0,103,’Released’,’Live every moment, love every minute’,7.30,371),(90414,’I Love You, Don\’t Touch Me!’,0,”,’The story of a 25 year old virgin girl, looking for the right boyfriend, not realizing that \”the one\” has been next to her for many years.’,0.020839,’1997-01-21′,0,86,’Released’,’Just Your Typical Boy-Loves-Girl Who Doesn\’t Love Boy Till He Loves Other Girl Story’,6.00,1),(91070,’L!fe Happens’,930000,’http://www.lifehappensfilm.com/’,’A comedy centered on two best friends, Kim and Deena, who fight to maintain normalcy in their lives after Kim gets pregnant and has a baby.’,5.974156,’2011-06-18′,30905,100,’Released’,’A comedy that\’s a real mother.’,5.30,66),(91076,’Illuminata’,0,”,’It\’s the start of the 20th century, and Tuccio, resident playwright of a theatre repertory company offers the owners of the company his new play, \”Illuminata\”. They reject it, saying it\’s not finished, and intrigue starts that involves influential critic Bevalaqua, theatre star Celimene, young lead actors and other theatre residents’,0.111313,’1998-05-21′,0,119,’Released’,”,6.30,7),(91122,’16 to Life’,0,”,’Romantic comedy. A small town teenager\’s angst about sexual inexperience drives a comic quest for love and understanding on a birthday to end all birthdays.’,0.108468,’2009-09-19′,0,118,’Released’,”,4.40,5),(91314,’Transformers: Age of Extinction’,210000000,’http://www.transformersmovie.com’,’As humanity picks up the pieces, following the conclusion of \”Transformers: Dark of the Moon,\” Autobots and Decepticons have all but vanished from the face of the planet. However, a group of powerful, ingenious businessman and scientists attempt to learn from past Transformer incursions and push the boundaries of technology beyond what they can control – all while an ancient, powerful Transformer menace sets Earth in his cross-hairs.’,116.840296,’2014-06-25′,1091405097,165,’Released’,’This is not war. It\’s extinction.’,5.80,3095),(91586,’Insidious: Chapter 2′,5000000,’http://www.insidiousch2.com/’,’The haunted Lambert family seeks to uncover the mysterious childhood secret that has left them dangerously connected to the spirit world.’,48.375848,’2013-09-12′,0,106,’Released’,’It will take what you love most.’,6.50,1211),(91721,’Nothing But a Man’,0,”,’A proud black man and his school-teacher wife face discriminatory challenges in 1960s America.’,0.008453,’1964-01-01′,0,95,’Released’,”,7.00,2),(92182,’Silent House’,2000000,”,’Sarah returns with her father and uncle to fix up the family\’s longtime summerhouse after it was violated by squatters in the off-season. As they work in the dark, Sarah begins to hear sounds from within the walls of the boarded-up building. Although she barely remembers the place, Sarah senses the past may still haunt the home.’,11.666320,’2011-01-21′,13101672,85,’Released’,’Experience 88 minutes of real fear, captured In real time’,5.20,125),(92591,’Bernie’,5000000,”,’In this true story in the tiny, rural town of Carthage, TX, assistant funeral director Bernie Tiede was one of the town\’s most beloved residents. Everyone loved and appreciated Bernie, and it came as no surprise when he befriended Marjorie Nugent, an affluent widow who was as well known for her sour attitude as her fortune. Until that day news came that Marjorie Nugent had been dead for some time, and Bernie Tiede was being charged with the murder.’,12.685140,’2012-04-27′,9206470,100,’Released’,’A story so unbelievable it must be true.’,6.50,320),(92635,’Snow White: A Deadly Summer’,1000000,”,’A troubled teenage girl finds herself in a web of lies and deceit when her stepmother attempts to murder her by sending her to a discipline camp.’,0.653495,’2012-03-16′,0,85,’Released’,’This is no fairy tale’,4.80,11),(93456,’Despicable Me 2′,76000000,’http://www.despicableme.com/’,’Gru is recruited by the Anti-Villain League to help deal with a powerful new super criminal.’,136.886704,’2013-06-25′,970761885,98,’Released’,’Back 2 Work’,7.00,4637),(93856,’Chernobyl Diaries’,0,’http://www.chernobyldiaries.com/’,’A group of six tourists looking to go off the beaten path, hire an \’extreme tour guide\’. Ignoring warnings, he takes them into the city of Pripyat, the former home to the workers of the Chernobyl nuclear reactor, but a deserted town since the disaster more than 25 years earlier. After a brief exploration of the abandoned city, the group members find themselves stranded, only to discover that they are not alone.’,20.649145,’2012-05-24′,18112929,88,’Released’,’Experience the fallout’,4.90,483),(94072,’Straight Out of Brooklyn’,0,”,’A Special Jury Award winner at the Sundance Film Festival, this drama stars a then-19-year-old Matty Rich (who also wrote and directed it). Rich plays Larry, a troubled teen living in the rough Red Hook section of Brooklyn who decides he wants out and turns to crime to fund his escape. But his plan involves scamming the neighborhood\’s biggest drug kingpin, a heist that\’s dangerous at best.’,0.161517,’1991-06-13′,0,0,’Released’,”,4.30,4),(94329,’Serbuan maut’,1100000,’http://www.sonyclassics.com/theraid/’,’Deep in the heart of Jakarta\’s slums lies an impenetrable safe house for the world\’s most dangerous killers and gangsters. Until now, the run-down apartment block has been considered untouchable to even the bravest of police. Cloaked under the cover of pre-dawn darkness and silence, an elite swat team is tasked with raiding the safe house in order to take down the notorious drug lord that runs it. But when a chance encounter with a spotter blows their cover and news of their assault reaches the drug lord, the building\’s lights are cut and all the exits blocked. Stranded on the sixth floor with no way out, the unit must fight their way through the city\’s worst to survive their mission. Starring Indonesian martial arts sensation Iko Uwais.’,40.285095,’2011-09-08′,4105187,101,’Released’,’1 Ruthless Crime Lord, 20 Elite Cops, 30 Floors of Hell’,7.30,1055),(94348,’Alex Cross’,45000000,”,’After Washington DC detective Alex Cross is told that a family member has been murdered, he vows to track down the killer. He soon discovers that she was not his first victim and that things are not what they seem.’,14.513243,’2012-10-18′,30353232,101,’Released’,’Don\’t Ever Cross Alex Cross’,5.10,300),(94352,’Cirque du Soleil: Worlds Away’,0,”,’An original story featuring performances by Cirque du Soleil. A young woman is entranced by an Aerialist. When they fall into the dreamlike world of Cirque du Soleil and are separated, they travel through the different tent worlds trying to find each other.’,5.987486,’2012-11-09′,34153101,91,’Released’,’Experience a Journey Like Never Before’,6.10,58),(95755,’Small Apartments’,2000000,”,’When a clumsy deadbeat accidentally kills his landlord, he must do everything in his power to hide the body, only to find that the distractions of lust, the death of his beloved brother, and a crew of misfit characters force him on a journey where a fortune awaits him.’,5.100741,’2012-03-10′,0,96,’Released’,”,5.70,50),(96238,’Never Again’,0,”,’Two people who have pledged never to fall in love again then discover each other in a gay bar.’,0.039077,’2002-07-12′,0,98,’Released’,’A mature love story for immature people.’,4.00,3),(96399,’For Greater Glory – The True Story of Cristiada’,12000000,’http://www.cristiadafilm.com/’,’A chronicle of the Cristeros War (1926-1929), which was touched off by a rebellion against the Mexican government\’s attempt to secularize the country.’,5.759545,’2012-06-01′,9622846,145,’Released’,’The True Story of Cristiada’,6.40,35),(96534,’My Last Day Without You’,1000000,”,’On a one-day business trip to New York, a young German business executive falls in love with a singer-songwriter who exposes him to her Brooklyn world and emotions he\’s never experienced before.’,0.153625,’2011-06-11′,0,90,’Released’,”,5.70,3),(96721,’Rush’,38000000,”,’A biographical drama centered on the rivalry between Formula 1 drivers James Hunt and Niki Lauda during the 1976 Formula One motor-racing season.’,33.003828,’2013-09-02′,90247624,123,’Released’,’Everyone\’s driven by something.’,7.70,2277),(96724,’Anna Karenina’,0,”,’Trapped in a loveless marriage, aristocrat Anna Karenina enters into a life-changing affair with the affluent Count Vronsky.’,26.387040,’2012-09-06′,68929150,130,’Released’,’An epic story of love.’,6.50,639),(97020,’RoboCop’,120000000,’http://www.robocop.com’,’In RoboCop, the year is 2028 and multinational conglomerate OmniCorp is at the center of robot technology. Overseas, their drones have been used by the military for years, but have been forbidden for law enforcement in America. Now OmniCorp wants to bring their controversial technology to the home front, and they see a golden opportunity to do it. When Alex Murphy â�� a loving husband, father and good cop doing his best to stem the tide of crime and corruption in Detroit â�� is critically injured, OmniCorp sees their chance to build a part-man, part-robot police officer. OmniCorp envisions a RoboCop in every city and even more billions for their shareholders, but they never counted on one thing: there is still a man inside the machine.’,66.757869,’2014-01-30′,242688965,102,’Released’,’We\’ve got the future under control.’,5.70,2342),(97367,’The Place Beyond the Pines’,15000000,’http://www.focusfeatures.com/the_place_beyond_the_pines’,’A motorcycle stunt rider considers committing a crime in order to provide for his wife and child, an act that puts him on a collision course with a cop-turned-politician.’,35.395129,’2013-03-20′,35485608,140,’Released’,’If you ride like lightning you\’re gonna crash like thunder’,6.80,1653),(97370,’Under the Skin’,13300000,”,’Jonathan Glazer\’s atmospheric, visually arresting abstraction stars Scarlett Johansson as a seductive alien who prowls the streets of Glasgow in search of prey: unsuspecting men who fall under her spell, only to be consumed by a strange liquid pool.’,29.782161,’2014-03-14′,5380251,108,’Released’,’A mysterious seductress preys upon the population of Scotland’,6.00,1102),(97430,’The Man with the Iron Fists’,15000000,”,’In feudal China, a blacksmith who makes weapons for a small village is put in the position where he must defend himself and his fellow villagers.’,17.672021,’2012-11-02′,15608545,96,’Released’,’You can\’t spell Kung Fu without F and U!’,5.20,358),(97614,’Deadfall’,12000000,’http://www.magpictures.com/deadfall/’,’A thriller that follows two siblings who decide to fend for themselves in the wake of a botched casino heist, and their unlikely reunion during another family\’s Thanksgiving celebration.’,10.190410,’2012-11-08′,66351,95,’Released’,’Twisty thriller… a wild ride.’,5.60,224),(97630,’Zero Dark Thirty’,40000000,’http://www.zerodarkthirty-movie.com/site/’,’A chronicle of the decade-long hunt for al-Qaeda terrorist leader Osama bin Laden after the September 2001 attacks, and his death at the hands of the Navy S.E.A.L. Team 6 in May, 2011.’,38.306954,’2012-12-19′,132820716,157,’Released’,’The Greatest Manhunt in History’,6.70,1702),(98357,’Broken City’,56000000,’http://www.brokencitymovie.com/’,’In a broken city rife with injustice, ex-cop Billy Taggart seeks redemption and revenge after being double-crossed and then framed by its most powerful figure, the mayor. Billy\’s relentless pursuit of justice, matched only by his streetwise toughness, makes him an unstoppable force – and the mayor\’s worst nightmare.’,29.490057,’2013-01-18′,19701164,109,’Released’,’Proof Can Be a Powerful Weapon.’,5.70,593),(98369,’Blue Like Jazz’,1250000,’http://www.bluelikejazzthemovie.com/’,’A young man must find his own way as his Southern Baptist roots don\’t seem to be acceptable at his new liberal arts college.’,1.611600,’2012-04-13′,0,106,’Released’,’Everybody belongs somewhere’,5.80,25),(98549,’The Legend of Hell\’s Gate: An American Conspiracy’,0,”,’In 1870s Texas, a ruthless bounty hunter and an Irish desperado flee the law with a young criminal claiming to possess a treasure more valuable than gold. Crossing paths with some of the Westâ��s most notorious figures, the three outlaws fight for their lives in the pursuit of fame and fortune. Fueled by an ensemble cast and inspired by actual events, THE LEGEND OF HELLâ��S GATE blends legend and history into a Western spectacle that recounts a treacherous existence in post Civil War Texas.’,1.002585,’2011-03-03′,0,108,’Released’,’Justice was delieverd by the fastest gun.’,3.90,8),(98557,’Dysfunctional Friends’,1800000,”,’A group of college friends are reunited after the death of their very successful friend. The will dictates that each person will receive a large sum of money if they can all successfully stay in his mansion for a week. If one person leaves, everyone forfeits the money.’,0.215440,’2012-02-03′,0,101,’Released’,’There\’s a thin line between money and friends.’,5.00,4),(98566,’Teenage Mutant Ninja Turtles’,125000000,’http://www.teenagemutantninjaturtlesmovie.com’,’The city needs heroes. Darkness has settled over New York City as Shredder and his evil Foot Clan have an iron grip on everything from the police to the politicians. The future is grim until four unlikely outcast brothers rise from the sewers and discover their destiny as Teenage Mutant Ninja Turtles. The Turtles must work with fearless reporter April and her wise-cracking cameraman Vern Fenwick to save the city and unravel Shredder\’s diabolical plan.’,143.350376,’2014-08-07′,477200000,101,’Released’,’Mysterious. Dangerous. Reptilious. You\’ve never seen heroes like this.’,5.80,2636),(98568,’Enter Nowhere’,0,”,’Three strangers arrive one by one to a mysterious cabin in the middle of nowhere after enduring separate life-altering predicaments. Searching for a way out of the woods, frustrated, hungry and battling to stay warm they discover their mysterious connection and realize what they have to do in order to get out of the woods alive.’,3.637857,’2011-10-22′,0,90,’Released’,’Welcome to our nightmare!’,6.50,49),(99826,’The Jimmy Show’,0,”,’A failed New Jersey inventor embarks on a career as a standup comic, turns to drink, and labors to keep his family together.’,0.098351,’2002-01-16′,0,96,’Released’,”,8.00,1),(99861,’Avengers: Age of Ultron’,280000000,’http://marvel.com/movies/movie/193/avengers_age_of_ultron’,’When Tony Stark tries to jumpstart a dormant peacekeeping program, things go awry and Earthâ��s Mightiest Heroes are put to the ultimate test as the fate of the planet hangs in the balance. As the villainous Ultron emerges, it is up to The Avengers to stop him from enacting his terrible plans, and soon uneasy alliances and unexpected action pave the way for an epic and unique global adventure.’,134.279229,’2015-04-22′,1405403694,141,’Released’,’A New Age Has Come.’,7.30,6767),(100042,’Dumb and Dumber To’,40000000,”,’20 years after the dimwits set out on their first adventure, they head out in search of one of their long lost children in the hope of gaining a new kidney.’,67.767785,’2014-11-12′,169837010,110,’Released’,’The Second Parts Are More Fools’,5.40,1127),(100241,’I, Frankenstein’,65000000,’http://www.ifrankensteinfilm.com’,’200 years after his shocking creation, Dr. Frankenstein\’s creature, Adam, still walks the earth. But when he finds himself in the middle of a war over the fate of humanity, Adam discovers he holds the key that could destroy humankind.’,31.324734,’2014-01-22′,71154592,92,’Released’,’In the battle between good and evil, an immortal holds the key’,5.00,687),(100275,’Eddie: The Sleepwalking Cannibal’,0,”,’A once-famous painter rediscovers inspiration when he befriends a sleepwalking cannibal.’,0.143784,’2012-04-22′,1632,79,’Released’,’Part muse. Part sleepwalking cannibal.’,6.10,30),(100402,’Captain America: The Winter Soldier’,170000000,’http://www.captainamericathewintersoldiermovie.com’,’After the cataclysmic events in New York with The Avengers, Steve Rogers, aka Captain America is living quietly in Washington, D.C. and trying to adjust to the modern world. But when a S.H.I.E.L.D. colleague comes under attack, Steve becomes embroiled in a web of intrigue that threatens to put the world at risk. Joining forces with the Black Widow, Captain America struggles to expose the ever-widening conspiracy while fighting off professional assassins sent to silence him at every turn. When the full scope of the villainous plot is revealed, Captain America and the Black Widow enlist the help of a new ally, the Falcon. However, they soon find themselves up against an unexpected and formidable enemyâ��the Winter Soldier.’,72.225265,’2014-03-20′,714766572,136,’Released’,’In heroes we trust.’,7.60,5764),(100975,’Just Looking’,3000000,”,’It\’s 1955. Lenny is a 14-year old boy who is totally fascinated by sex. He is too scared to \”do it,\” so he dedicates his summer to seeing two other people do it. Easier said than done. Caught in the act of spying, his mother and stepfather ship him off to spend the summer with his aunt and uncle in \”the country\” — Queens. His plan looks like a bust and his summer seems destined for boredom, until he meets a whole new group of friends — young teens who have a \”sex club.\”‘,0.431332,’1999-10-21′,0,97,’Released’,’A voyeuristic coming-of-age comedy.’,5.80,5),(101173,’Coriolanus’,7700000,”,’Caius Martius, aka Coriolanus, is an arrogant and fearsome general who has built a career on protecting Rome from its enemies. Pushed by his ambitious mother to seek the position of consul, Coriolanus is at odds with the masses and unpopular with certain colleagues. When a riot results in his expulsion from Rome, Coriolanus seeks out his sworn enemy, Tullus Aufidius. Together, the pair vow to destroy the great city.’,7.554799,’2011-02-14′,1072602,123,’Released’,’Nature teaches beasts to know their friends.’,5.90,131),(101179,’Truth or Dare’,0,’http://www.truthordarefilm.com/’,’A group of college friends celebrate the end of term with a party to end all parties. During a drink and drug-fuelled evening, an innocent game of â��Truth or Dareâ�� has a very sore loser, sparking a terrifying sequence of events and a whole new twist on the game of truth or dare â�� where the truth can kill you.’,6.679954,’2012-08-05′,0,95,’Released’,’Truth or Die’,5.70,117),(101267,’Katy Perry: Part of Me’,12000000,’http://www.katyperry.com/movie/’,’Giving fans unprecedented access to the real life of the music sensation, Katy Perry: Part of Me exposes the hard work, dedication and phenomenal talent of a girl who remained true to herself and her vision in order to achieve her dreams. Featuring rare behind-the-scenes interviews, personal moments between Katy and her friends, and all-access footage of rehearsals, choreography, Katyâ��s signature style and more, Katy Perry: Part of Me reveals the singerâ��s unwavering belief that if you can be yourself, then you can be anything.’,8.410688,’2012-06-28′,32726956,93,’Released’,’Be yourself and you can be anything’,6.50,85),(101299,’The Hunger Games: Catching Fire’,130000000,’http://www.thehungergames.movie/’,’Katniss Everdeen has returned home safe after winning the 74th Annual Hunger Games along with fellow tribute Peeta Mellark. Winning means that they must turn around and leave their family and close friends, embarking on a \”Victor\’s Tour\” of the districts. Along the way Katniss senses that a rebellion is simmering, but the Capitol is still very much in control as President Snow prepares the 75th Annual Hunger Games (The Quarter Quell) – a competition that could change Panem forever.’,76.310119,’2013-11-15′,847423452,146,’Released’,’Every revolution begins with a spark.’,7.40,6495),(102362,’Dead Man Down’,0,”,’In New York City, a crime lord\’s right-hand man is seduced by a woman seeking retribution.’,29.647844,’2013-03-08′,18074539,118,’Released’,’Blood demands blood’,5.90,638),(102382,’The Amazing Spider-Man 2′,200000000,’http://www.theamazingspiderman.com’,’For Peter Parker, life is busy. Between taking out the bad guys as Spider-Man and spending time with the person he loves, Gwen Stacy, high school graduation cannot come quickly enough. Peter has not forgotten about the promise he made to Gwenâ��s father to protect her by staying away, but that is a promise he cannot keep. Things will change for Peter when a new villain, Electro, emerges, an old friend, Harry Osborn, returns, and Peter uncovers new clues about his past.’,89.270217,’2014-04-16′,705717432,142,’Released’,’No more secrets.’,6.50,4179),(102651,’Maleficent’,180000000,’http://movies.disney.com/maleficent’,’The untold story of Disney\’s most iconic villain from the 1959 classic \’Sleeping Beauty\’. A beautiful, pure-hearted young woman, Maleficent has an idyllic life growing up in a peaceable forest kingdom, until one day when an invading army threatens the harmony of the land. Maleficent rises to be the land\’s fiercest protector, but she ultimately suffers a ruthless betrayal â�� an act that begins to turn her heart into stone. Bent on revenge, Maleficent faces an epic battle with the invading King\’s successor and, as a result, places a curse upon his newborn infant Aurora. As the child grows, Maleficent realizes that Aurora holds the key to peace in the kingdom – and to Maleficent\’s true happiness as well.’,110.620647,’2014-05-28′,758539785,97,’Released’,’Don\’t believe the fairy tale.’,7.00,4496),(102840,’Sex With Strangers’,0,”,’For some married couples, sex is an obsession that overwhelms their belief in strict monogamy. The ability to act out their sexual fantasies is more important than upholding any convention of love or marriage. Sex with Strangers paints an authentically intimate portrait of three such couples, from the euphoria of fantasies fulfilled to the desperation of splintering relationships, showing how their lives are profoundly affected by the lifestyle they lead. James and Theresa, a couple in their thirties, use their motor home as a pleasure palace travelling from club to club seducing couples wherever they go. Calvin and Sarah are thinking about getting married when they meet Julie, who doesn\’t swing, and isn\’t bisexual – until she falls for Calvin. Psychodrama almost displaces sex for Shannon and Gerard, who are passionate about swinging, even as they question whether the lifestyle is really for them…’,0.014406,’2002-02-22′,0,0,’Released’,”,5.00,1),(102899,’Ant-Man’,130000000,’http://marvel.com/movies/movie/180/ant-man’,’Armed with the astonishing ability to shrink in scale but increase in strength, master thief Scott Lang must embrace his inner-hero and help his mentor, Doctor Hank Pym, protect the secret behind his spectacular Ant-Man suit from a new generation of towering threats. Against seemingly insurmountable obstacles, Pym and Lang must plan and pull off a heist that will save the world.’,120.093610,’2015-07-14′,519311965,117,’Released’,’Heroes don\’t get any bigger.’,7.00,5880),(103328,’Holy Motors’,0,”,’We follow 24 hours in the life of a being moving from life to life like a cold and solitary assassin moving from hit to hit. In each of these interwoven lives, the being possesses an entirely distinct identity: sometimes a man, sometimes a woman, sometimes youthful, sometimes old. By turns murderer, beggar, company chairman, monstrous creature, worker, family man.’,9.140936,’2012-07-02′,641100,115,’Released’,’From dawn to dusk, a few hours in the shadowy life of a mystic man named Monsieur Oscar.’,6.90,228),(103370,’Madea\’s Witness Protection’,0,’http://madeaswitnessprotectionmovie.com/’,’A Wall Street investment banker who has been set up as the linchpin of his company\’s mob-backed Ponzi scheme is relocated with his family to Aunt Madea\’s southern home.’,7.050951,’2012-06-29′,0,114,’Released’,’Believe it or not, they know too much.’,5.90,52),(103620,’Maniac’,6000000,”,’As he helps a young artist with her upcoming exhibition, the owner of a mannequin shop\’s deadly, suppressed desires come to the surface.’,19.331884,’2012-12-26′,31081,89,’Released’,’I Warned You Not to Go Out Tonight.’,6.00,316),(103663,’Jagten’,3800000,”,’A teacher lives a lonely life, all the while struggling over his sonâ��s custody. His life slowly gets better as he finds love and receives good news from his son, but his new luck is about to be brutally shattered by an innocent little lie.’,21.826888,’2012-08-28′,16800000,115,’Released’,’The lie is spreading.’,7.90,927),(103731,’Mud’,10000000,”,’Two teenage boys encounter a fugitive and make a pact to help him escape from an island in the Mississippi.’,17.663353,’2013-05-01′,21587700,130,’Released’,”,7.00,1068),(103903,’Outside Bet’,7500000,”,’A group of print workers in 1980s London club together to buy a race horse.’,0.086731,’2012-04-27′,0,101,’Released’,”,5.80,2),(104755,’The Lords of Salem’,1500000,’http://robzombie.com/movies/the-lords-of-salem/’,’The City of Salem, Massachusetts is visited by a coven of ancient witches.’,14.504326,’2012-09-10′,1165882,101,’Released’,’We\’ve been waiting… we\’ve always been waiting’,5.10,242),(104896,’A Dog Of Flanders’,0,”,’Poor but happy, young Nello and his grandfather live alone, delivering milk as a livelihood, in the outskirts of Antwerp, a city in Flanders (the Flemish or Dutch-speaking part of modern-day Belgium). They discover a beaten dog (a Bouvier, a large sturdy dog native to Flanders) and adopt it and nurse it back to health, naming it Patrasche, the middle name of Nello\’s mother Mary, who died when Nello was very young. Nello\’s mother was a talented artist, and like his mother, he delights in drawing, and his friend Aloise is his model and greatest fan and supporter.’,0.838938,’1999-08-27′,0,96,’Released’,”,6.40,6),(105864,’The Good Dinosaur’,175000000,’http://movies.disney.com/the-good-dinosaur’,’An epic journey into the world of dinosaurs where an Apatosaurus named Arlo makes an unlikely human friend.’,51.692953,’2015-11-14′,331926147,93,’Released’,’Little Arms With Big Attitude’,6.60,1736),(106646,’The Wolf of Wall Street’,100000000,’http://www.thewolfofwallstreet.com/’,’A New York stockbroker refuses to cooperate in a large securities fraud case involving corruption on Wall Street, corporate banking world and mob infiltration. Based on Jordan Belfort\’s autobiography.’,95.007934,’2013-12-25′,392000694,180,’Released’,’EARN. SPEND. PARTY.’,7.90,6571),(106747,’Machete Kills’,12000000,”,’Ex-Federale agent Machete is recruited by the President of the United States for a mission which would be impossible for any mortal man â�� he must take down a madman revolutionary and an eccentric billionaire arms dealer who has hatched a plan to spread war and anarchy across the planet.’,29.072964,’2013-09-12′,15008161,107,’Released’,’Trained to kill. Left for dead. Back for more.’,5.30,631),(106845,’Re-Kill’,9500000,”,’Five years after a zombie outbreak, the men and women of R-Division hunt down and destroy the undead. When they see signs of a second outbreak, they fear humanity may not survive.’,5.346205,’2015-10-16′,0,87,’Released’,’We are the endangered species.’,4.90,34),(107315,’Below Zero’,0,”,’When Jack (Edward Furlong) is in danger of missing a deadline, his manager orders him to take whatever measures are needed to complete his screenplay. Jack locks himself in a slaughterhouse freezer but discovers that his inner demons are keeping him company. Despite the cold, Jack\’s imagination is red-hot as he concocts the story of Frank (Furlong), a tow truck driver who\’s locked in a fridge with the dying victim of a serial killer.’,1.365140,’2011-10-22′,0,0,’Released’,’There\’s nothing scarier than a blank page.’,4.40,12),(107811,’21 & Over’,13000000,”,’Brilliant student Jeff Chang has the most important interview of his life tomorrow. But today is still his birthday, what starts off as a casual celebration with friends evolves into a night of debauchery that risks to derail his life plan.’,35.522027,’2013-03-01′,48065672,93,’Released’,’Finally.’,5.70,737),(107846,’Escape Plan’,50000000,’http://escapeplanmovie.com/’,’Ray Breslin is the world\’s foremost authority on structural security. After analyzing every high security prison and learning a vast array of survival skills so he can design escape-proof prisons, his skills are put to the test. He\’s framed and incarcerated in a master prison he designed himself. He needs to escape and find the person who put him behind bars.’,44.478043,’2013-10-09′,122915111,115,’Released’,’No one breaks out alone.’,6.70,1659),(107985,’The World\’s End’,20000000,”,’Five friends who reunite in an attempt to top their epic pub crawl from 20 years earlier unwittingly become humankind\’s only hope for survival.’,55.964605,’2013-07-18′,46089287,109,’Released’,’Good food. Fine ales. Total Annihilation.’,6.70,1778),(108346,’Dreaming of Joseph Lees’,2000000,”,’Set in rural England in the 1950s Eva (Samantha Morton) fantasises about her handsome, worldly cousin Joseph Lees (Rupert Graves), with whom she fell in love as a girl. However, stuck in a closed community she becomes the object of someone else\’s fantasy, Harry (Lee Ross). When Harry learns that Eva is planning to leave the village in order to live with and look after the injured Lees, he devises a gruesome scheme in order to force her to stay and look after him.’,0.116150,’1999-10-29′,7,92,’Released’,”,8.00,1),(109091,’The Counselor’,25000000,”,’A rich and successful lawyer named Counselor is about to get married to his fiancée but soon meets up with the middle-man known as Westray who tells him his drug trafficking plan has taken a horrible twist and now he must protect himself and his soon bride-to-be lover as the truth of the drug business uncovers and targets become chosen.’,35.022029,’2013-10-25′,71009334,117,’Released’,’Sin Is A Choice.’,5.00,712),(109410,’42’,40000000,”,’The powerful story of Jackie Robinson, the legendary baseball player who broke Major League Baseballâ��s color barrier when he joined the roster of the Brooklyn Dodgers. The film follows the innovative Dodgersâ�� general manager Branch Rickey, the MLB executive who first signed Robinson to the minors and then helped to bring him up to the show.’,31.884559,’2013-04-12′,95020213,128,’Released’,’The True Story Of An American Legend’,6.80,787),(109414,’This Is the End’,32000000,’http://www.thisistheend.com/’,’While attending a party at James Franco\’s house, Seth Rogen, Jay Baruchel and many other celebrities are faced with the apocalypse.’,38.217080,’2013-06-12′,126041322,107,’Released’,’Nothing ruins a party like the end of the world.’,6.30,2359),(109417,’Battle of the Year’,20000000,”,’A down-on-his-luck coach is hired to prepare a team of the best American dancers for an international tournament that attracts all the best crews from around the world, but the Americans haven\’t won in fifteen years.’,8.237336,’2013-09-21′,16549477,110,’Released’,’The World is watching’,5.90,88),(109418,’Grown Ups 2′,80000000,’http://www.sonypictures.com/movies/grownups2′,’The all-star comedy cast from Grown Ups returns (with some exciting new additions) for more summertime laughs. Lenny (Adam Sandler) has relocated his family back to the small town where he and his friends grew up. This time around, the grown ups are the ones learning lessons from their kids on a day notoriously full of surprises: the last day of school.’,45.589568,’2013-07-11′,246984278,100,’Released’,’Just because they\’re a little older doesn\’t mean they\’ve grown up.’,5.80,1155),(109421,’Side Effects’,30000000,’http://www.sideeffectsmayvary.com/’,’A woman turns to prescription medication as a way of handling her anxiety concerning her husband\’s upcoming release from prison.’,48.237797,’2013-02-07′,63372757,106,’Released’,’One pill can change your life.’,6.40,1323),(109424,’Captain Phillips’,55000000,’http://www.captainphillipsmovie.com’,’The true story of Captain Richard Phillips and the 2009 hijacking by Somali pirates of the US-flagged MV Maersk Alabama, the first American cargo ship to be hijacked in two hundred years.’,52.786917,’2013-10-10′,95000000,134,’Released’,’Out here survival is everything.’,7.60,2454),(109428,’Evil Dead’,17000000,’http://www.evildead-movie.com/’,’Evil Dead, the fourth installment of the Evil Dead franchise, serving as both a reboot and as a loose continuation of the series, features Mia, a young woman struggling with sobriety, heads to a remote cabin with a group of friends where the discovery of a Book of the Dead unwittingly summon up dormant demons which possess the youngsters one by one.’,33.912116,’2013-04-05′,97542952,91,’Released’,’The most terrifying film you will ever experience.’,6.40,1723),(109431,’Identity Thief’,35000000,’http://www.identitythiefmovie.com’,’When a mild-mannered businessman learns his identity has been stolen, he hits the road in an attempt to foil the thief — a trip that puts him in the path of a deceptively harmless-looking woman.’,34.005726,’2013-02-07′,173965010,111,’Released’,’She\’s having the time of his life’,5.60,1645),(109443,’Anchorman 2: The Legend Continues’,50000000,”,’With the 70s behind him, San Diego\’s top rated newsman, Ron Burgundy, returns to take New York\’s first 24-hour news channel by storm.’,38.125008,’2013-12-18′,173649015,119,’Released’,’It\’s kind of a big deal’,6.00,923),(109445,’Frozen’,150000000,’http://movies.disney.com/frozen’,’Young princess Anna of Arendelle dreams about finding true love at her sister Elsaâ��s coronation. Fate takes her on a dangerous journey in an attempt to end the eternal winter that has fallen over the kingdom. She\’s accompanied by ice delivery man Kristoff, his reindeer Sven, and snowman Olaf. On an adventure where she will find out what friendship, courage, family, and true love really means.’,165.125366,’2013-11-27′,1274219009,102,’Released’,’Only the act of true love will thaw a frozen heart.’,7.30,5295),(109451,’Cloudy with a Chance of Meatballs 2′,78000000,”,’After the disastrous food storm in the first film, Flint and his friends are forced to leave the town. Flint accepts the invitation from his idol Chester V to join The Live Corp Company, which has been tasked to clean the island, and where the best inventors in the world create technologies for the betterment of mankind. When Flint discovers that his machine still operates and now creates mutant food beasts like living pickles, hungry tacodiles, shrimpanzees and apple pie-thons, he and his friends must return to save the world.’,41.247402,’2013-09-26′,248384621,95,’Released’,’Something big was leftover.’,6.40,915),(109491,’Beautiful Creatures’,60000000,”,’Ethan Wate just wants to get to know Lena Duchannes better, but unbeknownst to him, Lena has strange powers. As Lena\’s 16th birthday approaches she might decide her fate, to be good or evil. A choice which will impact her relationship forever.’,40.721373,’2013-02-13′,60052138,124,’Released’,’Dark secrets will come to light.’,5.60,984),(109513,’Hit & Run’,2000000,’http://www.hitandrunmovie.com/’,’Former getaway driver Charlie Bronson jeopardizes his Witness Protection Plan identity in order to help his girlfriend get to Los Angeles. The feds and Charlie\’s former gang chase them on the road.’,16.668854,’2012-08-22′,14400000,100,’Released’,’A Comedy That Never Takes Its Foot Off The Gas’,5.50,224),(109729,’The Canyons’,250000,’http://www.kickstarter.com/projects/1094772583/the-canyons’,’The discovery of an illicit love affair leads two young Angelenos on a violent, sexually charged tour through the dark side of human nature.’,6.978907,’2013-07-29′,56825,99,’Released’,’It\’s not the hills.’,4.10,75),(110402,’ТÑ�Ñ�дно бÑ�Ñ�Ñ� богом’,7000000,”,’A group of scientists is sent to the planet Arkanar to help the local civilization, which is in the Medieval phase of its own history, to find the right path to progress. Their task is a difficult one: they cannot interfere violently and in no case can they kill. The scientist Rumata tries to save the local intellectuals from their punishment and cannot avoid taking a position. As if the question were: what would you do in God\’s place? Director\’s statement Aleksei wanted to make this film his entire life. The road was a long one. This is not a film about cruelty, but about love. A love that was there, tangible, alive, and that resisted through the hardest of conditions.’,3.120016,’2013-02-27′,1310673,170,’Released’,”,6.70,41),(110415,’Snowpiercer’,39200000,’http://snowpiercer-film.com/’,’In a future where a failed global-warming experiment kills off most life on the planet, a class system evolves aboard the Snowpiercer, a train that travels around the globe via a perpetual-motion engine.’,64.238688,’2013-08-01′,86758912,126,’Released’,’AD 2031, the passengers in the train are the only survivors on Earth.’,6.70,2854),(110683,’The Wicked Lady’,0,”,’Caroline is to be wed to Sir Ralph and invites her sister Barbara to be her bridesmaid. Barbara seduces Ralph, however, and she becomes the new Lady, but despite her new wealthy situation, she gets bored and turns to highway robbery for thrills. While on the road she meets a famous highwayman, and they continue as a team, but some people begin suspecting her identity, and she risks death if she continues her nefarious activities.’,0.289433,’1983-04-21′,0,98,’Released’,’She seduced, robbed and murdered…That was on her good days.’,4.30,4),(111190,’Adore’,16000000,”,’Lil and Roz are two lifelong friends, having grown up together as neighbors in an idyllic beach town. As adults, their sons have developed a friendship as strong as that which binds their mothers. One summer, all four are confronted by simmering emotions that have been mounting between them, and each find unexpected happiness in relationships that cross the bounds of convention.’,18.790221,’2013-04-03′,318982,100,’Released’,”,6.10,291),(111794,’20 Dates’,0,”,’Myles is divorced in L.A. He wants a love life and a film career. So he decides to go on 20 dates and find true love in front of a camera, making his first feature. His patient agent, Richard, finds a $60,000 investor, the shadowy Elie. Myles starts his search, sometimes telling his date she\’s being filmed, sometimes not. Elie wants sex and titillation, Myles wants it \”real.\” Myles regularly talks with his old film teacher, Robert McKee, who wonders if love is possible in modern life. Half-way through the 20 dates, Myles meets Elisabeth; she\’s everything he desires and she likes him. Can he finish the 20 dates, satisfy Elie, and complete his film without losing Elisabeth?’,0.408073,’1998-01-01′,0,87,’Released’,’A comedy so real you\’ll think it\’s fiction.’,3.70,3),(112430,’The Company’,0,”,’Real-life figures from the Cold War era mix with a fictional story based on a group of CIA operatives and their counterparts in the KGB, MI6, and the Mossad.’,1.485324,’2007-08-05′,0,276,’Released’,”,7.00,12),(112456,’Hardflip’,1000000,’http://hardflipmovie.com/’,’Hardflip follows the story of Caleb (Randy Wayne) a young skater whose ill mother (Rosanna Arquette) and absent father (John Schneider) leave him reaching for the only hope he has…becoming a sponsored skater. After his mother falls ill, Caleb finds a stack of old love letters. He sets out to find the father he never knew and inadvertently begins a journey he never could have expected. This story explores what happens when we let go of our anger and pain and forgive those who have hurt us most.’,0.341461,’2012-06-01′,0,114,’Released’,’What do you do when your life does a 180?’,4.70,5),(112937,’The Oogieloves in the Big Balloon Adventure’,0,”,’It\’s Schluufy\’s birthday, and the Oogieloves (Goobie, Zoozie and Toofie), along with their friends J. Edgar, Windy Window and Ruffy, are organizing a party. (Shh! It\’s a secret.) Everything is going along just perfectly until J. Edgar trips and loses the last five magical balloons in all of Lovelyloveville–OH NO! The Oogiloves set out to find the magical balloons in time to save their friend\’s party. Along the way, they meet some very interesting characters indeed, including Dotty Rounder (Cloris Leachman), Bobby Wobbly (Carey Elwes), Milky Marvin (Chazz Palminteri), Rosalie Rosebud (Toni Braxton) and Lola and Lero Sombero (Christopher Lloyd and Jaime Pressly). Can these new friends help them recover the magical balloons and get back to the cottage in time to celebrate Schluufy\’s surprise birthday?’,0.285760,’2012-08-29′,0,88,’Released’,”,2.20,8),(112949,’Safe Haven’,28000000,”,’A young woman with a mysterious past lands in Southport, North Carolina where her bond with a widower forces her to confront the dark secret that haunts her.’,37.729059,’2013-02-07′,97594140,115,’Released’,’You know it when you find it’,6.90,823),(113406,’Should\’ve Been Romeo’,0,’http://www.romeothemovie.com/’,’A self-centered, middle-aged pitchman for a potato chip company loses his job and his livelihood just as his octogenarian grandfather is dropped on his doorstep unexpectedly by his mother on her way to a singles cruise.’,0.407030,’2012-04-28′,0,0,’Released’,’Even Shakespeare didn\’t see this one coming.’,0.00,0),(113464,’Inchon’,46000000,”,’A noisy and absurd re-telling of the great 1950 invasion of Inchon during the Korean War which was masterminded by General Douglas MacArthur.’,0.146783,’1981-05-04′,5200000,140,’Released’,’LOVE. DESTINY. HEROES. War Changes Everything.’,6.50,2),(113947,’The Sessions’,1000000,”,’Though a childhood bout with polio left him dependent on an iron lung, Mark O\’Brien (John Hawkes) maintains a career as a journalist and poet. A writing assignment dealing with sex and the disabled piques Mark\’s curiosity, and he decides to investigate the possibility of experiencing sex himself. When his overtures toward a caregiver scare her away, he books an appointment with sex surrogate Cheryl Green (Helen Hunt) to lose his virginity.’,9.115486,’2012-05-02′,9138338,98,’Released’,’The festival hit of the year!’,6.60,179),(114065,’Down & Out With The Dolls’,0,”,’The raunchy, spunky tale of the rise and fall of an all-girl rock band from Portland, Oregon.’,0.002386,’2003-03-20′,0,88,’Released’,’Ain\’t Rock \’N\’ Roll a bitch.’,0.00,0),(114150,’Pitch Perfect’,17000000,’http://www.pitchperfectmovie.com/’,’College student Beca knows she does not want to be part of a clique, but that\’s exactly where she finds herself after arriving at her new school. Thrust in among mean gals, nice gals and just plain weird gals, Beca finds that the only thing they have in common is how well they sing together. She takes the women of the group out of their comfort zone of traditional arrangements and into a world of amazing harmonic combinations in a fight to the top of college music competitions.’,32.746486,’2012-09-28′,115350426,112,’Released’,’Get pitch slapped.’,7.30,2247),(114635,’The Helpers’,4000000,’http://thehelpers-movie.com/’,’Seven friends from Sacramento, California head out on a documented road trip to Las Vegas. Their trip takes a very unexpected turn for the worse when their back tires mysteriously blow out. A couple miles down the road, they find a little gas station Diner/Motel, run by the most friendly, polite and \”helpful\” people. It appears that their problems are solved, but boy are they wrong! When convinced by \”The Helpers\” to stay overnight, the friends all wake up in their rooms to a new kind of gruesome and bloody terror!’,1.390659,’2012-10-27′,0,78,’Released’,’Can we help you?’,4.10,8),(115210,’Stitches’,100000,”,’The clumsy and unfunny clown Richard \”Stitches\” Grindle entertains at the 10th birthday party of little Tom, but the boy and his friends play a prank with Stitches, tying his shoelaces. Stitches slips, falls and dies. Six years later, Tom gives a birthday party for his friends at home, but Stitches revives to haunt the teenagers and revenge his death.’,7.447714,’2012-05-19′,95000,86,’Released’,’You\’ll die laughing…’,5.50,92),(115872,’La femme de chambre du Titanic’,0,”,’Horty, a French foundry worker, wins a contest and is sent to see the sailing of the Titanic. In England, Marie, saying she is a chambermaid on the Titanic and cannot get a room, asks to share his room. They do, chastely; when he awakens, she is gone, but he sees her at the sailing and gets a photo of her. When he returns home, he suspects that his wife Zoe has been sleeping with Simeon, the foundry owner. Horty goes to the bar, where his friends get him drunk and he starts telling an erotic fantasy of what happened with him and Marie, drawing a larger audience each night.’,1.031142,’1997-10-10′,0,100,’Released’,”,5.30,3),(116149,’Paddington’,55000000,’http://www.paddington.com/’,’A young Peruvian bear with a passion for all things British travels to London in search of a home. Finding himself lost and alone at Paddington Station, he begins to realize that city life is not all he had imagined – until he meets the kindly Brown family, who read the label around his neck (\’Please look after this bear. Thank you.\’) and offer him a temporary haven. It looks as though his luck has changed until this rarest of bears catches the eye of a museum taxidermist…’,39.882276,’2014-11-27′,259207227,95,’Released’,’The Adventure Begins’,7.00,883),(116584,’Valley of the Heart\’s Delight’,0,”,’When a fatal kidnapping ignites a firestorm of suspicion and rage in idyllic 1933 San Jose, California, a hard-nosed young reporter takes on the powers-that-be to prevent the lynching of two men he believes are innocent.’,0.142255,’2006-04-24′,0,100,’Released’,’The roar of the mob drowned out the truth.’,7.00,1),(116613,’The Sweeney’,3730500,”,’Based on the \’70s UK TV show, The Sweeney is an action-packed British police thriller from the director of Football Factory. Jack Regan (Ray Winstone), a hardened cop who doesnâ��t play by the rules, is confronted with a criminal from his past. With sidekick George Carter (Ben Drew aka Plan B) they are put on the case of a jewellery store heist that ends in a killing. But is that killing really an execution in disguise? With pressure from his boss and the fact that Regan is having an affair with that bossâ��s wife, itâ��s not going to be easy for him to stay out of trouble.’,6.938854,’2012-09-11′,6294161,112,’Released’,’Act like a criminal to catch a criminal.’,5.70,109),(116711,’Epic’,100000000,”,’A teenager finds herself transported to a deep forest setting where a battle between the forces of good and the forces of evil is taking place. She bands together with a rag-tag group characters in order to save their world — and ours.’,36.711378,’2013-05-15′,268426634,102,’Released’,’Discover a world beyond your imagination’,6.40,1121),(116741,’The Internship’,58000000,’http://www.theinternshipmovie.com/’,’Two recently laid-off men in their 40s try to make it as interns at a successful Internet company where their managers are in their 20s.’,1.551497,’2013-06-07′,44000000,119,’Released’,’Hiring them was a brilliant mistake.’,6.10,1658),(116745,’The Secret Life of Walter Mitty’,90000000,”,’A timid magazine photo manager who lives life vicariously through daydreams embarks on a true-life adventure when a negative goes missing.’,43.348022,’2013-12-18′,188133322,114,’Released’,’Stop Dreaming, Start Living’,7.00,3144),(116977,’Foodfight!’,65000000,’http://www.thresholdanimationstudios.com/video.php?id=foodfight’,’Dex, a superdog sleuth, is the law of the land when the world\’s most recognized brands take on the forces of evil and the devilish Brand X.’,5.258726,’2012-06-15′,73706,87,’Released’,’When good food… goes bad!’,2.30,28),(117251,’White House Down’,150000000,”,’Capitol Policeman John Cale has just been denied his dream job with the Secret Service of protecting President James Sawyer. Not wanting to let down his little girl with the news, he takes her on a tour of the White House, when the complex is overtaken by a heavily armed paramilitary group. Now, with the nation\’s government falling into chaos and time running out, it\’s up to Cale to save the president, his daughter, and the country.’,39.004588,’2013-06-27′,205366737,131,’Released’,’It will start like any other day.’,6.40,1891),(117263,’Olympus Has Fallen’,70000000,”,’When the White House (Secret Service Code: \”Olympus\”) is captured by a terrorist mastermind and the President is kidnapped, disgraced former Presidential guard Mike Banning finds himself trapped within the building. As the national security team scrambles to respond, they are forced to rely on Banning\’s inside knowledge to help retake the White House, save the President and avert an even bigger disaster.’,59.428223,’2013-03-20′,161025640,120,’Released’,’When our flag falls our nation will rise.’,6.20,2981),(117942,’Girls Gone Dead’,500000,’http://girlsgonedeadmovie.com/’,’A group of six ex-high school cheerleaders are stalked by a killer with a medieval war hammer and battle axe during their first Spring Break from college.’,1.600171,’2012-03-28′,0,104,’Released’,”,3.50,14),(118340,’Guardians of the Galaxy’,170000000,’http://marvel.com/guardians’,’Light years from Earth, 26 years after being abducted, Peter Quill finds himself the prime target of a manhunt after discovering an orb wanted by Ronan the Accuser.’,481.098624,’2014-07-30′,773328629,121,’Released’,’All heroes start somewhere.’,7.90,9742),(118452,’First Love, Last Rites’,300000,”,’Joey and Sissel are two misfits spending most of their time together talking or having sex. Gradually and slowly their relationships are becoming boring for them.’,0.374291,’1998-08-07′,40542,94,’Released’,”,3.00,1),(118612,’After’,0,”,’When two bus crash survivors awake to discover that they are the only people left in their small town, they must form an unlikely alliance in a race to unravel the truth behind their isolation. As strange events begin to unfold, they start to question whether the town they know so well is really what it seems.’,4.596157,’2012-08-27′,0,90,’Released’,”,5.60,63),(118957,’Bait’,30000000,”,’A freak tsunami traps shoppers at a coastal Australian supermarket inside the building … along with a 12-foot great white shark.’,9.780588,’2012-09-05′,0,93,’Released’,’Cleanup on aisle 7.’,5.30,191),(119283,’Parker’,35000000,”,’A thief with a unique code of professional ethics is double-crossed by his crew and left for dead. Assuming a new disguise and forming an unlikely alliance with a woman on the inside, he looks to hijack the score of the crew\’s latest heist.’,28.670477,’2013-01-23′,46216641,118,’Released’,’To get away clean, you have to play dirty.’,5.70,1455),(119450,’Dawn of the Planet of the Apes’,170000000,’http://www.dawnofapes.com/’,’A group of scientists in San Francisco struggle to stay alive in the aftermath of a plague that is wiping out humanity, while Caesar tries to maintain dominance over his community of intelligent apes.’,243.791743,’2014-06-26′,710644566,130,’Released’,’One last chance for peace.’,7.30,4410),(119458,’$upercapitalist’,0,’http://supercapitalist.net/’,’A maverick New York hedge fund trader with uncanny analytic abilities moves to Hong Kong and orchestrates a mega-deal that swiftly escalates beyond his control.’,0.174311,’2012-08-10′,0,103,’Released’,’Money for Life’,3.50,2),(119657,’El Rey de Najayo’,500,”,’The dramatic story of Julian, a Dominican drug lord who despite his confinement in prison, was still able to maintain Dominican society in a state of suspense, for over 13 years. At the early age of 12, he witnessed the death of his father at the hands of local military authorities, during a well-meant attempt to hand-over a package of drugs he had incidentally found at sea while fishing. As a result of this experience, Julian develops a thirst for revenge that leads him to kill all those involved in his father\’s death. In the process he becomes a major drug lord and a very powerful headman within Dominican society.’,0.080105,’2012-03-01′,0,101,’Released’,”,0.00,0),(120467,’The Grand Budapest Hotel’,30000000,”,’The Grand Budapest Hotel tells of a legendary concierge at a famous European hotel between the wars and his friendship with a young employee who becomes his trusted protégé. The story involves the theft and recovery of a priceless Renaissance painting, the battle for an enormous family fortune and the slow and then sudden upheavals that transformed Europe during the first half of the 20th century.’,74.417456,’2014-02-26′,174600318,99,’Released’,’A perfect holiday without leaving home.’,8.00,4519),(121676,’Inescapable’,0,”,’Twenty-five years ago Adib (Alexander Siddig, Syriana, Cairo Time), a promising young officer in the Syrian military police, suddenly left Damascus under suspicious circumstances. Abandoning the love of his life Fatima (Marisa Tomei, The Wrestler, The Ides of March), he made his way to Canada and wiped the slate clean. With a beautiful wife, two grown daughters, and a great job in Toronto, Adib is confident he s built a successful life from scratch. But when his daughter Muna suddenly disappears in Damascus, his past threatens to violently catch up to him. Teaming up with a Canadian emissary (Joshua Jackson, Fringe), Adib must now confront the turmoil he thought he left behind so many years ago in order to find Muna.’,6.783053,’2012-09-14′,0,93,’Released’,’You can never escape your past’,5.20,13),(121826,’Quartet’,11000000,”,’The directorial debut of Dustin Hoffman, Quartet is a high-drama comedy about temperamental divas and old grudges, passion and pride, romance and Rigoletto. At a home for retired musicians, the annual concert to celebrate Verdi\’s birthday is disrupted by the arrival of Jean, an eternal diva and former wife of one of the residents. Expect poignancy and plenty of laughs.’,7.722021,’2012-09-08′,59520298,98,’Released’,’Four Friends Looking For A Little Harmony’,6.30,139),(121986,’Frances Ha’,0,”,’An aspiring dancer moves to New York City and becomes caught up in a whirlwind of flighty fair-weather friends, diminishing fortunes and career setbacks.’,15.492257,’2013-05-17′,4069826,86,’Released’,”,7.20,345),(122081,’Spring Breakers’,5000000,’http://www.springbreakersmovie.com/’,’After four college girls rob a restaurant to fund their spring break in Florida, they get entangled with a weird dude with his own criminal agenda.’,62.554173,’2013-01-24′,31724284,94,’Released’,’A little sun can bring out your dark side.’,5.00,1551),(122906,’About Time’,0,”,’The night after another unsatisfactory New Year party, Tim\’s father tells his son that the men in his family have always had the ability to travel through time. Tim can\’t change history, but he can change what happens and has happened in his own life â�� so he decides to make his world a better place… by getting a girlfriend. Sadly, that turns out not to be as easy as he thinks.’,74.817641,’2013-08-16′,87100449,123,’Released’,’What if every moment in life came with a second chance?’,7.80,2067),(122917,’The Hobbit: The Battle of the Five Armies’,250000000,’http://www.thehobbit.com/’,’Immediately after the events of The Desolation of Smaug, Bilbo and the dwarves try to defend Erebor\’s mountain of treasure from others who claim it: the men of the ruined Laketown and the elves of Mirkwood. Meanwhile an army of Orcs led by Azog the Defiler is marching on Erebor, fueled by the rise of the dark lord Sauron. Dwarves, elves and men must unite, and the hope for Middle-Earth falls into Bilbo\’s hands.’,120.965743,’2014-12-10′,956019788,144,’Released’,’Witness the defining chapter of the Middle-Earth saga’,7.10,4760),(123553,’The Mortal Instruments: City of Bones’,60000000,’http://www.themortalinstrumentsmovie.com/’,’In New York City, Clary Fray, a seemingly ordinary teenager, learns that she is descended from a line of Shadowhunters â�� half-angel warriors who protect humanity from evil forces. After her mother disappears, Clary joins forces with a group of Shadowhunters and enters Downworld, an alternate realm filled with demons, vampires, and a host of other creatures. Clary and her companions must find and protect an ancient cup that holds the key to her mother\’s future.’,45.514031,’2013-08-21′,90565421,130,’Released’,’You have been chosen’,6.20,1602),(123678,’Jagal’,1000000,’http://theactofkilling.com/’,’In a place where killers are celebrated as heroes, these filmmakers challenge unrepentant death-squad leaders to dramatize their role in genocide. The result is a surreal, cinematic journey, not only into the memories and imaginations of mass murderers, but also into a frighteningly banal regime of corruption and impunity.’,8.887411,’2012-08-31′,444575,115,’Released’,’A story of killers who win, and the society they build.’,7.50,210),(124459,’The Incredible Burt Wonderstone’,30000000,”,’After breaking up with his longtime stage partner, a famous but jaded Vegas magician fights for relevance when a new, \”hip\” street magician appears on the scene.’,26.938500,’2013-03-14′,27437881,100,’Released’,’Abracatastic!’,5.30,724),(124606,’Bang’,0,”,’A young woman in L.A. is having a bad day: she\’s evicted, an audition ends with a producer furious she won\’t trade sex for the part, and a policeman nabs her for something she didn\’t do, demanding fellatio to release her. She snaps, grabs his gun, takes his uniform, and leaves him cuffed to a tree where he\’s soon having a defenseless chat with a homeless man. She takes off on the cop\’s motorcycle and, for an afternoon, experiences a cop\’s life. She talks a young man out of suicide and then is plunged into violence after a friendly encounter with two \”vatos.\” She is torn between self-protection and others\’ expectations. Is there any resolution for her torrent of feelings?’,0.918116,’1995-09-09′,0,98,’Released’,’Sometimes you\’ve got to break the rules’,6.00,1),(125052,’Hurricane Streets’,0,”,’Marcus is a kid on Manhattan\’s mean streets. He\’s turning 15, his father is dead, his mother is in prison for smuggling undocumented aliens. His grandmother is raising him. He has four close buddies who have a basement clubhouse; they shoplift and sell the wares to kids. One is moving toward selling drugs. Marcus wants to take a breather from the city and visit family in New Mexico. He also meets Melena, 14, a sweet kid who dreams of going to Alaska; her father is not just protective but angry and uncommunicative. The gang pressures Marcus to move up to burglary and car theft. He just wants to breathe open air. Can anything go right?’,0.364470,’1997-01-21′,0,86,’Released’,’Know life. No limits.’,4.80,4),(125123,’Among Giants’,0,”,’A manager hires Ray, off the books, to paint all the power towers in a 15-mile stretch of high-tension wires outside Sheffield. Ray\’s crew of men are friends, especially Ray with Steve, a young Romeo. Into the mix comes Gerry, an Australian with a spirit of adventure and mountain climbing skills. She wants a job, and against the others\’ advice, who don\’t want a woman on the job, Ray hires her. Then she and Ray fall in love. He asks her to marry him, gives her a ring. Steve\’s jealous; Ray\’s ex-wife complains that he spends on Gerry, not his own kids, and she predicts that Gerry won\’t stay around. Plus, there\’s pressure to finish the job fast. Economics, romance, and wanderlust spark the end.’,0.541652,’1998-06-24′,0,93,’Released’,’a love story from the writer of \”The Full Monty\”.’,4.50,2),(125263,’Broken Vessels’,0,”,’A young Pennsylvania man moves to Los Angeles to begin work for an ambulance service. There he is teamed with a supremely confident vet who seemingly has gone through a large number of partners. Initially the novice is awed by the more experienced man\’s capabilities to deal with the high pressure situations they encounter. However, gradually he discovers that all is not as it seems. While the vet is ice on the surface, he actually gets through the ordeals by heavy drug use and avoids commitments. Soon the younger man finds himself pulled into the same world and has to decide what direction he wants to take.’,0.069277,’1998-04-18′,0,90,’Released’,’Over the edge and out of control.’,6.00,2),(125490,’Antiviral’,2400000,’http://www.lucasclinic.com/’,’After becoming infected with the virus that killed superstar Hannah Geist, Syd March must unravel the mystery surrounding her death to save his own life .’,11.753553,’2012-09-19′,0,110,’Released’,’What If You Could Feel Like They Do …’,5.70,112),(125537,’Smiling Fish & Goat On Fire’,0,”,’Two brothers share a house in LA\’s Fairfax district: Tony\’s a feckless actor, Chris is an accountant. Both are in relationships on rocky ground. As these emotions swirl, Tony meets his US Postal Service letter carrier, a single mom named Kathy who\’s come to LA from Wyoming with her daughter, a budding actress. Chris meets Anna, an Italian beauty working in the States for a few months wrangling animals on movie sets. Chris also befriends Clive, an aging and crusty man whose longing for his recently-deceased wife is a portrait of true love. Can Clive\’s example help Chris sort out his love life, and can Tony grow up enough to see the possibilities with Kathy and her daughter?’,0.007340,’1999-09-16′,0,90,’Released’,’two brothers, four women and the search for Magnetic Perfection’,7.00,1),(126141,’Chats perchés’,0,”,’Paris 2002. Yellow cats appear on the walls. Chris Marker is looking for these mysterious cats and captures with his camera the political and international events of these last two years (war in Iraq…).’,0.092562,’2004-12-05′,0,59,’Released’,”,7.70,3),(126186,’Shanghai Calling’,0,’http://shanghaicalling.com/’,’When ambitious New York attorney Sam is sent to Shanghai on assignment, he immediately stumbles into a legal mess that could end his career. With the help of a beautiful relocation specialist, a well-connected old-timer, a clever journalist, and a street-smart legal assistant, Sam might just save his job, find romance, and learn to appreciate the beauty and wonders of Shanghai. Written by Anonymous (IMDB.com).’,0.857008,’2012-05-03′,0,98,’Released’,’A New Yorker in Shanghai’,5.70,7),(126319,’Ernest et Célestine’,12516654,”,’Celestine is a little mouse trying to avoid a dental career; Ernest is a big bear craving an artistic outlet. When Celestine meets Ernest, they overcome their natural enmity by forging a life of crime together.’,11.103202,’2012-12-12′,8109160,78,’Released’,’Bonnie and Clyde, Sid and Nancy…’,7.60,142),(126509,’2016: Obama\’s America’,2500000,’http://2016themovie.com/’,’2016: Obama\’s America takes audiences on a gripping visual journey into the heart of the worlds most powerful office to reveal the struggle of whether one man\’s past will redefine America over the next four years. The film examines the question, \”If Obama wins a second term, where will we be in 2016?\” Across the globe and in America, people in 2008 hungered for a leader who would unite and lift us from economic turmoil and war. True to Americas ideals, they invested their hope in a new kind of president, Barack Obama. What they didn\’t know is that Obama is a man with a past, and in powerful ways that past defines him–who he is, how he thinks, and where he intends to take America and the world. Immersed in exotic locales across four continents, best selling author Dinesh DSouza races against time to find answers to Obama\’s past and reveal where America will be in 2016.’,0.973582,’2012-07-13′,33400000,87,’Released’,’Love Him, Hate Him, You Don\’t Know Him’,4.60,19),(127493,’Stolen’,35000000,”,’A former thief frantically searches for his missing daughter, who has been kidnapped and locked in the trunk of a taxi.’,16.830184,’2012-05-17′,2106557,96,’Released’,’Never steal from the world\’s greatest thief.’,5.10,344),(127560,’The Railway Man’,18000000,”,’A victim from World War II\’s \”Death Railway\” sets out to find those responsible for his torture. A true story.’,13.916583,’2013-12-26′,22309223,116,’Released’,’Revenge is never a straight line.’,6.70,273),(127585,’X-Men: Days of Future Past’,250000000,’http://www.x-menmovies.com/’,’The ultimate X-Men ensemble fights a war for the survival of the species across two time periods as they join forces with their younger selves in an epic battle that must change the past â�� to save our future.’,118.078691,’2014-05-15′,747862775,131,’Released’,’To save the future, they must alter the past’,7.50,6032),(127867,’The Brass Teapot’,0,”,’When a couple discovers that a brass teapot makes them money whenever they hurt themselves, they must come to terms with how far they are willing to go.’,10.639774,’2012-09-08′,0,100,’Released’,’Everyone Has A Price. What\’s Yours?’,5.80,160),(127918,’The Gatekeepers’,0,”,’In an unprecedented and candid series of interviews, six former heads of the Shin Bet â�� Israel\’s intelligence and security agency â�� speak about their role in Israel\’s decades-long counterterrorism campaign, discussing their controversial methods and whether the ends ultimately justify the means. (TIFF)’,2.828303,’2012-07-09′,0,101,’Released’,”,6.50,39),(129139,’The To Do List’,1500000,’http://todolistmovie.com/’,’Feeling pressured to become more sexually experienced before she goes to college, Brandy Klark makes a list of things to accomplish before hitting campus in the fall.’,15.017068,’2013-07-24′,3566225,104,’Released’,’She\’s going from straight A\’s to getting her first F.’,5.50,342),(129670,’Nebraska’,12000000,”,’An aging, booze-addled father takes a trip from Montana to Nebraska with his estranged son in order to claim what he believes to be a million-dollar sweepstakes prize.’,29.223881,’2013-09-21′,17654912,115,’Released’,’Life\’s not about winning or losing. It\’s about how you get there in the end.’,7.40,636),(130150,’Labor Day’,18000000,”,’Depressed single mom Adele and her son Henry offer a wounded, fearsome man a ride. As police search town for the escaped convict, the mother and son gradually learn his true story as their options become increasingly limited.’,17.683563,’2013-12-27′,20275812,111,’Released’,”,6.70,299),(131631,’The Hunger Games: Mockingjay – Part 1′,125000000,’http://www.thehungergames.movie/’,’Katniss Everdeen reluctantly becomes the symbol of a mass rebellion against the autocratic Capitol.’,206.227151,’2014-11-18′,752100229,123,’Released’,’Fire burns brighter in the darkness’,6.60,5584),(131634,’The Hunger Games: Mockingjay – Part 2′,160000000,’http://www.thehungergames.movie/’,’With the nation of Panem in a full scale war, Katniss confronts President Snow in the final showdown. Teamed with a group of her closest friends â�� including Gale, Finnick, and Peeta â�� Katniss goes off on a mission with the unit from District 13 as they risk their lives to stage an assassination attempt on President Snow who has become increasingly obsessed with destroying her. The mortal traps, enemies, and moral choices that await Katniss will challenge her more than any arena she faced in The Hunger Games.’,127.284427,’2015-11-18′,653428261,137,’Released’,’The fire will burn forever.’,6.60,3984),(132232,’Mama’,15000000,’http://www.mamamovie.com/’,’Guillermo del Toro presents Mama, a supernatural thriller that tells the haunting tale of two little girls who disappeared into the woods the day that their parents were killed. When they are rescued years later and begin a new life, they find that someone or something still wants to come tuck them in at night.’,47.455148,’2013-01-17′,146497771,100,’Released’,’A Mother\’s Love is Forever’,6.00,1401),(132316,’Jab Tak Hai Jaan’,0,”,’An ex-army man, leading a double life in London, must choose between his wife and muse. Jab Tak Hai Jaan movie is a love triangle,and also marks the return of Yash Chopra as a director after eight years. In Jab Tak Hai Jaan, Shahrukh Khan plays the character of Samar who is an angry, unforgiving, with loads of emotional baggage. His role will span two ages, one in his late twenties as a musician based in London and the other at an older age as an introverted, composed, dutiful army officer in Kashmir. Katrina as Meera play as a seductress, an unattainable beauty. And Anushka as Akira who is 21 year old and works for Discovery Channel and makes documentaries.’,5.900535,’2012-11-13′,0,176,’Released’,”,7.30,66),(132344,’Before Midnight’,3000000,”,’We meet Jesse and Celine nine years on in Greece. Almost two decades have passed since their first meeting on that train bound for Vienna.’,23.299907,’2013-04-05′,11176469,108,’Released’,’Everything\’s better with maturity.’,7.40,568),(132363,’The Butler’,25000000,”,’A look at the life of Cecil Gaines who served eight presidents as the White House\’s head butler from 1952 to 1986, and had a unique front-row seat as political and racial history was made.’,32.105328,’2013-08-16′,115922175,132,’Released’,’One quiet voice can ignite a revolution.’,7.20,1101),(133575,’The Velocity of Gary’,4000000,”,’Gary is in love with Valentino. So is Mary Carmen. Their life changes when Valentino is hit with a deadly disease and is slowly dying in their hands. They tear each other off to end up re-uniting upon their love for the same man.’,0.409089,’1999-07-16′,0,100,’Released’,’*(Not His Real Name)’,4.20,5),(133694,’Promised Land’,15000000,”,’A salesman for a natural gas company experiences life-changing events after arriving in a small town, where his corporation wants to tap into the available resources.’,13.568302,’2012-09-23′,8138788,106,’Released’,’What\’s your price?’,6.00,243),(133698,’Un Plan parfait’,0,”,’Successful woman in love tries to break her family curse of every first marriage ending in divorce, by dashing to the alter with a random stranger before marrying her boyfriend.’,11.609210,’2012-10-29′,0,104,’Released’,”,5.60,194),(133805,’Carrie’,30000000,’http://www.carrie-movie.com’,’A reimagining of the classic horror tale about Carrie White, a shy girl outcast by her peers and sheltered by her deeply religious mother, who unleashes telekinetic terror on her small town after being pushed too far at her senior prom.’,63.848541,’2013-10-16′,82394288,100,’Released’,’Know her name. Fear her power.’,5.80,1463),(133931,’Zambezia’,20000000,’http://zambeziamovie.com/’,’Set in a bustling bird city on the edge of the majestic Victoria Falls, \”Zambezia\” is the story of Kai – a naïve, but high-spirited young falcon who travels to the bird city of \”Zambezia\” where he discovers the truth about his origins and, in defending the city, learns how to be part of a community’,14.182301,’2012-06-05′,0,83,’Released’,’Airborne to be wild.’,5.30,68),(134371,’Atlas Shrugged Part II’,0,’http://www.AtlasShruggedMovie.com’,’The global economy is on the brink of collapse. Brilliant creators, from artists to industrialists, continue to mysteriously disappear. Unemployment has risen to 24%. Gas is now $42 per gallon. Dagny Taggart, Vice President in Charge of Operations for Taggart Transcontinental, has discovered what may very well be the answer to the mounting energy crisis – found abandoned amongst ruins, a miraculous motor that could seemingly power the World. But, the motor is dead… there is no one left to decipher its secret… and, someone is watching. Itâ��s a race against the clock to find the inventor and stop the destroyer before the motor of the World is stopped for good. A motor that would power the World. A World whose motor would be stopped. Who is John Galt?’,4.725357,’2012-10-12′,0,112,’Released’,’Who is John Galt?’,5.40,41),(134374,’Pain & Gain’,25000000,’http://www.painandgainmovie.com/’,’Daniel Lugo, manager of the Sun Gym in 1990s Miami, decides that there is only one way to achieve his version of the American dream: extortion. To achieve his goal, he recruits musclemen Paul and Adrian as accomplices. After several failed attempts, they abduct rich businessman Victor Kershaw and convince him to sign over all his assets to them. But when Kershaw makes it out alive, authorities are reluctant to believe his story.’,31.893932,’2013-04-18′,86175291,130,’Released’,’Their American dream is bigger than yours.’,6.10,1573),(134411,’Snitch’,35000000,”,’Construction company owner John Matthews learns that his estranged son, Jason, has been arrested for drug trafficking. Facing an unjust prison sentence for a first time offender courtesy of mandatory minimum sentence laws, Jason has nothing to offer for leniency in good conscience. Desperately, John convinces the DEA and the opportunistic DA Joanne Keeghan to let him go undercover to help make arrests big enough to free his son in return. With the unwitting help of an ex-con employee, John enters the narcotics underworld where every move could be his last in an operation that will demand all his resources, wits and courage to survive.’,30.556135,’2013-02-21′,42930462,112,’Released’,’How far would you go to save your son?’,5.80,1138),(134597,’The Collection’,0,”,’Arkin escapes with his life from the vicious grips of \”The Collector\” during an entrapment party where he adds beautiful Elena to his \”Collection.\” Instead of recovering from the trauma, Arkin is suddenly abducted from the hospital by mercenaries hired by Elena\’s wealthy father. Arkin is blackmailed to team up with the mercenaries and track down The Collector\’s booby trapped warehouse and save Elena.’,16.361743,’2012-09-21′,6842058,94,’Released’,’Every great collector has a vision.’,5.90,289),(135397,’Jurassic World’,150000000,’http://www.jurassicworld.com/’,’Twenty-two years after the events of Jurassic Park, Isla Nublar now features a fully functioning dinosaur theme park, Jurassic World, as originally envisioned by John Hammond.’,418.708552,’2015-06-09′,1513528810,124,’Released’,’The park is open.’,6.50,8662),(135595,’Trade Of Innocents’,0,’http://www.tradeofinnocentsthemovie.com/’,’In the back streets of a tourist town in present-day Southeast Asia, we find a filthy cinder block room; a bed with soiled sheets; a little girl waits for the next man. Alex (Dermot Mulroney), a human trafficking investigator, plays the role of her next customer as he negotiates with the pimp for the use of the child. Claire (Mira Sorvino), Alex\’s wife, is caught up in the flow of her new life in Southeast Asia and her role as a volunteer in an aftercare shelter for rescued girls where lives of local neighborhood girl\’s freedoms and dignity are threatened. Parallel story lines intertwine and unfold twists against the backdrop of the dangerous human trafficking world, in a story of struggle, life, hope and redemption in the \”TRADE of INNOCENTS.\”‘,2.204138,’2012-09-27′,0,91,’Released’,’Justice needs a hero’,5.50,12),(136400,’2 Guns’,61000000,’http://www.2guns.net/’,’A DEA agent and an undercover Naval Intelligence officer who have been tasked with investigating one another find they have been set up by the mob — the very organization the two men believe they have been stealing money from.’,42.881415,’2013-08-02′,131940411,109,’Released’,’2 Guns, 1 Bank.’,6.60,1589),(136795,’The Heat’,43000000,”,’Uptight and straight-laced, FBI Special Agent Sarah Ashburn is a methodical investigator with a reputation for excellence–and hyper-arrogance. Shannon Mullins, one of Boston P.D.\’s \”finest,\” is foul-mouthed and has a very short fuse, and uses her gut instinct and street smarts to catch the most elusive criminals. Neither has ever had a partner, or a friend for that matter. When these two wildly incompatible law officers join forces to bring down a ruthless drug lord, they become the last thing anyone expected: Buddies.’,37.654688,’2013-06-27′,158674180,117,’Released’,’Action\’s never been so hot!’,6.50,1575),(136797,’Need for Speed’,66000000,”,’The film revolves around a local street-racer who partners with a rich and arrogant business associate, only to find himself framed by his colleague and sent to prison. After he gets out, he joins a New York-to-Los Angeles race to get revenge. But when the ex-partner learns of the scheme, he puts a massive bounty on the racer\’s head, forcing him to run a cross-country gauntlet of illegal racers in all manner of supercharged vehicles.’,54.814890,’2014-03-13′,203277636,130,’Released’,’For honor. For love. For redemption.’,6.10,1520),(136835,’No Good Deed’,13200000,’http://www.sonypictures.com/movies/nogooddeed/’,’Terri is a devoted wife and mother of two, living an ideal suburban life in Atlanta when Colin, a charming but dangerous escaped convict, shows up at her door claiming car trouble. Terri offers her phone to help him but soon learns that no good deed goes unpunished as she finds herself fighting for survival when he invades her home and terrorizes her family.’,24.656068,’2014-09-10′,53830415,83,’Released’,’First he gets into your house. Then he gets into your head.’,5.60,181),(137093,’Last Vegas’,28000000,”,’Three sixty-something friends take a break from their day-to-day lives to throw a bachelor party in Las Vegas for their last remaining single pal.’,28.043508,’2013-10-31′,134402450,105,’Released’,’It\’s going to be legendary’,6.40,799),(137094,’Jack Ryan: Shadow Recruit’,60000000,”,’Jack Ryan, as a young covert CIA analyst, uncovers a Russian plot to crash the U.S. economy with a terrorist attack.’,42.538258,’2014-01-15′,50549107,105,’Released’,’Trust no one.’,5.90,1173),(137106,’The Lego Movie’,60000000,’http://www.thelegomovie.com’,’An ordinary Lego mini-figure, mistakenly thought to be the extraordinary MasterBuilder, is recruited to join a quest to stop an evil Lego tyrant from gluing the universe together.’,59.547928,’2014-02-06′,469160692,100,’Released’,’The story of a nobody who saved everybody.’,7.50,3070),(137113,’Edge of Tomorrow’,178000000,’http://www.edgeoftomorrowmovie.com/’,’Major Bill Cage is an officer who has never seen a day of combat when he is unceremoniously demoted and dropped into combat. Cage is killed within minutes, managing to take an alpha alien down with him. He awakens back at the beginning of the same day and is forced to fight and die again… and again – as physical contact with the alien has thrown him into a time loop.’,79.456485,’2014-05-27′,370541256,113,’Released’,’Live, Die, Repeat’,7.60,4858),(137321,’Winter\’s Tale’,60000000,’http://www.winterstalemovie.com/’,’A burglar falls for an heiress as she dies in his arms. When he learns that he has the gift of reincarnation, he sets out to save her.’,22.736038,’2014-02-13′,30800231,118,’Released’,’This is not a true story. This is true love.’,6.00,487),(137347,’Closer to the Moon’,9000000,”,’A Romanian police officer teams up with a small crew of bank robbers to pull off a heist by convincing everyone at the scene of the crime that they are only filming a movie.’,9.159265,’2013-11-29′,0,112,’Released’,”,6.40,13),(137955,’Crowsnest’,1200000,”,’In late summer of 2011, five young friends on a road trip went missing after being attacked by nomadic cannibals in a huge RV. Video was recorded by the victims & recovered by police as evidence in their still-unsolved murders.’,0.057564,’2012-01-01′,0,84,’Released’,”,4.80,12),(138103,’The Expendables 3′,90000000,’http://theexpendables3film.com/’,’Barney, Christmas and the rest of the team comes face-to-face with Conrad Stonebanks, who years ago co-founded The Expendables with Barney. Stonebanks subsequently became a ruthless arms trader and someone who Barney was forced to killâ�¦ or so he thought. Stonebanks, who eluded death once before, now is making it his mission to end The Expendables — but Barney has other plans. Barney decides that he has to fight old blood with new blood, and brings in a new era of Expendables team members, recruiting individuals who are younger, faster and more tech-savvy. The latest mission becomes a clash of classic old-school style versus high-tech expertise in the Expendablesâ�� most personal battle yet.’,61.025639,’2014-08-04′,206172544,127,’Released’,’New team. New attitude. New mission.’,6.10,1795),(138697,’Don Jon’,6000000,”,’A New Jersey guy dedicated to his family, friends, and church, develops unrealistic expectations from watching porn and works to find happiness and intimacy with his potential true love.’,33.296684,’2013-07-26′,0,90,’Released’,’Everyone loves a happy ending.’,5.90,1671),(138832,’We\’re the Millers’,37000000,’http://werethemillers.warnerbros.com’,’A veteran pot dealer creates a fake family as part of his plan to move a huge shipment of weed into the U.S. from Mexico.’,100.348805,’2013-08-07′,269994119,110,’Released’,’-If anyone asks.’,6.80,2972),(138843,’The Conjuring’,13000000,’http://theconjuring.warnerbros.com’,’Paranormal investigators Ed and Lorraine Warren work to help a family terrorized by a dark presence in their farmhouse. Forced to confront a powerful entity, the Warrens find themselves caught in the most terrifying case of their lives.’,49.975409,’2013-07-18′,318000141,112,’Released’,’Based on the true case files of the Warrens’,7.40,3092),(138976,’Treachery’,625000,”,’Treachery centers on a man (Biehn) who is reunited with his estranged son at a remote wedding party. When a storm strands the party, ugly truths are revealed.’,0.283059,’2013-05-16′,0,68,’Released’,’Deep roots… Deeper Secrets’,4.80,5),(139038,’A Haunted House’,2500000,’https://www.facebook.com/AHauntedHouse?fref=ts’,’A spoof of all the \”found-footage/documentary style\” films released in recent years.’,18.661541,’2013-01-11′,60141683,86,’Released’,’This $*%! ain\’t paranormal.’,5.40,516),(139715,’Detention of the Dead’,500000,’http://www.detentionofthedead.com’,’A group of oddball high school students find themselves trapped in detention with their classmates having turned into a horde of Zombies.’,2.391847,’2012-04-27′,0,87,’Released’,’When there\’s no more room in Hell, the dead will go to DETENTION!’,4.50,34),(139948,’Burn’,225000,’http://detroitfirefilm.org/’,’A character-driven, action-packed documentary about Detroit, told through the eyes of the Detroit firefighters, the men and women charged with the thankless task of saving a city that many have written off as dead.’,0.126676,’2012-11-01′,111300,86,’Released’,’One Year on the Front Lines of the Battle to Save Detroit’,6.90,6),(139998,’Supporting Characters’,0,”,’Two New York film editors balance their personal relationships while reworking a movie in crisis.’,0.620554,’2012-01-23′,0,87,’Released’,”,6.70,10),(140300,’Kung Fu Panda 3′,145000000,’http://www.kungfupanda.com/’,’Continuing his \”legendary adventures of awesomeness\”, Po must face two hugely epic, but different threats: one supernatural and the other a little closer to his home.’,56.747978,’2016-01-23′,521170825,95,’Released’,’Grab destiny by the rice dumplings.’,6.70,1603),(140823,’Saving Mr. Banks’,35000000,”,’Author P.L. Travers travels from London to Hollywood as Walt Disney Pictures adapts her novel Mary Poppins for the big screen.’,31.957947,’2013-11-16′,112544580,125,’Released’,’Where her book ended, their story began.’,7.30,1226),(142061,’Batman: The Dark Knight Returns, Part 2′,3500000,”,’Batman has stopped the reign of terror that The Mutants had cast upon his city. Now an old foe wants a reunion and the government wants The Man of Steel to put a stop to Batman.’,25.891466,’2013-01-18′,0,78,’Released’,’Justice Returns… Vengeance Returns… Redemption Comes to Gotham.’,7.90,419),(142132,’Sugar Town’,0,”,’Look at the lives of struggling L.A. scene rock stars follows main character, Gwen, on her quest for the top. Working as an assistant to a film production designer, she tries to steal her boy friend who is a music producer by offering sexual favors. The producer meanwhile is trying to orchestrate a comeback for a former glam band comprised of Michael Des Barres, John Taylor and Martin Kemp. Rosanna Arquette plays the former movie star wife of the lead singer, who is fretting because she has just been offered the role as the mother of one of the new ingenious. Beverly D\’Angelo also shows up as a millionairess who agrees to bankroll the group, but only if she gets a roll in the hay with the lead singer. All of the career problems, including drug proclivity, are represented in this film.’,0.375423,’1999-09-17′,0,92,’Released’,”,5.50,2),(144336,’Sabotage’,35000000,”,’In \”Sabotage\”, Arnold Schwarzenegger leads an elite DEA task force that takes on the world\’s deadliest drug cartels. When the team successfully executes a high-stakes raid on a cartel safe house, they think their work is done – until, one-by-one, the team members mysteriously start to be eliminated. As the body count rises, everyone is a suspect.’,27.903999,’2014-03-28′,17508518,110,’Released’,’Leave no loose ends’,5.50,555),(144340,’Admission’,13000000,”,’Strait-laced Princeton University admissions officer Portia Nathan is caught off-guard when she makes a recruiting visit to an alternative high school overseen by her former college classmate, the freewheeling John Pressman. Pressman has surmised that Jeremiah, his gifted yet very unconventional student, might well be the son that Portia secretly gave up for adoption many years ago. Soon, Portia finds herself bending the rules for Jeremiah, putting at risk the life she thought she always wanted â�� but in the process finding her way to a surprising and exhilarating life and romance she never dreamed of having.’,17.632446,’2013-03-21′,18000000,107,’Released’,’Let someone in.’,5.40,304),(145220,’Muppets Most Wanted’,50000000,”,’While on a grand world tour, The Muppets find themselves wrapped into an European jewel-heist caper headed by a Kermit the Frog look-alike and his dastardly sidekick.’,14.808304,’2014-03-20′,80383290,112,’Released’,’Taking the world by farce’,6.20,316),(146198,’Triple 9′,20000000,’http://triple9movie.com/’,’A gang of criminals and corrupt cops plan the murder of a police officer in order to pull off their biggest heist yet across town.’,29.371987,’2016-02-19′,12639297,115,’Released’,’The Code on the Street is Never Black & White’,5.60,797),(146203,’The Last Exorcism Part II’,5000000,”,’As Nell Sweetzer tries to build a new life after the events of the first movie, the evil force that once possessed her returns with an even more horrific plan.’,10.605752,’2013-02-28′,15179302,88,’Released’,’The second coming’,4.40,203),(146216,’RED 2′,84000000,’http://red-themovie.com/’,’Retired C.I.A. agent Frank Moses reunites his unlikely team of elite operatives for a global quest to track down a missing portable nuclear device.’,44.343330,’2013-07-18′,0,116,’Released’,’The best never rest.’,6.40,1526),(146227,’Getaway’,18000000,’http://www.getawaymovie.com/’,’Former race car driver Brent Magna (Hawke) is pitted against the clock. Desperately trying to save the life of his kidnapped wife, Brent commandeers a custom Ford Shelby GT500 Super Snake, taking it and its unwitting owner (Gomez) on a high-speed race against time, at the command of the mysterious villain holding his wife hostage.’,16.520516,’2013-08-29′,10501938,90,’Released’,’Get in. Get out. Getaway.’,4.90,246),(146233,’Prisoners’,46000000,’http://prisonersmovie.warnerbros.com/’,’When Keller Dover\’s daughter and her friend go missing, he takes matters into his own hands as the police pursue multiple leads and the pressure mounts. But just how far will this desperate father go to protect his family?’,88.496873,’2013-09-18′,122126687,153,’Released’,’Every moment matters.’,7.90,3085),(146238,’Runner Runner’,30000000,’http://www.runnerrunnermovie.com/’,’When a poor college student who cracks an online poker game goes bust, he arranges a face-to-face with the man he thinks cheated him, a sly offshore entrepreneur.’,22.975918,’2013-09-24′,62616646,91,’Released’,’The house always wins.’,5.50,543),(146239,’Delivery Man’,26000000,”,’An affable underachiever finds out he\’s fathered 533 children through anonymous donations to a fertility clinic 20 years ago. Now he must decide whether or not to come forward when 142 of them file a lawsuit to reveal his identity.’,30.114383,’2013-10-10′,51164106,105,’Released’,’You\’re never quite ready for what life delivers.’,6.20,551),(146269,’The Young Unknowns’,0,”,’Charlie, his sexy girlfriend, and his moronic best friend drink, drug, and self-destruct over the course of one day at Charlie\’s father home in Los Angeles.’,0.004922,’2000-03-12′,0,87,’Released’,”,0.00,0),(146304,’The Best Man Holiday’,17000000,”,’When college friends reunite after 15 years over the Christmas holidays, they discover just how easy it is for long-forgotten rivalries and romances to be reignited.’,7.210095,’2013-11-15′,71625195,123,’Released’,’Times change. Friendship doesn\’t.’,6.70,110),(146631,’U.F.O.’,2500000,”,’A group of friends awake one morning to find all electricity and power shut off and an immense alien aircraft hovering in the air above their heads. Suddenly this regular group of friends is battling to survive as the entire human race is threatened by the alien army hovering ominously above. Aliens announce a hostile takeover of Earth by cutting off all power and communications, prompting a small band of survivors to fight for the human race in this sci-fi action-adventure featuring Jean-Claude Van Damme’,8.248149,’2012-12-14′,0,101,’Released’,’Try to remain calm’,3.10,47),(146882,’Le bonheur d\’Elza’,0,”,’A young Parisian woman of Caribbean descent returns to her native island of Guadeloupe looking for the father she has never known.’,0.007254,’2011-04-11′,0,78,’Released’,”,0.00,0),(147441,’Exodus: Gods and Kings’,140000000,’http://www.exodusgodsandkings.com/’,’The defiant leader Moses rises up against the Egyptian Pharaoh Ramses, setting 400,000 slaves on a monumental journey of escape from Egypt and its terrifying cycle of deadly plagues.’,101.599427,’2014-12-03′,268031828,150,’Released’,’Once brothers, now enemies.’,5.60,1921),(147767,’Khiladi 786′,0,”,’The 8th installment in the Khiladi series.’,0.114342,’2012-12-07′,126,139,’Released’,”,4.70,11),(147773,’The Way Way Back’,4600000,”,’Over the course of his summer break, a teenager comes into his own thanks in part to the friendship he strikes up with one of the park\’s managers.’,32.144440,’2013-06-06′,23198652,103,’Released’,’We\’ve all been there.’,7.10,688),(150202,’The Haunting in Connecticut 2: Ghosts of Georgia’,0,”,’Sequel to the 2009 mezzo-mezzo supernatural horror purporting to be based on a true story in which a cancer-afflicted teen starts seeing things in the new Victorian house he and his family moved into.’,11.708343,’2013-02-01′,0,101,’Released’,”,5.60,175),(150211,’The Frozen’,0,”,’After a harrowing snowmobile accident, a young couple is stranded in the woods and must survive while waiting for help to arrive. Events take a turn for the worse after the disappearance of Emma\’s boyfriend, leaving her on her own not only to battle the elements, but also to elude a mysterious hunter who is tracking her through the forest.’,1.084387,’2012-10-10′,0,0,’Released’,”,4.20,14),(150540,’Inside Out’,175000000,’http://movies.disney.com/inside-out’,’Growing up can be a bumpy road, and it\’s no exception for Riley, who is uprooted from her Midwest life when her father starts a new job in San Francisco. Like all of us, Riley is guided by her emotions – Joy, Fear, Anger, Disgust and Sadness. The emotions live in Headquarters, the control center inside Riley\’s mind, where they help advise her through everyday life. As Riley and her emotions struggle to adjust to a new life in San Francisco, turmoil ensues in Headquarters. Although Joy, Riley\’s main and most important emotion, tries to keep things positive, the emotions conflict on how best to navigate a new city, house and school.’,128.655964,’2015-06-09′,857611174,94,’Released’,’Meet the little voices inside your head.’,8.00,6560),(150689,’Cinderella’,95000000,’http://movies.disney.com/cinderella’,’When her father unexpectedly passes away, young Ella finds herself at the mercy of her cruel stepmother and her daughters. Never one to give up hope, Ella\’s fortunes begin to change after meeting a dashing stranger in the woods.’,101.187052,’2015-03-12′,543514353,105,’Released’,’Midnight is just the beginning.’,6.70,2374),(152532,’Dallas Buyers Club’,5000000,”,’Loosely based on the true-life tale of Ron Woodroof, a drug-taking, women-loving, homophobic man who in 1986 was diagnosed with HIV/AIDS and given thirty days to live.’,59.454473,’2013-09-07′,55198285,117,’Released’,’Sometimes it takes a hustler to change the world’,7.90,2886),(152599,’The Immigrant’,16000000,’http://theimmigrant-lefilm.com/’,’An innocent immigrant woman is tricked into a life of burlesque and vaudeville until a dazzling magician tries to save her and reunite her with her sister who is being held in the confines of Ellis Island.’,13.832464,’2013-07-03′,5867686,117,’Released’,”,6.20,250),(152601,’Her’,23000000,’http://www.herthemovie.com/’,’In the not so distant future, Theodore, a lonely writer purchases a newly developed operating system designed to meet the user\’s every needs. To Theordore\’s surprise, a romantic relationship develops between him and his operating system. This unconventional love story blends science fiction and romance in a sweet tale that explores the nature of love and the ways that technology isolates and connects us all.’,53.682367,’2013-12-18′,47351251,126,’Released’,’A Spike Jonze Love Story’,7.90,4097),(152737,’August: Osage County’,25000000,”,’A look at the lives of the strong-willed women of the Weston family, whose paths have diverged until a family crisis brings them back to the Midwest house they grew up in, and to the dysfunctional woman who raised them.’,20.561682,’2013-12-26′,74188937,121,’Released’,’Misery loves family’,6.90,483),(152742,’La migliore offerta’,13500000,’http://lamiglioreoffertailfilm.it’,’Virgil Oldman is a world renowned antiques expert and auctioneer. An eccentric genius, he leads a solitary life, going to extreme lengths to keep his distance from the messiness of human relationships. When appointed by the beautiful but emotionally damaged Claire to oversee the valuation and sale of her familyâ��s priceless art collection, Virgil allows himself to form an attachment to her â�� and soon he is engulfed by a passion which will rock his bland existence to the core.’,30.058263,’2013-01-01′,19255873,124,’Released’,’A Master of Possession. A Crime of Obsession’,7.70,704),(152747,’All Is Lost’,9000000,”,’Deep into a solo voyage in the Indian Ocean, an unnamed man (Redford) wakes to find his 39-foot yacht taking on water after a collision with a shipping container left floating on the high seas. With his navigation equipment and radio disabled, the man sails unknowingly into the path of a violent storm. Despite his success in patching the breached hull, his mariner\’s intuition and a strength that belies his age, the man barely survives the tempest. Using only a sextant and nautical maps to chart his progress, he is forced to rely on ocean currents to carry him into a shipping lane in hopes of hailing a passing vessel. But with the sun unrelenting, sharks circling and his meager supplies dwindling, the ever-resourceful sailor soon finds himself staring his mortality in the face.’,28.540614,’2013-10-18′,6108720,106,’Released’,’Never give up.’,6.60,671),(152760,’The Monuments Men’,70000000,’http://www.monumentsmen.com/’,’Based on the true story of the greatest treasure hunt in history, The Monuments Men is an action drama focusing on seven over-the-hill, out-of-shape museum directors, artists, architects, curators, and art historians who went to the front lines of WWII to rescue the worldâ��s artistic masterpieces from Nazi thieves and return them to their rightful owners. With the art hidden behind enemy lines, how could these guys hope to succeed?’,43.873266,’2014-01-24′,154984035,118,’Released’,’It was the greatest art heist in history’,5.80,1523),(153158,’Metegol’,22000000,”,’In the small village where Amadeo lives there is no one good enough to challenge his skills at Table Football. But, while Amadeo may be a genius as a table football player in real life he\’s a loser. He\’s in love with Lara, his childhood friend, but he\’s so shy that he can\’t bring himself to confess his love for her. So he just hangs out in his quaint, timeless village. When Amadeo beats the village bully Flash at Table Football. The scene is set for an epic rivalry. Consumed with anger Flash vows to get even and 10 years later he returns as an International Superstar, a Football Icon and Galatico determined to wreak his revenge.’,14.866351,’2013-07-18′,24000000,106,’Released’,’There\’s only one team this summer.’,6.00,122),(153397,’Restless’,0,”,’A young woman finds out that her mother worked as a spy for the British Secret Service during World War II and has been on the run ever since.’,0.812776,’2012-12-07′,0,180,’Released’,”,4.90,8),(153518,’The Angry Birds Movie’,73000000,’http://www.angrybirds-movie.com/en/’,’An island populated entirely by happy, flightless birds or almost entirely. In this paradise, Red, a bird with a temper problem, speedy Chuck, and the volatile Bomb have always been outsiders. But when the island is visited by mysterious green piggies, itâ��s up to these unlikely outcasts to figure out what the pigs are up to.’,45.720894,’2016-05-11′,349779543,97,’Released’,’Why so angry?’,5.90,1022),(153795,’Straight A\’s’,7000000,”,’Pressured by his deceased mother\’s ghost to return home to the family he abandoned, a former addict grabs a bag of pills and a sack of marijuana and hits the road to Shreveport.’,4.508290,’2013-01-16′,0,88,’Released’,”,5.20,46),(156022,’The Equalizer’,55000000,”,’In The Equalizer, Denzel Washington plays McCall, a man who believes he has put his mysterious past behind him and dedicated himself to beginning a new, quiet life. But when McCall meets Teri (Chloë Grace Moretz), a young girl under the control of ultra-violent Russian gangsters, he canâ��t stand idly by â�� he has to help her. Armed with hidden skills that allow him to serve vengeance against anyone who would brutalize the helpless, McCall comes out of his self-imposed retirement and finds his desire for justice reawakened. If someone has a problem, if the odds are stacked against them, if they have nowhere else to turn, McCall will help. He is The Equalizer.’,79.922059,’2014-09-24′,192330738,132,’Released’,’What do you see when you look at me?’,7.10,2954),(157058,’30 Nights of Paranormal Activity With the Devil Inside the Girl With the Dragon Tattoo’,0,”,’After a stint in a psychiatric hospital, a young woman returns to the house where her father killed the entire cast of The Artist during his exorcism.’,1.737032,’2013-01-14′,0,80,’Released’,’Based on true events… that may not have happened’,2.90,28),(157185,’Tin Can Man’,13,’http://tincanmanthemovie.com/’,’Recently dumped by his girlfirend for another man, working in a job he hates, things could be better for Peter. One night, while he is alone in his apartment, there is a knock on the door. His life will never be the same again.’,0.332679,’2007-01-01′,0,84,’Released’,’Everything You\’ve Heard is True’,2.00,1),(157293,’à¤�बà¥�सà¥�डà¥�’,0,”,’When a capable dancer is provoked by the evil design of his employer, naturally he will be out to prove his mettle.’,1.294967,’2013-02-07′,222000,160,’Released’,’India\’s First 3D Dance movie’,5.60,10),(157336,’Interstellar’,165000000,’http://www.interstellarmovie.net/’,’Interstellar chronicles the adventures of a group of explorers who make use of a newly discovered wormhole to surpass the limitations on human space travel and conquer the vast distances involved in an interstellar voyage.’,724.247784,’2014-11-05′,675120017,169,’Released’,’Mankind was born on Earth. It was never meant to die here.’,8.10,10867),(157350,’Divergent’,85000000,’http://www.thedivergentseries.movie/#divergent’,’In a world divided into factions based on personality types, Tris learns that she\’s been classified as Divergent and won\’t fit in. When she discovers a plot to destroy Divergents, Tris and the mysterious Four must find out what makes Divergents dangerous before it\’s too late.’,80.316463,’2014-03-14′,288747895,139,’Released’,’What makes you different makes you dangerous.’,6.90,4663),(157353,’Transcendence’,100000000,”,’Two leading computer scientists work toward their goal of Technological Singularity, as a radical anti-technology organization fights to prevent them from creating a world where computers can transcend the abilities of the human brain.’,58.991388,’2014-04-16′,103039258,119,’Released’,’Yesterday, Dr. Will Caster was only human…’,5.90,2295),(157354,’Fruitvale Station’,0,’http://www.fruitvalefilm.com/’,’The true story of Oscar, a 22-year-old Bay Area resident, who crosses paths with friends, enemies, family, and strangers on the last day of 2008.’,20.967146,’2013-07-25′,17385830,85,’Released’,’Every step brings you closer to the edge’,7.30,390),(157386,’The Spectacular Now’,2500000,’http://spectacularnowmovie.com/’,’A hard-partying high school senior\’s philosophy on life changes when he meets the not-so-typical \”nice girl.\”‘,25.722747,’2013-08-02′,6854611,95,’Released’,’From the Writers of (500) Days of Summer’,6.80,1048),(157422,’The Wicked Within’,0,’https://www.facebook.com/The-Wicked-Within-266290676718514/’,’After a year passes since the sudden death of a child, a family gathering takes place whilst unexplainable events occur. Tension over peculiar circumstances cracks the veneer of cordiality and dark secrets emerge.’,1.906151,’2015-10-16′,0,91,’Released’,’Every family has its demons. The truth will possess us all.’,4.20,26),(157544,’The Vatican Tapes’,13000000,”,’In a highly secured vault deep within the walls of Vatican City, the Catholic Church holds thousands of old films and video footage documenting exorcisms/supposed exorcisms and other unexplained religious phenomena they feel the world is not ready to see. This is the first tape – Case 83-G – stolen from these archives and exposed to the public by an anonymous source.’,10.475368,’2015-07-24′,1784763,91,’Released’,’For 2,000 years the Vatican has recorded evidence of evil. May God have mercy on their souls.’,4.60,243),(157547,’Oculus’,5000000,”,’A woman tries to exonerate her brother\’s murder conviction by proving that the crime was committed by a supernatural phenomenon.’,35.871248,’2013-09-08′,44030246,104,’Released’,’You see what it wants you to see’,6.30,1050),(157841,’The Young and Prodigious T.S. Spivet’,33000000,”,’A 12-year-old cartographer secretly leaves his family\’s ranch in Montana where he lives with his cowboy father and scientist mother and travels across the country on board a freight train to receive an award at the Smithsonian Institute.’,10.651202,’2013-10-16′,9494789,105,’Released’,”,6.70,232),(157847,’Joe’,4000000,”,’The rough-hewn boss of a lumber crew courts trouble when he steps in to protect the youngest member of his team from an abusive father.’,22.987897,’2014-04-11′,2365467,118,’Released’,”,6.50,338),(157849,’A Most Wanted Man’,15000000,”,’When a half-Chechen, half-Russian, tortured half-to-death immigrant turns up in Hamburg\’s Islamic community, laying claim to his father\’s ill gotten fortune, both German and US security agencies take a close interest: as the clock ticks down and the stakes rise, the race is on to establish this most wanted man\’s true identity – oppressed victim or destruction-bent extremist?’,26.708193,’2014-07-25′,31554855,121,’Released’,”,6.50,541),(157909,’Show Me’,0,”,’When two squeegee kids descend upon Sarah and her luxury sedan, the fuse is lit on a tense cat and mouse tale of captors and captives. Sarah is forced to continue her trip to an isolated cottage where the twisted trio bait and entice one another in a reckless search for truth.’,0.231297,’2004-09-23′,0,97,’Released’,”,5.60,4),(158011,’The Call’,13000000,’http://www.call-movie.com/’,’Jordan Turner is an experienced 911 operator but when she makes an error in judgment and a call ends badly, Jordan is rattled and unsure if she can continue. But when teenager Casey Welson is abducted in the back of a man\’s car and calls 911, Jordan is the one called upon to use all of her experience, insights and quick thinking to help Casey escape, and not just to save her, but to make sure the man is brought to justice.’,34.532418,’2013-03-14′,68572378,94,’Released’,’There are 188 million 911 calls a year. This one made it personal.’,6.60,1257),(158015,’The Purge’,3000000,”,’Given the country\’s overcrowded prisons, the U.S. government begins to allow 12-hour periods of time in which all illegal activity is legal. During one of these free-for-alls, a family must protect themselves from a home invasion.’,54.403033,’2013-05-31′,89328627,86,’Released’,’One night a year, all crime is legal.’,6.00,2428),(158150,’How to Fall in Love’,4000000,”,’An accountant, who never quite grew out of his awkward teenage years, finds himself with a dating coach – she happens to be his high school crush as well. Thanks to his coach, he gets a pretty woman he has his sights on for some time, but realizes they are incompatible. Meanwhile, his dating lessons with his teenage crush reawaken old feelings. Not realizing the feelings are mutual, he finds himself unable to act on them due to his fear of being rejected by the one he truly loves.’,1.923514,’2012-07-21′,0,0,’Released’,”,5.20,20),(158752,’Escape from Tomorrow’,650,”,’In a world of fake castles and anthropomorphic rodents, an epic battle begins when an unemployed father\’s sanity is challenged by a chance encounter with two underage girls on holiday.’,1.352222,’2013-10-11′,0,90,’Released’,’Bad things happen everywhere.’,4.80,87),(158852,’Tomorrowland’,190000000,’http://movies.disney.com/tomorrowland’,’Bound by a shared destiny, a bright, optimistic teen bursting with scientific curiosity and a former boy-genius inventor jaded by disillusionment embark on a danger-filled mission to unearth the secrets of an enigmatic place somewhere in time and space that exists in their collective memory as \”Tomorrowland.\”‘,130.311355,’2015-05-19′,209154322,130,’Released’,’Imagine a world where nothing is impossible.’,6.20,2846),(158895,’This Is Martin Bonner’,0,’http://www.montereymedia.com/theatrical/films/this_is_martin_bonner.html’,’Two men, at opposite ends of the social spectrum, find themselves starting new lives in the same, small town and form an unlikely friendship.’,0.763680,’2013-06-28′,0,83,’Released’,’Sometimes You Have to Lose Your Life in Order to Find It’,6.60,4),(159014,’20 Feet from Stardom’,1000000,”,’Backup singers live in a world that lies just beyond the spotlight. Their voices bring harmony to the biggest bands in popular music, but we\’ve had no idea who these singers are or what lives they lead, until now.’,5.247956,’2013-06-14′,0,89,’Released’,”,7.40,85),(159037,’The Square’,0,’http://www.thesquarefilm.com/’,’The Square, a new film by Jehane Noujaim (Control Room; Rafea: Solar Mama), looks at the hard realities faced day-to-day by people working to build Egyptâ��s new democracy. Catapulting us into the action spread across 2011 and 2012, the film provides a kaleidoscopic, visceral experience of the struggle. Cairoâ��s Tahrir Square is the heart and soul of the film, which follows several young activists. Armed with values, determination, music, humor, an abundance of social media, and sheer obstinacy, they know that the thorny path to democracy only began with Hosni Mubarekâ��s fall. The life-and-death struggle between the people and the power of the state is still playing out.’,4.892203,’2013-06-07′,0,88,’Released’,’What does it mean to risk your life for your ideals? How far will five revolutionaries go in defending their beliefs in the fight for their nation?’,7.80,55),(159770,’The Dirties’,0,’http://www.thedirtiesthemovie.com/’,’Two best friends are filming a comedy about getting revenge on the bullies at their high school. One of them isn\’t joking.’,0.833937,’2013-10-04′,0,83,’Released’,”,6.00,42),(159824,’Hotel Transylvania 2′,80000000,”,’When the old-old-old-fashioned vampire Vlad arrives at the hotel for an impromptu family get-together, Hotel Transylvania is in for a collision of supernatural old-school and modern day cool.’,61.692197,’2015-09-21′,473226958,89,’Released’,’They\’re back to raise a little terror’,6.70,1497),(160588,’Blue Jasmine’,18000000,”,’Jasmine French used to be on the top of the heap as a New York socialite, but now is returning to her estranged sister in San Francisco utterly ruined. As Jasmine struggles with her haunting memories of a privileged past bearing dark realities she ignored, she tries to recover in her present. Unfortunately, it all proves a losing battle as Jasmine\’s narcissistic hangups and their consequences begin to overwhelm her. In doing so, her old pretensions and new deceits begin to foul up everyone\’s lives, especially her own.’,34.694216,’2013-07-25′,99206215,98,’Released’,’Blue Moon. I used to know the words. Now they\’re all a jumble.’,7.00,1098),(161795,’Déjà Vu’,0,”,’L.A. shop owner Dana and Englishman Sean meet and fall in love at first sight, but Sean is married and Dana is to marry her business partner Alex.’,0.605645,’1998-04-22′,0,117,’Released’,’Your future is set…’,8.00,1),(162396,’The Big Swap’,0,”,’In this British drama, Ellen (Sorcha Brooks) and Jack (Antony Edridge) recall a time when they traded partners, and their remarks set a partner-swapping party in motion among four other couples. As the long night\’s journey into sex progresses, various fears and anxieties surface. Shown at Montreal\’s 1997 World Film Festival and the 1997 San Sebastian Film Festival.’,0.627763,’1998-06-11′,0,0,’Released’,”,0.00,0),(162903,’The Fifth Estate’,28000000,”,’A look at the relationship between WikiLeaks founder Julian Assange and his early supporter and eventual colleague Daniel Domscheit-Berg, and how the website\’s growth and influence led to an irreparable rift between the two friends.’,20.267062,’2013-10-11′,8555008,128,’Released’,’You can\’t expose the world\’s secrets without exposing yourself’,5.70,364),(164372,’СнежнаÑ� коÑ�олева’,7000000,”,’The ice-cold Snow Queen wishes to turn the world into a frozen landscape, with no light, no joy, no happiness, and no free will. A young man, Kai, is rumored to be the son of a man who is the queen\’s only remaining threat. He is abducted and held captive in the queen\’s palace, and it\’s up to his sister, Gerda, to rescue him. Gerda journeys across an icy land, facing difficult obstacles and meeting wonderful new friends that help her in her quest to set Kai free, defeat the Snow Queen, and save the world from eternal frost.’,5.338610,’2012-10-11′,12400000,76,’Released’,’Cold can freeze your heart, love can set you free’,5.10,47),(164457,’Out of the Furnace’,22000000,”,’Two brothers live in the economically-depressed Rust Belt, when a cruel twist of fate lands one in prison. His brother is then lured into one of the most violent crime rings in the Northeast.’,29.230298,’2013-12-06′,15400000,116,’Released’,’Sometimes your battles choose you.’,6.50,720),(164558,’One Direction: This Is Us’,10000000,’http://www.1dthisisus-movie.com/feature/mosaic/’,’Go behind the scenes during One Directions sell out \”Take Me Home\” tour and experience life on the road.’,7.944457,’2013-08-28′,0,92,’Released’,’A motion picture event.’,8.00,201),(165864,’Hansel and Gretel Get Baked’,4500000,’https://www.facebook.com/HanselGretelGetBaked’,’An intense new marijuana strain named â��Black Forestâ�� is taking Los Angeles by storm, and Gretelâ��s stoner boyfriend canâ��t get enough. But when the old woman growing the popular drug (Lara Flynn Boyle) turns out to be an evil witch, cooking and eating her wasted patrons for their youth, Gretel and her brother Hansel must save him from a gruesome death â�� or face the last high of their lives.’,2.503612,’2013-02-19′,0,86,’Released’,”,4.80,67),(166424,’Fantastic Four’,120000000,’http://www.fantasticfourmovie.com/’,’Four young outsiders teleport to a dangerous universe, which alters their physical form in shocking ways. Their lives irrevocably upended, the team must learn to harness their daunting new abilities and work together to save Earth from a former friend turned enemy.’,38.126095,’2015-08-05′,167977596,100,’Released’,’Change is coming.’,4.40,2278),(166624,’Treading Water’,4700000,”,’At first glance, Mica seems a perfectly normal boy. But first glances can often be deceiving… For one, Mica\’s house is now a museum honouring Guillermo Garibai, the legendary Mexican crooner. Mica spends most of his time there, giving guided tours to aging Garibai fans. But stranger still, Mica smells. He smells like fish. Numerous doctors, his life-long therapist and even his own parents are at a loss. No one wants to be Mica\’s friend. Girls won\’t talk to him. His life appears pointless, uneventful, doomed. That is, until Laura walks into it.’,0.217538,’2013-09-13′,0,92,’Released’,’Mica is a perfectly normal boy. Well he would be if he didn\’t smell of fish.’,5.60,6),(167073,’Brooklyn’,11000000,’http://www.foxsearchlight.com/brooklyn/’,’In 1950s Ireland and New York, young Ellis Lacey has to choose between two men and two countries.’,39.337949,’2015-10-20′,62076141,111,’Released’,’Two countries, two loves, one heart’,7.20,1213),(168027,’Freaky Deaky’,0,”,’Set in 1974, a pair of \’60s radicals rely on their bomb-making skills on their way to becoming capitalists.’,4.448353,’2012-04-22′,0,90,’Released’,’Crime is such a trippy thing’,4.90,18),(168259,’Furious 7′,190000000,’http://www.furious7.com/’,’Deckard Shaw seeks revenge against Dominic Toretto and his family for his comatose brother.’,102.322217,’2015-04-01′,1506249360,137,’Released’,’Vengeance Hits Home’,7.30,4176),(168530,’Ride Along’,25000000,”,’For the past two years, high-school security guard Ben has been trying to show decorated APD detective James that he\’s more than just a video-game junkie who\’s unworthy of James\’ sister, Angela. When Ben finally gets accepted into the academy, he thinks he\’s earned the seasoned policeman\’s respect and asks for his blessing to marry Angela. Knowing that a ride along will demonstrate if Ben has what it takes to take care of his sister, James invites him on a shift designed to scare the hell out of the trainee. But when the wild night leads them to the most notorious criminal in the city, James will find that his new partner\’s rapid-fire mouth is just as dangerous as the bullets speeding at it.’,28.468000,’2014-01-07′,153997819,99,’Released’,’Propose to this cop\’s sister? Rookie mistake.’,6.10,853),(168672,’American Hustle’,40000000,’http://www.americanhustle-movie.com/’,’A con man, Irving Rosenfeld, along with his seductive partner Sydney Prosser, is forced to work for a wild FBI agent, Richie DiMaso, who pushes them into a world of Jersey powerbrokers and mafia.’,49.664128,’2013-12-12′,251171807,138,’Released’,’Everyone Hustles To Survive’,6.80,2807),(168705,’BloodRayne’,25000000,’http://www.bloodrayne-themovie.com/main/index.html’,’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.’,7.008216,’2005-10-22′,2405420,95,’Released’,’Revenge never tasted so sweet.’,3.50,118),(169917,’A Walk Among the Tombstones’,28000000,”,’Private investigator Matthew Scudder is hired by a drug kingpin to find out who kidnapped and murdered his wife.’,61.309619,’2014-09-18′,53181600,113,’Released’,’Some people are afraid of all the wrong things’,6.20,1131),(170480,’The Deported’,0,’https://www.facebook.com/pages/The-Deported/461198970651596′,’An Italian-American actor is deported to Mexico by some crooked INS Agents, and a pack of orphans helps him find his way back to America’,0.194848,’2010-06-15′,0,90,’Released’,”,0.00,0),(170687,’The Boxtrolls’,60000000,”,’An orphaned boy raised by underground creatures called Boxtrolls comes up from the sewers and out of his box to save his family and the town from the evil exterminator, Archibald Snatcher.’,30.656345,’2014-09-10′,108255770,97,’Released’,’When troubles strikes friends stack together’,6.60,668),(171274,’Inherent Vice’,20000000,’http://inherentvicemovie.com/’,’In Los Angeles at the turn of the 1970s, drug-fueled detective Larry \”Doc\” Sportello investigates the disappearance of an ex-girlfriend.’,45.742217,’2014-12-25′,11110975,148,’Released’,’Under the paving stones, the beach!’,6.50,833),(171424,’The Green Inferno’,5000000,”,’A group of student activists travel from New York City to the Amazon to save the rainforest. However, once they arrive in this vast green landscape, they soon discover that they are not aloneâ�¦ and that no good deed goes unpunished.’,17.845161,’2014-09-04′,6833445,100,’Released’,’Fear will eat you alive.’,5.00,349),(171759,’The Lost Medallion: The Adventures of Billy Stone’,0,’http://www.thelostmedallion.com/’,’A man who stops into a foster home to drop off some donations soon tells the kids a story about two teenage friends who uncover a long-lost medallion that transports them back in time.’,2.952932,’2013-03-01′,0,97,’Released’,’Finding it is only the beginning.’,5.60,13),(172385,’Rio 2′,103000000,’http://www.riomovies.com/’,’It\’s a jungle out there for Blu, Jewel and their three kids after they\’re hurtled from Rio de Janeiro to the wilds of the Amazon. As Blu tries to fit in, he goes beak-to-beak with the vengeful Nigel, and meets the most fearsome adversary of all: his father-in-law.’,42.400240,’2014-03-19′,500188435,102,’Released’,’He\’s villainous, she\’s venomous.’,6.30,978),(172391,’Khumba’,20000000,’http://www.triggerfish.co.za/khumba/’,’A half-striped zebra is blamed for the drought and leaves his herd in search of his missing stripes. He is joined on his quest by an overprotective wildebeest and a flamboyant ostrich; they defeat the tyrannical leopard and save his herd.’,6.459787,’2013-07-18′,27187375,85,’Released’,’Half a zebra, a whole lot of adventure!’,5.80,72),(172533,’Drinking Buddies’,0,’http://www.magpictures.com/drinkingbuddies’,’Weekend trips, office parties, late night conversations, drinking on the job, marriage pressure, biological clocks, holding eye contact a second too longâ�¦ you know what makes the line between â��friendsâ�� and â��more than friendsâ�� really blurry? Beer.’,17.378455,’2013-08-23′,343341,90,’Released’,’A comedy about knowing when to say when.’,6.00,356),(173224,’Along the Roadside’,250,”,’Road movie about two young people from different parts of the world, their vastly different clashing cultures and their journey of self-discovery during the drive to the largest music festival in California.’,0.166655,’2013-02-28′,0,118,’Released’,”,7.70,3),(173931,’å��ä¾ ä¼ å¥�’,19000000,”,’In order to keep his promise to an aging kung fu master, Fu the Rabbit must venture out of the comfort of his kitchen and team up with Penny, a kung fu prodigy, on a heroic quest to save their kung fu academy.’,0.738652,’2011-01-01′,2570000,89,’Released’,’From zero to hero.’,3.00,3),(174311,’All Is Bright’,0,”,’Two French Canadian neâ��er-do-wells travel to New York City with a scheme to a get rich quick selling Christmas trees. Easygoing charmer Rene (Paul Rudd) clashes with misanthropic ex-con Dennis (Paul Giamatti), whose wife Rene just stole. Still, this odd couple must make an honest go of it in this fresh buddy comedy co-starring Sally Hawkins, by the director of the indie breakout hit Junebug.’,3.613577,’2013-09-10′,0,107,’Released’,’All is busted. All is broke. All is bitter. All is BRIGHT.’,5.30,36),(174362,’Bending Steel’,0,’http://www.bendingsteelmovie.com/’,’The Cyclone, The Freakshow, The Mermaid Parade: all Coney Island icons. But Chris â��Wonderâ�� Schoeck has always preferred the Coney Island Strongman. Bending Steel follows the sweet, unassuming Schoeck as he parlays his extraordinary strength into the pursuit of his lifelong dream. Training with an elite group of men whose hands bend, drag, twist and shred metal, he tackles an enormous physical and mental challenge, taking a surprisingly emotional journey as a result.’,0.048726,’2013-04-20′,0,93,’Released’,’The Limiting Factor Is The Mind’,5.00,1),(174751,’Jane Got a Gun’,25000000,’https://www.facebook.com/JaneGotAGunFilm/’,’After her outlaw husband returns home shot with eight bullets and barely alive, Jane reluctantly reaches out to an ex-lover who she hasn\’t seen in over ten years to help her defend her farm when the time comes that her husband\’s gang eventually tracks him down to finish the job.’,15.333575,’2016-01-01′,1397284,98,’Released’,”,5.40,285),(175291,’Cheap Thrills’,0,”,’Recently fired and facing eviction, a new dad has his life turned upside down when he meets a wealthy couple who offer a path to financial security… but at a price.’,10.826253,’2013-03-08′,0,85,’Released’,’Get ready for the night of your life’,6.30,155),(175528,’Baggage Claim’,8500000,”,’Pledging to keep herself from being the oldest and the only woman in her entire family never to wed, Montana embarks on a thirty-day, thirty-thousand-mile expedition to charm a potential suitor into becoming her fiancé.’,11.436405,’2013-09-27′,22456509,96,’Released’,’She\’s done flying solo.’,5.60,85),(175541,’Black Nativity’,17500000,’http://www.foxsearchlight.com/blacknativity/’,’A street-wise teen from Baltimore who has been raised by a single mother travels to New York City to spend the Christmas holiday with his estranged relatives, where he embarks on a surprising and inspirational journey.’,7.180403,’2013-11-27′,7018189,93,’Released’,’The Musical Event of the Holiday Season’,5.80,16),(175555,’A Madea Christmas’,0,’http://www.amadeachristmasmovie.com’,’Madea dispenses her unique form of holiday spirit on rural town when she\’s coaxed into helping a friend pay her daughter a surprise visit in the country for Christmas.’,5.377155,’2013-12-13′,0,100,’Released’,’This Little Fool Thinks She\’s Getting A Damn Pony’,7.00,35),(175574,’Free Birds’,55000000,”,’In this irreverent, hilarious, adventurous buddy comedy for audiences of all ages, directed by Jimmy Hayward (Horton Hears a Who!), two turkeys from opposite sides of the tracks must put aside their differences and team up to travel back in time to change the course of history – and get turkey off the holiday menu for good.’,14.414937,’2013-10-30′,110000000,91,’Released’,’Hang On To Your Nuggets’,5.70,254),(176074,’Reality Show’,0,’http://www.realityshowthefilm.com/’,’The Warwick family are unknowingly being filmed for a new reality show. Problem is, they\’re boring. So the producer must add conflict and drama to their lives. Their lives begin to unravel with shocking consequences.’,0.472123,’2015-01-01′,0,92,’Released’,”,5.50,2),(176077,’Enter the Dangerous Mind’,0,”,’A psychological thriller set in the world of underground dubstep, Snap is the story of Jim Whitman, a brilliant but painfully introverted musician who develops a crush on a young social worker.’,1.998826,’2013-03-11′,0,88,’Released’,”,4.80,14),(176124,’Home Run’,1200000,’http://www.homerunthemovie.com/’,’A pro ball player with a substance abuse problem is forced into rehab in his hometown, finding new hope when he gets honest about his checkered past, and takes on coaching duties for a misfit Little League team’,3.085411,’2013-04-19′,2861020,114,’Released’,’Freedom is possible’,6.30,24),(177572,’Big Hero 6′,165000000,’http://movies.disney.com/big-hero-6′,’The special bond that develops between plus-sized inflatable robot Baymax, and prodigy Hiro Hamada, who team up with a group of friends to form a band of high-tech heroes.’,203.734590,’2014-10-24′,652105443,102,’Released’,’From the creators of Wreck-it Ralph and Frozen’,7.80,6135),(177677,’Mission: Impossible – Rogue Nation’,150000000,’http://www.missionimpossible.com’,’Ethan and team take on their most impossible mission yet, eradicating the Syndicate – an International rogue organization as highly skilled as they are, committed to destroying the IMF.’,114.522237,’2015-07-23′,682330139,131,’Released’,’Desperate Times. Desperate Measures.’,7.10,3224),(178862,’Aroused’,0,’http://thearousedproject.com/’,’Get up close and personal with 16 of the most successful women in the adult film industry as they shed their clothes for an intimate photo shoot with director Deborah Anderson. As questions are asked, personal stories about their lives are revealed, from why they chose the business of sex to how they got into it in the first place. These porn stars have always been discreet about their private lives in the past, yet Anderson has a way of opening up a dialog allowing them to share more than just their naked skin on screen. Their true inner vulnerability is touching, yet the characters they have created are confident and intoxicating. Once you hear their stories, you\’ll never look at them in the same way again.’,2.557258,’2013-02-20′,0,73,’Released’,’16 porn stars reveal more than just their naked skin.’,7.20,11),(179144,’La grande bellezza’,12400000,’http://www.indigofilm.it/produzioni/film/61/la-grande-bellezza/’,’Jep Gambardella has seduced his way through the lavish nightlife of Rome for decades, but after his 65th birthday and a shock from the past, Jep looks past the nightclubs and parties to find a timeless landscape of absurd, exquisite beauty.’,32.523573,’2013-05-21′,8371085,142,’Released’,”,7.30,720),(180296,’They Came Together’,0,”,’A small business owner is about to lose her shop to a major corporate development.’,12.036888,’2014-06-27′,0,84,’Released’,’He came…She came…They both came’,5.30,171),(180383,’Deceptive Practice: The Mysteries and Mentors of Ricky Jay’,500000,’http://www.rickyjaymovie.com/’,’The life and career of renowned magician and sleight of hand artist Ricky Jay.’,0.425195,’2012-10-04′,0,88,’Released’,”,7.10,17),(181283,’Child 44′,50000000,”,’Set in Stalin-era Soviet Union, a disgraced MGB agent is dispatched to investigate a series of child murders — a case that begins to connect with the very top of party leadership.’,40.371098,’2015-03-15′,3324330,137,’Released’,’How do you find a killer who doesnâ��t exist?’,6.10,547),(181330,’Kevin Hart: Let Me Explain’,0,’http://kevinhartnation.com/portfolio/let-me-explain-2012/’,’Captures the laughter, energy and mayhem from Hart\’s 2012 \”Let Me Explain\” concert tour, which spanned 10 countries and 80 cities, and generated over $32 million in ticket sales.’,9.799357,’2013-07-03′,32230907,74,’Released’,’Witness the rise of a legend’,7.10,95),(181533,’Night at the Museum: Secret of the Tomb’,127000000,”,’When the magic powers of The Tablet of Ahkmenrah begin to die out, Larry Daley (Ben Stiller) spans the globe, uniting favorite and new characters while embarking on an epic quest to save the magic before it is gone forever.’,115.597753,’2014-12-17′,349424282,97,’Released’,’One Final Night to Save the Day.’,6.10,1851),(181940,’Arnolds Park’,0,”,’When strangers Frank Delano and his Uncle Bobby purchase the local amusement park of a \”peaceful\” resort town they stir up guilt and suspicion among the locals over a murder and suicide the town would rather forget.’,0.006069,’2007-07-20′,0,103,’Released’,”,0.00,0),(182291,’On The Downlow’,0,”,’Isaac and Angel are two young Latinos involved in a south side Chicago gang. They have a secret in a world where secrets are forbidden.’,0.029757,’2004-04-11′,0,90,’Released’,’Two gangs. One secret. One crossroad.’,6.00,2),(182873,’Green Street Hooligans: Underground’,0,”,’An old firm leader returns to Green Street for Revanche after receiving a call that his little brother was killed, but is he able to cope with a new type of hooliganism and can he find his killer?’,5.000500,’2013-01-01′,0,90,’Released’,”,5.40,33),(183894,’Emma’,0,”,’Emma Woodhouse seems to be perfectly content, a loving father whom she cares for, friends, and a home. But Emma has a terrible habit – matchmaking. She cannot resist finding suitors for her friends, most of all Harriet Smith. Emma is desperate for Harriet to find happiness, but every suitor she finds for her friend ends up attracted to Emma herself. But is Emma so focused on Harriet\’s happiness that she is not considering her own happiness in love?’,2.135689,’2009-10-11′,0,240,’Released’,”,7.60,38),(184098,’Think Like a Man Too’,24000000,”,’All the couples are back for a wedding in Las Vegas, but plans for a romantic weekend go awry when their various misadventures get them into some compromising situations that threaten to derail the big event.’,15.237142,’2014-06-20′,70181428,105,’Released’,”,6.40,225),(184315,’Hercules’,100000000,”,’Fourteen hundred years ago, a tormented soul walked the earth that was neither man nor god. Hercules was the powerful son of the god king Zeus, for this he received nothing but suffering his entire life. After twelve arduous labors and the loss of his family, this dark, world-weary soul turned his back on the gods finding his only solace in bloody battle. Over the years he warmed to the company of six similar souls, their only bond being their love of fighting and presence of death. These men and woman never question where they go to fight or why or whom, just how much they will be paid. Now the King of Thrace has hired these mercenaries to train his men to become the greatest army of all time. It is time for this bunch of lost souls to finally have their eyes opened to how far they have fallen when they must train an army to become as ruthless and blood thirsty as their reputation has become.’,76.842247,’2014-07-23′,243400000,99,’Released’,’Before he was a legend, he was a man.’,5.60,1680),(184341,’Hands of Stone’,20000000,”,’The legendary Roberto Duran and his equally legendary trainer Ray Arcel change each other\’s lives.’,7.444189,’2016-08-26′,0,105,’Released’,’No más. No surrender.’,6.10,109),(184345,’A Haunted House 2′,0,”,’Having exorcised the demons of his ex, Malcolm is starting fresh with his new girlfriend and her two children. After moving into their dream home, however, Malcolm is once again plagued by bizarre paranormal events.’,18.428909,’2014-04-17′,0,87,’Released’,’It\’ll scare the #2 out of you.’,5.40,346),(184346,’Deliver Us from Evil’,30000000,”,’When a frightening wave of violence sweeps through New York City, troubled cop Sarchie fails to find a rational explanation for the bizarre crimes. However, his eyes are opened to a frightening alternate reality when renegade Jesuit priest, Mendoza convinces him that demonic possession may be to blame for the gruesome murders. Together, they wage a valiant supernatural struggle to rid the city of an otherworldly evil.’,29.359201,’2014-07-01′,0,118,’Released’,”,5.90,690),(184374,’Cinco de Mayo: La Batalla’,10000000,’http://www.facebook.com/CincodeMayo.LaPelicula’,’On May 5th, 1862, a few thousand Mexican soldiers put their lives on the line against the world\’s largest and most powerful army in one legendary battle for freedom and for Mexico.’,0.072085,’2013-05-03′,0,125,’Released’,”,5.80,14),(185008,’Yeh Jawaani Hai Deewani’,7700000,’http://www.facebook.com/YehJawaaniHaiDeewani’,’Yeh Jawaani Hai Deewani features two polar opposite characters, who at one point were classmates in Modern School. The first is Naina Talwar (Deepika Padukone), a studious bespectacled young girl. The second is Bunny (Ranbir Kapoor), a carefree young travel-show host, intent on breaking out of the pattern of getting an education, a career, a wife, children, retirement, and eventually death.’,3.353176,’2013-05-31′,46000000,159,’Released’,”,7.20,79),(185465,’Manito’,0,”,’Fifteen years ago, their Washington Heights neighborhood was dubbed the crack-cocaine capital of the world, but today it is transforming into one of the most vibrant, Spanish-speaking communities in the United States. While the drug dealers continue to disappear, their violent legacy still casts a shadow over the neighborhood and its residents. Junior, an ex-convict struggling to get his life back on track, is a product of this legacy. His younger brother Manny, the salutatorian of his high school class, embodies the hope of the future. On the night of his graduation party, Manny finds himself faced with an ill-fated decision that could change his life forever’,0.039264,’2002-01-15′,0,78,’Released’,”,5.50,2),(185567,’Zulu’,16000000,”,’As a child, Ali Neuman narrowly escaped being murdered by Inkhata, a militant political party at war with Nelson Mandela\’s African National Congress. Only he and his mother survived the carnage of those years. But as with many survivors, the psychological scars remain.’,14.529496,’2013-12-04′,0,110,’Released’,”,6.70,172),(186935,’Heli’,1000000,”,’Heli must try and protect his young family when his 12-year-old sister inadvertently involves them in the brutal drug world. He must battle against the drug cartel that have been angered as well as the corrupt police force.’,3.629777,’2013-08-09′,0,105,’Released’,’Police corruption, drug trafficking, sexual exploitation, love, guilt and revenge.’,6.20,32),(187017,’22 Jump Street’,50000000,’http://www.22jumpstreetmovie.com’,’After making their way through high school (twice), big changes are in store for officers Schmidt and Jenko when they go deep undercover at a local college. But when Jenko meets a kindred spirit on the football team, and Schmidt infiltrates the bohemian art major scene, they begin to question their partnership. Now they don\’t have to just crack the case – they have to figure out if they can have a mature relationship. If these two overgrown adolescents can grow from freshmen into real men, college might be the best thing that ever happened to them.’,52.380982,’2014-06-05′,188441614,112,’Released’,’They\’re not 21 anymore’,7.00,3319),(188161,’A Million Ways to Die in the West’,0,”,’As a cowardly farmer begins to fall for the mysterious new woman in town, he must put his new-found courage to the test when her husband, a notorious gun-slinger, announces his arrival.’,32.808675,’2014-05-22′,0,116,’Released’,’Bring protection.’,5.80,1468),(188166,’Blue Ruin’,0,’http://blueruinmovie.com/’,’The quiet life of a beach bum is upended by dreadful news. He sets off for his childhood home to carry out an act of vengeance but proves an inept assassin and finds himself in a brutal fight to protect his estranged family.’,25.349758,’2014-04-25′,258384,90,’Released’,’Revenge comes home’,6.90,462),(188207,’The Legend of Hercules’,70000000,”,’In Ancient Greece 1200 B.C., a queen succumbs to the lust of Zeus to bear a son promised to overthrow the tyrannical rule of the king and restore peace to a land in hardship. But this prince, Hercules, knows nothing of his real identity or his destiny. He desires only one thing: the love of Hebe, Princess of Crete, who has been promised to his own brother. When Hercules learns of his greater purpose, he must choose: to flee with his true love or to fulfill his destiny and become the true hero of his time. The story behind one of the greatest myths is revealed in this action-packed epic – a tale of love, sacrifice and the strength of the human spirit.’,25.020428,’2014-01-10′,61279452,99,’Released’,’Every Man Has a Destiny’,4.40,533),(188652,’The Ghastly Love of Johnny X’,0,’http://johnnyxmovie.com/’,’A truly mad concoction, blending 1950s juvenile delinquents, sci-fi melodrama, song-and-dance, and a touch of horror, everything in just the right combination to create an engaging big screen spectacle! This curious and curiously entertaining story involves one Jonathan Xavier and his devoted misfit gang who, incidentally, have been exiled to Earth from the far reaches of outer space. Johnny\’s former girlfriend Bliss has left him and stolen his Resurrection Suit, a cosmic, mind-bending uniform that gives the owner power over others. Along the way, there will be several highly stylized musical numbers, lots of genuinely humorous dialogue, and a wacky plot-twist or two, all beautifully captured on the very last of Kodak\’s black-and-white Plus-X film stock.’,0.209475,’2013-04-26′,0,106,’Released’,’They Sing! They Dance! They\’re Juvenile Delinquents from Outer Space!’,6.60,8),(188927,’Star Trek Beyond’,185000000,’http://www.startrekmovie.com/’,’The USS Enterprise crew explores the furthest reaches of uncharted space, where they encounter a mysterious new enemy who puts them and everything the Federation stands for to the test.’,65.352913,’2016-07-07′,343471816,122,’Released’,”,6.60,2568),(189711,’Love in the Time of Monsters’,0,”,’Two sisters travel to a cheesy tourist trap where they battle toxic monsters dressed in bigfoot costumes in order to save the ones they love.’,0.133619,’2014-03-08′,0,0,’Released’,”,5.00,2),(190847,’The Last Days on Mars’,0,”,’On the last day of the first manned mission to Mars, a crew member of Tantalus Base believes he has made an astounding discovery â�� fossilized evidence of bacterial life. Unwilling to let the relief crew claims all the glory, he disobeys orders to pack up and goes out on an unauthorized expedition to collect further samples. But a routine excavation turns to disaster when the porous ground collapses and he falls into a deep crevice and near certain death. His devastated colleagues attempt to recover his body. However, when another vanishes, they start to suspect that the life-form they have discovered is not without danger.’,18.764453,’2013-08-11′,0,98,’Released’,’The search for life is about to end.’,5.20,302),(190859,’American Sniper’,58800000,’http://www.americansnipermovie.com’,’U.S. Navy SEAL Chris Kyle takes his sole missionâ��protect his comradesâ��to heart and becomes one of the most lethal snipers in American history. His pinpoint accuracy not only saves countless lives but also makes him a prime target of insurgents. Despite grave danger and his struggle to be a good husband and father to his family back in the States, Kyle serves four tours of duty in Iraq. However, when he finally returns home, he finds that he cannot leave the war behind.’,87.534370,’2014-12-11′,542307423,133,’Released’,’The most lethal sniper in U.S. history.’,7.40,4469),(190955,’Blood Ties’,25500000,”,’Two brothers, on either side of the law, face off over organized crime in Brooklyn during the 1970s.’,12.756344,’2013-08-22′,2415472,128,’Released’,’Crime runs in the family.’,6.00,171),(191229,’Iguana’,0,”,’A grotesquely disfigured harpooner called Iguana is severely mistreated by his fellow sailors on a whaling ship in the 19th century. One night he escapes and takes up residence on a remote island. He makes himself ruler of the island and declares war on mankind. Anyone unfortunate enough to wind up on the island with Iguana is subjected to his cruel tyranny.’,0.214704,’1988-04-01′,0,88,’Released’,”,6.00,1),(191714,’Dabba’,1000000,”,’A mistaken delivery in Mumbai\’s famously efficient lunchbox delivery system (Mumbai\’s Dabbawallahs) connects a young housewife to a stranger in the dusk of his life. They build a fantasy world together through notes in the lunchbox. Gradually, this fantasy threatens to overwhelm their reality.’,14.017809,’2013-09-19′,4235151,104,’Released’,”,7.30,221),(192102,’3 Days to Kill’,28000000,”,’A dangerous international spy is determined to give up his high stakes life to finally build a closer relationship with his estranged wife and daughter. But first, he must complete one last mission – even if it means juggling the two toughest assignments yet: hunting down the world\’s most ruthless terrorist and looking after his teenage daughter for the first time in ten years, while his wife is out of town.’,41.638961,’2014-02-14′,52597999,113,’Released’,”,6.00,883),(192132,’Palo Alto’,0,”,’Palo Alto weaves together three stories of teenage lust, boredom, and self-destruction: shy, sensitive April, torn between an illicit flirtation with her soccer coach and an unrequited crush on sweet stoner Teddy; Emily, who offers sexual favors to any boy to cross her path; and the increasingly dangerous exploits of Teddy and his best friend Fred, whose behavior may or may not be sociopathic.’,16.570708,’2014-05-09′,0,100,’Released’,”,6.40,348),(192134,’Dom Hemingway’,0,”,’After spending 12 years in prison for keeping his mouth shut, notorious safe-cracker Dom Hemingway is back on the streets of London looking to collect what he\’s owed.’,10.416332,’2013-11-15′,523511,93,’Released’,’I want my money plus interest…. and a present’,5.80,212),(192136,’Mandela: Long Walk to Freedom’,35000000,”,’A chronicle of Nelson Mandela\’s life journey from his childhood in a rural village through to his inauguration as the first democratically elected president of South Africa.’,15.509570,’2013-12-06′,27330000,141,’Released’,’It is an ideal for which I am prepared to die.’,6.50,224),(192141,’No Escape’,5000000,”,’In their new overseas home, an American family soon finds themselves caught in the middle of a coup, and they frantically look for a safe escape in an environment where foreigners are being immediately executed.’,38.006982,’2015-08-26′,54418872,103,’Released’,’No rescue. No refuge.’,6.70,777),(192210,’Open Road’,3000000,”,’Angie, a young Brazilian artist, abandons her old life and embarks on a journey around the country. Running from her past, and searching for her foundation in life, Angie finds not only herself but love in its many forms.’,2.680629,’2013-04-12′,0,85,’Released’,”,5.20,18),(192577,’ã�ã�£ã��ã��ã�³ã��ã�¼ã�ã��ã�¯’,30000000,”,’Space Pirate Captain Harlock and his fearless crew face off against the space invaders who seek to conquer the planet Earth.’,14.726338,’2013-09-07′,17137302,115,’Released’,”,6.50,356),(193603,’Hayride’,60000,”,’A college student returning home for Halloween is forced to face his childhood fears when an escaped killer takes refuge in his family\’s \”Haunted Hayride\”.’,0.412342,’2012-10-13′,0,93,’Released’,’Southern Fried Horror’,5.10,6),(193610,’The Other Woman’,40000000,”,’After discovering her boyfriend is married, Carly soon meets the wife he\’s been cheating on. And when yet another affair is discovered, all three women team up to plot mutual revenge on the three-timing SOB.’,34.519636,’2014-04-16′,196781193,109,’Released’,’The oddest friends are about to get even’,6.20,1437),(193613,’Metallica: Through the Never’,18000000,”,’Trip, a young roadie for Metallica, is sent on an urgent mission during the band\’s show. But what seems like a simple assignment turns into a surreal adventure.’,7.871686,’2013-09-25′,7972967,93,’Released’,’Experience Metallica like never before’,6.70,83),(193722,’R100′,5500000,’http://www.r-100.com/’,’Ruthless dominatrixes pursue a mild-mannered salesman who wants to get out of his unbreakable contract with a secret bondage club.’,3.213920,’2013-10-05′,0,100,’Released’,’M For Father’,5.40,31),(193756,’Lone Survivor’,40000000,’http://www.lonesurvivorfilm.com/’,’Based on the failed June 28, 2005 mission \”Operation Red Wing.\” Four members of SEAL Team 10, were tasked with the mission to capture or kill notorious Taliban leader, Ahmad Shah. Only one member of the team survived.’,37.084384,’2013-12-24′,149295601,121,’Released’,’Based on True Acts of Courage’,7.40,1526),(193893,’Let\’s Be Cops’,17000000,”,’It\’s the ultimate buddy cop movie except for one thing: they\’re not cops. When two struggling pals dress as police officers for a costume party, they become neighborhood sensations. But when these newly-minted â��heroesâ�� get tangled in a real life web of mobsters and dirty detectives, they must put their fake badges on the line.’,70.668923,’2014-08-13′,136621271,104,’Released’,’Fake Cops. Real Trouble.’,6.40,1219),(194588,’Short Cut to Nirvana: Kumbh Mela’,0,”,’Every 12 years over 70 million pilgrims gather at the meeting of India\’s holiest rivers, the Ganges and the Yamuna, for a spectacular spiritual festival: the Kumbh Mela. This documentary takes a voyage of discovery through this colorful event through the eyes of several Westerners and an ebullient young Hindu monk, Swami Krishnanand. Featuring encounters with some of India\’s most respected holy men and exclusive footage of His Holiness the Dalai Lama.’,0.004998,’2004-05-11′,0,85,’Released’,”,0.00,0),(194662,’Birdman’,18000000,”,’A fading actor best known for his portrayal of a popular superhero attempts to mount a comeback by appearing in a Broadway play. As opening night approaches, his attempts to become more altruistic, rebuild his career, and reconnect with friends and family prove more difficult than expected.’,89.811154,’2014-08-27′,103215094,119,’Released’,’or (The Unexpected Virtue of Ignorance)’,7.40,4535),(195589,’Neighbors’,18000000,”,’A couple with a newborn baby face unexpected difficulties after they are forced to live next to a fraternity house.’,36.471231,’2014-05-08′,268157400,96,’Released’,’Family vs. Frat’,6.20,2713),(196867,’Annie’,65000000,”,’Ever since her parents left her as a baby, little Annie has led a hard-knock life with her calculating foster mother, Miss Hannigan. However, all that changes when hard-nosed billionaire and mayoral candidate Will Stacks takes her in on the recommendation of his advisers. Stacks believes that he\’s Annie\’s guardian angel, but the plucky youngster\’s confidence and sunny outlook may mean that Annie will save Will instead.’,33.439187,’2014-12-19′,133821816,119,’Released’,’It\’s a Hard Knock Life’,6.00,466),(198062,’Coffee Town’,0,’http://coffeetown.com/’,’Three thirty-something friends band together when their carefree existence is threatened.’,2.253589,’2013-07-09′,0,87,’Released’,”,6.70,45),(198184,’Chappie’,49000000,’http://www.chappie-movie.com’,’Every child comes into the world full of promise, and none more so than Chappie: he is gifted, special, a prodigy. Like any child, Chappie will come under the influence of his surroundingsâ��some good, some badâ��and he will rely on his heart and soul to find his way in the world and become his own man. But there\’s one thing that makes Chappie different from any one else: he is a robot.’,116.700319,’2015-03-04′,104399548,120,’Released’,’I am consciousness. I am alive. I am Chappie.’,6.60,3062),(198185,’Million Dollar Arm’,25000000,’http://movies.disney.com/million-dollar-arm’,’In a last-ditch effort to save his career, sports agent JB Bernstein (Jon Hamm) dreams up a wild game plan to find Major League Baseballâ��s next great pitcher from a pool of cricket players in India. He soon discovers two young men who can throw a fastball but know nothing about the game of baseball. Or America. Itâ��s an incredible and touching journey that will change them all â�� especially JB, who learns valuable lessons about teamwork, commitment and family.’,17.312433,’2014-05-09′,38307627,124,’Released’,’Sometimes to win, sometimes you have to change the game’,6.60,259),(198277,’Begin Again’,8000000,”,’Gretta\’s celebrity boyfriend breaks up with her after a long-term relationship, leaving the singer to find success on her own. With the help of record producer, Dan and hip-hop celebrity, Trouble Gum, Gretta strives to fulfil her musical ambitions.’,35.735689,’2013-09-07′,63464861,104,’Released’,’You\’re only as strong as your next move.’,7.30,1254),(198370,’Mutual Friends’,0,’http://mutualfriendsmovie.com/’,’Surprise parties rarely go well. This one is no different, as a group of 30-somethings head through life, love and a day in New York City.’,0.136721,’2014-04-15′,0,0,’Released’,’Surprise parties rarely go well.’,0.00,0),(198663,’The Maze Runner’,34000000,’http://themazerunnermovie.com/’,’Set in a post-apocalyptic world, young Thomas is deposited in a community of boys after his memory is erased, soon learning they\’re all trapped in a maze that will require him to join forces with fellow \”runners\” for a shot at escape.’,131.815575,’2014-09-10′,348319861,113,’Released’,’Run – Remember – Survive’,7.00,5371),(199373,’The Frozen Ground’,27220000,”,’An Alaska State Trooper partners with a young woman who escaped the clutches of serial killer Robert Hansen to bring the murderer to justice. Based on actual events.’,28.060472,’2013-07-18′,5496951,105,’Released’,’The hunter becomes the hunted’,6.10,465),(199933,’Atlas Shrugged Part III: Who is John Galt?’,5000000,’http://www.atlasshruggedmovie.com/’,’Approaching collapse, the nation\’s economy is quickly eroding. As crime and fear take over the countryside, the government continues to exert its brutal force against the nation\’s most productive who are mysteriously vanishing – leaving behind a wake of despair. One man has the answer. One woman stands in his way. Some will stop at nothing to control him. Others will stop at nothing to save him. He swore by his life. They swore to find him.’,1.731035,’2014-09-12′,846704,99,’Released’,’Who is John Galt?’,3.90,15),(200505,’Draft Day’,25000000,”,’At the NFL Draft, general manager Sonny Weaver has the opportunity to rebuild his team when he trades for the number one pick. He must decide what he\’s willing to sacrifice on a life-changing day for a few hundred young men with NFL dreams.’,14.170090,’2014-04-11′,28831145,109,’Released’,’The greatest victories don\’t always happen on the field.’,6.50,304),(201088,’Blackhat’,70000000,’http://www.legendary.com/film/blackhat/’,’A man is released from prison to help American and Chinese authorities pursue a mysterious cyber criminal. The dangerous search leads them from Chicago to Hong Kong.’,46.832372,’2015-01-13′,17752940,133,’Released’,’We are no longer in control.’,5.10,826),(201132,’Antarctica: A Year on Ice’,1000000,’http://www.frozensouth.com/’,’Filling the giant screen with stunning time-lapse vistas of Antarctica, and detailing year-round life at McMurdo and Scott Base, Anthony Powellâ��s documentary is a potent hymn to the icy continent and the heavens above.’,1.883947,’2013-09-05′,0,92,’Released’,’Step Outside The Box’,7.20,29),(202575,’The House of Magic’,34000000,’http://www.nwave.com/films/3d-feature-films/13-films-cat/feature/95-the-house-of-magic-3d’,’Thunder, an abandoned young cat seeking shelter from a storm, stumbles into the strangest house imaginable, owned by an old magician and inhabited by a dazzling array of automatons and gizmos. Not everyone welcomes the new addition to the troupe as Jack Rabbit and Maggie Mouse plot to evict Thunder. The situation gets worse when the magician lands in hospital and his scheming nephew sees his chance to cash in by selling the mansion. Our young hero is determined to earn his place and so he enlists the help of some wacky magician\’s assistants to protect his magical new home.’,12.867326,’2013-12-24′,0,85,’Released’,’One lost little cat. One magical adventure.’,6.30,121),(202604,’The Vatican Exorcisms’,0,”,’Documentary following US film-maker Joe Marino as he heads to Italy to investigate exorcisms and the truth behind rumors of demonic possession.’,0.447166,’2013-05-29′,0,0,’Released’,’The public were never meant to know’,4.40,11),(203801,’The Man from U.N.C.L.E.’,75000000,”,’At the height of the Cold War, a mysterious criminal organization plans to use nuclear weapons and technology to upset the fragile balance of power between the United States and Soviet Union. CIA agent Napoleon Solo and KGB agent Illya Kuryakin are forced to put aside their hostilities and work together to stop the evildoers in their tracks. The duo\’s only lead is the daughter of a missing German scientist, whom they must find soon to prevent a global catastrophe.’,48.744209,’2015-08-13′,108145109,116,’Released’,’Saving the world never goes out of style.’,7.10,2265),(203833,’The Book Thief’,0,’http://www.thebookthief.com/’,’While subjected to the horrors of WWII Germany, young Liesel finds solace by stealing books and sharing them with others. Under the stairs in her home, a Jewish refuge is being sheltered by her adoptive parents.’,57.841560,’2013-11-08′,76586316,131,’Released’,’Courage beyond words.’,7.40,1486),(204082,’Homefront’,22000000,”,’Phil Broker is a former DEA agent who has gone through a crisis after his action against a biker gang went horribly wrong and it cost the life of his boss\’ son. He is recently widowed and is left with a 9-years-old daughter,Maddy. He decides to quit the turbulent and demanding life of thrill for Maddy\’s sake and retires to a small town. His daughter fights off a boy who was bullying her at school and this sets in motion a round of events that end in his direct confrontation with the local Meth drug lord. His past history with the biker gang also enters the arena, making matters more complex. But he has a mission in his mind to protect his daughter and he is ready to pay any cost that it demands.’,35.737655,’2013-11-27′,43058898,100,’Released’,’How far would you go to protect your home?’,6.40,875),(204922,’Before I Go to Sleep’,22000000,”,’A woman wakes up every day, remembering nothing as a result of a traumatic accident in her past. One day, new terrifying truths emerge that force her to question everyone around her.’,48.784734,’2014-09-03′,15447154,92,’Released’,’Who do you trust?’,6.20,659),(205126,’Independence Daysaster’,1800000,”,’When Earth is attacked by a hostile alien force, a small town firefighter and a rogue SETI scientist team up to activate the only technology capable of defeating the invaders.’,1.959405,’2013-06-27′,0,86,’Released’,”,4.20,22),(205220,’Philomena’,12000000,”,’A woman searches for her adult son, who was taken away from her decades ago when she was forced to live in a convent.’,29.019504,’2013-11-01′,100129872,98,’Released’,’These two unlikely companions are on a journey to find her long lost son.’,7.40,579),(205321,’Sharknado’,1000000,’http://www.theasylum.cc/product.php?id=230′,’A freak hurricane hits Los Angeles, causing man-eating sharks to be scooped up in tornadoes and flooding the city with shark-infested seawater. Surfer and bar-owner Fin sets out with his friends Baz and Nova to rescue his estranged wife April and teenage daughter Claudia’,20.466433,’2013-07-11′,0,86,’Released’,’Enough said!’,3.80,476),(205584,’Gods of Egypt’,140000000,”,’A common thief joins a mythical god on a quest through Egypt.’,56.257249,’2016-02-25′,150680864,127,’Released’,’The battle for eternity begins’,5.30,1277),(205587,’The Judge’,50000000,’http://thejudgemovie.com/’,’A successful lawyer returns to his hometown for his mother\’s funeral only to discover that his estranged father, the town\’s judge, is suspected of murder.’,42.472324,’2014-10-08′,83719388,141,’Released’,’Defend your Honor.’,7.20,1417),(205588,’Our Kind of Traitor’,0,”,’A young Oxford academic and his attorney girlfriend holiday on Antigua. They bump into a Russian millionaire who owns a peninsula and a diamond watch. He wants a game of tennis. What else he wants propels the lovers on a tortuous journey to the City of London and its unholy alliance with Britain\’s intelligence establishment, to Paris and the Alps.’,10.547959,’2016-05-05′,9930095,108,’Released’,’Who Can You Trust With The Truth?’,6.00,160),(205596,’The Imitation Game’,14000000,’http://theimitationgamemovie.com/’,’Based on the real life story of legendary cryptanalyst Alan Turing, the film portrays the nail-biting race against time by Turing and his brilliant team of code-breakers at Britain\’s top-secret Government Code and Cypher School at Bletchley Park, during the darkest days of World War II.’,145.364591,’2014-11-14′,233555708,113,’Released’,’The true enigma was the man who cracked the code.’,8.00,5723),(205775,’In the Heart of the Sea’,100000000,’http://www.intheheartoftheseamovie.com/’,’In the winter of 1820, the New England whaling ship Essex was assaulted by something no one could believe: a whale of mammoth size and will, and an almost human sense of vengeance. The real-life maritime disaster would inspire Herman Melvilleâ��s Moby Dick. But that told only half the story. â��Heart of the Seaâ�� reveals the encounterâ��s harrowing aftermath, as the shipâ��s surviving crew is pushed to their limits and forced to do the unthinkable to stay alive. Braving storms, starvation, panic and despair, the men will call into question their deepest beliefs, from the value of their lives to the morality of their trade, as their captain searches for direction on the open sea and his first mate still seeks to bring the great whale down.’,50.767332,’2015-11-20′,93820758,122,’Released’,’Based on the incredible true story that inspired Moby Dick’,6.50,1276),(206197,’The Sisterhood of Night’,0,’http://www.thesisterhoodofnight-movie.com/’,’When a teenage girl says she\’s the victim of a secret network called The Sisterhood of Night, a quiet suburban town becomes the backdrop for a modern-day Salem witch trial.’,2.868942,’2015-04-10′,0,104,’Released’,’The Salem Witch Trials remixed.’,6.50,31),(206213,’Zombie Hunter’,0,’https://www.facebook.com/zombiehuntermovie’,’Zombie Hunter is set in a post-apocalyptic Zombie wasteland caused by the mysterious street drug \”Natas\”. We follow one man who has nothing left other than a beat up Camaro and a trunk full of guns and booze. He runs down Flesh Eaters, hunting for sport and redemption, while also running from his past. After crashing into a small group of survivors, who are running low on resources, he decides to lend a hand. But a surprise attack by the Flesh Eaters forces them on the run and puts the Hunter\’s skills to the test.’,3.418372,’2013-07-25′,0,93,’Released’,”,3.50,34),(206284,’Grace Unplugged’,0,’http://www.graceunplugged.com/’,’A talented young singer and aspiring songwriterâ��s Christian faith and family ties are tested when she defies her worship-pastor father and pursues pop-music stardom in GRACE UNPLUGGED, a moving and inspiring new film that explores the true meaning of success.’,2.160586,’2013-10-04′,0,102,’Released’,’Would you give up what you need… to get everything you want?’,6.00,24),(206296,’The Last Five Years’,0,”,’In New York, a struggling actress and a successful writer sing about their failed marriage from two perspectives.’,5.563068,’2014-11-03′,0,94,’Released’,’There are two sides to every love story.’,5.50,143),(206412,’Lisa Picard Is Famous’,0,”,’A documentarian decides to follow the career of New York actress Lisa Picard, believing she is on the brink of fame. Instead, he bears witness to Lisa\’s continued, humorous, struggles as an actress, as well as the conflict that arises when Lisa\’s best friend Tate hits it big with an off-Broadway one-man show.’,0.690089,’2000-05-14′,0,90,’Released’,”,4.00,1),(206563,’Trash’,0,”,’Set in Brazil, three kids who make a discovery in a garbage dump soon find themselves running from the cops and trying to right a terrible wrong.’,14.637357,’2014-10-09′,0,112,’Released’,’You never know what you might find’,7.10,242),(206647,’Spectre’,245000000,’http://www.sonypictures.com/movies/spectre/’,’A cryptic message from Bondâ��s past sends him on a trail to uncover a sinister organization. While M battles political forces to keep the secret service alive, Bond peels back the layers of deceit to reveal the terrible truth behind SPECTRE.’,107.376788,’2015-10-26′,880674609,148,’Released’,’A Plan No One Escapes’,6.30,4466),(207769,’Banshee Chapter’,950000,’http://www.filmbreak.com/projects/banshee-chapter’,’On the trail of a missing friend who had been experimenting with mind-altering drugs, a young journalist – aided by a rogue counter-culture writer, The Silence of The Lambs — finds herself drawn into the dangerous world of top-secret government chemical research and the mystery of a disturbing radio signal of unknown origin. A fast-paced thriller blending fact and fiction, Banshee Chapter is based on real documents, actual test subject testimony, and uncovered secrets about covert programs run by the CIA.’,7.310879,’2013-08-26′,0,87,’Released’,’The experiments are over, the terror has just begun…’,5.70,92),(208134,’Jackass Presents: Bad Grandpa’,15000000,”,’86-year-old Irving Zisman is on a journey across America with the most unlikely companion: his 8 year-old grandson, Billy.’,27.165222,’2013-10-22′,151831537,92,’Released’,’Real people. Real reactions. Real messed up.’,6.00,680),(208763,’Viy’,26000000,”,’Early 18th century. Cartographer Jonathan Green undertakes a scientific voyage from Europe to the East. Having passed through Transylvania and crossed the Carpathian Mountains, he finds himself in a small village lost in impassible woods. Nothing but chance and heavy fog could bring him to this cursed place. People who live here do not resemble any other people which the traveler saw before that. The villagers, having dug a deep moat to fend themselves from the rest of the world, share a naive belief that they could save themselves from evil, failing to understand that evil has made its nest in their souls and is waiting for an opportunity to gush out upon the world.’,7.182761,’2014-01-30′,0,127,’Released’,’The truth is in you’,4.90,71),(208869,’Plastic’,10,”,’Sam & Fordy run a credit card fraud scheme, but when they steal from the wrong man, they find themselves threatened by sadistic gangster. They need to raise £5m and pull off a daring diamond heist to clear their debt.’,9.702760,’2014-04-30′,0,102,’Released’,’HUSTLE. HEIST. REPEAT.’,6.10,86),(209112,’Batman v Superman: Dawn of Justice’,250000000,’http://www.batmanvsupermandawnofjustice.com/’,’Fearing the actions of a god-like Super Hero left unchecked, Gotham Cityâ��s own formidable, forceful vigilante takes on Metropolisâ��s most revered, modern-day savior, while the world wrestles with what sort of hero it really needs. And with Batman and Superman at war with one another, a new threat quickly arises, putting mankind in greater danger than itâ��s ever known before.’,155.790452,’2016-03-23′,873260194,151,’Released’,’Justice or revenge’,5.70,7004),(209263,’Enough Said’,0,”,’Eva is a divorced soon-to-be empty-nester wondering about her next act. Then she meets Marianne, the embodiment of her perfect self. Armed with a restored outlook on being middle-aged and single, Eva decides to take a chance on her new love interest Albert â�� a sweet, funny and like-minded man. But things get complicated when Eva discovers that Albert is in fact the dreaded exâ��husband of Marianne…’,14.969093,’2013-09-18′,25288872,93,’Released’,”,6.60,348),(209274,’Ida’,2159280,”,’Poland, 1962. Anna is a novice, an orphan brought up by nuns in a convent. Before she takes her vows, she is determined to see Wanda, her only living relative. Wanda tells Anna that Anna is Jewish. Both women embark on a journey not only to discover their tragic family story, but who they really are and where they belong, questioning their religions and beliefs.’,13.265432,’2013-10-25′,10700000,80,’Released’,”,7.10,260),(209403,’Bad Words’,9500000,”,’A misanthropic man sets out to exact revenge on his estranged father, by finding a loophole and attempting to win the National Spelling Bee as an adult. Figuring it would destroy his father, and everything he\’s worked so hard for as head of the Spelling Bee Championship Organization, Guy Trilby (Jason Bateman) eventually discovers winning isn\’t necessary for revenge, and that friendship is a blessing not a curse.’,14.105392,’2013-09-06′,7800000,88,’Released’,’The end justifies the means’,6.40,334),(209451,’Jersey Boys’,40000000,”,’From director Clint Eastwood comes the big-screen version of the Tony Award-winning musical Jersey Boys. The film tells the story of four young men from the wrong side of the tracks in New Jersey who came together to form the iconic 1960s rock group The Four Seasons. The story of their trials and triumphs are accompanied by the songs that influenced a generation, including â��Sherry,â�� â��Big Girls Donâ��t Cry,â�� â��Walk Like a Man,â�� â��Rag Doll,â�� and many more.’,14.199933,’2014-06-05′,67347013,134,’Released’,”,6.80,255),(210577,’Gone Girl’,61000000,’http://www.gonegirlmovie.com/’,’With his wife\’s disappearance having become the focus of an intense media circus, a man sees the spotlight turned on him when it\’s suspected that he may not be innocent.’,143.041543,’2014-10-01′,369330363,145,’Released’,’You don\’t know what you\’ve got \’til it\’s…’,7.90,5862),(210860,’Mortdecai’,60000000,’http://mortdecaithemovie.com/’,’Art dealer, Charles Mortdecai, searches for a stolen painting rumored to contain a secret code that gains access to hidden Nazi gold.’,52.417529,’2015-01-21′,30418560,106,’Released’,’Sophistication Has a Name.’,5.40,1055),(211086,’Faith Connections’,550000,”,’A filmmaker\’s insight into the biggest gathering on earth -the Kumbh Mela.’,0.480880,’2013-11-21′,0,115,’Released’,”,4.20,3),(211557,’Vessel’,0,”,’Vessel is the story of the passengers of Flight 298, a red-eye on its way from Boston to San Francisco. Midway through the flight the passengers encounter an otherworldly force and are subsequently thrown into a fight for their lives. The story focuses on Danny (an everyday traveler), Emma (a flight attendant), Chloe (an unattended underage passenger) and Jim and Murray (the two pilots). Written by Anonymous’,0.322553,’2012-10-28′,0,14,’Released’,”,5.90,8),(211672,’Minions’,74000000,’http://www.minionsmovie.com/’,’Minions Stuart, Kevin and Bob are recruited by Scarlet Overkill, a super-villain who, alongside her inventor husband Herb, hatches a plot to take over the world.’,875.581305,’2015-06-17′,1156730962,91,’Released’,’Before Gru, they had a history of bad bosses’,6.40,4571),(211954,’No se Aceptan Devoluciones’,5500000,”,’Valentin is Acapulco\’s resident playboy, until a former fling leaves a baby on his doorstep and him heading with her out of Mexico.’,9.597290,’2013-07-20′,99067206,115,’Released’,’Life doesn\’t care if you\’re ready.’,7.50,205),(214756,’Ted 2′,68000000,”,’Newlywed couple Ted and Tami-Lynn want to have a baby, but in order to qualify to be a parent, Ted will have to prove he\’s a person in a court of law.’,68.734513,’2015-06-25′,217022588,115,’Released’,’Ted is Coming, Again.’,6.20,2463),(215211,’Grace of Monaco’,30000000,”,’The story of former Hollywood star Grace Kelly\’s crisis of marriage and identity, during a political dispute between Monaco\’s Prince Rainier III and France\’s Charles De Gaulle, and a looming French invasion of Monaco in the early 1960s.’,10.958697,’2014-05-14′,0,103,’Released’,”,5.80,195),(215881,’Plush’,0,’http://plushthemovie.com/’,’A young singer/songwriter, despite being married, becomes involved with her new guitarist, who she soon discovers has a dark past and may be a danger to her and those close to her.’,5.099368,’2013-09-13′,0,98,’Released’,’There\’s a fine line between love and obsession.’,5.40,40),(215918,’1982′,1000000,’https://www.facebook.com/watch1982′,’1982, a film inspired by true events at the onset of the crack epidemic in Philadelphia, tells the story of a father and his efforts to protect his gifted daughter from the insidious epidemic which has literally come home via her drug-addicted mother. As his wife becomes more distant and unreliable, he struggles to raise his daughter on his own, while still striving to help his wife become clean. In the process, he learns some hard truths about his marriage and his life, which will ultimately test him as a parent, a husband, and a man’,0.175885,’2013-12-31′,0,90,’Released’,”,5.00,1),(215924,’Los insólitos peces gato’,1300000,”,’Young Claudia works in a supermarket where she promotes various types of products. One night, she ends up in the emergency room with severe appendicitis and meets Martha, a patient, laying in the bed next to hers.’,1.473405,’2013-08-10′,0,87,’Released’,”,5.70,17),(216015,’Fifty Shades of Grey’,40000000,’https://www.facebook.com/fiftyshadesofgreymovie’,’When college senior Anastasia Steele steps in for her sick roommate to interview prominent businessman Christian Grey for their campus paper, little does she realize the path her life will take. Christian, as enigmatic as he is rich and powerful, finds himself strangely drawn to Ana, and she to him. Though sexually inexperienced, Ana plunges headlong into an affair — and learns that Christian\’s true sexual proclivities push the boundaries of pain and pleasure.’,98.755657,’2015-02-11′,571006128,125,’Released’,’Are you curious?’,5.20,3254),(216282,’Into the Storm’,50000000,”,’The town of Silverton is in one day destroyed by the unprecedented power of a series of tornadoes. The population is at the mercy of the unpredictable and deadly cyclones, while hunters warn that the worst is yet to come. Most people find shelter, but some just go to the tornado for that one, unique shot.’,20.566554,’2014-08-06′,160602194,89,’Released’,’Prepare to go’,5.80,817),(217708,’Hross à oss’,10,’http://hrosss.is/the-film/’,’A country romance about the human streak in the horse and the horse in the human. Love and death become interlaced and with terrible consequences.The fortunes of the people in the country through the horses\’ perception.’,1.617943,’2013-08-30′,11,85,’Released’,”,6.90,26),(218043,’Left Behind’,16000000,’http://www.leftbehindmovie.com/’,’A small group of survivors are left behind after millions of people suddenly vanish during the rapture and the world is plunged into chaos and destruction.’,33.452469,’2014-10-03′,19682924,110,’Released’,’The End Begins’,3.70,392),(218500,’The Ballad of Gregorio Cortez’,0,”,’The entire cause of the problem evolves from the use of a deputy to translate. His command of Spanish is inadequate and he mistranslates what a witness tells the sheriff as to whether the real perpetrator of the crime is riding a mare (yegua) or a male horse (caballo). This error results in destroying a family and the death of an innocent man.’,0.592821,’1983-08-19′,0,104,’Released’,”,0.00,0),(218778,’Alexander and the Terrible, Horrible, No Good, Very Bad Day’,28000000,’http://movies.disney.com/alexander-and-the-terrible-horrible-no-good-very-bad-day/’,’Alexander\’s day begins with gum stuck in his hair, followed by more calamities. Though he finds little sympathy from his family and begins to wonder if bad things only happen to him, his mom, dad, brother, and sister all find themselves living through their own terrible, horrible, no good, very bad day.’,22.145950,’2014-10-08′,100654149,81,’Released’,’One day can change everything.’,6.10,493),(219716,’Sparkler’,0,”,’Melba is a Californian trailer-park girl who is told to look for three kings by a phone psychic, and when she meets three guys – Trent, Brad and Joel traveling to Las Vegas, she decides they are those kings and joins them on a trip. In Vegas she meets her old high school pal Dottie.’,0.547654,’1999-03-19′,0,96,’Released’,”,0.00,1),(220488,’é��常幸è¿�’,0,”,’My Lucky Star is a 2013 Chinese romance film directed by Dennie Gordon and starring Zhang Ziyi and Leehom Wang. The film also serves as a prequel to the 2009 film Sophie\’s Revenge.’,1.864530,’2013-09-17′,0,114,’Released’,”,4.30,8),(220490,’Her Cry: La Llorona Investigation’,0,”,’Crew of \”Paranormal Legends\” went to film their 4th season at the place where La Llorona (Weeping woman) was reportedly seen. Only thing that\’s left was 17 hours of tapes and 2 camcorders.’,0.056459,’2013-04-19′,0,89,’Released’,”,0.00,0),(222250,’A True Story’,0,”,’Mike and Matt own nothing and share everything, including their life\’s work, a screenplay, which seems to be their only escape from the harsh reality that is the Hollywood machine.’,0.970351,’2013-09-20′,0,96,’Released’,”,6.80,2),(222649,’Rosewater’,0,”,’In 2009, Iranian Canadian journalist Maziar Bahari was covering Iran\’s volatile elections for Newsweek. One of the few reporters living in the country with access to US media, he made an appearance on The Daily Show with Jon Stewart, in a taped interview with comedian Jason Jones. The interview was intended as satire, but if the Tehran authorities got the joke they didn\’t like it – and it would quickly came back to haunt Bahari when he was rousted from his family home and thrown into prison. Making his directorial debut, Jon Stewart tells the tale of Bahari\’s months-long imprisonment and interrogation in this powerful and affecting docudrama featuring a potent and performance by Gael GarcÃa Bernal recounting Bahari\’s efforts to maintain his hope and his sanity in the face of isolation and persecution-through memories of his family, recollections of the music he loves, and thoughts of his wife and unborn child.’,5.755550,’2014-11-07′,0,103,’Released’,”,6.50,98),(222899,’About Last Night’,12500000,”,’A modern reimagining of the classic romantic comedy, this contemporary version closely follows new love for two couples as they journey from the bar to the bedroom and are eventually put to the test in the real world.’,11.828068,’2014-02-14′,49002684,100,’Released’,’It\’s about compromise. It\’s about love. It\’s about a good wingman.’,6.00,210),(222935,’The Fault in Our Stars’,12000000,”,’Despite the tumor-shrinking medical miracle that has bought her a few years, Hazel has never been anything but terminal, her final chapter inscribed upon diagnosis. But when a patient named Augustus Waters suddenly appears at Cancer Kid Support Group, Hazel\’s story is about to be completely rewritten.’,74.358971,’2014-05-16′,307166834,125,’Released’,’One Sick Love Story’,7.60,3759),(222936,’Aloha’,37000000,”,’A celebrated military contractor returns to the site of his greatest career triumphs and re-connects with a long-ago love while unexpectedly falling for the hard-charging Air Force watchdog assigned to him.’,29.652536,’2015-05-27′,26250020,105,’Released’,’Sometimes you have to say goodbye before you can say hello.’,5.20,692),(223485,’Slow West’,0,”,’In the Old West, a 17-year-old Scottish boy teams up with a mysterious gunman to find the woman with whom he is infatuated.’,14.936661,’2015-04-16′,229094,84,’Released’,’Wanted Dead or Dead’,6.60,367),(223702,’Sausage Party’,19000000,’http://www.sausagepartymovie.com’,’Sausage Party, the first R-rated CG animated movie, is about one sausage leading a group of supermarket products on a quest to discover the truth about their existence and what really happens when they become chosen to leave the grocery store.’,66.242737,’2016-07-11′,140752617,83,’Released’,’Always use condiments’,5.60,2238),(224141,’Into the Woods’,50000000,’http://movies.disney.com/into-the-woods/’,’In a woods filled with magic and fairy tale characters, a baker and his wife set out to end the curse put on them by their neighbor, a spiteful witch.’,65.901610,’2014-12-25′,212902372,125,’Released’,’Be careful what you wish for…’,5.60,1652),(224569,’Taxman’,0,”,’After a homocide that the police believe is over gasoline theft, a tax investigator discovers the Russian mafia is involved and that they are stealing millions in gasoline tax money. Only one rookie cop is willing to believe him and together they must get the evidence they need or die trying.’,0.964802,’1999-09-16′,0,104,’Released’,’In life only two things are certain, death and taxes.’,2.00,1),(225235,’Ð�еогÑ�аÑ� глобÑ�Ñ� пÑ�опил’,0,”,’Victor Sluzhkin signs on as a teacher of geography in a secondary school in his native Perm (in the Urals) and gets lost in a haze of hard vodka, desperate love for a nymphet-like student and the stress of educating teenagers. Geographer, as the students immediately dub Sluzhkin, attempts to escape from the grueling, dull, stultifying reality of Russia\’s provincial life in a rafting tour to the Urals. Accompanied by wild, adventure-seeking adolescents, faced with the numerous grim surprises of the nature, Geographer is poised to find himself and his own truth.’,1.876621,’2013-07-26′,4037782,120,’Released’,”,7.30,23),(225565,’That Awkward Moment’,8000000,”,’Best pals Jason and Daniel indulge in casual flings and revel in their carefree, unattached lives. After learning that the marriage of their friend Mikey is over, they gladly welcome him back into their circle. The three young men make a pact to have fun and avoid commitment. However, when all three find themselves involved in serious relationships, they must keep their romances secret from one another.’,37.821106,’2014-01-29′,26049082,94,’Released’,’When you realize getting some means wanting more.’,6.10,1004),(225574,’Non-Stop’,50000000,”,’Bill Marks is a burned-out veteran of the Air Marshals service. He views the assignment not as a life-saving duty, but as a desk job in the sky. However, today\’s flight will be no routine trip. Shortly into the transatlantic journey from New York to London, he receives a series of mysterious text messages ordering him to have the government transfer $150 million into a secret account, or a passenger will die every 20 minutes.’,83.295796,’2014-01-26′,222809600,106,’Released’,’The hijacking was just the beginning.’,6.80,2268),(225886,’Sex Tape’,40000000,”,’When Jay and Annie first got together, their romantic connection was intense â�� but ten years and two kids later, the flame of their love needs a spark. To kick things up a notch, they decide â�� why not? â�� to make a video of themselves trying out every position in The Joy of Sex in one marathon three-hour session. It seems like a great idea â�� until they discover that their most private video is no longer private. With their reputations on the line, they know theyâ��re just one click away from being laid bare to the world… but as their race to reclaim their video leads to a night they\’ll never forget, they\’ll find that their video will expose even more than they bargained for.’,72.641296,’2014-07-17′,126069509,97,’Released’,’A movie about a movie they don\’t want you to see.’,5.30,1695),(226354,’The Christmas Candle’,0,’http://www.thechristmascandlemovie.com/’,’Deep in the heart of the English countryside lies the enchanting village of Gladbury. Legend has it every 25 years an angel visits the village candlemaker and touches a single candle. Whoever lights this candle receives a miracle on Christmas Eve. But in 1890, at the dawn of the electric age, this centuries old legend may come to an end.’,1.799504,’2013-11-22′,0,100,’Released’,’Believe the Miracle’,5.80,8),(226458,’Backmask’,0,”,’During an all-night, drug-fueled party at an abandoned asylum known for the horrific treatment of its patients, a group of ordinary teens decide to experiment with the occult, mysteriously leading to a violent possession. In an effort to find help, the group rushes to escape, only to find themselves locked inside with no means of communication. Tempers flare, trusts are broken and in attempt to save one of their friends possessed by the demon, the amateurs try to perform an exorcism. Instead of solving the problem, and unbeknownst to them, they unleash an even more powerful and vengeful spirit, one with a distinct motive and which wants them all dead. The teen\’s only chance of survival is to uncover the asylum\’s deep mysteries and find a way out before it\’s too late.’,3.619167,’2015-01-16′,0,91,’Released’,’nederlands’,4.70,79),(226486,’Tammy’,20000000,”,’After losing her job and learning that her husband has been unfaithful, a woman hits the road with her profane, hard-drinking grandmother.’,21.657563,’2014-07-02′,100525432,97,’Released’,’She hit the road. The road hit back.’,5.00,500),(226857,’Endless Love’,20000000,”,’A privileged girl and a charismatic boy\’s instant desire sparks a love affair made only more reckless by parents trying to keep them apart.’,27.256849,’2014-02-12′,34077920,103,’Released’,’Say Goodbye to Innocence’,6.70,542),(227156,’The Giver’,25000000,’http://thegiverfilm.com/’,’In a seemingly perfect community, without war, pain, suffering, differences or choice, a young boy is chosen to learn from an elderly man about the true pain and pleasure of the \”real\” world.’,53.811461,’2014-08-11′,66980456,94,’Released’,’Search for truth. Find freedom.’,6.40,1798),(227159,’Horrible Bosses 2′,42000000,”,’Dale, Kurt and Nick decide to start their own business but things don\’t go as planned because of a slick investor, prompting the trio to pull off a harebrained and misguided kidnapping scheme.’,82.185281,’2014-11-26′,107670357,108,’Released’,’New Crime. Same Tools.’,6.10,1536),(227306,’Unbroken’,65000000,’http://www.unbrokenfilm.com/’,’A chronicle of the life of Louis Zamperini, an Olympic runner who was taken prisoner by Japanese forces during World War II.’,43.055253,’2014-12-25′,163442937,137,’Released’,’Survival. Resilience. Redemption.’,7.30,1400),(227348,’Paranormal Activity: The Marked Ones’,5000000,”,’Seventeen-year-old Jesse has been hearing terrifying sounds coming from his neighborâ��s apartment, but when he turns on his camera and sets out to uncover their source, he encounters an ancient evil that wonâ��t rest until itâ��s claimed his very soul.’,19.984477,’2014-01-01′,86362372,84,’Released’,’You\’re one of us now.’,5.20,449),(227707,’The Adventurer: The Curse of the Midas Box’,25000000,”,’17-year-old Mariah Mundi\’s life is turned upside down when his parents vanish and his younger brother is kidnapped. Following a trail of clues to the darkly majestic Prince Regent Hotel, Mariah discovers a hidden realm of child-stealing monsters, deadly secrets and a long-lost artifact that grants limitless wealth â�� but also devastating supernatural power. With the fate of his world, and his family at stake, Mariah will risk everything to unravel the Curse of the Midas Box.’,8.842722,’2013-12-05′,6399,99,’Released’,’The new name for adventure.’,5.10,73),(227719,’Project Almanac’,12000000,’http://www.projectalmanac.com/’,’A group of teens discover secret plans of a time machine, and construct one. However, things start to get out of control.’,32.940597,’2015-01-30′,32248241,106,’Released’,’Today is better the second time around’,6.40,933),(227735,’Dolphin Tale 2′,36000000,’http://www.seewinter.com/’,’The team of people who saved Winter\’s life reassemble in the wake of her surrogate mother\’s passing in order to find her a companion so she can remain at the Clearwater Marine Hospital.’,6.967857,’2014-09-12′,52424533,107,’Released’,’WINTER\’s amazing true story… now has HOPE.’,6.70,96),(227783,’The Nut Job’,0,”,’Surly, a curmudgeon, independent squirrel is banished from his park and forced to survive in the city. Lucky for him, he stumbles on the one thing that may be able to save his life, and the rest of park community, as they gear up for winter – Maury\’s Nut Store.’,18.568021,’2014-01-17′,0,85,’Released’,’Let\’s Get Nuts!’,5.50,319),(227973,’The Peanuts Movie’,99000000,’http://www.peanutsmovie.com/’,’Snoopy embarks upon his greatest mission as he and his team take to the skies to pursue their arch-nemesis, while his best pal Charlie Brown begins his own epic quest back home.’,34.308098,’2015-11-05′,246233113,88,’Released’,’The story of an underdog. And his dog.’,6.50,604),(227975,’Praia do Futuro’,0,”,’Donato fails in his attempt to save a drowning man, and meets one of the man\’s friends. He decides to start his life over, but pieces of his past keep coming after him.’,2.611364,’2014-05-01′,0,106,’Released’,’A hero split in half.’,6.40,31),(228066,’Victor Frankenstein’,40000000,’http://www.foxmovies.com/movies/victor-frankenstein’,’Eccentric scientist Victor Von Frankenstein creates a grotesque creature in an unorthodox scientific experiment.’,24.821138,’2015-11-10′,34227298,109,’Released’,’Discover the origin of the monster and his creation.’,5.60,685),(228150,’Fury’,68000000,”,’Last months of World War II in April 1945. As the Allies make their final push in the European Theater, a battle-hardened U.S. Army sergeant in the 2nd Armored Division named Wardaddy commands a Sherman tank called \”Fury\” and its five-man crew on a deadly mission behind enemy lines. Outnumbered and outgunned, Wardaddy and his men face overwhelming odds in their heroic attempts to strike at the heart of Nazi Germany.’,139.575085,’2014-10-15′,211817906,135,’Released’,’War never ends quietly.’,7.40,3946),(228161,’Home’,135000000,’http://www.meettheboov.com/’,’When Earth is taken over by the overly-confident Boov, an alien race in search of a new place to call home, all humans are promptly relocated, while all Boov get busy reorganizing the planet. But when one resourceful girl, Tip, manages to avoid capture, she finds herself the accidental accomplice of a banished Boov named Oh. The two fugitives realize thereâ��s a lot more at stake than intergalactic relations as they embark on the road trip of a lifetime.’,63.473086,’2015-03-18′,368871007,94,’Released’,’Worlds Collide’,6.80,1519),(228165,’The SpongeBob Movie: Sponge Out of Water’,74000000,’http://www.spongebobmovie.com/’,’Burger Beard is a pirate who is in search of the final page of a magical book that makes any evil plan he writes in it come true, which happens to be the Krabby Patty secret formula. When the entire city of Bikini Bottom is put in danger, SpongeBob, Patrick, Mr. Krabs, Squidward, Sandy, and Plankton need to go on a quest that takes them to the surface. In order to get back the recipe and save their city, the gang must retrieve the book and transform themselves into superheroes.’,36.952268,’2015-02-05′,311594032,93,’Released’,’He\’s leaving his world behind.’,5.80,719),(228194,’The Hundred-Foot Journey’,22000000,”,’A story centered around an Indian family who moves to France and opens a restaurant across the street from a Michelin-starred French restaurant.’,27.898438,’2014-08-06′,88880821,122,’Released’,’Life\’s greatest journey begins with the first step.’,7.30,508),(228203,’McFarland, USA’,0,”,’A track coach in a small California town transforms a team of athletes into championship contenders.’,14.023082,’2015-02-20′,45710059,128,’Released’,’Champions Can Come From Anywhere.’,7.40,213),(228205,’The Longest Ride’,34000000,”,’The lives of a young couple intertwine with a much older man as he reflects back on a lost love while he\’s trapped in an automobile crash.’,41.946523,’2015-04-09′,63013281,128,’Released’,’Two couples. Two love stories. One epic tale.’,7.30,1064),(228326,’The Book of Life’,50000000,’http://www.bookoflifemovie.com/’,’The journey of Manolo, a young man who is torn between fulfilling the expectations of his family and following his heart. Before choosing which path to follow, he embarks on an incredible adventure that spans three fantastical worlds where he must face his greatest fears.’,34.890999,’2014-10-01′,97437106,95,’Released’,”,7.30,755),(228550,’Raymond Did It’,0,’https://www.facebook.com/pages/Raymond-Did-It/205521879470′,’Mentally challenged Raymond Rourke gets blamed and framed by several kids after they accidentally kill his younger brother Bryce. Six years later, Raymond escapes from the state mental hospital he\’s been locked up in so he can exact a harsh revenge on the folks who killed his brother and set him up.’,0.160779,’2011-03-27′,0,83,’Released’,’Mom\’s Pretty Mad At Me’,3.20,8),(228967,’The Interview’,44000000,”,’Dave Skylark and his producer Aaron Rapoport run the celebrity tabloid show \”Skylark Tonight\”. When they land an interview with a surprise fan, North Korean dictator Kim Jong-un, they are recruited by the CIA to turn their trip to Pyongyang into an assassination mission.’,74.168016,’2014-12-25′,12342632,112,’Released’,’The Film Hackers Tried To Get Banned’,6.10,2304),(228970,’Wild’,15000000,’http://howwilditwas.com/’,’A woman with a tragic past decides to start her new life by hiking for one thousand miles on the Pacific Crest Trail.’,42.952942,’2014-12-05′,52501541,115,’Released’,”,7.00,951),(230266,’Miss Julie’,5500000,”,’Over the course of a midsummer night in Fermanagh in 1890, an unsettled daughter of the Anglo-Irish aristocracy encourages her father\’s valet to seduce her.’,5.033065,’2014-09-07′,5000000,120,’Released’,’Love is a foolish game’,5.90,45),(231576,’Wish I Was Here’,5500000,”,’Aidan Bloom, a struggling actor, father and husband, is 35 years old and still trying to find a purpose for his life. He and his wife are barely getting by financially and Aidan passes his time by fantasizing about being the great futuristic Space-Knight he\’d always dreamed he\’d be as a little kid. When his ailing father can no longer afford to pay for private school for his two kids and the only available public school is on its last legs, Aidan reluctantly agrees to attempt to home-school them. Through teaching them about life his way, Aidan gradually discovers some of the parts of himself he couldn\’t find.’,15.015271,’2014-01-18′,5483299,120,’Released’,’Life is an occasion. Rise to it.’,6.40,300),(231617,’Signed, Sealed, Delivered’,0,’http://www.hallmarkchannel.com/signedsealeddelivered’,’\”Signed, Sealed, Delivered\” introduces a dedicated quartet of civil servants in the Dead Letter Office of the U.S. Postal System who transform themselves into an elite team of lost-mail detectives. Their determination to deliver the seemingly undeliverable takes them out of the post office into an unpredictable world where letters and packages from the past save lives, solve crimes, reunite old loves, and change futures by arriving late, but always miraculously on time.’,1.444476,’2013-10-13′,0,120,’Released’,”,7.00,6),(232672,’Blended’,40000000,”,’After a bad blind date, a man and woman find themselves stuck together at a resort for families, where their attractions grows as their respective kids benefit from the burgeoning relationship.’,44.120328,’2014-05-21′,123494610,117,’Released’,’Single Dad, No Clue. Single Mum, Flying Solo.’,6.60,1006),(232679,’When the Game Stands Tall’,15000000,”,’A young coach turns a losing high school football program around to go undefeated for 12 consecutive seasons.’,7.297757,’2014-08-22′,30127963,115,’Released’,’Its Not How Hard You Fall, Its How You Get Back Up’,6.30,130),(234212,’Demonic’,3000000,”,’A police officer and a psychologist investigate the deaths of five people who were killed while trying to summon ghosts.’,12.564554,’2015-02-12′,3387000,83,’Released’,’Every House Has It\’s Secrets’,4.90,148),(235260,’Son of God’,22000000,”,’The life story of Jesus is told from his humble birth through his teachings, crucifixion and ultimate resurrection.’,9.175762,’2014-02-28′,67800064,138,’Released’,’Their Empire. His Kingdom.’,5.90,83),(235271,’Addicted’,0,”,’A gallerist risks her family and flourishing career when she enters into an affair with a talented painter and slowly loses control of her life.’,7.544515,’2014-10-10′,0,105,’Released’,’Every Woman Needs an Escape’,5.40,63),(236751,’Heaven is for Real’,12000000,’http://www.sonypictures.com/movies/heavenisforreal/’,’Heaven is for Real recounts the true story of a small-town father who must find the courage and conviction to share his son\’s extraordinary, life-changing experience with the world. Four-year-old Colton shares the details of his amazing journey with childlike innocence and speaks matter-of-factly about things that happened before his birth… things he couldn\’t possibly know.’,11.150261,’2014-04-16′,101332962,99,’Released’,’Unlock the mystery’,6.00,229),(238603,’Earth to Echo’,13000000,”,’After a construction project begins digging in their neighborhood, best friends Tuck, Munch and Alex inexplicably begin to receive strange, encoded messages on their cell phones. Convinced something bigger is going on, they go to their parents and the authorities. When everyone around them refuses to take the messages seriously, the three embark on a secret adventure to crack the code and follow it to its source. But taking matters into their own hands gets the trio in way over their heads when they discover a mysterious being from another world who desperately needs their help. The epic, suspenseful and exciting journey that follows will change all of their lives forever.’,17.371327,’2014-06-14′,45300000,89,’Released’,’No one will ever believe our story.’,5.70,290),(238615,’Self/less’,26000000,’http://selflessmovie.tumblr.com/’,’An extremely wealthy elderly man dying from cancer undergoes a radical medical procedure that transfers his consciousness to the body of a healthy young man but everything may not be as good as it seems when he starts to uncover the mystery of the body\’s origins and the secret organization that will kill to keep its secrets.’,66.097437,’2015-07-10′,30523226,116,’Released’,’God Created Man. Man Created Immortality.’,6.30,1091),(238636,’The Purge: Anarchy’,9000000,”,’Three groups of people are trying to survive Purge Night, when their stories intertwine and are left stranded in The Purge trying to survive the chaos and violence that occurs.’,82.975841,’2014-07-17′,108782847,104,’Released’,’Welcome to America, where one night a year, all crime Is legal.’,6.60,1954),(239563,’St. Vincent’,13000000,’http://stvincent-movie.com/’,’A young boy whose parents just divorced finds an unlikely friend and mentor in the misanthropic, bawdy, hedonistic, war veteran who lives next door.’,43.791745,’2014-10-09′,54837234,102,’Released’,’Love Thy Neighbor’,7.10,763),(239566,’Get on Up’,0,”,’A chronicle of James Brown\’s rise from extreme poverty to become one of the most influential musicians in history.’,13.064264,’2014-08-01′,31911598,139,’Released’,’The Funk Don\’t Quit’,6.40,158),(239571,’The Best of Me’,26000000,”,’A pair of former high school sweethearts reunite after many years when they return to visit their small hometown.’,33.939140,’2014-10-16′,35926213,117,’Released’,’You never forget your first love.’,7.20,765),(239573,’Unfinished Business’,35000000,”,’A hard-working small business owner and his two associates travel to Europe to close the most important deal of their lives. But what began as a routine business trip goes off the rails in every imaginable â�� and unimaginable â�� way, including unplanned stops at a massive sex fetish event and a global economic summit.’,16.832312,’2015-03-05′,14431253,91,’Released’,’Best business trip ever.’,5.00,320),(239678,’This Is Where I Leave You’,19800000,”,’When their father passes away, four grown, world-weary siblings return to their childhood home and are requested — with an admonition — to stay there together for a week, along with their free-speaking mother and a collection of spouses, exes and might-have-beens. As the brothers and sisters re-examine their shared history and the status of each tattered relationship among those who know and love them best, they reconnect in hysterically funny and emotionally significant ways.’,20.311684,’2014-09-10′,41296320,103,’Released’,’Welcome Home. Get Uncomfortable.’,6.50,505),(239897,’Dwegons’,0,’http://www.dwegons.com/’,’Family inherits an old house and to their surprise, finds the home filled with wonderful colorful creatures that brings the family together.’,0.485405,’2014-01-24′,0,98,’Released’,”,0.50,1),(240832,’Lucy’,40000000,’http://lucymovie.com/’,’A woman, accidentally caught in a dark deal, turns the tables on her captors and transforms into a merciless warrior evolved beyond human logic.’,115.241998,’2014-07-14′,126546825,89,’Released’,’The average person uses 10% of their brain capacity. Imagine what she could do with 100%.’,6.30,5878),(241239,’A Most Violent Year’,20000000,’http://amostviolentyear.com/’,’A thriller set in New York City during the winter of 1981, statistically one of the most violent years in the city\’s history, and centered on a the lives of an immigrant and his family trying to expand their business and capitalize on opportunities as the rampant violence, decay, and corruption of the day drag them in and threaten to destroy all they have built.’,37.629309,’2014-12-30′,12007070,125,’Released’,’The result is never in question. Just the path you take to get there.’,6.50,546),(241251,’The Boy Next Door’,4000000,’http://www.theboynextdoorfilm.com/’,’A recently cheated on married woman falls for a younger man who has moved in next door, but their torrid affair soon takes a dangerous turn.’,24.161735,’2015-01-23′,52425855,91,’Released’,’A Moment She Couldn\’t Resist. An Obsession He Can\’t Control.’,4.10,1022),(241254,’The Prince’,18000000,”,’A family man who turns out to be a retired mob enforcer must travel across the country to find his daughter who has gone missing.’,21.638673,’2014-08-22′,266586800,93,’Released’,’Mercy is for the Weak’,4.60,218),(241257,’Regression’,0,”,’Minnesota, 1990. Detective Bruce Kenner investigates the case of young Angela, who accuses her father, John Gray, of an unspeakable crime. When John unexpectedly and without recollection admits guilt, renowned psychologist Dr. Raines is brought in to help him relive his memories and what they discover unmasks a horrifying nationwide mystery.’,27.215666,’2015-10-01′,17671101,106,’Released’,’Fear always finds its victim’,5.30,585),(241259,’Alice Through the Looking Glass’,170000000,’http://movies.disney.com/alice-through-the-looking-glass’,’In the sequel to Tim Burton\’s \”Alice in Wonderland\”, Alice Kingsleigh returns to Underland and faces a new adventure in saving the Mad Hatter.’,56.268916,’2016-05-25′,299370084,113,’Released’,’It\’s time for a little madness.’,6.50,1725),(241554,’Run All Night’,50000000,”,’Brooklyn mobster and prolific hit man Jimmy Conlon has seen better days. Longtime best friend of a mob boss, Jimmy is haunted by the sins of his pastâ��as well as a dogged police detective whoâ��s been one step behind Jimmy for 30 years. But when Jimmyâ��s estranged son becomes a target, Jimmy must make a choice between the crime family he chose and the real family he abandoned long ago. Now, with nowhere safe to turn, Jimmy has just one night to figure out exactly where his loyalties lie and to see if he can finally make things right.’,74.646530,’2015-03-11′,71561644,114,’Released’,’No sin goes unpunished’,6.30,1148),(241766,’Lords of London’,3440000,”,’Tony is a notorious gangster with a big problem. He has woken up in an abandoned farmhouse, with blood on his shirt, and no memory of how he got there. He stumbles into a small town and discovers heâ��s in an Italian village that seems to be lost in time.’,1.913302,’2014-01-06′,0,90,’Released’,’In this city, crime is a family business.’,3.60,6),(241771,’Beyond the Lights’,7000000,’http://beyondthelightsmovie.tumblr.com/’,’Noni Jean is a hot new rising star. But not all is what it seems, and the pressure causes Noni to nearly fall apart – until she meets Kaz Nicol, a promising young cop and aspiring politician who\’s been assigned to her detail. Can Kaz\’s love give Noni the courage to find her own voice and break free to become the artist she was meant to be?’,8.079046,’2014-09-10′,14618727,116,’Released’,’Open your heart, find your voice.’,7.00,139),(242083,’Hits’,1000000,”,’A talentless teen will do anything to get on TV\’s \”The Voice.\” Meanwhile, her father, a municipal worker, creates an uproar when a video of his rants at City Hall goes viral.’,3.638411,’2014-01-21′,0,96,’Released’,’Based on a true story… that hasn\’t happened yet.’,4.90,23),(242095,’The Signal’,4000000,’https://www.facebook.com/thesignalfilm’,’Three college students on a road trip across the Southwest experience a detour â�� the tracking of a computer genius who has already hacked into MIT and exposed security faults. When the trio find themselves drawn to an eerily isolated area, suddenly everything goes dark. When one of the students regains consciousness, he finds himself in a waking nightmare.’,27.662696,’2014-03-15′,600896,95,’Released’,’R U Agitated?’,5.80,631),(242166,’Red Sky’,25000000,”,’Disgraced Top Gun fighter pilot Butch Masters leads a rogue squad in recovery of a WMD. Masters must navigate a fractured friendship, a love triangle, and must take to the skies to reclaim his military and personal honor.’,3.344158,’2014-03-12′,0,100,’Released’,’Go Rogue’,4.10,26),(242512,’Ouija’,5000000,”,’A group of friends must confront their most terrifying fears when they awaken the dark powers of an ancient spirit board.’,56.304660,’2014-10-24′,103590271,89,’Released’,’Keep telling yourself it\’s just a game’,4.90,983),(242575,’Guten Tag, Ramón’,4000000,”,’After five failed attempts to go to the United States, 18-year-old Ramón decides to look for a friendâ��s aunt in Germany, but never finds her. With no papers or money, and without knowing the language, he barely survives living on the street until he meets Ruth, an old retired nurse who doesnâ��t speak Spanish. Beyond language barriers and prejudices, they discover that solidarity and humanity make life bearable.’,1.771584,’2013-10-18′,0,119,’Released’,”,8.10,18),(242582,’Nightcrawler’,8500000,’http://nightcrawlerfilm.com/’,’When Lou Bloom, desperate for work, muscles into the world of L.A. crime journalism, he blurs the line between observer and participant to become the star of his own story. Aiding him in his effort is Nina, a TV-news veteran.’,89.095538,’2014-10-23′,38697217,117,’Released’,’The city shines brightest at night’,7.60,3395),(243938,’Hot Tub Time Machine 2′,14000000,”,’When Lou, who has become the \”father of the Internet,\” is shot by an unknown assailant, Jacob and Nick fire up the time machine again to save their friend.’,16.618874,’2015-02-20′,12314651,93,’Released’,’The Laws of Space and Time are About to be Violated.’,5.00,354),(243940,’The Lazarus Effect’,3300000,’https://www.facebook.com/thelazaruseffect’,’Medical researcher Frank, his fiancee Zoe and their team have achieved the impossible: they have found a way to revive the dead. After a successful, but unsanctioned, experiment on a lifeless animal, they are ready to make their work public. However, when their dean learns what they\’ve done, he shuts them down. Zoe is killed during an attempt to recreate the experiment, leading Frank to test the process on her. Zoe is revived — but something evil is within her.’,20.304235,’2015-01-29′,64110728,83,’Released’,’Evil will rise.’,5.10,505),(244114,’風æ�´’,0,”,’A crew of seasoned criminals led by the notorious Nam, armed with high-powered weapons, pulls off another smooth and violent armored car heist in broad daylight in a crowded street. Whoever tries to get in their way, they will show no mercy. This puts the police force to shame and humiliation. A hardboiled senior police inspector Lui, hot on the trails of Nam and his tight crew, determines to put an end to this madness that causes the lives of innocent people. But he soon comes face to face with the cruel reality that the usual police tactics are too futile to send these armed thieves behind bars. Extreme crime requires extreme justice, even if it means crossing his moral line. Tou, an ex-con desperate to leave his criminal past behind, volunteers to be Luiâ��s snitch in exchange for a fresh start with her girlfriend Bing. But little does he know what hellish situation heâ��s getting himself into.’,3.376967,’2013-12-12′,0,110,’Released’,”,5.90,43),(244267,’I Origins’,0,”,’I Origins follows a molecular biologist studying the evolution of the human eye. He finds his work permeating his life after a brief encounter with an exotic young woman who slips away from him. As his research continues years later with his lab partner, they make a stunning scientific discovery that has far reaching implications and complicates both his scientific and and spiritual beliefs. Traveling half way around the world, he risks everything he has ever known to validate his theory.’,37.555398,’2014-07-18′,336472,106,’Released’,”,7.50,1063),(244316,’Into the Grizzly Maze’,10000000,”,’Two estranged brothers reunite at their childhood home in the Alaskan wild. They set out on a two-day hike and are stalked by an unrelenting grizzly bear.’,10.073144,’2015-02-27′,0,94,’Released’,’Hunt or be hunted.’,5.10,74),(244339,’é��å�ºç��天’,0,”,’On the hottest day in 50 years, a serious fire incident happened to a busy commercial tower, a gaggle of fire fighters with an indestructible enthusiasm are going to save lives.’,1.583918,’2013-03-10′,0,107,’Released’,”,5.80,11),(244403,’Rudderless’,5000000,”,’A grieving father in a downward spiral stumbles across a box of his recently deceased son\’s demo tapes and lyrics. Shocked by the discovery of this unknown talent, he forms a band in the hope of finding some catharsis.’,10.619574,’2014-10-17′,0,105,’Released’,’The way back begins with a single chord.’,7.40,105),(244534,’Happy Christmas’,0,”,’After a breakup with her boyfriend, a young woman moves in with her older brother, his wife, and their 2-year-old son.’,7.052422,’2014-06-26′,0,82,’Released’,’Family is the gift that keeps on taking.’,5.20,58),(244772,’The Skeleton Twins’,0,”,’Estranged twins Maggie and Milo coincidentally cheat death on the same day, prompting them to reunite and confront the reasons their lives went so wrong. As the twins\’ reunion reinvigorates them, they realize the key to fixing their lives may just lie in repairing their relationship.’,15.699363,’2014-01-18′,5284309,90,’Released’,’Family is a cruel joke.’,6.70,292),(244776,’The Sleepwalker’,0,”,’A young couple, Kaia and Andrew, are renovating Kaia\’s secluded family estate. Their lives are violently interrupted when unexpected guests arrive. The Sleepwalker chronicles the unraveling of the lives of four disparate characters as it transcends genre conventions and narrative contrivance to reveal something much more disturbing.’,0.926084,’2014-01-20′,0,92,’Released’,”,4.10,7),(244783,’Song One’,6000000,’http://songonemovie.tumblr.com/’,’Estranged from her family, Franny returns home when an accident leaves her brother comatose. Retracing his life as an aspiring musician, she tracks down his favorite musician, James Forester. Against the backdrop of Brooklynâ��s music scene, Franny and James develop an unexpected relationship and face the realities of their lives.’,6.349218,’2014-01-20′,32251,86,’Released’,’A moment can change everything.’,5.50,87),(244786,’Whiplash’,3300000,’http://sonyclassics.com/whiplash/’,’Under the direction of a ruthless instructor, a talented young drummer begins to pursue perfection at any cost, even his humanity.’,192.528841,’2014-10-10′,13092000,105,’Released’,’The road to greatness can take you to the edge.’,8.30,4254),(245700,’Mr. Turner’,0,”,’Eccentric British painter J.M.W. Turner lives his last 25 years with gusto and secretly becomes involved with a seaside landlady, while his faithful housekeeper bears an unrequited love for him.’,9.242554,’2014-10-31′,5405500,150,’Released’,”,6.30,204),(245703,’Midnight Special’,18000000,’http://www.midnightspecialmovie.com/’,’A father and son go on the run after the dad learns his child possesses special powers.’,32.717853,’2016-02-18′,6212282,112,’Released’,’He\’s not like us.’,6.20,694),(245846,’Strangerland’,10000000,”,’Newly arrived to a remote desert town, Catherine and Matthew are tormented by a suspicion when their two teenage children mysteriously vanish.’,5.145655,’2015-07-01′,17472,111,’Released’,’To find the truth they must lose themselves.’,5.10,83),(245916,’Kill the Messenger’,5000000,”,’A reporter becomes the target of a vicious smear campaign that drives him to the point of suicide after he exposes the CIA\’s role in arming Contra rebels in Nicaragua and importing cocaine into California. Based on the true story of journalist Gary Webb.’,21.343093,’2014-10-09′,2450846,112,’Released’,’Can you keep a national secret?’,6.60,355),(246403,’Tusk’,2800000,”,’When his best friend and podcast co-host goes missing in the backwoods of Canada, a young guy joins forces with his friend\’s girlfriend to search for him.’,15.754614,’2014-09-19′,1826705,102,’Released’,’Let me tell you a story…’,5.10,366),(246449,’Against the Wild’,1493619,’http://againstthewild.com/’,’The action-packed feature film tells the dramatic tale of two siblings and their Alaskan Malamute, who must make an emergency landing when their small plane has engine problems. They find themselves in a beautiful but potentially dangerous natural environment that they must overcome together.’,2.492747,’2013-12-29′,0,90,’Released’,’Partners in survival. Friends for life.’,4.90,19),(246655,’X-Men: Apocalypse’,178000000,’http://www.foxmovies.com/movies/x-men-apocalypse’,’After the re-emergence of the world\’s first mutant, world-destroyer Apocalypse, the X-Men must unite to defeat his extinction level plan.’,139.272042,’2016-05-18′,543934787,144,’Released’,’Only the strong will survive’,6.40,4721),(248402,’A Fine Step’,0,”,’A Fine Step is an uplifting family drama centering on Cal Masterson (Luke Perry, Beverly Hills 90210) an award winning horseman whose relationship with his beloved horse Fandango allows him to achieve multiple championship wins. However tragedy strikes when Cal and Fandango are involved in a serious accident, ending Cal\’s horse riding days forever. Cal\’s devastation is slowly overcome when his new neighbour, 14 year old Claire Mason (Anna Claire Sneed, Glee) takes an interest in Fandango and convinces him that Fandango\’s competing days might not be over.’,0.654340,’2014-04-16′,0,90,’Released’,’Together they learnt to dream again’,4.10,7),(248774,’Obvious Child’,0,”,’An immature, newly unemployed comic must navigate the murky waters of adulthood after her fling with a graduate student results in an unplanned pregnancy.’,10.128950,’2014-06-06′,3123963,83,’Released’,”,6.70,187),(249164,’If I Stay’,11000000,”,’Based on Gayle Forman\’s novel of the same name. \”If I Stay\” is the story of the gifted classical musician Mia and her boyfriend, Adam, an up and coming indie-rock star. Torn between two paths in life, her art or her relationship, Mia is forced to make an even starker choice between life and death when she is caught in a fatal car accident with her family one snowy morning in Oregon.’,31.162838,’2014-08-21′,78874843,106,’Released’,’Live for Love.’,7.30,1368),(250066,’American Heist’,10000000,”,’Two brothers, both with troubled paths, find themselves in the middle of one last bank job.’,11.431434,’2014-09-11′,0,94,’Released’,’Brothers in arms for life.’,4.30,158),(250124,’The Diary of a Teenage Girl’,2000000,”,’Minnie Goetze is a 15-year-old aspiring comic-book artist, coming of age in the haze of the 1970s in San Francisco. Insatiably curious about the world around her, Minnie is a pretty typical teenage girl. Oh, except that sheâ��s sleeping with her motherâ��s boyfriend.’,18.224326,’2015-08-07′,1477002,98,’Released’,’Some things are best kept secret.’,6.80,279),(250184,’Locker 13′,0,’http://www.locker13.com/’,’The story of Skip, a young ex-convict who takes a position as a night janitor at an old-west theme park. His supervisor Archie, teaches him the ropes, but more importantly attempts to convey critical philosophical messages through a series of four stories: a down and out boxer is given the opportunity to become a real golden gloves killer; an assassin kidnaps three people in order to find out who hired him for his latest hit; a new recruit is initiated into a lodge of fez-wearing businessmen where hazing can take a malevolent turn; and a member of a suicide club introduces real fear into a man about to jump to his death.’,1.905197,’2014-03-29′,0,90,’Released’,”,6.80,3),(250349,’Barbecue’,6000000,”,’On his 50th birthday, a man who\’s been watching his weight, health and temper all his life suffers a heart attack. He\’s been doing everything he was told he should do and it still didn\’t help. He decides to turn the page and let loose.’,5.119593,’2014-04-30′,14348529,98,’Released’,”,5.80,214),(250546,’Annabelle’,6500000,’http://annabellemovie.com/’,’John Form has found the perfect gift for his expectant wife, Mia – a beautiful, rare vintage doll in a pure white wedding dress. But Mia\’s delight with Annabelle doesn\’t last long. On one horrific night, their home is invaded by members of a satanic cult, who violently attack the couple. Spilled blood and terror are not all they leave behind. The cultists have conjured an entity so malevolent that nothing they did will compare to the sinister conduit to the damned that is now… Annabelle.’,60.225219,’2014-10-02′,255273813,99,’Released’,’Before the Conjuring, there was Annabelle.’,5.60,1517),(250902,’The Image Revolution’,50000,”,’Twenty years ago, seven superstar artists left Marvel Comics to create their own company, Image Comics, a company that continues to influence mainstream comics and pop culture to this day. Image began as more than just a publisher – it was a response to years of creator mistreatment, and changed comics forever. The Image Revolution tells the story of Image Comics, from its founders\’ work at Marvel, through Image\’s early success, company difficulties during the comics market implosion, and ultimately the publisher\’s new generation of properties like The Walking Dead. Filled with colorful characters, the film is a clarion call to artists to take control of their destiny.’,0.545620,’2013-11-21′,0,81,’Released’,”,5.70,3),(251321,’Aloft’,8000000,”,’As we follow a mother and her son, we delve into a past marred by an accident that tears them apart. She will become a renowned artist and healer, and he will grow into his own and a peculiar falconer who bears the marks of a double absence. In the present, a young journalist will bring about an encounter between the two that puts the very meaning of life and art into question, so that we may contemplate the possibility of living life to its fullest, despite the uncertainties littering our paths.’,6.500835,’2014-02-12′,53086,112,’Released’,”,5.10,41),(251471,’A LEGO Brickumentary’,650000,’http://www.thelegodocumentary.com’,’A look at the global culture and appeal of the LEGO building-block toys.’,1.631274,’2015-07-31′,0,93,’Released’,”,6.40,55),(251979,’The Perfect Wave’,0,’http://www.theperfectwave.co.za/’,’â��The Perfect Waveâ�� is the true story of Ian McCormack who grew up surfing the waters of New Zealand. Wanting to dive deeper, Ian sets out on a journey with his best friend that will change his life as they chase the perfect wave.’,4.118612,’2014-02-28′,0,113,’Released’,”,4.40,21),(252360,’In the Name of the King III’,3500000,”,’Hazen Kaine, an American contract killer living in Sofia, Bulgaria, gets more than he bargains for when he enters into a contract with the mob. One last job before he gets out and starts a new life for himself. The targets: the three children of royal billionaire Andon Dupont. Seems simple enough, or so he thought. Hazen apprehends the children, and before he can blink an eye, a simple necklace worn by one of the children sends his life spiraling back to medieval times. Now completely out of his element, Hazen fights for his life as he tries to escape a medieval army and a fierce fire-breathing dragon.’,4.304341,’2013-12-27′,0,85,’Released’,”,3.30,19),(252512,’While We\’re Young’,10000000,’http://while-were-young.com/’,’An uptight documentary filmmaker and his wife find their lives loosened up a bit after befriending a free-spirited younger couple.’,19.263477,’2015-04-03′,7587485,97,’Released’,’Life Never Gets Old.’,5.80,383),(252680,’Moms\’ Night Out’,5000000,’http://www.momsnightoutmovie.com/’,’Yearning for an evening without their kids, some friends plan a night out. But to do this, their husbands need to watch the kids. What can go wrong?’,10.274542,’2014-03-25′,10429707,98,’Released’,’What could go wrong?’,5.50,121),(253235,’And So It Goes’,18000000,”,’A self-centered realtor enlists the help of his neighbor when he\’s suddenly left in charge of the granddaughter he never knew existed until his estranged son drops her off at his home.’,9.633711,’2014-07-20′,25312387,94,’Released’,”,5.70,164),(253253,’Animals’,0,”,’ANIMALS tells the story of Jude and Bobbie: a young couple that exist somewhere between homelessness and the fantasy of their imaginations. Though they masterfully con and steal in an attempt to stay one step ahead of their addiction, they are ultimately forced to face the reality of their situation when one of them gets hospitalized.’,1.584600,’2014-05-15′,0,90,’Released’,”,6.20,9),(253261,’Born to Fly: Elizabeth Streb vs. Gravity’,0,”,’Born to Fly pushes the boundaries between action and art, daring us to join choreographer Elizabeth Streb and her dancers in pursuit of human flight.’,0.069244,’2014-03-08′,0,82,’Released’,”,5.00,1),(253290,’Butterfly Girl’,0,”,’Abbie came of age in honky tonks, defying her life threatening disease, but all the while longing for an identity of her own. Now that she is 18, how much is she willing to sacrifice for her independence?’,0.015189,’2014-03-10′,0,77,’Released’,”,0.00,0),(253306,’Housebound’,0,’http://www.houseboundthemovie.com/’,’When Kylie Bucknell is sentenced to home detention, she\’s forced to come to terms with her unsociable behaviour, her blabbering mother and a hostile spirit who seems less than happy about the new living arrangement.’,10.322858,’2014-09-04′,0,109,’Released’,’Terror Gets Domesticated’,6.50,358),(253331,’Black or White’,9000000,”,’A grieving widower is drawn into a custody battle over his granddaughter, whom he helped raise her entire life.’,12.172131,’2014-09-06′,21571189,121,’Released’,’There\’s more to family than what you see.’,6.50,115),(253412,’Everest’,55000000,’http://www.everestmovie.com/’,’Inspired by the incredible events surrounding a treacherous attempt to reach the summit of the world\’s highest mountain, \”Everest\” documents the awe-inspiring journey of two different expeditions challenged beyond their limits by one of the fiercest snowstorms ever encountered by mankind. Their mettle tested by the harshest of elements found on the planet, the climbers will face nearly impossible obstacles as a lifelong obsession becomes a breathtaking struggle for survival.’,60.246978,’2015-09-10′,203427584,121,’Released’,’The Storm Awaits.’,6.70,1772),(253450,’å�ºå®¢è�¶é�±å¨�’,15000000,”,’A female assassin during the Tang Dynasty who begins to question her loyalties when she falls in love with one of her targets.’,8.142166,’2015-08-27′,632542,105,’Released’,”,6.60,157),(253626,’Good Kill’,0,”,’In the shadowy world of drone warfare, combat unfolds like a video gameâ��only with real lives at stake. After six tours of duty, Air Force pilot Tom Egan (Ethan Hawke) now fights the Taliban from an air-conditioned bunker in the Nevada desert. But as he yearns to get back in the cockpit of a real plane and becomes increasingly troubled by the collateral damage he causes each time he pushes a button, Eganâ��s nervesâ��and his relationship with his wife (Mad Men\’s January Jones)â��begin to unravel.’,10.924273,’2015-04-09′,316472,104,’Released’,”,5.90,208),(254024,’The Face of an Angel’,0,”,’Both a journalist and a documentary filmmaker chase the story of a murder and its prime suspect.’,7.336256,’2014-09-06′,0,100,’Released’,’Forget the truth, find the story.’,4.70,64),(254128,’San Andreas’,110000000,’http://www.sanandreasmovie.com/’,’In the aftermath of a massive earthquake in California, a rescue-chopper pilot makes a dangerous journey across the state in order to rescue his estranged daughter.’,100.412364,’2015-05-27′,470490832,114,’Released’,’A rescue pilot survived an earthquake, this is what happens next’,6.00,2968),(254470,’Pitch Perfect 2′,29000000,”,’The Bellas are back, and they are better than ever. After being humiliated in front of none other than the President of the United States of America, the Bellas are taken out of the Aca-Circuit. In order to clear their name, and regain their status, the Bellas take on a seemingly impossible task: winning an international competition no American team has ever won. In order to accomplish this monumental task, they need to strengthen the bonds of friendship and sisterhood and blow away the competition with their amazing aca-magic! With all new friends and old rivals tagging along for the trip, the Bellas can hopefully accomplish their dreams.’,71.496894,’2015-05-07′,287506194,115,’Released’,’We\’re back pitches’,6.80,1940),(254472,’Stung’,2500000,”,’A fancy garden party turns into upper class prey when a colony of killer wasps mutates into seven foot tall predators.’,4.270489,’2015-07-03′,0,87,’Released’,’Get inside, get away, just don\’t get stung’,4.90,63),(254473,’Brick Mansions’,28000000,”,’In a dystopian Detroit, grand houses that once housed the wealthy are now homes of the city\’s most-dangerous criminals. Surrounding the area is a giant wall to keep the rest of Detroit safe. For undercover cop Damien Collier, every day is a battle against corruption as he struggles to bring his father\’s killer, Tremaine, to justice. Meanwhile, Damien and an ex-con named Lino work together to save the city from a plot to destroy it.’,25.520976,’2014-04-22′,68896829,90,’Released’,’Undercover and never Outgunned’,5.70,615),(254904,’The November Man’,15000000,’http://thenovemberman.com/’,’An ex- CIA operative is brought back in on a very personal mission and finds himself pitted against his former pupil in a deadly game involving high level CIA officials and the Russian president-elect.’,45.317278,’2014-08-27′,32556119,108,’Released’,’A spy is never out of the game.’,6.00,639),(255266,’Dry Spell’,22000,’https://www.facebook.com/DrySpellMovie’,’Sasha tries to get her soon-to-be ex husband Kyle laid so she can move on with her sex life guilt-free.’,0.048948,’2013-02-14′,0,90,’Released’,’Getting divorced does funny things to a girl’,6.00,1),(255343,’Escobar: Paradise Lost’,17000000,”,’For Pablo Escobar family is everything. When young surfer Nick falls for Escobar\’s niece, Maria, he finds his life on the line when he\’s pulled into the dangerous world of the family business.’,25.112567,’2014-10-11′,3758328,120,’Released’,’Welcome to the family’,6.10,271),(256040,’Baahubali: The Beginning’,40000000,’http://baahubali.com/’,’The young Shivudu is left as a foundling in a small village by his mother. By the time heâ��s grown up, it has become apparent that he possesses exceptional gifts. He meets the beautiful warrior/princess Avanthika and learns that her queen has been held captive for the last 25 years. Shividu sets off to rescue her, discovering his own origins in the process.’,16.254032,’2015-07-10′,100000000,159,’Released’,”,7.50,135),(256092,’Drive Hard’,12000000,”,’A former race car driver is abducted by a mysterious thief and forced to be the wheel-man for a crime that puts them both in the sights of the cops and the mob.’,3.944870,’2014-05-26′,0,96,’Released’,’One Hell of A Ride’,3.90,74),(256274,’As Above, So Below’,5000000,’http://www.asabovesobelowmovie.com/’,’When a team of explorers ventures into the catacombs that lie beneath the streets of Paris, they uncover the dark secret that lies within this city of the dead.’,26.510558,’2014-08-14′,40100000,93,’Released’,’The only way out is down.’,6.10,766),(256591,’Focus’,50100000,’http://focusmovie.com/’,’Nicky, a veteran con artist, takes a novice named Jess under his wing. While Nicky teaches Jess the tricks of the trade, the pair become romantically involved; but, when Jess gets uncomfortably close, Nicky ends their relationship. Three years later, Nicky is in Buenos Aires working a very dangerous scheme when Jess — now an accomplished femme fatale — unexpectedly shows up. Her appearance throws Nicky for a loop at a time when he cannot afford to be off his game.’,59.634029,’2015-02-25′,153962963,105,’Released’,’Never Drop The Con.’,6.70,2542),(256687,’Swelter’,0,”,’Ten years after their casino heist, four escaped convicts trace their former partner to a desert town, where he is now a lawman with no memory of his criminal past.’,2.214925,’2014-04-20′,0,96,’Released’,’Greed. Revenge. Redemption.’,4.60,21),(256740,’Wicked Blood’,3500000,”,’Hannah and Amber Baker are trapped in a dark Southern underworld of violence, drugs and bikers. Both live in fear of their \”Uncle Frank\” Stinson, the ruthless leader of a crime organization.’,3.158056,’2014-03-04′,0,92,’Released’,’The Ultimate Endgame’,5.30,37),(256917,’The Water Diviner’,22500000,’http://www.thewaterdiviner.com/’,’In 1919, Australian farmer Joshua Connor travels to Turkey to discover the fate of his three sons, reported missing in action. Holding on to hope, Joshua must travel across the war-torn landscape to find the truth and his own peace.’,22.096286,’2014-12-25′,15520023,112,’Released’,’To honour a promise. To find his sons. To make his peace.’,6.80,431),(256924,’Danny Collins’,10000000,”,’An ageing rock star decides to change his life when he discovers a 40-year-old letter written to him by John Lennon.’,16.318608,’2015-03-19′,10835752,107,’Released’,’A letter from John Lennon changed his life’,6.60,183),(256961,’Paul Blart: Mall Cop 2′,38000000,”,’Security guard Paul Blart is headed to Las Vegas to attend a Security Guard Expo with his teenage daughter Maya before she departs for college. While at the convention, he inadvertently discovers a heist – and it\’s up to Blart to apprehend the criminals.’,41.258487,’2015-04-16′,107597242,94,’Released’,’Vegas has a new high roller.’,5.00,567),(256962,’Little Boy’,20000000,’http://www.littleboymovie.com/’,’An eight-year-old boy is willing to do whatever it takes to end World War II so he can bring his father home. The story reveals the indescribable love a father has for his little boy and the love a son has for his father.’,12.232048,’2015-04-23′,6420319,106,’Released’,’Believe the impossible.’,7.00,185),(257087,’The Veil’,4000000,’http://www.blumhouse.com/tag/the-veil/’,’The story springs from the real-world headlines of religious cults and mass suicides. With Veil, it begins 30 years ago, when members of a religious cult known as Heaven\’s Veil take their own lives. The truth behind what really happened remains buried deep in the memory of the sole survivor, a five-year-old girl, who returns to the compound with a documentary crew as an adult. They soon discover something that is far more terrifying than anything they could have imagined.’,12.822534,’2016-04-21′,0,93,’Released’,’The dead come back’,4.50,118),(257088,’Point Break’,105000000,’https://www.facebook.com/PointBreakMovie’,’A young undercover FBI agent infiltrates a gang of thieves who share a common interest in extreme sports. A remake of the 1991 film, \”Point Break\”.’,33.507289,’2015-12-03′,133718711,114,’Released’,’The only law that matters is gravity’,5.50,783),(257091,’Get Hard’,40000000,”,’When obscenely rich hedge-fund manager James is convicted of fraud and sentenced to a stretch in San Quentin, the judge gives him one month to get his affairs in order. Knowing that he won\’t survive more than a few minutes in prison on his own, James desperately turns to Darnell– a black businessman who\’s never even had a parking ticket — for help. As Darnell puts James through the wringer, both learn that they were wrong about many things, including each other.’,36.301202,’2015-03-26′,111811453,100,’Released’,’An education in incarceration.’,5.90,944),(257211,’The Intern’,35000000,’http://www.theinternmovie.com/’,’70-year-old widower Ben Whittaker has discovered that retirement isn\’t all it\’s cracked up to be. Seizing an opportunity to get back in the game, he becomes a senior intern at an online fashion site, founded and run by Jules Ostin.’,53.114573,’2015-09-24′,194564672,121,’Released’,’Experience never gets old’,7.10,1881),(257344,’Pixels’,88000000,’http://www.pixels-movie.com/’,’Video game experts are recruited by the military to fight 1980s-era video game characters who\’ve attacked New York.’,140.849495,’2015-07-16′,243637091,105,’Released’,’Game On.’,5.60,2513),(257445,’Goosebumps’,58000000,’http://www.goosebumps-movie.com/’,’A teenager teams up with the daughter of young adult horror author R.L. Stine after the writer\’s imaginary demons are set free on the town of Madison, Delaware.’,45.351617,’2015-08-05′,158162788,103,’Released’,’The stories are alive.’,6.20,995),(257932,’Dragon Nest: Warriors\’ Dawn’,40000000,”,’The land of Altera has observed an uneasy peace for years among Humans, Elves and Evil beasts who are loyal to the legendary Black Dragon. But the Black Dragon begins to stir from its hibernation, sending the Beasts marching across Altera. With a beast conquest perilously close, a small group of Humans and Elves unite to try to find a secret hidden road to the Black Dragon\’s cave and destroy it. But the fate of all of them may be in the hands of the young warrior Lambert, who must summon the confidence and skill to face the Black Dragon himself just when all may be lost.’,5.057695,’2014-05-20′,0,88,’Released’,”,6.80,19),(258489,’The Legend of Tarzan’,180000000,’http://legendoftarzan.com’,’Tarzan, having acclimated to life in London, is called back to his former home in the jungle to investigate the activities at a mining encampment.’,42.741719,’2016-06-29′,356743061,109,’Released’,’Human. Nature.’,5.50,2430),(258509,’Alvin and the Chipmunks: The Road Chip’,0,’http://www.foxmovies.com/movies/alvin-and-the-chipmunks-the-road-chip’,’Through a series of misunderstandings, Alvin, Simon and Theodore come to believe that Dave is going to propose to his new girlfriend in New York City – and dump them. They have three days to get to him and stop the proposal.’,27.867368,’2015-12-17′,233755553,92,’Released’,’Fast & furry-ous’,5.80,428),(258755,’A escondidas’,0,”,’At the age of 14 the world around you changes at a dizzying speed. But what if actually it\’s you that changing? What if these changes take you away from what up until now, has been your world? Ibrahim and Rafa are going to suffer these changes for themselves, experiencing first love in a way they never could have imagined. And having to keep it Hidden away.’,1.233688,’2014-10-03′,0,96,’Released’,”,7.60,26),(259693,’The Conjuring 2′,40000000,’http://www.warnerbros.com/conjuring-2′,’Lorraine and Ed Warren travel to north London to help a single mother raising four children alone in a house plagued by malicious spirits.’,68.794673,’2016-05-13′,320170008,134,’Released’,’The next true story from the case files of Ed and Lorraine Warren’,7.00,1949),(259694,’How to Be Single’,38000000,’http://howtobesinglemovie.com/’,’New York City is full of lonely hearts seeking the right match, and what Alice, Robin, Lucy, Meg, Tom and David all have in common is the need to learn how to be single in a world filled with ever-evolving definitions of love.’,46.078371,’2016-01-21′,112343513,110,’Released’,’Welcome to the party’,5.90,1201),(259943,’å½�æ�¥’,0,”,’Lu and Feng are a devoted couple forced to separate when Lu is arrested and sent to a labor camp as a political prisoner during the Cultural Revolution. He finally returns home only to find that his beloved wife no longer remembers him.’,6.017273,’2014-05-16′,0,111,’Released’,”,6.90,49),(260346,’Taken 3′,48000000,’http://www.taken3movie.com/’,’Ex-government operative Bryan Mills finds his life is shattered when he\’s falsely accused of a murder that hits close to home. As he\’s pursued by a savvy police inspector, Mills employs his particular set of skills to track the real killer and exact his unique brand of justice.’,88.844777,’2014-12-16′,325771424,109,’Released’,’It Ends Here’,6.10,2200),(260778,’வாலà¯�’,0,”,’Sharp (Simbu), a happy-go-lucky guy, loves Priya (Hansika), a college student, but later learns that she is enagaged to Anbu ( Aditya), a businessman-gangster. Priya wants them to remain friends and Sharp agrees, all the while scheming to make her fall in love with him.’,0.320387,’2015-08-14′,0,155,’Released’,’Life is what u make it’,6.70,5),(260947,’Something Wicked’,3000000,”,’A young couple embark upon their honeymoon against the chilling landscapes of the Pacific Northwest. But when tragedy strikes, gruesome secrets from their past collide with sinister forces of the present…’,1.968679,’2014-04-04′,0,95,’Released’,”,4.60,16),(261023,’Black Mass’,53000000,”,’The true story of Whitey Bulger, the brother of a state senator and the most infamous violent criminal in the history of South Boston, who became an FBI informant to take down a Mafia family invading his turf.’,46.049902,’2015-09-04′,98837872,122,’Released’,’Keep your enemies close.’,6.30,1242),(262500,’Insurgent’,110000000,’http://www.thedivergentseries.movie/#insurgent’,’Beatrice Prior must confront her inner demons and continue her fight against a powerful alliance which threatens to tear her society apart.’,103.718387,’2015-03-18′,295238201,119,’Released’,’One Choice Can Destroy You’,6.20,3829),(262504,’Allegiant’,110000000,’http://www.thedivergentseries.movie/#allegiant’,’Beatrice Prior and Tobias Eaton venture into the world outside of the fence and are taken into protective custody by a mysterious agency known as the Bureau of Genetic Welfare.’,86.105615,’2016-03-09′,179246868,121,’Released’,’Break the boundaries of your world’,5.90,1998),(262543,’Autómata’,7000000,’http://www.automata-movie.com/’,’Jacq Vaucan, an insurance agent of ROC robotics corporation, routinely investigates the case of manipulating a robot. What he discovers will have profound consequences for the future of humanity.’,49.808505,’2014-10-09′,0,110,’Released’,’Your time is coming to an end â�� Ours is now beginning’,5.60,670),(263503,’Water & Power’,0,”,’Twin brothers nicknamed \”Water\” and \”Power\” from the hard scrabble Eastside streets of Los Angeles rise like prince\’s through the city\’s political and police ranks to become players in a complex and dangerous web of the powerful and corrupt of Los Angeles.’,0.350557,’2014-05-02′,0,0,’Released’,”,3.00,1),(264644,’Room’,6000000,’http://www.roomthemovie.com’,’Jack is a young boy of 5 years old who has lived all his life in one room. He believes everything within it are the only real things in the world. But what will happen when his Ma suddenly tells him that there are other things outside of Room?’,66.113340,’2015-10-16′,35401758,117,’Released’,’Love knows no boundaries’,8.10,2757),(264656,’The Homesman’,16000000,”,’When three women living on the edge of the American frontier are driven mad by harsh pioneer life, the task of saving them falls to the pious, independent-minded Mary Bee Cuddy. Transporting the women by covered wagon to Iowa, she soon realizes just how daunting the journey will be, and employs a low-life drifter, George Briggs, to join her. The unlikely pair and the three women head east, where a waiting minister and his wife have offered to take the women in. But the group first must traverse the harsh Nebraska Territories marked by stark beauty, psychological peril and constant threat.’,20.591480,’2014-05-18′,3442853,122,’Released’,”,6.40,258),(264660,’Ex Machina’,15000000,’http://exmachina-movie.com/’,’Caleb, a 26 year old coder at the world\’s largest internet company, wins a competition to spend a week at a private mountain retreat belonging to Nathan, the reclusive CEO of the company. But when Caleb arrives at the remote location he finds that he will have to participate in a strange and fascinating experiment in which he must interact with the world\’s first true artificial intelligence, housed in the body of a beautiful robot girl.’,95.130041,’2015-01-21′,36869414,108,’Released’,’There is nothing more human than the will to survive’,7.60,4737),(264999,’Magic Mike XXL’,14800000,”,’Three years after Mike bowed out of the stripper life at the top of his game, he and the remaining Kings of Tampa hit the road to Myrtle Beach to put on one last blow-out performance.’,29.660993,’2015-07-01′,122513057,115,’Released’,’Back to the grind.’,6.30,706),(265208,’Wild Card’,30000000,”,’When a Las Vegas bodyguard with lethal skills and a gambling problem gets in trouble with the mob, he has one last playâ�¦ and it\’s all or nothing.’,48.034300,’2015-01-14′,0,92,’Released’,’Never bet against a man with a killer hand.’,5.40,656),(266034,’La chambre bleue’,0,”,’A man and a woman, secretly in love, alone in a room. They desire each other, want each other, and even bite each other. In the afterglow, they share a few sweet nothings. At least the man seemed to believe they were nothing. Now under investigation by the police and the courts, what is he accused of?’,2.486992,’2014-05-16′,0,75,’Released’,”,6.20,32),(266102,’Desert Dancer’,0,”,’Inspirational true story of Iranian dancer Afshin Ghaffarian, who risked his life for his dream to become a dancer despite a nationwide dancing ban.’,1.972668,’2014-07-03′,0,98,’Released’,’Be Brave. Be Bold. Be Free.’,6.50,18),(266396,’The Gunman’,40000000,”,’Eight years after fleeing the Congo following his assassination of that country\’s minister of mining, former assassin Jim Terrier is back, suffering from PTSD and digging wells to atone for his violent past. After an attempt is made on his life, Terrier flies to London to find out who wants him dead — and why. Terrier\’s search leads him to a reunion with Annie, a woman he once loved, who is now married to an oily businessman with dealings in Africa.’,26.935458,’2015-02-16′,13644292,115,’Released’,’Armed With the Truth.’,5.50,392),(266647,’Pan’,150000000,”,’Living a bleak existence at a London orphanage, 12-year-old Peter finds himself whisked away to the fantastical world of Neverland. Adventure awaits as he meets new friend James Hook and the warrior Tiger Lily. They must band together to save Neverland from the ruthless pirate Blackbeard. Along the way, the rebellious and mischievous boy discovers his true destiny, becoming the hero forever known as Peter Pan.’,48.035280,’2015-09-24′,128388320,111,’Released’,’Every legend has a beginning.’,5.90,954),(266856,’The Theory of Everything’,15000000,’http://www.focusfeatures.com/the_theory_of_everything’,’The Theory of Everything is the extraordinary story of one of the worldâ��s greatest living minds, the renowned astrophysicist Stephen Hawking, who falls deeply in love with fellow Cambridge student Jane Wilde.’,61.182331,’2014-11-26′,123726688,123,’Released’,’His Mind Changed Our World. Her Love Changed His.’,7.80,3311),(266857,’The Work and The Story’,0,”,’It is July, 2000 Richard Dutcher, the man who pioneered \”Mormon Cinema\” with his film \”God\’s Army\” is missing and presumed dead. Three amateur Mormon Filmmakers: Judy Shumway, Peter Beuhmann and Kevin Evans individually set out to make their first feature-length films to take Dutcher\’s place as the next \”Mormon Spielberg\”. Who will win? Who will lose? Who will find Richard? And does everyone want Richard found?’,0.002388,’2003-01-01′,0,70,’Released’,’Dream big. Make it happen?’,0.00,0),(267860,’London Has Fallen’,60000000,’https://www.facebook.com/LondonHasFallenOfficial’,’In London for the Prime Minister\’s funeral, Mike Banning discovers a plot to assassinate all the attending world leaders.’,61.849521,’2016-03-02′,205754447,99,’Released’,’The world\’s leaders have assembled. So have their enemies.’,5.80,1621),(267935,’The BFG’,140000000,’http://movies.disney.com/the-bfg’,’The BFG is no ordinary bone-crunching giant. He is far too nice and jumbly. It\’s lucky for Sophie that he is. Had she been carried off in the middle of the night by the Bloodbottler, or any of the other giantsâ��rather than the BFGâ��she would have soon become breakfast. When Sophie hears that the giants are flush-bunking off to England to swollomp a few nice little chiddlers, she decides she must stop them once and for all. And the BFG is going to help her!’,44.190920,’2016-06-01′,183345589,120,’Released’,’The world is more giant than you can imagine.’,6.00,1000),(268171,’Elsa & Fred’,10000000,”,’Aged, embittered widower, Fred learns to enjoy life thanks to his elderly yet vibrant neighbor, Elsa. Upon learning Elsa is terminally ill, Fred takes her to the Fontana di Trevi in Rome in order to reenact her favorite scene from â��La Dolce Vitaâ��.’,2.849895,’2014-03-07′,0,104,’Released’,’It\’s never too late.’,6.20,31),(268238,’The Second Best Exotic Marigold Hotel’,10000000,”,’As the Best Exotic Marigold Hotel has only a single remaining vacancy – posing a rooming predicament for two fresh arrivals – Sonny pursues his expansionist dream of opening a second hotel.’,17.592299,’2015-02-26′,85978266,122,’Released’,”,6.30,272),(268917,’The Past Is a Grotesque Animal’,100,”,’A personal, accessible look at an artist – Kevin Barnes, frontman of the endlessly versatile indie pop band of Montreal – whose pursuit to make transcendent music at all costs drives him to value art over human relationships. As he struggles with all of those around him, family and bandmates alike, he\’s forced to reconsider the future of the band, begging the question – is this really worth it?’,0.394575,’2014-06-15′,0,77,’Released’,”,5.50,2),(268920,’Hot Pursuit’,35000000,”,’An uptight by-the-book cop must protect the widow of a drug boss from crooked cops and gunmen.’,18.262017,’2015-05-08′,51680201,87,’Released’,’Armed and Sort-of Dangerous.’,5.40,647),(269057,’Bang Bang Baby’,1000000,”,’A small town teenager in the 1960s believes her dreams of becoming a famous singer will come true when her rock star idol gets stranded in town. But a leak in a nearby chemical plant that is believed to be causing mass mutations threatens to turn her dream into a nightmare.’,0.973323,’2014-09-08′,0,90,’Released’,’Once upon a time, there was a girl…’,6.60,8),(270303,’It Follows’,2000000,”,’For 19-year-old Jay, fall should be about school, boys and weekends out at the lake. But a seemingly innocent physical encounter turns sour and gives her the inescapable sense that someone, or something, is following her. Faced with this burden, Jay and her teenage friends must find a way to escape the horror that seems to be only a few steps behind.’,100.876794,’2015-02-04′,14674076,100,’Released’,’It doesn\’t think, it doesn\’t feel, it doesn\’t give up’,6.60,1832),(270487,’Hail, Caesar!’,22000000,’http://www.hailcaesar-film.com/ww/’,’Tells the comedic tale of Eddie Mannix, a fixer who worked for the Hollywood studios in the 1950s. The story finds him at work when a star mysteriously disappears in the middle of filming.’,39.006187,’2016-02-05′,63647656,106,’Released’,’Lights. Camera. Abduction.’,5.70,1309),(270554,’Echo Dr.’,0,”,’When their home security system malfunctions, a family struggles to survive an attack against a state of the art patrol guard that believes they are intruders.’,0.053755,’2013-11-08′,0,85,’Released’,’To Serve & Terminate’,5.00,1),(270938,’Falcon Rising’,0,”,’Chapman is an ex-marine in Brazil\’s slums, battling the yakuza outfit who attacked his sister and left her for dead.’,6.988357,’2014-09-05′,0,103,’Released’,”,5.50,71),(270946,’Penguins of Madagascar’,132000000,”,’Skipper, Kowalski, Rico and Private join forces with undercover organization The North Wind to stop the villainous Dr. Octavius Brine from destroying the world as we know it.’,84.366984,’2014-11-22′,373552094,92,’Released’,’The Movie Event That Will Blow Their Cover’,6.50,1346),(271110,’Captain America: Civil War’,250000000,’http://marvel.com/captainamericapremiere’,’Following the events of Age of Ultron, the collective governments of the world pass an act designed to regulate all superhuman activity. This polarizes opinion amongst the Avengers, causing two factions to side with Iron Man or Captain America, which causes an epic battle between former allies.’,198.372395,’2016-04-27′,1153304495,147,’Released’,’Divided We Fall’,7.10,7241),(271185,’Ask Me Anything’,950000,’http://undiscoveredgyrl.com/’,’Beautiful, wild, funny, and lost, Katie Kampenfelt takes a year off before college to find herself, all the while chronicling her adventures in an anonymous blog into which she pours her innermost secrets. Eventually, Katie\’s fearless narrative begins to crack, and dark pieces of her past emerge.’,8.976128,’2014-04-19′,0,100,’Released’,’Young. Not so innocent.’,5.50,155),(271331,’United Passions’,27000000,”,’An epic, untold story that brings to life the inspiring saga of the World Cup and the three determined men who created it. Driven by their vision and passion, three men, overcame their doubts and fought obstacles and scandals to make the World Cup a reality. Spanning the tumultuous 20th Century, this timeless saga celebrates the event that became the most popular sporting event in the world.’,6.036684,’2014-06-19′,0,110,’Released’,’Every dream has it\’s own rules’,3.00,16),(271718,’Trainwreck’,35000000,”,’Having thought that monogamy was never possible, a commitment-phobic career woman may have to face her fears when she meets a good guy.’,72.774941,’2015-07-17′,140795793,125,’Released’,’We All Know One.’,5.90,1181),(271969,’Ben-Hur’,100000000,’http://www.benhurmovie.com/’,’A falsely accused nobleman survives years of slavery to take vengeance on his best friend who betrayed him.’,29.608322,’2016-08-17′,94061311,125,’Released’,’First to finish. Last to die.’,5.30,621),(272693,’The DUFF’,8500000,’http://www.duffmovie.com/’,’Bianca\’s universe turns upside down when she learns that her high school refers to her as a â��DUFF\’ (Designated Ugly Fat Friend). Hoping to erase that label, she enlists the help of a charming jock and her favorite teacher. Together they\’ll face the school\’s mean girl and remind everyone that we are all someone\’s DUFFâ�¦ and that\’s totally fine.’,40.287090,’2015-02-20′,43528634,100,’Released’,’You either know one, you have one, or you are one.’,6.80,1322),(272724,’Doc Holliday\’s Revenge’,1000000,”,’In 1882, Joseph and Elizabeth Cooley head West to reunite with family she never knew. But when she, Joseph, and her older brother, Millard, are stranded in a logging camp just outside Tucson a wounded Indian stumbles into their camp and they must defend him against Doc Holliday, his would-be killer. Elizabeth considers Doc a stone-cold killer — but may find, during the course of their tense stand-off, that this courtly, ailing man has a surprisingly well-honed sense of justice, frontier-style…’,0.459400,’2014-06-01′,0,84,’Released’,”,3.20,3),(272726,’Dude Where\’s My Dog?’,0,”,’Left home alone with his dog Harry, young Ray finds himself in a bit of trouble when Harry gets loose in the suspicious neighbor\’s house and accidentally knocks over a top-secret invisibility potion! Now, with crooks and the FBI on his tail, Ray needs to find his invisible mischievous mutt before they do – and get Harry back before his parents get home!’,0.283970,’2014-06-12′,0,0,’Released’,”,0.00,0),(272878,’Max’,20000000,”,’A dog that helped soldiers in Afghanistan returns to the U.S. and is adopted by his handler\’s family after suffering a traumatic experience.’,14.136476,’2015-06-26′,43967255,111,’Released’,’Best Friend. Hero. Marine.’,6.80,276),(273248,’The Hateful Eight’,44000000,’http://thehatefuleight.com/’,’Bounty hunters seek shelter from a raging blizzard and get caught up in a plot of betrayal and deception.’,68.717016,’2015-12-25′,155760117,167,’Released’,’No one comes up here without a damn good reason.’,7.60,4274),(273481,’Sicario’,30000000,”,’A young female FBI agent joins a secret CIA operation to take down a Mexican cartel boss, a job that ends up pushing her ethical and moral values to the limit.’,55.424027,’2015-09-17′,84025816,121,’Released’,’The border is just another line to cross.’,7.20,2416),(273895,’Selma’,20000000,”,’\”Selma,\” as in Alabama, the place where segregation in the South was at its worst, leading to a march that ended in violence, forcing a famous statement by President Lyndon B. Johnson that ultimately led to the signing of the Civil Rights Act.’,29.023184,’2014-12-25′,66787908,127,’Released’,’One dream can change the world.’,7.40,817),(273899,’Stonewall’,13500000,’https://twitter.com/Stonewall_Movie’,’\”Stonewall\” is a drama about a young man in New York caught up during the 1969 Stonewall Riots, a pivotal event widely considered the starting point for the modern gay civil rights movement.’,5.160230,’2015-09-18′,187674,129,’Released’,’Where Pride Began’,5.20,32),(274167,’Daddy\’s Home’,50000000,’http://daddyshomemovie.tumblr.com/’,’The story of a mild-mannered radio executive (Ferrell) who strives to become the best stepdad ever to his wife\’s two children, but complications ensue when their freewheeling, freeloading real father arrives, forcing stepdad to compete for the affection of the kids.’,38.616744,’2015-12-25′,242786137,96,’Released’,’Choose your Daddy’,5.80,854),(274479,’Joy’,60000000,’http://www.foxmovies.com/movies/joy’,’A story based on the life of a struggling Long Island single mom who became one of the country\’s most successful entrepreneurs.’,29.876507,’2015-12-24′,101134059,124,’Released’,”,6.40,1581),(274758,’Give Me Shelter’,0,’http://www.give-me-shelter.com/’,’Give Me Shelter is a documentary to raise awareness for important animal issues around the world. This film uncovers the most prevalent issues in the animal world through the eyes of individuals dedicating their lives to them daily.’,0.278981,’2014-06-24′,0,90,’Released’,”,0.00,0),(274854,’The Last Witch Hunter’,90000000,’http://www.thelastwitchhunter.movie/’,’The modern world holds many secrets, but by far the most astounding is that witches still live among us; vicious supernatural creatures intent on unleashing the Black Death upon the world and putting an end to the human race once and for all. Armies of witch hunters have battled this unnatural enemy for centuries, including Kaulder, a valiant warrior who many years ago slayed the all-powerful Witch Queen, decimating her followers in the process. In the moments right before her death, the Queen cursed Kaulder with immortality, forever separating him from his beloved wife and daughter. Today, Kaulder is the last living hunter who has spent his immortal life tracking down rogue witches, all the while yearning for his long-lost family.’,52.612025,’2015-10-21′,146936910,106,’Released’,’Hunt forever.’,5.70,1316),(276907,’Legend’,25000000,’https://www.uphe.com/movies/legend-2015′,’Suave, charming and volatile, Reggie Kray and his unstable twin brother Ronnie start to leave their mark on the London underworld in the 1960s. Using violence to get what they want, the siblings orchestrate robberies and murders while running nightclubs and protection rackets. With police Detective Leonard \”Nipper\” Read hot on their heels, the brothers continue their rapid rise to power and achieve tabloid notoriety.’,32.854557,’2015-09-09′,42972994,131,’Released’,’Love, fight, live, rule like a legend.’,6.70,973),(277216,’Straight Outta Compton’,28000000,’http://www.straightouttacompton.com/’,’In 1987, five young men, using brutally honest rhymes and hardcore beats, put their frustration and anger about life in the most dangerous place in America into the most powerful weapon they had: their music. Taking us back to where it all began, Straight Outta Compton tells the true story of how these cultural rebelsâ��armed only with their lyrics, swagger, bravado and raw talentâ��stood up to the authorities that meant to keep them down and formed the worldâ��s most dangerous group, N.W.A. And as they spoke the truth that no one had before and exposed life in the hood, their voice ignited a social revolution that is still reverberating today.’,61.762330,’2015-08-13′,201634991,147,’Released’,’The Story of N.W.A.’,7.70,1355),(277519,’Z 風æ�´’,0,”,’This is a story about the biggest financial fraud attempted in Hong Kong, directed at the Government of Hong Kong and involved all 7 million Hong Kong citizens… no one is free from the scheme. Within the four decades of guarding Hong Kong\’s financial integrity, the ICAC has never come across an opponent so huge and so well organized as in the Z Torrent file… shadowy figures from the underworld of South America, Italy and Europe all ready to plot against the estimated 150 million dollars of Hong Kong citizens\’ tax money which was pooled in a fund called the WELFARE FUND. High profile chartered accountants, high ranking law enforcers, power lawyers, the super entrepreneurs; they all have their shares of play but none can really grasp the big picture; they are there only for what they desire most.’,0.542814,’2014-06-19′,0,92,’Released’,”,5.80,5),(277685,’Unfriended’,1000000,”,’While video chatting one night, six high school friends receive a Skype message from a classmate who killed herself exactly one year ago. A first they think it\’s a prank, but when the girl starts revealing the friends\’ darkest secrets, they realize they are dealing with something out of this world, something that wants them dead. Told entirely from a young girl\’s computer desktop, Unfriended redefines \’found footage\’ for a new generation of teens.’,41.972329,’2015-04-17′,62882090,82,’Released’,’Online, your memories last forever. But so do your mistakes.’,5.50,1047),(278316,’Da Sweet Blood of Jesus’,0,”,’A movie about human beings who are addicted to blood.’,4.480579,’2014-06-22′,0,123,’Released’,”,4.10,13),(278348,’The Maid\’s Room’,0,”,’Drina, a young immigrant working as a live-in maid for a wealthy Long Island family, finds herself entangled in the family\’s web of dark secrets once she begins to suspect her employer\’s son has committed a terrible crime.’,1.501688,’2014-08-08′,0,98,’Released’,’How far will a family go to bury the truth?’,4.80,4),(278927,’The Jungle Book’,175000000,’http://movies.disney.com/the-jungle-book-2016′,’After a threat from the tiger Shere Khan forces him to flee the jungle, a man-cub named Mowgli embarks on a journey of self discovery with the help of panther, Bagheera, and free spirited bear, Baloo.’,94.199316,’2016-04-07′,966550600,106,’Released’,”,6.70,2892),(279759,’Harrison Montgomery’,0,”,’Film from Daniel Davila’,0.006943,’2008-01-01′,0,0,’Released’,”,0.00,0),(280092,’Insidious: Chapter 3′,10000000,”,’A twisted new tale of terror begins for a teenage girl and her family, predating the haunting of the Lambert family in the earlier movies and revealing more mysteries of the otherworldly realm The Further.’,45.946524,’2015-06-04′,104303851,97,’Released’,’This is how you die’,6.20,983),(280381,’House at the End of the Drive’,0,’http://houseattheendofthedrive.com/’,’When David King purchases a house in the hills far above the angst of Los Angeles, he gets much more than he bargained for when strange and unexplainable occurrences in and around the house begin to take control of his daily life’,0.430490,’2014-01-11′,0,91,’Released’,’It\’s where they died.’,0.00,0),(280391,’Pourquoi j\’ai pas mangé mon père’,0,’http://pourquoijaipasmangemonpere.com/’,’Based on the novel \’Evolution Man\’ by Roy Lewis, this tells the story about the first man – young Edward – to descend from apes. Edward is ejected by his tribe, but is very resourceful. He learns to walk, discovers fire, manages to hunt – and we follow him as he evolves. He has a generous nature, and search for true humanity – a world where we don\’t eat our fathers.’,5.794466,’2015-04-08′,0,100,’Released’,’These feet are made for walkin\”,5.30,125),(280871,’ராமானà¯�à®�னà¯�’,0,”,’A prodigious Indian mathematician has to overcome poverty and prejudices and make a mark with the help of his British mentor.’,0.416179,’2014-07-11′,0,170,’Released’,”,5.00,3),(281189,’Gory Gory Hallelujah’,0,”,’Four actors compete for the role of Jesus – a black revolutionary, a bisexual hippie, a Jew, and a feminist. When all four are rejected, they hit the road on bad-ass motorcycles, bound for glory in New York City. But when a run-in with a gang of Elvises ends in murder, they find themselves taken prisoner in a little town called Jackville – where folk don\’t take kindly to blasphemers. The Jesuses fall prey to an evil conspiracy that can only lead to the Apocalypse.’,0.033883,’2003-11-05′,0,0,’Released’,”,1.00,1),(281230,’Fort McCoy’,0,”,’Unable to serve in World War II because of a heart condition, a barber moves his family adjacent to a Wisconsin army base and prisoner-of-war camp to provide his services. But even in rural America — far from the frontline — the war finds victims.’,0.384496,’2014-01-01′,0,0,’Released’,”,6.30,2),(281730,’Fugly’,0,”,’It is a story of 4 friends – Dev, Gaurav, Aditya & Devi. The cast is young & fresh. They are at the cusp of their lives – The college has just about finished, but career path is yet to be set. These are the last few days of true freedom that we have all gone through, and still cherish. These friends are conscientious, they will have fun but would never cross the boundaries – They all have dreams and expectations from life, but as they say – man proposes, god disposes. Their fun filled and care free life comes to an abrupt halt, when they are faced with an extremely corrupt and seemingly fearless Police Officer. This puts a series of events in motion which will test their friendship and characters – their life becomes \’Fugly\’.’,0.371337,’2014-06-13′,0,134,’Released’,”,5.30,2),(281957,’The Revenant’,135000000,’http://www.foxmovies.com/movies/the-revenant’,’In the 1820s, a frontiersman, Hugh Glass, sets out on a path of vengeance against those who left him for dead after a bear mauling.’,100.635882,’2015-12-25′,532950503,156,’Released’,'(n. One who has returned, as if from the dead.)’,7.30,6396),(282128,’An American in Hollywood’,0,”,’A talented young filmmaker from New York sets off to Los Angeles in pursuit of the Hollywood dream, only to discover through his relationship with a beautiful feisty young actress, that Hollywood is not all that it seems.’,0.015697,’2014-07-18′,0,89,’Released’,”,0.00,0),(283384,’The Calling’,0,”,’Detective Hazel Micallef hasn\’t had much to worry about in the sleepy town of Port Dundas until a string of gruesome murders in the surrounding countryside brings her face to face with a serial killer driven by a higher calling.’,5.759493,’2014-08-05′,0,108,’Released’,’Pray for the Prey’,5.60,88),(283445,’Sinister 2′,10000000,’http://www.sinistermovie.com/’,’A young mother and her twin sons move into a rural house that\’s marked for death.’,26.090495,’2015-08-19′,52882018,97,’Released’,’Be careful, children at play.’,5.40,581),(283671,’Jungle Shuffle’,0,’http://www.jungleshuffle.com/’,’In this turbulent jungle adventure an outcast coati male has to team up with a quirky spider monkey to save a coati princess from the hands of a human poacher and his mysterious client.’,1.413934,’2014-08-07′,0,85,’Released’,”,6.50,1),(283686,’Out of the Dark’,0,”,’A couple and their daughter moves to Colombia to take over a family manufacturing plant, only to realize their new home is haunted.’,3.215465,’2014-08-27′,0,92,’Released’,”,4.60,55),(283708,’Loin des hommes’,7700000,”,’A French teacher in a small Algerian village during the Algerian War forms an unexpected bond with a dissident who is ordered to be turned in to the authorities.’,3.363973,’2014-08-30′,0,110,’Released’,”,6.60,43),(284293,’Still Alice’,5000000,”,’Alice Howland, happily married with three grown children, is a renowned linguistics professor who starts to forget words. When she receives a devastating diagnosis, Alice and her family find their bonds tested.’,35.307577,’2014-12-05′,43884652,99,’Released’,”,7.50,1104),(284296,’Top Five’,0,’http://www.topfivemovie.com/’,’A comedian tries to make it as a serious actor when his reality-TV star fiancé talks him into broadcasting their wedding on her TV show.’,15.896312,’2014-12-12′,25434291,102,’Released’,”,6.30,210),(284536,’The Gambler’,25000000,’http://www.thegamblermovie.com/’,’Literature professor Jim Bennett leads a secret life as a high-stakes gambler. Always a risk-taker, Bennett bets it all when he borrows from a gangster and offers his own life as collateral. Staying one step ahead, he pits his creditor against the operator of an illicit gambling ring while garnering the attention of Frank, a paternalistic loan shark. As his relationship with a student deepens, Bennett must risk everything for a second chance.’,22.622453,’2014-12-25′,39171130,111,’Released’,’The only way out is all in’,5.70,543),(285743,’Alleluia! The Devil\’s Carnival’,0,’http://www.thedevilscarnival.com/’,’The Devil\’s Carnival: Alleluia! is the second episode of The Devil\’s Carnival. The episode will revolve around the war between Hell and Heaven.’,0.674398,’2016-03-29′,0,0,’Released’,’Hell ain\’t got a prayer.’,6.00,2),(285783,’The Walk’,35000000,’http://www.sonypictures.com/movies/thewalk/’,’The story of French high-wire artist Philippe Petit\’s attempt to cross the Twin Towers of the World Trade Center in 1974.’,37.335721,’2015-09-30′,61181942,123,’Released’,’Dream High.’,6.90,1121),(285923,’Grindhouse’,67000000,”,’Two full length feature horror movies written by Quentin Tarantino and Robert Rodriguez put together as a two film feature. Including fake movie trailers in between both movies.’,16.637642,’2007-04-06′,25037897,191,’Released’,’A double feature that\’ll tear you in two!’,6.80,459),(286217,’The Martian’,108000000,’http://www.foxmovies.com/movies/the-martian’,’During a manned mission to Mars, Astronaut Mark Watney is presumed dead after a fierce storm and left behind by his crew. But Watney has survived and finds himself stranded and alone on the hostile planet. With only meager supplies, he must draw upon his ingenuity, wit and spirit to subsist and find a way to signal to Earth that he is alive.’,167.932870,’2015-09-30′,630161890,141,’Released’,’Bring Him Home’,7.60,7268),(286565,’Paper Towns’,12000000,”,’Quentin Jacobsen has spent a lifetime loving the magnificently adventurous Margo Roth Spiegelman from afar. So when she cracks open a window and climbs back into his life-dressed like a ninja and summoning him for an ingenious campaign of revenge-he follows. After their all-nighter ends and a new day breaks, Q arrives at school to discover that Margo, always an enigma, has now become a mystery. But Q soon learns that there are clues-and they\’re for him. Urged down a disconnected path, the closer he gets, the less Q sees of the girl he thought he knew.’,64.610671,’2015-06-18′,85512300,109,’Released’,’Get Lost. Get Found.’,6.10,1937),(286939,’Sanctuary: Quite a Conundrum’,0,”,’It should have been just a normal day of sex, fun, alcohol, hormones and debauchery for Tabitha and Mimi, two over-privileged twenty-somethings. But that so-called normalcy gets tossed out the window when a devastating event occurs at a pool party.’,0.166513,’2012-01-20′,0,82,’Released’,”,0.00,0),(287424,’Maggie’,4000000,’http://www.maggiethefilm.com/’,’There\’s a deadly zombie epidemic threatening humanity, but Wade, a small-town farmer and family man, refuses to accept defeat even when his daughter Maggie becomes infected. As Maggie\’s condition worsens and the authorities seek to eradicate those with the virus, Wade is pushed to the limits in an effort to protect her. Joely Richardson co-stars in this post-apocalyptic thriller.’,40.016306,’2015-05-08′,187112,95,’Released’,’Don\’t Get Bitten’,5.20,593),(287524,’Fear Clinic’,1,’http://www.fearclinicmovie.com/’,’A doctor works to cure patients suffering from crippling phobias by placing them inside his invention which induces and controls hallucinations.’,1.859965,’2014-10-31′,0,95,’Released’,”,4.00,42),(287625,’Stories of Our Lives’,0,”,’Created by the members of a Nairobi-based arts collective â�� who have removed their names from the film for fear of reprisal â�� this anthology film that dramatizes true-life stories from Kenyaâ��s oppressed LGBTQ community is both a labour of love and a bold act of militancy.’,0.327794,’2014-09-05′,0,60,’Released’,”,0.00,0),(287815,’Call + Response’,0,”,’Call + Response is a first of its kind feature documentary film that reveals the worldâ��s 27 million dirtiest secrets: there are more slaves today than ever before in human history. Call + Response goes deep undercover where slavery is thriving from the child brothels of Cambodia to the slave brick kilns of rural India to reveal that in 2007, Slave Traders made more money than Google, Nike and Starbucks combined. Luminaries on the issue and many other prominent political and cultural figures offer first hand account of this 21st century trade. Performances from Grammy-winning and critically acclaimed artists move this chilling information into inspiration for stopping it. Music is part of the movement against human slavery. Dr. Cornel West connects the music of the American slave fields to the popular music we listen to today, and offers this connection as a rallying cry for the modern abolitionist movement currently brewing.’,0.062089,’2008-10-10′,0,86,’Released’,’A FILM ABOUT THE WORLD\’S 27 MILLION MOST TERRIFYING SECRETS.’,8.00,1),(287903,’Krampus’,15000000,’http://www.krampusthefilm.com/’,’A horror comedy based on the ancient legend about a pagan creature who punishes children on Christmas.’,31.565117,’2015-11-26′,61548707,98,’Released’,’You don\’t want to be on his list.’,5.90,584),(287948,’The Transporter Refueled’,25000000,’http://www.thetransporterrefueled.com/’,’The fast-paced action movie is again set in the criminal underworld in France, where Frank Martin is known as The Transporter, because he is the best driver and mercenary money can buy. In this installment, he meets Anna and they attempt to take down a group of ruthless Russian human traffickers who also have kidnapped Frankâ��s father.’,25.002715,’2015-09-03′,72629670,96,’Released’,’He Delivers.’,5.20,559),(288927,’Archaeology of a Woman’,0,”,’A woman\’s dementia uncovers secrets of a 30-year-old crime as her daughter struggles to deal with the fallout’,0.254659,’2014-09-12′,0,94,’Released’,”,0.00,0),(288980,’Freedom’,14500000,’http://themoviefreedom.com/’,’Two men separated by 100 years are united in their search for freedom. In 1856 a slave, Samuel Woodward and his family, escape from the Monroe Plantation near Richmond, Virginia. A secret network of ordinary people known as the Underground Railroad guide the family on their journey north to Canada. They are relentlessly pursued by the notorious slave hunter Plimpton. Hunted like a dog and haunted by the unthinkable suffering he and his forbears have endured, Samuel is forced to decide between revenge or freedom. 100 years earlier in 1748, John Newton the Captain of a slave trader sails from Africa with a cargo of slaves, bound for America. On board is Samuel\’s great grandfather whose survival is tied to the fate of Captain Newton. The voyage changes Newton\’s life forever and he creates a legacy that will inspire Samuel and the lives of millions for generations to come.’,4.389363,’2014-08-21′,0,98,’Released’,’John Newton\’s Amazing Grace’,5.80,9),(289180,’H.’,0,”,’H. is a modern interpretation of a classic Greek tragedy in which two women, each named Helen, live out their mirrored lives of one another in the town of Troy, NY. The first Helen is in her 60s, lives with her husband Roy, and takes care of a small, extremely lifelike baby doll called a â��Reborn Doll,â�� which she cares for as a living baby. The second Helen is in her 30s, has a successful art career with her partner Alex, and is four months pregnant. One night, something falls out of the sky and explodes over the town. In the aftermath of this event, bizarre and unexplainable things begin to happen. Many people in the town go missingâ��Helenâ��s husband being one of themâ��and unnatural cloud formations begin appearing in the sky. Meanwhile, the two Helens find themselves, and their lives spinning out of control.’,1.045623,’2014-08-28′,0,93,’Released’,”,6.50,4),(290370,’Mutant World’,0,”,’A decade after a disastrous meteor impact wipes out most of society, a group of survivalists emerge to find themselves on a twisted version of the old Earth, with a nascent society besieged by vicious marauders, ferocious mutants, and the dreadful symptoms of a post-apocalyptic environment.’,1.893697,’2014-09-27′,1500000,85,’Released’,”,2.60,9),(290391,’Run, Hide, Die’,50000,”,’On the anniversary weekend of the death of a young women\’s husband, five girls head out to a cabin to help their friend move past her husband\’s death. As the party continues a dark secret begins to unravel and a hideous past crawls out to seek revenge.’,0.595809,’2015-09-01′,0,75,’Released’,’Five girls, one secret. Revenge stalks them in the night.’,3.50,2),(290555,’Wolves’,18000000,”,’The coming-of-age story of Cayden Richards. Forced to hit the road after the murder of his parents, Cayden wanders lost without purpose… Until he meets a certifiable lunatic named Wild Joe who sets him on a path to the ominous town of Lupine Ridge to hunt down the truths of his history. But in the end| who\’s really hunting whom?’,7.922639,’2014-08-28′,0,90,’Released’,’Unleash the beast’,5.70,82),(290595,’The Huntsman: Winter\’s War’,115000000,’http://www.thehuntsmanmovie.com/’,’As two evil sisters prepare to conquer the land, two renegadesâ��Eric the Huntsman, who aided Snow White in defeating Ravenna in Snowwhite and the Huntsman, and his forbidden lover, Saraâ��set out to stop them.’,60.467984,’2016-04-06′,164602163,114,’Released’,’The story before Snow White’,6.00,1523),(290751,’Secret in Their Eyes’,19500000,’http://secretintheireyes.movie/’,’A tight-knit team of FBI investigators, along with their District Attorney supervisor, is suddenly torn apart when they discover that one of their own teenage daughters has been brutally murdered.’,15.012237,’2015-10-14′,34854990,111,’Released’,’The truth lies in the most unexpected places.’,6.20,336),(290825,’Yoga Hosers’,5000000,’http://www.yogahosers.com/’,’Two teenage yoga enthusiasts team up with a legendary man-hunter to battle with an ancient evil presence that is threatening their major party plans.’,8.618793,’2016-07-08′,0,88,’Released’,’Do your \’wurst…’,4.70,102),(290864,’ä¸�å��人ç��æ¦æ��’,25000000,”,’A martial arts instructor working at a police academy gets imprisoned after killing a man by accident. But when a vicious killer starts targeting martial arts masters, the instructor offers to help the police in return for his freedom.’,6.895866,’2014-10-31′,0,100,’Released’,’Kung Fu is a Skill for Killing’,6.50,114),(291081,’Red Riding: In the Year of Our Lord 1974′,0,”,’It\’s Yorkshire in 1974, and fear, mistrust and institutionalised police corruption are running riot. Rookie journalist Eddie Dunford is determined to search for the truth in an increasingly complex maze of lies and deceit surrounding the police investigation into a series of child abductions. When young Clare Kemplay goes missing, Eddie and his colleague, Barry, persuade their editor to let them investigate links with two similar abductions in the last decade. But after a mutilated body is found on a construction site owned by a local property magnate, Eddie and Barry are drawn into a deadly world of secrecy, intimidation, shocking revelations and police brutality.’,7.247023,’2009-02-28′,0,102,’Released’,’An epic tale of murder, corruption and obsession.’,7.00,54),(291270,’Anomalisa’,8000000,’http://www.anomalisa.com/’,’A man crippled by the mundanity of his life experiences something out of the ordinary.’,21.024346,’2015-12-30′,5659286,90,’Released’,”,7.00,459),(291362,’Road Hard’,1500000,’http://www.roadhardmovie.com’,’After his movie and television career has run dry, Bruce Madsen (Adam Carolla) is forced to go back on the road playing one dingy comedy club after another, spending endless nights in budget hotel rooms and always flying coach. Amidst trying to revitalize his career, rekindle his love life and put his daughter through college, Bruce knows one thing for sure – he must get off the road. ROAD HARD is the story of that journey.’,0.859014,’2015-03-06′,0,97,’Released’,”,6.60,8),(291805,’Now You See Me 2′,90000000,’http://nowyouseeme.movie’,’One year after outwitting the FBI and winning the publicâ��s adulation with their mind-bending spectacles, the Four Horsemen resurface only to find themselves face to face with a new enemy who enlists them to pull off their most dangerous heist yet.’,51.535701,’2016-06-02′,334901337,129,’Released’,’You Haven\’t Seen Anything Yet’,6.70,3235),(291870,’Dirty Grandpa’,11500000,’http://www.dirtygrandpa.movie/’,’Jason Kelly is one week away from marrying his boss\’s uber-controlling daughter, putting him on the fast track for a partnership at the law firm. However, when the straight-laced Jason is tricked into driving his foul-mouthed grandfather, Dick, to Daytona for spring break, his pending nuptials are suddenly in jeopardy. Between riotous frat parties, bar fights, and an epic night of karaoke, Dick is on a quest to live his life to the fullest and bring Jason along for the ride.’,56.805781,’2016-01-21′,94073028,102,’Released’,’This is Jason. He\’s a little worried about his grandpa.’,5.70,1406),(292481,’Henry & Me’,5000000,”,’Henry & Me tells the courageous story of Jack (AUSTIN WILLIAMS), a brave young boy who is dealt a life changing blow. Low on confidence and filled with self-doubt, hope seems lost until a mysterious stranger named Henry (RICHARD GERE) appears. With the touch of his pin, Henry sweeps Jack away to a magical world where illness no longer exists and New York Yankee legends play forever. The incredible journey brings Jack face to face with Babe Ruth (CHAZZ PALMINTERI), Thurman Munson (PAUL SIMON), Lefty Gomez (LUIS GUZMAN) and Mickey Mantle (DAVID MANTLE) â�� who all teach Jack to face his fears and never give up. The movie climaxes at Yankee stadium, where Jack must test his newfound courage to save the season and find his way home. Featuring an all star-cast of unforgettable characters, Henry & Me is heartwarming movie experience for the entire family with a message of hopeâ�¦ when life throws a curveâ�¦ swing away!’,0.999655,’2014-08-18′,0,67,’Released’,”,3.00,3),(292483,’Not Cool’,0,’http://www.notcoolthemovie.com/’,’NOT COOL follows former prom king and college freshman Scott (Shane Dawson) who has just returned home for Thanksgiving break only to be dumped by his eccentric, long-term girlfriend. With his world turned upside down, Scott strikes an unlikely friendship with former classmate Tori (Cherami Leigh), an ugly duckling who blossomed in her first semester of college. Together, the two embark on an outrageous adventure through their hometown. But when Scott and Tori find their friendship turning into something deeper, they realize that a few months away may have changed them more than they realized.’,1.186971,’2014-09-23′,0,90,’Released’,”,3.70,25),(292539,’Food Chains’,913000,”,”,0.795698,’2014-04-26′,0,83,’Released’,”,7.40,8),(293644,’Don Gato: El inicio de la pandilla’,8000000,”,’Top Cat has arrived to charm his way into your hearts! Ever wonder how this scheming feline got his start? Well Top Cat Begins reveals the origins of everything you know and love about this classic comedy hero. What follows is an adventure so crazy that it has to be seen to be believed!’,0.719996,’2015-10-30′,0,89,’Released’,”,5.30,9),(293646,’The 33′,25000000,”,’Based on a true story about the collapse at the mine in San Jose, Chile that left 33 miners isolated underground for 69 days.’,10.699952,’2015-08-06′,24902723,120,’Released’,’Hope Runs Deep’,6.00,378),(293660,’Deadpool’,58000000,’http://www.foxmovies.com/movies/deadpool’,’Deadpool tells the origin story of former Special Forces operative turned mercenary Wade Wilson, who after being subjected to a rogue experiment that leaves him with accelerated healing powers, adopts the alter ego Deadpool. Armed with his new abilities and a dark, twisted sense of humor, Deadpool hunts down the man who nearly destroyed his life.’,514.569956,’2016-02-09′,783112979,108,’Released’,’Witness the beginning of a happy ending’,7.40,10995),(293670,’곡ì�±’,0,”,’A stranger arrives in a little village and soon after a mysterious sickness starts spreading. A policeman is drawn into the incident and is forced to solve the mystery in order to save his daughter.’,9.050290,’2016-05-12′,0,156,’Released’,’Never be tempted.’,7.20,250),(293863,’The Age of Adaline’,25000000,’http://theageofadalinemovie.com’,’After 29-year-old Adaline recovers from a nearly lethal accident, she inexplicably stops growing older. As the years stretch on and on, Adaline keeps her secret to herself until she meets a man who changes her life.’,82.052056,’2015-04-16′,65663276,112,’Released’,’Love is timeless.’,7.40,1990),(294086,’Tiger Orange’,0,’http://www.tigerorangemovie.com/’,’In the small Central California town where they grew up, two estranged gay brothers struggle to reconnect after the recent death of their father.’,0.176377,’2014-07-26′,0,75,’Released’,’Do We Stand Out or Do We Fit In?’,6.40,4),(294254,’Maze Runner: The Scorch Trials’,61000000,’http://mazerunnermovies.com’,’Thomas and his fellow Gladers face their greatest challenge yet: searching for clues about the mysterious and powerful organization known as WCKD. Their journey takes them to the Scorch, a desolate landscape filled with unimaginable obstacles. Teaming up with resistance fighters, the Gladers take on WCKDâ��s vastly superior forces and uncover its shocking plans for them all.’,113.161483,’2015-09-09′,311256926,132,’Released’,’The Maze Was Just the Beginning.’,6.40,3040),(294272,’Pete\’s Dragon’,65000000,’http://movies.disney.com/petes-dragon-2016′,’Pete is a mysterious 10-year-old with no family and no home who claims to live in the woods with a giant, green dragon named Elliott. With the help of Natalie, an 11-year-old girl whose father Jack owns the local lumber mill, forest ranger Grace sets out to determine where Pete came from, where he belongs, and the truth about this dragon.’,31.974359,’2016-08-10′,143695338,102,’Released’,’Some secrets are too big to keep.’,6.20,679),(294512,’Alpha and Omega: The Legend of the Saw Tooth Cave’,0,”,’The Alphas and Omegas share a thrilling adventure after Runt discovers the Saw Tooth Cave. Runt finds a wolf in need and lends a helping paw. Stars Ben Diskin & Kate Higgins. American computer-animated action-comedy/fantasy film exclusively from Walmart. It is the fourth film in the Alpha and Omega franchise and the sequel to Alpha and Omega, A Howl-iday Adventure, and The Great Wolf Games.’,1.874783,’2014-07-21′,0,53,’Released’,”,6.50,4),(294550,’The Outrageous Sophie Tucker’,0,”,’The rags to riches story of Sophie Tucker, an iconic superstar who ruled the worlds of vaudeville, Broadway, radio, television, and Hollywood throughout the 20th century. Before Beyoncé, Lady Gaga, Madonna, Bette Midler, Marilyn Monroe, and Mae West, Sophie Tucker was the first woman to infatuate her audiences with a bold, bawdy and brassy style unlike any other. Using all of \”The Last of the Red Hot Mamas\” 400-plus recently rediscovered personal scrapbooks, authors Susan and Lloyd Ecker take you on their seven-year journey retracing Tucker\’s sixty-year career in show business.`’,0.021419,’2014-05-02′,0,96,’Released’,”,0.00,0),(294600,’Last I Heard’,0,”,’Released from federal prison after 20 years due to his ailing health, a formerly powerful New York mobster moves back home and attempts to reconnect with former life in this poignant Sopranos-esque character study.’,0.358190,’2013-01-01′,0,98,’Released’,”,6.00,1),(295886,’Brotherly Love’,1900000,”,’West Philadelphia basketball star Sergio Taylor deals with the pressures of fame while his brother and sister have their own issues with ambition.’,1.367751,’2015-04-24′,0,89,’Post Production’,”,6.90,21),(295914,’Kurmanjan Datka. Queen of the Mountains’,0,”,’At a time when most females in Asia possess little or no power over their lives, headstrong Kurmanjan Datka defies her family\’s authority — and ultimately becomes the ruler of her native Kyrgyzstan region.’,0.077873,’2014-08-22′,0,135,’Released’,”,0.00,0),(295964,’Burnt’,20000000,’http://burntmovie.com/’,’Adam Jones is a Chef who destroyed his career with drugs and diva behavior. He cleans up and returns to London, determined to redeem himself by spearheading a top restaurant that can gain three Michelin stars.’,30.477114,’2015-10-02′,36606743,100,’Released’,’Never underestimate a man with everything to lose.’,6.30,950),(296096,’Me Before You’,20000000,’http://www.mebeforeyoumovie.net’,’A small town girl is caught between dead-end jobs. A high-profile, successful man becomes wheelchair bound following an accident. The man decides his life is not worth living until the girl is hired for six months to be his new caretaker. Worlds apart and trapped together by circumstance, the two get off to a rocky start. But the girl becomes determined to prove to the man that life is worth living and as they embark on a series of adventures together, each finds their world changing in ways neither of them could begin to imagine.’,53.161905,’2016-06-02′,207945075,110,’Released’,’#LiveBoldly’,7.60,2562),(296098,’Bridge of Spies’,40000000,”,’During the Cold War, the Soviet Union captures U.S. pilot Francis Gary Powers after shooting down his U-2 spy plane. Sentenced to 10 years in prison, Powers\’ only hope is New York lawyer James Donovan, recruited by a CIA operative to negotiate his release. Donovan boards a plane to Berlin, hoping to win the young man\’s freedom through a prisoner exchange. If all goes well, the Russians would get Rudolf Abel, the convicted spy who Donovan defended in court.’,48.445978,’2015-10-15′,165478348,141,’Released’,’In the shadow of war, one man showed the world what we stood for.’,7.20,2583),(296099,’Vacation’,31000000,”,’Hoping to bring his family closer together and to recreate his childhood vacation for his own kids, a grown up Rusty Griswold takes his wife and their two sons on a cross-country road trip to the coolest theme park in America, Walley World. Needless to say, things don\’t go quite as planned.’,47.753598,’2015-07-28′,104384188,99,’Released’,’What could go wrong?’,6.20,1195),(296943,’The Hadza: Last of the First’,0,’http://www.thehadzalastofthefirst.com/’,’A look at human origins in the very place of our origins, Africa\’s Rift Valley’,0.045648,’2014-10-31′,0,70,’Released’,”,0.00,0),(297100,’The Little Ponderosa Zoo’,500000,”,’The Little Ponderosa Zoo is preparing for their annual fundraiser festival that keeps the zoo afloat. The Freeman family, Jack, Judy, and their young daughter, Charlie opened the zoo years earlier after sharing their own home with the many animals they had rescued through the years With the help of Mr. Baker, their dependable zookeeper, the zoo has always been a huge hit with the small town. But, one day, the local bank owner discovers some dusty old documents in the basement of his bank that show that the zoo is sitting on a gold mine and, with the help of the town Mayor, and the Mayor s bumbling nephew, they immediately devise a devious plan to get the gold for themselves. The greedy trio see the annual festival as the perfect opportunity to put their dangerous plan into action and close the zoo forever and get their hands on the gold!’,0.073079,’2014-09-11′,0,84,’Released’,”,2.00,1),(297596,’Dying of the Light’,15000000,”,’Evan Lake, a veteran CIA agent, has been ordered to retire. But when his protégé uncovers evidence that Lake\’s nemesis, the terrorist Banir, has resurfaced, Lake goes rogue, embarking on a perilous, intercontinental mission to eliminate his sworn enemy.’,10.480090,’2014-12-04′,0,94,’Released’,”,4.50,118),(297621,’There\’s Always Woodstock’,0,”,’When Neurotic, struggling songwriter, Catherine Brown\’s life in New York City falls apart, she is forced to confront her past when she spends the summer at her childhood home in Woodstock.’,2.025701,’2014-11-14′,0,90,’Released’,’Let your heart sing’,5.40,12),(297761,’Suicide Squad’,175000000,’http://www.suicidesquad.com/’,’From DC Comics comes the Suicide Squad, an antihero team of incarcerated supervillains who act as deniable assets for the United States government, undertaking high-risk black ops missions in exchange for commuted prison sentences.’,90.237920,’2016-08-02′,745000000,123,’Released’,’Worst Heroes Ever’,5.90,7458),(298312,’The Visit’,5000000,’http://www.stayinyourroom.com/’,’The terrifying story of a brother and sister who are sent to their grandparents\’ remote Pennsylvania farm for a weeklong trip. Once the children discover that the elderly couple is involved in something deeply disturbing, they see their chances of getting back home are growing smaller every day.’,38.947080,’2015-09-10′,98450062,94,’Released’,’No one loves you like your grandparents.’,6.00,1360),(298584,’Cabin Fever’,0,”,’In this grisly remake of the 2002 horror hit, five college chums rent an isolated woodland cabin for a party. But their fun quickly ends when the group is exposed to a hideous flesh-eating virus, and survival becomes the name of the game.’,5.379319,’2016-02-12′,0,99,’Released’,’You can\’t run from what\’s inside.’,4.40,111),(299145,’Dawn Patrol’,0,”,’After the brutal murder of his beloved brother, a small-town surfer seeks revenge against the gang of merciless thugs he holds responsible. However, when another tragedy brings him face to face with the consequences of his actions, he must seek forgiveness from the very people he despises most.’,3.230779,’2015-06-05′,0,86,’Released’,’Revenge comes at a price.’,5.00,11),(299245,’The Gallows’,100000,’http://thegallowsmovie.com/’,’20 years after a horrific accident during a small town school play, students at the school resurrect the failed show in a misguided attempt to honor the anniversary of the tragedy – but soon discover that some things are better left alone.’,18.045782,’2015-07-10′,42664410,87,’Released’,’Every School Has Its Spirit’,4.90,361),(299552,’Born Of War’,0,”,’Mina, a young college student, has her life ripped away after her family is killed. When she finds out their murder was part of a botched kidnapping to return her to her real fatherâ��a terrorist in the middle east.’,1.136568,’2013-12-05′,0,109,’Released’,”,4.10,7),(299553,’Shark Lake’,2000000,’http://www.screenmedia.net/project/shark-lake/’,’Meredith Hendricks happens to be the best cop in her quiet town on Lake Tahoe. When a black-market exotic species dealer named Clint is paroled from prison, something he let loose begins to make its presence known. Swimmers and land-lovers alike begin to become part of the food chain at an unbelievable rate. Meredith and her team discover that they\’re not just hunting one eating machine, but a whole family of them. Not everyone will make it out alive, but those who do will never forget this summer at Shark Lake.’,1.187764,’2015-10-02′,0,92,’Released’,’In this lake you have to fight to survive’,4.40,19),(299687,’The 5th Wave’,38000000,’https://www.facebook.com/5thWaveMovie/’,’16-year-old Cassie Sullivan tries to survive in a world devastated by the waves of an alien invasion that has already decimated the population and knocked mankind back to the Stone Age.’,57.889964,’2016-01-14′,109906372,112,’Released’,’Protect Your Own’,5.60,1945),(300168,’天å°�é��師’,65000000,”,’Huo An, the commander of the Protection Squad of the Western Regions, was framed by evil forces and becomes enslaved. On the other hand, a Roman general escapes to China after rescuing the Prince. The heroic duo meet in the Western Desert and a thrilling story unfolds.’,9.568884,’2015-02-19′,121545703,127,’Released’,’When the Eagle meets the Dragon’,5.90,145),(300327,’Death Calls’,0,”,’An action-packed love story on the Mexican border featuring oppression, revenge, reincarnation and rebirth.’,0.005883,’2010-09-01′,0,0,’Released’,”,0.00,0),(300671,’13 Hours: The Secret Soldiers of Benghazi’,50000000,’http://www.thirteenhoursmovie.com/’,’An American Ambassador is killed during an attack at a U.S. compound in Libya as a security team struggles to make sense out of the chaos.’,42.526529,’2016-01-13′,69411370,144,’Released’,’When everything went wrong, six men had the courage to do what was right.’,7.00,938),(300673,’The Finest Hours’,80000000,’https://www.facebook.com/thefinesthoursmovie’,’The Coast Guard makes a daring rescue attempt off the coast of Cape Cod after a pair of oil tankers are destroyed during a blizzard in 1952.’,28.223664,’2016-01-25′,52099090,114,’Released’,’32 survivors, room for 12.’,6.30,588),(300706,’Let\’s Kill Ward\’s Wife’,5000000,”,’Everyone hates Wardâ��s wife and wants her dead, Ward (Donald Faison) most of all. But when his friendsâ�� murderous fantasies turn into an (accidental) reality, they have to deal with a whole new set of problems â�� like how to dispose of the body and still make their 3 p.m. tee time. Scott Foley\’s directorial debut, also starring Foley, Patrick Wilson, Amy Acker, and Nicolette Sheridan, is a blackly comic caper about helping a friend out of a bad relationship by any means necessary.’,8.496364,’2014-12-23′,0,81,’Released’,’Real Friends Do the Dirty Work.’,5.50,76),(301325,’#Horror’,1500000,’http://www.hashtaghorror.com/’,’Inspired by actual events, a group of 12 year old girls face a night of horror when the compulsive addiction of an online social media game turns a moment of cyber bullying into a night of insanity.’,2.815228,’2015-11-20′,0,90,’Released’,’Death is trending.’,3.30,52),(301351,’We Are Your Friends’,6000000,”,’Young Cole Carter dreams of hitting the big time as a Hollywood disc jockey, spending his days and nights hanging with buddies and working on the one track that will set the world on fire. Opportunity comes knocking when he meets James Reed, a charismatic DJ who takes the 23-year-old under his wing. Soon, his seemingly clear path to success gets complicated when he starts falling for his mentor\’s girlfriend, jeopardizing his new friendship and the future he seems destined to fulfill.’,28.819424,’2015-08-26′,11122090,96,’Released’,’The world is yours.’,6.30,658),(301365,’The Neon Demon’,7000000,’http://theneondemon.com/’,’When aspiring model Jesse moves to Los Angeles, her youth and vitality are devoured by a group of beauty-obsessed women who will take any means necessary to get what she has.’,38.150787,’2016-06-08′,1333124,117,’Released’,’Beauty is vicious.’,6.40,887),(301748,’Opposite Sex’,3300000,”,’A Bet\’s A Bet tells the story of Vince, New England\’s most successful divorce attorney. To Vince, life is one big competition, and losing is unacceptable. This also applies in his dating life with his love \’em and leave \’em approach. Then Vince meets Jane, who is beautiful, successful and also extremely driven. Together they enter into a series of entertaining wagers with each other where the winner gets to decide the fate of the loser. After all, \”A Bet\’s a Bet!\”‘,2.964785,’2014-11-08′,45000,96,’Released’,’A battle of the sexes, winner takes all.’,4.10,9),(302156,’Criminal’,31500000,”,’Bill Pope is a CIA agent on a mission in London tracking down a shadowy hacker nicknamed \”The Dutchman.\” When he gets mysteriously ambushed and killed, an experimental procedure is used to transfer his memories into dangerous ex-convict Jericho Stewart. When he wakes up with the CIA agent\’s memories, his mission is to find The Dutchman and eliminate him before the hacker launches ICBM\’s and starts World War III. But complications soon arise and the mission turns personal.’,27.891012,’2016-04-14′,14708696,113,’Released’,”,5.70,557),(302579,’Naturally Native’,700000,’http://naturallynative.com/home.html’,’Naturally Native follows the lives, loves, pain, joy and relationships of three sisters as they attempt to start their own business. Of American Indian ancestry, but adopted by white foster parents as young children, each sister has her own identity issues and each has chosen a very different career path. Now dedicated to starting a Native cosmetic business, they attempt to overcome obstacles both in the business world and in the home. A touching love story of family and culture, Naturally Native also interweaves a subtle, but strong wake-up call regarding the treatment of Native people in corporate America. Naturally Native also provides some insight into tribal infrastructure and gaming issues.’,0.578798,’1999-10-08′,10508,107,’Released’,’Sometimes When You\’re Going Home, It\’s Important To Know Where You\’ve Come From…’,0.00,0);
INSERT INTO `movie` VALUES (302688,’My Big Fat Greek Wedding 2′,18000000,”,’The continuing adventures of the Portokalos family. A follow-up to the 2002 comedy, \”My Big Fat Greek Wedding.\”‘,16.027955,’2016-03-23′,88923251,94,’Released’,’People change. Greeks don\’t.’,5.50,322),(302699,’Central Intelligence’,50000000,’http://www.centralintelligencemovie.com/’,’After he reunites with an old pal through Facebook, a mild-mannered accountant is lured into the world of international espionage.’,45.318703,’2016-06-15′,216972543,107,’Released’,’Saving the world takes a little Hart and a big Johnson’,6.20,1650),(303858,’Money Monster’,27000000,”,’Financial TV host Lee Gates and his producer Patty are put in an extreme situation when an irate investor takes over their studio.’,38.279458,’2016-05-12′,93282604,98,’Released’,’Not every conspiracy is a theory.’,6.50,1068),(304357,’Woman in Gold’,11000000,’http://womaningoldmovie.com/’,’Maria Altmann, an octogenarian Jewish refugee, takes on the Austrian government to recover a world famous painting of her aunt plundered by the Nazis during World War II, she believes rightfully belongs to her family. She did so not just to regain what was rightfully hers, but also to obtain some measure of justice for the death, destruction, and massive art theft perpetrated by the Nazis.’,21.204929,’2015-04-10′,61619773,120,’Released’,’Justice is priceless.’,7.30,440),(304410,’La Famille Bélier’,11000000,”,’The whole Bélier family is deaf, except for sixteen year old Paula who is the important translator in her parents\’ day to day life especially when it comes to matters concerning the family farm. When her music teacher discovers she has a fantastic singing voice and she gets an opportunity to enter a big Radio France contest the whole family\’s future is set up for big changes.’,25.302978,’2014-12-17′,0,105,’Released’,”,7.00,766),(306667,’Horse Camp’,0,”,’Whatâ��s the matter with Kathy (Jordan Trovillion, Highland Park)? Sheâ��s your typical 17 year-old girl in search of something more in her life. It seems the only place she is going to find it is at Horse Camp. Her father Luke (Dean Cain, Lois & Clark: The New Adventures of Superman) recognizes that sheâ��s got it in her blood, a sensibility in her being – she understands horses just as much as they understand her. But at Horse Camp there is much more to learn, not only about horses, but about people and the many challenges of friendship.’,0.172299,’2015-01-10′,0,108,’Released’,’The summer they\’ll never forget’,5.50,2),(306745,’Freeheld’,7000000,’http://www.freeheld.movie/’,’New Jersey car mechanic Stacie Andree and her police detective girlfriend Laurel Hester both battle to secure Hester\’s pension benefits after she was diagnosed with a terminal illness.’,8.184588,’2015-10-02′,573335,103,’Released’,’A true story of love and injustice.’,7.10,164),(307081,’Southpaw’,30000000,”,’Billy \”The Great\” Hope, the reigning junior middleweight boxing champion, has an impressive career, a loving wife and daughter, and a lavish lifestyle. However, when tragedy strikes, Billy hits rock bottom, losing his family, his house and his manager. He soon finds an unlikely savior in Tick Willis, a former fighter who trains the city\’s toughest amateur boxers. With his future on the line, Hope fights to reclaim the trust of those he loves the most.’,65.364452,’2015-06-15′,91709827,123,’Released’,’Believe in Hope.’,7.30,2067),(308467,’Roadside’,0,”,’Dan Summers and his pregnant wife, Mindy, fight for their lives when they are held hostage in their car by an unseen gunman on the side of a desolate mountain road.’,0.160234,’2013-03-01′,0,90,’Released’,’Their fate…is in his hands.’,4.20,5),(308529,’Kickboxer: Vengeance’,17000000,’http://www.kickboxervengeance.com’,’Eric and Kurt Sloane are the descendants of a well-known Venice, California-based family of martial artists. Kurt, the younger of the two, has always been in his brother Ericâ��s shadow, and despite his talent has been told he lacks the instinct needed to become a champion. But when Kurt witnesses the merciless murder of his brother at the hands of Muay Thai champion Tong Po, he vows revenge. He trains with his brotherâ��s mentor for a fight to the death with Tong Po. At first it seems impossible to turn Kurt into the living weapon he must become to beat Tong Po, but through a series of tests and dangerous encounters, Kurt proves he has a deeper strength that will carry him through to his final showdown with Tong Po.’,6.526588,’2016-07-14′,0,90,’Released’,”,4.50,99),(308531,’Teenage Mutant Ninja Turtles: Out of the Shadows’,135000000,’http://www.teenagemutantninjaturtlesmovie.com/’,’After supervillain Shredder escapes custody, he joins forces with mad scientist Baxter Stockman and two dimwitted henchmen, Bebop and Rocksteady, to unleash a diabolical plan to take over the world. As the Turtles prepare to take on Shredder and his new crew, they find themselves facing an even greater evil with similar intentions: the notorious Krang.’,39.873791,’2016-06-01′,245623848,112,’Released’,’Raise some shell.’,5.80,963),(308639,’Dope’,700000,’http://www.youaredope.com/’,’Malcolm is carefully surviving life in a tough neighborhood in Los Angeles while juggling college applications, academic interviews, and the SAT. A chance invitation to an underground party leads him into an adventure that could allow him to go from being a geek, to being dope, to ultimately being himself.’,29.761163,’2015-06-19′,17986781,103,’Released’,’It\’s hard out here for a geek.’,7.20,691),(309425,’Do You Believe?’,0,”,’When a pastor is shaken by the visible faith of a street-corner preacher, he is reminded that true belief always requires action. His response ignites a journey that impacts everyone it touches in ways that only God could orchestrate.’,2.470443,’2015-03-20′,0,115,’Released’,”,6.60,48),(309503,’Zipper’,0,”,’Sam Ellis is a man on the rise â�� a hot-shot federal prosecutor on the cusp of a bright political future. But what was meant to be a one-time experience with an escort turns into a growing addiction â�� a new demon threatening to destroy his life, family, and career.’,8.516229,’2015-08-28′,0,103,’Released’,’Why take the risk’,5.50,58),(309809,’The Little Prince’,64000000,’http://www.thelittleprincemovie.com/’,’Based on the best-seller book \’The Little Prince\’, the movie tells the story of a little girl that lives with resignation in a world where efficiency and work are the only dogmas. Everything will change when accidentally she discovers her neighbor that will tell her about the story of the Little Prince that he once met.’,35.384423,’2015-07-29′,97571250,92,’Released’,’Growing up isn\’t the problem… forgetting is.’,7.60,756),(309919,’The Curse of Downers Grove’,2000000,”,’The town of Downers Grove looks like your average suburban neighborhood — but Downers Grove has a disturbing secret…. For the past eight years, one senior from every high school graduating class has met a bizarre death right before graduation day. And this year, Chrissie Swanson has a terrible feeling that she is going to be the one to die. Can Chrissie survive the curse of Downers Grove or will she, like those seniors before her, fall prey to the town\’s deadly secret?’,2.001630,’2015-08-21′,0,89,’Released’,’High school can be murder.’,4.40,24),(310131,’The Witch’,3500000,’http://a24films.com/films/witch/’,’New England in the 1630s: William and Katherine lead a devout Christian life with five children, homesteading on the edge of an impassable wilderness. When their newborn son vanishes and crops fail, the family turns on one another. Beyond their worst fears, a supernatural evil lurks in the nearby wood.’,50.319662,’2016-02-19′,40423945,92,’Released’,’Evil takes many forms.’,6.30,1434),(310569,’Que Horas Ela Volta?’,0,”,’After leaving her daughter Jessica in a small town in Pernambuco to be raised by relatives, Val spends the next 13 years working as a nanny to Fabinho in São Paulo. She has financial stability but has to live with the guilt of having not raised Jessica herself. As Fabinhoâ��s university entrance exams approach, Jessica reappears in her life and seems to want to give her mother a second chance. However Jessica has not been raised to be a servant and her very existence will turn Valâ��s routine on its head. With precision and humour, Anna Muylaert turns her eye on the subtle and powerful forces that keep rigid class structures in place and how the youth may just be the ones to shake it all up.’,9.683622,’2015-02-08′,0,110,’Released’,”,7.80,165),(310706,’Black Water Transit’,0,”,’In this action thriller set in post-Katrina New Orleans, business owner Jack Vermillion (Laurence Fishburne) is struggling to run a legitimate shipping company while bad guy Ernest Pike (Karl Urban) is struggling to get his family\’s illegal gun collection out of the country. When their paths collide, Jack realizes that exposing Pike might get him just the sway he needs to persuade law enforcement officials to treat his imprisoned son kindly.’,0.126738,’2009-05-13′,0,100,’Released’,”,0.00,0),(310933,’Bleeding Hearts’,0,”,’Captured Hearts, an insane serial killer/horror film, is a heart-jumping, heart-crushing – truly demented – roller coaster ride of mystery, violence, sex and gore. With a raging, climatic twist, all hearts end up in one place. And it\’s not where they\’re supposed to be.’,0.100533,’2013-06-01′,0,0,’Released’,”,2.00,1),(312113,’Black November’,12500000,”,’A volatile, oil-rich Nigerian community wages war against their corrupt government and a multi-national oil corporation to protect their land from being destroyed by excessive drilling and spills. To seek justice, a rebel organization kidnaps an American oil executive and demands that his corporation end the destruction and pollution. Inspired by true events, Black November is the gripping story of how a community rises up and takes drastic measures to make sure their voices are heard.’,1.589693,’2012-12-07′,0,95,’Released’,’Blood Will Be Spilled’,6.40,4),(312221,’Creed’,37000000,’http://creedthemovie.com/’,’The former World Heavyweight Champion Rocky Balboa serves as a trainer and mentor to Adonis Johnson, the son of his late friend and former rival Apollo Creed.’,57.773583,’2015-11-25′,173567581,133,’Released’,’Your legacy is more than a name’,7.30,1915),(312791,’GirlHouse’,3150000,”,’In an attempt to make some extra cash while away at College, Kylie moves into a house that streams content to an X-rated website. After a deranged fan hacks in to determine the house\’s location, she finds herself in a terrifying fight for her life.’,8.039223,’2014-10-16′,0,100,’Released’,’Enjoy the show.’,5.20,97),(312793,’Walking with the Dead’,0,”,’THE WALKING DECEASED is the Scary Movie of the zombie genre, ripping on the biggest and best of zombie pop-culture, arguably the most crazed genre in the world. The story follows a group of survivors from all walks of the apocalypse â�� an idiotic Sheriff with definite coma-induced brain damage, his hardass son and a hobo with only a crossbow to stave off the walking dead, four squabbling friends forced to survive this zombieland together, and a lonely zombie who just needs love to fully regain his warm body â�� who leave their once-safe mall hideout in search of the rumored Safe Haven Ranch, a refuge untouched by the zombie virus that has ravaged humanity. But despite the comforting name, they discover that this sanctuary may not be as welcoming as advertised.’,1.332804,’2015-03-20′,0,90,’Released’,”,4.20,35),(313922,’Green Room’,5000000,’http://greenroom-movie.com/’,’A young punk rock band find themselves trapped in a secluded venue after stumbling upon a horrific act of violence.’,30.001024,’2016-04-15′,3220371,95,’Released’,’One way in. No way out.’,6.70,683),(314365,’Spotlight’,20000000,’http://www.spotlightthefilm.com’,’The true story of how The Boston Globe uncovered the massive scandal of child abuse and the cover-up within the local Catholic Archdiocese, shaking the entire Catholic Church to its core.’,41.503588,’2015-11-06′,88346473,128,’Released’,’Break the story. Break the silence.’,7.80,2686),(314385,’By the Sea’,10000000,”,’Set in France during the mid-1970s, Vanessa, a former dancer, and her husband Roland, an American writer, travel the country together. They seem to be growing apart, but when they linger in one quiet, seaside town they begin to draw close to some of its more vibrant inhabitants, such as a local bar/café-keeper and a hotel owner.’,11.267676,’2015-11-12′,3727746,122,’Released’,”,5.40,156),(315011,’ã�·ã�³ã�»ã�´ã�¸ã�©’,15000000,”,’From the mind behind Evangelion comes a hit larger than life. When a massive, gilled monster emerges from the deep and tears through the city, the government scrambles to save its citizens. A rag-tag team of volunteers cuts through a web of red tape to uncover the monster\’s weakness and its mysterious ties to a foreign superpower. But time is not on their side – the greatest catastrophe to ever befall the world is about to evolve right before their very eyes.’,9.476999,’2016-07-29′,77000000,120,’Released’,’A god incarnate. A city doomed.’,6.50,143),(315664,’Florence Foster Jenkins’,29000000,’http://www.florencefosterjenkinsmovie.com/’,’The story of Florence Foster Jenkins, a New York heiress, who dreamed of becoming an opera singer, despite having a terrible singing voice.’,19.237254,’2016-05-06′,48902953,110,’Released’,’People may say I couldn\’t sing, but no one can say I didn\’t sing’,6.60,392),(316002,’Accidental Love’,26000000,”,’A small town waitress gets a nail accidentally lodged in her head causing unpredictable behavior that leads her to Washington, DC. Sparks fly when she meets a clueless young senator who takes up her cause – but what happens when love interferes with what you stand for?’,5.644844,’2015-02-10′,0,100,’Released’,’Sometimes you nail love. Sometimes it nails you.’,3.90,95),(316152,’Free State of Jones’,50000000,’http://stxmovies.com/freestateofjones/’,’In 1863, Mississippi farmer Newt Knight serves as a medic for the Confederate Army. Opposed to slavery, Knight would rather help the wounded than fight the Union. After his nephew dies in battle, Newt returns home to Jones County to safeguard his family but is soon branded an outlaw deserter. Forced to flee, he finds refuge with a group of runaway slaves hiding out in the swamps. Forging an alliance with the slaves and other farmers, Knight leads a rebellion that would forever change history.’,21.589393,’2016-06-24′,25035950,139,’Released’,’Based on the incredible true story.’,6.60,428),(316727,’The Purge: Election Year’,10000000,’http://www.purgeelectionyear.com’,’Two years after choosing not to kill the man who killed his son, former police sergeant Leo Barnes has become head of security for Senator Charlene Roan, the front runner in the next Presidential election due to her vow to eliminate the Purge. On the night of what should be the final Purge, a betrayal from within the government forces Barnes and Roan out onto the street where they must fight to survive the night.’,53.727146,’2016-06-29′,118587880,105,’Released’,’Keep America great’,6.10,1306),(317930,’Compadres’,3000000,’http://genvideoshd.com/watch-compadres-2016-full-movie-online-genvideos/’,’A disgruntled Mexican cop is forced to work with a teenage hacker to hunt down the criminals who killed his wife, and dismantle their operation.’,1.569246,’2016-03-31′,0,101,’Released’,”,5.20,17),(318040,’Bizarre’,0,”,’Maurice, a reticent young homeless man, somehow manages to get by in Brooklyn; he spends his nights in parked cars until he finds himself at Bizarre, an underground club renowned for its burlesque shows. Maurice is fascinated by the clubâ��s playful revues celebrating self-determined sexuality and creative otherness, and the two female club owners both adore him. He soon becomes a part of their self-selected family, and begins to bond with introverted Luka. But Maurice turns his back on Lukaâ��s growing affection. Running away from his true emotions he drifts aimlessly through the city. He tries to find his feet at a boxing club, where he meets Charlie. Unable to withstand the pressure of his repressed feelings, Maurice unleashes a mounting foment of emotions, pervaded by tenderness and menace.’,0.583446,’2015-02-07′,0,99,’Released’,”,6.20,11),(318846,’The Big Short’,28000000,’http://www.thebigshortmovie.com/’,’The men who made millions from a global economic meltdown.’,57.518472,’2015-12-11′,133346506,130,’Released’,’This is a true story.’,7.30,2607),(318850,’The Young Messiah’,18500000,”,’Tells the story of Jesus Christ at age seven as he and his family depart Egypt to return home to Nazareth. Told from his childhood perspective, it follows young Jesus as he grows into his religious identity.’,1.884558,’2016-03-10′,6490401,120,’Released’,’Before he was the savior, he was a child.’,6.40,30),(319069,’Censored Voices’,0,’http://www.censoredvoices.com/’,’The 1967 \’Six-Day\’ war ended with Israel\’s decisive victory; conquering Jerusalem, Gaza, Sinai and the West Bank. It is a war portrayed, to this day, as a righteous undertaking – a radiant emblem of Jewish pride. One week after the war, a group of young kibbutzniks, led by renowned author Amos Oz, recorded intimate conversations with soldiers returning from the battlefield. The recording revealed an honest look at the moment Israel turned from David to Goliath. The Israeli army censored the recordings, allowing the kibbutzniks to publish only a fragment of the conversations. \’Censored Voices\’ reveals the original recordings for the first time.’,0.594580,’2015-01-24′,0,84,’Released’,’The Six-Day War, Uncut.’,5.10,8),(319888,’Eddie the Eagle’,23000000,’http://www.foxmovies.com/movies/eddie-the-eagle’,’Inspired by true events, Eddie the Eagle is a feel-good story about Michael \”Eddie\” Edwards (Taron Egerton), an unlikely but courageous British ski-jumper who never stopped believing in himself – even as an entire nation was counting him out. With the help of a rebellious and charismatic coach (played by Hugh Jackman), Eddie takes on the establishment and wins the hearts of sports fans around the world by making an improbable and historic showing at the 1988 Calgary Winter Olympics.’,29.365851,’2016-02-26′,46152800,106,’Released’,’Win or lose, always aim high’,7.20,661),(319910,’Broken Horses’,0,”,’The bonds of brotherhood, the laws of loyalty, and the futility of violence in the shadows of the US Mexico border gang wars.’,4.289676,’2015-03-15′,0,101,’Released’,”,5.00,10),(320146,’Creative Control’,1000000,’http://creativecontrolmovie.com’,’Smooth advertising executive David is in a relationship with yoga teacher Juliette. Then his eye is caught by Sophie, the girlfriend of his best friend Wim, a fashion photographer. Things get completely out of hand during a campaign for augmented reality-glasses, for which David designs an avatar of the coveted Sophie.’,1.502110,’2016-03-11′,0,97,’Released’,’A story about virtually everything’,5.40,25),(320435,’UnDivided’,0,”,’UnDivided documents the true story of how a suburban church unites with at-risk Roosevelt High School to create a beautiful transformation for students, the school and the volunteers serving it.’,0.010607,’2013-02-01′,0,0,’Released’,”,0.00,0),(321258,’The Boy’,10000000,’http://theboymovie.tumblr.com/’,’A nanny, working for a family whose son has just passed away, finds herself put in charge of caring for a lifelike doll that the couple treat as a real child.’,38.179483,’2016-01-22′,64188367,97,’Released’,’Every child needs to feel loved.’,5.80,1102),(321697,’Steve Jobs’,30000000,’http://www.stevejobsthefilm.com’,’Set backstage at three iconic product launches and ending in 1998 with the unveiling of the iMac, Steve Jobs takes us behind the scenes of the digital revolution to paint an intimate portrait of the brilliant man at its epicenter.’,53.670525,’2015-10-09′,34441873,122,’Released’,’Can a great man be a good man?’,6.80,1573),(321741,’Concussion’,35000000,’http://www.sonypictures.com/movies/concussion/’,’A dramatic thriller based on the incredible true David vs. Goliath story of American immigrant Dr. Bennet Omalu, the brilliant forensic neuropathologist who made the first discovery of CTE, a football-related brain trauma, in a pro player and fought for the truth to be known. Omalu\’s emotional quest puts him at dangerous odds with one of the most powerful institutions in the world.’,35.120736,’2015-11-12′,50363790,123,’Released’,’Even Legends Need a Hero’,7.00,823),(322194,’Subconscious’,0,”,’An investigation into a retired WWII sub plunges a research team into a supernatural journey across the dark abyss of time – with history hanging in the balance.’,0.397323,’2015-03-10′,0,110,’Released’,”,3.40,4),(322443,’The Timber’,0,”,’In the wild west, two brothers embark on a journey to collect a bounty in a desperate attempt to save their home: but what they find along the way is more than they bargained for.’,0.803761,’2015-02-27′,0,81,’Released’,’Fortunes will be made, lives will be lost.’,4.10,15),(322745,’Counting’,50000,”,’An associative collection of visual impressions across fifteen chapters: a seagull in Porto, political posters in New York, an abstract painting in St. Petersburg, an abandoned video shop in Cairo and cats everywhere you look.’,0.293587,’2015-02-09′,0,111,’Released’,”,8.30,3),(323270,’The Horror Network Vol. 1′,0,”,’Serial killers, ghostly phone calls, inner demons, otherworld monsters and creepy stalkers collide in this frightening anthology. Six of horror\’s most promising new directing talents join forces to pay homage to classic horror in the tradition of \”Creepshow\”, \”Tales From the Crypt\”, \”Tales From the Darkside\”, and \”Trilogy of Terror,\” and weave an unforgettable, disturbing tapestry of terror.’,0.392658,’2015-10-27′,0,0,’Released’,”,5.00,2),(323271,’Unsullied’,0,”,’When car trouble strands track star Reagan Farrow in the Florida boondocks, she accepts an offer of help from a pair of charming strangers only to find herself trapped in a brutal backwoods nightmare. Held captive in an isolated cabin, Reagan manages to escape and take refuge in the forest. Relentlessly pursued by the savage sociopaths who kidnapped her, Reagan will need all of her inner strength and resourcefulness in order to survive in this gripping thriller.’,0.061240,’2015-08-28′,0,93,’Released’,’The Hunt Is On’,3.00,1),(323675,’Ride Along 2′,40000000,’http://www.ridealong.com/’,’As his wedding day approaches, Ben heads to Miami with his soon-to-be brother-in-law James to bring down a drug dealer who\’s supplying the dealers of Atlanta with product.’,25.136082,’2016-01-14′,124827316,102,’Released’,’The brothers-in-law are back’,6.10,555),(323676,’The Boss’,29000000,’http://www.thebossfilm.com/’,’A titan of industry is sent to prison after she\’s caught for insider trading. When she emerges ready to rebrand herself as America\’s latest sweetheart, not everyone she screwed over is so quick to forgive and forget.’,20.555090,’2016-04-07′,78636257,91,’Released’,’Watch your assets’,5.50,431),(323677,’Race’,5000000,”,’Based on the incredible true story of Jesse Owens, the legendary athletic superstar whose quest to become the greatest track and field athlete in history thrusts him onto the world stage of the 1936 Olympics, where he faces off against Adolf Hitler\’s vision of Aryan supremacy. Starring Stephan James, Jason Sudeikis, Jeremy Irons, Carice Van Houten and William Hurt – Race is an enthralling film about courage, determination, tolerance, and friendship, and an inspiring drama about one man\’s fight to become an Olympic legend.’,22.995100,’2016-02-19′,24804129,134,’Released’,’The incredible true story of gold medal champion Jesse Owens’,7.10,478),(323967,’Walter’,700000,”,’A ticket-taker at the local cinema believes he is the son of God. He has agreed to decide the eternal fate of everyone he comes in to contact with.’,2.659006,’2015-03-13′,0,87,’Released’,’Heaven or hell. It\’s in his hands.’,5.30,26),(324322,’They Will Have to Kill Us First’,522360,’https://www.facebook.com/music4mali’,’In 2012, jihadists took control of northern Mali. They imposed one of the strictest interpretations of sharia law in history. On August 12th they banned music – radio stations destroyed, instruments burned and musicians facing torture, even death. Overnight, Maliâ��s most revered members of society â�� the musicians â�� were forced into hiding or exile. This film follows Maliâ��s musicians as they fight to keep music alive in their country. We witness fierce battles between the army and the jihadists, capture life over borders at refugee camps where money and hope are scarce, follow perilous journeys home to war ravaged cities, and for one band, Songhoy Blues, their path to international stardom.’,0.071349,’2015-10-13′,0,105,’Released’,”,5.00,1),(324352,’Anderson\’s Cross’,300000,”,’Nick Anderson, Kevin Daniels, and Tracey Green do everything together. They are the best of friends, and yet they couldn\’t be more different. Neighbors from adolescence, they finish each other\’s thoughts and sentences, joys and pains, happiness and tears. Using Nick\’s house as their own members only clubhouse, they escape into their own world of contentment. Yet the inevitable intrusion of others tests their stability in ways never imagined.’,0.006323,’2010-05-20′,0,98,’Released’,’Sometimes the boy next door is more than the boy next door…’,0.00,0),(324668,’Jason Bourne’,120000000,’http://www.jasonbournemovie.com’,’The most dangerous former operative of the CIA is drawn out of hiding to uncover hidden truths about his past.’,62.641286,’2016-07-27′,415484914,123,’Released’,’You know his name’,5.90,2341),(325123,’Teeth and Blood’,0,”,’A beautiful diva is murdered on the set of horror director Vincent Augustine\’s latest film \”Chapel Blood.\” Somewhere between the crime scene and the coroner\’s van, the body mysteriously disappears. Meanwhile, the city\’s supply of donated blood is being dangerously depleted. Suspecting a connection between the events, detectives Mike Hung and Sasha Colfax go undercover at the studio to investigate. Their attempt to crack the case quickly turns into a desperate battle for survival when they uncover an age-old war between rival vampire covens that threatens to consume humanity in a final, grisly assault of Teeth and Blood!’,0.055325,’2015-03-10′,0,96,’Released’,”,3.00,1),(325133,’Neighbors 2: Sorority Rising’,35000000,’http://www.neighbors-movie.com/’,’A sorority moves in next door to the home of Mac and Kelly Radner who have a young child. The Radner\’s enlist their former nemeses from the fraternity to help battle the raucous sisters.’,50.179171,’2016-05-04′,108758521,91,’Released’,’New neighbors.’,5.60,1462),(325140,’Hum To Mohabbat Karega’,0,”,’Raju, a waiter, is in love with the famous TV reporter Greeta Kapoor. After a man is murdered, Kapoor shows up at Raju\’s door to ask him some questions – it turns out that Raju served the dead man his last supper, and the authorities hope that he might be able to help them. Raju lies and says that he was an eye witness, in order to spend more time with Kapoor. He gives the police a false description of the killer, but it matches his best friend Kutti, so soon Kutti is wanted by the police, and the Mafia, who is responsible for the killing, is after Raju.’,0.001186,’2000-05-26′,0,0,’Released’,”,0.00,0),(325173,’Close Range’,0,’https://www.facebook.com/closerangemovie/’,’A rogue soldier turned outlaw is thrust into a relentless fight with a corrupt sheriff, his obedient deputies, and a dangerous drug cartel in order to protect his sister and her young daughter.’,5.485217,’2015-12-11′,0,80,’Released’,’Colton MacReady…is coming home.’,4.90,54),(325373,’Two Lovers and a Bear’,0,”,’Set in a small town near the North Pole where roads lead to nowhere, the story follows Roman and Lucy, two burning souls who come together to make a leap for life and inner peace.’,3.139294,’2016-10-02′,0,96,’Released’,”,6.80,27),(325579,’Diamond Ruff’,0,”,’Action – Orphan, con artist, crime boss and millionaire, Diamond Ruff has seen it all. In prison for a murder he did not commit, he meets the Reverend Trek Woods, who overwhelms him with kindness, character and faith in god. Falling in love with April, a young woman with terminal illness, Ruff is again challenged to grow and change. Will he be redeemed? There are no easy answers. – Felicia Pearson, Fredro Starr, Michael Barra’,0.165257,’2015-01-01′,0,0,’Released’,”,2.40,4),(325789,’The Infiltrator’,25000000,’http://www.theinfiltrator.com/’,’A U.S Customs official uncovers a massive money laundering scheme involving Pablo Escobar.’,24.672234,’2016-07-13′,15436808,127,’Released’,’The true story of one man against the biggest drug cartel in history.’,6.60,573),(326284,’Pound of Flesh’,7500000,”,’In China to donate his kidney to his dying niece, former black-ops agent Deacon awakes the day before the operation to find he is the latest victim of organ theft. Stitched up and pissed-off, Deacon descends from his opulent hotel in search of his stolen kidney and carves a blood-soaked path through the darkest corners of the city. The clock is ticking for his niece and with each step he loses blood.’,4.943588,’2015-05-07′,0,104,’Released’,’The black market is about to get bloody’,5.50,63),(326576,’Dawn of the Crescent Moon’,0,”,’A group of college students travel to a small Texas town to research the Legend of Blood Lake, an obscure folktale forged by events surrounding the horrible massacre of a Comanche village.’,0.049469,’2014-04-05′,0,95,’Released’,’The past is present.’,2.00,1),(327833,’Skin Trade’,9000000,”,’After his family is killed by a Serbian gangster with international interests. NYC detective Nick goes to S.E. Asia and teams up with a Thai detective to get revenge and destroy the syndicates human trafficking network.’,6.677926,’2014-11-07′,0,96,’Released’,’Two Cops. One Mission. No Mercy.’,5.60,61),(328111,’The Secret Life of Pets’,75000000,’http://www.thesecretlifeofpets.com/’,’The quiet life of a terrier named Max is upended when his owner takes in Duke, a stray whom Max instantly dislikes.’,31.482872,’2016-06-18′,875958308,87,’Released’,’Think this is what they do all day?’,5.90,3462),(328307,’Rise of the Entrepreneur: The Search for a Better Way’,0,”,’The world is changing faster than ever. Technology is accelerating, job security is declining and income inequality is increasing. People are overworked and underpaid. With less time and freedom, people are left wondering if there is a better way. Our changing economy has led to the rise of the entrepreneur. The fastest, most dependable and controllable way to become wealthy is to own your own business. This documentary gathers today\’s best experts and thought leaders to forever change how you view work and wealth. Featuring experts Jordan Adler, John Assaraf, Kody Bateman, Chris Brogan, Richard Bliss Brooke, Ali Brown, Les Brown, Jack Canfield, Harry S. Dent, Jr., Dr. Linda Ferrell, Dr. OC Ferrell, Mark Victor Hansen, Kevin Harrington, Kim Kiyosaki, Robert Kiyosaki, Joseph N. Mariano, Dr. Ivan Misner, Paul Zane Pilzer, Bob Proctor, Susan Sly, Loren Slocum, Kevin Thompson, Brian Tracy, Eric Worre and Sandra Yancey.’,0.052942,’2014-11-20′,0,0,’Released’,”,8.00,1),(328387,’Nerve’,20000000,’http://www.playnerve.com/’,’Industrious high school senior, Vee Delmonico, has had it with living life on the sidelines. When pressured by friends to join the popular online game Nerve, Vee decides to sign up for just one dare in what seems like harmless fun. But as she finds herself caught up in the thrill of the adrenaline-fueled competition partnered with a mysterious stranger, the game begins to take a sinister turn with increasingly dangerous acts, leading her into a high stakes finale that will determine her entire future.’,62.933899,’2016-07-27′,83707310,96,’Released’,’Are you a watcher or a player?’,7.10,2181),(328425,’The Gift’,5000000,’https://www.facebook.com/GIFTmovie’,’A husband and wife try to reinvigorate their relationship but their lives are threatened by a \”friend\” from the husband\’s past who holds a horrifying secret about him, sending their world into a tailspin.’,27.247013,’2015-07-30′,58978653,108,’Released’,’Not every gift is welcome.’,6.70,1049),(329440,’The Forest’,10000000,’http://theforestisreal.com/’,’Set in the Aokigahara Forest, a real-life place in Japan where people go to end their lives. Against this backdrop, a young American woman comes in search of her twin sister, who has mysteriously disappeared.’,19.865989,’2016-01-07′,40055439,95,’Released’,’Everyone comes here looking for a way out’,4.80,448),(329540,’The Marine 4: Moving Target’,1950000,”,’WWE Superstar Mike \”The Miz\” Mizanin returns as Jake Carter where he is assigned to protect a whistleblower who wishes to expose a corrupt military defence contractor. However, the military hires a heavily armed team of mercenaries to kill her and it\’s up to Carter to stop them at any cost.’,3.696123,’2015-04-10′,0,90,’Released’,”,5.80,49),(329833,’Zoolander 2′,50000000,’http://www.zoolander.com/’,’Derek and Hansel are modelling again when an opposing company attempts to take them out from the business.’,37.253774,’2016-02-06′,55969000,100,’Released’,’Long time no Z’,4.70,797),(330770,’Ã�volution’,0,”,’11-year-old Nicolas lives with his mother in a seaside housing estate. The only place that ever sees any activity is the hospital. It is there that all the boys from the village are forced to undergo strange medical trials that attempt to disrupt the phases of evolution.’,3.300061,’2015-09-14′,0,81,’Released’,”,6.40,47),(331190,’Captive’,2000000,”,’Based on a miraculous true story that drew the attention of the entire nation, is the dramatic, thrilling, and spiritual journey of Ashley Smith and Brian Nichols. After being taken hostage by Brian in her own apartment, Ashley turns to Rick Warrenâ��s inspirational book, The Purpose Driven Life, for guidance. In reading from the book, Ashley not only finds purpose in her own life, but helps Brian find a more peaceful resolution to a harrowing situation.’,6.728882,’2015-09-17′,2801508,97,’Released’,’Faith. Redemption. Survival.’,5.60,92),(331493,’Light from the Darkroom’,0,”,’Light in the Darkroom is the story of two best friends whose faith is tested when their friends disappear during a religious pilgrimage.’,0.012942,’2014-01-01′,0,0,’Released’,”,0.00,0),(331592,’Listening’,0,’http://www.listeningmovie.com/’,’For years, we have tried to harness the power of the human mindâ�¦ and failed. Now, one breakthrough will change everything. Beyond technology. Beyond humanity. Beyond control. David, Ryan, and Jordan hope the telepathy invention will solve all their problems, but the bleeding-edge technology opens a Pandoraâ��s box of new dangers, as the team discovers that when they open their minds, there is nowhere to hide their thoughts.’,2.414721,’2015-09-11′,0,100,’Released’,’Hide your thoughts.’,5.50,31),(331745,’Top Spin’,0,”,’Three teenagers\’ quest to qualify for the 2012 US Olympic table tennis team.’,0.523122,’2014-11-15′,0,80,’Released’,”,6.80,6),(332285,’Antibirth’,35000000,”,’In a desolate community full of drug-addled Marines and rumors of kidnapping, a wild-eyed stoner named Lou wakes up after a crazy night of partying with symptoms of a strange illness and recurring visions. As she struggles to get a grip on reality, the stories of conspiracy spread.’,3.674294,’2016-09-02′,0,94,’Released’,”,4.80,40),(332411,’I Am Wrath’,18000000,”,’A man is out for justice after a group of corrupt police officers are unable to catch his wife\’s killer.’,10.144222,’2016-04-14′,0,92,’Released’,’I lay my vengeance upon them.’,4.50,179),(332567,’The Shallows’,17000000,’http://www.theshallows-movie.com’,’An injured surfer stranded on a buoy needs to get back to shore, but the great white shark stalking her might have other ideas.’,60.829621,’2016-06-24′,119100758,86,’Released’,’What was once in the deep is now in the shallows.’,6.20,1567),(333348,’Love the Coopers’,17000000,’http://www.cbsfilms.com/love-the-coopers/’,’When four generations of the Cooper clan come together for their annual Christmas Eve celebration, a series of unexpected visitors and unlikely events turn the night upside down, leading them all toward a surprising rediscovery of family bonds and the spirit of the holiday.’,9.191187,’2015-11-12′,24000000,107,’Released’,’Christmas means comfort, joy and chaos.’,5.40,167),(333355,’Star Wars: Clone Wars (Volume 1)’,0,’http://www.starwars.com/tv-shows/star-wars-the-clone-wars’,’The Saga continues with the Emmy-winning \”Star Wars: Clone Wars.\” This animated micro-series, directed by Genndy Tartakovsky, captures George Lucas\’ vision in a dynamic animated style that is a visual delight for all ages. \”Star Wars: Clone Wars\” Volume 1 reveals the epic adventures that bridge the story arc between \”Star Wars: Episode II: Attack of the Clones\” and \”Star Wars: Episode III: Revenge of the Sith.\” Follow the valiant Jedi Knights and the Brave soldiers of the Republic\’s clone army as they battle against the droid forces of the Separatists, led by the evil Sith Lord, Count Dooku. Witness the battles that made galactic heroes out of Anakin Skywalker and Obi-Wan Kenobi, and along the way get a first look at the new menace from Episode III, General Grevious. This is a must-have for any \”Star Wars\” collection.’,1.881466,’2005-03-21′,0,69,’Released’,”,8.00,27),(333371,’10 Cloverfield Lane’,15000000,’http://www.10cloverfieldlane.com/’,’After a car accident, Michelle awakens to find herself in a mysterious bunker with two men named Howard and Emmett. Howard offers her a pair of crutches to help her remain mobile with her leg injury sustained from the car crash and tells her to \”get good on those\” before leaving the bunker. She has been given the information that there has been an alien attack and the outside world is poisoned. However, Howard and Emmett\’s intentions soon become questionable and Michelle is faced with a question: Is it better in here or out there?’,53.698683,’2016-03-10′,108286421,103,’Released’,’Monsters come in many forms.’,6.80,2468),(334074,’Survivor’,20000000,’http://survivormovie.com/’,’A Foreign Service Officer in London tries to prevent a terrorist attack set to hit New York, but is forced to go on the run when she is framed for crimes she did not commit.’,33.625477,’2015-05-21′,0,96,’Released’,’His Next Target is Now Hunting Him’,5.40,404),(334527,’Criminal Activities’,7000000,”,’Four young men make a risky investment together that puts them in trouble with the mob.’,6.665164,’2015-11-20′,0,94,’Released’,’Leave the crime to the criminals’,5.80,110),(334531,’My All American’,20000000,’http://www.myallamerican.com/’,’Freddie Steinmark, an underdog on the gridiron, faces the toughest challenge of his life after leading his team to a championship season.’,3.102987,’2015-11-13′,0,118,’Released’,’Hope never quits’,6.80,36),(335244,’Antarctic Edge: 70° South’,0,”,’In 2014, scientists declared West Antarctic ice sheet melt unstoppable, threatening the future of our planet. A group of world-class researchers is in a race to understand climate change in the fastest winter-warming place on earth: the West Antarctic Peninsula. Trekking through dangerous and uncharted landscape, these scientists push the limits of their research and come to terms with the sacrifices necessary to understand this rapidly changing world.’,0.021392,’2015-04-17′,0,72,’Released’,”,0.00,0),(335778,’Risen’,20000000,”,’Follows the epic Biblical story of the Resurrection, as told through the eyes of a non-believer. Clavius, a powerful Roman Military Tribune, and his aide Lucius, are tasked with solving the mystery of what happened to Jesus in the weeks following the crucifixion, in order to disprove the rumors of a risen Messiah and prevent an uprising in Jerusalem.’,16.663797,’2016-02-19′,46069568,107,’Released’,’Witness the manhunt that changed the course of human history’,5.70,295),(335866,’Circle’,0,”,’Could you trust a jury of your peers with your life? The contestants of a mysterious death game must make harrowing decisions as they strategize for survival in this psychological sci-fi thriller.’,6.752141,’2015-10-02′,0,87,’Released’,’In hereâ�¦ everything gets you killed.’,6.00,333),(335874,’Childless’,0,”,’Katherine is a typical teenager. Today\’s her funeral. The four adults in her life have a lot on their mind – and it\’s not all about Katherine either. With a frankness that\’s strikingly disarming as well as frequently self-serving, the grown-ups struggle with being… well… grown-up.’,0.243853,’2015-04-03′,0,90,’Released’,”,4.50,2),(336004,’Heist’,8900000,”,’A father is without the means to pay for his daughter\’s medical treatment. As a last resort, he partners with a greedy co-worker to rob a casino. When things go awry they\’re forced to hijack a city bus.’,15.079993,’2015-11-13′,4100000,93,’Released’,’Never make a bet you can\’t afford to lose.’,5.60,318),(339408,’The Birth of a Nation’,8500000,’http://www.foxsearchlight.com/thebirthofanation/’,’Nat Turner, a former slave in America, leads a liberation movement in 1831 to free African-Americans in Virgina that results in a violent retaliation from whites.’,9.452808,’2016-09-09′,15861566,120,’Released’,’The Untold Story of Nat Turner’,6.50,178),(339984,’Miracles from Heaven’,16000000,’http://www.miraclesfromheaven-movie.com/’,’A faith based movie. A young girl suffering from a rare digestive disorder finds herself miraculously cured after surviving a terrible accident. Based on the book \’Three Miracles From Heaven\’ by Christy Beam.’,10.248439,’2016-03-17′,77000000,117,’Released’,’How do we explain the impossible?’,6.70,186),(340611,’Indignation’,0,”,’In 1951, Marcus Messner, a working-class Jewish student from New Jersey, attends a small Ohio college, where he struggles with anti-Semitism, sexual repression, and the ongoing Korean War.’,5.625989,’2016-07-29′,0,110,’Released’,’Based on the novel by Philip Roth.’,6.80,69),(340816,’Christmas Eve’,0,’http://www.thestuckmovie.com/#menu’,’Hilarity, romance, and transcendence prevail after a power outage traps six different groups of New Yorkers inside elevators on Christmas Eve.’,1.985243,’2015-12-04′,0,95,’Released’,’They\’ll be home for Christmas…if only in their dreams.’,6.10,24),(342502,’AWOL-72′,3000000,”,’An AWOL marine in possession of secret government information, is a wanted man, pursued by Russian special ops, the LAPD, and a dangerous assassin.’,1.141463,’2015-08-07′,0,79,’Released’,’72 Hours On The Clock. Starting Now…’,2.80,10),(342521,’Keanu’,15000000,’http://keanumovie.com/’,’Friends hatch a plot to retrieve a stolen cat by posing as drug dealers for a street gang.’,18.268009,’2016-04-21′,20566327,94,’Released’,’Kitten, please.’,6.00,421),(343409,’Windsor Drive’,0,”,’River Miller, a mentally unstable actor haunted by the past, moves to Hollywood to start his life over, only to find his inner demons are inescapable.’,0.504251,’2015-06-26′,0,90,’Released’,”,2.00,1),(343795,’90 Minutes in Heaven’,5000000,”,’A man involved in a horrific car crash is pronounced dead, only to come back to life an hour and a half later, claiming to have seen Heaven.’,3.943706,’2015-09-11′,4842699,121,’Released’,’Hope lives’,5.40,40),(344466,’Lumea e a mea’,0,”,’Larisa is 16 and lives in a city by the sea. It\’s a small city, where gossip and news spread fast. It\’s a city where your image and influence, \”manelele\”, money and power are all that matters. And Larisaâ�¦ wants it all. And even if she doesn\’t have it, she fights for it. Larisa believes in herself. She knows that she deserves better. She is convinced that it\’s worth doing everything it takes to fulfill her dreams. And for her courage and recklessness – we love her.’,0.327622,’2015-06-05′,0,104,’Released’,”,0.00,0),(345003,’10 Days in a Madhouse’,1200000,”,’Nellie Bly, a 23 year-old reporter for Joseph Pulitzer, goes undercover in the notorious Blackwell\’s Island women\’s insane asylum in order to expose corruption, abuse and murder.’,0.489271,’2015-11-20′,0,111,’Released’,”,4.30,5),(345911,’Lights Out’,4900000,’http://www.lightsoutmovie.com/’,’When Rebecca left home, she thought she left her childhood fears behind. Growing up, she was never really sure of what was and wasnâ��t real when the lights went outâ�¦and now her little brother, Martin, is experiencing the same unexplained and terrifying events that had once tested her sanity and threatened her safety. A frightening entity with a mysterious attachment to their mother, Sophie, has reemerged.’,48.170508,’2016-07-21′,44107032,81,’Released’,”,6.30,1129),(346081,’Sardaarji’,0,”,’A ghost hunter uses bottles to capture troublesome spirits.’,0.296981,’2015-06-26′,0,0,’Released’,”,9.50,2),(347126,’God\’s Not Dead 2′,5000000,’http://www.godsnotdead.com/’,’When a high school teacher is asked a question in class about Jesus, her reasoned response lands her in deep trouble and could expel God from the public square once and for all.’,6.968580,’2016-04-01′,23507567,121,’Released’,”,5.70,72),(347548,’Containment’,0,’http://www.containment-film.com/’,’Neighbors in a block wake one morning to find they have been sealed inside their apartments. Can they work together to find out why? Or will they destroy each other in their fight to escape?’,2.122451,’2015-07-09′,0,77,’Released’,’No water. No power. No explanation. No escape.’,5.10,36),(347755,’Wind Walkers’,0,”,’A group of friends and family descend into the Everglades swamplands for their annual hunting trip only to discover that they are the ones being hunted. A malevolent entity is tracking them and they begin to realise one of their party may be possessed by something brought home from a tour of duty in the Middle East â�� a demon of war so horrible and deadly they are unaware of its devilish presence. Or are they facing something even more unspeakable, a legendary Native American curse about to unleash its dreadful legacy of thirsting for colonial revenge by claiming more souls?’,0.446858,’2016-01-28′,0,93,’Released’,”,7.50,6),(347764,’Goddess of Love’,0,’http://www.goddessoflovemovie.com/’,’Enter into a baroque vortex of madness when an emotionally unstable woman is shattered after tremendous heartbreak. Brian was the love of Venusâ�� life and the thought of him having an affair with another woman begins her volatile descent into the dark side of psychosexual insanity.’,1.273773,’2015-08-31′,0,96,’Released’,’Be Careful Who You Get Close To’,6.20,9),(347969,’The Ridiculous 6′,60000000,’http://www.netflix.com/title/80039517′,’When his long-lost outlaw father returns, Tommy \”White Knife\” Stockburn goes on an adventure-filled journey across the Old West with his five brothers.’,19.694695,’2015-12-11′,0,119,’Released’,”,4.90,388),(351043,’Amnesiac’,3000000,”,’The story of a man who wakes up in bed suffering from memory loss after being in an accident, only to begin to suspect that his wife may not be his real wife and that a web of lies and deceit deepen inside the house where he soon finds himself a prisoner.’,3.077885,’2015-08-14′,0,90,’Released’,’What he can\’t remember is killing him.’,4.10,52),(351819,’Fifty Shades of Black’,20000000,’http://50shadesofblackmovie.com/’,’An inexperienced college student meets a wealthy businessman whose sexual practices put a strain on their relationship.’,14.947588,’2016-01-28′,21164799,92,’Released’,’Way shadier than gray.’,4.30,331),(352978,’Chain of Command’,5000000,”,’After finding his brother murdered after returning from duty, Webster searches for the perpetrators, but discovers a conspiracy that cuts deep inside the U.S. government.’,1.398981,’2015-08-30′,0,88,’Released’,’When duty calls, plans change’,5.30,11),(354110,’Forsaken’,11000000,”,’John Henry returns to his hometown in hopes of repairing his relationship with his estranged father, but a local gang is terrorizing the town. John Henry is the only one who can stop them, however he has abandoned both his gun and reputation as a fearless quick-draw killer.’,11.071522,’2015-09-16′,0,90,’Released’,”,5.80,101),(354624,’Heroes of Dirt’,0,”,’Passionate BMX dirt jumper, Phin Cooper, wants nothing in life but to attain fame in his sport. After missing a competition when he lands in jail for unpaid citations, he is court-ordered for community service and reluctantly mentors one of the toughest boys, Blue Espinosa. As Phin leads the troubled teen on exciting adventures of riding dirt trails, big jumps and cityscapes, Blue becomes more than an obligation – an unlikely friend whose secret world of drug trafficking threatens Phin\’s ultimate dream. Featuring some of the best stunts in dirt jumping by legendary pros and hardcore locals, Heroes of Dirt is more than adrenaline rush. It embarks on an unforgettable journey into real significance, and the price it takes to get there.’,0.076647,’2015-09-04′,0,98,’Released’,”,0.00,0),(355629,’La Navaja De Don Juan’,0,”,’The fate of an arm-wrestling match leads two rival brothers on an adventure through the streets of Lima, Peru. Armed with the spoils of victory, the boys must navigate many obstacles that stand in the way of their goal: a house party on the other side of the tracks and the hope of lost virginity.’,0.021678,’2013-10-27′,0,98,’Released’,”,0.00,0),(356216,’The Rise of the Krays’,2500000,’http://www.signature-entertainment.co.uk/film/rise-of-the-krays/’,’Follows the early years of two unknown 18 year old amateur boxers who quickly fought their way to becoming the most feared and respected villains in all of London. Told through the eyes of a close friend that survived them, we see them rise to infamy through drugs, sex and murder.’,1.759506,’2015-08-29′,0,110,’Released’,’Brutal. Notorious. Legendary’,4.50,19),(356483,’Unnatural’,0,”,’Global climate change prompts a scientific corporation to genetically modify Alaskan polar bears with horrific and deadly results.’,0.687656,’2015-10-16′,0,89,’Released’,’Some things were never meant to be.’,4.30,12),(356841,’Checkmate’,0,”,’Six people are thrown together during an elaborate bank heist where any move can alter the outcome. Is it coincidence, or are they merely pawns in a much bigger game.’,1.105357,’2015-07-03′,0,102,’Released’,”,4.20,13),(356987,’Abandoned’,0,”,’When their yacht capsizes during a storm; four men face almost certain death.’,3.068463,’2015-08-30′,0,82,’Released’,”,5.80,27),(357441,’Karachi se Lahore’,0,’https://www.epicbuzz.net/movies/karachi-se-lahore’,’A road trip from Karachi to Lahore where 5 friends discover themselves and the country amidst getting to their destination.’,0.060003,’2015-07-31′,0,0,’Released’,”,8.00,1),(357834,’The Algerian’,1,’http://thealgerianmovie.com/’,’The Algerian is an international political thriller about the colliding worlds of the Middle East and America. It follows Ali (Ben Youcef) across the world from Algeria to New York, Las Vegas and Los Angeles as it reveals he is a sleeper cell part of an international plot.’,0.025364,’2015-08-07′,0,99,’Released’,”,0.00,0),(357837,’Dancin\’ It\’s On’,0,’https://www.facebook.com/eastsidestorymovie’,’This coming of age Dance Film, in the spirit of Dirty Dancing, Karate Kid, and High School Musical – is about a young girl from Beverly Hills, Jennifer who is visiting her Father\’s Panama City Beach Hotel during Summer Break, and falls in love with a Young Boy, Ken who works as a Dishwasher. Even though both are from different backgrounds, they share the same passion… DANCE and partner with each other to enter the 2nd Annual Florida State-Wide Dance Contest. While preparing for the contest, Jennifer and Ken must overcome scheming dance partners, a meddling father, and their own doubts for their love to prevail.’,0.186234,’2015-10-16′,0,89,’Post Production’,’Dancin\’ Like You\’ve Never Seen Before’,4.30,2),(358451,’ä¸�å��è®°’,0,”,’A former spy in the Chinese Nationalist Party falls for an opium-dealing widow, as China is ravaged by war and revolution.’,0.753362,’2015-08-28′,0,130,’Released’,”,6.30,5),(360188,’Queen Crab’,75000,”,’A meteor crashes into a quiet lake in the remote countryside and awakens a centuries-old beast, who tears through a nearby town and its inhabitants, who must fight for their lives and stop this Queen Crab before she can hatch an army of babies.’,0.140989,’2015-09-29′,0,90,’Released’,”,3.30,3),(360339,’Eden’,2300000,”,’After their plane crashes off the coast of a deserted Pacific island, the surviving members of an American soccer team find themselves in the most dire of circumstances with limited resources, dwindling food supply and no rescue coming any time soon. Team spirit evaporates as disagreements cause the group to separate into factions – a violent one lead by an unbalanced ruler, and a compassionate one led by a selfless player.’,2.713171,’2015-10-22′,0,97,’Released’,’Survive at any cost.’,5.60,19),(361159,’Navy Seals vs. Zombies’,0,”,’A team of highly skilled Navy SEALS find themselves embarking on the battle of their lives when they come face-to-face with the undead. After a deadly outbreak occurs in New Orleans, the SEALS must fight for their lives, and the city, against an army of zombies.’,2.394613,’2015-10-08′,0,97,’Released’,”,3.50,36),(361398,’Theresa Is a Mother’,0,”,’Singer/songwriter and single mother Theresa McDermott has finally hit the end of the line in NYC. Unable to make ends meet, she is forced to pack up her life and her 3 girls and move back to the small town and parents she ran from a decade ago. Teresa needs a job, her parents need their space and a family tragedy that was never dealt with from years past needs closure. Old wounds, unattainable dreams and a few other things expose themselves as a fractured family works to become whole and a single mom, a responsible mother.’,0.036532,’2015-09-25′,0,105,’Released’,”,0.00,0),(361475,’Departure’,0,”,’An English mother and her teenage son spend a week preparing the sale of their remote holiday house in the South of France. Fifteen-year-old Elliot struggles with his dawning sexuality and an increasing alienation from his mother, Beatrice. She in turn is confronted by the realisation that her marriage to his father, Philip, has grown loveless and the life she knows is coming to an end. When an enigmatic local teenager, Clément, quietly enters their lives, both mother and son are compelled to confront their desires and, finally, each other.’,0.425830,’2016-05-20′,0,109,’Released’,”,7.50,12),(361505,’Me You and Five Bucks’,1,”,’A womanizing yet lovable loser, Charlie, a waiter in his early 30\’s who dreams of selling his book entitled \”7 STEPS OF HEALING THE MALE BROKEN HEART\” finds himself still working in restaurants to survive in the Big Apple. Low on cash, he\’s left with no other choice but to look for a roommate to share his tiny studio. Surprisingly, the first person to answer the ad is his ex and only love of his life Pam, who broke his heart and disappeared without reason and the inspiration behind his book. The Pam he remembered was a youthful spirit with lots of money who is now broke and disheveled. A new story begins and it is up to Charlie to find out why she ran out on him and what\’s happened to her over the past three years. With a potential new love in his life, he must gather the strength to help Pam get back on her feet without rekindling old feelings.’,0.094105,’2015-07-07′,0,90,’Released’,’A story about second, second chances’,10.00,2),(362105,’R.L. Stine\’s Monsterville: The Cabinet of Souls’,4400000,”,’Teenage friends must resist the spell of an evil showman staging a house of horrors show in their small town.’,3.898737,’2015-09-29′,0,85,’Released’,”,6.90,35),(362765,’The Sound and the Shadow’,0,’http://soundandtheshadow.com/’,’An allergy-ridden, eavesdropping sound engineer and his boisterous new roommate are thrust into a missing girl case when he discovers clues to her disappearance in his neighborhood recordings.’,0.072359,’2014-10-19′,0,90,’Released’,’Be careful what you listen for.’,0.00,0),(364083,’Mi America’,2100000,’http://miamericamovie.net/’,’A hate-crime has been committed in a the small city of Braxton, N.Y. Five migrant laborers have been beaten, shot, then ditched. This will upset the delicate balance of an ethnically diverse populace.’,0.039007,’2015-10-16′,3330,126,’Released’,”,0.00,0),(365052,’The Looking Glass’,0,’http://www.lookingglassfilm.com/’,’Troubled 13-year-old Julie loses her mother and must go to Indiana to live with her grandmother Karen. A former star of stage and screen, Karen has the early stages of Alzheimer\’s and wants to pass on all she knows to her granddaughter before it\’s too late. Will their troubled relationship allow this to happen?’,0.062979,’2015-10-23′,0,110,’Released’,”,7.00,1),(365222,’è��å��3′,36000000,”,’When a band of brutal gangsters led by a crooked property developer make a play to take over the city, Master Ip is forced to take a stand.’,19.167377,’2015-12-19′,156844753,105,’Released’,”,6.50,379),(366967,’Dutch Kills’,0,”,’A desperate ex-con is forced to gather his old crew for one last job to pay off his sister\’s debt to a dangerous local criminal.’,0.038143,’2015-10-02′,0,90,’Released’,”,0.00,0),(367551,’American Hero’,0,’http://www.protagonistpictures.com/films/american-hero’,’Melvin, a reluctant hero who is far from super, has been suppressing his telekinetic powers for years with booze, drugs, and women. In the process, he has failed at practically everything, most of all as a parent to his son. After a brush with death, Melvin decides to use his powers for good and clean up the streets of New Orleans with the help of his best friend/definitely-not-a-sidekick, Lucille. For a man who can do the impossible, it might be a fight even he canâ��t win.’,5.023091,’2015-12-11′,0,86,’Released’,’From zero to superhero’,5.00,62),(367961,’Савва. СеÑ�дÑ�е воина’,30000000,’http://www.savvafilm.com/’,’A fairytale about a grand life journey of a 10-year old boy Savva devoted to help his Mom and fellow village people to break free from the vicious hyenas.’,2.625594,’2015-11-12′,0,85,’Released’,’You need only wish with all of your heart!’,6.40,7),(370464,’The Masked Saint’,0,’http://freestylereleasing.com/the-masked-saint/’,’The journey of a professional wrestler who becomes a small town pastor and moonlights as a masked vigilante fighting injustice. While facing crises at home and at the church, the Pastor must evade the police and somehow reconcile his violent secret identity with his calling as a pastor.’,0.909067,’2016-01-08′,0,111,’Released’,”,2.90,7),(370662,’Time to Choose’,3500000,’http://www.timetochoose.com’,’Academy Award® winning director Charles Ferguson\’s new film investigates global climate change villains and heroes, and reveals practical solutions to act on.’,1.618138,’2015-09-04′,0,100,’Released’,’Climate change for good.’,0.00,0),(370980,’Chiamatemi Francesco – Il Papa della gente’,15000000,”,”,0.738646,’2015-12-03′,0,0,’Released’,”,7.30,12),(371085,’Sharkskin’,0,”,’The Post War II story of Manhattan born Mike Esposito, a practiced tailor of custom mens clothing; a man of dignity and honor, whose developing involvements with the Italian mob wraps him up in a world of moral dilemma and clashing values.’,0.027801,’2015-01-01′,0,0,’Released’,”,0.00,0),(371690,’Rotor DR1′,350000,”,’In a post-apocalyptic world where half the population is dead or missing and the sky is full of autonomous drones, a 16-year-old boy named Kitch sets out to find his father, joined by DR1, his drone companion.’,0.249561,’2015-10-20′,0,98,’Released’,”,4.70,3),(373314,’Misconduct’,11000000,”,’An ambitious lawyer finds himself caught in a power struggle between a corrupt pharmaceutical executive and his firmâ��s senior partner. When the case takes a deadly turn, he must race to uncover the truth before he loses everything.’,10.016909,’2016-02-05′,0,106,’Released’,’Ambition can be deadly’,5.30,149),(374461,’Mr. Church’,8000000,”,’A unique friendship develops when a little girl and her dying mother inherit a cook – Mr. Church. What begins as an arrangement that should only last six months, instead spans fifteen years.’,7.828459,’2016-09-16′,0,104,’Released’,’He was the one person she could always count on.’,7.00,129),(375290,’Airlift’,4500000,”,’When Iraq invades Kuwait in August, 1990, a callous Indian businessman becomes the spokesperson for more than 170,000 stranded countrymen.’,2.551559,’2016-01-22′,32000000,126,’Released’,’170,000 Refugees, 488 Flights, 59 Days, 1 Man’,7.30,57),(375950,’Médecin de campagne’,0,”,’All the people in this countryside area, can count on Jean-Pierre, the doctor who auscultates them, heals and reassures them day and night, 7 days a week. Now Jean-Pierre is sick, so he sees Natalie, a young doctor, coming from the hospital to assist him. But will she adapt to this new life and be able to replace the man that believed to be irreplaceable?’,2.651304,’2016-03-23′,0,102,’Released’,”,6.00,63),(376004,’Adulterers’,750000,”,’A man who returns home to find his wife cheating on him on their anniversary. He holds her and her naked and humiliated lover captive at gunpoint while he decides whether or not he\’s going to kill them. The story, inspired by true events, takes place over one day and is set in New Orleans during a stifling heat wave.’,1.471139,’2016-01-05′,0,80,’Released’,’Love. Betrayal. Vengeance’,5.20,16),(376010,’Western Religion’,0,”,’The year is 1879. Gunfighters from the far reaches of the globe descend on Religion, AZ to compete in a legendary poker tournament. Drawn by the gold prize, the players come to realize that in this game, their very souls are at stake.’,0.589540,’2015-10-09′,0,106,’Released’,’Your soul is at stake in Religion, Arizona.’,0.00,0),(376659,’Bad Moms’,20000000,’http://stxmovies.com/badmoms/’,’When three overworked and under-appreciated moms are pushed beyond their limits, they ditch their conventional responsibilities for a jolt of long overdue freedom, fun, and comedic self-indulgence.’,42.512296,’2016-07-28′,183936074,100,’Released’,’Party like a mother.’,6.30,1252),(378200,’The Perfect Match’,0,”,’Terrence J. stars as Charlie, a playboy who\’s convinced that relationships are dead. His two best friends, Donald Faison and Robert C. Riley, bet him that if he sticks to one woman for one month, he\’s bound to get attached. Charlie denies this until he crosses paths with the beautiful and mysterious Eva, played by singer/actress Cassie. They may agree to a casual affair, but eventually Charlie is questioning whether he may actually want more.’,3.810827,’2016-03-11′,0,96,’Released’,’t\’s what everyone\’s looking for’,5.20,42),(378237,’Amidst the Devil\’s Wings’,300000,”,’Prequel to \”5th of a Degree.\”‘,0.018087,’2014-12-01′,0,90,’Released’,’Prequel to \”5th of a Degree.\”‘,0.00,0),(379532,’Rodeo Girl’,0,”,’Shipped off to her American dad\’s ranch for the summer, a teen and her horse Lucky Lad compete for a spot at the National Youth Rodeo.’,0.087574,’2016-01-05′,0,108,’Released’,”,5.50,1),(380097,’America Is Still the Place’,0,”,’1971 post civil rights San Francisco seemed like the perfect place for a black Korean War veteran and his family to realize their dream of economic independence and his own chance to be his a \”boss\”. Charlie Walker would soon find out how naive he was. In a city full of impostors and naysayers, he refused to take \”No\” for an answer. Until a catastrophic disaster opened a door that had never been open to a black man before. This is a story about what happened when he stepped through that door, with both feet!.’,0.000000,’0000-00-00′,0,0,’Released’,”,0.00,0),(380733,’Fight to the Finish’,0,”,’A young amateur fighter makes an enemy with a hardened thug when he gets in-between his next-door neighbor and her abusive ex- boyfriend. As his personal life becomes threatened, he realizes he must finish the fight that he started, but this time they\’ll settle it in the ring for the championship.’,0.251828,’2016-02-02′,0,94,’Released’,’It\’s all or nothing’,5.20,3),(381902,’西游记ä¹�å�æ��空ä¸�æ��ç�½éª¨ç²¾’,68490000,’http://themonkeykingmovie.com’,’Taking place 500 years after the Havoc in Heaven, the Tang Priest is appointed by Buddha to go to the West to fetch the sacred scriptures, only to accidentally free the Monkey King. With Lady White (Gong Li) aiming to break up the team assembled to defeat her, the Monkey King must fight in order to save his world!’,4.726290,’2016-01-22′,193677158,120,’Released’,”,6.00,24),(385383,’Fight Valley’,27000000,’http://www.fightvalley.com/’,’When Tory Coro turns up dead, the neighborhood turns up silent. Rumor has it she became yet another victim of the small town known as FIGHT VALLEY. Tory\’s sister Windsor moves to town to begin her own investigation on her sister\’s mysterious death after weeks of no leads from the police. She\’s quick to learn that Tory fought for money to make ends meet. If girl-next-door Windsor is going to make her way into FIGHT VALLEY to find the truth about Tory, she\’s going to have to fight her way in. \”Jabs\” (Miesha Tate) swore she would never throw a punch in the Valley again. Jabs now finds herself training Windsor to survive the painful, unexpected path she\’s about to take. Every corner. Every alley. Every doorway. She must follow the last footsteps of her sister in order to come face-to-face with Tory\’s killer in FIGHT VALLEY.’,1.224105,’2016-07-22′,0,90,’Released’,’One way in. No way out.’,3.90,8),(385636,’Julija in Alfa Romeo’,0,”,’Tilen (18), an attractive high school student, swears to be faithful forever in the hope that his girlfriend will let him sleep with her. Suddenly, a sequence of tragic events turns his world upside down. He starts to believe he is under a spell which could put his life in jeopardy, which prevents him from having a relationship with Sara (18), his one true love. He finally succeeds to get his life back on the right track with the help of his best friend Zeljko, a mysterious fortune-teller, and the power of love.’,0.061248,’2015-09-17′,0,83,’Released’,”,6.00,1),(385736,’Kicks’,0,’http://www.focusfeatures.com/kicks’,’When his hard-earned kicks get snatched by a local hood, fifteen-year old Brandon and his two best friends go on an ill-advised mission across the Bay Area to retrieve the stolen sneakers.’,3.467923,’2016-09-09′,0,80,’Released’,’They aren\’t just shoes’,7.50,18),(386826,’A Beginner\’s Guide to Snuff’,0,”,’Two brothers, desperate to break into the world of television and film, decide to enter a horror movie contest. And what could be more horrifying than the elusive snuff film?’,0.060127,’2016-03-04′,0,87,’Released’,”,0.00,0),(389425,’Code of Honor’,8000000,”,’Colonel Robert Sikes is on a mission to rid his city of crime. As a stealthy, one-man assault team, he will take on street gangs, mobsters, and politicians with extreme prejudice until his mission is complete. His former protégé, William Porter, teams up with the local police department to bring his former commander to justice and prevent him from further vigilantism.’,2.101718,’2016-05-06′,0,106,’Released’,’There is no honor in revenge.’,4.10,16),(394047,’The Dog Lover’,2000000,’http://www.thedoglovermovie.com/’,’Sara Gold is a young girl on a quest to save man\’s best friend. When she goes undercover to take down a dog breeder suspected of wrongdoing, she quickly finds out she might be on the wrong side of right. Sara must make a decision: to continue and follow the orders of her organization, United Animal Protection Agency, or trust her instincts and the boy she\’s fallen in love with.’,1.193219,’2016-07-08′,0,101,’Released’,’She ended up on the wrong side of right.’,5.30,6),(395766,’The Secret’,0,”,’The Secret is the story of a real-life double murder. James Nesbitt plays Colin Howell, a respectable dentist and pillar of the community, who became a killer in partnership with a Sunday school teacher, Hazel Buchanan, played by Genevieve O\’Reilly.’,0.042346,’2016-04-29′,0,200,’Released’,”,0.00,0),(396152,’Restoration’,0,”,’During home renovations, a young couple release a fiery spirit seeking retribution. To save themselves and set the spirit free, they must uncover the dire truth. But nothing is as simple as it seems…’,2.525569,’2016-05-03′,0,90,’Released’,”,5.30,11),(402515,’Solitude’,0,”,’After finding an old storage locker filled with his family\’s history, James Erikson begins a journey to discover the truth behind a mysterious piece of land in the small town of Solitude.’,0.018716,’2014-10-21′,0,89,’Released’,”,0.00,0),(407887,’ì�¸ì²�ì��ë¥�ì��ì �’,0,”,’A squad of soldiers fight in the Korean War\’s crucial Battle of Incheon.’,6.116436,’2016-07-27′,0,110,’Released’,’The Odds Were 5000 to 1 â�¦ One was all They Needed.’,5.80,29),(408429,’Perfect Cowboy’,200,”,’Two gay fathers of a straight country western singers, all living in a rural community and playing music together. Jimmy Poole gets out of prison and kicks his step-son Mark out of the family\’s band.’,0.050978,’2014-07-13′,0,109,’Released’,”,5.00,1),(417859,’Puss in Boots’,130000000,”,’Long before he even met Shrek, the notorious fighter, lover and outlaw Puss in Boots becomes a hero when he sets off on an adventure with the tough and street smart Kitty Softpaws and the mastermind Humpty Dumpty to save his town. This is the true story of The Cat, The Myth, The Legend… The Boots.’,20.678787,’2011-10-28′,554987477,90,’Released’,’Live for danger. Fight for justice. Pray for mercy.’,6.40,451),(426067,’Midnight Cabaret’,0,”,’A Broadway producer puts on a play with a Devil character in it. Soon the actors begin having nightmares, and events that are mentioned in the play really start happening.’,0.001389,’1990-01-01′,0,94,’Released’,’The hot spot where Satan\’s waitin\’.’,0.00,0),(426469,’Growing Up Smith’,0,’http://www.growingupsmithmovie.com’,’In 1979, an Indian family moves to America with hopes of living the American Dream. While their 10-year-old boy Smith falls head-over-heels for the girl next door, his desire to become a \”good old boy\” propels him further away from his family\’s ideals than ever before.’,0.710870,’2017-02-03′,0,102,’Released’,’Itâ��s better to stand out than to fit in.’,7.40,7),(433715,’8 Days’,0,”,’After sneaking to a party with her friends, 16-year-old Amber Stevens goes missing. Forced into the world of sex trafficking, her family and community fight to get her back. Inspired by actual events.’,0.015295,’2014-06-15′,0,90,’Released’,’She never knew it could happen to her…’,0.00,0),(447027,’Running Forever’,0,”,’After being estranged since her mother\’s death in the 9/11 attacks, both daughter and father must work together to re-establish their relationship. When the difficulty nearly consumes them both, a bond with a beautiful horse that has also gone through its own tragic loss brings Taylor Sims, back to what is important – family, friendship and faith. With help from the community and from above, they repair the pieces of their lives and learn to stop running, forever.’,0.028756,’2015-10-27′,0,88,’Released’,”,0.00,0),(459488,’To Be Frank, Sinatra at 100′,2,”,”,0.050625,’2015-12-12′,0,0,’Released’,”,0.00,0);
/*!40000 ALTER TABLE `movie` ENABLE KEYS */;
UNLOCK TABLES;
—
— Table structure for table `movie_cast`
—
DROP TABLE IF EXISTS `movie_cast`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `movie_cast` (
`movie_id` int(10) DEFAULT NULL,
`person_id` int(10) DEFAULT NULL,
`character_name` varchar(400) DEFAULT NULL,
`gender_id` int(10) DEFAULT NULL,
`cast_order` int(5) DEFAULT NULL,
KEY `fk_mca_movie` (`movie_id`),
KEY `fk_mca_per` (`person_id`),
KEY `fk_mca_gender` (`gender_id`),
CONSTRAINT `fk_mca_gender` FOREIGN KEY (`gender_id`) REFERENCES `gender` (`gender_id`),
CONSTRAINT `fk_mca_movie` FOREIGN KEY (`movie_id`) REFERENCES `movie` (`movie_id`),
CONSTRAINT `fk_mca_per` FOREIGN KEY (`person_id`) REFERENCES `person` (`person_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
—
— Dumping data for table `movie_cast`
—
LOCK TABLES `movie_cast` WRITE;
/*!40000 ALTER TABLE `movie_cast` DISABLE KEYS */;
INSERT INTO `movie_cast` VALUES (285,85,’Captain Jack Sparrow’,2,0),(285,114,’Will Turner’,2,1),(285,116,’Elizabeth Swann’,1,2),(285,1640,’William Bootstrap Bill Turner’,2,3),(285,1619,’Captain Sao Feng’,2,4),(285,2440,’Captain Davy Jones’,2,5),(285,118,’Captain Hector Barbossa’,2,6),(285,1709,’Admiral James Norrington’,2,7),(285,2449,’Joshamee Gibbs’,2,8),(285,2441,’Lord Cutler Beckett’,2,9),(285,2038,’Tia Dalma’,1,10),(285,378,’Governor Weatherby Swann’,2,11),(285,1430,’Captain Teague Sparrow’,2,12),(285,1710,’Pintel’,2,13),(285,1711,’Ragetti’,2,14),(285,4031,’Lieutenant Theodore Groves’,2,15),(285,1715,’Cotton’,2,16),(285,4030,’Marty’,2,17),(285,939,’Ian Mercer’,0,18),(285,2450,’Scarlett’,1,19),(285,2452,’Giselle’,1,20),(285,1714,’Mullroy’,2,21),(285,1713,’Murtogg’,0,22),(285,22075,’Tai Huang’,2,23),(285,61259,’Henry Turner’,2,24),(285,33500,’Mistress Ching’,1,25),(285,1224149,’Lieutenant Greitzer’,2,26),(285,429401,’Hadras’,2,27),(285,1123,’Clacker’,0,28),(285,1056117,’Penrod’,2,29),(285,21700,’Cotton\’s Parrot (voice)’,2,30),(285,1430,’Captain Teague’,2,31),(285,2603,’Captain Jocard’,2,32),(285,70577,’Captain Ammand’,0,33),(559,2219,’Peter Parker / Spider-Man’,2,0),(559,205,’Mary Jane Watson’,1,1),(559,17051,’Harry Osborn / New Goblin’,2,2),(559,19159,’Flint Marko / Sandman’,2,3),(559,17052,’Eddie Brock / Venom’,2,4),(559,18997,’Gwen Stacey’,1,5),(559,18998,’May Parker’,1,6),(559,2505,’Captain Stacey’,2,7),(559,18999,’J. Jonah Jameson’,2,8),(559,9207,’Mrs. Marko’,1,9),(559,19152,’Dr. Curt Connors’,2,10),(559,5502,’Joseph Robertson’,2,11),(559,9281,’Miss Brant’,1,12),(559,11769,’Hoffman’,2,13),(559,6585,’Penny Marko’,1,14),(559,5293,’Norman Osborn / Green Goblin’,2,15),(559,19153,’Ben Parker’,0,16),(559,2368,’Mr. Ditkovitch’,2,17),(559,20645,’Ursula’,1,18),(559,20582,’Dennis Carradine / Carjacker’,2,19),(559,20580,’Flash Thompson’,2,20),(559,7624,’Man in Times Square’,2,21),(559,11357,’Mau00eetre d’,2,22),(559,19155,’Pianist’,2,23),(559,7628,’Driver’,0,24),(559,19154,’John Jameson’,2,25),(559,19326,’Houseman’,0,26),(559,59206,’Mrs. Stacy’,1,27),(559,78311,’Photographer’,2,28),(559,116627,’Anchorman’,0,29),(559,113608,’Jennifer Dugan’,1,30),(559,99932,’Congratulatory Woman at Daily Bugle’,1,31),(559,552526,’Crane Disaster Radio Policeman’,2,32),(559,1226471,’Play Director’,2,33),(559,159456,’Play Producer’,2,34),(559,105701,’Jazz Club Manager’,2,35),(559,66653,’Precinct Detective’,2,36),(559,1451076,’Emergency Room Doctor’,2,37),(559,11766,’Crane Operator’,0,38),(559,1781288,’Woman Outside Theater’,1,39),(559,1739821,’Police Detective’,0,40),(559,1735986,’New Jersey State Policeman’,0,41),(559,1781297,’New Jersey State Policeman’,0,42),(559,1435965,’Test Site Technician’,1,43),(559,1781298,’Test Site Technician’,0,44),(559,233298,’Test Site Technician’,2,45),(559,60490,’Test Site Technician’,2,46),(559,175606,’Test Site Technician’,0,47),(559,1656631,’Test Site Technician’,1,48),(559,173163,’ICU Nurse’,0,49),(559,1781299,’Cop at Crane Disaster’,0,50),(559,1781300,’Mary Jane\’s Replacement’,1,51),(559,1781301,’Boy at Key to the City Ceremony’,0,52),(559,1781302,’Councilwoman’,1,53),(559,53257,’Policeman at Sand Truck’,2,54),(559,92486,’Policeman at Sand Truck’,0,55),(559,52946,’Armored Car Driver’,2,56),(559,1781303,’Newstand Patron’,0,57),(559,98396,’Newstand Patron’,0,58),(559,558055,’Newstand Patron’,1,59),(559,1781304,’Coffee Shop Waitress’,1,60),(559,1781307,’Jazz Club Waitress’,1,61),(559,193946,’Jazz Club Bouncer’,2,62),(559,1446719,’Photoshoot Client’,0,63),(559,1781308,’Businessman (uncredited)’,0,64),(559,1781309,’Theater Attendee (uncredited)’,0,65),(559,1781310,’Pedestrian (uncredited)’,0,66),(559,1781311,’I.C.U Nurse (uncredited)’,1,67),(559,1653331,’NYPD Officer (uncredited)’,2,68),(559,1781312,’Model (uncredited)’,1,69),(559,111243,’Bucket Boy (uncredited)’,2,70),(559,1781313,’News Reporter (uncredited)’,1,71),(559,1781194,’Photographer (uncredited)’,0,72),(559,1781318,’Rescued Girl (uncredited)’,1,73),(559,454223,’Photographer (uncredited)’,0,74),(559,232042,’Jazz Club Waitress (uncredited)’,1,75),(559,1496942,’Theater Patron (uncredited)’,0,76),(559,1209717,’Jazz Club Girl (uncredited)’,1,77),(559,1781325,’Columbia Grad Student (uncredited)’,1,78),(559,1509622,’New York City Commuter / Driver (uncredited)’,2,79),(559,1610271,’Girl at Key Ceremony (uncredited)’,1,80),(559,1781326,’Pedestrian (uncredited)’,0,81),(559,1781199,’A Spidey Kid (uncredited)’,1,82),(559,1781205,’A Spidey Kid (uncredited)’,1,83),(559,1781217,’A Spidey Kid (uncredited)’,1,84),(559,1781327,’Businessman (uncredited)’,0,85),(559,1636759,’Automobile Driver (uncredited)’,0,86),(559,1781328,’Spectator (uncredited)’,0,87),(559,1781329,’News Spectator (uncredited)’,0,88),(559,1781330,’Funeral Limo Driver (uncredited)’,0,89),(559,1639432,’News Reporter (uncredited)’,0,90),(559,1781331,’Cop (uncredited)’,0,91),(559,1781332,’Female New Yorker (uncredited)’,1,92),(559,1316667,’Jazz Club Bouncer (uncredited)’,0,93),(559,105632,’Girl at Key Ceremony (uncredited)’,1,94),(559,1781333,’Student (uncredited)’,0,95),(559,1292243,’ER Nurse (uncredited)’,1,96),(559,1781334,’Dog Walker (uncredited)’,1,97),(559,1752230,’Observer (uncredited)’,0,98),(559,1781221,’Businesswoman (uncredited)’,1,99),(559,570374,’Woman in Court (uncredited)’,1,100),(559,1246221,’British Publicist (uncredited)’,1,101),(559,1781344,’Shocked Pedestrian (uncredited)’,1,102),(559,1781345,’Journalist (uncredited)’,1,103),(559,1781346,’Girl Screaming in Camaro (uncredited)’,1,104),(559,1781347,’Kid in Times Square (uncredited)’,0,105),(559,163930,’Oscorp Receptionist (uncredited)’,1,106),(559,1781348,’Girl in Times Square (uncredited)’,1,107),(559,1697017,’Robbie\’s Assistant (uncredited)’,1,108),(559,1781349,’Theatergoer (uncredited)’,0,109),(559,1480150,’Businessman (uncredited)’,0,110),(559,1178562,’Beautiful Girl (uncredited)’,1,111),(559,1344665,’Beautiful Woman (uncredited)’,1,112),(559,118389,’Police Officer (uncredited)’,0,113),(559,1781350,’Beautiful Woman (uncredited)’,1,114),(559,1781351,’Beautiful Woman (uncredited)’,0,115),(559,60127,’Businesswoman (uncredited)’,1,116),(559,1781352,’Pedestrian (uncredited)’,0,117),(559,1422991,’Sandman Victim (uncredited)’,1,118),(559,106147,’Bad Girl (uncredited)’,1,119),(559,1691382,’City Hall Cheerer (uncredited)’,0,120),(559,1781353,’Guy with Ticket (uncredited)’,0,121),(559,1367833,’Jazz Club Beatnik (uncredited)’,0,122),(559,1781354,’Jazz Club Guest (uncredited)’,0,123),(559,1781355,’Cafu00e9 Girl (uncredited)’,1,124),(559,1781356,’Jazz Club Patron (uncredited)’,1,125),(559,1340943,’Jazz Club Waitress (uncredited)’,1,126),(559,211964,’Firefighter (uncredited)’,0,127),(559,1781358,’Police Officer (uncredited)’,0,128),(559,1778304,’Broadway Audience Member (uncredited)’,0,129),(559,1781359,’Jazz Club Musician (uncredited)’,0,130),(559,1781360,’Girl in Cab (uncredited)’,1,131),(559,1454306,’Model (uncredited)’,1,132),(559,1781361,’Hot Girl (uncredited)’,0,133),(559,1781362,’Beautiful Woman (uncredited)’,1,134),(559,1781365,’Bar Patron #5 (uncredited)’,0,135),(559,1614425,’Model (uncredited)’,1,136),(559,567242,’Model (uncredited)’,0,137),(559,1781366,’Student (uncredited)’,0,138),(559,1781368,’Restaurant Patron (uncredited)’,0,139),(559,1225878,’ER Nurse (uncredited)’,1,140),(559,1781371,’City Hall Cheerer (uncredited)’,0,141),(559,1368459,’Spectator (uncredited)’,2,142),(767,10980,’Harry Potter’,2,0),(767,10989,’Ron Weasley’,2,1),(767,10990,’Hermione Granger’,1,2),(767,10993,’Draco Malfoy’,2,3),(767,5658,’Albus Dumbledore’,2,4),(767,388,’Horace Slughorn’,2,5),(767,1283,’Bellatrix Lestrange’,1,6),(767,1923,’Rubeus Hagrid’,2,7),(767,10978,’Minerva McGonagall’,1,8),(767,4566,’Severus Snape’,2,9),(767,9191,’Peter Pettigrew’,2,10),(767,11207,’Remus Lupin’,2,11),(767,477,’Molly Weasley’,1,12),(767,96841,’Neville Longbottom’,2,13),(767,140367,’Luna Lovegood’,1,14),(767,10991,’Ginny Weasley’,1,15),(767,140368,’George Weasley’,2,16),(767,96851,’Fred Weasley’,2,17),(767,20999,’Arthur Weasley’,2,18),(767,11184,’Filius Flitwick’,2,19),(767,3300,’Nymphadora Tonks’,1,20),(767,234933,’Cho Chang’,1,21),(767,60348,’Fenrir Greyback’,2,22),(767,10988,’Lily Potter’,1,23),(767,15737,’Narcissa Malfoy’,1,24),(767,234934,’Cormac McLaggen’,2,25),(767,11180,’Argus Filch’,2,26),(767,964834,’Tom Riddle (16 Years)’,2,27),(767,1114487,’Tom Riddle (11 Years)’,0,28),(767,9138,’Poppy Pomfrey’,1,29),(767,234926,’Padma Patil’,1,30),(767,234925,’Parvati Patil’,0,31),(767,174398,’Katie Bell’,1,32),(767,234922,’Seamus Finnigan’,2,33),(767,234929,’Romilda Vane’,1,34),(767,11212,’Gregory Goyle’,2,35),(767,956224,’Vincent Crabbe’,2,36),(767,234928,’Pansy Parkinson’,1,37),(767,234924,’Lavender Brown’,1,38),(767,234927,’Blaise Zabini’,0,39),(767,234923,’Dean Thomas’,0,40),(767,1796454,’Marcus Belby’,0,41),(767,568374,’Nigel Wolpert’,0,42),(767,52888,’Eldred Worple’,2,43),(767,234930,’Leanne’,0,44),(767,202032,’Amycus Carrow’,2,45),(767,568378,’Alecto Carrow’,1,46),(767,234919,’Thorfinn Rowle’,2,47),(767,89387,’Waitress’,0,48),(1452,17271,’Superman / Clark Kent’,2,0),(1452,1979,’Lex Luthor’,2,1),(1452,7517,’Lois Lane’,1,2),(1452,11006,’Richard White’,2,3),(1452,7489,’Kitty Kowalski’,1,4),(1452,8924,’Perry White’,2,5),(1452,53492,’Jimmy Olsen’,0,6),(1452,2639,’Martha Kent’,1,7),(1452,3084,’Jor-El’,2,8),(1452,53493,’Stanford’,2,9),(1452,53494,’Jason White’,2,10),(1452,41318,’Brutus’,2,11),(1452,1224391,’Riley’,0,12),(1452,1272955,’Grant’,0,13),(1452,193763,’Bo the Bartender’,2,15),(1452,243805,’Gertrude Vanderworth’,1,16),(1452,1252837,’Boy with Camera’,2,17),(1452,971458,’Little Girl’,1,18),(58,85,’Captain Jack Sparrow’,2,0),(58,114,’Will Turner’,2,1),(58,116,’Elizabeth Swann’,1,2),(58,1640,’William Bootstrap Bill Turner’,2,3),(58,2440,’Captain Davy Jones’,2,4),(58,1709,’James Norrington’,2,5),(58,2449,’Joshamee Gibbs’,2,6),(58,378,’Governor Weatherby Swann’,2,7),(58,1710,’Pintel’,2,8),(58,1711,’Ragetti’,2,9),(58,2441,’Lord Cutler Beckett’,2,10),(58,2038,’Tia Dalma’,1,11),(58,1715,’Cotton’,2,12),(58,4030,’Marty’,2,13),(58,939,’Ian Mercer’,0,14),(58,2451,’Captain Bellamy’,2,15),(58,118,’Captain Hector Barbossa’,2,16),(58,191751,’Maccus’,2,17),(58,1123,’Clanker’,0,18),(58,11283,’Koleniko’,2,19),(58,22075,’Headless’,2,20),(58,64102,’Jimmy Legs’,2,21),(58,1229277,’Ogilvey’,0,22),(58,140452,’Burser’,0,23),(58,10960,’Burser – Edinburgh’,2,24),(58,25441,’Quartermaster – Edinburgh’,2,25),(58,2450,’Scarlet’,1,26),(58,2452,’Giselle’,1,27),(58,82636,’Frightened Sailor’,2,28),(58,1254626,’Black Pearl Pirate’,2,29),(58,429401,’Ho-Kwan’,2,30),(58,1056117,’Penrod (uncredited)’,2,31),(58,21700,’Cotton\’s Parrot (voice)’,2,32),(2454,25130,’Prince Caspian’,2,0),(2454,5528,’Peter Pevensie’,2,1),(2454,5529,’Susan Pevensie’,1,2),(2454,5527,’Edmund Pevensie’,2,3),(2454,5526,’Lucy Pevensie’,1,4),(2454,2166,’King Miraz’,2,5),(2454,25132,’Queen Prunaprismia’,1,6),(2454,22970,’Trumpkin’,2,7),(2454,11184,’Nikabrik’,2,8),(2454,25133,’Doktor Cornelius’,2,9),(2454,17839,’Lord Glozell’,2,10),(2454,7370,’Lord Sopespian’,2,11),(2454,24496,’Lord Scythley’,2,12),(2454,12044,’Lord Donnon’,2,13),(2454,25134,’Asterius’,2,14),(2454,25135,’Glenstorm’,2,15),(2454,3896,’Aslan (voice)’,2,16),(2454,25136,’Tru00fcffelju00e4ger’,2,17),(2454,3063,’White Witch’,1,18),(2454,1926,’Reepicheep’,2,19),(2454,107943,’Hag’,1,20),(1865,85,’Captain Jack Sparrow’,2,0),(1865,955,’Angelica Teach’,1,1),(1865,6972,’Captain Edward Blackbeard Teach’,2,2),(1865,2449,’Joshamee Gibbs’,2,3),(1865,118,’Captain Hector Barbossa’,2,4),(1865,237455,’Philip Swift’,2,5),(1865,469759,’Syrena’,0,6),(1865,1115,’Scrum’,2,7),(1865,4031,’Lieutenant Theodore Groves’,2,8),(1865,1712,’Lieutenant Gillette’,0,9),(1865,59129,’The Spaniard’,2,10),(1865,10983,’King George II’,2,11),(1865,1430,’Captain Teague Sparrow’,2,12),(1865,55901,’Tamara’,0,13),(1865,5309,’High Society Lady’,1,14),(1865,199975,’Quartermaster’,2,15),(1865,88392,’Cabin Boy’,2,16),(1865,8399,’Ezekiel’,2,17),(1865,77955,’Garheng’,2,18),(1865,83814,’Purser’,2,19),(1865,75076,’Cook’,2,20),(1865,51300,’Master-at-Arms’,2,21),(1865,58758,’Gunner’,2,22),(1865,229634,’King Ferdinand of the Spanish Empire’,2,23),(1865,27397,’John Carteret’,2,24),(1865,11279,’Prime Minister Henry Pelham’,2,25),(1865,110075,’Salaman’,2,26),(1865,1321379,’Derrick’,2,27),(1865,1310385,’Yeoman’,0,28),(1865,1797040,’Justice Smith’,0,29),(1865,214581,’Captain of the Guard’,2,30),(1865,1331023,’English Girl’,1,31),(1865,1770474,’Mermaid’,0,32),(1865,1269611,’Queen Anne\’s Pirate (uncredited)’,2,33),(1865,1770475,’British Sailor (uncredited)’,0,34),(1930,37625,’Peter Parker / Spider-Man’,2,0),(1930,54693,’Gwen Stacy’,1,1),(1930,7026,’Dr. Curt Connors / The Lizard’,2,2),(1930,5724,’Captain Stacy’,2,3),(1930,55152,’Richard Parker’,2,4),(1930,76793,’Rajit Ratha’,2,5),(1930,8349,’Uncle Ben’,2,6),(1930,35,’Aunt May’,1,7),(1930,558928,’Peter Parker (Age 4)’,2,8),(1930,231547,’Flash Thompson’,2,9),(1930,6368,’Mary Parker’,1,10),(1930,1111328,’Cash Register Thief’,2,11),(1930,59261,’Missy Kallenback’,1,12),(1930,205976,’Sally Avril’,1,13),(1930,2878,’Jack\’s Father’,2,14),(1930,7624,’School Librarian’,2,15),(1930,9289,’Man in the Shadows’,2,16),(1930,20582,’Alfie (uncredited)’,2,17),(1930,156989,’Helen Stacy’,2,18),(1930,1424715,’Philip Stacy’,2,19),(1930,61263,’Howard Stacy’,2,20),(1930,930322,’Simon Stacy’,2,21),(1930,1315833,’Jack’,0,22),(1930,91658,’Mr. Cramer’,2,23),(1930,157146,’Miss Ritter’,1,24),(1930,96753,’Nicky\’s Girlfriend’,1,25),(1930,1338023,’Store Clerk’,0,26),(1930,1232365,’Gordon’,0,27),(1930,1338034,’Physics Nerd’,0,28),(1930,1338061,’Physics Nerd’,0,29),(1930,1338215,’Nicky’,0,30),(1930,15318,’Car Thief’,2,31),(1930,66668,’Car Thief Cop’,0,32),(1930,932116,’Police Officer’,2,33),(1930,979075,’Officer (SWAT)’,2,34),(1930,58510,’Newscaster (News Chopper)’,2,35),(1930,118494,’Receptionist’,1,36),(1930,1183671,’OsCorp Intern’,2,37),(1930,1657618,’Rodrigo Guevara’,2,38),(1930,1983,’Construction Worker’,2,39),(1930,1477809,’Taxi Driver’,2,40),(1930,1236007,’Police Officer with Sketch’,2,41),(1930,68430,’Sheila (Subway)’,1,42),(1930,14050,’Subway Guy’,2,43),(1930,1219576,’Principal’,2,44),(1930,63470,’Second Girl (Subway)’,1,45),(1930,1187106,’Ariel’,1,46),(1930,1059597,’Gossip Girl (uncredited)’,1,47),(1930,1657635,’Science Teacher (uncredited)’,1,48),(1930,1355105,’Scientist (uncredited)’,2,49),(1930,63280,’Lab Technician (uncredited)’,2,50),(1930,984614,’Billy Connors (uncredited)’,2,51),(1930,1657642,’Cheerleader (uncredited)’,1,52),(1930,167263,’Goth Girl (uncredited)’,1,53),(1930,1657643,’Tina (uncredited)’,1,54),(1930,1499460,’Pedestrian (uncredited)’,1,55),(1930,1265835,’Oscorp Intern (uncredited)’,1,56),(2268,45589,’Lyra Belacqua’,1,0),(2268,2227,’Marisa Coulter’,1,1),(2268,8784,’Lord Asriel’,2,2),(2268,16431,’Lee Scoresby’,2,3),(2268,10912,’Serafina Pekkala’,1,4),(2268,1281,’Pantalaimon (voice)’,2,5),(2268,1327,’Iorek Byrnison (voice)’,2,6),(2268,45585,’Roger Parslow’,2,7),(2268,6972,’Ragnar Sturlusson (voice)’,2,8),(2268,5470,’Stelmania (voice)’,1,9),(2268,8534,’Hester (voice)’,1,10),(2268,20070,’John Faa’,2,11),(2268,14011,’Farder Coram’,2,12),(2268,113,’First High Councilor’,2,13),(2268,16358,’Fra Pavel’,0,14),(2268,45587,’Master’,2,15),(2268,45586,’Mrs. Lonsdale’,1,16),(2268,937,’Magisterial Emissary’,2,17),(2268,45588,’Ma Coster’,1,18),(2268,142389,’Billy Costa’,2,19),(2268,1815740,’Tony Costa’,0,20),(2268,28959,’Kerim Costa’,0,21),(2268,1411061,’Jaxer Costa’,0,22),(2268,56103,’Sister Clara’,1,23),(2268,63608,’Bolvangar Official’,2,24),(2268,1075144,’Second in Command’,0,25),(2268,1563381,’Gobbler’,0,26),(2268,1132749,’Gobbler’,2,27),(2268,1105459,’Witch’,0,28),(254,3489,’Ann Darrow’,1,0),(254,70851,’Carl Denham’,2,1),(254,3490,’Jack Driscoll’,2,2),(254,3491,’Captain Englehorn’,2,3),(254,3492,’Preston’,2,4),(254,1333,’Kong / Lumpy’,2,5),(254,3493,’Hayes’,2,6),(254,478,’Jimmy’,2,7),(254,3494,’Choy’,2,8),(254,3495,’Herb’,2,9),(254,3496,’Mike’,2,10),(254,3497,’Bruce Baxter’,2,11),(254,1166385,’Manny’,0,12),(254,3541,’Weston’,2,13),(254,81877,’Harry’,2,14),(254,1047942,’Maude’,0,15),(254,107754,’Taps’,2,16),(254,214979,’Zelman’,2,17),(254,199432,’Thuggish Executive’,2,18),(254,181186,’Sleazy Executive’,0,19),(254,1504590,’Studio Guy\’s Assistant’,0,20),(254,1205488,’Young Assistant’,0,21),(254,75892,’Fruit Vendor’,2,22),(254,173451,’Venture Crew’,0,23),(254,1097645,’Venture Crew’,2,24),(254,1169229,’Venture Crew’,0,25),(254,1064428,’Venture Crew’,0,26),(254,173539,’Venture Crew’,0,27),(254,1504591,’Venture Crew’,0,28),(254,75950,’Venture Crew’,0,29),(254,73889,’Venture Crew’,2,30),(254,173569,’Old Security Guard’,2,31),(254,1670104,’Hooverville Child’,0,32),(597,204,’Rose DeWitt Bukater’,1,0),(597,6193,’Jack Dawson’,2,1),(597,3713,’Ruth Dewitt Bukater’,1,2),(597,1954,’Caledon \’Cal\’ Hockley’,2,3),(597,8534,’Molly Brown’,1,4),(597,8535,’Old Rose’,1,5),(597,2053,’Brock Lovett’,2,6),(597,1369,’Captain Edward James Smith’,2,7),(597,2076,’Spicer Lovejoy’,2,8),(597,8536,’Thomas Andrews’,2,9),(597,8537,’Bruce Ismay’,2,10),(597,2179,’Lizzy Calvert’,1,11),(597,8538,’Lewis Bodine’,0,12),(597,8539,’Bobby Buell’,2,13),(597,8540,’Fabrizio’,2,14),(597,8541,’Tommy Ryan’,2,15),(597,8543,’Isidor Straus’,2,16),(597,8544,’John Jacob Astor IV’,2,17),(597,8545,’Col. Archibald Gracie’,2,18),(597,3071,’1st Officer Murdoch’,2,19),(597,65524,’Fifth Officer Lowe’,2,20),(597,8547,’2nd Officer Lightoller’,2,21),(597,8548,’6th Officer Moody’,0,22),(597,8549,’Frederick Fleet’,2,23),(597,8550,’Reginald Lee’,0,24),(597,8551,’Jack Phillips’,2,25),(597,8552,’Cora Cartmell’,1,26),(597,8553,’Slovakian 3 Year Old Boy’,2,27),(597,1080265,’Benjamin Guggenheim’,0,28),(597,93215,’Anatoly Milkailavich’,0,29),(597,1054325,’Slovakian Father’,2,30),(597,41266,’Chief Officer Wilde’,2,31),(597,26863,’Quartermaster Rowe’,2,32),(597,1256066,’Quartermaster Hichens’,0,33),(597,63141,’Master at Arms’,2,34),(597,55957,’Madeleine Astor’,1,35),(597,1697673,’Madame Aubert’,1,36),(597,3981,’Irish Mommy’,1,37),(597,230727,’Helga Dahl’,1,38),(597,1741441,’3rd Class Woman’,1,39),(597,1741443,’Trudy Bolt’,1,40),(597,126363,’Sir Duff Gordon’,2,41),(597,29796,’Lady Duff Gordon’,1,42),(597,1359176,’Countess of Rothes’,1,43),(597,1741450,’Wallace Hartley’,0,44),(597,1597443,’Irish Man’,0,45),(597,40740,’Bert Cartmell’,2,46),(597,1451680,’Harold Bride’,0,47),(597,1741459,’Chief Baker Joughin’,0,48),(597,142325,’4th Officer Boxhall’,0,49),(597,178557,’Father Byles’,0,50),(597,172280,’Ida Strauss’,1,51),(597,1741663,’Irish Little Boy’,0,52),(597,1741664,’Irish Little Girl’,0,53),(597,1227544,’Yaley’,0,54),(597,131833,’1st Class Husband’,2,55),(597,1106167,’Chief Engineer Bell’,0,56),(597,97436,’Leading Stoker Barrett’,2,57),(597,1741665,’Carpenter John Hutchinson’,0,58),(597,1398372,’Elevator Operator’,0,59),(597,1741666,’Scotland Road Steward’,0,60),(597,40695,’Crewman’,0,61),(597,158662,’1st Class Waiter’,2,62),(597,1741667,’Steward #1′,0,63),(597,1228858,’Steward #2′,0,64),(597,1741669,’Steward #3′,0,65),(597,1520024,’Steward #4′,2,66),(597,592618,’Hold Steward #1′,0,67),(597,1237642,’Hold Steward #2′,0,68),(597,1693876,’1st Class Steward’,0,69),(597,930944,’Stairwell Steward’,2,70),(597,1330728,’Steward Barnes’,0,71),(597,1338541,’Porter’,0,72),(597,157989,’Porter’,2,73),(597,157989,’Olaf Dahl’,2,74),(597,1741673,’Bjorn Gunderson’,0,75),(597,1741675,’Olaus Gunderson’,0,76),(597,72742,’Praying Man’,2,77),(597,1741678,’Man in Water’,0,78),(597,944614,’Mother at Stern’,1,79),(597,42198,’Woman’,1,80),(597,1402008,’Woman in Water’,1,81),(597,1741688,’Syrian Man’,0,82),(597,1741689,’Syrian Woman’,1,83),(597,30148,’Chinese Man’,0,84),(597,1741690,’Olaf’,0,85),(597,1741691,’Sven’,0,86),(597,42290,’Pubkeeper’,2,87),(597,4031,’Carpathia Steward’,2,88),(597,1233436,’News Reporter’,1,89),(597,1741692,’Dancer’,0,90),(597,1741693,’Dancer’,1,91),(597,1741694,’Dancer’,0,92),(597,29214,’Dancer’,1,93),(597,1741697,’Dancer’,0,94),(597,1367898,’Dancer’,0,95),(597,1028668,’Dancer’,2,96),(597,1741700,’Dancer’,0,97),(597,1741701,’Dancer’,1,98),(597,42286,’Dancer’,1,99),(597,1741707,’Noble Sailor’,0,100),(597,1741709,’Tea Room Girl’,1,101),(597,146182,’1st Class Woman’,1,102),(597,2134,’Musician / Baker’,2,103),(597,2710,’Steerage Dancer’,2,104),(597,1639429,’1st Class Man’,0,105),(597,1741717,’Victor Giglio’,0,106),(597,1741718,’Titanic Crewmember’,0,107),(597,75804,’3rd Officer Pitman’,2,108),(597,1741719,’Douglas Spedden’,0,109),(597,1741720,’1st Class Passenger / Praying Man’,0,110),(597,1741721,’The Promenade Steward’,0,111),(597,1337466,’Deckhand’,0,112),(597,1741722,’Passenger’,0,113),(597,1741723,’Waiter’,0,114),(597,1741724,’2nd Class Passenger’,0,115),(597,1741725,’Seaman’,0,116),(597,1741726,’Seaman’,0,117),(597,2472,’Leading Stroker Charles Hendrickson’,2,118),(597,1741727,’2nd Class Passenger’,0,119),(597,1741728,’Rich Man’,0,120),(597,1029818,’Frederick Spedden’,0,121),(597,63423,’Rescue Boat Crewman’,2,122),(597,1741729,’2nd Class Passenger / Engine Room Crewman’,0,123),(597,1190237,’First Class Passenger’,1,124),(597,1730068,’Engine Room Crewman’,0,125),(597,1741737,’Engineering Officer’,0,126),(597,1275173,’Button Accordionist’,0,127),(597,1741739,’Praying Woman’,1,128),(597,93214,’Engine Room Crewman’,2,129),(597,11670,’Mary Marvin’,1,130),(597,1741740,’Ohio Man’,0,131),(597,1741741,’1st Class Dining Room Steward’,0,132),(597,1741742,’Drowning Man’,0,133),(597,1741743,’Man Being Combed for Lice’,0,134),(597,1741744,’Kissing Couple’,1,135),(558,2219,’Peter Parker / Spider-Man’,2,0),(558,205,’Mary Jane Watson’,1,1),(558,17051,’Harry Osborn’,2,2),(558,658,’Dr. Otto Octavius / Doctor Octopus’,2,3),(558,18998,’May Parker’,1,4),(558,2517,’Rosalie Octavius’,1,5),(558,18999,’J. Jonah Jameson’,2,6),(558,19154,’John Jameson’,2,7),(558,19152,’Dr. Curt Connors’,2,8),(558,5293,’Norman Osborn / Green Goblin’,2,9),(558,20645,’Ursula’,1,10),(558,11357,’Snooty Usher’,2,11),(558,7624,’Man Dodging Debris’,2,12),(558,11641,’Man on Balcony’,2,13),(558,74949,’Mr. Jacks’,2,14),(558,75316,’Elevator Passenger’,0,15),(558,115218,’Pizza \’Heist\’ Witness’,2,16),(558,25933,’Receptionist’,1,17),(558,9281,’Miss Brant’,1,18),(558,18307,’Raymond’,2,19),(558,20644,’Mr. Aziz’,2,20),(558,75309,’Train Passenger’,2,21),(558,20491,’Louise’,1,22),(558,52847,’Woman at Web’,1,23),(558,4610,’Doctor’,2,24),(558,31549,’Train Passenger (uncredited)’,2,25),(558,17179,’Dr. Davis’,2,26),(558,11769,’Hoffman’,2,27),(558,19153,’Ben Parker’,0,28),(558,2368,’Mr. Ditkovich’,2,29),(558,5502,’Joseph \’Robbie\’ Robertson’,2,30),(558,15011,’Garbage Man’,2,31),(558,9047,’Mrs. Jameson’,1,32),(558,19326,’Houseman’,0,33),(558,59846,’Skeptical Scientist’,1,34),(558,19489,’OsCorp Representative’,2,35),(558,3218,’Poker Player’,2,36),(558,62646,’Amazed Kid’,2,37),(558,31508,’Algernon’,2,38),(558,1217576,’Theater Traffic Cop’,0,39),(558,27688,’Jack’,0,40),(558,1051811,’Clawing Nurse’,0,41),(558,52271,’Train Passenger’,1,42),(558,54635,’Train Conductor’,0,43),(558,11750,’Train Passenger’,0,44),(558,11766,’Train Passenger’,0,45),(558,109180,’Train Passenger’,2,46),(558,54586,’Society Woman’,1,47),(558,1214542,’Dr. Isaacs’,2,48),(558,1252313,’Amazed Kid’,0,49),(558,1355926,’Mrs. Watson’,1,50),(558,188728,’Injured Scientist’,2,51),(558,64373,’Violinist’,0,52),(558,1735986,’Fireman’,0,53),(558,13029,’Woman at Fire’,0,54),(558,60925,’Screaming Nurse’,0,55),(558,1279729,’Chainsaw Doctor’,0,56),(558,147592,’Train Passenger’,0,57),(558,152939,’Train Passenger’,2,58),(558,1090378,’Train Passenger’,0,59),(558,90558,’Train Passenger’,0,60),(558,1278367,’Boomer (uncredited)’,0,61),(558,138028,’Pizza Man (uncredited)’,0,62),(558,1498435,’Fireman 2 (uncredited)’,0,63),(558,1431984,’Piano Player in Planetarium (uncredited)’,0,64),(558,1254435,’Little Girl Playing on Steps (uncredited)’,1,65),(558,92729,’Little Boy Playing on Steps (uncredited)’,0,66),(558,1409953,’Blue Collar Guy (uncredited)’,0,67),(558,954650,’Pedestrian (uncredited)’,2,68),(558,66579,’Screaming Woman (uncredited)’,1,69),(558,1378546,’Columbia University Student (uncredited)’,0,70),(558,1346430,’Man at Web (uncredited)’,0,71),(558,1500999,’Pedestrian (uncredited)’,0,72),(558,956198,’Bearded Doctor (uncredited)’,2,73),(558,1647723,’NYPD Officer (uncredited)’,2,74),(558,58619,’Chinese Daughter (uncredited)’,1,75),(8373,10959,’Sam Witwicky’,2,0),(8373,19537,’Mikaela Banes’,1,1),(8373,19536,’Captain Lennox’,2,2),(8373,11678,’College Professor’,2,3),(8373,8169,’USAF Tech Sergeant Epps’,2,4),(8373,1241,’Agent Simmons’,2,5),(8373,14721,’Ron Witwicky’,0,6),(8373,24305,’Judy Witwicky’,1,7),(8373,72985,’Leo Spitz’,2,8),(8373,103554,’Alice’,1,9),(8373,12797,’General Morshower’,2,10),(8373,1331,’Megatron (voice)’,2,11),(8373,141956,’Commander, US Central Command’,0,12),(8373,19540,’Optimus Prime (voice)’,2,13),(8373,1749473,’Diego Garcia Soldier’,0,14),(8373,108253,’April the Resident Assistant’,1,15),(8373,19541,’Jetfire (voice)’,2,16),(8373,117187,’Mudflap (voice)’,2,17),(8373,84495,’Ironhide (voice)’,2,18),(8373,2962,’Ratchet (voice)’,2,19),(8373,177588,’Sideswipe (voice)’,0,20),(8373,15761,’Arcee (voice)’,1,21),(8373,19384,’Fallen (voice)’,2,22),(8373,81178,’Starscream (voice)’,2,23),(8373,15831,’Soundwave / Devastator / Reedman / Grindor (voice)’,2,24),(8373,78798,’Wheelie / Skids (voice)’,2,25),(8373,1508409,’Wheelbot (voice)’,0,26),(8373,110636,’Doctor (voice)’,0,27),(8373,13919,’Prime #1 (voice)’,2,28),(8373,24362,’Prime #2 / Skipjack / Rampage (voice)’,2,29),(8373,130081,’Prime #3 (voice)’,2,30),(8373,183507,’Aide’,2,31),(8373,78434,’Frisbee Girl’,1,32),(8373,20582,’Cal’,2,33),(8373,67206,’Special Air Service Forces’,2,34),(8373,12793,’Special Air Service Forces’,2,35),(8373,1295,’Egyptian Guard’,2,36),(534,3894,’John Connor’,2,0),(534,65731,’Marcus Wright’,2,1),(534,21028,’Kyle Reese’,2,2),(534,56455,’Blair Williams’,1,3),(534,18997,’Kate Connor’,1,4),(534,1283,’Serena’,1,5),(534,4238,’Barnes’,0,6),(534,76542,’Prototype T-800′,2,7),(534,11086,’General Ashdown’,2,8),(534,13724,’Virginia’,1,9),(534,76543,’Morrison’,2,10),(534,76544,’Richter’,0,11),(534,213753,’Star’,1,12),(534,1039678,’Soldier #1′,2,13),(534,1100,’The Terminator’,2,14),(9543,131,’Prince Dastan’,2,0),(9543,59620,’Tamina’,1,1),(9543,2282,’Nizam’,2,1),(9543,658,’Sheik Amar’,2,2),(9543,55412,’Seso’,2,3),(9543,20286,’Garsiv’,2,4),(9543,52890,’Tus’,2,5),(9543,32556,’King Sharaman’,2,6),(9543,54810,’Bis’,0,7),(9543,587354,’Hassansin Leader’,2,8),(9543,15913,’Hassansin Porcupine’,0,9),(9543,169691,’Hassansin Whip Man’,0,10),(9543,1327299,’Tamina\’s Maid Servant’,0,11),(217,3,’Indiana Jones’,2,0),(217,112,’Irina Spalko’,1,1),(217,10959,’Mutt Williams’,2,2),(217,5538,’\’Mac\’ George Michale’,2,3),(217,650,’Marion Ravenwood’,1,4),(217,5049,’Professor Oxley’,2,5),(217,388,’Dean Charles Stanforth’,2,6),(217,36218,’Russian Soldier’,2,7),(217,52761,’Dovchenko’,2,8),(217,52762,’Russian Soldier’,2,9),(217,52760,’General Ross’,2,10),(217,58210,’Cemetery Warrior’,2,11),(217,173269,’Russian Suit’,2,12),(217,109667,’Russian Suit’,2,13),(217,1133682,’Russian Soldier’,0,14),(217,1427626,’Russian Soldier’,0,15),(217,155978,’Taylor’,2,16),(217,43776,’Smith’,2,17),(217,122596,’Minister’,0,18),(217,1421688,’Student in Library’,0,19),(217,1427682,’Letterman’,2,20),(217,1427688,’Letterman’,0,21),(217,8700,’Slugger’,0,22),(217,1427692,’Diner Waitress’,0,23),(217,1427695,’Malt Shop Teen’,0,24),(217,1427698,’College Brawler’,0,25),(217,1365062,’College Brawler’,0,26),(217,1427700,’Teenage Boy’,0,27),(217,1058026,’Teenage Girl’,0,28),(217,204408,’Teenage Girl’,0,29),(217,1031791,’Fast Speaking Inmate’,0,30),(217,1427707,’Shouting Inmate’,0,31),(217,1427708,’Sanitarium Nun’,0,32),(217,1427711,’Cemetery Warrior’,0,33),(217,1427715,’Cave Warrior’,0,34),(217,1427716,’M.P. in Guard Hut’,0,35),(217,21723,’M.P. Sergeant’,2,36),(217,1656530,’College Student (uncredited)’,0,37),(5174,66,’Det. James Carter’,2,0),(5174,18897,’Chief Insp. Lee’,2,1),(5174,9195,’Kenji’,0,2),(5174,2201,’Varden Reynard’,2,3),(5174,2245,’George’,2,4),(5174,3556,’Det. Revi’,2,5),(5174,41894,’Soo Yung’,0,6),(5174,4492,’Capt. William Diel’,2,7),(5174,145633,’Genevieve’,1,8),(5174,164945,’Zoe (uncredited)’,1,9),(5174,16145,’Dragon Lady’,1,10),(5174,21629,’Ambassador Han’,2,11),(5174,13314,’Sister Agnes’,1,12),(5174,39829,’Master Yu’,2,13),(5174,215130,’Marsha’,0,14),(5174,21631,’Chinese Foreign Minister’,0,15),(5174,554599,’French Assassin’,0,16),(5174,1577430,’Dressing Room Girl’,1,17),(411,5528,’Peter Pevensie’,2,0),(411,5529,’Susan Pevensie’,1,1),(411,5527,’Edmund Pevensie’,2,2),(411,5526,’Lucy Pevensie’,1,3),(411,3896,’Aslan (voice)’,2,4),(411,3063,’White Witch’,1,5),(411,5530,’Mr. Tumnus, the Faun’,2,6),(411,388,’Professor Kirke’,2,7),(411,5531,’Ginarrbrik’,2,8),(411,2467,’Father Christmas’,2,9),(411,5532,’Mrs. Pevensie’,1,10),(411,5533,’Mrs. MacReady’,1,11),(411,5534,’Oreius’,2,12),(411,5535,’Older Lucy’,0,13),(411,5536,’Older Edmund’,0,14),(411,2050,’Older Peter’,2,15),(411,5537,’Older Susan’,1,16),(411,5538,’Mr. Beaver’,2,17),(411,5539,’Mrs. Beaver’,1,18),(411,4757,’Fox’,2,19),(411,5540,’Gryphon’,0,20),(411,5541,’Philip the Horse (voice)’,2,21),(411,5542,’Wolf’,0,22),(411,147,’Maugrim’,2,23),(155,3894,’Bruce Wayne’,2,0),(155,1810,’Joker’,2,1),(155,6383,’Harvey Dent’,2,2),(155,3895,’Alfred’,2,3),(155,1579,’Rachel’,1,4),(155,64,’Gordon’,2,5),(155,192,’Lucius Fox’,2,6),(155,53651,’Ramirez’,1,7),(155,57597,’Wuertz’,2,8),(155,2037,’Scarecrow’,2,9),(155,101015,’Lau’,2,10),(155,21316,’Mayor’,2,11),(155,21315,’Maroni’,2,12),(155,13939,’Chechen’,2,13),(155,1904,’Engel’,2,14),(155,87957,’Stephens’,2,15),(155,128386,’Loeb’,2,16),(155,34544,’Reese’,2,17),(155,58692,’Barbara Gordon’,0,18),(155,18052,’James Gordon’,2,19),(155,1052875,’Rossi’,2,20),(155,1196130,’Dopey’,0,21),(155,1334139,’Happy’,0,22),(155,64856,’Gambol’,2,23),(155,16477,’Grumpy’,2,24),(155,1208967,’Chuckles’,0,25),(155,886,’Bank Manager’,2,26),(155,1056090,’Drug Dealer’,0,27),(155,1870607,’Drug Buyer’,0,28),(155,1870608,’Junkie’,0,29),(155,101014,’Natascha’,1,30),(155,24595,’Crime Boss’,2,31),(155,20372,’LSI VP’,0,32),(155,1522073,’Judge Surrillo’,0,33),(155,1870609,’Brian’,0,34),(155,1870610,’Man No. 1′,0,35),(155,1840452,’Man No. 2′,0,36),(155,1226696,’Assistant DA’,0,37),(155,1870611,’Thug at Party’,0,38),(155,853194,’Gentleman at Party’,2,39),(155,1526574,’Male Guest’,0,40),(155,1870612,’Female Guest’,0,41),(155,1424043,’Judge Freel’,0,42),(155,1220201,’Maroni\’s Mistress’,1,43),(155,147895,’Gambol\’s Bodyguard (as Chucky Venn)’,0,44),(155,1195758,’Gambol\’s Bodyguard (as Winston Ellis)’,0,45),(155,83854,’Joker\’s Thug’,2,46),(155,1870613,’Reporter’,0,47),(155,1313093,’Heckler’,0,48),(155,1678566,’Cop Heckler’,0,49),(155,176227,’Acting Commissioner’,2,50),(155,1870614,’Officer at Intersection’,0,51),(155,1870615,’Convoy Leader’,0,52),(155,1870616,’Fat Thug’,0,53),(155,1128854,’Murphy’,0,54),(155,29617,’Cop with Fat Thug’,2,55),(155,1781739,’Medic’,0,56),(155,26669,’Cop at 250 52nd St.’,2,57),(155,1631707,’Nurse’,0,58),(155,143328,’Polk’,2,59),(155,1464854,’Berg’,0,60),(155,1870623,’Cop at Hospital’,0,61),(155,1870620,’Bartender’,0,62),(155,1624910,’Civilian’,2,63),(155,78047,’First Mate’,2,64),(155,47525,’Prison Ferry Pilot’,2,65),(155,1238461,’Guard Commander’,0,66),(155,1232399,’Businessman’,0,67),(155,1661772,’Mother’,0,68),(155,122345,’Passenger’,0,69),(155,1215332,’Passenger’,0,70),(155,209990,’Passenger’,0,71),(155,139946,’Passenger’,1,72),(155,1070855,’Passenger’,0,73),(155,1674439,’SWAT Sniper’,2,74),(155,1870625,’SWAT Leader’,0,75),(155,141770,’Prisoner on Ferry’,2,76),(155,8396,’Tattooed Prisoner’,2,77),(155,1394354,’Reporter #3′,0,78),(155,29616,’Evans’,2,79),(155,1870627,’Honor Guard Man’,0,80),(155,170230,’Uniform Cop’,2,81),(155,75076,’Bounty Hunter’,2,82),(155,971049,’Bounty Hunter’,2,83),(155,1870629,’Fox\’s Secretary’,0,84),(155,119414,’Passenger Ferry Pilot’,2,85),(155,1870631,’Guardsman’,0,86),(155,1655526,’Warden’,0,87),(155,95716,’Corrections Officer’,0,88),(155,1122545,’Prisoner’,0,89),(155,578699,’Prisoner’,0,90),(155,126316,’Prisoner’,0,91),(155,1132153,’Prisoner’,2,92),(155,1599260,’Hong Kong Detective’,2,93),(155,1870636,’Honor Guard Leader’,0,94),(155,1870637,’Gordon\’s Daughter’,0,95),(155,1870638,’Armored Car SWAT’,0,96),(155,1161711,’Waiter (uncredited)’,0,97),(155,580566,’Bank Patron (uncredited)’,0,98),(155,1128275,’Party Guest (uncredited)’,0,99),(155,1185594,’Party Guest with Glass (uncredited)’,0,100),(155,1197335,’Party Guest (uncredited)’,0,101),(155,1552999,’Lau Henchman (uncredited)’,0,102),(155,1192165,’Paramedic (uncredited)’,1,103),(155,1131169,’Chechen Gangster (uncredited)’,0,104),(155,580567,’Press Conference Heckler (uncredited)’,0,105),(155,228305,’Pedestrian (uncredited)’,0,106),(155,1392731,’Ferry Passenger (uncredited)’,1,107),(155,593182,’Police Officer (uncredited)’,0,108),(155,1086373,’Prisoner (uncredited)’,0,109),(155,1207205,’Immigrant Ferry Passenger (uncredited)’,0,110),(155,18070,’Shotgun SWAT (uncredited)’,2,111),(155,580560,’Parade Police Officer (uncredited)’,0,112),(155,505400,’Maroni\’s Henchman (uncredited)’,0,113),(155,1058964,’Assistant D.A. (uncredited)’,0,114),(155,1261397,’Police Sgt. Spellman / Gotham Bomb Squad (uncredited)’,0,115),(155,1551776,’Helicopter SWAT Sniper (uncredited)’,0,116),(155,1111803,’Ferry Passenger (uncredited)’,2,117),(155,1360008,’Officer (uncredited)’,2,118),(155,1426334,’Joker\’s Thug #2 (uncredited)’,0,119),(155,30450,’Prisoner (uncredited)’,2,120),(155,1209046,’Party Guest (uncredited)’,0,121),(155,1058963,’Angry Hospital Relative (uncredited)’,0,122),(155,98994,’Evacuee (uncredited)’,0,123),(155,1108073,’High-Ranking Police Official (uncredited)’,0,124),(155,1185600,’Extra (uncredited)’,0,125),(155,1209051,’Dept. of Corrections Resident (uncredited)’,0,126),(155,99223,’Detective (uncredited)’,0,127),(155,79810,’Police Officer (uncredited)’,0,128),(155,204276,’Chechen\’s Bodyguard (uncredited)’,0,129),(155,1209055,’Detective (uncredited)’,0,130),(155,1512023,’Party Guest (uncredited)’,0,131),(155,127005,’Major Crime Unit Detective (uncredited)’,2,132),(155,1380656,’Party Staff (uncredited)’,0,133),(1726,3223,’Tony Stark / Iron Man’,2,0),(1726,18288,’Lt. Col. James Rhodey Rhodes / War Machine’,2,1),(1726,1229,’Obadiah Stane / Iron Monger’,2,2),(1726,17857,’Yinsen’,2,3),(1726,12052,’Virginia Pepper Potts’,1,4),(1726,57452,’Raza’,2,5),(1726,6162,’J.A.R.V.I.S. (voice)’,2,6),(1726,57451,’Christine Everhart’,1,7),(1726,9048,’Agent Phil Coulson’,2,8),(1726,163671,’Award Ceremony Narrator (voice)’,2,9),(1726,15277,’Happy Hogan’,2,10),(1726,2231,’Director Nick Fury’,2,11),(1726,7624,’Stan Lee’,2,12),(1726,78299,’Guard’,0,13),(1726,203468,’Jim Cramer’,0,14),(1726,173810,’Abu Bakaar’,2,16),(1726,17200,’General Gabriel’,2,17),(1726,12708,’William Ginter Riva’,2,18),(1726,40275,’Major Allen’,2,19),(1726,54809,’Guard’,2,20),(1726,944830,’Guard’,2,21),(1726,1209417,’Guard’,0,22),(1726,95698,’Jimmy’,2,23),(1726,1209418,’Pratt’,2,24),(1726,62037,’Ramirez’,1,25),(1726,183439,’Ahmed’,2,26),(1726,109669,’Omar’,0,27),(1726,104669,’Howard Stark’,2,28),(1726,1209419,’Viper 1′,0,29),(1726,195442,’Viper 2′,2,30),(1726,142213,’Amira Ahmed’,1,31),(1726,1209702,’Colonel Craig’,0,32),(1726,1209703,’Dealer at Craps Table’,0,33),(1726,183037,’Woman at Craps Table’,1,34),(1726,1209704,’Woman at Craps Table’,0,35),(1726,214951,’Engineer’,0,36),(1726,205362,’Air Force Officer’,2,37),(1726,939869,’Woman In SUV’,1,38),(1726,1209705,’Kid in SUV’,2,39),(1726,1209706,’Kid in SUV’,0,40),(1726,1209707,’Kid in SUV’,1,41),(1726,1209708,’Kid in SUV’,0,42),(1726,1209709,’Kid in SUV’,1,43),(1726,1209710,’Gulmira Kid’,0,44),(1726,206423,’Gulmira Mom’,0,45),(1726,133121,’Reporter’,2,46),(1726,181895,’Reporter’,0,47),(1726,62843,’Reporter’,1,48),(1726,204606,’Reporter’,0,49),(1726,210842,’Flight Attendant’,0,50),(1726,205720,’Flight Attendant’,1,51),(1726,1005698,’Flight Attendant’,1,52),(1726,1209711,’Air Force Lieutenant’,0,53),(1726,90721,’Zorianna Kit’,0,54),(1726,169681,’Stan\’s Girl’,0,55),(1726,1209712,’Stan\’s Girl’,0,56),(1726,1209713,’Stan\’s Girl’,0,57),(1726,169642,’Stan\’s Girl’,0,58),(1726,27031,’CAOC Analyst’,2,59),(1726,34544,’CAOC Analyst’,2,60),(1726,150669,’CAOC Analyst’,2,61),(1726,1209714,’CAOC Analyst’,0,62),(1726,1209715,’Photographer (uncredited)’,0,63),(1726,1004624,’Georgio (uncredited)’,0,64),(1726,984619,’Fireman\’s Wife (uncredited)’,1,65),(1726,1209716,’Gulmira Villager (uncredited)’,0,66),(1726,1209717,’Dubai Beauty (uncredited)’,1,67),(1726,970218,’Dubai Girl (uncredited)’,1,68),(1726,1209718,’House wife at Award Ceremony (uncredited)’,0,69),(1726,1202546,’Insurgent (uncredited)’,0,70),(1726,1209719,’Reporter (uncredited)’,1,71),(1726,1209720,’Dubai Waiter (uncredited)’,0,72),(1726,1209721,’Party Guest (uncredited)’,0,73),(1726,1209722,’Dancer in Ballroom (uncredited)’,0,74),(1726,1089759,’Reporter (uncredited)’,0,75),(1726,1096679,’Village Dad (uncredited)’,2,76),(1726,1209723,’Reporter (uncredited)’,0,77),(1726,1209724,’Airforce Officer (uncredited)’,0,78),(1726,78434,’Dubai Beauty #1 (uncredited)’,1,79),(1726,1209725,’Staff Sergeant (uncredited)’,0,80),(1726,1209726,’Journalist (uncredited)’,0,81),(1726,1209727,’Voice (uncredited)’,2,82),(1726,1209728,’Reporter (uncredited)’,0,83),(1726,1209729,’News Cameraman (uncredited)’,0,84),(1726,1209730,’Rooftop Fireman (uncredited)’,0,85),(1726,1209731,’Whiplash One (voice) (uncredited)’,0,86),(1726,1429470,’Reporter (uncredited)’,0,87),(8487,2888,’Capt. James West’,2,0),(8487,8945,’U.S. Marshal Artemus Gordon’,2,1),(8487,11181,’Dr. Arliss Loveless’,2,2),(8487,3136,’Rita Escobar’,1,3),(8487,588,’Coleman’,2,4),(8487,15854,’General \’Bloodbath\’ McGrath’,2,5),(8487,55254,’Amazonia’,1,6),(8487,1475,’Munitia’,1,7),(8487,55255,’Miss Lippenrieder’,1,8),(8487,31647,’Belle’,1,9),(8487,39126,’Miss East’,1,10),(8487,7853,’Hudson’,2,11),(8487,53778,’Mr. Pinkerton’,2,12),(8487,168331,’Dora Look-Alike’,1,13),(8487,71562,’Cross-Eyed Reb’,2,14),(8487,69502,’Reb #1′,2,15),(8487,1279744,’Reb #2′,2,16),(8487,1100323,’Other Reb’,2,17),(8487,16163,’Big reb’,0,18),(8487,14740,’French Dignitary’,2,19),(8487,53403,’Spanish Dignitary’,2,20),(8487,11764,’British Dignitary’,2,21),(8487,160375,’Mexican Dignitary’,2,22),(8487,104915,’White House Aide’,2,23),(8487,48136,’Dr. Guillermo Escobar’,2,24),(8487,137910,’George Washington’,2,25),(8487,157021,’Guard’,2,26),(8487,1610268,’Prof. Thaddeus Morton’,0,27),(8487,1610271,’Little Girl (uncredited)’,1,28),(1735,18269,’Richard O\’Connell’,2,0),(1735,1336,’Emperor Han’,2,1),(1735,10727,’Jonathan Carnahan’,2,2),(1735,49,’Evelyn Ou2019Connell’,1,3),(1735,55900,’Alex O\’Connell’,2,4),(1735,1620,’Zi Juan’,1,5),(1735,72040,’Lin’,1,6),(1735,66717,’General Yang’,2,7),(1735,21354,’Ming Guo’,2,8),(1735,15498,’Maguire’,2,9),(1735,10779,’Roger Wilson’,2,10),(1735,554085,’Choi’,0,11),(1735,1172006,’Li Zhou’,0,12),(1735,450628,’Chu Wah’,2,13),(1735,78871,’Assassin’,2,14),(2698,4495,’Evan Baxter’,2,0),(2698,16858,’Joan Baxter’,1,1),(2698,1230,’Congressman Long’,2,2),(2698,6860,’Ryan Baxter’,2,3),(2698,8265,’Marty’,2,4),(2698,192,’God’,2,5),(2698,27102,’Rita’,0,6),(2698,27103,’Jordan Baxter’,2,7),(2698,27104,’Dylan Baxter’,2,8),(2698,21007,’Eugene’,2,9),(2698,27105,’Ed Carson’,2,10),(2698,14329,’Officer Collins’,2,11),(2698,151124,’Congressperson’,0,12),(2698,28640,’Eve Adams’,1,13),(2698,1388473,’Court Stenographer’,1,14),(2698,1349629,’Neighbor’,2,15),(2698,99090,’News Room Camera Operator’,2,16),(2698,23211,’Mail Lady’,0,17),(9804,1269,’Mariner’,2,0),(9804,59350,’Drifter’,0,1),(9804,3432,’Gatesman’,2,2),(9804,49832,’Enforcer’,2,3),(9804,59352,’Elder / Survivor’,2,4),(9804,10478,’Helen’,1,5),(9804,2778,’Deacon’,2,6),(9804,70851,’Pilot’,2,7),(9804,47458,’Priam’,2,8),(9804,1240,’Banker’,2,9),(9804,53930,’Enola’,1,10),(9804,41741,’Atoller’,1,11),(9804,151943,’Nord’,0,12),(9804,2169,’Old Gregor’,2,13),(9804,8335,’Drifter’,2,14),(5255,31,’Hero Boy / Father / Conductor / Hobo / Scrooge / Santa Claus (voice)’,2,0),(5255,2169,’Smokey / Steamer (voice)’,2,1),(5255,18286,’Hero Girl (voice)’,1,2),(5255,42363,’Lonely Boy Billy (voice)’,2,3),(5255,42362,’Know-It-All (voice)’,2,4),(5255,42287,’Sister Sarah / Mother (voice)’,1,5),(5255,37935,’Elf Lieutenant (voice)’,2,6),(5255,42286,’Red Head Girl (voice)’,1,7),(5255,23791,’Toothless Boy (voice)’,2,8),(5255,12826,’Elf General (voice)’,2,9),(296,1100,’The Terminator’,2,0),(296,6408,’John Connor’,2,1),(296,6194,’Kate Brewster’,1,2),(296,7218,’T-X’,1,3),(296,7219,’Robert Brewster’,2,4),(296,7220,’Scott Petersen’,2,5),(296,2716,’Dr. Peter Silberman’,2,6),(296,7221,’Betsy’,1,7),(296,7222,’Chief Engineer’,2,8),(296,7223,’Brewser\’s Aide’,2,9),(296,7226,’Bill\’s Girlfriend’,1,10),(296,27738,’Engineer’,2,12),(296,1444239,’Jose Barrera’,0,13),(296,1178376,’Roadhouse Clubgoer’,1,14),(9799,8167,’Brian O\’Conner’,2,0),(9799,12835,’Dominic Toretto’,2,1),(9799,17647,’Letty Ortiz’,1,2),(9799,22123,’Mia Toretto’,1,3),(9799,10883,’Johnny Tran’,2,4),(9799,9186,’Jesse’,2,5),(9799,12796,’Leon’,2,6),(9799,15854,’Sgt. Tanner’,2,7),(9799,31841,’Vince’,2,8),(9799,8175,’Agent Bilkins’,2,9),(9799,61658,’Edwin’,2,10),(9799,61216,’Harry’,2,11),(9799,1479424,’Muse’,0,12),(9799,53252,’Hector’,2,13),(9799,1479425,’Danny Yamato’,0,14),(9799,1005339,’Ted Gassner’,2,15),(9799,22075,’Lance Nguyen’,2,16),(9799,100538,’Rasta Racer’,0,17),(9799,84757,’Samoan Guard’,2,18),(9799,84064,’Dispatcher’,0,19),(9799,11874,’Ferrari Driver’,2,20),(9799,18878,’Pizza Hut Delivery Guy’,2,21),(9799,80406,’Big Rig Driver’,2,22),(9799,1479427,’Ferrari Passenger’,0,23),(9799,1479428,’Johnny\’s Father’,0,24),(9799,1479429,’Night Truck Driver’,0,25),(9799,106885,’Racer\’s Edge Clerk’,1,26),(9799,1479430,’Monica’,0,27),(9799,1479431,’Gimel’,0,28),(9799,1479432,’Edwin\’s Babe’,0,29),(4922,112,’Daisy’,1,0),(4922,287,’Benjamin Button’,2,1),(4922,3063,’Elizabeth Abbott’,1,2),(4922,15887,’Caroline’,1,3),(4922,18050,’Daisy Age 7′,1,4),(4922,219666,’Daisy Age 10′,1,5),(4922,973,’Thomas Button’,2,6),(4922,13550,’Monsieur Gateau’,2,7),(4922,40036,’Queenie’,1,8),(4922,40039,’Pleasant Curtis’,2,9),(4922,58953,’Dorothy Baker’,1,10),(4922,230995,’Blanche Devereux’,1,11),(4922,1074186,’Martin Gateau’,2,12),(4922,231274,’Teddy Roosevelt’,0,13),(4922,1074187,’Priest Giving Last Rites’,0,14),(4922,60875,’Doctor at Benjamin\’s Birth’,2,15),(4922,203867,’Caroline Button’,1,16),(4922,52483,’Robert Williams’,2,17),(4922,932967,’Tizzy’,2,18),(4922,928295,’David’,2,19),(4922,17184,’Grandma Fuller’,1,20),(4922,101847,’Preacher’,2,21),(4922,1235414,’Walter Abbott’,2,22),(4922,1219313,’Mrs. Hollister’,1,23),(4922,60388,’Mrs. Horton’,1,24),(4922,44063,’Mrs. Maple’,1,25),(4922,75325,’Dr. Rose’,2,26),(4922,86812,’Mr. Daws’,2,27),(4922,60536,’Young Mr. Daws’,2,28),(4922,1056117,’Benjamin 1928-31′,2,29),(4922,1592644,’Sybil Wagner’,1,30),(4922,15440,’Captain Mike’,2,31),(4922,60884,’Man at Train Station’,2,32),(4922,40038,’Ballerina Who Ties Up Shoelace (uncredited)’,1,33),(4922,1224131,’Ballet Dancer (uncredited)’,1,34),(4922,1169284,’Woman Kissing Benjamin (uncredited)’,1,35),(4922,1503756,’The Grumpy Sailor (uncredited)’,2,36),(503,6856,’Robert Ramsey’,2,0),(503,3037,’Richard Nelson’,2,1),(503,6164,’Dylan Johns’,1,2),(503,6857,’Maggie James’,1,3),(503,4730,’Jennifer Ramsey’,1,4),(503,6858,’Christian’,2,5),(503,6859,’Elena’,0,6),(503,6860,’Conor James’,2,7),(503,6861,’Captain Bradford’,2,8),(503,6862,’Valentin’,2,9),(503,6863,’Lucky Larry’,2,10),(503,6864,’Chief Officer Reynolds’,2,11),(503,20497,’Gloria’,1,12),(503,92808,’1st Officer Chapman’,0,13),(810,12073,’Shrek (voice)’,2,0),(810,776,’Donkey (voice)’,2,1),(810,6941,’Princess Fiona (voice)’,1,2),(810,5823,’Queen Lillian (voice)’,1,3),(810,3131,’Puss in Boots (voice)’,2,4),(810,8930,’King Harold (voice)’,0,5),(810,4757,’Prince Charming (voice)’,2,6),(810,10713,’Merlin (voice)’,2,7),(810,12110,’Cinderella (voice)’,1,8),(810,12111,’Prince Artie (voice)’,2,9),(810,17697,’Lancelot (voice)’,2,10),(810,52792,’Rapunzel (voice)’,1,11),(810,56322,’Snow White (voice)’,1,12),(810,19274,’Ship Captain (voice)’,2,13),(810,1077844,’Waiter / Evil Dwarf (voice)’,0,14),(810,89042,’Evil Queen (voice)’,1,15),(810,12095,’Pinocchio / Three Pigs (voice)’,2,16),(810,44127,’Doris (voice)’,2,17),(810,12097,’Blind Mice / Heckler / Evil Tree #2 / Guard #2 (voice)’,2,18),(810,6972,’Captain Hook (voice)’,2,19),(810,60252,’Sleeping Beauty / Actress (voice)’,1,20),(810,151657,’Mabel (voice)’,2,21),(810,12080,’Gingerbread Man / Rumplestiltskin / Headless Horseman (voice)’,2,22),(810,12106,’Wolf (voice)’,0,23),(810,1454441,’Ogre Baby (voice)’,0,24),(810,12071,’Raul (voice)’,0,25),(810,12079,’Master of Ceremonies / Fiddlesworth (voice)’,2,26),(810,1784317,’Ogre Baby (voice)’,0,27),(810,1335621,’Evil Tree #1 (voice)’,0,28),(810,64446,’Drivers Ed Instructor / Hall Monitor / Teacher (voice)’,0,29),(810,1571793,’Cheerleader / Tiffany / Mother (voice)’,0,30),(810,118489,’Van Student / Xavier / Principal Pynchley / Nanny Dwarf / Evil Knight / Singing Villain (voice)’,2,31),(810,76745,’Ogre Baby (voice)’,0,32),(810,1784320,’Ogre Baby (voice)’,0,33),(810,71535,’Guard #1 (voice)’,2,34),(810,18864,’Gary (voice)’,2,35),(810,12098,’Puppet Master / Announcer / Mascot / Singing Villain (voice)’,2,36),(810,936669,’Cheerleader / Guinevere / Woman (voice)’,1,37),(810,205030,’Cheerleader (voice)’,1,38),(810,136530,’Cyclops (voice)’,0,39),(810,116315,’Old Lady (voice)’,0,40),(676,880,’Capt. Rafe McCawley’,2,0),(676,2299,’Capt. Danny Walker’,2,1),(676,3967,’Nurse Lt. Evelyn Johnson’,1,2),(676,9777,’Petty Officer Doris Miller’,2,3),(676,10127,’President Franklin Delano Roosevelt’,2,4),(676,7447,’Lt. Col. James Doolittle’,2,5),(676,3197,’Sgt. Earl Sistern’,2,6),(676,10128,’Lt. Billy Thompson’,2,7),(676,10129,’Lt. Anthony Fusco’,2,8),(676,1125,’Lt. Red Winkle’,2,9),(676,5915,’Nurse Betty Bayer’,1,10),(676,10130,’Nurse Barbara’,1,11),(676,9278,’Nurse Sandra’,1,12),(676,10131,’Nurse Martha’,1,13),(676,335,’Lt. Gooz Wood’,2,14),(676,707,’Capt. Thurman’,2,15),(676,10132,’Adm. Husband E. Kimmel’,2,16),(676,10134,’Adm. Isoroku Yamamoto’,2,17),(676,10133,’Nishikura’,2,18),(676,11398,’Cmdr. Minoru Genda’,2,19),(676,10135,’Young Rafe’,2,20),(676,10136,’Young Danny’,2,21),(676,886,’Danny\’s Father’,2,22),(676,10137,’Rafe\’s Father’,0,23),(676,10138,’Training Captain’,2,24),(676,6110,’Adm. Chester W. Nimitz’,2,25),(676,16692,’British Pilot (Supporting)’,2,26),(676,1630464,’Japanese Aide’,2,27),(676,112347,’Dorie\’s Friend’,2,28),(676,56045,’Joe’,2,29),(676,1219546,’Flyer with Murmur’,0,30),(676,6914,’Gen. George C. Marshall’,2,31),(676,168981,’George’,2,32),(676,102567,’Strategic Analyst’,2,33),(676,1223812,’Japanese Officer’,2,34),(676,161904,’Pentagon Lieutenant’,2,35),(676,140250,’Secretary of the Navy Frank Knox’,2,36),(676,941,’Vice-Adm. Frank J. \’Jack\’ Fletcher’,2,37),(676,5151,’Motherly Secretary’,1,38),(676,61697,’Listener’,2,39),(676,97943,’Kimmel\’s Aide’,2,40),(676,60634,’Louie, Sailor’,2,41),(676,56120,’Japanese Shy Bomber’,2,42),(676,168020,’Pvt. Ellis, Radar Operator’,0,43),(676,31362,’Radar Operator #2′,2,44),(676,154295,’Army Commander’,2,45),(676,22109,’Capt. Mervyn Bennion – USS West Virginia’,2,46),(676,1707334,’Pop-Up Sailor’,0,47),(676,52366,’Joe, Boxer’,2,48),(676,115005,’Terrified Sailor’,2,49),(676,94998,’Navy Doctor’,2,50),(676,4942,’Senior Doctor’,2,51),(676,173886,’Medic’,2,52),(676,99816,’Minister’,2,53),(676,18982,’Army Major’,2,54),(676,118756,’Adm. Raymond A. Spruance’,2,55),(676,8335,’Jack Richards’,2,56),(676,12797,’RAdm. William F. \’Bull\’ Halsey Jr.’,2,57),(676,91607,’Doolittle Co-Pilot’,2,58),(676,83985,’Ripley’,2,59),(676,29020,’Gunner’,2,60),(676,1707342,’Navigator’,0,61),(676,1335986,’Japanese Soldier’,0,62),(676,107489,’Japanese Soldier’,2,63),(676,1707343,’Japanese Soldier’,0,64),(676,1585650,’Nursing Supervisor’,1,65),(676,55075,’Next Guy in Line’,2,66),(676,1707350,’Train Conductor’,0,67),(676,1382045,’Japanese Tourist’,0,68),(676,976231,’18-Year-Old Typist’,2,69),(676,1707363,’Orderly in Aftermath’,0,70),(676,95638,’Naval Officer in Hospital (as John Pyper Ferguson)’,2,71),(676,9291,’Captain Marc Andrew Mitscher’,2,72),(676,202143,’Samoan Bouncer’,0,73),(676,51663,’Traction Sailor’,2,74),(676,1248816,’Wounded Sailor #1′,0,75),(676,1707383,’Wounded Sailor’,0,76),(676,157536,’Young Nervous Doctor’,2,77),(676,156038,’Captain Low’,0,78),(676,828,’Teeny Mayfield’,2,79),(676,2221,’Major Jackson’,2,80),(676,80437,’Mission listener’,2,81),(676,60846,’Newsreel Guy’,2,82),(676,57421,’Young Flier’,2,83),(676,1224490,’Pearl Harbor Nurse’,0,84),(676,77155,’Japanese Aide’,2,85),(676,84656,’Japanese Aide’,0,86),(676,52141,’Sunburnt Sailor’,2,87),(676,109423,’Japanese Doctor’,0,88),(676,76513,’Wounded Sailor’,2,89),(676,33297,’Baja Sailor’,2,90),(676,1368011,’Baja Sailor’,0,91),(676,559299,’Baja Sailor’,0,92),(676,1334077,’Baja Sailor’,0,93),(676,98051,’Baja Sailor’,2,94),(676,55084,’Danny\’s Gunner’,2,95),(676,32357,’RAF Squadron Leader’,2,96),(676,2220,’Ian’,2,97),(676,1670,’Pilot’,2,98),(676,156963,’Dentist’,2,99),(676,74197,’Dental Assistant’,0,100),(1858,10959,’Sam Witwicky’,2,0),(1858,19536,’Captain Lennox’,2,1),(1858,19537,’Mikaela Banes’,1,2),(1858,19538,’Maggie Madsen’,1,3),(1858,8169,’USAF Master Sgt. Epps’,2,4),(1858,10127,’John Keller’,2,5),(1858,1241,’Agent Simmons’,2,6),(1858,18471,’Glen Whitman’,2,7),(1858,19540,’Optimus Prime (voice)’,2,8),(1858,19541,’Transformers (voice)’,2,9),(1858,1331,’Megatron (voice)’,2,10),(1858,14721,’Ron Witwicky’,0,12),(1858,21710,’Tom Banacheck’,2,13),(1858,24305,’Judy Witwicky’,1,14),(1858,17341,’ACWO Jorge Fig Figueroa’,2,15),(1858,1897,’Bobby Bolivia’,2,16),(1858,211800,’Cafe Kid’,2,17),(1858,146391,’Sector Seven Agent’,2,18),(1858,209680,’SOCCENT Op-Centre Tech’,0,19),(1858,865,’Guy Flicked by Megatron (uncredited)’,2,20),(1858,19197,’Miles’,2,21),(1858,51992,’Socialite’,1,22),(1858,12714,’First Sergeant Donnelly’,2,23),(1858,74290,’Trent DeMarco’,2,24),(1858,31514,’Mr. Hosney’,2,25),(1858,12797,’Colonel Sharp’,2,26),(1858,8191,’Admiral Brigham’,2,27),(1858,62553,’Sarah Lennox’,1,28),(1858,123532,’Sheriff’,2,29),(1858,62849,’Analyst’,2,30),(1858,205011,’Socialite’,1,31),(1858,66145,’Jazz (voice)’,2,32),(1858,2962,’Ratchet (voice)’,2,33),(1858,84495,’Ironhide / Barricade (voice)’,2,34),(1858,117187,’Frenzy (voice)’,2,35),(1858,81178,’Starscream (voice)’,2,36),(1858,140250,’National Deputy Directory of Operations (uncredited)’,2,37),(1858,154998,’Pentagon Watch Commander’,2,38),(1966,72466,’Alexander’,2,0),(1966,11701,’Olympias’,1,1),(1966,5576,’Philip’,2,2),(1966,7499,’Hephaistion’,2,3),(1966,1244,’Cassander’,2,4),(1966,4173,’Old Ptolemy’,2,5),(1966,20278,’Child Alexander’,0,6),(1966,290,’Aristotle’,2,7),(1966,4738,’Young Alexander’,2,8),(1966,1650058,’Young Hephaistion’,2,9),(1966,20281,’Young Nearchus’,2,10),(1966,1650067,’Young Cassander’,2,11),(1966,1650963,’Young Ptolemy’,2,12),(1966,1650965,’Young Perdiccas’,2,13),(1966,20282,’Parmenion’,2,14),(1966,20284,’Cleitus’,2,15),(1966,5916,’Roxane’,1,16),(1966,20285,’Roxane\’s Father’,2,17),(1966,20286,’Pausanius’,2,18),(1966,20279,’Nurse’,1,19),(1966,20287,’Greek Officer’,2,20),(1966,20288,’Bagoas’,2,21),(1966,20289,’Perdiccas’,2,22),(1966,20290,’Leonnatus’,2,23),(1966,20291,’Polyperchon’,2,24),(1966,3075,’Crateros’,2,25),(1966,135142,’Darius III’,2,26),(1966,79505,’Philotas’,2,27),(1966,146140,’Scribe’,2,28),(1966,8318,’Wrestling Trainer’,2,29),(1966,1650962,’Eurydice’,1,30),(1966,165434,’Attalus’,2,31),(1966,51120,’Ptolemy’,2,32),(1966,1403284,’Antigonus’,2,33),(1966,63360,’Nearchus’,2,34),(1966,73401,’Campfire Soldier’,2,35),(1966,11276,’Omen Reader’,2,36),(1966,27420,’Persian Prince’,2,37),(1966,147591,’Bactrian Commander’,2,38),(1966,1256162,’Dying Soldier’,2,39),(1966,51102,’Stateira’,1,40),(1966,1650983,’Persian Chamberlain’,2,41),(1966,39678,’Attalus\’ Henchman’,2,42),(1966,1116115,’Roxane Dancer’,1,43),(1966,1651012,’Roxane Dancer’,1,44),(1966,1651013,’Roxane Dancer’,1,45),(1966,1650996,’Bagoas Dancer’,2,46),(1966,1650997,’Bagoas Dancer’,1,47),(1966,1651001,’Bagoas dancer’,1,48),(1966,1651007,’Bagoas Dancer’,1,49),(1966,1651021,’Bagoas Dancer’,1,50),(675,10980,’Harry Potter’,2,0),(675,10989,’Ron Weasley’,2,1),(675,10990,’Hermione Granger’,1,2),(675,5658,’Albus Dumbledore’,2,3),(675,5469,’Lord Voldemort’,2,4),(675,10993,’Draco Malfoy’,2,5),(675,1923,’Rubeus Hagrid’,2,6),(675,4566,’Severus Snape’,2,7),(675,10978,’Minerva McGonagall’,1,8),(675,1283,’Bellatrix Lestrange’,1,9),(675,2039,’Alastor \’Madu00adEye\’ Moody’,2,10),(675,64,’Sirius Black’,2,11),(675,11355,’Lucius Malfoy’,2,12),(675,11356,’Dolores Umbridge’,1,13),(675,96841,’Neville Longbottom’,2,14),(675,10991,’Ginny Weasley’,1,15),(675,96851,’Fred Weasley’,2,16),(675,140368,’George Weasley’,2,17),(675,140367,’Luna Lovegood’,1,18),(675,10983,’Vernon Dursley’,2,19),(675,10981,’Petunia Dursley’,1,20),(675,23076,’Cornelius Fudge’,2,21),(675,7056,’Sybil Trelawney’,1,22),(675,477,’Molly Weasley’,1,23),(675,11207,’Remus Lupin’,2,24),(675,3300,’Nymphadora Tonks’,1,25),(675,10982,’Dudley Dursley’,2,26),(675,11180,’Argus Filch’,2,27),(675,20999,’Arthur Weasley’,2,28),(675,234933,’Cho Chang’,1,29),(675,10992,’Percy Weasley’,2,30),(675,234922,’Seamus Finnigan’,2,31),(675,234923,’Dean Thomas’,0,32),(675,11184,’Filius Flitwick’,2,33),(675,956224,’Vincent Crabbe’,2,34),(675,11212,’Gregory Goyle’,2,35),(675,234925,’Parvati Patil’,0,36),(675,234926,’Padma Patil’,1,37),(675,10988,’Lily Potter’,1,38),(675,1643,’James Potter’,2,39),(675,72309,’Arabella Figg’,1,40),(675,2247,’Kingsley Shacklebolt’,2,41),(675,186070,’Elphias Doge’,0,42),(675,1093974,’Emmeline Vance’,0,43),(675,17069,’Amelia Bones’,0,44),(675,1093976,’Wilhelmina Grubbly-Plank’,0,45),(675,568374,’Nigel Wolpert’,0,46),(675,144867,’Aberforth Dumbledore’,2,47),(675,1093977,’Zacharias Smith’,0,48),(675,189689,’Michael Corner’,0,49),(675,192865,’Everard’,0,50),(675,559759,’Phineas Nigellus Black’,0,51),(675,16792,’John Dawlish’,2,52),(675,9191,’Peter Pettigrew’,2,53),(675,1796482,’Pansy Parkinson’,0,54),(675,133031,’Bob’,0,55),(675,1093972,’Piers Polkiss’,0,56),(675,1093973,’Malcolm’,0,57),(675,1054379,’Dennis’,0,58),(675,79856,’Grawp’,2,59),(675,3548,’Kreacher (voice)’,2,60),(675,47730,’Mafalda Hopkirk (voice)’,1,61),(675,30085,’Magorian’,0,62),(675,1173241,’Bane’,0,63),(675,234921,’Antonin Dolohov’,2,64),(675,1796483,’Walden Macnair’,0,65),(675,1796485,’Augustus Rookwood’,0,66),(675,1229241,’Jugson’,0,67),(675,1796484,’Travers’,0,68),(675,1796478,’Young Severus Snape’,0,69),(675,568390,’Young James Potter’,0,70),(675,1796479,’Young Sirius Black’,0,71),(675,1796480,’Young Peter Pettigrew’,0,72),(675,1796481,’Young Remus Lupin’,0,73),(675,1387292,’Frank Longbottom’,2,74),(675,1796489,’Alice Longbottom’,0,75),(675,1631516,’Edgar Bones’,2,76),(675,221857,’TV Weatherman’,0,77),(675,1093975,’Newspaper Vendor’,0,78),(675,209458,’Voice of Lift’,1,79),(674,10980,’Harry Potter’,2,0),(674,10989,’Ron Weasley’,2,1),(674,10990,’Hermione Granger’,1,2),(674,5469,’Lord Voldemort’,2,3),(674,5658,’Albus Dumbledore’,2,4),(674,4566,’Severus Snape’,2,5),(674,1923,’Rubeus Hagrid’,2,6),(674,2039,’Alastor Mad-Eye Moody’,2,7),(674,8436,’Rita Skeeter’,1,8),(674,64,’Sirius Black’,2,9),(674,11288,’Cedric Diggory’,2,10),(674,11290,’Viktor Krum’,2,11),(674,11291,’Fleur Delacour’,1,12),(674,11212,’Gregory Goyle’,2,13),(674,10978,’Minerva McGonagall’,1,14),(674,10988,’Lily Potter’,1,15),(674,96841,’Neville Longbottom’,2,16),(674,47468,’Madame Olympe Maxime’,1,17),(674,10993,’Draco Malfoy’,2,18),(674,81024,’Barty Crouch, Sr.’,2,19),(674,11355,’Lucius Malfoy’,2,20),(674,20053,’Frank Bryce’,2,21),(674,9191,’Wormtail’,2,22),(674,20049,’Bartemius \’Barty\’ Crouch Junior’,2,23),(674,20999,’Arthur Weasley’,2,24),(674,96851,’Fred Weasley’,2,25),(674,140368,’George Weasley’,2,26),(674,10991,’Ginny Weasley’,1,27),(674,81022,’Amos Diggory’,0,28),(674,23076,’Cornelius Fudge’,2,29),(674,1220981,’Ministry Witch’,1,30),(674,1221007,’Ministry Witch’,1,31),(674,1090771,’Ministry Witch’,0,32),(674,20002,’Ministry Witch’,0,33),(674,117654,’Ministry Wizard’,2,34),(674,193409,’Ministry Wizard’,0,35),(674,75065,’Ministry Wizard’,2,36),(674,1090776,’Ministry Wizard’,0,37),(674,213222,’Food Trolley Lady’,0,38),(674,234933,’Cho Chang’,1,39),(674,568374,’Nigel’,0,40),(674,11180,’Argus Filch’,2,41),(674,234922,’Seamus Finnigan’,2,42),(674,234926,’Padma Patil’,1,43),(674,11184,’Filius Flitwick’,2,44),(674,234925,’Parvati Patil’,0,45),(674,1090780,’Gabrielle Delacour’,0,46),(674,12044,’Igor Karkaroff’,2,47),(674,1090781,’Karkaroff\’s Aide’,0,48),(674,234923,’Dean Thomas’,0,49),(674,1090782,’Ernie MacMillan’,0,50),(674,956224,’Vincent Crabbe’,2,51),(674,1090783,’Hannah Abbott’,0,52),(674,72313,’Photographer’,2,53),(674,174713,’Angelina Johnson’,0,54),(674,513677,’Roger Davies’,2,55),(674,107170,’Band Lead Singer’,0,56),(674,74333,’Band Lead Guitar’,0,57),(674,74335,’Band Drums’,0,58),(674,1090784,’Band Bass Guitar’,0,59),(674,1090785,’Band Rhythm Guitar’,0,60),(674,1090786,’Band Keyboards’,0,61),(674,1834,’Moaning Myrtle’,1,62),(674,203935,’Assistant Judge’,0,63),(674,1643,’James Potter’,2,64),(8960,2888,’John Hancock’,2,0),(8960,6885,’Mary Embrey’,1,1),(8960,23532,’Ray Embrey’,2,2),(8960,66658,’Aaron Embrey’,2,3),(8960,1665,’Red’,2,4),(8960,66634,’Man Mountain’,2,5),(8960,539,’Mike’,2,6),(8960,16478,’Jeremy’,2,7),(8960,66623,’Hottie’,1,8),(8960,61835,’Jr exec’,2,9),(8960,49921,’Police Sergeant’,2,10),(8960,66659,’Guy In Back’,2,11),(8960,21317,’Michel’,1,12),(8960,18300,’Skinning Con’,2,13),(8960,4030,’Prisoner’,2,14),(8960,66681,’Reporter’,2,15),(8960,66666,’Nurse’,0,16),(8960,66683,’Inmate’,0,17),(8960,66669,’Radio Caller (voice)’,2,18),(8960,66684,’Theater patron’,2,19),(8960,66630,’Fan’,1,20),(8960,66685,’Theater Guest’,0,21),(8960,66664,’Mug Shot Officer’,1,22),(8960,66680,’Corrections Guard’,0,23),(8960,66671,’Chain Gang Guard’,0,24),(8960,66667,’KCOT Reporter’,2,25),(8960,66663,’ER Doctor’,0,26),(8960,66686,’Theatergoer’,0,27),(8960,66687,’Police K-9 officer’,0,28),(8960,66661,’Reporter’,2,29),(8960,66660,’Matt’,2,30),(8960,1514160,’Herself’,1,31),(8960,60677,’Executive’,2,32),(6479,2888,’Robert Neville’,2,0),(6479,8602,’Anna Montez’,1,1),(6479,49918,’Ethan’,2,2),(6479,53918,’Zoe Neville’,1,3),(6479,49920,’Marley Neville’,1,4),(6479,7056,’Dr. Alice Krippin’,1,5),(6479,49921,’Mike – Military Escort’,2,6),(6479,49922,’Alpha Female’,1,7),(6479,6066,’Alpha Male’,2,8),(6479,964035,’Military Driver – Jay’,2,9),(6479,1075145,’Sergeant’,0,10),(6479,164094,’Woman Evacuee’,1,11),(6479,996224,’Male Evacuee’,2,12),(118,85,’Willy Wonka’,2,0),(118,1281,’Charlie Bucket’,2,1),(118,1282,’Grandpa Joe’,2,2),(118,1285,’Violet Beauregarde’,1,3),(118,1286,’Veruca Salt’,1,4),(118,1290,’Mike Teavee’,2,5),(118,1291,’Augustus Glupsch’,2,6),(118,1283,’Mrs. Bucket’,1,7),(118,1284,’Mr. Bucket’,2,8),(118,1294,’Mrs. Beauregard’,1,9),(118,1292,’Mr. Salt’,2,10),(118,113,’Dr. Wonka’,2,11),(118,23429,’Mr. Teavee’,2,12),(118,1293,’Mrs. Gloop’,1,13),(118,1295,’Oompa Loompa’,2,14),(118,7320,’Grandma Georgina’,1,15),(118,52313,’Grandma Josephine’,1,16),(118,1815747,’Grandpa George’,0,17),(118,58776,’Prince Pondicherry’,2,18),(118,73707,’Princess Pondicherry’,1,19),(118,1588373,’Prodnose’,0,20),(118,1518112,’Slugworth’,0,21),(118,568396,’Finckelgruber’,0,22),(118,1815748,’Mr. Gloop’,0,23),(118,1370651,’Mrs. Salt’,0,24),(118,10225,’Narrator (voice)’,2,25),(118,17354,’TV Reporter’,2,26),(118,39185,’Man with Dog’,2,27),(118,47712,’Man with Dog’,0,28),(118,184997,’Shopkeeper’,0,29),(118,30320,’Jolly Woman’,1,30),(118,1090804,”,0,31),(2062,10872,’Remy (voice)’,2,0),(2062,65,’Skinner (voice)’,2,1),(2062,7962,’Linguini (voice)’,2,2),(2062,6197,’Django (voice)’,2,3),(2062,21198,’Emile (voice)’,2,4),(2062,11390,’Anton Ego (voice)’,2,5),(2062,18,’Auguste Gusteau (voice)’,2,6),(2062,21197,’Colette (voice)’,1,7),(2062,21200,’Horst (voice)’,2,8),(2062,32536,’Lalo / Francois (voice)’,2,9),(2062,1736,’Larousse (voice)’,2,10),(2062,7907,’Mustafa (voice)’,2,11),(2062,59357,’Lawyer (Talon Labarthe) (voice)’,2,12),(2062,1260745,’Pompidou / Health Inspector (voice)’,2,13),(2062,21199,’Git (Lab Rat) (voice)’,0,14),(2062,7087,’Ambrister Minion (voice)’,2,15),(2062,1160045,’Narrator (voice)’,0,16),(2062,1443329,’Street Woman (voice)’,0,17),(2062,1443330,’Food Snob #3 (voice)’,0,18),(2062,72753,’Abusive Girlfriend (voice)’,0,19),(2062,1266046,’Food Snob #1 (voice)’,0,20),(2062,32532,’Abusive Boyfriend (voice)’,2,21),(2062,225986,’Food Snob #2 (voice)’,1,22),(272,3894,’Bruce Wayne / Batman’,2,0),(272,3895,’Alfred Pennyworth’,2,1),(272,3896,’Henri Ducard’,2,2),(272,3897,’Rachel Dawes’,1,3),(272,64,’Jim Gordon’,2,4),(272,2037,’Dr. Jonathan Crane / Scarecrow’,2,5),(272,207,’Carmine Falcone’,2,6),(272,192,’Lucius Fox’,2,7),(272,585,’Earle’,2,8),(272,3899,’Ra\’s Al Ghul’,2,9),(272,534,’Flass’,2,10),(272,3900,’Thomas Wayne’,2,11),(272,544,’Finch’,2,12),(272,151943,’Judge Faden’,0,13),(272,128386,’Loeb’,2,14),(272,489467,’Little Boy’,2,15),(272,1317397,’Crane Thug #1′,0,16),(272,1695960,’Crane Thug #2′,2,17),(272,1334124,’Blonde Female Reporter / Assassin’,0,18),(272,1172371,’Bruce Wayne als Kind’,2,19),(272,1118,’Homeless Man’,2,20),(272,3902,’Martha Wayne’,1,21),(272,3901,’Joe Chill’,2,22),(272,78114,’Rachel Dawes – age 8′,1,23),(272,87194,’Jessica’,1,24),(272,70225,’Fredericks’,2,25),(272,79124,’Courthouse Reporter #1′,1,26),(272,1690773,’Courthouse Reporter #2′,2,27),(272,39660,’Faden\’s Limo Driver’,2,28),(272,559209,’Uniformed Policeman #1′,2,29),(272,1257821,’Old Asian Prisoner’,2,30),(272,67212,’Bhutanese Prison Guard #1′,2,31),(272,1690926,’Bhutanese Prison Guard #2′,2,32),(272,998501,’Enormous Prisoner’,0,33),(272,62937,’Chinese Police Officer’,2,34),(272,211586,’Chinese Police Officer’,2,35),(272,1646701,’Stocky Chinese Man’,2,36),(272,93211,’Jumpy Thug’,2,37),(272,556445,’Dock Thug’,2,38),(272,1602370,’Dock Thug’,2,39),(272,5415,’Dock Cop’,2,40),(272,1691875,’Dock Cop’,2,41),(272,1691876,’Police Prison Official’,1,42),(272,281527,’Wayne Enterprises Executive’,2,43),(272,28749,’Female Restaurant Guest’,0,44),(272,1695959,’Male Restaurant Guest’,2,45),(272,1691887,’Male Restaurant Guest’,2,46),(272,1691892,’Restaurant Blonde #1′,1,47),(272,1691895,’Restaurant Blonde #2′,1,48),(272,146140,’Maitre D’,2,49),(272,36901,’Gotham Dock Employee’,2,50),(272,29615,’Arkham Thug #1′,2,51),(272,1233819,’Arkham Thug #2′,2,52),(272,1592216,’Arkham Thug #3′,2,53),(272,1225357,’Arkham Uniformed Policeman’,2,54),(272,39681,’Arkham Lunatic’,2,55),(272,40687,’Arkham Chase Cop’,2,56),(272,27709,’Gotham Car Cop’,2,57),(272,1362118,’Captain Simonson’,2,58),(272,10657,’Older Gotham Water Board Technician’,2,59),(272,70230,’Younger Gotham Water Board Technician’,2,60),(272,105159,’Gotham Society Dame’,1,61),(272,1226707,’Narrows Bridge Cop’,2,62),(272,1692416,’Farmer’,0,63),(272,1692428,’Transit Cop’,2,64),(272,1094720,’Mrs. Dawes’,1,65),(272,1451681,’Basement Club Manager’,2,66),(272,1111202,’Bad Swat Cop #1′,0,67),(272,156598,’Liquor Store Owner’,2,68),(272,1469792,’Victor Zsas’,2,69),(272,101658,’Valet’,2,70),(272,2974,’Hazmat Technician’,2,71),(272,1695915,’Narrows Teenager #1′,2,72),(272,1668,’Narrows Teenager #2′,2,73),(272,1208945,’Narrows Resident’,2,74),(272,1237293,’Barbara Gordon’,1,75),(272,17291,’Uniformed Policeman’,2,76),(272,135259,’Driving Cop’,2,77),(272,1691868,’Old Himalayan Man’,2,78),(272,1691866,’Himalayan Child’,2,79),(272,1583206,’Arkham Lunatic Cell Mate’,2,80),(272,1695939,’Arkham Asylum Nurse’,1,81),(272,208838,’Arkham Asylum Orderly’,2,82),(272,1695946,’Asian Man – Ra\’s Al Ghul Decoy’,2,83),(272,1048571,’Opera Performer’,2,84),(272,1695948,’Opera Performer Margaret – Soprano’,1,85),(272,25451,’League of Shadows Warriors’,0,86),(272,1214974,’League of Shadows Warriors’,2,87),(272,60348,’League of Shadows Warriors’,2,88),(272,986518,’League of Shadows Warriors’,0,89),(272,1695954,’League of Shadows Warriors’,2,90),(272,1695947,’African Boy in Rags’,2,91),(272,1232679,’Narrows Cop’,2,92),(272,1247020,’Additional Restaurant Guest #1′,1,93),(272,937527,’Bridge Cop’,0,94),(272,369256,’Falafel Stand Vendor’,2,95),(272,1695900,’Pedestrian’,2,96),(272,1695949,’Caterer’,2,97),(272,94384,’League of Shadows Warriors (uncredited)’,0,98),(272,29406,’League of Shadows Warriors (uncredited)’,2,99),(272,100586,’League of Shadows Warriors (uncredited)’,2,100),(272,1449198,’League of Shadows Warriors (uncredited)’,2,101),(272,81671,’League of Shadows Warriors (uncredited)’,2,102),(272,1363049,’Passenger (uncredited)’,2,103),(272,81687,’Ghotam Car Cop (uncredited)’,2,104),(272,1390394,’Fighting Shadow Warrior (uncredited)’,2,105),(272,123796,’Narrows Person (uncredited)’,2,106),(272,1207208,’Opera Hag (uncredited)’,0,107),(272,1210410,’Narrows Rioter (uncredited)’,0,108),(272,1207204,’Shadow Warrior (uncredited)’,0,109),(272,968767,’Victor Zsasz Attorney (uncredited)’,0,110),(272,121701,’Opera Hag (uncredited)’,2,111),(272,1392726,’Gotham Police Officer (uncredited)’,0,112),(2080,6968,’Logan / Wolverine / Weapon X’,2,0),(2080,23626,’Victor Creed / Sabretooth’,2,1),(2080,6413,’Stryker’,2,2),(2080,21044,’Kayla Silverfox / Silver Fox’,1,3),(2080,10859,’Wade Wilson / Deadpool / Weapon XI’,2,4),(2080,82092,’John Wraith / Kestrel’,2,5),(2080,60900,’Remy LeBeau / The Gambit’,2,6),(2080,79072,’Fred Dukes / Blob’,2,7),(2080,1330,’Chris Bradley / Bolt’,2,8),(2080,82093,’David North / Agent Zero’,2,9),(2080,82094,’Scott Summers / Cyclops’,2,10),(2080,77561,’Heather Hudson’,1,11),(2080,38665,’Travis Hudson’,2,12),(2080,1003248,’James’,0,13),(2080,1353634,’Young Victor’,0,14),(2080,63295,’John Howlett’,2,15),(2080,1353635,’Thomas Logan’,0,16),(2080,144286,’Elizabeth Howlett’,1,17),(2080,59792,’Firing Squad Leader’,0,18),(2080,1200536,’Carnival Guy’,0,19),(2080,205474,’Carnival Girl’,1,20),(2080,1353637,’School Child’,0,21),(2080,234504,’Logging Supervisor’,0,22),(2080,190856,’Phelan’,0,23),(2080,1353638,’Marcuse’,0,24),(2080,94350,’Van Mier’,2,25),(2080,626531,’Bartender’,0,26),(2080,1353639,’Surgeon’,0,27),(2080,55903,’Male Nurse #1′,0,28),(2080,1353640,’Male Nurse #2′,0,29),(2080,1353641,’Dr. Cornelius’,0,30),(2080,125565,’Dr. Carol Frost’,1,31),(2080,75174,’Lead Technician – Alkali Lake’,2,32),(2080,75720,’General Munson’,0,33),(2080,1205880,’Platoon Leader’,0,34),(2080,1353642,’Muttering Man’,0,35),(2080,1353643,’Nervous African Woman’,0,36),(2080,1353644,’Stryker Aide’,0,37),(2080,1353646,’Curtis’,0,38),(2080,92175,’Kayla\’s Sister / Emma’,1,39),(2080,1239053,’Poker Player’,2,40),(2080,148428,’Woman of the Night’,0,41),(2080,1091387,’Huge Doorman’,0,42),(2080,1353647,’Drunken Man in Alley’,0,43),(2080,1353649,’Driver’,0,44),(2080,2603,’African Businessman’,2,45),(2080,79351,’Teacher’,0,46),(2080,91404,’Special Forces Commander’,2,47),(2080,1353652,’Vietnamese Child’,0,48),(2080,1015896,’Hunter #1′,2,49),(2080,1353653,’Hunter #2′,0,50),(2080,64674,’Vietnam Army Officer’,2,51),(2080,1353654,’Waitress’,0,52),(2080,1353656,’Waitress’,0,53),(2080,1219446,’Tank Soldier’,2,54),(2080,1353657,’Vietnamese Man’,0,55),(2080,43297,’Vietnamese Woman’,1,56),(2080,1353658,’Mutant Twin #1′,0,57),(2080,1353659,’Mutant Twin #2′,0,58),(2080,78110,’Weapon XI’,2,59),(2080,213087,’Helicopter Pilot’,0,60),(2080,1643129,’Soldier (uncredited)’,2,61),(2080,2387,’Charles Xavier / Professor X’,2,62),(605,6384,’Thomas Neo Anderson’,2,0),(605,2975,’Morpheus’,2,1),(605,530,’Trinity’,1,2),(605,1331,’Agent Smith’,2,3),(605,9572,’Oracle’,1,4),(605,9443,’The Architect’,2,5),(605,2192,’The Merovingian’,2,6),(605,9457,’Captain Ballard’,2,8),(605,9462,’The Keymaker’,2,9),(605,9464,’Commander Lock’,2,10),(605,9466,’Agent Thompson’,2,11),(605,6195,’Link’,2,12),(605,9575,’Niobe’,1,13),(605,9576,’Cas’,1,14),(605,52908,’Seraph’,2,15),(605,537506,’Councillor West’,2,16),(605,18286,’Zee’,1,17),(605,28782,’Persephone’,1,18),(605,62490,’Tower Soldier’,0,19),(605,156739,’Rama-Kandra’,2,20),(605,62486,’Bane’,2,21),(605,27752,’The Trainman’,2,22),(604,6384,’Thomas Neo Anderson’,2,0),(604,530,’Trinity’,1,1),(604,2975,’Morpheus’,2,2),(604,1331,’Agent Smith’,2,3),(604,9443,’The Architect’,2,4),(604,75121,’Soren’,2,5),(604,1091387,’Vector’,0,6),(604,28782,’Persephone’,1,7),(604,9452,’Agent Johnson’,0,8),(604,1218802,’Priestess’,0,9),(604,62486,’Bane’,2,10),(604,1218824,’Old Woman at Zion’,0,11),(604,582925,’Zion Controller’,2,12),(604,1218839,’Bike Carrier Driver’,0,13),(604,152545,’Ice’,0,14),(604,192815,’Zion Virtual Control Operator’,0,15),(604,102408,’Woman with Groceries’,0,16),(604,52908,’Seraph’,2,17),(604,1265137,’Corrupt’,0,18),(604,1265138,’Another Old Woman at Zion’,0,19),(604,1028602,’Young Thomas Anderson at 12′,0,20),(604,33449,’Maggie’,1,21),(604,1265140,’Wurm’,0,22),(604,75131,’Security Guard #5′,0,23),(604,9364,’Oracle’,1,24),(604,26059,’Maitre D\”,2,25),(604,1265141,’Young Thomas Anderson at 4′,0,26),(604,18286,’Zee’,1,27),(604,1265142,’A.P.U. Escort’,0,28),(604,9457,’Captain Ballard’,2,29),(604,152492,’Abel’,2,30),(604,9459,’Agent Jackson’,0,31),(604,9462,’The Keymaker’,2,32),(604,75175,’Mauser’,2,33),(604,152559,’Colt’,0,34),(604,41784,’Mifune’,2,35),(604,9464,’Commander Lock’,2,36),(604,1265143,’Computer Room Technician’,0,37),(604,83769,’AK’,2,38),(604,1265144,’Link\’s Nephew’,0,39),(604,9466,’Agent Thompson’,2,40),(604,185440,’Power Station Guard’,0,41),(604,440902,’Computer Room Guard’,0,42),(604,56436,’Beautiful Woman at Le Vrai’,0,43),(604,73883,’Zion Gate Operator’,2,44),(604,75893,’Councillor Dillard’,1,45),(604,1155485,’Cain’,0,46),(604,139654,’Officer Wirtz’,1,47),(604,75174,’Operator’,2,48),(604,6195,’Link’,2,49),(604,9575,’Niobe’,1,50),(604,1265151,’Young Thomas Anderson at 8′,0,51),(604,9448,’Twin #2′,2,52),(604,9450,’Twin #1′,2,53),(604,187189,’Lock\’s Lieutenant’,0,54),(604,2192,’The Merovingian’,2,55),(604,537506,’Councillor West’,2,56),(604,77553,’Roland’,2,57),(604,1265152,’Ajax’,0,58),(604,1008016,’Gidim Truck Driver’,0,59),(604,1012973,’18 Wheel Trucker’,2,60),(604,15302,’Binary’,0,61),(604,1113310,’Tirant’,0,62),(604,1265155,’Young Thomas Anderson at 2′,0,63),(604,9576,’Cas’,1,64),(604,1265156,’Police #1′,0,65),(604,125323,’Malachi’,0,66),(604,1265157,’Security Bunker Guard’,2,67),(604,56347,’Kid’,2,68),(604,2128,’Axel’,2,69),(604,156739,’Rama-Kandra’,2,70),(604,2516,’Councillor Hamann’,2,71),(604,87811,’Security Bunker Guard #2′,2,72),(604,930817,’Ghost’,0,73),(7978,1121,’Lawrence Talbot’,2,0),(7978,4173,’Sir John Talbot’,2,1),(7978,5081,’Gwen Conliffe’,1,2),(7978,1331,’Inspector Francis Abberline’,2,3),(7978,119684,’Solana Talbot’,1,4),(7978,117654,’Kirk’,2,5),(7978,119685,’Ophelia’,0,6),(7978,119687,’Ben Talbot’,2,7),(7978,10672,’Singh’,2,8),(7978,77996,’Young Ben’,2,9),(7978,400,’Maleva’,1,10),(7978,84268,’Young Gypsy Woman’,0,11),(7978,82150,’Mrs. Kirk’,0,12),(7978,161030,’Asylum Doctor #1′,2,13),(5559,16377,’Barry B. Benson’,2,0),(5559,9137,’Vanessa Bloome’,1,1),(5559,12077,’Narrator/Graduation Announcer (voice)’,2,2),(5559,4756,’Adam Flayman’,2,3),(5559,9657,’Ken’,2,4),(5559,1230,’Layton T. Montgomery’,2,5),(5559,2632,’Mooseblood’,2,6),(5559,8534,’Janet Benson’,1,7),(5559,8246,’Martin Benson’,2,8),(5559,52119,’Trudy’,1,9),(5559,9626,’Lou Lo Duca’,2,10),(5559,13309,’Judge Bumbleton’,1,11),(5559,50807,’Bud Ditchwater (voice)’,2,12),(5559,44127,’Bee Larry King’,2,13),(5559,1211,’Buzzwell’,2,14),(5559,1740807,’Hector (voice)’,0,15),(5559,1237323,’Andy (voice)’,0,16),(5559,1454420,’Sandy Shrimpkin/TSA Agent (voice)’,0,17),(5559,31531,’Janitor / Bailiff’,0,18),(5559,34983,’Jeanette Chung/Mother/Cow (voice)’,1,19),(5559,44114,’Truck Driver/Chet (voice)’,2,20),(5559,11477,’Ray Liotta’,2,21),(5559,982,’Sting’,0,22),(5559,52141,’Bee (voice)’,2,23),(5559,1740811,”,0,24),(956,500,’Ethan Hunt’,2,0),(956,1233,’Owen Davian’,2,1),(956,10182,’Luther Stickell’,2,2),(956,8289,’Musgrave’,2,3),(956,1244,’Declan’,2,4),(956,11705,’Julia’,1,5),(956,41292,’Lindsey Farris’,1,6),(956,21045,’Zhen’,1,7),(956,11108,’Benji’,2,8),(956,84497,’Rick’,2,9),(956,2975,’Theodore Brassel’,2,10),(956,1219489,’Ellie’,1,11),(956,2677,’Davian\’s Translator’,1,12),(652,287,’Achilles’,2,0),(652,114,’Paris’,2,1),(652,8783,’Hector’,2,2),(652,1248,’King Agamemnon’,2,3),(652,48,’Odysseus’,2,4),(652,2039,’Menelaos’,2,5),(652,9824,’Helena’,1,6),(652,11390,’Priam’,2,7),(652,9827,’Briseis’,1,8),(652,9825,’Andromache’,0,9),(652,9828,’Patroclus’,2,10),(652,9831,’Eudorus’,2,11),(652,1666,’Thetis’,1,12),(652,24898,’Boagrius’,2,14),(652,940,’Nestor’,2,15),(652,2467,’Glaucus’,2,16),(652,31431,’Archeptolemus’,2,17),(652,740,’Triopas’,2,18),(652,29407,’Velior’,2,19),(652,930959,’Aeneas’,2,20),(95,62,’Harry S. Stamper’,2,0),(95,879,’Dan Truman, NASA Administrator’,2,1),(95,880,’A.J. Frost’,2,2),(95,882,’Grace Stamper’,1,3),(95,883,’Charles \’Chick\’ Chapple’,2,4),(95,884,’Rockhound’,2,5),(95,886,’Colonel William Sharp, Shuttle Freedom Pilot’,2,6),(95,61981,’Jayotis \’Bear\’ Kurleenbear’,2,7),(95,53,’Lev Andropov, Russian Cosmonaut’,2,8),(95,887,’Oscar Choi’,2,9),(95,236327,’Max’,2,10),(95,42707,’Co-Pilot Jennifer Watts’,1,11),(95,8191,’Flight Director Clark’,2,12),(95,65827,’General Kimsey’,2,13),(95,11355,’Ronald Quincy’,2,14),(95,63941,’Colonel Davis’,2,15),(95,93958,’General Boffer’,2,16),(95,1329760,’Astronaut Pete Shelby’,0,17),(95,10017,’Narrator’,2,18),(95,62842,’Bike Messenger’,2,19),(95,1232170,’Max\’s Mom’,0,20),(95,6465,’Dottie’,1,21),(95,42373,’Gruber’,2,22),(95,230726,’Noonan’,2,23),(95,58950,’Halsey’,2,24),(95,43978,’Karl’,2,25),(95,1666701,’Samoan’,2,26),(95,15253,’President’,2,27),(95,167178,’Admiral Kelso’,2,28),(95,1554033,’Chuck Jr.’,2,29),(95,1232807,’Helga the Nurse’,0,30),(95,1646,’Psychologist’,2,31),(95,42731,’Co-Pilot Tucker’,2,32),(95,1219216,’Tommy’,2,33),(95,45041,’Denise’,1,34),(95,1666702,’Client #1′,1,35),(95,1666703,’Client #2′,2,36),(95,1217015,’Client #3′,2,37),(95,103833,’Dr. Banks’,2,38),(95,181975,’Stu the Cabbie’,2,39),(95,120528,’Asian Tourist – Female’,1,40),(95,9258,’Nuke Tech’,2,41),(95,41517,’Droning Guy’,2,42),(95,2138,’Redhead’,1,43),(95,154883,’Math Guy’,2,44),(95,41129,’Italian Newscaster’,1,45),(95,1666730,’British Newscaster’,2,46),(95,123686,’Dr. Nerd’,2,47),(95,31471,’Dr. Nerd’,2,48),(95,1583767,’NASA Planner #1′,2,49),(95,93846,’NASA Techs’,2,50),(95,143017,’NASA Techs’,2,51),(95,1212471,’NASA Techs’,0,52),(95,19208,’NASA Techs’,2,53),(95,157426,’NASA Techs’,2,54),(95,48587,’NASA Techs’,2,55),(95,95233,’NASA Techs’,2,56),(95,1557939,’NASA Techs’,2,57),(95,1043304,’NASA Techs’,2,58),(95,605,’NASA Techs’,2,59),(95,1390113,’Roughneck #1′,0,60),(95,87360,’Roughneck #2′,2,61),(95,1838353,’Roughneck #3′,2,62),(95,1666727,’NASA Techs (uncredited)’,1,63),(95,865,’NASA Scientist (uncredited)’,2,64),(95,106243,’Injured Girl (uncredited)’,1,65),(95,167755,’Presidential Cabinet Member (uncredited)’,0,66),(608,2176,’Kevin Brown, Agent Kay’,2,0),(608,2888,’Agent Jay’,2,1),(608,9626,’Zed’,2,2),(608,6684,’Serleena’,1,3),(608,9656,’Scrad/Charlie’,2,4),(608,5916,’Laura Vasquez’,1,5),(608,4252,’Jack Jeebs’,2,6),(608,9657,’Agent Tee’,2,7),(608,1240,’Ben’,2,8),(608,212,’Newton’,2,9),(608,9658,’Hailey’,0,10),(608,9659,’Captain Larry Bridgewater, The Motorman’,2,11),(608,37008,’Creepy’,2,12),(608,16178,’MIB Passport Control Agent’,2,13),(608,82702,’Agent M’,2,14),(608,17005,’Joey’,2,15),(608,51300,’Mosh Tendrils’,2,16),(608,154590,’the man with Harvey, the dog’,2,17),(608,37157,’New York guy’,0,18),(608,1314246,’New York guy’,0,19),(608,189734,’MIB guard’,0,20),(608,88950,’agent’,2,22),(608,1215262,’the younger Pizza Parlor MIB agent’,0,29),(2310,5538,’Beowulf / Golden Man / Dragon’,2,0),(2310,11701,’Grendel\’s Mother’,1,1),(2310,4173,’Hrothgar’,2,2),(2310,32,’Wealthow’,1,3),(2310,6949,’Unferth’,2,4),(2310,2039,’Wiglaf’,2,5),(2310,1064,’Grendel’,2,6),(2310,8291,’Ursula’,1,7),(2310,4031,’Garmund’,2,8),(2310,23789,’Wulfgar’,2,9),(2310,23790,’Old Cain’,2,10),(2310,42216,’Estrith’,1,11),(2310,42217,’Eofor’,2,12),(2310,42284,’Gitte’,0,13),(2310,1429705,’Additional Adult Performer (uncredited)’,0,14),(2310,1504584,’Musician #2′,0,15),(2310,1504585,’Musician #3′,0,16),(2310,1209766,’Musician #4′,2,17),(2310,42285,’Hild’,1,18),(2310,42286,’Cille’,1,19),(2310,42287,’Yrsa’,1,20),(2310,42288,’Aesher’,0,21),(2310,42289,’Young Cain’,2,22),(2310,39214,’Drunken Thane’,2,23),(2310,42290,’Scylding\’s Watch’,2,24),(2310,36055,’Hondshew’,2,25),(2310,42291,’Aethelbeorg’,1,26),(2310,42292,’Frisian Leader’,0,27),(2310,91443,’Additional Adult Performer’,0,28),(2310,42235,’Additional Adult Performer’,0,29),(7552,206,’Dick Harper’,2,0),(7552,4939,’Jane Harper’,1,1),(7552,7447,’Jack McCallister’,2,2),(7552,28633,’Frank Bascombe’,2,3),(7552,52929,’Veronica Cleeman’,1,4),(7552,8265,’Garth’,2,5),(7552,25849,’Joe Cleeman’,0,6),(7552,52930,’Oz Peterson’,2,7),(7552,52931,’Billy Harper’,0,8),(7552,52932,’Blanca’,1,9),(7552,29054,’Dick\’s Secretary’,1,10),(7552,31714,’Jack\’s Receptionist’,1,11),(7552,52933,’Jack\’s Assistant’,2,12),(7552,52794,’Angry Caller (voice)’,2,13),(7552,1868278,’Executive’,2,14),(616,500,’Captain Nathan Algren’,2,0),(616,3899,’Katsumoto’,2,1),(616,7676,’Winchester Rep’,2,2),(616,9186,’Winchester Rep Assistant’,2,3),(616,9188,’Zebulon Gant’,0,4),(616,3417,’Colonel Bagley’,2,5),(616,9189,’Emperor Meiji’,0,6),(616,9190,’Taka’,1,7),(616,9191,’Simon Graham’,2,8),(616,9192,’General Hasegawa’,2,9),(616,6914,’Ambassador Swanbeck’,2,10),(616,9193,’Nakao’,2,11),(616,9194,’Nobutada’,2,12),(616,9195,’Ujio’,0,13),(616,52909,’Omura’,2,14),(616,953738,’Omura\’s Companion’,0,15),(616,92495,’Omura\’s Bodyguard’,0,16),(616,18061,’N.C.O.’,2,17),(616,1116509,’Young Recruit’,0,18),(616,1116510,’Higen’,2,19),(616,1116511,’Magojiro’,0,20),(616,1116512,’Sword Master’,0,21),(616,239391,’Silent Samurai’,0,22),(616,1593805,’Convention Hall Attendee’,0,23),(616,1593806,’Kyogen Player #1′,0,24),(616,1593807,’Kyogen Player #2′,0,25),(616,1593808,’Kyogen Player #3′,0,26),(616,1593809,’Omura\’s Secretary’,0,27),(616,77955,’Soldier in Street #1′,2,28),(616,1593810,’Soldier in Street #2′,0,29),(616,1593811,’Soldier in Street #3′,0,30),(616,33519,’Guard’,0,31),(616,1593814,’Sword Master\’s Assistant’,0,32),(616,1593815,’Samurai Ensemble’,0,33),(616,1593816,’Samurai Ensemble’,0,34),(616,1593818,’Samurai Ensemble’,0,35),(616,1593819,’Samurai Ensemble’,0,36),(616,1593820,’Samurai Ensemble’,0,37),(616,1593821,’Samurai Ensemble’,0,38),(616,1045069,’Samurai Ensemble’,2,39),(616,228561,’Samurai Ensemble’,0,40),(616,551956,’Samurai Ensemble’,0,41),(616,1593822,’Samurai Ensemble’,0,42),(616,1593825,’Samurai Ensemble’,0,43),(616,1095916,’Samurai Ensemble’,0,44),(616,1593826,’Samurai Ensemble’,0,45),(616,1593827,’Samurai Ensemble’,0,46),(557,2219,’Peter Parker / Spider-Man’,2,0),(557,5293,’Norman Osborn / Green Goblin’,2,1),(557,205,’Mary Jane Watson’,1,2),(557,17051,’Harry Osborn’,2,3),(557,19153,’Ben Parker’,0,4),(557,18998,’May Parker’,1,5),(557,18999,’J. Jonah Jameson’,2,6),(557,20580,’Flash Thompson’,2,7),(557,5502,’Joseph \’Robbie\’ Robertson’,2,8),(557,20582,’Carjacker’,2,9),(557,9281,’Betty Brant’,1,10),(557,125024,’Dr. Mendell Stromm’,2,11),(557,89023,’Bone Saw McGraw’,2,12),(557,6944,’Check-In Girl’,1,13),(557,20584,’Punk Rock Girl’,1,14),(557,11357,’Ring Announcer’,2,15),(557,11769,’Hoffman’,2,16),(557,7624,’Man in Fair’,2,17),(557,60560,’Herself’,1,18),(557,127451,’Stunts’,2,19),(557,55648,’Tugboat Captain’,2,20),(557,19468,’Maximilian Fargas’,2,21),(557,6945,’Simkins’,0,22),(557,20581,’Henry Balkan’,0,23),(557,15253,’General Slocum’,2,24),(557,20583,’Teacher’,0,25),(557,19326,’Houseman’,0,26),(557,21130,’Subway Guitarist’,2,27),(557,125055,’Cop at Carjacking’,1,28),(557,154644,’Lab Tour Guide’,1,29),(557,21380,’Wrestling Promoter’,2,30),(557,11766,’Wrestling Arena Guard’,0,31),(557,145617,’Flash\’s Crony’,2,32),(557,169349,’Doctor’,0,33),(557,159907,’Heckler’,2,34),(557,84955,’Cop at Fire’,2,35),(557,61830,’Mother at Fire’,1,36),(557,1005,’Cabbie’,2,37),(557,17928,’Opinionated Cop’,0,38),(557,135855,’Surly Truck Driver’,2,39),(557,956719,’Philip Watson’,2,40),(557,1347687,’Chaperone in Tram’,0,41),(557,75331,’Girl in Tram’,1,42),(557,154694,’Boy in Tram’,2,43),(557,81687,’Cop (uncredited)’,2,44),(557,1279,’Colonel (uncredited)’,0,45),(557,1224170,’Crying Girl in Tram (uncredited)’,1,46),(557,23791,’Kyle (uncredited)’,2,47),(557,168872,’Spectator at School Fight (uncredited)’,2,48),(557,1390775,’World Unity Festival Attendant (uncredited)’,2,49),(557,87841,’Mugger (uncredited)’,2,50),(557,1906,’Screaming Wrestler (uncredited)’,0,51),(557,9559,’Chef (uncredited)’,0,52),(557,203950,’Young Thug #2 (uncredited)’,0,53),(557,86007,’Project Coordinator’,0,54),(557,1355926,’Madeline Watson’,1,55),(557,170142,’Billy\’s Mom’,1,56),(557,147592,’Fireman’,0,57),(557,202647,’Young Lady at Fire’,0,58),(557,1218780,’Cabbie’,0,59),(557,11641,’Marine Cop’,2,60),(557,16500,’Cop (uncredited)’,0,61),(557,1364589,’Uptown Woman (uncredited)’,0,62),(557,951607,’Board of Directors Member (uncredited)’,0,63),(557,165282,’Balkan\’s Aide (uncredited)’,0,64),(557,189756,’Thug on 8×10 (uncredited)’,0,65),(557,25298,’Street Vendor (uncredited)’,1,66),(557,1245801,’Mary Jane\’s Friend (uncredited)’,0,67),(557,891426,’Boat Light Man (uncredited)’,0,68),(557,1358996,’Diamond District Attendee (uncredited)’,0,69),(557,1033099,’Pentagon Officer (uncredited)’,0,70),(944,2461,’Martin Riggs’,2,0),(944,2047,’Roger Murtaugh’,2,1),(944,4517,’Leo Getz’,2,2),(944,14343,’Lorna Cole’,1,3),(944,1336,’Wah Sing Ku’,2,4),(944,14313,’Trish Murtaugh’,1,5),(944,14314,’Rianne Murtaugh’,1,6),(944,8400,’Benny Chan’,0,7),(944,14328,’Captain Ed Murphy’,2,8),(944,14316,’Nick Murtaugh’,2,9),(944,14317,’Carrie Murtaugh’,1,10),(944,21631,’Benny\’s Assistant’,0,11),(944,33386,’Gomez’,2,12),(944,19861,’Hong\’s Wife’,1,13),(944,2632,’Det.Lee Butters’,2,14),(944,113506,’Sheriff #1′,0,15),(944,154675,’Ping\’s Mother’,1,16),(944,26783,’Four Father Michael Sing Ku’,2,17),(944,23967,’Dr. Stephanie Woods’,0,18),(944,991886,’Little Girl’,1,19),(944,612216,’Hong’,2,20),(1927,8783,’Bruce Banner / The Hulk’,2,0),(1927,6161,’Betty Ross’,1,1),(1927,16431,’Thaddeus E. Thunderbolt Ross’,2,2),(1927,6164,’Glenn Talbot’,1,4),(1927,1733,’The Father’,2,5),(1927,20048,’Young David Banner’,2,6),(1927,20047,’Edith Banner’,1,7),(1927,7624,’Security Guard’,2,8),(1927,155873,’Young Ross’,2,9),(1927,1989,’Mrs. Krensler’,1,10),(1927,164618,’Teenage Bruce Banner’,2,11),(1927,19137,’Security Guard’,0,12),(1927,169615,’Security Guard’,2,13),(1927,177018,’Security Guard’,0,14),(1927,18307,’Aide’,2,15),(1927,75599,’Colonel’,2,16),(7364,10297,’Dirk Pitt’,2,0),(7364,955,’Eva Rojas’,1,1),(7364,18324,’Al Giordino’,2,2),(7364,3905,’Admiral Jim Sandecker’,2,4),(7364,1120,’General Zateb Kazim’,2,5),(7364,2192,’Yves Massarde’,2,6),(7364,11678,’Rudi Gunn’,2,7),(7364,114674,’Dr. Frank Hopper’,2,8),(7364,109383,’Oshodi’,2,9),(7364,18792,’Carl’,2,10),(7364,20522,’Captain Tombs’,2,11),(7364,669820,’Imam’,2,12),(7364,1126783,’Lawyer’,0,13),(7364,195575,’Mrs. Nwokolo’,1,14),(7364,177299,’Train Driver’,2,15),(7364,8979,’Ambassador Polidori’,2,16),(2114,55636,’Dr. Cid (voice)’,2,0),(2114,21702,’Dr. Aki Ross (voice)’,1,1),(2114,7447,’Cap. Gray Edwards (voice)’,2,2),(2114,10182,’Sgt. Ryan Whitaker (voice)’,2,3),(2114,884,’Off. Neil Fleming (voice)’,2,4),(2114,21703,’Off. Jane Proudfoot (voice)’,1,5),(2114,4512,’General Hein (voice)’,2,6),(2114,14500,’Council Member (voice)’,1,8),(2114,65827,’Council Member (voice)’,2,9),(1771,16828,’Steve Rogers / Captain America’,2,0),(1771,1331,’Johann Schmidt / Red Skull’,2,1),(1771,2176,’Col. Chester Phillips’,2,2),(1771,39459,’Peggy Carter’,1,3),(1771,60898,’James Buchanan \’Bucky\’ Barnes’,2,4),(1771,55470,’Howard Stark’,2,5),(1771,2231,’Director Nick Fury’,2,6),(1771,2283,’Abraham Erskine’,2,7),(1771,13014,’Dr. Arnim Zola’,2,8),(1771,58502,’Private Lorraine’,1,9),(1771,74289,’SHIELD Agent’,1,10),(1771,30315,’Heinz Kruger’,2,11),(1771,145161,’Jacques Dernier’,0,12),(1771,2203,’Timothy \’Dum Dum\’ Dugan’,2,13),(1771,15543,’Gabe Jones’,2,14),(1771,41561,’Jim Morita’,2,15),(1771,30710,’James Montgomery Falsworth’,2,16),(1771,7624,’General’,2,17),(1771,131814,’Senator Brandt’,2,18),(1771,1094667,’Brandt\’s Aide’,2,19),(1771,10207,’SHIELD Lieutenant’,0,20),(1771,55583,’Gilmore Hodge’,2,21),(1771,1104994,’Search Team Leader’,0,22),(1771,1356645,’SHIELD Tech’,2,23),(1771,1533995,’Jan’,2,24),(1771,11180,’Tower Keeper’,2,25),(1771,1572543,’Barman’,0,26),(1771,1075144,’Nervous Recruit’,0,27),(1771,1080542,’Connie’,1,28),(1771,1510694,’Bonnie’,1,29),(1771,10701,’4F Doctor’,2,30),(1771,1441558,’Loud Jerk’,2,31),(1771,1047370,’Young Doctor’,0,32),(1771,123496,’Enlistment Office MP’,0,33),(1771,1644017,’Stark Girl’,1,34),(1771,1502468,’Sergeant Duffy’,2,35),(1771,1231421,’Johann Schmidt\’s Artist’,2,36),(1771,108620,’Antique Store Owner’,1,37),(1771,1635547,’SSR Doctor’,2,38),(1771,1202386,’Project Rebirth Nurse’,1,39),(1771,1644028,’Kruger\’s Aide’,2,40),(1771,1513012,’Undercover Bum’,2,41),(1771,62892,’Roeder’,2,42),(1771,49365,’Hutter’,2,43),(1771,1048648,’Schneider’,0,44),(1771,1463197,’The Star Spangled Singer’,1,45),(1771,1644032,’The Star Spangled Singer’,1,46),(1771,1211185,’The Star Spangled Singer’,1,47),(1771,209578,’Autograph Seeker’,0,48),(1771,1387292,’\’Adolph Hitler\”,2,49),(1771,1624444,’Army Heckler’,2,50),(1771,1332982,’Army Heckler’,2,51),(1771,523533,’Army Heckler’,2,52),(1771,97505,’Army Heckler’,2,53),(1771,1184965,’HYDRA Guard / HYDRA Pilot’,2,54),(1771,1240693,’Manager Velt’,2,55),(8619,934,’Captain Jack Aubrey’,2,0),(8619,6162,’Dr. Stephen Maturin’,2,1),(8619,19655,’1st Lt. Tom Pullings’,2,2),(8619,1329,’Barrent Bonden’,2,3),(8619,79505,’William Warley, Cpt. of Mizzentop’,2,4),(8619,219496,’2nd Lt. William Mowett’,0,5),(8619,25658,’Capt. Howard’,2,6),(8619,215661,’Blakeney’,2,7),(8619,1077820,’Boyle’,0,8),(8619,1032202,’Calamy’,2,9),(8619,229672,’Hollom’,2,10),(8619,1077821,’Williamson’,0,11),(8619,47643,’Mr. Allen’,2,12),(8619,7025,’Mr. Higgins’,2,13),(8619,199975,’Mr. Hollar’,2,14),(8619,1077822,’Mr. Lamb’,0,15),(8619,59081,’Preserved Killick’,2,16),(8619,47703,’Joseph Nagle’,2,17),(8619,26131,’Joe Plaice’,2,18),(8619,134692,’Faster Doudle’,0,19),(8619,17837,’Awkward Davies’,2,20),(8619,2060,’Nehemiah Slade’,0,21),(8619,185460,’Mr. Hogg’,2,22),(8619,43299,’Padeen’,2,23),(8619,1077823,’Black Bill’,0,24),(8619,1077824,’French Captain’,0,25),(1724,819,’Bruce Banner / The Hulk’,2,0),(1724,882,’Betty Ross’,1,1),(1724,3129,’Emil Blonsky / Abomination’,2,2),(1724,227,’General Thaddeus Thunderbolt Ross / The Red Hulk’,2,3),(1724,1462,’Dr. Samuel Sterns / The Leader’,2,4),(1724,15232,’Leonard Samson / Dr. Samson’,2,5),(1724,68277,’Major Kathleen Sparr’,1,6),(1724,68278,’General Joe Greller’,2,7),(1724,19137,’Voice of The Incredible Hulk / Security Guard’,0,8),(1724,1215283,’Stanley’,0,9),(1724,964764,’Martina’,0,10),(1724,231,’Commando’,2,11),(1724,80969,’Terrified Gal’,1,12),(1724,158459,’Commando’,2,13),(1724,1075146,’Commando’,2,14),(1724,185853,’Commando’,0,15),(1724,1366350,’Commando’,0,16),(1724,1366351,’Helicopter Soldier’,0,17),(1724,1366353,’Grad Student’,0,18),(1724,185165,’Tough Guy Leader’,2,19),(1724,1366354,’Tough Guy’,0,20),(1724,1366355,’Tough Guy’,0,21),(1724,15230,’Tough Guy’,0,22),(1724,1366356,’Communications Officer’,0,23),(1724,941286,’Helicopter Pilot’,2,24),(1724,76973,’Soldier’,2,25),(1724,87575,’Soldier’,2,26),(1724,8360,’Cop’,0,27),(1724,1366357,’Cop’,0,28),(1724,53577,’Cab Driver’,2,29),(1724,1366358,’Medical Technician’,0,30),(1724,1366361,’Young Guy’,0,31),(1724,1366359,’Plant Manager’,2,32),(1724,1142866,’Sniper’,0,33),(1724,5897,’Boat Captain’,2,34),(1724,1366360,’Guatemalan Trucker’,0,35),(1724,41089,’Computer Nerd’,2,36),(1724,1366362,’Apache Helicopter Pilot’,2,37),(1724,1366363,’Soldier’,0,38),(1724,1160260,’Colleague’,1,39),(1724,39390,’Harlem Bystande’,2,40),(1724,1366364,’Market Vendor’,0,41),(1724,1366365,’Supply Driver’,0,42),(1724,111203,’Army Base Doctor’,2,43),(1724,115387,’Aikido Instructor’,0,44),(1724,1366366,’Ross\’s Soldier’,0,45),(1724,1234315,’McGee’,2,46),(1724,1366369,’Wilson’,0,47),(1724,201951,’Reporter’,1,48),(1724,180996,’Gunner’,2,49),(1724,1366370,’Little Boy’,0,50),(1724,76528,’Brave Cop’,2,51),(1724,54200,’Soldier’,0,52),(1724,1224149,’Soldier’,2,53),(1724,38564,’Soldier’,2,54),(1724,1366371,’Soldier’,2,55),(1724,1366372,’BOPE Officer’,0,56),(1724,1366374,’Medic Soldier’,0,57),(1724,1117748,’Handsome Soldier’,0,58),(1724,1366377,’Ross\’s Aide’,0,59),(1724,1366378,’Female Medical Assistant’,0,60),(1724,1366379,’Humvee Driver’,0,61),(1724,1366380,’Sterns Lab Soldier’,0,62),(1724,1366381,’Large Woman’,0,63),(1724,1230333,’Female Bartender’,0,64),(1724,1366382,’Hopscotch Girl’,0,65),(1724,3223,’Tony Stark / Iron Man (uncredited)’,2,66),(1724,7624,’Milwaukee Man Drinking From Bottle (uncredited)’,2,67),(2503,1892,’Jason Bourne’,2,0),(2503,12041,’Nicky Parsons’,1,1),(2503,11064,’Noah Vosen’,2,2),(2503,349,’Ezra Kramer’,2,3),(2503,14887,’Simon Ross’,2,4),(2503,25616,’Paz’,2,5),(2503,3926,’Dr. Albert Hirsch’,0,6),(2503,11148,’Pamela Landy’,1,7),(2503,27030,’Tom Cronin’,2,8),(2503,17199,’Conrad Wills’,0,9),(2503,3872,’Martin Kreutz’,2,10),(2503,29406,’Desh Bouksani’,2,11),(2503,23608,’Neal Daniels’,2,12),(2503,175400,’Jimmy’,0,13),(2503,204167,’Lucy’,0,14),(2503,122296,’Technician’,0,15),(2503,89830,’Technician’,2,16),(2503,122293,’Technician’,0,17),(2503,1280230,’Technician’,0,18),(2503,124686,’Betancourt’,2,19),(2503,1280231,’Chamberlain’,0,20),(2503,1280232,’Agent Hammond’,0,21),(2503,78110,’Agent Kiley’,2,22),(2503,944548,’Russian Policeman’,2,23),(2503,1280233,’Russian Policeman’,2,24),(2503,199298,’Tactical Team Leader’,2,25),(2503,164382,’Tactical Team Agent’,0,26),(2503,1280234,’Vosen\’s Driver’,0,27),(2503,1084850,’Morgue Attendant’,0,28),(2503,1280235,’NYPD Officer’,0,29),(2503,164021,’NYPD Officer’,2,30),(2503,30085,’CRI Agent’,0,31),(2503,1280236,’Hoody’,0,32),(2503,577739,’Businessman (uncredited)’,2,33),(2503,1500999,’Businessman on Street (uncredited)’,0,34),(2503,195198,’Senator Gillham (uncredited)’,0,35),(2503,1456745,’Construction Worker (uncredited)’,0,36),(2503,1007875,’Buenos Aires Cafe Patron (voice) (uncredited)’,2,37),(2503,1165238,’Mob (uncredited)’,0,38),(2503,1411061,’Special Agent in Car (uncredited)’,0,39),(2503,118385,’Hospital Patient (uncredited)’,0,40),(2503,1434599,’Agent (uncredited)’,0,41),(2503,1553379,’Passer-by (uncredited)’,0,42),(2503,1209055,’Policeman (uncredited)’,0,43),(2503,127005,’Commuter (uncredited)’,2,44),(2503,1195183,’Nabile (uncredited)’,2,45),(9502,70851,’Po (voice)’,2,0),(9502,4483,’Shifu (voice)’,2,1),(9502,11701,’Master Tigress (voice)’,1,2),(9502,18897,’Master Monkey (voice)’,2,3),(9502,140,’Master Viper (voice)’,1,4),(9502,212,’Crane (voice)’,2,5),(9502,9462,’Oogway (voice)’,2,6),(9502,20904,’Mr. Ping (voice)’,2,7),(9502,58873,’Zeng (voice)’,2,8),(9502,6972,’Tai Lung (voice)’,2,9),(9502,19274,’Mantis (voice)’,2,10),(9502,61981,’Commander Vachir (voice)’,2,11),(9502,4201,’Gang Boss (voice)’,2,12),(9502,22297,’KG Shaw (voice)’,2,13),(9502,938432,’JR Shaw (voice)’,0,14),(9502,61409,’Awed Ninja (voice)’,1,15),(9502,1448983,’Smitten Bunny (voice)’,0,16),(9502,1448984,’Gong Pig / Grateful Bunny (voice)’,0,17),(9502,57741,’Pig Patron (voice)’,2,18),(9502,57742,’Rhino Guard (voice)’,2,19),(9502,1448987,’Blind Gator (voice)’,0,20),(9502,946051,’Bunny Mom (voice)’,1,21),(9502,45416,’Pig Fan (voice)’,2,22),(9502,1448990,’Bunny Fan 1 (voice)’,0,23),(9502,1448991,’Bunny Fan 2 (voice)’,0,24),(9502,1397911,’Baby Tai Lung (voice)’,0,25),(74,500,’Ray Ferrier’,2,0),(74,501,’Rachel Ferrier’,1,1),(74,502,’Mary-Ann’,1,2),(74,503,’Robbie Ferrier’,2,3),(74,504,’Harlan Ogilvy’,2,4),(74,505,’News Producer’,1,5),(74,506,’Ferry Captain’,2,6),(74,192,’Narrator (Voice)’,2,7),(74,33500,’Older Woman’,1,8),(74,75604,’Julio’,2,9),(74,103079,’Grandmother’,0,10),(74,56442,’Grandfather’,2,11),(74,182280,’Conspiracy Buff’,0,12),(74,38673,’Boy in Church (uncredited)’,2,13),(74,167756,’Man in Basket’,2,14),(74,4494,’Bartender’,1,15),(74,37157,’Manny the Mechanic’,0,16),(74,53184,’Vincent’,2,17),(74,59690,’Tim’,2,18),(74,1599519,’Herself’,1,19),(74,167109,’News Cameraman’,2,20),(74,1391612,’News Van Driver’,2,21),(74,39388,’Neighbor With Toddler’,1,22),(74,1215988,’Bus Driver’,0,23),(74,97446,’Well-Meaning Father’,2,24),(74,89375,’Soldier’,2,25),(74,31132,’Soldier’,2,26),(74,78798,’SpongeBob SquarePants (voice)’,2,27),(74,17181,’3 Year Old Boy’,2,28),(8961,78029,’Detective Marcus Burnett’,2,0),(8961,2888,’Detective Mike Lowrey’,2,1),(8961,31384,’Hector Juan Carlos \’Johnny\’ Tapia’,2,2),(8961,17773,’Sydney \’Syd\’ Burnett’,1,3),(8961,53,’Alexei’,2,4),(8961,4604,’Theresa Burnett’,1,5),(8961,532,’Captain C. Howard’,2,6),(8961,335,’Floyd Poteet’,2,7),(8961,288,’Roberto’,2,8),(8961,75604,’Mateo Reyes’,2,9),(8961,147960,’Marco Vargas’,2,10),(8961,59739,’Carlos’,2,11),(8961,9290,’TNT Leader’,2,12),(8961,20562,’DEA Tony Dodd’,2,13),(8961,1286657,’TNT Fanuti’,0,14),(8961,119869,’Fletcher’,2,15),(8961,77351,’Josef’,2,16),(8961,865,’Driver’,2,17),(8961,1286269,’Boat Scene Extra’,0,18),(8961,1056117,’Guy in Holding Area’,2,20),(8961,160627,’Limo Guy (uncredited)’,2,21),(673,10980,’Harry Potter’,2,0),(673,10989,’Ron Weasley’,2,1),(673,10990,’Hermione Granger’,1,2),(673,64,’Sirius Black’,2,3),(673,11207,’Remus Lupin’,2,4),(673,4566,’Severus Snape’,2,5),(673,5658,’Albus Dumbledore’,2,6),(673,1923,’Rubeus Hagrid’,2,7),(673,10993,’Draco Malfoy’,2,8),(673,7056,’Sybill Trelawney’,1,9),(673,10978,’Minerva McGonagall’,1,10),(673,10991,’Ginny Weasley’,1,11),(673,96851,’Fred Weasley’,2,12),(673,140368,’George Weasley’,2,13),(673,9191,’Peter Pettigrew’,2,14),(673,96841,’Neville Longbottom’,2,15),(673,11180,’Argus Filch’,2,16),(673,477,’Molly Weasley’,1,17),(673,20999,’Arthur Weasley’,2,18),(673,10983,’Vernon Dursley’,2,19),(673,10981,’Petunia Dursley’,1,20),(673,10982,’Dudley Dursley’,2,21),(673,234923,’Dean Thomas’,0,22),(673,234922,’Seamus Finnegan’,2,23),(673,956224,’Vincent Crabbe’,2,24),(673,11212,’Gregory Goyle’,2,25),(673,10992,’Percy Weasley’,2,26),(673,23076,’Cornelius Fudge’,2,27),(673,11213,’Marge Dursley’,1,28),(673,11184,’Filius Flitwick’,2,29),(673,5539,’The Fat Lady’,1,30),(673,229672,’Stan Shunpike’,2,31),(673,190342,’Ernie Prang’,0,32),(673,53519,’Dre Head (voice)’,2,33),(673,1437296,’Pansy Parkinson’,0,34),(673,1797010,’Parvati Patel’,0,35),(673,1796502,’Angelina Johnson’,0,36),(673,75076,’Pike’,2,37),(673,1243166,’Tom’,2,38),(673,1797012,’Bem’,0,39),(673,1666,’Madame Rosmerta’,1,40),(673,34900,’Sir Cadogan’,2,41),(673,10988,’Lily Potter’,1,42),(673,1643,’James Potter’,2,43),(673,1797011,’Lavender Brown’,0,44),(673,1796483,’Walden Macnair’,0,45),(673,1757941,’Rionach O\’Neal’,0,46),(673,1797014,’Eloise Midgen’,0,47),(673,1797013,’Kellah’,0,48),(673,1797015,’Michael McManus’,0,49),(673,1507605,’Girl with Flowers’,1,50),(6972,2227,’Lady Sarah Ashley’,1,0),(6972,6968,’The Drover’,2,1),(6972,33449,’Katherine’,1,2),(6972,1371,’Neil Fletcher’,2,3),(6972,29092,’King Carney’,2,4),(6972,53023,’King George’,0,5),(6972,45210,’Sergeant’,2,6),(6972,208282,’Carney Boy’,0,7),(6972,55903,’Carney Boy’,0,8),(6972,1265157,’Carney Boy’,2,9),(6972,1209256,’Carney Boy’,2,10),(6972,217046,’Bull’,0,11),(6972,108924,’Father Benedict’,2,12),(6972,144098,’Gloria Carney’,1,13),(6972,23,’Skipper (Qantas Sloop)’,2,14),(6972,12210,’Ivan’,2,15),(6972,77335,’Captain Dutton’,2,16),(6972,150536,’Administrator Allsop’,2,17),(6972,1222753,’Magarri’,2,18),(6972,27752,’Dr. Barker’,2,19),(6972,12536,’Kipling Flynn’,2,20),(6972,57609,’Sing Song’,2,21),(6972,10756,’Myrtle Allsop’,1,22),(6972,34657,’Ramsden’,2,23),(6972,1666760,’Mission Boy’,2,24),(6972,76188,’Sergeant Callahan’,2,25),(6972,1532525,’Daisy’,1,26),(6972,1673414,’Nullah’,2,27),(6972,12212,’Brother Frank’,2,28),(6972,1447731,’Bandy Legs’,1,29),(6972,38665,’Old Drunk’,2,30),(6972,1673434,’Essential Services Woman’,1,31),(6972,144678,’Porter (Wharf)’,2,32),(6972,110485,’Lady Sarah\’s Butler’,2,33),(6972,1673453,’Carney Manservant’,2,34),(6972,1673475,’Goolaj’,2,35),(6972,1673478,’Darwin Policeman’,2,36),(6972,1413066,’Ball Guest’,2,37),(6972,1673476,’Stockman’,2,38),(6972,144677,’Aboriginal Tracker’,2,39),(6972,1673477,’Flying Boat Passenger Child’,1,40),(6972,1673474,’Evacuee Mother (uncredited)’,1,41),(6972,1673479,’Maitland Ashley (uncredited)’,2,42),(6972,162758,’Drover / Guest / Waiter (uncredited)’,2,43),(6972,1673483,’Firefighter (uncredited)’,2,44),(671,10980,’Harry Potter’,2,0),(671,10989,’Ron Weasley’,2,1),(671,10990,’Hermione Granger’,1,2),(671,194,’Albus Dumbledore’,2,3),(671,10993,’Draco Malfoy’,2,4),(671,1923,’Rubeus Hagrid’,2,5),(671,4566,’Severus Snape’,2,6),(671,10978,’Minerva McGonagall’,1,7),(671,10983,’Vernon Dursley’,2,8),(671,10985,’Quirinus Quirrell’,2,9),(671,10981,’Petunia Dursley’,1,10),(671,5049,’Garrick Ollivander’,2,11),(671,11180,’Argus Filch’,2,12),(671,96841,’Neville Longbottom’,2,13),(671,11179,’Oliver Wood’,2,14),(671,11184,’Goblin Bank Teller / Filius Flitwick’,2,15),(671,10982,’Dudley Dursley’,2,16),(671,96851,’Fred Weasley’,2,17),(671,140368,’George Weasley’,2,18),(671,8930,’Nearly Headless Nick’,0,19),(671,10992,’Percy Weasley’,2,20),(671,234923,’Dean Thomas’,0,21),(671,234922,’Seamus Finnigan’,2,22),(671,956224,’Vincent Crabbe’,2,23),(671,11212,’Gregory Goyle’,2,24),(671,20240,’Rolanda Hooch’,1,25),(671,477,’Molly Weasley’,1,26),(671,10991,’Ginny Weasley’,1,27),(671,871100,’Lee Jordan’,2,28),(671,10987,’Griphook’,2,29),(671,1643,’James Potter’,2,30),(671,10988,’Lily Potter’,1,31),(671,1220119,’Fat Lady’,1,32),(671,58778,’The Grey Lady’,1,33),(671,10732,’The Bloody Barron’,0,34),(671,10655,’The Sorting Hat’,2,35),(671,1261131,’Fat Friar’,0,36),(671,10984,’Tom’,0,37),(671,56650,’Firenze (voice)’,2,38),(671,11183,’Susan Bones’,0,39),(671,10986,’Angus’,0,40),(671,1796502,’Angelina Johnson’,0,41),(671,1796505,’Alicia Spinnet’,0,42),(671,11185,’Katie Bell’,0,43),(671,1796509,’Marcus Flint’,0,45),(671,1796510,’Terrence Higgs’,0,46),(671,10979,’Baby Harry Potter’,0,47),(671,1796513,’Miles Bletchley’,0,48),(671,1796520,’Dedalus Diggle’,0,49),(671,430776,’Augusta Longbottom’,0,50),(671,1796524,’Septima Vector’,0,51),(671,1796522,’Amanda’,0,52),(671,1796523,’Alice’,0,53),(671,1019545,’Ravenclaw Schoolboy’,2,54),(671,143240,’Gryffindor Schoolgirl’,1,55),(671,1462953,’Hufflepuff Schoolgirl’,0,56),(671,1214513,’Goblin (uncredited)’,0,57),(671,1639982,’Child at Zoo (uncredited)’,1,58),(22,85,’Captain Jack Sparrow’,2,0),(22,118,’Captain Hector Barbossa’,2,1),(22,114,’Will Turner’,2,2),(22,116,’Elizabeth Swann’,1,3),(22,1709,’Commodore James Norrington’,2,4),(22,378,’Governor Weatherby Swann’,2,5),(22,2449,’Joshamee Gibbs’,2,6),(22,8691,’Anamaria’,1,7),(22,1710,’Pintel’,2,8),(22,1711,’Ragetti’,2,9),(22,1712,’Lieutenant Gillette’,0,10),(22,12802,’Koehler’,2,11),(22,1716,’Twigg’,0,12),(22,1715,’Cotton’,2,13),(22,21700,’Cotton\’s Parrot (voice)’,2,14),(22,4030,’Marty’,2,15),(22,1717,’Bo\’sun’,2,16),(22,1713,’Murtogg’,0,17),(22,1714,’Mullroy’,2,18),(22,4031,’Lieutenant Theodore Groves’,2,19),(22,9298,’Harbormaster’,2,20),(22,155955,’Mr. Brown’,2,21),(22,59056,’Estrella’,0,22),(22,116234,’Butler’,0,23),(22,1172661,’Young Will’,2,24),(22,82143,’Young Elizabeth’,1,25),(22,2450,’Scarlett’,1,26),(22,2452,’Giselle’,1,27),(22,82636,’Frightened Sailor’,2,28),(22,74578,’Seedy Looking Prisoner’,2,29),(22,106514,’Sentry’,0,30),(22,1269546,’Steersman’,0,31),(22,57252,’Grapple’,2,32),(22,88032,’Jacoby’,2,33),(22,1077834,’Sailor / Edinburgh’,0,34),(22,931645,’Mallot’,2,35),(22,60941,’Seedy Prisoner #2′,2,36),(22,1269548,’Seedy Prisoner #3′,0,37),(22,1269549,’Seedy Prisoner #4′,0,38),(22,1269550,’Town Clerk’,0,39),(22,1269551,’Sailor’,0,40),(22,67147,’Crippled Man’,2,41),(22,1269553,’Crying Boy’,0,42),(22,1269554,’Crying Boy’,0,43),(22,1269555,’Moises: Jack\’s Crew’,0,44),(22,1269556,’Kursar: Jack\’s Crew’,0,45),(22,1269557,’Matelot: Jack\’s Crew’,0,46),(22,1269559,’Tearlach: Jack\’s Crew (as Gerard Reyes)’,0,47),(22,1269560,’Duncan: Jack\’s Crew’,0,48),(22,1269561,’Ladbroc: Jack\’s Crew (as Chris \’Sully\’ Sullivan)’,0,49),(22,1269562,’Crimp: Jack\’s Crew’,0,50),(22,1269602,’Quartetto: Jack\’s Crew’,0,51),(22,1269604,’Ketchum: Barbossa\’s Crew’,0,52),(22,145555,’Maximo: Barbossa\’s Crew’,2,53),(22,1269605,’Monk: Barbossa\’s Crew (as Michael Lane)’,0,54),(22,1269607,’Clubba: Barbossa\’s Crew’,0,55),(22,1269608,’Scarus: Barbossa\’s Crew’,0,56),(22,182212,’Scratch: Barbossa\’s Crew’,2,57),(22,1269603,’Weatherby: Barbossa\’s Crew’,0,58),(22,1269606,’Dog Ear: Barbossa\’s Crew’,0,59),(22,1269609,’Simbakka: Barbossa\’s Crew’,0,60),(22,1196317,’Hawksmoor: Barbossa\’s Crew’,2,61),(22,180394,’Katracho: Barbossa\’s Crew’,0,62),(22,1269610,’Nipperkin: Barbossa\’s Crew’,0,63),(22,1269611,’Lejon’,2,64),(22,1269612,’Pirate (uncredited)’,0,65),(22,59215,’Pirate (uncredited)’,2,66),(22,74666,’Sailor (uncredited)’,0,67),(22,1146942,’Marine (uncredited)’,0,68),(22,1269613,’Barbossa\’s Crew (uncredited)’,0,69),(591,31,’Robert Langdon’,2,0),(591,2405,’Sophie Neveu’,1,1),(591,1327,’Sir Leigh Teabing’,2,2),(591,6162,’Silas’,2,3),(591,1003,’Captain Bezu Fache’,2,4),(591,658,’Manuel Aringarosa’,2,5),(591,920,’Andru00e9 Vernet’,2,6),(591,34259,’Ru00e9my Jean’,2,7),(591,20795,’Jacques Saunier’,0,8),(591,38885,’Su0153ur Sandrine’,1,9),(591,28186,’Ritual Priestress’,0,10),(591,38886,’Mother of Silas’,1,11),(591,38887,’Father of Silas’,0,12),(591,38888,’Michael’,2,13),(591,150792,’Lt. Collet’,2,14),(591,1278517,’London Police’,2,15),(591,1866899,’Peasant Father’,2,16),(591,129014,’PTS Agent (uncredited)’,0,17),(861,1100,’Douglas Quaid/Hauser’,2,0),(861,4430,’Lori’,1,1),(861,10768,’Melina’,1,2),(861,780,’Vilos Cohaagen’,2,3),(861,11086,’Richter’,2,4),(861,3041,’George/Kuato’,2,5),(861,12888,’Dr. Edgemar’,2,6),(861,12889,’Bob McClane’,2,7),(861,44275,’Dr. Lull’,1,8),(861,14329,’Tony’,2,9),(861,19753,’Thumbelina’,1,10),(861,14319,’Mary’,0,11),(861,33492,’Harry’,2,12),(861,160474,’Everett’,2,13),(861,59221,’Rebel Lieutenant’,2,14),(861,100230,’Burly Miner’,2,15),(861,16180,’Voice of Johnnycab (voice)’,2,16),(861,790,’Helm’,2,17),(861,12887,’Benny’,2,18),(861,41253,’Ernie’,2,19),(861,72443,’Tiffany’,1,20),(1911,3131,’Ahmad Ibn Fadlu0101n’,2,0),(1911,19898,’Buliwyf’,0,1),(1911,19899,’Herger the Joyous’,0,2),(1911,19900,’Edgtho the Silent’,2,3),(1911,19901,’Helfdane the Fat’,2,4),(1911,19902,’Rethel the Archer’,2,5),(1911,19903,’Skeld the Superstitious’,2,6),(1911,6200,’Queen Weilew’,1,7),(1911,156000,’Roneth’,2,8),(1911,43299,’Ragnar – Dour’,2,9),(1911,1378404,’Haltaf – Boy’,0,10),(1911,1378405,’Halga – Wise’,0,11),(1911,2220,’Weath – Musician’,2,12),(1911,53353,’Hyglak – Quarrelsome’,2,13),(1911,5004,’Melchisidek’,0,14),(1911,18917,’Caravan Leader’,2,15),(1911,1237724,’Norseman’,2,16),(1911,1216568,’Norseman’,2,17),(1911,1351408,’One-Eyed Old Man’,2,18),(415,1461,’Bruce Wayne / Batman’,2,0),(415,5577,’Dick Grayson / Robin’,2,1),(415,1100,’Dr. Victor Fries / Mr. Freeze’,2,2),(415,139,’Dr. Pamela Isley / Poison Ivy’,1,3),(415,5588,’Barbara Wilson / Batgirl’,0,4),(415,3796,’Alfred Pennyworth’,2,5),(415,3798,’Commissioner James Gordon’,2,6),(415,5590,’Julie Madison’,1,7),(415,5589,’Dr. Jason Woodrue’,2,8),(415,2535,’Ms. B. Haven’,1,9),(415,66813,’Bane’,2,10),(415,35549,’Banker’,2,11),(415,1104,’Arkham Asylum Security’,2,12),(415,942,’Arkham Asylum Security’,2,13),(8871,206,’Grinch’,2,0),(8871,20480,’Cindy Lou Who’,1,1),(8871,4175,’Mayor Augustus Maywho’,2,2),(8871,11870,’Martha May Whovier’,1,3),(8871,58549,’Lou Lou Who’,2,4),(8871,28640,’Betty Lout Who’,1,5),(8871,15661,’Whobris’,2,6),(8871,167661,’8-Year-Old Grinch’,0,7),(8871,13924,’Clarnella’,1,8),(8871,155983,’Rose’,1,9),(8871,22250,’Elderly Timekeeper’,2,10),(8871,15034,’Drew Lou Who’,2,11),(8871,151263,’Stu Lou Who’,2,12),(8871,168415,’Christina Whoterberry’,1,13),(8871,239979,’Junie’,0,14),(8871,19307,’Shopper’,1,15),(8871,4173,’Narrator (voice)’,2,16),(435,6065,’Jack Hall’,2,0),(435,131,’Sam Hall’,2,1),(435,4730,’Laura Chapman’,1,2),(435,6066,’Jason Evans’,2,3),(435,6067,’Frank Harris’,2,4),(435,6068,’Dr. Lucy Hall’,1,5),(435,6069,’J.D.’,2,6),(435,6070,’Brian Parks’,2,7),(435,3134,’Janet Tokada’,1,8),(435,6071,’Parker’,2,9),(435,65,’Terry Rapson’,2,10),(435,6072,’Saudi Delegate’,0,11),(435,6073,’Venezuelan Delegate’,2,12),(435,6074,’Vice President Becker’,0,13),(435,6075,’Saudi Translator’,0,14),(435,1215803,’Bob’,0,15),(435,2683,’Luther’,2,16),(435,76215,’Simon’,2,17),(435,14331,’Gomez’,2,18),(435,21021,’Veteran Scientist’,0,19),(435,129419,’Flight Director’,0,20),(435,64457,’President Blake’,0,21),(435,65471,’Secretary of State’,1,22),(435,559897,’Yuri, Russian Astronaut’,0,23),(435,29466,’Hideki, Japanese Astronaut’,2,24),(435,37981,’Vorsteen’,2,25),(435,43612,’Aaron’,2,26),(955,500,’Ethan Hunt’,2,0),(955,15336,’Sean Ambrose’,2,1),(955,9030,’Nyah Nordoff-Hall’,1,2),(955,10182,’Luther Stickell’,2,3),(955,12206,’Hugh Stamp’,2,4),(955,15337,’Billy Baird’,2,5),(955,2039,’John C. McCloy’,2,6),(955,1118,’Dr. Nekhorvich’,2,7),(955,15338,’Wallis’,2,8),(955,10862,’Ulrich’,2,9),(955,15339,’Michael’,0,10),(955,15340,’Accountant’,2,11),(955,15341,’Flamenco Dancer’,0,12),(955,15342,’Chemist’,2,13),(955,15343,’Larrabee’,0,14),(955,4173,’Mission Commander Swanbeck’,2,15),(955,1451740,’Dr. Gradsky’,2,16),(2133,1461,’Capt. Billy Tyne’,2,0),(2133,13240,’Bobby Shatford’,2,1),(2133,2882,’Christina Chris Cotter’,1,2),(2133,4764,’Dale Murp Murphy’,2,3),(2133,886,’David Sully Sullivan’,2,4),(2133,4029,’Alexander McAnally III’,2,5),(2133,650,’Melissa Brown’,1,6),(2133,32486,’Alfred Pierre’,2,7),(2133,1161,’Linda Greenlaw’,1,8),(2133,16861,’Mike \’Bugsy\’ Moran’,2,9),(2133,1956,’Edie Bailey’,1,10),(2133,4443,’Todd Gross’,2,11),(2133,11086,’Bob Brown’,2,12),(2133,34407,’Irene \’Big Red\’ Johnson’,1,13),(2133,106460,’Ethel Shatford’,1,14),(2133,6066,’Sgt. Jeremy Mitchell’,2,15),(2133,31532,’Capt. Darryl Ennis’,2,16),(2133,170805,’Lt. Rob Pettit’,2,17),(2133,35546,’Flight Engineer Borgers’,2,18),(2133,104191,’Sgt. Millard Jones’,2,19),(2133,156927,’Dale Murphy, Jr.’,2,20),(2133,105000,’Debra Murphy’,1,21),(2133,37624,’Alfred Pierre\’s Girlfriend’,1,22),(2133,58620,’Douglas Kosco’,2,23),(2133,102823,’Quentin – The Old Timer’,2,24),(2133,177621,’Pam – Todd Gross\’ Assistant’,1,25),(2133,26994,’Commander Brudnicki’,2,26),(2133,156415,’C-130 Pilot’,2,27),(1979,65524,’Reed Richards / Mr. Fantastic’,2,0),(1979,56731,’Sue Richards / Invisible Woman’,1,1),(1979,16828,’Johnny Storm / Human Torch’,2,2),(1979,19654,’Ben Grimm / The Thing’,2,3),(1979,20402,’Victor von Doom / Doctor Doom’,2,4),(1979,11703,’Alicia Masters’,1,5),(1979,6861,’General Hager’,2,6),(1979,2975,’Norrin Radd / Silver Surfer (voice)’,2,7),(1979,17005,’Norrin Radd / Silver Surfer’,2,8),(1979,20403,’Frankie Raye’,1,9),(1979,20405,’Priest’,2,10),(1979,7471,’James Sherman / Rafke’,2,11),(1979,6074,’Dr. Jeff Wagner’,0,12),(1979,27111,’Baxter Building Doorman’,2,13),(1979,58393,’Hot Party Girl #3′,1,14),(1979,20404,’Johnny\’s Wedding Date’,1,15),(1979,7624,’Stan Lee – Rejected Wedding Guest’,2,16),(1979,21083,’Tailor’,2,17),(1250,2963,’Johnny Blaze/Ghost Rider’,2,0),(1250,8170,’Roxanne Simpson’,1,1),(1250,8210,’Blackheart / Black King’,2,2),(1250,10825,’Mack’,2,3),(1250,16431,’Carter Slade / Phantom Rider’,2,4),(1250,8949,’Mephistopheles’,2,5),(1250,16841,’Barton Blaze’,2,6),(1250,16839,’Young Johnny Blaze’,2,7),(1250,16840,’Young Roxanne Simpson’,1,8),(1250,1297400,’Team Blaze’,0,9),(1250,211670,’Team Blaze’,0,10),(1250,474842,’Team Blaze’,0,11),(1250,1157635,’Team Blaze’,0,12),(1250,1297402,’X Games Announcer’,0,13),(1250,217046,’Motorcycle Gang Member’,0,14),(1250,91400,’Broken Spoke Waitress’,1,15),(1250,221581,’Goth Girl in Alley’,1,17),(1250,1704332,’Wallow’,0,18),(1250,15339,’Abigor’,0,19),(9471,6941,’Natalie Cook’,1,0),(9471,69597,’Dylan Sanders’,1,1),(9471,140,’Alex Munday’,1,2),(9471,1897,’Jimmy Bosley’,2,3),(9471,418,’Ray Carter’,2,4),(9471,3416,’Madison Lee’,1,5),(9471,8930,’Mr. Munday’,0,6),(9471,14407,’Jason’,2,7),(9471,36422,’Pete’,2,8),(9471,10959,’Max’,2,9),(9471,77271,’Coal Bowl Starter’,1,10),(9471,1064,’Thin Man’,2,11),(9471,15009,’Seamus O\’Grady’,2,12),(9471,55536,’Bystander’,1,13),(9471,103982,’Momma Bosley’,1,14),(9471,17289,’Randy Emmers’,2,15),(9471,10866,’Alan Caulfield’,2,16),(9471,5694,’Roger Wixon’,2,17),(9471,1585297,’Demented Mongol’,2,18),(9471,65975,’Deranged Mongol’,2,19),(9471,1548677,’Large Mongol’,2,20),(9471,62,’William Rose Bailey (uncredited)’,2,21),(9471,67849,’Future Angel (uncredited)’,1,22),(9471,67848,’Future Angel (uncredited)’,1,23),(2789,12835,’Riddick’,2,0),(2789,9030,’Dame Vaako’,1,1),(2789,1372,’Vaako’,2,2),(2789,10132,’Lord Marshal’,2,3),(2789,3900,’Purifier’,2,4),(2789,65827,’Imam’,2,5),(2789,31387,’The Guv’,0,6),(2789,18461,’Toombs’,2,7),(2789,28109,’Kyra’,1,8),(2789,25877,’Toal’,2,9),(2789,116575,’Lajjun’,1,10),(2789,5309,’Aereon’,1,11),(2789,118459,’Irgun’,2,12),(2789,11677,’Merc Pilot’,2,13),(2789,28110,’Eve Logan’,1,14),(2789,172880,’Merc’,0,15),(2789,172844,’Slam Guard’,2,16),(2789,169780,’Ziza’,1,17),(2789,90726,’Scales’,2,18),(7459,46593,’Speed Racer’,2,0),(7459,6886,’Trixie’,1,1),(7459,28657,’Racer X’,2,2),(7459,4038,’Mom Racer’,1,3),(7459,53368,’Rex Racer’,2,4),(7459,1230,’Pops Racer’,2,5),(7459,42160,’Young Trixie’,1,6),(7459,65202,’Young Speed Racer’,2,7),(7459,9195,’Mr. Musha’,0,8),(7459,44792,’Fuji Announcer’,2,9),(7459,6487,’Ben Burns’,2,10),(7459,9192,’Mr. Togokahn’,2,11),(7459,27084,’Horuko Togokahn’,0,12),(7459,16718,’Gennie’,0,13),(7459,11279,’Royalton’,2,14),(7459,1050936,’Minx’,0,15),(7459,112013,’Taejo Togokahn’,2,16),(7459,677,’Grey Ghost’,2,17),(7459,11953,’Inspektor Detektor’,2,18),(7459,1856,’Cannonball Taylor’,2,19),(7459,20259,’Delila’,1,20),(7459,40640,’Senior Race Official’,1,21),(7459,112832,’Japanese Announcer’,0,22),(7459,1072105,’Persian Announcer’,0,23),(7459,1157287,’Chinese Announcer’,2,24),(7459,93111,’Sparky’,2,25),(1895,3061,’Obi-Wan Kenobi’,2,0),(1895,524,’Padmu00e9 Amidala’,1,1),(1895,17244,’Anakin Skywalker / Darth Vader’,2,2),(1895,27762,’Chancellor Palpatine / Darth Sidious’,2,3),(1895,2231,’Mace Windu’,2,4),(1895,113,’Count Dooku’,2,5),(1895,6,’C-3PO’,2,6),(1895,130,’R2-D2′,2,7),(1895,7908,’Yoda (Voice)’,2,8),(1895,33181,’Senator Bail Organa’,2,9),(1895,24343,’Chewbacca’,2,10),(1895,31923,’Sio Bibble’,2,11),(1895,33197,’Jar Jar Binks’,2,12),(1895,20806,’Ki-Adi-Mundi / Nute Gunray’,2,13),(1895,33192,’Owen Lars’,2,14),(1895,131634,’Beru Lars’,0,15),(1895,71536,’General Grievous (voice)’,2,16),(1895,7242,’Commander Cody’,2,17),(1895,27752,’Tion Medon’,2,18),(1895,33185,’Captain Colton’,0,19),(1895,82434,’Governor Tarkin’,2,20),(1895,7024,’Cin Drallig’,2,21),(1895,1445414,’Luke Skywalker & Leia Organa’,0,22),(1895,15152,’Darth Vader (voice)’,0,23),(1895,1,’Baron Papanoida’,2,24),(1895,1428219,’Zett Jukassa’,0,25),(1895,1427863,’Terr Taneel’,0,26),(1895,1235784,’Chi Eekway’,0,27),(1895,33182,’Captain Typho’,2,28),(1895,33184,’Captain Antilles’,2,29),(1895,1167087,’Mas Amedda’,2,30),(1895,15293,’Queen of Naboo’,0,31),(1895,1427911,’Plo Koon’,0,32),(1895,1428211,’Queen of Alderaan’,0,33),(1895,1428220,’Agen Kolar’,0,34),(1895,1427941,’Senator Orn Free Taa’,0,35),(1895,1428221,’Saesee Tiin’,0,36),(1895,1428222,’Aayla Secura’,0,37),(1895,1427935,’Clone Trooper’,0,38),(1895,85351,’Ruwee Naberrie’,2,39),(1895,117451,’Jobal Naberrie’,1,40),(1895,79966,’Sola Naberrie’,1,41),(1895,1428223,’Ryoo Naberrie’,0,42),(1895,1428224,’Pooja Naberrie’,0,43),(1895,1428225,’Sly Moore’,0,44),(1895,139654,’Mon Mothma’,1,45),(1895,1322179,’Fang Zar’,0,46),(1895,15342,’Malu00e9-Dee’,2,47),(1895,7241,’Nee Alavar’,1,48),(1895,75175,’Giddean Danu’,2,49),(1895,1231126,’Moteu00e9′,0,50),(1895,1428265,’Whie’,0,51),(1895,1428270,’Bene’,0,52),(1895,1428273,’Wookiee’,0,53),(1895,1428274,’Wookiee’,0,54),(1895,1428276,’Wookiee’,0,55),(1895,1428279,’Wookiee’,0,56),(1895,1428284,’Wookiee’,0,57),(1895,1428287,’Wookiee’,0,58),(1895,1428293,’Wookiee’,0,59),(1894,3061,’Obi Wan Kenobi’,2,0),(1894,524,’Padmu00e9 Amidala’,1,1),(1894,17244,’Anakin Skywalker’,2,2),(1894,27762,’Chancellor Palpatine’,2,3),(1894,2231,’Mace Windu’,2,4),(1894,113,’Count Dooku’,2,5),(1894,6,’C-3PO / Dannl Faytonni’,2,6),(1894,130,’R2-D2′,2,7),(1894,7908,’Yoda (Voice)’,2,8),(1894,33197,’Jar Jar Binks / Achk Med-Beq (voice)’,2,9),(1894,33190,’Shmi Skywalker’,1,10),(1894,31923,’Govenor Sio Bibble’,2,11),(1894,33198,’Watto (voice)’,0,12),(1894,20806,’Ki-Adi-Mundi / Viceroy Nute Gunray’,2,13),(1894,79106,’Madame Jocasta Nu’,1,14),(1894,7242,’Jango Fett’,2,15),(1894,33181,’Senator Bail Organa’,2,16),(1894,33182,’Capt. Typho’,2,17),(1894,33189,’Boba Fett’,2,18),(1894,93114,’Zam Wesell’,1,19),(1894,12536,’Cliegg Lars’,2,20),(1894,33192,’Owen Lars’,2,21),(1894,131634,’Beru’,0,22),(1894,33191,’Queen Jamillia’,0,23),(1894,9827,’Dormu00e9′,1,24),(1894,33187,’Cordu00e9′,0,25),(1894,9374,’Elan Sleazebaggano’,2,26),(1894,33186,’Gilramos Libkath’,0,27),(1894,33188,’Dexter Jettster (voice)’,0,28),(1894,75742,’Lama Su (voice)’,2,29),(1894,7241,’Taun We (voice)’,1,30),(1894,51671,’Hermione Bagwa / WA-7′,1,31),(1894,1427911,’Plo Koon’,0,32),(1894,1167087,’Mas Amedda’,2,33),(1894,39679,’Naboo lieutenant’,2,34),(1894,1427935,’Clone Trooper’,0,35),(1894,1427941,’Senator Orn Free Taa’,0,36),(1894,56504,’Senator Ask Aak / Passel Argente’,0,37),(1894,1427944,’Kit Fisto’,0,38),(1894,1427945,’J.K. Burtola’,0,39),(1894,1427946,’Mari Amithest’,0,40),(1894,20982,’Poggle the Lesser (voice) (uncredited)’,2,41),(585,1230,’Sullivan (voice)’,2,0),(585,7904,’Mike (voice)’,2,1),(585,7905,’Boo (voice)’,1,2),(585,884,’Randall (voice)’,2,3),(585,5563,’Waternoose (voice)’,2,4),(585,7906,’Celia (voice)’,1,5),(585,10,’Roz (voice)’,2,6),(585,7907,’Yeti (voice)’,2,7),(585,7908,’Fungus (voice)’,2,8),(585,7909,’Floor Manager (voice)’,2,10),(585,5149,’Flint (voice)’,1,11),(585,7882,’Bile (voice)’,2,12),(585,7910,’George (voice)’,0,13),(585,19545,’Additional Voices (voice)’,2,14),(585,78317,’Additional Voices (voice)’,2,15),(585,70615,’Additional Voices (voice)’,2,16),(585,74492,’Additional Voices (voice)’,2,17),(585,81843,’Additional Voices (voice)’,1,18),(585,91024,’Additional Voices (voice)’,1,19),(585,12890,’Additional Voices (voice)’,2,20),(585,151385,’Additional Voices (voice)’,2,21),(585,75331,’Additional Voices (voice)’,1,22),(585,86006,’Additional Voices (voice)’,2,23),(585,1268105,’Additional Voices (voice)’,0,24),(585,84213,’Additional Voices (voice)’,2,25),(585,198810,’Additional Voices (voice)’,0,26),(585,34737,’Additional Voices (voice)’,2,27),(585,117081,’Additional Voices (voice)’,1,28),(585,167666,’Additional Voices (voice)’,0,29),(585,62646,’Additional Voices (voice)’,2,30),(585,167667,’Additional Voices (voice)’,2,31),(585,1231571,’Additional Voices (voice)’,0,32),(585,214701,’Additional Voices (voice)’,0,33),(585,52699,’Additional Voices (voice)’,2,34),(585,111466,’Additional Voices (voice)’,0,35),(585,84493,’Additional Voices (voice)’,0,36),(585,35159,’Additional Voices (voice)’,1,37),(585,38703,’Additional Voices (voice)’,1,38),(585,7998,’Trailer Mom (voice) (as Bret Parker)’,0,39),(585,61969,’Additional Voices (voice)’,2,40),(585,1268117,’Additional Voices (voice)’,0,41),(585,15898,’Additional Voices (voice)’,2,42),(585,157626,’Additional Voices (voice)’,2,43),(585,152963,’Additional Voices (voice)’,1,44),(585,7911,’Additional Voices (voice)’,0,45),(585,8066,’Additional Voices (voice)’,0,46),(585,1268123,’Additional Voices (voice)’,0,47),(585,954958,’Additional Voices (voice)’,2,48),(585,1156411,’Additional Voices (voice)’,0,50),(585,8,’Additional Voices (voice)’,2,51),(585,12900,’Rex (outtakes) (voice) (uncredited)’,2,52),(585,7884,’Needleman / Smitty (voice)’,2,53),(585,197,’Additional Voices (voice)’,2,54),(1893,3896,’Qui-Gon Jinn’,2,0),(1893,3061,’Obi Wan Kenobi’,2,1),(1893,524,’Padmu00e9 Amidala’,1,2),(1893,33196,’Anakin Skywalker’,2,3),(1893,27762,’Senator Palpatine’,2,4),(1893,6,’C-3PO (voice)’,2,5),(1893,130,’R2-D2′,2,6),(1893,33190,’Shmi Skywalker’,1,7),(1893,7908,’Yoda (voice)’,2,8),(1893,31923,’Governor Sio Bibble’,2,9),(1893,31925,’Capt. Panaka’,2,10),(1893,33197,’Jar Jar Binks (Voice)’,2,11),(1893,28641,’Chacellor Valorum’,2,12),(1893,2231,’Mace Windu’,2,13),(1893,11007,’Darth Maul’,2,14),(1893,11115,’Darth Maul / Battle Droid Commander / Gungan Scout (voice)’,2,15),(1893,116,’Sabu00e9′,1,16),(1893,20806,’Nute Gunray / Ki-Adi-Mundi / Lott Dodd / Republic Cruiser Pilot’,2,17),(1893,8318,’Boss Nass (voice)’,2,18),(1893,33198,’Watto (voice)’,0,19),(1893,1074722,’Sebulba (voice)’,0,20),(1893,61965,’Fode (voice)’,2,21),(1893,11719,’Beed (voice)’,2,22),(1893,17287,’Palace Guard’,2,23),(1893,1769,’Sachu00e9′,1,24),(1893,53916,’Ric Oliu00e9′,2,25),(1893,25441,’Capt. Tarpals’,2,26),(1893,11184,’Wald / Pod race spectator / Mos Espa Citizen’,2,27),(1893,589398,’Mas Amenda / Orn Free Taa / Oppo Rancisis / Rune Haako / Horox Ryyder / Graxol Kelvynn / Mick Reckrap’,0,28),(1893,33186,’Daultay Dofine / Plo Koon / Bib Fortuna’,0,29),(1893,9139,’Fighter Pilot Bravo 5′,1,30),(1893,37055,’Fighter Pilot Bravo 2′,2,31),(1893,1198147,’Fighter Pilot Bravo 3′,0,32),(1893,1427789,’Rabu00e9′,0,33),(1893,1427790,’Eirtau00e9′,0,34),(1893,1427792,’Yanu00e9′,0,35),(1893,33399,’Republic Cruiser Captain’,0,36),(1893,1427795,’TC-14′,0,37),(1893,1427805,’Jira’,0,38),(1893,1427806,’Kitster’,0,39),(1893,1427809,’Seek’,0,40),(1893,1235784,’Amee’,0,41),(1893,1427810,’Melee’,0,42),(1893,27175,’Eeth Koth’,2,43),(1893,1427818,’Adi Gallia’,0,44),(1893,986518,’Saesee Tiin’,0,45),(1893,1404342,’Yarael Poof’,0,46),(1893,1427835,’Even Piell’,0,47),(1893,1427836,’Depa Billaba’,0,48),(1893,1427839,’Yaddle’,0,49),(1893,1427843,’Aks Moe’,0,50),(1893,30083,’TC-14 (voice)’,1,51),(1893,1427852,’Rune Haako (voice)’,0,52),(1893,1427858,’Daultay Dofine (voice)’,0,53),(1893,1220998,’Sen. Lott Dodd / Gragra (voice)’,0,54),(1893,1329799,’Aks Moe (voice)’,0,55),(1893,1427863,’Tey How / Diva Funquita (voice) (as Tyger)’,0,56),(1893,1444238,’Mawhonic’,0,57),(2395,24891,’Asterix’,2,0),(2395,16927,’Obelix’,2,1),(2395,24893,’Troubadix’,0,2),(2395,24895,’Vielverdrus’,2,3),(2395,24896,’Romantix’,2,4),(2395,19162,’Miraculix’,2,5),(2395,24899,’Esmeralda’,1,6),(2395,15135,’Julus Cu00e4sar’,2,7),(2395,47820,’Brutus’,2,8),(2395,47821,’Prinzessin Irina’,1,9),(2395,18072,’Redkeinstus’,2,10),(2395,10847,’Doktormabus’,2,11),(2395,47822,’Ku00f6nig Aderlas’,2,12),(2395,47824,’Madame Methusalix’,0,13),(2395,47825,’Claudius Muscullus’,2,14),(2395,47826,’Obstinatus’,0,15),(2395,47827,’Alpha’,2,16),(2395,47828,’Beta’,0,17),(2395,47829,’Omega’,0,18),(2395,228780,’Lalanix’,0,20),(2395,216299,’Schumix’,2,21),(2395,19731,’Numu00e9rodis’,0,22),(2395,1177654,’Tonus Parker’,0,23),(2395,35957,’Agecanonix’,0,24),(2395,1045532,’L\’entraineur’,0,25),(2395,97085,’Numerix’,2,26),(9619,517,’Harry Dalton’,2,0),(9619,2713,’Rachel Wando’,1,1),(9619,58727,’Lauren Wando’,1,2),(9619,108939,’Graham Wando’,2,3),(9619,1219410,’Ruth’,1,4),(9619,15414,’Paul Dreyfus’,2,5),(9619,31511,’Greg’,2,6),(9619,174794,’Terry Furlong’,2,7),(9619,14722,’Nancy’,1,8),(9619,21629,’Stan’,2,9),(9619,1469,’Les Worrell’,2,10),(9619,23975,’Dr. Jane Fox’,1,11),(9619,105649,’Sheriff Turner’,2,12),(9619,183404,’Mary Kelly’,1,13),(9619,6916,’Norman Gates’,2,14),(9619,122491,’Pilot’,2,15),(1593,7399,’Larry Daley’,2,0),(1593,17834,’Nick Daley’,2,1),(1593,17832,’Rebecca’,1,2),(1593,2157,’Theodore Roosevelt’,2,3),(1593,61303,’Cecil Fredericks’,2,4),(1593,1937,’Kaa’,0,5),(1593,8854,’Reginald’,2,6),(1593,17835,’Bambi’,2,7),(1593,17836,’Erica Daley’,1,8),(1593,17837,’Attila der Hunne’,2,9),(1593,17838,’Ahkmenrah’,2,10),(1593,17839,’Christopher Columbus’,2,11),(1593,17840,’Taxi Driver’,2,12),(1593,4581,’Octavius’,2,13),(1593,17841,’Sacajawea’,1,14),(1593,887,’Jedediah Smith’,2,15),(1593,1428580,’Dexter’,0,16),(1593,22226,’Don’,2,17),(1593,32394,’Debbie’,1,18),(1593,18,’Easter Island Head (voice)’,2,19),(1593,1480047,’TV News Anchor’,2,20),(714,517,’James Bond’,2,0),(714,378,’Elliot Carver’,2,1),(714,1620,’Wai Lin’,1,2),(714,10742,’Paris Carver’,1,3),(714,10743,’Henry Gupta’,2,4),(714,10744,’Stamper’,0,5),(714,10671,’Jack Wade’,2,6),(714,3418,’Dr. Kaufman’,2,7),(714,5309,’M’,1,8),(714,9906,’Q’,2,9),(714,10699,’Miss Moneypenny’,1,10),(714,5414,’Charles Robinson’,2,11),(714,10746,’Admiral Roebuck’,2,12),(714,10747,’Minister of Defence’,2,13),(714,10748,’General Bukharin’,2,14),(714,58778,’Tamara Steel’,1,15),(714,1238610,’PR Lady’,0,16),(714,23608,’Dr. Dave Greenwalt’,2,17),(714,10208,’Master Sergeant 3′,2,18),(714,1423897,’Professor Inga Bergstrom’,0,19),(714,176228,’Stealth Boat Captain’,0,20),(714,1184909,’Captain – HMS Chester’,2,21),(714,153208,’Firing Officer – HMS Chester’,0,22),(714,25688,’Cmdr. Richard Day – HMS Devonshire’,0,23),(714,1423898,’Lt. Cmdr. Peter Hume – HMS Devonshire’,0,24),(714,1423899,’Lieutenant Commander – HMS Devonshire’,0,25),(714,7031,’Yeoman – HMS Devonshire’,2,26),(714,17276,’Leading Seaman – HMS Devonshire’,2,27),(714,742,’Admiral Kelly – HMS Bedford’,2,29),(714,36666,’Captain – HMS Bedford’,2,30),(714,19923,’Air Warfare Officer – HMS Bedford’,2,31),(714,63608,’Principal Warfare Officer – HMS Bedford’,2,32),(714,74056,’Leading Seaman – HMS Bedford’,2,33),(714,1247020,’Beth Davidson’,1,34),(2024,2461,’Benjamin Martin’,2,0),(2024,1810,’Gabriel Martin’,2,1),(2024,20810,’Charlotte Selton’,1,2),(2024,11355,’Col. William Tavington’,2,3),(2024,10698,’Jean Villeneuve’,2,4),(2024,2955,’Col. Harry Burwell’,2,5),(2024,20811,’Anne Howard’,1,6),(2024,207,’Gen. Cornwallis’,2,7),(2024,15374,’John Billings’,2,8),(2024,10825,’Dan Scott’,2,9),(2024,2059,’Capt. Wilkins’,2,10),(2024,20812,’Occam’,2,11),(2024,20813,’Peter Howard’,0,12),(2024,20814,’Thomas Martin’,2,13),(2024,20815,’Susan Martin’,1,14),(2024,4940,’Nathan Martin’,2,15),(2024,20816,’Samuel Martin’,0,16),(2024,20817,’Charles O\’Hara’,0,17),(2024,33235,’William Martin’,2,18),(2024,9807,’Reverend Oliver’,2,19),(2024,1615196,’Matthew’,2,20),(163,1461,’Danny Ocean’,2,0),(163,287,’Rusty Ryan’,2,1),(163,1922,’Isabel Lahiri’,1,2),(163,1204,’Tess Ocean’,1,3),(163,1271,’Terry Benedict’,2,4),(163,1893,’Virgil Malloy’,2,5),(163,1894,’Turk Malloy’,2,6),(163,1900,’Yen’,2,7),(163,1897,’Frank Catton’,2,8),(163,1896,’Basher Tarr’,2,9),(163,1892,’Linus Caldwell’,2,10),(163,1895,’Saul Bloom’,2,11),(163,1898,’Livingston Dell’,2,12),(163,827,’Reuben Tishkoff’,2,13),(163,1923,’Matsui’,2,14),(163,1924,’van der Woude’,0,15),(163,1925,’Franu00e7ois Toulour’,2,16),(163,1926,’Roman Nagel’,2,17),(163,62,’Himself’,2,18),(163,1956,’Molly Star/ Mrs. Caldwell’,1,19),(163,3926,’Gaspar LeMarque’,0,20),(163,73475,’Museum Director’,2,21),(163,96935,’Johan’,0,22),(163,1361236,’Hotel Manager’,0,23),(163,1328364,’Hotel Employee’,0,24),(163,76340,’Toulour\’s Butler’,1,25),(163,8772,’Commissario Giordano’,2,26),(787,11701,’Jane Smith’,1,0),(787,287,’John Smith’,2,1),(787,4937,’Eddie’,2,2),(787,11702,’Benjamin Danz’,2,3),(787,11703,’Jasmine’,1,4),(787,65827,’Father’,2,5),(787,3288,’Martin Coleman’,0,6),(787,11704,’Suzy Coleman’,1,7),(787,11705,’Gwen’,1,8),(787,59156,’Julie – Associate #1′,1,9),(787,41421,’Jade – Associate #2′,1,10),(787,1347627,’Janet – Associate #3′,0,11),(787,68495,’Jessie – Associate #4′,1,12),(787,1347628,’Jamie – Associate #5′,0,13),(787,1667654,’Bodyguard #1′,2,14),(2567,6193,’Howard Hughes’,2,0),(2567,112,’Katharine Hepburn’,1,1),(2567,3967,’Ava Gardner’,1,2),(2567,4764,’Noah Dietrich’,2,3),(2567,7447,’Juan Trippe’,2,4),(2567,21278,’Senator Ralph Owen Brewster’,2,5),(2567,65,’Professor Fitz’,2,6),(2567,9642,’Errol Flynn’,2,7),(2567,17442,’Faith Domergue’,1,8),(2567,6413,’Jack Frye’,2,9),(2567,1213786,’Robert Gross’,2,10),(2567,5293,’Roland Sweet’,2,11),(2567,77070,’Jean Harlow’,1,12),(2567,36801,’Johnny Meyer’,2,13),(2567,11154,’Glenn Odekirk’,2,14),(2567,4432,’Mrs. Hepburn’,1,15),(2567,4171,’Louis B. Mayer’,2,16),(2567,15318,’Marine’,2,17),(2567,99185,’Howard Hughes\’s Mother’,1,18),(2567,1218282,’Spencer Tracy’,2,19),(2567,177898,’Secretary’,1,20),(2567,52995,’Joseph Breen’,2,21),(2567,6074,’Dr. Hepburn’,0,22),(2567,63296,’Ludlow’,2,23),(2567,84518,’Howard Hughes – 9 Years Old’,2,24),(2567,164630,’Frank’,2,25),(2567,28009,’Cocoanut Grove Band Member’,2,26),(2567,30617,’Cocoanut Grove Patron’,2,27),(2567,146084,’Cocoanut Grove Vocalist #1′,2,28),(2567,84848,’Cocoanut Grove Vocalist #2′,0,29),(2567,218947,’Cocoanut Grove Vocalist #3′,1,30),(2567,1674587,’Pan Am Executive #1′,2,31),(2567,1229676,’Pan Am Executive #2′,2,32),(2567,1240748,’Crony of Louis B. Mayer’,2,33),(2567,74651,’Cigarette Girl’,1,34),(2567,141762,’Hell\’s Angels Director of Photography’,2,35),(2567,17417,’Hell\’s Angels Pilot’,2,36),(2567,115596,’Radio Announcer’,0,37),(2567,7531,’Aide to Howard’,2,38),(2567,81430,’Maitre d\”,2,39),(2567,38529,’Waiter’,2,40),(2567,154773,’Engineer’,2,41),(2567,65729,’Timer’,2,42),(2567,29468,’Uncle Willy’,2,43),(2567,1674603,’Little Girl’,1,44),(2567,159056,’Man on Crutches’,2,45),(2567,51389,’Another Guest #1′,2,46),(2567,198630,’Another Guest #2′,1,47),(2567,155437,’Emcee’,2,48),(2567,21293,’Chairman MPA’,2,49),(2567,216778,’Noah\’s Wife’,1,50),(2567,51538,’Helen – Jack Frye\’s wife’,1,51),(2567,1983,’Jorge’,2,52),(2567,108302,’Hughes\’ Staff Person’,0,53),(2567,1089927,’Nick the Custodian’,0,54),(2567,1673119,’Doctor’,2,55),(2567,1569328,’FBI Agent’,2,56),(2567,1177460,’Brewster\’s Maid’,1,57),(2567,224077,’Another Senator’,2,58),(2567,1674596,’Esquire Starlet (uncredited)’,1,59),(2567,1674590,’Starlet (uncredited)’,1,60),(2567,1577405,’Starlet (uncredited)’,1,61),(2567,1674588,’Coat Check Girl (uncredited)’,1,62),(2567,1330755,’Editor (uncredited)’,1,63),(2567,1372185,’Bi-Plane Mechanic (uncredited)’,2,64),(1639,18277,’Annie Porter’,1,0),(1639,12261,’Alex Shaw’,2,1),(1639,5293,’John Geiger’,2,2),(1639,7242,’Juliano’,2,3),(1639,15105,’Harvey’,2,4),(1639,13023,’Debbie’,1,5),(1639,3977,’Lt. Herb \’Mac\’ McMahon’,2,6),(1639,2683,’Maurice’,2,7),(1639,30044,’Captain Pollard’,2,8),(1639,6727,’Liza (Cruise Director)’,1,9),(1639,1558982,’Isabel’,0,10),(1639,1226523,’Sheri Silver’,0,11),(1639,18280,’Merced’,2,12),(1639,18279,’Drew’,1,13),(1639,53490,’Supertanker Captain’,0,14),(1639,88525,’Bridge Officer’,0,15),(1571,62,’John McClane’,2,0),(1571,15033,’Matthew \’Matt\’ Farrell’,2,1),(1571,18082,’Thomas Gabriel’,2,2),(1571,7248,’Bowman’,2,3),(1571,21045,’Mai Linh’,1,4),(1571,17628,’Lucy McClane’,1,5),(1571,19303,’The Warlock’,2,6),(1571,21049,’Agent Johnson’,2,7),(1571,1215689,’Taylor’,1,8),(1571,21051,’Russo’,2,9),(1571,74124,’Casper’,2,10),(1571,61697,’Raj’,2,11),(1571,71467,’Clay’,2,12),(1571,21946,’Rand’,2,13),(1571,21047,’Trey’,2,14),(1571,35546,’Del’,2,15),(1571,6752,’Agent Molina’,2,16),(1571,94791,’Jim’,2,17),(1571,141432,’Goatee’,2,18),(1571,8191,’Scalvino’,2,19),(1571,168925,’Teller’,1,20),(1571,55538,’Chuck Summer’,2,21),(1571,60536,’Assassin (uncredited)’,2,22),(120,109,’Frodo Baggins’,2,0),(120,1327,’Gandalf the Grey’,2,1),(120,112,’Galadriel’,1,2),(120,114,’Legolas’,2,3),(120,48,’Boromir’,2,4),(120,110,’Aragorn’,2,5),(120,1331,’Elrond’,2,6),(120,882,’Arwen Evenstar’,1,7),(120,655,’Gimli’,2,8),(120,113,’Saruman’,2,9),(120,1329,’Peregrin \’Pippin\’ Took’,2,10),(120,1330,’Meriadoc \’Merry\’ Brandybuck’,2,11),(120,1328,’Samwise \’Sam\’ Gamgee’,2,12),(120,1333,’Gollum’,2,13),(120,65,’Bilbo Baggins’,2,14),(120,1332,’Haldir’,2,15),(120,1365,’Lurtz’,0,16),(120,1366,’Sauron’,2,17),(120,965278,’Rose \’Rosie\’ Cotton’,1,18),(120,20982,’Celeborn’,2,19),(120,1367,’Voice of the Ring (voice)’,2,20),(120,585902,’Everard Proudfoot’,0,21),(120,1201328,’Mrs. Proudfoot’,0,22),(120,1590834,’Gondorian Archivist’,2,23),(120,1217771,’Gil-galad’,2,24),(120,1590835,’Witch-king’,0,25),(8489,2888,’Cassius Clay’,2,0),(8489,134,’Drew \’Bundini\’ Brown’,2,1),(8489,10127,’Howard Cosell’,2,2),(8489,16214,’Malcolm X’,2,3),(8489,21399,’Angelo Dundee’,2,4),(8489,2954,’Howard Bingham’,2,5),(8489,34,’Don King’,2,6),(8489,9575,’Sonji’,1,7),(8489,18286,’Belinda Ali’,1,8),(8489,39977,’Veronica Porche’,1,9),(8489,3977,’Chauncey Eskridge’,2,10),(8489,55259,’Dr. Ferdie Pacheco’,2,11),(8489,14888,’Bradley’,2,12),(8489,8689,’Herbert Muhammad’,2,13),(8489,4808,’Cassius Clay, Sr.’,2,14),(8489,65141,’Luis Sarria’,2,15),(8489,2390,’Martin Luther King, Jr.’,2,16),(8489,8354,’Elijah Muhammad’,2,17),(8489,155282,’Robert Lipsyte’,2,18),(8489,15854,’Joe Smiley’,2,19),(8489,990489,’Odessa’,1,20),(8489,10649,’Joseph Mobutu’,2,21),(8489,944140,’Woman Singer’,1,22),(8489,1651099,’Sam Cooke’,2,23),(8489,90449,’Sonny Liston’,2,24),(8489,112347,’Floyd Paterson’,2,25),(8489,56267,’Marlin Thomas’,2,26),(8489,172103,’Betty Shabazz’,1,27),(8489,1001741,’Malcolm X\’s Daughter’,1,28),(8489,1001742,’Malcolm X\’s Daughter’,1,29),(8489,1651120,’George Foreman’,2,30),(8489,1476049,’Ernie Terrell’,2,31),(8489,129798,’\’Smokin\’ Joe Frazier’,0,32),(8489,86808,’Rudy Clay / Rahaman Ali’,2,33),(8489,1224603,’Young Cassius Clay’,2,34),(8489,51930,’Lieutenant Jerome Claridge’,2,35),(8489,5150,’Jimmy Cannon’,2,36),(8489,2886,’Gordon Davidson’,2,37),(8489,102580,’The Doctor’,2,38),(8489,1651130,’Induction FBI Man’,2,39),(8489,155437,’Madison Square Garden Announcer’,2,40),(8489,86573,’Malcolm\’s Bodyguard’,2,41),(8489,156315,’Judge Ingraham’,2,42),(8489,1651133,’Bundini\’s Landlady’,1,43),(8489,1174795,’Bob Arum’,2,44),(8489,1459810,’CIA Man’,2,45),(8489,2142,’Asian Cosmetologist’,1,46),(8489,1191451,’Assistant Director’,2,47),(8489,223305,’Hampton House Announcer’,2,48),(8489,5290,’Lana Shabazz’,1,49),(8489,1354957,’Madison Square Garden Reporter’,2,50),(8489,1232567,’Harlem Neighbor’,1,51),(8489,1141323,’Harlem Neighbor’,2,52),(8489,36091,’Miami Cop’,2,53),(8489,1286269,’Cameraman’,0,54),(8489,1426261,’Party Guest (uncredited)’,1,55),(2048,2888,’Del Spooner’,2,0),(2048,18354,’Susan Calvin’,1,1),(2048,21088,’Sonny’,2,2),(2048,2505,’Dr. Alfred Lanning’,2,3),(2048,21089,’Lawrence Robertson’,2,4),(2048,10959,’Farber’,2,5),(2048,8687,’Lt. John Bergin’,2,6),(2048,21091,’Baldez’,2,7),(2048,172994,’Chin’,2,8),(2048,11677,’Chin’,2,9),(2048,189001,’NS4 Robot and NS5 Robot’,2,10),(2048,10869,’NS4 Robot and NS5 Robot’,2,11),(2048,21090,’Granny’,1,12),(2048,21092,’V.I.K.I.’,1,13),(2048,176695,’Asthmatic Woman’,0,14),(2048,61164,’Detective’,0,15),(2048,43931,’Homeless Man’,2,16),(2048,59181,’Young Girl’,1,17),(2048,125581,’Mob Woman’,1,18),(2048,77222,’USR Attorney #1′,2,19),(2048,1449399,’Wife’,1,20),(1495,114,’Balian de Ibelin’,2,0),(1495,10912,’Sibylla’,1,1),(1495,16940,’Tiberias’,0,2),(1495,20982,’Guy de Lusignan’,2,3),(1495,2039,’Reynald de Chatillon’,2,4),(1495,3896,’Godfrey de Ibelin’,2,5),(1495,819,’King Baldwin’,2,6),(1495,3968,’Priest’,2,7),(1495,70577,’Saladin’,0,8),(1495,34515,’Almaric’,2,9),(1495,2957,’Nasir’,2,10),(1495,230023,’Mullah’,2,11),(1495,9013,’English Sergeant’,2,12),(1495,11207,’Hospitaler’,2,13),(1495,28158,’Gravedigger’,0,14),(1495,17337,’Balian\’s Wife’,1,15),(1495,58787,’Saladin\’s Sister’,1,16),(1495,1563431,’Young Sergeant’,0,17),(1495,4455,’Templar Master’,2,18),(1495,1252814,’Richard\’s Knight’,0,19),(1635,3061,’Lincoln Six Echo / Tom Lincoln’,2,0),(1635,1245,’Jordan Two Delta / Sarah Jordan’,1,1),(1635,938,’Albert Laurent’,2,2),(1635,48,’Dr. Bernard Merrick’,2,3),(1635,884,’James \’Mac\’ McCord’,2,4),(1635,61981,’Starkweather Two Delta / Jamal Starkweather’,2,5),(1635,29445,’Jones Three Echo’,2,6),(1635,146391,’Gandu Three Echo’,2,7),(1635,154968,’Community Announcer’,1,8),(1635,154684,’Lima One Alpha’,0,9),(1635,154742,’Laurent Team Member’,2,10),(1635,18053,’Laurent Team Member’,0,11),(1635,91658,’Laurent Team Member’,2,12),(1635,1286657,’Laurent Team Member’,0,13),(1635,149334,’Laurent Team Member’,1,14),(1635,155931,’Harvest Surgeon’,0,15),(1635,157151,’Harvest Nurse’,1,16),(1635,12797,’Medical Courier’,2,17),(1635,2138,’Suzie’,1,18),(1635,10960,’Chief of Incubation’,2,19),(1635,167139,’Obgyn’,2,20),(1635,63679,’Midwife’,1,21),(1635,102567,’Harvest Surgeon’,2,22),(1635,111513,’Harvest Nurse’,1,23),(1635,1355926,’Harvest Nurse’,1,24),(1635,12218,’Institute Coroner’,2,25),(1635,180078,’Extraction Room Doctor’,2,26),(1635,1398836,’Extraction Room Technician’,0,27),(1635,91781,’Extraction Room Technician’,0,28),(1635,52924,’Dept. of Operations Supervisor’,0,29),(1635,84754,’Dept. of Operations Technician’,2,30),(1635,1815230,’Dept. of Operations Agnate’,0,31),(1635,1227538,’Elevator Agnate’,0,32),(1635,62595,’Nutrition Clerk’,1,33),(1635,1219596,’Client Services Operator’,0,34),(1635,1744152,’Atrium Tour Guide’,1,35),(1635,165371,’Tour Group Woman’,1,36),(1635,1007,’God-Like Man’,2,37),(1635,1388505,’Board Member’,0,38),(1635,8191,’Aces & Spades Barman’,2,39),(1635,156962,’Ed the Trucker’,2,40),(9679,2963,’Randall \’Memphis\’ Raines’,2,0),(9679,11701,’Sara \’Sway\’ Wayland’,1,1),(9679,1771,’Kip Raines’,2,2),(9679,18792,'(Det) Roland Castlebeck’,2,3),(9679,883,’Atlee Jackson’,2,4),(9679,2040,’Raymond Calitri’,2,5),(9679,8687,’Donny Astricky’,2,6),(9679,3087,’Otto Halliwell’,2,7),(9679,1894,’Tumbler’,2,8),(9679,18082,'(Det) Drycoff’,2,9),(9679,10128,’Toby’,2,10),(9679,980,’The Sphinx’,2,11),(9679,1582,’Freb’,2,12),(9679,58497,’Mirror Man’,0,13),(9679,3713,’Junie’,1,14),(9679,6465,’Helen Raines’,1,15),(9679,1279744,’Hype’,2,16),(9679,154883,’Frizzel’,2,17),(9679,72028,’James Lakewood’,2,18),(9679,1088201,’Cop’,2,19),(9679,28413,’Det. Mayhew’,2,20),(9679,454,’Ignacio’,2,21),(9679,1838353,’Detective Jurgens’,2,22),(98,934,’Maximus’,2,0),(98,73421,’Commodus’,2,1),(98,935,’Lucilla’,1,2),(98,936,’Proximo’,2,3),(98,194,’Marcus Aurelius’,2,4),(98,937,’Gracchus’,2,5),(98,938,’Juba’,2,6),(98,939,’Falco’,0,7),(98,940,’Gaius’,2,8),(98,941,’Quintus’,2,9),(98,942,’Hagen’,2,10),(98,2478,’Cicero’,2,11),(98,4012,’Lucius’,2,12),(98,15196,’Cassius’,2,13),(98,20761,’Tigris’,2,14),(98,58787,’Maximus\’ Wife’,1,15),(98,1052482,’Praetorian Guard #1′,2,16),(98,9236,’Maximus\’ Son’,0,17),(98,1715,’Engineer’,2,18),(98,41379,’Slave Trader’,2,19),(98,80368,’Praetorian Officer’,2,20),(98,2220,’Assassin #1′,2,21),(98,27408,’Assassin #2′,2,22),(98,200689,’Valerius’,2,23),(98,124314,’Rome Trainer #1′,2,25),(98,78018,’Trainer 1′,2,26),(98,96993,’Trainer 2′,2,27),(98,27654,’Proximo\’s Man’,0,28),(98,1376050,’Officer 1′,2,29),(98,1475236,’Officer 2′,0,30),(98,1206006,’Centurion (uncredited)’,0,31),(98,1114427,’Centurion (uncredited)’,0,32),(98,1207203,’Roman Soldier (uncredited)’,0,33),(98,1207207,’Roman Soldier (uncredited)’,0,34),(98,168524,’Fighter (uncredited)’,0,35),(98,1566178,’Sedan Chair Carrier (uncredited)’,0,36),(98,1566183,’German Barbarian (uncredited)’,0,37),(98,1434599,’Coliseum Gladiator (uncredited)’,0,38),(180,500,’Chief John Anderton’,2,0),(180,72466,’Danny Witwer’,2,1),(180,2206,’Agatha’,1,2),(180,2201,’Director Lamar Burgess’,2,3),(180,2207,’Dr. Iris Hineman’,1,4),(180,53,’Dr. Solomon Eddie’,2,5),(180,1462,’Gideon’,2,6),(180,2202,’Jad’,2,7),(180,2208,’Lara Clarke’,1,8),(180,24173,’Leo Crow’,2,9),(180,95604,’Wally the Caretaker’,2,10),(180,2203,’Fletcher’,2,11),(180,2205,’Evanna’,1,12),(180,32286,’Knott’,2,13),(180,69055,’Anne Lively’,1,16),(180,155492,’Sarah Marks’,1,17),(180,72028,’Howard Marks’,2,18),(180,1219313,’Old Woman’,1,19),(180,1273694,’Chief Justice Pollard’,2,20),(180,81685,’Pre-Crime Cop’,2,21),(180,6941,’Bus Passenger (uncredited)’,1,22),(180,15338,’Hotel Clerk’,2,23),(180,130749,’Rufus Riley’,2,24),(672,10980,’Harry Potter’,2,0),(672,10989,’Ron Weasley’,2,1),(672,10990,’Hermione Granger’,1,2),(672,194,’Albus Dumbledore’,2,3),(672,4566,’Severus Snape’,2,4),(672,10993,’Draco Malfoy’,2,5),(672,11181,’Gilderoy Lockhart’,2,6),(672,1923,’Rubeus Hagrid’,2,7),(672,10978,’Minerva McGonagall’,1,8),(672,11180,’Argus Filch’,2,9),(672,10991,’Ginny Weasley’,1,10),(672,96841,’Neville Longbottom’,2,11),(672,11355,’Lucius Malfoy’,2,12),(672,1834,’Myrtle Warren’,1,13),(672,13014,’Dobby (voice)’,2,14),(672,96851,’Fred Weasley’,2,15),(672,140368,’George Weasley’,2,16),(672,10983,’Vernon Dursley’,2,17),(672,10981,’Petunia Dursley’,1,18),(672,10982,’Dudley Dursley’,2,19),(672,8930,’Nicholas de Mimsy-Porpington’,0,20),(672,477,’Molly Weasley’,1,21),(672,20999,’Arthur Weasley’,2,22),(672,956224,’Vincent Crabbe’,2,23),(672,11212,’Gregory Goyle’,2,24),(672,234923,’Dean Thomas’,0,25),(672,234922,’Seamus Finnigan’,2,26),(672,11179,’Oliver Wood’,2,27),(672,1364032,’Colin Creevey’,0,28),(672,10992,’Percy Weasley’,2,29),(672,11184,’Filius Flitwick’,2,30),(672,23076,’Cornelius Fudge’,2,31),(672,6199,’Pomona Sprout’,1,32),(672,9138,’Poppy Pomfrey’,1,33),(672,8444,’Tom Marvolo Riddle’,2,34),(672,1797002,’Justin Finch-Fletchley’,0,35),(672,871100,’Lee Jordan’,2,36),(672,11183,’Susan Bones’,0,37),(672,1090782,’Ernie MacMillan’,0,38),(672,11185,’Katie Bell’,0,39),(672,11186,’Alicia Spinnet’,0,40),(672,10655,’The Sorting Hat (voice)’,2,41),(672,740,’Aragog (voice)’,2,42),(672,11177,’Young Hagrid’,0,43),(672,1797000,’Penelope Clearwater’,0,44),(672,1796502,’Angelina Johnson’,0,45),(672,1797001,’Marcus Flint’,0,46),(672,1090783,’Hannah Abbott’,0,47),(672,1797003,’Millicent Bulstrode’,0,48),(672,58778,’The Grey Lady’,1,49),(672,1643,’James Potter’,2,50),(672,10988,’Lily Potter’,1,51),(672,14950,’Mr. Mason’,2,52),(672,11182,’Mrs Mason’,0,53),(672,11178,’Mrs Granger’,0,54),(672,203538,’Mr. Granger’,0,55),(672,10986,’Angus’,0,56),(672,1797009,’Lavender Brown’,0,58),(672,105823,’Armando Dippet’,0,59),(672,94020,’Bozo’,2,60),(672,1507605,’Girl with Flowers’,1,61),(869,13240,’Leo Davidson’,2,0),(869,3129,’General Thade’,2,1),(869,1283,’Ari’,1,2),(869,61981,’Attar’,2,3),(869,10823,’Karubi’,2,4),(869,13241,’Daena’,1,5),(869,13242,’Limbo’,2,6),(869,11398,’Krull’,2,7),(869,13243,’Senator Nado’,2,8),(869,10017,’Zaius’,2,9),(869,44824,’Red Soldier’,0,10),(869,13260,’A woman’,1,11),(869,1225896,’Friend At Leo\’s Party’,2,12),(869,4452,’Nova’,1,13),(869,33521,’Birn’,2,14),(869,3493,’Gunnar’,2,15),(869,8191,’Commander Karl Vasich’,2,16),(869,1295,’Gorilla Kid / Thade\’s Niece’,2,17),(869,3952,’Limbo\’s First Handler / Ape Commander / 2nd Ape Soldier’,2,18),(869,16178,’Old Ape #2′,2,19),(869,4030,’Monkey Grinder\’s Pet’,2,20),(869,2076,’Sandar’,2,21),(869,18917,’Tival’,2,22),(280,1100,’The Terminator’,2,0),(280,2713,’Sarah Connor’,1,1),(280,418,’T-1000′,2,2),(280,820,’John Connor’,2,3),(280,75027,’Old John Connor’,2,4),(280,3977,’Dr. Miles Bennett Dyson’,2,5),(280,2716,’Dr. Peter Silberman’,2,6),(280,3981,’Janelle Voight’,1,7),(280,3982,’Todd Voight’,2,8),(280,3978,’Tarissa Dyson’,1,9),(280,3979,’Enrique Salceda’,2,10),(280,3980,’Tim’,2,11),(280,20761,’Mall Security Guard (uncredited)’,2,12),(280,8856,’Danny Dyson’,2,13),(280,101660,’Douglas’,0,14),(280,87404,’Cigar Biker’,0,15),(280,157633,’Lloyd’,2,16),(280,27530,’Mossberg’,2,17),(280,99778,’Weatherby’,2,18),(280,9568,’Jock’,2,19),(280,16184,’Lewis the Guard’,2,20),(280,16185,’Lewis as T-1000′,2,21),(280,56459,’Attendant’,0,22),(280,87317,’Girl’,1,23),(280,107362,’Vault Guard’,0,24),(280,193048,’Gibbons’,2,25),(280,84710,’Moshier’,2,26),(280,14329,’SWAT Team Leader’,2,27),(280,16563,’Police Chopper Pilot’,0,28),(280,132054,’Tanker Truck Driver’,2,29),(280,159264,’Burly Attendant’,2,30),(280,33501,’Burly Attendant’,2,31),(280,30148,’Cyberdyne Tech’,0,32),(280,1583678,’Jock’,2,33),(280,1448219,’Cyberdyne Tech (uncredited)’,0,34),(280,31561,’Cyberdyne Tech (uncredited)’,0,35),(280,13458,’Male Nurse (uncredited)’,2,36),(280,1562995,’Frisbee Player (uncredited)’,0,37),(280,1236011,’SWAT Officer (uncredited)’,0,38),(280,2711,’Galleria Photographer / Cop (uncredited)’,2,39),(280,42168,’Roadside Window Woman (Special Edition Restoration)’,1,40),(280,1881258,’Baby John Connor’,0,41),(4982,5292,’Frank Lucas’,2,0),(4982,934,’Richie Roberts’,2,1),(4982,5294,’Huey Lucas’,2,2),(4982,16851,’Detective Trupo’,2,3),(4982,40376,’Eva’,0,4),(4982,15854,’Lou Toback’,2,5),(4982,40377,’Nate’,2,6),(4982,16861,’Freddie Spearman’,2,7),(4982,150,’Moses Jones’,2,8),(4982,75604,’Alfonso Abruzzo’,2,9),(4982,57997,’Jimmy Zee’,2,10),(4982,15532,’Mama Lucas’,1,11),(4982,31839,’Doc’,2,12),(4982,17832,’Laurie Roberts’,1,13),(4982,1135538,’Michael Roberts’,2,14),(4982,40543,’Javier J. Rivera’,2,15),(4982,9777,’Nicky Barnes’,2,16),(4982,23346,’Dominic Cattano’,2,17),(4982,162542,’Mrs. Dominic Cattano’,1,18),(4982,3977,’Charlie Williams’,2,19),(4982,13939,’Joey Sadano’,2,20),(4982,17605,’Tango’,2,21),(4982,4238,’Turner Lucas’,0,22),(4982,76126,’Stevie Lucas’,0,23),(4982,18472,’Campizi’,2,24),(4982,20388,’Richie\’s Attorney’,1,25),(4982,17194,’MP’,2,26),(4982,1182724,’FBI Agent’,0,27),(4982,1232501,’Banker’,2,28),(4982,154228,’Joe Louis’,2,29),(4982,164382,’Terrence Lucas’,0,30),(4982,179830,’Dexter Lucas’,0,31),(4982,1196487,’Darlynn’,0,32),(4982,1218171,’McCann’,0,33),(4982,4253,’Rossi’,2,34),(4982,150932,’Police Captain’,0,35),(4982,78719,’Judge James Racine’,2,36),(4982,78885,’Bailiff’,0,37),(4982,38572,’Mike Sobota’,2,38),(4982,143237,’Social Worker’,1,39),(4982,4886,’Detective in Morgue’,2,40),(4982,79419,’Detective at Party’,0,41),(4982,131391,’Real Estate Broker’,0,42),(4982,123587,’Serviceman in Cafe’,2,43),(4982,45566,’US Attorney’,2,44),(4982,33431,’White Kid’,0,45),(4982,1218227,’Tango\’s Woman’,0,46),(4982,1181344,’Tough Teenager’,0,47),(4982,1431403,’Tough Teenager’,0,48),(4982,1232550,’Tough Teenager’,0,49),(4982,1455760,’Bailiff’,0,50),(4982,1386512,’Reporter on TV’,0,51),(4982,11397,’Chinese General’,2,52),(4982,28040,’Army Captain’,0,53),(4982,4892,’Private Doctor’,0,54),(4982,87478,’Law School Professor’,2,55),(4982,176777,’Seller’,0,56),(4982,161547,’Judge’,2,57),(4982,1140109,’Chemist’,2,58),(4982,1001804,’4th Amigo’,2,59),(4982,1216495,’Funk Band Singer’,2,60),(4982,1527995,’Assistant Prosecutor’,1,61),(4982,1473496,’Drug Dealer’,2,62),(4982,1193142,’Drug Dealer’,2,63),(4982,96793,’Mechanic’,2,64),(4982,1454066,’Deacon’,2,65),(4982,176790,’Officer Walsh’,0,66),(4982,1659312,’Policeman’,2,67),(4982,240799,’Smalls Patron’,0,68),(4982,1412213,’Dancer’,1,69),(4982,1532386,’Dancer’,1,70),(4982,1363088,’Dancer’,1,71),(4982,1200994,’Dancer’,0,72),(4982,1659299,’Dancer’,1,73),(4982,1659311,’Dancer’,1,74),(4982,1368458,’Spectator (uncredited)’,0,75),(4982,206946,’Narc Squad Detective (uncredited)’,2,76),(4982,1232568,’Thug #4 (uncredited)’,0,77),(4982,1123241,’Red Carpet Walker (uncredited)’,0,78),(4982,206398,’Cop #1 (uncredited)’,2,79),(4982,1463961,’Narc Officer in Hallway (uncredited)’,2,80),(4982,1050090,’Frank McNamara (uncredited)’,2,81),(4982,1003285,’Hustler (uncredited)’,2,82),(4982,1224052,’Undercover Cop (uncredited)’,0,83),(4982,1111693,’Soldier (uncredited)’,2,84),(4982,1355360,’Student (uncredited)’,2,85),(4982,98214,’Club Dancer (uncredited)’,0,86),(4982,115223,’Gangster at Funeral (uncredited)’,2,87),(4982,1511754,’Hallway Guy (uncredited)’,2,88),(4982,1358403,’Drug room door security (uncredited)’,0,89),(4982,66684,’1971 Penthouse Party Guest (uncredited)’,2,90),(4982,1579312,’Mechanic Drug Dealer (uncredited)’,2,91),(4982,209266,’Kid gangster #1 (uncredited)’,0,92),(4982,118390,’Bookie / Soldier (uncredited)’,0,93),(4982,1343823,’Frank Lucas Bodyguard (uncredited)’,2,94),(4982,1396544,’Mobster (uncredited)’,2,95),(4982,118389,’Mobster (uncredited)’,0,96),(4982,163418,’Building Maintenance Guy (uncredited)’,2,97),(4982,1201268,’Maid of Honor (uncredited)’,1,98),(4982,1218180,’Bookkeeper (uncredited)’,2,99),(4982,1454306,’Nicky\’s Girl (uncredited)’,1,100),(4982,122549,’Skeet Shoot Handler (uncredited)’,2,101),(4982,15864,’Bumpy Johnson (uncredited)’,2,102),(4982,205136,’Trupo\’s detective in library (uncredited)’,2,103),(4982,1368459,’Photographer (uncredited)’,2,104),(4982,1645155,’Funeral Mourner (uncredited)’,1,105),(4982,1645156,’Diana Ross (uncredited)’,1,106),(4982,1645157,’Marie Saldano (uncredited)’,1,107),(4982,1502783,’Harlem Junkie (uncredited)’,0,108),(4982,1526773,’Teenage Vandal (uncredited)’,0,109),(9268,1100,’U.S. Marshal John \’The Eraser\’ Kruger’,2,0),(9268,3085,’U.S. Marshal Robert Deguerin’,2,1),(9268,27011,’Lee Cullen’,1,2),(9268,5563,’WitSec Chief Beller’,2,3),(9268,7866,’Johnny Casteleone’,2,4),(9268,2505,’William Donohue’,2,5),(9268,8540,’WitSec Deputy Monroe’,2,6),(9268,18461,’WitSec Agent Calderon’,2,7),(9268,20582,’WitSec Agent Schiffer’,2,8),(9268,60023,’Tony Two-Toes’,2,9),(9268,6576,’J. Scar’,2,10),(9268,21134,’FBI Agent Corman’,2,11),(9268,20625,’Frediano’,2,12),(9268,21366,’Claire Isaacs’,1,13),(9268,4766,’Darleen’,1,14),(9268,53573,’Sergei Ivanovich Petrofsky’,2,15),(9268,33658,’Watch Commander’,2,16),(9268,32289,’Undersecretary of Defense Daniel Harper’,2,17),(2059,2963,’Ben Gates’,2,0),(2059,9824,’Abigail Chase’,1,1),(2059,21180,’Riley Poole’,2,2),(2059,48,’Ian Howe’,2,3),(2059,10127,’Patrick Gates’,2,4),(2059,1037,’Sadusky’,2,5),(2059,290,’John Adams Gates’,2,6),(2059,21182,’Shaw’,2,7),(2059,60461,’Powell’,2,8),(2059,77351,’Shippen’,2,9),(2059,176558,’Phil’,0,10),(2059,24291,’Agent Dawes’,1,11),(2059,1236,’Agent Johnson’,2,12),(2059,19497,’Agent Hendricks’,2,13),(2059,154759,’Agent Colfax’,2,14),(2059,79025,’Dr. Stan Herbert’,2,15),(2059,85170,’Guard Woodruff’,2,16),(2059,1224493,’Young Ben Gates’,2,17),(2059,133449,’Rebecca’,1,18),(2059,14722,’Abigail\’s Secretary’,1,19),(2059,176695,’Butcher Lady’,0,20),(2059,948015,’Clothing Store Clerk’,0,21),(2059,989247,’Gift Store Clerk’,1,22),(2059,1484863,’Museum Kid’,0,23),(2059,54594,’Thomas Gates’,0,24),(2059,174241,’Charles Carroll’,0,25),(2059,155560,’Independence Hall Guide’,2,26),(2059,1484864,’Liberty Bell Guide’,0,27),(2059,6985,’Franklin Institute Guard’,0,28),(2059,1484865,’Franklin Institute Security’,0,29),(2059,943154,’Technician’,2,30),(2059,142162,’Popcorn Vendor’,2,31),(2059,1484866,’Gala Guard’,0,32),(2059,1484867,’Janitor’,2,33),(2059,159047,’Guard Ferguson’,2,34),(2059,1724874,’Guard Mike’,2,35),(2059,401374,’Intrepid Tourist (uncredited)’,0,36),(2059,1838019,’Shopper at Market (uncredited)’,0,37),(2486,25438,’Eragon’,2,0),(2486,16940,’Brom’,0,1),(2486,7055,’Arya’,1,2),(2486,18023,’Durza’,2,3),(2486,938,’Ajihad’,2,4),(2486,9828,’Murtagh’,2,5),(2486,25442,’Angela’,1,6),(2486,3293,’Saphira (voice)’,1,7),(2486,6949,’Kung Galbatorix’,2,8),(2486,2629,’Uncle Garrow’,2,9),(2486,1312315,’Roran’,2,10),(2486,480,’Kung Hrothgar’,2,11),(2486,25441,’Sloan’,2,12),(2486,25448,’Nasuada’,1,13),(2486,25440,’Horst’,2,14),(9946,1100,’Jericho Cane’,2,0),(9946,5168,’Satan’,2,1),(9946,7166,’Bobby Chicago’,2,2),(9946,17346,’Christine York’,1,3),(9946,30485,’Detective Margie Francis’,1,4),(9946,522,’Father Kovak’,2,5),(9946,14325,’Thomas Aquinas’,2,6),(9946,6199,’Mabel’,1,7),(9946,1646,’Head Priest’,2,8),(9946,1173,’Pope’,2,9),(9946,1570367,’Skateboarder’,0,10),(9946,215304,’Albino’,0,11),(9946,53490,’Cardinal’,0,12),(1372,6193,’Danny Archer’,2,0),(1372,938,’Solomon Vandy’,2,1),(1372,6161,’Maddy Bowen’,1,2),(1372,16742,’Dia Vandy’,0,3),(1372,16743,’Colonel Coetzee’,2,4),(1372,16744,’Cordell Brown’,0,5),(1372,16746,’Jassie Vandy’,0,6),(1372,16749,’N\’Yanda Vandy’,0,7),(1372,16752,’Captain Poison’,2,8),(1372,16754,’Benjamin Kapanay’,2,9),(1372,16756,’Nabil’,2,10),(1372,3968,’Simmons’,2,11),(1372,16758,’Van De Kaap’,2,12),(1372,1756,’Ambassador Walker’,2,13),(1372,16760,’M\’Ed’,2,14),(1372,5377,’Commander Rambo’,2,15),(1372,71078,’Cockney Journalist’,2,16),(1372,13103,’Commander Zero’,2,17),(1372,1332515,’German Minister’,2,18),(1372,67059,’UNCHR Official’,2,19),(1372,208096,’R.U.F. Trainer’,2,20),(1372,1332516,’SA Page’,0,21),(414,5576,’Bruce Wayne / Batman’,2,0),(414,2176,’Harvey Dent / Two-Face’,2,1),(414,206,’Edward Nygma / The Riddler’,2,1),(414,2227,’Dr. Chase Meridian’,1,1),(414,5577,’Dick Grayson / Robin’,2,2),(414,3796,’Alfred Pennyworth’,2,3),(414,3798,’Commissioner Gordon’,2,4),(414,69597,’Sugar’,1,5),(414,5578,’Spice’,1,6),(414,5579,’Gossip Gerty’,0,7),(414,9807,’Dr. Burton’,2,8),(414,4887,’Bank Guard’,2,9),(414,1235,’Male Newscaster’,2,10),(414,156689,’Female Newscaster’,1,11),(414,162556,’Crime Boss Moroni’,2,12),(414,106745,’Gang Leader’,0,13),(414,25336,”,2,14),(563,27763,’Johnny Rico’,2,0),(563,2133,’Dizzy Flores’,1,1),(563,9205,’Carmen Ibau00f1ez’,1,2),(563,28410,’Private Ace Levy’,2,3),(563,41686,’Colonel Carl Jenkins’,2,4),(563,6574,’Career Sergeant Zim’,2,5),(563,11086,’Lieutenant Jean Rasczak’,2,6),(563,41687,’Zander Barcalow’,2,7),(563,41688,’Private Sugar Watkins’,2,8),(563,41689,’Biology Teacher’,1,9),(563,41690,’Katrina McIntire’,1,10),(563,9258,’Lieutenant Willy’,2,11),(563,41691,’Corporal Birdie’,0,12),(563,5945,’Sky Marshal Dienes’,2,13),(563,23970,’Sky Marshal Tehat Meru’,1,14),(563,20189,’Cadet Lumbreiser’,1,15),(563,153940,’Djana\’D’,1,16),(563,101777,’Expert’,1,17),(563,3211,’General’,2,18),(563,14329,’Commanding Officer’,2,19),(314,4587,’Patience Phillips / Catwoman’,1,0),(314,4589,’Tom Lone’,2,1),(314,4430,’Laurel Hedare’,1,2),(314,2192,’George Hedare’,2,3),(314,4432,’Ophelia’,1,4),(314,24357,’Sally’,1,5),(314,9289,’Armando’,2,6),(314,57748,’Wesley’,2,7),(314,141446,’Drina’,1,8),(314,32887,’Rocker’,2,9),(314,60462,’Dr. Ivan Slavicky’,2,10),(314,141447,’Lance’,2,11),(314,158441,’Housekeeper’,1,12),(314,67978,’Sandy’,1,13),(314,64614,’Randy’,2,14),(314,1368537,’Jail Guard’,2,15),(314,77222,’Detective #1′,2,16),(314,1225394,’Detective #2′,2,17),(314,204462,’Party Girl’,1,18),(314,117087,’Warehouse Supervisor’,0,19),(314,33308,’Janitor’,0,20),(314,1237734,’Ferris Wheel Operator’,0,21),(314,104276,’Ferris Wheel Mom’,1,22),(314,77164,’Bartender’,2,23),(314,12055,’Graphologist’,2,24),(314,198607,’Barker’,2,25),(314,1546591,’Security Guard’,2,26),(314,1228455,’Jeweler’,1,27),(314,1218813,’Television Reporter’,1,28),(314,12367,’Bouncer’,2,29),(314,1749241,’Kid #1′,0,30),(314,1749242,’Kid #2′,0,31),(314,1749243,’Kid #3′,0,32),(314,61133,’Forensics Cop’,2,33),(314,75532,’Forensics Technician’,1,34),(314,205597,’Doctor’,0,35),(314,1749245,’Newscaster’,1,36),(314,1272881,’Little Boy’,0,37),(314,84337,’Performance Dancer’,0,38),(314,1749247,’Performance Dancer’,1,39),(314,1749253,’Performance Dancer’,1,40),(314,1749264,’Performance Dancer’,1,41),(314,1749266,’Performance Dancer’,0,42),(314,1749267,’Woman at Carnival’,0,43),(314,1749268,’Thief #2′,0,44),(314,1749269,’Woman at Party’,1,45),(314,29214,’Woman at Carnival’,1,46),(314,1749273,’Singer’,1,47),(314,1749279,’Nurse’,1,48),(314,1749281,’Man on Stairs’,0,49),(314,557793,’Basketball Player’,2,50),(314,1235425,’Thief #3′,0,51),(314,1749282,’Nightclub Dancer’,0,52),(314,1749283,’Club Dancer’,0,53),(314,34434,’Beau-line Graphics Model’,1,54),(314,1749284,’Thug / Thief’,0,55),(314,168480,’Thief #1′,2,56),(314,27144,’Dancer’,1,57),(9016,24045,’Jim Hawkins (voice)’,2,0),(9016,56618,’John Silver (voice)’,1,1),(9016,11076,’Doctor Doppler (voice)’,2,2),(9016,7056,’Captain Amelia (voice)’,1,3),(9016,7486,’Scroop (voice)’,2,4),(9016,519,’B.E.N. (voice)’,2,5),(9016,12133,’Sarah Hawkins (voice)’,1,6),(9016,24368,’Mr. Arrow (voice)’,2,7),(9016,2463,’Billy Bones (voice)’,2,8),(9016,9349,’Morph (voice)’,2,9),(9016,35219,’Onus (voice)’,2,10),(9016,8316,’Hands (voice)’,2,11),(9016,1398839,’Young Jim (voice)’,0,12),(9016,65598,’Narrator (voice)’,2,13),(9016,19545,’Additional Voice (voice)’,2,14),(9016,78317,’Additional Voice (voice)’,2,15),(9016,70615,’Additional Voice (voice)’,2,16),(9016,42000,’Additional Voice (voice)’,0,17),(9016,167295,’Additional Voice (voice)’,0,18),(9016,81843,’Additional Voice (voice)’,1,19),(9016,86006,’Additional Voice (voice)’,2,20),(9016,214701,’Additional Voice (voice)’,0,21),(9016,111466,’Additional Voice (voice)’,0,22),(9016,84493,’Additional Voice (voice)’,0,23),(9016,61968,’Additional Voice (voice)’,2,24),(9016,61969,’Additional Voice (voice)’,2,25),(9016,61959,’Additional Voice (voice)’,2,26),(9016,86007,’Additional Voice (voice)’,0,27),(1734,18269,’Richard O\’Connell’,2,0),(1734,3293,’Evelyn Carnahan O\’Connell/Princess Nefertiri’,1,1),(1734,10727,’Jonathan Carnahan’,2,2),(1734,16743,’High Priest Imhotep’,2,3),(1734,18041,’Ardeth Bay’,2,4),(1734,18918,’Mathayus the Scorpion King’,2,5),(1734,18919,’Alexander O\’Connell’,2,6),(1734,18920,’Meela Nais/Anck Su Namun’,1,7),(1734,2629,’Baltus Hafez’,2,8),(1734,31164,’Lock-Nah’,2,9),(1734,30316,’Izzy Buttons’,2,10),(1734,25675,’Red’,0,11),(1734,1010264,’Jacques’,0,12),(1734,208211,’Spivey’,2,13),(1734,25808,’Pharaoh Seti I’,2,14),(1734,178631,’Shafek’,0,15),(1734,120886,’Showgirl with Jonathan’,1,16),(1734,1077874,’Mountain of Flesh’,0,17),(1734,27678,’Spivey’,0,18),(3131,6193,’Amsterdam Vallon’,2,0),(3131,11856,’Bill \’The Butcher\’ Cutting’,2,1),(3131,6941,’Jenny Everdeane’,1,2),(3131,3896,’Priest Vallon’,2,3),(3131,2039,’Monk McGinn’,2,4),(3131,4764,’Happy Jack Mulraney’,2,5),(3131,388,’William Tweed’,2,6),(3131,20243,’P.T. Barnum’,2,7),(3131,15196,’Mr. Schermerhorn’,2,8),(3131,37947,’Jimmy Spoils’,2,9),(3131,742,’Horace Greeley’,2,10),(3131,480,’McGloin’,2,11),(3131,9976,’Johnny Sirocco’,0,12),(3131,16021,’Mrs. Schermerhorn’,1,13),(3131,147054,’Provost Marshal Registrar’,2,14),(3131,19704,’Chichesters Leader’,2,15),(3131,1385565,’Miss Eliza’,1,16),(3131,1115,’Shang’,2,17),(3131,1665,’Killoran’,2,18),(3131,8224,’Reverend Raleigh’,2,19),(3131,2617,’Hell-Cat Maggie’,1,20),(3131,39678,’Plug Uglies Leader’,2,21),(3131,11276,’Calvinist Minister’,2,22),(3131,77292,’Rat Pit Game Master’,2,23),(3131,26657,’Passenger on Omnibus’,2,24),(3131,31737,’Miss Schermerhorn’,1,25),(3131,26860,’Harry Watkins – Lincoln’,2,26),(3131,37440,’Woman Accomplice’,1,27),(3131,1032,’Wealthy Homeowner (uncredited)’,2,28),(9408,10959,’Cody Maverick’,2,0),(9408,1229,’Big Z / Geek’,2,1),(9408,11664,’Lani Aliikai’,1,2),(9408,53926,’Chicken Joe’,2,3),(9408,4512,’Reggie Belafonte’,2,4),(9408,5727,’Tank \’The Shredder\’ Evans’,2,5),(9408,57551,’Mikey Abromowitz’,2,6),(9408,4334,’Kelly’,2,7),(9408,963069,’SPEN Announcer’,2,8),(9408,12905,’Filmmaker’,2,9),(9408,15774,’Filmmaker’,0,10),(9408,20405,’Glen Maverick’,2,11),(9408,108333,’Rob’,0,12),(9408,68863,’Edna Maverick’,0,13),(9408,1114051,’Arnold’,0,14),(9890,2227,’Joanna Eberhart’,1,0),(9890,4756,’Walter Kresby’,2,1),(9890,73931,’Bobbie Markowitz’,0,2),(9890,515,’Claire Wellington’,1,3),(9890,4690,’Mike Wellington’,2,4),(9890,45566,’Roger Bannister’,2,5),(9890,24535,’Jerry Harmon’,2,6),(9890,16165,’Dave Markowitz’,2,7),(9890,19208,’Herb Sunderson’,2,8),(9890,5351,’Beth Peters’,1,9),(9890,60016,’Kimberly Kresby’,0,10),(9890,53963,’Ted Van Sant’,2,11),(9890,60017,’Sarah Sunderson’,1,12),(9890,60015,’Pete Kresby’,0,13),(9890,60018,’Stan Peters’,2,14),(9890,60021,’Ed Wainwright’,2,15),(9890,60019,’Charmaine Van Sant’,1,16),(9890,60020,’Carol Wainwright’,1,17),(9890,19978,’Vic Stevens’,2,18),(9890,60022,’Marianne Stevens’,1,19),(9890,1216355,’Heather’,1,20),(9890,20388,’Tara’,1,21),(855,2299,’SSgt. Matt Eversmann’,2,0),(855,3061,’Spec. John Grimes’,2,1),(855,11355,’Capt. Mike Steele’,2,2),(855,3197,’Lt. Col. Danny McKnight’,2,3),(855,886,’Sfc. Jeff Sanderson’,2,4),(855,8783,’Sfc. Norm \’Hoot\’ Hooten’,2,5),(855,1125,’Spec. Shawn Nelson’,2,6),(855,9880,’Maj. Gen. William F. Garrison’,2,7),(855,2524,’Spec. Lance Twombly’,2,8),(855,12790,’Cpl. James \’Jamie\’ Smith’,2,10),(855,12791,’Sfc. Kurt Schmid’,2,11),(855,4729,’SSgt. Ed Yurek’,2,12),(855,12792,’SSgt. Jeff Struecker’,2,13),(855,9258,’Lt. Col. Joe Cribbs’,2,14),(855,10000,’Sgt. Scott Galentine’,2,15),(855,6752,’Lt. Col. Gary Harrell’,2,16),(855,12793,’Spec. Dale Sizemore’,2,17),(855,12795,’MSgt. Gary Gordon’,2,18),(855,114,’Todd Blackburn’,2,19),(855,12796,’Sfc. Randy Shughart’,2,20),(855,8335,’MSgt. Tim Griz Martin’,2,21),(855,12797,’Lt. Col. Tom Matthews’,2,22),(855,12798,’Sgt. Lorenzo Ruiz’,2,23),(855,12799,’CWO Cliff \’Elvis\’ Wolcott’,2,24),(855,2839,’Pfc. Richard \’Alphabet\’ Kowalewski’,2,25),(855,12800,’Sgt. Mike Goodale’,2,26),(855,2247,’Osman Atto’,2,27),(855,12801,’Yousuf Dahir Mo\’alim’,2,28),(855,12802,’Abdullahi \’Firimbi\’ Hassan’,2,29),(855,12803,’CWO Dan Jollata’,2,30),(855,12260,’CWO Michael Durant’,2,31),(855,15232,’Wilkinson’,2,32),(855,58787,’Stephanie Shughart’,1,33),(855,37206,’Goffena’,2,34),(18,62,’Korben Dallas’,2,0),(18,64,’Jean-Baptiste Emmanuel Zorg’,2,1),(18,65,’Father Vito Cornelius’,2,2),(18,63,’Leeloo’,1,3),(18,66,’Ruby Rhod’,2,4),(18,8395,’Billy’,2,5),(18,591,’General Munro’,2,6),(18,8396,’President Lindberg’,2,7),(18,12835,’Finger (voice)’,2,8),(18,7400,’Fog’,2,9),(18,8397,’David’,2,10),(18,183500,’Right Arm’,2,11),(18,12642,’General Staedert’,2,12),(18,8398,’Professor Pacoli’,2,13),(18,2406,’Mugger’,2,14),(18,8399,’Mactilburgh’,2,15),(18,8400,’Mr. Kim’,0,16),(18,28897,’Major Iceborg’,1,17),(18,10208,’General Tudor’,2,18),(18,64210,’Diva Plavalaguna’,1,19),(18,33403,’Flying Cop’,2,20),(18,232174,’VIP Stewardess’,0,21),(18,1588721,’Stewardess’,1,22),(18,53246,’Cop’,2,23),(18,8445,’Hefty Man’,2,24),(18,1202628,’Munro\’s Captain’,2,25),(18,1818315,’Ground Crew’,2,26),(18,16792,’Neighbour’,2,27),(18,1776773,’Left Arm’,0,29),(18,963257,’President\’s Aide’,1,30),(18,15740,’Scientist\’s Aide’,2,31),(18,1857410,’Head Scientist’,0,32),(18,1857411,’Head of Military’,0,33),(18,1857412,’Omar’,0,34),(18,1857413,’Aziz’,0,35),(18,240745,’Mondoshawan / Mangalore Aknot / Airport Guard’,0,36),(18,1857414,’Mondoshawan’,0,37),(18,179771,’Mondoshawan’,2,38),(18,1857415,’Mondoshawan’,0,39),(18,1857416,’Mondoshawan / Ground Crew’,0,40),(18,1402694,’Mactilburgh\’s Assistant’,0,41),(18,1857418,’Staedert\’s Captain’,0,42),(18,1211876,’Mactilburgh\’s Technician’,0,43),(18,17072,’Chief NY Cop’,0,44),(18,1395429,’NY Cop’,0,45),(18,62498,’Flying Cop’,2,46),(18,45438,’Flying Cop’,0,47),(18,126316,’Flying Cop / Military Technician’,0,48),(18,1857422,’Flying Cop’,0,49),(18,1338974,’Flying Cop’,0,50),(18,1162833,’Flying Cop’,0,51),(18,1857423,’Flying Cop’,0,52),(18,1857424,’Stewardess’,0,53),(18,1857425,’Stewardess’,0,54),(18,1857427,’Check-in Attendant’,0,55),(18,36901,’Warship Captain’,2,56),(18,1768180,’Diva\’s Manager’,0,57),(18,1857429,’Cop’,0,58),(18,1600365,’Ruby Rhod Assistant’,2,59),(18,1735717,’Ruby Rhod Assistant’,0,60),(18,1364322,’Ruby Rhod Assistant’,0,61),(18,1427818,’Diva\’s Assistant’,0,62),(18,1857430,’Human Aknot’,0,63),(18,1857431,’Mangalore Akanit’,0,64),(18,33186,’Mangalore Kino’,0,65),(18,64102,’Airport Cop’,2,66),(18,937052,’Tawdry Girl’,0,67),(18,1857432,’Shuttle Pilot’,0,68),(18,1857433,’Shuttle Co-Pilot’,0,69),(18,1435006,’Shuttle Mechanic’,0,70),(18,1857434,’Baby Ray’,0,71),(18,1230490,’Emperor Kodar Japhet’,0,72),(18,1563988,’Princess Achen’,0,73),(18,1857435,’Roy von Bacon’,0,74),(18,1857436,’Fhloston Hostess’,0,75),(18,1857437,’Fhloston Hostess’,0,76),(18,987,’Police Chief’,2,77),(18,192895,’Fhloston Commander’,0,78),(18,36900,’Fhloston Captain’,2,79),(18,1857438,’Hotel Manager’,0,80),(18,1857439,’Zorg\’s Secretary’,0,81),(18,1857440,’Scientist’,0,82),(18,213392,’Scientist’,0,83),(18,202759,’Scientist’,0,84),(18,1857441,’Military Technician’,0,85),(18,1857442,’Military Technician’,0,86),(18,554284,’Military Technician’,0,87),(18,1857443,’Lab Guard’,0,88),(18,1857444,’Lab Guard’,0,89),(18,1857445,’Staedert\’s Technician’,0,90),(18,1857446,’Staedert\’s Technician’,0,91),(18,1857449,’Staedert\’s Technician’,0,92),(18,1857450,’Robot Barman’,0,93),(18,1857451,’Warship Technician’,0,94),(18,234685,’TV Stewardess’,0,95),(18,1857452,’Power Operator’,0,96),(18,1857453,’Power Operator’,0,97),(18,1857454,’Zorg\’s Man’,0,98),(18,1857455,’Zorg\’s Man’,0,99),(18,1857456,’Zorg\’s Man’,0,100),(18,1857457,’Zorg\’s Man’,0,101),(18,1857458,’Zorg\’s Man’,0,102),(18,84440,’Burger Assistant’,1,103),(18,1596096,’Burger Assistant’,1,104),(18,1857459,’Burger Assistant’,0,105),(18,1748085,’Glamorous Alien Diva at Event’,1,106),(18,19375,’Mondoshawan #3′,0,107),(18,1467173,’Japanese Hostess’,0,108),(18,1857460,’Glamorous Japanese Girl’,0,109),(18,1857461,’Stewardess’,0,110),(18,1857462,’VIP Lounge Worker’,0,111),(18,138401,’Bodyguard’,2,112),(18,1551797,’Mangalor alien’,0,113),(18,1857463,’Afro Scott’,0,114),(18,47547,’Priest’,2,115),(7980,3293,’Abigail Salmon’,1,0),(7980,13240,’Jack Salmon’,2,1),(7980,4038,’Grandma Lynn’,1,2),(7980,36592,’Susie Salmon’,1,3),(7980,2283,’George Harvey’,2,4),(7980,11486,’Len Fenerman’,2,5),(7980,53485,’Lindsey Salmon’,1,6),(7980,53486,’Ruth Connors’,0,7),(7980,1128255,’Buckley Salmon’,0,8),(7980,54810,’Ray Singh’,0,9),(7980,63676,’Holly’,0,10),(7980,105727,’Brian Nelson’,2,12),(7980,113926,’Clarissa’,1,13),(7980,17867,’Principal Caden’,0,14),(7980,155081,’Mr. Connors’,0,15),(7980,1212194,’Samuel Heckler’,0,16),(7980,1252003,’Flora Hernandez’,1,17),(12,13,’Marlin (voice)’,2,0),(12,14,’Dory (voice)’,1,1),(12,12,’Nemo (voice)’,2,2),(12,5293,’Gill (voice)’,2,3),(12,18,’Bloat (voice)’,2,4),(12,19,’Peach (voice)’,1,5),(12,6168,’Gurgle (voice)’,2,6),(12,17401,’Bubbles (voice)’,2,7),(12,14723,’Deb / Flo (voice)’,1,8),(12,7911,’Jacques (voice)’,0,9),(12,118,’Nigel (voice)’,2,10),(12,7,’Crush (voice)’,2,11),(12,20,’Coral (voice)’,1,12),(12,981048,’Squirt (voice)’,2,13),(12,10,’Mr. Ray (voice)’,2,14),(12,22,’Bruce (voice)’,2,15),(12,8783,’Anchor (voice)’,2,16),(12,27752,’Chum (voice)’,2,17),(12,23,’Dentist (voice)’,2,18),(12,981049,’Darla (voice)’,1,19),(12,1211731,’Tad (voice)’,0,20),(12,1372790,’Pearl (voice)’,0,21),(12,17190,’Sheldon (voice)’,2,22),(12,7907,’Fish School (voice)’,2,33),(122,109,’Frodo Baggins’,2,0),(122,1327,’Gandalf the White’,2,1),(122,110,’Aragorn’,2,2),(122,882,’Arwen Evenstar’,1,3),(122,114,’Legolas’,2,4),(122,655,’Gimli & Treebeard (Voice)’,2,5),(122,1328,’Sam Gamgee’,2,6),(122,1329,’Peregrin \’Pippin\’ Took’,2,7),(122,1330,’Meriadoc \’Merry\’ Brandybuck’,2,8),(122,1333,’Gollum’,2,9),(122,1331,’Elrond’,2,10),(122,65,’Bilbo Baggins’,2,11),(122,1369,’Thu00e9oden, King of Rohan’,2,12),(122,502,’u00c9owyn’,1,13),(122,1371,’Faramir’,2,14),(122,1372,’u00c9omer’,2,15),(122,1381,’Denethor’,0,16),(122,112,’Galadriel’,1,17),(122,1365,’Gothmog & Witchking of Angmar’,0,18),(122,1382,’King of the Dead’,0,19),(122,1383,’Deagol’,0,20),(122,965278,’Rosie Cotton’,1,21),(122,48,’Boromir’,2,22),(122,20982,’Celeborn’,2,23),(122,113,’saruman’,2,24),(122,9383,’Gondorian Soldier 3′,0,25),(122,1668317,’Damrod’,0,26),(122,186469,’Damrod’,0,27),(122,75256,’Irolas’,2,28),(121,109,’Frodo Baggins’,2,0),(121,1327,’Gandalf the White’,2,1),(121,110,’Aragorn’,2,2),(121,882,’Arwen Evenstar’,1,3),(121,114,’Legolas’,2,4),(121,655,’Gimli / Voice of Treebeard’,2,5),(121,113,’Saruman’,2,6),(121,1328,’Sam Gamgee’,2,7),(121,1329,’Peregrin \’Pippin\’ Took’,2,8),(121,1330,’Meriadoc \’Merry\’ Brandybuck’,2,9),(121,1333,’Gollum’,2,10),(121,1331,’Elrond’,2,11),(121,1332,’Haldir’,2,12),(121,1369,’Thu00e9oden’,2,13),(121,1370,’Gru00edma Wormtongue’,2,14),(121,502,’u00c9owyn’,1,15),(121,1371,’Faramir’,2,16),(121,1372,’u00c9omer’,2,17),(121,112,’Galadriel’,1,18),(121,941439,’Freda’,1,19),(121,48,’Boromir’,2,20),(121,173451,’Sharku / Snaga’,0,21),(121,1356914,’Halteh’,0,22),(121,29094,’Madril’,2,23),(121,76834,’Mauhur’,2,24),(121,1381,’Denethor’,0,25),(121,125938,’Morwen’,1,26),(121,29082,’Rohan Soldier’,0,27),(121,156371,’Bereg’,2,28),(121,1440014,’Grishnakh’,0,29),(121,41784,’Ugluk’,2,30),(121,1892757,’Eothain’,0,31),(121,1214345,’Gamling’,0,32),(121,76851,’Hu00e1ma’,2,33),(1995,11701,’Lara Croft’,1,0),(1995,10127,’Lord Richard Croft’,2,1),(1995,20508,’Manfred Powell’,2,2),(1995,1284,’Bryce’,2,3),(1995,8784,’Alex West’,2,4),(1995,20510,’Distinguished Gentleman’,2,5),(1995,20511,’Hillary’,2,6),(1995,7031,’Mr. Pimms’,2,7),(1995,10655,’Wilson’,2,8),(1995,20509,’Assault Team Leader’,0,9),(1995,20512,’Young Lara’,0,10),(1995,1371446,’Boothby\’s Auctioneer’,0,11),(1995,1371452,’Head Laborer’,0,12),(1995,1013950,’Head Laborer’,2,13),(1995,1371450,’Little Cambodian Girl’,0,14),(1995,1227314,’Aged Buddhist Monk’,0,15),(1995,1371453,’Young Buddhist Monk’,0,16),(1995,1371454,’Little Inuit Girl’,0,17),(1995,127166,’Ancient High Priest’,2,18),(1995,90764,’Imperious Woman’,1,19),(1995,1371455,’UPS Guy’,0,20),(1995,129840,’Maid’,0,22),(1995,69471,’Russian Commander’,0,23),(331,4783,’Dr. Alan Grant’,2,0),(331,3905,’Paul Kirby’,2,1),(331,4939,’Amanda Kirby’,1,2),(331,4940,’Erik Kirby’,2,3),(331,4941,’Billy Brennan’,2,4),(331,2169,’Mr. Udesky’,2,5),(331,4942,’Cooper’,2,6),(331,4943,’M.B. Nash’,0,7),(331,4784,’Dr. Ellie Sattler’,1,8),(331,4944,’Mark Degler’,2,9),(331,88949,’Ben Hildebrand’,0,10),(331,17413,’Enrique Cardoso’,2,11),(331,1076559,’Charlie’,0,12),(331,1223986,’Cheryl Logan’,0,13),(331,105646,’Hannah’,1,14),(8204,1281,’Jared Grace / Simon Grace’,2,0),(8204,18248,’Helen Grace’,1,1),(8204,1733,’Mulgarath’,2,2),(8204,33397,’Mallory Grace’,1,3),(8204,37041,’Richard Grace’,2,4),(8204,23709,’Aunt Lucinda Spiderwick’,1,5),(8204,11064,’Arthur Spiderwick’,2,6),(8204,19274,’Hogsqueal (voice)’,2,7),(8204,519,’Thimbletack (voice)’,2,8),(9806,8977,’Bob Parr / Mr. Incredible (voice)’,2,0),(9806,18686,’Helen Parr / Elastigirl (voice)’,1,1),(9806,2231,’Lucius Best / Frozone (voice)’,2,2),(9806,11662,’Buddy Pine / Syndrome (voice)’,2,3),(9806,7891,’Bomb Voyage (voice)’,2,4),(9806,59357,’Newsreel Narrator (voice)’,2,5),(9806,59358,’Jack Jack Parr (voice)’,0,6),(9806,59359,’Jack Jack Parr (voice)’,0,7),(9806,59360,’Dashiell \’Dash\’ Parr (voice)’,0,8),(9806,59361,’Violet Parr (voice)’,1,9),(9806,7430,’Mirage (voice)’,1,10),(9806,7087,’Edna \’E\’ Mode (voice)’,2,11),(9806,155917,’Mrs. Hogenson (voice)’,1,12),(9806,12900,’Gilbert Huph (voice)’,2,13),(9806,7962,’Bernie Kropp (voice)’,2,14),(9806,1075147,’Principal (voice)’,0,15),(9806,1075148,’Tony Rydinger (voice)’,0,16),(9806,7907,’The Underminer (voice)’,2,17),(9806,1338319,’Honey (voice)’,0,18),(9806,7918,’Rick Dicker (voice)’,2,20),(9806,12890,’Additional Voices (voice)’,2,21),(9806,7,’Additional Voices (voice)’,2,22),(9806,7998,’Kari (voice)’,0,23),(9806,126638,’Additional Voices (voice)’,2,24),(9806,981048,’Additional Voices (voice)’,2,25),(9806,7982,’Additional Voices (voice)’,0,26),(9806,1484864,’Additional Voices (voice)’,0,27),(9806,143786,’Additional Voices (voice)’,0,28),(9806,32532,’Additional Voices (voice)’,2,29),(9806,225977,’Additional Voices (voice)’,0,30),(9806,1599,’Additional Voices (voice)’,0,31),(9806,10,’Additional Voices (voice)’,2,32),(9806,7882,’Additional Voices (voice)’,2,33),(9806,7911,’Additional Voices (voice)’,0,34),(9806,225986,’Additional Voices (voice)’,1,35),(9806,1443479,’Additional Voices (voice)’,0,36),(9806,8066,’Additional Voices (voice)’,0,37),(9806,59363,’Additional Voices (voice)’,2,38),(9806,954958,’Additional Voices (voice)’,2,39),(9806,21198,’Additional Voices (voice)’,2,40),(9806,63646,’Additional Voices (voice)’,2,41),(9806,932193,’Additional Voices (voice)’,0,42),(9806,1117784,’Additional Voices (voice)’,0,43),(9806,8082,’Additional Voices (voice)’,0,44),(1408,16935,’Morgan Adams’,1,0),(1408,8654,’William Shaw’,2,1),(1408,8924,’Dawg’,2,2),(1408,7868,’John Reed’,2,3),(1408,8979,’Ainstee’,2,4),(1408,16936,’Glasspoole’,2,5),(1408,16937,’Mr. Blair’,2,6),(1408,13925,’Snelgrave’,2,7),(1408,35769,’Bowen’,2,8),(1408,133771,’Scully’,0,9),(1408,1166,’Black Harry’,2,10),(1408,127166,’Bishop’,2,11),(1408,1220350,’Fiddler Pirate’,0,12),(1408,1252814,’Captain Trotter’,0,13),(1408,91662,’Toussant’,0,14),(1408,31294,’Lady’,1,15),(1408,17202,’Lieutenant’,2,16),(1408,1649736,’Auctioneer’,0,17),(1408,90625,’Mordachai Fingers’,2,18),(1408,1117347,’Bartender’,0,19),(1408,1495190,’Executioner’,2,20),(1408,1466675,’Hastings’,0,21),(1408,1420324,’Helmsman’,0,22),(1408,16792,’Snake the Lookout’,2,23),(1408,2480,’Fleming’,0,24),(1408,2479,’Captain Perkins’,2,25),(1408,19704,’Dawg\’s Pirate’,2,26),(1408,1715,’Dawg\’s Pirate’,2,27),(1408,1221761,’Dawg\’s Pirate’,0,28),(1408,178622,’Dawg\’s Pirate’,2,29),(1408,64102,’Dawg\’s Pirate’,2,30),(607,2176,’Agent K’,2,0),(607,2888,’James Edwards / Agent J’,2,1),(607,9625,’Dr. Laurel Weaver / Agent L’,1,2),(607,7132,’Edgar / The Bug’,2,3),(607,9626,’Chief Zed’,2,4),(607,4252,’Jack Jeebs’,2,5),(607,9628,’Gentle Rosenburg the Arquillian Jeweler’,2,6),(607,9629,’Van driver’,2,7),(607,9630,’Jose’,0,8),(607,9631,’Arquillian’,2,9),(607,9632,’INS agent Janus’,2,10),(607,9633,’Agent D’,2,11),(607,9634,’2nd Lt. Jake Jensen’,2,12),(607,6751,’Beatrice’,1,13),(607,443770,’Mikey’,2,14),(607,15318,’Perp’,2,15),(607,16483,’Alien on TV Monitor (uncredited)’,2,16),(607,518,’Alien on TV Monitor (uncredited)’,2,17),(863,31,’Woody (voice)’,2,0),(863,12898,’Buzz Lightyear (voice)’,2,1),(863,3234,’Jessie (voice)’,1,2),(863,7090,’Prospector (voice)’,2,3),(863,7167,’Mr. Potato Head (voice)’,2,4),(863,12899,’Slinky Dog (voice)’,2,5),(863,12900,’Rex (voice)’,2,6),(863,7907,’Hamm (voice)’,2,7),(863,8873,’Bo Peep (voice)’,1,8),(863,4201,’Al McWhiggin (voice)’,2,9),(863,1116442,’Andy (voice)’,0,10),(863,12133,’Andy\’s Mom (voice)’,1,11),(863,61964,’Mrs. Potato Head (voice)’,1,12),(863,8655,’Sarge (voice)’,2,13),(863,63978,’Barbie (voice)’,1,14),(863,123037,’The Cleaner (voice)’,0,15),(863,7911,’Wheezy (voice)’,0,16),(863,7,’Emperor Zurg (voice)’,2,17),(863,7882,’Aliens (voice)’,2,18),(863,35219,’Woody\’s Roundup Announcer (voice)’,2,19),(863,7879,’Blue Rock \’Em Sock \’Em Robot (voice)’,2,20),(863,84493,’Mom at yard sale (voice)’,0,21),(863,61969,’Airline Rep / sign-off voice / Mr. Konishi (voice)’,2,22),(863,8,’Red Rock \’Em Sock \’Em Robot (voice)’,2,23),(5175,66,’Det. James Carter’,2,0),(5175,18897,’Chief Insp. Lee’,2,1),(5175,1339,’Hu Li’,1,2),(5175,41901,’Isabella Molina’,1,3),(5175,58210,’Zing’,2,4),(5175,1896,’Kenny’,2,5),(5175,11389,’Ricky Tan’,2,7),(5175,21045,’Girl in Car’,1,8),(5175,7169,’Steve Reign’,2,9),(5175,1166,’Agent Sterling’,2,10),(5175,10885,’Captain Chin’,0,11),(5175,101012,’Receptionist’,1,12),(5175,73590,’Girl in Car’,0,13),(5175,167160,’Heaven on Earth Hostess’,1,14),(5175,154544,’Heaven on Earth Hostess #2′,1,15),(5175,12799,’Versace Salesman’,2,16),(2655,3,’Dr. Norman Spencer’,2,0),(2655,1160,’Claire Spencer’,1,1),(2655,2958,’Jody’,1,2),(2655,1736,’Warren Feur’,2,3),(2655,502,’Mary Feur’,1,4),(2655,12889,’Dr. Stan Powell’,2,5),(2655,19957,’Elena’,1,6),(2655,38425,’Madison Elizabeth Frank’,1,7),(2655,15012,’Caitlin Spencer’,0,8),(2655,1066283,’Beatrice’,1,9),(2655,3977,’Dr. Drayton’,2,11),(2655,21202,’Mrs. Frank’,1,12),(2655,1428151,’Mrs. Templeton’,1,13),(2655,7473,’PhD Student #3′,1,14),(2655,68695,’PhD Student #4′,2,15),(8355,15757,’Manny (voice)’,2,0),(8355,5723,’Sid (voice)’,2,2),(8355,5724,’Diego (voice)’,2,4),(8355,15758,’Ellie (voice)’,1,6),(8355,11108,’Buck (voice)’,2,8),(8355,1063128,’u5df4u514b/u9f2cu9f20′,0,9),(8355,57599,’Crash (voice)’,2,10),(8355,87055,’Scratte (voice)’,1,11),(8355,5713,’Scrat (voice)’,2,12),(8355,41091,’Pudgy Beaver Mom (voice)’,1,13),(8355,1239793,’Madison (Diatryma Girl) (voice)’,0,14),(8355,60734,’Glypto Boy (voice)’,2,15),(8355,23211,’Aardvark Mom (voice)’,0,16),(8355,1214603,’Adult Molehog Male (voice)’,0,17),(8355,19278,’Gazelle (voice)’,2,18),(8355,95691,’Molehog Mom / Shovelmouth Mom (voice)’,0,19),(8355,125025,’Beaver Girl (voice)’,1,20),(8355,1335112,’Aardvark Boy / Beaver Kid #2 (voice)’,2,21),(8355,43775,’Diatryma Mom (voice)’,1,23),(8355,451877,’additional voices (adr loop group)’,2,24),(8355,1215072,’Start Mom (voice)’,1,25),(8355,1687265,’Additional Voices (voice)’,1,26),(8355,1687265,’Aardvark Girl (voice)’,1,27),(8355,15760,’Eddie (voice)’,2,28),(8355,5714,’Dinosaur Babies / Flightless Bird (voice)’,2,29),(8355,180203,’Additional Voice (voice)’,1,30),(8355,97051,’Additional Voice (voice)’,0,31),(4327,6941,’Natalie Cook’,1,0),(4327,140,’Alex Munday’,1,1),(4327,69597,’Dylan Sanders’,1,2),(4327,1532,’John Bosley’,2,3),(4327,24367,’Charles Townsend’,2,4),(4327,6807,’Eric Knox’,2,5),(4327,6473,’Vivian Wood’,1,6),(4327,13472,’Roger Corwin’,2,7),(4327,36422,’Pete Komisky’,2,8),(4327,1064,’Thin Man’,2,9),(4327,14407,’Jason Gibbons’,2,10),(4327,36423,’Chad’,2,11),(4327,36424,’Mr. Jones’,2,12),(4327,9996,’Pasqual’,2,13),(4327,55536,’Doris’,1,14),(4327,86602,’Thug’,2,15),(1422,6193,’William Billy Costigan, Jr.’,2,0),(1422,1892,’Staff Sgt. Colin Sullivan’,2,1),(1422,514,’Francis Frank Costello’,2,2),(1422,13240,’Staff Sgt. Sean Dignam’,2,3),(1422,8349,’Capt. Oliver Charles Queenan’,2,4),(1422,5538,’Arnold Frenchy French’,2,5),(1422,21657,’Dr. Madolyn Madden’,1,6),(1422,18471,’Trooper Brown’,2,7),(1422,7447,’Capt. George Ellerby’,2,8),(1422,18472,’Cousin Sean’,2,9),(1422,18473,’Barrigan’,2,10),(1422,2482,’Fitzy’,2,11),(1422,4733,’Lazio’,2,12),(1422,18475,’Gwen’,1,13),(1422,18476,’Govenor’,0,14),(1422,18477,’Uncle Edward’,2,15),(1422,17194,’Exam Instructor’,2,16),(1422,1182724,’Younger Priest’,0,17),(1422,6576,’Delahunt’,2,18),(1422,63296,’Realtor’,2,19),(1422,951993,’Billy\’s Aunt’,0,20),(1422,1203261,’Triad Boss’,2,21),(1422,185705,’Pakistani Proprietor’,0,22),(1422,1184209,’Providence Gangster #1′,0,23),(1422,206398,’Providence Gangster #2′,2,24),(1422,1218180,’Detective #1 Tailing Queenan’,2,25),(1422,1434599,’Man Glassed in Bar’,0,26),(1422,77025,’Older Priest’,0,27),(1422,155535,’Man Killed by French’,0,28),(1422,19488,’Woman at Bar #1′,0,29),(1422,77100,’Woman at Bar #2′,1,30),(1422,82754,’Young Colin’,2,31),(1422,51666,’Bookie Harassed by French’,0,32),(1422,122260,’Jimmy Bags’,0,33),(1422,177898,’Queenan\’s Secretary’,1,34),(1422,1428152,’Chinese Government Man’,0,35),(1422,1000883,’Luncheonette Proprietor’,2,36),(1422,7531,’Priest with Young Colin’,2,37),(1422,93752,’Priest at Billy\’s Funeral’,0,38),(1422,10138,’Detective #2 Tailing Queenan’,2,39),(1422,2257,’Detective #3 Tailing Queenan’,2,40),(1422,170240,’Detective #4 Tailing Queenan’,2,41),(1422,187812,’Gang Member with Mr. French’,2,42),(1422,1455497,’Executed Woman’,0,43),(1422,58333,’Billy Costigan, Sr. (credit only)’,2,44),(1422,1083451,’Crack Addict’,0,45),(1422,42290,’Bartender at Brasserie’,2,46),(1422,1711562,’Executed Man’,2,47),(1422,45648,’Woman with Dog’,0,48),(1422,1116907,’Crack House Denizen’,2,49),(1422,1449608,’Boston Police Dignitary (uncredited)’,0,50),(1422,1011669,’Triad (uncredited)’,2,51),(1422,1221663,’Reporter (uncredited)’,0,52),(1422,1500999,’Boston Police Chief (uncredited)’,0,53),(1422,1422337,’Irish Thug (uncredited)’,0,54),(1422,204711,’Gang Member (uncredited)’,0,55),(1422,1371552,’Crime Scene Unit (uncredited)’,0,56),(1422,1198454,’Cadet (uncredited)’,2,57),(1422,1277520,’Woman Office Worker (uncredited)’,0,58),(1422,580695,’Academy Pistol Coach (uncredited)’,0,59),(1422,1385443,’EMT (uncredited)’,0,60),(1422,205231,’Reporter (uncredited)’,0,61),(1422,1297402,’Academy Firearms Instructor (uncredited)’,0,62),(1422,118641,’Shopper in China Town (uncredited)’,1,63),(1422,1366927,’Rugby Fan (uncredited)’,0,64),(1422,1360008,’Officer (uncredited)’,2,65),(1422,1574936,’Reporter (uncredited)’,0,66),(1422,1519595,’Southie Teen / Soccer Player (uncredited)’,0,67),(1422,1535492,’Pedestrian / Businessman (uncredited)’,0,68),(1422,928638,’Pedestrian (uncredited)’,0,69),(1422,1507846,’Subway Passenger (uncredited)’,0,70),(7446,7399,’Tugg Speedman’,2,0),(7446,70851,’Jeff Portnoy’,2,1),(7446,3223,’Kirk Lazarus’,2,2),(7446,1733,’Four Leaf Tayback’,2,3),(7446,4581,’Damien Cockburn’,2,4),(7446,449,’Kevin Sandusky’,2,5),(7446,62862,’Cody’,2,6),(7446,53336,’Alpa Chino’,2,7),(7446,19278,’Studio Executive Rob Slolom’,2,8),(7446,1115122,’Tran’,0,9),(7446,22075,’Byong’,2,10),(7446,61835,’Tru’,2,11),(7446,10297,’Rick Peck’,2,12),(7446,500,’Les Grossmann’,2,13),(7446,1219899,’Snooty Waiter – Fatties Trailer’,2,14),(7446,171522,’Platoon Sergeant Shot in Head – Hot LZ’,2,15),(7446,1642098,’Chopper Pilot – Hot LZ’,0,16),(7446,66636,’Damien\’s Assistant – Vietnam Crew’,1,17),(7446,175511,’Camerperson – Vietnam Crew’,2,18),(7446,111514,’First Assistant Director – Vietnam Crew’,0,19),(7446,26046,’Script Supervisor – Vietnam Crew’,1,20),(7446,1777573,’Special Effects Assistant – Vietnam Crew’,0,21),(7446,1395905,’Speedman Assistant – Vietnam Crew’,0,22),(7446,168925,’Speedman Assistant – Vietnam Crew’,1,23),(7446,53335,’Speedman Assistant – Vietnam Crew’,1,24),(7446,1777575,’Alpa\’s Posse – Vietnam Crew’,0,25),(7446,1776393,’Alpa\’s Posse – Vietnam Crew’,0,26),(7446,74353,’Herself – Access Hollywood’,1,27),(7446,77897,’Herself – The Tyra Banks Show’,1,28),(7446,15286,’Rebecca – Simple Jack Clip’,1,29),(7446,1777576,’Speedman\’s Chef – Speedman\’s Mansion’,0,30),(7446,980927,’Speedman\’s Trainer – Speedman\’s Mansion’,1,31),(7446,111513,’Peck\’s Assistant – Peck\’s Office’,1,32),(7446,1791857,’Half Squat – Flaming Dragon Compound’,0,33),(7446,1791858,’Half Squat – Flaming Dragon Compound’,0,34),(7446,142953,’Grossman\’s Secretary – Grossman\’s Office’,1,35),(7446,1777578,’Grossman\’s Assistant – Grossman\’s Office’,0,36),(7446,10127,’Himself – Awards Ceremony’,2,37),(7446,33259,’Herself – Awards Ceremony’,1,38),(7446,23532,’Himself – Awards Ceremony’,2,39),(7446,77073,’Himself – Awards Ceremony’,2,40),(7446,5588,’Herself – Awards Ceremony’,0,41),(7446,208360,’Academy Award Attendee (uncredited)’,2,42),(7446,226419,’Jon Voight\’s Date (uncredited)’,1,43),(7446,1777581,’Academy Award Guest (uncredited)’,1,44),(7446,1777583,’Stewardess (uncredited)’,1,45),(7446,221942,’Stewardess (uncredited)’,1,46),(7446,1777584,’Gorilla Soldier (uncredited)’,0,47),(7446,1777585,’Starlet (uncredited)’,1,48),(7446,1777586,’Sack Race Boy (uncredited)’,0,49),(7446,1680921,’Sack Race Girl (uncredited)’,0,50),(7446,1225936,’Trophy Presenter (uncredited)’,1,51),(7446,1777589,’Audience Member (uncredited)’,0,52),(7446,1396608,’Academy Awards Audience Member (uncredited)’,0,53),(7446,1202547,’Academy Awards Attendee (uncredited)’,0,54),(7446,8186,’Radio DJ (uncredited)’,2,55),(7446,1777592,’Journalist (uncredited)’,0,56),(7446,1642097,’Four Leaf\’s Date (uncredited)’,1,57),(7446,94089,’Flaming Dragon Compound Person (uncredited)’,2,58),(7446,1777596,’Booty Sweat Dancer (uncredited)’,0,59),(7446,1777597,’Academy Awards Attendee (uncredited)’,0,60),(7446,210292,’Trophy Presenter (uncredited)’,1,61),(7446,1352677,’Agency Assistant (uncredited)’,0,62),(7446,1769685,’Booty Sweat Girl (uncredited)’,1,63),(7446,158825,’Flaming Dragon Compound Person (uncredited)’,2,64),(7446,1777599,’Award Show Security (uncredited)’,0,65),(7446,1777601,’Farm Girl (uncredited)’,0,66),(7446,1324448,’Guerilla Guard (uncredited)’,0,67),(7446,1752319,’Go Go Dancer (uncredited)’,1,68),(7446,1777611,’Academy Award Attendee (uncredited)’,1,69),(7446,1777633,’Red Carpet Reporter (uncredited)’,1,70),(7446,1777634,’Oscar Attendee (uncredited)’,1,71),(7446,1690900,’Academy Awards Attendee (uncredited)’,1,72),(7446,2219,’Himself’,2,73),(1572,62,’John McClane’,2,0),(1572,16940,’Simon Peter Gruber’,0,1),(1572,2231,’Zeus Carver’,2,2),(1572,6804,’Joe Lambert’,2,3),(1572,13023,’Connie Kowalski’,1,4),(1572,17351,’Chief Cobb’,2,5),(1572,141747,’Ricky Walsh’,0,6),(1572,91421,’Targo’,0,7),(1572,45337,’Katya’,1,8),(1572,34395,’Charles Weiss’,2,9),(1572,141748,’Officer Jane’,1,10),(1572,6438,’Dr. Schiller’,0,11),(1572,141749,’Dexter’,0,12),(1572,83860,’Raymond’,0,13),(1572,19902,’Mischa’,2,14),(1572,21136,’Jarvis’,2,15),(1572,89485,’Roman’,2,16),(2253,500,’Claus Schenk Graf von Stauffenberg’,2,0),(2253,23229,’Nina Schenk Gru00e4fin von Stauffenberg’,1,1),(2253,11181,’Henning von Tresckow’,2,2),(2253,2440,’Friedrich Olbricht’,2,3),(2253,28641,’Ludwig Beck’,2,4),(2253,207,’Friedrich Fromm’,2,5),(2253,1926,’Erich Fellgiebel’,2,6),(2253,26657,’Adolf Hitler’,2,7),(2253,3491,’Otto Ernst Remer’,2,8),(2253,939,’Erwin von Witzleben’,0,9),(2253,2449,’Carl-Friedrich Goerdeler’,2,10),(2253,7803,’Albrecht Ritter Mertz von Quirnheim’,2,11),(2253,26258,’Field Marshal Wilhelm Keitel’,2,12),(2253,2441,’Colonel Heinz Brandt’,2,13),(2253,40633,’Werner von Haeften’,2,14),(2253,53917,’Captain Haans’,2,15),(2253,1369,’General – Desert Sequence’,2,16),(2253,3547,’Pompous General’,2,17),(2253,25658,’Sergeant Helm’,2,18),(2253,175300,’Lieutenant-General Adolf Heusinger’,0,19),(2253,39846,’Hermann Gu00f6ring’,0,20),(2253,36746,’Heinrich Himmler’,0,21),(2253,39847,’Margarethe Van Oven’,1,22),(2253,39848,’Albert Speer’,2,23),(2253,39849,’Ernst-John Von Freyend’,2,24),(2253,16808,’SS-Soldat im Erschieu00dfungskommando’,2,25),(2253,39850,’SS-Soldat’,2,26),(2253,39851,’SS-Major’,0,27),(2253,39852,’SS-Adjutant von Henning von Tresckow’,0,28),(2253,41276,’Berthold Schenk Graf von Stauffenberg’,2,29),(2253,41277,’Heimeran Schenk Graf von Stauffenberg’,2,30),(2253,28586,’Thomas Arnold’,0,31),(2253,40634,’Leutnant Hans Wilhelm Hagen’,0,32),(2253,141778,’Doctor’,2,33),(2253,47628,’Young Lieutenant – Desert’,2,34),(644,9640,’David’,2,0),(644,1518,’Monica Swinton’,1,1),(644,8213,’Henry Swinton’,2,2),(644,9641,’Martin Swinton’,2,3),(644,9642,’Gigolo Joe’,2,4),(644,227,’Prof. Hobby’,2,5),(644,2157,’Dr. Know (voice)’,2,6),(644,2282,’Specialist (voice)’,2,7),(644,5064,’Blue Mecha (voice)’,1,8),(644,2632,’Comedian (voice)’,2,9),(644,2131,’Syatyoo-Sama’,2,10),(644,9048,’Supernerd’,2,11),(644,60633,’Supernerd’,2,12),(644,27030,’Supernerd’,2,13),(644,1004155,’Supernerd’,2,14),(644,10691,’Female Colleague’,1,15),(644,35521,’Executive’,2,16),(644,142736,’Sheila’,1,17),(644,167195,’Todd’,0,18),(644,91030,’Dr. Frazier at Cryogenic Institute’,2,19),(644,15318,’Roadworker’,2,20),(644,1214402,’Backstage Bull’,2,21),(644,2039,’Lord Johnson-Johnson’,2,22),(686,1038,’Eleanor Arroway’,1,0),(686,10297,’Palmer Joss’,2,1),(686,4512,’Michael Kitz’,2,2),(686,5049,’S. R. Hadden’,2,3),(686,4139,’David Drumlin’,2,4),(686,886,’Kent Clark’,2,5),(686,52,’Ted Arroway’,2,6),(686,9780,’Rachel Constantine’,1,7),(686,148122,’Fisher’,2,8),(686,94864,’Willie’,2,9),(686,2879,’Richard Rank’,2,10),(686,28410,’Joseph’,2,11),(686,20089,’Young Ellie’,1,12),(686,92777,’Mission Director’,2,13),(686,1638916,’Vernon’,0,14),(686,131120,’Minister’,2,15),(686,163029,’Drumlin Aide’,0,16),(686,169643,’Davio’,2,17),(686,1808892,’Cantina Woman’,1,18),(686,1808893,’Hadden Suit’,0,19),(686,44127,’Himself’,2,20),(686,582833,’Ian Broderick’,0,21),(686,1808895,’KOB-TV Reporter’,0,22),(686,1235841,’Jeremy Roth’,0,23),(686,1569118,’Senator Valencia’,0,24),(686,1808899,’Herself’,1,25),(686,1808909,’Himself’,0,26),(686,1808910,’Herself’,1,27),(686,1170974,’Middle Eastern Anchor’,0,28),(686,16146,’Japanese Anchor’,1,29),(686,556903,’Latina Anchor’,1,30),(686,1244752,’Herself’,1,31),(686,1215560,’Himself’,2,32),(686,219237,’British Anchor’,0,33),(686,14991,’Himself’,2,34),(686,133593,’Decryption Hacker’,0,35),(686,1808922,’Decryption Expert’,0,36),(686,188274,’Major Domo’,0,37),(686,101975,’Chairman of Joint Chiefs’,2,38),(686,1598,’Joint Chief’,2,39),(686,9258,’Major Russell’,2,40),(686,1808925,’Major Russell\’s Son’,0,41),(686,1808926,’Major Russell\’s Daughter’,1,42),(686,14741,’French Committee Member’,2,43),(686,58629,’Dr. Patel’,1,44),(686,1808930,’British Committee Member’,0,45),(686,1808931,’NASA Public Relations’,1,46),(686,6908,’NASA Technician’,2,47),(686,1798163,’Mechnical’,0,48),(686,1798163,’Mechanical’,0,49),(686,56120,’Electrical’,2,50),(686,1114940,’Dynamics’,0,51),(686,1808933,’Communications’,0,52),(686,75317,’Pad Leader’,2,53),(686,1530544,’Security’,0,54),(686,1808934,’Controller #8′,0,55),(686,1808935,’New VLA Technician’,0,56),(686,20563,’Russian Cosmonaut’,2,57),(686,1808936,’Scientist’,1,58),(686,70440,’Project Official’,2,59),(686,1733407,’Mission Doctor’,2,60),(686,1808937,’Japanese Ensign’,0,61),(686,152783,’Japanese Tech #1′,0,62),(686,1808938,’Japanese Tech #2′,0,63),(686,106734,’Life Support’,1,64),(686,173784,’Dynamics #2′,0,65),(686,64033,’Senator’,1,66),(686,1808939,’Reporter #5′,0,67),(686,1605510,’Reporter #6′,0,68),(686,1808940,’School Boy’,0,69),(686,1808941,’White House Official’,0,70),(686,1808942,’NASA Controller #2′,0,71),(686,1808944,’Four-Star General’,0,72),(686,1808945,’Senate Observer’,0,73),(686,1452279,’Robert Hand’,0,74),(686,153946,’Scientist’,2,75),(686,1808946,’Protester’,0,76),(686,1609292,’Supporter’,1,77),(686,1808947,’President\’s Secretery’,0,78),(686,1808947,’President\’s Secretary’,0,79),(686,1454081,’Ailing Believer’,0,80),(686,1808948,’Philanthropy Bureaucrat’,1,81),(686,1808949,’Factory Worker’,0,82),(686,1808950,’IMC Police Officer’,0,83),(686,1808951,’Monk’,0,84),(686,1752222,’Pedestrian’,1,85),(686,155308,’Controller’,2,86),(686,55227,’TV Interviewer’,0,87),(686,945062,’Pod Systems Control’,2,88),(686,1424827,’Puerto Rican Taxi Driver’,0,89),(686,160399,’Press Secretary’,1,90),(686,155456,’Kitz\’s Aide’,2,91),(686,1808953,’Student Reporter at NASA’,1,92),(686,1808954,’Family Exchange’,1,93),(686,1296511,’Ellie\’s Attorney’,0,94),(686,58742,’Oval Office Secretary’,1,95),(686,1808956,’Police Officer’,1,96),(686,1352413,’Senator’,0,97),(686,1808957,’Ailing Believer’,0,98),(686,1114167,’Ailing Believer’,0,99),(686,1354453,’Photographer’,0,100),(686,1808959,’Army Officer’,0,101),(686,1808960,’Senate Hearing Attendee’,0,102),(686,1808962,’News Reporter’,0,103),(686,1314544,’Reporter’,0,104),(686,1808159,’Religious Zealot’,1,105),(686,1720797,’Protester’,2,106),(686,116515,’Believer’,0,107),(9383,4724,’Sebastian Caine / Hollow Man’,2,0),(9383,1951,’Linda McKay’,1,1),(9383,16851,’Matthew Kensington’,2,2),(9383,21165,’Sarah Kennedy’,1,3),(9383,25702,’Sebastian\’s Neighbor’,1,4),(9383,17305,’Carter Abbey’,2,5),(9383,9998,’Frank Chase’,2,6),(9383,1218108,’Janice Walton’,0,7),(9383,21416,’Dr. Howard Kramer’,2,8),(9383,64515,’Ed, Warehouse Guard’,2,9),(179,2227,’Silvia Broome’,1,0),(179,2228,’Tobin Keller’,2,1),(179,2229,’Dot Woods’,1,2),(179,2244,’Nils Lud’,2,3),(179,2245,’Philippe’,2,4),(179,2246,’Dr. Zuwanie’,2,5),(179,2247,’Kuman-Kuman’,2,6),(179,2248,’Marcus’,2,7),(179,2249,’Police Chief Lee Wu’,2,8),(179,2250,’Rory Robb’,2,9),(179,2251,’Simon Broome’,2,10),(179,2252,’Mo’,2,11),(179,2253,’Doug’,2,12),(179,2254,’Ajene Xola’,2,13),(179,2255,’Jean Gamba’,2,14),(179,2256,’FBI Agent King’,2,15),(179,2257,’FBI Agent Lewis’,2,16),(179,162500,’G.A. President’,0,17),(179,22821,’Charlie Russell’,2,18),(179,1480047,’Himself’,2,19),(179,1778209,’News Reporter’,0,20),(1996,11701,’Lara Croft’,1,0),(1996,17276,’Terry Sheridan’,2,1),(1996,1284,’Bryce’,2,3),(1996,938,’Kosa’,2,4),(1996,1844,’Sean’,2,5),(1996,20519,’Chen Lo’,2,6),(1996,19875,’Nicholas Petraki’,0,7),(1996,20520,’Jimmy Petraki’,0,8),(1996,20522,’MI6 Agent Stevens’,2,10),(1996,20523,’MI6 Agent Calloway’,2,11),(1996,20511,’Hillary’,2,12),(1996,1323612,’Gus Petraki’,2,13),(1996,8785,’Jonathan Reiss’,2,14),(1535,4135,’Nathan D. Muir’,2,0),(1535,287,’Tom Bishop’,2,1),(1535,2462,’Elizabeth Hadley’,0,2),(1535,8435,’Charles Harker’,2,3),(1535,17351,’Troy Folger’,2,4),(1535,17352,’Gladys Jennip’,1,5),(1535,17353,’Dr. William Byars’,2,6),(1535,17354,’Robert Aiken’,2,7),(1535,17355,’Vincent Vy Ngo’,2,8),(1535,17356,’CIA Director Cy Wilson’,2,9),(1535,17357,’Andrew Unger’,2,10),(1535,30082,’Tran’,2,11),(1535,44079,’Anne Cathcart’,1,12),(1535,2131,’Li’,2,13),(2067,33,’Jim McConnell’,2,0),(2067,504,’Woodrow \’Woody\’ Blake’,2,1),(2067,1896,’Luke Graham’,2,2),(2067,935,’Terri Fisher’,1,3),(2067,3035,’Phil Ohlmyer’,2,4),(2067,12978,’Sergei Kirov’,2,5),(2067,21213,’Nicholas Willis’,2,6),(2067,21214,’Reene Cote’,1,7),(2067,21215,’Debra Graham’,1,8),(2067,21216,’Maggie McConnell’,1,9),(2067,12647,’Ramier Beck’,2,10),(2067,143307,’NASA Wife’,0,11),(2067,1234925,’NASA Wife’,1,12),(2067,20188,’NASA Wife’,1,13),(2067,175221,’NASA Wife’,1,14),(2067,55426,’Bobby Graham’,2,15),(2067,74365,’Child at Party’,1,16),(2277,2157,’Andrew Martin’,2,0),(2277,4783,’Richard Martin’,2,1),(2277,6368,’Little Miss’,1,2),(2277,17485,’Rupert Burns’,2,3),(2277,23504,’Galatea’,1,4),(2277,19957,’\’Ma\’am\’ Martin’,1,5),(2277,11367,’Lloyd Charney’,0,6),(2277,90423,’\’Miss\’ Grace Martin – Age 9′,1,7),(2277,156933,’\’Miss\’ Grace Martin’,0,8),(2277,8265,’Bill Feingold – Martin\’s Lawyer’,2,9),(2277,981910,’Lloyd Charney – Age 10′,2,10),(2277,548090,’Robot Delivery Man #1′,0,11),(2277,60081,’Robot Delivery Man #2′,0,12),(2277,17401,’Dennis Mansky – Head of NorthAm Robotics’,2,13),(2277,15674,’Little Miss Amanda Martin – Age 7′,1,14),(2277,1273694,’Male President’,2,15),(2277,1576336,’Park Chess Player (uncredited)’,0,16),(4477,3,’Tom O\’Meara’,2,0),(4477,287,’Rory Devaney / Francis Austin McGuire’,2,1),(4477,8985,’Sheila O\’Meara’,1,2),(4477,2049,’Edwin Diaz’,2,3),(4477,4515,’Billy Burke’,2,4),(4477,38337,’Peter Fitzsimmons’,2,5),(4477,14312,’Chief Jim Kelly’,2,6),(4477,11317,’Megan Doherty’,1,7),(4477,38339,’Sean Phelan’,2,8),(4477,37891,’Harry Sloan’,2,9),(4477,12041,’Bridget O\’Meara’,1,10),(4477,38338,’Morgan O\’Meara’,0,11),(4477,1533391,’Annie O\’Meara’,0,12),(4477,2482,’Martin MacDuf’,2,13),(4477,73287,’Dessie’,0,14),(4477,78597,’Kevin’,2,15),(4477,17194,’Masked Burglar’,2,16),(8665,3,’Alexei Vostrikov’,2,0),(8665,3896,’Mikhail Polenin’,2,1),(8665,133,’Vadim Radtchinko’,2,2),(8665,14324,’Marshal Zelentsov’,2,3),(8665,940,’Admiral Bratyeev’,2,4),(8665,20425,’Dr. Savran’,2,5),(8665,27659,’Partonov’,2,6),(8665,55578,’Demichev’,0,7),(8665,55581,’Konstantin’,2,8),(8665,55582,’Anatoly’,0,9),(8665,55583,’Kornilov’,2,10),(8665,55584,’Gorelov’,2,11),(8665,55585,’Dmitri’,2,12),(8665,55586,’Vasily’,0,13),(8665,55587,’Kuryshev’,2,14),(8665,55588,’Lapinsh’,2,15),(8665,55589,’Leonid’,2,16),(8665,29878,’Sergei’,2,17),(8665,32204,’Kiklidze’,2,18),(8665,55591,’Maxim’,2,19),(8665,1399074,’Danya Yashin’,0,20),(8665,55593,’Stepan’,2,21),(8665,54414,’Grigori’,2,22),(8665,55594,’Oleg’,0,23),(8665,55595,’Dr. Gavril’,0,24),(8665,55596,’Yevgeny Borzenkov’,2,25),(8665,122029,’Pavel’,2,26),(8665,41742,’Suslov’,2,27),(8665,557840,’Anton’,2,28),(9387,1100,’Conan’,2,0),(9387,15152,’Thulsa Doom’,0,1),(9387,2201,’King Osric’,2,2),(9387,45378,’Valeria’,1,3),(9387,98473,’The Witch’,1,4),(9387,100563,’Rexor’,2,5),(9387,4330,’Subotai’,2,6),(9387,10134,’The Wizard / Narrator’,2,7),(9387,100564,’The Princess’,0,8),(9387,98102,’Conan\’s Father’,2,9),(9387,30963,’Red Hair’,2,10),(9387,35710,’Pictish Scout’,2,11),(9387,100565,’Conan\’s Mother’,1,12),(9387,8927,’Priest’,2,13),(9387,20761,’Thorgrim’,2,14),(9387,100566,’Slave Girl’,1,15),(9387,145414,’Young Conan’,2,18),(921,934,’Jim Braddock’,2,0),(921,9137,’Mae Braddock’,1,1),(921,13242,’Joe Gould’,2,2),(921,14886,’Max Baer’,2,3),(921,14887,’Mike Wilson’,2,4),(921,14888,’Jimmy Johnston’,2,5),(921,5922,’Ford Bond’,2,6),(921,14889,’Jay Braddock’,2,7),(921,14890,’Rosemarie Braddock’,1,8),(921,14891,’Howard Braddock’,2,9),(921,14892,’Sara Wilson’,1,10),(921,14893,’Lucille Gould’,1,11),(921,14902,’Sporty Lewis’,2,12),(921,14903,’Jake’,2,13),(921,14905,’Father Rorick’,2,14),(921,85170,’Joe Jeanette’,2,15),(921,59198,’Primo Carnera’,2,16),(921,22250,’Announcer Al Fazin’,2,17),(921,129466,’Official – Griffin / Baer Fight’,0,18),(921,65808,’Referee McAvoy’,2,19),(921,15661,’Referee’,2,20),(921,1226313,’Ancil Hoffman’,0,21),(921,1225377,’Lewis Coach’,0,22),(921,1336359,’Braddock Cornerman’,0,23),(921,15230,’Baer Cornerman / Undercard Boxer – Feldman’,0,24),(921,40693,’Frankie Campbell’,0,25),(921,94833,’Announcer – Lasky’,2,26),(921,54193,’Young Reporter’,2,27),(921,38572,’Reporter’,2,28),(921,20196,’Reporter’,2,29),(921,10210,’Reporter’,2,30),(921,174580,’Reporter’,2,31),(921,285269,’Reporter’,0,32),(921,1496026,’Reporter’,0,33),(921,56262,’1928 Fan’,2,34),(921,199849,’1935 Fan’,0,35),(921,1327918,’1935 Fan’,0,36),(921,234,’Quincy’,2,37),(921,229,’Electric Man’,2,38),(921,1214322,’Promoter’,0,39),(921,20178,’Dock Worker’,2,40),(921,83027,’Relief Office Woman’,1,41),(921,219630,’Waiter’,0,42),(921,1205726,’Church Man’,0,43),(921,1378909,’Church Old Man’,0,44),(921,188623,’Church Girl’,0,45),(921,42308,’Sam’,2,46),(921,166529,’Radio Commentator’,2,47),(921,55588,’Hooverville Cop’,2,48),(921,201811,’Hooverville Cop’,0,49),(921,472349,’Hooverville Man’,2,50),(921,138877,’Gibson’,0,51),(921,5927,’Sam Penny’,2,52),(921,27586,’Limo Driver’,2,53),(921,186539,’Announcer – Griffith’,0,54),(921,219393,’Flapper Girl’,0,55),(921,166488,’Deserting Father’,0,56),(921,116081,’Junket’,0,57),(921,216758,’Security Guard’,2,58),(921,8362,’Cop’,2,59),(921,83025,’Fight Promoter’,0,60),(921,64308,’Fluzy (uncredited)’,1,61),(921,1053296,’Ringside Fan (uncredited)’,0,62),(921,1444763,’1935 Fan (uncredited)’,1,63),(921,1126804,’Ring Photographer (uncredited)’,2,64),(921,112652,’Hooverville Man (uncredited)’,0,65),(921,955655,’Cop In Ring (uncredited)’,2,66),(921,1574936,’Press (uncredited)’,0,67),(4464,1229,’Charles Howard’,2,0),(4464,37332,’Narrator’,2,1),(4464,2955,’Tom Smith’,2,2),(4464,2219,’Red Pollard’,2,3),(4464,9281,’Marcela Howard’,1,4),(4464,38272,’George Woolf’,2,5),(4464,3905,’Tick Tock McGlaughlin’,2,6),(4464,22251,’Dutch Doogan’,2,7),(4464,8692,’Samuel D. Riddle’,2,8),(4464,38273,’Charley Kurtsinger’,0,9),(4464,1080265,’Steamer Owner’,0,10),(4464,1845370,’Male Mariachi Band’,0,11),(664,9994,’Dr. Jo Harding’,1,0),(664,2053,’Bill Harding’,2,1),(664,2130,’Dr. Jonas Miller’,2,2),(664,9995,’Dr. Melissa Reeves’,1,3),(664,1233,’Dustin Davis’,2,4),(664,2207,’Meg Greene’,1,5),(664,2394,’Robert \’Rabbit\’ Nurick’,2,6),(664,9996,’Allan Sanders’,2,7),(664,9997,’Jason \’Preacher\’ Rowe’,2,8),(664,5010,’Tim \’Beltzer\’ Lewis’,2,9),(664,9998,’Joey’,2,10),(664,9999,’Haynes’,0,11),(664,4654,’Laurence’,2,12),(664,7471,’Eddie’,2,13),(664,10000,’Willie’,2,14),(664,57674,’Jo Harding age 6′,1,15),(8358,31,’Chuck Noland’,2,0),(8358,9994,’Kelly Frears’,1,1),(8358,38026,’Jerry Lovett’,2,2),(8358,11892,’Ramon’,0,3),(8358,55433,’Bettina Peterson’,1,4),(8358,55434,’Fyodor’,0,5),(8358,55435,’Dick Peterson’,2,6),(8358,55436,’Nicolai’,0,7),(8358,55437,’Yuri’,2,8),(8358,55438,’Lev’,0,9),(8358,12538,’Stan’,2,10),(8358,1177850,’French FedEx Loader’,0,11),(8358,1007561,’Pilot Jack’,2,12),(8358,51537,’Lauren Madden’,1,13),(9836,109,’Mumble (voice)’,2,0),(9836,2157,’Ramon / Lovelace the Guru (voice)’,2,1),(9836,328,’Gloria (voice)’,1,2),(9836,6968,’Memphis (voice)’,2,3),(9836,2227,’Norma Jean (voice)’,1,4),(9836,1331,’Noah the Elder (voice)’,2,5),(9836,57829,’Boss Skua (voice)’,2,6),(9836,15274,’Baby Mumble (voice)’,1,7),(9836,45586,’Miss Viola (voice)’,1,8),(9836,6199,’Mrs. Astrakhan (voice)’,1,9),(9836,59784,’Nestor (voice)’,2,10),(9836,4992,’Raul (voice)’,2,11),(9836,59782,’Rinaldo (voice)’,2,12),(9836,59783,’Lombardo (voice)’,2,13),(9836,59785,’Seymour (voice)’,2,14),(9836,59786,’Baby Gloria (voice)’,1,15),(9836,53211,’Baby Seymour (voice)’,0,16),(9836,52699,’Dino (voice)’,2,17),(9836,59787,’Vinnie (voice)’,0,18),(9836,59788,’Frankie (voice)’,2,19),(2502,1892,’Jason Bourne’,2,0),(2502,679,’Marie Helene Kreutz’,1,1),(2502,1248,’Ward Abbott’,2,2),(2502,12041,’Nicky Parsons’,1,3),(2502,1372,’Kirill’,2,4),(2502,32458,’Danny Zorn’,2,5),(2502,11148,’Pamela Landy’,1,6),(2502,20982,’Jarda’,2,7),(2502,27030,’Tom Cronin’,2,8),(2502,60118,’Teddy’,2,9),(2502,166654,’Kurt’,2,10),(2502,11705,’Kim’,1,11),(2502,10841,’Yuri Gretkov’,2,12),(2502,941,’Martin Marshall’,2,13),(2502,77667,’Irena Neski’,1,14),(2502,13737,’Vladimir Neski’,2,15),(2502,1098275,’Mrs. Neski’,0,16),(2502,27031,’John Nevins’,2,17),(2502,87019,’Vic’,2,18),(2502,43456,’Ivan’,2,19),(2502,25600,’Jack Weller’,2,20),(2502,1099879,’Jarhead’,2,21),(2502,1780360,’Jarhead’,0,22),(2502,167384,’Jarhead’,2,23),(2502,1780361,’CIA Techie’,0,24),(2502,49485,’Waitress’,0,25),(2502,6644,’Night Clerk’,0,26),(2502,1780362,’Moscow Taxi Driver’,0,27),(2502,1391450,’Suspicious Cop’,0,28),(2502,1780363,’Market Security Guard’,0,29),(2502,1780364,’Mr. Mohan’,0,30),(2502,1257228,’Neski Neighbor’,0,31),(2502,1780365,’Young Cop’,0,32),(2502,1780366,’2nd Cop’,0,33),(2502,1608682,’2nd Taxi Driver’,2,34),(2502,1138032,’Immigration Officer’,0,35),(2502,1780367,’Doorman’,0,36),(2502,1780368,’Vodka Police Passenger’,0,37),(2502,1780369,’Mercedes Driver’,0,38),(2502,1343406,’Mercedes Passenger’,0,39),(2502,1780370,’Volga Taxi Owner’,0,40),(2502,1169507,’Berlin Taxi Driver’,0,41),(2502,6079,’Moscow Policeman’,0,42),(2502,223907,’Moscow Policeman’,0,43),(2502,1329649,’Delta C.O.’,0,44),(2502,2955,’Alexander Conklin’,2,45),(9772,3,’President James Marshall’,2,0),(9772,64,’Ivan Korshunov’,2,1),(9772,515,’Vice President Kathryn Bennett’,1,2),(9772,19957,’Grace Marshall’,1,3),(9772,3905,’Major Caldwell’,2,4),(9772,920,’General Ivan Radek’,2,5),(9772,77351,’Prison Guard #2′,2,6),(9772,84093,’Alice Marshall’,1,7),(9772,925,’Chief of Staff Lloyd \’Shep\’ Shepherd’,2,8),(9772,3982,’Secret Service Agent Gibbs’,2,9),(9772,923,’Defense Secretary Walter Dean’,2,10),(9772,140250,’National Security Advisor Jack Doherty’,2,11),(9772,65740,’Deputy Press Secretary Melanie Mitchel’,1,12),(9772,155841,’Colonel Axelrod’,0,13),(9772,157140,’Lt. Colonel Ingraham’,2,14),(9772,1080064,’AFO Navigator’,0,15),(9772,2368,’Andrei Kolchak’,2,16),(9772,27037,’Sergei Lenski’,2,17),(9772,37205,’Igor Nevsky’,2,18),(9772,36218,’Boris Bazylev’,2,19),(9772,109667,’Vladimir Krasin’,2,20),(9772,936505,’Major Perkins’,0,21),(9772,49275,’White House Aide Thomas Lee’,2,22),(9772,17200,’General Northwood’,2,23),(9772,4492,’U.S. Attorney General Ward’,2,24),(9772,13310,’White House Comm. Officer’,2,25),(9772,53249,’Assistant Press Secretary’,0,26),(9772,187683,’Steward Joey’,0,27),(9772,2550,’Notre Dame Aide’,2,28),(9772,66994,’Agent Johnson’,2,29),(9772,12797,’Agent Walters’,2,30),(9772,79025,’F-15 Leader Colonel Carlton’,2,31),(9772,6580,’Chief Mechanic’,0,32),(9772,157986,’Switchboard Operator’,1,33),(9772,8175,’Ramstein S.O.F. Watch Officer’,2,34),(9772,173756,’Reporter #1′,2,35),(9772,237370,’MiG Leader’,0,36),(9772,20563,’MiG Pilot’,2,37),(161,1461,’Danny Ocean’,2,0),(161,287,’Rusty Ryan’,2,1),(161,1892,’Linus Caldwell’,2,2),(161,1271,’Terry Benedict’,2,3),(161,1204,’Tess Ocean’,1,4),(161,1893,’Virgil Malloy’,2,5),(161,1894,’Turk Malloy’,2,6),(161,1895,’Saul Bloom’,2,7),(161,1897,’Frank Catton’,2,8),(161,827,’Reuben Tishkoff’,2,9),(161,1898,’Livingston Dell’,2,10),(161,1900,’Yen’,2,11),(161,1906,’Bulldog, the Bruiser’,0,12),(161,240770,’Head Goon’,0,13),(161,14731,’Boxing Spectator’,2,14),(161,26469,’Holly’,1,15),(161,1884,’Vault-Bombing Thief’,2,16),(161,1402117,’Flashback Security Guard’,2,17),(161,1655618,’Security Guard’,2,18),(161,235346,’Security Officer #1′,0,19),(161,1896,’Basher Tarr (uncredited)’,2,20),(161,81295,’Shane West (uncredited)’,2,21),(161,96901,’Billy Tim Denham’,0,22),(4523,9273,’Giselle’,1,0),(4523,18352,’Robert Philip’,2,1),(4523,11006,’Prince Edward’,2,2),(4523,9191,’Nathaniel’,2,3),(4523,38192,’Morgan Philip’,1,4),(4523,4038,’Queen Narissa’,1,5),(4523,19394,’Nancy Tremaine’,1,6),(4523,5823,’Narrator’,1,7),(4523,34982,’Pip in Andalasia’,2,8),(4523,15775,’Pip in New York’,2,9),(4523,42914,’Rapunzel’,0,10),(4523,42915,’Bunny’,1,11),(4523,60279,’Troll’,2,12),(4523,1209404,’Singlass Street Vendor’,0,13),(4523,1279550,’Grumpy’,0,14),(1581,6941,’Amanda Woods’,1,0),(1581,204,’Iris Simpkins’,1,1),(1581,9642,’Graham’,2,2),(1581,70851,’Miles’,2,3),(1581,3265,’Arthur Abbott’,2,4),(1581,12833,’Ethan’,2,5),(1581,17328,’Jasper’,2,6),(1581,17691,’Sophia’,1,7),(1581,17692,’Olivia’,1,8),(1581,17693,’Hannah’,0,9),(1581,27855,’Maggie’,1,10),(1581,17695,’Ernie’,2,11),(1581,10403,’Norman’,2,12),(1581,17696,’Bristol’,1,13),(1581,17697,’Ben’,2,14),(1581,51992,’Kissing Couple’,1,15),(1581,41297,’Kissing Couple’,2,16),(1581,4483,’Himself’,2,17),(1581,1775990,’Marta’,1,18),(1581,17051,’Himself’,2,19),(1581,49265,’Herself’,1,20),(9798,2888,’Robert Clayton Dean’,2,0),(9798,193,’Edward Brill Lyle’,2,1),(9798,10127,’Thomas Brian Reynolds’,2,2),(9798,9788,’Carla Dean’,1,3),(9798,10985,’John Bingham’,2,4),(9798,3232,’Rachel Banks’,1,5),(9798,12834,’David Pratt’,2,6),(9798,6474,’Jerry Miller’,2,7),(9798,28410,’Krug’,2,8),(9798,1894,’Jones’,2,9),(9798,6213,’Jamie Williams’,0,10),(9798,11662,’Daniel Leon Zavitz’,2,11),(9798,5168,’Fake Brill’,2,12),(9798,58147,’Eric Dean’,2,13),(9798,14344,’Congressman Sam Albert’,2,14),(9798,70851,’Fiedler’,2,15),(9798,134531,’Emily Reynolds’,1,16),(9798,565498,’Christa Hawkins’,1,17),(9798,11628,’Loren Hicks’,2,18),(9798,154883,’Van’,2,19),(9798,76470,’Shaffer’,2,20),(9798,31511,’Lenny’,2,21),(9798,29930,’Ruby\’s Sales Clerk’,1,22),(9798,13922,’Selby (uncredited)’,2,23),(9798,4492,’Attorney Mark Silverberg (uncredited)’,2,24),(9798,4765,’Congressman Phillip Hammersley (uncredited)’,2,25),(9798,3197,’Boss Paulie Pintero (uncredited)’,2,26),(9798,28004,’Attorney Brian Blake (uncredited)’,2,27),(9798,44127,’Himself (uncredited)’,2,28),(9798,1115118,’Tunnel Technician’,2,29),(9798,1629923,’Field Reporter’,1,30),(9798,1507100,’Dylan’,0,31),(9798,1354153,’Mike – Law Firm’,0,32),(9798,52925,’Jenny’,0,33),(9798,1139954,’Hotel Desk Clerk’,0,34),(9798,17917,’Young Worker’,2,35),(9798,31007,’Older Worker #1′,2,36),(9798,28033,’Frankie’,2,37),(9798,1216752,’Bartender’,0,38),(9798,173886,’Fireman #2′,2,39),(9798,205164,’Tunnel Maintenance Worker’,2,40),(9798,1395918,’Mrs. Wu’,0,41),(9798,46084,’Paramedic’,0,42),(9798,3197,’Boss Paulie Pintero’,2,43),(298,1461,’Daniel Ocean’,2,0),(298,287,’Robert u201cRustyu201d Charles Ryan’,2,1),(298,1892,’Linus Caldwell’,2,2),(298,1158,’Willie Banks’,2,3),(298,1897,’Frank Catton’,2,4),(298,1271,’Terry Benedict’,2,5),(298,1893,’Virgil Malloy’,2,6),(298,1894,’Turk Malloy’,2,7),(298,1895,’Saul Bloom’,2,8),(298,1896,’Basher Tarr’,2,9),(298,1900,’u2018The Amazingu2019 Yen’,2,10),(298,1898,’Livingston Dell’,2,11),(298,827,’Reuben Tishkoff’,2,12),(298,6913,’Abigail Sponder’,1,13),(298,1926,’Roman Nagel’,2,14),(298,1925,’Franu00e7ois u201cThe Nightfoxu201d Toulour’,2,15),(298,16302,’FBI Agent’,2,16),(298,16303,’Cu00e9line Dion’,1,17),(298,1115997,’Cocktail Waitress’,0,18),(298,1212249,’Agent Caldwell\’s \’Deputy\”,0,19),(298,6104,’Greco Montgomery’,2,20),(298,19839,’V.U.P.’,2,21),(298,60573,’Gerard – Ortega’,2,22),(298,843374,’High Roller (uncredited)’,1,23),(298,1763429,’Cocktail Waitress’,1,24),(7484,78029,’Boog (voice)’,2,0),(7484,18976,’Elliot (voice)’,2,1),(7484,33,’Shaw (voice)’,2,2),(7484,23959,’Beth (voice)’,1,3),(7484,9188,’McSquizzy (voice)’,0,4),(7484,52697,’Bobbie (voice)’,1,5),(7484,15277,’Reilly (voice)’,2,6),(7484,13636,’Giselle (voice)’,1,7),(7484,37430,’Gordy (voice)’,2,8),(7484,9657,’Ian (voice)’,2,9),(7484,12095,’Mr. Weenie (voice)’,2,10),(7484,52698,’Rosie (voice)’,1,11),(7484,52699,’Serge (voice)’,2,12),(7484,10489,’Hunter (voice)’,2,13),(7484,52700,’Maria (voice)’,1,14),(7484,52701,’O\’Toole (voice)’,0,15),(7484,1226913,’Amanda (Voice)’,1,16),(853,9642,’Vassili Zaitsev’,2,0),(853,3293,’Tania Chernova’,1,1),(853,228,’Major Ku00f6nig’,2,2),(853,12763,’Commisar Danilov’,2,3),(853,382,’Nikita Khrushchev’,2,4),(853,2372,’Koulikov’,2,5),(853,10627,’Mother Filipov’,1,6),(853,12764,’Sacha Filipov’,2,7),(853,4534,’General Paulus’,2,8),(853,12765,’Young Vassili Zaitsev’,2,9),(853,12766,’Comrade in Train’,0,10),(853,12767,’Russian NCO’,0,11),(853,12768,’Political Officer’,0,12),(853,6079,’Volodya’,0,13),(853,15122,’Ludmilla’,1,14),(853,1445335,’Grandfather’,0,15),(9593,1100,’Jack Slater’,2,0),(9593,1164,’John Practice’,2,1),(9593,40176,’Frank’,2,2),(9593,4391,’Benedict’,2,3),(9593,1735,’Lieutenant Dekker’,2,4),(9593,119232,’Ripper / Tommy Noonan’,2,5),(9593,5401,’Tony Vivaldi’,2,6),(9593,2167,’Irene Madigan’,1,7),(9593,58119,’Danny Madigan’,2,8),(9593,10360,’Nick’,2,9),(9593,1327,’Death’,2,10),(9593,23709,’Teacher’,1,11),(9593,44051,’Herself’,1,12),(9593,1459,’The Mayor’,1,13),(9593,11315,’Rookie’,2,14),(9593,13023,’Ratcliff’,1,15),(9593,518,’Whiskers (Voice)’,2,16),(9593,15111,’Jean-Claude Van Damme’,2,17),(9593,20751,’Whitney/Meredith’,0,18),(9593,3172,’Torelli’,2,19),(9593,54812,’Chevy Chase’,2,20),(9593,26485,’James Belushi’,2,21),(1904,1339,’Sayuri’,1,0),(1904,643,’Hatsumomo’,1,1),(1904,16145,’Pumpkin’,1,2),(1904,10075,’Auntie’,1,3),(1904,19855,’Chiyo’,1,4),(1904,3899,’The Chairman’,2,5),(1904,1620,’Mameha’,1,6),(1904,19856,’Izuko’,0,7),(1904,18056,’Nobu’,2,8),(1904,19857,’Mother’,1,9),(1904,19858,’Young Pumpkin’,1,10),(1904,11398,’The Baron’,2,11),(1904,10885,’The General’,0,12),(1904,9462,’Dr. Crab’,2,13),(1904,17342,’Lieutenant Hutchins’,2,14),(1904,15854,’Colonel Derricks’,2,15),(1904,19859,’Satsu’,0,16),(1904,19860,’Koichi’,2,17),(1904,9192,’Tanaka’,2,18),(1904,19861,’Sakamoto\’s Wife’,1,19),(1904,113948,’Korin’,1,20),(9615,155,’Sean Boswell’,2,0),(9615,116277,’Neela’,1,1),(9615,61697,’Han Lue’,2,2),(9615,58197,’Twinkie’,0,3),(9615,116278,’D.K.’,2,4),(9615,24200,’Morimoto’,2,5),(9615,80978,’Major Boswell’,2,6),(9615,52477,’Clay’,2,7),(9615,88677,’Cindy (Clay\’s Girlfriend)’,1,8),(9615,162367,’Earl’,0,9),(9615,120923,’Reiko’,1,10),(9615,20188,’Ms. Boswell’,1,11),(9615,2537,’Uncle Kamata’,2,12),(9615,12835,’Dominic Toretto (uncredited)’,2,13),(9615,1670874,’High School Security Guard’,0,14),(9615,60390,’American Math Teacher’,0,15),(9615,1450799,’Clay\’s Buddy’,0,16),(9615,183066,’Clay\’s Buddy’,2,17),(9615,59012,’Clay\’s Buddy’,2,18),(9615,1187106,’Cheerleader’,1,19),(9615,1670875,’Cheerleader’,0,20),(9615,1670876,’Chubby Hispanic Kid’,0,21),(9615,1670877,’Auto Shop Bully’,0,22),(9615,1670878,’Auto Shop Bully’,0,23),(9615,1670879,’Auto Shop Bully’,0,24),(9615,1983,’Case Worker’,2,25),(9615,1670880,’Police Officer’,0,26),(9615,592147,’Woman at Boswell\’s Apt.’,1,27),(9615,1089940,’Math Teacher’,0,28),(9615,1670886,’Toshi at Underground Garage’,0,29),(9615,1670887,’DJ Atley’,0,30),(9615,226738,’Tea Hair’,0,31),(9615,1670888,’Tea Hair’,0,32),(9615,564615,’Cowgirl at Starting Line’,0,33),(9615,1232381,’Cowgirl at Starting Line’,0,34),(9615,80108,’Exceedingly Handsome Guy’,2,35),(9615,1670890,’Paw Man’,0,37),(9615,1291386,’Sexy Brazilian Model’,1,38),(9615,213359,’Russian Model’,1,39),(9615,1255132,’Old Fisherman’,0,40),(9615,132118,’Old Fisherman’,0,41),(9615,1670892,’Jimmy’,0,42),(9615,1670893,’Beautiful Girl in Skyline’,0,43),(9615,1670894,’Beautiful Girl in Skyline’,0,44),(9615,1024388,’Bo-Peep Girl’,0,45),(9615,1670895,’Bo-Peep Girl’,0,46),(9615,1670896,’Neela\’s Friend’,0,47),(9615,1670897,’Neela\’s Friend’,0,48),(9615,62766,’Pinkie (Yakuza)’,0,49),(9615,84656,’Yakuza Man’,0,50),(9615,1670898,’Yakuza Man’,0,51),(9615,1007674,’Yakuza Man’,0,52),(9615,1670899,’Yakuza Man’,0,53),(9615,1586675,’Model (uncredited)’,1,54),(9615,201914,’Bully (uncredited)’,2,55),(9615,1000089,’Alden’,2,56),(297,287,’Joe Black’,2,0),(297,4173,’William Parrish’,2,1),(297,4174,’Susan Parrish’,1,2),(297,4175,’Quince’,2,3),(297,4726,’Allison Parrish’,1,4),(297,4177,’Drew’,2,5),(297,4192,’Eddie Sloane’,2,6),(297,4193,’Jamaican Woman’,1,7),(297,4194,’Jamaican Woman\’s Daughter’,0,8),(297,4195,’The Parrish\’s Butler’,0,9),(297,35515,’Helen’,1,10),(9884,1100,’Gordy Brewer’,2,0),(9884,3809,’Selena Perrini’,1,1),(9884,13550,’Peter Brandt’,2,2),(9884,7248,’Claudio Perrini’,2,3),(9884,1241,’Sean Amstrong’,2,4),(9884,5723,’Felix Ramirez’,2,5),(9884,43775,’Agent Russo’,1,6),(9884,9464,’FBI Agent Dray’,2,7),(9884,26294,’Anne Brewer’,1,8),(9884,53280,’Mauro’,2,9),(9884,61545,’Ronnie’,2,10),(9884,118756,’Undersecretary Shrub’,2,11),(9884,30488,’Joe Phipps’,2,12),(9884,101172,’Chairman Paul Devereaux’,2,13),(9884,13028,’Senator Delich’,2,14),(9884,128672,’Rodrigo’,2,15),(9884,97944,’Ed Coonts’,2,16),(9884,154295,’Jack’,2,17),(9884,1190010,’Rocha’,2,18),(9884,1233911,’Matt Brewer’,0,19),(9884,13657,’Roman’,2,20),(9341,6383,’Dr. Josh Keyes’,2,0),(9341,448,’Maj. Rebecca Childs’,1,1),(9341,18792,’Dr. Ed \’Braz\’ Brazzleton’,2,2),(9341,2283,’Dr. Conrad Zimsky’,2,3),(9341,10698,’Serge’,2,4),(9341,132078,’Theodore Donald \’Rat\’ Finch’,2,5),(9341,28633,’Gen. Thomas Purcell’,2,6),(9341,21089,’Cmdr. Robert Iverson’,2,7),(9341,83777,’Dave Perry’,2,8),(9341,172851,’Paul’,2,9),(9341,52457,’Lynne’,1,10),(9341,62717,’Danni’,1,11),(9341,534315,’Acker’,2,12),(9341,12797,’FBI Agent’,2,13),(9341,106979,’FBI Agent’,2,14),(9341,1981,’Stickley’,1,15),(9341,963962,’Court-Martial Presiding Officer’,2,16),(9341,158498,’Dad’,2,17),(9341,724359,’Mom’,1,18),(9341,1182659,’Little Boy’,0,19),(9341,27123,’GBTV Reporter – Trafalgar Square’,2,20),(9341,112641,’Flight Engineer Timmins’,0,21),(9341,62245,’Endeavor Flight Engineer’,2,22),(9341,62912,’Chief Engineer Mission Control’,2,23),(9341,1502724,’Scientist’,0,24),(9341,1255833,’Zimsky\’s Assistant’,0,25),(9341,77039,’Pentagon General’,2,26),(9341,79346,’FBI Agent – Rat\’s Apartment’,2,27),(9341,182920,’Security Policeman – Tribunal’,0,28),(9341,1502725,’Rome Cafu00e9 Patron’,0,29),(9341,1157971,’Rome Cafu00e9 Patron’,0,30),(9341,1502726,’Rome Cafu00e9 Patron’,0,31),(9341,1502727,’Rome Cafu00e9 Patron’,0,32),(9341,35521,’Luke Barry’,2,33),(9341,184573,’News Anchor’,1,34),(9341,139626,’News Anchor’,0,35),(9341,52512,’Project Destiny Engineer’,2,36),(9341,1502728,’Project Destiny Engineer’,0,37),(9341,1502729,’Paris Cafu00e9 Lady’,0,38),(9341,936196,’Paris Cafu00e9 Lady’,1,39),(9341,20221,’U.S.S. Constellation Captain’,0,40),(9341,1502730,’U.S.S. Constellation Screen Ops’,0,41),(9341,1235168,’U.S.S. Soldier (uncredited)’,0,42),(9341,1502731,’Scientist / Extra (uncredited)’,0,43),(9341,1502732,’Coffeehouse Patron (uncredited)’,0,44),(9341,1502733,’Beach-goer (uncredited)’,2,45),(9341,91776,'(voice) (uncredited)’,2,46),(9341,172990,’Security Policeman (uncredited)’,2,47),(9341,233922,’Scientist (uncredited)’,1,48),(9341,1502739,’Himself’,0,49),(9341,1502740,’Technician – Virgil Base’,2,50),(9341,1502741,’Engineer (uncredited)’,0,51),(9341,1208307,’Chief Petty Officer (uncredited)’,0,52),(9341,1502742,’News Anchor (uncredited)’,1,53),(9637,33260,’Fred Jones’,2,0),(9637,11863,’Daphne Blake’,1,1),(9637,26457,’Norville Rogers (u201eShaggyu201c)’,2,2),(9637,1817,’Velma Dinkley’,1,3),(9637,10730,’Emile Mondavarious’,2,4),(9637,58271,’Scooby-Doo (voice)’,0,5),(9637,58272,’Scrappy-Doo (voice)’,2,6),(9637,52848,’Mary Jane’,1,7),(9637,6736,’Herself’,1,8),(9637,35753,’Himself’,0,9),(9637,74354,’Voodoo Maestro’,2,10),(9339,19292,’Michael Newman’,2,0),(9339,3967,’Donna Newman’,1,1),(9339,4690,’Morty’,2,2),(9339,28238,’Ammer’,2,3),(9339,31903,’Ted Newman’,2,4),(9339,199,’Trudy Newman’,1,5),(9339,1328,’Bill’,2,6),(9339,202062,’Ben Newman at 7 years old’,0,7),(9339,21007,’Ben Newman at 17 years old’,2,8),(9339,134235,’Ben Newman at 22-30 years old’,2,9),(9339,1225804,’Samantha Newman at 5 years old’,0,10),(9339,966053,’Samantha Newman at 14 years old’,1,11),(9339,55775,’Samantha Newman at 27 years old’,1,12),(9339,37089,’Kevin O\’Doyle’,2,13),(9339,38334,’Janine’,1,14),(9339,60949,’Prince Habeeboo’,2,15),(9339,1577405,’Hot Assistant (uncredited)’,1,16),(9339,32907,’Bed, Bath & Beyond Guy’,2,17),(9339,53256,’Singing Driver (uncredited)’,2,18),(9339,32905,’Alice / Alan’,1,19),(9339,583714,’Judy’,0,20),(9339,15152,’Narrator of Michael\’s Past (uncredited)’,0,21),(9339,1811221,’Best Man’,2,22),(9339,62784,’Newman Employee’,0,23),(8247,17244,’David Rice’,2,0),(8247,478,’Griffin’,2,1),(8247,2231,’Roland’,2,2),(8247,52783,’Millie Harris’,1,3),(8247,12132,’William Rice’,2,4),(8247,2882,’Mary Rice’,1,5),(8247,1285,’Young Millie’,1,6),(8247,41883,’Young David’,2,7),(8247,10135,’Young Mark’,2,8),(8247,3999,’Mr. Bowker’,2,9),(8247,37917,’Sophie’,1,10),(8247,115729,’Mark Kobold’,2,11),(8247,12932,’Ellen’,1,12),(8247,1184028,’Day Bank Manager’,0,13),(8247,27427,’Italian Desk Cop’,0,14),(8247,81097,’English Bartender’,2,15),(8247,17337,’English Beauty’,1,16),(8247,43264,’Fiona’,1,17),(8247,76528,’NYPD Detective’,2,18),(8247,1573505,’Bank Guard’,0,19),(8247,1573507,’Police Officer’,0,20),(1949,131,’Robert Graysmith’,2,0),(1949,3223,’Paul Avery’,2,1),(1949,103,’Dave Toschi’,2,2),(1949,11085,’Bill Armstrong’,2,3),(1949,1248,’Melvin Belli’,2,4),(1949,13550,’Jack Mulanax’,2,5),(1949,2838,’Melanie’,1,6),(1949,3911,’Arthur Leigh Allen’,2,7),(1949,20210,’Al Hyman’,2,8),(1949,20211,’Templeton Peck’,2,9),(1949,8659,’Charles Thieriot’,2,10),(1949,12407,’Carol Fisher’,1,11),(1949,20212,’Captain Martin Lee’,2,12),(1949,12549,’Detective Roy’,2,13),(1949,20387,’Linda del Buono’,1,14),(1949,10825,’Captain Ken Narlow’,2,15),(1949,83873,’Mrs. Toschi’,0,16),(1949,22125,’Mike Mageau’,2,17),(1949,12826,’Bob Vaughn’,2,18),(1949,4492,’Sherwood Morrill’,2,19),(1949,6163,’Duffy Jennings’,2,20),(1949,7471,’Mel Nicolai’,2,21),(1949,1180860,’Zodiac 4′,0,22),(1949,17449,’Zodiac 3′,2,23),(1949,7472,’Zodiac 1 y 2′,2,24),(1949,1040166,’Man on Marquee’,2,25),(8452,1100,’Adam Gibson’,2,0),(8452,4688,’Hank Morgan’,2,1),(8452,3417,’Michael Drucker’,2,2),(8452,12132,’Robert Marshall’,2,3),(8452,41819,’Talia Elsworth’,1,4),(8452,3087,’Dr. Griffin Weir’,2,5),(8452,19957,’Natalie’,1,6),(8452,378849,’Clara’,0,7),(8452,190944,’Reporter’,1,8),(8452,33355,’Johnny Phoenix’,2,9),(8452,117085,’Katherine Weir’,1,10),(8452,1215284,’Scott Moore’,0,11),(310,206,’Bruce Nolan’,2,0),(310,4491,’Grace Connelly’,1,1),(310,4492,’Jack Baylor’,2,2),(310,4493,’Susan Ortega’,1,3),(310,4494,’Debbie’,1,4),(310,4495,’Evan Baxter’,2,5),(310,4496,’Ally Loman’,1,6),(310,4498,’Dallas Coleman’,0,8),(310,192,’God’,2,9),(310,1898,’Bobby’,2,10),(310,99090,’Camera Operator’,2,11),(954,500,’Ethan Hunt’,2,0),(954,10127,’Jim Phelps’,2,1),(954,4885,’Claire Phelps’,0,2),(954,15319,’Eugene Kittridge’,2,3),(954,1003,’Franz Krieger’,2,4),(954,10182,’Luther Stickell’,2,5),(954,5470,’Sarah Davies’,1,6),(954,13333,’Max’,1,7),(954,3211,’Frank Barnes’,2,8),(954,15320,’Alexander Golitsyn’,2,9),(954,15321,’Zozimov’,0,10),(954,14593,’Hannah Williams’,1,11),(954,15322,’Drunken Female IMF Agent’,0,12),(954,10849,’Drunken Male IMF Agent’,0,13),(954,15323,’Kittridge Technician’,0,14),(954,2880,’Jack Harmen’,2,15),(954,1181189,’Large man’,2,16),(954,15318,’Fireman (uncredited)’,2,17),(954,559766,’TV Interviewer’,0,18),(954,231246,’Matthias’,0,20),(954,10673,’Max\’s Companion’,2,21),(954,10212,’Denied Area Security Guard’,0,22),(954,26782,’Denied Area Security Guard’,2,23),(954,1220107,’Flight Attendant’,0,24),(954,17356,’CNN Reporter’,2,25),(954,69471,’Kiev Room Agent’,0,26),(954,2065,’Train Engineer’,2,27),(954,1324518,’Female Executive in Train’,0,28),(954,1401796,’Passenger on Train in Tunnel (uncredited)’,0,29),(954,151438,’CIA Analyst William Donloe’,0,30),(364,2232,’Bruce Wayne/Batman’,2,0),(364,518,’Oswald Cobblepot/The Penguin’,2,1),(364,1160,’Selina Kyle/Catwoman’,1,2),(364,4690,’Max Shreck’,2,3),(364,3796,’Alfred’,2,4),(364,3798,’Commissioner James Gordon’,2,5),(364,3418,’Organ Grinder’,2,6),(364,4776,’Mayor’,2,7),(364,5130,’Ice Princess’,1,8),(364,5129,’Mr. Cobblepot/ Penguin\’s Father’,2,9),(364,5131,’Mrs. Cobblepot/Penguin\’s Mother’,1,10),(7518,62,’RJ (voice)’,2,0),(7518,52865,’Verne (voice)’,2,1),(7518,4495,’Hammy (voice)’,2,2),(7518,27102,’Stella (voice)’,0,3),(7518,1748,’Ozzie (voice)’,2,4),(7518,1733,’Vincent (voice)’,2,5),(7518,19159,’Dwayne (voice)’,2,6),(7518,19,’Gladys (voice)’,1,7),(7518,26510,’Lou (voice)’,2,8),(7518,11514,’Penny (voice)’,0,9),(7518,52866,’Heather (voice)’,1,10),(7518,41379,’Tiger (voice)’,2,11),(7518,52867,’Bucky (voice)’,0,12),(7518,52868,’Spike (voice)’,2,13),(7518,52869,’Quillo (voice)’,1,14),(7518,42160,'(voice)’,1,15),(7518,61304,’voice)’,1,16),(9986,1204,’Charlotte the Spider (voice)’,1,0),(9986,884,’Templeton the Rat (voice)’,2,1),(9986,8930,’Samuel the Sheep (voice)’,0,2),(9986,13309,’Gussy the Goose (voice)’,1,3),(9986,5726,’Golly the Goose (voice)’,2,4),(9986,21986,’Betsy the Cow (voice)’,1,5),(9986,8534,’Bitsy the Cow (voice)’,1,6),(9986,4135,’Ike the Horse (voice)’,2,7),(9986,19159,’Brooks the Crow (voice)’,2,8),(9986,37934,’Elwyn the Crow (voice)’,2,9),(9986,61259,’Wilbur (voice)’,2,10),(9986,9880,’Narrator (voice)’,2,11),(9986,21132,’Uncle the Pig (voice)’,2,12),(9986,501,’Fern Arable’,1,13),(9986,51805,’Mr. Arable’,2,14),(9986,33449,’Mrs. Arable’,1,15),(9986,6751,’Mrs. Zuckerman’,1,16),(9986,61487,’Avery’,0,17),(9986,61489,’Teacher’,0,18),(9986,61488,’Henry Fussy’,0,19),(9986,96228,’Homer Zuckerman’,2,20),(9986,74538,’Lurvy’,2,21),(9986,15340,’Minister’,2,22),(9986,2222,’Dr. Dorian’,2,23),(9986,217039,’Well Dressed Man’,0,24),(9986,88419,’Bystander’,1,25),(9986,1204069,’New Teacher’,0,26),(9986,1204070,’Ball Thrower’,0,27),(9986,1204071,’Young Boy’,0,28),(9986,1204072,’Mayor’,0,29),(9986,80270,’Announcer’,0,30),(9986,11335,’Fair Official’,2,31),(9986,12223,’Sheep Group (voice)’,2,32),(9986,146391,’Sheep Group (voice)’,2,33),(9986,60279,’Sheep Group (voice)’,2,34),(9986,168377,’Sheep Group (voice)’,2,35),(9986,1204074,’Joy the Baby Spider (voice)’,0,36),(9986,1075686,’Aranea the Baby Spider (voice)’,0,37),(9986,944685,’Nellie the Baby Spider (voice)’,0,38),(9986,1204075,’Photographer (uncredited)’,0,39),(9986,1204076,’Photographer (uncredited)’,0,40),(9986,1194111,’Girl at Fair (uncredited)’,1,41),(9986,1204077,’Farmer (uncredited)’,0,42),(9986,1204078,’Fair Member (uncredited)’,0,43),(9986,1008932,’Girl at Fair (uncredited)’,1,44),(8656,3087,’Capt. Spurgeon \’Fish\’ Tanner’,2,0),(8656,4939,’Jenny Lerner’,1,1),(8656,109,’Leo Biederman’,2,2),(8656,13333,’Robin Lerner’,1,3),(8656,192,’President Tom Beck’,2,4),(8656,12150,’Jason Lerner’,2,5),(8656,22290,’Sarah Hotchner’,1,6),(8656,2505,’Alan Rittenhouse’,2,7),(8656,15277,’Gus Partenza’,2,8),(8656,454973,’Beth Stanley’,1,9),(8656,1980,’Andrea Baker’,1,10),(8656,31028,’Don Biederman’,2,11),(8656,56871,’Mark Simon’,2,12),(8656,1270,’Dr. Marcus Wolf (uncredited)’,2,13),(8656,154644,’Marianne Duclos’,1,14),(8656,15336,’Eric Vennekor’,2,15),(8656,9128,’Theo Van Sertema’,2,16),(8656,26998,’Jenny\’s Assistant’,1,17),(8656,165284,’Bobby Rhue’,2,18),(8656,6951,’McCloud’,2,19),(8656,1743,’Vicky Hotchner’,1,20),(8656,158095,’Jason’,2,21),(8656,92777,’Ivan Brodsky’,2,22),(8656,87192,’Mike Perry’,2,23),(8656,2115,’Otis Hefter’,2,24),(8656,12260,’Oren Monash’,2,25),(9291,19292,’Paul Crewe’,2,0),(9291,2632,’Caretaker’,2,1),(9291,16475,’Coach Nate Scarborough’,2,2),(9291,69127,’Deacon Moss’,2,3),(9291,69128,’Megget’,2,4),(9291,65236,’Battle’,2,5),(9291,53256,’Cheeseburger Eddy’,2,6),(9291,60716,’Switowski’,2,7),(9291,32897,’Brucie’,2,8),(9291,119154,’Turley’,0,9),(9291,48071,’Torres’,2,10),(9291,4024,’Baby Face Bob’,2,11),(9291,56903,’Ms. Tucker’,2,12),(9291,886,’Captain Knauer’,2,13),(9291,60954,’Guard Lambert’,2,14),(9291,135352,’Guard Engleheart’,2,15),(9291,77120,’Guard Dunham’,2,16),(9291,87400,’Guard Garner’,2,17),(9291,20582,’Guard Papajohn’,2,18),(9291,135353,’Guard Webster’,2,19),(9291,63238,’Guard Malloy’,2,20),(9291,2505,’Warden Hazen’,2,21),(9291,9599,’Lynette’,1,22),(9291,60949,’Punky’,2,23),(9291,1578275,’Texas State Policeman’,2,24),(9291,145881,’Chris Berman’,2,25),(9291,1215304,’Jim Rome’,0,26),(9291,166029,’Officer Jack Pugh’,2,27),(9291,21523,’Duane’,2,28),(9291,90149,’Jesse’,2,29),(9291,14405,’Lena (uncredited)’,1,30),(9291,60955,’Vic’,0,31),(6964,514,’Harry Sanborn’,2,0),(6964,3092,’Erica Barry’,1,1),(6964,6384,’Julian Mercer’,2,2),(6964,3910,’Zoe’,1,3),(6964,2956,’Marin’,1,4),(6964,15277,’Leo’,2,5),(6964,12988,’Dave’,2,6),(6964,10768,’Dr. Martinez’,1,7),(6964,20388,’Kristen’,1,8),(6964,1228874,’Hamptons Nurse’,1,9),(6964,116727,’Lady in Market’,1,10),(9928,2157,’Fender (voice)’,2,0),(9928,3061,’Rodney Copperbottom (voice)’,2,1),(9928,4587,’Cappy (voice)’,1,2),(9928,14639,’Big Weld (voice)’,2,3),(9928,129193,’Watch’,1,4),(9928,29220,’Piper’,1,5),(9928,83349,’Crank’,2,6),(9928,38334,’Aunt Fanny’,1,7),(9928,148111,’Pigeon Lady (voice)’,0,8),(9928,51330,’Broken Arm Bot (voice)’,2,9),(9928,388,’Madame Gasket (voice)’,2,10),(9928,13242,’Tim the Gate Guard (voice)’,2,11),(9928,9224,’Lamppost / Toilet Bot / Bass Drum / Microphone’,2,12),(9928,207676,’Stage Announcer (voice)’,0,13),(9928,133814,’Young Rodney (voice)’,2,14),(9928,17141,’Ratchet (voice)’,2,16),(9928,15152,’Voice Box at Hardware Store (voice)’,0,17),(9928,2283,’Herb Copperbottom (voice)’,2,18),(9928,111875,’Mailbox (voice)’,2,19),(9928,14991,’Fire Hydrant (voice)’,2,20),(754,8891,’Sean Archer’,2,0),(754,2963,’Castor Troy’,2,1),(754,11148,’Eve Archer’,1,2),(754,4941,’Pollux Troy’,2,3),(754,11150,’Sasha Hassler’,1,4),(754,11149,’Jamie Archer’,1,5),(754,11151,’Dietrich Hassler’,2,6),(754,3907,’Victor Lazarro’,2,7),(754,10132,’Dr. Malcolm Walsh’,2,8),(754,3911,’Walt’,2,9),(754,30485,’Hollis Miller’,1,10),(754,21505,’Tito Biondi’,2,11),(754,11152,’Wanda’,1,12),(754,11153,’Buzz’,2,13),(754,11154,’Loomis’,2,14),(754,4445,’Ivan Dubov’,2,15),(754,11157,’Michael Archer’,2,16),(754,11156,’Adam Hassler’,0,17),(754,11155,’Burke Hicks’,2,18),(754,18972,’Karl’,2,19),(754,9313,’Cindee’,1,20),(754,58042,’Livia’,1,21),(4147,31,’Michael Sullivan’,2,0),(4147,78198,’Michael Sullivan, Jr.’,2,1),(4147,10431,’Annie Sullivan’,1,2),(4147,19977,’Peter Sullivan’,2,3),(4147,3636,’John Rooney’,2,4),(4147,8784,’Connor Rooney’,2,5),(4147,8785,’Finn McGovern’,2,6),(4147,35022,’Jack Kelly’,2,7),(4147,34395,’Frank the Bouncer’,2,8),(4147,35024,’Calvino’,2,9),(4147,9642,’Harlen Maguire’,2,10),(4147,2283,’Frank Nitti’,2,11),(4147,35025,’Tenement Murderer’,0,12),(4147,35026,’Father Callaway’,2,13),(4147,19152,’Alexander Rance’,2,14),(4147,1018310,’Motel Manager’,2,15),(4147,86583,’Nitti\’s Henchman’,0,16),(4147,1313093,’Nitti\’s Henchman’,0,17),(4147,56563,’Ruby the Waitress’,0,18),(4147,150204,’Betty the Waitress’,1,19),(4147,1571853,’Prostitute’,0,20),(4147,191637,’Crime Scene Policeman’,0,21),(4147,1132472,’Boy Michael Fights’,0,22),(4147,1226707,’Rooney\’s Business Associate’,2,23),(4147,1402117,’Rooney\’s Henchman’,2,24),(4147,181514,’Rooney\’s Henchman’,2,25),(4147,1571861,’Drug Store Owner’,0,26),(4147,122678,’Michael\’s Teacher’,1,27),(4147,181964,’Aunt Sarah’,1,28),(4147,35518,’Mr. McDougal’,2,29),(4147,36093,’Farmer Virginia’,1,30),(4147,43544,’Farmer Bill’,2,31),(1701,2963,’Cameron Poe’,2,0),(1701,3036,’Marshal Vince Larkin’,2,1),(1701,6949,’Cyrus Grissom’,2,2),(1701,10182,’Nathan Jones’,2,3),(1701,18461,’William Bedford’,2,4),(1701,884,’Garland Greene’,2,5),(1701,17782,’Duncan Malloy’,2,6),(1701,10768,’Sally Bishop’,1,7),(1701,4169,’Joe Parker’,2,8),(1701,34,’Mike O\’Dell’,2,9),(1701,11160,’Johnny Beca’,2,10),(1701,22132,’Swamp Thing’,2,11),(1701,9276,’Guard Falzon’,2,12),(1701,2140,’Tricia Poe’,1,13),(1701,28864,’Casey Poe’,1,14),(1701,28863,’Ramon Martinez’,2,15),(1701,166893,’Conrad’,2,16),(1701,58647,’Francisco Cindino’,2,17),(1701,10963,’DEA Agent Willie Sims’,2,18),(1701,21802,’Ajax’,2,19),(1701,77487,’Smoke’,2,20),(1701,15276,’Ginny’,1,21),(1701,6806,’Donald’,2,22),(1701,17858,’Watts’,2,23),(1701,116774,’Londell’,2,24),(1701,135353,’Viking’,2,25),(1701,53257,’Carlos’,2,26),(1701,166543,’Mongoose’,0,27),(1701,205150,’Blade’,0,28),(1701,17449,’Ted, Pilot’,2,29),(1701,156509,’Starkey’,2,30),(1701,42824,’Con #1′,2,31),(1701,2141,’Chopper Pilot’,2,32),(1701,9285,’Skip Devers’,2,33),(1701,9632,’Pilot’,2,34),(1701,1194347,’Gator’,2,35),(1701,1786577,’Sheriff’,2,36),(1701,1845305,’Paramedic #1′,0,37),(1701,7143,’Paramedic #2′,2,38),(1701,1482802,’Old Con on Plane’,0,39),(1701,987082,’Con #2′,2,40),(1701,1873105,’Con #3′,0,41),(1701,68394,’Con #4′,2,42),(1701,34839,’Billy Joe (uncredited)’,2,43),(2289,9642,’Inman’,2,0),(2289,2227,’Ada Monroe’,1,1),(2289,9137,’Ruby Thewes’,1,2),(2289,20300,’Maddy’,1,3),(2289,2039,’Stobrod Thewes’,2,4),(2289,1233,’Reverend Veasey’,2,5),(2289,524,’Sara’,1,6),(2289,25933,’Mrs. Morgan’,1,7),(2289,1771,’Junior’,2,8),(2289,55636,’Reverend Monroe’,2,9),(2289,5538,’Teague’,2,10),(2289,1907,’Sally Swanger’,1,11),(2289,56365,’Bosie’,2,12),(2289,824,’Pangle’,2,13),(2289,20089,’Ferry Girl’,1,14),(2289,155,’Oakley’,2,15),(2289,343,’Shyla’,1,16),(2289,49835,’Blind Man’,2,17),(2289,8986,’Doctor’,2,18),(2289,2037,’Bardolph’,2,19),(2289,13611,’Georgia’,0,20),(2289,1187550,’Confederate Officer’,0,21),(2289,1700698,’Guard’,0,22),(9574,2157,’Professor Philip Brainard’,2,0),(9574,4726,’Dr. Sara Jean Reynolds’,1,1),(9574,4443,’Wilson Croft’,2,2),(9574,10361,’Chester Hoenicker’,2,3),(9574,6574,’Smith’,2,4),(9574,8631,’Secretary at Ford Motor Company’,1,5),(9574,15854,’Wesson’,2,6),(9574,3033,’Bennett Hoenicker’,2,7),(9574,3202,’Martha George’,1,8),(9574,63978,’Weebo’,1,9),(9574,21474,’Sylvia’,1,10),(9574,201291,’Father’,0,11),(9574,1075044,’Window Boy’,2,12),(9574,43364,’Minister’,2,13),(9574,1075045,’Teenage Boy’,0,14),(9574,46920,’Coach Willy Barker’,2,15),(2300,23678,’Himself’,2,0),(2300,4201,’Stan Podolak’,2,1),(2300,23679,’Bugs Bunny/Elmer Fudd (voice)’,2,2),(2300,23680,’Daffy Duck/Tazmanian Devil/Bull (voice)’,2,3),(2300,4604,’Juanita Jordan’,1,4),(2300,518,’Mr. Swackhammer (voice)’,2,5),(2300,23681,’Michael Jordan (at 10)’,2,6),(2300,23682,’Himself’,2,7),(2300,1532,’Himself’,2,8),(2300,1211812,’Himself’,0,9),(2300,1231141,’Himself’,0,11),(2300,1232432,’Himself’,0,12),(2300,1225517,’Himself’,0,13),(2300,1234833,’Himself’,0,14),(2300,1197748,’Himself’,0,15),(2300,1251369,’Himself’,0,16),(2300,193304,’Himself’,2,17),(2300,1230823,’Himself’,0,18),(2300,1215304,’Himself’,0,19),(2300,1315402,’Himself’,0,20),(2300,1315446,’Himself’,0,21),(2300,180625,’Himself’,2,22),(2300,1315447,’Himself’,0,23),(2300,1315403,’Himself’,0,24),(2300,1315448,’Himself’,0,25),(2300,1315449,’Himself’,0,26),(2300,1315450,’Himself’,0,27),(2300,1315451,’Himself’,0,28),(8834,2461,’Jerry Fletcher’,2,0),(8834,1204,’Alice Sutton’,1,1),(8834,2387,’Dr. Jonas’,2,2),(8834,56040,’Agent Lowry’,2,3),(8834,14328,’Mr. Wilson’,2,4),(8834,54854,’Flip’,0,5),(8834,58293,’Cynic’,2,6),(8834,155560,’Justice Guard’,2,7),(8834,167566,’Justice Guard’,0,8),(8834,164002,’Justice Guard’,0,9),(8834,177247,’Public Works Man’,0,10),(8834,203950,’Clarke’,0,11),(8834,1074163,’Piper’,2,12),(8834,1074164,’Henry Finch\’s Secretary’,0,13),(8834,42721,’Alice\’s Secretary’,1,14),(8834,1232170,’Grouchy Nurse’,0,15),(8834,154815,’Nurse – Roosevelt Hospital’,1,16),(6068,3,’Quinn Harris’,2,0),(6068,8256,’Robin Monroe’,1,1),(6068,14409,’Frank Martin’,2,2),(6068,49818,’Angelica’,1,3),(6068,7242,’Jager’,2,4),(6068,19,’Marjorie’,1,5),(6068,7248,’Kip’,2,6),(6068,11160,’Pierce’,2,7),(6068,1402117,’Yacht Owner’,2,8),(6068,1060194,’Philippe Sinclair, Resort Manager’,2,9),(6068,144165,’Tom Marlowe, Helicopter Pilot’,2,10),(6068,76539,’Ricky, Helicopter Crewman’,2,11),(6068,12110,’Robin\’s Secretary’,1,12),(6068,1215588,’Bathing Suit Girl’,1,13),(6068,111185,’Pirate’,2,14),(6068,92495,’Pirate’,0,15),(6068,1312451,’Pirate’,2,16),(6068,1609106,’Pirate’,0,17),(6068,1044,’Mechanic’,2,18),(6068,1609202,’Tahitian Priest at Funeral’,0,19),(6068,1223812,’Infirmary Orderly’,2,20),(6068,1609210,’Photographer’,2,21),(6068,84785,’Model’,2,22),(6068,1609220,’Model’,1,23),(6068,1609232,’Resort Greeter’,0,24),(6068,1609233,’Hotel Clerk’,0,25),(6068,1609234,’Hotel Front Desk Clerk’,0,26),(6068,1609235,’Waitress’,0,27),(6068,1609236,’Bellboy’,0,28),(6068,1609238,’Bellboy’,2,29),(6068,1609239,’Flight Attendant’,0,30),(6068,1609240,’Flight Attendant’,0,31),(6068,1609241,’Airport Security #1′,0,32),(6068,1609242,’Airport Security #2′,2,33),(6068,1609244,’Runway Traffic’,0,34),(6068,94511,’Entertainer’,2,35),(6068,1609248,’Band Member’,0,36),(6068,1609251,’Band Member’,0,37),(6068,1609253,’Band Member’,0,38),(6068,1609255,’Band Member’,0,39),(6068,1609256,’Band Member’,0,40),(6068,1609257,’Band Member’,0,41),(6068,59457,’Band Member’,0,42),(6068,1609260,’Band Member’,0,43),(6068,1609261,’Dancer’,0,44),(6068,1609262,’Dancer’,0,45),(6068,1609263,’Dancer’,0,46),(6068,1609264,’Dancer’,0,47),(6068,1609265,’Dancer’,0,48),(6068,1609266,’Musician’,0,49),(6068,1609267,’Musician’,0,50),(6068,1609268,’Musician’,0,51),(6068,1609269,’Musician’,0,52),(6068,1609270,’Musician’,0,53),(6068,1609271,’Musician’,0,54),(6068,1609272,’Man at Bar’,0,55),(6068,1609273,’Newspaper Salesman’,0,56),(6068,1609275,’Man at bar (uncredited)’,0,57),(6068,1609276,’Airport Tourist (uncredited)’,1,58),(6068,1609278,’Swimmer (uncredited)’,0,59),(6068,213957,’Brutalized Woman (uncredited)’,1,60),(6068,175895,’Helicopter Pilot (uncredited)’,0,61),(9023,1892,’Spirit (voice)’,2,0),(9023,2505,’The Colonel (voice)’,2,1),(9023,56658,’Little Creek (voice)’,2,2),(9023,7222,’Sgt. Adams (voice)’,2,3),(9023,56659,’Murphy / Railroad Foreman (voice)’,2,4),(9023,35095,’Soldier (voice)’,2,5),(9023,80416,’Bill (voice)’,0,6),(9023,175511,’Joe (voice)’,2,7),(9023,149775,’Pete (voice)’,2,8),(9023,214516,’Jake (voice)’,2,9),(9023,16119,’Roy (voice)’,2,10),(9023,1057324,’Little Indian Girl (voice)’,1,11),(9023,42376,’Little Crrek\’s Friend (voice)’,2,12),(9023,175468,’Little Creek\’s Friend (voice)’,2,13),(9023,84494,’Train Pull Foreman (voice)’,0,14),(2157,64,’Dr. Zachary Smith’,2,0),(2157,227,’Prof. John Robinson’,2,1),(2157,14407,’Maj. Don West’,2,2),(2157,13920,’Dr. Maureen Robinson’,1,3),(2157,69122,’Dr. Judy Robinson’,1,4),(2157,22082,’Penny Robinson’,1,5),(2157,135526,’Will Robinson’,2,6),(2157,15440,’Older Will Robinson’,2,7),(2157,161433,’General’,2,8),(2157,1120,’Jeb Walker’,2,9),(2157,148605,’Reporter #1′,1,10),(2157,13997,’Principal Cartwright’,1,11),(2157,1077780,’Lab Technician’,0,12),(2157,121640,’Reporter #2′,1,13),(2157,36900,’Noah Freeman’,2,14),(2157,1077781,’Annie Tech’,0,15),(2157,65753,’Global Sedition attack pilot’,2,16),(2157,165898,’Rambler-Crane series Robot (voice)’,2,17),(2157,1077782,’Blarp (voice)’,2,18),(2157,9126,’Businessman’,2,19),(2135,529,’Alexander Hartdegen’,2,0),(2135,13633,’David Filby’,2,1),(2135,17787,’Mrs. Watchett’,1,2),(2135,7055,’Emma’,1,3),(2135,21881,’Flower Seller’,1,4),(2135,21882,’Motorist’,2,5),(2135,1470323,’Fifth Avenue Carriage Driver’,0,6),(2135,10960,’Robber’,2,7),(2135,1470325,’Central Park Carriage Driver’,0,8),(2135,16940,’u00dcber-Morlock’,0,9),(2135,21874,’Flower Store Worker’,2,10),(2135,156875,’Jogger’,1,11),(2135,35517,’Teacher’,1,12),(2135,18270,’Vox’,2,13),(2135,42200,’Soldier #1′,2,14),(2135,1586641,’Soldier #2′,0,15),(2135,97049,’Mara’,1,16),(2135,1470328,’Kalen’,0,17),(2135,21049,’Toren’,2,18),(2135,12371,’Hunter Morlock’,2,19),(2135,92490,’Hunter Morlock’,2,20),(2135,1586648,’Hunter Morlock’,2,21),(2135,126841,’Hunter Morlock’,2,22),(2135,62735,’Spy Morlock’,2,23),(2135,17005,’Spy Morlock’,2,24),(2135,1337714,’Eloi (as Malaea Chona Jason)’,1,25),(2135,1669267,’Eloi’,1,26),(9822,6885,’Jill Young’,1,0),(9822,1118,’Andrei Strasser’,2,1),(9822,2053,’Gregg O\’Hara’,2,2),(9822,9788,’Cecily Banks’,1,3),(9822,22109,’Garth’,2,4),(9822,5471,’Pindi’,2,5),(9822,19839,’Harry Ruben’,2,6),(9822,21505,’Kweli’,2,7),(9822,41517,’Jack’,2,8),(9822,148122,’Vern’,2,9),(9822,18262,’Commander Gorman’,2,10),(9822,66758,’Partyguest’,2,11),(9822,443770,’Joe’,2,12),(9822,1226231,’Cabriolet Girl’,0,13),(9822,22223,’Cabriolet Girl’,1,14),(9822,154884,’Cabriolet Girl’,1,15),(9705,8891,’Gabriel Shear’,2,0),(9705,6968,’Stanley Jobson’,2,1),(9705,4587,’Ginger Knowles’,1,2),(9705,1896,’Agent J.T. Roberts’,2,3),(9705,9880,’Senator James Reisman’,2,4),(9705,980,’Marco’,2,5),(9705,70767,’Melissa’,1,6),(9705,25848,’Axl Torvalds’,2,7),(9705,7471,’Assistant Director Bill Joy’,2,8),(9705,177918,’Holly Jobson’,1,9),(9705,172355,’Torres’,2,10),(9705,944478,’SWAT Leader’,0,11),(9705,6864,’Axl\’s Lawyer’,2,12),(9705,28413,’Agent’,2,13),(9705,76001,’Agent’,2,14),(9705,1115919,’Helga’,0,15),(9705,75200,’Ad Agency Executive’,2,16),(9705,157409,’Coroner’,2,17),(9705,15338,’Gabriel\’s Crew’,2,18),(9705,109667,’Gabriel\’s Crew’,2,19),(9705,1231221,’Gabriel\’s Crew’,0,20),(9705,21472,’Gabriel\’s Crew’,2,21),(9705,188274,’Gabriel\’s Crew’,0,22),(9705,173996,’Hostage’,1,23),(9705,1279725,’Hostage’,0,24),(9705,1279726,’Hostage’,0,25),(9705,167878,’Hostage’,0,26),(9705,3283,’Hostage’,0,27),(9705,131528,’Hostage’,1,28),(9705,159264,’Hostage’,2,29),(9705,982374,’Hostage’,2,30),(9705,9558,’Hostage’,2,31),(9705,1279727,’Hostage’,1,32),(9705,1279728,’Hostage’,2,33),(9705,1279729,’Hostage’,0,34),(9705,1279730,’Club Kid’,0,35),(9705,1279731,’Club Kid’,0,36),(9705,104503,’FBI Geek’,2,37),(9705,100276,’FBI Geek’,0,38),(9705,1279732,’Customs Agent’,0,39),(9705,1279733,’Customs Agent’,0,40),(9705,198799,’Customs Agent’,0,41),(9705,1279734,’Helga\’s Friend’,0,42),(9705,1243066,’Helga\’s Friend’,0,43),(9705,1279735,’Helga\’s Friend’,0,44),(9705,982098,’Dark Suit’,2,45),(9705,1172392,’Policeman’,0,46),(9705,1279736,’Policeman’,0,47),(9705,1279737,’Policeman’,0,48),(9705,1279739,’Holly\’s Teacher’,0,49),(9705,134423,’Agent Thomas’,2,50),(9705,185374,’Bank Executive’,0,51),(9705,1279744,’Security Guard’,2,52),(1656,3131,’Zorro’,2,0),(1656,1922,’Elena’,1,1),(1656,18460,’Joaquin’,2,2),(1656,17413,’Frey Felipe’,2,3),(1656,18461,’Jacob McGivens’,2,4),(1656,18462,’Lupe’,0,5),(1656,17328,’Armand’,2,6),(1656,18463,’Ferroq’,2,7),(1656,18464,’Ricardo’,0,8),(1656,2136,’Harrigan’,2,9),(1656,7372,’Governor Riley’,2,10),(1656,18465,’Governor\’s Wife’,1,11),(1656,18466,’Blanca’,1,12),(1656,18467,’Brother Ignacio’,0,13),(1656,18468,’Guillermo Cortez’,0,14),(1656,18469,’Tabulador’,2,15),(1656,34842,’Father Quintero’,2,16),(9678,19292,’Nicky’,2,0),(9678,4687,’Valerie Veran’,1,1),(9678,1037,’Dad’,2,2),(9678,7026,’Adrian’,2,3),(9678,8396,’Cassius’,2,4),(9678,3198,’Lucifer’,2,5),(9678,20818,’Todd’,2,6),(9678,20819,’Peter’,2,7),(9678,58477,’John’,0,8),(9678,53684,’Beefy’,2,9),(9678,368,’Holly’,1,10),(9678,56159,’Referee’,2,11),(9678,16165,’Peeper’,2,12),(9678,58478,’Gatekeeper’,2,13),(9678,21731,’Chief of Police’,2,14),(9678,12208,’Himself’,2,15),(9678,138,’Deacon’,2,16),(9678,60959,’Jenna’,1,17),(9678,122294,’Beating Cop’,2,18),(9678,60953,’Fenner’,1,19),(4442,1810,’Jacob Grimm’,2,0),(4442,1892,’Wilhelm Grimm’,2,1),(4442,1711,’Hidlick’,2,2),(4442,20243,’Mayor’,2,3),(4442,53,’Cavaldi’,2,4),(4442,378,’Delatombe’,2,5),(4442,28782,’Mirror Queen’,1,6),(4442,17286,’Angelika’,1,7),(4442,6645,’Bunst’,2,8),(4442,37296,’Mother Grimm’,0,9),(4442,1286965,’Young Will’,0,10),(4442,1286966,’Sister Grimm’,0,11),(4442,1286967,’Young Jacob’,0,12),(4442,1175617,’Gendarme’,0,13),(4442,1244677,’Gendarme’,0,14),(4442,1286968,’German War Veteran’,0,15),(4442,978081,’Stable Boy’,2,16),(4442,47838,’Old Miller’,0,17),(4442,1180339,’Miller\’s Daughter’,0,18),(4442,222830,’Woodsman’,0,19),(75,514,’President James Dale / Art Land’,2,0),(75,515,’First Lady Marsha Dale’,1,1),(75,516,’Barbara Land’,1,2),(75,517,’Professor Donald Kessler’,2,3),(75,518,’Rude Gambler’,2,4),(75,519,’Press Secretary Jerry Ross’,2,5),(75,520,’Nathalie Lake’,1,6),(75,521,’Jason Stone’,2,7),(75,522,’General Decker’,2,8),(75,523,’Himself’,2,9),(75,524,’Taffy Dale’,1,10),(75,526,’Richie Norris’,2,11),(75,528,’Grandma Florence Norris’,1,12),(75,4452,’Martian Girl’,1,13),(75,4774,’Byron Williams’,2,14),(75,2230,’Louise Williams’,1,15),(75,70851,’Billy Glenn Norris’,2,16),(75,10671,’Richie\’s Dad’,2,17),(75,1912,’Sue Ann Norris’,1,18),(75,18979,’Sharona’,1,19),(75,1583720,’Stranger’,2,20),(75,1786577,’Hillbilly’,2,21),(9433,7447,’Robert Green’,2,0),(9433,4173,’Charles Morse’,2,1),(9433,5590,’Mickey Morse’,1,2),(9433,6195,’Stephen’,2,3),(9433,8262,’Styles’,2,5),(9433,42335,’Ginny’,1,6),(5491,8891,’Terl’,2,0),(5491,12834,’Jonnie Goodboy Tyler’,2,1),(5491,2178,’Ker’,2,2),(5491,8335,’Carlo’,2,3),(5491,43611,’Chrissy’,1,4),(5491,43612,’Mickey’,2,5),(5491,43613,’Sammy’,0,6),(5491,742,’Parson Staffer’,2,7),(5491,14700,’Robert the Fox’,2,8),(5491,1288583,’Processing Clerk’,0,9),(5491,181010,’Planetship’,0,10),(5491,7009,’Assistant Planetship / Psychlo Guard’,2,11),(5491,26093,’Bartender’,2,12),(5491,7014,’Rock’,2,13),(5491,559971,’Mason’,2,14),(5491,75200,’Rodman’,2,15),(9562,8167,’Chris Johnston’,2,0),(9562,1518,’Kate Ericson’,1,1),(9562,17276,’Andre Marek’,2,2),(9562,9188,’Professor E.A. Johnston’,0,3),(9562,11207,’Robert Doniger’,2,4),(9562,58016,’Lady Claire’,1,5),(9562,2203,’Frank Gordon’,2,6),(9562,13525,’Steven Kramer’,2,7),(9562,58019,’Josh Stern’,2,8),(9562,3968,’Lord Oliver’,2,9),(9562,2192,’Lord Arnaut’,2,10),(9562,20982,’Sir William De Kere / William Decker’,2,11),(9562,58014,’Franu00e7ois Dontelle’,2,12),(9562,58012,’Arnaut\’s Deputy’,2,14),(9562,14328,’Baker’,2,15),(9562,43612,’MRI Technician’,2,16),(9922,1269,’The Postman’,2,0),(9922,883,’General Bethlehem’,2,1),(9922,11616,’Abby’,1,2),(9922,18291,’Ford Lincoln Mercury’,2,3),(9922,60642,’Bridge City Mayor’,2,4),(9922,1771,’Bandit 20′,2,5),(9922,785,’Idaho’,2,6),(9922,1473,’Pineview Sheriff Briscoe’,2,7),(9922,82519,’Luke’,2,8),(9922,10362,’Irene March’,1,9),(9922,6774,’Colonel Getty’,2,10),(9922,167565,’Old George’,2,11),(9922,152759,’Ellen March’,1,12),(9922,127070,’Woody’,0,13),(9922,21484,’Gibbs’,2,14),(9922,16937,’Mercer’,2,15),(9922,52647,’Billy’,2,16),(9922,43858,’Eddie March’,2,17),(9922,157412,’Michael, Abby\’s Husband’,2,18),(9922,1080276,’Ponytail’,0,19),(9922,184834,’Drew’,0,20),(9922,31140,’Hope, the Postman\’s daughter’,1,21),(9922,79905,’Elvis Woman’,0,22),(9922,156509,’Slow Recruit’,2,23),(9922,1780225,’Lily March’,1,24),(9447,2505,’Farmer Arthur Hoggett’,2,0),(9447,45386,’The Landlady’,1,1),(9447,1937,’Fugly Floom, the Speechless Man in Hotel’,0,2),(9447,45586,’Mrs. Esme Cordelia Hoggett’,1,3),(9447,15274,’Babe (voice)’,1,4),(9447,52699,’Ferdinand / Tug (voice)’,2,5),(9447,21104,’Zootie (voice)’,1,6),(9447,3214,’Bob (voice)’,2,7),(9447,2467,’Thelonius (voice)’,2,8),(9447,212913,’Easy / Tough Pup (voice)’,2,9),(9447,11157,’Easy (voice)’,2,10),(9447,46330,’The Bull Terrier / The Doberman (voice)’,0,11),(9447,6035,’The Pink Poodle / Choir Cat (voice)’,1,12),(9447,6163,’Flealick (voice)’,2,13),(9447,32384,’Nigel / Alan (voice)’,2,14),(9447,108943,’Snoop, The Sniffer Dog (voice)’,2,15),(9447,6199,’Fly (voice)’,1,16),(9447,1331,’Rex (voice)’,2,17),(9447,24368,’The Narrator (voice)’,2,18),(9447,1451740,’Lab Technician’,2,19),(9447,61792,’Cop’,2,20),(8870,5576,’Robby Gallagher’,2,0),(8870,530,’Cmdr. Kate Bowman’,1,1),(8870,4589,’Lt. Ted Santen’,2,2),(8870,3197,’Dr. Quinn Burchenal’,2,3),(8870,1284159,’Chip Pettengill’,2,4),(8870,28641,’Dr. Bud Chantilas’,2,5),(8870,1281449,’Website Fan’,0,6),(8870,1470030,’Website Fan’,0,7),(8870,72637,’Voice of Houston (voice)’,2,8),(9992,1281,’Arthur Montgomery’,2,0),(9992,12021,’Daisy Suchot’,0,1),(9992,61605,’Archibald Suchot’,2,2),(9992,61604,’Arthur\’s Mother’,1,3),(9992,61609,’Arthur\’s Father’,0,4),(9992,61607,’Davido’,2,5),(9992,61606,’Massai Chief’,2,6),(9992,61608,’Police Officer #1′,0,7),(9992,61610,’Saleslady’,0,8),(9992,45849,’Antique Dealer’,2,9),(9992,61611,’Mover #1′,0,10),(9992,61612,’Mover #2′,0,11),(9992,61613,’Baliff’,0,12),(9992,61614,’Repairman (voice)’,0,13),(9992,61615,’Matassalai #1′,0,14),(9992,61616,’Matassalai #2′,0,15),(9992,61622,’Matassalai #3′,0,16),(9992,61621,’Matassalai #4′,0,17),(9992,61618,’Matassalai #5′,0,18),(9992,61623,’Police Officer #2′,0,19),(9992,3125,’Princess Selenia (english voice)’,1,20),(9992,145755,’Princesse Su00e9lu00e9nia (voix franu00e7aise)’,1,21),(9992,11669,’Betameche (english voice)’,2,22),(9992,380,’King (english voice)’,2,24),(9992,2880,’Ferryman (english voice)’,2,25),(9992,19767,’Max (english voice)’,2,26),(9992,7487,’Maltazard (english voice)’,2,27),(453,934,’John Nash’,2,0),(453,228,’William Parcher’,2,0),(453,6161,’Alicia Nash’,1,1),(453,290,’Dr. Rosen’,2,2),(453,6162,’Charles’,2,3),(453,6163,’Sol’,2,4),(453,6164,’Hansen’,1,5),(453,6165,’Bender’,2,6),(453,6166,’Ainsley’,2,7),(453,6167,’Helinger’,2,8),(453,6168,’Thomas King’,2,9),(453,6169,’Marcee’,1,10),(453,6170,’Bar Co-Ed’,0,11),(453,6171,’Prof. Horner’,2,12),(453,6172,’Becky’,1,13),(453,6173,’Captain’,0,14),(453,6174,’General’,0,15),(453,6175,’Analyst’,0,16),(453,6176,’MIT Student’,0,17),(453,6177,’Photographer’,0,18),(453,6178,’Governor’,2,19),(453,6179,’Young Man’,0,20),(453,6180,’Harvard Administrator’,0,21),(453,6181,’Princeton Professor’,2,22),(453,6182,’John Nash Teenager’,0,23),(453,6183,’John Nash Young Man’,2,24),(453,983467,’Princeton Student’,2,25),(453,22250,’White-Haired Patient’,2,26),(453,3275,’Code-Red Nurse’,1,27),(453,1503010,’Adjunct’,0,28),(453,1503011,’Joyce’,0,29),(453,1503012,’Young Professor’,0,30),(453,1503013,’Blond in Bar’,0,31),(453,1503014,’Brunette’,0,32),(453,1503015,’Brunette’,0,33),(453,1503016,’Brunette’,0,34),(453,1503017,’Brunette’,0,35),(453,1503018,’Pen Ceremony Professor’,0,36),(8587,53283,’Young Simba (voice)’,2,0),(8587,4756,’Adult Simba (voice)’,2,1),(8587,15152,’King Mufasa (voice)’,0,2),(8587,16940,’Scar (voice)’,0,3),(8587,20005,’Adult Nala (voice)’,1,4),(8587,56043,’Young Nala (voice)’,1,5),(8587,69415,’Pumbaa (voice)’,2,6),(8587,78729,’Timon (voice)’,2,7),(8587,8294,’Rafiki (voice)’,2,8),(8587,10730,’Zazu the Hornbill (voice)’,2,9),(8587,2395,’Shenzi the Hyena (voice)’,1,10),(8587,11159,’Banzai the Hyena (voice)’,2,11),(8587,12077,’ED the Hyena (voice)’,2,12),(8587,58074,’Sarabi, Simba\’s Mother (voice)’,1,13),(8587,181782,’Adult Simba (singing voice)’,2,14),(8587,84115,’Young Simba (singing voice)’,2,15),(8587,1008838,’Adult Nala (singing voice)’,1,16),(8587,1321891,’Young Nala (singing voice)’,0,17),(8587,723462,’Sarafina, Nala\’s Mother (voice)’,1,18),(8587,15831,’Lion Roars (voice)’,2,19),(8587,949895,’Additional Voices (voice) (uncredited)’,0,20),(8587,96310,’Additional Voices (voice) (uncredited)’,0,21),(8587,952996,’Additional Voices (voice) (uncredited)’,2,22),(8587,173776,’Additional Voices (voice) (uncredited)’,1,23),(8587,61969,’Additional Voices (voice) (uncredited)’,2,24),(8587,954335,’Additional Voices (voice) (uncredited)’,2,25),(8587,200845,’Young Simba – in \’Morning Report\’ (singing voice) (uncredited)’,0,26),(8587,16060,’Fighting Hyena (voice) (uncredited)’,2,27),(9533,4173,’Hannibal Lecter’,2,0),(9533,819,’Will Graham’,2,1),(9533,5469,’Francis Dolarhyde’,2,2),(9533,1037,’Jack Crawford’,2,3),(9533,1639,’Reba McClane’,0,4),(9533,1233,’Freddy Lounds’,2,5),(9533,18248,’Molly Graham’,1,6),(9533,16293,’Dr. Frederick Chilton’,2,7),(9533,2131,’Lloyd Bowman’,2,8),(9533,13936,’Barney Matthews’,2,9),(9533,62821,’Josh Graham’,2,10),(9533,11805,’Ralph Mandy’,2,11),(9533,1103,’Police Chief’,2,12),(9533,9217,’Conductor’,2,13),(2023,110,’Frank Hopkins’,2,0),(2023,20803,’Jazira’,1,1),(2023,5004,’Sheikh Riyadh’,0,2),(2023,20804,’Aziz’,2,3),(2023,20805,’Lady Anne Davenport’,1,4),(2023,20806,’Katib’,2,5),(2023,20807,’Yusef’,2,6),(2023,2878,’Preston Webb’,2,7),(2023,18999,’Buffalo Bill Cody’,2,8),(2023,20808,’Sakr’,2,9),(2023,20809,’The Kurd’,0,10),(2023,5419,’Prince Bin Al Reeh’,0,11),(2023,1240492,’Rau Rasmussen’,0,12),(2023,68278,’Jaffa’,2,13),(2023,1286126,’Slave Boy’,0,14),(2023,7862,’Chief Eagle Horn’,0,15),(584,8167,’Brian O\’Conner’,2,0),(584,8169,’Roman Pearce’,2,1),(584,8170,’Monica Fuentes’,1,2),(584,6614,’Carter Verone’,2,3),(584,8171,’Tej Parker’,2,4),(584,1736,’Agent Markham’,2,5),(584,6278,’Suki’,1,6),(584,8175,’Agent Bilkins’,2,7),(584,17341,’Orange Julius’,2,8),(584,8177,’Slap Jack’,2,9),(584,8178,’Jimmy’,2,10),(584,534,’Detective Whitworth’,2,11),(584,8180,’Enrique’,2,12),(584,928812,’Roberto’,2,13),(584,206398,’Korpi’,2,14),(584,1015836,’Darden’,2,15),(584,11874,’Swerving Cop’,2,16),(584,8179,’Agent Dunn’,2,17),(584,122294,’Paul Hackett’,2,18),(584,147207,’Max Campisi’,2,19),(584,1614417,’Joe Osborne’,2,20),(584,1367499,’Feliz Vispone’,2,21),(584,1672085,’Jose’,0,22),(584,1614425,’Slap Jack\’s Girlfriend’,1,23),(584,1614441,’Suki\’s Girl’,1,24),(584,1672086,’Suki\’s Girl’,0,25),(584,1672087,’Suki\’s Girl’,0,26),(584,1614464,’Suki\’s Girl’,1,27),(584,1534845,’Detective’,0,28),(584,1614462,’Detective’,2,29),(584,1672088,’Detective’,0,30),(584,1672089,’U.S. Customs Lead Agent’,0,31),(584,1402117,’Police Chase Cop’,2,32),(584,6908,’Agent’,2,33),(584,1672090,’Agent’,0,34),(584,1059170,’Waitress’,0,35),(584,321432,’Gardener’,0,36),(584,43449,’Seductress’,1,37),(584,1614452,’Police Chopper Pilot’,1,38),(584,1536505,’Customs Technician’,1,39),(4858,2227,’Carol’,1,0),(4858,8784,’Ben’,2,1),(4858,18325,’Tucker’,2,2),(4858,2954,’Dr. Galeano’,2,3),(4858,39728,’Oliver’,2,4),(4858,5047,’Wendy Lenk’,1,5),(4858,14792,’Dr. Henryk Belicec’,2,6),(4858,1989,’Ludmilla Belicec’,1,7),(4858,16407,’Yorish’,2,8),(4858,39729,’Gene’,2,9),(4858,39730,’Pam’,1,10),(4858,10693,’Carly’,1,11),(4858,143180,’Belicec\’s Aide’,1,12),(4858,61607,’Richard Lenk’,2,13),(4858,11903,’Joan Kaufman’,1,14),(4858,50463,’Autumn’,1,15),(4858,1838405,’Butler’,2,16),(8698,738,’Allan Quatermain’,2,0),(8698,42307,’Mina Harker’,1,1),(8698,81295,’Tom Sawyer’,2,2),(8698,56778,’Dorian Gray’,2,3),(8698,973,’Dr. Henry Jekyll / Edward Hyde’,2,4),(8698,2220,’Rodney Skinner (The Invisible Man)’,2,5),(8698,6497,’Captain Nemo’,2,6),(8698,12206,’M’,2,7),(8698,21942,’Dante’,2,8),(8698,43034,’Sanderson Reed’,2,9),(8698,15196,’Nigel’,2,10),(8698,82410,’Ishmael’,2,11),(8698,953987,’Draper’,2,12),(8698,27416,’Constable Dunning’,0,13),(8698,21014,’Running Officer’,2,14),(8698,25677,’Copper #2′,2,15),(8698,10849,’Soldier’,0,16),(8698,207031,’Toby’,0,17),(8698,201428,’Elderly Hunter’,0,18),(8698,36664,’Old Traveler’,2,19),(8698,1077312,’Edgar Shreave’,0,20),(8698,992,’Hanson Cab Driver’,2,21),(8698,25659,’Marksman #3′,2,22),(8698,1483841,’Marksman #1′,2,23),(8698,1502757,’Marksman #2′,0,24),(8698,953058,’Copper #1′,2,25),(8698,950948,’Assassin #3′,2,26),(8698,203541,’Terrified Crewman’,0,27),(8698,1390260,’Recordist’,1,28),(8698,1162833,’Venice Conning Tower Crewman’,0,29),(8698,559630,’Rocket Room Crewman’,2,30),(8698,17261,’Crewman Patel’,0,31),(8698,1502758,’Headphones Crewman’,0,32),(602,2888,’Captain Steven Hiller’,2,0),(602,8984,’President Thomas J. Whitmore’,2,1),(602,4785,’David Levinson’,2,2),(602,1581,’First Lady Marilyn Whitmore’,1,3),(602,6167,’Julius Levinson’,2,4),(602,1162,’General William Grey’,2,5),(602,1811,’Russell Casse’,2,6),(602,8985,’Constance Spano’,1,7),(602,2535,’Jasmine Dubrow’,1,8),(602,8986,’Albert Nimzicki’,2,9),(602,7420,’Marty Gilbert’,2,10),(602,2059,’Major Mitchell’,2,11),(602,1582,’Miguel Casse’,2,12),(602,8987,’Alicia Casse’,1,13),(602,4133,’Troy Casse’,2,14),(602,18688,’Captain Jimmy Wilder’,2,15),(602,52404,’Patricia Whitmore’,1,16),(602,23504,’Tiffany’,1,17),(602,1172430,’Dr. Isaacs’,2,18),(602,46930,’Teddy’,2,19),(602,54455,’Philip’,2,20),(602,2221,’Technician/ Medical Assistant 1′,2,21),(602,1173560,’Aide’,0,22),(602,199697,’Aide’,0,23),(602,111514,’Whitmore\’s Aide’,0,24),(602,97943,’Commander / Tech’,2,25),(602,29775,’Commanding Officer’,2,26),(602,29774,’Commanding Officer’,2,27),(602,1116827,’Radar Technician’,2,28),(602,179969,’Radar Technician’,0,29),(602,1212247,’Radar Operator’,0,30),(602,20361,’Secret Service Agent’,2,31),(602,1272408,’Secret Service Agent’,0,32),(602,72864,’Technician’,2,33),(602,1216179,’Area 51 Technician’,0,34),(602,42547,’Area 51 Guard’,0,35),(602,1213344,’SETI Technician 3′,0,37),(602,74573,’Chief of Staff’,2,38),(602,186657,’Secret Service Agent’,0,39),(602,31007,’Mario’,2,40),(602,58950,’Military Aide’,2,41),(602,157029,’Sky Crane Pilot’,0,42),(602,122805,’Pilot’,2,43),(602,27037,’Russian Pilot (Levani)’,2,44),(602,74502,’Russian Pilot’,2,45),(602,102578,’Tank Commander’,0,46),(602,188212,’Soldier’,0,47),(602,102567,’Mechanic’,2,48),(602,117564,’Mechanic’,0,49),(602,8214,’Street Preacher’,2,50),(602,90198,’Secret Service Agent’,2,51),(602,31367,’Lincoln’,2,52),(602,58112,’Ed’,2,53),(602,169931,’Reporter’,2,54),(602,156131,’Reporter’,1,55),(602,18905,’Russian Reporter’,2,56),(602,163159,’Russian Newscaster’,0,57),(602,64881,’Korean Newscaster’,0,58),(602,192276,’Newscaster’,0,59),(602,173810,’Arab Pilot’,2,60),(602,177144,’Sailor’,2,61),(602,1219582,’Lucas’,2,62),(602,2174,’Housewife’,1,63),(602,40979,’Older Boy’,2,64),(602,120560,’Reginald’,2,65),(602,6326,’Redneck’,2,66),(602,18917,’SETI Chief’,2,67),(602,1213786,’Dr. Brackish Okun’,2,68),(602,1526660,’SETI Technician 1′,2,69),(330,4785,’Dr. Ian Malcolm’,2,0),(330,1231,’Dr. Sarah Harding’,1,1),(330,4935,’Roland Tembo’,2,2),(330,4786,’John Hammond’,2,3),(330,4937,’Nick Van Owen’,2,4),(330,3229,’Peter Ludlow’,2,5),(330,4938,’Kelly Curtis Malcolm’,1,6),(330,4787,’Tim Murphy’,2,7),(330,4788,’Lex Murphy’,1,8),(330,488,’Popcorn-Eating Man’,2,9),(330,53,’Dieter Stark’,2,10),(330,38670,’Cathy Bowman’,1,11),(330,43010,’Carter’,0,12),(330,46919,’Dr. Robert Burke’,2,13),(330,31028,’Eddie Carr’,2,14),(330,113935,’Ajay Sidhu’,2,15),(330,11764,’Butler’,2,16),(330,1214402,’InGen Worker’,2,17),(330,155931,’Benjamin\’s Mom’,0,18),(330,94509,’Benjamin’,2,19),(330,1494522,’Board member (uncredited)’,0,20),(330,16847,’Subway Man’,2,21),(330,16847,’Subway Man (Uncredited)’,2,22),(953,7399,’Alex’,2,0),(953,2632,’Marty’,2,1),(953,14409,’Melman’,2,2),(953,9575,’Gloria’,1,3),(953,6730,’Julien’,2,4),(953,224870,’como Alex’,2,5),(953,5726,’Maurice’,2,6),(953,28637,’Mort’,2,7),(953,18864,’Skipper / Fossa / Panicky Man on Subway’,2,8),(953,12097,’Private’,2,9),(953,12098,’Kowalski’,2,10),(953,12080,’Mason’,2,11),(953,18863,’Zoo Announcer / Lemur #1 / Fossa / Subway Car Announcer’,2,12),(953,60232,’Police Horse’,2,13),(953,64445,’Old Lady’,0,15),(953,1340665,’Police Officer (as Steve Apostolina)’,0,16),(953,582209,’News Reporter’,1,17),(953,1077844,’Spider / Lemur #2′,0,18),(953,12095,’Willie’,2,19),(953,72450,’Zoo Animal’,2,20),(953,12062,’Rico (uncredited)’,2,23),(9693,2296,’Theo Faron’,2,0),(9693,3895,’Jasper’,2,1),(9693,1231,’Julian’,1,2),(9693,56365,’Patric’,2,3),(9693,5294,’Luke’,2,4),(9693,64986,’Kee’,0,5),(9693,6413,’Nigel’,2,6),(9693,3064,’Syd’,2,7),(9693,58575,’Baby Diego’,0,8),(9693,58576,’Newsreader’,0,9),(9693,58577,’Newsreader’,0,10),(9693,58586,’Shirley’,1,11),(9693,24718,’Mr. Griffiths’,2,12),(9693,58587,’Ian’,2,13),(9693,587822,’Zara’,1,14),(9693,188857,’Rado’,0,15),(9693,962011,’Cigar Man’,0,16),(9693,1006160,’Caroline’,1,17),(9693,129014,’Dhafer’,0,18),(9693,58578,’Cafu00e9 Customer’,0,19),(9693,58579,’Cafu00e9 Customer’,1,20),(9693,58580,’Cafu00e9 Customer’,0,21),(9693,58581,’Cafu00e9 Customer’,0,22),(9693,58582,’Cafu00e9 Customer’,0,23),(9693,58584,’Cafu00e9 Customer’,0,25),(9693,58585,’Cafu00e9 Customer’,0,26),(9693,2274,’Caged German Grandmother’,0,27),(9693,1232712,’Janice’,0,28),(9693,6985,’Immigration Policeman’,0,29),(9693,1561299,’Birgit’,0,30),(9693,106480,’Preacher Trafalgar Square’,2,31),(9693,1216608,’Ministry Official’,0,32),(9693,21662,’Alex’,2,33),(9693,1561300,’Dog Track Woman’,0,34),(9693,1561301,’Bookmaker’,0,35),(9693,11213,’Miriam’,1,36),(9693,1561302,’Simon’,0,37),(9693,40713,’Road Traffic Police’,0,38),(9693,1035069,’Road Traffic Police’,0,39),(9693,1561303,’Samir’,0,40),(9693,1561304,’Bruno’,0,41),(9693,1561305,’Emily’,0,42),(9693,12210,’Tomasz’,2,43),(9693,1561306,’Joy’,0,44),(9693,1561307,’Milenka’,0,45),(9693,1561308,’Somi’,0,46),(9693,1561309,’Francisco’,0,47),(9693,1434488,’Thorston’,0,48),(9693,1561310,’Georgette’,0,49),(9693,1164379,’German Bus Passenger’,0,50),(9693,1186985,’German Bus Passenger’,0,51),(9693,1278499,’Bexhill Immigration Officer’,0,52),(9693,156371,’Bexhill Immigration Officer’,2,53),(9693,229499,’Bexhill Market Hustler’,0,54),(9693,44736,’Bexhill Market Hustler’,2,55),(9693,81134,’Marichka’,0,56),(9693,67209,’Sirdjan’,0,57),(9693,134764,’Spanish Woman’,1,58),(9693,202760,’Soldier’,0,59),(9693,1504807,’African Slave (uncredited)’,0,60),(9693,1344642,’Riot Policeman / Soldier (uncredited)’,0,61),(9693,1392726,’Soldier (uncredited)’,0,62),(9693,591346,’Elite Soldier (uncredited)’,2,63),(9693,1207203,’Core Military (uncredited)’,0,64),(9693,920732,’Cafu00e9 Customer (uncredited)’,0,65),(9693,1410202,’First Human Project Professor (uncredited)’,0,66),(9693,1269488,’Immigration Policeman (uncredited)’,0,67),(9693,1207207,’Terrorist (uncredited)’,0,68),(9693,1188323,’Basque Rebel (uncredited)’,2,69),(9693,1209055,’Taxi Driver (uncredited)’,0,70),(9693,1574206,’Injured Refugee (uncredited)’,2,71),(9693,1333639,’Woman (uncredited)’,0,72),(9693,1586909,’Cafe Customer’,0,73),(8909,11701,’Fox’,1,0),(8909,5530,’Wesley Gibson’,2,1),(8909,192,’Sloan’,2,2),(8909,3491,’Cross’,2,3),(8909,28641,’Pekwarsky’,2,4),(8909,4238,’The Gunsmith’,0,5),(8909,70903,’The Repairman’,2,6),(8909,73454,’Cathy’,1,7),(8909,2482,’Mr. X (as David Patrick O\’Hara)’,2,8),(8909,23440,’The Exterminator’,0,9),(8909,18283,’The Butcher’,2,10),(8909,73455,’Assassin Max Petridge’,0,11),(8909,73456,’Janice’,1,12),(8909,73457,’Barry’,2,13),(8909,73458,’Puya’,1,14),(8909,25730,’The Pharmacist’,2,15),(8909,1297390,’Co-Worker’,0,16),(8909,1677504,’Check-Out Girl’,0,17),(9802,738,’John Patrick Mason’,2,0),(9802,2963,’Dr. Stanley Goodspeed’,2,1),(9802,228,’Brigadier General Francis X. Hummel, USMC’,2,2),(9802,34691,’FBI Director James Womack’,2,3),(9802,52,’Major Tom Baxter’,2,4),(9802,4520,’Special Agent Ernest Paxton’,2,5),(9802,2712,’Commander Charles Anderson’,2,6),(9802,169586,’Carla Pestalozzi’,0,7),(9802,11885,’Marine Captain Hendrix’,2,8),(9802,71913,’Sergeant Crisp’,2,9),(9802,4174,’Jade Angelou’,1,10),(9802,10000,’Captain Frye’,2,11),(9802,19384,’Captain Darrow’,2,12),(9802,58950,’Private Gamble’,2,13),(9802,166893,’Private Cox’,2,14),(9802,2202,’Private McCoy’,2,15),(9802,8540,’Lieutenant Shephard’,2,16),(9802,170696,’Stacy Richards’,0,17),(9802,3230,’Marvin Isherwood’,2,18),(9802,11659,’Dr. Ling’,2,19),(9802,106709,’Agent Margie Wood’,0,20),(9802,1235953,’Private Scarpetti’,0,21),(9802,1838353,’Navy Seals’,2,22),(9802,3982,’Lonner (uncredited)’,2,23),(9802,58650,’Sergeant Rojas’,2,24),(950,15757,’Manny (voice)’,2,0),(950,5723,’Sid (voice)’,2,1),(950,5724,’Diego (voice)’,2,2),(950,15758,’Ellie (voice)’,1,3),(950,57599,’Crash (voice)’,2,4),(950,15760,’Eddie (voice)’,2,5),(950,14991,’Fast Tony (voice)’,2,6),(950,21200,’Lone Gunslinger Vulture (voice)’,2,8),(950,5713,’Scrat (voice)’,2,9),(950,5717,’Dung Beetle Dad (voice)’,2,10),(950,1086503,’Glypto Boy Billy / Beaver Girl (voice)’,0,11),(950,1335105,’Rhino Boy / Beaver Boy (voice)’,0,12),(950,46946,’Mr. Start (voice)’,2,13),(950,1335106,’Elk Boy (voice)’,0,14),(950,7967,’Condor Chick (voice)’,0,15),(950,42160,'(voice)’,1,16),(950,1215072,’Female Mini Sloth (voice)’,1,18),(950,17401,’Aardvark Dad (voice)’,2,19),(950,1785570,’Start Girl (voice)’,0,20),(950,73016,’Diatryma Mom (voice)’,1,21),(950,9224,’Start Dad (voice)’,2,22),(950,16151,’Stu / Male Ox (voice)’,0,23),(950,1214603,’Molehog Grandpa / Shovelmouth Male (voice)’,0,24),(950,1785571,’Traffic Vulture (voice)’,0,25),(950,136221,’Beaver Dad (voice)’,0,26),(950,1178796,’Glyptodon (voice)’,0,27),(950,122844,’Shovelmouth Boy (voice)’,2,28),(950,1785572,’Start Boy 1 (voice)’,0,29),(950,1229497,’Start Boy 2 (voice)’,0,30),(950,5714,’Dodo (voice)’,2,31),(950,1785573,’Molehog Kid 1 (voice)’,0,32),(950,1785574,’Molehog Kid 2 (voice)’,0,33),(950,1254529,’Diego\’s Bird Girl (voice)’,0,34),(950,154657,’Freaky Male (voice)’,2,35),(950,1785576,’Aardvark Mom (voice)’,0,36),(950,13924,’Female Ox (voice)’,1,37),(950,1761763,’James (voice)’,2,38),(950,56105,’Mrs. Start (voice)’,0,39),(950,21088,’Cholly (voice)’,2,40),(950,180203,'(voice)’,1,41),(950,84495,'(voice)’,2,42),(950,172037,'(voice)’,1,43),(1824,19292,’Henry Roth’,2,0),(1824,69597,’Lucy Whitmore’,1,1),(1824,60949,’Ula’,2,2),(1824,1328,’Doug Whitmore’,2,3),(1824,19293,’Alexa’,1,4),(1824,707,’Dr. Keats’,2,5),(1824,21485,’Marlin Whitmore’,0,6),(1824,59401,’Sue’,1,7),(1824,20818,’Ten Second Tom’,2,8),(1824,52792,’Stacy’,1,9),(1824,1080056,’Nick’,0,10),(1824,58477,’Jennifer’,0,11),(1824,20819,’Security Guard’,2,12),(1824,116271,’Security Guard’,2,13),(1824,60959,’Dentist’,1,14),(1824,963298,’Pablo’,2,15),(1824,21044,’Linda’,1,16),(1824,170759,’Patient’,0,17),(1824,1628308,’Sheriff’,2,18),(1824,90658,’Female Firefighter’,1,19),(1824,36137,’Blonde in Office’,1,20),(1824,1628313,’Red Head’,1,21),(1824,26723,’Young Woman’,1,22),(1824,1014644,’Cook\’s Helper’,2,23),(1824,98415,’Salon Patron’,1,24),(1824,1628304,’Salon Patron’,1,25),(1824,190312,’Caddy’,0,26),(1824,32895,’Factory Worker’,2,27),(1824,1080057,’Old Hawaiian Man’,2,28),(1824,1590757,’Ex-Girlfriend (uncredited)’,1,29),(1824,156828,’Cafe Regular’,1,30),(1824,166963,’Cafe Regular’,0,31),(1824,1735582,’Cafe Regular’,0,32),(1824,945175,’Salon Worker’,0,33),(1824,1735583,’Salon Patron’,0,34),(1824,543876,’Coroner’,0,35),(1824,1735584,’Woman in Car’,0,36),(1824,1008729,’Tan Friend’,1,37),(1824,1735585,’Stacy\’s Husband’,0,38),(1824,1735586,’Sea Lion Trainer’,0,39),(1824,1735587,’Ula\’s Wife’,0,40),(1824,1442207,’Waiter’,0,41),(1824,4327,’Jet Skiier’,0,42),(1824,1381475,’Cafe Regular’,0,43),(1824,67538,’Tamy’,1,44),(1824,1509622,’Seaplane Pilot’,2,45),(1824,1463667,’Fisherman’,0,46),(1824,1326245,’Bar Drinker’,0,47),(1824,101065,’Woman’,1,48),(1824,1735591,’Hawaiian Trucker’,0,49),(1824,1735592,’Repairman’,0,50),(1824,1294,’Noreen’,1,51),(1824,1735593,’Amnesia Patient’,0,52),(1824,1735594,’Tourist’,0,53),(1824,1735595,’Airport Passenger’,0,54),(2976,8891,’Edna Turnblad’,2,0),(2976,1160,’Velma Von Tussle’,1,1),(2976,4690,’Wilbur Turnblad’,2,2),(2976,11006,’Corny Collins’,2,3),(2976,15758,’Motormouth Maybelle’,1,4),(2976,29224,’Tracy Turnblad’,1,5),(2976,29222,’Link Larkin’,2,6),(2976,29220,’Penny Pingleton’,1,7),(2976,29223,’Seaweed’,2,8),(2976,29221,’Amber Von Tussle’,1,9),(2976,19,’Prudy Pringleton’,1,10),(2976,29225,’Little Inez’,1,11),(2976,4568,’Miss Wimsey’,1,12),(2976,15900,’Mr. Spritzer’,2,13),(2976,26042,’Mr. Pinky’,2,14),(2976,1212301,’Cameraman’,0,15),(2976,10367,’Flasher’,2,16),(2976,1423376,’Teacher’,0,17),(2976,982098,’Cop Nick’,2,18),(2976,1752310,’Link\’s Backup Singer’,0,19),(2976,1752313,’Link\’s Backup Singer’,0,20),(2976,1504146,’Link\’s Backup Singer / Teen’,0,21),(2976,82647,’Police Chief’,0,22),(2976,1752315,’Male TV Reporter’,0,23),(2976,1752316,’News Anchorman’,0,24),(2976,5941,’Cop at Protest’,2,25),(2976,1528765,’Mr. Flak’,0,26),(2976,20178,’Science Geek Teacher’,2,27),(2976,59602,’Male Cop on TV’,0,28),(2976,40386,’Police Sergeant at Protest’,2,29),(2976,1227611,’Good Morning Baltimore Host’,0,30),(2976,1212660,’Good Morning Baltimore Hostess’,1,31),(2976,1202533,’Stage Manager’,0,32),(2976,70233,’Talent Agent’,1,33),(2976,20739,’Talent Agent’,2,34),(2976,9251,’Talent Agent’,2,35),(2976,963406,’Talent Agent’,2,36),(2976,29214,’Nurse’,1,37),(2976,1551522,’Driving Instructor’,0,38),(2976,29216,’Smoking Teacher’,0,39),(2976,1290636,’Vicky – Corny Collins Council’,1,40),(2976,1752319,’Darla – Corny Collins Council’,1,41),(2976,1619409,’Brenda – Corny Collins Council’,1,42),(2976,1752320,’Noreen – Corny Collins Council’,1,43),(2976,1752321,’Doreen – Corny Collins Council’,1,44),(2976,83277,’Shelley – Corny Collins Council’,1,45),(2976,1752322,’Tammy – Corny Collins Council’,1,46),(2976,1752324,’Sketch – Corny Collins Council’,0,47),(2976,1232505,’Brad – Corny Collins Council’,0,48),(2976,1752326,’Joey – Corny Collins Council’,0,49),(2976,38945,’Mikey – Corny Collins Council’,2,50),(2976,1752327,’Fender – Corny Collins Council’,0,51),(2976,71167,’Becky – Corny Collins Council’,1,52),(2976,1752330,’Lou Ann – Corny Collins Council’,1,53),(2976,1752331,’IQ – Corny Collins Council / Welcome to the 60\’s Dancer’,0,54),(2976,1237750,’Bix – Corny Collins Council’,0,55),(2976,1752332,’Jesse – Corny Collins Council / Welcome to the 60\’s Dancer’,0,56),(2976,1752333,’Paulie – Corny Collins Council / Welcome to the 60\’s Dancer’,0,57),(2976,1752334,’Rhonda – Detention Kid’,0,58),(2976,1290632,’Hoo Hoo – Detention Kid’,0,59),(2976,1752335,’Tyrone – Detention Kid’,0,60),(2976,1401053,’Duane – Detention Kid’,0,61),(2976,1752337,’Jermaine – Detention Kid’,0,62),(2976,62133,’Janetta – Detention Kid’,0,63),(2976,1752338,’Pearl – Detention Kid’,0,64),(2976,1752339,’Little Mo – Detention Kid’,0,65),(2976,1752340,’Skillet – Detention Kid’,0,66),(2976,1752342,’Stooie – Detention Kid’,0,67),(2976,1752343,’Maybelle\’s Store Dancer’,1,68),(2976,1752344,’Maybelle\’s Store Dancer’,0,69),(2976,1752345,’Maybelle\’s Store Dancer’,0,70),(2976,124342,’Maybelle\’s Store Dancer’,0,71),(2976,1752713,’Maybelle\’s Store Dancer’,0,72),(2976,1724945,’Maybelle\’s Store Dancer’,1,73),(2976,29215,’Maybelle\’s Store Dancer’,0,74),(2976,1039612,’Maybelle\’s Store Dancer’,0,75),(2976,110743,’Maybelle\’s Store Dancer’,0,76),(2976,1752716,’Maybelle\’s Store Dancer’,0,77),(2976,1752717,’Dynamites’,0,78),(2976,143244,’Dynamites’,1,79),(2976,168925,’Dynamites’,1,80),(2976,1752720,’Record Hop Dancer’,0,81),(2976,1752721,’Record Hop Dancer’,0,82),(2976,1404613,’Record Hop Dancer’,0,83),(2976,441718,’Record Hop Dancer’,0,84),(2976,1752723,’Record Hop Dancer’,0,85),(2976,1752724,’Record Hop Dancer’,1,86),(2976,1752725,’Record Hop Dancer’,0,87),(2976,1086460,’Record Hop Dancer’,0,88),(2976,1752726,’Good Morning Baltimore Dancer / Welcome to the 60\’s Dancer’,0,89),(2976,124360,’Good Morning Baltimore Dancer / Welcome to the 60\’s Dancer’,0,90),(2976,1752727,’Auditionee’,1,91),(2976,1752728,’Auditionee’,1,92),(2976,1617303,’Auditionee’,1,93),(2976,1752733,’Auditionee’,1,94),(2976,1752735,’Auditionee’,1,95),(2976,1752738,’Auditionee’,1,96),(2976,1649240,’Hairdresser’,1,97),(2976,111715,’Hairdresser’,1,98),(2976,1752744,’Hairdresser’,1,99),(2976,54650,’Drunk’,2,100),(2976,1752745,’Record Store Owner’,0,101),(2976,1752747,’Teen’,0,102),(2976,1752748,’Mr. Pinky\’s Customer’,1,103),(2976,1752074,’Mr. Pinky\’s Customer’,1,104),(2976,1486424,’Mr. Pinky\’s Customer’,1,105),(2976,1752076,’Mr. Pinky\’s Customer’,1,106),(2976,1273501,’Mr. Pinky\’s Customer’,1,107),(2976,1752754,’Mr. Pinky\’s Seamstress’,1,108),(2976,1688874,’Mr. Pinky\’s Cashier’,1,109),(2976,1752760,’Gawky Kid’,0,110),(2976,1752761,’Welcome to the 60\’s Dancer’,1,111),(2976,1752762,’Welcome to the 60\’s Dancer’,1,112),(2976,1513682,’Welcome to the 60\’s Dancer’,1,113),(2976,1752763,’Welcome to the 60\’s Dancer’,1,114),(2976,1752765,’Welcome to the 60\’s Dancer’,1,115),(2976,1752766,’Welcome to the 60\’s Dancer’,1,116),(2976,1752767,’Welcome to the 60\’s Dancer’,1,117),(2976,1228290,’Welcome to the 60\’s Dancer’,1,118),(2976,1461425,’Welcome to the 60\’s Dancer’,1,119),(2976,1752770,’Welcome to the 60\’s Dancer’,1,120),(2976,1752771,’Welcome to the 60\’s Dancer’,1,121),(2976,1752773,’Welcome to the 60\’s Dancer’,1,122),(2976,1752776,’Welcome to the 60\’s Dancer’,1,123),(2976,1752778,’Welcome to the 60\’s Dancer’,1,124),(2976,1752779,’Welcome to the 60\’s Dancer’,1,125),(2976,85929,’Welcome to the 60\’s Dancer’,1,126),(2976,1752781,’Welcome to the 60\’s Dancer’,0,127),(2976,1752783,’Welcome to the 60\’s Dancer’,0,128),(2976,1752784,’Welcome to the 60\’s Dancer’,0,129),(2976,1752786,’Welcome to the 60\’s Dancer’,0,130),(2976,1752788,’Welcome to the 60\’s Dancer’,0,131),(2976,1244382,’Welcome to the 60\’s Dancer’,0,132),(2976,1752790,’Welcome tot he 60\’s Dancer’,0,133),(2976,1752791,’Welcome to the 60\’s Dancer’,0,134),(2976,1752792,’Welcome to the 60\’s Dancer’,0,135),(2976,1752793,’Welcome to the 60\’s Dancer’,0,136),(2976,1752795,’Welcome to the 60\’s Dancer’,0,137),(2976,1752796,’Welcome to the 60\’s Dancer’,0,138),(2976,1752797,’Welcome to the 60\’s Dancer’,0,139),(2976,1432509,’Welcome to the 60\’s Dancer’,0,140),(2976,551476,’Welcome to the 60\’s Dancer’,2,141),(2976,1423398,’Welcome to the 60\’s Dancer’,0,142),(2976,1752798,’Welcome to the 60\’s Dancer’,0,143),(2976,1752800,’Welcome to the 60\’s Dancer’,0,144),(2976,1230442,’Welcome to the 60\’s Dancer’,0,145),(2976,1752801,’Welcome to the 60\’s Dancer’,0,146),(2976,1752802,’Welcome to the 60\’s Dancer’,0,147),(2976,1408344,’Welcome to the 60\’s Dancer’,1,148),(2976,1463851,’Welcome to the 60\’s Dancer’,1,149),(2976,1752803,’Welcome to the 60\’s Dancer’,1,150),(2976,1752805,’Maybelle\’s Store Dancer’,0,151),(332,4756,’Inspector Gadget / Robo Gadget / John Brown’,2,0),(332,4757,’Sanford Scolex’,2,1),(332,4758,’Brenda / Robobrenda’,1,2),(332,49961,’Penny’,1,3),(332,43120,’Kramer’,2,4),(332,60252,’Mayor Wilson’,1,5),(332,15105,’Sikes’,2,6),(332,12850,’Chief Quimby’,2,7),(332,85931,’Gadgetmobile (voice)’,2,8),(332,9807,’Artemus Bradford’,2,9),(332,11794,’Thelma’,0,10),(332,16619,’Himself’,2,11),(332,10460,’Famous Big Guy with Silver Teeth’,0,12),(332,61709,’Famous Villain with Deadly Hat’,0,13),(332,81414,’Famous Identifier of Sea Planes’,0,14),(332,1813644,”,1,15),(594,31,’Viktor Navorski’,2,0),(594,1922,’Amelia Warren’,1,1),(594,2283,’Frank Dixon’,2,2),(594,8687,’Mulroy’,2,3),(594,8688,’Enrique Cruz’,2,4),(594,8689,’Thurman’,2,5),(594,8690,’Gupta Rajan’,2,6),(594,8691,’Torres’,1,7),(594,8692,’Salchak’,2,8),(594,8693,’Karl Iverson’,2,9),(594,8694,’Waylin’,0,10),(594,8695,’Bobby Alima’,2,11),(594,8696,’Nadia’,1,12),(594,8697,’Steward First Class’,2,13),(594,8699,’Max’,2,15),(594,8700,’Lucy’,0,16),(594,1391612,’CBP Officer’,2,17),(594,128719,’Milodragovich’,2,19),(594,1775990,’Burger King Employee’,1,20),(594,112050,’Woman with car’,0,21),(594,41561,’CBP Officer’,2,22),(594,66580,’Cab Driver’,2,23),(594,1524538,’Man on Phone’,0,24),(6538,31,’Charlie Wilson’,2,0),(6538,1233,’Gust Avrakotos’,2,1),(6538,1204,’Joanne Herring’,1,2),(6538,9273,’Bonnie Bach’,1,3),(6538,11851,’President Zia’,2,4),(6538,50346,’Charlies Engel’,1,5),(6538,21134,’Cravely’,2,6),(6538,50347,’Charlies Engel’,1,7),(6538,18917,’Avi Perlman’,2,8),(6538,42515,’Stacey’,1,10),(6538,81681,’Harold Holt’,2,11),(6538,13726,’Doc Long’,2,12),(6538,5081,’Jane Liddle’,1,13),(6538,25136,”,2,14),(6538,203734,’Receptionist – Charlie\’s Angels’,1,15),(6538,182280,’Donnelly’,0,16),(6538,1349629,’Congressional Committee’,2,17),(1125,134,’Curtis Taylor Jr.’,2,0),(1125,14386,’Deena Jones’,1,1),(1125,776,’James Thunder Early’,2,2),(1125,2047,’Marty Madison’,2,3),(1125,15565,’Effie White’,1,4),(1125,15563,’Lorrell Robinson’,1,5),(1125,15564,’C.C. White’,2,6),(1125,15566,’Michelle Morris’,1,7),(1125,15567,’Wayne’,2,8),(1125,15568,’Magic’,0,9),(1125,15569,’May’,1,10),(1125,181080,’M.C.’,2,11),(1125,110884,’Tiny Joe Dixon’,2,12),(1125,18284,’Jazz Singer’,1,13),(1125,107939,’Elvis Kelly’,2,14),(1125,95758,’Max Washington’,0,15),(1125,12074,’Jerry Harris’,2,16),(1125,17697,’Sam Walsh’,2,17),(1125,9299,’Ronald White’,2,18),(1125,154224,’Aunt Ethel’,1,19),(1125,56523,’Sweetheart’,1,20),(1125,111513,’Curtis\’ Secretary’,1,21),(1125,150194,’Man in D.C. Bar (uncredited)’,2,22),(4551,8891,’Chili Palmer’,2,0),(4551,139,’Edie Athens’,1,1),(4551,4937,’Raji’,2,2),(4551,5726,’Sin LaSalle’,2,3),(4551,37934,’Dabu’,2,4),(4551,37935,’Steven Tyler’,2,5),(4551,7866,’Joe Loop’,2,6),(4551,37936,’Linda Moon’,1,7),(4551,17342,’Hy Gordon’,2,8),(4551,5578,’Marla’,1,9),(4551,37937,’Darryl’,2,10),(4551,1037,’Nick Carr’,2,11),(4551,18918,’Elliot Wilhelm’,2,12),(4551,518,’Martin Weir’,2,13),(4551,4512,’Tommy Athens’,2,14),(4551,1571036,’Fast Freddie’,0,15),(4551,4246,’Wyclef Jean’,2,16),(4551,29783,’Fred Durst’,2,17),(4551,1231780,’Sergio Mendes’,2,18),(4551,57756,’Gene Simmons’,2,19),(4551,150,’RZA’,2,20),(4551,235984,’Joe Perry’,2,21),(4551,115654,’Anna Nicole Smith’,1,22),(4551,162172,’Roman Bulkin’,2,23),(4551,1216708,’Glenn’,2,24),(4551,1680695,’Pumpkin’,1,25),(4551,177525,’Miss Bangkok’,0,26),(4551,20373,’Robin’,1,27),(4551,43893,’Tiffany’,1,28),(4551,3283,’Marge’,0,29),(4551,66580,’Program Director’,2,30),(4551,1332017,’Hairy Russian’,2,31),(4551,982098,’Assistant Director’,2,32),(4551,66560,’Assistant Director’,2,33),(4551,1680739,’Ivan’,2,34),(4551,1680743,’Sin LaSalle\’s Wife’,1,35),(4551,113008,’Bearded Russian’,2,36),(4551,1680745,’Russ Irwin’,2,37),(4551,78461,’Joey Kramer’,2,38),(4551,78460,’Brad Whitford’,2,39),(4551,78458,’Tom Hamilton’,2,40),(4551,1680746,’Backup Singer’,1,41),(4551,1680747,’Backup Singer’,1,42),(4551,82092,’Will.i.am’,2,43),(4551,20497,’Fergie’,1,44),(4551,557829,’Apl.de.Ap’,2,45),(4551,1240932,’Taboo’,2,46),(4551,1680753,’Carmen Getit’,1,47),(4551,1680755,’Steve Lucky’,2,48),(4551,1220575,’Pussycat Doll’,1,49),(4551,1680758,’Pussycat Doll’,1,50),(4551,77438,’Pussycat Doll’,1,51),(4551,151246,’Pussycat Doll’,1,52),(4551,1680761,’Music Video Dancer’,1,53),(4551,1599680,’Music Video Dancer’,2,54),(4551,23591,’Music Video Dancer’,2,55),(4551,1046144,’Music Video Dancer’,2,56),(4551,1680764,’Music Video Dancer’,1,57),(4551,1775935,’Swing Dancer’,2,58),(612,8783,’Avner’,2,0),(612,8784,’Steve’,2,1),(612,8785,’Carl’,2,2),(612,2406,’Robert’,2,3),(612,169,’Hans’,2,4),(612,8786,’Daphna’,1,5),(612,118,’Ephraim’,2,6),(612,8787,’Avner\’s Mother’,1,7),(612,8789,’Louis’,2,8),(612,677,’Andreas’,2,9),(612,5077,’Sylvie’,1,10),(612,8790,’Yvonne’,1,11),(612,8791,’Jeanette’,1,12),(612,2245,’Tony’,2,13),(612,8792,’Golda Meir’,1,14),(612,8793,’General Zamir’,0,15),(612,2369,’Papa’,2,16),(612,41316,’Mahmoud Hamshari’,2,17),(612,67145,”,0,18),(9567,62,’Lieutenant A.K. Waters’,2,0),(9567,28782,’Dr. Lena Fiore Kendricks’,1,1),(9567,6614,’James \’Red\’ Atkins’,2,2),(9567,19299,’Ellis \’Zee\’ Pettigrew’,2,3),(9567,21798,’Kelly Lake’,2,4),(9567,18461,’Michael \’Slo\’ Slowenski’,2,5),(9567,1053926,’Demetrius \’Silk\’ Owens’,0,6),(9567,91607,’Danny \’Doc\’ Kelley’,2,7),(9567,1053927,’Jason \’Flea\’ Mabry’,0,8),(9567,4139,’Captain Bill Rhodes’,2,9),(9567,10649,’Colonel Idris Sadick’,2,10),(9567,1378251,’Musa’,0,11),(9567,13308,’Patience’,1,12),(9567,1378252,’Lasana’,0,13),(9567,1235875,’Colonel Emanuel Okeze’,0,14),(9567,1444704,’General Mustafa Yakubu’,0,15),(9567,1660575,’Amaka’,0,16),(9567,1660578,’Bujo’,0,17),(9567,19300,’Arthur Azuka’,2,18),(9567,105762,’Gideon’,2,19),(9567,58068,’Sister Grace’,1,20),(9567,134693,’Sister Siobhan’,0,21),(9567,33153,’Father Gianni’,0,22),(9567,68278,’Terwase’,2,23),(9567,168981,’President Samuel Azuka’,2,24),(9567,55394,’Mission Rebel’,0,25),(9567,167736,’Rape Victim’,0,26),(9567,149789,’Christopher Marwa’,0,27),(9567,1609276,’Village Woman’,1,28),(9567,58655,’Carrier Reporter’,2,29),(9567,1558214,’Rhodes\’ Aide’,0,30),(2539,19292,’John Clasky’,2,0),(2539,4939,’Deborah Clasky’,1,1),(2539,3627,’Flor Moreno’,1,2),(2539,9599,’Evelyn Wright’,1,3),(2539,25907,’Christina’,1,4),(2539,25908,’Bernice’,1,5),(2539,25909,’Georgie’,2,6),(2539,25911,’Monica’,1,7),(2539,91351,’Sleepover Friend’,1,8),(2539,57192,’Sleepover Friend’,1,9),(2539,1009885,’Hostess at John\’s Restaurant’,1,10),(2539,25910,’Cristina (sechsju00e4hrig)’,1,11),(2539,25912,’Flor\’s Husband’,0,12),(2539,17415,’Luz’,1,13),(9297,57189,’Little Girl (voice)’,1,0),(9297,884,’Nebbercracker (voice)’,2,1),(9297,51583,’Douglas \’DJ\’ Hartner (voice)’,2,2),(9297,57191,’Chowder (voice)’,2,3),(9297,57192,’Jenny Bennett (voice)’,1,4),(9297,11514,’Mom (voice)’,0,5),(9297,20753,’Dad (voice)’,2,6),(9297,42288,’Paramedic #1 (voice)’,0,7),(9297,1077841,’Paramedic #2 (voice)’,0,8),(9297,1579,’Zee (voice)’,1,9),(9297,11662,’Bones (voice)’,2,10),(9297,32895,’Officer Landers (voice)’,2,11),(9297,36811,’Officer Lister (voice)’,2,12),(9297,53926,’Reginald \’Skull\’ Skulinski (voice)’,2,13),(9297,3391,’Constance (voice)’,1,14),(9297,61403,’Bully #1 (voice)’,2,15),(9297,198812,’Bully #2 (voice)’,2,16),(3172,62,’Joshep Blake’,2,0),(3172,879,’Terry Lee Collins’,2,1),(3172,112,’Kate Wheeler’,1,2),(3172,31711,’Harvey Pollard’,2,3),(3172,31712,’Charles Wheeler’,2,4),(3172,31713,’Darill Miller’,2,5),(3172,31714,’Cloe Miller’,1,6),(3172,31715,’Cheri’,1,7),(3172,31716,’Mildred Kronenberg’,1,8),(3172,31717,’Claire/Pink Boots’,1,9),(6520,738,’King Arthur’,2,0),(6520,1205,’Lancelot’,2,1),(6520,15887,’Guinevere’,1,2),(6520,29068,’Prince Malagant’,2,3),(6520,15498,’Agravaine’,2,4),(6520,34720,’Sir Kay’,2,5),(6520,52375,’Sir Patrise’,2,6),(6520,186032,’Sir Mador’,0,7),(6520,202032,’Ralf’,2,8),(6520,11857,’Oswald’,2,9),(6520,107398,’Peter, King\’s Stableman’,2,10),(6520,193360,’Elise’,1,11),(6520,1075038,’Petronella’,0,12),(6520,200365,’Mark’,0,13),(6520,1063141,’Sir Sagramore’,0,14),(6520,1313587,’Child’,0,15),(1439,1038,’Anna Leonowens’,1,0),(1439,1619,’King Mongkut’,2,1),(1439,39126,’Tuptim’,1,2),(1439,10993,’Louis Leonowens’,2,3),(1439,9462,’General Alak’,2,4),(1439,17155,’Prince Chowfa, King Mongkut\’s Brother’,2,5),(1439,17156,’Princess Fa-Ying’,1,6),(1439,17157,’Prince Chulalongkorn’,2,7),(1439,17158,’Moonshee, Leonowens\’ Indian Servant’,2,8),(1439,17159,’Beebe, Leonowens\’ Indian Servant’,1,9),(1439,17160,’Lady Thiang, Head Wife’,1,10),(1439,17161,’Lady Bradley’,1,11),(1439,10746,’Lord John Bradley’,2,12),(1439,221810,’Phim’,1,13),(1439,17789,’Mycroft Kincaid, East India Trading Co.’,2,14),(1439,1533619,’Khun Phra Balat’,2,15),(1439,17154,’The Kralahome, Prime Minister’,2,16),(1439,1279480,’Noi’,2,17),(1439,127088,’Nikorn’,0,18),(1439,111248,’Interpreter’,0,19),(1439,1663702,’Lady Jao Jom Manda Ung’,1,20),(1439,1281012,’King Chulalongkorn’,0,21),(1439,73847,’Captain Blake’,2,22),(1439,93738,’Scarfaced leader’,0,23),(1439,10885,’Justice Phya Phrom’,0,24),(1439,1332617,’Second Judge’,2,25),(1439,1285664,’Third Judge’,0,26),(1439,25252,’Lady of Court’,1,27),(1439,1279267,’Lady of Court’,0,28),(1439,1275331,’La-Ore’,0,29),(1439,1280244,’Siamese trader’,0,30),(1439,1430430,’Lady Thiang (uncredited)’,1,31),(2026,62,’Jeff Talley’,2,0),(2026,7166,’Walter Smith’,2,1),(2026,6860,’Tommy Smith’,2,2),(2026,20847,’Jennifer Smith’,1,3),(2026,11107,’Mars Krupcheck’,2,4),(2026,17243,’Dennis Kelly’,2,5),(2026,17347,’Kevin Kelly’,2,6),(2026,10780,’Jane Talley’,1,7),(2026,20848,’Amanda Talley’,1,8),(2026,106728,’Carol Flores’,1,9),(2026,106935,’Louise’,1,10),(2026,8335,’The Watchman’,2,11),(2026,1350538,’Bill Jorgenson’,0,12),(2026,12797,’Lt. Leifitz’,2,13),(7450,1892,’Cale Tucker’,2,0),(7450,8984,’Captain Korso’,2,1),(7450,69597,’Akima’,1,2),(7450,5723,’Gune’,2,3),(7450,78729,’Preed’,2,4),(7450,21197,’Stith’,1,5),(7450,2372,’Prof. Sam Tucker’,2,6),(7450,15789,’Young Cale’,2,7),(9425,6856,’Todd’,2,0),(9425,58319,’Caine 607′,2,1),(9425,11355,’Colonel Mekum’,2,2),(9425,935,’Sandra’,1,3),(9425,28848,’Mace’,2,4),(9425,2048,’Church’,2,5),(9425,106911,’Riley’,2,6),(9425,16500,’Goines’,0,7),(9425,1179681,’Romero’,2,8),(9425,19654,’Jimmy Pig’,2,9),(9425,67602,’Johnny’,2,10),(9425,60072,’Angie’,1,11),(9425,986808,’Todd — Age 11′,0,12),(9425,1646987,’Nathan’,0,13),(9425,15443,’Rubrick’,2,14),(9425,6945,’Sloan’,0,15),(9425,5417,’Green’,2,16),(9425,1646992,’Chelsey’,0,17),(9425,13925,’Slade’,2,18),(9741,62,’David Dunn’,2,0),(9741,2231,’Elijah Price’,2,1),(9741,32,’Audrey Dunn’,1,2),(9741,4012,’Joseph Dunn’,2,3),(9741,43464,’Hostage Boy’,2,4),(9741,17194,’Orange Suit Man’,2,5),(9741,53302,’School Nurse’,1,6),(9741,11614,’Stadium Drug Dealer’,2,7),(9741,33689,’Elijah\’s Mother’,1,8),(9741,19299,’Dr. Mathison’,2,9),(9741,21474,’Kelly’,1,10),(9741,1882245,’Elijah, Age 13′,0,11),(9741,1882246,’Babysitter’,0,12),(9741,102996,’Comic Book Clerk’,2,13),(9741,1882248,’David Dunn, Age 20′,0,14),(9741,73836,’Audrey Inverso, Age 20′,1,15),(9741,50217,’ER Doctor’,2,16),(9741,38672,’Saleswoman’,0,17),(9741,1559326,’Businessman’,2,18),(9741,51551,’Priest’,2,19),(9741,1882252,’Ancient Personnel Secretary’,0,20),(9741,92788,’Noel’,2,21),(9741,109144,’Green Army Jacketed Man’,2,22),(9741,1775917,’Physician’,0,23),(9741,1037757,’Physical Therapist’,0,24),(9741,203407,’Thermoneter Boy’,2,25),(9741,1128126,’Truck Driver’,2,26),(9741,1739972,’Radio Announcer’,2,27),(9741,1444795,’Shoplifter’,0,28),(9741,1882253,’Slick Haired Man’,2,29),(9741,1882256,’Frat Party Boy’,2,30),(9741,1882257,’Frat Party Girl’,0,31),(9741,1271783,’Hostage Father’,0,32),(9741,155042,’Hostage Girl’,1,33),(9741,958493,’Security Dispatcher’,2,34),(9741,58570,’Five Year Old Boy’,0,35),(9741,1397318,’Bar Patron’,0,36),(9741,1882258,’EastRail Engineer’,0,37),(9741,1110557,’Hostage Woman’,0,38),(9741,569071,’Hospital Administrator’,0,39),(8688,2963,’Rick Santoro’,2,0),(8688,33,’Commander Kevin Dunne’,2,1),(8688,11512,’Gilbert Powell’,2,2),(8688,17832,’Julia Costello’,1,3),(8688,42694,’Anthea’,1,4),(8688,16936,’Lincoln Tyler’,2,5),(8688,14721,’Lou Logan’,0,6),(8688,18313,’Jimmy George’,2,7),(8688,118478,’Charles Kirkland’,2,8),(8688,40481,’Cyrus’,2,9),(8688,78102,’Ned Campbell’,2,10),(8688,5170,’Walt McGahn’,2,11),(8688,90039,’Mickey Alter’,2,12),(8688,1206174,’Tyler\’s Party Girl #2′,0,13),(8688,1206175,’Casino Security #1′,0,14),(8688,55275,’Tyler\’s Bodyguard’,2,15),(8688,7013,’C.J.’,2,16),(8688,180996,’Arena Security’,2,17),(8688,1707671,’Ring Announcer’,0,18),(8688,119481,’Zietz (Drunk)’,0,19),(8688,548035,’Arena Security’,0,20),(8688,1423667,’Lady at Elevator’,0,21),(8688,1027374,’Blonde Reporter’,0,22),(8676,10297,’Ben \’Finn\’ Finnegan’,2,0),(8676,11661,’Tess Finnegan’,1,1),(8676,55636,’Nigel Honeycutt’,2,2),(8676,1125,’Alfonz’,2,3),(8676,4433,’Gemma Honeycutt’,1,4),(8676,55638,’Bigg Bunny’,2,5),(8676,5538,’Moe Fitch’,2,6),(8676,55637,’Curtis’,2,7),(8676,40259,’Cordell’,2,8),(8676,61607,’Gary’,2,9),(8676,28036,’Eddie’,2,10),(8676,77553,’Cyrus’,2,11),(8676,33184,’Stefan’,2,12),(8676,964221,’Andras’,2,13),(8676,1075052,’Precious Gem Crew Nurse’,0,14),(8676,1530759,’Precious Gem Crew Member 1′,2,15),(8676,234504,’Precious Gem Crew Member 2′,0,16),(4349,134,’Ronald Fleury’,2,0),(4349,9278,’Janet Mayes’,1,1),(4349,2955,’Grant Sykes’,2,2),(4349,23532,’Adam Leavitt’,2,3),(4349,762,’Sergeant Haytham’,2,4),(4349,12799,’Damon Schmidt’,2,5),(4349,766,’Colonel Faris Al Ghazi’,2,6),(4349,28633,’Robert Grace’,2,7),(4349,74428,’Aaron Jackson’,2,8),(4349,3497,’Francis Manner’,2,9),(4349,3713,’Elaine Flowers’,1,10),(4349,6413,’Gideon Young’,2,11),(4349,171727,’Ellis Leach’,0,12),(4349,63279,’Maricella Canavesio’,1,13),(4349,96625,’Miss Ross’,1,14),(4349,154011,’Lyla Fleury’,1,15),(4349,1128234,’Kevin Fleury’,0,16),(4349,122338,’Prince Ahmed Bin Khaled’,2,17),(4349,73710,’Prince Thamer’,0,18),(9718,23659,’Ricky Bobby’,2,0),(9718,4764,’Cal Naughton, Jr.’,2,1),(9718,6730,’Jean Girard’,2,2),(9718,21163,’Reese Bobby’,2,3),(9718,61981,’Lucius Washington’,2,4),(9718,57451,’Carley Bobby’,1,5),(9718,9273,’Susan’,1,6),(9718,43775,’Lucy Bobby’,1,7),(9718,28637,’Gregory’,2,8),(9718,28640,’Mrs. Dennit’,1,9),(9718,28638,’Hershell’,2,10),(9718,55710,’Terry Cheveaux’,2,11),(9718,58736,’10-Year-Old Cal’,0,12),(9718,125168,’5-Year-Old Ricky’,0,13),(9718,58734,’Schoolteacher’,0,14),(9718,58737,’Glenn’,2,15),(9718,13101,’Kyle’,2,16),(9718,58733,’Waffle House Manager’,2,17),(9718,58738,’ESPN Reporter’,0,18),(9718,58735,’10-Year-Old Ricky’,0,19),(9718,3798,’Mr. Dennit, Sr.’,2,20),(9718,4239,’Mos Def’,2,21),(9718,47990,’Elvis Costello’,2,22),(9718,21523,’John Hanafin’,2,23),(197,2461,’William Wallace’,2,0),(197,2462,’Murron MacClannough’,0,1),(197,1957,’Princess Isabelle’,1,2),(197,2463,’King Edward’,2,3),(197,2464,’Robert the Bruce’,2,4),(197,2039,’Hamish Campbell’,2,5),(197,2465,’Young William Wallace’,0,6),(197,2467,’Campbell’,2,7),(197,2468,’MacClannough’,2,8),(197,2469,’Mother MacClannough’,0,9),(197,2470,’Young Murron MacClannough’,0,10),(197,2471,’Nicolette’,0,11),(197,2472,’Malcolm Wallace’,2,12),(197,2473,’John Wallace’,0,13),(197,2474,’Elder Stewart’,0,14),(197,2475,’Young Hamish Campbell’,0,15),(197,1248,’Argyle Wallace’,2,16),(197,2476,’Edward, Prince of Wales’,2,17),(197,2477,’Phillip’,2,18),(197,2478,’Morrison’,2,19),(197,2479,’Lord Bottoms’,2,20),(197,2480,’MacGregor’,0,21),(197,2481,’Robert Bruce Sr.’,2,22),(197,2482,’Stephen, Irish Fighter’,2,23),(197,3064,’Veteran’,2,24),(197,21431,’Chief Justice/Executioner’,2,25),(197,166258,’Magistrate’,2,26),(197,1333582,’Lord Talmadge’,0,27),(197,43131,’Cheltham’,0,28),(197,10174,’Balliol’,2,29),(197,16792,’Governor of York’,2,30),(197,1333583,’Sean’,0,31),(197,17788,’Priest No. 1′,2,32),(197,26094,’King\’s Advisor’,2,33),(197,20282,’Craig’,2,34),(197,2629,’Mornay’,2,35),(197,1774123,’Mrs. Morrison’,0,36),(197,2451,’Bride\’s Father’,2,37),(197,742,’Smythe’,2,38),(197,20244,’Corporal’,0,39),(197,151305,’Madbaker / Flagman’,2,40),(197,110315,’Stewart’,2,41),(197,1231412,’Faudron’,0,42),(197,1073161,’Lochlan’,0,43),(197,16908,’Young soldier’,2,44),(197,104758,’English General’,0,45),(197,199755,’Drinker #1′,2,46),(197,188452,’Drinker #2′,0,47),(197,1234613,’Chief Assassin’,0,48),(197,188433,’Jailor’,0,49),(197,1227996,’English Commander’,0,50),(197,1394475,’Doogal (uncredited)’,0,51),(197,1084940,’Warrior #2 (uncredited)’,0,52),(197,1209257,’Lady at Wedding (uncredited)’,0,53),(197,549342,’English General (uncredited)’,0,54),(25,134,’Staff Sgt. Sykes’,2,0),(25,131,’Anthony Swofford’,2,1),(25,132,’D.I. Fitch’,2,1),(25,155,’Kruger’,2,3),(25,133,’Alan Troy’,2,4),(25,10964,’Ramon Escobar’,2,5),(25,2955,’Lt. Col. Kazinski’,2,6),(25,49271,’Fergus O\’Donnell’,2,7),(25,150194,’Poitier’,2,8),(25,17697,’Corporal Harrigan’,2,9),(25,107939,’Julius’,2,10),(25,95698,’Branded Marine’,2,12),(25,1291645,’Nurse’,0,13),(25,1172840,’Young Mr. Swofford’,0,14),(25,557545,’Young Mrs. Swofford’,0,15),(25,1291646,’Swoff\’s Sister’,0,16),(25,81462,’Mrs. Swofford’,1,17),(25,62003,’Mr. Swofford’,2,18),(25,945062,’Bored Gunny’,2,19),(25,352,’Major Lincoln’,2,20),(35,198,’Homer / Itchy / Barney / Grampa / Stage Manager / Krusty the Clown / Mayor Quimby / Mayor\’s Aide / Multi-Eyed Squirrel / Panicky Man / Sideshow Mel / Mr. Teeny / EPA Official / Kissing Cop / Bear / Boy on Phone / NSA Worker / Officer / Santa\’s Little Helper / Squeaky-Voiced Teen (voice)’,2,0),(35,199,’Marge Simpson / Selma / Patty (voice)’,1,1),(35,200,’Bart Simpson / Maggie Simpson / Ralph / Nelson / Todd Flanders / TV Daughter / Woman on Phone (voice)’,1,2),(35,5586,’Lisa Simpson (voice)’,1,3),(35,5587,’Professor Frink / Comic Book Guy / Moe / Chief Wiggum / Lou / Carl / Cletus / Bumblebee Man / Male EPA Worker / Dome Depot Announcer / Kissing Cop / Carnival Barker / Counter Man / Apu / Drederick Tatum / Sea Captain / EPA Passenger / Robot / Dr. Nick / Wise Guy (voice)’,2,4),(35,6008,’Scratchy / Mr. Burns / Rev. Lovejoy / Ned Flanders / Lenny / Skull / President Arnold Schwarzenegger / Kent Brockman / Principal Skinner / Dr. Hibbert / Smithers / Toll Booth Man / Guard / Otto / Kang (voice)’,2,5),(35,7090,’Sideshow Bob (voice)’,2,6),(35,23211,’Colin (voice)’,0,7),(35,6009,’Milhouse Van Houten / Jimbo Jones / Rod Flanders (voice)’,1,8),(35,6036,’Mrs. Krabappel (voice)’,1,9),(35,3266,’Fat Tony (voice)’,2,10),(35,31,’Himself (voice)’,2,11),(35,95866,’Green Day (voice)’,2,12),(35,95867,’Green Day (voice)’,0,13),(35,95868,’Green Day (voice)’,0,14),(35,34983,’Sweet Old Lady / Colin / Mrs. Skinner / Nelson\’s Mother / Pig / Cat Lady / Female EPA Worker / G.P.S. Woman / Cookie Kwan / Lindsey Naegle / TV Son / Medicine Woman / Girl on Phone (voice)’,1,15),(35,13,’Russ Cargill (voice)’,2,16),(35,6035,’Martin (voice)’,1,17),(35,156910,’Man / EPA Driver (voice)’,2,18),(35,6007,’Helen Lovejoy (voice)’,0,19),(35,179632,’TV Dad (voice)’,0,20),(1997,20526,’Nau00ef-Rea’,1,0),(1997,529,’Aidan McRory’,2,1),(1997,20527,’Seine Exzellenz’,0,3),(1997,20528,’Dorfu00e4ltester’,0,4),(1997,20529,’Paulette’,0,5),(1997,13687,’Eugu00e8ne Normandin’,2,6),(1997,20530,’Mathilde Normandin’,1,7),(1997,20531,’Zerbino’,0,8),(1997,20532,’Saladin’,2,9),(1997,1281,’Raoul Normandin’,2,10),(1997,1014207,’His Excellency\’s Majordomo’,2,11),(1997,1283853,’Sergent Van Tranh’,0,12),(1997,21431,’Auctioneer’,2,13),(1997,60852,’Verlaine’,2,14),(1997,1283854,’Napoleon’,0,15),(6947,18997,’Ivy Walker’,1,0),(6947,73421,’Lucius Hunt’,2,1),(6947,3490,’Noah Percy’,2,2),(6947,227,’Edward Walker’,2,3),(6947,10205,’Alice Hunt’,1,4),(6947,2039,’August Nicholson’,2,5),(6947,1956,’Mrs. Clack’,1,6),(6947,1989,’Vivian Percy’,1,7),(6947,51532,’Robert Percy’,2,8),(6947,1479,’Victor’,2,9),(6947,18261,’Tabitha Walker’,1,10),(6947,20750,’Kitty Walker’,1,11),(6947,51533,’Christop Crane’,2,12),(6947,44735,’Jamison’,2,13),(6947,10692,’Finton Coin’,2,14),(6947,11614,’Guard at Desk’,2,15),(3050,776,’Dr. John Dolittle’,2,0),(3050,15531,’Archer Dolittle’,2,1),(3050,17485,’Dr. Mark Weller’,2,2),(3050,1039,’Calloway’,2,3),(3050,31028,’Dr. Gene Reiss’,2,4),(3050,31029,’Lisa Dolittle’,1,5),(3050,31031,’Maya Dolittle’,1,6),(3050,4175,’Dr. Fish’,2,7),(3050,31032,’Dr. Sam Litvack’,2,8),(3050,66896,’Charisse Dolittle’,1,9),(3050,5151,’Woman’,1,10),(3050,1428580,’Drunk Monkey (uncredited)’,0,11),(2675,2461,’Rev. Graham Hess’,2,0),(2675,73421,’Merrill Hess’,2,1),(2675,28042,’Morgan Hess’,2,2),(2675,17140,’Bo Hess’,1,3),(2675,1956,’Officer Paski’,1,4),(2675,11614,’Ray Reddy’,2,5),(2675,23627,’Colleen Hess’,1,6),(2675,28043,’SFC Cunningham’,2,7),(2675,28044,’Tracey Abernathy, die Apothekerin’,1,8),(2675,28046,’Mrs. Nathan’,1,9),(2675,22215,’Lionel Prichard’,2,10),(2675,28049,’Sarah Hughes’,0,11),(2675,3204,’Mr. Nathan’,2,12),(2675,28048,’Professor der an Columbia Universitu00e4t’,2,13),(2675,28047,’Brasilianischer Geburtstags Junge’,0,14),(809,12073,’Shrek (voice)’,2,0),(809,776,’Donkey (voice)’,2,1),(809,6941,’Princess Fiona (voice)’,1,2),(809,5823,’Queen (voice)’,1,3),(809,3131,’Puss In Boots (voice)’,2,4),(809,8930,’King (voice)’,0,5),(809,4757,’Prince Charming (voice)’,2,6),(809,12094,’Fairy Godmother (voice)’,1,7),(809,12095,’Pinocchio/Three Pigs (voice)’,2,8),(809,12080,’Gingerbread Man/Cedric/Announcer/Muffin Man/Mongo (voice)’,2,9),(809,12097,’Blind Mouse (voice)’,2,10),(809,12106,’Wolf (voice)’,0,11),(809,12079,’Page / Elf / Nobleman / Nobleman\’s Son (voice)’,2,12),(809,1077844,’Herald / Man with Box (voice)’,0,13),(809,71857,’Mirror / Dresser (voice)’,2,14),(809,1571793,’Fast Food Clerk (voice)’,0,15),(809,1784314,’Bar Frog (voice)’,0,16),(809,44127,’Ugly Stepsister (voice)’,2,17),(809,12071,’Receptionist (voice)’,0,18),(809,12098,’Humphries / Magic Mirror (voice)’,2,19),(809,936669,’Doll / Jill (voice)’,1,20),(809,205030,’Maiden #1 / Generic Female #2 (voice)’,1,21),(809,1784315,’Maiden #2 (voice)’,0,22),(809,14670,’Joan Rivers (voice)’,1,23),(809,5524,’Captain of the Guards (voice)’,2,24),(920,887,’Lightning McQueen (voice)’,2,0),(920,3636,’Doc Hudson (voice)’,2,1),(920,5149,’Sally Carrera (voice)’,1,2),(920,15897,’Mater (voice)’,2,3),(920,4252,’Luigi (voice)’,2,4),(920,11159,’Ramone (voice)’,2,5),(920,15902,’Sheriff (voice)’,0,6),(920,15903,’Fillmore (voice)’,2,7),(920,15900,’Sarge (voice)’,2,8),(920,15899,’Flo (voice)’,1,9),(920,15898,’Guido (voice)’,2,10),(920,1229705,’The King (voice)’,0,11),(920,2232,’Chick Hicks (voice)’,2,12),(920,381,’Lizzie (voice)’,1,13),(920,7907,’Mack /Hamm Car/Abominable Snow Plow/P.T. Flea Car (voice)’,2,14),(920,7911,’Red (voice)’,0,15),(920,12799,’Harv (voice)’,2,16),(920,81113,’British Harv’,2,17),(920,932721,’Junior (voice)’,2,18),(920,90424,’Himself’,2,19),(920,216299,’Michael Schumacher Ferrari (voice)’,2,20),(920,14991,’Jay Limo (voice)’,2,21),(920,31,’Woody Car (voice)’,2,22),(920,12898,’Buzz Lightyear Car (voice)’,2,23),(920,7904,’Mike Car (voice)’,2,24),(920,1230,’Sullivan Truck (voice)’,2,25),(920,21290,’Flik Car (voice)’,0,26),(920,160042,’Bob Cutlass (voice)’,2,27),(920,942993,’Darrell Cartrip (voice)’,2,28),(920,21125,’Van (voice)’,2,29),(920,3202,’Minny (voice)’,1,30),(920,1442427,’Tex (voice)’,0,31),(920,933947,’Rusty Rust-eze (voice)’,2,32),(920,933948,’Dusty Rust-eze (voice)’,2,33),(920,1442428,’Mrs. The King (voice)’,0,34),(920,7,’Fred (voice)’,2,35),(920,1443286,’Kori Turbowitz (voice)’,0,36),(920,1443287,’Not Chuck (voice)’,0,37),(920,7911,’Peterbilt (voice)’,0,38),(920,7940,’Boost (voice)’,0,39),(920,7962,’Snotrod (voice)’,2,40),(920,1443295,’Wingo (voice)’,0,41),(920,8078,’DJ (voice)’,0,42),(920,72754,’Tia (voice)’,0,43),(920,72753,’Mia (voice)’,0,44),(920,1443308,’Motorhome Race Fan (voice)’,0,45),(920,1443310,’Motorhome Race Fan (voice)’,0,46),(920,83633,’u9583u96fbu9ea5u5764′,2,47),(4806,1204,’Maggie Carpenter’,1,0),(4806,1205,’Ike Graham’,2,1),(4806,3234,’Peggy Flemming’,1,2),(4806,12931,’Ellie Graham’,1,3),(4806,1210,’Fisher’,2,4),(4806,22227,’Coach Bob Kelly’,2,5),(4806,15900,’Walter Carpenter’,2,6),(4806,10825,’Priest Brian Norris’,2,7),(4806,6068,’Pretty Woman in Bar’,1,8),(4806,32291,’Model Shelby’,1,9),(4806,80874,’Final Wedding Pastor’,2,10),(4806,75604,’Dead Head Gill Chavez’,2,11),(4806,129759,’George Swilling’,2,12),(4806,13451,’Mrs. Pressman’,1,13),(4806,1345474,’Grandma’,0,15),(4806,12133,’Betty Trout’,1,16),(4806,1211,’Bartender’,2,17),(4806,95469,’Luau Lady’,1,18),(7451,12835,’Xander Cage’,2,0),(7451,18514,’Yelena’,1,1),(7451,2231,’Agent Augustus Gibbons’,2,2),(7451,11160,’El Jefe’,2,3),(7451,65240,’Jordan King’,1,4),(7451,20982,’Yorgi’,2,5),(7451,53347,’Agent Toby Lee Shavers’,0,6),(7451,2341,’Milan Sova’,0,7),(7451,39849,’Kirill’,2,8),(7451,137332,’Viktor’,2,9),(7451,140250,’Senator Click Hotchkiss’,2,10),(7451,60705,’Agent Jim McGrath’,2,11),(7451,230176,’J.J.’,0,12),(7451,51302,’Virg’,2,13),(7451,154837,’T.J.’,2,14),(7451,1054325,’Ivan Podrov’,2,15),(7451,53348,’Kolya’,2,16),(7451,10207,’Agent Roger Donnan’,0,17),(7451,730454,’James Tannick’,2,18),(7451,1231683,’Agent Polk’,0,19),(3595,2461,’Tom Mullen’,2,0),(3595,33,’Det. Jimmy Shaker’,2,1),(3595,18792,’Agent Lonnie Hawkins’,2,2),(3595,14343,’Katherine Mullen’,1,3),(3595,3127,’Maris’,1,4),(3595,33239,’Sean Mullen’,2,5),(3595,23626,’Clark Barnes’,2,6),(3595,2680,’Cubby Barnes’,2,7),(3595,3212,’Miles Roberts’,2,8),(3595,33240,’Agent Kimba Welch’,1,9),(3595,33241,’Agent Jack Sickler’,2,10),(3595,33242,’Agent Paul Rhodes’,0,11),(3595,10963,’David Torres’,2,12),(3595,6486,’Jackie Brown’,2,13),(3595,33243,’Bob Stone’,0,14),(3595,925,’Wallace’,2,15),(3595,26721,’Fatima’,1,16),(3595,40543,’Roberto’,2,17),(3595,1811948,’Reporter Guest’,0,18),(3595,52861,’Nelson’,0,19),(3595,1811949,’Agent Sam’,0,20),(3595,18236,’News Reporter’,1,21),(3595,1811953,’FBI Agent’,0,22),(3595,1811956,’Cop #1′,2,23),(3595,1811958,’Cop #2′,0,24),(3595,1456742,’Cop #3′,0,25),(3595,217510,’Cop #4′,0,26),(3595,37205,’Cop #5′,2,27),(3595,121939,’Bank Manager’,2,28),(3595,6180,’Science Fair Coordinator’,0,29),(3595,129466,’Science Fair Judge’,0,30),(3595,1116907,’Radioman’,2,31),(3595,1811959,’Liquor Store Perp’,0,32),(3595,142261,’Man at Party’,2,33),(3595,122260,’FBI SWAT Team #1′,0,34),(3595,1513690,’FBI SWAT Team #2′,2,35),(3595,1372092,’FBI SWAT Team #3′,2,36),(3595,1393447,’FBI SWAT Sniper’,2,37),(879,2157,’Peter Banning’,2,0),(879,4483,’Captain James S. Hook’,2,1),(879,1204,’Tinkerbell’,1,2),(879,382,’Smee’,2,3),(879,10978,’Granny Wendy’,1,4),(879,6692,’Moira Banning’,1,5),(879,13389,’Jack \’Jackie\’ Banning’,2,6),(879,13390,’Maggie Banning’,1,7),(879,13392,’Tootles’,2,8),(879,13393,’Pockets’,0,9),(879,12052,’Young Wendy’,1,10),(879,110001,’Inspector Good’,2,11),(879,515,’Gutless’,1,12),(879,42226,’Mermaid’,1,13),(879,55157,’Ace’,2,14),(879,65395,’Don\’t Ask’,2,15),(879,1226119,’Young Peter Pan’,2,16),(879,963693,’5-Year-Old Peter Pan’,2,17),(879,47757,’Peter\’s Mother’,1,18),(879,134235,’LittleLeague Player’,2,19),(879,1403794,’Brad’,0,20),(879,15863,’Dr. Fields’,2,21),(879,1174008,’Jim’,2,22),(879,165802,’Tickles’,2,23),(879,85354,’Noodler’,2,24),(879,16504,’Bill Jukes’,2,25),(879,4,’Woman Kissing on Bridge (uncredited)’,1,26),(879,1,’Man Kissing on Bridge (uncredited)’,2,27),(879,994073,’Shoe-Stealing Pirate (uncredited)’,2,28),(879,13391,’Rufio’,2,29),(1573,62,’John McClane’,2,0),(1573,7673,’Holly McClane’,1,1),(1573,7676,’Richard Thornburg’,2,2),(1573,7672,’Sgt. Al Powell’,2,3),(1573,22383,’General Ramon Esperanza’,2,4),(1573,6573,’Colonel Stuart’,2,5),(1573,22384,’Major Grant’,2,6),(1573,11901,’Captain Carmine Lorenzo’,2,7),(1573,56183,’Leslie Barnes’,2,8),(1573,17874,’Trudeau’,0,9),(1573,19453,’Marvin’,2,10),(1573,29384,’Samantha \’Sam\’ Coleman’,1,11),(1573,1280,’Garber’,2,12),(1573,3010,’Baker’,2,13),(1573,122363,’Thompson’,2,14),(1573,418,’O\’Reilly’,2,15),(1573,589925,’Sheldon’,0,16),(1573,5723,’Burke’,2,17),(1573,155423,’Kahn’,2,18),(1573,171747,’Sgt. Oswald Cochrane’,2,19),(1573,6198,’Miller’,2,20),(1573,534,’Shockley’,2,21),(1573,1037879,’Mulkey’,0,22),(1573,157976,’Blue Light Team’,0,23),(1573,1037880,’Blue Light Team’,2,24),(1573,77487,’Lt.Sherman / Blue light Team’,2,25),(1573,1037881,’Blue Light Team’,0,26),(1573,149496,’Blue Light Team’,0,27),(1573,1037882,’Blue Light Team’,0,28),(1573,189162,’Blue Light Team’,0,29),(1573,1037883,’Blue Light Team’,0,30),(1573,1016112,’Cpl. Telford’,0,31),(1573,174894,’Sergeant’,2,32),(1573,1037884,’Second Sergeant’,0,33),(1573,1037885,’Soldier’,0,34),(1573,162778,’Pilot (Northeast Plane)’,2,35),(1573,194645,’Co-Pilot (Northeast Plane)’,0,36),(1573,140250,’Navigator (Northeast Plane)’,2,37),(1573,193707,’Stewardess – Northeast Plane’,0,38),(1573,33491,’Stewardess (Northeast Plane)’,1,39),(1573,14796,’Older Woman (Northeast Plane)’,1,40),(1573,17782,’Pilot (Windsor Plane)’,2,41),(1573,100871,’Rollins’,2,42),(1573,1002306,’Victor (WZDC)’,2,43),(9257,2231,’Sgt. Dan \’Hondo\’ Harrelson’,2,0),(9257,72466,’Jim Street’,2,1),(9257,17647,’Chris Sanchez’,1,2),(9257,36424,’Deacon \’Deke\’ Kay’,2,3),(9257,2694,’T.J. McCabe’,2,4),(9257,17604,’Brian Gamble’,2,5),(9257,12792,’Michael Boxer’,2,6),(9257,15533,’Alex Montel’,2,7),(9257,38951,’Lt. Greg Velasquez’,2,8),(9257,17941,’GQ’,2,9),(9257,25944,’Capt. Thomas Fuller’,2,10),(9257,177214,’Travis’,2,11),(9257,97446,’Gus’,2,12),(9257,10480,’Sgt. Howard’,2,13),(9257,156038,’Agent Hauser’,0,14),(9257,6944,’Neighbor in Alley’,1,15),(1903,500,’David Aames’,2,0),(1903,955,’Sofia Serrano’,1,1),(1903,6941,’Julie Gianni’,1,2),(1903,6856,’Dr. Curtis McCabe’,2,3),(1903,11662,’Brian Shelby’,2,4),(1903,1284,’Edmund Ventura’,2,5),(1903,9191,’Thomas Tipp’,2,6),(1903,3063,’Rebecca Dearborn’,1,7),(1903,19851,’Dr. Pomeranz’,2,8),(1903,3128,’Libby’,1,9),(1903,335,’Aaron’,2,10),(1903,29930,’Emma’,1,11),(1903,92857,’Colleen’,1,12),(1903,16478,’Peter Brown’,2,13),(9697,13242,’Cleveland Heep’,2,0),(9697,2954,’Mr. Dury’,2,1),(9697,12438,’Harry Farber’,2,2),(9697,20275,’Anna Ran’,1,3),(9697,58619,’Young-Soon Choi’,1,4),(9697,11614,’Vick Ran’,2,5),(9697,6862,’Reggie’,2,6),(9697,58549,’Mr. Leeds’,2,7),(9697,54782,’Mrs. Bell’,1,8),(9697,17302,’Joey Dury’,2,9),(9697,58620,’Long Haired Smoker’,2,10),(9697,15440,’Goatee Smoker’,2,11),(9697,7463,’Emaciated Smoker’,0,12),(9697,58621,’One-Eyebrow Smoker’,2,13),(9697,18997,’Story’,1,14),(395,5411,’Alexa Woods’,1,0),(395,5412,’Sebastian de Rosa’,2,1),(395,1125,’Graeme Miller’,2,2),(395,5414,’Maxwell Stafford’,2,3),(395,2478,’Mark Verheiden’,2,4),(395,5415,’Joe Connors’,2,5),(395,5416,’Adele Rousseau’,0,6),(395,5417,’Rusten Quinn’,2,7),(395,5421,’Thomas Parks’,2,8),(395,2714,’Charles Bishop Weyland’,2,9),(395,176199,’Klaus’,2,10),(395,101923,’Sven’,0,11),(395,68224,’Supervisor’,1,12),(395,109870,’Grid’,2,13),(395,946696,’Scar’,2,14),(395,53348,’Stone’,2,15),(395,1483841,’Bass’,2,16),(395,281336,’Mikkel’,2,17),(395,137332,’Boris’,2,18),(395,1229174,’Karl’,0,19),(395,1086530,’Sacrificial Maiden’,1,20),(395,1010055,’Technician’,0,21),(395,25088,’Juan Ramirez’,2,22),(395,1477143,’High Priest (uncredited)’,2,23),(395,1654474,’Spaceship Crew (uncredited)’,2,24),(200,2387,’Captain Jean-Luc Picard’,2,0),(200,2388,’Commander William T. Riker’,2,1),(200,1213786,’Lt. Commander Data’,2,2),(200,2390,’Lt. Commander Geordi La Forge’,2,3),(200,2391,’Lt. Commander Worf’,2,4),(200,2392,’Doctor Beverly Crusher’,1,5),(200,2393,’Counselor Deanna Troi’,1,6),(200,2518,’Gallatin’,2,7),(200,1164,’Ad\’har Ru\’afo’,2,8),(200,2516,’Vice-Adm. Dougherty’,2,9),(200,2517,’Anij’,1,10),(587,3061,’Younger Ed Bloom’,2,0),(587,3926,’Older Ed Bloom’,0,1),(587,8289,’Will Bloom’,2,2),(587,4431,’Older Sandra Bloom’,1,3),(587,1283,’Younger & Older Jenny/The Witch’,1,4),(587,8291,’Younger Sandra Bloom’,1,5),(587,8293,’Josephine’,1,6),(587,8294,’Older Dr. Bennett’,2,7),(587,8295,’Karl the Giant’,2,8),(587,62562,’Don Price – Age 18-22′,2,9),(587,1294,’Mildred’,1,10),(587,84848,’Beamen’,0,11),(587,1116140,’Jing’,0,12),(587,1116141,’Ping’,0,13),(587,884,’Norther Winslow’,2,14),(587,518,’Amos Calloway’,2,15),(587,1295,’Mr. Soggybottom’,2,16),(587,1571801,’Ed Bloom – Age 10′,0,17),(587,430,’Jenny – Age 8′,1,18),(587,141191,’Ed\’s Father’,2,19),(587,1571804,’Will Bloom – Age 6-8′,0,20),(587,76594,’Ruthie – Age 8′,1,21),(587,225366,’Ed\’s Mother’,1,22),(587,935572,’Zacky Price – Age 10′,0,23),(587,88716,’Don Price – Age 12′,0,24),(587,1473946,’Pretty Girl’,0,25),(587,1179700,’Mayor’,0,26),(587,77522,’Sharecropper’,2,27),(587,1152299,’Banjo man’,2,28),(587,1400931,’Shotgun Toter’,0,29),(587,115433,’Some Farmer’,2,30),(587,1248873,’Shephard’,0,31),(587,1831887,’Townsperson’,2,32),(587,1096328,’Townsperson’,0,33),(587,1392671,’Cashier’,0,34),(587,179847,’Jump Leader’,2,35),(587,218605,’Teller Woman’,1,36),(587,174254,’Heavy Set Nurse’,1,37),(587,76098,’Will\’s son’,2,38),(587,8272,’Econ Professor’,0,39),(587,1391328,’Old Zacky’,0,40),(587,1140572,’Spectre Citizen (uncredited)’,0,41),(587,1372150,’Spectre Citizen (uncredited)’,0,42),(2756,228,’Virgil \’Bud\’ Brigman’,2,0),(2756,1161,’Lindsey Brigman’,1,1),(2756,2712,’Lieutenant Hiram Coffey’,2,2),(2756,30151,’Catfish De Vries’,2,3),(2756,18342,’Alan \’Hippy\’ Carnes’,2,4),(2756,60118,’Jammer Willis’,2,5),(2756,1984,’Lisa \’One Night\’ Standing’,1,6),(2756,1534,’Bendix’,2,7),(2756,21757,’Arliss \’Sonny\’ Dawson’,2,8),(2756,948563,’Lew Finler’,2,9),(2756,951985,’Wilhite’,2,10),(2756,551894,’Schoenick’,0,11),(2756,4732,’Ensign Monk’,2,12),(2756,14663,’Dwight Perry’,0,13),(2756,15442,’Leland McBride’,2,14),(2756,97944,’DeMarco’,2,15),(2756,156819,’Captain’,2,16),(2756,87118,’Barnes’,2,17),(2756,38570,’Gerard Kirkhill’,2,18),(2756,1044,’Dr. Berg’,2,19),(9882,5292,’Anthony \’Hub\’ Hubbard’,2,0),(9882,516,’Elise Kraft / Sharon Bridger’,1,1),(9882,62,’Major-General William Devereaux’,2,2),(9882,4252,’Agent Frank Haddad’,2,3),(9882,20667,’Samir Nazhde’,2,4),(9882,136530,’FBI Agent Mike Johanssen’,0,5),(9882,159850,’Fred Darius’,2,6),(9882,2555,’Danny Sussman’,2,7),(9882,129101,’FBI Agent Floyd Rose’,2,8),(9882,20644,’Khalil Saleh’,2,9),(9882,65829,’Officer Henderson’,2,10),(9882,82167,’Fingerprint Expert’,0,11),(9882,109670,’Sleeper terrorist’,0,12),(9882,1343275,’Prisoner’,0,13),(2270,6194,’Yvaine’,1,0),(2270,23458,’Tristan’,2,1),(2270,1160,’Lamia’,1,2),(2270,380,’Cap. Shakespeare’,2,3),(2270,23459,’Victoria’,1,4),(2270,17835,’Ferdy the Fence’,2,5),(2270,973,’Primus’,2,6),(2270,2983,’Septimus’,2,7),(2270,4757,’Secundus’,2,8),(2270,11390,’King of Stormhold’,2,9),(2270,84035,’Empusa’,1,10),(2270,207295,’Ditchwater Sal’,1,11),(2270,33450,’Mormo’,1,12),(2270,71282,’Una / Slave Girl’,0,13),(2270,1282,’Wall Guardian’,2,14),(2270,27631,’Dunstan Thorn’,2,15),(2270,974,’Skinny Pirate’,2,16),(2270,73968,’Humphrey’,2,17),(2270,80536,’Sextus’,2,18),(2270,47712,’Tertius’,0,19),(2270,20999,’Billy (Goat)’,2,20),(2270,1327,’Narrator (voice)’,2,21),(2270,35390,’Young Scientist’,0,22),(2270,35391,’Victorian Academic’,2,23),(2270,25130,’Young Dunstan’,2,24),(2270,1586551,’Grumpy Customer’,0,25),(2270,1586553,’Mr. Monday’,2,26),(2270,137927,’Bishop’,2,27),(2270,7031,’Quartus’,2,28),(2270,155532,’Quintus’,0,29),(2270,26131,’Soothsayer’,2,30),(2270,3551,’Bernard’,0,31),(2270,40666,’Lackey’,2,32),(2270,209630,’Girl Bernard’,0,33),(2270,1586573,’Yvaine\’s Sister (voice)’,1,34),(2270,1586579,’Old Pirate’,0,35),(2270,6969,’Receptionist’,2,36),(2270,32067,’New Bishop’,2,37),(2270,39678,’Pirate’,2,38),(2270,1586344,’Pirate’,2,39),(2270,1473866,’Pirate’,2,40),(2270,2302,’Pirate’,2,41),(2270,199529,’Pirate’,2,42),(2270,25451,’Pirate’,0,43),(978,287,’Heinrich Harrer’,2,0),(978,14591,’Dalai Lama, 14 Years Old’,0,1),(978,11207,’Peter Aufschnaiter’,2,2),(978,14592,’Ngawang Jigme’,2,3),(978,10134,’Kungo Tsarong’,2,4),(978,14593,’Ingrid Harrer’,1,5),(978,14594,’Pema Lhaki’,0,6),(978,14595,’British Officer’,2,7),(978,14596,’Regent’,2,8),(978,11395,’Chinese \’Amban\”,2,9),(3132,4173,’Officer Oakes’,2,0),(3132,2632,’Jake Hayes/Kevin Pope/Michael Turner’,2,1),(3132,53,’Adrik Vas’,2,2),(3132,16856,’Officer Seale’,2,3),(3132,11703,’Julie’,1,4),(3132,20808,’Jarma/Dragan Henchman’,2,5),(3132,31647,’Nicole’,1,6),(3132,17353,’Dragan Adjanic’,2,7),(3132,31648,’Michelle’,2,8),(3132,21134,’Roland Yates’,2,9),(3132,31649,’Officer Swanson’,1,10),(3132,10582,’Officer Carew’,2,11),(3132,31650,’Officer Parish’,0,12),(3132,31651,’Officer McCain’,0,13),(3132,10849,’Andre’,0,14),(3132,53348,’Darius’,2,15),(3132,1756075,’Assassin’,0,16),(8814,18918,’Sarge’,2,0),(8814,1372,’John Grimm’,2,1),(8814,10882,’Samantha Grimm’,1,2),(8814,27632,’Goat’,0,3),(8814,58758,’Destroyer’,2,4),(8814,12801,’Duke’,2,5),(8814,3901,’Corporal Dean Portman’,2,6),(8814,1015830,’The Kid’,2,7),(8814,974,’Pinky’,2,8),(8814,12359,’Hell Knight / Curtis Stahl’,2,9),(8814,1074678,’Mac’,0,10),(8814,25670,’Dr. Carmack’,2,11),(8814,19874,’Lt. Huengs’,2,12),(8814,210711,’Sanford Crosby’,0,13),(8814,113241,’Dr. Jenna Willits’,0,14),(8427,776,’Kelly Robinson’,2,0),(8427,887,’Alexander Scott’,2,1),(8427,10696,’Rachel’,1,2),(8427,55788,’Lunchbox’,2,3),(8427,56890,’Gundars’,2,4),(8427,58393,’Beautiful Girl’,1,6),(8427,21163,’Carlos’,2,7),(8427,83959,’McIntyre’,0,8),(8427,20188,’Edna’,1,9),(5137,9642,’Sky Captain’,2,0),(5137,12052,’Polly Perkins’,1,1),(5137,1771,’Dex’,2,2),(5137,11701,’Franky’,1,3),(5137,39126,’Mysterious Woman’,1,4),(5137,5658,’Paley’,2,5),(5137,41379,’Kaji’,2,6),(5137,3359,’Dr. Totenkopf’,2,7),(5137,62233,’Dr Walter Jennings’,2,8),(5137,41380,’Dr. Kessler’,2,9),(5137,986518,’Creepy’,0,10),(3093,4430,’Catherine Tramell’,1,0),(3093,18616,’Michael Glass’,2,1),(3093,44079,’Milena Gardosh’,1,2),(3093,11207,’Roy Washburn’,2,3),(3093,30429,’Kevin Franks’,2,4),(3093,30430,’Denise Glass’,1,5),(3093,30431,’Jakob Gerst’,2,6),(3093,12791,’Adam Towers’,2,7),(3093,25656,’Henry Rose’,2,8),(3093,30432,’Solicitor’,1,9),(3093,30433,’Ferguson’,2,10),(3093,30434,’Prosecutor’,0,11),(3093,30435,’Michelle Broadwin’,1,12),(3093,30436,’Magda’,1,13),(3093,30437,’Peter Ristedes’,2,14),(3093,30438,’David Bard’,2,15),(3093,30439,’Susan Bard’,1,16),(3093,30440,’Angry Patient’,2,17),(3093,30441,’Snuffly Patient’,1,18),(3093,30442,’Skinhead’,2,19),(3093,30443,’Court Reporter 1′,2,20),(3093,30444,’Court Reporter 2′,0,21),(3093,30445,’Thai Prostitute’,1,22),(3093,30446,’Big Man in Bar’,2,23),(3093,30447,’Big Man\’s Wife’,1,24),(3093,30448,’Screaming Woman’,1,25),(3093,30451,’Stockbroker’,2,26),(3093,30454,’Prostitute (uncredited)’,1,27),(3093,30450,’Drug Dealer (uncredited)’,2,28),(3093,30455,’Car Driver (uncredited)’,2,29),(3093,30452,’Builder (uncredited)’,2,30),(3093,30449,’Patient (uncredited)’,1,31),(3093,1679026,’Secretary (uncredited)’,1,32),(3093,1207207,’Soho Cool (uncredited)’,0,33),(3093,21437,’Policeman (uncredited)’,2,34),(3093,30456,’Policeman (uncredited)’,0,35),(3093,569329,’Police Officer / Nightclub Customer (uncredited)’,0,36),(4614,880,’Jack Ryan’,2,0),(4614,192,’DCI William Cabot’,2,1),(4614,2505,’President Robert Bob Fowler’,2,2),(4614,38570,’Admiral Pollack’,2,3),(4614,23626,’John Clark’,2,4),(4614,14888,’Gene Revell’,2,5),(4614,38571,’General Lasseter’,2,6),(4614,4492,’Defense Secretary Becker’,2,7),(4614,18354,’Dr. Cathy Muller’,1,8),(4614,8785,’President Nemerov’,2,9),(4614,6075,’Olson\’s Translator’,0,10),(4614,6612,’President Zorkin’,2,11),(4614,23975,’Mary Pat Foley’,1,12),(4614,27554,’Dressler’,2,13),(4614,14792,’Senator Jessup’,2,14),(4614,10132,’Olson’,2,15),(4614,742,’Anatoli Grushkov’,2,16),(4614,12122,’Secretary of State Owens’,2,17),(4614,20761,’Haft’,2,18),(4614,534231,’Capt. Lorna Shiro’,1,19),(4614,27425,’General Bulgakov’,2,20),(9824,7399,’Mr. Furious’,2,0),(9824,118,’Casanova Frankenstein’,2,1),(9824,4174,’Monica’,1,2),(9824,3905,’The Shoveler’,2,3),(9824,5587,’The Blue Raja’,2,4),(9824,21197,’The Bowler’,1,5),(9824,59645,’The Invisible Boy’,2,6),(9824,5129,’Spleen’,2,7),(9824,15899,’Lucille’,1,8),(9824,31714,’Powerwoman’,1,9),(9824,15853,’Sphinx’,2,10),(9824,17141,’Captain Amazing / Lance’,2,11),(9824,5313,’Dr. Anabel Leek’,1,12),(9824,1926,’Tony P’,2,13),(9824,20788,’Big Red’,2,14),(9824,61649,’Tony C’,0,15),(9824,2887,’Doc Heller’,0,16),(9824,9565,’Violet’,1,17),(9824,10743,’Vic Weems’,2,18),(9824,94752,’Ted’,2,19),(9824,19468,’Banyon’,2,20),(9824,2141,’Funk’,2,21),(9824,67602,’Butch’,2,22),(9824,64066,’Roland’,2,23),(9824,183838,’Reporter’,1,24),(9824,865,’Frat Boy’,2,25),(9008,1158,’Lowell Bergman’,2,0),(9008,934,’Jeffrey Wigand’,2,1),(9008,290,’Mike Wallace’,2,2),(9008,6200,’Liane Wigand’,1,3),(9008,14888,’Ron Motley’,2,4),(9008,32225,’Sharon Tiller’,1,5),(9008,4492,’Don Hewitt’,2,6),(9008,5578,’Debbie De Luca’,1,7),(9008,155621,’Deborah Wigand’,1,8),(9008,15674,’Barbara Wigand’,1,9),(9008,537,’Eric Kluster’,2,10),(9008,10132,’Richard Scruggs’,2,11),(9008,11150,’Helen Caperelli’,1,12),(9008,5658,’Thomas Sandefur’,2,13),(9008,9626,’John Scanlon’,2,14),(9008,7248,’Sheikh Fadlallah’,2,15),(9008,172569,’Sandefur\’s Lawyer’,2,16),(9008,45566,’Seelbach Hotel Manager’,2,17),(9008,1052891,’Jack Palladino’,0,18),(9008,1414169,’Michael Moore’,0,19),(9008,71266,’Mrs. Williams’,1,20),(9008,17355,’Norman the Cameraman’,2,21),(9008,53602,’Mrs. Wigand’,1,22),(9008,41739,’Mark Stern’,2,23),(9008,14331,’FBI Agent Robertson’,2,24),(9008,138243,’NY Times Reporter’,2,25),(9008,61153,’Tobacco Lawyer’,2,26),(9008,20760,’John Harris’,0,27),(9008,21384,’Charlie Phillips’,0,28),(9008,1052892,’Sandra Sutherland’,0,29),(9008,173810,’Hezbollah Head Gunman’,2,30),(9008,154773,’Doug Oliver – FDA’,2,31),(9008,32983,’Private Investigator’,2,32),(9008,32029,’Intense Young Intern’,2,33),(9008,1549240,’Baldo the Editor’,0,34),(9008,184121,’FBI Agent #1′,2,35),(9008,58493,’FBI Agent #2′,2,36),(9008,17933,’Geologist / FBI Man’,2,37),(9008,57991,’Geologist / FBI Woman’,1,38),(9008,101792,’Policeman’,0,39),(9008,122596,’Bill Felling’,0,40),(9008,167178,’FBI Agent #3′,2,41),(9008,61855,’Lowell\’s Son’,2,42),(9008,33654,’Sharon\’s Son’,2,43),(9008,68223,’John Telefarro’,2,44),(9008,1279102,’Local Newscaster’,0,45),(9008,61216,’Junior Lawyer’,2,46),(9008,16146,’Japanese Waitress’,1,47),(9008,554533,’Soundman’,0,48),(9008,1503028,’Tobacco Executive (uncredited)’,2,49),(9008,94561,’Businessman at Airport (uncredited)’,0,50),(9008,1235176,’Man at Airport (uncredited)’,0,51),(9008,1273427,’Businessman at Airport (uncredited)’,0,52),(9008,1583233,’Al Pacino\’s Double (uncredited)’,0,53),(9008,1583234,’Lawyer (uncredited)’,0,54),(9008,113451,’TV Camera Crew at Trial (uncredited)’,0,55),(1844,738,’Robert Mac MacDougal’,2,0),(1844,1922,’Virginia Gin Baker’,1,1),(1844,883,’Hector Cruz’,2,2),(1844,7868,’Conrad Greene’,2,3),(1844,10182,’Aaron Thibadeaux’,2,4),(1844,2449,’Haas’,2,5),(1844,82410,’Quinn’,2,6),(1844,152281,’Security Chief’,0,7),(1844,696,’Chief of Police’,0,8),(1844,79888,’Millennium Man’,2,9),(1844,933883,’Waverly Technician’,2,10),(1844,185399,’Cruz\’s Man’,2,11),(1844,183930,’Computer Technician’,0,12),(1844,1089911,’Banker’,0,13),(1844,151438,’ICB Director’,0,14),(1844,1089912,’ICB Operator’,0,15),(1844,1089913,’ICB Technician’,0,16),(1844,62937,’Doctor’,2,17),(1844,195599,’1st Security Guard’,2,18),(1844,1089914,’2nd Security Guard’,0,19),(1844,202939,’3rd Security Guard’,0,20),(846,12640,’Agent Fox Mulder’,2,0),(846,12214,’Agent Dana Scully’,1,1),(846,12644,’Assistant Director Walter Skinner’,2,2),(846,12643,’The Cigarette-Smoking Man’,2,3),(846,12642,’The Well-Manicured Man’,2,4),(846,2641,’Kurtzweil’,2,5),(846,12645,’Bronschweig’,0,6),(846,129252,’Langly’,2,7),(846,118004,’Byers’,2,8),(846,113017,’Frohike’,2,9),(846,10401,’Cassidy’,1,10),(846,12646,’Michaud’,2,11),(846,12647,’Strughold’,2,12),(846,155,’Stevie’,2,13),(846,1527160,’2nd Boy’,2,14),(846,990733,’3rd Boy’,0,15),(846,1685452,’4th Boy’,0,16),(846,100879,’Group Elder’,2,17),(846,2081,’2nd Elder’,2,18),(846,9291,’Black-Haired Man’,2,19),(846,1163144,’Primitive #1′,0,20),(846,550900,’Primitive #2′,0,21),(846,109870,’Creature #1′,2,22),(846,1685453,’Creature #2′,0,23),(846,1221560,’FBI Agent on Roof’,0,24),(846,1685454,’FBI Agent’,0,25),(846,10137,’Field Agent’,0,26),(846,68180,’Fire Captain Cooles’,2,27),(846,60944,’Last Agent Out’,2,28),(846,21380,’DC Cop’,2,29),(846,1274297,’DC Cop #2′,2,30),(846,1685455,’Security Guard’,0,31),(846,1190639,’Technician’,0,32),(846,59062,’Well-Manicured Man\’s Valet’,0,33),(846,1685456,’Control Room Operator’,0,34),(846,1685457,’Young Naval Guard’,0,35),(846,24625,’British Valet’,2,36),(846,62035,’2nd Paramedic’,2,37),(846,1226060,’Towncar Driver’,0,38),(846,10956,’Buzz Mihoe’,2,39),(846,95192,’Windbreakered Agent’,2,40),(846,1685458,’Fireman’,0,41),(846,1685459,’Tunisian’,0,42),(846,1685460,’Pilot’,2,43),(846,112651,’Young Samantha Mulder (archive footage)’,0,44),(846,37203,’FBI Man at Bomb Site (uncredited)’,2,45),(9703,5472,’Aurelius’,2,0),(9703,2282,’Ambrosinus’,2,1),(9703,87773,’Mira’,1,2),(9703,3064,’Odoacer’,2,3),(9703,9013,’Wulfila’,2,4),(9703,10727,’Nestor’,2,5),(9703,20508,’Orestes’,2,6),(9703,25663,’Romulus Augustus’,2,7),(9703,36669,’Demetrius’,2,8),(9703,43547,’Batiatus’,2,9),(9703,58654,’Vatrenus’,2,10),(9703,2957,’Theodorus Andronikos’,2,11),(9703,47643,’Kustennin’,2,12),(9703,2467,’Hrothgar’,2,13),(9703,58655,’Vortgyn’,2,14),(9703,1216581,’Tertius’,2,15),(857,31,’Captain John H. Miller’,2,0),(857,1892,’Private James Francis Ryan’,2,1),(857,12835,’Private Adrian Caparzo’,2,2),(857,3197,’Technical Sergeant Michael Horvath’,2,3),(857,12834,’Private Daniel Jackson’,2,4),(857,4654,’Corporal Timothy Upham’,2,5),(857,1117,’Lieutenant Colonel Walter Anderson’,2,6),(857,94864,’Corporal Henderson’,2,7),(857,12838,’Steamboat Willie’,2,8),(857,3907,’General George C. Marshall’,2,9),(857,12833,’Private Richard Reiben’,2,10),(857,6163,’Private Stanley Mellish’,2,11),(857,1771,’T-Medic Irwin Wade’,2,12),(857,12836,’Captain Fred Hamill’,2,13),(857,13242,’Sergeant William Hill’,2,14),(857,52476,’Toynbe’,2,15),(857,75071,’Weller’,2,16),(857,20471,’Parker’,2,17),(857,59085,’Trask’,0,18),(857,218321,’Rice’,0,19),(857,141358,’Garrity’,0,20),(857,99905,’Old Mrs. Ryan’,1,21),(857,51797,’Minnesota Ryan’,2,22),(857,17419,’War Department Colonel’,2,23),(857,1342659,’Wilson’,0,24),(857,183930,’Lyle’,0,25),(857,592618,’Fallon’,0,26),(857,1648656,’Major Hoess’,0,27),(857,1063140,’Ramelle Paratrooper’,0,28),(857,1230574,’Ramelle Paratrooper’,0,29),(857,1648657,’Field HQ Major’,0,30),(857,1648658,’Field HQ Aide’,0,31),(857,92811,’War Department Captain’,2,32),(857,1653085,’War Department Clerk’,1,33),(857,1054325,’Czech Wehrmacht Soldier’,2,34),(857,234586,’Jean\’s Daughter’,0,35),(857,51931,’Ryan as Old Man’,2,36),(857,25753,’German Sniper (uncredited)’,0,37),(3981,9994,’Darcy McGuire’,1,0),(3981,2461,’Nick Marshall’,2,1),(3981,3141,’Lola’,1,2),(3981,34485,’Gigi’,1,3),(3981,11365,’Morgan Farwell’,2,4),(3981,21278,’Dan Wanamaker’,2,5),(3981,34486,’Alexandra Marshall’,1,6),(3981,34487,’Eve’,1,7),(3981,34488,’Stella’,1,8),(3981,34489,’Cameron’,2,9),(3981,20750,’Erin’,1,10),(3981,34490,’Annie’,1,11),(3981,73931,’Dr. J.M. Perkin’,0,12),(3981,33235,’Young Nick Marshall’,2,13),(3981,41420,’Dina’,1,14),(3981,1228874,’Kitchen Secretary’,1,15),(3981,110635,’Mail Room Kid’,2,16),(3981,133385,’Woman in Library’,1,17),(3981,170074,’Woman at Lunch Counter’,1,18),(3981,26483,’Margo’,1,20),(3981,86267,’Sue Cranston’,1,21),(3981,18284,’Flo the Doorwoman’,1,22),(3981,1232775,’Office Intern’,1,23),(3981,1858923,’Man on Street’,2,24),(3981,1858924,’Man on Street’,2,25),(3981,1189226,’Man on Street’,0,26),(3981,1858925,’Ogling Man’,2,27),(3981,1858927,’Unimpressed Woman’,1,28),(3981,1858928,’Unimpressed Woman’,1,29),(3981,106966,’Gigi\’s Friend’,1,30),(3981,1775881,’Showgirl’,1,31),(3981,1355199,’Showgirl’,1,32),(3981,1773690,’Showgirl’,1,33),(3981,1858930,’Nick\’s Mom’,1,34),(3981,1449408,’Male Role Model’,0,35),(3981,42377,’Woman in Pink Sweater’,1,36),(3981,1068942,’Counter Girl’,1,37),(3981,1408764,’Coffee Shop Customer’,1,38),(3981,151263,’Coffee Shop Customer’,2,39),(3981,86170,’Secretary with Danish / Kitchen Secretary’,1,40),(3981,78578,’Jess, Dan\’s Secretary’,1,41),(3981,1842187,’Ted’,0,42),(3981,1858933,’Woman in Park’,1,43),(3981,1858934,’Woman in Park’,1,44),(3981,1858939,’Woman in Park’,1,45),(3981,946447,’Woman in Park’,1,46),(3981,1233833,’Woman in Park’,1,47),(3981,1858952,’Woman in Park’,1,48),(3981,1858954,’Sloane / Curtis Receptionist’,1,49),(3981,98533,’Sloane / Curtis Executive’,1,50),(3981,114880,’Marshall Field\’s Shopper’,1,51),(3981,1858960,’Marshall Field\’s Shopper’,1,52),(3981,1858962,’Marshall Field\’s Shopper’,1,53),(3981,1858965,’Marshall Field\’s Shopper’,1,54),(3981,1858966,’Marshall Field\’s Shopper’,1,55),(3981,1858967,’Marshall Field\’s Shopper’,1,56),(3981,1026225,’Marshall Field\’s Shopper’,1,57),(3981,153912,’Sloane / Curtis Attorney’,1,58),(3981,120244,’Darcy\’s Assistant’,1,59),(3981,114028,’Alex\’s Friend’,1,60),(3981,80290,’Alex\’s Friend’,1,61),(3981,1858970,’Yoga Instructor’,1,62),(3981,1858972,’Woman in Library’,1,63),(3981,1858975,’Woman in Library’,1,64),(3981,1607844,’Woman in Library’,1,65),(3981,1858976,’Jogger by Lake’,1,66),(3981,1233419,’Kitchen Secretary’,1,67),(3981,80615,’Kitchen Secretary’,1,68),(3981,1714926,’Girl at Lunch Counter’,1,69),(3981,1858987,’Woman at Lunch Counter’,1,70),(3981,1858992,’Woman at Lunch Counter’,1,71),(3981,1296678,’Woman at Lunch Counter’,1,72),(3981,29444,’Woman at Lunch Counter’,1,73),(3981,1859002,’Nightclub Singer’,1,74),(3981,64474,’Haim’,0,75),(3981,1859004,’Nike Executive’,1,76),(3981,1859006,’Nike Executive’,1,77),(3981,1859010,’Nike Executive’,1,78),(3981,1500108,’Secretary’,1,79),(3981,1859015,’Old Woman in Chinatown’,1,80),(3981,169027,’Girl at Prom’,1,81),(3981,1383838,’Upscale Pedestrian (uncredited)’,2,82),(3981,1859037,’Alex\’s Friend (uncredited)’,1,83),(3981,154207,’Showgirl (uncredited)’,1,84),(3981,1503028,’Restaurant Patron (uncredited)’,2,85),(3981,1317382,’Classmate (uncredited)’,1,86),(3981,1859038,’Taxi Caller / Walker (uncredited)’,1,87),(3981,104647,’Showgirl (uncredited)’,1,88),(3981,1201092,’Boy at Prom (uncredited)’,0,89),(3981,1773689,’Showgirl (uncredited)’,1,90),(3981,1859042,’Police Detective / Day Player (uncredited)’,2,91),(3981,118888,’Angela (uncredited)’,1,92),(3981,1512289,’Lawyer (uncredited)’,1,93),(3981,1859045,’Secretary (uncredited)’,1,94),(3981,73931,’Dr. J. M. Perkins (uncredited)’,0,95),(3981,1859046,’Ad Executive (uncredited)’,1,96),(3981,1859049,’Redhead (uncredited)’,1,97),(3981,1859051,’Shopper (uncredited)’,1,98),(3981,1859053,’Showgirl (uncredited)’,1,99),(3981,1859057,’Woman Getting in Taxi (uncredited)’,1,100),(3981,1781151,’Man in Park’,0,101),(3981,1859067,’Woman Getting Manicure (uncredited)’,1,102),(3981,1781151,’Man in Park (uncredited)’,0,103),(3981,1859070,’Girl at Prom (uncredited)’,1,104),(3981,1798876,’Dancer (uncredited)’,1,105),(3981,1859071,’Gigi\’s Friend #3 (uncredited)’,1,106),(3981,1439542,’Black-Haired Beauty (uncredited)’,1,107),(3981,86588,’Taxi Driver (uncredited)’,0,108),(3981,1859072,’Marshall Field\’s Shopper (uncredited)’,1,109),(3981,1502787,’Co-worker (uncredited)’,1,110),(425,15757,’Manny (voice)’,2,0),(425,5723,’Sid (voice)’,2,2),(425,5724,’Diego (voice)’,2,4),(425,5725,’Soto (voice)’,2,6),(425,70851,’Zeke (voice)’,2,7),(425,5726,’Carl (voice)’,2,8),(425,17401,’Rhino / Start (voice)’,2,9),(425,5727,’Saber-Toothed Tiger (voice)’,2,10),(425,21088,’Lenny / Oscar / Dab (voice)’,2,11),(425,60019,’Jennifer (voice)’,1,12),(425,13636,’Rachel (voice)’,1,13),(425,5717,’Dodo / Macrauchenia (voice)’,2,14),(425,1446460,’Dodo (voice)’,0,15),(425,52419,’Dodo / Scrat (voice)’,2,16),(425,5713,’Glyptodon (voice)’,2,17),(425,59695,’Glyptodont (voice)’,1,18),(425,102794,’Baby Moeritherium (voice)’,1,19),(425,1446462,’Dodo (voice) (uncredited)’,0,20),(6171,192,’Col. Abraham Curtis’,2,0),(6171,11155,’Dr. Henry Devlin’,2,1),(6171,11662,’Joe \’Beaver\’ Clarenden’,2,2),(6171,20186,’Gary \’Jonesy\’ Jones’,2,3),(6171,18082,’Pete Moore’,2,4),(6171,3197,’Lt. Owen Underhill’,2,5),(6171,2680,’Douglas \’Duddits\’ Cavell’,2,6),(6171,48462,’Young Henry’,0,7),(6171,48463,’Young Beaver’,2,8),(6171,33049,’Young Jonesy’,2,9),(6171,48464,’Young Pete’,0,10),(6171,48465,’Young Duddits’,0,11),(6171,44275,’Roberta Cavell’,1,13),(6171,21710,’General Matheson’,2,14),(6171,2250,’Rick McCarthy’,2,15),(6171,114894,’Barry Neiman’,2,16),(603,6384,’Thomas Neo Anderson’,2,0),(603,2975,’Morpheus’,2,1),(603,530,’Trinity’,1,2),(603,1331,’Agent Smith’,2,3),(603,9364,’Oracle’,1,4),(603,532,’Cypher’,2,5),(603,9372,’Tank’,2,6),(603,9380,’Agent Brown’,2,7),(603,39545,’Agent Jones’,2,8),(603,7244,’Apoc’,2,9),(603,9374,’Mouse’,2,10),(603,9376,’Switch’,1,11),(603,9378,’Dozer’,2,12),(603,9383,’Rhineheart’,0,13),(603,9384,’Choi’,2,14),(603,181214,’Dujour’,1,15),(603,1090466,’Priestess’,0,16),(603,218366,’Spoon Boy’,2,17),(603,1209244,’Potential’,0,18),(603,1209245,’Potential’,0,19),(603,1209246,’Potential’,0,20),(603,1209247,’Potential’,0,21),(603,1209248,’Potential’,0,22),(603,57799,’Lieutenant’,2,23),(603,1209249,’FedEx Man’,0,24),(603,1209250,’Businessman’,0,25),(603,1209251,’Woman in Red’,0,26),(603,110411,’Old Man’,2,27),(603,212562,’Blind Man’,0,28),(603,1209252,’Security Guard’,0,29),(603,75715,’Guard’,0,30),(603,1209253,’Cop Who Captures Neo’,0,31),(603,1209254,’Big Cop’,0,32),(603,26753,’Cop’,2,33),(603,1209255,’Cop’,0,34),(603,1209256,’Parking Cop’,2,35),(568,31,’Jim Lovell’,2,0),(568,2053,’Fred Haise’,2,1),(568,4724,’Jack Swigert’,2,2),(568,33,’Ken Mattingly’,2,3),(568,228,’Gene Kranz’,2,4),(568,8183,’Marilyn Lovell’,1,5),(568,8184,’Barbara Lovell’,1,6),(568,8185,’Susan Lovell’,1,7),(568,8186,’Jeffrey Lovell’,2,8),(568,8187,’Jay Lovell’,2,9),(568,8188,’Blanch Lovell’,1,10),(568,8189,’Mary Haise’,1,11),(568,7219,’Pete Conrad’,2,12),(568,8190,’Jane Conrad’,1,13),(568,8191,’Deke Slayton’,2,14),(568,8192,’NASA Director’,2,15),(568,3982,’Henry Hurt’,2,16),(568,102429,’Congressman’,2,17),(568,1400384,’Launch Director’,0,18),(568,152718,’Neil Armstrong’,2,19),(568,43461,’Guenter Wendt’,2,20),(568,15661,’Sy Liebergot – EECOM White’,2,21),(568,41517,’Dr. Chuck’,2,22),(568,16841,’CAPCOM 1′,2,23),(568,8175,’Orderly’,2,24),(568,92808,’GNC White’,0,25),(568,7852,”,2,26),(9021,12898,’Scott Calvin / Santa Clause’,2,0),(9021,31167,’Principal Carol Newman’,1,1),(9021,38582,’Bernard, der Elf’,2,2),(9021,27564,’Charlie Calvin’,2,3),(9021,35654,’Curtis’,2,4),(9021,777,’Dr. Neil Miller’,2,5),(9021,19957,’Laura Calvin Miller’,1,6),(9021,7166,’Cupid’,2,8),(9021,38674,’Mother Nature’,1,9),(9021,28640,’Tracy’,1,10),(9021,963962,’Security Guard’,2,11),(9021,1237729,’Teacher’,2,12),(9021,1235498,’Teacher’,1,13),(9489,31,’Joe Fox’,2,0),(9489,5344,’Kathleen Kelly’,1,1),(9489,57676,’Young Kathleen Kelly’,1,2),(9489,17141,’Frank Navasky’,2,3),(9489,7489,’Patricia Eden’,1,4),(9489,28933,’Birdie Conrad’,1,5),(9489,18324,’George Pappas’,2,6),(9489,26716,’Christina Plutzker’,1,7),(9489,12850,’Nelson Fox’,2,8),(9489,43894,’Annabelle Fox’,1,9),(9489,4169,’Kevin Jackson’,2,10),(9489,18649,’Schulyer Fox’,2,11),(9489,2617,’Gillian Flynn’,1,12),(9489,44830,’Veronica Cash’,1,14),(9489,125055,’Rose’,1,15),(9489,61659,’Fox Salesperson’,2,16),(9342,3131,’Alejandro Murrieta / Zorro’,2,0),(9342,4173,’Don Diego de la Vega / Zorro’,2,1),(9342,1922,’Elena Montero / Elena Murrieta’,1,2),(9342,14344,’Don Rafael Montero’,2,3),(9342,57374,’Young Joaquu00edn Murrieta’,0,4),(9342,80494,’Young Alejandro Murrieta’,0,5),(9342,1077815,’Boy Crying’,0,6),(9342,956973,’Woman Crying’,1,7),(9342,83841,’Undertaker’,0,8),(9342,58637,’Fray Felipe’,2,9),(9342,34842,’Don Luiz’,2,10),(9342,941030,’Squad Leader’,2,11),(9342,224508,’Nanny’,1,12),(9342,1077816,’Baby Elena de la Vega’,0,13),(9342,974912,’Esperanza de la Vega’,1,14),(9342,1077818,’Heavyset Lieutenant’,0,15),(9342,58648,’Joaquu00edn Murrieta’,2,16),(9342,8262,’Three-Fingered Jack’,2,17),(9342,109145,’Cpl. Armando Garcia’,2,18),(9342,1031693,’Soldier Holding \’Wanted\’ Poster’,2,19),(9342,166606,’Watering Station Owner’,2,20),(9342,1077819,’Small Boy at Watering Station’,0,21),(9342,146797,’Stupid Soldier’,2,22),(9342,1301749,’Baby Elena de la Vega’,0,24),(5551,190,’Frank Corvin’,2,0),(5551,2176,’Hawk Hawkins’,2,1),(5551,55636,’Jerry O`Neill’,2,2),(5551,16896,’Tank Sullivan’,2,3),(5551,2505,’Bob Gerson’,2,4),(5551,4726,’Sara Holland’,1,5),(5551,21416,’Eugene Davis’,2,6),(5551,11628,’Ethan Glance’,2,7),(5551,24047,’Roger Hines’,2,8),(5551,15746,’Barbara Corvin’,1,9),(5551,1118,’General Vostov’,2,10),(5551,7571,’Dr. Anne Caruthers’,1,11),(5551,1188456,’Capcom’,0,12),(5551,65717,’Young Pilot #2′,2,13),(5551,10881,’Young Frank’,2,14),(5551,1590757,’Jason\’s Girlfriend’,1,15),(9350,16483,’Gabe Walker’,2,0),(9350,12074,’Eric Qualen’,2,1),(9350,12132,’Hal Tucker’,2,2),(9350,51580,’Jessie Deighan’,1,3),(9350,16937,’Richard Travers’,2,4),(9350,6692,’Kristel – Jet Pilot’,1,5),(9350,12974,’Kynette’,2,6),(9350,51799,’Delmar’,2,7),(9350,44178,’Ryan’,2,8),(9350,111078,’Heldon’,2,9),(9350,30369,’Sarah’,1,10),(9350,7268,’Evan’,2,11),(9350,8853,’Frank’,2,12),(9350,1818,’Walter Wright’,2,13),(9350,948644,’Brett’,0,14),(9208,8891,’Maj. Vic \’Deak\’ Deakins’,2,0),(9208,2224,’Capt. Riley Hale’,2,1),(9208,20767,’Terry Carmichael’,1,2),(9208,18792,’Colonel Max Wilkins’,2,3),(9208,4029,’Pritchett’,2,4),(9208,11805,’Giles Prentice’,2,5),(9208,126418,’Kelly’,2,6),(9208,6198,’Chief Sam Rhodes’,2,7),(9208,12536,’Chairman, Joint Chief of Staff’,2,8),(9208,61216,’Johnson’,2,9),(9208,4607,’Lt. Thomas’,2,10),(9208,17857,’Max’,2,11),(9208,62548,’Novacek’,2,12),(9208,141582,’Shepherd’,0,13),(9208,9558,’Frakes’,2,14),(4244,62,’Russell Duritz’,2,0),(4244,35654,’Rusty Duritz’,2,1),(4244,1246,’Amy’,1,2),(4244,10437,’Janet’,1,3),(4244,8687,’Kenny’,2,4),(4244,5376,’Deirdre Lefever’,1,5),(4244,13314,’Dr. Suzanne Alexander’,1,6),(4244,1473,’Sam Duritz’,2,7),(4244,15253,’Bob Riley’,2,8),(4244,35656,’Giselle’,1,9),(4244,35658,’Kenny\’s Grandmother’,1,10),(4244,55536,’Waitress’,1,11),(4244,154224,’Clarissa’,1,12),(4244,160292,’Governor’,1,13),(4244,157085,’Newsstand Cashier’,1,14),(4244,143204,’Newsstand Tourist’,1,15),(4244,1564336,’Gloria Duritz’,1,16),(4244,87186,’Flight Attendant’,1,17),(4244,152802,’Hot Dog Vendor’,2,18),(4244,1724888,’Vince’,2,19),(4244,10136,’Mark’,2,20),(4244,1724889,’Herbert’,2,21),(4244,130778,’George’,2,22),(4244,58512,’Lawyer Bruce’,2,23),(4244,196046,’Lawyer Jim’,2,24),(4244,155560,’Lawyer Seamus’,2,25),(4244,51956,’Wedding Guest’,2,26),(4244,1724893,’Governor\’s Aide’,2,27),(4244,1090382,’Governor\’s Other Aide’,2,28),(4244,552266,’Toshiya – Sushi Chef’,2,29),(4244,1724894,’Josh’,2,30),(4244,168924,’General Manager’,2,31),(4244,53778,’Principal’,2,32),(4244,1216891,’Janet\’s Husband’,2,33),(4244,49921,’Best Man’,2,34),(4244,1724895,’Security Guard’,2,35),(4244,1724874,’Chef Mike’,2,36),(4244,44127,’Larry King’,2,37),(4244,1213613,’Larry King Guest’,1,38),(4244,18461,’Nick Chinlund’,2,39),(4244,160051,’Ritch Eisen’,2,40),(4244,1219637,’Stuart Scott’,2,41),(4244,1724901,’Wedding Singer’,2,43),(4244,1724902,’Backup Singer’,1,44),(4244,1724903,’Backup Singer’,1,45),(4244,1724904,’Backup Singer’,1,46),(4244,1503028,’Angry Driver (uncredited)’,2,47),(4244,567122,’Bridesmaid (uncredited)’,1,48),(4244,1724906,'(uncredited)’,1,49),(4244,105262,’Car Driver (uncredited)’,2,50),(4244,1502785,’Student (uncredited)’,1,51),(4244,14408,’Mr. Vivian (uncredited)’,2,52),(4244,1254189,’Jane Banket (uncredited)’,1,53),(4244,1724907,’Student (uncredited)’,2,54),(4244,1129737,’Tim (uncredited)’,2,55),(4244,168875,’Russ\’ Son (uncredited)’,2,56),(4244,1724908,’Harold Greene’,2,57),(1852,2963,’John McLoughlin’,2,0),(1852,49,’Donna McLoughlin’,1,1),(1852,1579,’Allison Jimeno’,1,2),(1852,454,’Will Jimeno’,2,3),(1852,19487,’Dominick Pezzulo’,2,4),(1852,8540,’Officer Giraldi’,2,5),(1852,335,’Dave Karnes’,2,6),(1852,19488,’Allison\’s Mother’,0,7),(1852,19489,’Allison\’s Father’,2,8),(1852,19490,’Pat McLoughlin’,2,9),(1852,10822,’Scott Strauss’,2,10),(1852,11805,’Chuck Sereika’,2,11),(1852,19491,’Paddy McGee’,0,12),(1852,19492,’Mother in Hospital with Donna’,1,13),(1852,19493,’Olivia Jimeno’,0,14),(1852,4738,’Steven McLoughlin’,2,15),(1852,19494,’JJ McLoughlin’,0,16),(1852,19495,’Erin McLoughlin’,1,17),(1852,19496,’Caitlin McLoughlin’,0,18),(1852,19497,’Antonio Rodrigues’,2,19),(1852,19498,’Christopher Amoroso’,2,20),(1852,8693,’Inspector Fields’,2,21),(345,500,’Dr. William \’Bill\’ Harford’,2,0),(345,2227,’Alice Harford’,1,1),(345,5006,’Helena Harford’,1,2),(345,5007,’Roz’,1,3),(345,2226,’Victor Ziegler’,2,4),(345,5008,’Illona Ziegler’,0,5),(345,1292351,’Bandleader’,2,6),(345,5010,’Nick Nightingale’,2,7),(345,5011,’Ziegler\’s Secretary’,2,8),(345,5012,’Sandor Szavost’,2,9),(345,5023,’Amanda \’Mandy\’ Curran’,1,10),(345,5024,’Marion Nathanson’,1,11),(345,5025,’Domino’,1,12),(345,22290,’Milich\’s Daughter’,1,13),(345,10697,’Desk Clerk’,2,14),(345,1118,’Milich’,2,15),(345,5020,’Red Cloak’,2,16),(1880,723,’Jed’,2,0),(1880,2878,’Robert’,2,1),(1880,1063,’Erica’,1,2),(1880,2884,’Daryl’,2,3),(1880,6952,’Matt’,2,4),(1880,722,’Toni’,1,5),(1880,19737,’Danny’,2,6),(1880,8258,’Mr. Mason’,2,7),(1880,5048,’Mr. Eckert’,2,8),(1880,98102,’Strelnikov’,2,9),(1880,6280,’Lt. Col. Andrew \’Andy\’ Tanner’,2,10),(1880,55841,’Col Ernesto Bella’,2,11),(1880,39036,’Bratchenko’,2,12),(1880,1735,’Mr Teasdale’,2,13),(1880,65019,’Mayor Bates’,2,14),(1880,12298,’Samuel Morris’,2,15),(1880,1169,’Mr. Mondragu00f3n’,1,16),(1880,1221566,’Gorsky’,0,17),(9440,8891,’Jack Stanton’,2,0),(9440,7056,’Susan Stanton’,1,1),(9440,879,’Richard Jemmons’,2,2),(9440,8534,’Libby Holden’,1,3),(9440,76215,’Henry Burton’,2,4),(9440,16307,’Daisy Green’,1,5),(9440,6840,’Gov. Fred Picker’,2,6),(9440,6587,’Mama Stanton’,1,7),(9440,3026,’Izzy Rosenblatt’,2,8),(9440,19,’Miss Walsh’,1,9),(9440,34,’Dewayne Smith’,2,10),(9440,43372,’Jennifer Rogers’,1,11),(9440,925,’Howard Ferguson’,2,12),(9440,26715,’Norman Asher’,2,13),(9440,4252,’Eddie Reyes’,2,14),(9440,1910,’Lucille Kaufman’,1,15),(9440,10486,’Charlie Martin’,2,16),(6795,51297,’Danny’,2,0),(6795,27972,’Walter’,2,1),(6795,51298,’Astronaut’,2,2),(6795,37917,’Lisa’,1,3),(6795,504,’Dad’,2,4),(6795,7908,’Robot ( voice )’,2,5),(6795,51300,’Lead Zorgon’,2,6),(6795,51301,’Zorgon’,2,7),(6795,51302,’Zorgon’,2,8),(6795,51303,’Zorgon’,2,9),(6795,443770,’Robot’,2,10),(550,819,’The Narrator’,2,0),(550,287,’Tyler Durden’,2,1),(550,7470,’Robert \’Bob\’ Paulson’,2,2),(550,7499,’Angel Face’,2,3),(550,1283,’Marla Singer’,1,4),(550,7471,’Richard Chesler’,2,5),(550,7497,’The Mechanic’,2,6),(550,7498,’Ricky’,2,7),(550,7472,’Intern’,2,8),(550,7219,’Thomas’,2,9),(550,68277,’Group Leader’,1,10),(550,956719,’Inspector Bird’,2,11),(550,59285,’Inspector Dent’,2,12),(550,17449,’Airport Security Officer’,2,13),(550,56112,’Walter’,2,14),(550,42824,’Lou\’s Body Guard’,2,15),(550,40277,’Car Salesman’,0,16),(550,122805,’Man at Auto Shop’,2,17),(550,35521,’Seminary Student’,2,18),(550,1224996,’Channel 4 Reporter’,1,19),(550,1219497,’Detective Stern’,0,20),(550,1226835,’Detective Kevin’,0,21),(550,41352,’Detective Andrew’,2,22),(550,177175,’Detective Walker’,0,23),(550,109100,’Policeman’,2,24),(550,1221838,’Salvator, Winking Bartender’,0,25),(550,145531,’Proprietor of Dry Cleaners’,2,26),(550,9291,’Bartender in Halo’,2,27),(550,1129738,’Group Leader’,0,28),(550,1317693,’Weeping Woman’,1,29),(550,202080,’Speaker’,2,30),(550,7473,’Chloe’,1,31),(550,1172435,’Airline Attendant’,1,32),(550,1705289,’Woman on Plane’,1,33),(550,62846,’Doorman’,2,34),(550,530040,’Man in Suit’,2,35),(550,137425,’Food Court Maitre D\”,0,36),(550,175120,’Steph’,2,37),(550,1744132,’Next Month\’s Opponent’,0,38),(550,168924,’Cop at Marla\’s Building’,2,39),(550,157938,’Susan, Comsetics Dealer’,0,40),(550,7500,’Lou’,0,41),(550,1744135,’Man #1 at Auto Shop’,0,42),(550,1744137,’Raymond K. Hessel’,0,43),(550,1636371,’Bus Driver with Broken Nose’,0,44),(550,1174793,’Police Commissioner Jacobs’,0,45),(550,1744138,’Banquest Speaker’,0,46),(550,1744139,’Airport Valet’,0,47),(550,1744140,’Bruised Bar Patron #1′,0,48),(550,63537,’Bruised Bar Patron #2′,2,49),(550,170315,’Hotel Desk Clerk’,1,50),(550,1707776,’Waiter at Clifton\’s’,0,51),(550,7140,’Desk Sergeant’,2,52),(550,74507,’BMW Salesman’,0,53),(550,1383838,’Fight Spectator’,2,54),(550,1194120,’Fighter’,0,55),(550,1744141,’Champion Fighter’,0,56),(550,13925,’Irvin’,2,57),(550,1744142,’Vomiting Fight Spectator’,0,58),(550,552271,’Chanting Fighter’,0,59),(550,94561,’Banquest Guest’,0,60),(550,1223916,’Waiter in Bridgeworth Suites Corporate Video’,0,61),(550,1744143,’Fight Patron Saying \’I don\’t know. What\’s going on?\”,0,62),(550,1525014,’Waiter’,0,63),(550,1577360,’Restaurant Maitre D\”,2,64),(550,1403525,’Passenger Clutching Armrest’,0,65),(550,1744144,’Fight Club Patron / Guy #2 in Video Store’,0,66),(550,1744145,’Fight Spectator’,0,67),(550,1386468,’Fight Club Man’,0,68),(550,1744146,’Fight Club Man’,0,69),(550,1744147,’Waiter’,0,70),(550,133153,’Fighter’,0,71),(550,1744148,’Riley Wilde – Fighter’,0,72),(550,16060,’Fight Bully’,2,73),(550,1744149,’Bar Worker’,0,74),(550,1744150,’Support Group Member’,0,75),(550,1744151,’Man at the Club’,0,76),(9292,62,’Eddie \’Hudson Hawk\’ Hawkins’,2,0),(9292,1004,’Tommy Five-Tone’,2,1),(9292,1533,’Anna Baragli’,1,2),(9292,5563,’George Kaplan’,2,3),(9292,20766,’Darwin Mayflower’,2,4),(9292,3664,’Minerva Mayflower’,1,5),(9292,16560,’Kit Kat’,2,6),(9292,39780,’Cesar Mario’,2,7),(257,3542,’Oliver Twist’,2,0),(257,2282,’Fagin’,2,1),(257,3543,’Bill Sikes’,2,2),(257,3544,’The Artful Dodger’,2,3),(257,3545,’Mr. Brownlow’,2,4),(257,3546,’Nancy’,1,5),(257,3547,’Mr. Limbkins’,2,6),(257,3566,’Noah Claypole’,0,8),(257,3549,’Mr. Gamfield’,2,9),(257,3550,’Charlotte’,0,10),(257,3551,’Barney’,0,11),(257,3552,’Bullseye (Dog)’,0,12),(257,3553,’Charley Bates’,0,13),(257,3554,’Nicky’,0,14),(257,3555,’Mr. Bumble’,2,15),(257,3565,’Mrs. Sowerberry’,0,16),(257,3567,’Mr. Sowerberry’,2,17),(257,3568,’Bookseller’,2,18),(257,2983,’Toby Crackit’,2,19),(257,82639,’Bet’,1,20),(257,7320,’Old Woman’,1,21),(257,1231968,’Workhouse Master’,0,22),(257,120833,’Board Member’,2,23),(257,28482,’Dining Hall Master’,2,24),(257,1220097,’1st Magistrate’,0,25),(257,41334,’2nd Magistrate’,0,26),(257,56101,’Farmer’,2,27),(257,1571182,’Farmer\’s Daughter’,0,28),(257,2629,’Magistrate Fang’,2,29),(257,92432,’Mrs Bedwin’,1,30),(257,9142,’Mr Grimwig’,2,31),(257,145877,’Inspector Blather’,2,32),(257,174710,’Elderly Officer’,0,33),(257,6645,’Warder’,2,34),(9947,9278,’Elektra Natchios / Elektra’,1,0),(9947,5725,’Mark Miller’,2,1),(9947,10884,’Kirigi’,2,2),(9947,11398,’Roshi’,2,3),(9947,28641,’Stick’,2,4),(9947,21430,’Typhoid Mary / Typhoid’,1,5),(9947,60715,’Abby Miller’,1,6),(9947,1218926,’McCabe’,0,7),(9947,60718,’Kinkou’,0,8),(9947,60717,’Tattoo’,2,9),(9947,60716,’Stone’,2,10),(9947,26782,’Bauer’,2,11),(9947,60719,’Meizumi’,2,12),(9947,60720,’Young Elektra’,0,13),(9947,25386,’Pool Shark’,2,14),(9947,60604,’Hand Ninja #2′,2,15),(9947,60723,’Roshi Servant’,2,16),(9947,60721,’Nikolas Natchios’,2,17),(9947,60722,’Hand Ninja #1′,2,18),(9947,60724,’Young Elektra\’s Mother’,1,19),(189,2295,’Marv’,2,0),(189,56731,’Nancy’,1,1),(189,16851,’Dwight’,2,2),(189,24045,’Johnny’,2,3),(189,5916,’Gail’,1,4),(189,62,’Hartigan’,2,5),(189,10912,’Ava’,1,6),(189,6280,’Senator Roark’,2,7),(189,352,’Manute’,2,8),(189,11477,’Joey’,2,9),(189,22227,’Mort’,2,10),(189,12799,’Bob’,2,11),(189,1062,’Kroenig’,2,12),(189,5915,’Goldie / Wendy’,1,13),(189,36594,’Sally’,1,14),(189,825,’Wallenquist’,2,15),(189,20982,’Damien Lord’,2,16),(189,8693,’Lt. Liebowitz’,2,17),(189,78324,’Miho’,1,18),(189,237405,’Bertha’,1,19),(189,57674,’Gilda’,1,20),(189,936970,’Marcie’,1,21),(189,968889,’Louie’,2,22),(189,3133,’Dallas’,1,23),(189,84791,’Flint’,0,24),(189,90553,’Buzz’,0,25),(189,1129413,’Frat Boy #3′,2,26),(189,1406568,’Frat Boy #4′,0,27),(189,1406570,’Lillian’,0,28),(189,60674,’Tony’,0,29),(189,1393520,’Abdul’,0,30),(189,1406674,’Luigi’,0,31),(189,1025370,’Gordo’,0,32),(189,55269,’Joey\’s Wife’,1,33),(189,1406676,’Mulgrew’,0,34),(189,61566,’Boogaard’,0,35),(189,1091423,’Jacoby’,2,36),(189,1406685,’Wino Old Timer’,0,37),(189,101981,’Cowboy’,2,38),(189,1375035,’Godzilla’,0,39),(189,1268114,’Gorgo’,0,40),(189,1358928,’Mothra’,2,41),(189,58942,’Lawyer’,2,42),(189,1094233,’Maitre D’,0,43),(189,1406693,’Heavy’,0,44),(189,1155321,’Flamethower’,0,45),(189,1406695,’Security Guard #1′,0,46),(189,1226245,’The Man’,0,47),(189,96007,’Weevil’,2,48),(189,1486488,’Thelma’,1,49),(1427,17064,’Jean-Baptiste Grenouille’,2,0),(1427,16273,’Bu00fcrgermeister von Grasse’,2,1),(1427,10779,’Bischof von Grasse’,2,2),(1427,17079,’Magistrat’,0,3),(1427,8800,’Grenouilles Mutter’,1,4),(1427,17069,’Madame Gaillard’,0,5),(1427,17078,’Aufseher’,2,6),(1427,17076,’Grenouille (5 Jahre)’,0,7),(1427,17077,’Grenouille (12 Jahre)’,0,8),(1427,17072,’Grimal’,0,9),(1427,17067,’Das Mirabellen-Mu00e4dchen’,1,10),(1427,17071,’Chenier’,2,11),(1427,4483,’Giuseppe Baldini’,2,12),(1427,129050,’Laura’,1,13),(1427,4566,’Richis’,2,14),(1427,17074,’Jeanne’,1,15),(1427,680,’Madame Arnulfi’,1,16),(1427,17070,’Dominique Drouot’,2,17),(1427,17075,’Marianne’,0,18),(1427,17068,’Natalie’,1,19),(1427,17073,’Marquis de Montesquieu’,0,20),(1427,17066,’Executioner’,0,21),(1427,1516661,’Door Guard’,0,22),(1427,5049,’Narrator (voice)’,2,23),(818,12073,’Austin Powers / Dr. Evil / Goldmember / Fat Bastard’,2,0),(818,14386,’Foxxy Cleopatra’,1,1),(818,13922,’Scott Evil’,2,2),(818,13919,’Basil Exposition’,2,3),(818,13924,’Frau Farbissina’,1,4),(818,10987,’Mini Me’,2,5),(818,3895,’Nigel Powers’,2,6),(818,2223,’Number Three’,2,7),(818,14390,’Fook Mi’,1,8),(818,14391,’Fook Yu’,1,9),(818,7425,’Mr. Roboto’,0,10),(818,9208,’Number two’,2,11),(818,162829,’Henchwoman’,1,12),(818,43373,’Young Austin’,2,13),(818,62816,’Young Evil’,2,14),(818,180084,’Young Number Two’,2,15),(818,8396,’Prisoner #2′,2,16),(818,59090,’French Teacher’,1,17),(818,12052,’Dixie Normous’,1,18),(818,1592516,’Skater’,1,19),(818,162371,’Young Nigel’,0,20),(818,8891,’John Travolta / Famous Goldmember (\’Austinpussy\’)’,2,21),(818,518,’Danny DeVito / Famous Mini Me (\’Austinpussy\’)’,2,22),(818,1979,’Kevin Spacey / Famous Dr. Evil (\’Austinpussy\’)’,2,23),(818,500,’Tom Cruise / Famous Austin (\’Austinpussy\’)’,2,24),(818,1224582,’Young Basil’,0,25),(818,215099,’Physician’,0,26),(818,1642098,’Henchman Sailor’,0,27),(818,120560,’Headmaster’,2,28),(818,154224,’Judge’,1,29),(818,1215973,’Anchorwoman’,1,30),(818,218220,’Queen’,1,31),(818,116278,’Japanese Pedestrian’,2,32),(818,17273,’Japanese Pedestrian’,2,33),(818,25711,’General Clark’,2,34),(818,15661,’Johnson’,2,35),(818,178926,’Royal Guard’,2,36),(818,72442,’Female Vendor’,1,37),(818,1223828,’Male Shopper’,0,38),(818,159907,’Shirtless Fan \’A\”,2,39),(818,17305,’Shirtless Fan \’T\”,2,40),(818,1775864,’Sumo Referee’,0,41),(818,1226794,’Austin\’s Mom’,1,42),(818,554193,’Toothless Gardner’,0,43),(818,1775865,’Fountain Security Guard’,0,44),(818,1775866,’Japanese Surveillance Guard’,0,45),(818,1775867,’Japanese Surveillance Guard’,0,46),(818,1773910,’Dancer’,0,47),(818,113814,’Geisha Secretary’,1,48),(818,1019906,’Henchwoman’,1,49),(818,1775878,’Henchwoman’,1,50),(818,54588,’Henchwoman’,1,51),(818,151386,’Foxxy\’s Backup Dancer’,0,52),(818,1775879,’Foxxy\’s Backup Dancer’,0,53),(818,1231498,’Dancer’,1,54),(818,1773681,’Dancer’,0,55),(818,58953,’Dancer’,1,56),(818,1775881,’Dancer’,1,57),(818,1775882,’Dancer’,0,58),(818,208710,’Dancer’,0,59),(818,1775883,’Dancer’,1,60),(818,1562235,’Dancer’,1,61),(818,1775884,’Dancer’,0,62),(818,1753706,’Dancer’,0,63),(818,1775886,’Dancer’,0,64),(818,1710767,’Dancer’,1,65),(818,571241,’Dancer’,0,66),(818,1748185,’Dancer’,0,67),(818,1775887,’Dancer’,1,68),(818,1775888,’Dancer’,0,69),(818,1752319,’Dancer’,1,70),(818,1775889,’Dancer’,0,71),(818,174054,’Dancer’,0,72),(818,1380880,’Skater’,1,73),(818,1775890,’Skater’,1,74),(818,1775891,’Skater’,0,75),(818,1775892,’Skater’,0,76),(818,1775893,’Skater’,0,77),(818,1775894,’Skater’,1,78),(818,1775895,’Skater’,0,79),(818,78729,’Mysterious Disco Man’,2,80),(818,166658,’Prison Guard’,1,81),(818,2879,’Middle Number Two’,2,82),(818,1775896,’Skater’,0,83),(818,1324263,’Gunman at Pool’,0,84),(818,1775897,’Dancer’,0,85),(818,1775898,’Skater’,1,86),(818,1775899,’Dancer’,0,87),(818,1265823,’Dancer’,2,88),(818,1733255,’Party Guest’,0,89),(818,1775900,’Prisoner’,0,90),(818,1707343,’Taxi Driver’,0,91),(818,1775901,’Shirtless Fan \’I\”,0,92),(818,13635,’Dancer’,1,93),(818,1775904,’Dancer’,0,94),(818,4030,’Dancer’,2,95),(818,1503021,’Dancer’,1,96),(818,1775905,’Dancer’,0,97),(818,1396824,’Classmate’,2,98),(818,1775906,’Studio 69 Girl’,1,99),(818,213980,’Dancer’,2,100),(818,1522212,’Austin\’s Girlfriend’,1,101),(818,1202553,’Dancer’,1,102),(818,1347276,’Dancer’,0,103),(818,146416,’Dancer’,0,104),(818,179048,’Japanese Business Man’,2,105),(818,1775910,’Japanese Teen’,0,106),(818,1775911,’Dancer’,1,107),(818,1775913,’Party Guest’,0,108),(818,1215398,’Lair Guard’,0,109),(818,1775914,’Dancer’,0,110),(818,12208,’Himself’,2,111),(818,488,’Steven Spielberg / Famous Director’,2,112),(818,111946,’Herself’,0,113),(329,4783,’Dr. Alan Grant’,2,0),(329,4784,’Dr. Ellie Sattler’,1,1),(329,4785,’Dr. Ian Malcolm’,2,2),(329,4786,’John Hammond’,2,3),(329,4789,’Robert Muldoon’,0,4),(329,4790,’Donald Gennaro’,2,5),(329,14592,’Wu’,2,6),(329,4787,’Tim Murphy’,2,7),(329,4788,’Lex Murphy’,1,8),(329,2231,’Arnold’,2,9),(329,4201,’Dennis Nedry’,2,10),(329,2211,’Gerry Harding’,2,11),(329,30488,’Juanito Rostagno’,2,12),(329,176312,’Lewis Dodgson’,2,13),(329,145531,’Volunteer #1′,2,14),(329,166298,’Volunteer Boy’,2,15),(329,1060,’Mate’,2,16),(329,9559,’Worker in Raptor Pen’,0,17),(329,1278538,’Helicopter Pilot’,0,18),(329,4791,’Mr. D.N.A. (voice)’,2,19),(329,1278539,’Worker at Amber Mine’,0,20),(329,26660,’Jurassic Park Tour Voice (voice)’,2,21),(329,1278540,’Lab Technician (uncredited)’,0,22),(329,1278541,’Archeologist (uncredited)’,0,23),(329,1004156,’Miner – Dug Out Mosquito (uncredited)’,2,24),(329,15335,’Driver of Grant, Sattler & Malcolm\’s Jeep (uncredited)’,2,25),(329,1278542,’InGen Helicopter Pilot (uncredited)’,2,26),(9331,3,’Jack Ryan’,2,0),(9331,5293,’John Clark’,2,1),(9331,10427,’Cathy Ryan’,1,2),(9331,22462,’Col. Felix Cortez’,2,3),(9331,15319,’Robert Ritter’,2,4),(9331,1166,’James Cutter’,2,5),(9331,15417,’President Bennett’,2,6),(9331,30488,’Ernesto Escobedo’,2,7),(9331,4589,’Captain Ramirez’,2,8),(9331,58650,’Domingo Chavez’,2,9),(9331,40393,’Judge Moore’,2,10),(9331,2155,’Sally Ryan’,1,11),(9331,37042,’Moira Wolfson’,1,12),(9331,3382,’Senator Mayo’,1,13),(9331,75201,’FBI Director Emile Jacobs’,2,14),(9331,15152,’Admiral James Greer’,0,15),(9331,11769,’Satellite Analyst’,2,16),(9331,19974,’Petey’,2,17),(9072,9562,’Calvin’,2,0),(9072,35690,’Darryl’,2,1),(9072,11703,’Vanessa’,1,2),(9072,56902,’Pops’,2,3),(9072,56903,’Percy’,2,4),(9072,58058,’Greg’,2,5),(3536,10297,’Lt. Andrew Tyler’,2,0),(3536,2053,’Lt. Cmdr. Mike Dahlgren’,2,1),(3536,1037,’CPO Henry Klough’,2,2),(3536,32362,’Lt. Pete Emmett’,2,3),(3536,18181,’Maj. Matthew Coonen’,2,4),(3536,3491,’Capt. Lt. Gunther Wassner’,2,5),(3536,4177,’Lt. Hirsch’,2,6),(3536,22133,’Bill Wentz’,2,7),(3536,4729,’Ted Trigger Fitzgerald’,2,8),(3536,32363,’Ronald Rabbit Parker’,2,9),(3536,233191,’Steward Eddie Carson’,0,10),(9087,3392,’Andrew Shepherd’,2,0),(9087,516,’Sydney Ellen Wade’,1,1),(9087,521,’Lewis Rothschild’,2,2),(9087,8349,’A.J. MacInerney’,2,3),(9087,63279,’Robin McCall’,1,4),(9087,112080,’Lucy Shepherd’,1,5),(9087,20767,’Janie Basdin’,1,6),(9087,19839,’Leon Kodak’,2,7),(9087,3037,’Senator Bob Rumson’,2,8),(9087,42133,’Beth Wade’,1,9),(9087,61980,’Susan Sloan’,1,10),(9087,78494,’Agent Cooper’,2,11),(9087,42003,’Esther MacInerney’,1,12),(9087,131642,’David’,2,13),(9087,43115,’President Renu00e9 Jean D\’Astier’,2,14),(9087,4251,’Leo Solomon’,2,15),(9087,43978,’Chairman of the Joint Chiefs’,2,16),(9087,92808,’Jeff’,0,17),(9955,23659,’Chazz Michael Michaels’,2,0),(9955,53926,’Jimmy MacElroy’,2,1),(9955,21200,’Stranz Van Waldenberg’,2,2),(9955,56322,’Fairchild Van Waldenberg’,1,3),(9955,51856,’Katie Van Waldenberg’,1,4),(9955,886,’Darren MacElroy’,2,5),(9955,8977,’Coach’,2,6),(9955,71530,’Jesse’,2,7),(9955,32907,’Hector’,2,8),(9955,60939,’Sports Anchor’,2,9),(9955,28637,’Mountie’,2,10),(9955,60940,’Mountie’,2,11),(9955,52997,’Bryce’,2,12),(9955,39214,’PA Announcer’,2,13),(9955,38709,’Floor Manager’,2,14),(9955,60941,’Fox’,2,15),(9955,10775,’Commissioner Ebbers’,0,16),(9955,60943,’Young Jimmy’,0,17),(9955,38526,’Father St. Pierre’,2,18),(9955,60944,’Rink Official World Games’,2,19),(9955,166931,’Attractive Official’,1,20),(9955,36422,’Sex Class Counselor’,2,21),(9955,1226851,’Federation Judge’,2,22),(9955,1226887,’Federation Judge’,0,23),(9955,1226343,’Federation Judge’,0,24),(9955,204665,’Sasha Cohen’,1,25),(9955,942254,’Co-Anchor’,2,26),(9955,15012,’Female Sex Addict’,0,27),(9955,1402117,’Fire Extinguisher’,2,28),(1271,17276,’King Leonidas’,2,0),(1271,17286,’Queen Gorgo’,1,1),(1271,17287,’Theron’,2,2),(1271,1371,’Dilios’,2,3),(1271,9831,’Captain’,2,4),(1271,17288,’Stelios’,2,5),(1271,17292,’Astinos’,2,6),(1271,17290,’Ephialtes’,2,7),(1271,17291,’Daxos’,2,8),(1271,17289,’Xerxes’,2,9),(1271,17293,’Pleistarchos’,2,10),(1271,17294,’Leonidas at 15 yrs’,2,11),(1271,230,’Loyalist’,2,12),(1271,963118,’Leonidas at 7 / 8 yrs’,2,13),(1271,1089920,’Leonidas\’ Father’,0,14),(1271,181248,’Leonidas\’ Mother’,0,15),(1271,68278,’Messenger’,2,16),(1271,115596,’Partisan’,0,17),(1271,29463,’Elder councilman’,0,18),(1271,1089919,’Oracle Girl’,0,19),(1271,306574,’Ephor #1′,2,20),(1271,96594,’Ephor #2′,0,21),(1271,1330747,’Ephor #3′,2,22),(1271,119708,’Ephor #4′,2,23),(1271,29468,’Ephor #5′,2,24),(1271,1089921,’Fighting Boy (12 yrs old)’,0,25),(1271,218899,’Councilman’,2,26),(1271,1089927,’Spartan Baby Inspector’,0,27),(1271,105496,’Spartan with Stick’,0,28),(1271,47934,’Sentry #1′,0,29),(1271,125686,’Sentry #2′,0,30),(1271,207881,’Persian’,2,31),(1271,1089929,’Burned Village Child’,0,32),(1271,1089930,’Statesman’,0,33),(1271,1330745,’Spartan Baby A’,0,34),(1271,1330746,’Spartan Baby B’,0,35),(1271,90467,’Free Greek-Potter’,2,36),(1271,143395,’Free Greek-Baker’,2,37),(1271,1142866,’Free Greek-Sculptor’,0,38),(1271,1089928,’Spartan General’,0,39),(1271,1330749,’Spartan General’,0,40),(1271,1330750,’Spartan Boy’,0,41),(1271,181247,’Persian Emissary’,2,42),(1271,112692,’Uber Immortal (Giant)’,2,43),(1271,102742,’Persian General’,2,44),(1271,1177316,’Potter’,0,45),(1271,1330751,’Executioner’,0,46),(1271,1330752,’Persian General Slaughtered’,0,47),(1271,1330753,’Armless Concubine’,0,48),(1271,1330754,’Blacksmith’,0,49),(1271,1330755,’Mother at Market’,1,50),(1271,1330756,’Daughter at Market (3 / 5 years old)’,0,51),(1271,1177458,’Girl at Market’,0,52),(1271,1330757,’Boy #1 at Market’,0,53),(1271,70786,’Other Council Guard’,0,54),(1271,1330758,’Persian General’,0,55),(1271,1330759,’Concubine #1′,0,56),(1271,1330760,’Concubine #2′,0,57),(1271,1330762,’Kissing Concubine #1′,0,58),(1271,1330764,’Kissing Concubine #2′,0,59),(1271,1330766,’Contortionist’,0,60),(1271,190088,’Dancer’,0,61),(1271,1330767,’Dancer’,0,62),(1271,1330768,’Dancer’,0,63),(1271,1330769,’Slave Girl’,0,64),(1271,1330770,’Slave Girl’,1,65),(1271,84586,’Slave Girl’,0,66),(1271,1330771,’Slave Girl’,0,67),(1271,1330772,’Slave Girl’,0,68),(1271,1330773,’Slave Girl’,0,69),(1271,1297965,’Slave Girl’,0,70),(1271,119250,’Slave Girl’,0,71),(1271,1330774,’Slave Girl’,0,72),(1271,1330775,’Slave Girl’,0,73),(1271,1330776,’Slave Girl’,1,74),(1271,1330777,’Transsexual (Asian) #1′,0,75),(1271,1330778,’Transsexual (Arabian) #3′,0,76),(1271,1330779,’Giant with Arrow’,0,77),(1271,1330780,’Long Neck Woman’,0,78),(1271,1330781,’Litter Bearer / Slave’,0,79),(1271,1077782,’Ubermortal Vocals (voice)’,2,80),(1271,1330782,’Market boy #2′,0,81),(1271,101218,’Spartan Soldier (uncredited)’,2,82),(1271,60652,’Persian (uncredited)’,2,83),(1271,101253,’Spartan Warrior (uncredited)’,2,84),(1271,1330783,’Persian (uncredited)’,2,85),(1271,1330784,’Market woman (uncredited)’,1,86),(693,7399,’Gaylord \’Greg\’ Focker’,2,0),(693,10399,’Pam Byrnes’,1,1),(693,380,’Jack Byrnes’,2,2),(693,4483,’Bernie Focker’,2,3),(693,10400,’Rozalin Focker’,0,4),(693,10401,’Dina Byrnes’,1,5),(693,1462,’Officer LeFlore’,2,6),(693,10402,’Isabel Villalobos’,1,7),(693,10403,’Judge Ira’,2,8),(693,887,’Kevin Rawley’,2,9),(693,52957,’Jorge Villalobos’,2,10),(693,1003453,’Little Jack \’L.J.\’ Byrnes’,2,11),(693,1003454,’Little Jack \’L.J.\’ Byrnes’,2,12),(693,149665,’Flight Attendant’,1,13),(693,155393,’Airline Clerk’,1,14),(693,29795,’Rent-a-Car Agent’,2,15),(693,172201,’Airport Security Guard’,2,16),(693,963693,’Woody Focker’,2,17),(693,44948,’Girl on Bus’,1,19),(497,31,’Paul Edgecomb’,2,0),(497,61981,’John Coffey’,2,1),(497,52,’Brutus Brutal Howell’,2,2),(497,5149,’Jan Edgecomb’,1,3),(497,2505,’Warden Hal Moores’,2,4),(497,1276,’Melinda Moores’,1,5),(497,2169,’Eduard Delacroix’,2,6),(497,6807,’\’Wild Bill\’ Wharton’,2,7),(497,6804,’Arlen Bitterbuck’,2,8),(497,6806,’Percy Wetmore’,2,9),(497,12834,’Dean Stanton’,2,10),(497,12645,’Harry Terwilliger’,0,11),(497,5048,’Toot-Toot’,2,12),(497,33,’Lawyer Burt Hammersmith’,2,13),(497,6805,’Old Paul Edgecomb’,2,14),(497,128201,’Elaine Connelly’,1,15),(497,6573,’Klaus Detterick’,2,16),(497,139992,’Orderly Hector’,0,17),(497,1502939,’Man in Nursing Home’,0,18),(497,47533,’Marjorie Detterick’,1,19),(497,6580,’Sheriff McGee’,0,20),(497,15011,’Bill Dodge’,2,21),(497,16555,’Jack Van Hay’,0,22),(497,7473,’Cynthia Hammersmith’,1,23),(497,20093,’Hammersmith\’s Son’,2,24),(497,156052,’Earl the Plumber’,2,25),(497,1371842,’Woman at Del\’s Execution’,0,26),(497,944614,’Wife at Del\’s Execution’,1,27),(497,148116,’Husband at Del\’s Execution’,2,28),(497,158782,’Police Officer’,2,29),(497,94561,’Police Photographer (uncredited)’,0,30),(497,74519,’Coffee Execution Witness (uncredited)’,0,31),(497,1273427,’Tower Guard (uncredited)’,0,32),(9982,5367,’Chicken Little (voice)’,2,0),(9982,3234,’Abby Mallard (voice)’,1,1),(9982,40347,’Fish Out of Water (voice)’,2,2),(9982,18324,’Runt of the Litter (voice)’,2,3),(9982,1201,’Buck Cluck (voice)’,2,4),(9982,12110,’Foxy Loxy (voice)’,1,5),(9982,61423,’Goosey Loosey (voice)’,2,6),(9982,27726,’Mayor Turkey Lurkey (voice)’,2,7),(9982,61426,’Kirby – Alien Kid (voice)’,0,8),(9982,61428,’Kirby – Alien Kid (voice)’,2,9),(9982,61427,’Kirby – Alien Kid (voice)’,0,10),(9982,20753,’Melvin – Alien Dad (voice)’,2,11),(9982,11514,’Tina – Alien Mom (voice)’,0,12),(9982,61411,’Morkubine Porcupine / Coach (voice)’,2,13),(9982,2387,’Mr. Woolensworth (voice)’,2,14),(9982,12900,’Principal Fetchit (voice)’,2,15),(9982,9657,’Alien Cop (voice)’,2,16),(9982,26847,’Ace – Hollywood Chicken Little (voice)’,2,17),(9982,6008,’Dog Announcer (voice)’,2,18),(9982,61425,’Rodriguez / Acorn Mascot / Umpire (voice)’,2,19),(9982,1077829,’Mama Runt (voice)’,0,20),(9982,70287,’Hollywood Fish (voice)’,2,21),(9982,1077828,’Hollywood Abby (voice)’,0,22),(9982,61414,’Hollywood Runt (voice)’,0,23),(2501,1892,’Jason Bourne’,2,0),(2501,679,’Marie Helena Kreutz’,1,1),(2501,2955,’Alexander Conklin’,2,2),(2501,2296,’The Professor’,2,3),(2501,1248,’Ward Abbott’,2,4),(2501,31164,’Nykwana Wombosi’,2,5),(2501,32458,’Danny Zorn’,2,6),(2501,27740,’Research Tech’,2,7),(2501,52419,’Research Tech’,2,8),(2501,12041,’Nicky Parsons’,1,9),(2501,27198,’Giancarlo’,2,10),(2501,49965,’Eamon’,2,11),(2501,271623,’Picot’,2,12),(2501,370383,’Castel’,0,13),(2501,153938,’Marshall’,2,14),(2501,20471,’Com Tech’,2,15),(2501,1117335,’Manheim’,0,16),(2501,153208,’Security Chief’,0,17),(2501,44560,’Morgue Boss’,2,18),(2501,26657,’Consulate Clerk’,2,19),(2501,1569163,’Deauvage’,2,20),(2501,74113,’Taxi Driver’,0,21),(2501,1780343,’Morgue Attendant’,0,22),(2501,43024,’Rawlins’,2,23),(2501,39182,’Concierge’,0,24),(2501,1780344,’Wombosi Counselor’,0,25),(2501,7029,’Apfel’,2,26),(2501,1237646,’Deputy DCM’,2,27),(2501,1780345,’Alain’,0,28),(2501,1156304,’Alliance Secretary’,0,29),(2501,1679183,’Davies’,0,30),(2501,1780346,’Bank Receptionist’,0,31),(2501,1780347,’Zurich Cop’,0,32),(2501,40745,’Zurich Cop’,0,33),(2501,1780348,’Claudia’,0,34),(2501,1780349,’Marine’,0,35),(2501,1780350,’Marine’,0,36),(2501,1780351,’Marine’,0,37),(2501,1780352,’Marine’,0,38),(2501,1780353,’Marine’,0,39),(2501,32360,’Marine’,0,40),(2501,1780354,’Marine’,0,41),(2501,1780355,’Marine’,0,42),(2501,1780356,’Marine’,0,43),(2501,1780357,’Marine’,0,44),(2501,1780358,’Marine’,0,45),(2501,1766366,’Salvi’,0,46),(2501,19080,’Wombosi Bodyguard’,0,47),(2501,234702,’Wombosi Bodyguard’,0,48),(2501,1780359,’Wombosi Bodyguard’,0,49),(2501,1473866,’Wombosi Bodyguard’,2,50),(710,517,’James Bond’,2,0),(710,48,’Alec Trevelyan’,2,1),(710,10695,’Natalya Fyodorovna Simonova’,1,2),(710,10696,’Xenia Onatopp’,1,3),(710,10671,’Jack Wade’,2,4),(710,5309,’M’,1,5),(710,3757,’General Arkady Grigorovich Ourumov’,2,6),(710,1923,’Valentin Dmitrovich Zukovsky’,2,7),(710,10697,’Boris Grishenko’,2,8),(710,10698,’Defense Minister Dmitri Mishkin’,2,9),(710,9906,’Q’,2,10),(710,10699,’Miss Moneypenny’,1,11),(710,10648,’Bill Tanner’,2,12),(710,10700,’Caroline’,1,13),(710,10701,’Severnaya Duty Officer’,2,14),(710,55911,’Admiral Chuck Farrell’,0,15),(710,27425,’Computer Store Manager’,2,16),(710,6613,’Irina’,1,17),(710,29054,’Anna’,1,18),(710,41742,’Mig Pilot’,2,19),(2275,8891,’Paul Brenner’,2,0),(2275,289,’Sara Sunhill’,1,1),(2275,2505,’Lt. Gen. Joseph Campbell’,2,2),(2275,16327,’Col. William Kent’,2,3),(2275,21474,’Capt. Elizabeth Campbell’,1,4),(2275,1473,’Police Chief Yardley’,2,5),(2275,15864,’Colonel George Fowler’,2,6),(2275,4512,’Col. Robert Moore’,2,7),(2275,38571,’Col. Dr. Donald Slesinger’,2,8),(2275,37206,’Capt. Jake Elby’,2,9),(2275,19227,’Capt. Bransford’,2,10),(2275,21179,’Cpt. Goodson’,2,11),(2275,308843,’Cal Seivers’,2,12),(2275,552473,’Belling’,0,13),(2275,534,’Staff Sergeant Dalbert Elkins’,2,14),(2275,1566830,’MP Guard’,2,15),(9837,5576,’Moses/God’,2,0),(9837,5469,’Ramesses II’,2,1),(9837,2387,’Pharaoh Seti I’,2,2),(9837,1160,’Zipporah’,1,3),(9837,18277,’Miriam’,1,4),(9837,4785,’Aaron’,2,5),(9837,2047,’Jethro’,2,6),(9837,15735,’The Queen’,1,7),(9837,67773,’Hotep’,2,8),(9837,519,’Huy’,2,9),(9837,51547,’Additional Voices’,2,10),(9837,169893,’Moses (singing voice)’,2,11),(9837,91022,’Additional Voices’,1,12),(9837,1008838,’Miriam (singing voice)’,1,13),(9837,1008866,’Yocheved’,2,14),(9837,130231,’Jethro (singing voice)’,2,15),(9837,1080300,’Rameses Son’,0,16),(9837,217524,’Young Miriam’,1,17),(9837,191335,’Hebrew Child (singing voice)’,0,18),(9837,56490,’Additional Voices’,1,19),(9837,35093,’Additional Voices’,1,21),(9837,1231073,’The Queen (singing voice, uncredited)’,0,22),(9654,13240,’Charlie Croker’,2,0),(9654,6885,’Stella Bridger’,1,1),(9654,819,’Steve’,2,2),(9654,13922,’Lyle’,2,3),(9654,976,’Handsome Rob’,2,4),(9654,4239,’Left Ear’,2,5),(9654,2682,’Wrench’,0,6),(9654,55636,’John Bridger’,2,7),(9654,53573,’Mashkov’,2,8),(9654,237370,’Yevhen’,0,9),(9654,58347,’Italian Guard’,0,10),(9654,58348,’Garbageman’,0,11),(9654,58349,’Garbageman’,0,12),(9654,58350,’Garbageman’,0,13),(9654,58351,’Garbageman’,0,14),(9654,58352,’First Detective’,2,15),(9654,58353,’Second Detective’,1,16),(9654,58354,’Stella\’s Receptionist’,1,17),(9654,237371,’Skinny Pete’,2,18),(9654,237372,’Skinny Pete\’s Girl’,0,19),(9654,44178,’Ukranian’,2,20),(9654,61403,’Bully’,2,21),(2642,18277,’Lucy Kelson’,1,0),(2642,3291,’George Wade’,2,1),(2642,3128,’June Carver’,1,2),(2642,13314,’Ruth Kelson’,1,3),(2642,26715,’Larry Kelson’,2,4),(2642,26716,’Meryl Brooks’,1,5),(2642,26717,’Howard Wade’,2,6),(2642,26718,’Tony’,2,7),(2642,26719,’Melanie Corman’,1,8),(2642,26720,’Elaine Cominsky’,0,9),(2642,26721,’Rosario’,1,10),(2642,26722,’Helen Wade’,1,11),(2642,26723,’Tiffany’,1,12),(2642,52947,’Paul the Attorney’,2,13),(2642,77644,’Tyler’,0,14),(2642,130749,’Norman’,2,15),(2642,118043,’Lauren Wade’,1,16),(2642,204249,’Hana the Hostess’,1,17),(2642,164036,’Mr. Lowell’,0,18),(2642,984489,’Fisherman’,2,19),(2642,1571038,’Tom’,0,20),(2642,77092,’Construction Foreman’,0,21),(2642,1571039,’Masseuse’,0,22),(2642,176695,’Polly St. Clair’,0,23),(2642,1571040,’Cookie Girl’,1,24),(2642,33663,’Himself’,2,25),(8916,1243,’Z-4195 aka Z (voice)’,2,0),(8916,707,’Chip (voice)’,2,1),(8916,10774,’Queen (voice)’,1,2),(8916,2047,’Barbatus (voice)’,2,3),(8916,193,’General Mandible (voice)’,2,4),(8916,58184,’Muffy (voice)’,1,5),(8916,16866,’Azteca (voice)’,1,6),(8916,4251,’Grebs / Drunk Scout / Additional Voices (voice)’,2,7),(8916,47773,’Psychologist (voice)’,2,8),(8916,96595,’Foreman (voice)’,2,9),(8916,16483,’Weaver (voice)’,2,10),(8916,4430,’Princess Bala (voice)’,1,11),(8916,4690,’Colonel Cutter (voice)’,2,12),(8916,12077,’Additional Voices (voice)’,2,13),(8916,60741,’Additional Voices (voice)’,0,14),(8916,18863,’Additional Voices (voice)’,2,15),(8916,184330,’Additional Voices (voice, uncredited)’,2,16),(8916,129297,’Bartender (voice)’,2,17),(2119,500,’Cole Trickle’,2,0),(2119,3087,’Harry Hogge’,2,1),(2119,2227,’Dr. Claire Lewicki’,1,2),(2119,1811,’Tim Dalander’,2,3),(2119,2130,’Russ Weehler’,2,4),(2119,17874,’Big John’,0,6),(2119,4764,’Buck Bretherton’,2,7),(2119,21757,’Waddle’,2,8),(2119,771,’Aldo Bennedetti’,2,9),(2119,12132,’Rowdy Burns’,2,10),(2119,86923,’Jennie Burns’,1,11),(2119,452,’Racetrack timer’,1,12),(9641,67773,’Tom Baker’,2,0),(9641,26510,’Jimmy Murtaugh’,2,1),(9641,5149,’Kate Baker’,1,2),(9641,11824,’Charlie Baker’,2,3),(9641,76996,’Bud McNulty’,2,4),(9641,60393,’Mark Baker’,2,5),(9641,28639,’Sarina Murtaugh’,1,6),(9641,84214,’Eliot Murtaugh’,2,7),(9641,9829,’Jake Baker’,2,8),(9641,85140,’Henry Baker’,2,9),(9641,148617,’Nigel Baker’,2,10),(9641,148618,’Kyle Baker’,2,11),(9641,142635,’Mike Baker’,2,12),(9641,133926,’Kenneth Murtaugh’,2,13),(9641,20377,’Theatre Kid’,2,14),(9641,5958,’Lorraine Baker’,1,15),(9641,58965,’Sarah Baker’,1,16),(9641,148615,’Kim Baker’,1,17),(9641,71861,’Jessica Baker’,1,18),(9641,1223726,’Daniel Murtaugh’,2,19),(9641,20739,’Clam Bake Chef’,2,20),(9641,15555,’Nora Baker-McNulty’,1,21),(5994,2963,’Jack Campbell’,2,0),(5994,4939,’Kate Reynolds’,1,1),(5994,1896,’Cash’,2,2),(5994,3712,’Peter Lassiter’,2,3),(5994,38425,’Paula’,1,4),(5994,2139,’Annie Campbell’,1,5),(5994,47057,’Josh Campbell’,2,6),(5994,47056,’Josh Campbell’,0,7),(5994,47058,’Evelyn Thompson’,1,8),(5994,12799,’Arnie’,2,9),(5994,1671456,’Restaurant Patron’,2,10),(9563,1158,’Tony D\’Amato’,2,0),(9563,6941,’Christina Pagniacci’,1,1),(9563,6065,’Jack \’Cap\’ Rooney’,2,2),(9563,4512,’Dr. Harvey Mandrake’,2,3),(9563,134,’Willie Beamen’,2,4),(9563,36424,’Julian Washington’,2,5),(9563,8654,’Dr. Ollie Powers’,2,6),(9563,4774,’Montezuma Monroe’,2,7),(9563,185731,’Luther \’Shark\’ Lavay’,2,8),(9563,77896,’Jimmy Sanderson’,2,9),(9563,6383,’Nick Crozier’,2,10),(9563,11885,’Jack Rose’,2,11),(9563,52366,’Patrick \’Madman\’ Kelly’,2,12),(9563,34485,’Cindy Rooney’,1,13),(9563,13567,’Margaret Pagniacci’,1,14),(9563,51359,’Vanessa Struthers’,1,15),(9563,1286269,’Assistant Coach’,0,16),(9563,19189,’Mandy Murphy’,1,17),(9563,10017,’Commissioner’,2,18),(9563,16663,’Party Girl’,1,19),(9563,51706,’Player\’s Wife’,1,20),(9563,14852,’Christina\’s Advisor’,2,21),(9563,3095,’Christina\’s Advisor’,2,22),(9563,84077,’Willie\’s Agent’,2,23),(9563,155465,’Mayor Tyrone Smalls’,2,24),(9563,1741390,’Suitor in Christina\’s Box’,0,25),(9563,1741391,’Tyler Cherubini’,0,26),(9563,1741392,’McKenna’,0,27),(9563,1505009,’Beastman’,0,28),(9563,1741393,’Wide Receiver’,0,29),(9563,1741394,’Wide Receiver’,0,30),(9563,166534,’Tight End’,2,31),(9563,1269562,’Tight End’,0,32),(9563,1741397,’Tight End’,0,33),(9563,171960,’Dallas Quarterback’,0,34),(9563,1741401,’Kicker’,0,35),(9563,1741402,’Sharks Fullback’,0,36),(9563,1741403,’Sharks Center’,0,37),(9563,1023487,’Sharks Linebacker’,0,38),(9563,1741404,’Additional Player’,0,39),(9563,1741405,’Additional Player’,0,40),(9563,1741406,’Additional Player’,0,41),(9563,1741407,’Additional Player’,2,42),(9563,1152,’Tug Kowalski – TV Announcer #1′,2,43),(9563,1741408,’Kevin Branson – TV Announcer #2′,0,44),(9563,1231488,’Dallas Announcer’,0,45),(9563,1741409,’Quarterback Coach’,2,46),(9563,1741410,’Shark Coach’,0,47),(9563,1667819,’Mayor\’s Aide’,0,48),(9563,1741412,’Mayor\’s P.R. Woman’,1,49),(9563,1741414,’Society Lady at Mayor\’s Party’,1,50),(9563,58925,’Shark\’s Security Guard’,2,51),(9563,1741415,’Player\’s Wife’,1,52),(9563,572076,’Player\’s Wife’,1,53),(9563,1741419,’Player\’s Wife’,1,54),(9563,1741422,’Player\’s Wife’,1,55),(9563,1741428,’Player\’s Wife’,1,56),(9563,1741429,’Player\’s Wife’,1,57),(9563,1741430,’Player\’s Wife’,1,58),(9563,211602,’Player\’s Wife’,1,59),(9563,1616016,’Player\’s Wife’,1,60),(9563,1741432,’Player\’s Wife’,1,61),(9563,1653104,’Player\’s Wife’,1,62),(9563,1741435,’Player\’s Wife’,0,63),(9563,1741437,’Madman\’s Wife’,0,64),(9563,1741438,’Dr. Mandrake\’s Girlfriend’,1,65),(547,4135,’Tom Booker’,2,0),(547,5470,’Annie MacLean’,1,1),(547,4783,’Robert MacLean’,2,2),(547,1245,’Grace MacLean’,1,3),(547,1902,’Diane Booker’,1,4),(547,2955,’Frank Booker’,2,5),(547,1956,’Liz Hammond’,1,6),(547,7516,’Joe Booker’,2,7),(547,7517,’Judith’,1,8),(547,7518,’Twin #1′,2,9),(547,7519,’Twin #2′,2,10),(547,7520,’Ellen Booker’,1,11),(547,7521,’Hank’,2,12),(547,7522,’Smokey’,2,13),(547,7523,’Annie\’s Assistant Lucy’,1,14),(547,7525,’Lester Petersen’,0,15),(547,7526,’Local Tracker’,0,16),(547,7527,’Park Ranger’,0,17),(547,7528,’Doctor’,2,18),(547,7529,’Barn Dance Vocalist’,0,19),(547,79581,’Member of Magazine Staff’,1,20),(1538,500,’Vincent’,2,0),(1538,134,’Max’,2,1),(1538,9575,’Annie’,1,2),(1538,103,’Detective Fanning’,2,3),(1538,36602,’Richard Weidner’,2,4),(1538,14888,’Pedrosa’,2,5),(1538,43853,’Ida’,1,6),(1538,8689,’Daniel’,2,7),(1538,3810,’Felix Reyes-Torrena’,2,8),(1538,163438,’Mugger’,2,9),(1538,55755,’Traffic Cop #1′,2,10),(1538,72135,’Traffic Cop #2′,2,11),(1538,155283,’Zee’,1,12),(1538,154883,’Young Professional Man’,2,13),(1538,5578,’Young Professional Woman’,1,14),(1538,53257,’Paco’,2,15),(1538,43010,’Ramon Ayala’,0,16),(1538,1706221,’Peter Lim’,0,17),(1538,1213585,’Sylvester Clarke’,0,18),(1538,976,’Airport Man’,2,19),(9334,18918,’Mathayus’,2,0),(9334,11024,’Cassandra’,1,1),(9334,61981,’Balthazar’,2,2),(9334,57340,’Memnon’,2,3),(9334,1369,’Philos’,2,4),(9334,31511,’Arpid’,2,5),(9334,56857,’Takmet’,2,6),(9334,942,’Thorak’,2,7),(9334,106730,’Jesup’,2,8),(9334,16407,’King Pheron’,2,9),(9334,1228834,’Queen Isis’,0,10),(9334,33688,’Chieftain’,2,11),(9334,15998,’Tribal Leader’,2,12),(9334,60653,’Third Akkadian’,0,13),(9334,24968,’Torturer’,0,14),(9334,154011,’Warrior Woman’,1,15),(9334,1054837,’Boy at Well’,2,16),(9334,61704,’Asian Training Master’,2,17),(8914,11155,’Carter Blake’,2,0),(8914,9825,’Dr. Susan McCallister’,0,1),(8914,36424,’Sherman \’Preacher\’ Dudley’,2,2),(8914,4688,’Tom Scoggs Scoggins’,2,3),(8914,2231,’Russell Franklin’,2,4),(8914,1640,’Jim Whitlock’,2,5),(8914,28744,’Janice Higgins’,1,6),(8914,106791,’Brenda Kerns’,0,7),(8914,139997,’Boat Captain’,0,8),(8914,141808,’Helicopter Pilot’,2,9),(8914,6321,’Helicopter Co-Pilot’,2,10),(8914,67351,’Helicopter Winch Operator’,2,11),(8914,61855,’Boy #1′,2,12),(8914,60953,’Girl #1′,1,13),(8914,141809,’Boy #2′,2,14),(8914,141810,’Girl #2′,0,15),(8914,141811,’Friend of Janice’,0,16),(8914,15831,’Parrot Noises (voice)’,2,17),(8645,13240,’Elliot Moore’,2,0),(8645,11664,’Alma Moore’,1,1),(8645,5723,’Julian’,2,2),(8645,35654,’Josh’,2,3),(8645,52462,’Mrs. Jones’,1,4),(8645,18290,’Jess’,1,5),(8645,55426,’Jared’,2,6),(8645,1479,’Nursery Owner’,2,7),(8645,239271,’Private Auster’,2,8),(8645,2394,’Principal’,2,9),(8645,171633,’Nursery Owner\’s Wife’,1,10),(8645,11614,’Joey’,2,11),(8645,2841,’Woman Reading on Bench with Hair Pin’,1,12),(8645,210824,’Woman Reading on Bench’,1,13),(8645,164494,’Construction Foreman’,2,14),(8645,1209900,’Father in Elliot\’s Group’,2,16),(8645,127070,’Arguing Man in Crowd’,0,17),(8645,100567,’Woman on Cell Phone’,0,18),(8645,1564329,’Train Passenger (uncredited)’,0,19),(8645,1564332,’Train Passenger (uncredited)’,0,20),(8645,1343298,’Businessman (uncredited)’,0,21),(8645,150212,’Woman with Hands Over Ears’,1,22),(9509,5292,’Creasy’,2,0),(9509,501,’Lupita Pita Martin Ramos’,1,1),(9509,47775,’Samuel’,2,2),(9509,8329,’Lisa’,1,3),(9509,4690,’Rayburn’,2,4),(9509,3753,’Manzano’,2,5),(9509,10768,’Mariana’,1,6),(9509,69865,’Fuentes’,2,7),(9509,2295,’Jordan’,2,8),(9509,23877,’Sister Anna’,0,9),(9509,18468,’Daniel Sanchez’,0,11),(9509,1181464,’Jersey Boy’,0,12),(9384,7399,’David Starsky’,2,0),(9384,887,’Ken Hutchinson’,2,1),(9384,19767,’Huggy Bear’,2,2),(9384,9811,’Captain Doby’,0,3),(9384,4937,’Reese Feldman’,2,4),(9384,3196,’Kitty’,1,5),(9384,23532,’Kevin’,2,6),(9384,28639,’Staci’,1,7),(9384,23659,’Big Earl’,2,8),(9384,20189,’Holly’,1,9),(9384,65641,’Heather’,1,10),(9384,60952,’Mrs. Feldman’,1,11),(9384,1622591,’Elizabeth’,1,12),(9384,16580,’Chau’,2,13),(9384,2969,’Manetti’,2,14),(9384,59841,’Eddie’,2,15),(9384,1776391,’Bartender’,0,16),(9384,1496467,’Willis’,0,17),(9384,1107306,’Dancin\’ Rick’,0,18),(9384,10872,’Disco DJ’,2,19),(9384,1776392,’Banquet Singer’,0,20),(9384,12988,’Original Starsky’,2,21),(9384,15956,’Original Hutch’,2,22),(9384,151121,’Bat Mitzvah Singer’,0,23),(9384,55275,’Leon’,2,24),(9384,59844,’Lamell’,2,25),(9384,1430636,’Indian Shopkeeper’,0,26),(9384,1776393,’Bee Bee’,0,27),(9384,6396,’Monix’,2,28),(9384,165214,’Marks’,2,29),(9384,53256,’Porter’,2,30),(9384,1776394,’Drug Dealer’,0,31),(9384,111514,’Terrence Meyers’,0,32),(9384,1906,’Fat Ron’,0,33),(9384,52860,’Ice Cream Man’,2,34),(9384,1776395,’Toby’,0,35),(9384,205394,’Banquet Waitress’,1,36),(9384,130733,’Lorraine’,1,37),(9384,28101,’Cop in Shower’,2,38),(9384,97260,’Kiki’,0,39),(9384,1776400,’Sexy Bartender’,1,40),(9384,1776401,’Diner Waitress’,1,41),(9384,1776402,’Mrs. Feldman\’s Friend’,1,42),(9384,46074,’Mrs. Feldman\’s Other Friend’,1,43),(9384,1776403,’Rooftop Bad Guy’,0,44),(9384,1776404,’Laundry Owner’,0,45),(9384,1776405,’Bookie #1′,0,46),(9384,1776406,’Bookie #2′,0,47),(9384,1776407,’Smokey’,0,48),(9384,1503030,’Nightclub Dancer’,1,49),(9384,179688,’Nightclub Dancer’,0,50),(9384,1212446,’Nightclub Dancer’,0,51),(9384,1776408,’Nightclub Dancer’,1,52),(9384,1773681,’Nightclub Dancer’,0,53),(9384,1220575,’Nightclub Dancer’,1,54),(9384,1776409,’Nightclub Dancer’,1,55),(9384,1773910,’Nightclub Dancer’,0,56),(9384,928295,’Nightclub Dancer’,2,57),(9384,1776410,’Nightclub Dancer’,0,58),(9384,1776372,’Nightclub Dancer’,1,59),(9384,1769685,’Nightclub Dancer’,1,60),(9384,143244,’Nightclub Dancer’,1,61),(9384,168925,’Nightclub Dancer’,1,62),(9384,1776411,’Nightclub Dancer’,0,63),(9384,557791,’Nightclub Dancer’,0,64),(9384,1223005,’Nightclub Dancer’,0,65),(9384,1775886,’Nightclub Dancer’,0,66),(9384,1347276,’Nightclub Dancer’,0,67),(9384,1235851,’Nightclub Dancer’,1,68),(9384,1226626,’Nightclub Dancer’,0,69),(9384,1776412,’Nightclub Dancer’,1,70),(9384,1622614,’Cheerleader’,1,71),(9384,1776373,’Cheerleader’,1,72),(9384,1693813,’Cheerleader’,0,73),(9384,1752319,’Cheerleader’,1,74),(9384,1562235,’Cheerleader’,1,75),(9384,1776415,’Cheerleader’,1,76),(9384,1775926,’Cheerleader’,0,77),(9384,1622616,’Cheerleader’,1,78),(9384,59544,’Cheerleader’,1,79),(9384,1776417,’Cheerleader’,1,80),(9384,1776418,’Cheerleader’,0,81),(9384,1776419,’Cheerleader’,0,82),(9384,92188,’Mrs. Feldman\’s Friend’,1,83),(9279,1100,’Howard Langston’,2,0),(9279,14104,’Ted Maltin’,2,1),(9279,57119,’Myron Larabee’,2,2),(9279,12931,’Liz Langston’,1,3),(9279,33196,’Jamie Langston’,2,4),(9279,80742,’D.J.’,2,5),(9279,35159,’First Lady’,1,7),(9279,26485,’Mall Santa’,2,8),(9279,981033,’Johnny’,0,9),(9279,129317,’Officer Hummell’,2,10),(9279,1410997,’Billy’,0,11),(9279,13640,’President’,2,12),(9279,13591,’Dementor’,2,13),(9279,188377,’Turbo Man’,2,14),(9279,51382,’Toy Store Sales Clerk’,0,15),(9279,31471,’Toy Store Co-Worker’,2,16),(9279,54348,’Toy Store Customer’,1,17),(9279,13645,’Tony the Elf’,2,18),(9279,151042,’Huge Santa’,0,19),(9279,87003,’Chain Smoking Booster’,2,20),(1487,2372,’Hellboy’,2,0),(1487,11826,’Liz Sherman’,1,1),(1487,17283,’John Myers’,2,2),(1487,5049,’Prof. Bruttenholm’,2,3),(1487,4175,’Tom Manning’,2,4),(1487,10841,’Grigori Rasputin’,2,5),(1487,12359,’Sammael’,2,6),(1487,66268,’Karl Ruprecht Kroenen’,0,7),(1487,66269,’Ilsa Haupstein’,0,8),(1487,17199,’Agent Clay’,0,9),(1487,25730,’Agent Lime’,2,10),(1487,25659,’Agent Moss’,2,11),(1487,17005,’Abe Sapien’,2,12),(1487,1390260,’Blonde Television Reporter’,1,13),(1487,1661791,’Young Broom’,0,14),(1487,141493,’Agent Quarry’,0,15),(1487,1773789,’Agent Stone’,0,16),(1487,58475,’Sgt. Whitman’,2,17),(1487,211681,’Cpl. Matlin’,2,18),(1487,1756348,’Kid on Rooftop’,0,19),(1487,10847,’Train Driver’,2,20),(9422,8891,’Jan Schlichtmann’,2,0),(9422,3087,’Jerome Facher’,2,1),(9422,4252,’Kevin Conway’,2,2),(9422,3905,’James Gordon’,2,3),(9422,6752,’Bill Crowley’,2,4),(9422,11621,’William Cheeseman’,2,5),(9422,12074,’Judge Walter J. Skinner’,2,6),(9422,8183,’Anne Anderson’,1,7),(9422,31514,’Neil Jacobs’,2,8),(9422,96554,’Kathy Boyer’,1,9),(9422,4691,’Al Love’,2,10),(9422,11275,’Pinder’,2,11),(9422,6486,’John Riley’,2,12),(9422,76526,’Richard Aufiero’,2,13),(9422,2226,’Al Eustis’,2,14),(9422,137529,’Uncle Pete’,2,15),(9422,1473,’Mr. Granger’,2,16),(9422,1214402,’Mover’,2,17),(9422,78597,’Teenager on Property’,2,18),(4824,62,’The Jackal’,2,0),(4824,1205,’Declan Mulqueen’,2,1),(4824,16897,’Carter Preston’,2,2),(4824,6200,’Major Valentina Koslova’,1,3),(4824,18999,’FBI Agent T. I. Witherspoon’,2,4),(4824,70851,’Ian Lamont’,2,5),(4824,2598,’Jamaican Girl’,1,6),(4824,41742,’Ghazzi Murad’,2,7),(4824,41743,’Maggie’,1,8),(4824,41744,’Speaker’,0,9),(4824,18307,’Akashi’,2,10),(4824,41745,’Green Beret Colonel’,0,11),(4824,41746,’Beaufres’,2,12),(4824,44233,’Isabella Zanconia’,1,13),(4824,3205,’FBI Agent McMurphy’,2,14),(4824,167561,’FBI Director Donald Brown’,2,15),(4824,41249,’The First Lady’,1,16),(4824,10655,’Woolburton’,2,17),(4824,57093,’Douglas’,2,18),(4824,54014,’Terek Murad’,2,19),(4824,940950,’George Decker’,2,20),(4824,83838,’Victor Politovsky’,0,21),(4824,361969,’Dennehey’,0,22),(4824,174241,’Surgeon General’,0,23),(4824,30365,’Man in Video’,2,24),(4824,1091218,’Woman in Video’,0,25),(4824,173668,’Vasilov’,0,26),(4824,1091222,’General Belinko’,0,27),(4824,181359,’Paramedic’,0,28),(4824,208490,’Ambassador Koldin’,0,29),(4824,155547,’NSC Representative’,2,30),(4824,1015988,’Bored Teenage Clerk’,0,31),(4824,281638,’CIA Representative #1′,2,32),(4824,74587,’Davis’,2,33),(4824,1091236,’Doctor’,0,34),(4824,1091239,’Immigration Officer’,0,35),(4824,1091241,’Interrogator’,0,36),(4824,203467,’Prison Guard’,0,37),(4824,1091246,’Woman with Champagne #1′,0,38),(4824,1091247,’Woman with Champagne #2′,0,39),(4824,1215378,’Dave’,2,40),(4824,1091248,’Law Clerk’,0,41),(4824,28477,’Alexander Radzinski’,2,42),(4824,86573,’Washington Cop’,2,43),(4824,44127,’Himself’,2,44),(4824,61323,’CIA Representative #2′,2,45),(4824,1091249,’Reporter’,0,46),(4824,1091250,’Medic’,0,47),(4824,1091251,’Pilot’,0,48),(4824,1091252,’Co-Pilot’,0,49),(9620,880,’Jennings’,2,0),(9620,6383,’Rethrick’,2,1),(9620,139,’Rachel’,1,2),(9620,13242,’Shorty’,2,3),(9620,10132,’Wolfe’,2,4),(9620,3977,’Agent Dodge’,2,5),(9620,53820,’Agent Klein’,2,6),(9620,54246,’Attorney General Brown’,2,7),(9620,2208,’Rita Dunne’,1,8),(9620,29930,’Maya-Rachel’,1,9),(9620,172822,’Stevens’,0,10),(9620,65808,’Agent Fuman’,2,11),(9620,12055,’Agent Mitchell’,2,12),(9620,540,’Jude – Guard’,2,13),(9620,59240,’Jane’,1,14),(9620,37979,’Betsy – Salesgirl’,1,15),(9620,63547,’Sara Rethrick’,1,16),(9620,59185,’Scientist’,1,17),(9620,77622,’Scientist’,1,18),(9620,21858,’Holographic Woman’,1,19),(9620,1594647,’Street Kid’,0,20),(9620,1187262,’Guard’,0,21),(9620,41746,’Dekker’,2,22),(9620,1594648,’Balloon Boy’,0,23),(9620,139622,’Plain Clothes Federal Agent’,0,24),(9620,153847,’Lottery Host’,2,25),(9620,1182672,’Lottery Official’,0,26),(9620,1594652,’Allcom Helicopter Pilot’,0,27),(9620,1379517,’FBI Helicopter Pilot’,2,28),(9620,43431,’Suit’,2,29),(9620,172994,’Suit’,2,30),(9620,4095,’Suit’,2,31),(9620,1594653,’String Quartet’,0,32),(9620,1594654,’String Quartet’,0,33),(9620,1594655,’String Quartet’,0,34),(9620,1594656,’String Quartet’,0,35),(9620,77164,’Husband’,2,36),(9620,75532,’Wife’,1,37),(9620,70175,’Young Mother’,1,38),(9620,61164,’Janitor’,0,39),(9620,172901,’Wolfe Goon’,2,40),(9620,1340010,’Wolfe Goon’,0,41),(9620,172809,’Wolfe Goon’,0,42),(9620,1366826,’Wolfe Goon’,0,43),(9620,1399538,’Nursery Customer’,0,44),(9620,1550819,’Nursery Customer’,0,45),(9302,4135,’Warren Justice’,2,0),(9302,1160,’Tally Atwater’,1,1),(9302,8893,’Marcia McGrath’,1,2),(9302,3266,’Bucky Terranova’,2,3),(9302,18794,’Joanna Kennelly’,1,4),(9302,2683,’Ned Jackson’,2,5),(9302,8986,’John Merino’,2,6),(9302,1218088,’Rob Sullivan’,2,7),(9302,58650,’Fernando Buttanda’,2,8),(9302,91332,’Luanne Atwater’,0,9),(9302,19454,’IBS Director’,2,10),(9302,102896,’Merino\’s Secretary’,1,11),(3512,23880,’Casey Ryback’,2,0),(3512,10866,’Travis Dane’,2,1),(3512,5616,’Penn’,2,2),(3512,25541,’Sarah Ryback’,1,3),(3512,9779,’Bobby Zachs’,2,4),(3512,11803,’1. Mercenary’,2,5),(3512,32286,’2. Mercenary’,2,6),(3512,32287,’3. Mercenary’,2,7),(3512,32288,’Female Mercenary’,0,8),(3512,32289,’Admiral Bates’,2,9),(3512,32290,’Cap. Linda Gilder’,1,10),(3512,32291,’Bargirl’,1,11),(8078,10205,’Ripley’,1,0),(8078,1920,’Annalee Call’,1,1),(8078,1370,’Dr. Jonathan Gediman’,2,2),(8078,2372,’Johner’,2,3),(8078,7486,’Frank Elgyn’,2,4),(8078,40276,’Christie’,2,5),(8078,6486,’General Martin Perez’,2,6),(8078,2413,’Vriess’,2,7),(8078,2221,’Larry Purvis’,2,8),(8078,58650,’Vincent Distephano’,2,9),(8078,5169,’Dr. Mason Wren’,2,10),(8078,1598,’Surgeon’,2,11),(8078,1398983,’Scientist’,0,12),(8078,1558116,’Anesthesiologist’,1,13),(8078,170146,’Hillard’,1,14),(8078,58650,’Distephano’,2,15),(8078,1654476,’Young Ripley’,1,16),(8078,109870,’Lead Alien’,2,17),(8078,1347002,’Soldier’,0,18),(8078,181876,’Soldier’,2,19),(8078,1050090,’Soldier’,2,20),(8078,1116873,’Soldier Shot Through Helmet’,2,21),(8078,54428,’Sleeper’,2,22),(8078,1654474,’Sleeper’,2,23),(8078,1427711,’Sleeper (uncredited)’,0,24),(8078,31032,’Father (voice)’,2,25),(7485,13240,’Bob Lee Swagger’,2,0),(7485,454,’Nick Memphis’,2,1),(7485,2047,’Colonel Isaac Johnson’,2,3),(7485,51072,’Sarah Fenn’,1,4),(7485,13550,’Jack Payne’,2,5),(7485,25702,’Alourdes Galindo’,1,6),(7485,52702,’Louis Dobbler’,2,7),(7485,51036,’Howard Purnell’,0,8),(7485,15455,’Russ Turner’,2,9),(7485,1118,’Michael Sandor’,2,10),(7485,52703,’Officer Stanley Timmons’,2,11),(7485,13726,’Senator Charles F. Meachum’,2,12),(7485,52704,’Donnie Fenn’,2,13),(7485,52705,’Senior Agent’,2,14),(7485,52706,’Junior Agent’,0,15),(7485,1209900,’Assassination Witness’,2,16),(6435,18277,’Sally Owens’,1,0),(6435,2227,’Gillian Owens’,1,1),(6435,38940,’Kylie Owens’,1,2),(6435,5725,’Jimmy Angelov’,2,3),(6435,8893,’Tante Frances \’Fran\’ Owens’,1,4),(6435,1902,’Tante Bridget \’Jet\’ Owens’,1,5),(6435,18992,’Gary Hallet’,2,6),(6435,51681,’Antonia Owens’,1,7),(6435,154698,’Maria Owens’,1,8),(6435,38670,’Sally @ Age 11′,1,9),(6435,43476,’Carla’,1,10),(6278,3894,’Quinn Abercromby’,2,0),(6278,10297,’Denton Van Zan’,2,1),(6278,10695,’Alex Jensen’,1,2),(6278,17276,’Creedy’,2,3),(6278,2957,’Ajay’,2,4),(6278,56137,’Jared Wilke’,0,5),(6278,62498,’Eddie Stax’,2,6),(6278,63362,’Barlow’,0,8),(6278,1041731,’Devon’,2,9),(6278,67205,’Gideon’,0,10),(6278,1047370,’Goosh’,0,11),(6278,1293209,’Burke (Tito)’,0,12),(6278,65802,’Mead’,2,13),(6278,945121,’Young Quinn’,2,14),(6278,2506,’Karen Abercromby’,1,15),(9849,8447,’Tim O\’Hara’,2,0),(9849,13918,’Brace Channing’,1,1),(9849,589,’Lizzie’,1,2),(9849,1062,’Oncle Martin (le Martien)’,2,3),(9849,12900,’Dr. Elliott Coleye’,2,4),(9849,4003,’Loralie Brown’,1,5),(9849,4250,’Mr. Channing’,2,6),(9849,15411,’Lenny’,2,7),(5820,3392,’Pete Garrison’,2,0),(5820,2628,’David Breckinridge’,2,1),(5820,52605,’Jill Marin’,1,2),(5820,42993,’William Montrose’,2,3),(5820,326,’Sarah Ballentine’,1,4),(5820,13939,’The Handler’,2,5),(5820,7571,’National Security Advisor’,1,6),(5820,33533,’President Ballentine’,2,7),(5820,148112,’Cindy Breckinridge’,1,8),(5820,21082,’Walter Xavier’,2,9),(5820,14905,’Director Overbrook’,2,10),(5820,3137,’Deputy Director Cortes’,2,11),(5820,47640,’Charlie Merriweather’,2,12),(5820,43243,’Aziz Hassad’,2,13),(5820,108894,’Teddy Vargas’,0,14),(201,2387,’Captain Jean-Luc Picard’,2,0),(201,2388,’Commander William T. Riker’,2,1),(201,1213786,’Lt. Commander Data’,2,2),(201,2390,’Lt. Commander Geordi La Forge’,2,3),(201,2391,’Lt. Commander Worf’,2,4),(201,2392,’Dr. Beverly Crusher’,1,5),(201,2393,’Counselor Deanna Troi’,1,6),(201,2524,’Praetor Shinzon’,2,7),(201,2372,’The Reman Viceroy’,2,8),(201,2525,’Senator Tal\’aura’,1,9),(201,2133,’Commander Donatra’,1,10),(201,35317,’Admiral Janeway’,1,11),(201,3033,’Wesley Crusher’,2,12),(201,2395,’Guinan’,1,13),(201,2523,’Scimitar Computer (voice)’,2,14),(201,52760,’Praetor Hiren’,2,15),(201,9032,’Kelly (uncredited)’,2,16),(201,1341996,’Commander’,2,17),(9932,380,’Paul Vitti’,2,0),(9932,7904,’Dr. Ben Sobel’,2,1),(9932,14406,’Laura Sobel’,1,2),(9932,60023,’Jelly’,2,3),(9932,14702,’Patti LoPresti’,1,4),(9932,943751,’Sheila’,1,5),(9932,162149,’Michael Sobel’,2,6),(9932,17923,’Tuna’,2,7),(9932,171375,’Convict’,0,8),(9932,1129795,’Newscaster (voice)’,0,9),(8838,62,’Art Jeffries’,2,0),(8838,7447,’Nicholas Kudrow’,2,1),(8838,8186,’Simon Lynch’,2,2),(8838,8687,’Tommy B. Jordan’,2,3),(8838,21165,’Stacey’,1,4),(8838,53963,’Dean Crandell’,2,5),(8838,154883,’Leo Pedranski’,2,6),(8838,7465,’Emily Lang’,1,7),(8838,156038,’Peter Burrell’,0,8),(8838,53,’Shayes’,2,9),(8838,27116,’Lomax’,2,10),(8838,3911,’Martin Lynch’,2,11),(8838,946447,’Jenny Lynch’,1,12),(8838,4735,’Supervisor Hartley’,2,13),(8838,18262,’Edgar Halstrom’,2,14),(8838,9186,’James’,2,15),(8838,58739,’Isaac’,2,16),(8838,20187,’Dr. London’,1,17),(8838,21675,’Detective Nichols’,2,18),(8838,156731,’Charlayne’,1,19),(8838,1077831,’Pasquale, Bus Driver’,0,20),(8838,6864,’Lieutenant’,2,21),(8838,1188456,’SWAT Team Leader Francis’,0,22),(8838,42296,’Security Woman’,1,23),(8838,173739,’Senator’,2,24),(4958,1892,’Rannulph Junuh’,2,0),(4958,14888,’Walter Hagen’,2,1),(4958,6885,’Adele Invergordon’,1,2),(4958,2888,’Bagger Vance’,2,3),(4958,25376,’Bobby Jones’,2,4),(4958,40253,’Hardy Greaves’,0,5),(4958,41019,’Roy’,2,6),(4958,41020,’Aaron’,2,7),(4958,7465,’Idalyn Greaves’,1,8),(4958,1469849,’Frank Greaves’,0,9),(4958,21710,’O.B. Keeler’,2,10),(4958,1986,’Neskaloosa’,2,11),(4958,3151,’Narrator’,2,12),(786,11661,’Penny Lane’,1,0),(786,8289,’Russell Hammond’,2,1),(786,3910,’Elaine Miller’,1,2),(786,11662,’Jeff Bebe’,2,3),(786,11663,’William Miller’,2,4),(786,11664,’Anita Miller’,1,5),(786,11665,’Young William’,2,6),(786,10690,’Polexia Aphrodisia’,1,7),(786,826,’Sapphire’,1,8),(786,1284,’Dick Roswell’,2,9),(786,1233,’Lester Bangs’,2,10),(786,11669,’Dennis Hope’,2,11),(786,11678,’David Felton’,2,12),(786,449,’Vic Munoz’,2,13),(786,11666,’Ed Vallencourt’,2,14),(786,11667,’Larry Fellows’,0,15),(786,11668,’Leslie’,0,16),(786,11670,’Beth from Denver’,1,17),(786,11671,’Estrella Starr’,1,18),(786,11680,’Alice Wisdom’,1,19),(786,562708,’Reg’,0,20),(786,11676,’Freddy’,2,21),(786,7498,’Jann Wenner’,2,22),(786,11673,’Roadie Scully’,2,23),(786,11674,’Roadie Gregg’,0,24),(786,11675,’Roadie Mick’,0,25),(786,11672,’Mrs. Deegan’,0,26),(786,11679,’Alison the Fact Checker’,0,27),(786,11677,’Ben Fong-Torres’,2,28),(786,59255,’Eagles Road Manager’,2,29),(786,1011253,’Darryl’,2,30),(786,12714,’The Legendary Red Dog’,2,31),(786,1656012,’The Who Road Manager’,2,32),(786,1656014,’Hyatt Singer’,2,33),(786,1455810,’Hyatt Singer’,1,34),(786,60633,’Lenny’,2,35),(786,60018,’Plaza Doctor’,2,36),(786,43464,’Himself’,2,37),(786,1656017,’Waving Girl’,1,38),(786,1656019,’Real Topeka Kid’,2,41),(786,1656023,’Poolside Provocateur’,2,42),(786,1221086,’Have a Nice Day Stewardess’,0,43),(786,1497311,’Flight Attendant’,1,44),(786,181791,’Swingo\’s Desk Clerk’,1,45),(786,156962,’Sheldon the Desk Clerk’,2,46),(9513,1532,’Garfield (voice)’,2,0),(9513,33259,’Liz’,1,1),(9513,9188,’Dargis’,0,2),(9513,11764,’Smithee’,2,3),(9513,33654,’Jon Arbuckle’,2,4),(9513,13472,’Prince (voice)’,2,5),(9513,16407,’Mr. Hobbs’,2,6),(9513,11111,’Abby’,1,7),(9513,151260,’Teenage Tourist’,1,8),(9513,49916,’Veterinary Assistant’,0,9),(9513,42000,’Mrs. Whitney’,0,10),(9513,93035,’Mr. Greene’,2,11),(9513,136152,’Hotel Porter’,2,12),(9513,157085,’Tourist #2′,1,13),(9513,956753,’Bobby’,2,14),(9513,170820,’American Tourist’,2,15),(9513,4031,’Nigel’,2,16),(9513,382,’Winston’,2,17),(9513,133196,’Christophe’,1,18),(9513,1155949,’Garfield (french voice)’,0,19),(8413,2975,’Captain Miller’,2,0),(8413,4783,’Dr. William Weir’,2,1),(8413,8183,’Peters, Med Tech’,1,2),(8413,20810,’Lt. Starck’,1,3),(8413,55755,’Cooper’,2,4),(8413,22133,’Justin’,2,5),(8413,11355,’D.J.’,2,6),(8413,28848,’Smith’,2,7),(8413,93477,’Captain John Kilpack’,2,8),(8413,1052953,’Claire’,1,9),(8413,575916,’Denny Peters’,0,10),(8413,2050,’Burning Man / Edward Corrick’,2,11),(8413,1230749,’Rescue 1 Technician’,2,12),(8413,64103,’Girl on Monitor (uncredited)’,1,13),(8413,1105758,’Vanessa (uncredited)’,0,14),(9676,2299,’Dwight \’Bucky\’ Bleichert’,2,0),(9676,1245,’Kay Lake’,1,1),(9676,6383,’Lee Blanchard’,2,2),(9676,448,’Madeleine Linscott’,1,3),(9676,18658,’Elizabeth Short’,1,4),(9676,5170,’Det. Russ Millard’,2,5),(9676,10981,’Ramona Linscott’,1,6),(9676,52801,’Deputy DA Ellis Loew’,2,7),(9676,58473,’Dolph Bleichert’,2,8),(9676,20282,’Emmett Linscott’,2,9),(9676,31006,’Chief Ted Green’,2,10),(9676,58474,’Morrie Friedman’,2,11),(9676,1169,’Tomas Dos Santos’,1,12),(9676,58475,’Capt. John Tierney’,2,13),(9676,54126,’Martha Linscott’,1,14),(9676,62932,’Lorna Mertz’,1,15),(9676,2518,’Pete Lukins’,2,16),(9676,16850,’Sheryl Saddon’,1,17),(9676,1432328,’Gunman #1′,2,18),(9664,17051,’Blaine Rawlings’,2,0),(9664,58433,’Eddie Beagle’,2,1),(9664,1003,’Capt. Thenault’,2,2),(9664,58428,’William Jensen’,2,3),(9664,58431,’Eugene Skinner’,2,4),(9664,17354,’Mr. Jensen’,2,5),(9664,58429,’Mrs. Jensen’,0,6),(9664,33403,’Sheriff Detweiller’,2,7),(9664,58427,’Cinema Usher’,2,8),(9664,58430,’Laura’,1,9),(9664,11276,’Mr. Lowry’,2,10),(9664,51383,’Briggs Lowry’,2,11),(9664,58432,’Mrs. Lowry’,0,12),(9664,35083,’L.T. Giroux’,2,13),(9664,58435,’Vernon Toddman’,0,14),(9664,56649,’Lucienne’,1,15),(2100,4135,’Lt. Gen. Eugene Irwin’,2,0),(2100,4691,’Col. Winter’,2,1),(2100,103,’Yates’,2,2),(2100,21530,’Cap. Peretz’,2,3),(2100,18792,’Gen. Wheeler’,2,4),(2100,3137,’Dellwo’,2,5),(2100,21532,’Duffy’,2,6),(2100,21533,’Cutbush’,2,7),(2100,21535,’Thumper’,2,8),(2100,5365,’Cp. Ramov Aguilar’,2,9),(2100,1604344,”,0,10),(9009,6161,’Dahlia Williams’,1,0),(9009,4764,’Mr. Murray’,2,1),(9009,3129,’Jeff Platzer’,2,2),(9009,15336,’Kyle Williams’,2,3),(9009,4935,’Veeck’,2,4),(9009,76414,’Ceci’,1,5),(9009,20187,’Teacher’,1,6),(9009,6585,’Natasha / Young Dahlia’,1,7),(9009,10386,’Young Dahlia\’s Teacher’,1,8),(9009,58643,’Mediator’,1,9),(9009,76764,’Mediator’,2,10),(9009,73204,’Teacher\’s Aide’,1,11),(2309,18269,’Mo \’Silvertongue\’ Folchart’,2,0),(2309,7055,’Resa’,1,1),(2309,1333,’Capricorn’,2,2),(2309,23775,’Meggie Folchart’,1,3),(2309,6162,’Dustfinger’,2,4),(2309,388,’Fenoglio’,2,5),(2309,15735,’Elinor Loredan’,1,6),(2309,23776,’Cockerell’,2,7),(2309,21660,’Farid’,2,8),(2309,56475,’The Shadow’,0,9),(2309,79502,’Bookshop Proprietor’,2,10),(2309,25441,’Flatnose’,2,11),(2309,3543,’Basta’,2,12),(2309,1115,’Fulvio’,2,13),(2309,983695,’Young Meggie’,1,14),(2309,7321,’Darius’,2,15),(2309,80366,’Mortola’,1,16),(2309,230178,’Rapunzel’,0,17),(2309,1105459,’Masquerade Ball Dancer’,0,18),(2309,6161,’Roxanne’,1,19),(8285,16856,’The Spirit/Denny Colt’,2,0),(8285,1245,’Silken Floss’,1,1),(8285,2231,’Octopuss’,2,2),(8285,8170,’Sand Saref’,1,3),(8285,3627,’Plaster of Paris’,1,4),(8285,5915,’Lorelei Rox’,1,5),(8285,29774,’Dolan’,2,6),(8285,34490,’Ellen Dolan’,1,7),(8285,34408,’Morgenstern’,1,8),(8285,2293,’Liebowitz’,2,9),(8285,34489,’Mahmoud’,2,10),(8285,27104,’Young Spirit’,2,11),(8285,559643,’Young Sand’,0,12),(8285,59220,’Detective Sussman’,2,13),(8285,1406570,’Damsel in Distress’,0,14),(2312,976,’Farmer’,2,0),(2312,655,’Merick’,2,1),(2312,11477,’Gallian’,2,2),(2312,22290,’Muriella’,1,3),(2312,16475,’King Konreid’,2,4),(2312,2372,’Norick’,2,5),(2312,31137,’Tarish’,0,6),(2312,7218,’Elora’,1,8),(2312,26457,’Duke Fallow’,2,9),(2312,4174,’Solana’,1,10),(2312,64674,’General Backler’,2,11),(2312,59244,’Talwyn’,1,12),(2312,58804,’Delinda’,1,13),(2312,27112,’Trumaine’,2,14),(2312,58908,’Crying Woman’,0,15),(2312,998517,’Handmaiden’,0,16),(2312,60649,’Bastian’,2,17),(2312,59182,’Caravan Slave #1′,1,18),(2312,1233167,’Caravan Slave #2′,2,19),(9839,11701,’Sarah Jordan’,1,0),(9839,2296,’Nick Callahan’,2,1),(9839,10399,’Charlotte Jordan’,1,2),(9839,3900,’Henry Bauford’,2,3),(9839,11315,’Elliott Hauser’,2,4),(9839,31387,’Steiger’,0,5),(9839,35257,’Lawrence Bauford’,2,6),(9839,20696,’Philip’,0,7),(9839,59797,’Master of Ceremonies’,0,8),(9839,59794,’Mrs. Bauford’,1,9),(9839,59795,’Jimmy Bauford’,0,10),(9839,59796,’Anna Bauford’,1,11),(9839,59798,’Jojo’,0,12),(9839,55378,’Rolly’,2,13),(9839,13100,’Tula’,0,14),(9839,29461,’Police Officer’,0,15),(9839,59801,’Police Officer’,0,16),(9839,59802,’Gemilla’,0,17),(9839,59799,’Steiger\’s Girlfriend’,1,18),(9839,59800,’TV Reporter’,0,19),(9839,11110,’Kat’,1,20),(9839,1050987,’Art Dealer’,0,21),(9839,207186,’Meles’,0,22),(9839,74627,’Joss’,2,23),(9839,15546,’Hamadi’,2,24),(9839,1303855,’Monica’,0,25),(9839,77681,’Dawit Ningpopo’,2,26),(9839,1187578,’Titus’,0,27),(9839,521673,’Port Official’,2,28),(9839,1818522,’Port Official’,0,29),(9839,1818523,’Tao’,0,30),(9839,21944,’Colonel Gao’,2,31),(9839,60852,’Ma Sok’,2,32),(9839,1818524,’Speaker’,0,33),(9839,201706,’Truck Driver’,2,34),(9839,100650,’Strauss’,2,35),(9839,96592,’Chechen Mobster’,0,36),(9839,1030297,’Rebel’,0,37),(9839,41659,’Muslim Warlord’,0,38),(9839,127612,’Beatrice’,1,39),(9839,60904,’Journalist’,0,41),(9839,1818530,’Journalist’,0,42),(9839,1142866,’Journalist’,0,43),(9839,131336,’Russian Soldier’,2,44),(9839,1818531,’Russian Soldier’,0,45),(9839,1818532,’Abraha’,0,46),(9839,1818533,’Party Guest’,0,47),(9839,1818534,’Party Guest’,0,48),(9839,1655411,’Thai NGO’,1,49),(9839,198647,’Journalist’,0,50),(9713,776,’G’,2,0),(9713,4785,’Ricky Hayman’,2,1),(9713,11164,’Kate Newell’,1,2),(9713,1162,’McBainbridge’,2,3),(9713,69718,’Barry’,2,4),(9007,368,’Dr. Elizabeth Masterson’,1,0),(9007,103,’David Abbott’,2,1),(9007,10825,’Jack Houriskey’,2,2),(9007,56567,’Abby Brody’,0,3),(9007,6437,’Dr. Brett Rushton’,2,4),(9007,53926,’Darryl’,2,5),(9007,29930,’Katrina’,1,6),(9007,1910,’Grace’,1,7),(9007,74073,’Fran’,1,8),(9007,85170,’Dr. Walsh’,2,9),(9007,1542,’Maitre D\”,2,10),(9007,1079782,’Nurse Maria’,0,11),(9007,1124108,’Nurse Bill’,0,12),(9007,170882,’Nurse Jenny’,1,13),(9007,1072708,’Valerie’,1,14),(9007,4606,’Security Guard #4′,2,15),(9007,141418,’Mr. Clarke’,2,16),(9007,1877877,’Orderly Luis’,0,17),(9007,283842,’Intern Karen’,1,18),(9007,220064,’Zoe’,1,19),(9007,59786,’Lily’,1,20),(9007,1877879,’KIm’,0,21),(9007,1877881,’Donald’,0,22),(9007,1463660,’Kenny’,0,23),(9007,1877882,’Kenny\’s Friend’,0,24),(9007,1877884,’Bandage Guy’,0,25),(9007,1877885,’Peroxide Rocker’,0,26),(9007,1877886,’Abby\’s Husband’,0,27),(9007,91033,’Brett\’s Friend’,2,28),(9007,156192,’UFO Guy’,0,29),(9007,84606,’Catholic Priest’,2,30),(9007,112288,’Chinese Exorcist’,1,31),(9007,88950,’Lead Ghostbuster’,2,32),(9007,1219668,’Ghostbuster’,0,33),(9007,73456,’Hippie Neighbour’,1,34),(9007,1340662,’Uptight Neighbour’,2,35),(9007,109419,’Chinese Neighbour’,2,36),(9007,59350,’Dry Cleaner’,0,37),(9007,1575806,’Park Girl’,0,38),(9007,177927,’Waitress’,0,39),(9007,1175742,’Ivan the Bartender’,2,40),(9007,1215985,’Young Receptionist’,1,41),(889,13633,’Fred Flintstone’,2,0),(889,9045,’Barney Rubble’,2,1),(889,13635,’Wilma Slaghoople’,1,2),(889,13636,’Betty O\’Shale’,1,3),(889,13637,’Pearl Slaghoople’,1,4),(889,13638,’Chip Rockefeller’,2,5),(889,13640,’Colonel Slaghoople’,2,6),(889,10697,’Mick Jagged’,2,7),(889,599196,’Keith Richrock’,0,8),(889,13642,’Roxie’,1,9),(889,13644,’Big Rocko’,2,10),(889,13645,’Little Rocko’,2,11),(889,37043,’Gazaam / Gazing’,2,12),(889,37917,’Ring Toss Girl (uncredited)’,1,13),(1370,16483,’Rambo’,2,0),(1370,16554,’Trautman’,2,1),(1370,2115,’Griggs’,2,3),(1370,6783,’Masoud’,0,4),(1370,16604,’Mousa’,2,5),(1370,16605,’Hamid’,0,6),(1370,16606,’Kourov’,2,7),(1370,11763,’Tomask’,2,8),(1370,16607,’Nissem’,2,9),(1370,16608,’Rahim’,0,10),(1370,16609,’Khalid’,0,11),(1370,16610,’Stick Fighter’,2,12),(1370,16611,’Gun Dealer’,0,13),(1370,16612,’Uri’,0,14),(1370,255923,’Zaysen’,2,15),(1370,1156436,’Helicopter Person’,0,16),(4942,1461,’Jimmy \’Dodge\’ Connelly’,2,0),(4942,9137,’Lexie Littleton’,1,1),(4942,17697,’Carter Rutherford’,2,2),(4942,1470,’Coach Frank Ferguson’,2,3),(4942,17401,’Suds’,2,4),(4942,378,’CC Frazier’,2,5),(4942,12536,’Harvey’,2,6),(4942,7133,’Mack Steiner’,2,7),(4942,57995,’Curly’,2,8),(4942,57996,’Zoom’,0,9),(4942,57997,’Bakes’,2,10),(4942,21723,’Stump’,2,11),(4942,27031,’Ralph’,2,12),(4942,54714,’Big Gus’,2,13),(1813,6384,’Kevin Lomax’,2,0),(1813,1158,’John Milton’,2,1),(1813,6885,’Mary Ann Lomax’,1,2),(1813,4004,’Eddie Barzoon’,2,3),(1813,19239,’Alice Lomax’,1,4),(1813,935,’Christabella Andreoli’,1,5),(1813,8977,’Alexander Cullen’,2,6),(1813,42694,’Mrs. Jackie Heath’,1,7),(1813,31839,’Leamon Heath’,2,8),(1813,10386,’Pam Garrety’,1,9),(1813,61216,’Mitch Weaver’,2,10),(1813,17769,’Melissa Black’,1,11),(1813,1207046,’Mrs. Diana Barzoon’,1,12),(1813,14669,’Meisel’,2,13),(1813,4445,’Lloyd Gettys’,2,14),(1813,1089390,’Mrs. Bernice Gettys’,0,15),(1813,1089391,’Gettys\’ Son’,0,16),(1813,33656,’Barbara’,1,17),(1813,155547,’Barbara\’s Father’,2,18),(1813,30151,’Florida Prosecutor’,2,19),(1813,260967,’Garson Deeds (Florida Judge)’,0,20),(1813,4199,’Larry (Florida Reporter)’,2,21),(1813,1089392,’Florida Bailiff’,0,22),(1813,582202,’Florida Lawyer’,0,23),(1813,90444,’Junkie in Harlem’,2,24),(1813,303197,’Boy in Harlem’,2,25),(1813,79735,’Judge Sklar’,2,26),(1813,1089393,’Pie Face’,0,27),(1813,164463,’Arnold (Metro Assistant District Attorney)’,2,28),(1813,8400,’Chinese Man’,0,29),(1813,154698,’Menage A Trois Woman’,1,30),(1813,65607,’Himself’,2,31),(1813,1089394,’Fight Fan’,2,32),(1813,984489,’Fight Fan’,2,33),(1813,27264,’Joyce Rensaleer’,1,34),(1813,77155,’Takaori Osumi’,2,35),(1813,20807,’Parvathi Resh’,2,36),(1813,233547,’Bashir Toabal’,0,37),(1813,1089395,’Multi-Lingual Party Guest’,0,38),(1813,1089396,’Female #1′,0,39),(1813,164419,’Limo Driver’,0,40),(1813,55272,’Botanica Woman’,1,41),(1813,1983,’Big Guy #1′,2,42),(1813,155540,’Big Guy #2′,2,43),(1813,1089398,’Babs Coleman’,0,44),(1813,18315,’Alessandra Cullen’,1,45),(1813,79581,’Tiffany’,1,46),(8840,6065,’Bowen’,2,0),(8840,11207,’King Einon’,2,1),(8840,4935,’Gilbert of Glockenspur’,2,2),(8840,2133,’Kara’,1,3),(8840,1666,’Queen Aislinn’,1,4),(8840,738,’Draco (voice)’,2,5),(8840,11857,’King Arthur (voice) (uncredited)’,2,6),(8840,59075,’Young Einon’,0,7),(8840,2719,’Brok’,2,8),(8840,11355,’Lord Felton’,2,9),(8840,260536,’Hewe’,2,10),(8840,82410,’Redbeard’,2,11),(8840,544311,’Felton\’s Minx’,0,12),(8840,1074679,’Swamp Village Chief’,0,13),(8840,1074680,’King Freyne’,0,14),(8840,1074681,’Young Kara’,0,15),(8840,1074682,’Boy in Field’,0,16),(8840,1074683,’Aislinn\’s Chess Partner’,0,17),(1722,2963,’Captain Antonio Corelli’,2,0),(1722,955,’Pelagia’,1,1),(1722,5049,’Dr. Iannis’,2,2),(1722,3894,’Mandras’,2,3),(1722,18847,’Drosoula’,1,4),(1722,18848,’Mr. Stamatis’,0,5),(1722,18849,’Mrs. Stamatis’,0,6),(1722,18850,’Kokolios’,2,7),(1722,18851,’Father Aresenios’,0,8),(1722,18852,’Velisarios’,0,9),(1722,18853,’Eleni, Pelagia\’s Friend’,0,10),(1722,18616,’Captain Gunther Weber’,2,11),(1722,8979,’Colonel Barge’,2,12),(13,31,’Forrest Gump’,2,0),(13,32,’Jenny Curran’,1,1),(13,33,’Lt. Dan Taylor’,2,2),(13,34,’Pvt. Benjamin Buford \’Bubba\’ Blue’,2,3),(13,35,’Mrs. Gump’,1,4),(13,37821,’Young Forrest Gump’,2,5),(13,204997,’Young Jenny Curran’,1,6),(13,9640,’Forrest Gump Jr.’,2,7),(13,6751,’School Bus Driver’,1,8),(13,37825,’Drill Sergeant’,2,9),(13,37822,’Young Elvis Presley’,2,10),(13,37823,’College Football Coach’,2,11),(13,951881,’Barber’,2,12),(13,36221,’Principal’,2,13),(13,1215432,’Louise’,0,14),(13,1019727,’Boy with cross’,2,15),(13,37832,’Jenny\’s Father’,0,16),(13,29934,’High School Football Coach’,2,17),(13,14526,’Recruiter’,2,18),(13,6310,’Newscaster’,0,19),(13,154697,’Earl’,2,20),(13,37831,’Bubba\’s Mother’,0,21),(13,37830,’Bubba\’s Great Grandmother’,1,22),(13,975108,’Jenny\’s date’,2,23),(13,129725,’Local Anchor #1′,2,24),(13,37824,’President Kennedy (voice)’,0,25),(13,1346510,’Army Recruiter’,2,26),(13,1088274,’Barracks Recruit’,0,27),(13,114326,’Club patron’,2,28),(13,170051,’Club patron’,2,29),(13,95140,’Club patron’,0,30),(13,1446990,’Helicopter gunman’,0,31),(13,1401994,’Cleveland’,0,32),(13,1235787,’Tex’,0,33),(13,163441,’Army Hospital Male Nurse’,2,34),(13,163441,’Wounded soldier’,2,35),(13,92658,’Wounded soldier’,2,36),(13,81692,’Hospital Officer’,2,37),(13,37827,’President Johnson (voice)’,2,38),(13,1313819,’Isabel’,0,39),(13,1409948,’Abbie Hoffman’,0,40),(13,46921,’Black Panther’,2,41),(13,148122,’Wesley’,2,42),(13,406976,’Hollywood Boulevard Girlfriend’,1,43),(13,10565,’Dick Cavett’,2,44),(13,1405338,’Carla’,0,45),(13,1405338,’Lenore’,0,46),(13,86434,’President Nixon (voice)’,2,47),(13,1465241,’Discharge Officer’,0,48),(13,1465241,’Drugged Out Boyfriend’,0,49),(13,37828,’Elderly Southern Woman’,0,50),(13,1327149,’Waitress in cafe’,0,51),(13,37829,’Taxi Driver’,2,52),(13,176329,’Aging Hippie’,2,53),(13,169643,’Wild eyed man’,2,54),(13,196855,’Crony’,2,55),(13,98873,’Football Player (uncredited)’,0,56),(13,13204,’Cheerleader (uncredited)’,2,57),(13,84901,’Football Coach (uncredited)’,2,58),(13,1392671,’Barracks Recruit (uncredited)’,0,59),(13,1273540,’National Guardsman (uncredited)’,0,60),(13,42961,’Football Fan (uncredited)’,1,61),(13,1150593,’Football Player (uncredited)’,0,63),(13,567126,’Black Panther (uncredited)’,0,64),(13,173277,’Nicholas Katzenbach (uncredited)’,2,65),(13,23967,’Jenny\’s Babysitter (uncredited)’,0,66),(6477,11662,’Dave’,2,0),(6477,212,’Ian’,2,1),(6477,49914,’Claire’,1,2),(6477,43775,’Gail’,1,3),(6477,15033,’Alvin (voice)’,2,4),(6477,5661,’Simon (voice)’,2,5),(6477,49915,’Theodore (voice)’,2,6),(6477,49916,’Amy’,0,7),(6477,1080067,’Female Intern #1′,0,8),(6477,208332,’Female Intern #2′,0,9),(6477,1080068,’Female Intern #3′,0,10),(6477,46928,’Mother in Store’,1,11),(6477,53260,’Vet’,1,12),(6477,159398,’Engineer’,0,13),(6477,120723,’Barry’,2,14),(6477,1228919,’Ted’,0,15),(1597,7399,’Gaylord Greg Focker’,2,0),(1597,380,’Jack Byrnes’,2,1),(1597,10399,’Pam Byrnes’,1,2),(1597,10401,’Dina Byrnes’,1,3),(1597,887,’Kevin Rawley’,2,4),(1597,17865,’Deborah Byrnes’,1,5),(1597,17866,’Denny Byrnes’,2,6),(1597,8986,’Dr. Larry Banks’,2,7),(1597,17867,’Dr. Bob Banks’,0,8),(1597,17868,’Linda Banks’,1,9),(1597,149665,’Atlantic American Flight Attendant’,1,10),(1597,164083,’Norm the Interrogator’,0,11),(1597,52860,’Pharmacy Clerk’,2,12),(1597,163711,’Animal Shelter Worker’,2,13),(1597,122243,’Chicago Airport Security’,2,14),(1597,116056,’Greg\’s Hospital Patient’,0,15),(1597,171334,’Ticket Agent’,1,16),(1597,77025,’Father O\’Boyle’,0,17),(1597,935624,’Kinky’,0,18),(1924,20006,’Superman / Clark Kent’,2,0),(1924,3084,’Jor-El’,2,1),(1924,20011,’Lois Lane’,1,2),(1924,193,’Lex Luthor’,2,3),(1924,13726,’Otis’,2,4),(1924,55278,’Perry White’,2,5),(1924,3381,’Pa Kent’,2,6),(1924,12726,’1st Elder’,2,7),(1924,41224,’Non’,0,8),(1924,26483,’Eve Teschmacher’,1,9),(1924,40954,’Vond-Ah’,1,10),(1924,28641,’General Zod’,2,11),(1924,85042,’Ma Kent’,1,12),(1924,13326,’Lara’,1,13),(1924,53088,’Young Clark Kent’,2,14),(1924,1067,’Jimmy Olsen’,2,15),(1924,31364,’Ursa’,1,16),(1924,19463,’2nd Elder’,2,17),(1924,101919,’3rd Elder’,2,18),(1924,27165,’4th Elder’,2,19),(1924,1230579,’5th Elder’,0,20),(1924,1231170,’6th Elder’,0,21),(1924,1220359,’7th Elder’,2,22),(1924,1613400,’9th Elder’,1,23),(1924,30709,’10th Elder’,2,24),(1924,1681406,’11th Elder’,0,25),(1924,1681410,’Baby Kal-El’,0,26),(1924,180137,’Baby Clark Kent’,2,27),(1924,1246209,’Lana Lang’,0,28),(1924,1681411,’Coach’,0,29),(1924,1681412,’Football Player’,0,30),(1924,1681413,’Team Manager’,0,31),(1924,55911,’1st Editor’,0,32),(1924,228973,’2nd Editor’,0,33),(1924,136039,’1st Reporter’,2,34),(1924,1681414,’2nd Reporter’,0,35),(1924,176093,’3rd Reporter’,0,36),(1924,172962,’4th Reporter’,0,37),(1924,127461,’5th Reporter’,2,38),(1924,1681415,’6th Reporter’,0,39),(1924,1681416,’7th Reporter’,0,40),(1924,61940,’8th Reporter’,0,41),(1924,131083,’1st Copy Boy’,0,42),(1924,81816,’2nd Copy Boy’,0,43),(1924,172695,’1st Secretary’,1,44),(1924,66613,’2nd Secretary’,0,45),(1924,1681417,’Perry\’s Secretary’,0,46),(1924,1681418,’Window Cleaner’,0,47),(1924,1227454,’Rex Reed’,0,48),(1924,1681421,’Mugger’,0,49),(1924,14328,’Officer 1′,2,50),(1924,1250671,’Officer 2′,0,51),(1924,1068099,’Officer 3′,0,52),(1924,1681426,’News Vendor’,0,53),(1924,1600363,’Pilot’,2,54),(1924,202983,’Pimp’,0,55),(1924,196456,’TV Cameraman’,2,56),(1924,38651,’Burglar’,0,57),(1924,1681435,’Patrolman Mooney’,0,58),(1924,1681437,’1st Hood’,0,59),(1924,1681438,’2nd Hood’,0,60),(1924,1681440,’3rd Hood’,0,61),(1924,1550252,’4th Hood’,0,62),(1924,170970,’Desk Sergeant’,2,63),(1924,1390808,’Little Girl’,0,64),(1924,1681444,’Air Force One Pilot’,0,65),(1924,1173817,’Co Pilot’,0,66),(1924,184752,’1st Crewman’,0,67),(1924,1681445,’2nd Crewman’,0,68),(1924,10779,’3rd Crewman’,2,69),(1924,1430038,’Newscaster’,0,70),(1924,1229301,’Newscaster’,0,71),(1924,1080265,’Newscaster’,0,72),(1924,6840,’Major’,2,73),(1924,159013,’Sgt. Hayley’,0,74),(1924,199802,’Lieutenant’,2,75),(1924,141087,’Petty Officer’,2,76),(1924,1607159,’Admiral’,2,77),(1924,117410,’General’,2,78),(1924,7907,’1st Controller’,2,79),(1924,12828,’2nd Controller’,2,80),(1924,33032,’State Senator’,2,81),(1924,1536293,’2nd Senator’,2,82),(1924,184980,’Agent’,0,83),(1924,1123038,’Indian Chief’,0,84),(1924,1681455,’Superchief Driver’,0,85),(1924,199104,’Assistant’,0,86),(1924,1681457,’Power Co. Driver’,0,87),(1924,1049237,’Mate’,0,88),(1924,36118,’Warden’,0,89),(1924,243805,’Ella Lane (uncredited)’,1,90),(1924,32041,’8th Elder’,2,91),(9327,776,’Sherman Klump | Buddy Love’,2,0),(9327,9575,’Carla Purty’,1,1),(9327,5563,’Harlan Hartley’,2,2),(9327,1211,’Dean Richmond’,2,3),(9327,4169,’Reggie Warrington’,2,4),(9327,64343,’Jason’,2,5),(9327,182726,’Dean\’s Secretary’,1,6),(9327,59019,’Ernie Klump Jr.’,2,7),(9327,1077909,’Fit Woman’,0,8),(9327,154874,’Health Instructor’,0,9),(9327,995587,’Asian Man’,2,10),(9327,166838,’Host’,2,11),(9327,179954,’Bartender’,0,12),(9327,154214,’Himself’,2,13),(9327,193580,’Band Leader’,2,14),(9327,116774,’Student’,2,15),(9327,154176,’Student’,2,16),(9327,937565,’Sad Fat Firl’,0,17),(9327,1208039,’Elderly Man in Alumni Receiving Line’,0,18),(9327,9313,’Sexy Girl’,1,19),(9327,42687,’Sexy Girl’,1,20),(8488,2888,’Alex \’Hitch\’ Hitchens’,2,0),(8488,8170,’Sara Melas’,1,1),(8488,32895,’Albert Brennaman’,2,2),(8488,38425,’Allegra Cole’,1,3),(8488,55256,’Casey Sedgewick’,1,4),(8488,55257,’Max’,2,5),(8488,55258,’Cressida Baylor’,1,6),(8488,237885,’Charles Wellington’,0,7),(8488,4688,’Ben’,2,8),(8488,52886,’Vance’,2,9),(8488,5377,’Tanis’,2,10),(8488,203809,’Geoff’,0,11),(8488,52851,’Mandy’,1,12),(8488,6541,’Mr. O\’Brian’,2,13),(8488,19856,’Mika’,0,14),(8488,19208,’Pete’,2,15),(8488,1520857,’Drugstore Clerk’,2,16),(8273,21593,’Jim Levenstein’,2,0),(8273,21595,’Michelle Flaherty’,1,1),(8273,57599,’Steve Stifler’,2,2),(8273,52480,’Paul Finch’,2,3),(8273,21403,’Kevin Myers’,2,4),(8273,31717,’Cadence Flaherty’,1,5),(8273,26510,’Jim\’s Father’,2,6),(8273,54586,’Jim\’s Mother’,1,7),(8273,44830,’Mary Flaherty’,1,8),(8273,20753,’Harold Flaherty’,2,9),(8273,1537,’Grandma’,1,10),(8273,68842,’John’,2,11),(8273,88507,’Justin’,2,12),(8273,38334,’Stifler\’s Mom’,1,13),(8273,170432,’Butch Queen’,2,14),(8839,6886,’Kathleen \’Kat\’ Harvey’,1,0),(8839,8984,’Dr. James Harvey’,2,1),(8839,14702,’Carrigan Crittenden’,1,2),(8839,10713,’Paul \’Dibbs\’ Plutzker’,2,3),(8839,159788,’Stretch (voice)’,2,4),(8839,86434,’Stinkie (voice)’,2,5),(8839,18,’Fatso (voice)’,2,6),(8839,76239,’Vic DePhillippi’,2,7),(8839,158037,’Amber Whitmire’,1,8),(8839,15851,’Amelia Harvey’,1,9),(8839,56057,’Casper (McFadden) (voice)’,2,10),(8839,88599,’Nicky’,2,11),(8839,147496,’Andreas’,2,12),(8839,131667,’Mr. Rugg’,2,13),(8839,161860,’Father Guido Sarducci’,2,14),(8839,1074129,’Mr. Rogers (archive footage)’,0,15),(8839,1074130,’Herself (\’Hard Copy\’)’,0,16),(8839,77581,’Harvey Patient Being Interviewed’,1,17),(8839,1074131,’Reporter (voice)’,0,18),(8839,31365,’The Crypt Keeper (voice)’,2,19),(8839,154158,’Mr. Curtis’,2,20),(8839,1201303,’Student #1′,0,21),(8839,1201304,’Student #2′,0,22),(8839,84495,’Arnold (voice)’,2,23),(8839,1201305,’Drunk in Bar’,0,24),(8839,1201306,’Student’,0,25),(8839,157954,’Phantom’,0,26),(8839,50398,’Casper on Screen’,2,27),(8839,707,’Dr. Raymond Stantz (uncredited)’,2,28),(8839,3198,’Himself (uncredited)’,2,29),(8839,190,’Himself (uncredited)’,2,30),(8839,2461,’Himself (uncredited)’,2,31),(8839,1201310,’Little Red Riding Hood (uncredited)’,0,32),(8839,1201311,’Kid at Party (uncredited)’,0,33),(7303,16866,’Marisa Ventura’,1,0),(7303,5469,’Christopher Chris Marshall’,2,1),(7303,20162,’Caroline Lane’,1,2),(7303,2283,’Jerry Siegel’,2,3),(7303,53280,’Ty Ventura’,2,4),(7303,4432,’Paula Burns’,1,5),(7303,78190,’John Bextrum’,2,6),(7303,1411183,’Stephanie Kehoe’,0,7),(7303,12110,’Rachel Hoffberg’,1,8),(7303,170918,’Veronica Ventura’,1,9),(7303,382,’Lionel Bloch’,2,10),(7303,15109,’Cora’,1,11),(7303,121757,’Leezette’,1,12),(7303,176695,’Clarice’,0,13),(7303,1232500,’Carmen’,1,14),(7303,169264,’Barb’,1,15),(7303,1669775,’Keef Townsend’,0,16),(7303,53281,’Lily Kim’,1,17),(8963,5292,’Lt. Commander Ron Hunter’,2,0),(8963,193,’Captain Frank Ramsey’,2,1),(8963,13525,’Lt. Roy Zimmer, USS Alabama Communications Officer’,2,2),(8963,10477,’Chief of the Boat’,2,3),(8963,110,’Lt. Peter \’WEAPS\’ Ince’,2,4),(8963,4691,’Lt. Bobby Dougherty’,2,5),(8963,27448,’Lt. Darik Westergaurd’,2,6),(8963,113387,’Officer of the Deck Mahoney’,0,7),(8963,154295,’Chief of the Watch Hunsicker’,2,8),(8963,104503,’T.S.O. Billy Linkletter’,2,9),(8963,8540,’Petty Officer First Class Danny Rivetti’,2,10),(8963,17917,’Petty Officer Third Class Russell Vossler’,2,11),(8963,132729,’Bennefield’,2,12),(8963,76546,’Lt. Paul Hellerman’,0,13),(8963,18324,’William Barnes’,2,14),(8963,59300,’Lawson’,2,15),(8963,11864,’Seaman Grattam’,2,16),(8963,35091,’Petty Officer Hilaire’,2,17),(1402,2888,’Chris Gardner’,2,0),(1402,120724,’Christopher’,2,1),(1402,9030,’Linda’,1,2),(1402,1990,’Jay Twistle’,0,3),(1402,14852,’Martin Frohm’,2,4),(1402,29685,’Walter Ribbon’,2,5),(1402,198,’Alan Frakesh’,2,6),(1402,54696,’Driver Who Hits Chris’,2,7),(1402,19981,’Big Guy Rodney’,2,8),(1402,33500,’Mrs. Chu’,1,9),(1402,57869,’World\’s Greatest Dad’,2,10),(1402,16580,’Chinese Maintenance Worker’,2,11),(1402,1233979,’Ferrari Owner’,0,12),(1402,1215395,’Tim Brophy’,2,13),(1402,1293034,’Bus Driver’,0,14),(1402,270847,’Doctor’,2,15),(1402,156404,’Roy The Old Neighbor’,0,16),(1402,170740,’Cab Driver’,2,17),(1402,1212758,’Landlord’,0,18),(1402,33501,’Wayne’,2,19),(1402,1129738,’Police Clerk’,0,20),(1402,66652,’Shoe-Spotting Intern’,0,21),(1402,175588,’Businessman’,0,22),(1402,945062,’Young Executive’,2,23),(1402,1569885,’Dr. Strauk’,0,24),(1402,154224,’Shelter Worker’,1,25),(1402,1512520,’Reverend Williams’,0,26),(1402,203086,’Clerk’,2,27),(1402,1392686,’Paul’,0,28),(1402,1439496,’Young Man – Bus Fight’,0,29),(1402,86808,’Other Young Executive’,2,30),(1402,95838,’Doctor at Oakland Memorial Hospital’,2,31),(1402,1062435,’Glide Shelter Worker’,0,32),(1402,1418199,’Policewoman’,0,33),(1402,1325623,’Indian Grocery Clerk’,0,34),(1402,1006368,’Professional Woman’,0,35),(1402,1265809,’Businessman (uncredited)’,0,36),(1402,1528597,’Businesswoman (uncredited)’,0,37),(1402,92058,’Stock Broker (uncredited)’,0,38),(1402,1465480,’Stock Broker (uncredited)’,0,39),(1402,1240831,’Stock Trader (uncredited)’,0,40),(1402,300817,’Bus Rider (uncredited)’,0,41),(1402,60849,’Dean Witter Employee (uncredited)’,2,42),(1402,1502257,’Dean Witter Trader (uncredited)’,0,43),(1402,1659338,’Dean Witter Trader (uncredited)’,2,44),(1402,1525022,’Dean Witter Trader (uncredited)’,0,45),(1402,1278365,’European Tourist (uncredited)’,0,46),(1402,1173830,’Bike Messenger (uncredited)’,0,47),(1402,1149597,’Homeless Youth (uncredited)’,0,48),(9315,1038,’Kyle Pratt’,1,0),(9315,133,’Gene Carson’,2,1),(9315,48,’Captain Rich’,2,2),(9315,57278,’Stephanie’,1,3),(9315,124304,’Obaid’,2,4),(9315,117824,’Ahmed’,2,5),(9315,21711,’Fiona’,1,6),(9315,61854,’Mr. Loud’,2,7),(9315,154166,’Mrs. Loud’,1,8),(9315,61555,’Brittany Loud’,1,9),(9315,60393,’Rhett Loud’,2,10),(9315,946328,’Claudia’,1,11),(9315,159261,’Elias’,2,12),(9315,52019,’Julia’,1,13),(9315,44185,’Estella’,1,14),(8984,3392,’Tom Sanders’,2,0),(8984,3416,’Meredith Johnson’,1,1),(8984,55636,’Bob Garvin’,2,2),(8984,19152,’Philip Blackburn’,2,3),(8984,56485,’Cindy Chang’,1,4),(8984,21366,’Catherine Alvarez’,1,5),(8984,6692,’Susan Hendler’,1,6),(8984,49958,’Stephanie Kaplan’,1,7),(8984,18326,’Mark Lewyn’,2,8),(8984,8266,’Mary Anne Hunter’,1,9),(8984,50402,’Don Cherry’,2,10),(8984,10825,’Chance Geer’,2,11),(795,2963,’Seth’,2,0),(795,5344,’Maggie Rice’,1,1),(795,6861,’Cassiel’,2,2),(795,11901,’Nathaniel Messinger’,2,3),(795,10132,’Jordan’,2,4),(795,11902,’Anne’,1,5),(795,11903,’Teresa Messinger’,1,6),(795,11911,’Susan’,1,7),(795,11913,’Susan\’s Mother’,0,8),(795,11915,’Doctor’,2,9),(795,21475,’Man in Car’,2,10),(795,66499,’Woman in Car’,1,11),(795,14740,’Foreign Visitor in Car’,2,12),(795,78789,’Air Traffic Controller’,2,13),(795,111454,’Jimmy, Anesthesiologist’,2,14),(795,28004,’Tom, Surgical Fellow’,2,15),(24,139,’Beatrix \’The Bride\’ Kiddo’,1,0),(24,140,’O-Ren Ishii’,1,1),(24,2535,’Vernita Green’,1,2),(24,589,’Elle Driver’,1,3),(24,141,’Bill’,2,4),(24,147,’Budd’,2,5),(24,2539,’Sofie Fatale’,1,6),(24,2538,’Gogo Yubari’,1,7),(24,2537,’Hattori Hanzo’,2,8),(24,240171,’Johnny Mo’,0,9),(24,2536,’Earl McGraw’,2,10),(24,2234,’Buck’,2,11),(24,2541,’Tanaka’,2,12),(24,138435,’Bald Guy (Sushi Shop)’,0,13),(24,545394,’Proprietor’,1,14),(24,87312,’Edgar McGraw’,0,15),(24,58616,’Charlie Brown’,0,16),(24,58477,’Trucker’,0,17),(24,79458,’Tokyo Business Man’,0,18),(24,1594799,’Crazy 88 #1 (Miki)’,2,19),(24,2542,’Crazy 88′,2,20),(24,115659,’Crazy 88′,2,21),(24,121751,’Crazy 88′,0,23),(24,1594815,’Crazy 88 #6 (Girl)’,1,24),(24,2544,’Boss Ozawah’,0,25),(24,1369182,’Boss Honda’,0,26),(24,9193,’Boss Benta’,2,27),(24,1389612,’Boss Orgami’,0,28),(24,1624147,’Young 88 (Spanked Boy)’,0,29),(24,4026,’Nikki Bell’,0,30),(24,1314989,’The 5, 6, 7, 8\’s’,0,31),(24,209417,’Okinawa Airline Ticket Agent’,0,32),(24,31082,’O-Ren (anime sequence) (voice)’,0,33),(24,1243811,’Boss Matsumoto (anime sequence) (voice)’,0,34),(24,122726,’Pretty Riki (anime sequence) (voice)’,0,35),(24,87662,’Crazy 88′,2,36),(393,139,’Beatrix \’The Bride\’ Kiddo’,1,0),(393,141,’Bill’,2,1),(393,589,’Elle Driver’,1,2),(393,147,’Budd’,2,3),(393,240171,’Pai Mei’,0,4),(393,2536,’Esteban Vihaio’,2,5),(393,6585,’B.B. Kiddo’,1,6),(393,34721,’Larry Gomez’,2,7),(393,2231,’Rufus’,2,8),(393,140,’O-Ren Ishii’,1,9),(393,2535,’Vernita Green’,1,10),(393,2539,’Sofie Fatale’,1,11),(393,6446,’Tommy Plympton’,2,12),(393,1052339,’Karen Kim’,0,13),(393,565498,’Rocket’,1,14),(393,2541,’Boss Tanaka’,2,15),(393,1369182,’Boss Honda’,0,16),(393,2542,’Boss Koji / Crazy 88′,2,17),(393,2544,’Boss Ozawah’,0,18),(393,9193,’Boss Benta’,2,19),(393,1314989,’The 5, 6, 7, 8\’s’,0,20),(393,58616,’Charlie Brown’,0,21),(393,115659,’Crazy 88′,2,22),(393,121751,’Crazy 88′,0,23),(393,2538,’Gogo’,1,25),(393,1366708,’Clarita’,1,26),(393,87662,’Crazy 88′,2,27),(9618,16483,’Raymond \’Ray\’ Tango’,2,0),(9618,6856,’Gabriel \’Gabe\’ Cash’,2,1),(9618,10742,’Katherine \’Kiki\’ Tango’,1,2),(9618,3785,’Yves Perret’,2,3),(9618,591,’Requin’,2,4),(9618,20904,’Quan’,2,5),(9618,80579,’Face’,2,6),(9618,6451,’Owen’,2,7),(9618,702,’Chinese Gunman’,2,8),(9618,12888,’Fed. Agent Davis’,2,9),(9618,160474,’Lopez’,2,10),(9618,75465,’Wyler’,2,11),(9618,6939,’Capt. Holmes’,2,12),(9618,18071,’Captain Schroeder’,2,13),(9618,15661,’Slinky’,2,14),(9618,156617,’Prosecutor’,1,15),(9374,5064,’Madeline Ashton’,1,0),(9374,62,’Dr. Ernest Menville’,2,1),(9374,18892,’Helen Sharp’,1,2),(9374,6588,’Lisle von Rhoman’,1,3),(9374,51755,’Chagall’,2,4),(9374,68528,’Dakota’,2,5),(9374,42168,’Rose’,1,6),(9374,11871,’Psychologist’,1,7),(9374,17225,’Anna’,1,8),(9374,2226,’Hospital Doctor’,2,9),(9374,1198786,’Maid in Ancient Greece (uncredited)’,0,10),(9374,23967,’Vivian Adams’,0,11),(9374,77015,’Mr. Franklin’,2,12),(9374,43115,’Opening Man’,2,13),(9374,15453,’Psychiatric Patient’,1,14),(9374,55265,’Jay Norman’,2,15),(9374,42557,’Lisle\’s Body Guard’,0,16),(9374,170874,’Lisle\’s Body Guard’,2,17),(9374,1796767,’Greta Garbo’,0,18),(9374,27264,’Second Doctor’,1,19),(8584,18897,’Chon Wang’,2,0),(8584,887,’Roy O\’Bannon’,2,1),(8584,140,’Princess Pei Pei’,1,2),(8584,3982,’Nathan Van Cleef’,2,3),(8584,2974,’Lo Fong’,2,4),(8584,120725,’Imperial Guard’,0,5),(8584,27740,’Wallace’,2,6),(8584,25527,’Andrews’,2,7),(8584,43933,’Blue’,2,8),(8584,123972,’Hooker in Distress’,1,9),(8584,119757,’Fifi’,1,10),(8584,39829,’Royal Interpreter’,2,11),(8584,211568,’Little Feather’,2,12),(8584,52703,’Saddle Rock Sheriff’,2,13),(8584,180467,’Saddle Rock Deputy’,2,14),(8584,87739,’Dream Sequence Hooker’,1,15),(8584,554278,’Indian Wife’,1,16),(8584,114697,’Imperial Guard’,2,17),(8584,554279,’Imperial Guard’,0,18),(8584,96322,’Vasquez’,0,19),(8584,222559,’Sioux Chief’,0,20),(8584,162690,’Chief\’s Sidekick’,0,21),(2320,6856,’Dr. David Grant’,2,0),(2320,23880,’Lt. Colonel Austin Travis’,2,1),(2320,4587,’Jean, Flight Attendant’,1,2),(2320,5723,’Captain Rat’,2,3),(2320,17485,’Dennis Cahill’,2,4),(2320,3977,’Sergeant \’Cappy\’ Matheny’,2,5),(2320,20277,’Nagi Hassan’,2,6),(2320,14592,’Sergeant Louie’,2,7),(2320,41247,’Secretary of Defense Charles White’,2,8),(2320,11089,’Sergeant Baker’,2,9),(2320,43773,’El Sayed Jaffa’,2,10),(2320,23967,’Allison, Flight Attendant’,0,11),(2320,153884,’Nancy, Flight Attendant’,1,12),(2320,22131,’Senator Mavros’,0,13),(2320,149471,’Doc’,2,14),(2320,974432,’Catman’,2,15),(2320,13028,’Secretary of State Jack Douglas’,2,16),(2320,18262,’Airline Marshal George Edwards’,2,17),(1729,18897,’Old Hop / Lu Yan’,2,0),(1729,1336,’The Silent Monk / The Monkey King’,2,1),(1729,11665,’Jason Tripitikas’,2,2),(1729,122503,’Golden Sparrow / Chinatown Girl’,1,3),(1729,109432,’Ni Chang a.k.a White-Haired Witch’,1,4),(1729,52908,’Jade Warlord’,2,5),(1729,122504,’Lupo’,2,6),(1729,234984,’Young Southie’,2,7),(1729,122515,’Southie’,0,8),(1729,122514,’Southie Girl’,0,9),(1729,1075061,’Old Woman’,0,10),(1729,1075063,’Farmer’,0,11),(1729,1075065,’Young Village Man’,0,12),(1729,1075067,’Jade Soldier’,0,13),(1729,1075068,’Inn Keeper’,0,14),(8077,10205,’Ripley’,1,0),(8077,17764,’Dillon’,2,1),(8077,4391,’Clemens’,2,2),(8077,4935,’David’,2,3),(8077,53916,’Aaron’,2,4),(8077,47654,’Golic’,2,5),(8077,53917,’Morse’,2,6),(8077,2714,’Bishop II’,2,7),(8077,14468,’Andrews’,2,8),(8077,109870,’Alien’,2,9),(8077,58758,’Arthur’,2,10),(8077,40043,’Eric’,2,11),(8077,145531,’Rains’,2,12),(8077,27172,’Gregor’,2,13),(8077,24595,’Jude’,2,14),(8077,8399,’Murphy’,2,15),(8077,26854,’Kevin’,2,16),(8077,145532,’Troy’,2,17),(8077,145533,’William’,2,18),(8077,127166,’Frank’,2,19),(8077,145534,’Company Man’,2,20),(8077,145536,’Boggs’,2,21),(8077,145537,’Newt’,0,22),(8077,7497,’Junior’,2,23),(8077,109870,’Lead Alien (uncredited)’,2,24),(8818,3125,’Eva Peru00f3n’,1,0),(8818,3131,’Chu00e9′,2,1),(8818,378,’Juan Peru00f3n’,2,2),(8818,18065,’Agustu00edn Magaldi’,2,3),(8818,1306206,’Dou00f1a Juana’,0,4),(8818,1403819,’Brother Juan’,0,5),(8818,53937,’Blanca’,1,6),(8818,1242153,’Elisa’,0,7),(8818,1278498,’Erminda’,0,8),(8818,1403820,’Young Eva’,0,9),(8818,1403821,’Cipriano Reyes’,0,10),(8818,18015,’Peru00f3n\’s Mistress’,1,11),(8195,380,’Sam’,2,0),(8195,1003,’Vincent’,2,1),(8195,11317,’Deirdre’,1,2),(8195,1640,’Gregor’,2,3),(8195,48,’Spence’,2,4),(8195,378,’Seamus O\’Rourke’,2,5),(8195,33658,’Larry’,2,6),(8195,53955,’Natacha Kirilova’,1,7),(8195,2369,’Jean-Pierre’,2,8),(8195,125024,’Man with the Newspaper’,2,9),(8195,20285,’Mikhi’,2,10),(8195,185257,’Sergi\’s Accomplice’,0,11),(8195,20115,’Man at Exchange’,2,12),(8195,61151,’Dapper Gent’,2,13),(8195,32948,’Sergi’,2,14),(8195,37189,’Arles Little Girl’,1,15),(8195,1056214,’Clown Ice Skater’,0,16),(8195,1056215,’Clown Ice Skater’,0,17),(8195,544397,’The \’Boss\”,0,18),(8195,28690,’Tour Guide’,2,19),(8195,93434,’The \’Target\”,0,20),(8195,1175149,’Arles Messenger’,0,21),(8195,79032,’Girl Hostage’,0,22),(8195,115686,’Tourist in Nice’,2,23),(8195,42545,’Fishmonger (scenes deleted)’,2,24),(8195,145329,’Waiter in Nice’,0,25),(8195,32094,’Woman Hostage’,1,26),(8195,1461743,’Little Screaming Girl’,0,27),(8195,1056669,’Little Girl’,0,28),(8195,64585,’Russian Interpreter’,0,29),(8195,392417,’Ice Rink Security Guard’,2,30),(8195,1581129,’Armed Police Officer’,0,31),(8195,587181,’CRS Captain’,0,32),(1792,1892,’Bob’,2,0),(1792,17141,’Walt’,2,1),(1792,8170,’April’,1,2),(1792,19127,’May’,1,3),(1792,5950,’Morty O\’Reilly’,2,4),(1792,31837,’Officer Fraioli’,2,5),(1792,184180,’MV Hockey Player’,2,6),(1792,38225,’Herself’,1,7),(1792,51391,’Himself’,2,8),(1792,42199,’Mr. Tourist’,2,9),(1792,22126,’Bar Hottie’,1,10),(1792,1395904,’Double Bubble Casting Agent’,1,11),(1792,58928,’Mimmy’,1,12),(1792,28419,’Moe’,0,13),(1792,74934,’Howard’,0,14),(1792,2171,’Griffin Dunne’,0,15),(1792,1229514,’Dicky’,2,16),(1792,203048,’George’,2,17),(1792,21800,’Hockey Stud’,2,18),(1792,1378629,’Umpire #1′,0,19),(1792,1580196,’Umpire #2′,2,20),(1792,30928,’Fox Prexy’,0,21),(1792,1580198,’Officer Reney’,2,22),(1792,20819,’Officer J.J. Hill’,2,23),(1792,13138,’Officer Tommy Johnson’,0,24),(1792,1580230,’Cher\’s Assistant’,1,25),(1792,179508,’Wes’,2,26),(1792,263229,’Executive #1′,2,27),(1792,173810,’Assisting Surgeon’,2,28),(1792,122294,’Pro Golf Tour Caddy’,2,29),(1792,1212613,’Jogger Babe #1′,1,30),(1792,109902,’Jogger Babe #2′,0,31),(1792,1581938,’Jogger Babe #3′,1,32),(1792,1215344,’Casting Agent #2′,1,33),(1792,1319701,’Casting Agent #7′,1,34),(1792,1588839,’Head Surgeon’,0,35),(1792,1426261,’Theatre Patron (uncredited)’,1,36),(1792,25702,’Bus Stop Bombshell’,1,37),(1792,98285,’MV Sideline Fan (uncredited)’,1,38),(1792,5064,’Meryl Streep’,1,39),(3580,11701,’Christine Collins’,1,0),(3580,52886,’J.J. Jones’,2,1),(3580,6949,’Rev. Gustav Briegleb’,2,2),(3580,25879,’S.S. Hahn’,2,3),(3580,39388,’Character’,1,4),(3580,117885,’Walter Collins’,2,5),(3580,85101,’Sandy’,1,6),(3580,52021,’Ben Harris’,2,7),(3580,10132,’Chief James E. Davis’,2,8),(3580,50217,’Detective Lester Ybarra’,2,9),(3580,81681,’Dr. Jonathan Steele’,2,10),(3580,1356750,’Mr. Clay’,0,11),(3580,1448560,’Arthur Hutchins’,0,12),(3580,159454,’Chairman Thorpe’,2,13),(3580,1569710,’Operator’,0,14),(3580,1569711,’Operator’,0,15),(3580,162878,’Operator’,0,16),(3580,1047161,’Operator’,0,17),(3580,1569718,’Girl on Tricycle’,0,18),(3580,77597,’Man at Diner’,0,19),(3580,168331,’Police Matron at Train’,1,20),(3580,1352950,’Reporter at Train’,0,21),(3580,45386,’Janet Hutchins’,1,22),(3580,170185,’Jury Foreman’,2,23),(3580,53778,’Warden’,2,24),(3580,163774,’Mayor Cryer’,2,25),(3580,155018,’Bob Clark’,2,26),(3580,1569735,’Rachel Clark’,0,27),(3580,1172813,’Mountie’,0,28),(3580,120859,’Prison Guard’,0,29),(3580,162828,’Prison Guard’,2,30),(3580,152926,’Cook’,0,31),(3580,1986,’Dr. Earl W. Tarr’,2,32),(3580,1215378,’Dr. John Montgomery’,2,33),(3580,154625,’Mrs. Fox’,1,34),(3580,129013,’Officer Morelli’,2,35),(3580,1498427,’Desk Sergeant’,2,36),(3580,94904,’Reception Nurse’,1,37),(3580,453,’Examination Nurse’,1,38),(3580,46814,’Patient’,1,39),(3580,142294,’Gordon Northcott’,2,40),(3580,56419,’Sanford Clark’,2,41),(3580,182680,’Ticket Vendor’,2,42),(3580,203207,’Administrator’,0,43),(3580,144162,’Abducted Kid’,0,44),(3580,62101,’Male Orderly’,0,45),(3580,1409321,’Medication Nurse’,0,46),(3580,223280,’Backup Detective’,0,47),(3580,23533,’News Vendor’,2,48),(3580,1517894,’Mountie’,0,49),(3580,1378664,’Mountie’,0,50),(3580,80301,’Man on Street’,2,51),(3580,116480,’Councilman’,0,52),(3580,1278393,’Reporter at Hearing’,0,53),(3580,1755878,’Reporter at Precinct’,0,54),(3580,12539,’Mrs. Leanne Clay’,1,55),(3580,93345,’Judge’,2,56),(3580,55494,’Winslow Boy’,0,57),(3580,1367102,’La City Councilman (uncredited)’,2,58),(3580,116446,’Screaming Boy (voice, uncredited)’,2,59),(3580,74523,’Interviewer (uncredited)’,0,60),(3580,1230878,’Councilman\’s Wife (uncredited)’,0,61),(3580,1224686,’Man on Jury (uncredited)’,0,62),(3580,1513747,’Train Passenger (uncredited)’,0,63),(3580,1278389,’Train Passenger (uncredited)’,0,64),(3580,1567072,’Church Member / Protestor / Witness (uncredited)’,0,65),(3580,1223916,’Execution Observer (uncredited)’,0,66),(3580,228458,’Protester / Man on Corner with Newspaper Smoking (uncredited)’,2,67),(3580,210344,’Switchboard Operator (uncredited)’,1,68),(3580,1504568,’Witness (uncredited)’,0,69),(3580,1275524,’Reporter (uncredited)’,0,70),(3580,1453555,’Northcott Defense Counsel (uncredited)’,2,71),(3580,1209730,’Machine Gun Assassination Squad Leader (uncredited)’,0,72),(3580,1307739,’Orderly #2 (uncredited)’,0,73),(9566,380,’Gil Renard’,2,0),(9566,10814,’Bobby Rayburn’,2,1),(9566,6913,’Jewel Stern’,1,2),(9566,5723,’Manny’,2,3),(9566,1121,’Juan Primo’,2,4),(9566,38160,’Ellen Renard’,1,5),(9566,15824,’Tim’,2,6),(9566,76470,’Garrity’,2,7),(9566,29685,’Bernie’,2,8),(9566,1216752,’Leon, the Bartender’,0,9),(9833,17276,’The Phantom’,2,0),(9833,4730,’Christine Daau00e9′,1,1),(9833,17178,’Raoul, Vicomte de Chagny’,2,2),(9833,8436,’Madame Giry’,1,3),(9833,6613,’Carlotta’,1,4),(9833,8785,’Firmin’,2,5),(9833,4001,’Andre’,2,6),(9833,4318,’Piangi’,2,7),(9833,106049,’Meg Giry’,1,8),(4517,112,’Elizabeth I’,1,0),(4517,2296,’Sir Walter Raleigh’,2,1),(4517,118,’Sir Francis Walsingham’,2,2),(4517,6366,’Sir Christopher Hatton’,2,3),(4517,2441,’Amyas Paulet’,2,4),(4517,37260,’Elizabeth Throckmorton’,1,5),(4517,7026,’Robert Reston’,2,6),(4517,31384,’Philip II’,2,7),(4517,2206,’Queen Mary’,1,8),(4517,37632,’Anthony Babington’,2,9),(4517,40311,’Calley’,2,10),(4517,23429,’William Walsingham’,2,11),(4517,118037,’Archduke Charles’,0,12),(4517,1423944,’Count Georg von Helfenstein’,0,13),(4517,59081,’Dr. John Dee’,2,14),(4517,1188323,’Spanish Minister’,2,15),(4517,192940,’Ursula Walsingham’,1,16),(4517,940,’Lord Howard’,2,17),(4517,55585,’Torturer’,2,18),(4517,117654,’Cellarman’,2,19),(4517,102375,’Admiral Sir William Winter’,2,20),(4517,1793023,’Walsingham\’s Servant’,0,21),(8202,6885,’Aeon Flux’,1,0),(8202,20982,’Trevor Goodchild’,2,1),(8202,9012,’Oren Goodchild’,2,2),(8202,2598,’Sithandra’,1,3),(8202,3910,’Handler’,1,4),(8202,4935,’Keeper’,2,5),(8202,23496,’Una Flux’,1,6),(8202,25448,’Freya’,1,7),(8202,19868,’Giroux’,2,8),(8202,54024,’Claudius’,2,9),(8202,54023,’Inari’,1,10),(8202,1120509,’Scientist’,1,11),(8202,43170,’Scientist’,2,12),(8202,1120510,’Scientist’,2,13),(8202,238265,’Chemist’,0,14),(8202,1856,’Gardener’,2,15),(8202,40640,’Weaver’,1,16),(8202,50254,’Commander Puhl’,2,17),(8202,192907,’Lieutenant Ord’,2,18),(8202,1828390,’Armory Soldier (as Bruno Bruni)’,0,19),(8202,1873542,’Bregnan Police Captain’,0,20),(8202,25415,’Policeman’,0,21),(8202,1873543,’Neighbor’,0,22),(8202,987260,’Man in Marketplace’,2,23),(8202,1873544,’Monican Spy’,0,24),(8202,1214855,’Monican Spy’,0,25),(8202,62892,’Sasha Prillo\’s Father’,2,26),(8202,28420,’Sasha Prillo\’s Mother’,1,27),(8202,1873546,’Sasha Prillo (Baby Una)’,0,28),(8202,1700563,’Guard’,0,29),(8202,54047,’Soldier’,2,30),(8202,963487,’Young Trevor’,2,31),(8202,1873548,’Young Oren’,0,32),(8202,1873549,’Boy at Wall’,0,33),(8202,1873551,’Boy\’s Mother’,0,34),(8202,16943,’Crier’,0,35),(8202,1873554,’Crier’,0,36),(8202,1072105,’Pregnant Woman’,0,37),(8202,1873555,’Husband’,0,38),(8202,1148961,’Doctor’,0,39),(8202,61816,’Bregnan Victim’,0,40),(8202,1873556,’Checkpoint Woman’,0,41),(8202,902,’Monican Man’,2,42),(8202,28951,’Monican Man’,0,43),(8202,1873557,’Monorail Passenger’,0,44),(8202,73058,’Monorail Passenger’,0,45),(8202,1873558,’Monorail Passenger’,0,46),(8202,1329774,’Monorail Passenger’,2,47),(8202,19882,’Monorail Passenger (as Lilja Lu00f6ffler)’,0,48),(8202,1873559,’Monorail Passenger’,0,49),(8202,48151,’Monorail Passenger’,0,50),(8202,1054360,’Monorail Passenger (as Joachim Schu00f6nfeld)’,0,51),(2841,2405,’Mathilde’,1,0),(2841,16790,’Manech’,2,1),(2841,2413,’Sylvain’,2,2),(2841,17901,’Bu00e9nu00e9dicte’,1,3),(2841,18177,’Pierre-Marie Rouviu00e8res’,2,4),(2841,13689,’Germain Pire’,2,5),(2841,8293,’Tina Lombardi’,1,6),(2841,28462,’Ange Bassignano’,0,7),(2841,1038,’Elodie Gordes’,1,8),(2841,28463,’Benjamin Gordes’,2,9),(2841,27978,’Six-Soux’,2,10),(2841,2407,’Un Breton’,2,11),(2841,28857,’Bastoche’,2,12),(2841,27978,’Six Sous’,2,13),(2841,14606,’Cu00e9lestin Poux’,2,14),(2841,17257,’la soeur de Gu00fcnther’,1,15),(2841,13687,’Commandant Lavrouye’,2,16),(2841,24891,’Benou00eet Notre-Dame’,2,17),(2841,583312,’Esperanza’,0,18),(2841,16922,’Le facteur’,0,19),(2841,37920,’Vu00e9ronique Passavant’,1,20),(2841,20082,’P\’tit Louis’,2,21),(2841,2416,’Le curu00e9′,2,22),(2841,24772,’Madame Desrochelles’,1,23),(2841,32092,’Le vieil homme sur le champ de bataille’,0,24),(2841,10698,’Capitaine Favourier’,2,25),(2841,66032,’Favart’,2,26),(2841,47822,’Chardolot’,2,27),(2841,948741,’Philippot’,0,28),(2841,145738,’L\’officier des archives’,0,29),(2841,5440,’Thouvenel’,2,30),(2841,230076,’Le mu00e9decin militaire’,0,31),(2841,1682974,’Mathilde 10 ans’,0,32),(2841,238953,’Manech 13 ans’,0,33),(2841,66838,’Narrator (voice)’,1,34),(2841,240388,’Lieutenant Estrangin’,0,35),(2841,1682977,’La prostituu00e9e du cafu00e9′,0,36),(2841,131992,’L\’officier assassinu00e9′,0,37),(2841,1683024,’Mariette Notre Dame’,0,38),(2841,948953,’Le curu00e9 de Milly’,0,39),(2841,554596,’Le directeur de la prison’,0,40),(2841,654,’Jean Desrochelles’,2,41),(2841,96416,’Le camarade de Chardolot’,0,42),(2841,1683027,’Le prisonnier allemand’,0,43),(2841,1114080,’Un fossoyeur’,2,44),(2841,579306,’Un fossoyeur’,0,45),(2841,81817,’Le sergent’,0,46),(2841,968379,’Un poilu’,2,47),(2841,1032075,’Un poilu’,0,48),(2841,1683645,’Un poilu’,0,49),(2841,1683646,’Un poilu’,0,50),(2841,577431,’Un poilu’,2,51),(2841,583379,’Le corse menau00e7ant’,2,52),(2841,1176105,’Le blagueur du train’,0,53),(2841,1117146,’Un soldat flouu00e9′,0,54),(2841,1683649,’Un soldat flouu00e9′,0,55),(2841,1664225,’L\’ordonnance’,0,56),(2841,17618,’La maquerelle’,0,57),(2841,1150505,’Le couple bourgeois’,0,58),(2841,1439436,’Le couple bourgeois’,0,59),(2841,1683689,’Le mitrailleur allemand’,0,60),(2841,1455127,’L\’infirmiu00e8re’,0,61),(2841,1683690,’Une fille de joie’,0,62),(2841,65572,’Une fille de joie’,2,63),(2841,550017,’Un brancardier’,0,64),(2841,534831,’Un brancardier’,0,65),(2841,1683702,’L\’Allemand transperu00e7u00e9′,0,66),(2841,1683705,’Georges Cornu’,0,67),(2841,1683707,’Hu00e9lu00e8ne Pire’,0,68),(802,2091,’Humbert Humbert’,2,0),(802,12445,’Dolores u201eLolitau201c Haze’,1,1),(802,7632,’Charlotte Haze’,1,2),(802,12446,’Clare Quilty’,2,3),(802,9878,’Nurse Mary Lore’,1,4),(802,12447,’Tom’,2,5),(802,12448,’Jean Farlow’,1,6),(802,12449,’John Farlow’,0,7),(802,12450,’Richard T. \’Dick\’ Siller’,2,8),(802,12451,’George Swine’,2,9),(802,12452,’Mrs. Starch’,1,10),(242,1158,’Don Michael Corleone’,2,0),(242,3092,’Kay Adams Michelson’,1,1),(242,1271,’Don Vincent \’Vinnie\’ Mancini-Corleone’,2,2),(242,3094,’Connie Corleone-Rizzi’,1,3),(242,1769,’Mary Corleone’,1,4),(242,3265,’Don Altobello’,2,5),(242,3266,’Joey Zasa’,2,6),(242,3267,’B.J. Harrison’,2,7),(242,2233,’Grace Hamilton’,1,8),(242,3268,’Cardinal Lamberto’,2,9),(242,3269,’Anthony Vito Corleone/Turiddu’,0,10),(242,168632,’Archbishop Gilday’,2,11),(242,3174,’Al Neri’,2,12),(242,32058,’Frederick Keinszig’,2,13),(242,161860,’Dominic Abbandando’,2,14),(242,47879,’Father Andrew Hagen’,2,15),(242,44860,’Calo’,2,16),(242,103060,’Mosca’,0,17),(242,32676,’Don Tommasino’,0,18),(242,122022,’Don Licio Lucchesi’,0,19),(242,982447,’Spara’,2,20),(242,3144,’Johnny Fontane’,0,21),(242,156431,’Lou Pennino’,2,22),(242,982212,’Twin Bodyguard Armand’,2,23),(242,39007,’Twin Bodyguard Francesco’,0,24),(242,1169885,’Anthony \’The Ant\’ Squigliaro’,0,25),(242,1169886,’Father John’,0,26),(242,196286,’Party Politician’,0,27),(242,167363,’Lucy Mancini’,1,28),(242,1169887,’Francesca Corleone’,0,29),(242,1169888,’Kathryn Corleone’,0,30),(242,982089,’Teresa Hagen’,1,31),(242,133853,’Albert Volpe’,2,32),(242,1209294,’Frank Romano’,0,33),(242,37254,’Leo Cuneo’,2,34),(242,46418,’Marty Parisi’,2,35),(242,2234,’Mask #2′,2,36),(242,31896,’Douglas Michelson’,2,37),(9621,114,’Drew Baylor’,2,0),(9621,205,’Claire Colburn’,1,1),(9621,4038,’Hollie Baylor’,1,2),(9621,7447,’Phil DeVoss’,2,3),(9621,14888,’Bill Banyon’,2,4),(9621,20750,’Heather Baylor’,1,5),(9621,10860,’Ellen Kishmore’,1,6),(9621,15684,’Jessie Baylor’,2,7),(9621,15032,’Chuck Hasboro’,2,8),(9621,1215524,’Aunt Dora’,0,9),(9621,1086871,’Mitch Baylor’,0,10),(9621,84848,’Uncle Dale’,0,11),(9621,1205174,’Rusty’,2,12),(1819,11661,’Molly’,1,0),(1819,887,’Dupree’,2,1),(1819,2876,’Carl’,2,2),(1819,3392,’Mr. Thompson’,2,3),(1819,19274,’Neil’,2,4),(1819,19275,’Annie’,1,5),(1819,19276,’Toshi’,0,6),(1819,19277,’Tony’,2,7),(1819,19278,’Mark’,2,8),(1819,19279,’Himself’,2,9),(1819,19280,’Thompson\’s Secretary’,1,10),(1819,19281,’Carl\’s Secretary’,1,11),(1819,1653759,’Aaron’,2,12),(1819,1763429,’Wedding Guest’,1,13),(8536,193,’Lex Luthor’,2,0),(8536,20006,’Superman / Clark Kent’,2,1),(8536,13726,’Otis’,2,2),(8536,55278,’Perry White’,2,3),(8536,31364,’Ursa’,1,4),(8536,20011,’Lois Lane’,1,5),(8536,41224,’Non’,0,6),(8536,26483,’Eve Teschmacher’,1,7),(8536,13326,’Lara’,1,8),(8536,10224,’Sheriff’,2,9),(8536,5249,’The President’,2,10),(8536,1067,’Jimmy Olsen’,2,11),(8536,28641,’General Zod’,2,12),(8536,66613,’Leueen’,0,13),(8536,1697241,’Alice’,0,14),(8536,591881,’Spokesman’,0,15),(8536,189430,’Terrorist’,2,16),(8536,1493073,’Terrorist’,0,17),(8536,10983,’Terrorist’,2,18),(8536,1697242,’Nun’,0,19),(8536,1697243,’Gendarme’,0,20),(8536,18775,’C.R.S. Man’,2,21),(8536,1697244,’Cab Driver’,0,22),(8536,7907,’Controller’,2,23),(8536,10657,’Controller’,2,24),(8536,1430007,’Nate’,0,25),(8536,1415957,’Boris’,0,26),(8536,58475,’Prison Warder’,2,27),(8536,77637,’Bell Boy’,2,28),(8536,198873,’Mother’,0,29),(8536,85367,’Jason’,0,30),(8536,1641628,’Father’,0,31),(8536,27165,’Krypton Elder’,2,32),(8536,1231167,’Fisherman’,0,33),(8536,35258,’Deputy’,0,34),(8536,1536293,’J.J.’,2,35),(8536,1424575,’Boog’,0,36),(8536,186212,’Man at Bar’,0,37),(8536,1221006,’Willie’,0,38),(8536,1697258,’Dino’,0,39),(8536,12829,’Reporter’,2,40),(8536,662,’General’,0,41),(8536,1184168,’President\’s Aide’,0,42),(8536,126536,’Presidential Imposter’,0,43),(8536,11842,’Diner Owner’,0,44),(8536,1641635,’Waitress’,0,45),(8536,265723,’Rocky’,2,46),(8536,28871,’Newsvendor’,2,47),(8536,1641637,’Kid’,0,48),(8536,1641640,’Kid’,0,49),(8046,880,’Larry Gigli’,2,0),(8046,16866,’Ricki’,1,1),(8046,21180,’Brian’,2,2),(8046,53647,’Mother’,1,3),(8046,37157,’Louis’,0,4),(8046,53646,’Robin’,0,5),(8046,1158,’Starkman’,2,6),(8046,4690,’Det. Stanley Jacobellis’,2,7),(8046,18359,’Man in Dryer’,2,8),(8046,111243,’Laundry Customer’,2,9),(8046,156185,’Man in Debt’,2,10),(8046,1474435,’Adult Care Resident’,0,11),(8046,138606,’High School Kid’,2,12),(8046,1233673,’High School Kid’,0,13),(8046,1523090,’High School Kid’,0,14),(8046,1523091,’High School Kid’,0,15),(8046,1523092,’High School Kid’,0,16),(8046,1523093,’High School Kid’,0,17),(1717,2228,’Willie Stark’,2,0),(1717,9642,’Jack Burden’,2,1),(1717,204,’Anne Stanton’,1,2),(1717,4691,’Tiny Duffy’,2,3),(1717,1276,’Sadie Burke’,1,4),(1717,103,’Adam Stanton’,2,5),(1717,4173,’Judge Irwin’,2,6),(1717,1907,’Mrs. Burden’,1,7),(1717,17183,’Roderick Sugar Boy Ellis’,2,8),(1717,18796,’Tom Stark’,2,9),(1717,18797,’Tennis Boy’,0,10),(1717,18798,’Adam Stanton, Age 11′,0,11),(479,2231,’John Shaft’,2,0),(479,2954,’Peoples Hernandez’,2,1),(479,3894,’Walter Wade, Jr.’,2,2),(479,6485,’Rasaan’,2,3),(479,6486,’Jack Roselli’,2,4),(479,3051,’Diane Palmieri’,1,5),(479,6487,'(Uncle) John Shaft’,2,6),(479,3798,’Judge Dennis Bradford’,2,7),(479,6541,’Walter Wade Senior’,2,8),(479,27011,’Carmen Vasquez’,1,9),(479,6906,’Luger’,2,10),(479,6558,’Lenox Lounge Patron’,2,11),(9444,5344,’Anastasia (voice)’,1,0),(9444,3036,’Dimitri (voice)’,2,1),(9444,1062,’Rasputin (voice)’,2,2),(9444,14730,’The Dowager Empress Marie (voice)’,1,3),(9444,5587,’Bartok (voice)’,2,4),(9444,7090,’Vladimir (voice)’,2,5),(9444,40389,’Sophie (voice)’,1,6),(9444,205,’Young Anastasia (voice)’,1,7),(9444,8263,’Phlegmenkoff / Old Woman (voice)’,1,8),(9444,7089,’Young Dimitri (voice)’,2,9),(9444,22082,’Young Anastasia (singing voice)’,1,10),(9444,18999,’Ensemble and Character Vocals (voice)’,2,11),(824,2227,’Satine’,1,0),(824,3061,’Christian’,2,1),(824,5723,’Toulouse-Lautrec’,2,2),(824,388,’Harold Zidler’,2,3),(824,12206,’The Duke’,2,4),(824,12211,’The Doctor’,0,5),(824,12210,’The Unconscious Argentinean’,2,6),(824,12212,’Satie’,2,7),(824,10756,’Marie’,1,8),(824,12209,’Nini Legs in the Air’,1,9),(824,548125,’Arabia’,0,10),(824,57575,’China Doll’,0,11),(824,953445,’Mu00f4me Fromage’,1,12),(824,1371,’Audrey’,2,13),(824,12207,’The Green Fairy’,1,14),(824,12208,’Voice of the Green Fairy’,2,15),(824,58758,’Le Chocolat’,2,16),(824,75258,’Warner’,0,17),(824,1280478,’Le Petomane’,2,18),(824,127137,’Stage Manager’,2,19),(824,97330,’Satine\’s Doctor’,2,20),(824,108924,’Christian\’s Father’,2,21),(824,975417,’Landlady’,1,22),(824,75428,’Man in the Moon’,0,23),(824,77886,’Voice of Man in the Moon’,2,24),(824,1250098,’La Petite Princesse’,0,25),(824,1280479,’Orchestra Member’,0,26),(824,1280480,’Character Rake’,0,27),(824,1233684,’Character Rake’,2,28),(824,93520,’Character Rake’,2,29),(824,65010,’Prostitute’,1,30),(824,1280481,’Absinthe Drinker / Guitarist’,0,31),(824,1280482,’Montmartre Dance Team’,0,32),(824,1280483,’Montmartre Dance Team’,0,33),(824,1280484,’Montmartre Dance Team’,0,34),(824,1280485,’Montmartre Dance Team’,0,35),(824,1280486,’Montmartre Dance Team’,0,36),(824,1280487,’Montmartre Dance Team’,0,37),(824,1280488,’Montmartre Dance Team’,0,38),(824,1280489,’Montmartre Dance Team’,0,39),(824,1280490,’Montmartre Dance Team’,0,40),(824,1280491,’Montmartre Dance Team’,0,41),(824,1280492,’Montmartre Dance Team’,0,42),(824,1280493,’Montmartre Dance Team’,0,43),(824,1280494,’Montmartre Dance Team’,0,44),(824,1280495,’Montmartre Dance Team’,0,45),(824,1280496,’Montmartre Dance Team’,0,46),(824,543657,’Montmartre Dance Team’,0,47),(824,1280497,’Montmartre Dance Team’,0,48),(824,1280498,’Montmartre Dance Team’,0,49),(824,1280499,’Montmartre Dance Team’,0,50),(824,1280500,’Montmartre Dance Team’,0,51),(824,1280501,’Montmartre Dance Team’,0,52),(824,1280502,’Montmartre Dance Team’,0,53),(824,1280503,’Montmartre Dance Team’,0,54),(824,970752,’Montmartre Dance Team’,2,55),(824,1280504,’Paris Dance Team’,0,56),(824,174283,’Paris Dance Team’,0,57),(824,1280505,’Paris Dance Team’,1,58),(824,1280506,’Paris Dance Team’,0,59),(824,1280507,’Paris Dance Team’,0,60),(824,1280508,’Paris Dance Team’,0,61),(824,1280509,’Paris Dance Team’,0,62),(824,1280510,’Paris Dance Team’,0,63),(824,1280511,’Paris Dance Team’,0,64),(824,1280512,’Paris Dance Team’,0,65),(824,1280513,’Paris Dance Team’,0,66),(824,1280514,’Paris Dance Team’,0,67),(824,1280515,’Paris Dance Team’,0,68),(824,1280516,’Paris Dance Team’,0,69),(824,1280517,’Paris Dance Team’,0,70),(824,1280518,’Paris Dance Team’,0,71),(824,1280519,’Paris Dance Team’,0,72),(824,1280520,’Paris Dance Team’,0,73),(824,1000227,’Paris Dance Team’,2,74),(824,1280521,’Paris Dance Team’,0,75),(824,1280522,’Paris Dance Team’,0,76),(824,1280523,’Paris Dance Team’,0,77),(824,1280524,’Paris Dance Team’,0,78),(824,1280525,’Paris Dance Team’,0,79),(824,1280526,’Paris Dance Team’,0,80),(824,1280527,’Paris Dance Team’,0,81),(824,1280528,’Paris Dance Team’,0,82),(824,1280529,’Tabasco Brother’,0,83),(824,1280530,’Tabasco Brother’,0,84),(824,1280531,’Tabasco Brother’,0,85),(824,1280532,’Tabasco Brother’,0,86),(824,1280533,’Tabasco Brother’,0,87),(824,1280534,’Tabasco Brother’,0,88),(824,1280535,’Tabasco Brother’,0,89),(824,1280536,’Tabasco Brother’,0,90),(824,1280537,’Cocoliscious Brother’,0,91),(824,1280538,’Cocoliscious Brother’,0,92),(824,1280539,’La Ko Ka Chau’,0,93),(824,1280540,’Twin’,0,94),(824,1280541,’Twin’,0,95),(824,1280542,’Waiter’,0,96),(824,982313,’Waiter’,0,97),(824,1280543,’Waiter’,0,98),(824,1231101,’Latin Dancer’,0,99),(3683,11864,’John \’Doc\’ Bradley’,2,0),(3683,33527,’Corporal Ira Hayes’,2,1),(3683,17772,’Corporal Rene Gagnon’,2,2),(3683,21179,’Sergeant Keyes Beech’,2,3),(3683,21134,’Bud Gerber’,2,4),(3683,12834,’Sergeant Mike Strank’,2,5),(3683,478,’Private Ralph Ignatowski’,2,6),(3683,8167,’Sergeant Hank Hansen’,2,7),(3683,418,’Colonel Chandler Johnson’,2,8),(3683,2203,’Captain Dave Severance’,2,9),(3683,15091,’Pauline Harnois Gagnon’,1,10),(3683,4445,’General Alexander Vandegrift’,2,11),(3683,26008,’General Holland Smith’,2,12),(3683,19239,’Belle Block’,1,13),(3683,33528,’Private Franklin Sousley’,2,14),(3683,239996,’Harlon Block’,2,15),(3683,33530,’Corporal Chuck Lindberg’,0,16),(3683,33532,’Gust’,2,17),(3683,43366,’Mrs. Strank’,1,18),(3683,5151,’Mother Gagnon’,1,19),(3683,33531,’Sergeant Boots Thomas’,2,20),(3683,6166,’Lieutenant Harold Schrier’,2,21),(3683,33533,’Senator’,2,22),(3683,151124,’Local Politician’,0,23),(3683,1444527,’Bar Car Beauty’,0,24),(3683,1279471,’Bar Car Beauty #2′,0,25),(3683,928572,’Lundsford’,2,26),(3683,171652,’Secretary Forrestal’,2,27),(1950,8783,’Huck Cheever’,2,0),(1950,69597,’Billie Offer’,1,1),(1950,3087,’L. C. Cheever’,2,2),(1950,23959,’Suzanne Offer’,1,3),(1950,3223,’Telephone Jack’,2,4),(1950,17184,’Pawnbroker’,1,5),(1950,52117,’Ready Eddie’,2,6),(1950,335,’Ray Zumbro’,2,7),(640,6193,’Frank Abagnale Jr.’,2,0),(640,31,’Carl Hanratty’,2,1),(640,4690,’Frank Abagnale’,2,2),(640,8349,’Roger Strong’,2,3),(640,136761,’Paula Abagnale’,1,4),(640,9273,’Brenda Strong’,1,5),(640,9274,’Jack Barnes’,2,6),(640,1990,’Earl Amdursky’,0,7),(640,9275,’Tom Fox’,2,8),(640,9276,’Paul Morgan’,2,9),(640,8191,’Special Agent Witkins’,2,10),(640,9277,’Assistant Director Marsh’,2,11),(640,9278,’Cheryl Ann’,1,12),(640,9279,’Carol Strong’,1,13),(640,9280,’Marci’,1,14),(640,9281,’Lucy’,1,15),(640,9282,’Warden Garren’,2,16),(640,9283,’Darcy’,1,17),(640,177623,’Loan Officer’,2,18),(640,114025,’Football Player’,2,19),(640,52936,’Joanna’,1,20),(640,1236068,’Girl #1′,0,21),(640,1689355,’Student #1 (as Jonathan Danker)’,0,22),(640,1852805,’Teacher’,0,23),(640,9284,’Principal Evans’,2,24),(640,3283,’Ms. Davenport’,0,25),(640,133771,’Bartender’,0,26),(640,747,’Mr. Kesner’,0,27),(640,2072,’Mrs. Lavalier’,1,28),(640,1852806,’Ticket Clerk’,0,29),(640,1173999,’Hotel Manager’,0,30),(640,1818380,’Ashley’,0,31),(640,62003,’Pilot’,2,32),(640,119716,’Mr. Rosen’,0,33),(640,1852810,’Female Bank Teller’,0,34),(640,233298,’Front Desk Clerk’,2,35),(640,108716,’Young Female Teller’,0,36),(640,152864,’Manager’,0,37),(640,94904,’Receptionist’,1,38),(640,1852811,’TWA Ticket Agent’,0,39),(640,93958,’Auctioneer’,2,40),(640,80978,’Motel Owner’,2,41),(640,78151,’Salesman’,2,42),(640,81217,’Riverbend Woman’,1,43),(640,1786339,’Riverbend Woman’,0,44),(640,1852812,’Terry’,0,45),(640,1852813,’Party Guy’,0,46),(640,52885,’Young Doctor’,2,47),(640,111387,’Victor Griffith’,2,48),(640,1852814,’Party Girl’,0,49),(640,1852815,’Dr. Ashland’,0,50),(640,1564989,’Emergency Nurse’,0,51),(640,61854,’Doctor Harris’,2,52),(640,1852816,’Young Patient’,0,53),(640,155295,’FBI Agent’,2,54),(640,156980,’Bar Examiner’,1,55),(640,128209,’Judge’,2,56),(640,54850,’Kid’,2,57),(640,75325,’Mr. Hendricks (as Patrick T. O\’Brien)’,2,58),(640,109151,’Monica’,1,59),(640,1226231,’Debra Jo’,0,60),(640,1494152,’Heather’,0,61),(640,81133,’Miggy’,1,62),(640,1217939,’FBI Agent’,2,63),(640,97446,’FBI Agent (as James Dumont)’,2,64),(640,1852817,’FBI Agent’,0,65),(640,166055,’Secretary’,1,66),(640,1213153,’Abe Penner’,0,67),(640,127536,’Ira Penner’,2,68),(640,189735,’Penner Brother’,0,69),(640,1247688,’TWA Stewardess’,0,70),(640,109762,’Captain Oliver’,0,71),(640,36803,’Pilot’,2,72),(640,149829,’Pilot’,2,73),(640,29612,’Little Girl’,1,74),(640,1852819,’NY Savings Bank Manager’,0,75),(640,41506,’Female Teller’,0,76),(640,15034,’Teen Waiter’,2,77),(640,19444,’Man #3′,0,78),(640,63985,’Ilene’,2,79),(640,77462,’Candy’,1,80),(640,1341865,’Hotel Maid’,1,81),(640,2211,’FBI Agent (as Gerald Molen)’,2,82),(640,1211668,’Little Girl on Street’,1,83),(640,188526,’Blind Man’,0,84),(640,1852835,’Young Man’,0,85),(640,86929,’Peggy’,1,86),(640,9261,’French Policeman (as Frank W. Abagnale)’,0,87),(640,1157125,’Prison Guard (as Roger Lu00e8ger)’,0,88),(640,1030298,’French Police Captain’,0,89),(640,1852836,’French Police’,0,90),(640,553892,’French Police (as Guy Daniel Tremblay)’,0,91),(640,1050988,’French Police (as Alexandre Bisping)’,2,92),(640,142772,’French Police’,0,93),(640,1852837,’Maitre D\”,0,94),(640,1852838,’Kid’,0,95),(640,1852839,’Party Twin’,0,96),(640,1852840,’Party Twin’,0,97),(640,1852841,’Piano Player / Singer’,0,98),(640,1852842,’Piano Player’,0,99),(640,1852843,’Co-Pilot’,0,100),(640,1226864,’Himself (as Joe Garagiola)’,0,101),(640,121019,’Herself (as Kitty Carlisle Hart)’,0,102),(640,1852844,’Choir’,0,103),(640,1852845,’Choir’,0,104),(640,1852846,’Choir’,0,105),(640,1852847,’Choir’,0,106),(640,1852848,’Choir’,0,107),(640,1852849,’Choir’,0,108),(640,1852850,’Choir’,0,109),(640,1852851,’Choir’,0,110),(640,1852852,’Choir’,0,111),(640,1852853,’Choir’,0,112),(640,1852854,’Choir’,0,113),(640,1852855,’Choir’,0,114),(640,1852856,’Choir’,0,115),(640,1852857,’Choir’,0,116),(640,1852858,’Choir’,0,117),(640,1852859,’Choir’,0,118),(640,1852860,’Choir’,0,119),(640,1852861,’Choir’,0,120),(640,1852862,’Choir’,0,121),(640,1852863,’Choir’,0,122),(9767,4937,’Gary Grobowski’,2,0),(9767,4491,’Brooke Meyers’,1,1),(9767,16484,’Addie’,1,2),(9767,6614,’Lupus Grobowski’,2,3),(9767,15277,’Johnny O’,2,4),(9767,23532,’Riggleman’,2,5),(9767,351,’Marilyn Dean’,1,6),(9767,15033,’Christopher’,2,7),(9767,38583,’Carson Wigham’,2,8),(9767,8265,’Richard Meyers’,2,9),(9767,13567,’Wendy Meyers’,1,10),(9767,59024,’Howard Meyers’,0,11),(9767,7132,’Dennis Grobowski’,2,12),(9767,59025,’Carol Grobowski’,1,13),(9767,5630,’Mrs. Grobowski’,1,14),(9767,1855240,’Shondra’,1,15),(6519,9656,’Luke Duke’,2,0),(6519,57599,’Bo Duke’,2,1),(6519,52052,’Daisy Duke’,1,2),(6519,8261,’Uncle Jesse Duke’,2,3),(6519,16475,’Jefferson Davis \’Boss\’ Hogg’,2,4),(6519,22132,’Sheriff Rosco P. Coltrane’,2,5),(6519,80219,’Billy Prickett’,0,6),(6519,28638,’Cooter Davenport’,2,7),(6519,51381,’Deputy Enos Strate’,2,8),(6519,88677,’Katie Johnson’,1,9),(6519,52050,’Laurie Pullman’,1,10),(6519,10671,’Governor Jim Applewhite’,2,11),(6519,44935,’Pauline’,1,12),(6519,56251,’Sheev’,2,13),(6519,52051,’Jimmy’,2,14),(6519,53347,’Dil Driscoll’,0,15),(6519,60930,’Deputy Cletus Hogg’,0,16),(6519,1228466,’Annette’,1,17),(6519,111122,’Royce’,2,18),(6519,1889169,’Judge Locke Randolph’,0,19),(6519,92328,’Security Guard Chip’,2,20),(6519,1235816,’The Balladeer (voice)’,2,21),(8741,2228,’1st Sgt. Edward Welsh’,2,0),(8741,3490,’Cpl. Geoffrey Fife’,2,1),(8741,8767,’Pvt. Robert Witt’,2,2),(8741,21343,’Pvt. Jack Bell’,2,3),(8741,1461,’Capt. Charles Bosche’,2,4),(8741,3036,’Capt. John Gaff’,2,5),(8741,57755,’Sgt. William Keck’,2,6),(8741,13550,’Capt. James \’Bugger\’ Staros’,2,7),(8741,1733,’Lt. Col. Gordon Tall’,2,8),(8741,4764,’Sgt. Maynard Storm’,2,9),(8741,8891,’Brig. Gen. David Quintard’,2,10),(8741,55861,’Pvt. Alfredo Tella’,2,11),(8741,534,’Pvt. Christopher Peale’,2,12),(8741,9374,’Pvt. Howard Coombs’,2,13),(8741,55866,’1st Lt. George Brass Band’,0,14),(8741,1280,’Sgt. Paul Becker’,2,15),(8741,91612,’Pfc. Charlie Dale’,2,16),(8741,7499,’2nd Lt. William Whyte’,2,17),(8741,47879,’Sgt. Jack McCron’,2,18),(8741,6408,’Pfc. Edward Bead’,2,19),(8741,502,’Marty Bell’,1,20),(8741,1462,’Pvt. Brian Tills’,2,21),(8741,6066,’Pfc. Don Doll’,2,22),(8741,61233,’Pvt. Frank Mazzi’,2,23),(8741,14544,’Witt\’s Mother’,1,24),(8741,124909,’Pvt. Leonardo Carni’,2,25),(1850,206,’Andy Kaufman/Tony Clifton’,2,0),(1850,7621,’Lynne Margulies’,1,1),(1850,25336,’Jack Burns’,2,2),(1850,518,’George Shapiro’,2,3),(1850,19468,’Stanley Kaufman’,2,4),(1850,19469,’Janice Kaufman’,1,5),(1850,19470,’Little Michael Kaufman’,0,6),(1850,19471,’Mr. Besserman’,2,7),(1850,3418,’Maynard Smith’,2,8),(1850,13242,’Bob Zmuda’,2,9),(1850,1062,’Christopher Lloyd – \’Taxi\’ Actor’,2,10),(1850,8894,’Jeff Conaway – \’Taxi\’ Actor’,2,11),(1850,10872,’Blue Collar Guy’,2,12),(1850,5378,’Diane Barnett’,1,13),(1850,28638,’National Enquirer Reporter’,2,14),(1850,238321,’Jerry Lawler’,2,15),(1850,543521,’Wrestling Commentator’,2,16),(524,380,’Sam \’Ace\’ Rothstein’,2,0),(524,4430,’Ginger McKenna’,1,1),(524,4517,’Nicky Santoro’,2,2),(524,4512,’Lester Diamond’,2,3),(524,7167,’Billy Sherbert’,2,4),(524,7169,’Andy Stone’,2,5),(524,7166,’Phillip Green’,2,6),(524,7165,’Remo Gaggi’,0,7),(524,8262,’Pat Webb’,2,8),(524,166789,’Su00e9nateur’,2,9),(524,7164,’Frank Marino’,2,10),(524,7424,’Oscar Goodman’,2,11),(524,18262,’Charlie Clark’,2,12),(524,11483,’Mme Piscano’,1,14),(524,7168,’Artie Piscano’,2,15),(524,7425,’Ichikawa’,0,16),(524,7423,’Amy’,1,17),(524,7444,’Black Jack-Groupier’,0,18),(524,107020,’David’,0,19),(524,99906,’Don Ward’,2,20),(524,13605,’Vincent Borelli’,2,21),(524,14332,’Dominick Santoro’,2,22),(524,105623,’Jennifer Santoro’,0,23),(524,1574239,’John Nance’,0,24),(524,96901,’Signaller’,0,25),(524,7531,’Winner’,2,26),(524,1738942,’Cowboy’,0,27),(524,42824,’Tony Dogs’,2,28),(524,39599,’Vinny Forlano’,2,29),(524,1204013,’Americo Capelli’,0,30),(524,17921,’Sal Fusco’,0,31),(524,120303,’Doctor Dan’,2,32),(524,583419,’Stabbed Gambler’,0,33),(524,122124,’Baker’,2,34),(524,58535,’Gambler in Phone Booth’,2,35),(524,1219275,’Jack Hardy’,0,36),(524,553774,’Trudy’,0,37),(524,1892328,’Anna Scott’,0,38),(524,1888770,’Wiseguy Eddie’,0,39),(524,233121,’Wiseguy Jerry’,0,40),(524,1888773,’Moosh’,0,41),(524,4692,’Rocky’,2,42),(524,58474,’Bookie’,2,43),(524,1183497,’LA Banker’,2,44),(524,1644894,’Chastised Gambler’,2,45),(2123,206,’Off. Charlie Baileygates/Hank Evans’,2,0),(2123,9137,’Irene P. Waters’,1,1),(2123,18471,’Jamaal Baileygates’,2,2),(2123,5694,’Colonel Partington’,2,3),(2123,28633,’Agent Boshane’,2,4),(2123,60672,’Agent Peterson’,2,5),(2123,21802,’Lee Harvey Baileygates’,2,6),(2123,21804,’Shante Jr. Bailreygates’,2,7),(2123,2955,’Lieutenant Gerke’,2,8),(2123,184180,’Trooper Sea Bass’,2,9),(2123,81287,’Beautiful Mom’,1,10),(2123,54826,’Layla’,1,11),(2123,19754,’Shonte’,2,12),(2123,162924,’Trooper Finneran’,2,13),(2123,1395904,’Trooper Maryann’,1,14),(2123,1580198,’Maternity Doctor’,2,15),(9907,14405,’Daisy the Cow (voice)’,1,0),(9907,32895,’Otis the Cow (voice)’,2,1),(9907,16431,’Ben the Cow (voice)’,2,2),(9907,2047,’Miles the Mule (voice)’,2,3),(9907,27102,’Bessy the Cow (voice)’,0,4),(9907,28638,’Dag the Coyote (voice)’,2,5),(9907,1533,’Etta the Hen (voice)’,1,6),(9907,59782,’Pip the Mouse (voice)’,2,7),(9907,60257,’Eddy the Cow (voice)’,2,8),(9907,31531,’Bud the Cow / Officer O\’Hanlon (voice)’,0,9),(9907,60272,’Freddy the Ferret (voice)’,0,10),(9907,34521,’Igg the Cow (voice)’,2,11),(9907,60275,’Duke the Dog (voice)’,2,13),(9907,60274,’Pig the Pig (voice)’,2,14),(9907,4489,’Snotty Boy / Mr. Beady / Snotty Boy\’s Father (voice)’,2,15),(9907,60276,’Maddy the Chick (voice)’,0,16),(9907,60277,’Root the Rooster (voice)’,2,17),(9907,60279,’Farmer (voice)’,2,18),(9907,60278,’Mrs. Beady (voice)’,1,19),(9907,43125,’Peck the Rooster / Gopher (voice)’,2,20),(9969,518,’Buddy Hall’,2,0),(9969,4756,’Steve Finch’,2,1),(9969,38025,’Kelly Finch’,1,2),(9969,52775,’Tia Hall’,1,3),(9969,61110,’Gustave’,2,4),(9969,61179,’Carter Finch’,0,5),(9969,61180,’Ashley Hall’,1,6),(9969,61178,’Madison Finch’,1,7),(9969,33836,’Mayor Young’,0,8),(9969,61181,’Emily Hall’,1,9),(9969,26089,’Sheriff Dave’,2,10),(9969,52705,’Fireworks Guy’,2,11),(9969,4095,’Ted’,2,12),(9969,61183,’Bob Murray’,2,13),(9969,61182,’Gerta’,1,14),(9969,61185,’Mrs. Ryor’,1,15),(9969,61186,’Mackenzie’,1,16),(9969,61187,’Ed’,2,17),(9969,61184,’Herself’,0,18),(9969,1215525,’Wallace’,2,19),(9969,33352,’Madison\’s Date’,2,20),(808,12073,’Shrek (voice)’,2,0),(808,776,’Donkey (voice)’,2,1),(808,6941,’Princess Fiona (voice)’,1,2),(808,12074,’Lord Farquaad (voice)’,2,3),(808,1925,’Monsieur Hood (voice)’,2,4),(808,12075,’Ogre Hunter (voice)’,2,5),(808,12076,’Ogre Hunter (voice)’,2,6),(808,12077,’Captain of Guards (voice)’,2,7),(808,12078,’Baby Bear (voice)’,2,8),(808,12098,’Geppetto / Magic Mirror (voice)’,2,9),(808,12095,’Pinocchio / Three Pigs (voice)’,2,10),(808,7210,’Old Woman (voice)’,1,11),(808,12080,’Gingerbread Man (voice)’,2,12),(808,12097,’Blind Mouse / Thelonious (voice)’,2,13),(808,44114,’Blind Mouse (voice)’,2,14),(808,42291,’Wrestling Fan (voice)’,1,15),(808,12071,’Merry Man (voice)’,0,16),(808,1235948,’Merry Man (voice)’,0,17),(808,1236017,’Merry Man (voice)’,0,18),(808,59066,’Merry Man (voice)’,0,19),(808,61674,’Bishop (voice)’,2,20),(808,5524,’Duloc Mascot (voice) (uncredited)’,2,21),(808,140970,’Clockwork Chorus (uncredited)’,0,22),(808,43800,’Villager (uncredited)’,2,23),(808,143007,’Esek (voice) (uncredited)’,2,24),(808,76741,’Clockwork Chorus (uncredited)’,0,25),(808,64445,’Additional Voices (voice) (uncredited)’,0,26),(808,1077782,’Dragon Vocals (uncredited)’,2,27),(808,15831,’Dragon / Animals\’ Vocal Effects (voice) (uncredited)’,2,28),(8367,1269,’Robin Hood’,2,0),(8367,192,’Azeem’,2,1),(8367,2224,’Will Scarlett’,2,2),(8367,1161,’Marian’,1,3),(8367,4566,’Sheriff von Nottingham’,2,4),(8367,8326,’Mortianna’,1,5),(8367,8316,’Friar Tuck’,2,6),(8367,8318,’Lord Locksley’,2,7),(8367,7486,’Guy of Gisborne’,2,8),(8367,8319,’Little John’,2,9),(8367,1039998,’Fanny’,0,10),(8367,738,’King Richard (uncredited)’,2,11),(8367,56683,’The Balladeer (uncredited)’,2,12),(8367,96585,’Bull’,2,14),(8367,141521,’Duncan’,2,16),(8367,1179385,’Bishop of Hereford’,2,17),(8367,140029,’Much’,0,18),(8367,157785,’Hal’,0,19),(8367,12690,’Red Headed Baron’,2,20),(8367,10942,’Celtic Chieftain’,2,21),(8367,10984,’Kneelock’,0,22),(8367,24726,’Scribe’,2,23),(8367,1620397,’Kenneth of Cowfall’,0,24),(8367,1807570,’Peter Dubois’,0,25),(8367,158670,’Interrogator’,2,26),(8367,1222024,’Old Woman’,0,27),(8367,1340418,’Sarah’,1,28),(8367,1244447,’Farmer’,0,29),(8367,1432794,’Villager’,0,30),(8367,1748942,’Grey Bearded Baron’,0,31),(8367,219741,’Ox’,0,32),(8367,64102,’Soldier’,2,33),(8367,79502,’Executioner’,2,34),(8367,1234992,’Lady in Coach’,0,35),(8367,8323,’Wulf’,2,36),(9390,500,’Jerry Maguire’,2,0),(9390,9777,’Rod Tidwell’,2,1),(9390,9137,’Dorothy Boyd’,1,2),(9390,11164,’Avery Bishop’,1,3),(9390,142955,’Former Girlfriend’,1,4),(9390,67778,’Ray Boyd’,2,5),(9390,3035,’Frank Cushman’,2,6),(9390,12217,’Bob Sugar’,2,7),(9390,5149,’Laurel Boyd’,1,8),(9390,9788,’Marcee Tidwell’,1,9),(9390,3230,’Chad the Nanny’,2,10),(9390,11676,’Bill Dooler’,2,11),(9390,61959,’Tyson Tidwell’,2,12),(9390,1076193,’Dicky Fox’,0,13),(9390,1076194,’Keith Cushman’,0,14),(9390,183716,’Anne-Louise’,0,15),(9390,10825,’Rick’,2,16),(9390,3272,’Jesse Remo’,2,17),(9390,7036,’Ethan Valhere’,2,18),(9390,2222,’Matt Cushman’,2,19),(9390,29930,’Former Girlfriend’,1,20),(9390,1276777,’Weepy Athlete’,2,21),(9390,1672749,’John Swenson’,2,22),(2898,514,’Melvin Udall’,2,0),(2898,9994,’Carol Connelly’,1,1),(2898,17141,’Simon Bishop’,2,2),(2898,9777,’Frank Sachs’,2,3),(2898,22108,’Vincent Lopiano’,2,4),(2898,28778,’Beverly Connelly’,1,5),(2898,5586,’Jackie Simpson’,1,6),(2898,28779,’Nora Manning’,1,7),(2898,8844,’Dr. Green’,2,8),(2898,1524,’Dr. Bettes’,2,9),(2898,2208,’Psychiatric Patient’,1,10),(2898,1678187,’Psychiatric Patient’,1,11),(2898,52792,’Policewoman’,1,12),(2898,35551,’Receptionist’,1,13),(2898,119866,’Sean from the Bakery’,2,14),(2898,6213,’Street Hustler’,0,15),(2898,1535,’Handyman’,2,16),(2898,31514,’Man at Table’,2,17),(2898,10135,’Spencer Connelly’,2,18),(2898,36631,’Carol\’s date’,2,19),(2898,1394788,’Publisher’,1,20),(2898,75528,’Woman in Lobby’,1,21),(2898,1212632,’Veterinarian’,0,22),(2898,41420,’Woman at Table’,1,23),(2898,1216966,’Singer’,1,24),(2898,66605,’Man on Bus’,2,25),(2898,19208,’Men\’s Store Salesman’,2,26),(2898,77338,’Maitre D\”,2,27),(2898,161439,’Neighbor Woman’,1,28),(2898,1080069,’Carl’,2,29),(2898,239061,’Caterer’,1,30),(2898,1080070,’Partygoer’,2,31),(2898,1080071,’Partygoer’,1,32),(2898,1080072,’Partygoer’,1,33),(2898,1108,’Cafe 24 Manager’,2,34),(2898,188526,’Cafe 24 Customer’,0,35),(2898,1294,’Cafe 24 Waitress’,1,36),(2898,61111,’Cafe 24 Waitress’,1,37),(2898,78596,’Cafe 24 Waitress’,1,38),(2898,21474,’Cafe 24 Waitress’,1,39),(2898,181434,’Cafe 24 Waitress’,1,40),(2898,65829,’Cafe 24 Busboy’,2,41),(2898,1678178,’Child at Cafe 24′,1,42),(2898,1678179,’Child at Cafe 24′,2,43),(2898,9178,’Mother at Table’,1,44),(2898,117568,’Street Hustler’,2,45),(2898,66749,’Detective Ray’,2,46),(2898,1400380,’Nurse Receptionist’,1,47),(2898,60259,’Bar Waiter’,2,48),(2898,1678170,’Hospital Doctor’,2,49),(2898,1678186,’Nurse’,1,50),(2898,1086875,’Flower Store Customer (uncredited)’,2,51),(2898,182194,’Bartender (uncredited)’,1,52),(2898,1199002,’Ballet Dancer (uncredited)’,1,53),(2898,1678185,’Restaurant Patron (uncredited)’,1,54),(2898,34521,’Fred Bishop – Simon\’s Dad on Phone (voice) (uncredited)’,2,55),(2022,19292,’Longfellow Deeds’,2,0),(2022,1920,’Babe Bennett’,1,1),(2022,1241,’Emilio Lopez’,2,2),(2022,20818,’Marty’,2,3),(2022,8212,’Chuck Cedar’,2,4),(2022,18917,’Cecil Anderson’,2,5),(2022,15440,’Mac McGrath’,2,6),(2022,884,’Crazy Eyes’,2,7),(2022,1909,’Jan’,1,8),(2022,20819,’Murph’,2,9),(2022,3907,’Preston Blake’,2,10),(2022,63238,’Kevin Ward, The N.Y. JETS Quarterback’,2,11),(2022,215157,’John McEnroe’,0,12),(462,1204,’Erin Brockovich’,1,0),(462,3926,’Ed Masry’,0,1),(462,6383,’George’,2,2),(462,19838,’Donna Jensen’,1,3),(462,1956,’Pamela Duncan’,1,4),(462,26719,’Theresa Dallavale’,1,5),(462,1909,’Brenda’,1,6),(462,3801,’Charles Embry’,2,7),(462,9979,’Kurt Potter’,2,8),(462,1248986,’Waitress’,0,9),(9919,11661,’Andie Anderson’,1,0),(9919,10297,’Benjamin Barry’,2,1),(9919,17696,’Michelle Rubin’,1,2),(9919,24291,’Jeannie Ashcroft’,1,3),(9919,6163,’Tony’,2,4),(9919,539,’Thayer’,2,5),(9919,39977,’Judy Spears’,1,6),(9919,92857,’Judy Green’,1,7),(9919,26715,’Phillip Warren’,2,8),(9919,10739,’Lana Jong’,1,9),(9919,168846,’Lori’,1,10),(9919,186494,’Mike’,2,11),(9919,1989,’Glenda’,1,12),(9919,101781,’Jack’,2,13),(9919,1589148,’Dora’,1,14),(9919,187971,’Uncle Arnold’,2,15),(9919,141484,’Joey Sr.’,2,16),(9919,1589149,’Joey Jr.’,0,17),(9919,1589150,’Joey Jr.’,0,18),(9919,1232496,’DeLauer Security’,0,19),(9919,1224825,’Receptionist Candi’,1,20),(9919,166522,’Poker Pal Ronald’,2,21),(628,287,’Louis de Pointe du Lac’,2,0),(628,500,’Lestat de Lioncourt’,2,1),(628,205,’Claudia’,1,2),(628,3131,’Armand’,2,3),(628,2224,’Daniel Malloy’,2,4),(628,9029,’Santiago’,2,5),(628,9030,’Yvette’,1,6),(628,9031,’Madeleine’,1,7),(628,24241,’Estelle’,1,8),(628,232174,’New Orleans Whore’,0,9),(628,149876,’Mortal Woman on Stage’,1,10),(628,17290,’Paris Vampire’,2,11),(628,1218000,’Tavern Girl’,0,12),(628,951881,’Dollmaker’,2,13),(628,15737,’2nd New Orleans Whore’,1,14),(9441,1204,’Isabel Kelly’,1,0),(9441,4038,’Jackie Harrison’,1,1),(9441,228,’Luke Harrison’,2,2),(9441,20089,’Anna Harrison’,1,3),(9441,19977,’Ben Harrison’,2,4),(9441,1047726,’Brad Kovitsky’,0,5),(9441,235507,’Anna\’s Friend’,1,6),(9441,552526,’Cooper’,2,7),(9441,115767,’Mrs. Franklin’,1,8),(9441,1834100,’Rapunzel’,0,9),(388,5292,’Detective Keith Frazier’,2,0),(388,2296,’Dalton Russell’,2,1),(388,1038,’Madeleine White’,1,2),(388,290,’Arthur Case’,2,3),(388,5293,’Captain Darius’,2,4),(388,5294,’Detective Bill Mitchell’,2,5),(388,4889,’Stevie’,1,6),(388,5296,’Steve-O’,2,7),(388,5295,’Steve’,0,8),(388,5297,’Chaim’,2,9),(388,1433441,’Mayor’,0,10),(388,1986,’Captain Coughlin’,2,11),(388,5298,’Sergeant Collins’,2,12),(388,77264,’Mobile Command Officer Berk’,1,13),(388,15028,’Mobile Command Officer Rourke’,2,14),(388,5299,’Sylvia’,1,15),(388,122546,’Kevin’,0,16),(388,1434091,’Ilina Miritia’,0,17),(388,5300,’Peter Hammond’,2,18),(388,93621,’Nancy Mann’,1,19),(388,5301,’Vikram Walia’,2,20),(388,14548,’Miriam Douglas’,1,21),(388,5302,’Herman Gluck’,0,22),(388,147960,’ESU Officer Hernandez’,2,23),(388,5304,’Bank Guard’,0,24),(388,1108494,’Paul Guitierez’,0,25),(388,2131,’Wing’,2,26),(388,210,’Brian Robinson’,2,27),(388,5303,’Bank Guard’,2,28),(388,1260146,’Mobile Command Officer Carnow’,0,29),(388,150932,’Mobile Command Officer Borinsky’,0,30),(388,1433251,’Mobile Command Detective’,0,31),(388,1433438,’Ray Robinson’,0,32),(388,1253648,’ESU Officer Jesus’,0,33),(388,77585,’ESU Officer’,2,34),(388,1433451,’ESU Officer’,2,35),(388,1433452,’ESU Officer’,0,36),(388,1045964,’ESU Officer’,0,37),(388,1433454,’ESU Officer’,0,38),(388,210393,’ESU Officer’,0,39),(388,171154,’Cop with Pizzas’,0,40),(388,1433493,’Redheaded Detective’,0,41),(388,1433496,’Barricade Officer’,0,42),(388,1433497,’Barricade Officer’,0,43),(388,1433498,’Seth Greenblatt’,0,44),(388,1059170,’Gladys Perez’,0,45),(388,1433510,’Brad Stone’,0,46),(388,1433512,’Eric Dodge’,0,47),(388,1433520,’Hostage Woman’,0,48),(388,78520,’Katherine’,0,49),(388,1433539,’Case\’s Bodyguard’,0,50),(388,59299,’White\’s Assistant’,2,51),(388,1434087,’CBS News Reporter’,0,52),(388,1434088,’NY1 News Anchor’,0,53),(388,1434089,’NY1 News Reporter’,0,54),(388,1434090,’Madge’,0,55),(388,1434092,’Borova’,2,56),(388,88547,’Porcario’,0,57),(388,1434094,’Zahir’,0,58),(388,141438,’Men\’s Club Attendant’,0,59),(388,1237053,’Barber’,0,60),(388,1434096,’Four Seasons Mau00eetre d\”,0,61),(388,1434097,’Edwin’,0,62),(388,60677,’Ronnie’,2,63),(2112,2461,’Porter’,2,0),(2112,10823,’Bronson’,2,1),(2112,2518,’Val Resnick’,2,2),(2112,49,’Rosie’,1,3),(2112,19839,’Arthur Stegman’,2,4),(2112,1103,’Det. Hicks’,2,5),(2112,13549,’Mrs. Lynn Porter’,1,6),(2112,5589,’Phil’,2,7),(2112,21416,’Carter’,2,8),(2112,140,’Pearl’,1,9),(2112,21675,’Det. Leary’,2,10),(2112,5563,’Justin Fairfax’,2,11),(2112,199298,’Johnny Bronson’,2,12),(2112,6862,’Messenger’,2,13),(6877,10297,’Tripp’,2,0),(6877,520,’Paula’,1,1),(6877,11664,’Kit’,1,2),(6877,21180,’Ace’,2,3),(6877,51329,’Demo’,2,4),(6877,51330,’Al’,2,5),(6877,8534,’Sue’,1,6),(6877,51331,’Jeffrey’,2,7),(6877,26723,’Melissa’,1,8),(6877,10872,’Techie Guy’,2,9),(6877,52997,’Gun Salesman’,2,10),(6877,537,’Bud’,2,11),(8920,1532,’Garfield (voice)’,2,0),(8920,33654,’Jon’,2,1),(8920,33259,’Liz’,1,2),(8920,537,’Happy Chapman’,2,3),(8920,169349,’Wendell’,0,4),(8920,33501,’Christopher Mello’,2,5),(8920,1158306,’Miss Ace Hardware’,0,6),(8920,96310,’Announcer’,0,7),(8920,128201,’Mrs. Baker’,1,8),(8920,164177,’Roy the Lodge Member’,0,9),(8920,53249,’Deputy Hopkins’,0,10),(8920,59675,’Security Officer’,2,11),(8920,118420,’Little Girl’,1,12),(8920,81326,’Cop’,2,13),(6950,4483,’Sam Daniels’,2,0),(6950,14343,’Robby Keough’,1,1),(6950,192,’Billy Ford’,2,2),(6950,1979,’Casey Schuler’,2,3),(6950,9777,’Salt’,2,4),(6950,55636,’Donald McClintock’,2,5),(6950,18352,’Jimbo Scott’,2,6),(6950,2137,’Dr. Julio Ruiz’,2,7),(6950,10649,’Dr. Raswani’,2,8),(6950,47458,’Dr. Benjamin Iwabi’,2,9),(6950,53005,’Dr. Mascelli’,2,10),(6950,3211,’Lt. Col. Briggs’,2,11),(6950,158052,’California Governor’,2,12),(6950,52142,’Dr. Lisa Aronson’,1,13),(752,524,’Evey Hammond’,1,0),(752,1331,’V / William Rookwood’,2,1),(752,9029,’Chief Inspector Eric Finch’,2,2),(752,11275,’Gordon Deitrich’,2,3),(752,5049,’Chancellor Adam Sutler’,2,4),(752,11276,’Creedy’,2,5),(752,11277,’Valerie Page’,1,6),(752,11278,’Dominic’,2,7),(752,11279,’Lewis Prothero’,2,8),(752,11280,’Dascomb’,2,9),(752,11281,’Delia Surridge’,1,10),(752,1665,’Etheridge’,2,11),(752,11282,’Bishop Lilliman’,2,12),(752,17606,’Young Valerie Page’,1,13),(752,11283,’Guy Fawkes’,2,14),(752,11284,’Guy Fawkes Lover’,1,15),(752,11285,’Tweed Coat Fingerman’,0,16),(752,40636,’Willy Fingerman’,0,17),(752,16716,’Baldy Fingerman’,0,18),(752,1253259,’Little Glasses Girl’,0,19),(752,40638,’Heyer’,2,20),(752,40639,’Patricia’,1,21),(752,40640,’BTN News Poppet’,1,22),(752,40641,’BTN News Poppet’,0,23),(752,40643,’Fred’,0,24),(752,40644,’Storm Saxon’,2,25),(752,40645,’Laser Lass’,0,26),(752,40646,’Wardrobe Mistress’,0,27),(752,1379293,’Security Guard’,0,28),(752,40649,’Little Glasses Girl Dad’,0,29),(752,40651,’Barfly’,2,30),(752,40652,’Old Man’,2,31),(752,40653,’Old Man’,0,32),(752,40656,’Middle Class Mum’,0,33),(752,5415,’Jones’,2,34),(752,40660,’Major Wilson’,2,35),(752,40662,’Young Evey’,0,36),(752,40663,’Evey\’s Mother’,0,37),(752,40664,’Evey\’s Father’,0,38),(752,40665,’Bureaucrat’,2,39),(752,30328,’Denis’,2,40),(752,40666,’Operator’,2,41),(752,40667,’Operator’,2,42),(752,40078,’Biology Teacher’,0,43),(752,591817,’Sarah’,0,44),(752,40670,’Valerie\’s Father’,0,45),(752,40671,’Valerie\’s Mother’,0,46),(752,40672,’Ruth’,1,47),(752,40673,’Tube Station News Poppet’,0,48),(752,40674,’Young Man’,0,49),(752,40676,’Civil War News Poppet’,0,50),(752,40677,’Water Shortage News Poppet’,0,51),(752,40678,’Avian Flu News Poppet’,2,52),(752,1380003,’Three Waters News Poppet’,0,53),(752,40682,’Surveillance Man’,0,54),(752,40683,’Finch\’s Fedco Man’,0,55),(752,40684,’Convenience Store V’,2,56),(752,40685,’Little Glasses Girl Fingerman’,0,57),(752,40686,’Victoria Station Fingerman’,0,58),(752,40687,’Parliament Lieutenant’,2,59),(752,40688,’Parliament General’,2,60),(752,40689,’Radio Man’,2,61),(752,109167,’Soldier (uncredited)’,0,62),(752,531772,’V Follower (uncredited)’,2,63),(752,962343,’V Follower (uncredited)’,2,64),(752,30452,’V Follower (uncredited)’,2,65),(752,1566178,’V Follower (uncredited)’,0,66),(752,1344642,’Soldier (uncredited)’,0,67),(752,591346,’Soldier (uncredited)’,2,68),(752,1207207,’Soldier (uncredited)’,0,69),(752,127005,’Soldier (uncredited)’,2,70),(752,40696,’Marshal (uncredited)’,2,71),(752,193339,’V Street Vigilante (uncredited)’,0,72),(752,1024073,’V Army Member (uncredited)’,2,73),(752,40716,’Bodyguard (uncredited)’,2,74),(752,40723,’Policeman (uncredited)’,0,75),(752,40738,’Creedy Guard (uncredited)’,0,76),(6038,18897,’Chon Wang’,2,0),(6038,887,’Roy Ou2019Bannon’,2,1),(6038,49734,’Chon Lin’,1,2),(6038,27428,’Charlie Chaplin’,2,3),(6038,49735,’Lord Nelson Rathbone’,2,4),(6038,1341,’Wu Chow’,2,5),(6038,195562,’Prostitute’,1,6),(6038,27425,’The Mayor’,2,7),(6038,172790,’Debutante’,0,8),(6038,41547,’Debutante’,1,9),(6038,161030,’Server’,2,10),(6038,19903,’Master at Arms’,2,11),(6038,8400,’Chon Wang\’s Father’,0,12),(6038,9138,’Queen Victoria’,1,13),(6038,211847,’Cigarette Girl’,1,14),(6038,141493,’Head Waiter’,0,15),(6038,27120,’Deputy’,2,16),(6038,67212,’Lead Boxer Liu’,2,17),(6038,33936,’Debutante #3′,1,18),(6038,1266017,’Palace Guard’,2,19),(6038,24627,’Jack the Ripper’,2,20),(6038,27678,’Artie Doyle’,0,21),(6038,933883,’Front Desk Clerk’,2,22),(6038,554276,’Fagin #1′,0,23),(6038,25678,’Street Preacher’,0,24),(6038,33050,’Shotgun’,0,25),(6038,155902,’Waiter’,2,26),(6038,162250,’Lord Chancellor’,2,27),(6038,1580026,’Fagin #2′,0,28),(6038,1216067,’Newspaper Boy’,2,30),(6038,985423,’Rathbone Guard’,0,31),(6038,1580027,’Rathbone Guard #2′,0,32),(6038,1580028,’Palace Guard’,0,33),(6038,1580029,’Old Man with Cane’,0,34),(6038,1580030,’Old Couple, Man’,0,35),(6038,1580031,’Old Couple, Woman’,0,36),(6038,1580032,’Palace Guard with Rifle’,0,37),(6038,1580033,’Toothless Flower Girl’,0,38),(6038,1580035,’Debutante #4′,0,39),(6038,1580036,’Cleopatra Model’,0,40),(6038,1580038,’Harpist’,0,41),(6038,1580039,’Quartet’,0,42),(6038,1580041,’Quartet’,0,43),(6038,1580042,’Quartet’,0,44),(6038,1580043,’Quartet’,0,45),(6038,1525270,’Additional ADR Voice’,2,46),(6038,1699694,’Imperial Guard’,2,47),(9975,23659,’Ted – Man with the Yellow Hat (voice)’,2,0),(9975,69597,’Maggie (voice)’,1,1),(9975,212,’Junior (voice)’,2,2),(9975,26510,’Clovis (voice)’,2,3),(9975,61303,’Mr. Bloomsberry (voice)’,2,4),(9975,15831,’George (voice)’,2,5),(9975,23709,’Ms. Plushbottom (voice)’,1,6),(9975,8658,’Ivan (voice)’,2,7),(9975,60739,’Animal Control Receptionist (voice)’,1,8),(9975,23679,’Manager (voice)’,2,9),(9975,34982,’Salesman (voice)’,2,10),(9975,15661,’Balloon Man (voice)’,2,11),(9975,61307,’Edu (voice)’,2,12),(9975,52868,’Kid (voice)’,2,13),(9975,61301,’Kid (voice)’,0,14),(9975,12,’Kid (voice)’,2,15),(9975,56538,’Kid (voice)’,0,16),(9975,61302,’Kid (voice)’,0,17),(9975,61305,’Kid (voice)’,0,18),(9975,61304,’Kid (voice)’,1,19),(9975,42160,’Kid (voice)’,1,20),(9975,61306,’Kid (voice)’,0,21),(9975,61308,’Seen It Cab Driver (voice)’,2,22),(2251,1205,’Ed Sumner’,2,0),(2251,2882,’Constance Connie Sumner’,1,1),(2251,15533,’Paul Martel’,2,2),(2251,17190,’Charlie Sumner’,2,3),(2251,6752,’Detective Dean’,2,4),(2251,68186,’Frank Wilson’,2,5),(2251,20879,’Tracy’,1,6),(2251,21549,’Bill Stone’,2,7),(2251,96228,’Detective Mirojnick’,2,8),(2251,20318,’Gloria’,1,9),(2251,11705,’Lindsay’,1,10),(2251,8985,’Sally’,1,11),(231,1461,’Bob Barnes’,2,0),(231,1892,’Bryan Woodman’,2,1),(231,2954,’Bennett Holiday’,2,2),(231,2955,’Jimmy Pope’,2,3),(231,2956,’Julie Woodman’,1,4),(231,227,’Stan’,2,5),(231,290,’Dean Whiting’,2,6),(231,2957,’Prince Nasir Al-Subaai’,2,7),(231,2959,’Arash’,2,8),(231,2960,’Mohammed Sheik Agiza’,2,9),(231,2962,’Tommy Barton’,2,10),(231,2964,’Sydney Hewitt’,2,11),(231,2965,’Riley Woodman’,0,12),(231,2966,’Max Woodman’,2,13),(231,2967,’Rebecca’,1,14),(231,1986,’Leland Lee Janus’,2,15),(231,2968,’Bryan\’s Boss’,0,16),(231,2971,’Wasim Khan’,0,17),(231,2970,’Vincent’,2,18),(231,2972,’Saleem Ahmed Khan’,2,19),(231,2973,’Pakistani Translator’,0,20),(231,2974,’Chinese Engineer’,2,21),(231,2977,’Division Chief’,2,22),(231,2978,’Robby Barnes’,2,23),(231,2980,’Emir Hamed Al-Subaai’,2,24),(231,2981,’Prince Meshal Al-Subaai’,2,25),(231,2982,’Farooq’,0,26),(231,1462,’Danny Dalton’,2,27),(231,2983,’Mussawi’,2,28),(231,2984,’Nasir\’s Wife’,0,29),(231,19492,’CIA Chairwoman’,1,30),(9754,3,’Jack Stanfield’,2,0),(9754,6162,’Bill Cox’,2,1),(9754,12519,’Beth Stanfield’,1,2),(9754,58899,’Sarah Stanfield’,1,3),(9754,6860,’Andy Stanfield’,2,4),(9754,25884,’Janet Stone’,1,5),(9754,418,’Gary Mitchell’,2,6),(9754,5694,’Harry’,2,7),(9754,1903,’Arlin Forester’,2,8),(9754,58901,’Bobby’,2,9),(9754,41432,’Betty’,1,10),(9754,4095,’Rich’,2,11),(9754,58902,’Ravi’,2,12),(9754,58903,’Laurie’,0,13),(9754,58900,’Bank Employee #1′,0,14),(9754,1566395,’Bank Employee #2′,0,15),(9754,111931,’Doorman’,2,16),(9754,12795,’Liam’,2,17),(9754,58381,’Pim’,2,18),(66,190,’Luther Whitney’,2,0),(66,193,’President Allen Richmond’,2,1),(66,228,’Seth Frank’,2,2),(66,349,’Bill Burton’,2,3),(66,350,’Kate Whitney’,1,4),(66,351,’Gloria Russell’,1,5),(66,352,’Tim Collin’,2,6),(66,389,’Art Student’,1,7),(66,404,’Christy Sullivan’,1,8),(66,5249,’Walter Sullivan’,2,9),(66,28633,’Michael McCarty’,2,10),(4421,3416,’Lieutenant Jordan O\’Neil’,1,0),(4421,110,’Master Chief John James Urgayle’,2,1),(4421,10774,’Senator Lillian DeHaven’,1,2),(4421,37203,’Royce’,2,3),(4421,1473,’Theodore Hayes’,2,4),(4421,8265,’Stabschef’,2,5),(4421,34839,’Sergeant Max Pyro’,2,6),(4421,37204,’Sergeant Johns’,2,7),(4421,37205,’Sergeant Cortez’,2,8),(4421,9779,’McCool’,2,9),(4421,31532,’F. Lee Montgomery’,2,10),(4421,8767,’Slov’,2,11),(4421,37206,’Wick’,2,12),(4421,37207,’Newberry’,0,13),(2649,3392,’Nicholas Van Orton’,2,0),(2649,2228,’Conrad Van Orton’,2,1),(2649,13549,’Christine’,1,2),(2649,8986,’Jim Feingold’,2,3),(2649,5953,’Airbag EMT Beltran’,2,4),(2649,27570,’Elizabeth’,1,5),(2649,12647,’Anson Baer’,2,6),(2649,14701,’Ilsa’,1,7),(2649,1075080,’Young Nicholas’,0,8),(2649,154954,’Maria’,1,9),(2649,553720,’Himself’,0,10),(2649,104504,’Power Executive’,2,11),(2649,176340,’Nicholas\’ Father’,2,12),(2649,178446,’Maggie’,1,13),(2649,14849,’Samuel Sutherland’,2,14),(2649,1075081,’Nicholas\’ Mother’,0,15),(2649,65397,’Cynthia, CRS Receptionist’,1,16),(2649,19468,’New Member Ted’,2,17),(2649,1502237,’New Member Victor’,0,18),(2649,1615294,’CRS Data Collating Technician’,2,19),(2649,51931,’Obsequious Executive’,2,20),(2649,2478,’Solicitor / Taxi Driver’,2,21),(2649,1876078,’Rattle Gatherer’,1,22),(2649,12055,’Man in Airport’,2,23),(2649,10688,’Ankles’,2,24),(2649,1240492,’City Club Maitre D\”,0,25),(2649,1876097,’Officer Hicks’,0,26),(2649,1744139,’Pickpocket’,0,27),(2649,56120,’Nikko Hotel Manager’,2,28),(2649,1775866,’Nikko Hotel Bellhop’,0,29),(2649,1114784,’Nikko Hotel Maid’,1,30),(2649,534,’Shady Private Investigator’,2,31),(2649,1876132,’Kaleigh Baer’,0,32),(2649,1273,’Lieutenant Sullivan’,2,33),(2649,145531,’Detective Boyle’,2,34),(2649,3011,’Christine\’s Roomate Amy’,1,35),(2649,1646992,’Assassin Brodi’,0,36),(2649,17449,’Assassin Kartmann’,2,37),(2649,1390442,’U.S. Embassy Counselor’,2,38),(2649,1876156,’Sheraton Desk Clerk’,0,39),(2649,1129738,’Sheraton Manager’,0,40),(2649,1002919,’Hot Waitress’,0,41),(2649,1328752,’Teen Thug’,2,42),(2649,1876201,’New Moon Cafe Manager’,0,43),(2649,1876202,’CRS Guard’,0,44),(2649,9289,’Airbag EMT Galliano’,2,45),(588,8329,’Rose Da Silva’,1,0),(588,48,’Christopher Da Silva’,2,1),(588,8332,’Cybil Bennett’,1,2),(588,13549,’Dahlia Gillespie’,1,3),(588,8335,’Officer Thomas Gucci’,2,4),(588,8336,’Anna’,0,5),(588,2506,’Christabella’,1,6),(588,8338,’Sharon/Alessa’,1,7),(588,8341,’Archivist’,0,8),(588,8343,’Old Mechanic’,2,9),(588,8345,’Young Police Officer’,0,10),(588,8347,’Sister Margaret’,0,11),(588,8348,’Gas Attendant’,0,12),(588,5889,’Distressed Woman’,1,13),(588,8352,’Red Pyramid/Janitor/Colin’,0,14),(588,8359,’Christabella\’s Aide’,0,15),(9631,2231,’Lt. Danny Roman’,2,0),(9631,1979,’Lt. Chris Sabian’,2,1),(9631,52,’Cdr. Adam Beck’,2,2),(9631,12122,’Cdr. Grant Frost’,2,3),(9631,34691,’Chief Al Travis’,2,4),(9631,22131,’Insp. Terence Niebaum’,0,5),(9631,6751,’Maggie’,1,6),(9631,13242,’Rudy’,2,7),(9631,21848,’Karen Roman’,1,8),(9631,156532,’Markus’,2,9),(9631,52415,’Palermo’,2,10),(9631,115874,’Eagle’,0,11),(9631,72864,’Argento’,2,12),(9631,14329,’Scott’,2,13),(9631,14331,’Hellman’,2,14),(9631,35024,’Tonray’,2,15),(9631,15537,’Allen’,2,16),(9631,91537,’Farley’,2,17),(9631,166896,’Omar\’s Daughter’,1,18),(9631,66499,’Chief\’s Wife’,1,19),(9631,136004,’Bartender’,0,20),(9631,152993,’Morewitz’,2,21),(9631,11913,’Linda Roenick’,0,22),(9631,5677,’Linda\’s Attorney’,2,23),(9631,1228876,’D.A. Young’,0,24),(9631,1411162,’Secretary’,0,25),(9631,9291,’Taylor’,2,26),(9631,157021,’Bell’,2,27),(9631,1318900,’Tech #1′,2,28),(9631,82653,’Lisa Sabian’,1,29),(9631,155864,’Stacy Sabian’,1,30),(9631,102906,’FBI Agent Grey’,2,31),(9631,83782,’FBI Agent Moran’,2,32),(9631,1217657,’Cale Wangro’,2,33),(9631,132434,’Sniper’,2,34),(9631,74832,’Agent’,0,35),(9631,99024,’Reporter’,2,36),(9631,148632,’Reporter’,1,37),(9631,1504107,’Reporter’,0,38),(9631,6214,’Reporter’,1,39),(9631,1204218,’Camera Man (uncredited)’,0,40),(9631,19453,’Omar (uncredited)’,2,41),(9631,1062825,’FBI SWAT Officer (uncredited)’,0,42),(9631,925,’Nathan Roenick (uncredited)’,2,43),(9631,1512289,’FBI Agent (uncredited)’,1,44),(9631,1042227,’Fire Department Lieutenant (uncredited)’,0,45),(9631,1178318,’Cop (uncredited)’,0,46),(306,776,’Axel Foley’,2,0),(306,777,’Billy Rosewood’,2,1),(306,1210,’Jon Flint’,2,2),(306,787,’Insp. Douglas Todd’,2,3),(306,17396,’Ellis Dewald’,2,4),(306,4689,’Serge’,2,5),(306,230,’Steve Fulbright’,2,6),(306,4604,’Janice’,1,7),(306,11163,’Orrin Sanderson’,2,8),(306,4602,’Levine’,2,9),(306,4603,’Giolito’,2,10),(306,4605,’Leppert’,2,11),(306,4606,’Rondell’,2,12),(306,4607,’Pederson’,2,13),(306,4608,’Nixon’,2,14),(306,4609,’McKee’,0,15),(306,80116,’Annihilator Girl’,1,16),(306,167529,’Annihilator Girl’,1,17),(306,4600,’Jailer’,2,18),(306,66758,’Bar Patron’,2,19),(306,133259,’Bar Patron’,2,20),(306,1,’Disappointed Man’,2,21),(306,21377,’Man at Corner’,2,22),(928,16170,’Billy Peltzer’,2,0),(928,16171,’Kate Beringer’,1,1),(928,5589,’Daniel Clamp’,2,2),(928,10360,’Grandpa Fred’,2,3),(928,16180,’Forster’,2,4),(928,113,’Doctor Catheter’,2,5),(928,16181,’Marla Bloodstone’,1,6),(928,16182,’Sheila Futterman’,1,7),(928,16183,’Mr. Katsuji’,2,8),(928,16103,’Mr. Wing’,2,9),(928,7210,’Microwave Marge’,1,10),(928,16184,’Martin’,2,11),(928,16185,’Lewis’,2,12),(928,16186,’Wally’,0,13),(928,102441,’Murray Futterman’,2,14),(928,101377,’Theatre Manager’,2,15),(928,41230,’Janitor’,2,16),(928,19439,’Employee fired for Smoking’,2,17),(928,109255,’Himself’,2,18),(928,16620,’Himself’,2,19),(928,40206,’Brain Gremlin (voice)’,2,20),(928,77920,’Gizmo (voice)’,2,21),(928,15831,’Mohawk (voice)’,2,22),(928,16173,’Movie Theater Mom’,1,23),(928,1538,’Clamp Center Security Guard’,0,24),(928,11806,’Peggy’,1,25),(928,16483,’John J. Rambo (uncredited)’,2,26),(6623,1461,’Lt. Col. Thomas Devoe’,2,0),(6623,2227,’Dr. Julia Kelly’,1,1),(6623,15320,’Dusan Gavrich’,2,2),(6623,5725,’Bazta Sergeant’,2,3),(6623,12647,’Dimitri Vertikoff’,2,4),(6623,42694,’Jody’,1,5),(6623,93225,’General Aleksandr Kodoroff’,2,6),(6623,1008309,’Vlado Mirich’,2,7),(6623,81830,’Terry Hamilton’,2,8),(6623,36631,’Ken’,2,9),(6623,10380,’General Garnett’,2,10),(6623,134469,’Dietrich Schuhmacher’,0,11),(6623,7497,’Mark Appleton’,2,12),(6623,66101,’CPN Beach’,2,13),(6623,31504,’Senator Helen Bevens’,1,14),(6623,115874,’Santiago’,0,15),(6623,1077987,’Stevo’,0,16),(6623,632849,’Vassily’,2,17),(6623,4640,’Kodoroff\’s Driver’,2,18),(6623,20807,’Dr. Taraki’,2,19),(6623,92623,’Alan’,2,20),(6623,119050,’Russian Corporal’,0,21),(6623,1566830,’Marine’,2,22),(1577,63,’Alice’,1,0),(1577,7055,’Jill Valentine’,1,1),(1577,18041,’Carlos Olivera’,2,2),(1577,3491,’Major Cain’,2,3),(1577,96787,’Angie Ashford’,1,4),(1577,12801,’Sgt. Peyton Wells’,2,5),(1577,15440,’Dr. Ashford’,2,6),(1577,51944,’L.J.’,2,7),(1577,65345,’Terri Morales’,1,8),(1577,59198,’Nemesis’,2,9),(1577,12714,’Nicholai Ginovaeff’,2,10),(1577,20508,’Dr. Isaacs’,2,11),(1577,185183,’Captain Henderson’,2,12),(1577,1282733,’Yuri Loginova’,0,13),(1577,108892,’Mackenzie’,0,14),(1577,181010,’Priest’,0,15),(1577,1282734,’Mrs. Priest’,0,16),(1577,87779,’Marla Mapes’,1,17),(1577,1001608,’Director’,2,18),(1577,56262,’Assistant’,2,19),(1577,76105,’Lance Halloran’,0,20),(1577,159628,’Overworked Detective’,0,21),(1577,188632,’Overworked Sergeant’,0,22),(1577,119478,’Sniper’,0,23),(1577,1282737,’Bum’,0,24),(1577,188609,’Home Owner / Scientist’,2,25),(1577,1282738,’Older Woman’,0,26),(1577,1282739,’Suit #1′,0,27),(1577,1035179,’Suit #2′,2,28),(1577,180940,’Suit #3′,0,29),(1577,168624,’Suit #4′,0,30),(1577,1282740,’Undead Gaudy Hooker’,0,31),(1577,168611,’Burly Cop #1′,0,32),(1577,40386,’Burly Cop #2′,2,33),(1577,1233591,’Tech #1′,0,34),(1577,981162,’Tech #2′,1,35),(1577,1282741,’Undead Little Girl’,0,36),(1577,1282742,’Undead Little Boy #1′,0,37),(1577,62674,’Security Guard’,2,38),(1577,199822,’Featured Graveyard Undead 1 (as Derek Asland) / Featured Surplus Undead #3′,0,39),(1577,1282743,’Featured Graveyard Undead 2 / Featured Rooftop Undead #2′,0,40),(1577,1282744,’Chopper Pilot #1′,0,41),(1577,8358,’Chopper Pilot #2′,0,42),(1577,1282746,’Chopper Pilot #4′,0,43),(1577,2686,’Refugee #1′,2,44),(1577,201683,’Refugee #2′,0,45),(1577,8370,’Screaming Soldier’,2,46),(1577,64514,’Lieutenant’,2,47),(1577,74279,’Tech’,1,48),(1577,175201,’Reflection Undead’,2,49),(1577,180922,’Featured City Hall Undead #1′,0,50),(1577,1282758,’Featured City Hall Undead #2′,0,51),(1577,1282760,’Featured City Hall Undead #3′,0,52),(1577,166441,’Featured City Hall Undead #4′,0,53),(1577,224723,’Featured City Hall Undead #5′,2,54),(1577,181018,’Reporter #1′,0,55),(1577,186491,’Guard’,0,56),(1577,57852,’Zombie Dad’,0,57),(1577,200920,’Daughter’,1,58),(1577,184392,’Undead Stripper #1′,0,59),(1577,1282767,’Undead Stripper #2′,0,60),(1577,1282769,’Featured IV Woman Undead’,0,61),(1577,1282773,’Undead Little Boy #2′,0,62),(1577,1227294,’Featured Undead Kid #1′,0,63),(1577,1282774,’Featured Undead Kid #2′,0,64),(1577,1282775,’Featured Undead Kid #3′,0,65),(1577,1282777,’Featured Rooftop Undead #1′,0,66),(1577,1282780,’Featured Rooftop Undead #3′,0,67),(1577,1282783,’Featured Undead City Walker #1′,0,68),(1577,14903,’Featured Undead City Walker #2′,2,69),(1577,1282788,’Featured Undead City Walker #3′,0,70),(1577,1282791,’Featured Undead City Walker #4′,0,71),(1577,1282793,’Featured Undead City Walker #5′,0,72),(1577,1282795,’Featured Undead City Walker #6′,0,73),(1577,1282796,’Featured Undead City Walker #7′,0,74),(1577,1282801,’Featured Undead Kid #4′,0,75),(1577,1282802,’Featured Graveyard Undead 1′,0,76),(1577,1282804,’Featured Surplus Undead #2′,0,77),(1577,174584,’Network Anchor #1′,1,78),(1577,1282808,’Network Anchor #2′,0,79),(1577,111809,’Reporter #2′,2,80),(1577,55572,’Reporter #3′,1,81),(1577,1282809,’Lab Technician’,2,82),(1577,55588,’Leader Umbrella Guard’,2,83),(1577,204547,’Umbrella Gate Guard’,0,84),(1577,1038790,’Featured School Undead’,0,85),(1577,11867,’Matt Addison (archive footage)’,2,86),(9801,9137,’Bridget Jones’,1,0),(9801,3291,’Daniel Cleaver’,2,1),(9801,5472,’Mark Darcy’,2,2),(9801,388,’Bridget\’s Dad’,2,3),(9801,9138,’Bridget\’s Mum’,1,4),(9801,9139,’Una Alconbury’,1,5),(9801,9140,’Uncle Geoffrey’,2,6),(9801,6857,’Rebecca’,1,7),(9801,9144,’Shazza’,1,8),(9801,1834,’Jude’,1,9),(9801,9145,’Tom’,2,10),(9801,174982,’Richard Finch’,2,11),(9801,19331,’Admiral Darcy’,2,12),(9801,9141,’Mrs. Darcy’,0,13),(9801,183802,’Himself’,0,14),(9801,3547,’Quizmaster’,2,15),(9801,47734,’Jed’,2,16),(9801,659,’Commentator’,2,17),(9801,47730,’Magda’,1,18),(9801,1222341,’Camilla’,1,19),(9801,131062,’Thai prostitute’,0,20),(9801,63608,’Charlie Parker-Knowles’,2,21),(9801,30445,’Phrao’,1,22),(9801,1215844,’Thai jail girl’,1,23),(9801,1117371,’Bernard’,0,24),(9801,1317410,’Mrs. Darcy’,1,25),(9801,115681,’Receptionist’,1,26),(9801,59091,’Mexican Ambassador’,0,27),(9801,75066,’Production Assistant’,2,28),(9801,1317411,’Girl in Rome’,0,29),(9801,1224727,’Janey’,0,30),(9801,1229078,’Giles Benwick’,0,31),(9801,95259,’Derek’,2,32),(9801,1854450,’Sexy P.A.’,0,33),(9801,176188,’Corset Lady’,0,34),(9801,938824,’Hairdresser’,0,35),(9801,15739,’Horatio’,2,36),(9801,1854493,’Thai Police Woman’,1,37),(9801,1686568,’Thai jail girl’,0,38),(9801,87097,’Taxi Driver’,2,39),(9801,563559,’Journalist’,2,40),(9801,31739,’Director in Gallery’,2,41),(9801,1202628,’Thai Jail Guard’,2,42),(2116,5292,’Matthias Lee Whitlock’,2,0),(2116,8170,’Alex Diaz Whitlock’,1,1),(2116,5411,’Ann Merai Harrison’,1,2),(2116,21722,’Chae’,2,3),(2116,21721,’Chris Harrison’,2,4),(2116,21724,’Cabot’,2,5),(2116,20562,’Deput Basle’,2,6),(2116,21723,’Tony Dalton’,2,7),(2116,1286269,’Detective’,0,8),(2116,74587,’Agent Stark’,2,9),(2116,4496,’Dr. Donovan’,1,10),(2116,21714,’Ramona’,1,11),(9624,23880,’Forrest Taft’,2,0),(9624,3895,’Michael Jennings’,2,1),(9624,6720,’Masu’,1,2),(9624,11885,’MacGruder’,2,3),(9624,8655,’Stone’,2,4),(9624,100647,’Liles’,1,5),(9624,879,’Homer Carlton’,2,6),(9624,9633,’Hugh Palmer’,2,7),(9624,5170,’Big Mike’,2,8),(9624,10930,’Walters’,2,9),(1907,6193,’Richard’,2,0),(1907,19866,’u00c9tienne’,2,1),(1907,3063,’Sal’,1,2),(1907,19163,’Franu00e7oise’,1,3),(1907,19867,’Christo’,0,4),(1907,19868,’Keaty’,2,5),(1907,19869,’Zeph’,2,6),(1907,18023,’Daffy’,2,7),(1907,19870,’Sammy’,2,8),(1907,19871,’Bugs’,2,9),(1907,2063,’Karl’,0,10),(1907,19873,’Sten’,0,11),(1907,19874,’Hustler’,2,12),(1907,19875,’Unhygienix’,0,13),(1907,19876,’Sonja’,1,14),(1907,1328285,”,1,15),(4599,11661,’Helen Harris’,1,0),(4599,38405,’Pastor Dan Parker’,2,1),(4599,3234,’Jenny Portman’,1,2),(4599,17265,’Audrey Davis’,1,3),(4599,35654,’Henry Davis’,2,4),(4599,17140,’Sarah Davis’,1,5),(4599,15735,’Dominique Courier’,1,6),(4599,7427,’Lindsay Davis’,1,7),(4599,114021,’Ed Portman’,2,8),(4599,34200,’Nilma Prasad’,1,9),(4599,4787,’Prom Date Peter’,2,10),(4599,1210,’Mickey Massey’,2,11),(4599,33836,’Paul Davis’,0,12),(4599,38425,’Martina’,1,13),(4599,65144,’Devon’,0,14),(4599,73130,’BZ’,0,15),(4599,40588,’Caitlin’,0,16),(4599,299397,’Tinka’,1,17),(4599,13451,’Landlord’,1,18),(4599,38408,’Jasmine Portman’,0,19),(4599,38407,’Oliver Portman’,0,20),(4599,38406,’Amber’,1,21),(4599,32291,’Lacey’,1,22),(4599,95469,’Photographer’,1,23),(4599,1665036,’Club Bartender’,2,24),(4599,68187,’Audrey\’s Friend’,0,25),(4599,1451161,’Ralphy’,2,26),(4599,60953,’Fashion Show Model’,1,27),(9879,3416,’Erin Grant’,1,0),(9879,16475,’David Dilbeck’,2,1),(9879,23346,’Lt. Al Garcia’,2,2),(9879,10182,’Shad’,2,3),(9879,418,’Darrell Grant’,2,4),(9879,925,’Malcolm Moldovsky’,2,5),(9879,20848,’Angela Grant’,1,6),(9879,60796,’Orly’,2,7),(9879,53963,’Erb Crandal’,2,8),(9879,52043,’Alan Mordecai’,2,9),(9879,44757,’Urbanna Sprawl’,0,10),(9879,44033,’Lorelei’,1,11),(9879,106714,’Ariel Sharon’,1,12),(9879,6751,’Rita Grant’,1,14),(9879,3713,’Donna Garcia’,1,15),(9879,66877,’Tiffany’,1,16),(9879,56567,’Monique, Jr.’,0,17),(9879,9211,’Chico’,2,18),(9691,16483,’Robert Rath’,2,0),(9691,3131,’Miguel Bain’,2,1),(9691,1231,’Electra’,1,2),(9691,58556,’Nicolai Tashlinkov’,0,3),(9691,17348,’Ketcham’,2,4),(9691,14328,’Alan Branch’,2,5),(9691,47757,’Jennifer, Electra\’s Neighbor’,1,6),(9691,31508,’Bob’,2,7),(9691,42146,’Remy’,2,8),(9691,58557,’Buyer with Remy’,0,9),(9691,58558,’Buyer with Remy’,0,10),(9691,58559,’Cop’,2,11),(9691,58560,’Cop’,0,12),(9691,58561,’Cemetery Caretaker’,0,13),(9691,58562,’Dowager’,0,14),(9691,1611202,’Cementary woman’,0,15),(9691,543847,’Kid in plaza’,2,16),(1248,16790,’Hannibal Lecter’,2,0),(1248,16789,’Hannibal Lecter (young)’,0,1),(1248,643,’Lady Murasaki’,1,2),(1248,17287,’Inspector Popil’,2,3),(1248,7026,’Vladis Grutas’,2,4),(1248,3901,’Enrikas Dortlich’,2,5),(1248,9013,’Petras Kolnas’,2,6),(1248,39681,’Zigmas Milko’,2,7),(1248,206721,’Bronys Grentz’,0,8),(1248,16791,’Mischa’,0,9),(1248,16792,’Father Lecter’,2,10),(1248,14593,’Mother Lecter’,1,11),(1248,16793,’Nanny’,0,12),(1248,1054325,’Lothar’,2,13),(1248,12838,’Berndt’,2,14),(1248,79648,’Professor Dumas’,2,15),(1248,88392,’Kolnas\’s Son’,2,16),(9573,190,’Terry McCaleb’,2,0),(9573,8447,’Jasper \’Buddy\’ Noone’,2,1),(9573,5657,’Dr. Bonnie Fox’,1,2),(9573,57991,’Graciella Rivers’,1,3),(9573,57992,’Detective Jaye Winston’,1,4),(9573,55259,’Detective Ronaldo Arrango’,2,5),(9573,21043,’Detective John Waller’,2,6),(9573,156706,’Raymond Torres’,0,7),(9573,19468,’Mr. Toliver’,2,8),(9573,1216133,’James Lockridge’,2,9),(9573,14707,’Mrs. Cordell’,1,10),(9573,52761,’Mikhail Bolotov’,2,11),(9573,219174,’Reporter #1′,1,12),(9573,111337,’Reporter #2′,1,13),(9573,1115618,’Mrs. Kang’,0,14),(9573,995587,’Mr. Kang’,2,15),(9573,12797,’Captain’,2,16),(9573,62100,’Restaurant Manager’,2,17),(4959,2296,’Louis Salinger’,2,0),(4959,3489,’Eleanor Whitman’,1,1),(4959,12647,’Wilhelm Wexler’,2,2),(4959,4455,’Jonas Skarssen’,2,3),(4959,31713,’The Consultant’,2,4),(4959,68056,’Viktor Haas’,2,5),(4959,43019,’Martin White’,2,6),(4959,47589,’Francis Ehames’,2,7),(4959,8986,’New York D.A.’,2,8),(4959,10489,’Detective Bernie Ward’,2,9),(4959,172529,’Sam Purvitz’,2,10),(4959,1192389,’Dr. Isaacson’,0,11),(4959,59281,’Al Moody’,2,12),(4959,187973,’Detective Gloria Hubbard’,0,13),(4959,100703,’Eli Cassel’,2,14),(4959,11285,’Thomas Schumer’,0,15),(4959,67422,’Doctor’,2,16),(4959,36010,’Klaus Diemer’,2,17),(4959,1128361,’Chief Inspector Reinhard Schmidt’,0,18),(4959,1498306,’Dietmar Berghoff’,0,19),(4959,1495216,’Carabinieri Captain’,2,20),(4959,115686,’Commissioner Villon’,2,21),(4959,586411,’Milan Sniper’,0,22),(4959,7196,’Calvini\’s Chief of Staff’,2,23),(4959,102119,’Cafu00e9 Barista’,0,24),(4959,1240427,’General Charles Motomba’,0,25),(4959,1141085,’Cassian Skarssen’,0,26),(4959,25099,’Calvini Defense Security Chief’,0,27),(4959,1153437,’I.B.B.C. Secretary’,1,28),(4959,90325,’Enzo Calvini’,0,29),(4959,1218800,’Elliot Whitman’,0,30),(4959,1483243,’Nicolai Yeshinski’,0,31),(4959,117640,’Ahmet Sunay’,2,32),(4959,55650,’Umberto Calvin’,2,33),(4959,15920,’Ispettore Alberto Cerutti’,2,34),(4959,1215617,’Detective Iggy Ornelas’,0,35),(421,1532,’Steve Zissou’,2,0),(421,5657,’Eleanor Zissou’,1,1),(421,112,’Jane Winslett-Richardson’,1,2),(421,5293,’Klaus Daimler’,2,3),(421,887,’Ned Plimpton’,2,4),(421,4785,’Alistair Hennessey’,2,5),(421,5658,’Oseary Drakoulias’,2,6),(421,1284,’Vladimir Wolodarsky’,2,7),(421,4971,’Bill Ubell’,2,8),(421,5659,’Pelu00e9 dos Santos’,2,9),(421,5661,’Intern 1′,2,10),(421,5662,’Festival Director’,0,11),(421,5663,’Antonia Cook’,0,12),(421,5950,’Esteban’,2,13),(421,1231380,’Anne-Marie Sakowitz’,0,14),(421,5301,’Vikram Ray’,2,15),(2252,3489,’Anna Khitrova’,1,0),(2252,110,’Nikolai Luzhin’,2,1),(2252,1925,’Kirill’,2,2),(2252,12647,’Semyon’,2,3),(2252,11281,’Helen’,1,4),(2252,20425,’Yuri’,2,5),(2252,43553,’Stepan’,2,6),(2252,43554,’Ekren’,2,7),(2252,43555,’Azim’,0,8),(2252,43556,’Soyka’,0,9),(2252,79610,’Tatiana’,1,10),(2252,61134,’Tatiana (voice)’,1,11),(2252,1428513,’Kirilenko’,0,12),(2252,1684513,’Chechen’,0,13),(2252,39660,’Chechen’,2,14),(2252,440943,’Doctor Aziz’,2,15),(2252,1027457,’Prostitute’,0,16),(2252,1315500,’Prostitute’,0,17),(2252,109167,’Football Hooligan (uncredited)’,0,18),(9770,8891,’Sam Baily’,2,0),(9770,4483,’Max Brackett’,2,1),(9770,18658,’Laurie Callahan’,1,2),(9770,21278,’Kevin Hollander’,2,3),(9770,10360,’Lou Potts’,2,4),(9770,10401,’Mrs. Banks’,1,5),(9770,7676,’Dohlen’,2,6),(9770,15854,’Lemke’,2,7),(9770,1546030,’The Kids’,0,8),(9770,5502,’Cliff Williams’,2,9),(9770,4610,’Doctor’,2,10),(9770,4041,’CTN Junior Executive’,2,11),(9770,14991,’Jay Leno’,2,12),(9770,5148,’Jenny’,1,13),(9770,64932,’Miss Rose’,1,14),(9923,116,’Domino Harvey’,1,0),(9923,2295,’Ed Mosbey’,2,1),(9923,25616,’Choco’,2,2),(9923,18792,’Claremont Williams’,2,3),(9923,60561,’Lateesha Rodriguez’,1,4),(9923,60581,’Alf’,0,5),(9923,19148,’Himself’,2,6),(9923,60560,’Lashandra Davis’,1,7),(9923,53928,’Lashindra Davis’,1,8),(9923,19146,’Himself’,2,9),(9923,54696,’Raul’,2,10),(9923,12850,’Drake Bishop’,2,11),(9923,31514,’Burke Beckett’,2,12),(9923,58509,’Francis’,2,13),(9923,14061,’Sophie Wynn’,1,14),(9923,46814,’Edna Fender’,1,15),(9923,140,’Taryn Miles’,1,16),(9923,37027,’Locus Fender’,2,17),(9923,8211,’Kimmie’,1,18),(9923,4690,’Mark Heiss’,2,19),(9923,51998,’Chinegro Woman’,1,20),(9923,2887,’The Wanderer’,0,21),(9923,94743,’Himself’,0,22),(9923,1448566,’Young Domino’,0,23),(9923,1448567,’Girl Walking from Exploding Car’,0,24),(9923,1181464,’Howie Stein’,0,25),(9275,2157,’Rainbow Randolph’,2,0),(9275,2229,’Nora Wells’,1,1),(9275,819,’Sheldon Mopes / Smoochy’,2,2),(9275,518,’Burke Bennett’,2,3),(9275,12219,’Marion Frank Stokes’,2,4),(9275,11213,’Tommy Cotter’,1,5),(9275,13645,’Angelo Pike’,2,6),(9275,18313,’Spinner Dunn’,2,7),(9275,7420,’Merv Green’,2,8),(9275,3418,’Buggy Ding Dong’,2,9),(9548,57906,’Ford Fairlane’,0,0),(9548,10681,’Julian Grendel’,2,1),(9548,12949,’Colleen Sutton’,1,2),(9548,57907,’Don Cleveland’,2,3),(9548,34485,’Jazz’,1,4),(9548,18977,’Lt. Amos’,2,5),(9548,121757,’Zuzu Petals’,1,6),(9548,15832,’Johnny Crunch’,2,7),(9548,5139,’Smiley’,2,8),(9548,1737,’Sam the Sleaze Bag’,2,9),(9548,155681,’Bobby Black’,2,10),(9548,103901,’Club Singer’,1,11),(9548,56152,’Melodi’,1,12),(9548,84112,’The Kid’,2,13),(9548,21063,’Pussycat’,1,14),(9548,151361,’MTV VJ’,2,15),(9548,22072,’Sorority Girl’,1,16),(9548,16663,’Pussycat’,1,17),(9548,101789,’Kyle Troy’,0,18),(9548,57910,’Club Guy’,2,19),(9548,1686194,’Club Guy’,0,20),(9548,156029,’Punk Gunslinger’,2,21),(9548,1770170,’Punk Gunslinger’,0,22),(9548,15536,’Detective’,2,23),(9548,155924,’Pussycat’,1,24),(9548,179982,’Pussycat’,1,25),(9548,1614928,’Twin Club Girl’,1,26),(9548,1849257,’Twin Club Girl’,1,27),(9548,1849259,’Lydia’,1,28),(9548,1614499,’Bouncer’,0,29),(9548,11659,’College Boy’,2,30),(9548,1849260,’College Boy’,2,31),(9548,1542,’Frat Boy’,2,32),(9548,551516,’Frat Boy’,0,33),(9548,1437096,’Sleazy Guy’,0,34),(9548,1849262,’Sorority Girl’,1,35),(9548,1849264,’Sorority Girl’,1,36),(9548,22555,’Sorority Girl’,1,37),(9548,559433,’Bartender’,0,38),(9548,1849273,’Tour Guide’,1,39),(9548,33713,’Amiable Tourist’,2,40),(9548,123728,’Mortician’,2,41),(9548,1849275,’Mortician’,2,42),(9548,1776499,’Receptionist’,1,43),(9548,1849276,’Receptionist’,1,44),(9548,1720666,’Bel Air Party Singer’,0,45),(9548,31004,’Slam the Rapper’,2,46),(9548,559436,’Damion Flemm’,0,47),(9548,1849283,’Girl on Ladder’,1,48),(9548,1849285,’Piano Mover’,2,49),(9548,1093167,’Club Dancer #1 (uncredited)’,0,50),(9548,1623921,’Sorority Girl (uncredited)’,1,51),(9548,1155487,’Girl at Funeral (uncredited)’,1,52),(9548,1849289,’Surfer Outside of Bar (uncredited)’,2,53),(9548,27493,’Club Guy Bob (uncredited)’,0,54),(1900,3392,’Robert Wakefield’,2,0),(1900,1121,’Javier Rodriguez’,2,1),(1900,16429,’Manolo Sanchez’,2,2),(1900,21708,’Gen. Arturo Salazar’,2,3),(1900,21709,’Mark’,2,4),(1900,21710,’Lawery Rodman’,2,5),(1900,1922,’Helena Ayala’,1,6),(1900,6065,’Arnie Metzger’,2,7),(1900,21711,’Caroline Wakefield’,1,8),(1900,1896,’Montel Gordon’,2,9),(1900,31714,’Helena\’s Friend’,1,10),(1900,4589,’Juan Obregu00f3n’,2,11),(1900,15860,’Eduardo Ruiz’,2,12),(1900,1461276,’Porfilio Madrigal’,0,13),(1900,1005339,’DEA Agent – CalTrans’,2,14),(1900,126841,’DEA Agent – CalTrans’,2,15),(1900,62595,’Witness #2′,1,16),(1900,33623,’Desert Truck Driver’,2,17),(1900,21708,’General Arturo Salazar’,2,18),(1900,118045,’Salazar Soldier / The Torturer’,2,19),(1900,53257,’Salazar Soldier #2′,2,20),(1900,21710,’Lawyer Rodman’,2,21),(1900,1532415,’Neighbor (uncredited)’,1,22),(1900,3136,’Rosario’,1,23),(1900,17052,’Seth Abrahms’,2,24),(1900,3926,’Chief of Staff’,0,25),(1900,40481,’Ray Castro’,2,26),(1900,19492,’Social Worker’,1,27),(1900,5365,’Francisco Flores’,2,28),(89,3,’Indiana Jones’,2,0),(89,738,’Professor Henry Jones’,2,1),(89,656,’Dr. Marcus Brody’,2,2),(89,739,’Dr. Elsa Schneider’,1,3),(89,655,’Sallah’,2,4),(89,740,’Walter Donovan’,2,5),(89,741,’Indiana Jones (young)’,2,6),(89,742,’Vogel’,2,7),(89,743,’Kazim’,2,8),(89,744,’Grail Knight’,2,9),(89,745,’Fedora’,2,10),(89,746,’Sultan’,2,11),(89,748,’Panama Hat’,2,12),(89,749,’Mrs. Donovan’,1,13),(89,649,’Butler’,2,14),(89,747,’Young Henry’,0,15),(89,1402876,’Herman’,0,16),(89,3039,’Roscoe’,2,17),(89,1020340,’Half Breed’,2,18),(89,1402879,’Rough Rider’,2,19),(89,1402887,’Sheriff’,2,20),(89,8591,’Deputy Sheriff’,0,21),(89,1402890,’Young Panama Hat’,0,22),(89,1402891,’Scout Master’,0,23),(89,1402892,’Scout #1′,0,24),(89,1402893,’Scout #2′,0,25),(89,1270880,’Professor Stanton’,0,27),(89,55911,’Dr. Mulbray’,0,28),(89,1402913,’Man at Hitler Rally’,0,29),(89,158674,’German Officer at Hitler Rally’,0,30),(89,1402917,’Hatay Soldier in Temple’,0,31),(89,1402919,’Zeppelin Crewman’,0,32),(89,1402922,’Principal SS Officer at Castle’,0,33),(89,1402925,’Officer at Castle’,0,34),(89,1402957,’Female Officer at Castle’,0,35),(89,1402960,’Young Officer at Castle’,0,36),(89,25079,’Hatay Tank Gunner’,2,37),(89,81030,’Hatay Tank Driver’,0,38),(89,10942,’Gestapo’,2,39),(89,43496,’Film Director’,1,40),(89,28871,’G-Man’,2,41),(89,1229130,’Man on Zeppelin’,2,42),(89,1402970,’Irene’,0,43),(89,1032068,’Flower Girl’,0,44),(89,653,’Gestapo’,2,45),(89,7024,’Tank Crewman Hit by Periscope (uncredited)’,2,46),(89,1271092,’German Soldier (uncredited)’,2,47),(89,1228240,’Passenger on Airship (uncredited)’,1,48),(89,70417,’Adolf Hitler (uncredited)’,2,49),(89,10213,’Tank Crewman (uncredited)’,2,50),(89,184862,’World War One Ace’,2,51),(9481,5292,’Lincoln Rhyme’,2,0),(9481,11701,’Amelia Donaghy’,1,1),(9481,15758,’Thelma’,1,2),(9481,12132,’Captain Howard Cheney’,2,3),(9481,69298,’Detective Kenny Solomon’,2,4),(9481,40481,’Eddie Ortiz’,2,5),(9481,2221,’Richard Thompson’,2,6),(9481,21179,’Dr. Barry Lehman’,2,7),(9481,21127,’Steve, Amelia\’s Boyfriend’,2,8),(9481,18977,’Detective Paulie Sellitto’,2,9),(9481,129419,’Lieutenant Carl Hanson’,0,10),(9481,129420,’Lindsay Rubin’,1,11),(9481,129421,’Alan Rubin’,2,12),(9481,63342,’Train Engineer’,2,13),(9481,60910,’Grandfather’,2,14),(9481,62760,’Granddaughter’,1,15),(9481,180996,’Taxi Inspector’,2,16),(9481,1098451,’Homicide Detective’,2,18),(9481,190900,’Ortiz\’s Assistant’,2,19),(9481,559971,’Uniform Cop’,2,20),(9481,66934,’Gas Worker’,2,21),(4547,1038,’Meg Altman’,1,0),(4547,37917,’Sarah Altman’,1,1),(4547,2178,’Burnham’,2,2),(4547,20309,’Raoul’,2,3),(4547,7499,’Junior’,2,4),(4547,37042,’Lydia Lynch’,1,5),(4547,15865,’Evan Kurlander’,2,6),(4547,5274,’Stephen Altman’,0,7),(4547,36189,’Officer Keeney’,2,8),(4547,12047,’Sleepy Neighbor’,2,9),(4547,59675,’Officer Morales’,2,10),(4547,99022,’SWAT Cop’,0,11),(4547,1056131,’SWAT Cop’,0,12),(4547,1077957,’SWAT Cop’,0,13),(4547,157707,’SWAT Cop’,0,14),(4547,2227,’Stephen\’s Girlfriend on the Phone (voice)’,1,15),(6415,1461,’Archie Gates’,2,0),(6415,13240,’Troy Barlow’,2,1),(6415,9778,’Chief Elgin’,2,2),(6415,5953,’Conrad Vig’,2,3),(6415,7248,’Amir Abdullah’,2,4),(6415,4496,’Adriana Cruz’,1,5),(6415,6213,’Walter Wogaman’,0,6),(6415,5419,’Captain Said’,0,7),(6415,34,’Colonel Horn’,2,8),(6415,7497,’Captain Van Meter’,2,9),(6415,20750,’Cathy Daitch’,1,10),(6415,117190,’Paco’,2,11),(6415,11668,’Debbie Barlow, Troy\’s Wife’,0,12),(6415,61178,’Amir\’s Daughter’,1,13),(6415,173810,’Iraqi Tank Major’,2,14),(6415,294813,’Iraqi First Kill Soldier’,2,15),(6415,8032,’Iraqi Child’,2,16),(9896,9777,’Owen Templeton’,2,0),(9896,13922,’Duane Cody’,2,1),(9896,2395,’Vera Baker’,1,2),(9896,33654,’Nick Schaffer’,2,3),(9896,20189,’Tracy Faucet’,1,4),(9896,8930,’Donald P. Sinclair’,0,5),(9896,4201,’Zack Mallozzi’,2,6),(9896,58381,’Blaine Cody’,2,7),(9896,206202,’Merrill Jennings’,1,8),(9896,16165,’Randy Pear’,2,9),(9896,11074,’Beverly Pear’,1,10),(9896,10730,’Enrico Pollini’,2,11),(9896,61961,’Harold Grisham’,2,12),(9896,55259,’Gus the Cabbie’,2,13),(9896,21721,’Shawn Kent’,2,14),(9896,119759,’Vicky’,1,15),(9896,49815,’Lloyd’,2,16),(9896,174838,’Herself’,1,17),(9896,8534,’The Squirrel Lady’,1,18),(9896,13023,’Rainbow House Nurse’,1,19),(167,1229,’Dr. Mark Powell’,2,0),(167,1979,’Prot’,2,1),(167,1980,’Rachel Powell’,1,2),(167,1981,’Claudia Villars’,1,3),(167,1982,’Dr. Chakaraborty’,2,4),(167,1983,’Navarro’,2,5),(167,1984,’Joyce Trexler’,1,6),(167,1909,’Betty McAllister’,1,7),(167,1985,’Ernie’,2,8),(167,1986,’Sal’,2,9),(167,1737,’Howie’,2,10),(167,1987,’Bess’,1,11),(167,1988,’Maria’,1,12),(167,1989,’Mrs. Archer’,1,13),(167,1990,’Steve Becker’,0,14),(167,33832,’Dominic McAllister’,2,15),(167,42316,’Russell’,0,16),(167,33501,’Simms’,2,17),(167,96554,’Abby’,1,18),(167,75323,’Josh – Age 10′,2,19),(167,1991,’Natalie Powell – Age 6′,0,20),(167,1992,’Gabby Powell – Age 9′,1,21),(167,84497,’Michael Powell – Age 21′,2,22),(167,131725,’Sheriff’,2,23),(167,1592619,’Woman on Train’,1,24),(167,1263449,’Hospital Patient (uncredited)’,2,25),(167,1479,’Screaming Man (uncredited)’,2,26),(167,1542405,’Jennifer (uncredited)’,1,27),(167,15415,’Duncan Flynn’,2,28),(167,101847,’David Patel’,2,29),(1636,13918,’The Devil’,1,0),(1636,18269,’Elliot’,2,1),(1636,1518,’Alison’,1,2),(1636,18270,’Daniel/Dan/Danny, Esteban, Beach Jock, Lamar Garrett, Dr. Ngegitigegitibaba’,2,3),(1636,17342,’Bob/Roberto/Beach Jock’,2,4),(1636,18271,’Jerry/Alejandro/Beach Jock/Jerry Turner’,2,5),(1636,18272,’Angel’,2,6),(1636,18273,’Carol/Penthouse Hostess’,1,7),(1636,1535,’Priest’,2,8),(1636,35367,’Desk Sergeant’,2,9),(1636,140237,’Synedyne Supervisor’,2,10),(2148,1205,’Dixie Dwyer’,2,0),(2148,66804,’Sandman Williams’,2,1),(2148,2882,’Vera Cicero’,1,2),(2148,62127,’Lila Rose Oliver’,1,3),(2148,382,’Owney Madden’,2,4),(2148,1736,’Dutch Schulz’,2,5),(2148,2963,’Vincent Dwyer’,2,6),(2148,922,’Abbadabba Berman’,2,7),(2148,56266,’Frenchy Demange’,2,8),(2148,54122,’Tish Dwyer’,1,9),(2148,9259,’Frances Flegenheimer’,1,10),(2148,1825507,’Clay Williams’,0,11),(2148,130723,’Sol Weinstein’,0,12),(2148,55272,’Madame St. Clair’,1,13),(2148,2975,’Bumpy Rhodes’,2,14),(2148,15213,’Joe Flynn’,2,15),(2148,2887,’Irving Stark’,0,16),(2148,1367324,’Mike Best’,0,17),(2148,2881,’Ed Popke’,2,18),(2148,722,’Patsy Dwyer’,1,19),(2148,1825508,’Winnie Williams’,0,20),(2148,937441,’Norma Williams’,1,21),(2148,4198,’Suger Coates’,0,22),(2148,176555,’Cab Calloway’,0,23),(2148,29915,’Charles \’Lucky\’ Luciano’,2,24),(2148,6200,’Gloria Swanson’,1,25),(2148,92777,’Kid Griffin’,2,26),(2148,4808,’Bumpy Hood’,2,27),(2148,103853,’Ted Husing’,2,28),(2148,98927,’Stage Door Joe’,2,29),(2148,1769,’Child in Street’,1,30),(2148,1226112,’Dancer’,0,31),(5176,934,’Ben Wade’,2,0),(5176,3894,’Dan Evans’,2,1),(5176,33235,’William Evans’,2,2),(5176,424,’Grayson Butterfield’,0,3),(5176,8949,’Byron McElroy’,2,4),(5176,15370,’Alice Evans’,0,5),(5176,11107,’Charlie Prince’,2,6),(5176,21088,’Doc Potter’,2,7),(5176,5025,’Emmy Nelson’,1,8),(5176,42200,’Glen Hollander’,2,9),(5176,42201,’Campos’,0,10),(5176,42203,’Jorgensen’,0,11),(5176,42204,’Jackson’,0,12),(5176,73589,’Tommy Darden’,2,13),(5176,79072,’Tucker’,2,14),(5176,553357,’Kinter’,0,15),(5176,553358,’Nez’,0,16),(5176,1204213,’Nez’,0,17),(5176,949852,’Sutherland’,2,18),(5176,75617,’Tighe’,0,19),(5176,76543,’Crawley’,2,20),(5176,208061,’Kane’,2,21),(5176,79213,’Walter Boles’,0,22),(5176,36422,’Zeke’,2,23),(5176,220118,’Mark Evans’,2,24),(5176,105786,’Bill Moons’,2,25),(5176,109525,’Marshal Will Doane’,2,26),(5176,1204214,’Deputy Harvey Pell’,0,27),(5176,1173099,’Deputy Sam Fuller’,2,28),(5176,1204215,’Evil Bartender’,0,29),(5176,1204216,’Train Clerk’,0,30),(5176,1204217,’Contention Woman (uncredited)’,0,31),(5176,1204218,’Gunfighter (uncredited)’,0,32),(5176,1204219,’Bad Guy #1 (uncredited)’,0,33),(5176,1137847,’William Marsh (uncredited)’,0,34),(5176,1204220,’Bisbee Townsman (uncredited)’,0,35),(5176,1204221,’Gunman (uncredited)’,0,36),(5176,1204222,’Gunman (uncredited)’,0,37),(5176,1204223,’Contention Gunman (uncredited)’,0,38),(5176,1204224,’Bisbee Townsperson (uncredited)’,0,39),(5176,1204225,’Merchant (uncredited)’,2,40),(5176,967704,’Gunman (uncredited)’,0,41),(5176,1204226,’Town Drunk (uncredited)’,2,42),(5176,927752,’Contention Gunman (uncredited)’,0,43),(1389,1461,’Jack Foley’,2,0),(1389,16866,’Karen Sisco’,1,1),(1389,10182,’Buddy Bragg’,2,2),(1389,1896,’Maurice Miller’,2,3),(1389,13,’Richard Ripley’,2,4),(1389,18324,’Glenn Michaels’,2,5),(1389,21353,’Kenneth’,2,6),(1389,1117,’Marshall Sisco’,2,7),(1389,40481,’Chino’,2,8),(1389,54714,’White Boy Bob’,2,9),(1389,2229,’Adele’,1,10),(1389,44038,’Midge’,1,11),(1389,2232,’Ray Nicolette’,2,12),(1389,19492,’Moselle’,1,13),(1389,2231,’Hejira Henry’,2,14),(1389,3137,’Raymond Cruz’,2,15),(9894,206,’Cable Guy’,2,0),(9894,4756,’Steven M. Kovacs’,2,1),(9894,41087,’Robin Harris’,1,2),(9894,70851,’Rick’,2,3),(9894,18364,’Steven\’s father’,2,4),(9894,6930,’Steven\’s Mother’,0,5),(9894,7399,’Sam Sweet / Stan Sweet’,2,6),(9894,21315,’Eric Roberts’,2,7),(9894,21197,’Medieval Times Waitress’,1,8),(9894,43120,’Medieval Times Host’,2,9),(9894,28101,’Steven\’s Boss’,2,10),(9894,212,’Sales Manager’,2,11),(9894,26046,’Steven\’s Secretary’,1,12),(9894,887,’Robin\’s Date’,2,13),(9894,134772,’Basketball Player’,0,14),(9894,3138,’Cable Boy\’s Mother’,1,15),(9894,198878,’Heather’,0,16),(7504,52763,’Dil Navaz’,2,0),(7504,53372,’Shanta’,1,1),(7504,53373,’Lenny Sethna’,0,2),(7504,53374,’Bunty Sethna’,0,3),(7504,53375,’Rustom Sethna’,2,4),(7504,53376,’Mr. Rogers’,2,5),(7504,53377,’Imam Din’,2,6),(7504,53379,’Butcher’,0,7),(7504,53380,’Toto Ramji’,0,8),(7504,53381,’Sher Singh’,0,9),(8592,6449,’Dick Tracy’,2,0),(8592,1158,’Big Boy Caprice’,2,1),(8592,3125,’Breathless Mahoney’,1,2),(8592,13389,’Kid’,2,3),(8592,21104,’Tess Trueheart’,1,4),(8592,4483,’Mumbles’,2,5),(8592,3085,’Spaldoni’,2,6),(8592,4520,’Flattop’,2,7),(8592,5950,’Sam Catchem’,2,8),(8592,61303,’D.A. Fletcher’,2,9),(8592,8534,’Mrs. Green’,1,10),(8592,7004,’Lips Manlis’,2,11),(8592,1466,’Chief Brandon’,2,12),(8592,25503,’88 Keys’,2,13),(8592,15098,’Katie valiant / wheezy weasel’,1,14),(8592,78619,’Smarty weasel’,2,15),(8592,12826,’Pyscho weasel / Greasy weasel’,2,16),(8592,196714,’Stupid weasel’,2,17),(8592,15762,’Natasha boulder/ Jenny Triton’,1,20),(8592,14731,’Influence’,2,21),(8592,1107,’Pruneface’,2,22),(8592,11514,’Texie Garcia’,0,23),(8592,100552,’Welfare Person’,1,24),(8592,15274,’Trisha foxworth / psycha psycho’,1,25),(8592,71347,’Mike’,2,26),(913,517,’Thomas Crown’,2,0),(913,14343,’Catherine Banning’,1,1),(913,5724,’Michael McCann’,2,2),(913,856,’Andrew Wallace’,2,3),(913,13936,’Detective Paretti’,2,4),(913,6839,’John Reynolds’,2,5),(913,13937,’Friedrich Golchan’,2,6),(913,1173,’Heinrich Knutzhorn’,2,7),(913,6450,’The Psychiatrist’,1,8),(913,13938,’Bobby McKinley’,2,9),(913,13939,’Janos’,2,10),(913,1583695,’Senior Museum Guard’,2,11),(913,1217626,’Watching Cop’,0,12),(1368,16483,’John J. Rambo’,2,0),(1368,16554,’Col. Samuel Trautman’,2,1),(1368,6197,’Hope Sheriff Will Teasle’,2,2),(1368,16555,’State Police Capt. Dave Kern’,0,3),(1368,16556,’Deputy Sgt. Arthur Galt’,2,4),(1368,16557,’Deputy Balford’,0,5),(1368,15824,’Deputy Ward’,2,6),(1368,16558,’Orval the Dog Man’,2,7),(1368,16559,’Deputy Lester’,2,8),(1368,16560,’Deputy Mitch’,2,9),(1368,16561,’Deputy Shingleton’,0,10),(1368,16562,’Preston’,0,11),(1368,16563,’Pilot’,0,12),(1368,16564,’Trooper’,0,13),(1368,16565,’Radio operator’,0,14),(1368,1213777,’Lt. Morgen’,0,15),(1368,75467,’Guardsman #1′,2,16),(1368,1816628,’Guardsman #2′,0,17),(1368,1816630,’Guardsman #3′,0,18),(1368,27121,’Guardsman #4′,0,19),(1368,21089,’Guardsman #5′,2,20),(1368,102741,’Guard C.O.’,2,21),(1368,85545,’Hunter’,0,22),(593,1190206,’Kris Kelvin’,2,0),(593,1190211,’Hari’,0,1),(593,8474,’Dr. Snaut’,2,2),(593,8475,’Dr. Sartorius’,2,3),(593,1190992,’Kelvin\’s Father’,2,4),(593,8476,’Henri Berton’,2,5),(593,564897,’Prof. Messenger’,0,6),(593,8478,’Dr. Gibarian’,0,7),(593,8479,’Kelvin\’s Mother’,1,8),(593,8480,’Anna’,0,9),(5393,15903,’Der Zauberer’,2,0),(5393,43120,’Mambo’,2,2),(5393,11863,’Ella’,1,3),(5393,43121,’Gute Fee’,0,4),(5393,8316,’Rumpelstilzchen’,2,8),(5393,43125,’Freund 2′,2,9),(5393,33260,’Rick’,2,11),(5393,12900,’Munk’,2,13),(5393,9657,’Prinz Humperdink’,2,15),(5393,10205,’Frieda’,1,16),(5393,31531,’Zwerg 1/Zwerg 2/Riese’,0,17),(5393,78798,’Freund 3/Zwerg 3/Bote/Wolf 2′,2,18),(5393,34983,’Hexe1′,1,19),(5393,4253,’Wolf 1′,2,20),(5393,61969,’Freund 1′,2,21),(5393,60739,’Stiefschwester 1/Baby/Rotku00e4ppchen’,1,22),(5393,17414,’Stiefschwester 2′,1,23),(9095,1204,’Mary Reilly’,1,0),(9095,6949,’Dr. Henry Jekyll / Edward Hyde’,2,1),(9095,47722,’Der Butler Mr. Poole’,2,2),(9095,5658,’Marys Vater’,2,3),(9095,515,’Mrs. Farraday’,1,4),(9095,1229735,’Mrs. Kent’,0,5),(9095,3968,’Bradshaw’,2,6),(9095,33399,’Annie’,0,7),(9095,8443,’Mary\’s Mother’,1,8),(9095,8785,’Sir Danvers Carew’,2,9),(9095,7030,’Haffinger’,2,10),(8874,1204,’Julianne Potter’,1,0),(8874,20212,’Michael O\’Neal’,2,1),(8874,6941,’Kimberly Wallace’,1,2),(8874,4757,’George Downes’,2,3),(8874,6541,’Walter Wallace’,2,4),(8874,588,’Joe O\’Neal’,2,5),(8874,3052,’Samantha Newhouse’,1,6),(8874,7465,’Mandy Newhouse’,1,7),(8874,543204,’Isabelle Wallace’,1,8),(8874,35769,’Scotty O\’Neal’,2,9),(8874,1077879,’Title Sequence Performer #1′,0,10),(8874,1077880,’Title Sequence Performer #2′,0,11),(8874,1007869,’Title Sequence Performer #3′,1,12),(8874,62065,’Title Sequence Performer #4′,1,13),(8874,1077881,’Flower Girl’,0,14),(8874,86565,’Kimmy\’s Grandma’,1,15),(8874,1077882,’Old Woman #2′,0,16),(8874,1077883,’Oldest Lady’,0,17),(8874,1077884,’Party Guest’,0,18),(8874,1077885,’Party Guest’,0,19),(8874,13242,’Bellman’,2,20),(8874,17342,’Brunch Guest’,2,21),(8874,6008,’Jonathan P.E. Rice’,2,22),(320,1158,’Will Dormer’,2,0),(320,2157,’Walter Finch’,2,1),(320,448,’Ellie Burr’,1,2),(320,16307,’Rachel Clement’,1,3),(320,42993,’Hap Eckhart’,2,4),(320,18070,’Fred Duggar’,2,5),(320,15900,’Chief Nyback’,2,6),(320,58393,’Kay Connell’,1,7),(320,63791,’Francis’,2,8),(320,544,’Farrell’,2,9),(320,152410,’Trish Eckhart’,1,10),(320,179495,’Rich’,2,11),(320,27136,’Tanya Francke’,1,12),(320,23495,’Randy Stetz’,2,13),(320,99841,’Coroner’,1,14),(320,1075149,’Pilot’,0,15),(320,65800,’Officer #1′,0,16),(320,169723,’Officer #2′,0,17),(320,83211,’Mrs. Connell’,1,18),(320,1089889,’Principal’,0,19),(320,53119,’Uniformed Officer’,2,20),(320,25386,’Warfield (voice)’,2,21),(320,162445,’Woman on the Road’,1,22),(320,64914,’Girl at Funeral’,0,23),(320,117997,’Ticket Taker’,2,24),(199,2387,’Captain Jean-Luc Picard’,2,0),(199,2388,’Commander William T. Riker’,2,1),(199,1213786,’Lt. Commander Data’,2,2),(199,2390,’Commander Geordi La Forge’,2,3),(199,2391,’Lieutenant Commander Worf’,2,4),(199,2392,’Commander Beverly Crusher’,1,5),(199,2393,’Counselor Deanna Troi’,1,6),(199,2505,’Dr. Zefram Cochrane’,2,7),(199,1981,’Lily Sloane’,1,8),(199,2506,’Borg Queen’,1,9),(199,2203,’Lieutenant Hawk’,2,10),(199,28248,’Lt. Barclay’,2,11),(199,1368723,’Ensign Kellogg’,0,12),(199,16180,’Enterprise EMH’,2,13),(1624,206,’Fletcher Reede’,2,0),(1624,16307,’Audrey Reede’,1,1),(1624,2130,’Jerry’,2,2),(1624,7906,’Samantha Cole’,1,3),(1624,12967,’Dana Appleton’,1,4),(1624,60072,’Child at Party and School’,1,5),(1624,11718,’Greta’,1,6),(1624,18191,’Miranda’,1,7),(1624,18192,’Judge Marshall Stevens’,2,8),(1624,14312,’Mr. Allan’,2,9),(1624,21858,’Lady in Elevator’,1,10),(1624,18190,’Max Reede’,2,11),(1624,18193,’Kenneth Falk’,0,12),(888,1230,’Fred Flintstone’,2,0),(888,20,’Wilma Flintstone’,1,1),(888,8872,’Barney Rubble’,2,2),(888,12929,’Betty Rubble’,0,3),(888,6677,’Cliff Vandercave’,2,4),(888,4587,’Rosetta Stone’,1,5),(888,3635,’Pearl Slaghoople’,1,6),(888,9175,’Mr. Slate’,2,7),(888,13591,’Hoagie’,2,8),(888,13592,’Joe Rockhead’,2,9),(888,13593,’Gobo The Grizzled Man’,2,10),(888,13640,’Ali / Dicabird / Blossom\’s Adopted Doll Son Ali’,2,11),(888,35219,’Triple X / Green Goose’,2,13),(888,51957,’Bobo’,0,14),(888,145257,’Tanya Slag’,0,15),(4256,6736,’Becca’,1,0),(4256,35597,’Kate’,1,1),(4256,35799,’Tabitha’,1,2),(4256,6952,’Tom’,2,3),(4256,35548,’George’,2,4),(4256,35800,’Sue’,1,5),(4256,12799,’Ross Giggins’,2,6),(4256,1772,’Cindy Campbell’,1,7),(4256,35705,’Brenda Meeks’,1,8),(4256,9205,’Annie’,1,9),(4256,15758,’Aunt Shaneequa/The Oracle’,1,10),(4256,7633,’President Baxter Harris’,2,11),(4256,55638,’CJ’,2,12),(4256,18471,’Mahalik’,2,13),(4256,20187,’Trooper Champlin’,1,14),(4256,15903,’The Architect’,2,15),(4256,165899,’Simon Cowell’,2,16),(1493,18277,’Gracie Hart’,1,0),(1493,4589,’Eric Matthews’,2,1),(1493,3895,’Victor Melling’,2,2),(1493,11850,’Kathy Morningside’,1,3),(1493,1748,’Stan Fields’,2,4),(1493,8874,’Harry McDonald’,2,5),(1493,141484,’Agent Clonsky’,2,6),(1493,26716,’Cheryl Frasier, Miss Rhode Island’,1,7),(1493,75696,’Karen Krantz, Miss New York’,1,8),(1493,131125,’Frank Tobin’,2,9),(1493,34247,’Mary Jo Wright, Miss Texas’,0,10),(1493,52116,’Leslie Davis, Miss California’,1,11),(1493,141485,’Alana Krewson, Miss Hawaii’,1,12),(1493,59456,’Agent Harris’,2,13),(1493,141486,’Agent Jerry Grant’,2,14),(1493,988370,’Kelly Beth Kelley, Miss Nebraska’,1,15),(1493,589956,’Russian Bodyguard’,2,16),(9944,1204,’Darby Shaw’,1,0),(9944,5292,’Gray Grantham’,2,1),(9944,9880,’Thomas Callahan’,2,2),(9944,7676,’Bob Gminski’,2,3),(9944,12074,’Smith Keen’,2,4),(9944,1115118,’Sara Ann Morgan\’s Father’,2,5),(9944,11512,’Gavin Vereek’,2,6),(9944,7668,’Justice Rosenberg’,2,7),(9944,3417,’Fletcher Cole’,2,8),(9944,73022,’The President’,2,9),(9944,2283,’Khamel’,2,10),(9944,38024,’Alice Stark’,1,11),(7350,514,’Edward Periman Cole’,2,0),(7350,192,’Carter Chambers’,2,1),(7350,52601,’Thomas’,2,2),(7350,18292,’Virginia Chambers’,1,3),(7350,52603,’Roger Chambers’,2,4),(7350,47669,’Angelica’,1,5),(7350,52602,’Dr. Hollins’,2,6),(7350,1073868,’Kai’,0,7),(7350,167225,’Chandra’,1,8),(7350,1073869,’Maya’,0,9),(7350,1073870,’Lee’,0,10),(7350,123813,’Instructor’,2,11),(7350,1073871,’Emily’,0,12),(7350,200128,’Female Administrator’,0,13),(7350,53252,’Mechanic’,2,14),(7350,89499,’Manny’,0,15),(7350,157865,’Nurse Shing’,1,16),(7350,205394,’Attractive Woman #1′,1,17),(7350,62648,’Rachel’,1,18),(7350,188707,’Kyle’,0,19),(7350,1558411,’Edward\’s Granddaughter’,0,20),(7350,86175,’Flight Attendant’,1,21),(9869,3,’Jack Ryan’,2,0),(9869,10427,’Dr. Caroline Cathy Ryan’,1,1),(9869,29459,’Kevin O\’Donnell’,2,2),(9869,2155,’Sally Ryan’,1,3),(9869,1292,’Lord William Holmes’,2,4),(9869,2231,’Lt. Cmdr. Robby Jackson’,2,5),(9869,6416,’Annette’,1,6),(9869,5169,’Marty Cantor’,2,7),(9869,15152,’Adm. James Greer’,0,8),(9869,48,’Sean Miller’,2,9),(9869,194,’Paddy O\’Neil’,2,10),(9869,2451,’Dennis Cooley’,2,11),(9869,67028,’Watkins’,2,12),(9869,59081,’Inspector Highland’,2,13),(9869,2629,’Owens’,2,14),(9869,56951,’Sissy’,1,15),(9869,91663,’Lord Justice’,2,17),(9869,36666,’First Aide’,2,18),(9869,238272,’Ashley’,2,19),(9869,112267,’Charlie Dugan’,2,21),(9869,15318,’Ned Clark’,2,22),(9869,1233093,’Jimmy Reardon’,0,23),(9869,989,’Court Guard’,0,24),(9869,4029,’Interviewer’,2,25),(9869,11769,’CIA Technician’,2,26),(9869,77898,’Secretary’,1,27),(4379,16866,’Charlie Cantillini’,1,0),(4379,6352,’Viola Fields’,1,1),(4379,15424,’Kevin Fields’,2,2),(4379,27102,’Ruby’,0,3),(4379,36801,’Remy’,2,4),(4379,34844,’Fiona’,1,5),(4379,24291,’Morgan’,1,6),(4379,21200,’Kit’,2,7),(4379,36802,’Gertrude’,1,8),(4379,36803,’Dr. Chamberlain’,2,9),(4379,538,’Therapist’,1,10),(4379,965232,’Pretty Young Thing at Wedding’,1,11),(4379,23916,’Beverly Hills Dog Owner’,1,12),(4379,11889,’Coffee Shop Customer’,2,13),(4379,1213664,’Tanya Murphy the Pop Star’,0,14),(4379,33430,’Viola\’s Young Replacement’,1,15),(4379,205394,’Kit\’s Date’,1,16),(4379,1868278,’Italian Waiter’,2,17),(2034,5292,’Alonzo Harris’,2,0),(2034,569,’Jake Hoyt’,2,1),(2034,349,’Roger’,2,2),(2034,13022,’Stan Gursky’,2,3),(2034,1166,’Doug Rosselli’,2,4),(2034,7248,’Smiley’,2,5),(2034,19767,’Blue’,2,6),(2034,2041,’Paul’,2,7),(2034,8170,’Sara’,1,8),(2034,18461,’Tim’,2,9),(2034,5874,’Mark’,0,10),(2034,6281,’Lisa’,0,11),(2034,1449364,’Alonzo\’s Son’,0,12),(2034,58650,’Sniper’,2,13),(926,12898,’Jason Nesmith’,2,0),(926,10205,’Gwen DeMarco’,1,1),(926,4566,’Alexander Dane’,2,2),(926,4252,’Fred Kwan’,2,3),(926,6807,’Guy Fleegman’,2,4),(926,15028,’Tommy Webber’,2,5),(926,15029,’Mathesar’,2,6),(926,15030,’Sarris’,2,7),(926,15032,’Teb’,2,8),(926,15033,’Brandon’,2,9),(926,1294,’Laliari’,1,10),(926,15031,’Quellek’,0,11),(926,15034,’Kyle’,2,12),(926,46920,’Neru’,2,13),(926,11678,’Lahnk’,2,14),(926,88702,’Excited alien’,2,15),(926,55624,’Nervous tech’,2,16),(926,62551,’Brandon\’s mom’,1,17),(926,58955,’Announcer’,2,18),(926,15035,’Katelyn’,1,19),(926,15036,’Hollister’,2,20),(4248,1772,’Cindy Campbell’,1,0),(4248,9562,’Shorty Meeks’,2,1),(4248,35768,’Tommy’,2,2),(4248,35690,’Ray Wilkins’,2,3),(4248,212,’Dwight Hartman’,2,4),(4248,35769,’Buddy’,2,5),(4248,35705,’Brenda Meeks’,1,6),(4248,13472,’Prof. Oldman’,2,7),(4248,33676,’Theo’,1,8),(4248,1534,’Henson’,2,9),(4248,4512,’Father McFeely’,2,10),(4248,28637,’Father Harris’,2,11),(4248,19149,’Alex Monday’,1,12),(4248,62521,’Herself’,1,13),(4248,5047,”,1,14),(7214,2231,’Ken Carter’,2,0),(7214,10689,’Kenyon Stone’,2,1),(7214,52037,’Damien Carter’,2,2),(7214,53184,’Timo Cruz’,2,3),(7214,38673,’Jason Lyle’,2,4),(7214,53185,’Maddux’,2,5),(7214,168897,’Susan’,1,6),(7214,6944,’Mrs. Battle’,1,7),(7214,159913,’Dancer’,1,8),(7214,210815,’Bay Hill Cheerleader’,1,9),(1537,880,’Gavin Banek’,2,0),(1537,2231,’Doyle Gipson’,2,1),(1537,17358,’Valerie Gipson’,1,2),(1537,3051,’Michelle’,1,3),(1537,2226,’Stephen Delano’,2,4),(1537,19208,’Ron Cabot’,2,5),(1537,227,’Doyle\’s Sponsor’,2,6),(1537,21179,’Carlyle’,2,7),(1537,2956,’Cynthia Delano Banek’,1,8),(1537,1696196,’Music Teacher/Conductor’,0,9),(1537,20318,’Judge Frances Abarbanel’,1,10),(9360,16866,’Terri Flores’,1,0),(9360,9778,’Danny Rich’,2,1),(9360,10127,’Paul Sarone’,2,2),(9360,7036,’Dr. Steven Cale’,2,3),(9360,887,’Gary Dixon’,2,4),(9360,8537,’Warren Westridge’,2,5),(9360,56152,’Denise Kalberg’,1,6),(9360,177100,’Mateo’,2,7),(9360,11160,’Poacher’,2,8),(9360,15831,’Anaconda (voice)’,2,9),(6282,15555,’Violet Sanford’,1,0),(6282,28472,’Kevin O\’Donnell’,2,1),(6282,1230,’Bill’,2,2),(6282,59592,’Cammie’,1,3),(6282,77897,’Zoe’,1,4),(6282,49,’Lil’,1,5),(6282,18354,’Rachel’,1,6),(6282,58950,’Coyote Ugly Bar Patron’,2,7),(6282,155692,’Cop’,2,8),(6282,865,’Photographer’,2,9),(6282,164944,’Dancing Girl in Bar’,1,10),(6282,1290175,’Dancing Girl in Bar’,0,11),(6282,70304,’Girl at the Surprise Party’,1,12),(6282,95102,’Bidding Customer’,1,13),(6282,15091,’Gloria’,1,14),(6282,1221086,’Bidding Customer’,0,15),(6282,1290425,’Bidding Customer’,1,16),(6282,1219596,’Fiji Mermaid Worker’,0,17),(6282,1225896,’New Coyote’,2,18),(6282,9656,’College guy’,2,19),(508,116,’Juliet’,1,0),(508,7059,’Mia’,1,1),(508,7056,’Karen’,1,2),(508,350,’Sarah’,1,3),(508,3291,’The Prime Minister’,2,4),(508,31717,’Jeannie’,1,5),(508,2440,’Billy Mack’,2,6),(508,7053,’Joe’,2,7),(508,5472,’Jamie Bennett’,2,8),(508,7055,’Jamie\’s Girlfriend’,1,9),(508,3896,’Daniel’,2,10),(508,7058,’Colin Frissell’,2,11),(508,7060,’John’,2,12),(508,7061,’Just Judy’,1,13),(508,5294,’Peter’,2,14),(508,7062,’Mark’,2,15),(508,7063,’Annie’,1,16),(508,879,’The US President’,2,17),(508,4566,’Harry’,2,18),(508,47714,’Natalie’,1,19),(508,25663,’Sam’,2,20),(508,17289,’Karl’,2,21),(508,10730,’Rufus, jewellery salesman’,2,22),(508,33163,’Carol’,2,23),(508,29930,’Stacey’,1,24),(508,25837,’Carol-Anne’,1,25),(508,21596,’Harriet – the Sexy One’,1,26),(508,9205,’Carla – the Real Friendly One’,1,27),(508,1220981,’Jamie\’s mum’,1,28),(508,118763,’Aurelia’,0,29),(508,1836,’Nancy the Caterer’,0,30),(508,3545,’Sam\’s Grandfather’,2,31),(508,79931,’Sam\’s Grandmother’,0,32),(508,59068,’Dec’,0,33),(508,23429,’Mr. Trench’,2,34),(508,47468,’Lesbian Lover (uncredited)’,1,35),(508,7018,’Trombone Player (uncredited)’,2,36),(508,168197,’Joanna’,0,37),(508,1506691,’Record Company Executive’,0,38),(9487,1979,’Hopper (voice)’,2,0),(9487,15886,’Atta (voice)’,1,1),(9487,17265,’Dot (voice)’,1,2),(9487,89784,’Queen (voice)’,1,3),(9487,5149,’Rosie (voice)’,1,4),(9487,7911,’Heimlich (voice)’,0,5),(9487,123037,’Manny (voice)’,0,6),(9487,29803,’Gypsy Moth (voice)’,1,7),(9487,21125,’Molt (voice)’,2,8),(9487,5724,’Francis (voice)’,2,9),(9487,21290,’Flik (voice)’,0,10),(9487,11076,’Slim (voice)’,2,11),(9487,8316,’Tuck / Roll (voice)’,2,12),(9487,7907,’P.T. Flea (voice)’,2,13),(9487,18,’Dim (voice)’,2,14),(9487,7505,’Mr. Soil (voice)’,2,15),(768,85,’Inspector Frederick Abberline’,2,0),(768,69122,’Mary Kelly’,1,1),(768,65,’Sir William Gull’,2,2),(768,1923,’Sergeant Peter Godley’,2,3),(768,385,’Sir Charles Warren’,2,4),(768,973,’Netley, the Coachman’,2,5),(768,1641,’Dark Annie Chapman’,1,6),(768,25656,’Benjamin \’Ben\’ Kidney’,2,7),(768,42571,’Liz Stride’,1,8),(768,80365,’Dr. Ferral’,2,9),(768,80366,’Kate Eddowes’,1,10),(768,80367,’Ada’,0,11),(768,80368,’Officer Bolt’,2,12),(768,80369,’Polly Nichols’,1,13),(768,7061,’Ann Crook’,1,14),(768,122535,’Martha Tabram’,1,15),(768,3971,’Victoria Abberline’,1,16),(768,202032,’Gordie’,2,17),(768,161030,’Marylebone Governor’,2,18),(768,211738,’Albert Sickert / Prince Edward Albert Victor’,2,19),(768,77821,’Constable Withers’,2,20),(768,939,’McQueen’,0,21),(768,12691,’Lord Hallsham’,2,22),(768,1214452,’Doss Landlord’,0,23),(768,3547,’Coroner Robert Drudge’,2,24),(768,182110,’Mac Bartender’,2,25),(2636,16483,’Ray Quick’,2,0),(2636,4430,’May Munro’,1,1),(2636,4512,’Ned Trent’,2,2),(2636,522,’Joe Leon’,2,3),(2636,21315,’Tomas Leon’,2,4),(2636,26651,’Charlie’,0,5),(2636,26652,’Strongarm’,0,6),(2636,26653,’Stan Munro’,0,7),(2636,26654,’Alice Munro’,0,8),(2636,26655,’Young May’,1,9),(2636,26656,’Pianoplayer’,0,10),(2636,1176261,’Singer #1′,0,11),(9981,23659,’Phil Weston’,2,0),(9981,3087,’Buck Weston’,2,1),(9981,61114,’Barbara Weston’,1,2),(9981,1475,’Janice Weston’,1,3),(9981,27972,’Bucky Weston’,2,4),(9981,35554,’Mark Avery’,2,5),(9981,61399,’Mike Ditka’,2,6),(9981,61400,’Sam Weston’,2,7),(9981,61401,’Hunter’,2,8),(9981,61402,’Byong Sun’,0,9),(9981,61403,’Ambrose’,2,10),(9981,61406,’Massimo’,2,11),(9981,61404,’Connor’,2,12),(9981,61405,’Gian Piero’,2,13),(9981,61407,’Jack’,0,14),(9981,52794,’Referee’,2,15),(9981,46074,’Ann Hogan’,1,16),(9981,58768,’Jim Davidson \’The Captain\”,2,17),(9981,61409,’Donna Jones’,1,18),(9981,61408,’Alex’,0,19),(7453,7060,’Arthur Dent’,2,0),(7453,11664,’Trillian’,1,1),(7453,6807,’Zaphod Beeblebrox’,2,2),(7453,4239,’Ford Prefect’,2,3),(7453,6949,’Humma Kavula’,2,4),(7453,15735,’Deep Thought’,1,5),(7453,11275,’Narrator/The Guide’,2,6),(7453,10731,’Questular Rontok’,1,7),(7453,24265,’The Whale’,2,8),(7453,53352,’Fook’,0,9),(7453,539,’Eddie the Computer’,2,10),(7453,2440,’Slartibartfast’,2,11),(7453,4566,’Marvin’,2,12),(7453,28485,’Mr. Prosser’,2,13),(7453,53353,’Barman’,2,14),(7453,11184,’Marvin’,2,15),(7453,10983,’Jeltz (voice)’,2,17),(7453,3547,’Kwaltz (voice)’,2,18),(7453,34546,’Additional Vogon Voices (as League of Gentlemen)’,2,19),(7453,34551,’Additional Vogon Voices (as The League of Gentlemen)’,2,20),(7737,63,’Alice’,1,0),(7737,18041,’Carlos Olivera’,2,1),(7737,17303,’Claire Redfield’,1,2),(7737,20508,’Dr. Isaacs’,2,3),(7737,51944,’L.J.’,2,4),(7737,57172,’Betty’,0,5),(7737,57192,’K-Mart’,1,7),(7737,12793,’Slater’,2,8),(7737,57251,’Chaser’,2,9),(7737,183812,’Albert Wesker’,2,10),(7737,59264,’Otto’,2,11),(7737,74500,’Lab Tech’,0,12),(7737,62564,’White Queen’,1,13),(7737,1312315,”,2,14),(8987,5064,’Gail Hartman’,1,0),(8987,11064,’Tom Hartman’,2,1),(8987,4724,’Wade’,2,2),(8987,4589,’Ranger Johnny’,2,3),(8987,4764,’Terry’,2,4),(8987,4787,’Roarke’,2,5),(8987,56490,’Willa’,1,6),(8987,131725,’Frank’,2,7),(8987,1219410,’Gail\’s Mother’,1,8),(8987,1020281,’Gail\’s Father’,2,9),(9759,16828,’Ryan Hewitt’,2,0),(9759,326,’Jessica Martin’,1,1),(9759,976,’Ethan’,2,2),(9759,10860,’Chloe’,1,3),(9759,3905,’Sgt. Bob Mooney’,2,4),(9759,58942,’Young Security Guard’,2,5),(9759,43232,’Dana Bayback’,2,6),(9759,58941,’Irate Customer #1′,1,7),(9759,1910,’Marilyn Mooney’,1,8),(9759,58943,’Timid Boy’,0,9),(9759,58944,’Surf Girl\’s Friend’,0,10),(9759,58945,’Chloe\’s Chilly Friend’,0,11),(9759,58946,’Excitable Customer’,0,12),(9759,25849,’Craig Martin’,0,13),(9759,58947,’Girl at Concert’,0,14),(9759,58948,’Porsche Girl’,0,15),(9759,58949,’Young Guard’,2,16),(9759,58950,’Aging Security Guard’,2,17),(9759,1236066,’Rosario’,1,18),(9486,10730,’Johnny English’,2,0),(9486,6949,’Pascal Sauvage, the Greedy Frenchman’,2,1),(9486,57669,’Lorna Campbell’,1,2),(9486,47931,’Countess Alexandra – Exotic Woman’,1,3),(9486,18025,’Bough, English\’s Sidekick’,2,4),(9486,16700,’Agent One’,2,5),(9486,61540,’Carlos Vendetta’,2,6),(9486,55578,’Dieter Klein’,0,7),(9486,25656,’Official at Funeral’,2,8),(9486,2449,’Prime Minister’,2,9),(9486,11276,’Pegasus, Head of MI7′,2,10),(9486,58778,’Pegasus\’ Secretary’,1,11),(9486,131767,’Sir Anthony Chevenix’,0,12),(9486,131768,’Snobby Woman’,0,13),(9486,30444,’Roger’,0,14),(9486,131769,’Assailant’,0,15),(9486,1451333,’Doctor’,2,16),(9906,1204,’Hova’,1,0),(9906,5064,’Queen’,1,1),(9906,2963,’Zoc’,2,2),(9906,13242,’Stan Beals’,2,3),(9906,11357,’Fugax’,2,4),(9906,9788,’Kreela’,1,5),(9906,10437,’Mommo’,1,6),(9906,1211,’Fred Nickle’,2,7),(9906,60252,’Doreen Nickle’,1,8),(9906,60251,’Lucas Nickle’,2,9),(9906,1793,’Head of Council’,2,10),(9906,11157,’Steve’,2,11),(9906,60254,’Mullet Boy’,2,12),(9906,15831,’Spindle / Frog / Caterpillar’,2,13),(9906,60258,’Fly’,2,15),(9906,60255,’Nicky’,2,16),(9906,60253,’Tiffany Nickle’,1,17),(9906,60257,’Glow Worm / Wasp Survivor’,2,18),(9906,60259,’Sleeping Ant #1 / Head Lice #1 / Head Lice #2 / Head Lice #3 / Head Lice #4 / Brett’,2,19),(9906,43125,’Beetle’,2,20),(841,6677,’Paul Atreides’,2,0),(841,12513,’Lady Jessica Atreides’,1,1),(841,12514,’The Baron\’s Doctor’,2,2),(841,1370,’Piter De Vries’,2,3),(841,12515,’Padishah Emperor Shaddam IV’,0,4),(841,12516,’Shadout Mapes’,1,5),(841,12517,’Thufir Hawat’,2,6),(841,12518,’Duncan Idaho’,2,7),(841,12519,’Princess Irulan’,1,8),(841,12520,’Rev. Mother Ramallo’,1,9),(841,5616,’Stilgar’,2,10),(841,12521,’Baron Vladimir Harkonnen’,2,11),(841,6718,’Capt. Iakin Nefud’,2,12),(841,12522,’Rev. Mother Gaius Helen Mohiam’,1,13),(841,920,’Duke Leto Atreides’,2,14),(841,2387,’Gurney Halleck’,2,15),(841,982,’Feyd Rautha’,0,16),(841,923,’Dr. Wellington Yueh’,2,17),(841,2201,’Dr. Liet Kynes’,2,18),(841,586,’Chani’,1,19),(841,3128,’Alia’,1,20),(4688,38940,’Lucy Carrigan’,1,0),(4688,38941,’Jude’,2,1),(4688,29234,’Max Carrigan’,2,2),(4688,38942,’Sadie’,1,3),(4688,38943,’Jo-Jo’,0,4),(4688,38944,’Prudence’,1,5),(4688,38945,’Daniel’,2,6),(4688,38946,’Jude\’s Liverpool Girlfriend’,1,7),(4688,38947,’Cyril’,2,8),(4688,38948,’Phil’,2,9),(4688,38949,’Martha Feeny (Jude\’s Mother)’,0,10),(4688,2256,’Wesley Wes Huber (Jude\’s Father)’,2,11),(4688,1229623,’Cheer Coach’,0,12),(4688,1277506,’Dorm Buddy / Dancer’,0,13),(4688,1232505,’Dorm Buddy’,0,14),(4688,33684,’Doctor Robert’,2,15),(4688,3136,’Singing Nurse’,1,16),(4688,1085462,’Sadie\’s Singer’,1,17),(4688,1671514,’Sadie\’s Singer’,2,18),(4688,1659311,’Sadie\’s Singer’,1,19),(4688,1218227,’Sadie\’s Singer’,0,20),(4688,1671515,’Sergeant on Rooftop’,2,21),(4688,120890,’Sergeant on Rooftop’,2,22),(4688,1433496,’Door Officer at Strawberry Records’,0,23),(4688,130253,’Paco’,2,24),(4688,1671499,’Immigration Officer (uncredited)’,2,25),(4688,1459592,’Sailor (uncredited)’,2,26),(4148,6193,’Frank Wheeler’,2,0),(4148,204,’April Wheeler’,1,1),(4148,335,’John Givings’,2,2),(4148,17696,’Milly Campbell’,1,3),(4148,35029,’Shep Campbell’,2,4),(4148,8534,’Mrs. Helen Givings’,1,5),(4148,17181,’Michael Wheeler’,2,6),(4148,35027,’Jennifer Wheeler’,1,7),(4148,172705,’Howard Givings’,2,8),(4148,19152,’Jack Ordway’,2,9),(4148,35028,’Maureen Grube’,1,10),(4148,7133,’Ed Small’,2,11),(4148,6067,’Bart Pollock’,2,12),(4148,210824,’Mrs. Brace’,1,13),(4148,1361813,’Mr. Brace’,0,14),(4148,10960,’Vince Lathrop’,2,15),(4148,181299,’Ted Bandy’,0,16),(4148,1237533,’Campbell Kid’,2,17),(4148,164094,’Party Guest’,1,18),(2207,62,’Jack Mosley’,2,0),(2207,4239,’Eddie Bunker’,2,1),(2207,52,’Frank Nugent’,2,2),(2207,22820,’Diane Mosley’,0,3),(2207,22821,’Robert Torres’,2,4),(2207,42141,’Captain Dan Gruber’,2,5),(2207,56040,’Jimmy Mulvey’,2,6),(2207,538297,’Jerry Shue’,2,7),(2207,190961,’Touhey’,2,8),(2207,6071,’Kaller’,2,9),(2207,21291,’Ortiz’,2,10),(2207,243333,’Maldonado’,2,11),(2207,44103,’Deputy Commissioner Wagner’,2,12),(2207,19489,’Mike Sheehan’,2,13),(2207,574368,’Fitzpatrick’,2,14),(2207,2256,’Cannova’,2,15),(2207,190917,’Briggs’,2,16),(2207,36816,’Holding Cell Officer’,2,17),(2207,178076,’Subway Commuter’,0,18),(2207,166436,’Russian’,2,19),(2207,574369,’Chinese Wife’,0,20),(9381,12835,’Toorop’,2,0),(9381,1620,’Schwester Rebecca’,1,1),(9381,59373,’Aurora’,1,2),(9381,2192,’Darquandier’,2,3),(9381,44079,’Hohepriesterin’,1,4),(9381,16927,’Gorsky’,2,5),(9381,2983,’Finn’,2,6),(9381,47825,’Killa’,2,7),(9381,25677,’Dr. Newton’,2,8),(9381,72270,’Jamal’,2,9),(9381,59374,’Karl’,2,10),(9381,62439,’Kid with Tattoos’,2,11),(9381,25726,’Fight Promoter’,2,12),(9381,132069,’Assistant to High Priestess’,2,13),(9381,1237646,’Neolite Researcher’,2,14),(9381,1513403,’Neolite Executive’,2,15),(9381,1674911,’Neolite Marketing Executive’,2,16),(9381,1674913,’Neolite MIB’,2,17),(9381,25732,’Submarine Captain’,2,18),(9625,23880,’Lt. Jack Cole’,2,0),(9625,35689,’Det. Jim Campbell’,2,1),(9625,4029,’Frank Deverell’,2,2),(9625,1248,’Mr. Smith’,2,3),(9625,17225,’Jessica Cole’,1,4),(9625,12796,’Johnny Deverell’,2,5),(9625,116128,’Donald Cunningham’,2,6),(9625,537,’Christopher Maynard’,2,7),(9625,93345,’Capt. Harris’,2,8),(9625,16662,’Detective Roden’,2,9),(9625,57674,’Cole\’s Daughter’,1,10),(9625,87317,’Millie – Johnny\’s Girlfriend’,1,11),(9304,2232,’Doug Kinney’,2,0),(9304,1533,’Laura Kinney’,1,1),(9304,1166,’Leeds’,2,2),(9304,26510,’Vic’,2,3),(9304,186573,’Zack Kinney’,2,4),(9304,553473,’Jennifer Kinney’,1,5),(9304,15416,’Del King’,2,6),(9304,59260,’Noreen’,1,7),(9304,11077,’Ted’,0,8),(9304,116109,’Franny’,1,9),(9304,1535,’Walt’,2,10),(9304,52057,’Paul’,2,11),(9304,31171,’Robin’,1,12),(9304,166935,’Beth’,1,13),(9304,156989,’Patti’,2,14),(9304,95653,’Coach Jack’,2,15),(9304,154295,’Irate Football Parent’,2,16),(9304,138967,’Irate Football Parent’,2,17),(9304,120560,’Maitre d\”,2,18),(9304,1540,’Ballet School Receptionist’,1,19),(9304,18275,’Den Mother’,1,20),(9304,25626,’Laura\’s Father’,2,21),(9304,13243,’Building Inspector’,2,22),(9304,553474,’Construction Worker’,0,23),(9304,553475,’Lab Technician Twin’,0,24),(9304,553476,’Lab Technician Twin’,0,25),(9304,553477,’Woman in Restaurant’,0,26),(9304,1273694,’Man in Restaurant’,2,27),(9304,188857,’Carpenter (uncredited)’,0,28),(5955,514,’Jerry Black’,2,0),(5955,6383,’Stan Krolak’,2,1),(5955,15735,’Doctor’,1,2),(5955,32,’Lori’,1,3),(5955,13333,’Annalise Hansen’,1,4),(5955,9880,’Eric Pollack’,2,5),(5955,1121,’Toby Jay Wadenah’,2,6),(5955,2295,’Jim Olstad’,2,7),(5955,5048,’Floyd Cage’,2,8),(5955,1276,’Margaret Larsen’,1,9),(5955,46814,’Strom’,1,10),(5955,119232,’Gary Jackson’,2,11),(5955,43933,’Sheriff’,2,12),(5955,38085,’Duane Larsen’,2,13),(5955,1585738,’Rudy’,0,14),(5955,46815,’Resort Owner’,0,15),(9899,4756,’Leo Bloom’,2,0),(9899,139,’Ulla’,1,1),(9899,23659,’Franz Liebkind’,2,2),(9899,52313,’Hold Me-Touch Me’,1,3),(9899,60136,’Roger DeBris’,2,5),(9899,21731,’Prison Trustee’,2,6),(9899,1232,’Judge’,2,7),(9899,10386,’Lick Me-Bite Me’,1,8),(9899,8263,’Kiss Me-Feel Me’,1,9),(9899,16165,’Mr. Marks’,2,10),(9899,60139,’Usherette / Girl with Pearls / Little Old Lady / Tapping Brown Shirt’,0,11),(9899,60138,’Usherette / Girl with Pearls / Little Old Lady / Bavarian Peasant’,0,12),(9899,60140,’Workman / Little Old Lady’,0,13),(9899,60141,’Bum’,0,14),(9899,60142,’Bag Lady’,1,15),(9899,60144,’Brian the Set Designer’,2,16),(9899,60145,’Misfit Showgirl’,0,17),(9899,60143,’Cab Driver’,0,18),(9899,78729,’Max Bialystock’,2,19),(9899,45566,’Carmen Ghia’,2,20),(9899,1152008,’Stormtrooper’,0,21),(9826,1954,’The Phantom / Kit Walker’,2,0),(9826,56128,’Diana Palmer’,1,1),(9826,4515,’Xander Drax’,2,2),(9826,1922,’Sala’,1,3),(9826,1736,’Quill’,2,4),(9826,11398,’The Great Kabai Sengh’,2,5),(9826,17200,’Uncle Dave Palmer’,2,6),(9826,1953,’Morgan’,2,7),(9826,2555,’Charlie Zephro’,2,8),(9826,5063,’Ray Zephro’,2,9),(9826,46780,’Lily Palmer’,1,10),(9826,4602,’Jimmy Wells’,2,11),(9826,2463,’Phantom\’s Dad’,2,12),(9826,190826,’Capt. Philip Horton’,0,13),(9826,37254,’Police Commissioner Farley’,2,14),(9457,4515,’John Finnegan’,2,0),(9457,10696,’Trillian St. James’,1,1),(9457,16293,’Simon Canton’,2,2),(9457,18916,’Joey Pantucci’,2,3),(9457,154644,’Leila’,1,4),(9457,15853,’Hanover’,2,5),(9457,14325,’Captain Atherton’,2,6),(9457,973,’Mulligan’,2,7),(9457,7248,’Mamooli’,2,8),(9457,58924,’Mason’,2,9),(9457,57252,’T. Ray’,2,10),(9457,938,’Vivo’,2,11),(9457,217472,’Billy’,2,12),(9457,140258,’Radar Man’,0,13),(9457,168436,’Communications Officer’,0,14),(1494,1619,’Emperor Ping’,2,0),(1494,643,’Empress Phoenix’,1,1),(1494,17380,’Prince Zhai’,2,2),(1494,20654,’Crown Prince Wan’,2,3),(1494,17385,’Prince Yu’,0,4),(1494,17384,’Jiang Chan’,0,5),(1494,17382,’Imperial Physician Jiang’,2,6),(1494,557424,’Physician\’s Wife’,1,7),(2185,12898,’Eliot Arnold’,2,0),(2185,14343,’Anna Herk’,1,1),(2185,9657,’Officer Walter Kramitz’,2,2),(2185,11107,’Matt Arnold’,2,3),(2185,11664,’Jenny Herk’,1,4),(2185,2283,’Arthur Herk’,2,5),(2185,3197,’Snake Dupree’,2,6),(2185,9656,’Eddie Leadbetter’,2,7),(2185,1117,’Henry Desalvo’,2,8),(2185,1240,’Leonard Ferroni’,2,9),(2185,21197,’Officer Monica Romero’,1,10),(2185,18795,’FBI Agent Pat Greer’,2,11),(2185,4987,’FBI Agent Alan Seitz’,2,12),(2185,11662,’Puggy’,2,13),(2185,63522,’Nina’,1,14),(2185,8316,’Bruce’,2,15),(2185,6751,’Fly by Air Ticket Agent’,1,16),(2185,19871,’Leo’,2,17),(2185,160627,’Courier #1′,2,18),(2185,28637,’Jack Pendick / Ralph Pendick’,2,19),(2185,95604,’John / Ivan’,2,20),(2185,132078,’Andrew’,2,21),(2185,78117,’Fly by Air Captain Justin Hobart’,0,22),(2185,552135,’Fly by Air Co-Pilot Jan Vigushin’,0,23),(2185,30368,’Jack Pendick Trainee’,2,24),(2185,1629192,’Editorial Assistant’,0,25),(2185,1629193,’Ken Deeber, Miami Herald Editor’,0,26),(2185,508,’Annoyed Sports Radio Host (voice)’,2,27),(2185,5174,’Confused Sports Radio Call In (voice)’,2,28),(2185,20562,’William Spaulding’,2,29),(2185,1629194,’Sour Airport Security’,0,30),(2185,6908,’Airport Officer Arch Ridley’,2,31),(2185,1426261,’Bag Lady (uncredited)’,1,32),(6639,3810,’Florentino Ariza’,2,0),(6639,50994,’junger Florentino’,2,1),(6639,4589,’Juvenal Urbino’,2,3),(6639,5887,’Hildebranda Sanchez’,1,4),(6639,1210,’Don Leo’,2,5),(6639,23626,’Lotario Thurgot’,2,6),(6639,10055,’Transito Ariza’,1,7),(6639,15007,’Sara Noriega’,1,8),(6639,5723,’Lorenzo Daza’,2,9),(6639,7351,’Olympia Zuleta’,1,10),(6639,25132,’Escolastica’,1,11),(6639,51006,’America Vicuna’,0,13),(6639,120557,’Junge Witwe’,1,14),(6639,105685,’Fermina Daza’,1,15),(5503,3,’Dr. Kimble’,2,0),(5503,2176,’Samuel Gerard’,2,1),(5503,6068,’Helen Kimble’,1,2),(5503,1231,’Dr. Anne Eastman’,1,3),(5503,532,’Cosmo Renfro’,2,4),(5503,43773,’Sykes’,2,5),(5503,1924,’Dr. Charles Nichols’,0,6),(5503,43774,’Biggs’,2,7),(5503,29051,’Poole’,1,8),(5503,57597,’Detective Kelly’,2,9),(5503,86576,’Detective Rosetti’,0,10),(5503,43772,’Newman’,0,11),(5503,933416,’Walter Gutherie’,0,12),(5503,18262,’Old Guard’,2,13),(5503,32289,’Judge Bennett’,2,14),(5503,12538,’Sheriff Rawlins’,2,15),(5503,59399,’Chicago Cop #1′,2,16),(5503,1522099,’Newscaster’,0,17),(5503,35022,’Dr. Lentz’,2,18),(5503,43775,’Dr. Kathy Wahlund’,1,19),(5503,43776,’Polizist’,2,20),(5503,1213105,’State Trooper’,0,21),(5503,167567,’Resident’,0,22),(5503,992588,’11th District Cop’,0,23),(5503,146307,’Prosecutor’,2,24),(5503,1522103,’Assistant Defense Attorney’,2,25),(5503,1522072,’Asst. Prosecuting Attorney’,0,26),(5503,1265395,’Coroner’,0,27),(5503,1357661,’Carlson’,0,28),(5503,201389,’Partida’,2,29),(5503,86573,’Copeland’,2,30),(5503,29745,’Jail Officer’,0,31),(5503,62150,’Young Guard’,2,32),(5503,1025090,’Bus Driver’,2,33),(5503,16477,’Head Illinois State Trooper’,2,34),(5503,1455934,’Head Welder’,0,35),(5503,182372,’Highway Patrolman’,0,36),(5503,1317080,’Paramedic’,0,37),(5503,1178319,’Woman in Car’,0,38),(5503,171631,’Marshal Henry’,0,39),(5503,141417,’Marshal Stevens’,2,40),(5503,7143,’Tracing Technician’,2,41),(5503,1434607,’Windshield Washer’,0,42),(5503,1522106,’Salesman’,0,43),(5503,1522083,’Myoelectric Technician’,0,44),(5503,74246,’Skating Orderly’,0,45),(5503,23355,’O.R. Doctor’,0,46),(5503,1005538,’Myoelectric Director’,1,47),(5503,135717,’Clearing Officer’,0,48),(5503,1428209,’Visitation Guard’,0,49),(5503,1522097,’Newscaster’,0,50),(5503,74487,’Newscaster’,2,51),(5503,1480633,’Gerard\’s Secretary’,1,52),(5503,1219500,’Betty’,0,53),(5503,148306,’Man on \’El\”,0,54),(5503,554391,’Host’,2,55),(5503,945907,’Newscaster’,2,56),(5503,568601,’City Hall Employee (uncredited)’,1,57),(5503,1566977,’Deputy at Train Wreck (uncredited)’,0,58),(5503,976444,’Doctor (uncredited)’,2,59),(5503,1237372,’Warrant Captain (uncredited)’,0,60),(5503,91901,’Mad Motorist at Tunnel (uncredited)’,2,61),(819,380,’Father Bobby’,2,0),(819,287,’Michael Sullivan’,2,1),(819,4724,’Sean Nokes’,2,2),(819,12261,’Lorenzo \’Shakes\’ Carcaterra’,2,3),(819,12260,’John Reilly’,2,4),(819,8289,’Tommy Marcano’,2,5),(819,4483,’Danny Snyder’,2,6),(819,6613,’Carol Martinez’,1,7),(819,12259,’King Benny’,0,8),(819,1223778,’Young Lorenzo \’Shakes\’ Carcaterra’,0,9),(819,51214,’Young Michael Sullivan’,2,10),(819,12263,’Young John Reilly’,2,11),(819,17243,’Young Tommy Marcano’,2,12),(819,11067,’Ralph Ferguson’,2,13),(819,9257,’Shakes\’ Father’,2,14),(819,342,’Rizzo’,2,15),(819,1216752,’Fat Mancho’,0,16),(819,156591,’Woman at Subway Station’,0,17),(819,71347,’Confessional Man’,2,18),(819,52886,’Addison’,2,19),(819,42200,’Styler’,2,20),(1369,16483,’John J. Rambo’,2,0),(1369,16554,’Col. Samuel Trautman’,2,1),(1369,16119,’Marshall Murdock’,2,2),(1369,782,’Lt. Col. Podovsky’,2,3),(1369,16578,’Co Bao’,1,4),(1369,16580,’Capt Vinh’,2,5),(1369,16581,’Banks’,0,6),(1369,16582,’Capt. Vinh’,0,7),(1369,16583,’Sgt. Yushin’,0,8),(1369,16584,’Gunboat captain’,2,9),(1369,56117,’Ericson’,2,10),(1369,16585,’Gunboat captain II’,0,11),(1369,16586,’Lifer’,0,12),(1369,16587,’POW #1′,0,13),(1369,16588,’POW #2′,0,14),(1369,1814425,’P.O.W. #4′,0,15),(1369,278617,’P.O.W. #5′,0,16),(1369,61232,’Prison Guard’,2,17),(1369,1814427,’Russian Pilot’,0,18),(9623,3416,’Annie Laird’,1,0),(9623,7447,’Teacher’,2,1),(9623,24045,’Oliver Laird’,2,2),(9623,8256,’Juliet’,1,3),(9623,4691,’Eddie’,2,4),(9623,32225,’Tallow’,1,5),(9623,15183,’Louie Boffano’,2,6),(9623,14884,’Judge Weitzel’,2,7),(9623,13525,’Boone’,2,8),(9623,148635,’Bozeman’,2,9),(9623,18313,’Joseph Boffano’,2,10),(9623,57552,’Inez’,0,11),(9623,4692,’DeCicco’,2,12),(9623,94434,’Rodney’,2,13),(9623,47538,’Forewoman’,0,14),(834,3967,’Selene’,1,0),(834,100,’Michael Corvin’,2,1),(834,2220,’Marcus Corvinus’,2,2),(834,3969,’Kraven’,2,3),(834,937,’Alexander Corvinus’,2,4),(834,2440,’Viktor’,2,5),(834,978,’Andreas Tanis’,2,6),(834,12358,’Amelia’,1,7),(834,12359,’William Corvinus’,2,8),(834,12366,’Soren’,2,9),(834,12367,’Samuel’,2,10),(834,3968,’Lucian’,2,11),(834,3971,’Erika’,1,12),(834,12371,’Pierce’,2,13),(834,12372,’Taylor’,0,14),(834,172844,’Truck Driver’,2,15),(834,1216568,’Selene\’s Father’,2,16),(711,738,’William Forrester’,2,0),(711,10689,’Jamal Wallace’,2,1),(711,1164,’Prof. Robert Crawford’,2,2),(711,10690,’Claire Spence’,1,3),(711,6485,’Terrell Wallace’,2,4),(711,10691,’Ms. Joyce’,1,5),(711,10692,’John Coleridge’,2,6),(711,8699,’Dr. Spence’,2,7),(711,1892,’Steven Sanderson’,2,8),(711,172705,’Prof. Matthews’,2,9),(711,10694,’Massie, Forrester\’s Delivery Man’,2,10),(711,1216485,’Damon’,2,11),(711,5216,’Library Assistant (uncredited)’,2,12),(509,1204,’Anna Scott’,1,0),(509,3291,’William Thacker’,2,1),(509,18022,’Bella’,1,2),(509,41043,’Max’,2,3),(509,7026,’Spike’,2,4),(509,7446,’Honey’,1,5),(509,19923,’Bernie’,2,6),(509,7025,’Tony’,2,7),(509,7027,’Martin’,2,8),(509,7028,’Rufus the Thief’,2,9),(509,7029,’Annoying Customer’,2,10),(509,7030,’Ritz Concierge’,2,11),(509,7031,’\’Time Out\’ Journalist’,2,12),(509,7032,’Anna\’s Publicist’,1,13),(509,7447,’Jeff King’,2,14),(509,940,’PR Chief’,2,15),(509,1246,’Perfect Girl’,1,16),(509,1221067,’Loud Man in Restaurant’,0,17),(509,145997,’Loud Man in Restaurant’,2,18),(509,75074,’Loud Man in Restaurant’,2,19),(509,11617,’12-year-old Actress’,1,20),(509,61011,’\’Helix\’ Lead Actor’,0,21),(509,172191,’William\’s Mother’,1,22),(509,54447,’Anna\’s Co-star’,2,23),(509,103033,’Security man’,2,24),(509,4001,’Himself in Film within Film (uncredited)’,2,25),(509,86480,’Journalist’,2,26),(7443,2461,’Rocky (Voice)’,2,0),(7443,8436,’Mrs. Tweedy’,1,1),(7443,9191,’Nick’,2,2),(7443,11356,’Bunty’,1,3),(7443,34902,’Babs’,1,4),(7443,65301,’Fetcher’,2,5),(7443,1074137,’Mac’,0,6),(7443,20241,’Mr. Tweedy’,2,7),(7443,53328,’Ginger’,1,8),(7443,84927,’Fowler’,2,9),(7443,36900,’Circus Man’,2,10),(7443,226586,’Additional Chicken’,0,11),(7443,933684,’Additional Chicken’,0,12),(7443,1074138,’Additional Chicken’,0,13),(5966,7399,’Reuben Feffer’,2,0),(5966,4491,’Polly Prince’,1,1),(5966,1233,’Sandy Lyle’,2,2),(5966,23959,’Lisa Kramer’,1,3),(5966,7447,’Stan Indursky’,2,4),(5966,5587,’Claude’,2,5),(5966,29092,’Leland Van Lew’,2,6),(5966,46944,’Vivian Feffer’,1,7),(5966,19889,’Irving Feffer’,2,8),(5966,1294,’Roxanne’,1,9),(5966,13657,’Javier’,2,10),(5966,52860,’Dustin’,2,11),(5966,55638,’Vic’,2,12),(5966,17273,’Wonsuk’,2,13),(5966,80597,’Gladys’,1,14),(5966,171334,’Cheryl’,1,15),(5966,66502,’Mitch’,2,16),(5966,57854,’Catering Manager’,1,17),(5966,1910,’Wedding Coordinator’,1,18),(5966,22127,’Party Hostess’,1,19),(5966,19277,’Security Officer’,2,20),(5966,173277,’Basketball Player’,2,21),(5966,92490,’Basketball Player’,2,22),(5966,59223,’Executive Chef’,2,23),(5966,1775935,’Salsa Dancer’,2,24),(5966,1197707,’J.C. Superstar Singer’,0,25),(8095,3635,’Cleopatra’,1,0),(8095,5341,’Marcus Antonius’,2,1),(8095,35321,’Julius Caesar’,0,2),(8095,7505,’Octavian – Caesar Augustus’,2,3),(8095,2641,’Rufio’,2,4),(8095,7668,’Sosigenes’,2,5),(8095,53815,’Agrippa’,2,6),(8095,53817,’Brutus’,2,7),(8095,47722,’Flavius’,2,8),(8095,53818,’High Priestess’,1,9),(8095,12513,’Eiras’,1,10),(8095,53819,’Pothinus’,2,11),(8095,34130,’Achillas’,2,12),(8095,39741,’Cicero’,2,13),(8095,14508,’Cassius’,2,14),(8095,26512,’Casca’,2,15),(8095,14823,’Canidius’,0,16),(8095,30705,’Cimber’,2,17),(8095,1138707,’Palace Guard (uncredited)’,0,18),(8095,67882,’Euphranor’,2,21),(8095,173020,’Pharaoh Ptolemy XIII’,0,23),(8095,47478,’Calpurnia’,1,24),(8095,89065,’Decimus’,2,25),(2637,1205,’John Klein’,2,0),(2637,350,’Connie Mills’,1,1),(2637,883,’Gordon Smallwood’,2,2),(2637,27550,’Cyrus Bills’,0,3),(2637,23959,’Mary Klein’,1,4),(2637,27551,’Brian’,2,5),(2637,27552,’Ed Fleischman’,2,6),(2637,27553,’Indrid Cold’,2,7),(2637,27554,’Alexander Leek’,2,8),(2637,27681,’Washington Post Reporter’,0,9),(2637,27682,’Dr. McElroy’,0,10),(2637,27683,’Orderly’,0,11),(2637,27684,’TV Journalist’,0,12),(2637,27685,’Otto’,0,13),(2637,27686,’Lucy Griffin’,1,14),(2637,27687,’Nat Griffin’,0,15),(2637,21152,’Chief Josh Jarrett’,2,16),(2637,27688,’C.J.’,0,17),(2637,27689,’Holly’,0,18),(2637,27690,’Dr. Williams’,0,19),(2637,27691,’News Anchor #1′,0,20),(2637,27692,’Sonny’,0,21),(2637,27694,’Coffee Shop Cashier’,0,22),(2637,11676,’Bartender / Indrid Cold (voice)’,2,23),(2637,7178,’Gov. Rob McCallum’,0,24),(2637,27708,’Aide #1′,0,25),(2637,27709,’Aide #2′,2,26),(2637,27710,’Aide #3′,0,27),(2637,27711,’News Anchor #2′,0,28),(2637,27712,’Tory Pherris’,0,29),(2637,27713,’Bellhop’,0,30),(2637,27714,’Man on Bridge’,1,31),(2637,97593,’Motel Manager’,0,32),(709,10669,’James Bond’,2,0),(709,10679,’Pam Bouvier’,1,1),(709,2055,’Franz Sanchez’,2,2),(709,10680,’Lupe Lamora’,1,3),(709,2516,’Milton Krest’,2,4),(709,1735,’Sharkey’,2,5),(709,10226,’Felix Leiter’,2,6),(709,10681,’Professor Joe Butcher’,2,7),(709,1121,’Dario’,2,8),(709,10682,’Truman-Lodge’,2,9),(709,5616,’Ed Killifer’,2,10),(709,9906,’Q’,2,11),(709,7372,’President Hector Lopez’,2,12),(709,10513,’M’,2,13),(709,14333,’Hawkins’,2,14),(709,23648,’Della Churchill Leiter’,1,15),(709,69494,’Heller’,2,16),(709,10675,’Miss Moneypenny’,1,17),(709,11398,’Kwang’,2,18),(2749,380,’Detective Eddie Flemming’,2,0),(2749,6885,’Rose Hearn’,1,1),(2749,12833,’Jordy Warsaw’,2,2),(2749,7090,’Robert Hawkins’,2,3),(2749,822,’Detective Leon Jackson’,2,4),(2749,21657,’Dahpne Handlova’,1,5),(2749,2109,’Cassandra’,1,6),(2749,58563,’Mugger in Central Park’,2,7),(2749,46393,’Herself’,1,8),(2749,21028,’Boy in Burning Building’,2,9),(2749,58535,’Detective Paulie’,2,10),(2749,25972,’Nicolette Karas’,1,11),(2749,10841,’Emil Slovak’,2,12),(2749,77351,’Oleg Razgul’,2,13),(2749,141484,’Bobby Korfin’,2,14),(2749,51551,’Deputy Chief Fire Marshal Declan Duffy’,2,15),(2749,66145,’Detective Tommy Cullen’,2,16),(2749,1588715,’Fireman’,2,17),(2749,1353429,’Himself’,2,18),(2749,86151,’Milos Karlova’,2,19),(2749,1188584,’Honey the Hooker’,1,20),(2749,6044,’Maggie’,1,21),(2749,18272,’Unique’,2,22),(2749,1217553,’Police Captain’,2,23),(2749,55591,’Stephen Geller’,2,24),(2749,13939,’News Stand Vendor’,2,25),(2749,1486786,’Talk Show Son’,2,26),(2749,158993,’Pizza Man’,2,27),(2749,1231228,’Daphne\’s Lawyer’,1,28),(2749,23789,’Ludwig the Hairdresser’,2,29),(2749,30436,’Redhead at Ludwig\’s’,1,30),(2749,65165,’Escort Service Woman #3′,1,31),(2749,54809,’Emigrant’,2,32),(2749,3006,’Woman at Planet Hollywood’,1,33),(2749,205164,’Lookout Guy’,2,34),(2749,95770,’Himself’,2,35),(2749,1238116,’TV Newscaster #2′,1,36),(2749,73194,’Cab Driver’,2,37),(2749,1001804,’Battery Park Policeman’,2,38),(2749,40259,”,2,39),(2749,92589,’Additional voices (voice) (uncredited)’,2,40),(2749,164021,’Uniformed Cop (uncredited)’,2,41),(2749,990791,’Reporter (uncredited)’,1,42),(2749,1339946,’Police Officer (uncredited)’,2,43),(2749,18095,’Arguing Husband (uncredited)’,2,44),(2749,1450426,’Woman in Bar (uncredited)’,1,45),(2749,1559920,’Police Officer (uncredited)’,2,46),(2749,170740,’Airport Passenger (uncredited)’,2,47),(2749,1099770,’Daily News Reporter (uncredited)’,2,48),(2749,969413,’Restaurant Patron (uncredited)’,2,49),(2749,1513523,’TV News Reporter (uncredited)’,2,50),(2749,171345,’Woman #2 at Planet Hollywood (uncredited)’,1,51),(2749,1647697,’Tamina Karlova’,1,52),(2749,1647698,’Maggie\’s Assistant’,1,53),(2749,1647699,’Murphy’,2,54),(2749,1647700,’Garcia’,2,55),(2749,1647701,’Fire Chief’,2,56),(2749,1647702,’Fireman Camello’,2,57),(2749,1647703,’Immigration Supervisor’,2,58),(2749,1647704,’Talk Show Father’,2,59),(2749,1647705,’Talk Show Wife’,1,60),(2749,1647706,’Composite Artist’,1,61),(2749,1647707,’Escort Service Woman Linda’,1,62),(2749,1647708,’Escort Service Woman #2′,1,63),(2749,1647709,’Emigrant’,2,64),(2749,1647710,’Bouncer at Planet Hollywood’,2,65),(2749,1647711,’Greek Waiter’,2,66),(2749,1647712,’TV Newscaster #1′,1,67),(2749,1647713,’Hawkins\’ Cameraman’,2,68),(2749,1647714,’Hawkins\’ Sound Man’,2,69),(2749,1647715,’Nicolette\’s Cameraman’,2,70),(2749,1647716,’Reporter’,2,71),(2749,1647717,’Unique\’s Girlfriend’,1,72),(2749,1647718,’Paramedic #1′,1,73),(2749,1647719,’Paramedic #2′,1,74),(2749,1647720,’Police Officer #1′,0,75),(2749,1647721,’Police Officer #2′,2,76),(2749,1647722,’Witness (uncredited)’,1,77),(2749,1647723,’NYPD #2 (uncredited)’,2,78),(2749,1647724,’Cameraman (uncredited)’,2,79),(2749,1647725,’Girl in Restaurant (uncredited)’,1,80),(2749,1647726,’Restaurant Guest (uncredited)’,1,81),(2749,1647727,’NYPD Police Officer (uncredited)’,2,82),(2749,1647728,’Reporter (uncredited)’,1,83),(2749,1647729,’NYPD Officer at Ludwig\’s (uncredited)’,2,84),(2749,1647730,’Nightclub Patron (uncredited)’,1,85),(9607,382,’Mario Mario’,2,0),(9607,5723,’Luigi Mario’,2,1),(9607,2778,’King Koopa’,2,2),(9607,20767,’Princess Daisy’,1,3),(9607,26473,’Iggy’,2,4),(9607,6396,’Spike’,2,5),(9607,10981,’Lena’,1,6),(9607,939703,’Toad’,0,7),(9607,2714,’The King’,2,8),(9607,198,’Narrator’,2,9),(1830,2963,’Yuri Orlov’,2,0),(1830,18354,’Ava Fontaine Orlov’,1,1),(1830,7499,’Vitaly Orlov’,2,2),(1830,569,’Jack Valentine’,2,3),(1830,19299,’Andre Baptiste Sr.’,2,4),(1830,65,’Simeon Weisz’,2,5),(1830,19300,’Andre Baptiste Jr.’,2,6),(1830,19301,’General Dmitri Orlov’,2,7),(1830,37769,’Candy’,0,8),(1830,1127469,’Irina Orlov’,0,9),(1830,1329526,’Anatoly Orlov’,0,10),(1830,1329527,’Ukrainian Mobster’,0,11),(1830,1329528,’Ukrainian Mobster’,0,12),(1830,34541,’Ukrainian Mobster’,0,13),(1830,1329531,’Ukrainian Mobster’,0,14),(1830,1329532,’Gregor’,0,15),(1830,8019,’Eli Kurtzman’,0,16),(1830,1329534,’Boris’,0,17),(1830,1329536,’Liev’,0,18),(1830,20304,’Arms Fair Salesman’,2,19),(79,1336,’Nameless’,2,0),(79,1337,’Broken Sword’,2,1),(79,1338,’Flying Snow’,1,2),(79,1341,’Sky’,2,3),(79,1339,’Moon’,1,4),(79,1340,’King of Qin’,2,5),(79,1342,’Old Scholar’,0,6),(79,1343,’Old Servant’,0,7),(79,1344,’Prime Minister’,0,8),(79,1345,’General’,0,9),(79,20904,’Qin Emperor (voice)’,2,10),(79,1403596,’Qin Guard #4′,0,11),(79,1594111,’Qin Guard #2′,0,12),(79,1258371,’Qin Guard #1′,0,13),(79,1594112,’Head Eunuch’,0,14),(79,1594113,’Pianist’,0,15),(79,1594114,’Qin Guard #3′,0,16),(79,1594115,’Nameless (voice)’,0,17),(79,74033,’Qin Guard #6′,0,18),(79,35244,’Sky (voice)’,0,19),(79,1594117,’Eunuch’,0,20),(79,78578,’Moon (voice)’,1,21),(79,1594118,’Qin Guard #5′,0,22),(79,154657,’Broken Sword (voice)’,2,23),(79,19861,’Flying Snow (voice)’,1,24),(79,1594119,’Musician’,0,25),(79,1594123,’The Qin guards\’ commander’,0,26),(65,325,’Jimmy B. Rabbit Smith’,2,0),(65,327,’David Future Porter’,2,1),(65,328,’Alex’,1,2),(65,326,’Stephanie Smith’,1,3),(65,335,’Greg Buehl’,2,4),(65,343,’Janeane’,1,5),(65,53650,’Papa Doc’,2,6),(65,341,’DJ IZ’,2,7),(65,333,’Cheddar Bob’,2,8),(65,334,’Sol George’,0,9),(65,342,’Wink’,2,10),(65,217173,’Shorty Mike’,0,11),(65,336,’Mike’,2,12),(65,1069291,’Lil\’Tic’,0,13),(65,1543461,’Lyckety-Splyt’,0,14),(65,1543462,’Lotto’,0,15),(65,1545768,’Female Lunch Truck Rapper’,0,16),(65,1545774,’Paul’,0,17),(65,344,’Bouncer’,0,18),(9476,1810,’Sir William Thatcher / Sir Ulrich von Lichtenstein of Gelderland’,2,0),(9476,17328,’Count Adhemar of Anjou’,2,1),(9476,27855,’Lady Jocelyn’,1,2),(9476,6162,’Geoffrey Chaucer’,2,3),(9476,42279,’Kate’,1,4),(9476,13633,’Roland’,2,5),(9476,21088,’Wat’,2,6),(9476,17648,’Edward, the Black Prince of Wales/Sir Thomas Colville’,2,7),(9476,82923,’Christiana’,1,8),(9476,32559,’Germaine’,0,9),(9476,67567,’John Thatcher’,2,10),(9476,1230375,’Simon the Summoner’,2,11),(9476,1334297,’Peter the Pardoner’,0,12),(9476,8319,’Sir Ector’,2,13),(9476,20243,’Old Bishop’,2,14),(9476,2065,’Relic Seller’,2,15),(745,62,’Malcolm Crowe’,2,0),(745,3051,’Lynn Sear’,1,1),(745,11616,’Anna Crowe’,1,2),(745,9640,’Cole Sear’,2,3),(745,2680,’Vincent Grey’,2,4),(745,10694,’Sean’,2,5),(745,11617,’Kyra Collins’,1,6),(745,4940,’Tommy Tammisimo’,2,7),(745,11621,’Stanley Cunningham’,2,8),(745,1106256,’Mrs. Collins’,1,9),(745,11618,’Mr. Collins’,0,10),(745,11614,’Dr. Hill’,2,11),(745,52861,’Darren’,0,12),(745,11619,’Bobby’,0,13),(745,1318896,’Bridesmaid’,0,14),(745,6439,’Young Woman Buying Ring’,1,15),(745,1217630,’Kitchen Woman’,1,16),(745,1455909,’Visitor #3′,1,17),(745,20388,’Visitor #5′,1,18),(745,1444793,’Society Lady’,1,19),(745,1457917,’Hanged Child’,0,20),(745,92486,’Hanged Male’,0,21),(745,1128450,’Shaken Driver’,2,22),(745,1128126,’Husband’,2,23),(745,1559326,’Young Man Buying Ring’,2,24),(745,1810292,’Darren\’s Mom’,1,25),(745,1810301,’Visitor #2′,0,26),(745,1810304,’Visitor #4′,1,27),(745,1810307,’Visitor #6′,0,28),(745,1810308,’Kyra\’s Sister’,1,29),(745,1808159,’Society Lady #1′,1,30),(745,1810309,’Woman at Accident’,1,31),(745,1810311,’Hanged Woman’,1,32),(745,1810313,’Burnt Teacher’,1,33),(745,171969,’Gunshot Boy’,0,34),(745,1810318,’Secretary’,1,35),(745,1128449,’Spanish Ghost on Tape (voice)’,0,36),(745,1810319,’Young Vincent’,0,37),(745,1269708,’Mrs. Sloan’,1,38),(745,1810320,’Anna\’s Father’,0,39),(745,1535381,’Anna\’s Mother’,1,40),(745,1023736,’Bride\’s Friend (uncredited)’,1,41),(745,1280972,’Restaurant Patron (uncredited)’,2,42),(745,1810322,’Waiter (uncredited)’,0,43),(745,1810324,’Man Crossing the Street (uncredited)’,0,44),(745,1810325,’Bride\’s Maid (uncredited)’,1,45),(745,1574936,’Restaurant Patron (uncredited)’,0,46),(745,1810327,’Tommy\’s TV Mom (uncredited)’,1,47),(745,95988,’Restaurant Patron (uncredited)’,2,48),(745,1441535,’Ghost in the Dungeon (uncredited)’,0,49),(745,1534880,’Waitress (uncredited)’,1,50),(1885,2877,’Daniel LaRusso’,2,0),(1885,23915,’Mr. Kesuke Miyagi’,2,1),(1885,56124,’Johnny Lawrence’,2,2),(1885,56117,’John Kreese’,2,3),(1885,23920,’Dutch’,2,4),(1885,23916,’Lucille LaRusso’,1,5),(1885,1951,’Ali Mills’,1,6),(1885,23918,’Bobby’,2,7),(1885,23919,’Tommy’,2,8),(1885,189512,’Eddie’,2,9),(165,521,’Marty McFly Sr. / Marty McFly Jr. / Marlene McFly’,2,0),(165,1062,’Dr. Emmett Brown’,2,1),(165,1063,’Lorraine’,1,2),(165,1951,’Jennifer Parker / Jennifer McFly’,1,3),(165,1072,’Mr. Strickland’,2,4),(165,1952,’George McFly’,0,5),(165,1953,’3-D’,2,6),(165,1954,’Match’,2,7),(165,1955,’Spike’,1,8),(165,109,’Video Game Boy’,2,9),(165,58319,’Whitey’,2,10),(165,68851,’Data’,2,11),(165,12826,’Terry’,2,12),(165,11673,’Skinhead’,2,13),(165,1237,’Needles’,2,14),(165,59196,’Western Union Man’,2,15),(165,64951,’Biff Tannen Museum Narrator (voice)’,0,16),(165,73337,’Dad’,2,17),(165,1065,’Biff Tannen / Griff’,2,18),(165,1434975,’\’Michael Jackson\’ Video Waiter’,0,19),(165,1434976,’\’Ronald Reagan\’ Video Waiter’,0,20),(165,1434978,’\’Ayatollah Khomeini\’ Video Waiter’,0,21),(165,1024268,’Video Game Boy’,0,22),(165,1434979,’Hoverboard Girl #1′,0,23),(165,1434980,’Hoverboard Girl #2′,0,24),(165,1379150,’Antique Store Saleswoman’,0,25),(165,169769,’Officer Foley’,0,26),(165,1434981,’Cab Driver’,0,27),(165,1217015,’Fujitsu’,2,28),(165,1434984,’Loretta’,0,29),(165,1434985,’Mom’,0,30),(165,1434986,’Harold’,0,31),(165,54564,’Bum’,2,32),(165,1434987,’Jacuzzi Girl #1′,1,33),(165,37623,’Jacuzzi Girl #2′,1,34),(165,1434988,’Basketball Kid #1′,0,35),(165,1434990,’Basketball Kid #2′,0,36),(165,1434991,’Basketball Kid #3′,0,37),(165,1434992,’Basketball Kid #4′,0,38),(165,1434994,’Basketball Kid #5′,0,39),(165,97708,’Babs’,0,40),(165,176053,’Radio Sportscaster (voice)’,2,41),(165,1074,’Marvin Berry’,0,42),(165,1200793,’Starlighter’,0,43),(165,1200791,’Starlighter’,0,45),(165,1200794,’Starlighter’,0,46),(165,1200792,’Starlighter’,0,47),(165,1214023,’CPR Kid’,2,48),(165,2459,’Einstein’,0,49),(165,1064,’George McFly (archive footage)’,2,50),(165,1435060,’Dance Extra (uncredited)’,0,51),(165,1435061,’King Neptune (uncredited)’,0,52),(165,84494,’Goldie Wilson III (uncredited)’,0,53),(165,1435062,'(uncredited)’,0,54),(165,23967,’Officer Reese (uncredited)’,0,55),(1645,10297,’Jake Tyler Brigance’,2,0),(1645,18277,’Ellen Roark’,1,1),(1645,2231,’Carl Lee Hailey’,2,2),(1645,1979,’D.A. Rufus Buckley’,2,3),(1645,17485,’Harry Rex Vonner’,2,4),(1645,17764,’Sheriff Ozzie Walls’,2,5),(1645,18345,’Ethel Twitty’,1,6),(1645,55636,’Lucien Wilbanks’,2,7),(1645,2628,’Freddie Lee Cobb’,2,8),(1645,2463,’Judge Omar Noose’,2,9),(1645,15852,’Carla Brigance’,1,10),(1645,18346,’Tonya Hailey’,1,11),(1645,18347,’Gwen Hailey’,1,12),(1645,4942,’Tim Nunley’,2,13),(1645,2955,’Deputy Dwayne Powell Looney’,2,14),(1645,18070,’Billy Ray Cobb’,2,15),(1645,6806,’James Louis \’Pete\’ Willard’,2,16),(1645,2115,’Stump Sisson’,2,17),(1645,65171,’Winston’,2,18),(1645,5151,’Cora Mae Cobb’,1,19),(1645,16293,’Dr. Wilbert Rodeheaver’,2,20),(1645,588,’Dr. Willard Tyrell \’W.T.\’ Bass (the Defense Psychologist)’,2,21),(1645,6944,’Roark\’s Nurse’,1,22),(4257,1772,’Cindy’,1,0),(4257,35705,’Brenda’,1,1),(4257,14886,’Tom Ryan’,2,2),(4257,8984,’Henry Hale’,2,3),(4257,18471,’Mahalik’,2,4),(4257,7633,’Pru00e4s. Baxter Harris’,2,5),(4257,28639,’Holly’,1,6),(4257,35806,’Shaq’,2,7),(4257,11827,’Marvin’,2,8),(4257,147,’Oliver’,2,9),(4257,18895,’Tiffany\’s Trainer’,2,10),(4257,28640,’Marilyn’,1,11),(4257,9599,’Ms. Norris’,1,12),(4257,55638,’CJ’,2,13),(4257,117525,’Robbie Ryan’,2,14),(4257,58393,’Chingy\’s Girl #1′,1,15),(4257,111931,’Hoss’,2,16),(4257,1633323,’Himself’,2,17),(4257,9599,’Mrs. Norris’,1,18),(4257,6952,’Tom Logan (uncredited)’,2,19),(4234,15234,’Dewey Riley’,2,0),(4234,9206,’Sidney Prescott’,1,1),(4234,14405,’Gale Weathers’,1,2),(4234,18352,’Mark Kincaid’,2,3),(4234,35595,’Roman Bridger’,2,4),(4234,2714,’John Milton’,2,5),(4234,35598,’Tom Prinze’,0,6),(4234,35597,’Sarah Darling’,1,7),(4234,1246,’Angelina Tyler’,1,8),(4234,7489,’Jennifer Jolie’,1,9),(4234,35596,’Tyson Fox’,2,10),(4234,53924,’Christine’,1,11),(4234,23626,’Cotton Weary’,2,12),(4234,9657,’Steven Stone’,2,13),(4234,6213,’Randy Meeks’,0,14),(4234,51957,’The Voice (voice)’,0,15),(4234,7472,’Student’,2,16),(4234,6181,’Wallace’,2,17),(4234,102429,’Studio Executive’,2,18),(4234,19303,’Silent Bob’,2,19),(4234,19302,’Jay’,2,20),(4234,33656,’Martha Meeks’,1,21),(4234,4,’Bianca Burnette’,1,22),(196,521,’Marty McFly / Seamus McFly’,2,0),(196,1062,’Dr. Emmett Brown’,2,1),(196,2453,’Clara Clayton’,1,2),(196,1065,’Buford \’Mad Dog\’ Tannen/Biff Tannen’,2,3),(196,1063,’Maggie McFly / Lorraine McFly’,1,4),(196,1951,’Jennifer Parker’,1,5),(196,1072,’Marshal James Strickland’,2,6),(196,2454,’Chester the Bartender’,2,7),(196,2455,’Buford Tannen\’s Gang / Needles\’ Gang’,2,8),(196,2456,’Buford Tannen\’s Gang’,2,9),(196,2457,’Buford Tannen\’s Gang’,2,10),(196,2458,’Copernicus’,0,11),(196,2459,’Einstein’,0,12),(196,1067,’Dave McFly’,2,13),(196,1068,’Linda McFly’,1,14),(196,1952,’George McFly’,0,15),(196,1237,’Douglas J. Needles’,2,16),(196,11673,’Needles\’ Gang’,2,17),(196,68851,’Needles\’ Gang’,2,18),(196,1060,’Photographer’,2,19),(196,15413,’Barbwire Salesman’,2,20),(196,21460,’Saloon Old Timer’,2,21),(196,4316,’Saloon Old Timer’,2,22),(196,6463,’Saloon Old Timer’,0,23),(196,73349,’Mayor Hubert’,2,24),(196,133952,’Colt Gun Salesman’,2,25),(196,16555,’Engineer’,0,26),(196,57350,’Deputy’,2,27),(196,13003,’Mortician’,2,28),(196,1096552,’Strickland\’s Son’,0,29),(196,1435064,’Jules Brown’,0,30),(196,1435065,’Verne Brown’,0,31),(196,1435066,’Celebration Man’,0,32),(196,1435067,’Pie Lady’,0,33),(196,1435068,’Festival Man #1′,0,34),(196,1435069,’Festival Man #2′,0,35),(196,1435070,’Festival Dance Caller’,0,36),(196,14336,’Townsman #1′,0,37),(196,1435071,’Townsman #2′,0,38),(196,1237,’Needles’,2,39),(196,579077,’Townsman #3′,2,40),(196,1435072,’Eyepatch’,0,41),(196,1435073,’Toothless’,0,42),(196,1435074,’Ticket Agent’,0,43),(196,1435075,’Conductor’,0,44),(196,1435076,’Joey’,0,45),(196,1435077,’Train Fireman’,0,46),(196,1435078,’Barbwire Salesman\’s Companion’,0,47),(196,1435079,’Boy with Gun’,0,48),(196,105629,’Party Band Member #1 (uncredited)’,0,49),(196,105630,’Party Band Member #2 (uncredited)’,0,50),(196,1435080,’Townswoman (uncredited)’,0,51),(196,105628,’Party Band Member #3 (uncredited)’,0,52),(196,1338840,’Prostitute at Palace Saloon (uncredited)’,0,53),(6114,64,’Dracula’,2,0),(6114,1920,’Mina Murray / Elisabeta’,1,1),(6114,4173,’Professor Van Helsing’,2,2),(6114,6384,’Jonathan Harker’,2,3),(6114,20766,’Dr. Jack Seward’,2,4),(6114,41381,’Lucy Westenra’,1,5),(6114,2130,’Lord Arthur Helmwood’,2,6),(6114,20215,’Quincey P. Morris’,2,7),(6114,2887,’R.M. Renfield’,0,8),(6114,16097,’Mr. Hawkins’,2,9),(6114,28782,’Dracula\’s Bride # 1′,1,10),(6114,47954,’Dracula\’s Bride # 2′,0,11),(6114,47955,’Dracula\’s Bride # 3′,0,12),(6114,4257,’Hobbs’,2,13),(6114,162940,’Lucy\’s Maid’,0,14),(6114,203898,’Downstairs Maid’,0,15),(6114,1089946,’Deacon’,0,16),(6114,1089947,’Priest’,0,17),(6114,1089948,’Sister Agatha’,0,18),(6114,1089949,’Sister Sylva’,0,19),(6114,110928,’Older Woman’,1,20),(6114,564083,’Younger Woman’,1,21),(6114,156666,’Zookeeper’,2,22),(6114,1089950,’Zookeeper’,0,23),(6114,102898,’Peep Show Girl’,1,25),(6114,1089952,’Peep Show Girl’,0,26),(6114,165686,’Husband’,0,27),(6114,553773,’Van Helsing\’s Assistant’,0,28),(6114,8323,’Newshawker’,2,29),(1213,1892,’Tom Ripley’,2,0),(1213,12052,’Marge Sherwood’,1,1),(1213,9642,’Dickie Greenleaf’,2,2),(1213,112,’Meredith Logue’,1,3),(1213,1233,’Freddie Miles’,2,4),(1213,1709,’Peter Smith-Kingsley’,2,5),(1213,8986,’Herbert Greenleaf’,2,6),(1213,15915,’Inspector Roverini’,2,7),(1213,4492,’Alvin MacCarron’,2,8),(1213,1989,’Aunt Joan’,1,9),(1213,15916,’Fausto’,2,10),(1213,15917,’Silvana’,1,11),(1213,15918,’Colonnello Verrecchia’,2,12),(1213,15919,’Signora Buffi’,1,13),(1213,15920,’Sergeant Baggio’,2,14),(1213,28950,’Emily Greenleaf’,1,15),(1213,161847,’Fran’,1,16),(1213,1381777,’Greenleaf Chaffeur’,2,17),(1213,1381779,’Fran\’s Boyfriend’,0,18),(1213,1381781,’Police Officer’,0,19),(1213,1381788,’Uncle Ted’,0,20),(1213,1312059,’Gucci Assistant’,0,21),(1213,51637,’American Express Clerk’,0,22),(1213,1381791,’Bus Driver’,0,23),(1213,1381792,’Priest’,0,24),(1213,1281192,’Immigration Officer’,0,25),(1213,1381796,’American Express Clerk’,0,26),(1213,1381806,’Dahlia’,0,27),(1213,7556,’Ermelinda’,0,28),(1213,69068,’Desk Manager Aldo’,2,29),(1213,14149,’Tailor’,2,30),(1213,58966,’Fighting Neighbor’,1,31),(1213,4890,’Fighting Neighbor’,2,32),(1213,1381827,’Trumpet (Napoli Jazz Septet)’,0,33),(1213,1076332,’Piano (Napoli Jazz Septet)’,2,34),(1213,1382091,’Alto Sax (Napoli Jazz Septet)’,0,35),(1213,1382094,’Drums (Napoli Jazz Septet) mer’,0,36),(1213,1382098,’Double Bass (Napoli Jazz Septet)’,0,37),(1213,1382122,’Tenor Sax (Napoli Jazz Septet)’,0,38),(1213,1382123,’Electric Guitar (Napoli Jazz Septet)’,0,39),(1213,1382124,’Cornet (San Remo Jazz Sextet)’,0,40),(1213,1382131,’Alto Sax (San Remo Jazz Sextet)’,0,41),(1213,1382139,’Drums (San Remo Jazz Sextet)’,0,42),(1213,1261972,’Tenor Sax (San Remo Jazz Sextet)’,0,43),(1213,1382158,’Bass (San Remo Jazz Sextet)’,0,44),(1213,1382159,’Piano (San Remo Jazz Sextet)’,0,45),(1213,132419,’Silvana\’s Fiancu00e9′,0,46),(1213,996844,’Silvana\’s Brother’,0,47),(1213,1173638,’Silvana\’s Mother’,0,48),(1213,1382167,’Photographer’,0,49),(1213,1382216,’Onegin (Eugene Onegin Player)’,0,50),(1213,1382217,’Lensky (Eugene Onegin Player)’,0,51),(1213,1382218,’Zaretsky (Eugene Onegin Player)’,0,52),(1213,1303456,’Guillot (Eugene Onegin Player)’,0,53),(1213,1382220,’Fausto\’s Fiancu00e9e’,0,54),(1213,1356807,’Dinelli\’s Cafe Waiter’,0,55),(1213,27399,’Customs Officer’,2,56),(1213,141830,’Record Store Owner’,0,57),(1213,1382225,’Boy Singer’,0,58),(1213,1382226,’Policeman’,0,59),(1213,1382227,’Policeman’,0,60),(1213,137810,’Policeman’,0,61),(1213,1325936,’San Remo Hotel Desk Clerk’,0,62),(9036,8167,’Jerry Shepard’,2,0),(9036,21089,’Davis McClaren’,2,1),(9036,56455,’Katie’,1,2),(9036,21593,’Charlie Cooper’,2,3),(9036,27124,’Dr. Andy Harrison’,2,4),(9036,18260,’Mindo’,2,5),(9036,19957,’Eve McClaren’,1,6),(9361,11856,’Hawkeye/Nathaniel Poe’,2,0),(9361,289,’Cora Munro’,1,1),(9361,3203,’Chingachgook’,2,2),(9361,57448,’Uncas’,2,3),(9361,57449,’Alice Munro’,1,4),(9361,27764,’Major Heyward’,2,5),(9361,15853,’Magua’,2,6),(9361,54,’Col. Edmund Munro’,2,7),(9361,23724,’Gen Montcalm’,2,8),(9361,1066171,’Jack Winthrop’,0,9),(9361,11067,’John Cameron’,2,10),(9361,134061,’Alexandra Cameron’,1,11),(9361,1066172,’James Cameron’,0,12),(9361,975164,’Ongewasgone’,2,13),(9361,4935,’Capt. Beams’,2,14),(1677,134,’Ray Charles’,2,0),(1677,11703,’Della Bae Robinson’,1,1),(1677,9788,’Margie Hendricks’,1,2),(1677,9464,’Joe Adams’,2,3),(1677,58924,’Jeff Brown’,2,4),(1677,71913,’Fathead Newman’,2,5),(1677,1192675,’Aretha Robinson’,0,7),(1677,1192676,’Young Ray Robinson’,0,8),(1677,87003,’Ahmet Ertegun’,2,9),(1677,31028,’Jerry Wexler’,2,10),(1677,18291,’Quincy Jones’,2,11),(1677,18288,’Gossie McGee’,2,12),(1677,38582,’Milt Shaw’,2,13),(1677,17859,’Wilbur Brassfield’,2,14),(1677,53923,’Mary Ann Fisher’,1,15),(1677,1465,’Lowell Fulson’,2,16),(1677,98889,’Jimmy’,0,17),(1677,123532,’Tom Dowd’,2,18),(1677,23970,’Marlene’,1,19),(1677,11184,’Oberon’,2,20),(1677,5274,’Dr. Hacker’,0,21),(1677,21505,’Jack Lauderdale’,2,22),(1677,29685,’Sam Clark’,2,23),(1677,21249,’Mercedes’,1,24),(187,56731,’Nancy Callahan’,1,0),(187,6278,’Miho’,1,1),(187,2296,’Dwight McCarthy’,2,2),(187,5916,’Gail’,1,3),(187,2295,’Marv’,2,4),(187,62,’Det. John Hartigan’,2,5),(187,1121,’Det. Lt. Jack Jackie Boy Rafferty’,2,6),(187,61981,’Manute’,2,7),(187,6279,’Becky’,1,8),(187,17832,’Lucille’,1,9),(187,2299,’The Salesman’,2,10),(187,6280,’Senator Roark’,2,11),(187,585,’Cardinal Patrick Henry Roark’,2,12),(187,5915,’Goldie/Wendy’,1,13),(187,147,’Bob’,2,14),(187,328,’Shellie’,1,15),(187,6408,’Roark Jr./The Yellow Bastard’,2,16),(187,109,’Kevin’,2,17),(187,8693,’Liebowitz’,2,18),(187,23285,’Motorcycle Cop’,2,19),(187,977061,’Corporal Rivera’,2,20),(187,20496,’Hitman’,0,21),(187,2478,’Brian’,2,22),(187,123532,’Douglas Klump’,2,23),(187,134015,’Juicer’,2,24),(187,1358928,’Bouncer’,2,25),(187,18070,’Stuka’,2,26),(187,717568,’Maeve’,0,27),(187,1224272,’Mercenary’,0,28),(187,1075540,’Tammy’,1,29),(187,96004,’Weevil’,0,30),(187,17039,’Burt Shlubb’,2,31),(187,994259,’Skinny Dude’,2,32),(187,215887,’Man w/ Hitman’,2,33),(187,1372211,’Louie’,2,34),(187,6407,’The Customer’,1,35),(187,2293,’Priest’,2,36),(187,568605,’Priest #2′,2,37),(187,1133460,’Assistant DA’,0,38),(187,1401151,’Cop #2′,2,39),(187,2139,’Nancy (11 Years)’,1,40),(187,91612,’Murphy’,2,41),(187,3133,’Dallas’,1,42),(187,61847,’Bozo #1′,0,43),(187,59456,’Bozo #2′,2,44),(187,139235,’Bozo #3′,2,45),(187,964848,’Bozo #4′,2,46),(187,1883083,’Hearing Panel Person’,1,47),(187,1883091,’Judge’,0,48),(187,1883093,’Josie’,0,49),(187,1883096,’Ronnie’,0,50),(187,171538,’Schutz’,2,51),(7461,6065,’Thomas Barnes’,2,0),(7461,28657,’Kent Taylor’,2,1),(7461,2178,’Howard Lewis’,2,2),(7461,10205,’Rex Brooks’,1,3),(7461,227,’President Ashton’,2,4),(7461,8786,’Veronica’,1,5),(7461,25616,’Javier’,2,6),(7461,17093,’Enrique’,2,7),(7461,5419,’Suarez’,0,8),(7461,8691,’Angie Jones’,1,9),(7461,6474,’Ted Heinkin’,2,10),(7461,14888,’Phil McCullough’,2,11),(7461,55755,’Holden’,2,12),(7461,7497,’Ron Matthews’,2,13),(7461,24200,’Kevin Cross’,2,14),(7461,224507,’Marie’,1,15),(7461,145541,’Grace Riggs’,1,16),(7461,1319077,’Anna’,1,17),(7461,1565490,’Parsons’,0,18),(7461,1099283,’Paulina’,0,19),(7461,173158,’Mark Reinhart’,2,20),(7461,556129,’Secret Service Agent’,0,21),(7461,33836,’Cavic’,0,22),(7461,1020699,’Felipe’,2,23),(7461,1453076,’Miguel’,2,24),(7461,1193969,’Luis’,2,25),(7461,23873,’American Woman’,2,26),(7461,1629941,’Police Woman’,1,27),(7461,937447,’Mayor De Soto’,2,28),(9889,12052,’Rosemary Shanahan’,1,0),(9889,70851,’Hal Larson’,2,1),(9889,1206,’Mauricio Wilson’,2,2),(9889,60023,’Steve Shanahan’,2,3),(9889,14888,’Reverend Larson’,2,4),(9889,283444,’Himself’,2,5),(9889,65239,’Jill’,1,6),(9889,60672,’Ralph’,2,7),(9889,78837,’Katrina’,1,8),(9889,162924,’Second Tiffany’,2,9),(9889,22297,’Artie’,2,10),(9889,87039,’Nurse Tanya Peeler’,1,11),(9889,203407,’Young Hal’,2,12),(9889,60953,’Bella’,1,13),(9889,42199,’Doctor’,2,14),(9889,1580198,’McIntosh Waiter’,2,15),(9889,61409,’Jen’,1,16),(9889,1580200,’Spastic Bella’,1,17),(9889,1229514,’Cabbie’,2,18),(820,1269,’Jim Garrison’,2,0),(820,2176,’Clay Shaw/Clay Bertrand’,2,1),(820,64,’Lee Harvey Oswald’,2,2),(820,4724,’Willie O\’Keefe’,2,3),(820,12132,’Bill Broussard’,2,4),(820,3151,’Jack Martin’,2,5),(820,12133,’Susie Cox’,1,6),(820,5606,’Liz Garrison’,1,7),(820,4517,’David Ferrie’,2,8),(820,7180,’Dean Andrews’,2,9),(820,3201,’Lee Bowers’,2,10),(820,6067,’Lou Ivon’,2,11),(820,6837,’Senator Long’,2,12),(820,12134,’Rose Cheramie’,1,13),(820,55636,’X’,2,14),(820,68812,’Guy Bannister’,2,15),(820,1535,’Jack Ruby’,2,16),(820,12136,’Abraham Zapruder’,0,17),(820,7132,’Bill Newman’,2,18),(820,12137,’Lyndon B. Johnson’,0,19),(820,12139,’Beverly Oliver’,1,21),(820,12128,’Earl Warren’,0,22),(820,4201,’Numa Bertel’,2,23),(820,68180,’Al Oser’,2,24),(820,156310,’Marina Oswald’,0,25),(820,41737,’Carlos Bringuier’,2,26),(820,37827,’L.B.J. (voice)’,2,27),(820,1044279,’FBI Spokesman’,0,28),(820,3210,’Jasper Garrison’,2,29),(820,936924,’Hobo #2′,2,30),(820,21708,’Leopoldo’,2,31),(820,130734,’Angelo’,0,32),(820,2859,’Janet Williams’,1,33),(820,1214299,’Bill Williams’,0,34),(820,236486,’Sam Holland’,0,35),(820,119227,’Jean Hill’,1,36),(820,158422,’Julia Ann Mercer’,1,37),(820,994259,’Mercer Interrogator’,2,38),(820,27803,’Mercer Interrogator’,2,39),(820,97391,’FBI Agent #2 with Hill’,2,40),(820,1424273,’Hill Interrogator’,0,41),(820,89461,’Mobster with Broussard’,2,42),(820,219660,’Bolton Ford Dealer’,0,43),(820,199733,’Will Fritz’,0,44),(820,141195,’FBI Agent – Frank’,2,45),(820,3211,’General Y’,2,46),(820,103955,’Board Room Man’,2,47),(820,1194339,’Board Room Man’,0,48),(820,136112,’Board Room Man’,0,49),(820,553478,’White House Man’,2,50),(820,170921,’White House Man’,2,51),(820,168648,’General Lemnitzer’,2,52),(820,156586,’White House Man’,0,53),(820,1247314,’White House Man’,0,54),(820,4029,’TV Newsman #3′,2,55),(820,40351,’Judge Haggerty’,2,56),(820,60876,’Vernon Bundy’,2,57),(820,1495634,’FBI Receptionist’,1,58),(820,15415,’Colonel Finck’,2,59),(820,3181,’Fence Shooter’,2,60),(820,105649,’Prisoner Powell’,2,61),(820,36060,’Tippet’,2,62),(820,124087,’Tippet Shooter’,2,63),(820,11895,’Officer Poe’,0,64),(820,90848,’Dr. Rose (credited on Director\’s Cut)’,0,65),(820,951881,’Jerry Johnson\’s Sidekick (credited on Director\’s Cut)’,2,66),(820,3188,’Samuel (credited on Director\’s Cut)’,2,67),(820,14101,’Jerry Johnson (credited on Director\’s Cut)’,2,68),(820,68179,’Garrison\’s Secretary (credited in Director\’s Cut)’,0,69),(820,12122,’Mr. Goldberg / Spiesel (credited on Director\’s Cut)’,2,70),(820,11805,’Oswald Imposter (credited on Director\’s Cut)’,2,71),(820,92488,'(uncredited)’,2,72),(820,214738,’Hitman (uncredited)’,0,73),(820,583841,’Secretary in Window (uncredited)’,0,74),(820,1338324,’Reporter (uncredited)’,0,75),(820,1517477,’Plaza Witness (uncredited)’,0,76),(820,1041458,’Courtroom Projectionist (uncredited)’,0,77),(820,1000702,’Dallas County Sherriff (uncredited)’,0,78),(820,1463362,’Man in Court (uncredited)’,0,79),(820,8349,’Narrator (voice) (uncredited)’,2,80),(820,1601439,’Restaurant diner (uncredited)’,0,81),(6073,287,’Jerry Welbach’,2,0),(6073,1204,’Samantha Barzel’,1,1),(6073,4691,’Winston Baldry’,2,2),(6073,18999,’Ted Slocum’,2,3),(6073,193,’Arnold Margolese’,2,4),(6073,12438,’Bernie Nayman’,2,5),(6073,49827,’Frank’,2,6),(6073,157609,’Car Thief #1′,2,7),(6073,38582,’Beck’,2,8),(6073,3979,’Joe the Pawnshop Owner’,2,10),(6073,1070128,’Gunsmith’,0,11),(6073,15372,’Bobby Victory’,2,12),(6073,937447,’Hotel Clerk’,2,13),(6073,143331,’Raoul’,2,14),(8007,887,’Lt. Chris Burnett’,2,0),(8007,193,’Admiral Leslie McMahon Reigart’,2,1),(8007,16856,’Stackhouse’,2,2),(8007,53572,’Capt. Rodway, USMC’,0,3),(8007,18181,’Master Chief Tom O\’Malley’,2,4),(8007,53573,’Miroslav Lokar’,2,5),(8007,22462,’Admiral Piquet’,2,6),(8007,86151,’Sasha’,2,7),(8007,137336,’Bazda’,0,8),(8007,61855,’Petty Officer Kennedy’,2,9),(8007,25879,’Admiral Donnelly’,2,10),(8007,1323218,’Aernout Van Lynden’,0,11),(8007,65727,’Red Crown Operator’,0,12),(8007,76038,’Red Crown Operator’,2,13),(8007,1323219,’Red Crown Operator’,0,14),(8007,65141,’Brandon’,2,15),(8007,169920,’Ed Burnett’,2,16),(8007,17354,’Junior Officer’,2,17),(8007,1219107,’Dorothy Lucey’,0,18),(4380,1205,’John Clark’,2,0),(4380,16866,’Paulina’,1,1),(4380,4038,’Beverly Clark’,1,2),(4380,4494,’Bobbie’,1,3),(4380,2283,’Link’,2,4),(4380,20974,’Miss Mitzi’,1,5),(4380,21127,’Chic’,2,6),(4380,334,’Vern’,0,7),(4380,36810,’Jenna Clark’,1,8),(4380,33532,’Evan Clark’,2,9),(4380,28633,’Devine’,2,10),(4380,36811,’Scott’,2,11),(4380,36812,’Carolyn’,1,12),(4380,36813,’Diane’,0,13),(4380,36814,’Tina’,1,14),(4380,36815,’Daphne’,0,15),(4380,36816,’Louis’,2,16),(4380,143324,”,0,17),(1124,6968,’Robert Angier’,2,0),(1124,3894,’Alfred Borden’,2,1),(1124,3895,’Cutter’,2,2),(1124,1245,’Olivia Wenscombe’,1,3),(1124,1333,’Alley’,2,4),(1124,1580598,’Jess Borden’,1,5),(1124,7487,’Nikola Tesla’,2,6),(1124,15555,’Julia McCullough’,1,7),(1124,15556,’Sarah Borden’,1,8),(1124,177765,’Judge’,2,9),(1124,16407,’Owens’,2,10),(1124,10743,’Milton’,2,11),(1124,120560,’Prosecutor’,2,12),(1124,58860,’Defender’,2,13),(1124,19541,’Captain’,2,14),(1124,111195,’Sullen Warder’,2,15),(1124,1476065,’Stagecoach Driver’,0,16),(1124,125024,’Hotel Manager’,2,17),(1124,144162,’Boy’,0,18),(1124,995587,’Chung Ling Soo’,2,19),(1124,228954,’Voice’,0,20),(1124,938390,’Merrit’,0,21),(1124,59285,’Ticket Hawker’,2,22),(1124,178557,’Moderator’,0,23),(1124,102413,’Scalper’,0,24),(1124,535,’Man in Hotel’,2,25),(1124,1219579,’Man in Hotel’,0,26),(1124,84249,’Ackerman’,2,27),(1124,58473,’Blind Stagehand 1′,2,28),(1124,42691,’Blind Stagehand 2′,2,29),(1124,1225872,’Blind Stagehand 3′,0,30),(1124,170756,’Glamorous Assistant’,0,31),(1124,34904,’Workman 1′,2,32),(1124,82929,’Leonard’,2,33),(1124,91267,’Will’,0,34),(1124,1388591,’Upscale London Boy (uncredited)’,0,35),(1124,1265816,’Bar Maid (uncredited)’,0,36),(1124,1513992,’Dancer (uncredited)’,1,37),(1124,1028426,’Piano Player 1 (uncredited)’,0,38),(1124,1580574,’Stagehand (uncredited)’,2,39),(1124,1511113,’Handkerchief Lady (uncredited)’,0,40),(1579,17678,’Jaguar Paw’,2,0),(1579,17688,’Zero Wolf’,2,1),(1579,17689,’Middle Eye’,2,2),(1579,42009,’Sky Flower’,1,3),(1579,62477,’Chilam’,2,4),(1579,4364,’Mother in Law’,1,5),(1579,17679,’Seven’,0,6),(1579,17680,’Blunted’,2,7),(1579,17681,’Flint Sky’,2,8),(1579,17682,’Turtles Run’,0,9),(1579,17683,’Curl Nose’,0,10),(1579,17684,’Smoke Frog’,0,11),(1579,17685,’Cocoa Leaf’,0,12),(1579,17686,’Old Story Teller’,0,13),(1579,17687,’Young Woman’,0,14),(1579,17690,’Snake Ink’,2,15),(1579,42010,’Village Girl’,0,16),(1579,42011,’Wife’,0,17),(1579,42012,’Eldest Daughter’,0,18),(1579,42013,’Fish Hunter’,0,19),(1579,969219,’First Temple Sacrifice’,2,20),(1579,42015,’Hanging Moss’,2,21),(1579,42016,’Drunkards Four’,2,22),(1579,42017,’Cut Rock’,2,23),(1579,42018,’Ten Peccary’,2,24),(1579,42019,’Monkey Jaw’,0,25),(1579,42020,’Buzzard Hook’,0,26),(1579,42021,’Speaking Wind’,2,27),(1579,42022,’Vicious Holcane’,0,28),(1579,20194,’High Priest’,2,29),(1579,1331667,’Oracle Girl’,0,30),(1579,1331668,’Oracle Girl’,0,31),(1579,104391,’Laughing Man’,2,32),(1579,1331669,’Man on Temple Top’,0,33),(1579,1331670,’Slave Auctioneer’,0,34),(1579,1331671,’Woman Auctioneer’,0,35),(1579,1331672,’King’,0,36),(1579,1331673,’Queen’,0,37),(1579,1331674,’Head Chac’,0,38),(708,10669,’James Bond’,2,0),(708,10670,’Kara Milovy’,1,1),(708,1924,’General Georgi Koskov’,0,2),(708,10671,’Brad Whitaker’,2,3),(708,655,’General Leonid Pushkin’,2,4),(708,10672,’Kamran Shah’,2,5),(708,10673,’Necros’,2,6),(708,10674,’Saunders’,2,7),(708,9906,’Q’,2,8),(708,10513,’M’,2,9),(708,10462,’Minister of Defence’,2,10),(708,6610,’General Anatol Gogol’,0,11),(708,10675,’Miss Moneypenny’,1,12),(708,8659,’Felix Leiter’,2,13),(708,26055,’Rubavitch’,1,14),(708,95536,’Col. Feyador’,2,15),(708,28897,’Rosika Miklos’,1,16),(708,53471,’Linda (as Kell Tyler)’,1,17),(708,30096,’Liz’,1,18),(708,1705480,’Ava’,0,19),(708,2980,’Chief of Security, Tangier’,2,20),(708,129345,’Koskov\’s KGB Minder’,0,21),(708,182081,’Imposter’,2,22),(708,199920,’Chief of Snow Leopard Brotherhood’,0,23),(708,1705486,’Achmed’,0,24),(708,1616312,’Kamran\’s Man’,0,25),(708,1705490,’Kamran\’s Man’,0,26),(708,1705491,’Jailer’,0,27),(708,190439,’Gasworks Supervisor’,0,28),(708,185943,’Male Secretary, Blayden’,0,29),(708,1705493,’004′,0,30),(708,47861,’002′,0,31),(708,26680,’Sergeant Stagg (as Derek Hoxby)’,2,32),(708,24278,’Butler, Blayden’,2,33),(708,1091222,’Trade Centre Toastmaster’,0,34),(708,1705494,’Concierge, Vienna Hotel’,0,35),(708,174381,’Lavatory Attendant’,2,36),(708,1705495,’Girl’,0,37),(708,1705496,’Girl’,0,38),(708,1705497,’Girl’,0,39),(708,1705498,’Girl’,0,40),(708,1705499,’Girl’,0,41),(708,1190576,’Girl’,0,42),(708,1320102,’Girl (as Mayte Sanchez)’,0,43),(708,1705500,’Girl’,0,44),(708,1705501,’Girl’,0,45),(708,111661,’Girl (as Waris Walsh)’,0,47),(708,1705503,’Girl’,0,48),(708,10666,’Opera Patron (uncredited)’,1,49),(9930,4135,’Tom Logan’,2,0),(9930,26513,’Laura J. Kelly’,1,1),(9930,589,’Chelsea Deardon’,1,2),(9930,6197,’Cavanaugh’,2,3),(9930,28641,’Victor Taft’,2,4),(9930,21521,’Bower’,0,5),(9930,15412,’Blanchard’,2,6),(9930,13728,’Forrester’,2,7),(9930,167120,’Jennifer Logan’,1,8),(9930,24368,’Judge Dawkins’,2,9),(9930,11870,’Carol Freeman’,1,10),(9930,11829,’Barbara’,1,11),(9930,106119,’Marchek’,2,12),(9930,1618730,’Sebastian Dearden’,0,13),(9930,994134,’Hit Man’,0,14),(9930,41517,’Clerk’,2,15),(9930,32328,’Judge #1′,2,16),(9930,157582,’Reporter’,2,17),(9930,96706,’Doreen’,1,18),(9930,95227,’Taxi Driver’,2,19),(9930,1212614,’Short Lady’,0,20),(9930,1197391,’Secretary #1′,1,21),(9930,57419,’Secretary #2′,0,22),(9930,3199,’Attorney #1′,0,23),(9930,73513,’McHugh’,2,24),(9930,138236,’Bored Judge’,2,25),(9930,707346,’Young Chelsea’,1,26),(9930,97068,’First Cop’,2,27),(9930,109761,’Second Cop’,2,28),(1586,85,’Mort Rainey’,2,0),(1586,1241,’John Shooter’,2,1),(1586,16327,’Ted Milner’,2,3),(1586,17764,’Ken Karsch’,2,4),(1586,41247,’Sheriff Dave Newsome’,2,6),(1586,59199,’Mrs. Garvey’,0,7),(1586,218899,’Tom Greenleaf’,2,8),(1586,58169,’Fire Chief Wickersham’,2,9),(1586,108302,’Detective Bradley’,0,10),(1586,1233017,’Fran Evans’,0,11),(1586,141789,’Greta Bowie’,1,12),(1586,206652,’Juliet Stoker’,0,13),(1586,1321651,’Busboy’,0,14),(1586,1225492,’Motel Manager’,0,15),(2044,6384,’Alex Wyler’,2,0),(2044,18277,’Kate Forster’,1,1),(2044,21041,’Anna Klyczynski’,1,2),(2044,290,’Simon Wyler’,2,3),(2044,21042,’Henry Wyler’,2,4),(2044,13506,’Kate`s Mother’,1,5),(2044,21043,’Morgan’,2,6),(2044,21044,’Mona’,1,7),(2044,141417,’Mulhern’,2,8),(2044,1288335,’Waiter’,2,9),(2044,1229774,’Cove Patron’,2,10),(2044,1477263,’Girl Patient’,0,11),(2044,1477264,’Nurse Practitioner’,0,12),(2044,1477265,’Patient on Gurney’,0,13),(2044,1477266,’Doug’,0,14),(2044,1088586,’I.C.U. Nurse’,0,15),(2044,1230664,’Vanessa’,0,16),(2044,1557513,’Hostess’,0,17),(2044,1574522,’Receptionist’,0,18),(2044,1855240,’Madhvi Patel’,1,19),(9913,11661,’Caroline Ellis’,1,0),(9913,4800,’Violet Devereaux’,1,1),(9913,133,’Luke Marshall’,2,2),(9913,5049,’Ben Devereaux’,2,3),(9913,52847,’Jill’,1,4),(9913,60388,’Bayou Woman’,1,5),(9913,60386,’Mama Cynthia’,1,6),(9913,60387,’Hallie’,0,7),(9913,29933,’Desk Nurse’,1,8),(9913,60389,’C.N.A.’,1,9),(9913,60390,’Nurse Trula’,0,10),(9913,60394,’Madeleine Thorpe’,1,11),(9913,60391,’Robertson Thorpe’,0,12),(9913,60395,’Grace Thorpe’,1,13),(9913,60393,’Martin Thorpe’,2,14),(9913,60392,’Nurse Audrey’,0,15),(9913,4812,’Creole Gas Station Owner’,2,16),(9913,60398,’Creole Mother’,0,17),(9913,60396,’Papa Justify’,0,18),(9913,60397,’Mama Cecile’,0,19),(4970,4587,’Miranda Grey’,1,0),(4970,3223,’Pete Graham’,2,1),(4970,17764,’Dr. Douglas Grey’,2,2),(4970,955,’Chloe Sava’,1,3),(4970,3911,’Sheriff Ryan’,2,4),(4970,1369,’Phil Parsons’,2,5),(4970,8656,’Teddy Howard’,2,6),(4970,1313348,’Rachel Parsons’,0,7),(4970,59198,’Turlington’,2,8),(4970,1466507,’Tracey Seavers’,0,9),(4970,141789,’Irene’,1,10),(9096,738,’Dr. Robert Campbell’,2,0),(9096,11478,’Dr. Rae Crane’,0,1),(9096,55836,’Dr. Miguel Ornega’,2,2),(9096,56962,’Tanaki’,2,3),(9096,56963,’Medicine Man’,2,4),(9096,56964,’Jahausa’,0,5),(9096,1589736,’Palala’,0,6),(9096,1589737,’Kalana’,0,7),(9096,1589739,’Imana’,0,8),(9096,1577838,’Government Man’,0,9),(440,56389,’Dallas Howard’,2,0),(440,25869,’Kelly O\’Brien’,1,1),(440,40543,’Sheriff Eddie Morales’,2,2),(440,76414,’Molly O\’Brien’,1,3),(440,131006,’Tim’,2,4),(440,73454,’Jesse’,1,5),(440,19976,’Col. Stevens’,2,6),(440,33293,’Dale’,0,7),(440,109870,’Alien’,2,8),(440,946696,’Predator’,2,9),(440,70175,’Darcy’,1,10),(440,202065,’Curtis’,2,11),(440,210348,’Mark’,2,12),(440,33336,’Carrie’,1,13),(440,60721,’Buddy’,2,14),(440,83852,’Sam’,2,15),(440,42711,’Nathan’,2,16),(440,51455,’Ricky’,2,17),(440,77622,’Tina’,1,18),(440,62717,’Nurse Helen’,1,19),(440,1066283,’Pregnant Sue’,1,20),(440,231047,’Nick’,2,21),(440,1219546,’Drew’,0,22),(440,152820,’Deputy Ray’,0,23),(440,1655612,’Deputy Joe’,2,24),(440,10875,’Ms. Y’,1,25),(440,85613,’Scotty’,2,26),(440,1655618,’Mr. Thomas’,2,27),(440,183016,’Lt. Wood’,2,28),(440,1196455,’Earl’,2,29),(440,81074,’Dr. Lennon’,2,30),(440,158575,’Karl’,2,31),(440,106979,’Ritchie’,2,32),(440,25024,’Homeless Harry’,2,33),(440,77164,’Truck Driver’,2,34),(440,144561,’Special Forces Commander’,0,35),(440,1655703,’National Guard’,2,36),(440,11828,’ER Resident Doc’,2,37),(440,1655701,’Pregnant Woman’,1,38),(440,1331006,’Pregnant Woman’,1,39),(8224,2963,’Tom Welles’,2,0),(8224,73421,’Max California’,2,1),(8224,4691,’Eddie Poole’,2,2),(8224,4445,’George Higgins’,2,3),(8224,16293,’Daniel Longdale’,2,4),(8224,53,’Dino Velvet’,2,5),(8224,2229,’Amy Welles’,1,6),(8224,4886,’Warren Anderson’,2,7),(8224,26930,’Janet Mathews’,1,8),(8224,26919,’Mary Ann Mathews’,1,9),(8224,27003,’Miami Girlfriend’,0,10),(8224,26651,’Taxi Driver’,0,11),(8224,26998,’Computer Wizard’,1,12),(8224,26972,’Larry’,0,13),(8224,54159,’Mrs. Christian’,1,14),(8224,1238,’Stick’,2,15),(8457,887,’Drillbit Taylor’,2,0),(8457,41087,’Lisa’,1,1),(8457,15760,’Ronnie’,2,2),(8457,26292,’Emmit’,2,3),(8457,55097,’Wade’,2,4),(8457,19195,’Filkins’,2,5),(8457,55673,’Ryan’,2,6),(8457,71726,’Chuck’,0,7),(8457,181553,’Nick’,0,8),(8457,4494,’Dolores’,1,9),(8457,79024,’Barbara’,1,10),(8457,28638,’Frightened Dad’,2,11),(8457,59841,’Not for Pot Driver’,2,12),(8457,204462,’Attractive Woman Driver’,1,13),(8457,105788,’Ronnie\’s Mom’,0,14),(8457,1061111,’Dean’,2,15),(8457,147499,’Bus Driver’,2,16),(8457,1074686,’Cute Girl on Stairs’,1,17),(8457,62862,’Don’,2,18),(8457,13101,’Jim’,2,19),(8457,1564984,’High School Juliet’,0,20),(8457,194372,’Filkins\’ Mom’,1,21),(8457,203801,’Hot Girl’,1,22),(8457,82791,’Brooke’,1,23),(8457,1586947,’Hallway Girl’,1,24),(8457,77912,’Filkins\’ Buddy’,2,25),(8457,1586950,’Another Kid’,0,26),(8457,8180,’Male Police Officer on Bluff’,2,27),(8457,1182085,’Female Police Officer on Bluff’,0,28),(8457,11659,’Male Teacher’,2,29),(8457,83600,’Photography Teacher’,1,30),(8457,63235,’Bernie’,2,31),(8457,52797,’Stump’,0,32),(8457,1586954,’Homeless Man’,2,33),(8457,1219899,’Cafu00e9 Manager’,2,34),(8457,1586955,’Hendrix Kid’,0,35),(8457,17401,’Principal Doppler’,2,36),(8457,1586956,’Bikini Girl’,0,37),(8457,1586957,’Bikini Girl’,1,38),(8457,22250,’Older Man’,2,39),(8457,54720,’Coffee Computer Guy’,2,40),(8850,7447,’Lamont Cranston/The Shadow’,2,0),(8850,11389,’Shiwan Khan’,2,1),(8850,14698,’Margo Lane’,1,2),(8850,1039,’Moe Shrevnitz’,2,3),(8850,1327,’Dr. Reinhardt Lane’,2,4),(8850,13472,’Farley Claymore’,2,5),(8850,13593,’Wainwright Barth’,2,6),(8850,85500,’Dr. Tam’,0,7),(8850,1813086,’Tulku’,0,8),(8850,20904,’Li Peng’,2,9),(8850,20626,’Isaac Newboldt’,2,10),(8850,55554,’Duke Rollins’,2,11),(8850,106772,’Berger’,2,12),(8850,140237,’Doctor’,2,13),(8850,29445,’Nelson’,2,14),(8850,11519,’Taxi Driver’,2,15),(8850,21380,’Maxie’,2,16),(8850,61704,’Tibetan Driver’,2,17),(8850,105047,’Tibetan Passenger’,2,18),(8850,21132,’Marine Guard’,2,19),(8850,56576,’Marine Guard’,2,20),(8850,52801,’Sailor’,2,21),(8850,66637,’Mrs. Tam’,0,22),(8850,107489,’Mongol’,2,23),(1833,6165,’Mark Cohen’,2,0),(1833,17736,’Roger Davis’,2,1),(1833,5916,’Mimi Marquez’,1,2),(1833,19392,’Tom Collins’,2,3),(1833,19393,’Angel Dumott Schunard’,2,4),(1833,19394,’Maurenn Johnson’,1,5),(1833,10580,’Joanne Jefferson’,1,6),(1833,17637,’Benjamin Coffin III’,2,7),(1833,148655,’Steve’,2,8),(1833,95604,’Paul’,2,9),(1833,7404,’Alexi Darling’,1,10),(1833,96539,’Mr. Jefferson’,2,11),(1833,63279,’Mrs. Jefferson’,1,12),(8970,67773,’Henry Clark’,2,0),(8970,18892,’Nancy Clark’,1,1),(8970,8930,’Mr. Mersault’,0,2),(8970,56867,’Greg’,2,3),(8970,22126,’Susan Clark’,1,4),(8970,62846,’Janitor on Train’,2,5),(8970,60018,’Andrew Lloyd Webber’,2,6),(8970,38024,’Sheena’,1,7),(8970,33489,’Dr. Faber’,2,8),(8970,11718,’Woman in Bathroom’,1,9),(8970,149486,’Airline Representative’,1,10),(9306,3084,’Dr. Moreau’,2,0),(9306,5576,’Montgomery’,2,1),(9306,11207,’Edward Douglas’,2,2),(9306,826,’Aissa’,1,3),(9306,141987,’Hyena-Swine’,2,4),(9306,7242,’Azazello’,2,5),(9306,590489,’Majai’,2,6),(9306,536274,’Assassimon’,2,7),(9306,18702,’Lo-Mai’,2,8),(9306,2372,’Sayer of the Law’,2,9),(9306,23797,’M\’Ling’,2,10),(9306,663,’Kiril’,2,11),(9306,1488721,’Waggdi’,0,12),(9306,586796,’Boar Man’,0,13),(9306,1062111,’Bison Man’,2,14),(9306,53266,’Fox Lady’,1,15),(9306,42175,’Melting bulldog’,2,16),(1921,6384,’Nelson’,2,0),(1921,6885,’Sara’,1,1),(1921,11355,’Chaz’,2,2),(1921,19974,’Vince’,2,3),(1921,16858,’Angelica’,1,4),(1921,19975,’Brandon’,2,5),(1921,8924,’Edgar Price’,2,6),(1921,19976,’Raeford Dunne’,2,7),(1921,19977,’Abner’,2,8),(1921,19978,’Manny’,2,9),(1921,19979,’Beatrice’,1,10),(1921,19980,’Burly Man’,2,11),(1921,19981,’Homeless Person’,2,12),(1921,19982,’Rachel, Coffee Shop Waitress’,0,13),(1921,1580344,’Bald Man’,2,14),(1683,448,’Katherine’,1,0),(1683,18616,’Doug’,2,1),(1683,17605,’Ben’,2,2),(1683,1285,’Loren McConnell’,1,3),(1683,9029,’Father Costigan’,2,4),(1683,946356,’Maddie McConnell’,1,5),(1683,31467,’Sheriff Cade’,2,6),(1683,16459,’Mayor Brooks’,2,7),(1683,60875,’Jim Wakeman’,2,8),(1683,1291848,’Brynn Wakeman’,0,9),(1683,956865,’William Wakeman’,2,10),(1683,1291849,’Kyle Wakeman’,0,11),(1683,438076,’Brody McConnell’,0,12),(1683,33262,’Gordon’,2,13),(1683,94428,’Isabelle’,1,14),(203,1037,’Charlie Cappa’,2,0),(203,380,’John \’Johnny Boy\’ Civello’,2,1),(203,2555,’Tony DeVienazo’,2,2),(203,2556,’Teresa Ronchelli’,0,3),(203,2557,’Michael Longo’,2,4),(203,2558,’Giovanni Cappa’,2,5),(203,2561,’Mario’,2,6),(203,2563,’Joey \’Clams\’ Scala’,0,7),(203,2564,’Jimmy’,0,8),(203,2575,’Diane’,0,9),(203,77255,’Oscar’,2,10),(203,141,’Drunk’,2,11),(203,62036,’Boy With Gun’,2,12),(203,127738,’Soldier’,2,13),(203,160510,’Cop’,2,14),(1887,205,’Marie Antoinette’,1,0),(1887,17881,’Louis XVI’,2,1),(1887,351,’Comtesse de Noailles’,1,2),(1887,9626,’Louis XV’,2,3),(1887,9827,’Duchesse de Polignac’,1,4),(1887,18514,’Comtesse du Barry’,1,5),(1887,28640,’Aunt Victoire’,1,6),(1887,1834,’Aunt Sophie’,1,7),(1887,6413,’Emperor Joseph II’,2,8),(1887,19995,’Maria Theresa’,1,9),(1887,19774,’Princesse Lamballe’,1,10),(1887,229634,’Count Louis de Provence’,2,11),(1887,1254583,’Count Axel Fersen’,2,12),(1887,9893,’Duchesse de Char’,1,13),(1887,6554,’Vergennes’,2,14),(1887,19775,’Lu00e9onard’,2,15),(1887,1015830,’Comte Charles d\’Artois’,2,16),(1887,2524,’Raumont’,2,17),(1887,4581,’Ambassador Mercy’,2,18),(1887,19776,’Duc de Choiseul’,2,19),(1887,19777,’Marie Therese – 6 years’,0,20),(1887,35608,’Chief Valet’,2,22),(6071,16560,’Jimmy Kilmartin’,2,0),(6071,2231,’Calvin Hart’,2,1),(6071,2963,’Little Junior Brown’,2,2),(6071,9994,’Bev Kilmartin’,1,3),(6071,49824,’Rosie Kilmartin’,1,4),(6071,2283,’Frank Zioli’,2,5),(6071,4688,’Ronnie Gannon’,2,6),(6071,10182,’Omar’,2,7),(6071,4492,’Big Junior Brown’,2,8),(6071,16293,’Jack Gold’,2,9),(2687,54812,’Nick Holloway’,2,0),(2687,589,’Alice Monroe’,1,1),(2687,4783,’David Jenkins’,2,2),(2687,21731,’George Talbot’,2,3),(2687,537,’Warren Singleton’,2,4),(2687,14950,’Dr. Bernard Wachs’,2,5),(2687,6326,’Morrissey’,2,6),(2687,17933,’Gomez’,2,7),(2687,26993,’Tyler’,2,8),(2687,26994,’Cellan’,2,9),(2687,26995,’Richard’,0,10),(2687,26996,’Ellen’,0,11),(194,2405,’Amu00e9lie Poulain’,1,0),(194,2406,’Nino Quincampoix’,2,1),(194,2407,’Raphau00ebl Poulain’,2,2),(194,2408,’Lucien’,2,3),(194,1654,’Suzanne’,1,4),(194,2412,’Georgette’,1,5),(194,2413,’Joseph’,2,6),(194,2414,’Hipolito’,2,7),(194,2415,’Madeleine Wallace’,0,8),(194,2409,’Amandine Poulain’,0,9),(194,2410,’Raymond Dufayel’,2,10),(194,2411,’Gina’,1,11),(194,2416,’Collignon’,2,12),(194,2417,’Dominique Bretodeau’,2,13),(194,32092,’M. Collignon’,0,14),(194,231607,’Mme. Collignon’,0,15),(194,119199,’Eva’,1,16),(194,77736,’Philomu00e8ne’,1,17),(194,13689,’L\’homme dans la photo’,2,18),(194,1336073,’L\’inconnu des photomatons’,0,19),(194,18177,’Narrator / Ru00e9citant (voice)’,2,20),(194,1145445,’Eugu00e8ne Koler’,0,21),(194,1377960,’L\’homme u00e0 la vespasienne’,0,22),(194,144955,’u00e9picier d\’Amandine’,0,23),(194,1457125,’La femme dans le coma’,0,24),(194,28462,’Le voisin d\’Amu00e9lie’,0,25),(194,1086615,’Le client humiliu00e9′,2,26),(194,583312,’Le clochard’,0,27),(194,1379561,’L\’aveugle’,0,28),(194,240388,’Le client aux endives’,0,29),(194,585017,’Dominique Bredoteau jeune’,0,30),(194,238388,’Le S.D.F.’,0,31),(194,51099,’Dominique Bredoteau femme’,0,32),(194,333422,’La concierge du mort’,0,33),(194,1376239,’La Tante Josette’,1,34),(194,1117146,’L\’instituteur’,0,35),(194,1326530,’Le patron du bistrot’,0,36),(194,231608,’Son employu00e9e’,0,37),(194,935429,’L\’opu00e9ru00e9 des cloisons nasales’,0,38),(194,17618,’La marchande de journaux’,0,39),(194,1129857,’Le contru00f4leur du train’,2,40),(194,117115,’Le client du cafu00e9′,0,41),(194,64592,’La femme pru00e8s du manu00e8ge’,0,42),(194,230076,’Le souffleur de rue’,0,43),(194,1319824,’Le facteur de la concierge’,0,44),(194,1176105,’Le facteur de Poulain’,0,45),(194,1469823,’Fu00e9lix L\’Herbier’,0,46),(194,578093,’Palace Video (voice)’,0,47),(194,1195532,’Le mari de la concierge (voice)’,0,48),(194,553215,’Jacques Grosjean (voice)’,0,49),(194,123827,’Himself (voice)’,2,50),(194,1270534,'(uncredited)’,0,51),(194,236132,'(uncredited)’,0,52),(194,133747,'(uncredited)’,0,53),(194,98195,’Nymphomaniac (uncredited)’,0,54),(8849,9642,’Alfie’,2,0),(8849,3141,’Julie’,1,1),(8849,4987,’Marlon’,2,2),(8849,13636,’Dorie’,1,3),(8849,56105,’Lu Schnitman’,0,4),(8849,29071,’Phil’,0,5),(8849,23459,’Nikki’,1,6),(8849,9781,’Lonette’,1,7),(8849,4038,’Liz’,1,8),(8849,97604,’Terry’,2,10),(8849,1452735,’Max’,0,11),(8849,16183,’Mrs. Wing’,2,13),(8849,72003,’Carol’,1,14),(8849,1184849,’Felix’,0,15),(8849,184040,’Mrs. Wing’,1,16),(8849,63547,’Bitter Girl’,1,17),(8849,169337,’Uta’,1,18),(9544,10822,’Detective Mike Reilly’,2,0),(9544,11317,’Terry Huston’,1,1),(9544,9029,’Alistair Pratt’,2,2),(9544,1646,’Polidori’,2,3),(9544,57897,’Denise Stone’,1,4),(9544,27993,’Sykes’,2,5),(9544,38371,’Kate’,1,6),(9544,27625,’Jeannine’,0,7),(9544,31431,’Turnball’,2,8),(9544,30428,’Frank Bryant’,2,9),(9544,154684,’Thana Brinkman’,0,10),(9544,1831975,’Little Girl’,0,11),(9544,938779,’Mrs. Richardson’,0,13),(9544,178608,’Alice Turnbull’,0,14),(9544,1389920,’Barlow’,0,15),(9544,1214093,’Rooney’,2,16),(9544,16784,’Henry’,2,17),(9544,16808,’Dieter Schrader’,2,18),(9544,18153,’Nina Black’,0,19),(9544,18153,’Nina Blank’,0,20),(7288,7399,’Alex Rose’,2,0),(7288,69597,’Nancy Kendricks’,1,1),(7288,52313,’Mrs. Connelly’,1,2),(7288,38425,’Cu00e9line’,1,3),(7288,15009,’Coop’,2,4),(7288,12967,’Jean’,1,5),(7288,60959,’Bartender’,1,6),(7288,7420,’Kenneth’,2,7),(7288,1736,’Chick’,2,8),(7288,21505,’Officer Dan’,2,9),(7288,12900,’Herman’,2,10),(7288,52792,’Tara’,1,11),(7288,1582853,’Ginger’,0,13),(7288,1418031,’Tavern Bartender’,2,14),(7288,1226471,’Terrence’,2,15),(7288,22127,’Mrs. Friedman’,1,16),(7288,17871,’Mr. Friedman’,2,17),(7288,3981,’Moderator’,1,18),(7288,16502,’Receptionist’,1,19),(7288,155696,’Don Piper Fan #1′,1,20),(7288,1192949,’Police Officer’,0,21),(7288,3801,’Pharmacy Customer’,2,22),(7288,55253,’Dr. Kang’,1,23),(7288,1411157,’Drug Dealer’,2,24),(7288,197073,’Phil’,2,25),(7288,518,’Narrator (voice, uncredited)’,2,26),(4965,33,’Spencer Olham’,2,0),(4965,289,’Maya Olham’,1,1),(4965,327,’Cale’,2,2),(4965,7132,’Hathaway’,2,3),(4965,4252,’Nelson Gittes’,2,4),(4965,40275,’Cale’,2,5),(4965,40276,’Cap. Burke’,2,6),(4965,29930,’Gang girl’,1,7),(4965,15377,’Newscaster’,2,8),(4965,583278,’ESA Soldier (uncredited)’,2,9),(4965,154644,’Local Newscaster’,1,10),(1272,2037,’Robert Capa’,2,0),(1272,9827,’Cassie’,1,1),(1272,16828,’James Mace’,2,2),(1272,1620,’Corazon’,1,3),(1272,7248,’Searle’,2,4),(1272,9195,’Kaneda’,0,5),(1272,31711,’Harvey’,2,6),(1272,30082,’Trey’,2,7),(1272,2983,’Pinbacker’,2,8),(1272,59151,’Voice of Icarus’,1,9),(1272,24618,’Capa\’s Sister’,1,10),(1272,1414389,’Child’,0,11),(9978,61363,’Alex Rider’,2,0),(9978,33397,’Sabina Pleasure’,1,1),(9978,3061,’Ian Rider’,2,2),(9978,1923,’Prime Minister’,2,3),(9978,11275,’Smithers’,2,4),(9978,20186,’Yassen Gregorovich’,2,5),(9978,2440,’Alan Blunt’,2,6),(9978,2598,’Mrs. Jones’,1,7),(9978,1294,’Nadia Vole’,1,8),(9978,2295,’Darrius Sayle’,2,9),(9978,1333,’Mr. Grin’,2,10),(9978,5588,’Jack Starbright’,0,11),(9978,59077,’John Crawford’,2,12),(9978,61364,’Wolf’,2,13),(9978,61366,’Teacher’,0,14),(9978,61367,’Vicar’,0,15),(9978,61365,’Gary’,0,16),(9978,61368,’MI6 Man’,0,17),(9978,61370,’Harry’,0,18),(9978,61369,’Slater’,2,19),(8271,10959,’Kale Brecht’,2,0),(8271,20376,’Ashley Carlson’,1,1),(8271,530,’Julie Brecht’,1,2),(8271,52,’Robert Turner’,2,3),(8271,54247,’Ronnie’,2,4),(8271,20191,’Officer Gutierrez’,0,5),(8271,13525,’Daniel Brecht’,2,6),(8271,19492,’Detective Parker’,1,7),(8271,1386253,’Greenwood Boy’,0,8),(8271,1386254,’Greenwood Boy’,0,9),(8271,1386255,’Greenwood Boy’,0,10),(8271,1074628,’Mrs. Carlson’,0,11),(8271,582716,’Mr. Carlson’,0,12),(8271,1237614,’News Anchor’,0,13),(8271,79086,’News Anchor’,2,14),(5353,1205,’Simon Hunt’,2,0),(5353,18288,’Duck’,2,1),(5353,9274,’Franklin Harris’,2,2),(5353,9824,’Marjana’,1,3),(5353,44735,’Benjamin’,2,4),(5353,44736,’Srdjan’,2,5),(5353,6696,’Boris’,2,6),(5353,44737,’Bosnierin’,0,7),(5353,44738,’Marda’,1,8),(5353,44739,’The Fox’,2,9),(5353,19152,’CIA Operative’,2,10),(9495,57700,’Eric Draven’,2,0),(9495,57701,’Sarah’,1,1),(9495,8874,’Sergeant Albrecht’,2,2),(9495,7486,’Top Dollar’,2,3),(9495,39126,’Myca’,1,4),(9495,42649,’Shelly Webster’,1,5),(9495,3711,’Darla’,1,6),(9495,1737,’T-Bird’,2,7),(9495,37207,’Skank’,0,8),(9495,65141,’Tin Tin’,2,9),(9495,9289,’Funboy’,2,10),(9495,19384,’Grange’,2,11),(9495,4253,’Gideon’,2,12),(9495,7576,’Mickey’,2,13),(9495,73132,’Torres’,2,14),(9495,545576,’Roscoe’,2,15),(1257,3092,’Daphne’,1,0),(1257,16855,’Milly’,1,1),(1257,16856,’Johnny’,2,2),(1257,16857,’Jason’,2,3),(1257,16858,’Maggie’,1,4),(1257,15555,’Mae’,1,5),(1257,1756,’Joe’,2,6),(1257,25144,’Lionel’,2,7),(1257,25145,’Eli’,2,8),(1257,25146,’Derek’,2,9),(1257,25147,’Stuart’,2,10),(1257,1263449,’Dinner Party Guest (uncredited)’,2,11),(1257,55425,’Cute Food Spewing Guy’,2,12),(1257,98392,’Foreign Guy’,2,13),(1257,62595,’Iris’,1,15),(1257,170432,’Transexual’,2,16),(8842,5344,’Jackie Kallen’,1,0),(8842,4252,’Tony Shalhoub’,2,1),(8842,830,’Irving Abel’,2,2),(8842,11703,’Renee’,1,3),(8842,4987,’Luther Shaw’,2,4),(8842,17764,’Felix Reynolds’,2,5),(8842,68122,’Gavin Reese’,2,6),(9531,20006,’Superman / Clark Kent’,2,0),(9531,9309,’Gus Gorman’,2,1),(9531,55278,’Perry White’,2,2),(9531,1067,’Jimmy Olsen’,2,3),(9531,1734,’Lana Lang’,1,4),(9531,37368,’Vera Webster’,1,5),(9531,43805,’Lorelei’,1,6),(9531,14060,’Ross Webster’,2,7),(9531,20011,’Lois Lane’,1,8),(9531,12660,’Brad’,2,9),(9099,67773,’Master Sergeant Ernest G. Bilko’,2,0),(9099,707,’Colonel John T. Hall’,2,1),(9099,14104,’Major Colin Thorn’,2,2),(9099,21104,’Rita Robbins’,1,3),(9099,15028,’Pfc. Wally Holbrook’,2,4),(9099,2632,’1st Lt. Oster’,2,5),(9099,19505,’Pfc. Mickey Zimmerman’,2,6),(9099,115786,’Pvt. Duane Doberman’,0,7),(9099,6168,’Maj. Ebersole’,2,8),(9099,15453,’Mrs. Hall’,1,9),(9099,7133,’Spc. Dino Paparelli’,2,10),(9099,13732,’Gen. Tennyson’,2,11),(9099,34841,’Spc. Tony Morales’,2,12),(9099,154838,’Pfc. Sam Fender’,2,13),(9488,3131,’Gregorio Cortez’,2,0),(9488,17832,’Ingrid Cortez’,1,1),(9488,57674,’Carmen Cortez’,1,2),(9488,57675,’Juni Cortez’,2,3),(9488,884,’Romero’,2,4),(9488,17403,’Donnagon’,2,5),(9488,11160,’Machete’,2,6),(9488,11159,’Felix Gumm’,2,7),(9488,71467,’Gary Giggles’,2,8),(9488,82785,’Gerti Giggles’,1,9),(9488,1793,’Grandfather’,2,10),(9488,11318,’Grandmother’,1,11),(9488,10697,’Fegan Floop’,2,12),(9488,20480,’President\’s Daughter’,1,13),(9488,4443,’President of the USA’,2,14),(9488,995330,’Head Magna Man’,0,15),(9488,1367499,’Magna Man / Waiter’,2,16),(9488,197308,’Main Secret Agent’,0,17),(9488,1472370,’Secret Agent #2′,0,18),(9488,1595122,’Secret Agent #3′,0,19),(9488,2053,’Dinky Winks’,2,20),(9488,4666,’Park Public Relations’,0,21),(9488,1569849,’Test Family’,0,22),(9488,1595123,’Test Family’,0,23),(9488,1595124,’Test Family’,0,24),(9488,1595125,’Test Family’,0,25),(9488,1595126,’Spy Girl’,0,26),(9488,4252,’Alexander Minion’,2,27),(193,2387,’Captain Jean-Luc Picard’,2,0),(193,2388,’Commander William T. Riker’,2,1),(193,1213786,’Lt. Commander Data’,2,2),(193,2390,’Lt. Commander Geordi La Forge’,2,3),(193,2391,’Lt. Commander Worf’,2,4),(193,2392,’Dr. Beverly Crusher’,1,5),(193,2393,’Counselor Deanna Troi’,1,6),(193,1748,’James T. Kirk’,2,7),(193,1751,’Montgomery Scott’,2,8),(193,1754,’Pavel Chekov’,2,9),(193,56890,’Dr. Tolian Soran’,2,10),(193,2394,’Capt. John Harriman’,2,11),(193,2395,’Guinan’,1,12),(193,34199,’Picard\’s Kid’,2,13),(193,1368723,’Ensign Kellogg’,0,14),(193,3981,’Science Officer’,1,15),(193,55538,’Lieutenant’,2,16),(1957,16866,’Slim Hiller’,1,0),(1957,20215,’Mitch Hiller’,2,1),(1957,3196,’Ginny’,1,2),(1957,5346,’Joe’,2,3),(1957,10430,’Jupiter’,2,4),(1957,8854,’Jim Toller’,2,5),(1957,54865,’FBI Agent’,2,6),(1957,4943,’Instructor’,0,7),(1957,20216,’Gracie Hiller’,0,8),(1957,1219530,’Phil’,2,9),(1957,20217,’Mrs. Hiller’,1,10),(1957,13526,’Robbie’,2,11),(1957,157582,’Homeowner’,2,12),(1957,95796,’FBI Agent’,2,13),(1957,159261,’FBI Agent’,2,14),(1957,78017,’Teacher Betty’,0,15),(1957,1232417,’Waitress’,0,16),(1957,157037,’Jupiter\’s Blonde Girl’,0,17),(1957,155030,’Electronics Store Clerk’,2,18),(1957,1355906,’Mitch\’s Young Blonde’,0,19),(1957,1226457,’Front Desk Clerk’,0,20),(1957,154217,’Bank Teller’,1,21),(1957,1455904,’Ticket Clerk’,0,22),(1957,1434003,’Soup Server’,0,23),(5852,16866,’Sharon Pogue’,1,0),(5852,8767,’Steven Catch Lambert’,2,1),(5852,23958,’Larry Pogue Sr.’,2,2),(5852,18288,’Robby’,2,3),(5852,27396,’Josephine Pogue’,1,4),(5852,2561,’Carl Pogue’,2,5),(5852,34844,’Kathy Pogue’,1,6),(5852,28778,’Elanora Davis’,1,7),(5852,166471,’Larry Pogue, Jr.’,2,8),(5852,166505,’Annie Lambert’,1,9),(5852,1663233,’Max Lambert’,2,10),(5852,44205,’Ray Micigliano’,2,11),(5852,229,’Lieutenant Dennis Sanderman’,2,12),(5852,1663237,’Jamal’,2,13),(5852,5937,’Candace’,1,14),(5852,1663238,’Charlie’,2,15),(5852,59300,’Peebo’,2,16),(5852,550060,’K-Dog’,2,17),(5852,59173,’Priest’,2,18),(5852,166518,’Fighting Kid’,2,19),(5852,56435,’Tony Pindella’,2,20),(5852,941286,’Joe’,2,21),(5852,72117,’Driver’,2,22),(5852,69575,’Young Man’,2,23),(5852,5919,’Officer Vanessa’,1,24),(5852,1663267,’Suspect’,2,25),(5852,8362,’Police Officer’,2,26),(622,85,’Dean Corso’,2,0),(622,8924,’Boris Balkan’,2,1),(622,5313,’Liana Telfer’,1,2),(622,8925,’The Girl’,1,3),(622,8926,’Baroness Kessler’,1,4),(622,8927,’Victor Fargas’,2,5),(622,8928,’Pablo & Pedro Ceniza/1st & 2nd Workmen’,2,6),(622,785,’Bernie’,2,7),(622,19057,’Andrew Telfer’,0,8),(622,922,’Witkin’,2,9),(622,180976,’Liana\’s Bodyguard’,2,10),(622,266665,’Old Man’,0,11),(622,12983,’Old Man\’s Son’,2,12),(622,140055,’Daughter-In-Law’,0,13),(622,220582,’Concierge’,0,14),(622,1077903,’Secretary’,0,15),(622,992979,’Gruber’,0,16),(622,1077904,’Desk Clerk’,0,17),(622,74113,’Baker’,0,18),(622,1077905,’Hotel Porter’,0,19),(622,1077906,’Cabby’,0,20),(622,1077907,’Cafe Owner’,0,21),(622,1077908,’Cafe Owner’,0,22),(1091,6856,’R.J. MacReady’,2,0),(1091,65827,’Childs’,2,1),(1091,11065,’Dr. Blair’,2,2),(1091,15417,’Garry’,2,3),(1091,15413,’Dr. Copper’,2,4),(1091,15414,’Norris’,2,5),(1091,15411,’Nauls’,2,6),(1091,15412,’Palmer’,2,7),(1091,15415,’Bennings’,2,8),(1091,15416,’Clark’,2,9),(1091,15418,’Fuchs’,2,10),(1091,15419,’Windows’,0,11),(4944,1461,’Harry Pfarrer’,2,0),(4944,3910,’Linda Litzke’,1,1),(4944,287,’Chad Feldheimer’,2,2),(4944,6949,’Osborne Cox’,2,3),(4944,3063,’Katie Cox’,1,4),(4944,28633,’Ted’,2,5),(4944,126713,’Sandy Pfarrer’,1,6),(4944,33533,’CIA Officer’,2,7),(4944,18999,’CIA Superior (as JK Simmons)’,2,8),(4944,53573,’Krapotkin’,2,9),(4944,121939,’Alan’,2,10),(4944,60633,’Tuchman Marsh Man’,2,11),(4944,1468,’Divorce Lawyer (as JR Horne)’,2,12),(4944,176777,’Peck’,0,13),(4944,19851,’Olson’,2,14),(4944,1455755,’Party Guest’,2,15),(4944,1223159,’Party Guest’,0,16),(4944,12645,’Cosmetic Surgeon’,0,17),(4944,44682,’Stretching Gym Patron’,2,18),(4944,1617456,’Prospective Gym Customer’,1,19),(4944,130734,’Manolo (as Raul Arau00f1as)’,0,20),(4944,1890138,’Lawyer\’s Secretary’,0,21),(4944,1422570,’Russian Embassy Escort (as Sandor Tecsy)’,2,22),(4944,78483,’Senior Russian Embassy Man’,2,23),(4944,106816,’Hal’,0,24),(4944,38086,’Process Server’,2,25),(4944,144211,’Morning Show Host’,0,26),(4944,1506847,’Morning Show Hostess’,1,27),(4944,59169,’PR Woman’,1,28),(4944,163646,’Sandy\’s Man’,2,29),(4944,1643589,’Four-Year-Old Patient’,2,30),(4944,20212,’Star of Coming Up Daisy’,2,31),(4944,1890139,’Drunken Princetonian’,0,32),(4944,1890140,’Drunken Princetonian’,0,33),(4944,1280972,’Drunken Princetonian’,2,34),(4944,1890141,’Drunken Princetonian’,0,35),(4944,1890142,’Drunken Princetonian’,0,36),(4944,60201,’Drunken Princetonian’,2,37),(4944,1854669,’Drunken Princetonian’,2,38),(4944,1890143,’Drunken Princetonian’,0,39),(4944,1890144,’Drunken Princetonian’,0,40),(4944,1890145,’Drunken Princetonian’,0,41),(4944,1890146,’Drunken Princetonian’,0,42),(4944,1630260,’Drunken Princetonian’,2,43),(4944,1890147,’Drunken Princetonian’,0,44),(4944,1890148,’Drunken Princetonian’,0,45),(4944,1890149,’Drunken Princetonian’,0,46),(4944,1454356,’Drunken Princetonian’,2,47),(4944,1890150,’Drunken Princetonian’,0,48),(4944,1376588,’Drunken Princetonian’,0,49),(4944,1643593,’Drunken Princetonian’,0,50),(4944,1890151,’Drunken Princetonian’,0,51),(4944,1455628,’Gym Guy (uncredited)’,2,52),(4944,115978,’Lt. Macdonald (uncredited)’,2,53),(4944,1182903,’Tourist (uncredited)’,0,54),(4944,1643598,’Tourist (uncredited)’,1,55),(4944,1564318,’Businessman (uncredited)’,2,56),(4944,1408875,’Midwestern Tourist (uncredited)’,2,57),(4944,1302821,’Senator (uncredited)’,2,58),(4944,1198698,’Man in Park (uncredited)’,0,59),(4944,1643596,’Tourist (uncredited)’,1,60),(4944,1535490,’Tourist (uncredited)’,0,61),(4944,1564308,’Suspicious Tourist – Day Player (uncredited)’,2,62),(4944,1563419,’Monica (uncredited)’,1,63),(334,1231,’Linda Partridge’,1,0),(334,3905,’Donnie Smith’,2,1),(334,4764,’Jim Kurring’,2,2),(334,500,’Frank T.J. Mackey’,2,3),(334,4492,’Jimmy Gator’,2,4),(334,1233,’Phil Parma’,2,5),(334,4765,’Earl Partridge’,2,6),(334,658,’Solomon Solomon’,2,7),(334,4766,’Claudia Wilson Gator’,1,8),(334,2234,’Rick Spector’,2,9),(334,4779,’Stanley Spector’,2,10),(334,4777,’Dixon’,0,11),(334,4778,’Rose Gator’,1,12),(334,10691,’Gwenovier’,1,13),(334,7427,’Cynthia’,1,14),(334,18270,’Worm’,2,15),(334,10743,’Narrator/Burt Ramsey’,2,16),(334,10872,’Delmer Darion’,2,17),(334,43776,’Stanley Berry’,2,18),(334,19439,’Thurston Howell’,2,19),(334,6199,’Faye Barringer’,1,20),(334,4776,’Alan Kligman Esq.’,2,21),(334,1591432,’Mrs. Godfrey’,0,22),(334,60846,’Sir Edmund William Godfrey / Young Pharmacy Kid’,2,23),(334,11155,’Young Jimmy Gator’,2,24),(334,40481,’Luis’,2,25),(334,9048,’WDKK Floor Director’,2,26),(334,98365,’Dentist Nurse #1′,1,27),(334,1219029,’Chad, Seduce & Destroy’,0,28),(8966,37917,’Isabella \’Bella\’ Swan’,1,0),(8966,11288,’Edward Cullen’,2,1),(8966,21029,’Charlie Swan’,2,2),(8966,84214,’Jacob Black’,2,3),(8966,56857,’Carlisle Cullen’,2,4),(8966,45827,’Alice Cullen’,1,5),(8966,84215,’Jasper Hale’,2,6),(8966,53755,’Esme Cullen’,1,7),(8966,34502,’Emmett Cullen’,2,8),(8966,59252,’Rosalie Hale’,1,9),(8966,84223,’Jessica Stanley’,1,10),(8966,25836,’Renu00e9e Dwyer’,0,11),(8966,84225,’Billy Black’,2,12),(8966,58168,’Victoria Sutherland’,1,13),(8966,55086,’James Witherdale’,2,14),(8966,39391,’Laurent Da Revin’,2,15),(8966,56676,’Mike Newton’,2,16),(8966,84224,’Angela Weber’,1,17),(8966,65225,’Eric Yorkie’,1,18),(8966,1655017,’Quil Ateara’,2,19),(8966,57995,’Phil Dwyer’,2,20),(8966,1714267,’Tyler Crowley’,0,21),(8966,2141,’Waylon Forge’,2,22),(8966,10963,’Mr. Molina’,2,23),(8966,23897,’Cora’,0,24),(8966,56856,’Diner Customer’,0,25),(8470,5292,’John Quincy Archibald’,2,0),(8470,3087,’Frank Grimes’,2,1),(8470,8256,’Rebecca Payne’,1,2),(8470,55314,’Denise Archibald’,1,3),(8470,55315,’Mike Archibald’,2,4),(8470,55316,’Dr. Ellen Klein’,0,5),(8470,4512,’Dr. Raymond Turner’,2,6),(8470,824,’Guard Max Conlin’,2,7),(8470,52647,’Mitch Quigley’,2,8),(8470,55317,’Julie Bird’,1,9),(8470,11477,’Chief Gus Monroe’,2,11),(8470,62842,’Lester Matthews’,2,12),(8470,56567,’Debby Utley’,0,13),(8470,1220746,’Wife of Heart Transplant Patient’,0,14),(8470,52650,’Sniper’,2,15),(2163,6856,’Jeffrey Jeff Taylor’,2,0),(2163,22131,’Warren Red Barr’,0,1),(2163,8183,’Amy Taylor’,1,2),(2163,22132,’Earl’,2,3),(2163,22133,’Billy’,2,4),(2163,16937,’Sheriff Boyd’,2,5),(2163,22134,’Al’,2,6),(2163,7221,’Arleen Bar’,1,7),(2163,5150,’Deputy Len Carver’,2,8),(2163,9284,’Calhoun’,2,9),(2163,10489,’Bartender at Belle\’s Diner’,2,10),(2163,83209,’Deke Barr, Red\’s Son’,2,11),(2163,162059,’Flo’,1,12),(2163,1217135,’Barfly at Belle\’s Diner’,0,13),(2163,184792,’Tow Truck Driver’,2,14),(2155,880,’Rudy Duncan’,2,0),(2155,33,’Gabriel Mercer’,2,1),(2155,6885,’Ashley Mercer’,1,2),(2155,1117,’Jack Banks’,2,3),(2155,10825,’Pug’,2,4),(2155,11160,’Jumpy’,2,5),(2155,6542,’Zock’,2,6),(2155,22063,’Nick Cassidy’,2,7),(2155,554093,’The Alamo’,2,8),(2155,32751,’Mean Guard’,2,9),(2155,56015,’Ugly Staffer’,2,10),(2155,158382,’Distant Inmate #1′,2,11),(2155,159658,’Distant Inmate #2′,2,12),(2155,117997,’Guard #1′,2,13),(2155,554094,’Guard #2′,0,14),(2155,42545,’Prisoner #1′,2,15),(2155,62912,’Exit Guard’,2,16),(2155,15864,’Merlin’,2,17),(2155,18976,’College Kid’,2,18),(8409,12835,’Sean Vetter’,2,0),(8409,18291,’Demetrius Hicks’,2,1),(8409,18082,’Hollywood Jack’,2,2),(8409,54864,’Memo Lucero’,2,3),(8409,49818,’Stacy Vetter’,1,4),(8409,9276,’Ty Frost’,2,5),(8409,1607,’Mateo Santos’,2,6),(8409,54865,’Pomona Joe’,2,7),(8409,73132,’Hondo’,2,8),(8409,100260,’Gustavo Leon’,2,9),(8409,53257,’Garza’,2,10),(8409,157058,’Big Sexy’,2,11),(8409,130689,’Overdose’,2,12),(8409,61081,’Marta’,1,13),(8409,1380680,’Bad Cop’,0,14),(782,569,’Vincent Freeman’,2,0),(782,9642,’Jerome Eugene Morrow’,2,2),(782,11626,’Director Josef’,2,3),(782,139,’Irene Cassini’,1,4),(782,1903,’Detective Hugo’,2,5),(782,3982,’Dr. Lamar’,2,6),(782,11627,’Marie Freeman’,1,7),(782,10128,’Young Anton Freeman’,2,8),(782,11628,’Adult Anton Freeman’,2,9),(782,7502,’Caesar’,2,10),(782,4252,’German’,2,11),(782,154644,’Head Nurse’,1,12),(9776,2632,’Mays Gilliam’,2,0),(9776,1897,’Mitch Gilliam’,2,1),(9776,19152,’Martin Geller’,2,2),(9776,12538,’Brian Lewis’,2,3),(9776,16217,’Debra Lassiter’,1,4),(9776,59153,’Kim’,1,5),(9776,59154,’Lisa Clark’,1,6),(9776,8986,’Sen. Bill Arnot’,2,7),(9776,65827,’Bernard Cooper’,2,8),(9776,56903,’Meat Man’,2,9),(9776,59156,’Nikki’,1,10),(9776,53963,’Advisor’,2,11),(9776,8693,’Mr. Earl’,2,12),(9776,59157,’Himself’,2,13),(9776,59158,’Nate\’s girl’,0,14),(9776,59159,’Nate\’s girl’,1,15),(9776,59160,’Gaines’,0,16),(9776,59161,’Gen. Olson James’,0,17),(9776,59162,’Mr. Hawkins’,2,18),(9776,59163,’Kid’,0,19),(9776,1129795,’Cable Anchorwoman’,0,20),(9776,38951,’Officer Waters’,2,21),(9776,543256,’Warren’,2,22),(9776,1387766,’Senator’,0,23),(9776,164036,’1st Fundraiser Issue Guy’,0,24),(9776,61011,’Fundraiser Demo-Tape Man’,0,25),(9776,116515,’Teamster’,0,26),(9776,1790660,’Local Anchor’,2,27),(817,12073,’Austin Powers / Dr. Evil / Fat Bastard’,2,0),(817,69122,’Felicity Shagwell’,1,1),(817,13919,’Basil Exposition’,2,2),(817,9208,’Number Two’,2,3),(817,2879,’Young Number Two’,2,4),(817,13922,’Scott Evil’,2,5),(817,13924,’Frau Farbissina’,1,6),(817,10987,’Mini-Me’,2,7),(817,13918,’Vanessa Kensington’,1,8),(817,14226,’Robin Spitz Swallows’,1,9),(817,93035,’British Colonel’,2,10),(817,17348,’Klansman’,2,11),(817,65167,’Klansman\’s Son – Bobby’,2,12),(817,25711,’NORAD Colonel’,2,13),(817,23659,’Mustafa’,2,14),(817,58953,’Scene Break Dancer’,1,15),(817,163580,’Man – Pecker’,2,16),(817,57755,’Woody Harrelson’,2,17),(268,514,’Jack Napier/The Joker’,2,0),(268,2232,’Bruce Wayne/Batman’,2,1),(268,326,’Vicki Vale’,1,2),(268,3796,’Alfred’,2,3),(268,3798,’Commissioner James Gordon’,2,4),(268,3799,’Harvey Dent’,0,5),(268,3785,’Carl Grissom’,2,6),(268,3800,’Alicia Grissom’,1,7),(268,3801,’Bob the Goon’,2,8),(268,3802,’Mayor’,2,9),(268,663,’Eckhardt’,2,10),(268,3803,’Rotelli’,0,11),(268,4040,’Alexander Knox’,2,12),(268,1257821,’Crimelord #1′,2,13),(268,79502,’Goon’,2,14),(268,8399,’Nic’,2,15),(268,120833,’TV Director’,2,16),(268,17072,’Lawyer’,0,17),(268,140148,’Doctor’,2,18),(943,2461,’Martin Riggs’,2,0),(943,2047,’Roger Murtaugh’,2,1),(943,4517,’Leo Getz’,2,2),(943,14343,’Lorna Cole’,1,3),(943,14344,’Jack Travis’,2,4),(943,14328,’Captain Ed Murphy’,2,5),(943,23967,’Stephanie Woods’,0,6),(943,14313,’Trish Murtaugh’,1,7),(943,14314,’Rianne Murtaugh’,1,8),(943,14317,’Carrie Murtaugh’,1,9),(943,14316,’Nick Murtaugh’,2,10),(350,5064,’Miranda Priestly’,1,0),(350,1813,’Andrea Sachs’,1,1),(350,5081,’Emily Charlton’,1,2),(350,2283,’Nigel’,2,3),(350,1284159,’Christian Thompson’,2,4),(350,5090,’Nate Cooper’,2,5),(350,10580,’Lily’,1,6),(350,10581,’Doug’,2,7),(350,10582,’James Holt’,2,8),(350,24535,’Richard Sachs’,2,9),(350,54679,’Jocelyn’,1,10),(350,10583,’Serena’,0,11),(350,10584,’Herself’,1,12),(350,220620,’Clacker’,1,13),(350,1248824,’Clacker in Elevator’,1,14),(350,121953,’Jacqueline Follet’,1,15),(350,1224937,’Herself’,0,16),(350,1192389,’Irv Ravitz’,0,17),(152,1748,’Captain James T. Kirk’,2,0),(152,1749,’Mr. Spock’,2,1),(152,1750,’Dr. Leonard McCoy’,0,2),(152,1751,’Montgomery Scott’,2,3),(152,1752,’Lt. Cmdr. Hikaru Sulu’,0,4),(152,1754,’Lt. Pavel Chekov’,2,5),(152,1753,’Lt. Cmdr. Uhura’,1,6),(152,1755,’Dr. Christine Chapel’,0,7),(152,1757,’Lieutenant Ilia’,1,8),(152,1756,’Capt./Cmdr. Willard Decker’,2,9),(152,1759,’CPO Janice Rand’,1,10),(152,1820,’Klingon Captain’,2,11),(152,168423,’Alien Boy’,2,12),(152,44054,’Epsilon Technician’,2,13),(152,178145,’Airlock Technician’,0,14),(152,72658,’Crew Member’,2,15),(1598,380,’Max Cady’,2,0),(1598,1733,’Sam Bowden’,2,1),(1598,4431,’Leigh Bowden’,1,2),(1598,3196,’Danielle Bowden’,1,3),(1598,10671,’Claude Kersek’,2,4),(1598,10158,’Lieutenant Elgart’,2,5),(1598,8487,’Lee Heller’,2,6),(1598,7796,’Lori Davis’,1,7),(1598,17874,’Tom Broadbent’,0,8),(1598,17875,’Graciella’,0,9),(1598,1936,’Judge’,2,10),(1598,1402410,’Prisoner’,0,11),(1598,1227922,’Prisoner’,0,12),(1598,20562,’Corrections Officer’,2,13),(1598,1352627,’Racquetball Colleague’,0,14),(1598,1227928,’Racquetball Colleague’,0,15),(1598,139360,’Detective’,0,16),(1598,104905,’Waitress’,0,17),(1598,1151434,’Danny\’s Girlfriend’,0,18),(1598,555083,’Big man’,0,19),(1598,1235821,’Big Man #3′,0,20),(1598,1914,’Ticket agent’,0,21),(1598,11483,’Fruitstand Customer’,1,22),(1598,1006721,’Fruitstand Customer’,2,23),(1598,1118729,’Bar Patron (uncredited)’,0,24),(1598,5700,’Woman Watching Cady Get Out from Under the Car (uncredited)’,1,25),(1598,1536505,’Ice Cream Cashier’,1,26),(8065,38941,’Ben Campbell’,2,0),(8065,1979,’Micky Rosa’,2,1),(8065,7517,’Jill Taylor’,1,2),(8065,54247,’Choi’,2,3),(8065,51998,’Kianna’,1,4),(8065,54414,’Fisher’,2,5),(8065,2975,’Cole Williams’,2,6),(8065,10489,’Terry’,2,7),(8065,54415,’Miles’,2,8),(8065,54416,’Cam’,2,9),(8065,17185,’Ellen Campbell’,1,10),(8065,77023,’Bob Phillips’,2,11),(8065,54477,’Kartengeber’,0,12),(409,5469,’Count Lu00e1szlu00f3 de Almu00e1sy’,2,0),(409,1137,’Hana’,1,1),(409,5293,’David Caravaggio’,2,2),(409,5470,’Katharine Clifton’,1,3),(409,5471,’Sikh Kip’,2,4),(409,5472,’Geoffrey Clifton’,2,5),(409,5473,’Madox’,2,6),(409,5480,’Mary’,1,7),(409,920,’Major Muller’,2,8),(409,5474,’Sgt. Hardy’,2,9),(409,5475,’Fenelon-Barnes’,2,10),(409,5476,’D\’Agostino’,2,11),(409,5477,’Fouad’,2,12),(409,5478,’Bermann’,0,13),(409,5479,’Oliver’,2,14),(409,5481,’Jan’,1,15),(409,5482,’Rupert Douglas’,2,16),(409,5483,’Corporal Dade’,2,17),(409,173666,’Kiss Me Soldier’,0,18),(409,218356,’Sergeant – Desert Train’,0,19),(409,116976,’Private – Desert Train’,2,20),(409,3702,’Interrogation Room Soldier’,0,21),(409,1606898,’Interrogation Room Soldier’,0,22),(409,1074501,’Arab Nurse’,0,23),(409,68024,’Aicha’,0,24),(409,22184,’Officer In Square’,0,26),(409,1606900,’Interpreter In Square’,0,27),(409,230275,’Woman with Baby In Square’,0,28),(409,214794,’Corporal – El Taj’,2,30),(409,1159594,’Bedouin Doctor’,0,31),(409,1356023,’Ancient Arab’,0,32),(409,1606902,’Kamal’,0,33),(409,1606903,’Al Auf’,0,34),(409,1606904,’Officer\’s Wife’,0,35),(409,108620,’Lady Hampton’,1,36),(409,1606905,’Sir Ronald Hampton’,0,37),(409,5940,’Young Canadian Soldier’,2,38),(409,47486,’Beach Interrogation Officer’,0,39),(409,93177,’Spalding’,2,40),(409,109874,’Officer – El Taj’,0,41),(2118,1979,’Det. Sgt. Jack Vincennes’,2,0),(2118,529,’Det. Lt. Edmund Jennings Ed Exley’,2,1),(2118,518,’Sid Hudgens’,2,2),(2118,2505,’Cap. Dudley Liam Smith’,2,3),(2118,326,’Lynn Bracken’,1,4),(2118,934,’Bud White’,2,5),(2118,11064,’Pierce Patchett’,2,6),(2118,12122,’D.A. Ellis Loew’,2,7),(2118,42206,’\’Badge of Honor\’ Star Brett Chase’,2,8),(2118,925,’Mickey Cohen’,2,9),(2118,156294,’Johnny Stompanato’,2,10),(2118,184250,’Mickey Cohen\’s Mambo Partner’,0,11),(2118,32291,’Mickey Cohen\’s Mambo Partner’,1,12),(2118,10137,’Officer Arresting Mickey Cohen’,0,13),(2118,6110,’Dick Stensland’,2,14),(2118,1284159,’Matt Reynolds’,2,15),(2118,33017,’Wife Beater’,2,16),(2118,1190129,’Jack\’s Dancing Partner’,0,17),(2118,129661,’Reporter at Hollywood Station’,2,18),(2118,42200,’Photographer at Hollywood Station’,2,19),(2118,1226696,’Liquor Store Owner’,0,20),(2118,42715,’Susan Lefferts’,1,21),(2118,1229741,’Buzz Meeks’,0,22),(2118,1334906,’Sid\’s Assistant’,0,23),(2118,1231187,’Tammy Jordan’,1,24),(2118,43010,’First Mexican’,0,25),(2118,78395,’Officer / Detective at Hollywood Station’,2,26),(2118,568321,’Officer / Detective at Hollywood Station’,0,27),(2118,43978,’Police Chief’,2,28),(2118,941,’Breuning – Dudley\’s Guy’,2,29),(2118,552467,’Carlisle – Dudley\’s Guy’,2,30),(2118,21675,’Vice Captain’,2,31),(2118,19444,’Detective at Detective Bureau’,0,32),(2118,152993,’Forensic Chief’,2,33),(2118,112053,’Coroner’,2,34),(2118,149471,’Jack\’s Rejected Partner’,2,35),(2118,79740,’City Councilman’,2,36),(2118,116526,’Ray Collins – Nite Owl Suspect’,2,37),(2118,1390332,’Louis Fontaine – Nite Owl Suspect’,0,38),(2118,1231566,’Inez Soto – Rape Victim’,0,39),(2118,77596,’Sylvester Fitch’,2,40),(2118,99856,’Roland Navarette’,0,41),(2118,1236020,’Officer at Detective Bureau’,2,42),(2118,149439,’Mayor’,2,43),(2118,99629,’Look-Alike Dancer’,0,44),(2118,32290,’Lana Turner’,1,45),(2118,944614,’Police File Clerk’,1,46),(2118,79585,’D.A. Ellis Loew\’s Secretary’,0,47),(2118,1235823,’West Hollywood Sheriff\’s Deputy’,0,48),(2118,1598,’Detective at Hush-Hush Office’,2,49),(2118,1212471,’Detective’,0,50),(2118,165353,’Detective’,2,51),(2118,154349,’Detective’,0,52),(2118,1728594,’Officer / Detective at Hollywood Station’,0,53),(2118,1434006,’1940s Courthouse (uncredited)’,0,54),(2118,585939,’Cop (uncredited)’,0,55),(2118,231294,’Deuce Perkins (uncredited)’,2,56),(2118,4606,’Second Mexican (uncredited)’,2,57),(2118,179887,’Third Mexican (uncredited)’,2,58),(2118,36137,’Marilyn Monroe (uncredited)’,1,59),(2118,141023,’Uniformed Patrol Officer (uncredited)’,2,60),(2118,149526,’Court Bailiff (uncredited)’,2,61),(9348,57395,’Sil’,1,0),(9348,2282,’Xavier Fitch’,2,1),(9348,147,’Preston Lennox’,2,2),(9348,658,’Dr. Stephen Arden’,2,3),(9348,2178,’Dan Smithson, Empath’,2,4),(9348,1812,’Young Sil’,1,5),(9348,19838,’Dr. Laura Baker’,1,6),(9348,33713,’Aide’,2,7),(9348,136482,’Mrs. Morris’,1,8),(9348,102580,’Colleague’,2,9),(9348,1346510,’Aide’,2,10),(9348,1720435,’Train Hobo’,2,11),(9348,1657324,’Mother’,1,12),(9348,1105000,’Snack Shop Clerk’,1,13),(9348,1720436,’German Tourist’,2,14),(9348,1099080,’Conductor’,2,15),(9348,154224,’Female Conductor’,1,16),(9348,1408764,’Victoria Roth, Ph.D.’,1,17),(9348,153938,’Government Man’,2,18),(9348,132215,’Fitch\’s Secretary’,1,19),(9348,1236060,’Wedding Dress Saleswoman’,1,20),(9348,1407228,’Team Driver’,2,21),(9348,1720437,’Cop’,2,22),(9348,56848,’Motel Clerk’,2,23),(9348,1720439,’Lab Worker’,1,24),(9348,100646,’Club Bouncer’,2,25),(9348,178446,’Drunken Girl’,1,26),(9348,154441,’Guy in Club’,2,27),(9348,42731,’Robbie, Guy Picking Up Sil’,2,28),(9348,1720440,’Screaming Woman’,1,29),(9348,11089,’John Carey’,2,30),(9348,56358,’Hospital Admittance Clerk’,1,31),(9348,65748,’Hospital Doctor’,2,32),(9348,169070,’Hospital Nurse’,1,33),(9348,1395307,’Abducted Woman’,1,34),(9348,1720441,’Homeless Man’,2,35),(9348,1720442,’Commercial Model’,1,36),(9348,1720443,’Bathroom Bimbo’,1,37),(9348,124688,’Waiter’,2,38),(9348,81462,’Marie’,1,39),(9348,1720444,’Baby Boy’,2,40),(9348,131528,’Creature Performer’,1,41),(9348,15831,’Alien Sil (voice)’,2,42),(9348,1573223,’Bystander (uncredited)’,2,43),(9348,46087,’Club DJ (uncredited)’,2,44),(9348,1383838,’Special Forces (uncredited)’,2,45),(9348,296280,’Commando (uncredited)’,2,46),(9348,1720445,’Lt. Steele (uncredited)’,2,47),(9348,1720446,’Doctor (uncredited)’,2,48),(9348,587079,’Soldier (uncredited)’,2,49),(9348,140909,’Club Doorman (uncredited)’,2,50),(9348,33662,’Conga Player (uncredited)’,2,51),(9348,1495084,’Special Forces (uncredited)’,2,52),(377,11163,’Lt. Thompson’,2,0),(377,13652,’Marge Thompson’,1,1),(377,5141,’Nancy Thompson’,1,2),(377,13656,’Tina Gray’,1,3),(377,13657,’Rod Lane’,2,4),(377,85,’Glen Lantz’,2,5),(377,5139,’Freddy Krueger’,2,6),(377,1538594,’Hall Guard’,0,7),(377,13661,’Sgt. Garcia’,2,8),(377,12826,’Dr. King’,2,9),(377,13660,’Sgt. Parker’,2,10),(377,7401,’Teacher’,1,11),(377,13662,’Nurse’,1,12),(377,7219,’Foreman’,2,13),(377,190793,’Minister’,2,14),(377,120106,’Mr. Lantz’,2,15),(377,1698597,’Mrs. Lantz’,0,16),(377,11408,’Coroner’,2,17),(377,1698598,’Mrs. Gray’,0,18),(377,1698599,’Boyfriend’,0,19),(377,224322,’Surfer’,0,20),(377,1679939,’Surfer’,0,21),(377,42820,’Cop’,2,22),(377,1698600,’Cop’,0,23),(377,1698601,’Cop’,1,24),(377,1698602,’Kid’,0,25),(377,1041452,’Kid’,0,26),(377,45329,’Kid’,2,27),(377,1698603,’Kid’,0,28),(8843,16866,’Catherine Deane’,1,0),(8843,7132,’Carl Rudolph Stargher’,2,1),(8843,4937,’Peter Novak’,2,2),(8843,17352,’Dr. Miriam Kent’,1,3),(8843,56513,’Anne Marie Vicksey’,1,4),(8843,16433,’Teddy Lee’,2,5),(8843,94509,’Edward Baines’,2,6),(8843,19152,’Henry West’,2,7),(8843,19468,’Dr. Barry Cooperman’,2,8),(8843,1475,’Ella Baines’,1,9),(8843,5274,’Lucien Baines’,0,10),(8843,4177,’Gordon Ramsey’,2,11),(8843,14329,’Cole’,2,12),(8843,61111,’Julia Hickson’,1,13),(8843,66499,’Mrs. Hickson’,1,14),(8843,9785,’Agent Stockwell’,2,15),(8843,21675,’Agent Brock’,2,16),(8843,400821,’Officer Alexander’,2,17),(8843,3201,’Dr. Reid’,2,18),(8843,133,’Julia Hickson\’s Fiancee (uncredited)’,2,19),(9313,6193,’King Louis XIV / Philippe’,2,0),(9313,16940,’Aramis’,0,1),(9313,16927,’Porthos’,2,2),(9313,5168,’D\’Artagnan’,2,3),(9313,6949,’Athos’,2,4),(9313,57298,’Queen Mother Anne’,1,5),(9313,73937,’Christine’,1,6),(9313,38331,’Lt. Andre’,2,7),(9313,133,’Raoul’,2,8),(9313,41419,’King\’s Advisor’,2,9),(9313,180906,’King\’s Advisor’,0,10),(9313,553208,’Madame Rotund’,0,11),(9313,553209,’Assassin’,0,12),(9313,146490,’Wench’,1,13),(9313,553210,’King\’s Friend’,0,14),(9313,45849,’Ballroom Guard’,2,15),(9313,105355,’Blond Musketeer’,0,16),(9313,553211,’Peasant Boy’,0,17),(9313,553212,’Serving Woman’,0,18),(9313,553213,’Serving Woman’,0,19),(9313,230078,’Customer’,2,20),(9313,12983,’Fortress Keeper’,2,21),(9313,133735,’Fortress Head Guard’,2,22),(9313,212390,’Bastille Gate Guard’,2,23),(9313,553214,’Fortress Guard’,2,24),(9313,10839,’Ballroom Beauty’,1,25),(9313,180969,’Ruffian’,0,26),(9313,42279,’Bedroom Beauty’,1,27),(9313,5183,’Queen Mother\’s Attendant’,1,28),(9313,553215,’Monk’,0,29),(9313,19375,’Ponceau (uncredited)’,0,30),(1273,16828,’Casey Jones (voice)’,2,0),(1273,11863,’April O\’Neil (voice)’,1,1),(1273,10134,’Splinter (voice)’,2,2),(1273,19303,’Diner Cook (voice)’,2,3),(1273,2387,’Winters (voice)’,2,4),(1273,1339,’Karai (voice)’,1,5),(1273,2975,’Narrator (voice)’,2,6),(1273,19505,’Donatello / Additional Voices (voice)’,2,7),(1273,19506,’Leonardo (voice)’,2,8),(1273,19507,’Michelangelo (voice)’,2,9),(1273,19508,’Raphael / Nightwatcher (voice)’,2,10),(1273,31531,’Colonel Santino (voice)’,0,11),(1273,1356270,’General Serpiente (voice)’,0,13),(1273,24362,’General Aguila (voice)’,2,14),(1273,60279,’General Gato (voice)’,2,15),(1883,5292,’Malcolm X’,2,0),(1883,9780,’Dr. Betty Shabazz’,1,1),(1883,8354,’Baines’,2,2),(1883,19739,’Elijah Muhammad’,2,3),(1883,18792,’West Indian Archie’,2,4),(1883,5281,’Shorty’,2,5),(1883,4604,’Laura’,1,6),(1883,19740,’Sophia’,1,7),(1883,62127,’Louise Little’,1,8),(1883,159887,’Earl Little’,2,9),(1883,81372,’Brother Earl’,2,10),(1883,75356,’Sidney’,2,11),(1883,7488,’Benjamin 2X’,2,12),(1883,1039,’Captain Green’,2,14),(1883,650,’Miss Dunne’,1,15),(1883,290,’Chaplain Gill’,2,16),(1883,1385380,’Sammy’,0,17),(1883,1590323,’Cadillac’,0,18),(1883,5578,’Peg’,1,19),(1883,171167,’Honey’,0,20),(1883,1673564,’Daniel’,0,21),(1883,1502942,’Cholly’,0,22),(1883,51546,’Toomer’,2,23),(1883,1549301,’Lorraine’,0,24),(1883,17859,’Ben Thomas’,2,25),(1883,1673567,’William X’,0,26),(1883,171168,’Wilbur Kinley’,0,27),(1883,4808,’Thomas Hayer’,2,28),(1883,15537,’Leon Davis’,2,29),(1883,40377,’Rudy’,2,30),(1883,62893,’TV Host’,2,31),(1883,1673569,’Dr. Payson’,2,32),(1883,1673570,’Eva Marie’,0,33),(1883,1673571,’Saudi’,0,34),(1883,1673572,’Lisha’,0,35),(1883,1673573,’Attalah’,0,36),(1883,1673574,’Chuck’,0,37),(1883,1673578,’Sister Robin’,0,38),(1883,1673579,’Mr. Cooper’,0,39),(1883,171301,’Blades’,2,40),(1883,1373615,’Simmons’,0,41),(1883,140178,’Woman Outside Audubon Ballroom’,1,42),(1883,155551,’Dick Jones’,0,43),(1883,1737,’Mr. Ostrowski’,2,44),(1883,1673580,’Doctor’,0,45),(1883,141748,’Augusta’,1,46),(1883,67513,’Mrs. Swerlin’,1,47),(1883,1673583,’Hustler’,0,48),(1883,1673585,’Lionel Hampton’,0,49),(1883,1673586,’Preacher’,0,50),(1883,99361,’Sister Evelyn Williams’,1,51),(1883,77074,’Sister Lucille Rosary’,1,52),(1883,193048,’Fox’,2,53),(1883,1673590,’Brother Gene’,0,54),(1883,1673591,’Mr. Holway’,0,55),(1883,1673593,’Conductor’,0,56),(1883,98887,’Speedy’,0,57),(1883,1417653,’Tully’,2,58),(1883,15536,’Brother Johnson’,2,59),(1883,1673597,’Roderick’,0,60),(1883,1673598,’Sophia\’s Husband’,0,61),(1883,9572,’School Teacher’,1,62),(1883,76131,’Sophia\’s Friend’,1,63),(1883,11486,’Reporter at Fire Bombing’,2,64),(1883,1213365,’Reporter at Fire Bombing’,0,65),(1883,102445,’FBI Agent’,2,66),(1883,42993,’FBI Agent’,2,67),(1883,89300,’Soweto Teacher’,2,68),(1883,122747,’Pete’,2,69),(2959,2157,’Reverend Frank’,2,0),(2959,16855,’Sadie Jones’,1,1),(2959,17697,’Ben Murphy’,2,2),(2959,29020,’Carlisle’,2,3),(2959,15286,’Lindsey Jones’,1,4),(2959,216,’Choir Boy’,2,5),(2959,11827,’Joel’,2,6),(2959,21368,’Mr. Jones’,2,7),(2959,6465,’Grandma Jones’,1,8),(2959,29021,’Mrs. Jones’,1,9),(2959,125167,’Shelly’,1,10),(2959,1368801,’Expectant Father’,2,11),(2959,113867,’Judith’,1,12),(9957,53926,’Clark’,2,0),(9957,60949,’Gus’,2,1),(9957,60950,’Richie’,2,2),(9957,16165,’Mel’,2,3),(9957,51857,’Wayne’,2,4),(9957,17341,’Carlos’,2,5),(9957,32907,’Howie’,2,6),(9957,60952,’Liz’,1,7),(9957,60953,’Salad Girl / Sarah’,1,8),(9957,60951,’Jerry’,2,9),(9957,5621,’Swimmer Boy’,2,10),(9957,60954,’Karl’,2,11),(9957,60956,’Kyle’,2,12),(9957,60957,’Himself’,2,13),(9957,60955,’Brad’,0,14),(9957,60958,’Marcus Ellwood’,2,15),(9957,60959,’Female Customer’,1,16),(9957,60961,’Autograph Kid’,0,17),(9957,60960,’Kid Catcher #1 Game #2′,0,18),(9957,53256,’Poker Guy #1′,2,19),(9957,1053422,’Jock Kid Game #3′,2,20),(9366,85,’Donnie Brasco / Joseph D. \’Joe\’ Pistone’,2,0),(9366,1158,’Benjamin \’Lefty\’ Ruggiero’,2,1),(9366,147,’Sonny Black’,2,2),(9366,9257,’Nicky’,2,3),(9366,785,’Paulie’,2,4),(9366,8256,’Maggie Pistone’,1,5),(9366,6752,’Tim Curley’,2,6),(9366,4890,’Bruno’,2,7),(9366,65765,’Richard \’Richie\’ Gazzo’,2,8),(9366,7471,’Dr. Berger’,2,9),(9366,19468,’Agent Dean Blandford FBI’,2,10),(9366,62715,’Sonny Red’,2,11),(1576,63,’Alice’,1,0),(1576,17647,’Rain’,1,1),(1576,11867,’Matt’,2,2),(1576,146784,’Mr. Grey’,0,3),(1576,1104994,’Mr. Red’,0,4),(1576,232174,’Ms. Black’,0,5),(1576,195535,’Dr. Green’,0,6),(1576,72100,’Dr. Blue’,2,7),(1576,947006,’Dr. Brown’,2,8),(1576,7059,’Lisa’,1,9),(1576,74225,’Clarence’,2,10),(1576,2477,’Mr. White’,2,11),(1576,43135,’Ms. Gold’,1,12),(1576,5414,’One’,2,13),(1576,557323,’Kaplan’,2,14),(1576,47779,’Rain’,2,15),(1576,68224,’Medic’,1,16),(1576,951657,’Commando 1′,0,17),(1576,952506,’Commando 2′,2,18),(1576,17648,’Spence’,2,19),(1576,949700,’Red Queen’,0,20),(1576,11355,’Dr. William Birkin (uncredited)’,2,21),(609,8977,’Steve Freeling’,2,0),(609,10080,’Diane Freeling’,1,1),(609,10083,’Dr. Lesh’,1,2),(609,10086,’Carol Anne Freeling’,1,3),(609,10084,’Dana Freeling’,0,4),(609,10085,’Robbie Freeling’,2,5),(609,10091,’Tangina Barrons’,1,6),(609,10089,’Dr. Marty Casey’,2,7),(609,14852,’Mr. Teague’,2,8),(609,160483,’Pool Worker’,2,9),(609,10090,’Ryan’,2,10),(609,1690458,’Pool Worker’,2,11),(609,10087,’Ben Tuthill’,2,12),(609,10088,’Mrs. Tuthill’,1,13),(609,2851,’Pugsley’,0,14),(609,1410249,’Husband’,0,15),(5516,31,’Professor G.H. Dorr’,2,0),(5516,43853,’Marva Munson’,1,1),(5516,9562,’Gawain MacSam’,2,2),(5516,18999,’Garth Pancake’,2,3),(5516,21629,’The General’,2,4),(5516,43858,’Lump Hudson’,2,5),(5516,43859,’Mountain Girl’,1,6),(5516,552139,’Sherriff Wyner’,2,7),(5516,16459,’Deputy Sheriff’,2,8),(5516,84115,’Weemack Funthes’,2,9),(5516,17401,’Fernand Gudge’,2,10),(5516,1378072,’Rosalie Funthes’,0,11),(5516,1509209,’Elron’,0,12),(5516,154189,’Preacher’,2,13),(5516,17305,’TV Commercial Director’,2,14),(5516,11357,’Humane Society Worker’,2,15),(5516,24199,’Waffle Hut Waitress’,1,16),(423,3490,’Wladyslaw Szpilman’,2,0),(423,3491,’Captain Wilm Hosenfeld’,2,1),(423,6637,’Father’,2,2),(423,6638,’Mother’,1,3),(423,6639,’Dorota’,1,4),(423,6640,’Henryk’,2,5),(423,6641,’Regina’,0,6),(423,6642,’Halina’,0,7),(423,6643,’Jurek’,2,8),(423,6644,’SS Slapping Father’,0,9),(423,6645,’Mr. Lipa’,2,10),(423,6646,’Feather Woman’,0,11),(423,1493073,’Man Waiting to Cross’,0,12),(423,1502849,’Street Musician’,0,13),(423,1502850,’Street Musician’,0,14),(423,1502851,’Street Musician’,0,15),(423,1080994,’Schutzpolizei’,2,16),(423,51651,’Schutzpolizei’,0,17),(423,1446384,’Itzak Heller’,0,18),(423,1221808,’Yehuda’,2,19),(423,19875,’Majorek’,0,20),(423,1120198,’Benek’,0,21),(423,1145,’Customer with Coins’,2,22),(423,6647,’SS Officer’,0,23),(423,11193,’Rubenstein’,0,24),(423,1138495,’Woman with Soup’,0,25),(423,48392,’Schultz’,2,26),(423,1537160,’SS Shooting the Woman’,0,27),(423,107874,’Woman Shot in the Head’,0,28),(423,1076083,’Wailing Woman’,0,29),(423,82312,’Woman with Child’,0,30),(423,47547,’Dr. Ehrlich’,2,31),(423,24722,’Mr. Gru00fcn’,2,32),(423,945055,’Boy with Sweets’,2,33),(423,1275339,’Fellow Worker’,0,34),(423,181029,’Janina’,0,35),(423,21837,’SS Making a Speech’,0,36),(423,20523,’Janina\’s Husband’,2,37),(423,24524,’Marek Gu0119bczyu0144ski’,2,38),(423,83264,’Neighbour’,1,39),(423,52375,’Dorota\’s Husband’,2,40),(423,17290,’Szalas’,2,41),(423,1533548,’Dr. Luczak’,0,42),(423,146434,’Lednicki’,0,43),(423,1384028,’Polish Workman’,0,44),(423,1221617,’Polish Woman’,0,45),(423,49486,’Polish Officer’,2,46),(423,1138082,’Schutzpolizei’,0,47),(423,107890,’Prisoner’,2,48),(423,1571182,’Girl’,0,49),(423,46245,’Other part’,0,50),(423,1707197,’Other part’,0,51),(423,1139637,’Other part’,0,52),(423,1881588,’Other Part’,0,53),(423,127853,’Other part’,2,54),(423,1730800,’Other part’,0,55),(423,1258568,’Other part’,0,56),(423,1881604,’Other part’,0,57),(423,1881626,’Other part’,0,58),(423,1083947,’Other part’,0,59),(423,1175176,’Other part’,0,60),(423,136798,’Other part’,0,61),(423,1290107,’Other part’,0,62),(423,97197,’Other part’,0,63),(423,1881651,’Other part’,0,64),(423,1138890,’Other Part’,0,65),(423,1083418,’Other part’,0,66),(423,236188,’Man in Ghetto (uncredited)’,0,67),(423,4621,’German Soldier – Rummage Bags (uncredited)’,0,68),(423,95105,’Young Gestapo (uncredited)’,2,69),(423,1583956,’Soldier (uncredited)’,0,70),(423,1355642,’Piano Buyer (uncredited)’,0,71),(423,1636697,’Jew Working on the Bulding Site (uncredited)’,0,72),(423,1062688,’SS Officer (uncredited)’,0,73),(2447,15293,’Maria’,0,0),(2447,25072,’Joseph’,2,1),(2447,765,’Anna’,1,2),(2447,17857,’Joachim’,2,3),(2447,8785,’Herodes der Grou00dfe’,2,4),(2447,21041,’Elisabeth’,1,5),(2447,25074,’Zacharias’,2,6),(2447,2957,’Der Engel Gabriel’,2,7),(2447,2980,’Melchior’,2,8),(2447,25078,’Balthasar’,2,9),(2447,25079,’Kaspar’,2,10),(2447,25080,’Herodes Antipas’,2,11),(2447,25082,’Ruth’,1,12),(2447,25083,’Tero’,2,13),(2447,25084,’Marias Freundin’,0,14),(2447,25085,’Marias Freundin’,0,15),(2447,25086,’Hoherpriester’,0,16),(2447,25087,’Benjamin’,2,17),(2447,25088,’Steuereinnehmer’,2,18),(2447,25089,’Steuereinnehmer’,2,19),(2447,25090,’Architekt des Herodes’,0,20),(2447,25091,’Tante der Elisabeth’,0,21),(2447,25092,’Cousine der Elisabeth’,1,22),(2447,25093,’Hebamme’,0,23),(2447,25094,’Wahrsagerin’,0,24),(2447,25095,’Strau00dfenprediger’,2,25),(2447,25096,’Das entfu00fchrte Mu00e4dchen’,0,26),(2447,5445,’Der Vater des entfu00fchrten Mu00e4dchens’,2,27),(2447,25097,’Die Mutter des entfu00fchrten Mu00e4dchens’,0,28),(2447,25098,’Ru00f6mischer Soldat Steuereinnahme’,0,29),(2447,25099,’Ru00f6mischer Wachsoldat’,0,30),(2447,17163,’Komplizin des Taschendiebs’,0,32),(2447,25102,’Einwohner von Bethlehem’,0,33),(2447,25103,’Einwohner von Bethlehem’,0,34),(2447,25104,’Einwohner von Bethlehem’,0,35),(2447,25105,’Einwohner von Bethlehem’,0,36),(2447,25107,’Einwohner von Bethlehem’,0,37),(2447,25109,’Einwohner von Bethlehem’,0,38),(2447,25110,’Einwohner von Bethlehem’,0,39),(2447,25112,’Einwohner von Bethlehem’,0,40),(2447,25113,’Naomi’,1,41),(2447,124398,’Taschendieb’,0,42),(2447,1016074,’Strabo’,0,43),(2288,1204,’Anna Cameron’,1,0),(2288,9642,’Dan Woolf’,2,1),(2288,524,’Alice Ayres’,1,2),(2288,2296,’Larry Gray’,2,3),(2288,23608,’Customs Officer’,2,4),(2288,23607,’Taxi Driver’,2,5),(2288,1220476,’Car driver (uncredited)’,0,6),(2288,1232670,’Chatty Exhibition Guest (uncredited)’,0,7),(2288,1392726,’Customs Officer (uncredited)’,0,8),(2288,1402622,’Coughing Man (uncredited)’,0,9),(2288,1402625,’Bus Passenger (uncredited)’,0,10),(2288,1402629,’Luke (uncredited)’,0,11),(2288,18274,’Smoking Man (uncredited)’,0,12),(2288,1617366,’Traveler (uncredited)’,0,13),(2288,1673059,’Bartender (uncredited)’,0,14),(2288,30450,’Bodyguard (uncredited)’,2,15),(2288,1209051,’Bouncer (uncredited)’,0,16),(2288,1813935,’Traveller (uncredited)’,0,17),(169,1109,’The Predator’,2,0),(169,2047,’Lieutenant Mike Harrigan’,2,1),(169,2048,’Peter Keyes’,2,2),(169,2049,’Danny Archuleta’,2,3),(169,2051,’Leona Cantrell’,1,4),(169,2053,’Jerry Lambert’,2,5),(169,2059,’Garber’,2,6),(169,2055,’Captain Phil Heinemann’,2,7),(169,2062,’Captain B. Pilgrim’,2,8),(169,2064,’Tony Pope’,2,9),(169,2067,’King Willie’,2,10),(169,2069,’Ramon Vega’,0,11),(169,1102,’Anna’,1,12),(169,2072,’Irene Edwards’,1,13),(169,2074,’Gold Tooth’,0,14),(169,24969,’El Scorpio’,2,15),(169,1188761,’Commuter’,2,16),(169,122239,’Ruth’,1,17),(169,1275523,’Charlie’,2,18),(169,1088201,’Paramedic’,2,19),(169,1583678,’Subway Gang’,2,20),(169,589956,’Subway Gang’,2,21),(169,20582,’Subway Gang’,2,22),(169,42141,’Federal Team’,2,23),(169,6326,’Federal Team’,2,24),(169,1128238,’Federal Team’,2,25),(169,102710,’Cop’,2,26),(169,154713,’Officer’,2,27),(169,1583695,’Reporter’,2,28),(169,87401,’Detective’,2,29),(169,13657,’Detective’,2,30),(169,14328,’Sergeant’,2,31),(169,97725,’Colombian Girl’,1,32),(169,1877153,’Subway Gang Leader’,2,33),(169,95797,’Sweet’,2,34),(169,1877156,’Jerome’,0,35),(169,109693,’Brian’,2,36),(169,1778745,’Leona\’s Friend’,0,37),(8090,2882,’Agent Jennifer Marsh’,1,0),(8090,21029,’Eric Box’,2,1),(8090,3492,’Griffin Dowd’,2,2),(8090,33528,’Owen Reilly’,2,3),(8090,54782,’Stella Marsh’,1,4),(8090,54783,’Richard Brooks’,2,5),(8090,6585,’Annie Haskins’,1,6),(8090,1498511,’Herbert Miller’,0,7),(8090,20379,’David Williams’,2,8),(8090,204815,’Arthur James Elmer’,2,9),(8090,1524355,’Mrs. Miller’,0,10),(8090,121611,’Richard Weymouth’,2,11),(8090,27688,’Trey Restom’,0,12),(8090,142215,’Tim Wilks’,2,13),(8090,650356,’Melanie’,1,14),(8090,1572682,’Cop #1′,0,15),(8090,79905,’Assistant’,0,16),(8090,588695,’Portland Reporter #2′,0,17),(3604,33321,’Flash Gordon’,2,0),(3604,33322,’Dale Arden’,1,1),(3604,2201,’The Emperor Ming’,2,2),(3604,10501,’Dr. Hans Zarkov’,2,3),(3604,27163,’Princess Aura’,1,4),(3604,10669,’Prince Barin’,2,5),(3604,8318,’Prince Vultan’,2,6),(3604,22529,’Klytus’,2,7),(3604,25810,’Kala’,1,8),(3604,33323,’Arborian Priest’,2,9),(3604,13474,’Fico’,2,10),(3604,12690,’Luro’,2,11),(3604,694,’Zogi, the High Priest’,2,12),(3604,115705,’Serving Girl’,1,13),(3604,663,’Munson’,2,14),(3604,1213668,’Young Treeman’,0,16),(3604,1229279,’Ming\’s Officer’,0,17),(3604,2247,’Prince of Ardentia’,2,18),(3604,1295,’Princess Aura\’s Pet’,2,19),(9541,880,’Ollie Trinke’,2,0),(9541,57893,’Gertie Trinke’,1,1),(9541,882,’Maya’,1,2),(9541,16866,’Gertrude Steiney’,1,3),(9541,15903,’Bart Trinke’,2,4),(9541,23658,’Susan’,0,5),(9541,2888,’Himself’,2,6),(9541,17401,’Greenie’,2,7),(9541,5170,’Block’,2,8),(9541,21593,’Arthur Brickman’,2,9),(9541,576173,’Tracy Colelli’,1,10),(9541,11662,’PR Exec #1′,2,11),(9541,1892,’PR Exec #2′,2,12),(9541,1077235,’Doctor #2′,0,13),(8197,3036,’John Kelso’,2,0),(8197,1979,’James Williams’,2,1),(8197,9642,’Billy Carl Hanson’,2,2),(8197,389,’Mandy Nichols’,1,3),(8197,12536,’Sonny Seiler’,2,4),(8197,43853,’Minerva’,1,5),(8197,54041,’Joe Odom’,2,6),(8197,54042,’Chablis Deveau’,0,7),(8197,10539,’Betty Harty’,1,8),(8197,18071,’Luther Driggers’,2,9),(8197,15374,’Detective Boone’,2,10),(8197,54043,’Bus Driver’,0,11),(8197,53490,’Geza Von Habsburg’,0,12),(8197,4029,’Finley Largent’,2,13),(8197,54044,’Sara Warren’,1,14),(8197,11718,’Margaret Williams’,1,15),(8197,1615196,’Alpha’,2,16),(8836,12640,’Fox Mulder’,2,0),(8836,12214,’Dana Scully’,1,1),(8836,2956,’ASAC Dakota Whitney’,1,2),(8836,9188,’Father Joseph Crissman’,0,3),(8836,336,’Agent Mosley Drummy’,2,4),(8836,12644,’Walter Skinner’,2,5),(8836,540,’2nd Abductor – Janke Dacyshyn’,2,6),(8836,23429,’Father Ybarra’,2,7),(8836,32749,’Gaunt Man’,2,8),(8836,42374,’2nd Victim – Cheryl Cunningham’,1,9),(8836,112633,’1st Abductor – Franz Tomczeszyn’,0,10),(8836,112634,’Christian Fearon’,2,11),(8836,112635,’Margaret Fearon’,1,12),(8836,112636,’Blair Fearon’,2,13),(8836,112637,’Female Assistant’,0,14),(8836,112638,’Male Assistant’,0,15),(8836,112639,’Slight Man’,0,16),(8836,112640,’Elderly Gent’,0,17),(8836,75467,’Feed Store Proprietor’,2,18),(8836,56750,’Monica Bannan’,1,19),(8836,80348,’On Screen Doctor’,1,20),(8836,72045,’Suited Man’,2,21),(8836,112641,’1st Cop’,0,22),(8836,59183,’Special Agent in Charge’,1,23),(8836,112642,’Doctor\’s Colleague’,0,24),(8836,112643,’Hallway Agent’,0,25),(8836,112644,’O.R. Nurse’,1,26),(8836,106532,’Surgeon’,1,27),(8836,112645,’Sheriff’,1,28),(8836,72069,’Whispering Priest’,0,29),(8836,112646,’Anesthesiologist’,0,30),(8836,112647,’Doctor’,1,31),(8836,112648,’Sheriff Horton’,0,32),(8836,112649,’Tow Truck Driver’,0,33),(8836,91328,’D-Man’,2,34),(8836,12524,’Man sitting in hospital hallway’,2,35),(8836,112650,’FBI Agent’,0,36),(8836,112651,’Female Hallway Agent’,0,37),(8836,112652,’Board Room Doctor’,0,38),(8836,1685447,’Murder Victim (uncredited)’,0,39),(8836,1494868,’Board Room Doctor (uncredited)’,0,40),(8836,1685448,’Nurse (uncredited)’,0,41),(9093,1810,’Harry Faversham’,2,0),(9093,8210,’Jack Durrance’,2,1),(9093,11661,’Ethne’,1,2),(9093,938,’Abou Fatma’,2,3),(9093,3968,’Trench’,2,4),(9093,7058,’Castleton’,2,5),(9093,1392701,’Sudanese Storyteller’,0,6),(9093,1220598,’Dervish Ansar’,0,7),(9093,19875,’Gustave’,0,8),(9093,2467,’Col. Sutch’,2,9),(9093,1392703,’Colonel Other Regiment’,0,10),(9093,40951,’Aunt Mary’,0,11),(9093,1392705,’Egyptian Orderly’,0,12),(9093,113608,’Isabelle’,1,13),(9093,1295376,’Millie’,0,14),(9093,1295376,’Drunken Corporal’,0,15),(9093,206726,’British Lion’,2,16),(9093,15739,’Colonel Hamilton’,2,17),(9093,1392707,’Woman in Red Veil’,0,18),(9093,1392708,’Saadi’,0,19),(9093,1392709,’Wounded Captain’,0,20),(9093,1392710,’Dervish Captain’,0,21),(9093,1392711,’British Corporal’,0,22),(9093,1392712,’Youssef’,0,23),(9093,1392713,’Dervish Sniper’,0,24),(9093,1392714,’Mullah’,0,25),(9093,1392715,’Dinka Slavegirl’,0,26),(9093,1392716,’Gentle Faced Porter’,0,27),(9093,27662,’Hassan’,0,28),(9093,134118,’Impressario’,0,29),(9093,42276,’Tom Willoughby’,2,30),(9093,11276,’General Feversham’,2,31),(9093,1392720,’Ibrahim’,0,32),(9093,81346,’Maya’,1,33),(9093,79648,’Regimental Priest’,2,34),(9093,1392721,’Dinka Slavegirl’,0,35),(9093,3968,’William Trench’,2,36),(9093,86482,’Egyptian Orderly’,2,37),(9093,1229590,’Aquol’,0,38),(9093,1392723,’Egyptian Orderly’,0,39),(9093,1392724,’British Soldier’,0,40),(9093,1392725,’British Soldier’,0,41),(9093,8444,’Drummer Boy’,2,42),(9093,1392726,’British Cavalry Officer’,0,43),(9093,1390394,’British Cavalry Officer’,2,44),(9093,1392731,’High Class Lady’,1,45),(9093,1392734,’British Troop’,0,46),(9093,1375085,’Crying Widow’,1,47),(9093,1184965,’General Wolseley\’s Aide-de-Camp’,2,48),(849,12811,’Prince Colwyn’,2,0),(849,12812,’Princess Lyssa’,1,1),(849,12513,’Lyssa, Widow of the Web’,1,2),(849,2629,’Torquil’,2,3),(849,3475,’Ergo’,2,4),(849,12815,’Rell the Cyclops’,2,5),(849,3896,’Kegan’,2,6),(849,12816,’The Seer’,2,7),(849,12817,’Titch’,2,8),(849,12818,’Turold’,2,9),(849,12819,’Eirig’,2,10),(849,12820,’Vella’,1,11),(849,12517,’Ynyr’,2,12),(849,1923,’Rhun’,2,13),(849,1220237,’Oswyn’,0,14),(849,127151,’Bardolph’,2,15),(849,1747343,’Nennog’,2,16),(849,199077,’Darro’,2,17),(849,1747344,’Quain’,2,18),(849,24278,’Menno’,2,19),(849,1271092,’White Slayer with Tiger’,2,20),(849,17478,’The Beast (voice)’,0,21),(849,1424575,’Slayer in the Swamp’,0,22),(849,188516,’Slayer in the Swamp’,2,23),(849,1747345,’Sword Fighter’,0,24),(4515,4135,’Dr. Stephen Malley’,2,0),(4515,5064,’Janine Roth’,1,1),(4515,500,’Senator Jasper Irving’,2,2),(4515,454,’Ernest’,2,3),(4515,37625,’Todd Hayes’,2,4),(4515,36602,’Wirey Pink’,2,5),(4515,15543,’Arian’,2,6),(4515,37624,’Today Show Host’,1,7),(6575,4764,’Dewey Cox’,2,0),(6575,51856,’Darlene Madison’,1,1),(6575,51857,’Sam’,2,2),(6575,41091,’Edith’,1,3),(6575,10361,’Pa Cox’,2,4),(6575,1524,’L\’Chai\’m’,2,5),(6575,452,’Ma Cox’,1,6),(6575,51382,’Theo’,0,7),(6575,177475,’Dave’,2,8),(6575,38582,’Schwartzberg’,2,9),(6575,13611,’Elvis’,0,10),(6575,46590,’himself’,2,11),(6575,51860,’herself’,1,12),(6575,14397,’himself’,2,13),(6575,51861,’himself’,0,14),(6575,11059,’himself’,2,15),(6575,70851,’Paul McCartney’,2,16),(6575,15033,’George Harrison’,2,17),(6575,22226,’John Lennon’,2,18),(6575,17881,’Ringo Starr’,2,19),(6575,52028,’Nate Cox’,0,20),(6575,36169,’Herself’,1,21),(6575,14990,’Herself’,1,22),(6575,73952,’Herself’,1,23),(6575,64342,’Bobby Shad’,2,24),(6575,41089,’Schmendrick’,2,25),(6575,58737,’DJ’,2,26),(6575,51391,’Buddy Holly’,2,27),(6575,27105,’Stage Manager’,2,28),(6575,76525,’The Maharishi’,2,29),(6575,43775,’Gail the Television Reporter’,1,30),(6575,53863,’Dreidel L\’Chaim’,2,31),(6575,21007,’Older Nate’,2,32),(6575,96349,’Teen with Pinups’,1,33),(6575,8265,’Record Producer’,2,34),(6575,22250,’Preacher’,2,35),(6575,51992,’Reefer Girl’,1,36),(6575,61263,’Dewdrop’,2,37),(6575,1763429,’LSD Vision’,1,38),(6440,1979,’Quoyle’,2,0),(6440,1231,’Wavey Prowse’,1,1),(6440,112,’Petal’,1,2),(6440,5309,’Agnis Hamm’,1,3),(6440,4935,’Tert Card’,2,4),(6440,349,’Jack Buggit’,2,5),(6440,7026,’Beaufield Nutbeem’,2,6),(6440,13950,’Billy Pretty’,2,7),(6440,20386,’Dennis Buggit’,2,8),(6440,122231,’Grace Moosup’,1,9),(6440,19511,’Bayonet Melville’,2,10),(6440,2842,’Silver Melville’,1,11),(8967,287,’Mr. O\’Brien’,2,0),(8967,2228,’Jack’,2,1),(8967,83002,’Mrs. O\’Brien’,1,2),(8967,1715121,’Young Jack’,0,3),(8967,1715122,’Aged 5 Jack’,0,4),(8967,1715123,’Aged 2 Jack’,0,5),(8967,1715124,’R.L. O\’Brien’,0,6),(8967,1034681,’Steve’,2,8),(8967,5937,’Jack\’s ex’,1,9),(8967,59662,’Jack\’s Wife’,1,10),(8967,109787,’Mr. Brown’,2,11),(8967,568047,’Mrs. Brown’,0,12),(8967,61563,’Uncle Roy’,2,13),(8967,10981,’Grandmother’,1,14),(8967,208259,’Elisa’,0,15),(8967,110990,’Mrs. Stone’,0,16),(8967,1715128,’George Walsh’,0,17),(8967,1801263,’R.L. (age 2)’,2,18),(9616,1810,’Alex Bernier’,2,0),(9616,27855,’Mara Sinclair’,1,1),(9616,11953,’William Eden’,2,2),(9616,13633,’Thomas Garrett’,2,3),(9616,27811,’Driscoll’,2,4),(9616,27199,’Dominic’,2,5),(9616,8772,’Apathetic Bishop’,2,6),(9616,1059143,’Sister Marie’,0,7),(9616,1059145,’Little Girl’,0,8),(9616,1059146,’Little Boy’,0,9),(9726,934,’Max Skinner’,2,0),(9726,8293,’Fanny Chenal’,1,1),(9726,3926,’Uncle Henry Skinner’,0,2),(9726,2441,’Charlie Willis’,2,3),(9726,37260,’Christie Roberts’,1,4),(9726,1281,’Young Max Skinner’,2,5),(9726,59031,’Francis Duflot’,2,6),(9726,59032,’Ludivine Duflot’,1,7),(9726,128645,’Gemma’,1,8),(9726,28847,’Kenny’,2,9),(9726,52890,’Amis’,2,10),(9726,5077,’Nathalie Auzet’,1,11),(9726,26258,’Sir Nigel’,2,12),(9726,1670,’Bert the Doorman’,2,13),(9726,58787,’Maitre D\”,1,14),(9726,58783,’Trader #1′,0,15),(9726,14432,’Trader #2′,2,16),(9726,59029,’20-Something Beauty’,0,17),(9726,58785,’Newscaster #1′,0,18),(9726,58786,’Newscaster #2′,0,19),(9726,58788,’Rental Car Employee’,0,20),(9726,59030,’Gemma\’s Friend’,1,21),(9726,59033,’Russian Couple #1′,0,22),(9726,59034,’Russian Couple #2′,0,23),(9726,59035,’Secretary’,0,24),(9726,6784,’Papa Duflot’,2,25),(9726,101330,’English Couple #1′,1,26),(9726,59037,’English Couple #2′,0,27),(9726,59038,’Hostess’,0,28),(9726,59039,’American Customer #1′,2,29),(9726,59040,’American Customer #2′,0,30),(9726,17897,’Oenologue’,2,31),(9726,59041,’Chateau Buyer’,0,32),(9726,59042,’Chateau Buyer’,0,33),(9726,59043,’Broker #1′,2,34),(9726,59044,’Broker #2′,0,35),(9726,59045,’Fanny\’s Mother’,0,36),(9726,59046,’Young Fanny’,0,37),(9726,59047,’Hip Hopper #1′,2,38),(9726,59048,’Hip Hopper #2′,0,39),(9726,14741,'(voice)’,2,40),(9726,59049,'(voice)’,1,41),(9726,5311,'(voice)’,0,42),(9726,59050,'(voice)’,0,43),(9726,18906,'(voice)’,2,44),(9726,59051,'(voice)’,0,45),(9726,36821,'(voice)’,2,46),(9726,59052,'(voice)’,0,47),(9726,59053,'(voice)’,0,48),(9726,59054,'(voice)’,0,49),(9726,59055,'(voice)’,1,50),(9726,59056,'(voice)’,0,51),(9726,59057,'(voice)’,0,52),(9726,59058,'(voice)’,0,53),(9726,59059,'(voice)’,2,54),(9726,59060,'(voice)’,0,55),(9726,59061,'(voice)’,1,56),(9726,59062,'(voice)’,0,57),(9726,59063,'(voice)’,0,58),(9726,59064,'(voice)’,0,59),(9726,59065,'(voice)’,1,60),(9726,59066,'(voice)’,0,61),(9726,59067,’Trevor’,2,62),(9702,58646,’Miklo’,2,0),(9702,58647,’Cruz’,2,1),(9702,4589,’Paco’,2,2),(9702,16427,’Montana’,2,3),(9702,58648,’Magic Mike’,2,4),(9702,18792,’Bonafide’,2,5),(9702,27736,’Red Ryder’,2,6),(9702,33712,’Popeye’,2,7),(9702,58649,’Wallace’,2,8),(9702,58650,’Chuey’,2,9),(9702,6321,’Frankie’,2,10),(9702,3204,’Big Al’,2,11),(9702,879,’Lightning’,2,12),(9702,58651,’Carlos’,2,13),(9702,55261,’Dolores’,1,14),(9311,15887,’Smilla Jasperson’,1,0),(9311,5168,’The Mechanic’,2,1),(9311,194,’Dr. Andreas Tork’,2,2),(9311,388,’Dr. Lagermann’,2,3),(9311,207,’Prof. Loyen’,2,4),(9311,1162,’Moritz Jasperson’,2,5),(9311,13333,’Elsa Lu00fcbing’,1,6),(9311,4789,’Ravn’,0,7),(9311,54014,’Telling’,2,8),(9311,12982,’Birgo Lander’,2,9),(9311,10254,’Capt. Sigmund Lukas’,2,10),(9311,88537,’Hansen’,0,11),(9311,17353,’Detective’,2,12),(9311,17373,’Nils Jakkelsen’,0,13),(9311,17778,’Mrs. Lagermann’,1,14),(9311,57248,’Inuit Ju00e4ger’,0,15),(9311,57249,’Juliane Christiansen’,0,16),(9311,42643,’Polizist’,0,17),(9311,211463,’Isaiah Christiansen’,0,18),(9280,11008,’Laure/lily’,1,0),(9280,3131,’Nicolas Bardo’,2,1),(9280,9979,’Watts’,2,2),(9280,57121,’Veronica’,1,3),(9280,2518,’Shiff’,2,4),(9280,25078,’Black Tie’,2,5),(9280,5441,’Racine’,2,6),(9280,96413,’Serra’,2,7),(9280,14610,’Napoleon’,2,8),(9280,120488,’Stanfield Phillips’,0,9),(9280,549325,’Pierre’,0,10),(9280,229611,’Seated Guard’,2,11),(9280,1176104,’Truck Driver’,0,12),(9280,1324250,’Power Room Guard’,0,13),(9280,19161,’Herself’,1,14),(9280,27614,’Himself’,2,15),(9280,951580,’Himself’,0,16),(9280,1324252,’Cannes Commentator’,0,17),(9280,25346,’Irma’,1,18),(1969,955,’Maria Alvarez’,1,0),(1969,3136,’Sara Sandoval’,1,1),(1969,20309,’Tyler Jackson’,2,2),(1969,18324,’Quentin’,2,3),(1969,10480,’Ashe’,2,4),(1969,1218243,’Clarissa Ashe’,0,5),(1969,9880,’Bill Buck’,2,6),(1969,160375,’Don Diego’,2,7),(1969,48136,’Pedro’,2,8),(1969,1120515,’Padre Pablo’,0,9),(1969,962981,’Bernardo’,0,10),(1969,51906,’Expl. Bank Manager’,0,11),(1969,7368,’Brujo’,2,12),(1969,1120516,’Midget’,0,13),(1969,1120517,’Gordo’,0,14),(1969,1095101,’Governor’,0,15),(1969,975424,’Cable Bank Manager’,0,16),(1381,6968,’Tomu00e1s/Tom Creo/Tommy’,2,0),(1381,3293,’Queen Isabella/Izzi Creo’,1,1),(1381,9560,’Dr. Lillian Guzetti’,1,2),(1381,1173,’Father Avila’,2,3),(1381,230,’Grand Inquisitor Silecio’,2,4),(1381,20194,’Lord of Xibalba’,2,5),(1381,11868,’Antonio’,2,6),(1381,2517,’Betty’,1,7),(1381,824,’Manny’,2,8),(1381,5924,’Henry’,2,9),(1381,20195,’Dr. Alan Lipper’,2,10),(1381,20196,’Dominican Monk’,2,11),(1381,1066472,’Foot Soldier Rivera’,2,12),(1381,7248,’Captain Ariel’,2,13),(2162,9777,’Arlo’,2,0),(2162,22108,’Tim Mason’,2,1),(2162,22109,’Col. Andrew Brynner’,2,2),(2162,19839,’Dr. Richard Long’,2,3),(2162,22111,’Col. Leo Vitelli’,2,5),(2162,22113,’Dennis’,2,7),(2162,22114,’Carl’,0,8),(2162,87282,’Vaughn’,1,9),(2162,18916,’Telstar’,2,10),(2900,85,’Commander Spencer Armacost’,2,0),(2900,6885,’Jillian Armacost’,1,1),(2900,3977,’Sherman Reese’,2,2),(2900,20387,’Nan’,1,3),(2900,11151,’Captain Alex Streck’,2,4),(2900,2517,’Natalie Streck’,1,5),(2900,68180,’NASA Director’,2,6),(2900,7571,’Shelly McLaren’,1,7),(2900,119232,’Jackson McLaren’,2,8),(2900,1170309,’Allen Dodge’,2,9),(2900,167160,’Shelly Carter’,1,10),(2900,169588,’Pat Elliott’,2,11),(2900,46780,’Dr. Patraba’,1,12),(2900,172664,’Dr. Conlin’,1,13),(2900,158052,’Reporter’,2,14),(2900,11911,’Paula, 2nd Grade Student’,1,15),(2900,100871,’Spencer\’s Doctor’,2,16),(2900,48136,’Doctor’,2,17),(2900,163784,’Yuppie Shark’,2,18),(2900,1668864,’Dried Up Socialite’,1,19),(2900,1379395,’Waiter’,2,20),(2900,1668866,’Woman’,1,21),(2900,1668870,’Second Woman’,1,22),(2900,1668869,’Third Woman’,1,23),(2900,143237,’Fourth Woman’,1,24),(2900,188212,’Security Guard’,0,25),(2900,171459,’Maitre D\”,2,26),(2900,1073208,’Reporter (Video)’,1,27),(2900,102720,’Doorman’,2,28),(2900,1112476,’Waiter at Party’,2,29),(2900,1552938,’Storage Facility Client’,2,30),(2900,92402,’Pilot’,0,31),(2900,56730,’Twin’,2,32),(2900,95686,’Twin’,2,33),(2900,99156,’Businessman (uncredited)’,2,34),(2900,60916,’Mission Control (uncredited)’,0,35),(881,500,’Lt. Daniel Kaffee’,2,0),(881,514,’Col. Nathan R. Jessep’,2,1),(881,3416,’Lt. Cdr. JoAnne Galloway’,1,2),(881,4724,’Capt. Jack Ross’,2,3),(881,7166,’Lt. Sam Weinberg’,2,4),(881,6717,’Pfc. Louden Downey’,2,5),(881,22131,’Lt. Col. Matthew A. Markinson’,0,6),(881,2628,’Lt. Jonathan Kendrick’,2,7),(881,13524,’Dr. Stone’,2,8),(881,1352413,’Judge Randolph’,0,9),(881,13525,’Lt. Dave Spradling’,2,10),(881,68672,’Lance Cpl. Harold W. Dawson’,2,11),(881,3982,’Capt. Whitaker’,2,12),(881,116128,’Capt. West’,2,13),(881,13526,’Cpl. Jeffrey Barnes’,2,14),(881,9777,’Cpl. Carl Hammaker’,2,15),(9600,78029,’Malcolm Turner’,2,0),(9600,9781,’Sherry Pierce’,1,1),(9600,13242,’John’,2,2),(9600,58147,’Trent Pierce’,2,3),(9600,18288,’Lester Vesco’,2,4),(9600,6944,’Twila’,1,5),(326,2231,’Neville Flynn’,2,0),(326,25654,’Claire Miller’,1,1),(326,77330,’Troy’,2,2),(326,60005,’Sean Jones’,2,3),(326,52478,’Mercedes’,1,4),(326,109686,’Three G\’s’,2,5),(326,55788,’Troy’,2,6),(326,7401,’Grace’,1,7),(326,1154165,’Ken’,0,8),(326,58707,’Tiffany’,1,9),(326,132347,’Curtis’,2,10),(326,27124,’Paul’,2,11),(326,11677,’Chen Leong’,2,12),(326,73269,’Maria’,1,13),(326,37979,’Ashley’,1,14),(326,26782,’John Sanders’,2,16),(326,28638,’Rick’,2,17),(326,21127,’Hank Harris’,2,18),(326,58393,’Autograph Girl’,1,19),(7220,11155,’Frank Castle / The Punisher’,2,0),(7220,8891,’Howard Saint’,2,1),(7220,883,’Quentin Glass’,2,2),(7220,6355,’Frank Castle, Sr.’,2,3),(7220,15007,’Livia Saint’,1,4),(7220,11107,’Specker Dave’,2,5),(7220,20767,’Maria’,1,6),(7220,53198,’Bobby Saint’,2,7),(7220,1215657,’Jimmy Weeks’,2,8),(7220,1898,’Mickey Duka’,2,9),(7220,82415,’Bumpo’,2,10),(7220,11008,’Joan’,1,11),(7220,53199,’Harry Heck’,2,12),(7220,53200,’Will Castle’,2,13),(7220,1223998,’Joe Toro’,0,14),(7220,582656,’Tattooed Mike’,2,15),(7220,20562,’T.J.’,2,16),(7220,1837890,’Bay News 9 Newscaster’,0,17),(7220,1837898,’Bay News 9 Newscaster’,0,18),(7220,1542057,’Toro Croupier’,2,19),(7220,78116,’EMT’,2,20),(7220,94182,’Police Chief Morris’,2,21),(7220,218605,’Betty Castle’,1,22),(7220,1837896,’Candelaria’,0,23),(7220,30697,’Accountant #1′,2,24),(7220,1837916,’Accountant #2′,2,25),(7220,1837918,’Accountant #3′,0,26),(7220,74587,’Spoon’,2,27),(7220,6908,’Dante’,2,28),(7220,135352,’The Russian’,2,29),(7220,94854,’Lincoln’,2,30),(7220,1215401,’Saint Puerto Rico Enforcer’,2,31),(7220,163220,’Yuri Astrov’,0,33),(9763,58982,’Santiago Munez’,2,0),(9763,4941,’Gavin Harris’,2,1),(9763,58016,’Roz Harmison’,1,2),(9763,8435,’Glen Foy’,2,3),(9763,480,’Mal Braithwaite’,2,4),(9763,176,’Hughie McGowan’,2,5),(9763,28848,’Barry Rankin’,2,6),(9763,15320,’Erik Dornhelm’,2,7),(9763,41737,’Hernan Munez’,2,8),(9763,1163,’Mercedes’,1,9),(9763,58984,’Val’,0,10),(9763,11284,’Lorraine’,1,11),(9763,58985,’Rory’,0,12),(9763,47644,’Carol Harmison’,1,13),(9763,58986,’Jamie Drew’,2,14),(9763,1115,’Des’,2,15),(9763,38947,’Taxi Dispatcher’,2,16),(1892,2,’Luke Skywalker’,2,0),(1892,3,’Han Solo’,2,1),(1892,4,’Princess Leia’,1,2),(1892,3799,’Lando Calrissian’,0,3),(1892,6,’C-3PO’,2,4),(1892,24342,’Darth Vader’,2,5),(1892,130,’R2-D2 / Paploo’,2,6),(1892,24343,’Chewbacca’,2,7),(1892,7908,’Yoda (voice)’,2,8),(1892,27762,’The Emperor’,2,9),(1892,15152,’Voice of Darth Vader (voice)’,0,10),(1892,28235,’Anakin Skywalker’,0,11),(1892,12248,’Ben \’Obi-Wan\’ Kenobi’,2,13),(1892,11184,’Wicket’,2,14),(1892,37442,’Mon Mothma’,1,15),(1892,1230989,’Moff Jerjerrod’,0,16),(1892,10734,’Admiral Piett’,2,17),(1892,199055,’Bib Fortuna’,2,18),(1892,47698,’Wedge’,2,19),(1892,114761,’Admiral Ackbar’,2,20),(1892,17484,’General Madine’,2,21),(1892,33185,’Boba Fett’,0,22),(1892,137295,’Oola’,0,23),(1892,1430215,’Sy Snootles’,0,24),(1892,1218876,’Fat Dancer’,1,25),(1892,132538,’Teebo’,2,26),(1892,1220451,’Logray’,0,27),(1892,1430217,’Chief Chirpa’,0,28),(1892,995639,’Ewok Warrior’,0,29),(1892,1430487,’Ewok Warrior’,0,30),(1892,1430492,’Nicki’,0,31),(1892,1430494,’Jhoff, a traffic control officer on the Executor’,2,32),(1892,1430499,’Stardestroyer Controller #2′,0,33),(1892,110422,’Stardestroyer Captain #1′,2,34),(1892,147482,’Stardestroyer Captain #2′,2,35),(1892,1430525,’Ewok Tokkat’,0,36),(1892,1430526,’Ewok’,0,37),(1892,1430527,’Ewok’,0,38),(1892,1430528,’Ewok’,0,39),(1892,81414,’Ewok’,0,40),(1892,1430556,’Ewok’,0,41),(1892,1430564,’Ewok’,0,42),(1892,1430565,’Ewok’,0,43),(1892,1430566,’Ewok’,0,44),(1892,1430567,’Ewok’,0,45),(1892,1430568,’Ewok’,0,46),(1892,1430569,’Ewok’,0,47),(1892,19753,’Romba an Ewok’,1,48),(1892,1430576,’Ewok’,0,49),(1892,1430580,’Ewok’,0,50),(1892,121478,’Ewok’,0,51),(1892,19754,’Ewok Wicket\’s younger brother Widdle’,2,52),(1892,1430588,’Ewok’,0,53),(1892,1430590,’Ewok’,0,54),(1892,106406,’Ewok’,0,55),(1892,1430594,’Ewok Wijunkee’,0,56),(1892,19756,’Ewok’,0,57),(1892,12662,’Ewok’,2,58),(1892,1430595,’Ewok’,2,59),(1892,1430596,’Ewok’,0,60),(1892,19751,’Ewok’,0,61),(1892,1430610,’Ewok’,0,62),(1892,1224317,’Ewok’,0,63),(1892,1430611,’Ewok’,0,64),(1892,1430613,’Ewok’,0,65),(1892,1430615,’Ewok’,0,66),(1892,1430857,’Ewok’,0,67),(1892,1430858,’Ewok’,0,68),(1892,1430859,’Ewok’,0,69),(1892,1430860,’Ewok’,0,70),(1892,1430915,’Ewok’,0,71),(1892,1430916,’Ewok’,0,72),(1892,1430917,’Ewok’,0,73),(1892,1430918,’Ewok’,0,74),(1892,1430919,’Ewok’,0,75),(1892,362851,’Ewok’,0,76),(1892,1430920,’Ewok’,0,77),(1892,1430921,’Ewok’,0,78),(1892,1430922,’Ewok’,0,79),(1892,1430923,’Ewok’,0,80),(1892,1430924,’Ewok’,0,81),(1892,1430925,’Ewok’,0,82),(1892,1430926,’Ewok’,0,83),(1892,1430950,’Ewok’,0,84),(1892,1430951,’Ewok’,0,85),(1892,1430952,’Ewok’,0,86),(1892,1430955,’Ewok’,0,87),(1892,1430957,’Ewok’,0,88),(1892,1430958,’Ewok’,0,89),(1892,1430961,’Ewok Graak’,0,90),(1892,1370759,’Ewok’,0,91),(1892,1430964,’Ewok’,0,92),(1892,5531,’Ewok’,2,93),(1892,33853,’Ewok’,2,94),(1892,1430978,’Ewok’,0,95),(1892,1430979,’Ewok’,0,96),(1892,1430980,’Ewok’,0,97),(1892,53760,’Ewok’,2,98),(1892,1430983,’Ewok’,0,99),(1892,224526,’Ewok’,0,100),(1892,1430984,’Ewok’,0,101),(1892,1430987,’Jedi Rocks Dancer (special edition)’,0,102),(1892,1430991,’Greeata Jendowanian a Jedi Rocks Dancer (special edition)’,0,103),(1892,1430994,’Rystu00e1ll Sant a Jedi Rocks Dancer (special edition)’,0,104),(1892,1430996,’Jedi Rocks Dancer (special edition)’,0,105),(1892,1473715,’Salacious B. Crumb’,0,106),(1892,1473716,’Max Rebo’,0,107),(1892,1473717,’Nien Nunb’,0,108),(1892,1473722,’Ak-rev’,0,109),(1892,1473724,’Renz’,0,110),(1892,3307,’Major Olander Brit – Rebel (uncredited)’,2,111),(1892,1729665,’Bib Fortuna (voice)’,0,112),(1892,1249957,’Nein Nunb’,0,113),(1892,1729666,’Nein Numb (voice)’,0,114),(1892,1295,’Droopy McCool’,2,115),(1892,1729667,’Amanaman’,0,116),(1892,1729668,’Gameorrean Guard/Elom/Mon Calamari’,0,117),(1892,1729669,’Attark the Hoover’,0,118),(1892,106053,’Yuzzum’,0,119),(1892,1250666,’Tessek’,0,120),(1892,1436476,’Hermi Odle’,0,121),(1892,1729670,’Whiphid’,0,122),(1892,1729671,’Whiphid’,0,123),(1892,7727,’Rancor’,2,124),(1892,163839,’Rancor’,0,125),(1892,1590529,’Jabba the Hutt’,2,126),(1892,1329519,’Jabba the Hutt’,2,127),(1892,159108,’Jabba the Hutt (voice)’,2,128),(8055,204,’Hanna Schmitz’,1,0),(8055,5469,’Michael Berg’,2,1),(8055,5847,’Young Michael Berg’,0,2),(8055,49018,’Brigitte’,1,3),(8055,2310,’Professor Rohl’,2,4),(8055,16783,’Julia’,1,5),(8055,17067,’Marthe’,1,6),(8055,23182,’Dieter Spenz’,2,7),(8055,5644,’Young Ilana Mather’,1,8),(8055,17543,’Hanna\’s Defense Council’,2,9),(8055,45811,’Sophie’,0,10),(8055,19123,’Carla Berg’,1,11),(8055,4534,’Peter Berg’,2,12),(8055,3934,’Richter’,2,13),(8055,41965,’Staatsanwalt’,2,14),(8055,10923,’Gerhard Bade’,2,15),(8055,231835,’Thomas Berg’,2,16),(8055,1071317,’Holger’,0,17),(8055,49766,’Richterin’,1,18),(8055,17543,’Verteidiger’,2,19),(8055,79449,’Verteidigerin’,1,20),(8055,8205,’Verteidigerin’,1,21),(8055,5313,’Rose Mather’,1,22),(8055,44393,’Gefu00e4ngniswu00e4rter’,0,23),(8055,10243,’Gefangene’,1,24),(8055,1008395,’Gefu00e4ngniswu00e4rterin’,0,25),(9294,8891,’George Malley’,2,0),(9294,26467,’Lace Pennamin’,1,1),(9294,2178,’Nate Pope’,2,2),(9294,3087,’Doc Brunder’,2,3),(9294,12645,’Prof. John Ringold’,0,4),(9294,26660,’Dr. Wellin’,2,5),(9294,59451,’Al Pennamin’,2,6),(9294,106976,’Glory Pennamin’,1,7),(9294,166606,’Tito’,2,8),(9294,33836,’Banes’,0,9),(9294,31006,’Roger’,2,10),(9294,4943,’FBI Agent Jack Hatch’,0,11),(9294,61216,’Ted Rhome’,2,12),(9294,1213786,’Dr. Bob Niedorf’,2,13),(9294,1178376,’Nurse’,1,14),(9294,154295,’Jimmy’,2,15),(9647,1532,’Francis Xavier Cross’,2,0),(9647,650,’Claire Phillips’,1,1),(9647,24367,’Lew Hayward’,2,2),(9647,95024,’Eliot Loudermilk’,2,3),(9647,10556,’Ghost of Christmas Present’,1,4),(9647,10158,’Grace Cooley’,2,5),(9647,6451,’Herman’,2,6),(9647,1981,’Grace Cooley’,1,7),(9647,5589,’Bryce Cummings’,2,8),(9647,57116,’Ghost of Christmas Past’,2,9),(9647,1445671,’Calvin Cooley’,0,10),(9647,52031,’Gramma’,1,11),(9647,66107,’James Cross’,0,12),(9647,61980,’Wendie Cross’,1,13),(9647,1535,’Earl Cross’,2,14),(9647,155649,’Guest’,2,15),(9647,1232201,’Hazel’,0,16),(9647,55432,’Jacob Marley’,0,17),(9647,67393,’Scrooge’,2,18),(9647,128621,’Himself’,2,19),(9647,11783,’Himself’,0,20),(9647,18589,’Himself’,2,21),(9647,1224933,’Tiny Tim’,0,22),(9647,1236151,’Mrs. Rhinelander’,0,23),(9647,49944,’Woman in Shelter’,1,24),(9647,1784982,’Woman #2 in Shelter’,1,25),(9647,1499794,’Street Musician’,0,26),(9647,1055165,’Street Musician’,0,27),(9647,1151311,’Street Musician’,0,28),(9647,1727573,’Street Musician’,0,29),(9647,23967,’Ted’,0,30),(9647,1445668,’Santa Clause’,0,31),(9647,1445670,’Ghost of Christmas Future’,0,32),(9647,108635,’Guest’,1,33),(9353,70851,’Nacho’,2,0),(9353,57409,’Sister Encarnaciu00f3n’,1,1),(9353,57410,’Esqueleto’,0,2),(9353,57411,’Chancho’,0,3),(9353,57412,’Juan Pablo’,0,4),(9353,57413,’Segundo Nuu00f1ez’,0,5),(9353,57414,’Guillermo’,2,6),(9353,57415,’Ramses’,0,7),(9353,57416,’Elderly Monk’,0,8),(9353,57417,’Snaggle Tooth Monk’,0,9),(9353,53,’Emperor’,2,10),(7305,569,’Nando Parrado’,2,0),(7305,147119,’Antonio Balbi’,2,1),(7305,52419,’Roberto Canessa’,2,2),(7305,7039,’Carlitos Pu00e1ez’,2,3),(7305,52420,’Antonio Vizintu00edn’,2,4),(7305,52418,’Gustavo Zerbino’,2,5),(7305,54711,’Roy Harley’,2,6),(7305,172496,’Javier Methol’,2,7),(7305,7796,’Lilliana Methol’,1,8),(7305,22133,’Bobby Franu00e7ois’,2,9),(7305,52421,’Federico Aranda’,2,10),(7305,1872737,’Alberto Artuna’,0,11),(7305,52422,’Rafael Cano’,2,12),(7305,10963,’Fraga’,2,13),(7305,8540,’Hugo Du00edaz’,2,14),(7305,155282,’Fito Strauch’,2,15),(7305,87708,’Eduardo Strauch’,0,16),(7305,12055,’Daniel Fernu00e1ndez’,2,17),(7305,158812,’Juan Martino’,2,18),(7305,110472,’Pablo Montero’,2,19),(7305,153783,’Moncho Sabella’,2,20),(7305,51539,’Coche Inciarte’,2,21),(7305,33834,’Susana Parrado’,1,22),(7305,6164,’Felipe Restano’,1,23),(7305,943323,’Alex Morales’,2,24),(7305,1872742,’u00c1lvaro Mangino’,0,25),(7305,158423,’Pancho Delgado’,2,26),(7305,1872744,’Pedro Algorta’,0,27),(7305,1235633,’Vu00edctor Bolarich’,0,28),(7305,21091,’Co-Pilot’,2,29),(7305,1872755,’Pilot Julio Cu00e9sar Ferradas’,0,30),(7305,1230529,’Mrs. Alfonsu00edn’,0,31),(7305,46901,’Eugenia Parrado’,1,32),(7305,159647,’Steward’,2,33),(7305,10633,’Tomu00e1s Alonso’,0,34),(7305,1475768,’Dr. Solana’,0,35),(7305,1872759,’Mrs. Solana’,0,36),(7305,113204,’Martu00ednez, the Navigator’,2,37),(7305,1462675,’Jorge Armas’,2,38),(7305,6949,’Narrator (uncredited)’,2,39),(3594,206,’Walter Sparrow / Fingerling’,2,0),(3594,12519,’Agatha Sparrow / Fabrizia’,1,1),(3594,33235,’Robin Sparrow’,2,2),(3594,6413,’Isaac French / Dr. Miles Phoenix’,2,3),(3594,21044,’Suicide Blonde’,1,5),(3594,1236,’Kyle Finch’,2,5),(3594,25702,’Laura Tollins’,1,7),(3594,33707,’Hotel Clerk’,2,7),(3594,74541,’Sergeant Burns’,2,8),(3594,29054,’Sybil’,1,9),(3594,33706,’Young Fingerling / Young Walter’,2,10),(3594,21523,’Father Sebastian’,2,11),(3594,1571661,’Barnaby’,0,12),(3594,56358,’Dr. Alice Mortimer’,1,13),(3594,154869,’Attractive Coed’,1,14),(3594,1279471,’Lucinda’,0,16),(3594,164938,’Box COmpany Clerk’,1,17),(59,110,’Tom Stall’,2,0),(59,49,’Edie Stall’,1,1),(59,226,’Sarah Stall’,0,2),(59,225,’Jack Stall’,2,3),(59,227,’Richie Cusack’,2,4),(59,228,’Carl Fogerty’,2,5),(59,229,’Sheriff Sam Carney’,2,6),(59,230,’Leland’,2,7),(59,231,’Billy’,2,8),(59,232,’Bobby’,2,9),(59,233,’Judy Danvers’,1,10),(59,234,’Mick’,2,11),(59,235,’Charlotte’,0,12),(59,236,’Frank Mulligan’,2,13),(59,237,’Charlie Roarke’,2,14),(9335,976,’Frank Martin’,2,0),(9335,38425,’Audrey Billings’,1,1),(9335,57346,’Lola’,1,2),(9335,57345,’Gianni Chellini’,2,3),(9335,7693,’Inspector Tarconi’,2,4),(9335,1116654,’Government Doctor’,0,5),(9335,8654,’Jefferson Billings’,2,6),(9335,973,’Dimitri’,2,7),(9335,65827,’Stappleton’,2,8),(9335,1286269,’Cop’,0,9),(8649,2963,’Frank Pierce’,2,0),(8649,4687,’Mary Burke’,1,1),(8649,1230,’Larry Verber’,2,2),(8649,10182,’Marcus’,2,3),(8649,3197,’Tom Wolls’,2,4),(8649,47775,’Noel’,2,5),(8649,54782,’Constance’,1,6),(8649,7248,’Cy Coates’,2,7),(8649,380767,’Rose’,1,8),(8649,203683,’Kanita’,1,9),(8649,106791,’Nurse Crupp’,0,10),(8649,14331,’Dr. Hazmat’,2,11),(8649,31268,’Cokehead’,2,12),(8649,28033,’Captain Barney’,2,13),(8649,1032,’Dispatcher (Voice)’,2,14),(8649,15758,’Dispatcher Love (Voice)’,1,15),(8649,39390,’Shooting Victim’,2,16),(8649,1196493,’Shooting Victims Friend’,2,17),(3587,2395,’Harriet Franklin’,1,0),(3587,16927,’Bogus’,2,1),(3587,9640,’Albert’,2,2),(3587,29408,’Babette’,1,3),(3587,8263,’Penny’,1,4),(3587,18331,’Lorraine Franklin’,1,5),(3587,33157,’Monsieur Antoine’,0,6),(3587,33613,’Ruth Clark’,1,7),(3587,33614,’Mrs. Partridge’,1,8),(182,1461,’Jake Geismar’,2,0),(182,112,’Lena Brandt’,1,1),(182,2219,’Tully’,2,2),(182,2220,’Danny’,2,3),(182,2221,’Bernie Teitel’,2,4),(182,2222,’Colonel Muller’,2,5),(182,12536,’Congressman Breimer’,2,6),(182,79087,’Hannelore’,1,7),(182,41742,’General Sikorsky’,2,8),(182,114034,’Emil Brandt’,0,9),(182,78598,’Lieutenant Schaeffer’,2,10),(182,157618,’Gunther’,2,11),(182,200094,’Levi’,0,12),(182,1278019,’Gunther’,0,13),(182,1868278,’The Butcher’,2,14),(5494,17648,’George’,2,0),(5494,15555,’Princess Luma’,1,1),(5494,723,’Garth’,2,2),(5494,61981,’Tarik’,2,3),(5494,43680,’Elmendorf’,2,4),(5494,20800,’Father Bernard’,0,5),(5494,33453,’Wryn’,2,6),(5494,652,’Sir Robert’,0,7),(5494,48903,’Bulchar’,2,8),(5494,947231,’Mercenary #1′,0,9),(5494,231272,’McNally’,0,10),(5494,107735,’Sister Angela’,1,11),(5494,4001,’King Edgar’,2,12),(5494,23709,’Mother Superior’,1,13),(5494,127166,’Aard’,2,14),(5494,5576,’El Cabillo (uncredited)’,2,15),(28,8349,’Captain Benjamin L. Willard’,2,0),(28,3084,’Colonel Walter E. Kurtz’,2,1),(28,3087,’Lieutenant Colonel Bill Kilgore’,2,2),(28,8351,’Jay \’Chef\’ Hicks’,2,3),(28,8350,’Lance B. Johnson’,2,4),(28,2975,’Tyrone \’Clean\’ Miller’,2,5),(28,8354,’Chief Phillips’,2,6),(28,3,’Colonel Lucas’,2,7),(28,2778,’Photojournalist’,2,8),(28,3173,’General Corman’,2,9),(28,8346,’Jerry, Civilian’,2,10),(28,349,’Lieutenant Richard M. Colby’,2,11),(28,1739,’Kilgore\’s Gunner’,2,12),(28,1402117,’Mike from San Diego’,2,13),(28,13023,’Miss May’,1,14),(28,550106,’Playmate of the Year’,1,15),(28,1664821,’Playmate’,1,16),(28,14320,’Soldier in Trench’,2,17),(28,80874,’Supply Sergeant’,2,18),(28,159948,’Machine Gunner’,2,19),(28,103853,’AFRS Announcer’,2,20),(28,1532851,’Lieutenant Carlsen’,0,21),(28,65553,’Agent’,2,22),(28,1391387,’Johnny from Malibu / Mike from San Diego’,2,23),(28,43524,’Soldier with Colby (uncredited)’,2,24),(28,107323,’Soldier (uncredited)’,0,25),(28,1073850,’Soldier (uncredited)’,0,26),(28,57925,’Soldier (uncredited)’,2,27),(28,8655,’Eagle Thrust Seven Helicopter Pilot (uncredited)’,2,28),(28,45581,’Extra (uncredited)’,2,29),(28,6952,’Extra (uncredited)’,2,30),(28,7202,’TV Photographer (uncredited)’,2,31),(28,1776,’Director of TV Crew (uncredited)’,2,32),(28,107322,’Bit Part (uncredited)’,0,33),(28,1604873,’Helicopter Skid Marine (uncredited)’,0,34),(28,9893,’Roxanne Sarrault’,1,35),(2054,3037,’Glenn Holland’,2,0),(2054,21104,’Iris Holland’,1,1),(2054,21105,’Bill Meister’,2,2),(2054,3019,’Principal Helen Jacobi’,1,3),(2054,3905,’Vice Principal Gene Wolters’,2,4),(2054,3128,’Gertrude Lang’,1,5),(2054,21107,’Cole Holland ( mit 6. Jahren )’,2,6),(2054,21108,’Cole Holland ( mit 15 Jahren )’,2,7),(2054,21109,’Cole Holland ( mit 28 Jahren )’,2,8),(2054,26495,’Rowena Morgan’,1,9),(2054,18288,’Louis Russ’,2,10),(2054,39597,’Bobby Todd’,2,11),(2054,146182,’Sarah Olmstead’,1,12),(2054,20747,’Governor Gertrude Lang’,1,13),(2054,1881495,’Deaf School Principal’,1,14),(2054,85422,’Mr. Shapiro’,0,15),(606,5064,’Karen Christence Dinesen Blixen’,1,0),(606,4135,’Denys George Finch Hatton’,2,1),(606,10647,’Baron Bror Blixen/Baron Hans Blixen’,2,2),(606,10648,’Berkeley Cole’,2,3),(606,10649,’Farah’,2,4),(606,10650,’Kamante’,2,5),(606,10651,’Kinanjui’,2,6),(606,3796,’Lord Delamere’,2,7),(606,10652,’Felicity’,1,8),(606,10653,’Lady Belfield’,1,9),(606,10654,’Lord Belfield’,2,10),(606,10655,’Sir Joseph’,2,11),(606,10656,’Juma’,0,12),(606,10657,’Belknap, farm manager’,2,13),(606,10658,’Kanuthia’,0,14),(606,1154526,’Ismail’,0,15),(606,2124,’Mariammo’,1,16),(698,10222,’James Bond’,2,0),(698,10475,’Dr. Holly Goodhead’,1,1),(698,2369,’Hugo Drax’,2,2),(698,10476,’Corinne Dufour’,1,3),(698,10460,’Jaws’,0,4),(698,9874,’M’,2,5),(698,10462,’Sir Frederick Gray’,2,6),(698,9906,’Q’,2,7),(698,9878,’Miss Moneypenny’,1,8),(698,10479,’Chang’,0,9),(698,10481,’Manuela’,0,10),(698,10483,’Dolly’,0,11),(698,931614,’Blonde Beauty’,0,12),(698,1303696,’Hostess Private Jet’,1,14),(698,6610,’General Gogol’,0,15),(698,30119,’Consumptive Italian’,2,18),(698,19613,’Col. Scott’,2,20),(698,178411,’Mission Control Director’,2,21),(698,219130,’Cavendish’,2,22),(6488,8447,’Dr. Ross Jennings’,2,0),(6488,27106,’Molly Jennings’,1,1),(6488,76239,’Tommy Jennings’,2,2),(6488,1573174,’Shelley Jennings’,0,3),(6488,6104,’Doctor James Atherton’,2,4),(6488,27238,’Chris Collins’,2,5),(6488,1230,’Delbert McClintock’,2,6),(6488,52043,’Sheriff Lloyd Parsons’,2,7),(6488,5732,’Doctor Sam Metcalf’,2,8),(6488,11794,’Evelyn Metcalf’,0,9),(6488,12888,’Irv Kendall’,2,10),(6488,162605,’Blaire Kendall’,1,11),(6488,152696,’Margaret Hollins’,1,12),(6488,51551,’Milton Briggs’,2,13),(6488,6916,’Henry Beechwood’,2,14),(6488,140591,’Edna Beechwood’,1,15),(6488,1434979,’Bunny Beechwood’,0,16),(6488,1573198,’Becky Beechwood’,0,17),(6488,157909,’Bobby Beechwood’,0,18),(6488,33285,’Brandy Beechwood’,1,19),(6488,1573659,’Todd Miller’,0,20),(6488,78003,’Jerry Manley’,0,21),(6488,1213749,’Henrietta Manley’,0,22),(6488,1573632,’Dick Manley’,0,23),(6488,1334990,’Mayor Bob’,0,24),(6488,1573636,’Irv\’s Assistant’,2,25),(6488,1573662,’Mover’,0,26),(6488,93043,’Little Girl’,0,27),(6488,1573655,’Mom’,0,28),(6488,1573670,’Girlfriend’,0,29),(6488,1278542,’Reserve Pilot’,2,30),(6488,1607,’Miguel Higueras (uncredited)’,2,31),(8012,8891,’Chili Palmer’,2,0),(8012,193,’Harry Zimm’,2,1),(8012,14343,’Karen Flores’,1,2),(8012,518,’Martin Weir’,2,3),(8012,1117,’Ray \’Bones\’ Barboni’,2,4),(8012,18792,’Bo Catlett’,2,5),(8012,4691,’Bear’,2,6),(8012,9629,’Ronnie Wingate’,2,7),(8012,53600,’Nicki’,0,8),(8012,19839,’Leo Devoe’,2,9),(8012,4790,’Tommy Carlo’,2,10),(8012,30488,’Mr. Escobar’,2,11),(8012,16429,’Yayo Portillo’,2,12),(8012,53601,’Dick Allen’,2,13),(8012,53602,’Fay Devoe’,1,14),(8012,141582,’Bones\’ Buddy’,0,15),(1574,1922,’Velma Kelly’,1,0),(1574,9137,’Roxie Hart’,1,1),(1574,15758,’Matron Mama Morton’,1,2),(1574,1205,’Billy Flynn’,2,3),(1574,11870,’Mary Sunshine’,1,4),(1574,17637,’Bandleader’,2,5),(1574,17638,’Stage Manager’,2,6),(1574,17287,’Fred Casely’,2,7),(1574,4764,’Amos Hart’,2,8),(1574,10132,’Harrison’,2,9),(1574,17639,’Nickie’,1,10),(1574,17640,’Liz’,1,11),(1574,17641,’Annie’,1,12),(1574,17642,’June’,1,13),(1574,17643,’Mona’,1,14),(1574,17644,’Hunyak’,1,15),(1574,140,’Kitty Baxter’,1,16),(1574,17645,’Bailiff’,0,17),(1574,17646,’Judge’,2,18),(1574,4568,’Mrs. Borusewicz’,1,19),(9032,19292,’Sonny Koufax’,2,0),(9032,16484,’Layla Maloney’,1,1),(9032,56128,’Vanessa’,1,2),(9032,56730,’Julian \’Frankenstien\’ McGrath’,2,3),(9032,12219,’Kevin Gerrity’,2,4),(9032,41087,’Corinne Maloney’,1,5),(9032,20818,’Phil D\’Amato’,2,6),(9032,60949,’Delivery Guy’,2,7),(9032,20819,’Tommy Grayton’,2,8),(9032,884,’Homeless Guy’,2,9),(9032,95686,’Julian \’Frankenstien\’ McGrath’,2,10),(9032,33489,’Arthur Brooks’,2,11),(9032,46946,’Lenny Koufax’,2,12),(9032,58477,’Mike’,0,14),(9032,56728,’Singing Kangaroo’,2,15),(9032,111679,’Mr. Herlihy’,2,16),(9032,171986,’Restaurant Owner’,0,17),(9032,1225349,’Paralegal’,0,18),(9032,60961,’Jared’,0,19),(9032,60959,’Waitress’,1,20),(2770,21593,’Jim Levenstein’,2,0),(2770,21403,’Kevin Myers’,2,1),(2770,21594,’Chris \’Oz\’ Ostreicher’,2,2),(2770,57599,’Steve Stifler’,2,3),(2770,52480,’Paul Finch’,2,4),(2770,21596,’Nadia’,1,5),(2770,21595,’Michelle Flaherty’,1,6),(2770,10871,’Jessica’,1,7),(2770,1234,’Victoria \’Vicky\’ Lathum’,1,8),(2770,8211,’Heather’,1,9),(2770,26999,’Chuck Sherman’,2,10),(2770,26510,’Jim\’s Father’,2,11),(2770,54586,’Jim\’s Mother’,1,12),(2770,17641,’Danielle’,1,13),(2770,55619,’Amber’,1,14),(2770,68842,’John’,2,15),(2770,88507,’Justin’,2,16),(2770,116027,’Matt Stifler’,2,17),(2770,1893,’Tom Myers’,2,18),(2770,168014,’Amy’,1,19),(2770,168897,’Amy\’s Friend’,1,20),(2770,62065,’Amy\’s Friend’,1,21),(2770,1214402,’Trucker’,2,22),(2770,3237,’Natalie’,1,23),(2770,16476,’Natalie\’s Dad’,2,24),(2770,23975,’Natalie\’s Mom’,1,25),(2770,59184,’Sergeant’,2,26),(2770,153942,’Michelle\’s Friend’,1,27),(2770,14669,’Camp Director’,2,28),(2770,1569166,’R.A.’,2,29),(2770,1656625,’Grand Harbor Sheriff’,2,30),(2770,11915,’Cop’,2,31),(2770,25711,’Doctor’,2,32),(2770,149776,’Bus Driver Lady’,1,33),(2770,99206,’Christy’,1,34),(2770,168872,’Petey’,2,35),(2770,24435,’Enthusiastic Guy’,2,36),(2770,81270,’Girl at Party’,1,37),(2770,34070,’Girl at Party’,1,38),(2770,33052,’High School Guy’,2,39),(2770,11702,’High School Guy’,2,40),(2770,172339,’Counselor’,2,41),(2770,91215,’Mom’,1,42),(2770,114021,’Dad’,2,43),(2770,1216502,’Kid’,2,44),(2770,168387,’Female EMT’,1,45),(2770,58620,’Male EMT’,2,46),(2770,164618,’Cashier’,2,47),(2770,1217939,’Grill Guy’,2,48),(2770,105614,’College Party Girl’,1,49),(2770,38334,’Stifler\’s Mom (uncredited)’,1,50),(2770,1263449,’Bystander at Stoplight (uncredited)’,2,51),(2770,62710,’Marco (uncredited)’,2,52),(2770,1656631,’Jello-Shot Girl (uncredited)’,1,53),(2770,1757845,’Trumpet Kid’,0,54),(2770,1757846,’Woman in Bed’,1,55),(2770,1757847,’High School Guy’,0,56),(2770,1757848,’Cowboy Hat Girl’,1,57),(2770,1757849,’Deputy’,1,58),(2770,1757851,’Deputy’,0,59),(2770,21584,’Younger Business Suit’,2,60),(2770,7409,’Older Business Suit’,0,61),(2770,1757854,’Abercrombie & Fitch Guy’,0,62),(2770,1757855,’Finch Girl’,1,63),(2770,1757856,’Finch Girl’,1,64),(2770,1517843,’Boy with Monkey’,2,65),(2770,1757857,’Party Girl’,0,66),(2770,1757858,’Amy\’s Friend’,1,67),(2770,1552499,’Counselor’,0,68),(2770,1757859,’Female Deputy’,1,69),(2770,1757860,’Beach Party Animal’,0,70),(2770,103268,’Girl at Party’,1,71),(2770,1237654,’Party Guest’,1,72),(2770,1340977,’Police Officer’,0,73),(2770,1757861,’Girl at Party’,1,74),(2770,1757862,’Johnny C’,0,75),(2770,1757863,’Girl at Party’,1,76),(2770,94561,’College Professor’,0,77),(2770,1757864,’Tasteless Shopper’,0,78),(2770,1757865,’Thrift Store Employee’,1,79),(2770,1757867,’Girl at Party’,1,80),(2770,1522212,’Amy\’s Friend’,1,81),(2770,1757868,’Band Camp Attendee’,1,82),(2770,1757869,’Boy at Party’,0,83),(2770,1757870,’High School Guy’,0,84),(2770,1193099,’Tourist’,0,85),(2770,1757871,’Band Camp Attendee’,0,86),(2770,1757872,’Stifler\’s Friend’,0,87),(2770,1757873,’New York Cabbie’,0,88),(862,31,’Woody (voice)’,2,0),(862,12898,’Buzz Lightyear (voice)’,2,1),(862,7167,’Mr. Potato Head (voice)’,2,2),(862,12899,’Slinky Dog (voice)’,2,3),(862,12900,’Rex (voice)’,2,4),(862,7907,’Hamm (voice)’,2,5),(862,8873,’Bo Peep (voice)’,1,6),(862,1116442,’Andy (voice)’,0,7),(862,12901,’Sid (voice)’,2,8),(862,12133,’Mrs. Davis (voice)’,1,9),(862,8655,’Sergeant (voice)’,2,10),(862,12903,’Hannah (voice)’,1,11),(862,37221,’TV Announcer (voice)’,2,12),(1637,6384,’Jack Traven’,2,0),(1637,2778,’Howard Payne’,2,1),(1637,18277,’Annie Porter’,1,2),(1637,3977,’Capt. McMahon’,2,3),(1637,8447,’Harold \’Harry\’ Temple’,2,4),(1637,2394,’Stephens’,2,5),(1637,2683,’Jaguar Owner’,2,6),(1637,3205,’Norwood’,2,7),(1637,5151,’Helen’,1,8),(1637,12056,’Sam’,2,9),(1637,33712,’Ortiz’,2,10),(1637,52418,’Terry’,2,11),(1637,157048,’Mrs. Kamino’,1,12),(1637,1192358,’Ray’,0,13),(1637,1872781,’Bus Passenger #1′,0,14),(1637,1734769,’Bus Passenger #2′,1,15),(1637,1872782,’Bus Passenger #3′,0,16),(1637,1872784,’Robin’,0,17),(1637,33713,’Bagwell’,2,18),(1637,161897,’Young Executive’,2,19),(1637,52801,’Friend of Executive’,2,20),(1637,91427,’CEO’,0,21),(1637,104059,’Female Executive’,1,22),(1637,204749,’S.W.A.T. Driver’,2,23),(1637,271738,’S.W.A.T. Cop’,0,24),(1637,1872804,’Baby Carriage Woman #1′,0,25),(1637,1392883,’Baby Carriage Woman #2′,0,26),(1637,42308,’Commissioner’,2,27),(1637,31007,’Bob’,2,28),(1637,43010,’Vince’,0,29),(1637,97446,’Workman’,2,30),(1637,110122,’News Anchor #1′,0,31),(1637,1213044,’News Anchor #2′,1,32),(1637,1228624,’News Cameraman’,0,33),(1637,83782,’Reporter #1′,2,34),(1637,149545,’Reporter #2′,0,35),(1637,1872805,’Reporter #3′,0,36),(1637,31028,’Train Driver’,2,37),(1637,90339,’Cop’,2,38),(1637,53931,’Bartender’,1,39),(1637,1872814,’Mrs. McMahon’,0,40),(1637,153941,’Additional Bus Passenger #1′,2,41),(1637,1872788,’Additional Bus Passenger #2′,0,42),(1637,173177,’Additional Bus Passenger #3′,1,43),(1637,1872794,’Additional Bus Passenger #4′,0,44),(1637,1872797,’Additional Bus Passenger #5′,0,45),(1637,167069,’Additional Bus Passenger #6′,1,46),(1637,168881,’Additional Bus Passenger #7′,1,47),(1637,1378721,’Additional Bus Passenger #8′,0,48),(1637,1872803,’Elevator Passenger #1′,0,49),(1637,1223848,’Elevator Passenger #2′,0,50),(1637,173194,’Elevator Passenger #3′,1,51),(1637,1872821,’Elevator Passenger #4′,0,53),(1637,1872823,’Elevator Passenger #5′,0,54),(1637,1397393,’Elevator Passenger #6′,0,55),(1637,1385665,’Elevator Passenger #7′,0,56),(1637,1872824,’Elevator Passenger #8′,0,57),(1637,1872825,’Elevator Passenger #9′,0,59),(1669,7447,’Jack Ryan’,2,0),(1669,738,’Marko Ramius’,2,1),(1669,349,’Commander Bart Mancuso’,2,2),(1669,4783,’Captain Vasily Borodin’,2,3),(1669,15152,’Admiral James Greer’,0,4),(1669,14324,’Ambassador Andrei Lysenko’,2,5),(1669,12518,’Dr. Jeffrey Pelt’,2,6),(1669,1640,’Captain Viktor Tupolev’,2,7),(1669,24047,’Sonarman 2nd Class Ronald Jones’,2,8),(1669,22109,’Ivan Putin’,2,9),(1669,13472,’Dr. Yevgeniy Petrov’,2,10),(1669,4004,’Skip Tyler’,2,11),(1669,17396,’Bill Steiner’,2,12),(1669,912,’Chief of the Boat’,2,13),(1669,17874,’Admiral Painter’,0,14),(1669,177765,’Cpt. Davenport’,2,15),(1669,51582,’Seaman Beaumont’,2,16),(1669,141747,’Lt. Commander Thompson’,0,17),(1669,47085,’Lt. Melekhin’,2,18),(1669,941,’Loginov’,2,19),(1669,20761,’Russian COB’,2,20),(1669,1538,’Navigator C-2A’,0,21),(1669,1883521,’Seaman – USS Dallas’,0,22),(1669,27678,’Seaman – USS Dallas’,0,23),(1669,53593,’Seaman – USS Dallas’,2,24),(1669,58556,’Officer #1 – Red October’,0,25),(1669,1233647,’Officer #2 – Red October’,0,26),(1669,20761,’Russian COB – Red October’,2,27),(1669,237370,’Slavin – Red October’,0,28),(1669,1883551,’Seaman – Red October’,0,29),(1669,2392,’Caroline Ryan’,1,30),(1669,36218,’Andrei Amalric’,2,31),(9472,4937,’Peter La Fleur’,2,0),(9472,15286,’Kate Veatch’,1,1),(9472,7399,’White Goodman’,2,2),(9472,9626,’Patches O\’Houlihan’,2,3),(9472,15033,’Justin’,2,4),(9472,23532,’Pepper Brooks’,2,5),(9472,17401,’Gordon’,2,6),(9472,59231,’Owen’,2,7),(9472,1214427,’Dwight’,2,8),(9472,21088,’Steve the Pirate’,2,9),(9472,1294,’Fran’,1,10),(9472,74931,’Me\’Shell Jones’,2,11),(9472,21163,’Cotton McKnight’,2,12),(9472,5587,’Young Patches O\’Houlihan’,2,13),(9472,987739,’Tournament Referee’,2,14),(9472,1016433,’Lazer’,2,15),(9472,51576,’Chuck Norris’,2,16),(9472,1482447,’Cheerleader #2′,2,17),(9472,28238,’German Coach’,2,18),(2907,27888,’Gomez Addams’,2,0),(2907,5657,’Morticia Addams’,1,1),(2907,1062,’Uncle Fester’,2,2),(2907,6886,’Wednesday Addams’,1,3),(2907,9631,’Lurch’,2,4),(2907,6486,’Tully Alford’,2,5),(2907,119866,’Pugsley Addams’,2,6),(2907,10776,’Abigail Craven/Dr. Greta Pinder-Schloss’,0,7),(2907,13314,’Margaret Alford/Margaret Addams’,1,8),(2907,119864,’Grandma’,1,9),(2907,41243,’Judge Womack’,2,10),(2907,50400,’Thing’,2,11),(2907,66986,’Cousin It’,2,12),(2907,119867,’Digit Addams’,2,13),(2907,123149,’Girl Scout’,1,14),(2907,119868,’Dexter Addams’,0,15),(2907,67569,’Donald Addams’,0,16),(2907,1888071,’Flora Amor’,0,17),(2907,1888072,’Fauna Amor’,0,18),(9273,206,’Ace Ventura’,2,0),(9273,3547,’Fulton Greenwall’,2,1),(9273,4001,’Vincent Cadby’,2,2),(9273,57096,’Ouda’,2,3),(9273,4029,’Burton Quinn’,2,4),(9273,2598,’The Wachati Princess’,1,5),(9273,88059,’The Tiny Warrior’,2,6),(9273,31164,’Hitu’,2,7),(9273,1080060,’Wachootoo Witch Doctor’,0,8),(9273,1080061,’Wachootoo Chief’,0,9),(9273,172354,’Wachati Chief’,2,10),(9273,158324,’Mick Katie’,2,11),(9273,27752,’Gahjii’,2,12),(9273,171303,’Derrick McCane’,0,13),(9273,1080062,’Ashram Monk’,0,14),(9880,1813,’Amelia Mia Thermopolis’,1,0),(9880,5823,’Queen Clarisse Renaldi’,1,1),(9880,33656,’Lilly Moscovitz’,1,2),(9880,17242,’Michael Moscovitz’,2,3),(9880,1210,’Joe’,2,4),(9880,16855,’Lana Thomas’,1,5),(9880,6692,’Helen Thermopolis’,1,6),(9880,12901,’Josh Bryant’,2,7),(9880,25540,’Vice Principal Gupta’,1,8),(9880,115730,’Jeremiah Hart’,2,9),(9880,33836,’Teacher Patrick O\’Connell’,0,10),(9880,303542,’Charlotte Kutaway’,1,11),(9880,75333,’Gym Teacher Ms. Harbula’,0,12),(9880,1523044,’Cheerleader Anna’,0,14),(9880,1464357,’Music Teacher Wells’,0,15),(9880,149213,’Cheerleader Fontana’,0,16),(9880,95469,’Ball Reporter’,1,17),(9880,33832,’Baron Siegfried von Troken’,2,18),(9880,83053,’Lady Caroline’,1,19),(9880,568659,’Cheerleader Lupe’,0,20),(9880,62737,’Cable Show Student Melissa’,0,21),(9880,168249,’Bobby Bad’,0,22),(9880,1708672,’Student Meredith’,0,23),(9880,1526177,’Newspaper Student Anita’,0,24),(9880,1708675,’Singing Student Alice’,0,25),(9880,191277,’Lana\’s Date Eric’,2,26),(9880,1708678,’Coach Joe Ewe’,0,27),(9880,12223,’Prime Minister Motaz’,2,28),(9880,1274512,’Maria Motaz’,0,29),(9880,87287,’Baroness Joy von Troken’,1,30),(9880,1708683,’Emperor Sakamoto’,0,31),(9880,1708684,’Princess Palisades’,1,32),(9880,1708688,’Scottish Duke’,0,33),(9880,1708689,’Scottish Duchess’,0,34),(9880,549087,’Count Vitello’,0,35),(9880,1708713,’Lady Lindenlaub’,0,36),(9880,13451,’Lady Evergreen’,1,37),(9880,999716,’Lord Fricker’,0,38),(9880,83056,’State Dinner Waiter’,2,39),(9880,1708724,’State Dinner Waiter (as Alan Kent)’,0,40),(9880,140252,’Consulate Valet Adolpho (as Bob Glaudini)’,0,41),(9880,101266,’Consulate Guard Darrell’,0,42),(9880,106056,’Consulate Maitre D\”,2,43),(9880,177205,’Limo Driver Mel’,2,44),(9880,1708777,’Gretchen’,0,45),(9880,1708778,’Helga’,0,46),(9880,1424545,’Lady Jerome’,0,47),(9880,1229463,’Lord Jerome’,0,48),(9880,8189,’Press Secretary Spencer’,1,49),(9880,1708790,’Countess Puck’,0,50),(9880,1708794,’Ball Guest Diane’,0,51),(9880,32125,’Ball Guest Stanley’,2,52),(9880,1709144,’Ball Guest Barbara (as Barbara J. Nabozny)’,0,53),(9880,1709148,’Ball Guest Dr. Glunk’,0,54),(9880,1709149,’Lawyer Ball Guest’,0,55),(9880,225804,’Father Joseph’,0,56),(9880,196286,’Himself’,0,57),(9880,31471,’Neighbor Mr. Robutusen’,2,58),(9880,1709163,’Police Officer Arthur Washington’,0,59),(9880,1709164,’Doctor Motors’,2,60),(9880,1709166,’Pizza Delivery Man’,0,61),(9880,1216158,’Climbing Manager Schiavone’,2,62),(9880,1542807,’Climbing Instructor Vivian’,0,63),(9880,1214463,’Cable Tourist’,0,64),(9880,222719,’Umbrella Lady’,0,65),(9880,166654,’Tour Bus Driver’,2,66),(9880,159940,’Michael\’s Band Flypaper’,0,67),(9880,1660185,’Michael\’s Band Flypaper (as Harold Carter)’,0,68),(9880,1709176,’Pear Juggler’,0,69),(9880,1215608,’DJ Mark’,2,70),(9880,1709182,’Kid Autograph Seeker’,0,71),(9880,1229767,’DJ Brian (as Brian W. Phelps)’,2,72),(9880,1709183,’Kid Autograph Seeker’,0,73),(9880,32291,’Suki Sanchez’,1,74),(9880,210311,’Nelson Davenport’,2,75),(9880,35241,’Teen Reporter Cassie’,1,76),(9880,1709197,’Suki\’s Cameraman’,0,77),(9880,552470,’Beach Reporter Ali’,0,78),(9880,101072,’Beach Photographer’,0,79),(9880,1709208,’Beach Reporter Tanya’,0,80),(9880,1709209,’Ball Reporter’,0,81),(9880,175588,’Street Reporter’,0,82),(9880,79075,’Street Reporter’,0,83),(9880,1709210,’Twin Reporter’,0,84),(9880,1709211,’Twin Reporter’,0,85),(2925,18892,’Elise Elliot Atchison’,1,0),(2925,73931,’Brenda Morelli Cushman’,0,1),(2925,3092,’Annie MacDuggan Paradis’,1,2),(2925,10978,’Gunilla Garson Goldberg’,1,3),(2925,6486,’Morton Cushman’,2,4),(2925,8536,’Bill Atchison’,2,5),(2925,4689,’Duarto Feliz’,2,6),(2925,4726,’Dr. Leslie Rosen’,1,7),(2925,40618,’Catherine MacDuggan’,1,8),(2925,6541,’Uncle Carmine Morelli’,2,9),(2925,19189,’Phoebe LaVelle’,1,10),(2925,167120,’Chris Paradis’,1,11),(2925,520,’Shelly Stewart’,1,12),(2925,8893,’Cynthia Swann Griffin’,1,13),(2925,1756,’Aaron Paradis’,2,14),(2925,3026,’Dr. Morris Packman’,2,15),(2925,37421,’Gill Griffin’,2,16),(2925,1763586,’Jason Cushman’,2,17),(2925,28907,’Herself’,0,18),(2925,18082,’Brett Artounian’,2,19),(2925,1763587,’Young Brenda’,1,20),(2925,56567,’Young Elise’,0,21),(2925,166976,’Young Annie’,1,22),(2925,1763588,’Young Cynthia’,0,23),(807,287,’Detective David Mills’,2,0),(807,192,’Detective Lt. William Somerset’,2,1),(807,12052,’Tracy Mills’,1,2),(807,11885,’California’,2,3),(807,1979,’John Doe’,2,4),(807,8655,’Police Captain’,2,5),(807,6487,’Dist. Atty. Martin Talbot’,2,6),(807,31028,’Mark Swarr’,2,7),(807,1558263,’Mrs. Gould’,0,8),(807,534,’Greasy F.B.I. Man’,2,9),(807,12055,’Officer Davis’,2,10),(807,38951,’Dr. Santiago’,2,11),(807,30487,’Dr. O\’Neill’,0,12),(807,12056,’George, Library Night Guard’,2,13),(807,9289,’Man in Booth at Massage Parlor’,2,14),(807,2221,’Crazed Man in Massage Parlor’,2,15),(807,4255,’Dr. Beardsley’,2,16),(807,12054,’Detective Taylor’,2,17),(807,52603,’Fingerprint Technician’,2,18),(807,10688,’911 Operator’,2,19),(807,12047,’Dead Man’,2,20),(807,7472,’Delivery Man’,2,21),(807,128203,’Thin Vagrant’,0,22),(807,157434,’Detective Sara’,1,23),(807,95469,’Woman Cop Behind Desk’,1,24),(807,1583695,’Workman at Door of Somerset\’s Office’,2,25),(807,43461,’Cab Driver’,2,26),(807,1025337,’First Guard at the Library’,2,27),(807,1055173,’Second Guard at the Library’,0,28),(807,95200,’TV News Reporter’,1,29),(807,31533,’First Forensic Man in the Law Office’,2,30),(807,152638,’Eli Gould – Greed Victim’,2,31),(807,176969,’Fingerprint Forensic Man in Law Office’,2,32),(807,1487328,’Cop on SWAT Team’,0,33),(807,17449,’Cop on SWAT Team’,2,34),(807,174037,’Victor – Sloth Victim’,0,35),(807,42200,’Policeman Who Takes Statement from Vagrant’,2,36),(807,1107809,’Wild Bill’,0,37),(807,91843,’First Cop at Massage Parlor’,2,38),(807,9783,’Sweating Cop at Massage Parlor’,0,39),(807,175120,’Paramedic at Massage Parlor’,2,40),(807,1492029,’Paramedic at Massage Parlor’,0,41),(807,1114784,’Additional 911 Operator’,1,42),(807,11321,’Pride Victim’,1,43),(807,168162,’Duty Sergeant’,2,44),(807,54433,’Helicopter Pilot’,0,45),(807,16563,’SWAT Helicopter Pilot’,0,46),(807,17764,’Cop (uncredited)’,2,47),(807,944,’Man in Library (uncredited)’,2,48),(322,2228,’Jimmy Markum’,2,0),(322,504,’Dave Boyle’,2,1),(322,4724,’Sean Devine’,2,2),(322,2975,’Sergeant Whitey Powers’,2,3),(322,4726,’Celeste Boyle’,1,4),(322,350,’Annabeth Markum’,1,5),(322,4728,’Val Savage’,2,6),(322,4729,’Brendan Harris’,2,7),(322,4730,’Katie Markum’,1,8),(322,3265,’Mr. Loonie – Liquor Store Owner’,2,9),(322,4012,’Silent Ray Harris’,2,10),(322,4731,’John O\’Shea’,0,11),(322,4732,’Nick Savage’,2,12),(322,4733,’Kevin Savage’,2,13),(322,4734,’Esther Harris’,1,14),(322,4735,’Driver’,2,15),(322,4736,’Young Dave’,2,16),(322,4737,’Young Jimmy’,0,17),(322,4738,’Young Sean’,2,18),(322,4739,’Jimmy\’s Father’,0,19),(322,4740,’Sean\’s Father’,0,20),(322,4741,’Michael Boyle’,2,21),(322,4742,’Lauren Devine’,0,22),(322,4743,’Pete’,2,23),(70,190,’Frankie Dunn’,2,0),(70,448,’Maggie Fitzgerald’,1,1),(70,192,’Eddie Scrap-Iron Dupris’,2,2),(70,449,’Danger Barch’,2,3),(70,450,’Big Willie Little’,2,4),(70,451,’Billie \’The Blue Bear\”,0,5),(70,31713,’Father Horvak’,2,6),(70,53650,’Shawrelle Berry’,2,7),(70,452,’Earline Fitzgerald’,1,8),(70,453,’Mardell Fitzgerald’,1,9),(70,454,’Omar’,2,10),(70,2137,’Billie\’s Manager’,2,11),(70,155576,’Mickey Mack’,0,12),(70,170123,’Counterman at Diner’,0,13),(70,120257,’Cut Man’,2,14),(70,154950,’J.D. Fitzgerald’,0,15),(70,154727,’Lawyer’,0,16),(70,1569711,’Nurse’,0,17),(70,1586436,’Pakistani’,0,18),(70,1569718,’Little Girl in Truck’,0,19),(70,154551,’Paramedic’,2,20),(70,156617,’Rehab Nurse’,1,21),(70,122596,’Ref #3′,0,22),(70,1226344,’Ref #6′,0,23),(70,945062,’Rehab Doctor’,2,24),(70,34840,’Restaurant Owner’,0,25),(70,1498427,’Ring Doctor’,2,26),(70,8591,’Ring Doctor’,0,27),(70,137529,’Sally Mendoza’,2,28),(70,73132,’Second at Vegas Fight’,2,29),(70,1530544,’Radio Commentator’,0,30),(70,1612130,’Irish Fan’,2,31),(70,77740,’Irish Fan’,1,32),(70,1231315,’Irish Fan’,2,33),(70,62097,’Irish Fan’,1,34),(70,1309077,’Las Vegas Fight Fan (uncredited)’,0,35),(70,1578275,’Las Vegas Fight Fan (uncredited)’,2,36),(70,1482411,’VIP Girl (uncredited)’,1,37),(70,90449,’Boxer (uncredited)’,2,38),(70,1397907,’Boxer (uncredited)’,0,39),(70,1429651,’Sparring Boxer (uncredited)’,0,40),(70,8693,’Hogan (uncredited)’,2,41),(70,1243132,’Perez (uncredited)’,0,42),(70,1303212,’Fight Fan (uncredited)’,0,43),(70,1435775,’Irish Fan (uncredited)’,0,44),(70,1209723,’Boxing Fan (uncredited)’,0,45),(70,1275524,’Fan (uncredited)’,0,46),(70,1245674,’Additional Voices (voice) (uncredited)’,2,47),(70,122768,’Yugoslavian Judge (uncredited)’,0,48),(9535,380,’Paul Vitti’,2,0),(9535,7904,’Dr. Ben Sobel’,2,1),(9535,14406,’Laura MacNamara Sobel’,1,2),(9535,9046,’Primo Sidone’,2,3),(9535,60023,’Jelly’,2,4),(9535,28640,’Caroline’,1,5),(9535,162149,’Michael Sobel’,2,6),(9535,17923,’Tuna’,2,7),(9535,1286269,’Extra Sea World Scene’,0,8),(9535,67524,’Carlo Mangano’,2,9),(9535,943751,’Sheila’,1,10),(9535,1179646,’\’50s Gangster’,0,11),(9535,1698607,’Young Vitti Sr.’,0,12),(9535,1698609,’Young Dominic Manetta’,0,13),(9535,13605,’Dominic Manetta’,2,14),(9535,3086,’Jimmy Boots’,0,15),(9535,7133,’Nicky Shivers’,2,16),(9535,17695,’Dr. Isaac Sobel’,2,17),(9535,15442,’FBI Agent Steadman’,2,18),(9535,11482,’Moony’,2,19),(9535,39599,’Frankie Zello’,2,20),(6557,25541,’Jane Nichols’,1,0),(6557,11006,’Kevin Doyle’,2,1),(6557,50463,’Tess Nichols’,1,2),(6557,20750,’Casey’,1,3),(6557,12833,’George’,2,4),(6557,404,’Maureen’,1,5),(6557,50464,’Hal Nichols’,2,6),(6557,1214403,’Trent’,0,7),(6557,50466,’Pedro’,2,8),(6557,78080,’Gina the Goth’,1,9),(6557,50465,’Taxi Fahrer Khaleel’,2,10),(6557,1254435,’Young Jane’,1,11),(6557,1154564,’Bridal Salesgirl’,1,12),(6557,209730,’Bride Suzanne’,0,13),(6557,203430,’Hip Bridesmaid’,0,14),(6557,993689,’Shari Rabinowitz’,1,15),(6557,550851,’Rabbi’,0,16),(6557,1558649,’Salesgirl Olga’,0,17),(6557,1564961,’Young Tess’,0,18),(6557,1564966,’Cousin Lisa’,0,19),(6557,1009503,’Hindu Priest’,2,20),(6557,1616046,’Yoga Instructor’,1,21),(6557,47085,’Antoine’,2,22),(6557,180495,’Boathouse Chef’,2,23),(6557,2256,’Dive Bartender’,2,24),(6557,72994,’Bar Dude’,2,25),(6557,1616051,’Diner Waitress’,1,26),(6557,38416,’Diner Waitress’,1,27),(6557,169906,’Jane\’s Aunt’,1,28),(6557,66630,’Boat Bride’,1,29),(6557,1616052,’Jane\’s Minister’,2,30),(4476,287,’Tristan Ludlow’,2,0),(4476,4173,’Col. William Ludlow’,2,1),(4476,18992,’Alfred Ludlow’,2,2),(4476,15887,’Susannah Fincannon Ludlow’,1,3),(4476,9976,’Samuel Ludlow’,0,4),(4476,11068,’Isabel Two Decker Ludlow’,1,5),(4476,37430,’One Stab’,2,6),(4476,37431,’James O\’Banion’,2,7),(4476,37432,’John T. O\’Banion’,2,8),(4476,1048574,’Samuel Decker’,0,9),(4476,7863,’Pet’,1,10),(4476,174943,’Decker’,0,11),(4476,94978,’Isabel Ludlow’,1,12),(4476,6074,’Sheriff Tynert’,0,13),(4476,118462,’Longley’,2,14),(4476,184106,’Rodriguez’,0,15),(4476,44208,’Asgaard’,2,16),(4476,78105,’Boy Tristan’,2,17),(4476,33337,’Teen Tristan’,2,18),(4476,95825,’Teen Alfred’,2,19),(4476,1077328,’Teen Samuel’,0,20),(4476,222556,’Young Isabel Two’,0,21),(4476,1077329,’Isabel Three’,0,22),(4476,105791,’Federal Officer’,2,23),(4476,1077330,’Noel’,0,24),(2755,514,’Warren R. Schmidt’,2,0),(2755,8534,’Roberta Hertzel’,1,1),(2755,15250,’Jeannie Schmidt’,1,2),(2755,20212,’Randall Hertzel’,2,3),(2755,35515,’Helen Schmidt’,1,4),(2755,35516,’Larry Hertzel’,2,5),(2755,35517,’Vicki Rusk’,1,6),(2755,35518,’John Rusk’,2,7),(2755,35520,’Saundra’,1,8),(2755,35521,’Gary Nordin’,2,9),(2755,41247,’Ray Nichols’,2,10),(2755,79344,’Randall\’s Best Man’,0,11),(2755,1631958,’Bridesmaid Reading St. Paul’,1,12),(2755,35519,’Duncan Hertzel’,0,13),(9598,58136,’Babe the Gallant Pig (voice)’,1,0),(9598,6199,’Fly the Female Sheepdog (voice)’,1,1),(9598,52699,’Ferdinand the Duck (voice)’,2,2),(9598,1331,’Rex the Male Sheepdog (voice)’,2,3),(9598,35109,’Maa the Very Old Ewe (voice)’,1,4),(9598,2505,’Farmer Arthur Hoggett’,2,5),(9598,6035,’Dutchess the Cat (voice)’,1,6),(9598,1080206,’Old Ewe (voice)’,0,7),(9598,1080207,’Horse (voice)’,0,8),(9598,1229258,’Cow (voice)’,0,9),(9598,61351,’Rooster (voice)’,2,10),(9598,24368,’Narrator (voice)’,2,11),(9598,45586,’Esme Hoggett’,1,12),(9598,1080208,’The Hoggetts\’ daughter’,0,13),(9598,9380,’The Hoggetts\’ son-in-Law’,2,14),(9598,1080209,’The Hoggets\’ grandson’,0,15),(9598,210276,’The Hoggetts\’ granddaughter’,1,16),(9598,75934,’Valda’,0,17),(9870,41088,’Peter Bretter’,2,0),(9870,40462,’Sarah Marshall’,1,1),(9870,18973,’Rachel Jansen’,1,2),(9870,59919,’Aldous Snow’,2,3),(9870,19278,’Brian Bretter’,2,4),(9870,448309,’Liz Bretter’,1,5),(9870,59257,’Wyoma’,1,6),(9870,58737,’Darald’,2,7),(9870,221945,’Dwayne’,0,9),(9870,160546,’Dr. Rosenbaum’,2,10),(9870,106730,’Keoki’,2,11),(9870,21007,’Matthew the Waiter’,2,12),(9870,22226,’Chuck’,2,13),(9870,1520267,’Greg’,0,14),(9870,81992,’Kemo’,2,15),(9870,13021,’Detective Hunter Rush’,2,16),(9870,83873,’Ann’,0,17),(9870,999605,’Leslie’,0,18),(9870,23532,’Animal Instincts Detective’,2,19),(9870,54708,’Gag Me Girl’,1,20),(9870,41091,’Yoga Instructor’,1,21),(9870,287341,’Billy Bush (Himself)’,2,22),(9870,1290175,’Spanish Sex Girl’,0,23),(9870,1579469,’Puppeteer’,2,24),(9870,149682,’Female Bartender’,1,25),(9870,53607,’Keyboard Player’,2,26),(8292,13240,’Bobby Mercer’,2,0),(8292,8169,’Angel Mercer’,2,1),(8292,37934,’Jeremiah Jerry Mercer’,2,2),(8292,9828,’Jack Mercer’,2,3),(8292,18288,’Lt. Green’,2,4),(8292,2694,’Detective Fowler’,2,5),(8292,63522,’Sofi’,1,6),(8292,58068,’Evelyn Mercer’,1,7),(8292,5294,’Victor Sweet’,2,8),(8292,40036,’Camille Mercer’,1,9),(8292,8689,’Councilman Douglas’,2,10),(8292,55275,’Evan’,2,11),(8292,6074,’Robert Bradford’,0,12),(8292,76528,’Charlie’,2,13),(8292,1239341,’Victor Hoodlum’,0,14),(8292,2687,’Damian’,2,15),(8292,1513364,’Gangbanger’,0,16),(8292,59713,’Gang Leader’,0,17),(8292,1561203,’Maschur’,0,18),(8292,62134,’Keenon’,0,19),(8292,1212933,’Father Lamont’,0,20),(8780,56323,’Kate Holbrook’,1,0),(8780,56322,’Angie Ostrowiski’,1,1),(8780,51298,’Carl’,2,2),(8780,10205,’Chaffee Bicknell’,1,3),(8780,17141,’Rob’,2,4),(8780,67773,’Barry’,2,5),(8780,71530,’Oscar’,2,6),(8780,16307,’Caroline’,1,7),(8780,62831,’Scott’,2,8),(8780,61110,’Stroller Salesman’,2,9),(8780,170977,’Dan’,2,10),(8780,11318,’Rose’,1,11),(8780,8986,’Judge’,2,12),(8780,81681,’Dr. Manheim’,2,13),(8780,590283,’Architect / Rick’,2,14),(8780,111683,’Gay Couple’,0,15),(8780,6751,’Birthing Teacher’,1,16),(8780,1357037,’Rob\’s Daughter’,0,17),(8780,1644918,’Community Member’,2,18),(9715,18277,’Birdee Pruitt’,1,0),(9715,18688,’Justin Matisse’,2,1),(9715,4800,’Ramona Calvert’,1,2),(9715,52404,’Bernice Pruitt’,1,3),(9715,60650,’Bill Pruitt’,2,4),(9715,11074,’Toni Post’,1,5),(9715,215830,’Travis’,2,6),(9715,8854,’Nurse’,2,7),(9715,35517,’Bobbi-Claire’,1,8),(9715,79008,’Teacher’,1,9),(9715,166640,’Orange Julia’,0,10),(9715,180667,’Big Dolores’,1,11),(9715,985463,’Kristen’,1,12),(9715,180547,’Debbie Reissen’,1,13),(9715,1075130,’Dot’,0,14),(4133,85,’George Jung’,2,0),(4133,955,’Mirtha Jung’,1,1),(4133,824,’Tuna’,2,2),(4133,11477,’Fred Jung’,2,3),(4133,679,’Barbara Buckley’,1,4),(4133,3052,’Ermine Jung’,1,5),(4133,5129,’Derek Foreal’,2,6),(4133,31384,’Diego Delgado’,2,7),(4133,7248,’Pablo Escobar’,2,8),(4133,30488,’Augusto Oliveras’,2,9),(4133,34839,’Leon Minghella’,2,10),(4133,7268,’Kevin Dulli’,2,11),(4133,10135,’Young George’,2,12),(4133,34845,’Rada’,1,13),(4133,34847,’Young Kristina Jung’,1,14),(4133,5915,’Kristina Jung’,1,15),(4133,34840,’Alessandro’,0,16),(4133,34841,’Cesar Toban’,2,17),(4133,34842,’Sanchez’,2,18),(4133,95024,’Mr. T’,2,19),(4133,8897,’Dr. Bay’,2,20),(4133,34844,’Maria’,1,21),(4133,34846,’Inez’,0,22),(4133,168881,’Clara Blanca’,1,23),(4133,65421,’Martha Oliveras’,1,24),(4133,34849,’Archie Sigmond’,2,25),(4133,1215378,’FBI Waiter #1′,2,26),(4133,1588715,’FBI Waiter #3′,2,27),(4133,1588704,’FBI Waiter #4′,2,28),(4133,1588721,’Beach Woman #1′,1,29),(4133,34848,’Beach Woman #2′,0,30),(4133,5378,’Beach Woman #3′,1,31),(4133,4728,’DEA Eastham’,2,32),(4133,143331,’Emilio Ochoa’,2,33),(172,1748,’Captain James T. Kirk’,2,0),(172,1749,’Captain Spock’,2,1),(172,1750,’Dr. Leonard McCoy’,0,2),(172,1751,’Montgomery Scott’,2,3),(172,1752,’Cmdr. Hikaru Sulu’,0,4),(172,1754,’Cmdr. Pavel Chekov’,2,5),(172,1753,’Cmdr. Uhura’,1,6),(172,2076,’St. John Talbot’,2,7),(172,2077,’Sybok’,2,8),(172,2078,’Gen. Korrd’,2,9),(172,2079,’Caithlin Dar’,1,10),(172,2080,’Capt. Klaa’,2,11),(172,2081,’God’,2,12),(172,1444735,’Young Sarek’,0,13),(707,10222,’James Bond’,2,0),(707,4690,’Max Zorin’,2,1),(707,10660,’Stacey Sutton’,1,2),(707,10661,’May Day’,1,3),(707,10662,’Tibbett’,2,4),(707,5274,’Scarpine’,0,5),(707,696,’Chuck Lee’,0,6),(707,10663,’Pola Ivanova’,1,7),(707,99366,’Bob Conley’,0,8),(707,739,’Jenny Flex’,1,9),(707,10664,’Dr. Carl Mortner’,2,10),(707,9906,’Q’,2,11),(707,10513,’M’,2,12),(707,9878,’Miss Moneypenny’,1,13),(707,6610,’General Gogol’,0,14),(707,10462,’Minister of Defence’,2,15),(707,35881,’Aubergine’,0,16),(707,58663,’Howe’,2,17),(707,1327765,’Klotkoff’,0,18),(707,8668,’Pah Ho (as Papillon Soo Soo)’,0,19),(707,147290,’Kimberley Jones’,1,20),(707,1835883,’Butterfly Act Compere’,0,21),(707,1225724,’Whistling Girl’,0,22),(707,1211876,’Taiwanese Tycoon (as Anthony Chin)’,0,23),(707,550424,’Paris Taxi Driver (as Lucien Jerome)’,0,24),(707,169910,’U.S. Police Captain’,0,25),(707,1835885,’Auctioneer’,0,26),(707,16644,’Venz’,2,27),(707,126536,’Mine Foreman’,0,28),(707,548088,’O\’Rourke’,0,29),(707,1490615,’Guard I’,2,30),(707,1835886,’Guard II’,0,31),(707,1835887,’Tycoon’,0,32),(707,1646963,’Helicopter Pilot’,0,33),(707,1835888,’The Girls’,0,34),(707,1835889,’The Girls’,0,35),(707,1835890,’The Girls’,0,36),(707,1835891,’The Girls’,0,37),(707,1835892,’The Girls’,0,38),(707,1835893,’The Girls’,0,39),(707,1835894,’The Girls’,0,40),(707,1835895,’The Girls’,0,41),(533,7317,’Wallace / Hutch’,2,0),(533,1283,’Lady Campanula Tottington’,1,1),(533,5469,’Victor Quartermaine’,2,2),(533,7319,’Reverend Clement Hedges’,2,3),(533,7320,’Mrs. Mulch’,1,4),(533,7321,’Mr. Windfall’,2,5),(533,127149,’Mr. Caliche’,2,6),(533,8326,’Miss Thripp’,1,7),(533,127150,’Mr. Growbag’,2,8),(533,127151,’Mr. Mulch’,2,9),(533,127152,’Mr. Dibber’,0,10),(533,127153,’Mr. Crock’,0,11),(533,127154,’Mrs. Girdling’,0,12),(533,127155,’Mr. Leaching’,0,13),(533,8399,’Additional Voice’,2,14),(533,11351,’Additional Voice’,2,15),(533,127156,’Additional Voice’,0,16),(533,34546,’Miss Blight’,2,17),(533,7318,’PC Mackintosh’,2,18),(533,214477,’Various (uncredited)’,0,19),(6023,448,’Holly’,1,0),(6023,17276,’Gerry’,2,1),(6023,14406,’Denise’,1,2),(6023,18688,’Daniel’,2,3),(6023,11150,’Sharon’,1,4),(6023,47296,’William’,2,5),(6023,8534,’Patricia’,1,6),(6023,47297,’John’,2,7),(6023,47298,’Ciara’,1,8),(6023,47777,’Rose Kennedy’,0,9),(6023,47778,’Martin Kennedy’,2,10),(6023,68763,’Tom’,2,11),(6023,1005147,’Barbara’,1,12),(6023,163664,’Vicky’,0,13),(6023,121939,’Ted’,2,14),(6023,1376588,’Minister’,0,15),(6023,1232543,’Elderly Woman’,1,16),(6023,1446943,’Patsy’,0,17),(6023,7234,’Guy with Clipboard’,0,18),(6023,27107,’Leprechaun’,2,19),(6023,1376150,’Waitress’,0,20),(6023,1162288,’Local Gal’,0,21),(6023,104942,’Mailman’,2,22),(6439,51391,’Stripes (voice)’,2,0),(6439,16855,’Sandy (voice)’,1,1),(6439,17265,’Channing Walsh’,1,2),(6439,21089,’Nolan Walsh’,2,3),(6439,61980,’Clara Dalrymple’,1,4),(6439,588,’Woodzie’,2,5),(6439,19767,’Lightning (voice)’,2,6),(6439,61981,’Clydesdale (voice)’,2,7),(6439,60736,’Reggie (voice)’,2,8),(6439,2395,’Franny (voice)’,1,9),(6439,82587,’Buzz (voice)’,2,10),(6439,4483,’Tucker (voice)’,2,11),(6439,11866,’Trenton\’s Pride (voice)’,2,12),(6439,532,’Goose (voice)’,2,13),(6439,19975,’Ruffshodd (voice)’,2,14),(6439,60950,’Scuzz (voice)’,2,15),(6439,56848,’John Cooper’,2,16),(6439,17874,’Sir Trenton (voice)’,0,17),(6439,1314898,’Mailman’,0,18),(6439,1314899,’Reporter’,0,19),(6439,190626,’Reporter’,0,20),(6439,1314900,’Reporter’,0,21),(6439,109649,’Reporter’,2,22),(6439,1314901,’Paddock Boss’,0,23),(6439,1314902,’Track Announcer’,0,24),(6439,1314903,’Anthem Singer’,0,25),(4347,116,’Cecilia Tallis’,1,0),(4347,5530,’Robbie Turner’,2,1),(4347,6979,’Briony Tallis (Age 18)’,0,2),(4347,36592,’Briony Tallis (Age 13)’,1,3),(4347,4154,’Grace Turner’,1,4),(4347,13333,’Briony Tallis (Age 77)’,1,5),(4347,36594,’Lola Quincey’,1,6),(4347,71580,’Paul Marshall’,2,7),(4347,17477,’Emily Tallis’,1,8),(4347,71586,’Danny Hardman’,2,9),(4347,51325,’Luc Cornet’,2,10),(4347,2239,’Interviewer’,2,11),(4347,10920,’Naval Officer’,2,12),(4347,17476,’Police Inspector’,2,13),(4347,18022,’Sister Drummond’,1,14),(4347,185464,’Mother of Evacuees’,1,15),(4347,1216393,’Vicar’,2,16),(4347,1225859,’Leon Tallis’,0,17),(4347,181414,’Police Sergeant’,0,18),(4347,1670,’Tommy Nettle’,2,19),(4347,43547,’Frank Mace’,2,20),(4347,32248,’Fiona Maguire’,1,21),(4347,20082,’Frenchman’,2,22),(4347,7278,’Frenchman’,0,23),(4347,119905,’Beach Soldier’,0,24),(4347,75076,’Beach Soldier’,2,25),(4347,122556,’Beach Soldier’,0,26),(4347,203575,’Soldier in Bray Bar’,0,27),(4347,32300,’Soldier in Bray Bar’,2,28),(4347,1447221,’Soldier in Bray Bar’,0,29),(4347,30433,’Soldier in Bray Bar’,2,30),(4347,93522,’Soldier in Bray Bar’,2,31),(4347,1572552,’Staff Nurse’,0,32),(4347,1467145,’Probationary Nurse’,0,33),(4347,77687,’Probationary Nurse’,1,34),(4347,1567739,’Probationary Nurse’,0,35),(4347,1572546,’Crying Soldier’,0,36),(4347,1572548,’Solitary Sunbather’,0,37),(4347,55341,’Hospital Admin Assistant’,1,38),(4347,1386827,’Registrar’,0,39),(4347,37052,’Mrs. Jarvis’,1,40),(4347,1572537,’Betty’,0,41),(4347,1572539,’Pierrot Quincey’,0,42),(4347,1572540,’Jackson Quincey’,0,43),(4347,1572543,’Police Constable’,0,44),(4347,1207203,’RAF Officer (uncredited)’,0,45),(4347,550838,’Soldier (uncredited)’,2,46),(4105,3392,’Nick’,2,0),(4105,1271,’Charlie’,2,1),(4105,689,’Joyce’,1,3),(4105,34690,’Ohashi’,0,4),(4105,34691,’Oliver’,2,5),(4105,73427,’Masahiro’,2,6),(4105,129953,’Sato’,2,7),(4105,2541,’Yashimoto’,2,8),(4105,40481,’Frankie’,2,9),(4105,171747,’The Kid’,2,10),(4105,17401,’Berg’,2,11),(4105,18262,’Crown’,2,12),(4105,1454501,’Yudell’,2,13),(4105,72864,’Bobby’,2,14),(4105,553969,’Katayama’,0,15),(4105,1320310,’Nashida’,0,16),(4105,73428,’Sugai’,2,17),(4105,144419,’Miyuki’,0,18),(4105,1766584,’Japanese Businessman’,0,19),(4105,1805941,’Japanese Translator’,0,20),(4105,17921,’Abolofia’,0,21),(4105,169116,’Farentino’,0,22),(4105,6198,’Detective’,2,23),(4105,171159,’Detective’,0,24),(4105,1805952,’Detective’,0,25),(4105,1454094,’Japanese / American Translator’,0,26),(4105,1805957,’Japanese Embassy Official’,0,27),(4105,1805959,’Sato\’s Man’,0,28),(4105,1805961,’Sato\’s Man’,0,29),(4105,1708458,’Sugai\’s Man’,0,30),(4105,136879,’Sugai\’s Man’,0,31),(4105,1805964,’Sugai\’s Man’,0,32),(4105,1805965,’Ohashi\’s Man’,0,33),(4105,1584161,’Ohashi\’s Man’,0,34),(4105,1204851,’Ohashi\’s Man’,0,35),(4105,91387,’Karaoke Singer’,2,36),(4105,1217015,’Escort Officer’,2,37),(4105,567246,’Mediator’,0,38),(4105,953728,’Mediator’,0,39),(4105,1805972,’Noodle Woman’,0,40),(4105,198980,’Peggy’,1,41),(4105,1805989,’Danny’,0,42),(4105,1805990,’Patrick’,0,43),(4105,1237536,’Masahiro\’s Son’,0,44),(4105,7080,’Joe, the Bartender’,0,45),(4105,1805992,’Friend’,0,46),(4105,178693,’Detective’,0,47),(4105,1677323,’Sato\’s Yakuza Enforcer’,0,48),(4105,61704,’Sato\’s Yakuza Assassin’,2,49),(4105,35244,’Sato\’s Man’,0,50),(4105,158453,’Motorcyclist’,2,51),(4105,1805993,’Newspaper Reporter’,0,52),(4105,1805994,’Nori, Bar Hostess’,1,53),(3933,85,’Victor Van Dort (voice)’,2,0),(3933,1283,’Corpse Bride (voice)’,1,1),(3933,1639,’Victoria Everglot (voice)’,0,2),(3933,30364,’Nell Van Dort / Hildegarde (voice)’,0,3),(3933,34900,’William Van Dort / Mayhew / Paul the Head Waiter (voice)’,2,4),(3933,34901,’Maudeline Everglot (voice)’,1,5),(3933,3926,’Finis Everglot (voice)’,0,6),(3933,20766,’Barkis Bittern (voice)’,2,7),(3933,113,’Pastor Galswells (voice)’,2,8),(3933,3796,’Elder Gutknecht (voice)’,2,9),(3933,34902,’Black Widow Spider / Mrs. Plum (voice)’,1,10),(3933,34904,’Maggot / Town Crier (voice)’,2,11),(3933,1295,’General Bonesapart (voice)’,2,12),(3933,531,’Bonejangles (voice)’,2,13),(3933,34905,’Emil (voice)’,0,14),(3933,933684,’Solemn Village Boy (voice)’,0,15),(9918,6164,’Don Haskins’,1,0),(9918,15543,’Bobby Joe Hill’,2,1),(9918,10127,’Adolph Rupp’,2,2),(9918,6069,’Jerry Armstrong’,2,3),(9918,333,’Moe Iba’,2,4),(9918,51684,’Harry Flournoy’,2,5),(9918,58959,’Willie \’Scoops\’ Cager’,0,7),(9918,60506,’Orsten Artis’,2,8),(9918,25933,’Mary Haskins’,1,9),(9918,60508,’Ross Moore’,2,10),(9918,60507,’Nevil Shed’,2,11),(9918,60509,’Togo Railey’,2,12),(9918,41019,’Wade Richardson’,2,13),(9918,21083,’Dr. Ray’,2,14),(9918,29934,’George McCarty’,2,15),(9918,60510,’Dick Myers’,2,16),(9918,1003386,’Willie Worsley’,2,17),(9918,131561,’Racist – Cole Field House’,2,18),(9918,1633666,’Kentucky Booster’,2,19),(9918,1088044,’Iowa Reporter’,2,20),(9266,7517,’Anne Marie Chadwick’,1,0),(9266,56045,’Matt Tollman’,2,1),(9266,17647,’Eden’,1,2),(9266,57088,’Lena’,1,3),(9266,21027,’Penny Chadwick’,1,4),(9266,57089,’Drew’,2,5),(9266,1520267,’Kala’,0,6),(9266,1520268,’JJ’,0,7),(9266,1520269,’Kaupena’,0,8),(9266,1520270,’Asa’,0,9),(9266,62066,’Leslie’,2,10),(9266,1520271,’Fiji’,0,11),(9266,1215291,’Omar’,1,12),(9266,1520272,’Paul’,0,13),(9266,1252032,’Tamayo’,0,14),(1262,23659,’Harold Crick’,2,0),(1262,1579,’Ana Pascal’,1,1),(1262,4483,’Professor Jules Hilbert’,2,2),(1262,7056,’Karen Eiffel’,1,3),(1262,15758,’Penny Escher’,1,4),(1262,36090,’Junge’,0,5),(1262,36092,’Bus Fahrer’,1,6),(1262,36091,’Vater des Junge’,2,7),(1262,36095,’IRS Co-Arbeiter’,2,8),(1262,25147,’Dave’,2,9),(1262,36093,’Polische Frau’,1,10),(1262,1154221,’IRS Co-Worker #5′,2,11),(1262,1154231,’IRS Co-Worker #6′,1,12),(1262,1154232,’Bakery Employee #1′,0,13),(1262,155520,’Bakery Employee #2′,1,14),(1262,554395,’IRS Co-Worker #4′,0,15),(1262,1465725,’Bakery Customer #2′,0,16),(1262,946311,’Homeless Man’,2,17),(1262,1054510,’Man with Hose’,2,18),(1262,3999,’Dr. Cayly’,2,19),(1262,53005,’Commuter’,2,20),(1262,12516,’Dr. Mittag-Leffler’,1,21),(1262,52775,’Book Channel Host’,1,22),(1262,1245641,’Bakery Customer #4′,0,23),(1262,1313093,’Demolition Foreman’,0,24),(1262,59145,’Demolition Crew #1′,2,25),(1262,59579,’Demolition Crew #2′,0,26),(1262,1188683,’ER Nurse #2′,0,27),(1262,1197997,’ER Doctor #3′,0,28),(1262,23355,’Head ER Nurse’,0,29),(1262,59578,’Banneker Press Receptionist’,0,30),(1262,1188569,’Accident Witness’,0,31),(1262,1229774,’Accident Witness’,2,32),(1262,59581,’Doctor Mercator’,2,33),(1262,168992,’Animal Footage Voice Over (voice)’,2,34),(1262,45426,’Bakery Patron (uncredited)’,0,35),(1262,1018826,’Business Women (uncredited)’,0,36),(1262,53236,’Business Women (uncredited)’,0,37),(1262,1058964,’Business Man (uncredited)’,0,38),(1262,1323225,’Augustus Chatman (uncredited)’,0,39),(1262,1309207,’Nurse #3 (uncredited)’,0,40),(4513,2299,’Eben Oleson’,2,0),(4513,27755,’Stella Oleson’,1,1),(4513,11107,’The Stranger’,2,2),(4513,6413,’Marlow’,2,3),(4513,534,’Beau Brower’,2,4),(4513,3496,’Wilson Bulosan’,2,5),(4513,173569,’Isaac Bulosan’,2,6),(4513,41782,’Billy’,2,7),(4513,41784,’Carter Davies’,2,8),(4513,5533,’Lucy Ikos’,1,9),(4513,41785,’Doug Hertz’,2,10),(4513,167025,’Dawn’,1,11),(4513,1245747,’Kirsten Toomey’,1,12),(4513,33306,’John Riis’,2,13),(4513,181900,’Malekai Hamm’,0,14),(4513,34918,’Jake Oleson’,2,15),(4513,173555,’Denise’,1,16),(4513,1621913,’Iris’,1,17),(4513,1097391,’Aaron’,2,18),(4513,173391,’Gabe’,2,19),(4513,1621926,’Jeannie Colletta’,1,20),(4513,1097645,’Adam Colletta’,2,21),(4513,54478,’Michelle Robbins’,1,22),(4513,1621927,’Larry Robbins’,2,23),(4513,5534,’Frank Robbins’,2,24),(4513,1621931,’Gail Robbins’,1,25),(4513,1621932,’Ally Riis’,1,26),(4513,1502553,’Peter Toomey’,2,27),(4513,1399812,’Helen Munson’,1,28),(4513,1621933,’Tom Melanson’,2,29),(4513,1193195,’Gus Lambert’,2,30),(4513,1399824,’Zurial’,2,31),(4513,1621961,’Kali’,1,32),(4513,215913,’Seth’,0,33),(4513,560164,’Inika’,1,34),(4513,1439931,’Heron’,2,35),(4513,1200415,’Arvin’,2,36),(4513,235025,’Archibald’,2,37),(4513,1240892,’Edgar’,2,38),(4513,1484140,’Khan’,2,39),(4513,1621975,’Cicero’,2,40),(4513,1621972,’Little Girl Vampire’,1,41),(7278,52262,’Leonidas’,2,0),(7278,28639,’Ku00f6nigin Margo’,1,1),(7278,6734,’Xerxes’,2,2),(7278,51965,’Hauptmann’,2,3),(7278,5727,’Traitoro’,2,4),(7278,5384,’Persian’,2,5),(7278,198150,’Dane Cook Look-a-Like / Bond Villain / Prophet’,2,6),(7278,78263,’Pretty Girl’,1,7),(7278,1230868,’Urban Girl’,1,8),(7278,74290,’Sonio’,2,9),(9013,380,’Jack Walsh’,2,0),(9013,28164,’Jonathan Mardukas’,2,1),(9013,5050,’FBI Agent Alonzo Mosely’,0,2),(9013,778,’Marvin Dorfler’,2,3),(9013,1117,’Jimmy Serrano’,2,4),(9013,532,’Eddie Moscone’,2,5),(9013,47771,’Tony Darvo’,2,6),(9013,4492,’Sidney’,2,7),(865,1100,’Ben Richards’,2,0),(865,96623,’Damon Killian’,2,1),(865,2051,’Amber Mendez’,1,2),(865,5050,’William Laughlin’,0,3),(865,4774,’Fireball’,2,4),(865,1104,’Captain Freedom’,2,5),(865,3013,’Dynamo’,0,6),(865,13003,’Harold Weiss’,2,7),(865,13004,’Buzzsaw’,0,8),(865,13006,’Subzero’,2,9),(865,13007,’Mic’,2,10),(865,35710,’911 Security Officer’,2,11),(865,20761,’Sven’,2,12),(865,120952,’Stevie’,2,13),(865,16852,’Brenda’,1,14),(865,6939,’Lenny’,2,15),(9823,57250,’Liu Kang’,0,0),(9823,10680,’Kitana’,1,1),(9823,1736,’Rayden’,2,2),(9823,59642,’Sonya Blade’,1,3),(9823,59643,’Jax’,0,4),(9823,2719,’Shao-Kahn’,2,5),(9823,38624,’Shinnok’,2,6),(9823,1475,’Sindel’,1,7),(9823,69532,’Jade’,0,8),(9823,31368,’Motaro’,2,9),(9823,106728,’Sheeva’,1,10),(9823,69302,’Nightwolf’,2,11),(9823,227199,’Johnny Cage’,2,12),(9823,1068803,’Ermac’,0,13),(9823,131532,’Cyrax / Scorpion’,0,14),(9823,1645507,’Rain’,0,15),(9823,1221121,’Baraka’,0,16),(9823,1277922,’Smoke’,0,17),(9823,57255,’Sub-Zero’,2,18),(9823,119776,’Elder God #1′,2,19),(9823,42970,’Elder God #2′,0,20),(9823,131528,’Mileena’,1,21),(9823,11007,’Raptor #3 / Tarkatan (Baraka) #2′,2,22),(9823,57256,’Scorpion (voice)’,0,23),(9766,18918,’Sean Porter’,2,0),(9766,336,’Malcolm Moore’,2,1),(9766,29051,’Bobbi Porter’,1,2),(9766,15374,’Paul Higa’,2,3),(9766,14721,’Ted Dexter’,0,4),(9766,59011,’Willie Weathers’,2,5),(9766,59012,’Kelvin Owens’,2,6),(9766,59013,’Junior Palaita’,0,7),(9766,59014,’Leon Hayes’,2,8),(9766,59015,’Donald Madlock’,2,9),(9766,59016,’Kenny Bates’,1,10),(9766,59017,’Danyelle Rollins’,1,12),(9766,59018,’Roger Weathers’,2,13),(9766,59019,’Jamal Evans’,2,14),(9766,27492,’Coach Finley’,2,15),(9766,427978,’Bug Wendal’,2,16),(9452,6449,’Senator Jay Billington Bulworth’,2,0),(9452,4587,’Nina’,1,1),(9452,1328,’Gary’,2,2),(9452,11870,’Constance Bulworth’,1,3),(9452,154114,’Mrs. Brown’,1,4),(9452,97944,’Anthony’,2,5),(9452,1896,’L.D.’,2,6),(9452,25711,’Rev. Wilberforce’,2,7),(9452,4496,’Missy Berliner’,1,8),(9452,131642,’Bill Feldman’,2,9),(9452,12133,’Mimi’,1,10),(9452,10386,’Helen’,1,11),(9452,17859,’Fred’,2,12),(9452,17485,’Dennis Murphy’,2,13),(9452,7404,’2nd American Politics Assistant’,1,14),(9452,7004,’Graham Crockett’,2,15),(9452,5251,’Eddie Davers’,2,16),(9452,21353,’Darnell’,2,17),(9452,31135,’Paul Robeson’,2,18),(9452,1643527,’Denisha’,1,19),(9452,100592,’Debate Director’,2,20),(9452,3206,’Debate Producer’,2,21),(9452,94752,’Leroy’,2,22),(9452,545358,’Rastaman’,2,23),(9452,6110,’Man with Dark Glasses’,2,24),(9452,98889,’Uncle Rafeeq’,0,25),(9452,65728,’Head Valet’,0,26),(9452,75334,’Carl Jann’,1,27),(9452,84323,’Dobish, Bullworth\’s Secretary’,1,28),(9452,25544,’Uncle David’,2,29),(9452,111872,’Momma Doll’,0,30),(9452,44127,’Larry King’,2,31),(9452,1643528,’Reporter’,1,32),(9452,156064,’Reporter’,1,33),(9452,1150484,’Snag’,2,34),(9452,55637,’Marcus Garvey’,2,35),(9452,10380,’Bill Stone’,2,36),(9452,23916,’Mrs. Tannenbaum’,1,37),(9452,70440,’Geoffrey’,2,38),(9452,1804068,’Woman in Church #1′,1,39),(9271,5292,’Lt. Parker Barnes’,2,0),(9271,934,’SID 6.7′,2,1),(9271,6473,’Madison Carter’,1,2),(9271,4520,’William Cochran’,2,3),(9271,57093,’Dr. Darrel Lindenmeyer’,2,4),(9271,7071,’Elizabeth Deane’,1,5),(9271,154644,’Woman with Video Camera’,1,6),(9271,203762,’Rafael Debaca’,2,7),(9271,1585201,’Christine Barnes’,1,8),(9271,10826,’Media Zone Singer’,1,9),(9271,53862,’Karin Carter’,1,10),(4474,139,’Jenny Johnson’,1,0),(4474,36422,’Matt Saunders’,2,1),(4474,1772,’Hannah’,1,2),(4474,1926,’Professor Bedlam’,2,3),(4474,11678,’Vaughn Haige’,2,4),(4474,37403,’Leo’,2,5),(4474,37404,’Lenny’,2,6),(4474,27102,’Carla Dunkirk’,0,7),(4474,37405,’Bartender’,1,8),(4474,154826,’TV News Reporter’,1,9),(4474,1519297,’Young Jenny’,1,10),(4474,1630464,’Asian Businessman’,2,11),(9920,63,’Violet Song Jat Shariff’,1,0),(9920,52414,’Six’,2,1),(9920,18461,’Ferdinand Daxus’,2,2),(9920,60526,’Nerva’,2,3),(9920,60527,’Young Violet’,0,4),(9920,886,’Garth’,2,5),(9920,60528,’BF-1′,0,6),(9920,60529,’Detective Cross’,0,7),(9920,60530,’Detective Endera’,0,8),(9920,60531,’Detective Breeder’,0,9),(9920,60532,’Young Daxus’,0,10),(9920,60533,’Violet\’s Husband’,2,11),(9920,1435655,’Hospital Hemophage’,2,12),(9920,60536,’Rebel Hemophage’,2,13),(9920,60537,’Elizabeth P. Watkins’,1,14),(9920,60538,’Chief of Staff’,0,15),(9920,60539,’Daxus Aide 1′,0,16),(9920,60540,’Daxus Aide 2′,0,17),(9920,60541,’L.L.D.D. Guard’,0,18),(9920,60542,’Medical Tech 1′,0,19),(9920,13927,’Speak-No-Evil Phage’,2,20),(8978,569,’Sergeant Jake Roenick’,2,0),(8978,2975,’Marion Bishop’,2,1),(8978,5168,’Captain Marcus Duvall’,2,2),(8978,49,’Dr Alex Sabian’,1,3),(8978,70767,’Iris Ferry’,1,4),(8978,5723,’Beck’,2,5),(8978,6197,’Sargeant Jasper O\’Shea’,2,6),(8978,61658,’Smiley’,2,7),(8978,156590,’Mike Kahane’,2,8),(8978,1192492,’Anna’,1,9),(8978,25389,’Lt. Holloway’,2,10),(8978,13525,’Officer Kevin Capra’,2,11),(8978,65808,’Ray Portnow’,2,12),(8978,8335,’Officer Rosen’,2,13),(8978,67704,’Tony’,2,14),(8978,190917,’Danny Barbero’,2,15),(8978,8656,’Gil’,2,17),(8978,87575,’Carlyle’,2,18),(8978,1330118,’Bronco Gunman’,0,19),(8978,1401312,’Priest’,0,21),(8978,583278,’Swat Officer #2 Sgt Lewis (uncredited)’,2,22),(8978,201706,’Marko’,2,23),(8978,1818113,’Hagen’,0,24),(8978,1366698,’Sniper James’,0,25),(8869,15234,’Chris McCormick’,2,0),(8869,56152,’Sheriff Samantha Parker’,1,1),(8869,56153,’Mike Parker’,2,2),(8869,1245,’Ashley Parker’,1,3),(8869,12975,’Harlan Griffith’,2,4),(8869,1539,’Deputy Pete Willis’,2,5),(8869,15374,’Wade’,2,6),(8869,55547,’Bret’,2,7),(8869,12543,’Gladys’,1,8),(8869,67850,’Randy’,2,9),(8869,156980,’Emma’,1,10),(8869,117564,’Amos’,0,11),(8869,1154284,’Floyd’,0,12),(8869,20812,’Leon’,2,13),(8869,1583060,’Larry’,0,14),(8869,1172430,’Mark’,2,15),(8869,1583061,’Leroy’,0,16),(8869,1239281,’Norman’,0,17),(8869,1583087,’Waitress #2′,0,18),(8869,1583088,’Waitress #1′,0,19),(8869,61115,’Cop #1′,2,20),(8869,929134,’Cop #2′,0,21),(8869,1583089,’Himself’,0,22),(3489,1158,’Jack Gramm’,2,0),(3489,3128,’Kim Cummings’,1,1),(3489,22290,’Lauren Douglas’,1,2),(3489,15851,’Shelly Barnes’,1,3),(3489,4520,’Frank Parks’,2,4),(3489,13549,’Carol’,1,5),(3489,17245,’Mike Stemp’,2,6),(3489,2203,’Jon Forster’,2,7),(3489,32202,’Sara Pollard’,1,8),(3489,32203,’Guy LaForge’,2,9),(3489,32204,’Jeremy Guber’,2,10),(3489,32205,’Johnny D`Franco’,2,11),(3489,62909,’Albert Jackson’,2,12),(3489,1572065,’Kate’,0,13),(3489,1655618,’Cabbie #1′,2,14),(9701,6885,’Josey Aimes’,1,0),(9701,58640,’Karen Aimes’,1,1),(9701,58641,’Sammy Aimes’,2,2),(9701,3910,’Glory’,1,3),(9701,48,’Kyle’,2,4),(9701,57755,’Bill White’,2,5),(9701,55085,’Young Josey Aimes’,1,6),(9701,17604,’Bobby Sharp’,2,7),(9701,28633,’Hank Aimes’,2,8),(9701,5606,’Alice Aimes’,1,9),(9701,5617,’Don Pearson’,2,10),(9701,34407,’Big Betty’,1,11),(9701,58643,’Leslie Conlin’,1,12),(9701,11705,’Sherry’,1,13),(9701,15376,’Lattavansky’,2,14),(9701,20469,’Peg’,1,15),(9701,74541,’Ricky Sennett’,2,16),(2122,62,’Jimmy’,2,0),(2122,14408,’Oz’,2,1),(2122,2956,’Jill’,1,2),(2122,7166,’Lazlo’,2,3),(2122,1479,’Strabo’,2,4),(2122,21798,’Zevo’,2,5),(2122,57395,’Cynthia’,1,6),(2122,74610,’Julie’,1,7),(2122,49815,’Yermo’,2,8),(2122,1468299,’Anya’,0,9),(9042,6614,’Jack McAllister’,2,0),(9042,55541,’Tyler McAllister’,2,1),(9042,9779,’Top Buchanan’,2,2),(9042,17286,’Dr. Kathryn Jennings’,1,3),(9042,15555,’Charlie’,1,4),(9042,65730,’Briggs’,2,5),(9042,18307,’Alex Kim’,2,6),(9042,109439,’Strode’,2,7),(9042,15320,’Dr. Nicolai’,2,8),(9042,135148,’Dr. Bacovia’,2,9),(9042,10701,’Mike – Caver’,2,10),(9042,62498,’Ian – Caver’,2,11),(9042,1178619,’Razvan – Caver’,0,12),(9042,54627,’Corvin – Caver’,2,13),(9042,12359,’Creature Performer’,2,14),(1947,4135,’Einar Gilkyson’,2,0),(1947,16866,’Jean Gilkyson’,1,1),(1947,192,’Mitch Bradley’,2,2),(1947,20185,’Griff Gilkyson’,1,3),(1947,6164,’Crane Curtis’,1,4),(1947,20186,’Gary Winston’,2,5),(1947,20187,’Nina’,1,6),(1947,20188,’Kitty’,1,7),(1947,184842,’Deputy’,2,8),(1947,59241,’Shelter Supervisor’,1,9),(1947,27129,’Motorcycle Rider’,2,10),(1947,1296180,’Griffin Gilkyson’,0,11),(1947,11833,’Kent’,2,12),(1947,1296181,’Gnome Owner’,0,13),(1947,158560,’Customer #1′,2,14),(8054,290,’Doctor Parnassus’,2,0),(8054,1810,’Tony’,2,1),(8054,85,’Imaginarium Tony 1′,2,2),(8054,9642,’Imaginarium Tony 2′,2,3),(8054,72466,’Imaginarium Tony 3′,2,4),(8054,37625,’Anton’,2,5),(8054,2887,’Devil’,0,6),(8054,53688,’Valentina’,1,7),(8054,10987,’Percy’,2,8),(8054,1011904,’Classy Shopper 2′,1,9),(8054,103352,’Martin’,2,10),(8054,77266,’Martin\’s Girlfriend’,1,11),(8054,1560016,’Friend of Martin’,0,12),(8054,1560018,’Face Changed Martin’,0,13),(8054,32300,’Policeman’,2,14),(8054,1178558,’Olga’,0,15),(8054,95712,’Sally’,1,16),(8054,118035,’Sally\’s Friend’,1,17),(8054,1378680,’Debonair Gent’,0,18),(8054,77638,’Dad’,0,19),(8054,37698,’First Monk’,2,20),(8054,208146,’Dancing Policeman’,2,21),(8054,158498,’Young Boy\’s Father’,2,22),(8054,1196986,’Louis Vuitton Woman’,1,23),(9989,11864,’Milo Hoffman’,2,0),(9989,38581,’Lisa Calighan’,1,1),(9989,504,’Gary Winston’,2,2),(9989,4174,’Alice Poulson’,1,3),(9989,6487,’Lyle Barton’,2,4),(9989,55591,’Larry Banks’,2,5),(9989,2141,’Phil Grimes’,2,6),(9989,51383,’Redmond Schmeichel’,2,7),(9989,61541,’Teddy Chin’,0,8),(9989,61542,’Brian Bissel’,2,9),(9989,61540,’Bob Shrot’,2,10),(9989,61543,’Randy Sheringham’,2,11),(9989,58902,’Desi’,2,12),(9989,11832,’Stinky’,2,13),(9989,20221,’Lawyer’,0,14),(9989,61545,’Shrot\’s Assistant’,2,15),(9989,61546,’Lawyer’,2,16),(9989,61544,’Danny Solskju00e6r’,2,17),(9989,61548,’Ken Cosgrove’,2,18),(9989,61547,’Gary\’s Secretary’,1,19),(9665,4756,’Col. Robert Gould Shaw’,2,0),(9665,5292,’Pvt. Trip’,2,1),(9665,2130,’Maj. Cabot Forbes’,2,2),(9665,192,’Sgt. Maj. John Rawlins’,2,3),(9665,58426,’Pvt. Jupiter Sharts’,2,4),(9665,6861,’Cpl. Thomas Searles’,2,5),(9665,9277,’Sgt. Maj. Mulcahy’,2,6),(9665,58141,’Capt. Charles Fessenden Morse’,2,7),(9665,1184011,’Henry Sturgis Russell’,2,8),(9665,4029,’Gen. Charles Garrison Harker’,2,10),(9665,1272612,’Col. James M. Montgomery’,2,11),(9665,1340960,’Edward L. Pierce’,0,12),(9665,84209,’Mute Drummer Boy’,2,13),(9665,6067,’Gen. George Crockett Strong’,2,14),(9665,53584,’Gov. John Albion Andrew’,2,15),(9665,18262,’Quartermaster’,2,16),(9665,20906,’Francis George Shaw’,2,17),(311,380,’David \’Noodles\’ Aaronson’,2,0),(311,4512,’Maximilian \’Max\’ Bercovicz’,2,1),(311,4513,’Deborah Gelly’,1,2),(311,4517,’Frankie Minaldi’,2,3),(311,4521,’Joe’,2,4),(311,4514,’Carol’,1,5),(311,4515,’James Conway O\’Donnell’,2,6),(311,1004,’Police Chief Vincent Aiello’,2,7),(311,3174,’Chicken Joe’,2,8),(311,4516,’Patrick \’Patsy\’ Goldberg’,0,9),(311,4520,’Philip \’Cockeye\’ Stein’,2,10),(311,4761,’Eve’,1,11),(311,4518,’\’Fat\’ Moe Gelly’,0,12),(311,151943,’Crowning’,0,13),(311,50744,’Woman in the Puppet Theatre’,1,14),(311,1373773,’Beefy’,2,15),(311,6161,’Young Deborah’,1,16),(311,4750,’Young Noodles’,0,17),(311,4751,’Young Max / David Bailey’,0,18),(311,4753,’Young Patsy’,0,19),(311,4773,’Young \’Fat\’ Moe Gelly’,0,20),(311,4752,’Young Cockeye’,0,21),(311,4754,’Dominic’,0,22),(311,785,’Bugsy’,2,23),(311,17921,’Al Capuano’,0,24),(311,1373776,’Fred Capuano’,0,25),(311,61236,’Johnny Capuano’,0,26),(311,1373778,’Irving Gold’,0,27),(311,1373779,’Friend of Young Deborah’,0,28),(311,1373775,’Young Deborah (Double)’,0,29),(311,7071,’Cemetery Director (uncredited)’,1,30),(311,58535,’Monkey’,2,31),(311,176592,’Thug’,0,32),(311,27401,’Man in Puppet Theathre’,2,33),(311,1555142,’Trigger’,0,34),(311,47771,’Officer Whitey’,2,35),(311,16318,’Mandy’,2,36),(311,1881583,’Willie the Ape’,0,37),(6016,1733,’Bob Montagnet’,2,0),(6016,10698,’Roger’,2,1),(6016,47334,’Anne’,1,2),(6016,47336,’Remi’,2,3),(6016,5419,’Paulo’,0,4),(6016,47337,’Raoul’,2,5),(6016,47335,’Said’,2,6),(6016,47339,’Yvonne’,1,7),(6016,988418,’Philippe’,0,8),(6016,15254,’Vladimir’,0,9),(6016,5469,’Tony Angel’,2,10),(6016,988488,’Kozinski’,2,11),(6016,41886,’Albert’,2,12),(6016,41887,’Bertram’,2,13),(6016,51656,’Jamie’,2,14),(2008,20652,’Princess Qingcheng’,0,2),(2008,20654,’Snow Wolf’,2,3),(2008,20655,’Goddess Manshen’,0,4),(2008,20656,’The Emperer’,0,5),(2008,16962,’Kunlun’,0,6),(2008,9195,’General Guangming’,0,7),(9053,56824,’Tina Armstrong’,1,0),(9053,6278,’Kasumi’,1,1),(9053,55776,’Christie Allen’,1,2),(9053,56825,’Helena Douglas’,1,3),(9053,21430,’Ayane’,1,4),(9053,65198,’Ryu Hayabusa’,2,5),(9053,21315,’Donovan’,2,6),(9053,81388,’Weatherby’,2,7),(9053,31137,’Zack’,0,8),(9053,12793,’Max’,2,9),(9053,135352,’Bass Armstrong’,2,10),(9053,52908,’Hayate’,2,11),(9053,962137,’Bayman’,2,12),(9053,134414,’Leon’,2,13),(9053,1130647,’Gen Fu’,0,14),(9053,57250,’Pirate Leader’,0,15),(9053,195535,’Nurse Jones’,0,16),(9053,557323,’Butler’,2,17),(4512,287,’Jesse James’,2,0),(4512,1893,’Robert Ford’,2,1),(4512,9880,’Frank James’,2,2),(4512,18248,’Zeralda James’,1,3),(4512,15684,’Dick Liddil’,2,4),(4512,17604,’Wood Hite’,2,5),(4512,11664,’Dorothy Evans’,1,6),(4512,6807,’Charley Ford’,2,7),(4512,39520,’Ed Miller’,0,8),(4512,39518,’Mary James’,1,9),(4512,39519,’Tim James’,0,10),(4512,39521,’Express Messenger’,0,11),(4512,39522,’Baggagemaster’,2,12),(4512,1149455,’Engineer’,0,13),(4512,15675,’Martha Bolton’,1,14),(4512,89247,’Sarah Hite’,1,15),(4512,2536,’Henry Craig’,2,16),(4512,15854,’Sheriff James Timberlak’,2,17),(4512,60093,’Thomas T. Crittenden’,2,18),(4512,39516,’Bowery Saloon Singer’,2,19),(1874,12763,’James Gregory’,2,0),(1874,352,’Nelson Mandela’,2,1),(1874,9824,’Gloria Gregory’,1,2),(1874,19688,’Brett Gregory’,0,3),(1874,109653,”,2,4),(69,73421,’Johnny Cash’,2,0),(69,368,’June Carter’,1,1),(69,417,’Vivian’,1,2),(69,418,’Ray Cash’,2,3),(69,419,’Elvis Presley’,2,4),(69,420,’Roy Orbison’,2,5),(69,421,’Waylon Jennings’,2,6),(69,422,’Jerry Lee Lewis’,2,7),(69,424,’Sam Phillips’,0,8),(69,425,’Luther Perkins’,2,9),(69,426,’Marshall Grant’,2,10),(69,427,’Maybelle Carter’,1,11),(69,428,’Ezra Carter’,2,12),(69,429,’Young Johnny Cash’,2,13),(69,431,’Carlene Carter’,1,14),(69,430,’Rosanne Cash’,1,15),(69,1231850,’Carrie Cash’,0,16),(69,589756,’W.S. \’Fluke\’ Holland’,2,17),(69,77332,’Young J.R.’,2,18),(69,220064,’Kathy Cash’,1,19),(69,1215995,’Diner Waitress’,1,20),(69,1400931,’Inmate’,0,21),(69,408,’Warden’,2,22),(69,1074187,’Texarkana MC’,0,23),(69,71886,’Lady in the Aisle’,1,24),(69,51456,’Five and Dime Manager’,1,25),(69,1336845,’El Paso Taxi Driver’,0,26),(69,129868,’F.B.I. Man’,2,27),(69,86938,’A & R Man #1′,2,28),(69,1106263,’A & R Man #2′,0,29),(69,53266,’Lissome Girl’,1,30),(69,71887,’Neighbor Woman’,0,31),(69,53265,’Wanda’,0,32),(69,410,’Bob Neal (uncredited)’,2,33),(69,1485107,’Bass player in Lewis\’s band (uncredited)’,0,34),(69,1509778,’Folsom Prison Assistant Warden (uncredited)’,0,35),(69,1509779,’Lady at the Five & Dime (uncredited)’,0,36),(69,1381675,’Ferlin (uncredited)’,0,37),(69,77518,’Tommy Cash Age 9 (uncredited)’,0,38),(69,1698468,’Record Company Executive (uncredited)’,0,39),(69,1571910,’Man in Aisle (uncredited)’,0,40),(69,1386222,’Etta Grant (uncredited)’,1,41),(69,1462583,’Flight Attendant (uncredited)’,0,42),(69,150094,’Jack the Drunk (uncredited)’,2,43),(69,77522,’Passionate Preacher (uncredited)’,2,44),(4967,7399,’Rabbi Jake Schram’,2,0),(4967,819,’Father Brian Finn’,2,1),(4967,40279,’Anna Riley’,1,2),(4967,10774,’Ruth Schram’,1,3),(4967,3265,’Rabbi Ben Lewis’,2,4),(4967,12122,’Larry Friedman’,2,5),(4967,3974,’Father Havel’,2,6),(4967,11318,’Bonnie Rose’,1,7),(4967,41420,’Ali Decker’,1,8),(4967,2131,’Don’,2,9),(4967,170658,’\’Don\’t Walk\’ Lady’,1,10),(4967,1041480,’Omar’,2,11),(9449,1230,’Ocious P. Potter’,2,0),(9449,388,’Pod Clock’,2,1),(9449,9139,’Homily Clock’,1,2),(9449,10993,’Peagreen Clock’,2,3),(9449,41419,’Police Officer Steady’,2,4),(9449,145151,’Pete Lender’,0,5),(9449,20999,’Exterminator Jeff’,2,6),(9449,33404,’Town Hall Clerk’,1,7),(9449,128741,’Victoria Lender’,1,8),(9449,18355,’TV Gangster’,2,9),(9449,1228960,’Spud Spiller’,2,10),(9449,1879755,’Arrietty \’Ett\’ Clock’,1,11),(9449,1222737,’Joe Lender’,0,12),(9449,27903,’TV Constable’,2,13),(9449,199876,’Swag’,0,14),(4912,6807,’Chuck Barris’,2,0),(4912,69597,’Penny’,1,1),(4912,1204,’Patricia Watson’,1,2),(4912,585,’Keeler’,2,3),(4912,287,’Brad, 1st Bachelor’,2,4),(4912,1892,’Matt, 2nd Bachelor’,2,5),(4912,1461,’CIA Agent Jim Byrd’,2,6),(4912,1888,’Larry Goldberg’,2,7),(4912,1579,’Debbie’,1,8),(4912,39995,’Chuck’,2,9),(4912,1080265,’Simon Oliver’,0,10),(4912,170880,’Georgia’,1,11),(4912,136973,’Freddie Cannon’,2,12),(4912,58168,’Tuvia, Age 25′,1,13),(4912,937792,’Barfly’,2,14),(4912,66233,’Georgia\’s Girlfriend’,0,15),(4912,1560626,’Gong Show Model’,0,16),(4912,21858,’Pretty Woman’,1,17),(4912,153609,’Herself’,0,18),(4912,46433,’Himself’,2,19),(4912,1673063,’J. Sweeney’,1,20),(4912,78862,’Headset Woman’,1,21),(4912,21125,’Casting Executive Man’,2,22),(4912,66934,’Dating Game Director’,2,23),(4912,1834070,’L.A. Bartender’,0,24),(4912,39994,’Monica (uncredited)’,0,25),(9667,3490,’Jack Starks’,2,0),(9667,116,’Jackie Price’,1,1),(9667,10823,’Dr. Thomas Becker’,2,2),(9667,10431,’Dr. Beth Lorenson’,1,3),(9667,6473,’Jean Price’,1,4),(9667,51214,’The Stranger’,2,5),(9667,8784,’Rudy Mackenzie’,2,6),(9667,289370,’Intern #2′,1,7),(9667,978,’Dr. Hopkins’,2,8),(9667,74056,’Damon’,2,9),(9667,12408,’Nurse Harding’,1,10),(9667,54722,’Young Jackie’,1,11),(9667,32224,’Officer Harrison’,2,12),(9667,176227,’Captain Medley’,2,13),(9667,181043,’Intern #1′,2,14),(9667,29697,’Lieutenant’,2,15),(9667,59085,’Major’,0,16),(9667,58475,’Judge’,2,17),(9667,120833,’Dr. Hale’,2,18),(9667,1226921,’Officer Nash’,0,20),(9667,23608,’Jury Foreman’,2,21),(9667,72003,’Nurse Nina’,1,22),(812,15827,’Aladdin Al (voice)’,2,0),(812,2157,’Genie (voice)’,2,1),(812,15829,’Princess Jasmine (voice)’,1,2),(812,15830,’Grand Vizier Jafar (voice)’,2,3),(812,15831,’Abu the Monkey (voice)’,2,4),(812,15832,’Iago the Parrot (voice)’,2,5),(812,15833,’Sultan of Agrabah (voice)’,2,6),(812,81178,’Gazeem (voice)’,2,7),(812,35219,’Prince Achmed (voice)’,2,8),(812,12077,’Razoul / Farouk (voice)’,2,9),(812,19545,’Additional Voices (voice)’,2,10),(812,613123,’Additional Voices (voice)’,2,11),(812,81843,’Additional Voices (voice)’,1,12),(812,51517,’Additional Voices (voice)’,0,13),(812,214701,’Additional Voices (voice)’,0,14),(812,84493,’Additional Voices (voice)’,0,15),(812,61968,’Additional Voices (voice)’,2,16),(812,61969,’Additional Voices (voice)’,2,17),(812,73016,’Harem Girl (voice)’,1,18),(812,156565,’Portly Agrabah Woman (voice)’,1,19),(812,15834,’Peddler (singing voice) (uncredited)’,2,20),(812,228428,’Aladdin (singing voice) (uncredited)’,2,21),(812,15838,’Jasmine (singing voice) (uncredited)’,0,22),(812,25627,’Jafar\’s Horse (voice) (uncredited)’,2,23),(87,3,’Indiana Jones’,2,0),(87,689,’Willie Scott’,1,1),(87,690,’Short Round’,0,2),(87,691,’Mola Ram’,0,3),(87,693,’Chattar Lal’,0,4),(87,694,’Captain Blumburtt’,2,5),(87,695,’Lao Che’,0,6),(87,696,’Wu Han’,0,7),(87,11397,’Kao Kan’,2,8),(87,699,’Chen’,0,9),(87,701,’Maitre d\”,0,10),(87,702,’Chief Henchman’,2,11),(87,707,’Weber’,2,12),(87,1402218,’Chinese Pilot’,0,13),(87,80123,’Chinese Co-Pilot’,2,14),(87,1055317,’Shaman’,0,15),(87,1402258,’Chieftain’,0,16),(87,1402260,’Sajnu’,0,17),(87,1402261,’Village Woman’,0,18),(87,1402263,’Village Woman’,0,19),(87,1402266,’Village Woman’,0,20),(87,1402267,’Village Child’,0,21),(87,1402268,’Little Maharaja’,0,22),(87,977657,’Merchant #1′,2,23),(87,1402269,’Merchant #2′,0,24),(87,735,’Eel Eater’,2,25),(87,213391,’Sacrifice Victim’,0,26),(87,10942,’Chief Guard’,2,27),(87,1402504,’Guard’,0,28),(87,215400,’Temple Guard’,0,29),(87,119792,’Temple Guard’,2,30),(87,1402509,’1st Boy in Cell’,0,31),(87,1402514,’2nd Boy in Cell’,0,32),(87,1402517,’Dancer’,0,33),(87,1402521,’Dancer’,0,34),(87,1402523,’Dancer’,0,35),(87,1402527,’Dancer’,0,36),(87,1402528,’Dancer’,0,37),(87,1402609,’Dancer’,0,38),(87,1402610,’Dancer’,0,39),(87,1402613,’Dancer’,0,40),(87,1402614,’Dancer’,0,41),(87,1402615,’Dancer’,0,42),(87,1402616,’Dancer’,0,43),(87,563900,’Dancer’,0,44),(87,1402617,’Dancer’,0,45),(87,1402618,’Dancer’,0,46),(87,1402619,’Dancer’,0,47),(87,1402620,’Dancer’,0,48),(87,1402632,’Dancer’,0,49),(87,1402641,’Dancer’,0,50),(87,1402664,’Dancer’,0,51),(87,1402666,’Dancer’,0,52),(87,1402669,’Dancer’,0,53),(87,1402670,’Dancer’,0,54),(87,1402672,’Dancer’,0,55),(87,1402675,’Dancer’,0,56),(87,1402676,’Dancer’,0,57),(87,1402677,’Dancer’,0,58),(87,1402678,’Dancer’,0,59),(87,1402682,’Dancer’,0,60),(87,1402684,’Dancer’,0,61),(87,1402685,’Dancer’,0,62),(87,1402686,’Dancer’,0,63),(87,1495190,’Thuggee in Railway Chase / Thuggee Knocked Off Ledge / Thuggee on Bridge (uncredited)’,2,64),(87,20820,’Missionary (uncredited)’,2,65),(87,1,’Missionary (uncredited)’,2,66),(87,664,’Tourist at Airport (uncredited)’,2,67),(87,488,’Tourist at Airport (uncredited)’,2,68),(2043,192,’Alex Cross’,2,0),(2043,2140,’Jezzie Flannigan’,1,1),(2043,7486,’Garry Sone’,2,2),(2043,19152,’Ollie McArthur’,2,3),(2043,21027,’Megan Rose’,1,4),(2043,21028,’Dimitri Storodubov’,2,5),(2043,6067,’Kyle Craig’,2,6),(2043,21029,’Ben Devine’,2,7),(2043,21030,’Senator Hank Rose’,2,8),(2043,14698,’Elizabeth Rose’,1,9),(2043,172844,’Bodyguard’,2,10),(1428,3131,’El Mariachi’,2,0),(1428,3136,’Carolina’,1,1),(1428,85,’Sands’,2,2),(1428,8170,’Ajedrez’,1,3),(1428,2295,’Billy’,2,4),(1428,11160,’Cucuy’,2,5),(1428,20231,’Lorenzo’,2,6),(1428,11159,’Belini’,2,7),(1428,5293,’Barillo’,2,8),(1428,27643,’Fideo’,2,9),(1428,1367499,’Romero’,2,10),(562,62,’John McClane’,2,0),(562,4566,’Hans Gruber’,2,1),(562,7674,’Karl’,2,2),(562,7673,’Holly Gennero McClane’,1,3),(562,7672,’Sgt. Al Powell’,2,4),(562,7675,’Deputy Police Chief Dwayne T. Robinson’,2,5),(562,7677,’Argyle’,0,6),(562,7676,’Richard Thornburg’,2,7),(562,51581,’Theo’,0,8),(562,7678,’Harry Ellis’,2,9),(562,4995,’Joseph Yoshinobu Takagi’,2,10),(562,1641420,’Franco’,0,11),(562,10673,’Tony’,2,12),(562,1641423,’Alexander’,0,13),(562,1217001,’Marco’,2,14),(562,1722431,’Kristoff’,0,15),(562,7679,’Eddie’,2,16),(562,61704,’Uli’,2,17),(562,1398466,’Heinrich’,0,18),(562,1290983,’Fritz’,0,19),(562,27585,’James’,0,20),(562,2055,’FBI Special Agent Johnson’,2,21),(562,14333,’FBI Agent Little Johnson’,2,22),(562,8189,’Thornburg\’s Assistant’,1,23),(562,1232407,’Lucy McClane’,0,24),(562,1722432,’John Jr.’,0,25),(562,1191434,’City Engineer’,0,26),(562,1538,’Walt, City Worker’,0,27),(562,156522,’Capt. Mitchell’,2,28),(562,1128238,’Rivers’,2,29),(562,1583695,’Dr. Hasseldorf’,2,30),(562,141747,’Young Cop’,0,31),(562,160374,’Harvey Johnson’,2,32),(562,23967,’Gail Wallens’,0,33),(562,152587,’Hostage’,1,34),(562,1385917,’Hostage’,1,35),(562,548663,’Hostage’,1,36),(562,161408,’Paulina’,1,37),(562,1116526,’Convenience Store Clerk’,0,38),(562,176924,’Guard’,0,39),(562,113506,’Cameraman’,0,40),(562,1265139,’Soundman’,0,41),(562,140176,’Businessman’,2,42),(562,551937,’Stewardess’,0,43),(562,1228671,’Girl at Airport’,0,44),(562,91243,’Dwayne T. Robinson\’s Driver (uncredited)’,2,45),(562,80449,’Police Detective (uncredited)’,0,46),(924,98,’Ana’,1,0),(924,10182,’Kenneth’,2,1),(924,4177,’Michael’,2,2),(924,327,’Andre’,2,3),(924,15232,’Steve’,2,4),(924,40009,’Frank’,2,5),(924,50217,’C.J.’,2,6),(924,7431,’Terry’,2,7),(924,51936,’Nicole’,1,8),(924,79411,’Bart’,0,9),(924,4568,’Norma’,1,10),(924,20196,’Tucker’,2,11),(924,101255,’Luda’,1,12),(924,101250,’Monica’,1,13),(924,51036,’Luis’,0,14),(924,15071,’The General’,0,15),(924,11161,’The County Sheriff’,2,16),(924,15070,’The Televangelist’,2,17),(924,104635,’CDC Reporter’,1,18),(924,122151,’Thrashing Zombie’,2,19),(2018,16866,’Mary Fiore’,1,0),(2018,10297,’Steve Edison’,2,1),(2018,20746,’Massimo’,2,2),(2018,20747,’Mrs. Donolly’,1,3),(2018,20748,’Burt Weinberg’,0,4),(2018,11074,’Geri’,1,5),(2018,20749,’Mr. Donolly’,0,6),(2018,20750,’Penny’,1,7),(2018,20751,’Fran Donolly’,0,8),(2018,20752,’Salvatore’,2,9),(2018,7166,’Dr. John Dojny’,2,10),(2018,20753,’Basil St. Mosely’,2,11),(2018,11794,’Dottie’,0,12),(2018,20754,’Benton’,2,13),(2018,20755,’Crying Bride’,0,14),(2018,13923,’Anna Bosco’,1,15),(2018,20756,’Frieda’,1,16),(9428,193,’Royal Tenenbaum’,2,0),(9428,5657,’Etheline Tenenbaum’,1,1),(9428,7399,’Chas Tenenbaum’,2,2),(9428,12052,’Margot Tenenbaum’,1,3),(9428,36422,’Richie Tenenbaum’,2,4),(9428,887,’Eli Cash’,2,5),(9428,1532,’Raleigh St. Clair’,2,6),(9428,2047,’Henry Sherman’,2,7),(9428,7447,’Narrator (voice)’,2,8),(9428,5950,’Dusty’,2,9),(9428,8690,’Pagoda’,2,10),(9428,5655,’Tennis Match Commentator #1 (voice) (uncredited)’,2,11),(9428,71555,’Farmer Father / Tex Hayward’,2,12),(9428,52021,’Hotel Manager’,2,13),(2832,3036,’Ed’,2,0),(2832,11477,’Rhodes’,2,1),(2832,2956,’Paris’,1,2),(2832,16861,’Larry’,2,3),(2832,658,’Dr. Malick’,2,4),(2832,20387,’Ginny’,1,5),(2832,11885,’George York’,2,6),(2832,10128,’Lou’,2,7),(2832,28410,’Robert Maine’,2,8),(2832,28412,’Caroline Suzanne’,1,10),(2832,28413,’Verteidiger’,2,11),(2832,3041,’Staatsanwalt’,2,12),(2832,15044,’Alice York’,1,13),(2832,28414,’Staatsanwaltsmitarbeiter’,2,14),(2832,28415,’Timmy York’,2,15),(2832,1578,’Richter Taylor’,2,16),(2832,28416,’Detective Varole’,2,17),(2832,28417,’Bailiff Jenkins’,2,18),(2832,28418,’Nackter Geschu00e4ftsmann’,0,19),(2832,28419,’Bailiff’,0,20),(2832,28401,’Gefrorene Leiche’,0,21),(2832,3201,’Malcolm Rivers’,2,22),(699,10222,’James Bond’,2,0),(699,10500,’Melina Havelock’,1,1),(699,10501,’Milos Columbo’,2,2),(699,10502,’Bibi Dahl’,1,3),(699,740,’Aristotle Kristatos’,2,4),(699,10503,’Countess Lisl von Schlaf’,1,5),(699,10504,’Jacoba Brink’,1,6),(699,10505,’Emile Leopold Locque’,2,7),(699,10506,’Erich Kriegler’,2,8),(699,10507,’Sir Timothy Havelock’,2,9),(699,9878,’Miss Moneypenny’,1,10),(699,9906,’Q’,2,11),(699,10462,’Sir Frederick Gray’,2,12),(699,6610,’General Anatol Gogol’,0,13),(699,39066,’Tanner’,2,14),(699,1173719,’Ferrara’,0,15),(699,4391,’Claus’,2,16),(699,27652,’Karageorge’,2,17),(699,35065,’Iona Havelock’,0,18),(699,162432,’Apostis’,2,19),(699,971230,’Santos’,0,20),(699,1205478,’Nikos’,0,21),(699,25079,’Hector Gonzales’,2,22),(699,10654,’First Sea Lord’,2,23),(699,214149,’Vice Admiral’,2,24),(699,219736,’McGregor’,2,25),(699,9142,’Bunky’,2,26),(699,1205479,’Vicar’,0,28),(699,1205481,’Girl in Flower Shop’,0,29),(699,1205482,’Mantis Man’,0,30),(699,141347,’Denis Thatcher’,2,31),(699,1205483,’The Prime Minister’,0,32),(699,185885,’Sharon, Q\’s Assistant (uncredited)’,0,33),(699,199077,’Guard at St. Cyril (uncredited)’,2,34),(699,33185,’Smithers’,0,35),(699,1205484,’Gonzu00e1lez Henchman (uncredited)’,0,36),(699,1205485,’Girl at Pool (uncredited)’,0,37),(699,1205486,’Girl at Pool (uncredited)’,0,38),(699,109988,’Herself – Singer in Title Sequence (uncredited)’,1,39),(699,104940,’Rublevich’,1,40),(9778,3036,’Jonathan Trager’,2,0),(9778,3967,’Sara Thomas’,1,1),(9778,12799,’Dean Kansky’,2,2),(9778,18354,’Halley Buchanan’,1,3),(9778,26510,’Bloomingdale\’s Salesman’,2,4),(9778,59165,’Bloomingdale\’s Stock Girl’,0,5),(9778,59166,’Customer at Bloomingdale\’s’,0,6),(9778,59167,’Customer at Bloomingdale\’s’,0,7),(9778,59170,’Host at Serendipity’,0,8),(9778,36816,’Josh\’s Dad’,2,9),(9778,59168,’Bloomingdale\’s Saleswoman #1′,1,10),(9778,59169,’Bloomingdale\’s Saleswoman #2′,1,11),(9778,59172,’Courtney Kansky’,1,12),(9778,59171,’Josh’,0,13),(9778,59173,’Louis Trager’,2,14),(9778,40385,’Mrs. Louis Trager’,1,15),(9778,28640,’Eve’,1,16),(9778,57387,’Leasing Office Temp’,2,17),(9778,38405,’Lars Hammond’,2,18),(8831,15111,’Max Walker’,2,0),(8831,29091,’Melissa Walker’,1,1),(8831,21399,’Senator Aaron McComb’,2,2),(8831,14888,’Commander Eugene Matuzak’,2,3),(8831,21369,’Fielding’,1,4),(8831,61543,’Ricky’,2,5),(8831,116047,’Atwood’,2,6),(8831,42317,’Spota’,2,7),(8831,6074,’Utley’,0,8),(8831,230136,’Shotgun’,0,9),(8831,69614,’Reyes’,2,10),(8831,173310,’Rollerblades’,0,11),(8831,946657,’Cole’,2,12),(8831,99856,’Lansing’,0,13),(8831,27111,’Parker’,2,14),(9398,7399,’Derek Zoolander’,2,0),(9398,887,’Hansel’,2,1),(9398,15286,’Matilda Jeffries’,1,2),(9398,23659,’Mugatu’,2,3),(9398,63,’Katinka’,1,4),(9398,26042,’Maury Ballstein’,2,5),(9398,12640,’J.P. Prewitt’,2,6),(9398,10127,’Larry Zoolander’,2,7),(9398,52860,’Scrappy Zoolander’,2,8),(9398,203809,’Todd’,0,9),(9398,1266372,’Brint’,2,10),(9398,1548237,’Rufus’,0,11),(9398,28846,’Meekus’,2,12),(9398,33663,’Himself’,2,13),(9398,2224,’Himself’,2,14),(9398,120615,’Tom Ford’,2,15),(9398,9777,’Himself’,2,17),(9398,77067,’Himself’,2,18),(9398,77068,’Himself’,0,19),(9398,524,’Herself’,1,20),(9398,77069,’Himself’,2,21),(9398,77070,’Herself’,1,22),(9398,10584,’Herself’,1,23),(9398,77071,’Himself’,2,24),(9398,38406,’Herself’,1,25),(9398,7487,’Himself’,2,26),(9398,77072,’Himself’,2,27),(9398,29783,’Himself’,2,28),(9398,77073,’Himself’,2,29),(9398,57553,’Herself’,1,30),(9398,52865,’Himself’,2,31),(9398,10822,’Himself’,2,32),(9398,3664,’Herself’,1,33),(9398,33163,’Herself’,2,34),(9398,77074,’Herself’,1,35),(9398,526,’Himself’,2,36),(9398,588726,’Herself’,0,37),(9398,1548238,’Herself’,0,38),(9398,175511,’Archie’,2,39),(9398,15009,’Evil DJ’,2,40),(9398,43120,’Olga the Masseuse’,2,41),(9398,1548251,’Prime Minister of Malaysia’,0,42),(9398,71555,’Hansel\’s Corner Guy’,2,43),(9398,153933,’Hansel\’s Posse’,0,44),(9398,1548258,’Hansel\’s Posse’,0,45),(9398,1548259,’Hansel\’s Posse’,0,46),(9398,1548260,’Hansel\’s Posse’,0,47),(9398,937052,’Hansel\’s Posse’,0,48),(9398,213557,’Hansel\’s Posse’,0,49),(9398,1548263,’Hansel\’s Posse’,0,50),(9398,1548264,’Hansel\’s Posse’,0,51),(9398,26046,’Hansel\’s Posse’,1,52),(9398,104505,’Italian Designer’,2,53),(9398,38334,’American Designer’,1,54),(9398,181461,’French Designer’,2,55),(9398,43461,’German Designer’,2,56),(9398,4496,’British Designer’,1,57),(9398,1548268,’Derek\’s Interview Hairstylist’,0,58),(9398,15801,’VH1 Reporter’,2,59),(9398,174107,’Mugatu Model’,1,60),(9398,101017,’Mugatu Bodyguard’,2,61),(9398,1548269,’Mugatu Bodyguard’,0,62),(9398,1548270,’Time Magazine Reader’,0,63),(9398,1548271,’Night Club Door Person’,0,64),(9398,1548272,’Night Club Security’,0,65),(9398,1548273,’Night Club Security’,0,66),(9398,1548274,’Night Club Bouncer / Biff’,0,67),(9398,1548275,’Night Club Bouncer / Maurice’,0,68),(9398,1548276,’Night Club Bouncer’,0,69),(9398,1548278,’Billy Zane\’s Date’,0,70),(9398,1025909,’Rico’,2,71),(9398,1548280,’Abraham Lincoln’,0,72),(9398,11006,’John Wilkes Booth’,2,73),(9398,1548282,’JFK Assassin’,0,74),(9398,95825,’JFK Assassin’,2,75),(9398,10872,’Monkey Photographer’,2,76),(9398,69532,’Irina’,0,77),(9398,1548285,’Sherpa’,0,78),(9398,1548286,’Climber’,0,79),(9398,1232610,’Cool Tattoo Girl’,1,80),(9398,1548287,’Dalai Lama Guy’,0,81),(9398,1548288,’Funky Loft Guest’,0,82),(9398,1232526,’Funky Loft Guest’,0,83),(9398,106433,’Funky Loft Guest’,0,84),(9398,1548289,’Funky Loft Guest’,0,85),(9398,1548290,’Ennui’,0,86),(9398,111514,’Maori Tribesman’,0,87),(9398,73831,’Janitor Derek’,0,88),(9398,1548291,’Janitor Hansel’,0,89),(9398,130229,’Derelicte Doorman’,0,90),(9398,1548292,’Derelicte Bouncer’,0,91),(9398,1548293,’Derek\’s Derelicte Hairstylist’,0,92),(9398,1236784,’Derek\’s Derelicte Make-up Artist’,0,93),(9398,1548294,’Zoolander Center Student’,0,94),(9398,1548295,’Infomercial Director’,0,95),(9398,1548296,’Derek, Jr.’,0,96),(9398,152302,’Story Hour Girl’,1,97),(9398,47983,’Herself (uncredited)’,1,98),(9398,10961,’Himself (uncredited)’,2,99),(9398,1920,’Herself (uncredited)’,1,100),(9398,4937,’Luke Zoolander (uncredited)’,2,101),(9398,1954,’Himself (uncredited)’,2,102),(9398,170874,’Himself’,2,103),(9398,1316507,’Model’,0,104),(3638,1922,’Kate’,1,0),(3638,6383,’Nick’,2,1),(3638,17140,’Zoe’,1,2),(3638,1276,’Paula’,1,3),(3638,33430,’Leah’,1,4),(3638,12438,’Therapist’,2,5),(3638,31713,’Sean’,2,6),(3638,4888,’Bernadette’,1,7),(3638,33431,’John’,0,8),(3638,33432,’Christine’,1,9),(3638,37153,’Charlotte’,1,10),(3638,13728,’Mr. Peterson’,2,11),(3638,1989,’Mrs. Peterson’,1,12),(3638,111116,’Ken’,2,13),(3638,1517868,’Ken\’s Wife’,1,14),(3638,33395,’Anna’,1,15),(3638,10693,’School principal Ellen Parker’,1,16),(4348,116,’Elizabeth Bennet’,1,0),(4348,15576,’Mr. Darcy’,2,1),(4348,10882,’Jane Bennet’,1,2),(4348,36665,’Mr. Bingley’,2,3),(4348,55636,’Mr. Bennet’,2,4),(4348,4154,’Mrs. Bennet’,1,5),(4348,20089,’Lydia Bennet’,1,6),(4348,36669,’Mr. Wickham’,2,7),(4348,5309,’Lady Catherine de Bourg’,1,8),(4348,36662,’Kitty Bennet’,1,9),(4348,66441,’Mary Bennet’,1,10),(4348,17521,’Caroline Bingley’,1,11),(4348,2441,’Mr. Collins’,2,12),(4348,1249,’Mrs. Gardiner’,1,13),(4348,36663,’Charlotte Lucas’,1,14),(4348,36668,’Betsy’,0,15),(4348,17476,’Mr. Gardiner’,2,16),(4348,36672,’Georgiana Darcy’,1,17),(4348,36666,’Netherfield Butler’,2,18),(78,3,’Rick Deckard’,2,0),(78,585,’Roy Batty’,2,1),(78,586,’Rachael’,1,2),(78,587,’Gaff’,2,3),(78,588,’Bryant’,2,4),(78,589,’Pris’,1,5),(78,590,’J.F. Sebastian’,2,6),(78,591,’Leon Kowalski’,2,7),(78,592,’Eldon Tyrell’,0,8),(78,593,’Zhora’,1,9),(78,20904,’Hannibal Chew’,2,10),(78,58495,’Holden’,2,11),(78,53760,’Bear’,2,12),(78,943481,’Kaiser’,2,13),(78,107074,’Taffey Lewis’,0,14),(78,951333,’Cambodian Lady’,1,15),(78,1221198,’Howie Lee’,0,16),(78,949610,’Saleslady’,1,17),(78,112965,’Abdul Ben Hassan’,2,18),(2001,73421,’Bobby Green’,2,0),(2001,8170,’Amanda Juarez’,1,1),(2001,20563,’Vadim Nezhinski’,2,2),(2001,13240,’Joseph Grusinsky’,2,3),(2001,3087,’Burt Grusinsky’,2,4),(2001,20562,’Michael Solo’,2,5),(2001,20564,’Jack Shapiro’,2,6),(2001,20566,’Hazel’,1,7),(2001,124909,’Jumbo Falsetti’,2,8),(2001,77351,’Pavel Lubyarsky’,2,9),(2001,72988,’Freddie’,2,10),(2001,17928,’Bloodied Patron’,0,11),(2001,143978,’Kalina Buzhayev’,1,12),(2001,562949,’Marat Buzhayev’,0,13),(2001,113570,’Sandra Grusinsky’,1,14),(2001,58535,’Spiro Giavannis’,2,15),(2001,163794,’Russell De Keifer’,2,16),(2001,1781689,’Claudia’,1,17),(2001,1781690,’Eli Mirichenko’,0,18),(2001,1781691,’Eli & Masha\’s Daughter’,1,19),(2001,1781692,’Eli & Masha\’s Son’,0,20),(2001,1781693,’Nat the Cop’,0,21),(2001,150932,’Sergeant Provenzano’,0,22),(2001,1781694,’Portly Cop’,0,23),(2001,1232538,’Uniformed Cop #1′,0,24),(2001,133452,’Police Chaplain’,2,25),(2001,1781695,’Uniformed Cop #2′,0,26),(2001,1781696,’Latino Man’,0,27),(2001,1781697,’Poker Player’,0,28),(2001,1145892,’Mayor’,0,29),(2001,1577096,’Commissioner Ruddy’,0,30),(2001,1669956,’Hospital Guard’,0,31),(2001,1781698,’Hospital Guard #2′,0,32),(2001,176695,’Nurse’,0,33),(2001,1660692,’Tattooed Man’,2,34),(2001,1781700,’Slavic Youth’,0,35),(2001,1255311,’Emergency Services Driver’,2,36),(2001,1781701,’Neighbor Lady’,1,37),(2001,1781703,’Neighbor’,0,38),(2001,1781704,’Luigi’,0,39),(2001,1781705,’Amanda\’s Mother’,1,40),(2001,1662136,’Schneider’,0,41),(2001,1648164,’Vitt the Guard’,2,42),(2001,122257,’Riker\’s Desk Guard’,0,43),(2001,162522,’Uniformed Police Officer’,0,44),(2001,97268,’Cop’,2,45),(2001,61016,’Guard’,2,46),(2001,1781706,’Guard’,0,47),(2001,171791,’Tough Looking Cop’,2,48),(2001,1781708,’Albanian Drug Lord’,0,49),(2001,1781709,’Parabolic Engineer’,0,50),(2001,1546180,’El Caribe Bouncer #1′,0,51),(2001,1253648,’El Caribe Bouncer #2′,0,52),(2001,204339,’El Caribe Party Patron #1′,0,53),(2001,1329415,’El Caribe Party Patron #2′,1,54),(2001,1781715,’El Caribe Party Patron #3′,0,55),(2001,1045964,’El Caribe Party Patron #4′,0,56),(2001,1781716,’Vadim\’s Goon #2′,0,57),(2001,1745908,’Eli Bodyguard’,2,58),(2001,1473075,’Police Reporter’,0,59),(2001,1781717,’Veronica’,1,60),(2001,1781718,’Bobby Green\’s Bodyguard’,0,61),(2001,1168139,’Vadim\’s Girlfriend’,1,62),(2001,1036843,’Club Dancer’,0,63),(2001,1781719,’ESU Officer’,0,64),(2001,1569578,’Police Officer’,2,65),(2001,1102616,’Riker\’s Prison Guard’,0,66),(2001,1554915,’Pavel\’s Driver’,0,67),(2001,1781720,’Police Officer’,0,68),(2001,1463961,’Bouncer’,2,69),(2001,1781722,’El Caribe Party Patron’,1,70),(2001,207297,’Body Guard’,0,71),(2001,1781724,’Dancer’,0,72),(2001,590493,’Policeman\’s Wife’,1,73),(2001,1781725,’Strip Club Visitor’,0,74),(2001,66685,’Bar Patron’,0,75),(2001,990108,’Bobby\’s Friend’,1,76),(2001,1246221,’El Caribe Party Patron’,1,77),(2001,1781349,’Graduation Attendee’,0,78),(2001,1781726,’TNT Cop in Shootout’,0,79),(2001,1781727,’Slavic Drug Packager’,1,80),(2001,1344672,’Bobby\’s Friend’,0,81),(2001,1461320,’El Caribe Party Guest’,0,82),(2001,189756,’Perp in Precinct’,0,83),(2001,1781730,’Cop\’s Wife’,1,84),(2001,1673610,’Mourner’,1,85),(2001,1781732,’Nightclub Guest’,1,86),(2001,1031779,’El Caribe Party Patron’,2,87),(2001,1781733,’TNT Detective’,0,88),(2001,26290,’Club Goer’,1,89),(2001,211964,’Police Officer’,0,90),(2001,118641,’El Caribe Party Patron’,1,91),(9746,58856,’Dalai Lama (Adult)’,0,0),(9746,58857,’Mother’,0,1),(9746,58858,’Father’,0,2),(9746,58859,’Dalai Lama (Age 12)’,0,3),(9746,1525270,’Chairman Mao’,2,4),(700,10222,’James Bond’,2,0),(700,10342,’Octopussy’,1,1),(700,10508,’Kamal’,2,2),(700,10509,’Magda’,1,3),(700,10510,’Gobinda’,2,4),(700,782,’Orlov’,2,5),(700,10511,’Twin One’,0,6),(700,10512,’Twin Two’,0,7),(700,9906,’Q’,2,8),(700,10513,’M’,2,9),(700,9878,’Miss Moneypenny’,1,10),(700,10514,’Penelope Smallbone’,0,11),(700,6610,’Gogol’,0,12),(700,1233481,’Vijay’,0,13),(700,14759,’Sadruddin’,2,14),(700,10462,’Minister of Defence’,2,15),(700,89065,’Fanning’,2,16),(700,199077,’009′,2,17),(700,189281,’Auctioneer’,2,18),(700,8664,’U.S. General’,2,19),(700,12829,’U.S. Aide’,2,20),(700,47139,’Soviet Chairman’,0,21),(700,1064072,’Gwendoline’,0,22),(700,1064073,’Midge’,1,23),(700,17484,’Kamp’,2,24),(700,190439,’Lenkin’,0,25),(700,104940,’Rublevitch’,1,26),(700,33185,’Smithers’,0,27),(700,1064075,’Bianca’,0,28),(700,1064076,’Thug with Yo-yo’,0,29),(700,954853,’Major Clive’,0,30),(700,100787,’British Ambassador’,2,31),(700,1458834,’Borchoi’,0,32),(700,1616272,’Karl’,0,33),(700,1616273,’Colonel Toro’,0,34),(700,1616274,’Mufti’,0,35),(700,95095,’Bubi’,2,36),(700,1229859,’Schatzl’,1,37),(700,1616278,’Petrol Pump Attendant’,0,38),(700,134667,’South American V.I.P.’,2,39),(700,59759,’South American Officer’,0,40),(700,147290,’Octopussy Girl’,1,41),(700,1616280,’Octopussy Girl’,0,42),(700,1225724,’Octopussy Girl’,0,43),(700,1428622,’Octopussy Girl’,0,44),(700,1616281,’Octopussy Girl’,0,45),(700,1218268,’Octopussy Girl’,0,46),(700,1306824,’Octopussy Girl’,0,47),(700,1616282,’Octopussy Girl’,0,48),(700,1616283,’Octopussy Girl’,0,49),(700,1616284,’Octopussy Girl’,1,50),(700,1616286,’Octopussy Girl’,0,51),(700,1616287,’Octopussy Girl’,0,52),(700,1616289,’Octopussy Girl’,0,53),(700,1616290,’Octopussy Girl’,0,54),(700,1616291,’Octopussy Girl’,0,55),(700,1323887,’Octopussy Girl’,0,56),(700,1616292,’Octopussy Girl’,0,57),(700,1616293,’Gymnast Supervisor’,0,58),(700,1616294,’Gymnast’,0,59),(700,1616295,’Gymnast’,0,60),(700,1616296,’Gymnast’,0,61),(700,1616297,’Gymnast’,0,62),(700,1616298,’Gymnast’,0,63),(700,1616299,’Gymnast’,0,64),(700,1616300,’Gymnast’,0,65),(700,1616301,’Gymnast’,0,66),(700,1616302,’Ringmaster’,0,67),(700,1616303,’Francisco the Fearless’,0,68),(700,1616304,’The Circus’,0,69),(700,1616305,’The Circus’,0,70),(700,1616306,’The Circus’,0,71),(700,1516350,’The Circus’,0,72),(700,1616307,’The Circus’,0,73),(700,1616308,’The Circus’,0,74),(700,1616309,’The Circus’,0,75),(700,1616310,’Thug’,0,76),(700,1616311,’Thug’,0,77),(700,1616312,’Thug’,0,78),(700,1616313,’Thug’,0,79),(700,8669,’Thug’,0,80),(700,1616314,’Thug’,0,81),(700,1616315,’Thug’,0,82),(4964,19274,’Ben Stone’,2,0),(4964,25541,’Alison Scott’,1,1),(4964,41087,’Debbie’,1,2),(4964,22226,’Pete’,2,3),(4964,41088,’Jason’,2,4),(4964,449,’Jay’,2,5),(4964,21007,’Jonah’,2,6),(4964,41089,’Martin’,2,7),(4964,41090,’Sadie’,1,8),(4964,963429,’Charlotte’,1,9),(4964,1524,’Ben\’s Dad’,2,10),(4964,21088,’Jack’,2,11),(4964,41091,’Jill’,1,12),(4964,19278,’Brent’,2,13),(4964,64342,’Club Doorman’,2,14),(4964,93285,’Jodi’,1,15),(4964,83586,’Doctor Kuni’,2,16),(4964,107770,’Young Doctor’,2,17),(4964,154826,’Alison\’s Friend’,1,18),(4964,52271,’Alison\’s Friend’,1,19),(4964,36801,’Samuel’,2,20),(4964,1225875,’Maria’,0,21),(4964,168380,’Female Doctor’,1,22),(4964,53400,’Dr. Pellagrino’,2,23),(4964,1539459,’Dr. Pellagrino\’s Nurse’,0,24),(4964,116805,’Fantasy Baseball Guy’,2,25),(4964,125574,’Lap Dancer’,1,26),(4964,99803,’Lap Dancer’,1,27),(4964,1222189,’Wardrobe Lady’,0,28),(4964,56731,’Herself (uncredited)’,1,29),(4964,4495,’Himself (uncredited)’,2,30),(4964,43120,’Himself (uncredited)’,2,31),(4964,17051,’Himself (uncredited)’,2,32),(4964,8170,’Herself (uncredited)’,1,33),(4964,167662,’Himself (uncredited)’,2,34),(4964,51298,’Himself (uncredited)’,2,35),(4964,1821747,’Waitress (uncredited)’,0,36),(1259,5309,’Barbara Covett’,1,0),(1259,112,’Sheba Hart’,1,1),(1259,2440,’Richard Hart’,2,2),(1259,36594,’Polly Hart’,1,3),(1259,37048,’Ben Hart’,2,4),(1259,37049,’Steven Connolly’,2,5),(1259,17483,’Sandy Pabblem’,2,6),(1259,33450,’Sue Hodge’,1,7),(1259,30316,’Bill Rumer’,2,8),(1259,37050,’Linda’,1,9),(1259,37051,’Gita’,1,10),(1259,37052,’Elaine Clifford’,1,11),(1259,37053,’Shebau2019s Mother’,0,12),(1259,37054,’Saskia’,1,13),(1259,37055,’Eddie’,2,14),(1259,37056,’Mr. Connolly’,0,15),(1259,37057,’Mrs. Connolly’,0,16),(1259,37058,’Annabel’,1,17),(1259,26854,’Brian Bangs’,2,18),(1259,83438,’Marjorie’,1,19),(1259,40311,’Martin’,2,20),(1259,37053,’Sheba\’s Mother’,0,21),(1259,1254650,’Eddie\’s Wife’,0,22),(5125,41309,’Anwar El-Ibrahimi’,2,0),(5125,368,’Isabella Fields El-Ibrahimi’,1,1),(5125,131,’Douglas Freeman’,2,2),(5125,41313,’Khalid’,2,3),(5125,41314,’Fatima Fawal’,1,4),(5125,41316,’Abasi Fawal’,2,5),(5125,41317,’Lina Fawal’,0,6),(5125,41318,’William Dixon’,2,7),(5125,18999,’Lee Mayer’,2,8),(5125,5064,’Corrine Whitman’,1,9),(5125,133,’Alan Smith’,2,10),(5125,1903,’Senator Hawkins’,2,11),(5125,143403,’Omar Adnan’,0,12),(5125,1589942,’Capitol Hill Police’,2,13),(5125,1662523,’Layla Fawal’,1,14),(174,1748,’James Tiberius Kirk’,2,0),(174,1749,’Spock’,2,1),(174,1750,’Dr. Leonard McCoy’,0,2),(174,1751,’Montgomery Scott’,2,3),(174,1752,’Hikaru Sulu’,0,4),(174,1754,’Pavel Chekov’,2,5),(174,1753,’Uhura’,1,6),(174,290,’General Chang’,2,7),(174,2109,’Lieutenant Valeris’,1,8),(174,2076,’Chancellor Gorkon’,2,9),(174,2111,’Azetbur’,1,10),(174,2112,’Admiral Cartwright’,2,11),(174,2115,’Federation President’,2,12),(174,2124,’Martia’,1,13),(174,1820,’Sarek’,2,14),(174,1759,’Excelsior Communications Officer’,1,15),(174,169920,’Chief in Command’,2,16),(174,24046,’Klingon Ambassador’,2,17),(174,160414,’Kerla’,2,18),(174,32494,’Klingon Judge’,2,19),(174,2391,’Klingon Defense Attorney’,2,20),(174,2224,’Excelsior Communications Officer’,2,21),(174,15372,’Excelsior Officer’,2,22),(174,1379424,’Nanclus’,2,23),(9583,18277,’Siddalee \’Sidda\’ Walker’,1,0),(9583,9560,’Viviane Joan \’Vivi\’ Abbott Walker’,1,1),(9583,58068,’\’Teensy\’ Melissa Whitman’,1,2),(9583,16896,’Shepard James \’Shep\’ Walker’,2,3),(9583,1956,’Grandma \’Buggy\’ Abbott’,1,4),(9583,15852,’Younger Vivi Abbott Walker’,1,5),(9583,10978,’Caro Eliza Bennett’,1,6),(9583,28778,’Necie Rose Kelleher’,1,7),(9583,2464,’Connor McGill’,2,8),(9583,28744,’Younger Teensy Whitman’,1,9),(9583,23504,’Younger Necie Kelleher’,1,10),(9583,56112,’Younger Shep Walker’,2,11),(9583,18022,’Genevieve Whitman’,1,12),(9583,33286,’Lt. Jack Whitman’,2,13),(9437,192,’Alex Cross’,2,0),(9437,15852,’Kate McTiernan’,1,1),(9437,2130,’Det. Nick Ruskin’,2,2),(9437,58293,’Davey Sikes’,2,3),(9437,3417,’Dr. William \’Will\’ Rudolph’,2,4),(9437,6067,’FBI Agent Kyle Craig’,2,5),(9437,5502,’Det. John Sampson’,2,6),(9437,1248,’Chief Hatfield, Durham P.D.’,2,7),(9437,55755,’Seth Samuel’,2,8),(9437,21366,’Dr. Ruocco’,1,9),(9437,12799,’Henry Castillo, LAPD’,2,10),(9437,77279,’Naomi Cross’,1,11),(9437,31712,’Dr. Wick Sachs’,2,12),(9437,111872,’Nana Cross’,0,13),(9437,4996,’Janell Cross’,1,14),(9437,8211,’Coty Pierce’,1,15),(9437,11321,’Megan Murphy’,1,16),(9437,163795,’Sgt. Willard’,2,17),(525,707,’Elwood Blues (as Elwood)’,2,0),(525,7171,’\’Joliet\’ Jake Blues (as Jake)’,2,1),(525,7172,’Reverend Cleophus James’,2,2),(525,7173,’Curtis’,2,3),(525,7174,’Ray’,2,4),(525,7175,’Mrs. Murphy’,1,5),(525,7176,’Steve \’The Colonel\’ Cropper’,2,6),(525,7177,’Donald \’Duck\’ Dunn’,0,7),(525,7178,’Murphy \’Murph\’ Dunne’,0,8),(525,7179,’Willie \’Too Big\’ Hall’,0,9),(525,76150,’Bones Malone’,0,10),(525,7208,’\’Blue Lou\’ Marini’,2,11),(525,7209,’Matt \’Guitar\’ Murphy’,2,12),(525,122115,’Mr. Fabulous’,0,13),(525,4,’Mystery Woman’,1,14),(525,19439,’Head Nazi’,2,15),(525,7180,’Burton Mercer’,2,16),(525,7210,’Schwester Mary Stigmata (\’Die Pinguin-Tante\’)’,1,17),(525,7207,’John Lee Hooker’,0,18),(525,122094,’Prison Guard’,0,19),(525,122095,’Prison Guard’,0,20),(525,122096,’Prison Guard’,0,21),(525,122098,’Choirmaster’,0,22),(525,122099,’Choir Soloist’,1,23),(525,122101,’Trooper Daniel’,0,24),(525,51579,’Trooper Mount’,2,25),(525,122105,’Sales Girl’,0,26),(525,122106,’Man in Toy Store’,0,27),(525,122107,’Lloyd’,0,28),(525,122108,’The Cheese Whiz’,0,29),(525,122110,’Mrs. Tarantino’,0,30),(525,122114,’Cocktail Waitress’,0,31),(525,5129,’Waiter’,2,32),(525,90163,’Father’,2,33),(525,122116,’Mother’,0,34),(525,122117,’Daughter #1′,0,35),(525,122118,’Daughter #2′,1,36),(525,122119,’Daughter #3′,1,37),(525,122120,’Sommelier’,0,38),(525,74840,’Gruppenfu00fchrer’,0,39),(525,122122,’Nazi’,2,40),(525,122124,’Nazi’,2,41),(525,122125,’Nazi’,0,42),(525,122126,’Cop’,0,43),(525,7908,’Corrections Officer’,2,44),(525,4610,’Trooper La Fong’,2,45),(525,3909,’Nazi’,2,46),(525,55247,’Cocktail Waitress’,0,47),(525,56271,’Choir’,0,48),(525,938558,’Charming Trooper’,0,49),(525,16119,’Tucker McElroy’,2,50),(525,488,’Cook County Assessor\’s Office Clerk’,2,51),(525,1263449,’Orphan’,2,52),(525,40092,’Chic Lady’,1,53),(245,3291,’Will’,2,0),(245,3292,’Marcus Brewer’,2,1),(245,3051,’Fiona Brewer’,1,2),(245,3293,’Rachel’,1,3),(245,3294,’Christine’,1,4),(245,3295,’Imogen’,1,5),(245,3296,’Imogen’,1,6),(245,3297,’John’,2,7),(245,3298,’Barney’,0,8),(245,3299,’Barney’,0,9),(245,3306,’Lindsey’,1,10),(245,3300,’Ellie’,1,11),(245,56547,’Ellie\’s Friend’,2,12),(245,3301,’Angie’,1,13),(245,3302,’Louie, Angie\’s Kid’,0,14),(245,3309,’Ali’,2,15),(245,3315,’Suzie’,1,16),(245,1631536,’Bitter Ex-Girlfriend’,1,17),(245,1220084,’Bitter Ex-Girlfriend’,1,18),(245,1235042,’Bitter Ex-Girlfriend’,1,19),(245,1263043,’Bitter Ex-Girlfriend’,1,20),(245,3307,’Will\’s Dad’,2,21),(245,3308,’Lindsey\’s Mum’,1,22),(245,1328285,’Cute Waitress’,1,23),(245,1631569,’Hairdresser’,1,24),(245,24243,’Nurse’,1,25),(245,47712,’Math Teacher’,0,26),(245,1631553,’Skechers Shopgirl’,1,27),(245,53246,’Amnesty International Worker Tom’,2,28),(245,80369,’Amnesty International Worker’,1,29),(245,3303,’Maitre D\”,0,30),(245,117316,’Frances’,0,31),(245,1229390,’Simon Cosgrove’,2,32),(9825,8984,’Jack Wells’,2,0),(9825,2233,’Kelly Scott’,1,1),(9825,17485,’Hector Cyr’,2,2),(9825,2039,’Sheriff Hank Keough’,2,3),(9825,71727,’Mrs. Delores Bickerman’,1,4),(9825,4095,’Walt Lawson’,2,5),(9825,87740,’Stephen Daniels’,2,6),(9825,21430,’Janine’,1,7),(9825,6240,’Myra Okubo’,1,8),(9825,18706,’Deputy Sharon Gare’,1,9),(9825,15032,’Deputy Burke’,2,10),(9825,21110,’Deputy Stevens’,2,11),(9825,140257,’Officer Coulson’,0,12),(9825,140258,’Paramedic’,0,13),(9825,42711,’State Trooper’,2,14),(9825,55257,’Kevin’,2,15),(9825,58712,’Airplane Pilot’,2,16),(186,2299,’Slevin’,2,0),(186,62,’Mr. Goodkat’,2,1),(186,140,’Lindsey’,1,2),(186,192,’The Boss’,2,3),(186,2282,’The Rabbi’,2,4),(186,205104,’Yitzchok’,0,5),(186,12978,’Dumbrowski’,2,6),(186,2283,’Det. Brikowski’,2,7),(186,34395,’Marty’,2,8),(186,26718,’Elvis’,2,9),(186,34,’Sloe’,2,10),(186,63859,’Max’,2,11),(186,74541,’Saul’,2,12),(186,5694,’Murphy’,2,13),(186,65727,’Nick Fisher’,0,14),(186,1004,’Roth’,2,15),(186,64303,’Slevin\’s Girlfriend’,1,16),(9549,10430,’Gus Grissom’,2,0),(9549,6065,’Gordon Cooper’,2,1),(9549,228,’John Glenn’,2,2),(9549,349,’Alan Shepard’,2,3),(9549,9880,’Chuck Yeager’,2,4),(9549,10767,’Glennis Yeager’,1,5),(9549,2714,’Wally Schirra’,2,6),(9549,5047,’Betty Grissom’,1,7),(9549,6008,’NASA Recruiter’,2,8),(9549,4785,’NASA Recruiter’,2,9),(9549,31440,’Pancho Barnes’,1,10),(9549,14699,’Trudy Cooper’,1,11),(9549,48810,’Deke Slayton’,2,12),(9549,1213001,’Scott Carpenter’,0,13),(9549,15417,’Lyndon B. Johnson’,2,14),(9549,76136,’Jack Ridley / Narrator’,2,15),(9549,271352,’Annie Glenn’,0,16),(9549,6914,’Scott Crossfield’,2,17),(9549,1907,’Louise Shepard’,1,18),(9549,1800524,’Marge Slayton’,0,19),(9549,1800526,’Rene Carpenter’,0,20),(9549,1800528,’Jo Schirra’,0,21),(9549,19968,’Minister’,2,22),(9549,15412,’Liaison Man’,2,23),(9549,10380,’Air Force Major’,2,24),(9549,1800531,’Gonzales’,0,25),(9549,15213,’Head of Program’,2,26),(9549,829,’Slick Goodlin’,2,27),(9549,1316248,’Woman Reporter’,0,28),(9549,82863,’Henry Luce’,2,29),(9549,53023,’Aborigine’,0,30),(9549,1912,’Girl at Pancho\’s’,1,31),(9549,1243284,’Fred’,0,32),(2666,17328,’John Murdoch’,2,0),(2666,227,’Inspector Frank Bumstead’,2,1),(2666,2628,’Dr. Daniel P. Schreber’,2,2),(2666,6161,’Emma Murdoch’,1,3),(2666,13474,’Mr. Hand’,2,4),(2666,385,’Mr. Book’,2,5),(2666,27752,’Mr. Wall’,2,6),(2666,27753,’Det. Eddie Walenski’,2,7),(2666,8398,’Karl Harris’,2,8),(2666,27754,’Officer Husselbeck’,2,9),(2666,27755,’May’,1,10),(2666,40046,’Chief Inspector Stromboli’,2,11),(2666,1040112,’Hotel Manager / Vendor’,0,12),(2666,152463,’Taxi Driver’,2,13),(2666,15340,’Mr. Rain’,2,14),(2666,1121516,’Mr. Sleep’,0,15),(2666,1860582,’Mr. Sleep Filming Double’,0,16),(2666,933024,’Mr. Quick’,2,17),(8080,530,’Fran Kulok’,1,0),(8080,6383,’Thomas Mackelway’,2,1),(8080,2282,’Benjamin O\’Ryan’,2,2),(8080,9464,’Rich Charleton’,2,3),(8080,34395,’Harold Speck’,2,4),(8080,15318,’Raymond Starkey’,2,5),(5126,3036,’David’,2,0),(5126,41308,’Dennis’,2,1),(5126,2956,’Harlee’,1,2),(5126,3234,’Liz’,1,3),(5126,17485,’Jeff’,2,4),(5126,31028,’Lefkowitz’,2,5),(5126,2598,’Sophie’,1,6),(5126,5657,’Mimi’,1,7),(5126,168569,’Esther’,0,8),(5126,146557,’Young David’,0,10),(1613,2231,’Elmo McElroy’,2,0),(1613,18023,’Felix DeSouza’,2,1),(1613,1246,’Dakota Parker’,1,2),(1613,7470,’The Lizard’,2,3),(1613,7026,’Iki’,2,4),(1613,28848,’Detective Virgil Kane’,2,5),(1613,29699,’Leopold Durant’,2,6),(1613,1225436,’Arthur’,2,7),(1613,68046,’Shirley DeSouza’,1,8),(1613,29698,’Frederick’,2,9),(1613,39681,’Blowfish’,2,10),(1613,29697,’L.A. Highway Patrol’,2,11),(1613,33403,’Mr. Davidson’,2,12),(1613,86442,’Mr. Escobar’,2,13),(1613,206733,’Mr. Ho-Fat’,0,14),(1613,4317,’Konokko’,2,15),(1613,185399,’Mr. Yuri’,2,16),(1613,1628513,’Mr. Jones’,2,17),(1613,19704,’Trevor’,2,18),(1613,58475,’Pudsey Smith’,2,19),(1613,64160,’Hector Dougal McElroy’,2,20),(1613,1230749,’Priest’,2,21),(1613,1806157,’Hotel Maid’,0,22),(1613,82410,’Deckhand’,2,23),(1613,218347,’Pharmacist’,0,24),(1613,218882,’Anfield Commissionaire’,2,25),(8944,62,’Himself’,2,0),(8944,380,’Ben’,2,1),(8944,2228,’Himself’,2,2),(8944,32,’Kelly’,1,3),(8944,2283,’Scott Solomon’,2,4),(8944,1241,’Dick Bell’,2,5),(8944,37917,’Zoe’,1,6),(8944,4888,’Dwan’,1,7),(8944,65760,’Vanity Fair Coordinator’,1,8),(8944,2229,’Lou Tarnow’,1,9),(8944,7486,’Jeremy Brunell’,2,10),(8944,19978,’Pollster’,2,11),(8944,6696,’Johnny’,2,12),(8944,39985,’Jimmy’,0,13),(8944,60021,’Studio Marketing Guy’,2,14),(8944,96172,’Carl’,0,15),(6957,4495,’Andy Stitzer’,2,0),(6957,2229,’Trish’,1,1),(6957,22226,’David’,2,2),(6957,71530,’Jay’,2,3),(6957,19274,’Cal’,2,4),(6957,43775,’Paula’,1,5),(6957,41087,’Nicky’,1,6),(6957,9281,’Beth’,1,7),(6957,52852,’Marla’,1,8),(6957,125167,’Amy’,1,9),(6957,142333,’Woman Who Bought Television’,1,10),(6957,76525,’Mooj’,2,11),(6957,84898,’Haziz’,2,12),(6957,1446871,’Mark’,2,13),(6957,1236318,’Julia’,1,14),(6957,54695,’Jill’,1,15),(6957,100867,’Bernadette’,1,16),(6957,168380,’Gina’,1,17),(6957,1481,’Joe’,2,18),(6957,99803,’Porn Star’,1,19),(6957,55638,’Smart Tech Customer’,2,20),(6957,21007,’eBay Customer’,2,21),(6957,61182,’Woman at Speed Dating’,1,22),(6957,1164796,’Woman at Speed Dating’,1,23),(6957,116475,’Woman at Speed Dating’,0,24),(6957,54704,’Speed Dating MC’,2,25),(6957,1230173,’Health Clinic Counselor’,1,26),(6957,63235,’Dad at Health Clinic’,2,27),(6957,28638,’Dad at Health Clinic’,2,28),(6957,1219899,’Dad at Health Clinic’,2,29),(6957,114600,’Boy at Health Clinic’,2,30),(6957,1227102,’Boy at Health Clinic’,2,31),(6957,1577374,’Waxing Lady’,1,32),(6957,1219117,’Prostitute’,2,33),(6957,1577376,’Bar Girl’,1,34),(6957,52271,’Bar Girl’,1,35),(6957,1009885,’Bar Girl’,1,36),(6957,1577405,’Bar Girl’,1,37),(6957,106487,’Bar Girl’,1,38),(6957,1519588,’Bar Girl’,1,39),(6957,54708,’Toe-Sucking Girl’,1,40),(6957,1577410,’16 Year-Old Andy’,0,41),(6957,1233007,’Girl with Braces’,1,42),(6957,170759,’Smart Tech Customer’,0,43),(6957,1234693,’Smart Tech Customer’,2,44),(6957,119757,’Woman Buying Videotapes’,1,45),(6957,54696,’Man Buffing Floor’,2,46),(6957,31507,’Mother at Restaurant’,1,47),(6957,54720,’Father at Restaurant’,2,48),(6957,1577418,’Daughter at Restaurant’,1,49),(6957,1577428,’Waitress at Restaurant’,1,50),(6957,1577430,’Kim (uncredited)’,1,51),(6957,205341,’Young Andy (uncredited)’,2,52),(6957,155687,’Speed Dater (uncredited)’,1,53),(6957,26998,’Speed Dater (uncredited)’,1,54),(6957,51856,’Woman #1 (uncredited)’,1,55),(6957,222139,’Woman #2 (uncredited)’,1,56),(6957,555651,’Newswoman (uncredited)’,1,57),(6957,1577434,’Girl in Electronic Store (uncredited)’,1,58),(6957,1577437,’Bar Patron (uncredited)’,1,59),(6957,232220,’Porn Actress (uncredited)’,0,60),(6957,169200,’Andy\’s Mother (uncredited)’,1,61),(6957,1459152,’Cop (uncredited)’,0,62),(6957,55090,’Boy at Wedding (uncredited)’,2,63),(6957,1314992,’Customer (uncredited)’,1,64),(6957,1577499,’Redhead (uncredited)’,1,65),(6957,1423756,’Shopping Girl (uncredited)’,1,66),(1934,12763,’Will Shakespeare’,2,0),(1934,12052,’Viola De Lesseps’,1,1),(1934,118,’Philip Henslowe’,2,2),(1934,207,’Hugh Fennyman’,2,3),(1934,5309,’Queen Elizabeth’,1,4),(1934,11356,’Nurse’,1,5),(1934,5472,’Lord Wessex’,2,6),(1934,880,’Ned Alleyn’,2,7),(1934,4001,’Tilney’,2,8),(1934,20069,’Makepeace’,0,9),(1934,20070,’Ralph Bashford’,2,10),(1934,4757,’Christopher Marlowe’,2,11),(1934,22159,’Richard Burbage’,2,12),(1934,15740,’Frees’,2,13),(1934,1125580,’John Webster’,2,14),(951,1100,’Detective John Kimble’,2,0),(951,14698,’Joyce Palmieri / Rachel Crisp’,1,1),(951,14699,’Detective Phoebe O\’Hara’,1,2),(951,12516,’Miss Schlowski’,1,3),(951,14700,’Cullen Crisp, Sr.’,2,4),(951,14707,’Cindy’,1,5),(951,14701,’Eleanor Crisp’,1,6),(951,14702,’Sylvester\’s Mother’,1,7),(951,14703,’Dominic Palmieri’,2,8),(951,73961,’Dominic Palmieri’,2,9),(951,14704,’Samantha\’s Mother’,1,10),(951,4255,’Captain Salazar’,2,11),(951,14706,’Danny’,2,12),(951,14708,’Keisha\’s Mother’,1,13),(951,11627,’Zach\’s Mother’,1,14),(951,1144361,’Crisp\’s Lawyer’,0,15),(951,154826,’3rd Grade Student’,1,16),(951,8186,’Joseph’,2,17),(951,21402,’Larry’,2,18),(951,1044,’Firefighter’,2,19),(951,51992,’Rosa’,1,20),(951,62551,’Joshua\’s Mother’,1,21),(951,1785179,’Henry Shoop’,0,22),(951,1785209,’Assistant to Schlowski’,1,23),(951,152585,’Judge’,0,24),(951,1785213,’Waitress’,1,25),(951,41508,’Male Hairstylist’,2,26),(951,172525,’Mall Guard #2′,0,28),(951,160488,’Mall Guard #3′,2,29),(951,9780,’Stewardess’,1,30),(951,554095,’Dope Dealer’,0,31),(951,1390442,’Zach\’s Father’,2,32),(951,4025,’Assistant to Salazar’,2,33),(951,1785221,’Toy Store Clerk’,0,34),(951,1174939,’Daryl’,2,35),(951,1785222,’Pharmacist’,0,36),(951,1785223,’Substitute Teacher’,1,37),(951,60857,’Low Life #1′,2,38),(951,1134691,’Low Life #2′,0,39),(951,1785227,’Low Life #3′,0,40),(951,1785228,’Low Life #4′,0,41),(951,1785229,’Punk Tramp’,1,42),(951,174560,’Street Tough #1′,0,43),(951,1734768,’Street Tough #2′,2,44),(951,188274,’Street Tough #3′,0,45),(951,1785230,’Fire Chief’,0,46),(951,194985,’Keisha\’s Father’,0,47),(951,1785231,’Restaurant Hostess’,1,48),(951,1785232,’Kissing Girl’,1,49),(951,52443,’Kissing Boy’,2,50),(951,1785236,’Nurse’,1,51),(951,1785240,’Salon Receptionist’,1,52),(951,1785243,’Zach’,0,53),(951,1785244,’Joshua’,0,54),(951,65300,’Emma’,1,55),(951,1785245,’Samantha’,1,56),(951,1785248,’Lowell’,0,57),(951,1785252,’John’,0,58),(951,1178795,’Sylvester’,2,59),(951,1785254,’Keisha’,0,60),(951,1785255,’Latiana’,0,61),(951,108212,’William’,2,62),(951,132351,’Kevin’,2,63),(951,1785256,’Sedgewinn’,0,64),(951,1785259,’Sam’,0,65),(951,1785260,’Sarah’,0,66),(951,1785262,’Tina’,1,67),(951,1785266,’Rina’,1,68),(951,1785267,’Matthew’,0,69),(951,1785268,’Heather’,1,70),(951,12928,’Harvey’,2,71),(951,1785271,’Mary’,0,72),(951,1785274,’Dorothy’,1,73),(951,8185,’Jennifer’,1,74),(951,1785277,’Courtney’,0,75),(951,1785279,’Catherine’,1,76),(951,1785280,’Nick’,0,77),(951,1785281,’Tom’,0,78),(951,1785282,’Erwin’,0,79),(951,1785283,’Student’,0,80),(951,1004156,’Lawyer’,2,81),(951,43010,’Street Tough #4′,0,82),(951,1591740,’Parent’,0,83),(951,1785290,’Firefighter’,0,84),(951,154745,’Mall Guard #1′,2,85),(9454,69597,’Danielle De Barbarac’,1,0),(9454,15336,’Prince Henry’,2,1),(9454,5657,’Baroness Rodmilla De Ghent’,1,2),(9454,17198,’Marguerite De Ghent’,1,3),(9454,15091,’Jacqueline De Ghent’,1,4),(9454,35257,’King Francis’,2,5),(9454,33448,’Queen Marie’,0,6),(9454,3568,’Leonardo da Vinci’,2,7),(9454,13014,’Royal Page’,2,9),(9454,229672,’Gustave’,2,10),(9454,1924,’Auguste’,0,11),(9454,234586,’Young Danielle’,0,12),(9454,1439728,’Paulette’,0,13),(9454,17479,’Louise’,1,14),(9454,141521,’Maurice’,2,15),(9454,14812,’Grande Dame’,1,16),(9454,13474,’Pierre Le Pieu’,2,17),(9454,83548,’Capt. Laurent’,2,18),(9454,12838,’Wilhelm Grimm’,2,19),(9454,181044,’Jacob Grimm’,0,20),(9454,1214692,’Young Marguerite’,0,21),(9454,1848075,’Young Jacqueline’,0,22),(9454,53351,’Celeste’,1,23),(9454,1692055,’Isabella’,0,24),(9454,1848079,’Marquis de Limoges’,0,25),(2055,1269,’Charley Waite’,2,0),(2055,3087,’Boss Spearman’,2,1),(2055,5658,’Denton Baxter’,2,2),(2055,2169,’Percy’,2,3),(2055,8688,’Button’,2,4),(2055,785,’Sheriff Poole’,2,5),(2055,21132,’Mose’,2,6),(2055,8335,’Butler’,2,8),(2055,516,’Sue Barlow’,1,9),(2055,65771,’Doc Barlow’,2,10),(2055,1371163,’Cafe Man’,0,11),(2055,229,’Mack’,2,12),(2055,17638,’Ralph’,2,13),(2055,1371164,’Ralph\’s Wife’,0,14),(2055,2320,’Wylie’,2,15),(1551,2628,’Nelson’,2,0),(1551,1204,’Rachel Mannus’,1,1),(1551,4724,’David Labraccio’,2,2),(1551,13021,’Joe Hurley’,2,3),(1551,17485,’Randy Steckle’,2,4),(1551,1984,’Winnie Hicks’,1,5),(1551,56510,’Billy Mahoney’,2,6),(1551,10488,’Rachel\’s Father’,2,7),(1551,51215,’Young Nelson’,2,8),(1551,1075041,’Young Winnie’,0,9),(1551,15250,’Anne Coldren’,1,10),(1551,159394,’Uncle Dave’,2,11),(1551,949848,’Young David’,2,12),(1551,1075042,’Playground Kid’,0,13),(1551,1075043,’Playground Kid’,0,14),(1551,1303226,’Bridget’,0,15),(1551,5151,’Housewife’,1,16),(1551,142333,’Bag Lady’,1,17),(1551,56358,’Edna’,1,18),(5902,21605,’Lt. Gen. Fredrick. Browning’,2,0),(5902,3085,’Sgt. Eddie Dohun’,2,1),(5902,3895,’Lt. Col. John O.E. Vandeleur’,2,2),(5902,738,’Maj. Gen. Robert E. Urquhart’,2,3),(5902,9126,’Lt. Gen. Brian G. Horrocks’,2,4),(5902,827,’Col. Robert Stout’,2,5),(5902,193,’Maj. Gen. Stanislaw F. Sosabowski’,2,6),(5902,4173,’Lt. Col. John D. Frost’,2,7),(5902,37777,’Generalmajor der Waffen-SS Karl Ludwig’,2,8),(5902,3359,’Dr. Jan Spaander’,2,9),(5902,31070,’Brig. Gen. James M. Gavin’,2,10),(5902,4135,’Maj. Julian Cook’,2,11),(5902,12150,’General der Waffen-SS Wilhelm Bittrich’,2,12),(5902,11916,’Kate ter Horst – the Angel of Arnhem’,1,13),(5902,156701,’Sergeant Clegg’,2,14),(5902,656,’RAF meteorologist officer’,2,15),(5902,55037,’R.A.F. Briefing Officer’,2,16),(5902,14121,’Field Marshal Karl R.G. Von Rundstedt’,2,17),(5902,14902,’Capt. Glass’,2,18),(5902,1492649,’Cpl. Hancock’,2,19),(5902,26589,’Field Marshal Walter Model’,2,20),(5902,2629,’Cpl. Davies’,2,21),(5902,44349,’General Blumentritt’,2,22),(5902,40365,’German Sentry’,2,23),(5902,742,’Lt. Col. Giles A.M. Vandeleur’,2,24),(5902,17356,’Lt. Rafferty’,2,25),(5902,7907,’U.S. Lieutenant’,2,26),(5902,44358,’Capt. Grabner’,2,27),(5902,29068,’Trooper Binns’,2,28),(5902,65505,’U.S. Medical Colonel’,2,30),(5902,120492,’Pvt. Archer’,0,31),(5902,106096,’Sergeant Towns’,2,32),(5902,19331,’Brig. Gen. Gerald Lathbury’,2,33),(9358,17303,’Clear Rivers’,1,0),(9358,17236,’Kimberly Corman’,1,1),(9358,57428,’Officer Thomas Burke’,2,2),(9358,19384,’William Bludworth’,2,3),(9358,42710,’Kat’,0,4),(9358,233191,’Eugene Dix’,0,5),(9358,20188,’Nora Carpenter’,1,6),(9358,58374,’Tim Carpenter’,2,7),(9358,33293,’Evan Lewis’,0,8),(9358,95517,’Isabella Hudson’,1,9),(9358,56825,’Shaina’,1,10),(9358,90132,’Dano’,0,11),(9358,65772,’Frankie’,2,12),(9358,41436,’Mr. Corman’,2,13),(9358,80352,’Brian Gibbons’,2,14),(134,1461,’Ulysses Everett McGill’,2,0),(134,1241,’Pete Hogwallop’,2,1),(134,1462,’Delmar O\’Donnell’,2,2),(134,1230,’Daniel Big Dan Teague’,2,3),(134,18686,’Penny Wharvey-McGill’,1,4),(134,1465,’Tommy Johnson’,2,5),(134,1466,’Menelaus Pappy O\’Daniel’,2,6),(134,1467,’Junior O\’Daniel’,0,7),(134,1010,’George Nelson’,2,8),(134,1468,’Pappy\’s Staff’,2,9),(134,1469,’Pappy\’s Staff’,2,10),(134,1470,’Homer Stokes’,2,11),(134,1471,’The Little Man’,2,12),(134,1472,’Vernon T. Waldrip’,2,13),(134,1473,’Sheriff Cooley’,2,14),(134,1474,’Siren’,1,15),(134,1475,’Siren’,1,16),(134,1476,’Siren’,0,17),(134,1478,’Pomade Vendor’,0,18),(134,1479,’Washington B. Wash Hogwallop’,2,19),(134,1480,’Boy Hogwallop’,0,20),(134,1481,’Blind Seer’,2,21),(134,17401,’Mr. Lund’,2,22),(1901,17052,’Carter Duryea’,2,0),(1901,1245,’Alex Foreman’,1,1),(1901,6065,’Dan Foreman’,2,2),(1901,19838,’Ann Foreman’,1,3),(1901,19839,’Morty’,2,4),(1901,9048,’Mark Steckle’,2,5),(1901,4492,’Eugene Kalb’,2,6),(1901,4728,’Lou’,2,7),(1901,11826,’Kimberly’,1,8),(1901,13936,’Corwin’,2,9),(1901,15232,’Enrique Colon’,2,10),(1901,33457,’Alicia’,1,11),(1901,16427,’Hector’,2,12),(1901,56890,’Teddy K’,2,13),(1901,68842,’Petey’,2,14),(7445,2219,’Sam Cahill’,2,0),(7445,131,’Tommy Cahill’,2,1),(7445,524,’Grace Cahill’,1,2),(7445,9880,’Hank Cahill’,2,3),(7445,51544,’Elsie Cahill’,1,4),(7445,54479,’Isabelle Cahill’,1,5),(7445,967376,’Maggie Cahill’,1,6),(7445,115730,’Joe Willis’,2,7),(7445,5365,’Maj. Cavazos’,2,8),(7445,36662,’Cassie Willis’,1,9),(7445,167862,’Yusuf’,2,10),(7445,103330,’Murad’,2,11),(7445,824,’Sweeney’,2,12),(7445,105786,’A.J.’,2,13),(7445,1117439,’Owen’,0,14),(7445,33430,’Tina’,1,15),(7445,1333907,’Lt. Sanderson’,2,16),(7445,1205880,’Sgt. Major Dever’,0,17),(7445,53969,’The Nose’,2,18),(7445,1862746,’Ahmed’,0,19),(7445,1862747,’Elvis’,0,20),(7445,1240490,’Navy Chaplain’,2,21),(7445,123102,’Taliban Leader’,0,22),(7445,209844,’Marine Wife’,0,23),(2057,11701,’Julia Russell/Bonnie Castle’,1,0),(2057,3131,’Luis Antonio Vargas’,2,1),(2057,21142,’Colonel Worth’,2,2),(2057,12536,’Alan Jordan’,2,3),(2057,21143,’Augusta Jordan’,1,4),(2057,21144,’Sara’,1,5),(2057,21145,’Emily Russel’,1,6),(2057,11155,’Walter Downs/Billy/Mephisto’,2,7),(2057,21166,’Faust, On Stage’,2,8),(2057,23873,’Margareta – Stage’,2,9),(8011,38559,’Connor \’The Highlander\’ MacLeod’,2,0),(8011,16214,’Kane’,2,1),(8011,13549,’Alex Johnson / Sarah’,1,2),(8011,10134,’Nakano’,2,3),(8011,53596,’Stenn’,2,4),(8011,53597,’Takamura’,0,5),(8011,29069,’Jack Donovan’,2,7),(8011,1351390,’Pierre Bouchet’,2,8),(9092,10205,’Lady Claudia Hoffman’,1,0),(9092,4783,’Lord Friedrich Hoffman’,2,1),(9092,18315,’Lilliana \’Lilly\’ Hoffman’,1,2),(9092,6575,’Will’,2,3),(9092,14468,’Lars’,2,4),(9092,43479,’Peter Gutenberg’,2,5),(9092,120006,’Rolf’,2,6),(9092,17290,’Scar’,2,7),(9092,56955,’Little Lilliana \’Lilly\’ Hoffman’,1,8),(2779,707,’Chris Magruder’,2,0),(2779,9994,’Betty Ann Fitzgerald’,1,1),(2779,1243,’CW Briggs’,2,2),(2779,6885,’Laura Kensington’,1,3),(2779,28010,’Voltan’,2,4),(2779,28004,’Al’,2,5),(2779,28002,’Sam’,2,6),(2779,24046,’Mize’,2,7),(2779,19189,’Jill’,1,8),(2779,28003,’Rosie’,1,9),(2779,28005,’Bu00fcroangestellter’,0,10),(2779,1986,’Ned’,2,11),(2779,28007,’Essenslieferant’,2,12),(2779,12900,’George Bond’,2,13),(2779,28009,’Rainbow Room All Star’,2,14),(2779,28022,’Voltans Mitwirkender’,0,15),(2779,28023,’Voltans Mitwirkender’,0,16),(2779,28024,’Voltans Mitwirkende’,1,17),(2779,28029,’Kensington Gast’,0,18),(2779,28030,’Kensington Gast’,1,19),(2779,28031,’Fingerabdruck Kriminalbeamter’,2,20),(2779,28033,’Tom’,2,21),(2779,28035,’Charlie’,0,22),(2779,28036,’Herb Coopersmith’,2,23),(2779,28037,’Joe Coopersmith’,2,24),(2779,28040,’Kontaktmann’,0,25),(2779,1089394,’Polizist in Dienststelle’,2,26),(2779,28006,’Bu00fcroangestellter’,0,27),(2779,28008,’Kellner bei Rocky\’s’,0,28),(2779,28011,’Rainbow Room All Star’,0,29),(2779,28012,’Rainbow Room All Star’,0,30),(2779,28013,’Rainbow Room All Star’,0,31),(2779,28014,’Rainbow Room All Star’,0,32),(2779,28015,’Rainbow Room All Star’,0,33),(2779,28016,’Rainbow Room All Star’,0,34),(2779,28017,’Rainbow Room All Star’,0,35),(2779,28018,’Rainbow Room All Star’,0,36),(2779,28019,’Rainbow Room All Star’,0,37),(2779,28021,’Voltans Assistentin’,0,38),(2779,28025,’Nachwu00e4chter’,0,39),(2779,28026,’Rose Kensington’,0,40),(2779,28027,’Kensington Gast’,2,41),(2779,28028,’Kensington Gast’,0,42),(2779,28032,’Mike’,0,43),(2779,28034,’Kensigton Jungfrau’,1,44),(2779,28039,’Radiosprecher’,0,45),(2779,20967,’Band Leader’,2,46),(1985,5469,’Justin Quayle’,2,0),(1985,3293,’Tessa Quayle’,1,1),(1985,6413,’Sandy Woodrow’,2,2),(1985,2440,’Sir Bernard Pellegrin’,2,3),(1985,20425,’Tim Donohue’,2,4),(1985,4935,’Dr. Lorbeer aka Dr. Brandt’,2,5),(1985,7025,’Arthur Ham Hammond’,2,6),(1985,5418,’Dr. Arnold Bluhm’,2,7),(1985,20426,’Miriam’,1,8),(1985,20427,’Jomo’,0,9),(1985,20428,’Jomo\’s Wife’,0,10),(1985,20429,’Porter Coleridge’,0,11),(1985,986513,’Dr. Joshua Ngaba’,2,12),(1985,128645,’Ghita Pearson’,1,13),(1985,43131,’Sir Kenneth Curtiss’,0,14),(1985,18066,’Gloria Woodrow’,1,15),(1985,1120086,’Wanza Kiluhu’,0,16),(1985,1120087,’Kioko’,0,17),(1985,19911,’Birgit’,0,18),(1985,1657148,’Guido Hammond’,2,19),(615,8767,’Jesus’,2,0),(615,8768,’Maria’,1,1),(615,28782,’Maria Magdalena’,1,2),(615,8778,’Satan’,1,3),(615,15915,’Disma’,2,4),(615,927782,’Gesta’,0,5),(615,8769,’Johannes’,2,6),(615,8770,’Simon Peter’,0,7),(615,8772,’Kaiphas’,2,8),(615,44650,’Hannas’,2,9),(615,1566523,’l\’accusatore’,0,10),(615,8774,’Judas Ischarioth’,2,11),(615,8775,’Pontius Pilatus’,2,12),(615,1882942,’Gesu00f9 da giovane’,0,13),(615,936479,’Giacomo’,0,14),(615,8776,’Claudia Procula’,1,15),(615,18852,’Barabba’,0,16),(615,8777,’Abenader’,2,17),(615,147191,’Giuseppe di Animantea’,0,18),(615,1882943,’Nicodemo’,0,19),(615,1005274,’Re Erode Antipa’,2,20),(615,124679,’Serafia’,1,21),(615,1853582,’Elder’,0,22),(615,118583,”,2,23),(788,2157,’Daniel Hillard / Mrs. Doubtfire’,2,0),(788,35,’Miranda Hillard’,1,1),(788,517,’Stuart Dunmeyer’,2,2),(788,7420,’Uncle Frank Hillard’,2,3),(788,11715,’Gloria Chaney’,1,4),(788,8987,’Lydia Hillard’,1,5),(788,11716,’Christopher Hillard’,2,6),(788,11717,’Natalie Hillard’,1,7),(788,10360,’Jonathan Lundy’,2,8),(788,11718,’Mrs. Sellner, The Social Worker’,1,9),(788,11719,’Aunt Jack Hillard’,2,10),(788,27447,’Bus Driver’,2,11),(788,80742,’Justin Gregory’,2,12),(788,162323,’A.D.R. Director Lou’,0,13),(788,1006368,’Female Employee #1′,0,14),(788,1077864,’Female Employee #2′,0,15),(788,167122,’Male Employee’,2,16),(788,197036,’Cop’,0,17),(788,3044,’Judge’,2,18),(788,178148,’Miranda\’s Attorney’,0,19),(788,156192,’Daniel\’s Attorney’,0,20),(788,153546,’Miranda\’s Mother’,0,21),(788,1077865,’Alice’,0,22),(788,1077866,’Thug’,0,23),(380,4483,’Raymond Babbitt’,2,0),(380,500,’Charlie Babbitt’,2,1),(380,3124,’Susanna’,1,2),(380,2211,’Dr. Bruner’,2,3),(380,5145,’John Mooney’,0,4),(380,5146,’Vern’,2,5),(380,5147,’Lenny’,2,6),(380,5148,’Iris’,1,7),(380,5149,’Sally Dibbs’,1,8),(380,5150,’Township Doctor’,2,9),(380,5151,’Mother at Farm House’,1,10),(380,5152,’Farm Kid#1′,0,11),(380,5153,’Farm Kid#2′,0,12),(380,5154,’Farm Kid#3′,0,13),(380,5156,’Farm Kid#5′,0,14),(380,5157,’Farm Kid#6′,0,15),(380,5158,’Secretary Dr. Bruner’,0,16),(380,5159,’Minister at Funeral’,2,17),(380,5160,’Patient in Waiting Room’,0,18),(380,5161,’Nurse’,0,19),(380,75205,’Shift Boss’,2,20),(380,12889,’Mr. Kelso’,2,21),(380,134235,’Boy at Pancake Counter’,2,22),(380,22251,'(voice)’,2,23),(380,102425,'(voice)’,1,25),(380,93670,'(voice)’,2,26),(380,106800,'(voice)’,1,27),(380,1329201,'(voice)’,0,28),(380,15824,'(voice)’,2,29),(380,78620,'(voice)’,1,30),(380,14784,'(voice)’,2,31),(380,158747,'(voice)’,1,32),(380,119941,'(voice)’,2,33),(380,1232417,'(voice)’,0,34),(380,1212054,'(voice)’,0,35),(380,1363780,'(voice)’,0,36),(380,8246,’Doctor (uncredited)’,2,37),(380,80449,’Restaurant Patron (uncredited)’,0,38),(380,1196879,'(voice)’,1,39),(8681,3896,’Bryan’,2,0),(8681,10696,’Lenore’,1,1),(8681,11825,’Kim’,1,2),(8681,55775,’Amanda’,1,3),(8681,55776,’Sheerah’,1,4),(8681,3982,’Stuart’,2,5),(8681,49278,’Jean-Claude’,2,6),(8681,2221,’Sam’,2,7),(8681,9629,’Casey’,2,8),(8681,35893,’Isabelle’,1,9),(8681,37204,’Bernie’,2,10),(8681,44736,’Gregor’,2,11),(8681,230400,’Anton’,2,12),(8681,143389,’Peter’,2,13),(8681,49947,’Saint-Clair’,0,14),(8681,234921,’Marko’,2,15),(8681,562155,’Ali’,0,16),(8681,1336073,’Pharmacist’,0,18),(8681,21582,’Undercover Agent’,0,19),(8681,1863783,’Gio’,0,20),(8681,1863786,’Vinz’,0,21),(8681,583502,’Prostitute’,0,22),(8681,1025171,’Gilles’,2,23),(8681,1863789,’Jean-Claude\’s Assistant’,0,24),(8681,114712,’Ingrid’,0,25),(8681,1373113,’Victor’,2,26),(8681,1424147,’Girl with the Jacket’,1,27),(8681,1863790,’Nezir’,0,28),(8681,62892,’Dardan’,2,29),(8681,1863791,’Taxi Driver’,0,30),(8681,1863792,’Singh’,0,31),(8681,1863796,’Paper Shop Clerk’,0,32),(8681,149631,’Security Stuart\’s Mansion’,2,33),(8681,185408,’Sheik Raman’,0,34),(8681,1863799,’Maid’,0,35),(619,8851,’Rachel Marron’,1,0),(619,1269,’Frank Farmer’,2,1),(619,8852,’Nicki Marron’,0,2),(619,8853,’Herb Farmer’,2,3),(619,7042,’Sy Spector’,2,4),(619,8854,’Bill Devaney’,2,5),(619,941,’Greg Portman’,2,6),(619,5170,’Tony Scipelli’,2,7),(619,8855,’Henry’,2,8),(619,8856,’Fletcher Marron’,2,9),(619,8857,’Herself’,1,10),(619,11517,’Ray Court’,2,11),(619,151433,’Minella’,2,12),(619,13937,’Klingman’,2,13),(619,4040,’Oscar Host’,2,14),(619,1235705,’Thuringer’,2,15),(619,31028,’Skip Thomas’,2,16),(619,27631,’Clive Healy’,2,17),(619,30621,’Rotary Club President’,2,18),(619,4156,’Tom Winston’,2,19),(619,124368,’Oscar Arrivals M.C.’,0,20),(619,95145,’Sound Winner #1′,1,21),(619,176933,’Sound Winner #2′,0,22),(619,1217469,’Female Academy Member’,1,23),(619,1864616,’Rachel\’s Assistant’,0,24),(619,62053,’Oscar Conductor’,0,25),(424,3896,’Oskar Schindler’,2,0),(424,2282,’Itzhak Stern’,2,1),(424,5469,’Amon Goeth’,2,2),(424,6692,’Emilie Schindler’,1,3),(424,6693,’Poldek Pfefferberg’,0,4),(424,6368,’Helen Hirsch’,1,5),(424,6694,’Victoria Klonowska’,1,6),(424,6695,’Wilek Chilowicz’,0,7),(424,6696,’Marcel Goldberg’,2,8),(424,6697,’Ingrid’,0,9),(424,2829,’Julian Scherner’,2,10),(424,6698,’Rolf Czurda’,2,11),(424,6699,’Herman Toffel’,0,12),(424,6700,’Leo John’,2,13),(424,6701,’Albert Hujar’,2,14),(424,6702,’Mila Pfefferberg’,0,15),(424,6703,’Juda Dresner’,0,16),(424,6704,’Chaja Dresner’,0,17),(424,6705,’Danka Dresner’,0,18),(424,6706,’Mordecai Wulkan’,2,19),(424,6708,’Mrs. Nussbaum’,0,21),(424,6709,’Henry Rosner’,0,22),(424,6710,’Manci Rosner’,0,23),(424,6711,’Leo Rosner’,0,24),(424,6712,’Rabbi Menasha Lewartow’,0,25),(424,1317875,’Chaim Nowak’,2,26),(424,17257,’Diana Reiter’,1,27),(424,1448565,’Goeth\’s Girl’,0,29),(424,1592167,’Mr. Nussbaum’,0,30),(6466,5139,’Freddy Krueger’,2,0),(6466,50094,’Jason Voorhees’,2,1),(6466,50095,’Will Rollins’,2,2),(6466,18315,’Lori Campbell’,1,3),(6466,58058,’Deputy Scott Stubbs’,2,4),(6466,93527,’Kia Waterson’,0,5),(6466,59238,’Charlie Linderman’,2,6),(6466,32205,’Mark Davis’,2,7),(6466,27136,’Gibb’,1,8),(6466,39353,’Bill Freeburg’,2,9),(6466,85922,’Dr. Campbell’,2,10),(6466,89248,’Blake’,2,11),(6466,99841,’Mrs. Pamela Voorhees (Jason\’s Mother)’,1,12),(6466,169469,’Trey’,2,13),(6466,12714,’Bobby Davis (Mark\’s Brother)’,2,14),(6466,26089,’Sheriff Williams’,2,15),(6466,65811,’Blake\’s Father’,2,16),(6466,1414721,’Young Jason Voorhees’,0,17),(6466,1414722,’Little Girl’,0,18),(6466,63797,’Officer Goodman’,2,19),(6466,13663,’Principal Shaye’,2,20),(6466,53119,’Shack’,2,21),(6466,169510,’Teammate’,2,22),(6466,102749,’Beer Line Girl’,0,23),(6466,1414727,’Beer Line Guy’,0,24),(6466,45429,’Frisell (Glowing Raver)’,0,25),(6466,1244171,’Heather’,0,26),(6466,1414735,’Dead Girl on Tree’,0,27),(6466,1414736,’Dead Boy on Tree’,2,28),(6466,60601,’Kinsey Park (Male Nurse)’,2,29),(6466,1414738,’Asylum Guard’,0,30),(6466,184573,’TV Reporter’,1,31),(6466,1414739,’Lori\’s Mother’,0,32),(6466,1414740,’Skipping Girl’,0,33),(6466,1414741,’Skipping Girl’,0,34),(6466,1414742,’Skipping Girl’,0,35),(6466,52457,’School Nurse’,1,36),(6466,1414745,’Male Counselor’,0,37),(6466,1414747,’Female Counselor’,1,38),(6466,1414748,’Female Counselor’,0,39),(6466,1414749,’Cruel Child’,0,40),(6466,1414750,’Cruel Child’,0,41),(6466,1414751,’Cruel Child’,0,42),(7191,51988,’Marlena’,1,0),(7191,51989,’Lily’,1,1),(7191,51992,’Beth’,1,2),(7191,51991,’Rob’,2,3),(7191,6858,’Jason’,2,4),(7191,51990,’Hud’,2,5),(7191,51993,’Kassierer’,0,6),(7191,51994,’Jenn’,0,7),(7191,51995,’Antonio’,2,8),(7191,51996,’Charlie’,2,9),(7191,51997,’Clark’,2,10),(7191,51998,’Heather’,1,11),(7191,51999,’Lei’,0,12),(7191,78431,’Travis’,2,13),(7191,209670,’Party Goer’,0,14),(7191,1205127,’Party Goer’,0,15),(7191,203750,’Party Goer’,2,16),(7191,150209,’Party Goer’,2,17),(7191,1205128,’Party Goer’,0,18),(7191,1205129,’Party Goer’,0,19),(7191,204460,’Party Goer’,1,20),(7191,1187107,’Party Goer’,0,21),(7191,93285,’Party Goer’,1,22),(7191,162555,’Herself’,0,23),(7191,1539,’Frantic Man’,2,24),(7191,328645,’Burly Guy’,2,25),(7191,60432,’Police Officer’,2,26),(7191,52762,’Russian Man on Street’,2,27),(7191,64805,’Staff Sgt. Pryce’,2,28),(7191,42317,’Lead Soldier’,2,29),(7191,1016151,’Soldier’,0,30),(7191,27031,’Command Center Officer’,2,31),(7191,15824,’Lt. Col. Graff’,2,32),(7191,62852,’Medic’,0,33),(7191,565187,’Second Medic’,0,34),(7191,99764,’Helicopter Pilot’,2,35),(7191,208360,’New York Street Pedestrian (uncredited)’,2,36),(7191,1174981,’Party Goer (uncredited)’,0,37),(7191,1205130,’Party Bartender (uncredited)’,0,38),(7191,115978,’EMS Commander (uncredited)’,2,39),(7191,1205131,’Frantic Girl on Bridge (uncredited)’,1,40),(7191,1205132,’Army Sgt. First Class (uncredited)’,0,41),(7191,1205133,’Boy Looking at Magazines (uncredited)’,0,42),(7191,1205134,’National Guardsman / Tank Gunner (uncredited)’,0,43),(7191,1205135,’Military Personnel (uncredited)’,0,44),(7191,208008,’Military Personnel (uncredited)’,0,45),(7191,97532,’Party Goer (uncredited)’,0,46),(7191,1205136,’New Yorker (uncredited)’,0,47),(7191,1205137,’Rocketeer / Soldier (uncredited)’,0,48),(7191,51683,’Helicopter Pilot (voice) (uncredited)’,2,49),(7191,1205138,’Injured Girl (uncredited)’,1,50),(7191,128973,’First Man Coughing (uncredited)’,0,51),(7191,97466,’Military Personnel (uncredited)’,0,52),(7191,1205139,’Injured Guy on Bridge (uncredited)’,0,53),(7191,210849,’Party Goer (uncredited)’,0,54),(7191,1205140,’Military Personel (uncredited)’,0,55),(7191,1205141,’Brooklyn Bridge Victim (uncredited)’,1,56),(1497,74932,’April O\’Neil’,1,0),(1497,2076,’Professor Jordon Perry’,2,1),(1497,77152,’Michaelangelo / Soho Man’,2,2),(1497,77153,’Donatello / Foot #3′,2,3),(1497,105174,’Raphael’,2,4),(1497,78214,’Leonardo / News Room Staff’,2,5),(1497,77156,’Splinter’,2,6),(1497,58210,’Keno’,2,7),(1497,60851,’Shredder’,2,8),(1497,953728,’Tatsu’,0,9),(1497,191557,’Chief Sterns’,2,10),(1497,149731,’Rahzar’,2,12),(1497,180830,’Tokka’,2,13),(1497,135352,’Super Shredder’,2,14),(1497,1356291,’Parlor Owner’,0,15),(1497,56910,’Soho Woman’,1,16),(1497,17338,’Himself’,2,17),(1497,77157,’Michaelangelo (voice)’,2,18),(1497,16060,’Leonardo (voice)’,2,19),(1497,1214184,’Raphael (voice)’,0,20),(1497,179566,’Donatello (voice)’,2,21),(1497,952996,’Shredder (voice)’,2,22),(1497,81381,’Tatsu (voice)’,0,23),(1497,15831,’Rahzar / Tokka (voice)’,2,24),(1497,64856,’Audience Man’,2,25),(1497,1456197,’Parlor Assistant’,0,26),(1497,1229231,’Teenage Girl’,0,27),(1497,154668,’Foot #1′,0,28),(1497,1456484,’Foot #2′,0,29),(1497,85424,’Freddy’,0,30),(1497,65171,’Crew Member’,2,31),(1497,1456485,’TGRI Assistant #1′,0,32),(1497,1456486,’TGRI Worker’,0,33),(1497,163431,’TGRI Assistant #2′,0,34),(1497,59649,’News Manager’,2,35),(1497,1456493,’Teenage Thug’,0,36),(1497,167676,’Foot Recruiter’,2,37),(1497,1456495,’Old Woman’,0,38),(1497,1456497,’Old Man’,0,39),(1497,134529,’Audience Man’,2,40),(1497,1335583,’Audience Woman’,0,41),(1497,1456501,’Disc Jockey’,0,42),(1497,1456505,’Dancer #1′,0,43),(1497,1456507,’Dancer #2′,0,44),(1497,1456508,’Dancer #3′,0,45),(1497,1221149,’Promoter’,0,46),(1497,102757,’Promoter\’s Aide’,0,47),(1497,1456525,’Foot Soldier’,0,48),(1497,19717,’Thug #1′,0,49),(1497,1456529,’Foot Soldier’,0,50),(1497,1131169,’Foot Soldier’,0,51),(1497,1456532,’Foot Soldier’,0,52),(1497,1456533,’Foot Soldier’,0,53),(1497,1456534,’Foot Soldier’,0,54),(1497,1456535,’Foot Soldier’,0,55),(1497,1456536,’Foot Soldier’,0,56),(1497,1456537,’Foot Soldier’,0,57),(1497,112731,’Foot Soldier’,2,58),(1497,1456538,’Foot Soldier’,0,59),(1497,99871,’Foot Soldier’,0,60),(1497,1456539,’Foot Soldier’,0,61),(1497,1456540,’Foot Soldier’,0,62),(1497,1456541,’Foot Soldier’,0,63),(1497,1456543,’Foot Soldier’,0,64),(1497,1456544,’Foot Soldier’,0,65),(1497,1456545,’Foot Soldier’,0,66),(117,1269,’Eliot Ness’,2,0),(117,738,’Jim Malone’,2,1),(117,1270,’Agent Oscar Wallace’,2,2),(117,1271,’Agent George Stone/Giuseppe Petri’,2,3),(117,380,’Al Capone’,2,4),(117,1272,’Police Chief Mike Dorsett’,2,5),(117,1273,’Walter Payne’,2,6),(117,1274,’George’,0,7),(117,1275,’Frank Nitti’,2,8),(117,1276,’Catherine Ness’,1,9),(117,1277,’Bowtie Driver’,2,10),(117,1278,’Scoop’,0,11),(117,1279,’Lt. Anderson’,0,12),(117,1280,’Officer Preseuski’,2,13),(117,3217,’Mountie Captain’,0,14),(117,1886571,’Bartender’,0,15),(117,119230,’Alderman’,2,16),(117,1886574,’Mrs. Blackmer’,0,17),(117,1802887,’Shooting Range Master’,0,18),(117,1886575,’Cop Cousin’,0,19),(117,1886576,’Italian Waiter’,0,20),(117,1886577,’Williamson’,0,21),(117,141417,’Overcoat Hood’,2,22),(117,1886578,’Ness\’ Clerk’,0,23),(117,1886579,’Ness\’ Daughter’,0,24),(117,1886580,’Blackmer Girl’,0,25),(117,1886581,’Reporter’,0,26),(117,92119,’Reporter’,2,27),(117,10486,’Reporter’,2,28),(117,987357,’Reporter’,2,29),(117,1886582,’Bailif’,0,30),(117,1504098,’Bailiff’,0,31),(117,1886583,’Fat Man’,0,32),(117,59574,’Woman in Elevator’,1,33),(117,1886584,’Butler’,0,34),(117,83197,’Judge’,0,35),(117,1886590,’Barber’,0,36),(117,1226696,’Defense Attorney’,0,37),(117,1512293,’Bodyguard’,0,38),(117,1758644,’Bodyguard’,0,39),(117,1228768,’Bodyguard’,0,40),(117,17921,’Bodyguard’,0,41),(117,1178011,’Bodyguard’,0,42),(117,1886585,’Bodyguard’,0,43),(117,1886586,’Bodyguard’,0,44),(117,1886587,’Union Station Woman’,0,45),(117,20625,’Gunned Head’,2,46),(117,1886588,’Pagliacci’,0,47),(117,1886589,’Hotel Clerk’,0,48),(117,10224,’District Attorney (uncredited)’,2,49),(117,203907,’Hoodlum (uncredited)’,2,50),(117,1591740,’Gangster (uncredited)’,0,51),(117,236495,’Bit (uncredited)’,0,52),(117,182287,’Street Person (uncredited)’,2,53),(117,6852,’Train Announcer (uncredited)’,0,54),(117,1591739,’Union Station Bodyguard (uncredited)’,0,55),(6977,2176,’Sheriff Ed Tom Bell’,2,0),(6977,3810,’Anton Chigurh’,2,1),(6977,16851,’Llewelyn Moss’,2,2),(6977,57755,’Carson Wells’,2,3),(6977,9015,’Carla Jean Moss’,1,4),(6977,39520,’Wendell’,0,5),(6977,41249,’Loretta Bell’,1,6),(6977,12852,’Ellis’,2,7),(6977,17401,’Man who hires Wells’,2,8),(6977,51732,’El Paso Sheriff’,2,9),(6977,5151,’Carla Jeans Mother’,1,10),(6977,51733,’Poolside Woman’,1,11),(6977,51734,’Sheriff\’s Secretary’,0,12),(6977,51735,’Strangled Deputy’,0,13),(6977,206379,’Waitress’,1,14),(6977,1194944,’Thomas Thayer’,0,15),(6977,572541,’Boy on Bike’,2,16),(634,9137,’Bridget Jones’,1,0),(634,5472,’Mark Darcy’,2,1),(634,3291,’Daniel Cleaver’,2,2),(634,9138,’Bridget\’s Mum’,1,3),(634,388,’Bridget\’s Dad’,2,4),(634,9145,’Tom’,2,5),(634,9144,’Shazza’,1,6),(634,1834,’Jude’,1,7),(634,6368,’Natasha’,1,8),(634,9146,’Lara’,1,9),(634,9139,’Una Alconbury’,1,10),(634,9140,’Uncle Geoffrey’,2,11),(634,9141,’Mrs. Darcy’,0,12),(634,9142,’Mr. Fitzherbert’,2,13),(634,9143,’Perpetua’,1,14),(634,1567503,’Handsome Stranger’,0,16),(634,1567504,’Simon in Marketing’,0,17),(634,178614,’Woney’,1,18),(634,24241,’Melinda’,1,19),(634,174982,’Richard Finch’,2,20),(634,1227733,’Drunken Man’,0,21),(634,19331,’Mr. Darcy’,2,22),(634,1117371,’Bernard’,0,23),(392,1137,’Vianne Rocher’,1,0),(392,658,’Comte Paul de Reynaud’,2,1),(392,85,’Roux’,2,2),(392,5309,’Armande Voizin’,1,3),(392,5320,’Madame Audel’,0,4),(392,530,’Caroline Clairmont’,1,5),(392,5314,’Luc Clairmont’,0,6),(392,5313,’Josephine Muscat’,1,7),(392,53,’Serge Muscat’,2,8),(392,8937,’Guillaume Blerot’,2,9),(392,5310,’Jean-Marc Drou’,0,10),(392,5311,’Francoise Drou’,0,11),(392,5312,’Pere Henri’,2,12),(392,5315,’Anouk Rocher’,1,13),(392,5317,’Didi Drou’,2,14),(392,5318,’Yvette Marceau’,0,15),(392,5319,’Alphonse Marceau’,2,16),(392,83192,’Madame Rivet’,1,17),(392,1240821,’Chitza’,0,18),(392,1559500,’Baptiste Marceau’,0,19),(392,5316,’Dedou Drou’,0,20),(392,1559502,’Gati’,0,21),(2085,1336,’Hang Sing’,2,0),(2085,21352,’Trish O`Day’,1,1),(2085,21353,’Mac’,2,2),(2085,21354,’Kai’,2,3),(2085,21355,’Silk’,2,4),(2085,18792,’Isaak O`Day’,2,5),(2085,21356,’Colin O`Day’,2,6),(2085,21358,’Po Sing’,0,8),(2085,21359,’Vincent Roth’,2,9),(2085,18471,’Maurice’,2,10),(2085,21360,’Dave’,2,11),(2085,11677,’Kuang’,2,12),(2085,39829,’Ch`u Sing’,2,13),(2085,1597842,’Maurice\’s Crew’,2,14),(2085,1228374,’Overlord’,2,15),(794,8487,’Robert Thorn’,2,0),(794,855,’Katherine Thorn’,1,1),(794,2076,’Keith Jennings’,2,2),(794,8226,’Mrs. Baylock’,1,3),(794,11839,’Damien’,0,4),(794,11840,’Father Brennan’,2,5),(794,9912,’Father Spiletto’,2,6),(794,1375376,’Monk’,2,7),(794,11842,’Priest’,0,8),(794,11843,’Psychiatrist’,0,9),(794,11844,’Young Nanny’,1,10),(794,25643,’Dr. Becker’,2,11),(794,156387,’Reporter’,2,12),(794,2276,’Mrs. Horton’,1,13),(794,117410,’Horton’,2,14),(794,8664,’Thorn\’s Aide’,2,15),(794,662,’Thorn\’s Second Aide’,0,16),(794,201489,’Photographer’,2,17),(794,1077927,’Chambermaid’,0,18),(794,1077928,’Nurse’,0,19),(794,1077929,’First Nun’,0,20),(794,1006770,’American Secretary’,0,21),(794,14902,’Marine’,2,22),(794,184980,’Secret Service Man’,0,23),(794,29872,’Gentleman at Rugby Match’,2,24),(794,589558,’Italian Taxi Driver’,2,25),(794,127168,’Nun’,1,26),(794,583498,’Arab’,0,27),(794,7199,’Man walking across street (uncredited)’,2,28),(794,742,’Monk (uncredited)’,2,29),(794,7192,’Carl Bugenhagen (uncredited)’,2,30),(794,1402694,’General (uncredited)’,0,31),(9286,17628,’Wendy Christensen’,1,0),(9286,57136,’Kevin Fischer’,0,1),(9286,20176,’Ian McKinley’,2,2),(9286,57137,’Erin Ulmer’,1,3),(9286,37700,’Frankie Cheeks’,2,4),(9286,59926,’Jason Wise’,2,5),(9286,33336,’Carrie Dreyer’,1,6),(9286,53185,’Lewis Romero’,2,7),(9286,27775,’Ashley Freund’,1,8),(9286,58393,’Ashlyn Halperin’,1,9),(9286,58370,’Julie Christensen’,1,10),(9286,77052,’Amber Regan’,0,12),(9286,33339,’Bludworth’,2,13),(9286,17837,’Colquitt’,2,14),(9286,59247,’Perry Malinowski’,0,15),(9286,19384,’Devil (voice)’,2,16),(9286,1328755,’Paul Revere’,0,17),(9286,33352,’Kahill’,2,18),(1265,27972,’Jess Aarons’,2,0),(1265,1285,’Leslie Burke’,1,1),(1265,418,’Jack Aarons’,2,2),(1265,11664,’Ms. Edmunds’,1,3),(1265,54479,’May Belle Aarons’,1,4),(1265,54478,’Mary Aarons’,1,5),(1265,54481,’Ellie Aarons’,0,6),(1265,54485,’Bill Burke’,2,7),(1265,5532,’Judy Burke’,1,8),(1265,54480,’Joyce Aarons’,0,9),(1265,54482,’Janice Avery’,1,10),(1265,54483,’Carla’,1,11),(1265,54484,’Grandma Burke’,0,12),(1265,54486,’Madison’,1,13),(1265,54492,’Principal Turner’,2,14),(1265,54493,’Mrs. Myers’,0,15),(1265,54494,’Bus Driver’,2,16),(1265,1440015,’First Grade Girl’,1,17),(1265,1511634,’Mr. Bailey’,0,18),(866,85,’Sir James Matthew Barrie’,2,0),(866,204,’Sylvia Llewelyn Davies’,1,1),(866,1666,’Mrs. Emma du Maurier’,1,2),(866,4483,’Charles Frohman’,2,3),(866,1281,’Peter Llewelyn Davies’,2,4),(866,8329,’Mary Ansell Barrie’,1,5),(866,13010,’Wendy’,1,6),(866,13011,’Jack Llewelyn Davies’,2,7),(866,13012,’George Llewelyn Davies’,0,8),(866,13013,’Michael Llewelyn Davies’,0,9),(866,52313,’Mrs. Snow’,1,10),(866,10985,’Sir Arthur Conan Doyle’,2,11),(866,9015,’Peter Pan’,1,12),(866,79888,’\’Hook\’ / Lord Carlton’,2,13),(866,13014,’Smee’,2,14),(866,1714,’Nana/Mr. Reilly’,2,15),(866,1711,’Mr. Jaspers’,2,16),(866,1737976,’Theater Patron 3′,0,17),(866,10920,’Theater Patron 5′,2,18),(8699,23659,’Ron Burgundy’,2,0),(8699,18979,’Veronica Corningstone’,1,1),(8699,22226,’Brian Fantana’,2,2),(8699,28638,’Champion \’Champ\’ Kind’,2,3),(8699,4495,’Brick Tamland’,2,4),(8699,20753,’Ed Harken’,2,5),(8699,51382,’Garth Holladay’,0,6),(8699,4937,’Wes Mantooth’,2,7),(8699,36422,’Frank Vitchard’,2,8),(8699,7399,’Arturo Mendes’,2,9),(8699,17696,’Helen’,1,10),(8699,19274,’Eager Cameraman’,2,11),(8699,11160,’Barkeeper’,2,12),(8699,13101,’Stage Manager’,2,13),(8699,55709,’Hot Blonde’,1,14),(8699,41039,’News Station Employee’,2,15),(8699,70851,’Motorcyclist (uncredited)’,2,16),(8699,1294,’Zoo Keeper (uncredited)’,1,17),(8699,504,’Public TV News Anchor (uncredited)’,2,18),(8699,1219029,’MC’,0,19),(769,380,’James Conway’,2,0),(769,11477,’Henry Hill’,2,1),(769,4517,’Tommy DeVito’,2,2),(769,11478,’Karen Hill’,0,3),(769,7004,’Paul Cicero’,2,4),(769,11480,’Frankie Carbone’,2,5),(769,11482,’Sonny Bunz’,2,6),(769,5170,’Frenchy’,2,7),(769,7164,’Billy Batts’,2,8),(769,11479,’Morris Kessler’,0,9),(769,11481,’Tuddy Cicero’,2,10),(769,99939,’Himself’,2,11),(769,11485,’Janice Rossi’,1,12),(769,11483,’Tommy\’s Mother’,1,13),(769,1006721,’Vinnie’,2,14),(769,11484,’Karen\’s Mother’,1,15),(769,5578,’Sandy’,1,16),(769,1079544,’Belle Kessler’,1,17),(769,93620,’Lois Byrd’,1,18),(769,1212532,’Himself’,2,19),(769,155890,’Mickey Conway’,1,20),(769,232946,’Young Henry’,2,21),(769,153926,’Henry\’s Mother’,1,22),(769,42308,’Henry\’s Father’,2,23),(769,18472,’Michael Hill’,2,24),(769,11486,’Spider’,2,25),(769,1888768,’Bobby Vinton’,0,26),(769,53401,’Johnny Roastbeef’,2,27),(769,120303,’Dr. Dan’,2,28),(769,985096,’Tony’,0,29),(769,1701137,’Johnny Dio’,2,30),(769,233121,’Ronnie’,0,31),(769,21385,’Tony Stacks’,2,32),(769,17928,’Young Tommy’,0,33),(769,1888769,’City Detective #1′,0,34),(769,1555143,’City Detective #2′,0,35),(769,4692,’Anthony Stabile’,2,36),(769,1888770,’Nickey Eyes’,0,37),(769,1888773,’Mikey Franzese’,0,38),(769,164093,’Diane’,1,39),(769,1586080,’Bruce’,0,40),(769,80542,’Cicero\’s Wife’,2,41),(769,1223750,’Tuddy\’s Wife’,1,42),(769,1730666,’Mrs. Carbone’,1,43),(769,1888777,’Frenchy\’s Wife’,0,44),(769,105623,’Angie’,0,45),(769,7796,’Rosie’,1,46),(769,1218231,’Susan’,0,47),(769,9172,’Tommy\’s Girlfriend’,0,48),(769,17921,’Joe Buddha’,0,49),(769,2231,’Stacks Edwards’,2,50),(769,171851,’Johnny Roastbeef\’s Wife’,0,51),(769,58535,’Dealer’,2,52),(769,1888782,’Edward McDonald’,0,53),(769,1888784,’Defense Attorney’,0,54),(769,1704782,’Young Henry\’s Sister #1′,1,55),(769,1888786,’Young Henry\’s Sister #2′,0,56),(769,1888788,’Young Henry\’s Older Brother’,0,57),(769,1888791,’Young Michael’,0,58),(769,106663,’Liquor Cop #1′,0,59),(769,147618,’Liquor Cop #2′,0,60),(769,138097,’Mailman’,0,61),(769,1888808,’Barbeque Wiseguy’,0,62),(769,60121,’Bleeding Man’,0,63),(769,163985,’Gambling Doorman’,0,64),(769,1888809,’Hijacked Driver’,0,65),(769,1218682,’School Guard’,1,66),(769,1888811,’Cop #1′,0,67),(769,1507690,’Mob Lawyer’,0,68),(769,993064,’Judge – 1956′,2,69),(769,1667612,’Truck Driver at Diner’,2,70),(769,9286,’Fat Andy’,0,71),(769,61241,’Frankie The Wop’,2,72),(769,1888812,’Freddy No Nose’,0,73),(769,1888813,’Pete The Killer’,0,74),(769,1852819,’Jimmy Two Times’,0,75),(769,47774,’Man with Coatrack’,2,76),(769,166890,’Henry\’s 60\’s crew’,2,77),(769,5298,’Henry\’s 60\’s crew’,2,78),(769,1888814,’Cicero 60\’s Crew’,0,79),(769,14332,’Cicero\’s 60\’s crew’,2,80),(769,1888816,’Terrorized Waiter’,0,81),(769,1888817,’Bouncer’,0,82),(769,1888818,’Copa Captain’,0,83),(769,51656,’Henry Greeter #1′,2,84),(769,1393358,’Henry Greeter #2′,0,85),(769,1637058,’Henry Greeter #3′,0,86),(769,1888819,’Mr. Tony Hood #1′,0,87),(769,1888820,’Mr. Tony Hood #2′,0,88),(769,1888821,’Copa Announcer’,0,89),(769,1888827,’Beach Club Waiter’,0,90),(769,1888828,’Bruce\’s Brother #1′,0,91),(769,1888829,’Bruce\’s Brother #2′,0,92),(769,1888830,’Karen\’s Dad’,0,93),(769,1888832,’Marie #1′,0,94),(769,1888833,’Marie #2′,0,95),(769,1770993,’Paul #3′,0,96),(769,1888834,’Truck Driver’,0,97),(769,1888835,’Detective Deacy’,0,98),(769,1888836,’Detective Silvestri’,0,99),(769,1291639,’Batts\’ Crew #1′,0,100),(769,1888837,’Vito’,0,101),(769,1788103,’Vito\’s Girlfriend’,0,102),(769,1888838,’Lisa’,0,103),(769,1315514,’Batt\’s Crew #2′,0,104),(769,1888840,’Godfather at Table’,0,105),(769,1169885,’Prizefighter’,0,106),(769,22461,’Henry\’s 70\’s Crew’,2,107),(769,1850605,’Henry\’s 70\’s Crew’,0,108),(769,1513512,’Henry\’s 70\’s Crew’,0,109),(769,4159,’Carbone\’s Girlfriend’,1,110),(769,209069,’Henry\’s Older Child – Judy’,0,111),(769,1888842,’Henry\’s Baby – Ruth’,0,112),(769,1888843,’Bar Patron’,0,113),(769,1888844,’Janice\’s Girlfriend #1′,0,114),(769,1888845,’Janoce\’s Girlfriend #2′,0,115),(769,1888853,’Bridal Shop Owner’,0,116),(769,21490,’Florida Bookie’,2,117),(769,1879781,’Bookie\’s Sister’,0,118),(769,1888846,’Judge – 1971′,0,119),(769,1888848,’Security Guard with Lobsters’,0,120),(769,1888849,’Drug Buyer’,0,121),(769,21382,’Prison Guard in Booth’,2,122),(769,1888856,’Judy Hill at 10 Years’,0,123),(769,1888857,’Ruth Hill at 8 Years’,0,124),(769,2144,’Parole Officer’,2,125),(769,56951,’Stacks\’ Girlfriend’,1,126),(769,1226292,’Joe Buddha\’s Wife’,0,127),(769,1888859,’Kid’,0,128),(769,1888860,’Garbage Man’,0,129),(769,17490,’Doctor’,2,130),(769,1888861,’Judy Hill at 13 Years’,0,131),(769,1888862,’Ruth Hill at 11 Years’,0,132),(769,131119,’Arresting Narc’,2,133),(769,25390,’50\’s Wiseguy (uncredited)’,2,134),(769,556870,’Truck Hijacker (uncredited)’,0,135),(769,1558846,’Nickey Eyes\’ Girlfriend (uncredited)’,1,136),(111,1158,’Tony Montana’,2,0),(111,1159,’Manny Ribera’,2,1),(111,1160,’Elvira Hancock’,1,2),(111,1161,’Gina Montana’,1,3),(111,1162,’Frank Lopez’,2,4),(111,1163,’Mama Montana’,1,5),(111,1164,’Omar Suarez’,2,6),(111,1165,’Alejandro Sosa’,2,7),(111,1166,’Mel Bernstein’,2,8),(111,1167,’Chi Chi’,2,9),(111,1168,’Ernie’,0,10),(111,1169,’Angel’,1,11),(111,1170,’Nick The Pig’,2,12),(111,1171,’Hector The Toad’,2,13),(111,1172,’Jerry The Banker’,2,14),(111,1173,’Alberto The Shadow’,2,15),(111,60196,’Vic Phillips’,2,16),(111,1216866,’Sheffield’,2,17),(111,932922,’Seidelbaum’,0,18),(111,32396,’M.C. at Babylon Club’,2,19),(111,88965,’Immigration Officer #3′,2,20),(111,78498,’Immigration Officer #2′,2,21),(111,1225345,’Immigration Officer #1′,0,22),(111,139931,’Cuban Refugee’,0,23),(111,152704,’Ronnie Echevierra’,2,24),(111,156019,’Shooter’,0,25),(111,153686,’Pedro Quinn’,2,26),(111,48136,’Shooter #1′,2,27),(111,1360853,’Matos’,2,28),(111,103795,’Rebenga’,2,29),(111,66585,’Shooter #2′,2,30),(111,152888,’General Strasser’,0,31),(111,152706,’Male Patron’,0,32),(111,107982,’Car Salesman’,2,33),(111,44050,’Interviewer’,2,34),(111,160335,’Bank Spokesman’,2,35),(111,94893,’Ariel Bleyer’,0,36),(111,47463,’Waldo’,2,37),(111,100260,’Gaspar\’s Bodyguard’,2,38),(111,12411,’Kid #2′,2,39),(111,194092,’Monsignor’,0,40),(111,54864,’The Skull’,2,41),(111,16563,’Helicopter Pilot’,0,42),(111,45463,’Woman at Babylon Club’,1,43),(111,160253,’Woman at Babylon Club’,1,44),(111,52144,’Woman at Babylon Club’,1,45),(111,1217468,’Woman at Babylon Club’,1,46),(111,1178618,’Woman at Babylon Club’,1,47),(111,538318,’Woman at Babylon Club’,0,48),(111,1228412,’Woman at Babylon Club’,0,49),(111,102634,’Woman at Babylon Club’,1,50),(111,1378434,’Ambassador\’s Daughter (uncredited)’,0,51),(111,1466,’Immigration Officer (voice) (uncredited)’,2,52),(111,11901,’Immigration Officer (voice) (uncredited)’,2,53),(111,198980,’Voice (uncredited)’,1,54),(111,2518,’Charles Goodson (uncredited)’,2,55),(111,8657,’Extra (uncredited)’,0,56),(111,24969,’Colombian Hitman (uncredited)’,2,57),(111,47772,’Sasso (uncredited)’,2,58),(111,11091,’Boy Lying on Raft in Pool (uncredited)’,2,59),(111,1228651,’Boy at Pool (uncredited)’,0,60),(111,163459,’Dancer – LaLa (uncredited)’,0,61),(111,1614584,’Mrs. Gutierrez’,1,62),(746,11389,’Puyi’,2,0),(746,11390,’Reginal Flemming Johnson’,2,1),(746,6720,’Wang Jung’,1,2),(746,11392,’Big Li’,2,3),(746,11382,’Amakasu’,2,4),(746,11394,’Governor’,2,5),(746,11395,’Chen Pao Shen’,2,6),(746,11396,’Eastern Jewel’,0,7),(746,11397,’Interrogator’,2,8),(746,11398,’Chang’,2,9),(746,11399,’Yoshioka’,0,10),(746,1448561,’Puyi – 3 Years’,0,12),(746,1448562,’Puyi – 8 Years’,0,13),(746,1448563,’Puyi – 15 Years’,0,14),(746,1585297,’Tough Warder’,2,15),(746,69033,’Wen Hsiu’,0,16),(746,86633,’Tzu Hsui’,1,17),(746,1185129,’General Ishikari’,2,18),(746,1558937,’Prince Chun’,0,19),(746,39829,’Lord Chamberlain’,2,20),(746,20640,’Captain of Imperial Guard’,2,21),(746,27425,’Oculist’,2,22),(746,134057,’Republican Officer’,0,24),(746,1362557,’Chang Chinghui’,2,25),(746,1672535,’Scarface (uncredited)’,0,26),(746,189431,’Captain (uncredited)’,2,27),(746,1272361,’Prisoner (uncredited)’,0,28),(746,1258488,’Second High Consort’,0,29),(9416,66,’Franklin Hatchett’,2,0),(9416,6952,’James Russell’,2,1),(9416,58691,’Grace Cipriani’,1,2),(9416,7004,’Guy Cipriani’,2,3),(9416,21215,’Paula’,1,4),(7345,11856,’Daniel Plainview’,2,0),(7345,17142,’Paul Sunday / Eli Sunday’,2,1),(7345,52564,’H. W.’,2,2),(7345,8785,’Fletcher’,2,3),(7345,18916,’Henry’,2,4),(7345,52565,’Elizabeth’,0,5),(7345,52566,’Mary Sunday’,1,6),(7345,8214,’H. B. Ailman’,2,7),(7345,53668,’Abel Sunday’,2,8),(7345,53669,’Mr. Bandy’,2,9),(7345,53670,’Mary Sunday (Young)’,1,10),(7345,1219029,’Prescott’,0,11),(7345,54711,’Signal Hill Man’,2,12),(7345,30697,’Signal Hill Married Man’,2,13),(7345,1505845,’Signal Hill Woman’,1,14),(7345,164652,’Mr. Bankside’,2,15),(7345,1441776,’Al Rose’,0,16),(7345,37204,’H.M. Tilford’,2,17),(7345,1510796,’J.J. Carter’,0,18),(7345,221082,’Adult HW’,2,19),(7345,1658095,’Fanny Clark (uncredited)’,1,20),(7345,60849,’Signal Hill Man (uncredited)’,2,21),(7345,1472400,’Elizabeth\’s Mother (uncredited)’,0,22),(7345,131426,’Blacksmith (uncredited)’,0,23),(9779,20354,’Tibby Rollins’,1,0),(9779,6279,’Lena Kaligaris’,1,1),(9779,59174,’Carmen Lowell’,1,2),(9779,59175,’Bridget Vreeland’,1,3),(9779,59176,’Bailey Graffman’,1,4),(9779,11367,’Al Lowell’,0,5),(9779,18331,’Lydia Rodman’,1,6),(9779,10768,’Christina Lowell’,1,7),(9779,6858,’Eric Richman’,2,8),(9779,59177,’Kostas Dounas’,2,9),(9779,24200,’Brian McBrian’,2,10),(9779,59178,’Yia Yia’,1,11),(9779,59179,’Papou’,2,12),(9779,232,’Paul Rodman’,2,13),(9779,59180,’Soccer Pal Diana’,1,14),(9779,59181,’Krista Rodman’,1,15),(9779,59182,’Ariadne Kaligaris’,1,16),(9779,59183,’Alice Rollins’,1,17),(9779,59184,’Franz Vreeland’,2,18),(9779,59185,’Marlene Vreeland’,1,19),(9779,1224825,’Saleslady’,1,20),(9779,82791,’Interview Girl #1′,1,21),(9779,64470,’Bunkmate Jo’,1,22),(9779,1225909,’Soccer Pal Olivia’,1,23),(9779,11832,’Duncan’,2,24),(9779,1055157,’Roberta’,1,25),(9779,1237729,’Soccer Dad’,2,26),(9779,158441,’Camp Director Donna’,1,27),(9779,77898,’Barbara the Tailor’,1,29),(9779,172888,’Coach Karen’,1,30),(9779,90723,’Waitress Brenda’,2,31),(9779,55788,’Cab Driver’,2,32),(9779,169511,’Aerobics Instructor’,1,33),(9779,11831,’Bailey\’s Neighbor’,1,34),(2140,1336,’Liu Jian’,2,0),(2140,2233,’Jessica Kamen’,1,1),(2140,10698,’Insp. Richard’,2,2),(2140,21942,’Lupo’,2,3),(2140,11397,’Mister Big’,2,4),(2140,21944,’Uncle Tai’,2,5),(2140,21945,’Aja’,1,6),(2140,21946,’Twin’,2,7),(2140,1847200,’Twin’,0,8),(2140,61584,’Max’,2,9),(2140,15738,’Pilot’,2,10),(2140,554599,’Chen’,0,11),(2140,1847201,’Lupo\’s Assistant’,0,12),(2140,1847202,’Pluto’,0,13),(2140,1257821,’Minister Tang’,2,14),(2140,1175146,’Concierge’,2,15),(590,2227,’Virginia Woolf’,1,0),(590,1231,’Laura Brown’,1,1),(590,5064,’Clarissa Vaughan’,1,2),(590,8435,’Leonard Woolf’,2,3),(590,8436,’Vanessa Bell’,1,4),(590,8439,’Quentin Bell’,0,5),(590,8440,’Julian Bell’,0,6),(590,8441,’Angelica Bell’,0,7),(590,8442,’Lottie Hope’,1,8),(590,8443,’Nelly Boxall’,1,9),(590,8444,’Ralph Partridge’,2,10),(590,8445,’Doctor’,2,11),(590,4764,’Dan Brown’,2,12),(590,3051,’Kitty’,1,14),(590,228,’Richard Brown’,2,15),(590,19,’Sally Lester’,1,16),(590,6194,’Julia Vaughan’,1,17),(590,8447,’Louis Waters’,2,18),(590,1310666,’Richie’,2,19),(9655,29220,’Viola’,1,0),(9655,38673,’Duke’,2,1),(9655,51975,’Olivia’,1,2),(9655,980,’Dinklage’,2,3),(9655,212,’Gold’,2,4),(9655,14415,’Daphne’,1,5),(9655,58368,’Justin’,2,6),(9655,58369,’Monique’,1,7),(9655,21047,’Paul’,2,8),(9655,58370,’Kia’,1,9),(9655,51989,’Yvonne’,1,10),(9655,58371,’Toby’,2,11),(9655,58372,’Andrew’,0,12),(9655,58373,’Malcolm’,2,13),(9655,58374,’Sebastian’,2,14),(1268,10730,’Mr. Bean’,2,0),(1268,16373,’Stepan’,2,1),(1268,4286,’Sabine’,0,2),(1268,5293,’Carson Clay’,2,3),(1268,10841,’Emil’,2,4),(1268,28485,’Vicar’,2,5),(1268,24421,’Mau00eetre d\’hu00f4tel’,2,6),(1268,204675,’Pyrotechnician’,2,7),(5123,1281,’August Rush’,2,0),(5123,41292,’Lyla Novacek’,1,1),(5123,1244,’Louis Connelly’,2,2),(5123,18288,’Richard Jeffries’,2,3),(5123,2157,’Maxwell Wizard Wallace’,2,4),(5123,6573,’Thomas Novacek’,2,5),(5123,41293,’Dekan’,1,6),(5123,34,’Reverend James’,2,7),(5123,41295,’Arthur’,2,8),(5123,41296,’Nick’,2,9),(5123,41297,’Marshall’,2,10),(5123,41298,’Hope’,0,11),(5123,1222175,’Jennifer’,1,12),(5123,47085,’Professor’,2,13),(5123,1231552,’Lizzy’,1,14),(5123,176797,’Mannix’,0,15),(5123,1558226,’Megan’,1,16),(5123,1558227,’Jane – Tutor’,1,17),(5123,1781806,’Steve’,0,18),(5123,1781808,’Peter’,0,19),(5123,1781811,’Backbeat’,0,20),(5123,1781812,’Roller Bull’,0,21),(5123,1781813,’Feedback’,0,22),(5123,1781814,’Joey’,0,23),(5123,1781815,’Bill’,0,24),(5123,1184071,’Club Manager’,0,25),(5123,1781325,’Receptionist’,1,26),(5123,171701,’Cop’,2,27),(5123,1781821,’Old Neighbor’,0,28),(5123,206452,’Frank’,0,29),(5123,239794,’Driver’,2,30),(5123,1269707,’Record Executive’,2,31),(5123,1781822,’Apartment Owner’,0,32),(5123,1781823,’Orphanage Kid’,0,33),(5123,1781824,’Orphanage Boy’,0,34),(5123,72988,’Policeman’,2,35),(5123,1201268,’Julia’,1,36),(5123,1553379,’Alcoholic’,0,37),(5123,184040,’Grande Dame’,1,38),(5123,1208609,’Philharmonic Patron’,1,39),(5123,1781830,’Julliard Board Member’,0,40),(5123,1781831,’Patron’,0,41),(5123,1781329,’Theatre Patron’,0,42),(5123,1469246,’Symphony Appreciator’,0,43),(5123,590493,’Concert Fan’,1,44),(5123,1639432,’Concert Attendee’,0,45),(5123,1781835,’Peanut’,0,46),(5123,1569582,’Man on Phone’,0,47),(5123,1233840,’Orphanage Kid’,1,48),(5123,1246221,’New Yorker’,1,49),(5123,1204020,’Megan\’s Mom’,1,50),(5123,1781840,’Social Worker’,1,51),(5123,1781349,’Music Lover’,0,52),(5123,968746,’Social Worker’,2,53),(5123,1765870,’Central Park Bike Rider’,0,54),(5123,1781842,’CBGB\’s Rocker’,0,55),(5123,26290,’Philharmonic Audience Member’,1,56),(5123,118641,’NY Traveler’,1,57),(5123,1781843,’Concert Attendee’,1,58),(4518,112,’Elisabeth I’,1,0),(4518,118,’Sir Francis Walsingham’,2,1),(4518,2040,’Duke of Norfolk’,2,2),(4518,12763,’Robert Dudley’,2,3),(4518,4786,’Sir William Cecil’,2,4),(4518,20234,’Mary of Guise’,1,5),(4518,37758,’Monsieur de Foix’,0,6),(4518,1925,’Duc d\’Anjou’,2,7),(4518,37759,’Queen Mary’,1,8),(4518,3545,’Earl of Arundel’,2,9),(4518,1246,’Kat Ashley’,1,10),(4518,11857,’The Pope’,2,11),(4518,22063,’Alvaro de la Quadra’,2,12),(4518,9015,’Isabel Knollys’,1,13),(4518,37760,’Sir Thomas Elyot’,2,14),(4518,8784,’John Ballard’,2,15),(4518,71586,’Arundel\’s Son’,2,16),(4518,3543,’Earl of Sussex’,2,17),(6116,47983,’Victoria’,1,0),(6116,47984,’Melanie B’,0,1),(6116,47985,’Emma’,1,2),(6116,47986,’Melanie C’,1,3),(6116,47987,’Geri’,1,4),(6116,36083,’TV Director’,2,5),(6116,47988,’Jack’,0,6),(6116,47989,’Mr. Step’,2,7),(6116,16273,’Patient’,2,8),(6116,47990,’Elvis’,2,9),(6116,47991,’Bob’,2,10),(6116,382,’Gent’,2,11),(6116,11370,’Elton John’,2,12),(6116,41419,’Poirot’,2,13),(6116,7470,’Dennis’,2,14),(6116,10222,’The Chief’,2,15),(6116,10697,’Piers’,2,16),(6116,20766,’Clifford’,2,17),(6116,29859,’Bishop’,2,18),(6116,973,’Brad’,2,19),(6116,11275,’Judge’,2,20),(6116,22,’Kevin McMaxford’,2,21),(6116,56867,’Graydon’,2,22),(6116,2449,’Policeman’,2,23),(6116,205659,’Nicola’,1,24),(6116,13474,’Damien’,2,25),(6116,1230375,’Jess’,2,26),(6116,104795,’Brian’,2,27),(6116,44731,’Himself’,2,28),(6116,68384,’Deborah’,1,29),(6116,12094,’Fashionable Woman’,1,30),(6116,47493,’Doctor’,2,31),(6116,3306,’Jack & Evie\’s Mother’,1,32),(6116,207549,’Evie’,1,33),(6116,66606,’Film Producer’,2,34),(6116,17287,’Photographer’,2,35),(6116,1137037,’Nervous Guy’,0,36),(278,504,’Andy Dufresne’,2,0),(278,192,’Ellis Boyd \’Red\’ Redding’,2,1),(278,4029,’Warden Samuel Norton’,2,2),(278,6574,’Captain Byron T. Hadley’,2,3),(278,6576,’Bogs Diamond’,2,4),(278,6577,’Brooks Hatlen’,2,5),(278,6575,’Tommy’,2,6),(278,6573,’Heywood’,2,7),(278,12645,’1946 D.A.’,0,8),(278,92119,’Skeet’,2,9),(278,168323,’Jigger’,0,10),(278,6580,’Floyd’,0,11),(278,2555,’Snooze’,2,12),(278,5063,’Ernie’,2,13),(278,8693,’Guard Mert’,2,14),(278,32393,’Guard Trout’,2,15),(278,6578,’Andy Dufresne\’s Wife’,0,16),(278,1624179,’Glenn Quentin’,0,17),(278,163979,’1946 Judge’,0,18),(278,194459,’1947 Parole Hearings Man’,0,19),(278,52603,’Fresh Fish Con’,2,20),(278,122596,’Hungry Fish Con’,0,21),(278,1216752,’Fat Ass’,0,22),(278,139992,’Tyrell’,0,23),(278,32656,’Rooster’,2,24),(278,2141,’Guard Youngblood’,2,25),(278,6579,’Guard Dekins’,2,26),(278,79025,’Guard Wiley’,2,27),(278,1422439,’1954 Landlady’,0,28),(278,91420,’Head Bull Haig’,2,29),(278,123302,’1954 Food-Way Manager’,2,30),(278,105649,’Elmo Blatch’,2,31),(278,1123794,’Bullhorn Tower Guard’,0,32),(278,27690,’Bugle Editor’,0,33),(278,48587,’1967 Parole Hearings Man’,2,34),(278,1537819,’Ned Grimes’,0,35),(278,25659,’Con (uncredited)’,2,36),(278,1185588,’Police Officer (uncredited)’,0,37),(278,92647,’Inmate (uncredited)’,0,38),(278,1337623,’Inmate II (uncredited)’,2,39),(278,1584544,’Frank (uncredited)’,2,40),(278,389763,’Pete’,2,41),(9290,57147,’Michael J. \’Crocodile\’ Dundee’,2,0),(9290,57166,’Sue Charleton’,1,1),(9290,57167,’Arnan Rothman’,2,2),(9290,783,’Milos Drubnik’,2,3),(9290,1121223,’Jacko’,2,4),(9290,955204,’Nugget O\’Cass’,2,5),(9290,954286,’Donk’,2,6),(9290,88427,’Mikey Dundee’,2,7),(9290,106791,’Jean Ferraro’,0,8),(9290,55259,’Diego’,2,9),(9290,75528,’Miss Mathis’,1,10),(9290,949496,’Troy’,2,12),(9290,35521,’Limo Driver’,2,13),(9290,75753,’Matt’,2,14),(9290,72699,’Skater’,1,15),(9290,1222753,’Arthur’,2,16),(9290,162014,’Pickpocket’,2,17),(9290,1214402,’Driver’,2,18),(9290,1861492,’Claire’,0,19),(8976,18976,’Oliver Martin’,2,0),(8976,2956,’Emily Friehl’,1,1),(8976,56457,’Nicole’,1,2),(8976,343,’Ellen Martin’,1,3),(8976,17303,’Gina’,1,4),(8976,17696,’Michelle’,1,5),(8976,53493,’Jeeter’,2,6),(8976,32458,’Peter’,2,7),(8976,23958,’Ben Miller’,2,8),(8976,56455,’Bridget’,1,9),(8976,1578,’Stephen Martin’,2,10),(8976,23975,’Stewardess’,1,11),(8976,163439,’Bartender’,1,12),(8976,203867,’Gallery Owner’,1,13),(9469,5292,’Jake Shuttlesworth’,2,0),(9469,57685,’Jesus Shuttlesworth’,2,1),(9469,63,’Dakota Burns’,1,2),(9469,5916,’Lala Bonilla’,1,3),(9469,57686,’Coleman \’Booger\’ Sykes’,2,4),(9469,102894,’Suzie’,1,5),(9469,544069,’Buffy’,1,6),(9469,1241,’Coach Billy Sunday’,2,7),(9469,13726,’Warden Wyatt’,2,8),(9469,1215522,’Herself’,0,9),(9469,23678,’Himself’,2,10),(9469,124576,’Himself’,2,11),(9469,1211812,’Himself’,0,12),(9469,122447,’Himself’,0,13),(9469,35806,’Himself’,2,14),(9469,163554,’Himself’,2,15),(9469,1224931,’Himself’,2,16),(9469,1865988,’Himself (as Robert \’Bobby\’ Cremins)’,0,17),(9469,1865990,’Himself (as Richard Pitino)’,0,18),(9469,1865991,’Himself’,0,19),(9469,1315390,’Himself’,0,20),(9469,1865993,’Himself’,0,21),(9469,1866059,’Himself’,0,22),(9469,1644953,’Himself’,0,23),(9469,1866060,’Himself’,0,24),(9469,1315469,’Himself’,0,25),(9469,1358962,’Himself’,0,26),(9469,1866062,’Himself’,0,27),(9469,1866063,’Himself’,0,28),(1909,85,’Don Juan deMarco’,2,0),(1909,3084,’Dr. Jack Mickler’,2,1),(1909,6450,’Marilyn Mickler’,1,2),(1909,19888,’Dona Ana’,1,3),(1909,19889,’Dr. Paul Showalter’,2,4),(1909,10768,’Dou00f1a Inez’,1,5),(1909,10680,’Dou00f1a Julia’,1,6),(1909,25214,’Dr. Bill Dunsmore’,2,7),(1909,25215,’Sultana Gulbeyaz’,1,8),(1909,1536,’Woman in Restaurant’,1,9),(1909,21544,’Detective Sy Tobias’,0,10),(1909,32391,’Grandmother DeMarco’,1,11),(1909,28413,’Don Alfonzo’,2,12),(8051,19292,’Barry Egan’,2,0),(8051,1639,’Lena Leonard’,0,1),(8051,1233,’Dean Trumbell’,2,2),(8051,40481,’Lance’,2,3),(8051,25884,’Elizabeth’,1,4),(8051,53684,’Walter the Dentist’,2,5),(8051,177063,’Operator Carter’,2,6),(8051,79025,’Plastic’,2,7),(8051,554026,’Customer #1′,0,8),(8051,554027,’Customer #2′,0,9),(8051,54428,’Rico’,2,10),(8051,554028,’Rhonda’,0,11),(8051,162609,’Anna’,1,12),(8051,149800,’Kathleen’,0,13),(8051,554029,’Sal’,0,14),(8051,554030,’Jorge’,0,15),(8051,554031,’Ernesto’,0,16),(8051,554032,’Mechanic’,0,17),(8051,554033,’Susan’,0,18),(8051,554034,’Nicole’,0,19),(8051,554035,’Gilda’,0,20),(8051,554036,’Anna’,0,21),(8051,554037,’Steve / Brother-in-Law’,0,22),(8051,554038,’Richard / Brother-in-Law’,0,23),(8051,554039,’Phone Sex Sister’,0,24),(9352,41464,’Scott Thomas’,2,0),(9352,54414,’Cooper Harris’,2,1),(9352,49961,’Jenny’,1,2),(9352,57404,’Jamie’,2,3),(9352,980,’Mad Maynard’,2,4),(9352,20584,’Madame Vandersexxx’,1,5),(9352,946090,’Mieke’,1,6),(9352,8979,’Arthur Frommer’,2,7),(9352,50175,’Christoph’,0,8),(9352,5727,’Mugger’,2,9),(9352,55751,’Fiona’,1,10),(9352,1892,’Donny’,2,11),(9352,221950,’Candy’,0,12),(9352,1249959,’Missy’,0,13),(9352,1646100,’Sissy’,1,14),(9352,57402,’Mrs. Thomas’,1,15),(9352,57403,’Bert’,2,16),(9352,53348,’Gunter’,2,17),(9352,20259,’Anna’,1,18),(9352,32822,’Trucker’,2,19),(9352,36908,’Mieke\’s Father’,2,20),(9352,1390260,’Tourist Woman in Vatican’,1,22),(1831,3125,’Abbie Reynolds’,1,0),(1831,4757,’Robert Whittaker’,2,1),(1831,4589,’Ben Cooper’,2,2),(1831,19306,’Sam’,0,3),(1831,14792,’Richard Whittaker’,2,4),(1831,19307,’Annabel’,1,5),(1831,15829,’Kelly’,1,6),(1831,7796,”,1,7),(1831,15424,”,2,8),(1831,29791,”,1,9),(1831,41686,”,2,10),(9787,46593,’Jay’,2,0),(9787,59251,’Tony Alva’,2,1),(9787,28412,’Philaine’,1,2),(9787,19197,’Stacy’,2,3),(9787,11665,’Sid’,2,4),(9787,59252,’Kathy Alva’,1,5),(9787,9656,’Topper Burks’,2,6),(9787,1810,’Skip’,2,7),(9787,1983,’Chino’,2,8),(9787,15338,’Donnie’,2,9),(9787,17413,’Mr. Alva’,2,10),(9787,59253,’Montoya’,0,11),(9787,59254,’Stecyk’,2,12),(9787,20220,’Billy Z’,2,13),(9787,59255,’Urethane Wheels Guy’,2,14),(9787,51975,’Gabrielle’,1,15),(9787,59174,’Thunder Monkey’,1,16),(9787,63522,’Amelia’,1,17),(9787,17604,’Manager’,2,18),(9787,74242,”,2,19),(6978,6856,’Jack Burton’,2,0),(6978,2109,’Gracie Law’,1,1),(6978,11392,’Wang Chi’,2,2),(6978,20904,’Lo Pan’,2,3),(6978,11395,’Egg Shen’,2,4),(6978,20879,’Margo’,1,5),(6978,168246,’Eddie Lee’,2,6),(6978,238896,’Thunder’,2,7),(6978,97695,’Rain’,2,8),(6978,53024,’Lightning’,2,9),(6978,943369,’Miao Yin’,1,10),(6978,995587,’Uncle Chu’,2,11),(6978,169628,’Needles’,2,12),(6978,159078,’Joe Lucky’,0,13),(6978,156058,’One Ear’,0,14),(6978,1115618,’White Tiger’,0,15),(6978,1217404,’Mrs. O\’Toole’,0,16),(6978,1677316,’Chinese Girl in White Tiger’,0,17),(6978,89141,’Pinstripe Lawyer’,2,18),(6978,94089,’Chang Sing #1′,2,19),(6978,165827,’Chang Sing #2′,2,20),(6978,1576419,’Chang Sing #3′,0,21),(6978,1613833,’Chang Sing #4′,0,22),(6978,1677317,’Chang Sing #5′,0,23),(6978,16580,’Chang Sing #6′,2,24),(6978,1677318,’Wounded Chang Sing’,0,25),(6978,553750,’Sewer Monster’,0,26),(6978,1677319,’Chinese Guard’,0,27),(6978,239303,’Tara’,0,28),(6978,1677320,’Chinese Gambler’,0,29),(6978,61704,’Wing Kong Hatchet Man’,2,30),(6978,105047,’Wing Kong Hatchet Man’,2,31),(6978,1677321,’Wing Kong Hatchet Man’,0,32),(6978,1039054,’Wing Kong Hatchet Man’,2,33),(6978,1677322,’Wing Kong Hatchet Man’,0,34),(6978,6954,’Wing Kong Hatchet Man’,0,35),(6978,87564,’Wing Kong Hatchet Man’,0,36),(6978,1677323,’Wing Kong Hatchet Man’,0,37),(6978,1071306,’Wing Kong Hatchet Man’,0,38),(6978,1677324,’Wing Kong Hatchet Man’,0,39),(6978,1677325,’Wing Kong Security Guard’,0,40),(6978,1677327,’Wing Kong Security Guard’,0,41),(6978,1096095,’Female Wing Kong Guard’,0,42),(6978,1677328,’Female Wing Kong Guard’,0,43),(6978,1677329,’Female Wing Kong Guard’,0,44),(6978,1677330,’Female Wing Kong Guard’,0,45),(1770,3896,’Michael Collins’,2,0),(1770,18992,’Harry Roland’,2,1),(1770,9029,’Ned Broy’,2,2),(1770,4566,’Eamon de Valera’,2,3),(1770,1204,’Kitty Kiernan’,1,4),(1770,10985,’Joe O`Reilly’,2,5),(1770,2039,’Liam Tobin’,2,6),(1770,18993,’Tom Cullen’,2,7),(1770,2468,’Smith’,2,8),(1770,4391,’Soames’,2,9),(1770,18995,’o. A.’,0,10),(1770,87907,’Vinny Byrne’,2,11),(1770,1333582,’Captain Lee-Wilson’,0,12),(1770,1223591,’James Connolly’,0,13),(1770,549342,’Thomas Clarke’,0,14),(1770,43131,’Cathal Brugha’,0,15),(1770,17024,’Arthur Griffith’,2,16),(1770,73287,’Squad Youth #1′,0,17),(1770,150577,’Gresham Hotel Bellboy’,2,18),(1770,1244,’Collin\’s Assassin’,2,19),(1770,17203,’Hoey’,2,20),(1770,43138,’Belfast Detective’,2,21),(8988,11864,’Brandon King’,2,0),(8988,37260,’Michelle’,1,1),(8988,24045,’Tommy Burgess’,2,2),(8988,38673,’Steve Shriver’,2,3),(8988,14792,’Senator Orton Worrell’,2,4),(8988,18082,’Lieutenant Colonel Boot Miller’,2,5),(8988,8785,’Roy King’,2,6),(8988,58643,’Ida King’,1,7),(8988,54815,’Michael Colson’,2,8),(8988,19195,’Shorty’,2,9),(8988,10689,’Isaac \’Eyeball\’ Butler’,2,10),(8988,59251,’Rico Rodriguez’,2,11),(8988,1530547,’Al \’Preacher\’ Colson’,0,12),(8988,1741941,’Harvey’,0,13),(8988,1741942,’Curtis’,0,14),(8988,47281,’Jeanie’,1,15),(8988,1741943,’Mrs. Butler’,0,16),(8988,1741944,’Theresa Rodriguez’,1,17),(8988,1741945,’Augustin’,0,18),(8988,1741947,’Pastor’,0,19),(8988,1741948,’Karen’,1,20),(8988,1319846,’Sharon’,1,21),(8988,945486,’Dennis’,0,22),(8988,129868,’Rainey’,2,23),(8988,983604,’Cowboy’,2,24),(8988,1741954,’CIF Clerk’,0,25),(8988,1108830,’Clerk’,2,26),(8988,1741955,’Lieutenant One’,0,27),(8988,77859,’Sheriff Boudreaux’,0,28),(8988,1741957,’Police Officer’,0,29),(8988,1205880,’Captain Dever’,0,30),(8988,1223862,’Pastor Colson’,0,31),(8988,12133,’Mrs. Colson’,1,32),(8988,1741958,’Receptionist’,0,33),(8988,62645,’Josh’,2,34),(8988,452,’Senator\’s Secretary (voice)’,1,35),(8988,150094,’Bartender’,2,36),(8988,1741960,’Vet’,0,37),(8988,1741962,’Vet’,0,38),(8988,1986,’Carlson’,2,39),(8988,1741963,’NCOIC of Pallbearers’,0,40),(8988,76800,’Honor Guard NCOIC’,0,41),(8988,1741965,’Grave Digger’,0,42),(8988,945958,’Captain Greg MacDonald’,2,43),(8988,53137,’Indian Man’,0,44),(8988,1741967,’Captain Urbina’,0,45),(8988,1741968,’Bar Patron’,0,46),(8988,1741969,’Patient’,0,47),(8988,59464,’Two-Step Dancer’,1,48),(8988,1741970,’Soldier’,0,49),(8988,63303,’Cash for Carz Salesman’,2,50),(8988,1153847,’Platoon Leader’,0,51),(8988,1741973,’Drunk Cowboy in Dance Hall’,0,52),(8988,1741975,’Soldier on Bus’,0,53),(8988,1472380,’Soldier’,0,54),(8988,1741977,’Office Soldier’,0,55),(8988,1043972,’Domestic Abuse Victim’,1,56),(8988,1472397,’Brawling Drunk’,0,57),(8988,1741980,’Austinite’,1,58),(8988,1378058,’Soldier’,0,59),(8988,1741981,’Soldier’,0,60),(8988,1261901,’Policeman’,0,61),(8988,490982,’Sweetheart’,1,62),(8988,1741984,’Nurse’,1,63),(8988,1741988,’Soldier’,0,64),(8988,1741989,’Soldier’,0,65),(8988,1112455,’Kid Chasing Bus’,0,66),(8988,1742398,’Dancer’,1,67),(8988,1742402,’Little Girl in Parade’,0,68),(8988,1742403,’Staff Sergeant Adler’,0,69),(8988,1472348,’Mechanic’,0,70),(8988,1741932,’Schizophrenic Runaway / Barn Partygoer’,1,71),(8988,1465608,’Capitol Business Woman’,1,72),(8988,1742406,’Dance Hall Dancer’,0,73),(8988,1742407,’Soldier\’s Parent’,0,74),(8988,1742408,’Soldier’,0,75),(8988,1742409,’Soldier’,0,76),(8988,1742410,’Senator\’s Secretary’,1,77),(8988,1742412,’Soldier’,0,78),(8988,1742413,’Tommy\’s Sister’,1,79),(8988,1742423,’Biker Chick’,1,80),(8988,575674,’Tweaker’,2,81),(8988,1742429,’Biker Chick’,1,82),(8988,131427,’U.S. Senator’,0,83),(8988,1742435,’Cowgirl’,0,84),(8988,1742436,’Party Goer’,0,85),(8988,1742437,’Female Soldier’,0,86),(8988,1742438,’Army Nurse’,1,87),(8988,1742439,’Marine’,0,88),(9903,1205,’Clifford Irving’,2,0),(9903,658,’Dick Suskind’,2,1),(9903,4726,’Edith Irving’,1,2),(9903,15250,’Andrea Tate’,1,3),(9903,1146,’Nina Van Pallandt’,1,4),(9903,2283,’Shelton Fisher’,2,5),(9903,60195,’Brad Silber’,2,6),(9903,47281,’Dana’,1,7),(9903,6752,’Ralph Graves’,2,8),(9903,3265,’Noah Dietrich’,2,9),(9903,84955,’Sergent Daniels’,2,10),(9903,60118,’Frank Mccullough’,2,11),(9903,19489,’George Gordon Holmes’,2,12),(9903,60196,’Harold McGraw’,2,13),(9903,37156,’McGraw-Hill Security’,0,14),(9903,60021,’Albert Vanderkamp’,2,15),(9903,60198,’Bike Messenger’,0,16),(9903,60197,’Marion’,1,17),(9903,1458992,’Howard Hughes’,0,18),(9903,60199,’Malika’,0,19),(9903,60200,’Sporting Goods Salesman’,0,20),(9903,60201,’Car Salesman’,2,21),(9903,60203,’Bahamas Desk Clerk’,2,22),(9903,60202,’Fredrick Van Pallandt’,0,23),(9903,60204,’Man with Red Tie’,0,24),(9903,60206,’Man in Blue Jeans’,0,25),(9903,60205,’Puffy Man’,2,26),(9912,4173,’Burt Munro’,2,0),(9912,60368,’George’,0,1),(9912,60370,’Sarah’,1,2),(9912,60369,’Tom’,2,3),(9912,60371,’Frank’,2,4),(9912,60372,’Fran’,1,5),(9912,46398,’Duncan’,2,6),(9912,60374,’Doris’,0,7),(9912,60373,’Jeff’,2,8),(9912,3496,’Antarctic Angel’,2,9),(9912,60375,’Cook’,0,10),(9912,60377,’Janice’,0,11),(9912,60378,’Bank Manager’,2,12),(9912,60379,’Burt\’s Neighbour’,0,13),(9912,60376,’Doctor’,1,14),(9912,33309,’Brian’,2,15),(9912,60380,’Burt\’s Neighbour’,0,16),(9912,60382,’Troy’,0,17),(9912,60383,’Purser’,2,18),(9912,60381,’Captain’,0,19),(9912,54492,’Customs Official’,2,20),(9912,22126,’Wendy’,1,21),(9067,15309,’Rebecca (Tank Girl)’,1,0),(9067,21411,’T-Saint’,2,1),(9067,3489,’Jet Girl’,1,2),(9067,56890,’Kesslee’,2,3),(9067,13604,’Rat Face’,0,4),(9067,1280,’Sgt. Small’,2,5),(9067,54865,’Booga’,2,6),(9067,38951,’Deetee’,2,7),(9067,9306,’Donner’,2,8),(9067,59260,’Sub Girl’,1,9),(9067,20904,’Che\’tsai’,2,10),(9067,31028,’Trooper in Trench’,2,11),(9067,1028072,’Liquid Silver Dancer’,1,12),(9067,1748010,’Sam’,1,13),(9067,113785,’Richard’,2,14),(9067,51321,’Model’,0,15),(9067,21735,’Max’,2,16),(9067,88522,’Capt. Derouche’,2,17),(9067,1748021,’Additional Ripper’,0,18),(9067,17005,’Additional Ripper’,2,19),(9067,1748022,’Additional Ripper’,0,20),(9067,1748024,’Additional Ripper’,0,21),(9067,83404,’Dr. Nikita’,1,22),(9067,158320,’Pilot’,2,23),(9067,1748027,’Razor Ray’,0,24),(9067,1748029,’Zack’,0,25),(9067,176322,’Foreman’,0,26),(9067,170231,’Town’,0,27),(9067,1460290,’Trooper Wayne’,0,28),(9067,186655,’Sand Hermit’,1,29),(9067,1047413,’Father’,0,30),(9067,1748031,’Mother’,1,31),(9067,170086,’Trooper #1′,2,32),(9067,1748034,’Jet Pilot’,0,33),(9067,72231,’Prostitute’,1,34),(9067,101013,’Guard at Front Entrance’,0,35),(9067,1748038,’Technician’,0,36),(9067,1748039,’Trooper in Basement’,0,37),(9067,1748041,’Flyer Trooper’,0,38),(9067,1748043,’Trooper at Pump Hanger’,0,39),(9067,1748047,’Young Rebecca’,1,40),(9067,75224,’Trooper’,0,41),(9067,1559957,’Trooper’,2,42),(9067,545477,’Semi Driver’,0,43),(9067,1748050,’Dig Site Worker’,0,44),(9067,1434559,’Long Hair’,0,45),(9067,1744950,’Flyer Pilot’,0,46),(9067,1748052,’Liquid Silver Dancer’,0,47),(9067,1748053,’Liquid Silver Dancer’,1,48),(9067,29214,’Liquid Silver Dancer’,1,49),(9067,1513683,’Liquid Silver Dancer’,1,50),(9067,1748056,’Liquid Silver Dancer’,1,51),(9067,1748058,’Liquid Silver Dancer’,1,52),(9067,1748060,’Liquid Silver Dancer’,0,53),(9067,1748061,’Liquid Silver Dancer’,1,54),(9067,1748063,’Liquid Silver Dancer’,1,55),(9067,1748064,’Liquid Silver Dancer’,0,56),(9067,1748065,’Liquid Silver Dancer’,1,57),(9067,1647706,’Liquid Silver Dancer’,1,58),(9067,1748066,’Liquid Silver Dancer’,1,59),(9067,1748068,’Liquid Silver Dancer’,1,60),(9067,1748070,’Liquid Silver Dancer’,0,61),(9067,1748074,’Liquid Silver Dancer’,0,62),(9067,1748075,’Liquid Silver Dancer’,1,63),(9067,1748077,’Liquid Silver Dancer’,1,64),(9067,1748079,’Liquid Silver Dancer’,1,65),(9067,1205064,’Prisoner’,0,66),(9067,1684466,’Trooper’,0,67),(9067,1748085,’Model’,1,68),(9067,1416423,’Trooper’,0,69),(9067,1748086,’Water Power Guard’,0,70),(9067,1198202,’Desert Trooper’,0,71),(9067,1748087,’Brothel Patron’,0,72),(9067,37042,’The Madam’,1,73),(9067,1748089,’Bouncer’,0,74),(9067,1748090,’Hand Maiden’,1,75),(8338,1231,’Doctor\’s Wife’,1,0),(8338,103,’Doctor’,2,1),(8338,8602,’Woman with dark glasses’,1,2),(8338,258,’King of Ward 3′,2,3),(8338,2047,’Man with black eye patch’,2,4),(8338,70209,’First blind man’,2,5),(8338,72764,’First blind man\’s wife’,0,6),(8338,25540,’Minister of Health’,1,7),(8338,72765,’Boy’,2,8),(8338,20173,’Thief’,2,9),(8338,7868,’Accountant’,2,10),(8338,86237,’Taxi driver’,2,11),(8338,51389,’Police man’,2,12),(8338,1640385,’Concerned pedestrian’,0,13),(8338,1052178,’Concerned pedestrian’,0,14),(8338,8598,’Onlooker’,2,15),(8338,59713,’Pharmacist\’s Assistant’,0,16),(9729,4724,’Lanny’,2,0),(9729,5472,’Vince’,2,1),(9729,8291,’Karen’,1,2),(9729,54014,’Reuben’,2,3),(9729,52478,’Maureen’,1,4),(9729,7868,’Sally Sanmarco’,2,5),(9729,58800,’Bonnie’,1,6),(9729,58801,’Alice’,1,7),(9729,58803,’Mrs. O\’Flaherty’,1,8),(9729,42308,’Jack Scaglia’,2,9),(9729,7708,’Publishing Executive’,1,10),(9729,58804,’Publishing Executive’,1,11),(9729,20173,’Publishing Executive’,2,12),(9729,58805,’NY Hotel Concierge’,2,13),(9729,58806,’Irv Fleischman’,0,14),(9729,78862,’Gina’,1,15),(859,515,’Marquise Isabelle de Merteuil’,1,0),(859,6949,’Vicomte Su00e9bastien de Valmont’,2,1),(859,1160,’Madame Marie de Tourvel’,1,2),(859,12967,’Madame de Volanges’,1,3),(859,6384,’Le Chevalier Raphael Danceny’,2,4),(859,12969,’Madame de Rosemonde’,1,5),(859,139,’Cu00e9cile de Volanges’,1,6),(859,12982,’Azolan’,2,7),(859,12983,’Georges’,2,8),(859,12984,’Julie’,0,9),(859,12985,’Emilie’,0,10),(859,12986,’Adu00e8le’,0,11),(859,1242621,’Major-domo’,0,12),(859,1825026,’Castrato’,0,13),(168,1748,’Admiral/Captain James T. Kirk’,2,0),(168,1749,’Captain Spock’,2,1),(168,1750,’Dr. Leonard McCoy’,0,2),(168,1751,’Montgomery Scott’,2,3),(168,1752,’Cmdr. Hikaru Sulu’,0,4),(168,1754,’Cmdr. Pavel Chekov’,2,5),(168,1753,’Cmdr. Uhura’,1,6),(168,2021,’Amanda’,1,7),(168,2022,’Dr. Gillian Taylor’,1,8),(168,1820,’Ambassador Sarek’,2,9),(168,1819,’Lt. Saavik’,1,10),(168,2647,’Federation Council President’,2,11),(168,24046,’Klingon Ambassador’,2,12),(168,2112,’Admiral Cartwright’,2,13),(168,1219391,’Starfleet Communications Officer’,0,14),(1246,16483,’Rocky Balboa’,2,0),(1246,4521,’Paulie’,2,1),(1246,16501,’Rocky Jr.’,2,2),(1246,16502,’Marie’,1,3),(1246,16503,’Steps’,2,4),(1246,16504,’Duke’,2,5),(1246,16505,’L.C.’,2,6),(1246,3094,’Adrian’,1,7),(1246,16506,’Martin’,2,8),(1246,16507,’Mason \’The Line\’ Dixon’,2,9),(1246,16508,’Spider Rico’,2,10),(1246,16509,’Isabel’,1,11),(1246,16510,’Angie’,1,12),(1246,16511,’Bar Thug’,0,13),(1246,16512,’Lucky\’s Bartender’,0,14),(1246,98298,’X-Cell’,2,15),(4233,15234,’Dewey Riley’,2,0),(4233,9206,’Sidney Prescott’,1,1),(4233,14405,’Gale Weathers’,1,2),(4233,11863,’Cici Cooper’,1,3),(4233,6213,’Randy Meeks’,0,4),(4233,12133,’Debbie Salt’,1,5),(4233,21215,’Hallie’,1,6),(4233,3035,’Derek’,2,7),(4233,18082,’Mickey’,2,8),(4233,9575,’Maureen Evans’,1,9),(4233,23626,’Cotton Weary’,2,10),(4233,75465,’Chief Hartley’,2,11),(4233,84077,’Joel’,2,12),(4233,59967,’Lois’,1,13),(4233,62010,’Murphy’,1,14),(4233,69122,’\’Stab\’ Casey’,1,15),(4233,51957,’Phone Voice (voice)’,0,16),(4233,11866,’Film Class Guy #1′,2,17),(4233,84457,’Dawnie’,1,18),(4233,19149,’Herself/\’Stab\’ Sidney’,1,19),(4233,36422,’\’Stab\’ Billy’,2,20),(4233,2076,’Gus Gold’,2,21),(4233,4987,’Phil Stevens’,2,22),(4233,11826,’Cici\’s Friend on Phone’,1,23),(4233,1748202,’Usher Giving Out Costumes’,1,24),(4233,1748203,’Screaming Girl Up Aisle’,1,25),(4233,9573,’Popcorn Boy’,0,26),(4233,230100,’Theater Girl #1′,1,27),(4233,154841,’Theater Girl #2′,1,28),(4233,26458,’Cotton\’s Interviewer’,2,29),(4233,1748204,’Girl in Dorm Hallway’,1,30),(4233,1748206,’Reporter Outside Theater’,0,31),(4233,1748207,’Reporter #1′,0,32),(4233,1631182,’Reporter #2′,1,33),(4233,69393,’Reporter #3′,2,34),(4233,193003,’Artsy Teacher’,2,35),(4233,1214179,’Film Class Guy #2′,0,36),(4233,1151869,’Film Class Mopey Girl’,1,37),(4233,1748214,’Reporter #4′,1,38),(4233,1748215,’Reporter #5′,0,39),(4233,1748216,’Coroner at Cici\’s House’,1,40),(4233,167160,’ER Doctor’,1,41),(4233,20754,’Officer Andrews’,2,42),(4233,1748217,’Captain Down’,0,43),(4233,127130,’Tori\’s Interviewer’,1,44),(4233,1748219,’Zeus’,0,45),(4233,20739,’Ghost Dancer’,2,46),(4233,1741692,’Dancer’,0,47),(4233,1748220,’Dancer’,1,48),(4233,29214,’Dancer’,1,49),(4233,1748221,’Dancer’,0,50),(4233,1748183,’Dancer’,0,51),(4233,1339220,’Dancer’,0,52),(4233,1101431,’Dancer’,1,54),(4233,1748223,’Dancer’,0,55),(4233,1748224,’Tackled Cell Phoner’,0,56),(4233,1418031,’Officer Richards’,2,57),(4233,1535965,’Fraternity Brother #1′,0,58),(4233,1475742,’Fraternity Brother #2′,0,59),(4233,1332247,’Fraternity Brother #3′,0,60),(4233,1225878,’Reporter #7′,1,61),(4233,1748228,’Reporter #8′,1,62),(4233,1416333,’Student’,0,63),(4233,1748232,’College Student’,1,64),(4233,5140,’Doctor’,2,65),(4233,1748233,’Movie Goer’,0,66),(4233,1748234,’Student’,0,67),(4233,1748236,’Sorority Sister’,1,68),(4233,567231,’Photographer’,0,69),(4233,26457,’Guy at Party’,2,70),(4233,1748238,’Maureen Roberts Prescott’,1,71),(4233,1748239,’College Professor’,1,72),(4233,1347687,’Library Guy’,0,73),(4233,1009255,’Audience Member’,0,74),(4233,203263,’Dancer’,1,75),(2069,62,’Jimmy The Tulip Tudeski’,2,0),(2069,14408,’Nicholas Oz Oseransky’,2,1),(2069,2165,’Sophie Oseransky’,1,2),(2069,61981,’Franklin Frankie Figs Figueroa’,2,3),(2069,7166,’Janni Pytor Gogolak’,2,4),(2069,16846,’Special Agent Steve Hanson’,2,5),(2069,2956,’Jill St. Claire’,1,6),(2069,57395,’Cynthia Tudeski’,1,7),(2069,938316,’Sophie\’s Mom’,0,8),(2069,1091239,’Mr. Boulez’,0,9),(1788,4724,’Ren McCormack’,2,0),(1788,12074,’Reverend Shaw Moore’,2,1),(1788,1902,’Vi Moore’,1,2),(1788,2969,’Willard Hewitt’,2,3),(1788,26456,’Ariel Moore’,1,4),(1788,520,’Rusty’,1,5),(1788,83411,’Andy Beamis’,2,6),(1788,1070,’Ethel McCormack’,1,7),(1788,104342,’Woody’,2,8),(1788,119894,’Wendy Jo’,0,9),(1788,3009,’Chuck Cranston’,2,10),(1788,154287,’Lulu Warnicker’,1,11),(1788,1563849,’Mr. Gurntz’,0,12),(177,1229,’Jack Lucas’,2,0),(177,2157,’Henry Sagan \’Parry\”,2,1),(177,2167,’Anne Napolitano’,1,2),(177,99,’Lydia’,1,3),(177,2169,’Homeless Cabaret Singer’,2,4),(177,11073,’Sondra’,1,5),(177,11074,’Crazy video customer’,1,6),(177,11075,’Radio Engineer’,0,7),(177,11076,’Lou Rosen’,2,8),(177,11077,’TV Executive’,0,9),(177,11078,’Parry\’s Wife’,0,10),(177,981542,’Radio Engineer’,2,11),(177,57357,’Limo Bum’,2,12),(177,1075039,’TV Anchorman’,0,13),(177,170237,’News Reporter’,2,14),(177,6008,’Sitcom Actor Ben Starr’,2,15),(177,105704,’Sitcom Wife’,0,16),(177,1075040,’Bum at Hotel’,0,17),(177,12782,’Doorman’,2,18),(177,171301,’Father at Hotel’,2,19),(177,5346,’punk’,2,20),(177,21130,’Punk’,2,21),(177,3039,’Hippie Bum’,2,22),(177,2887,’Disabled Vet’,0,23),(177,157549,’Receptionist’,1,24),(3600,33259,’Julie James’,1,0),(3600,33260,’Ray Bronson’,2,1),(3600,327,’Tyrell’,2,2),(3600,33285,’Karla Wilson’,1,3),(3600,17348,’Ben Willis’,2,4),(3600,33286,’Will Benson’,2,5),(3600,18285,’Nancy’,1,6),(3600,8854,’Estes’,2,7),(3600,27993,’Mr. Brooks’,2,8),(3600,16861,’Dave’,2,9),(3600,70851,’Titus Telesco’,2,10),(2621,12640,’Bob Rueland’,2,0),(2621,6613,’Grace Briggs’,1,1),(2621,26512,’Marty O\’Reilly’,2,2),(2621,1162,’Angelo Pardipillo’,2,3),(2621,26485,’Joe Dayton’,2,4),(2621,5149,’Megan Dayton’,1,5),(2621,58563,’Charlie Johnson’,2,6),(2621,20810,’Elizabeth Rueland’,1,7),(2621,8692,’Emmett McFadden’,2,8),(2621,543,’Sophie’,1,9),(2621,3043,’Wally Jatczak’,2,10),(2621,1990,’Mike’,0,11),(2621,1522156,’Adam Dayton’,0,13),(2621,1522157,’Karson Dayton’,0,14),(2621,1591219,’Jeff’,2,15),(3558,1920,’Susanna Kaysen’,1,0),(3558,11701,’Lisa Rowe’,1,1),(3558,20387,’Georgina Tuskin’,1,2),(3558,328,’Daisy Randone’,1,3),(3558,32798,’Polly Clark’,1,4),(3558,13333,’Dr. Wick’,1,5),(3558,2395,’Valerie Owens’,1,6),(3558,7499,’Toby’,2,7),(3558,4175,’Dr. Melvin Potts’,2,8),(3558,32802,’Nurse John’,2,9),(3558,32799,’Janet Webber’,1,10),(3558,20469,’Cynthia Crowley’,1,11),(3558,32800,’M.G.’,1,12),(3558,32801,’Nurse Margie’,0,13),(3558,5960,’Barbara Gilcrest’,1,14),(3558,20388,’Bonnie Gilcrest’,1,15),(3558,42747,’Tony’,2,17),(6478,1979,’Bobby Darin’,2,0),(6478,7517,’Sandra Dee (Mrs Darin)’,1,1),(6478,1230,’Steve Blauner’,2,2),(6478,382,’Charlie Cassotto Maffia’,2,3),(6478,4154,’Polly Cassotto’,1,4),(6478,21245,’Mary Duvan’,1,5),(6478,742,’Dr. Andretti’,2,6),(6478,1910,’Nina Cassoto Maffia’,1,7),(4935,12670,’Hauru’,2,0),(4935,20338,’Arechi no Majo’,0,1),(4935,19592,’Karushifu00e2′,1,2),(4935,40449,’Koshu00f4′,2,3),(4935,40450,’Kakashi no Kabu’,2,4),(4935,40451,’Kokuu00f4′,2,5),(4935,40452,’Hin’,0,6),(4935,40453,’Sariman’,1,7),(4935,225730,’Marukuru’,2,15),(4935,533325,’Sofi’,1,16),(1891,2,’Luke Skywalker’,2,0),(1891,3,’Han Solo’,2,1),(1891,4,’Princess Leia’,1,2),(1891,3799,’Lando Calrissian’,0,3),(1891,6,’C-3PO’,2,4),(1891,24342,’Darth Vader’,2,5),(1891,130,’R2-D2′,2,6),(1891,24343,’Chewbacca’,2,7),(1891,7908,’Yoda (Voice)’,2,8),(1891,15152,’Darth Vader (Voice)’,0,9),(1891,70772,’Yoda (uncredited)’,1,10),(1891,1729650,”,0,12),(1891,33185,’Boba Fett’,0,15),(1891,151529,’Boba Fett (voice) (uncredited)’,2,16),(1891,7242,’Boba Fett (voice)’,2,17),(1891,20128,’Emperor (voice)’,2,18),(1891,117714,’Emperor’,1,19),(1891,27762,’Emperor’,2,20),(1891,12248,’Ben \’Obi-wan\’ Kenobi’,2,21),(1891,27165,’Lando\’s aide’,2,22),(1891,132538,’Chief Ugnaught’,2,23),(1891,132539,’Snow Creature’,0,24),(1891,740,’Imperial Force General Veers’,2,25),(1891,10734,’Imperial Force Admiral Piett’,2,26),(1891,7907,’Rebel Force Major Derlin’,2,27),(1891,70417,’Admiral Ozzel’,2,28),(1891,47520,’Captain Needa’,2,29),(1891,1429986,’Captain Lennox, Imperial Officer’,0,30),(1891,24625,’Bewil, an Imperial officer’,2,31),(1891,1229839,’Commander Nemet, an Imperial Officer’,0,32),(1891,1221792,’Cabbel, an Imperial Officer’,0,33),(1891,1429987,’Lieutenant Venka, an Imperial Officer’,0,34),(1891,8664,’General Carlist Rieekan, an Rebel Force’,2,35),(1891,47808,’Rebel pilot Zev Senesca (Rogue 2)’,0,36),(1891,47698,’Rebel Force Wedge (Rogue 3)’,2,37),(1891,79957,’Wes Janson, a Rebel Force (Wedge\’s Gunner)’,0,38),(1891,1430007,’Dak Ralter, a Rebel Force’,0,39),(1891,1181937,’Derek Klivian, a Rebel Force Hobbie (Rogue 4)’,0,40),(1891,1211845,’Cal Alder, a Rebel Force Deck Lieutenant’,2,41),(1891,1270880,’Rebel Force Head Controller’,0,42),(1891,116123,’Tamizander Rey, a Other Rebel Officer’,2,43),(1891,1430038,’Jeroen Webb, a Other Rebel Officer’,0,44),(1891,1250671,’Tigran Jamiro, Other Rebel Officer’,0,45),(1891,1430048,’Toryn Farr, Other Rebel Officer’,0,46),(1891,184980,’Wyron Serper, Other Rebel Officer’,0,47),(1891,202711,’Imperial Officer (uncredited)’,2,48),(1891,1271059,’Stormtrooper (uncredited)’,2,49),(1891,1473717,’Stormtrooper / Snowtrooper / Rebel Soldier / … (uncredited)’,0,50),(1891,1230632,’Holographic Imperial Officer (uncredited)’,0,51),(1891,1520024,’Officer M\’kae (Captain Needa\’s Communications Officer) (uncredited)’,2,52),(1891,1355100,’Cloud City Guard (uncredited)’,0,53),(1891,53587,’Snowtrooper Gunner (uncredited)’,2,54),(1891,1212168,’Snowtrooper (uncredited)’,0,55),(1891,1572549,’Snowtrooper (uncredited)’,0,56),(1891,75445,’Snowtrooper (uncredited)’,0,57),(1891,964699,’Bossk / Bespin Security Guard (uncredited)’,2,58),(1891,1190780,’Extra (uncredited)’,0,59),(1891,33403,’Rebel Pilot (uncredited)’,2,60),(1891,1572550,’General McQuarrie (uncredited)’,0,61),(1891,1230662,’Stormtrooper / Imperial Comms Officer / Rebel Soldier (uncredited)’,0,62),(1891,1229106,’Wampa (uncredited)’,2,63),(1891,382960,'(voice, uncredited)’,2,64),(1891,4515,’Echo Base Trooper (uncredited)’,2,65),(1891,185986,’Hoth Rebel Commander (uncredited)’,2,66),(1891,1729657,’Stormtrooper/Snowtrooper’,0,67),(1891,1415957,’Stormtrooper/Snowtrooper’,0,68),(1891,1729659,’Stormtrooper/Snowtrooper’,0,69),(1891,107700,’Stormtrooper/Snowtrooper’,0,70),(1891,1424954,’Stormtrooper/Snowtrooper’,0,71),(1891,1301161,’Stormtrooper/Snowtrooper’,0,72),(1891,1729660,’Stormtrooper/Snowtrooper’,0,73),(1891,1276151,’Stormtrooper/Snowtrooper’,0,74),(1891,1461737,’Stormtrooper/Snowtrooper’,0,75),(1891,1729661,’Stormtrooper/Snowtrooper’,0,76),(1891,1729662,’Wampa’,0,77),(1891,1302657,’Dengar’,0,78),(9737,2888,’Detective Mike Lowrey’,2,0),(9737,78029,’Detective Marcus Burnett’,2,1),(9737,4939,’Julie Mott’,1,2),(9737,10698,’Fouchet’,2,3),(9737,532,’Captain C. Howard’,2,4),(9737,19838,’Captain Allison Sinclair’,1,5),(9737,11486,’Jojo’,2,6),(9737,4604,’Theresa Burnett’,1,7),(9737,3711,’Francine’,1,8),(9737,14331,’Detective Sanchez’,2,9),(9737,18472,’Elliot’,2,10),(9737,17413,’Detective Ruiz’,2,11),(9737,56691,’Chet’,2,12),(9737,147782,’Ferguson’,0,13),(9737,9275,’Casper’,2,14),(9737,146406,’Andy’,2,15),(9737,137416,’Eddie Dominguez’,0,16),(9737,147783,’Kuni’,0,17),(9737,119869,’Fletcher’,2,18),(9737,9313,’Girl Decoy’,1,19),(9737,6908,’Noah Trafficante’,2,20),(9737,147786,’Maxie Logan’,1,21),(9737,147787,’Lois Fields’,0,22),(9737,147789,’Wally’,0,23),(9737,139360,’Officer Bill O\’Fee’,0,24),(9737,147790,’Megan Burnett’,0,25),(9737,77079,’James Burnett’,0,26),(9737,147791,’Quincy Burnett’,0,27),(9737,87360,’Car thief’,2,28),(9737,147788,’Women at the box training’,1,29),(9737,147784,’Policeman’,0,30),(9737,1217941,’Policeman’,0,31),(9532,50398,’Alex Chance Browning’,2,0),(9532,17303,’Clear Rivers’,1,1),(9532,43442,’Carter Horton’,2,2),(9532,19384,’William Bludworth’,2,3),(9532,57599,’Billy Hitchcock’,2,4),(9532,58392,’Valerie Lewton’,1,5),(9532,86397,’Tod Waggner’,2,6),(9532,19275,’Terry Chaney’,1,7),(9532,72440,’George Waggner’,2,8),(9532,43774,’Agent Weine’,2,9),(9532,40377,’Agent Schreck’,2,10),(9532,81802,’Christa Marsh’,1,11),(9532,963962,’Howard Seigel’,2,12),(2787,12835,’Richard B. Riddick’,2,0),(2787,8329,’Carolyn Fry’,1,1),(2787,6614,’William J. Johns’,2,2),(2787,28099,’Paris P. Ogilvie’,2,3),(2787,26054,’Shazza’,1,4),(2787,65827,’Abu Imam al-Walid’,2,5),(2787,28098,’Jack / Jackie’,0,6),(2787,1235730,’John \’Zeke\’ Ezekiel’,2,7),(2787,28100,’Greg Owens’,2,8),(2787,230602,’Suleiman’,0,9),(2787,1357177,’Hassan’,0,10),(2787,56450,’Ali’,2,11),(2787,1357178,’Total Stranger’,0,12),(2787,1357179,’Captain Tom Mitchell’,0,13),(2787,1357180,’Dead Crew Member’,0,14),(580,8607,’Ellen Brody’,1,0),(580,16213,’Michael Brody’,2,1),(580,16214,’Jake’,2,2),(580,3895,’Hoagie Newcombe’,2,3),(580,16215,’Carla Brody’,1,4),(580,16216,’Thea Brody’,1,5),(580,16217,’Louisa’,1,6),(580,16218,’Sean Brody’,0,7),(580,8612,’Young Sean Brody’,2,8),(580,16219,’Clarence’,0,9),(580,16220,’William’,0,10),(580,16214,’Mr. Witherspoon’,2,11),(580,16222,’Tiffany’,0,12),(580,16223,’Polly’,0,13),(580,16224,’Mrs. Taft’,0,14),(580,135650,’Mr. Witherspoon’,0,15),(580,1673210,’Mayor’,0,16),(580,8613,’Mrs. Kinter’,0,17),(580,1673211,’Man in the Boat’,0,18),(580,1673212,’Mrs. Ferguson’,0,19),(580,1673213,’Jesus’,0,20),(580,1673749,’Lenny’,0,21),(580,158134,’Minister’,0,22),(580,1566081,’Tarkanian’,0,23),(580,1673750,’Romeo’,0,24),(580,1673751,’Charles Townsend’,0,25),(580,1673752,’Shirley’,1,26),(580,1673753,’Houseman’,0,27),(580,1673754,’Irma’,0,28),(580,20220,’Additional Voices (voice)’,2,29),(9819,3092,’Bessie’,1,0),(9819,5064,’Lee’,1,1),(9819,6193,’Hank’,2,2),(9819,380,’Marvin’,2,3),(9819,7668,’Marvin’,2,4),(9819,54122,’Ruth’,1,5),(9819,69301,’Charlie’,2,6),(9819,6486,’Bob’,2,7),(9819,452,’Dr. Charlotte’,1,8),(9819,38024,’Retirement Home Director’,1,9),(9819,76096,’Coral’,1,10),(9819,160332,’Lance’,2,11),(9819,1217553,’Bruno’,2,12),(9819,138240,’Janine’,1,13),(9819,1232502,’Novice’,1,14),(9819,53937,’Beauty Shop Lady’,1,15),(9819,93703,’Gas Station Guy’,0,16),(9819,160261,’Nun on Phone’,1,17),(2453,2295,’Harley Davidson’,2,0),(2453,25129,’Robert Lee Anderson / The Marlboro Man’,0,1),(2453,27008,’Virginia Slim’,1,2),(2453,24516,’Alexander’,2,3),(2453,4808,’Jimmy Jiles’,2,4),(2453,27011,’Lulu Daniels’,1,5),(2453,27012,’Thom’,2,6),(2453,3197,’Chance Wilder’,2,7),(2453,13445,’Kimiko’,1,8),(2453,64351,’Jose’,2,9),(2453,927779,’Jack Daniels’,0,10),(2453,11024,’Suzie’,1,11),(2453,157579,’Punk with Gun’,2,12),(2453,106730,’Big Indian’,2,13),(2453,20761,’David’,2,14),(2453,33713,’Guard’,2,15),(6973,2176,’Hank Deerfield’,2,0),(6973,6885,’Detective Emily Sanders’,1,1),(6973,4038,’Joan Deerfield’,1,2),(6973,3713,’Evie’,1,3),(6973,17051,’Sergeant Carnelli’,2,4),(6973,17243,’Mike Deerfield’,2,5),(6973,12261,’Lieutenant Kirklander’,2,6),(6973,16851,’Chief Buchwald’,2,7),(6973,51682,’Corporal Penning’,2,8),(6973,51683,’Specialist Gordon Bonner’,2,9),(6973,51684,’Specialist Ennis Long’,2,10),(6973,1470,’Detective Nugent’,2,12),(6973,15011,’Detective Hodge’,2,13),(6973,12852,’Arnold Bickman’,2,14),(6973,96553,’Detective Manny Nunez’,2,15),(6973,35028,’Angie’,1,16),(6973,159261,’Lt. Burke’,2,17),(6973,202949,’David Sanders’,2,18),(6973,18305,’Detective Wayne’,2,19),(6973,1450756,’Private Robert Ortiez’,0,20),(6973,101045,’Jodie’,1,21),(6973,1505345,’School Janitor’,0,22),(6973,53184,’Phone Technician’,2,23),(6973,193285,’Police Photographer’,2,24),(6973,1362974,’Iraqi Prisoner’,0,25),(6973,122282,’Captain Jim Osher’,2,26),(6973,93927,’Chicken Shack Manager’,1,27),(6973,124086,’Truck Parts Salesman’,2,28),(6973,61532,’Pussy\’s Bouncer’,0,29),(6973,1243825,’Joseph R. Millard’,0,30),(6973,105786,’Cop’,2,31),(6973,71561,’Jo Anne’,1,32),(6973,76543,’Checker Box Bartender’,2,33),(6973,79211,’Morgue Officer’,0,34),(6973,1094319,’Guard’,2,35),(6973,210056,’TD\’s Bartender’,0,36),(6973,102421,’Jo Anne\’s Husband’,0,37),(6973,1577330,’Neighbor (uncredited)’,1,38),(6973,1204218,’Cowboy (uncredited)’,0,39),(6973,1424325,’Military Nurse (uncredited)’,1,40),(6973,1114295,’Detective (uncredited)’,0,41),(6973,1649292,’Morgue Tech (uncredited)’,2,42),(3021,3036,’Mike Enslin’,2,0),(3021,2231,’Gerald Olin’,2,1),(3021,1980,’Lilly Enslin’,1,3),(3021,29612,’Katie’,1,4),(3021,4252,’Sam Farrell’,2,5),(3021,29613,’Young Woman at Bookstore’,1,6),(3021,29614,’Secretary’,1,7),(3021,29615,’Bellboy’,2,8),(3021,29616,’Clay’,2,9),(3021,29617,’Mr. Innkeeper’,2,10),(3021,192933,’Mrs. Innkeeper’,1,11),(3021,60573,’Taxi Cab Driver’,2,12),(3021,1781739,’Bookstore Cashier’,0,13),(3021,933883,’Man #1 at Bookstore’,2,14),(3021,1781740,’Man #2 at Bookstore’,0,15),(3021,1781741,’Lady at Bookstore’,1,16),(3021,101017,’Surfer Dude’,2,17),(3021,35863,’Mailbox Guy’,2,18),(3021,96699,’Desk Clerk’,1,19),(3021,173995,’Assistant Hotel Manager’,2,20),(3021,1781747,’Maitre D\”,0,21),(3021,17490,’Hotel Engineer’,2,22),(3021,87841,’Claw Hammer Maniac’,2,23),(3021,41247,’Mike\’s Father’,2,24),(3021,123503,’Factory Owner’,0,25),(3021,38886,’1950\’s Lady’,1,26),(3021,100085,’Kevin O\’Malley’,0,27),(3021,1081074,’Mailbox Worker’,0,28),(3021,141358,’Mailbox Worker’,0,29),(3021,1766731,’Mailbox Worker’,0,30),(3021,150933,’Cop #1′,0,31),(3021,1781757,’Cop #2′,0,32),(3021,105236,’Fireman’,2,33),(3021,105595,’Priest’,2,34),(3021,1202712,’Man Outside Hotel Fire’,2,35),(3021,1781758,’Bookstore Assistant’,1,36),(3021,1246221,’Hotel Guest’,1,37),(3021,1385478,’Bellboy’,0,38),(3021,61114,’Mike Enslin\’s Ex-wife’,1,39),(3021,1781759,’Bellboy’,0,40),(957,14639,’President Skroob/Yoghurt’,2,0),(957,8872,’Dark Helmet’,2,1),(957,8984,’Lone Starr’,2,2),(957,14668,’Princess Vespa’,1,3),(957,7180,’Barfolemew \’Barf\”,2,4),(957,14669,’Colonel Sandurz’,2,5),(957,14670,’Dot Matrix (voice)’,1,6),(957,14671,’King Roland’,2,7),(957,14672,’Radar Technician’,2,8),(957,14673,’Dot Matrix’,1,9),(957,5049,’Kane’,2,10),(957,1471,’Dink #1′,2,11),(957,537,’Captain of the Guard’,2,12),(957,101653,’Dr. Schlotkin’,2,13),(957,6844,’Pizza the Hutt (voice)’,2,14),(957,14104,’Dink (voice) (uncredited)’,2,15),(957,34983,’Dink (voice) (uncredited)’,1,16),(957,35219,’Dink (voice) (uncredited)’,2,17),(957,13919,’Ape #1 (uncredited)’,2,18),(957,1538,’Prison Guard’,0,19),(957,67674,’Vinnie the Robot’,0,20),(957,81902,’Head Usher’,2,21),(957,157499,’Charlene’,1,22),(957,157498,’Marlene’,0,23),(957,115032,’Major Asshole’,0,24),(957,85210,’Prince Valium (as JM J. Bullock)’,2,25),(957,19136,’Radio Operator’,2,26),(957,5049,’John Hurt’,2,27),(251,723,’Sam Wheat’,2,0),(251,3416,’Molly Jensen’,1,1),(251,2395,’Oda Mae Brown’,1,2),(251,3417,’Carl Bruner’,2,3),(251,3418,’Subway Ghost’,2,4),(251,3422,’Oda Mae\’s Sister’,1,5),(251,17401,’Police Sgt.’,2,6),(251,3432,’Willie Lopez’,2,7),(251,3419,’Ortisha’,1,8),(251,3420,’Oda Mae\’s Sister’,1,9),(251,3424,’Rosa Santiago’,1,10),(251,3425,’Orlando’,0,11),(251,3433,’Emergency Room Ghost’,2,12),(251,3434,’Woman Ghost’,1,13),(544,6941,’Mary Jensen’,1,0),(544,7399,’Ted Stroehmann’,2,1),(544,2876,’Pat Healy’,2,2),(544,7400,’Tucker/Norman Phipps’,2,3),(544,1534,’Dom Woganowski’,2,4),(544,7401,’Magda’,1,5),(544,4175,’Sully’,2,6),(544,7402,’Sheila Jensen’,1,7),(544,65827,’Charlie Jensen’,2,8),(544,6951,’Warren Jensen’,2,9),(544,7404,’Brenda’,1,10),(544,7419,’Brett Favre’,2,11),(544,19265,’Joanie’,1,12),(544,14700,’Detective Krevoy’,2,13),(544,162924,’Detective Stabler’,2,14),(544,1542,’Dr. Zit Face / High School Pal’,2,15),(544,28633,’Psychiatrist’,2,16),(544,16846,’Hitchhiker’,2,17),(544,1580198,’TV News Reporter’,2,18),(688,5064,’Francesca Johnson’,1,0),(688,190,’Robert Kincaid’,2,1),(688,6907,’Caroline Johnson’,1,2),(688,10379,’Michael Johnson’,2,3),(688,10380,’Richard Johnson’,2,4),(688,10381,’Caroline as a young girl’,0,5),(688,10382,’Michael as a young boy’,0,6),(688,10383,’Betty’,1,7),(688,10386,’Madge’,1,8),(688,10388,’Lawyer Peterson’,0,9),(688,10389,’Lucy Redfield’,0,10),(688,1402769,’Child #1′,0,11),(783,2282,’Mahatma Gandhi’,2,0),(783,11850,’Margaret Bourke-White’,1,1),(783,9126,’General Dyer’,2,2),(783,11857,’Lord Irwin’,2,3),(783,12726,’Judge Broomfield’,2,4),(783,11849,’Kasturba Gandhi’,1,5),(783,11859,’Lord Chelmsford’,2,6),(783,8349,’Vince Walker’,2,7),(783,11854,’Reverend Charlie Andrews’,2,8),(783,693,’Pandit Nehru’,0,9),(783,11851,’Nahari’,2,10),(783,11852,’Sardar Vallabhbhai Patel’,2,11),(783,11853,’Mohammad Ali Jinnah’,0,12),(783,691,’Khan’,0,13),(783,11855,’Mirabehn’,1,14),(783,11856,’Colin’,2,15),(783,11860,’General Jan Christiaan Smuts’,2,16),(783,11861,’Zia’,2,17),(783,2344,’Dr. Herman Kallenbach’,2,18),(783,110723,’Gopal Krishna Gokhale’,0,19),(783,139444,’Ramsay MacDonald’,2,20),(783,2481,’Senior Police Officer’,2,21),(783,106612,’Principal Secretary’,2,22),(783,65851,’Advocate General’,2,23),(783,10983,’Collins’,2,24),(783,15788,’Kinnoch’,0,25),(783,71949,’G.O.C.’,2,26),(783,39741,’Sir George Hodge’,2,27),(783,47000,’Sir Edward Gait’,2,28),(783,20807,’Nathuran Godse’,2,29),(783,1095291,’Apte’,0,30),(783,86892,’Manu’,1,31),(783,583509,’Abha’,1,32),(783,10657,’Commentator’,2,33),(783,24745,’Lord Mountbatten’,0,34),(783,86503,’J.B. Kripalani’,0,35),(783,75790,’Porter’,2,36),(783,186070,’European Passenger’,0,37),(783,16758,’Conductor’,2,38),(783,1229376,’Baker’,0,39),(783,86784,’Tyeb Mohammed’,2,40),(783,7194,’Police Sergeant’,2,41),(783,116123,’Reporter’,2,42),(783,1215909,’Ayah’,0,43),(783,82805,’Youth’,0,44),(783,96585,’Youth’,2,45),(783,79356,’Colin\’s Mother’,1,46),(783,150012,’Tyeb Mohammed\’s Friend’,2,47),(783,184881,’Manager of the Mine’,2,48),(783,141550,’Clergyman’,0,49),(783,1217115,’Young Englishman’,0,50),(783,18769,’Older Englishman’,0,51),(783,1402504,’Traveller on Train Roof’,0,52),(783,1009518,’Traveller on Train Roof’,0,53),(783,62231,’Cavalry Troop Leader’,2,54),(783,1032611,’Nehru\’s Friend’,2,55),(783,16274,’Subaltern’,2,56),(783,1369,’Sergeant Putnam’,2,57),(783,629235,’Villager’,2,58),(783,1222026,’Wicket-Keeper’,0,60),(783,1220074,’Major’,0,61),(783,91663,’Magistrate’,2,62),(783,1492649,’Clerk’,2,63),(783,1137340,’Young Man’,0,64),(783,33109,’Brigadier’,2,65),(783,1113723,’Indian Barrister’,0,67),(783,87300,’Police Superintendant’,0,68),(783,40964,’Clerk of Court’,2,69),(783,1408055,’Court Reporter’,0,70),(783,1075445,’Court Reporter’,0,71),(783,10174,’General Edgar’,2,72),(783,93169,’Brigadier’,2,73),(783,87549,’Pyarelal’,2,74),(783,1230626,’Subaltern’,2,75),(783,27823,’Police Officer’,2,76),(783,1408057,’Colonel’,0,77),(783,219736,’Adjutant’,2,78),(783,7907,’American Lieutenant’,2,79),(783,1211845,’Major at Aga Khan Palace’,2,80),(783,992743,’Hindu Youth in Calcutta Street’,0,81),(783,992727,’Hindu Youth in Calcutta Street’,0,82),(783,1409833,’Suhrawardy’,0,83),(783,1036285,’Goonda’,0,84),(783,1120236,’Goonda’,0,85),(783,1271092,’Radio Reporter at Funeral (uncredited)’,2,86),(783,222269,’Police Commissioner’,0,87),(783,21431,’Daniels’,2,88),(783,1246733,’Doctor at Aga Khan Palace’,0,89),(783,139765,’Lord Hunter’,0,90),(783,1271131,’Man in the Crowd (uncredited)’,0,91),(783,134440,’Batsman’,0,92),(783,153196,’Government Advocate’,2,93),(1642,18277,’Angela Bennett/Ruth Marx’,1,0),(1642,18325,’Jack Devlin’,2,1),(1642,18326,’Dr. Alan Champion’,2,2),(1642,18327,’Ruth Marx’,1,3),(1642,18328,’Michael Bergstrom’,2,4),(1642,6930,’Mrs. Bennett’,0,5),(1642,1472,’Dale Hessman’,2,6),(1642,553720,’WNN Anchor’,0,7),(1642,29051,’Public Defender’,1,8),(1642,15251,’Ben Phillips’,2,9),(1642,196493,’Nurse #1′,0,10),(1642,78498,’Mexican Doctor’,2,12),(1642,44827,’Stan Whiteman’,2,13),(1642,75923,’Cop’,0,14),(1642,16487,’Cop’,2,15),(1642,156788,’Nurse #2′,0,16),(1642,182347,’Russ Melbourne’,0,17),(1642,543390,’Jeff Gregg’,2,18),(1642,92110,’Elevator Woman’,1,19),(1642,103804,’Trooper’,2,20),(1642,55965,’Trooper’,2,21),(1642,155973,’Remote Reporter’,0,22),(1642,157488,’Thief’,2,23),(1642,168881,’Mexican Nun’,1,24),(1642,193126,’FedEx man’,2,25),(1642,1077891,’Embassy Worker’,0,26),(1642,1077892,’Computer Nerd’,0,27),(1642,1077893,’Shuttle Driver’,0,28),(1642,1077894,’Desk Sergeant’,0,29),(1642,207419,’Compuer Technician’,0,30),(1642,1591225,’Dermot Conley’,2,31),(1642,1066358,”,2,32),(277,3967,’Selene’,1,0),(277,100,’Michael Corvin’,2,1),(277,3968,’Lucian’,2,2),(277,3969,’Kraven’,2,3),(277,2440,’Viktor’,2,4),(277,3970,’Singe’,2,5),(277,3971,’Erika’,1,6),(277,1119,’Kahn’,0,7),(277,3972,’Dr. Adam Lockwood’,2,8),(277,3952,’Raze’,2,9),(277,12358,’Amelia’,1,10),(277,12366,’Soren’,2,11),(277,12371,’Pierce’,2,12),(277,12372,’Taylor’,0,13),(277,1594125,’Dignitary’,0,14),(277,1545551,’Trix’,0,15),(277,1594127,’Rigel’,2,16),(277,9437,’Nathaniel’,0,17),(277,1594128,’Gunshot Girl’,1,18),(277,223774,’Death Dealer Captain’,0,19),(277,1248221,’Mason’,0,20),(277,1594130,’Sonja’,1,21),(277,1594132,’Zsuzsa’,1,22),(277,1594133,’Timea’,1,23),(277,1594131,’Wolfgang’,0,24),(277,1594134,’Michael\’s Old Girlfriend’,0,25),(277,1093158,’Candidate #1′,0,26),(277,1594129,’Candidate #2′,0,27),(277,12359,’Werewolf’,2,28),(277,173783,’Werewolf’,2,29),(277,1209257,’Female Vampire (uncredited)’,0,30),(277,1608252,’Werewolf (uncredited)’,0,31),(8999,2296,’Charles Schine’,2,0),(8999,4491,’Lucinda Harris’,1,1),(8999,1925,’LaRoche’,2,2),(8999,27755,’Deanna Schine’,1,3),(8999,56542,’Amy Schine’,1,4),(8999,336,’Dexter’,2,5),(8999,150,’Winston Boyko’,2,6),(8999,56543,’Train Conductor’,0,7),(8999,29616,’Accountant’,2,8),(8999,71010,’Eliot Firth’,0,9),(8999,57830,’Susan Davis’,1,10),(8999,16792,’Night Clerk Ray’,2,11),(8999,1212613,’Avery Price Receptionist’,1,12),(8999,81681,’Jerry the Lawyer’,2,13),(8999,41547,’Candy’,1,14),(8999,4808,’Detective Church’,2,15),(8999,18616,’Sam Griffin’,2,16),(8999,35013,’Patrol Officer’,2,17),(8999,1189227,’Real Estate Agent’,0,18),(2294,19303,’Silent Bob’,2,0),(2294,19302,’Jay’,2,1),(2294,880,’Holden McNeil/Himself’,2,2),(2294,23630,’Randal Graves’,2,3),(2294,23629,’Dante Hicks’,2,4),(2294,21596,’Justice’,1,5),(2294,13446,’Sissy’,1,6),(2294,17303,’Chrissy’,1,7),(2294,23658,’Missy’,0,8),(2294,23659,’Federal Wildlife Marshal Willenholly’,2,9),(2294,11662,’Brodie Bruce/Banky Edwards’,2,10),(2294,21624,’Sheriff’,2,11),(2294,15903,’Hitchhiker’,2,12),(2294,4,’Nun’,1,13),(2294,57599,’Brent’,2,14),(2294,12219,’Reg Hartner’,2,15),(2294,2,’Cock-Knocker’,2,16),(2294,16484,’Alyssa Jones’,1,17),(2294,56903,’Pumpkin Escobar’,2,18),(2294,5216,’Himself’,2,19),(2294,19144,’Herself’,1,20),(2294,5140,’Himself’,2,21),(2294,2632,’Chaka’,2,22),(2294,1187909,’Pizza Delivery Guy’,0,23),(2294,1892,’Himself’,2,24),(2294,576173,’Baby Silent Bob’,1,25),(2294,57907,’Himself’,2,26),(2294,12643,’The Smoking Man’,2,27),(2294,46772,’The Guy’,2,28),(2176,22290,’Ruby Baker’,1,0),(2176,2882,’Erin Glass’,1,1),(2176,1640,’Terence Glass’,2,2),(2176,6905,’Alvin Begleiter’,1,3),(2176,1907,’Nancy Ryan’,1,4),(2176,4940,’Rhett Baker’,2,5),(2176,38026,’Uncle Jack’,2,6),(2176,38085,’Dave Baker’,2,7),(2176,77003,’Whitey’,2,8),(2176,61216,’Don’,2,9),(2176,43903,’Tasha’,1,10),(2176,235848,’E.B.’,0,11),(2176,51536,’Zoe’,1,12),(2176,17355,’Mr. Kim’,2,13),(2176,87020,’Hannah’,1,14),(2176,80135,’Vice Principal’,1,15),(2176,21722,’Driving Instructor’,2,16),(2176,107462,’Deirdre’,1,17),(2176,31717,’Girl’,1,18),(1599,17881,’Albert Markovski’,2,0),(1599,4483,’Bernard’,2,1),(1599,10437,’Vivian’,1,2),(1599,9642,’Brad Stand’,2,3),(1599,13240,’Tommy Corn’,2,4),(1599,3489,’Dawn Campbell’,1,5),(1599,17882,’Caterine Vauban’,1,6),(1599,21005,’Darlene’,1,7),(1599,14721,’Marty’,0,8),(1599,5376,’Mrs. Hooten’,1,9),(1599,21006,’Cricket’,0,10),(1599,21007,’Bret’,2,11),(1599,3094,’Mrs. Silver’,1,12),(1599,6929,’Mary Jane Hutchinson’,1,13),(1599,52848,’Heather’,1,14),(1599,4029,’Mr. Silver’,2,15),(1599,5419,’Translator’,0,18),(5550,31512,’RoboCop’,2,0),(5550,44038,’Officer Anne Lewis’,1,1),(5550,44050,’Casey Wong’,2,2),(5550,44059,’Nikkos Mom’,1,3),(5550,44060,’Nikkos Dad’,2,4),(5550,10134,’Kanemitsu’,2,5),(5550,9626,’The CEO’,2,6),(5550,35244,’Otomo’,0,7),(5550,15198,’Paul McDaggett’,2,8),(5550,44063,’Eiderly Woman’,1,9),(5550,44058,’Nikko’,1,10),(5550,11367,’Fleck’,0,11),(5550,44062,’Bixby Snyder’,0,12),(5550,17401,’Coontz’,2,13),(5550,30485,’Bertha’,1,14),(5550,30615,’Sergeant Warren Reed’,2,15),(5550,60074,’Donut Jerk’,2,16),(5550,167080,’Upset Driver’,2,17),(5550,50877,’Dr. Marie Lazarus’,1,18),(5550,59822,’Rehab #1′,2,19),(5550,44042,’Johnson’,2,20),(5550,1108,’Donnelly’,2,21),(7548,85,’Rochester’,2,0),(7548,2206,’Elizabeth Barry’,1,1),(7548,6949,’Charles II’,2,2),(7548,10882,’Elizabeth Malet’,1,3),(7548,52888,’Chiffinch’,2,4),(7548,25074,’Keown’,2,5),(7548,12513,’Countess’,1,6),(7548,2441,’Etherege’,2,7),(7548,52889,’Sackville’,2,8),(7548,52890,’Alcock’,2,9),(7548,52891,’Vaughan’,2,10),(7548,52892,’Ratcliffe’,0,11),(7548,36669,’Downs’,2,12),(7548,17521,’Jane’,1,13),(7548,1709,’Harris’,2,14),(7548,52893,’Rose’,1,15),(7548,961840,’Acting Troop’,1,16),(9075,23229,’Rachel Stein / Ellis de Vries’,1,0),(9075,8197,’Ludwig Mu00fcntze’,2,1),(9075,7572,’Hans Akkermans’,0,2),(9075,39847,’Ronnie’,1,3),(9075,27627,’Gu00fcnther Franken’,2,4),(9075,73381,’Joop’,2,5),(9075,52167,’Prison Guard with Baret’,2,6),(9075,9128,’Gerben Kuipers’,2,7),(9075,7803,’General Ku00e4utner’,2,8),(9075,9130,’Notary Wim Smaal’,0,9),(9075,46460,’Van Gein’,0,10),(9075,91520,’Rob’,2,11),(9075,1331977,’Tim Kuipers’,0,12),(9075,43643,’Kees’,2,13),(9075,107204,’Theo’,2,14),(9075,1245208,’Maarten’,0,15),(9075,1331978,’Mrs. Smaal’,0,16),(9075,1691887,’Canadian Colonel’,2,17),(4566,1461,’Michael Clayton’,2,0),(4566,207,’Arthur Edens’,2,1),(4566,3063,’Karen Crowder’,1,2),(4566,2226,’Marty Bach’,2,3),(4566,38085,’Barry Grissom’,2,4),(4566,38086,’Mr. Verne’,2,5),(4566,81681,’Mr. Greer’,2,6),(4566,24305,’Mrs. Greer’,1,7),(4566,78144,’Henry Clayton’,2,8),(4566,88755,’Ivy’,1,9),(4566,52021,’Gerald’,2,10),(4566,92728,’Interviewer’,0,11),(4566,78520,’Maude’,0,12),(4566,28044,’Anna’,1,13),(4566,1472126,’Secretary’,0,14),(4566,77795,’Third Year’,1,15),(4566,92571,’Anna\’s Sister’,1,16),(4566,1207046,’Cindy Bach’,1,17),(1073,1229,’Michael Faraday’,2,0),(1073,504,’Oliver Lang’,2,1),(1073,3234,’Cheryl Lang’,1,2),(1073,15250,’Brooke Wolfe’,1,3),(1073,15251,’FBI Agent Whit Carver’,2,4),(1073,15252,’Brady Lang’,2,5),(1073,4012,’Grant Faraday’,2,6),(1073,15253,’Dr. Archer Scobee’,2,7),(1073,941147,’Nurse’,0,8),(1073,945486,’Orderly’,0,9),(1073,97391,’Troopmaster’,2,10),(1073,2277,’Delivery Man’,2,11),(1073,941607,’Phone Technician’,0,12),(1073,955762,’Hannah Lang’,1,13),(1073,950877,’Daphne Lang’,1,14),(1073,942976,’Accident Detective’,2,15),(9473,34517,’Eric Cartman / Stan Marsh’,2,0),(9473,34518,’Kyle Broflovski / Kenny McCormick’,2,1),(9473,30695,’Liane Cartman’,1,2),(9473,6542,’Chef’,2,3),(9473,1461,’Dr. Gouache’,2,4),(9473,6613,’Brooke Shields’,1,5),(9473,1213786,’Conan O\’Brien’,2,6),(9473,1445164,’Ike Broflovski’,0,8),(9473,1450712,’Ike Broflovski (voice)’,0,9),(9473,1229781,’Ike Broflovski’,0,10),(9473,1450712,’Ike Broflovski’,0,11),(9473,1229804,’Man in Theater’,0,12),(9473,1395446,’Woman in Theater (voice)’,0,13),(9473,1229787,’Bebe Stevens’,0,14),(9473,10713,’Dr. Vosknocker’,2,15),(9473,21290,’Baldwin Brothers’,0,16),(9473,936973,’Canadian Fighter Pilot’,0,17),(9473,17403,’Kenny (Unhooded)’,2,18),(9473,74147,’Winona Ryder’,1,19),(2196,15576,’Daniel’,2,0),(2196,22809,’Jane’,1,1),(2196,22810,’Howard’,2,2),(2196,1125,’Justin’,2,3),(2196,22811,’Martha’,1,4),(2196,21088,’Simon’,2,5),(2196,22969,’Sandra’,1,6),(2196,7058,’Troy’,2,7),(2196,11278,’Robert’,2,8),(2196,386,’Uncle Alfie’,2,9),(2196,10674,’The Reverend’,2,10),(2196,16480,’Victor’,2,11),(2196,22970,’Peter’,2,12),(2196,174700,’Sandra\’s Friend’,1,13),(1499,74932,’April O\’Neil’,1,0),(1499,14344,’Walker’,2,1),(1499,85500,’Lord Norinaga’,0,2),(1499,69033,’Mitsu’,0,3),(1499,78214,’Leonardo’,2,4),(1499,3034,’Donatello (voice)’,2,5),(1499,27120,’Raphael’,2,6),(1499,78213,’Donatello’,2,7),(1499,44101,’Michaelangelo’,2,8),(1499,13550,’Casey Jones / Whit’,2,9),(1499,29986,’Splinter’,2,10),(1499,1202981,’Kenshin’,0,11),(1499,103833,’Niles’,2,12),(1499,152783,’Benkei – Honor Guard #1′,0,13),(1499,1198435,’Honor Guard #2′,0,14),(1499,1356278,’Yoshi’,0,15),(1499,77157,’Michaelangelo (voice)’,2,16),(1499,16060,’Leonardo (voice)’,2,17),(1499,72864,’Raphael (voice)’,2,18),(1499,1456943,’Honor Guard #3′,0,19),(1499,1237536,’Honor Guard #4′,0,20),(1499,70947,’Grandfather’,2,21),(1499,166963,’Jailer’,0,22),(1499,145066,’Young Priest’,0,24),(1499,1456958,’Sam’,0,25),(1499,1456959,’Dave’,2,26),(1499,1456960,’Murota’,0,27),(1499,16577,’Rider’,0,28),(1499,1456961,’Blacksmith’,0,29),(1646,448,’Erin Gruwell’,1,0),(1646,349,’Steve Gruwell’,2,1),(1646,11356,’Margaret Campbell’,1,2),(1646,18352,’Scott Casey’,2,3),(1646,58961,’Andre Bryant’,2,4),(1646,18353,’Eva Benitez’,0,5),(1646,21505,’Dr. Carl Cohn’,2,6),(1646,21179,’Brian Gelford’,2,7),(1646,35232,’Miep Gies’,1,8),(1646,35236,’Ben’,2,9),(1646,35229,’Gloria Munez’,1,10),(1646,35238,’Sindy’,0,11),(1646,35239,’Alejandro Santiago’,0,12),(1646,994886,’Marcus’,2,13),(1646,35230,’Jamal Hill’,2,14),(1646,35237,’Brandy Ross’,1,15),(1646,35231,’Tito’,0,16),(1646,1700551,’Miguel’,2,17),(1646,35235,’Victoria’,0,18),(1646,35233,’Paco’,2,19),(1646,1700554,’Grant Rice’,2,20),(1646,25912,’Eva\’s Father’,0,21),(1646,22621,’Evau2019s Mother’,1,22),(1646,12218,’Principal Banning’,2,23),(1646,1700559,’Herself – Holocaust survivor’,0,24),(1646,1700560,’Himself – Holocaust Survivor’,0,25),(1646,1700561,’Herself – Holocaust Survivor’,0,26),(1646,1700562,’Herself – Holocaust Survivor’,0,27),(4108,976,’Frank Martin’,2,0),(4108,21911,’Lai’,1,1),(4108,7693,’Tarconi’,2,2),(4108,31841,’Wall Street’,2,3),(4108,11397,’Mr. Kwai’,2,4),(4108,61609,’Leader’,0,5),(4108,1090711,’Boss’,0,6),(4108,230078,’Pilot’,2,7),(4108,234702,’Little Thug’,0,8),(4108,1291809,’Giant Thug’,0,9),(4108,582861,’Young Thug’,0,10),(4108,1512784,’Tractor Trailer Driver’,0,11),(4108,151374,’Official’,0,12),(8456,55084,’Jake Tyler’,2,0),(8456,55085,’Baja Miller’,1,1),(8456,55086,’Ryan McCarthy’,2,2),(8456,938,’Jean Roqua’,2,3),(8456,55089,’Max Cooperman’,2,4),(8456,25834,’Margot Tyler’,1,5),(8456,55090,’Charlie Tyler’,2,6),(8456,55091,’Aaron’,0,7),(8456,55092,’Jenny’,1,8),(8456,1371879,’Bikini Party Girl (uncredited)’,0,9),(7341,51390,’Rachel Lang’,1,0),(7341,52474,’Jesse Ryan’,2,1),(7341,27563,’Sue Snell’,1,2),(7341,52475,’Barbara Lang’,1,3),(7341,52476,’Mark Bing’,2,4),(7341,52477,’Eric Stark’,2,5),(7341,6281,’Tracy Campbell’,0,6),(7341,52478,’Monica Jones’,1,7),(7341,37006,’Brad Winters’,2,8),(7341,52479,’Chuck Potter’,2,9),(7341,52480,’Arnie’,2,10),(7341,8211,’Lisa Parker’,1,11),(7341,42746,’Boyd Wallace’,2,12),(7341,26008,’Mr. Stark’,2,13),(7341,52481,’Sheriff Kelton’,0,14),(7341,9258,’Coach Walsh’,2,15),(7341,52482,’Emilyn Wallace’,0,16),(7341,52483,’Sheriff’,2,17),(7341,52484,’Principal’,2,18),(7341,52485,’English Teacher’,2,19),(7341,52486,’Young Rachel Lang’,0,20),(7341,52487,’Senior D.A.’,2,21),(7341,52489,’Party Girl’,0,22),(7341,52490,’Smiling Patient’,2,23),(7341,52491,’Female Vet’,1,24),(7341,52492,’Night Nurse’,1,25),(7341,52493,’Headbanging Patient’,2,26),(7341,52494,’Tuba Player’,2,27),(7341,51456,’Saleswoman’,1,28),(7341,52495,’Jesse\’s Spotter’,0,29),(7341,52496,’Fleeing Party Girl’,0,30),(7341,52497,’Gardening Girl’,0,31),(7341,52498,’Girl’,0,32),(7341,52499,’The Ref’,0,33),(7341,52501,’Fleeing Party Boy’,0,35),(7341,52502,’High School Student’,0,36),(7341,52503,’Student’,0,37),(7341,52504,’Driver’,0,38),(7341,52505,’Girl in Classroom’,1,39),(7341,52506,’Skateboard Kid’,0,40),(7341,102634,’Deputy D.A. (Karen)’,1,41),(7341,1589489,’Student (uncredited)’,2,42),(1946,10431,’Allegra Geller’,1,0),(1946,9642,’Ted Pikul’,2,1),(1946,65,’Kiri Vinokur’,2,2),(1946,5293,’Gas’,2,3),(1946,20173,’Yevgeny Nourish’,2,4),(1946,20174,’Chinese Waiter’,2,5),(1946,540,’Hugo Carlaw’,2,6),(1946,2040,’Seminar Leader’,2,7),(1946,98,’Merle’,1,8),(1946,20175,’D\’Arcy Nader’,2,9),(1946,20176,’Noel Dichter’,2,10),(1946,6623,’Male Assistant’,2,11),(1946,20177,’Female Assistant’,1,12),(1946,20178,’Landry’,2,13),(1946,20179,’Male Volunteer’,0,14),(1946,20180,’Female Volunteer’,1,15),(1946,234,’Trout Farm Worker’,2,16),(85,3,’Indy’,2,0),(85,650,’Marion Ravenwood’,1,1),(85,652,’Dr. Renu00e9 Belloq’,0,2),(85,653,’Major Arnold Toht’,2,3),(85,655,’Sallah’,2,4),(85,656,’Dr. Marcus Brody’,2,5),(85,659,’Colonel Dietrich’,2,6),(85,660,’Gobler’,2,7),(85,661,’Barranca / Monkey Man’,0,8),(85,662,’Col. Musgrove’,0,9),(85,663,’Major Eaton’,2,10),(85,658,’Satipo’,2,11),(85,55909,’Messenger Pirate’,0,12),(85,2247,’Katanga’,2,13),(85,1402694,’Bureaucrat’,0,14),(85,1402695,’Jock’,0,15),(85,1402696,’Australian Climber’,0,16),(85,134116,’2nd. Nazi’,2,17),(85,1402756,’Ratty Nepalese’,0,18),(85,1230490,’Mean Mongolian’,0,19),(85,1211876,’Mohan’,0,20),(85,10942,’Giant Sherpa / 1st Mechanic’,2,21),(85,1402807,’Otto’,0,22),(85,1231662,’Imam’,2,23),(85,1220322,’Omar’,0,24),(85,5531,’Abu’,2,25),(85,1402821,’Fayah’,0,26),(85,1229106,’Arab Swordsman’,2,27),(85,1402823,’German Agent’,0,28),(85,664,’Pilot’,2,29),(85,1402828,’Young Soldier’,0,30),(85,145876,’Sergeant’,0,31),(85,24714,’Tall Captain’,0,32),(85,8591,’Peruvian Porter’,0,33),(85,15358,’German Soldier (uncredited)’,2,34),(85,53587,’German Soldier (uncredited)’,2,35),(85,7024,’German Soldier (uncredited)’,2,36),(85,1469629,’German Soldier (uncredited)’,0,37),(85,1401306,’German Soldier (uncredited)’,0,38),(85,40740,’German Soldier (uncredited)’,2,39),(85,1271078,’German Lieutenant (uncredited)’,0,40),(85,202402,’German (uncredited)’,2,41),(85,1473724,’Archivist (uncredited)’,0,42),(85,1608123,’Gobler\’s Gunner (uncredited)’,2,43),(85,19567,’Driver of German Truck (uncredited)’,0,44),(85,589874,’Driver of German Truck (uncredited)’,0,45),(85,3993,’Nazi Spy on the Airplane (uncredited)’,2,46),(85,9974,’Flying Wing Mechanic (uncredited)’,0,47),(85,70417,’U-Boat Captain (uncredited)’,2,48),(85,15831,’Special Vocal Effects (voice) (uncredited)’,2,49),(772,11510,’Kevin’,2,0),(772,4517,’Harry Lime’,2,1),(772,11514,’Kate McCallister’,0,2),(772,11511,’Marv Merchants’,2,3),(772,11512,’Peter McCallister’,2,4),(772,11516,’Buzz McCallister’,2,5),(772,11518,’Megan McCallister’,0,6),(772,11517,’Uncle Frank McCallister’,2,7),(772,11522,’Rod McCallister’,0,8),(772,18793,’Fuller McCallister’,0,9),(772,13472,’Mr. Hector, Hotel Concierge’,2,10),(772,115457,’E.F. Duncan’,2,11),(772,60949,’Bellman’,2,12),(772,945734,’Jeff McCallister’,2,13),(772,1244120,’Gangster’,2,14),(772,953505,’Bead Necklace Vendor’,0,15),(772,33663,’Himself’,2,16),(772,18345,’The Pigeon Lady’,1,17),(840,3037,’Roy Neary’,2,0),(840,1650,’Claude Lacombe’,0,1),(840,8437,’Ronnie Neary’,1,2),(840,4778,’Jillian Guiler’,1,3),(840,12438,’David Laughlin’,2,4),(840,12439,’Project Leader’,2,5),(840,12440,’Wild Bill’,2,6),(840,66645,’Barry Guiler’,0,7),(840,12443,’Toby Neary’,2,8),(840,2714,’Robert’,2,9),(840,12444,’Team Leader’,0,10),(840,12428,’Implantee’,1,11),(840,12424,’Ike’,2,12),(840,1101,’Military Policeman’,0,13),(840,24319,’Norman Bartold’,2,14),(840,152911,’ARP Project Member’,2,15),(840,12678,’Returnee #2 Flt. 19′,0,16),(840,1204280,’ARP Musician’,0,17),(840,12677,’Returnee #3 Flt. 19′,2,18),(840,208579,’Air Traffic Controller’,0,19),(840,1177596,’Hawker’,0,20),(840,1072934,’Federale’,0,21),(840,1151582,’Federale’,0,22),(840,85870,’Federale’,2,23),(840,166149,’Special Forces’,0,24),(840,85869,’Special Forces’,2,25),(840,160483,’Dirty Tricks #3′,2,26),(840,1204294,’Special Forces Commander / Helicopter Pilot (uncredited)’,0,27),(840,91369,’Longly (uncredited)’,2,28),(840,1204295,’UN Observer (uncredited)’,0,29),(840,1069,’Major Benchley’,0,30),(840,12427,’Implantee’,2,31),(840,66288,’Farmer’,2,32),(840,14792,’Larry Butler’,2,33),(840,39774,’Air Traffic’,2,34),(840,1739,’Radio Telescope Team’,2,35),(840,1204293,’Himself – Smoking Pipe at Landing Site (uncredited)’,0,36),(840,115768,’Howard K. Smith (uncredited)’,2,37),(840,12442,’Sylvia Neary’,0,38),(840,12441,’Jean Claude’,2,39),(840,1031236,’Brad Neary’,0,40),(840,1031237,’Mrs. Harris’,0,41),(840,1204277,’Himself’,0,42),(840,1204279,’Highway Patrolman’,0,43),(840,1122770,’Returnee #1 Flt. 19′,0,44),(840,100144,’Air Traffic Controller’,0,45),(840,163330,’Air Traffic’,2,46),(840,1204285,’Air East Pilot’,0,47),(840,1204286,’Federale’,2,48),(840,994737,’Radio Telescope Team’,2,49),(840,1204287,’Radio Telescope Team’,0,50),(840,939624,’Radio Telescope Team’,0,51),(840,1204288,’Truck Dispatcher’,0,52),(840,959815,’Load Dispatcher’,2,53),(840,98877,’Support Leader’,0,54),(840,1030924,’Dirty Tricks #1′,2,55),(840,1204291,’Dirty Tricks #4′,0,56),(840,152729,’Dirty Tricks #2′,0,57),(840,1204292,’Scientist (uncredited)’,2,58),(9682,40462,’Mattie’,1,0),(9682,19211,’Dexter’,2,1),(9682,37936,’Isabelle Fuentes’,1,2),(9682,53184,’Stone’,2,3),(9682,17243,’Josh’,2,4),(9682,58507,’Tim’,2,5),(9682,6944,’Landlady’,1,6),(9682,12122,’Dr. Waterson’,2,7),(9682,58508,’Dark Figure’,2,8),(9682,58509,’Douglas Zieglar’,2,9),(9682,7471,’Professor Cardiff’,2,10),(9682,453,’Janelle’,1,11),(9682,58510,’Newscaster’,2,12),(9682,23493,’Phantom’,2,13),(9682,58512,’Male Newscaster #2′,2,14),(96,776,’Det. Axel Foley’,2,0),(96,777,’Det. William \’Billy\’ Rosewood’,2,1),(96,778,’Det. Sgt. John Taggart’,2,2),(96,780,’Capt./Chief Andrew Bogomil’,2,3),(96,781,’Det. Jeffrey Friedman’,2,4),(96,787,’Insp. Douglas Todd’,2,5),(96,921,’Karla Fry’,1,6),(96,923,’Charles \’Chip\’ Cain’,2,7),(96,920,’Maxwell Dent’,2,8),(96,922,’Police Chief Harold Lutz’,2,9),(96,925,’Nikos Thomopolis’,2,10),(96,25626,’Mayor Egan’,2,11),(96,2632,’Playboy Mansion Valet’,2,12),(96,15832,’Sidney Bernstein’,2,13),(96,101279,’Biddle’,0,14),(96,1590786,’Jan Bogomil’,0,15),(96,87479,’May’,2,16),(96,95428,’Stripper’,0,17),(96,1379424,’Maitre d\’ at 385′,2,18),(96,8396,’Orvis’,2,19),(96,928,’Playboy Playmate’,0,20),(96,175055,’Playboy Playmate’,1,21),(96,31309,’Himself’,2,22),(96,1416801,’Herself’,0,23),(96,106798,’Stripper’,0,24),(96,926,’Playboy Playmate’,1,25),(96,122076,’Barkeep’,0,26),(274,1038,’Clarice Starling’,1,0),(274,4173,’Hannibal Lecter’,2,1),(274,349,’Jack Crawford’,2,2),(274,15854,’Jame \’Buffalo Bill\’ Gumb’,2,3),(274,16293,’Dr. Frederick Chilton’,2,4),(274,31649,’Catherine Martin’,1,5),(274,6930,’Senator Ruth Martin’,0,6),(274,51864,’Ardelia Mapp’,1,7),(274,13936,’Barney Matthews’,2,8),(274,3801,’Lamar’,2,9),(274,16119,’Lt. Boyle’,2,10),(274,183640,’Sgt. Tate’,2,11),(274,1280997,’Sgt. Pembry’,0,12),(274,76470,’Roden’,2,13),(274,138988,’Pilcher’,2,14),(274,32592,’Paul Krendler’,2,15),(274,102429,’FBI Director Hayden Burke’,2,16),(274,1280985,’FBI Instructor’,0,17),(274,192268,’Agent Burroughs’,0,18),(274,31118,’Friendly Psychopath’,0,19),(274,1280986,’Brooding Psychopath’,0,20),(274,94435,’Miggs’,0,21),(274,1280987,’Young Clarice’,0,22),(274,1280988,’Clarice\’s Father’,0,23),(274,68927,’Mr. Lang’,0,24),(274,68926,’Mr. Lang\’s Driver’,0,25),(274,1280989,’TV Evangelist’,0,26),(274,1280990,’Boxing Instructor’,0,27),(274,174914,’Mr. Brigham’,2,28),(274,102805,’Agent Terry’,0,29),(274,152638,’Oscar’,2,30),(274,1174793,’Sheriff Perkins’,0,31),(274,16298,’Dr. Akin’,2,32),(274,1280991,’Precious (as Darla)’,0,33),(274,1041787,’TV Anchor Woman’,1,34),(274,52057,’TV Anchor Man’,2,35),(274,1280992,’TV Sportscaster’,0,36),(274,175082,’Sen. Martin\’s Aide’,0,37),(274,1280995,’1st Reporter’,0,38),(274,1280996,’2nd Reporter’,0,39),(274,1212913,’Officer Jacobs’,0,40),(274,7134,’Officer Murray’,2,41),(274,1111682,’Airport Flirt’,0,42),(274,15074,’Spooked Memphis Cop’,2,43),(274,552526,’Tall Memphis Cop’,2,44),(274,1280998,’Distraught Memphis Cop’,0,45),(274,6591,’SWAT Commander’,2,46),(274,1473,’SWAT Communicator’,2,47),(274,1219514,’SWAT Shooter’,0,48),(274,1280999,’EMS Attendant’,0,49),(274,59329,’EMS Driver’,0,50),(274,127738,’Mr. Bimmel’,2,51),(274,1281000,’Stacy Hubka’,0,52),(274,1447788,’Young Clarice’,0,53),(274,1281001,’Flower Delivery Man’,0,54),(274,102809,’State Trooper (uncredited)’,0,55),(274,97902,’FBI Agent (uncredited)’,2,56),(274,14999,’FBI Agent in Memphis (uncredited)’,2,57),(274,1098036,’Orderly (uncredited)’,2,58),(8872,12073,’Wayne Campbell’,2,0),(8872,56159,’Garth Algar’,2,1),(8872,2879,’Benjamin Kane’,2,2),(8872,13445,’Cassandra’,1,3),(8872,6684,’Stacy’,1,4),(8872,58198,’Security Guard’,2,5),(8872,1535,’Noah Vanderhoff’,2,6),(8872,55557,’Alan’,2,7),(8872,56933,’Dreamwoman’,0,8),(8872,7470,’Tiny’,2,9),(8872,418,’Bad Cop / T-1000′,2,10),(8872,35824,’Himself’,2,11),(8872,18977,’Glen’,2,12),(8872,13023,’Mrs. Vanderhoff’,1,13),(8872,6906,’Terry’,2,14),(8872,29685,’Russell Finley’,2,15),(8872,15105,’Davy’,2,16),(8872,1237599,’Ron Paxton’,0,17),(579,6355,’Police Chief Martin Brody’,2,0),(579,8607,’Ellen Brody’,1,1),(579,8608,’Mayor Larry Vaughn’,0,2),(579,6769,’Len Peterson’,2,3),(579,8609,’Deputy Jeff Hendricks’,2,4),(579,8497,’Dr. Lureen Elkins’,1,5),(579,16197,’Tina Wilcox’,1,6),(579,16198,’Michael \’Mike\’ Brody’,2,7),(579,16199,’Tom Andrews’,2,8),(579,16200,’Grace Witherspoon’,1,9),(579,14552,’Andy Nicholas’,2,10),(579,16201,’Jackie Peters’,1,11),(579,16202,’Eddie Marchand’,2,12),(579,16203,’Paul \’Polo\’ Loman’,2,13),(579,16204,’Timmy Weldon’,0,14),(579,33054,’Doug Fetterman’,0,15),(579,103957,’Larry Vaughn Jr.’,2,16),(579,44688,’Sean Brody’,0,17),(579,168423,’Bob’,2,18),(579,1766138,’Marge’,1,19),(1584,70851,’Dewey Finn’,2,0),(1584,3234,’Rosalie Mullins’,1,1),(1584,17735,’Ned Schneebly’,2,2),(1584,7404,’Patty Di Marco’,1,3),(1584,17736,’Theo’,2,4),(1584,17737,’Neil’,0,5),(1584,17738,’Doug’,0,6),(1584,17739,’Zack Mooneyham’,2,7),(1584,17740,’Spider’,0,8),(1584,17741,’Michelle’,1,9),(1584,17742,’Eleni’,1,10),(1584,17743,’Summer Hathaway’,1,11),(1584,17744,’Freddy Jones’,0,12),(1584,17745,’Lawrence’,2,13),(1584,17746,’Tomika’,1,14),(1584,17747,’Frankie’,2,15),(1584,1583104,’Marta’,1,16),(1584,65930,’Leonard’,0,17),(1584,1583105,’Billy’,0,18),(1584,1583106,’Marco’,0,19),(1584,64064,’Alicia’,1,20),(1584,1481236,’Gordon’,0,21),(1584,1583107,’Katie’,0,22),(1584,1583108,’Emily’,1,23),(1584,80622,’Tomika\’s Mother’,1,24),(1584,1468809,’Musician’,0,25),(1584,1558984,’Musician’,0,26),(1584,1583109,’Mrs. Sheinkopf’,1,27),(1584,21154,’Mr. Green’,2,28),(1584,54348,’Mrs. Lemmons’,1,29),(1584,170392,’Gym Teacher’,0,30),(1584,33835,’Zack\’s Father’,0,31),(1584,1583110,’Art Student’,0,32),(1584,1583111,’Max’,0,33),(1584,18070,’Razor’,2,34),(1584,1583112,’Tony’,0,35),(1584,52996,’Sheila’,1,36),(1584,109114,’Waiter’,0,37),(1584,1583114,’Punk Rock Guy’,0,38),(1584,141748,’Alicia\’s Mother’,1,39),(1584,170384,’Leonard\’s Mother’,1,40),(1584,1583117,’Concerned Father’,0,41),(1584,171673,’Freddy\’s Mother’,1,42),(1584,220038,’Summer\’s Mother’,1,43),(1584,1525270,’Lawrence\’s Father’,2,44),(1584,163669,’Cop’,0,45),(1584,81557,’Bus Driver’,2,46),(1584,12110,’Mrs. Haynish’,1,47),(1584,1583123,’Teacher\’s Assistant’,1,48),(1584,204249,’Female Employee’,1,49),(1584,1583124,’Concert Goer’,1,50),(1584,1583125,’Security Guard’,0,51),(1584,1583126,’Radio Exec’,0,52),(1584,1583128,’Radio DJ’,0,53),(1584,1583130,’Toby’,0,54),(1584,11805,’Battle of the Bands Director’,2,55),(1584,221,’Concert Goer’,1,56),(1584,1790809,’Groupie’,1,57),(1584,1790810,’Concert Goer’,1,58),(1584,1375766,’Concert Goer’,1,59),(1584,1784954,’Leonard\’s Dad’,0,60),(1584,1790812,’Crazed Fan’,0,61),(1584,1790813,’Concert Goer’,1,62),(1584,1790815,’Billy\’s Mom’,1,63),(1584,1647727,’Blood Brothers MC Biker’,2,64),(1584,1790816,’Student’,1,65),(1584,1790817,’Concert Goer’,0,66),(1584,1790818,’Student’,1,67),(1584,1781727,’Groupie’,1,68),(1584,1790819,’No Vaccancy\’s Biggest Fan’,0,69),(1584,954650,’Concert Goer’,2,70),(1584,1790820,’Concert Goer’,1,71),(1584,1114103,’Guy in Crowd Who Catches Dewey’,0,72),(1584,1790823,’Concert Goer’,0,73),(1584,1737865,’Concert Goer’,0,74),(9312,38559,’Lord Rayden’,2,0),(9312,57250,’Liu Kang’,0,1),(9312,57251,’Johnny Cage’,2,2),(9312,11398,’Shang Tsung’,2,3),(9312,20751,’Sonya Blade’,0,4),(9312,10680,’Princess Kitana’,1,5),(9312,57252,’Kano’,2,6),(9312,57253,’Scorpion’,2,7),(9312,57254,’Sub-Zero’,0,8),(9312,57255,’Reptile’,2,9),(9312,57256,’Scorpion (Voice)’,0,10),(8326,10205,’Warden Walker’,1,0),(8326,10127,’Marion Sevillo’,2,1),(8326,1462,’Dr. Pendanski’,2,2),(8326,4687,’Miss Kathryn Barlow’,1,3),(8326,10959,’Stanley Yelnats/Caveman’,2,4),(8326,54495,’Hector Zeroni’,2,5),(8326,54496,’Squid’,2,6),(8326,54497,’Armpit’,2,7),(8326,54498,’X-Ray’,2,8),(8326,70243,’Madame Zeroni’,1,9),(8326,6751,’Stanley\’s Mother’,1,10),(8326,52939,’Zigzag’,2,11),(8326,1534739,’Twitch’,0,12),(8326,987572,’Barfbag’,2,13),(8326,163438,’Lump’,2,14),(8326,1025090,’Bus Driver / Kissed Stage Coach Driver’,2,15),(8326,21366,’Carla Morengo’,1,16),(8326,12889,’Asst. Attorney General’,2,17),(8326,63935,’Texas Ranger #1′,2,18),(8326,1534740,’Texas Ranger #2′,0,19),(8326,1534741,’Young Warden’,0,20),(8326,31903,’Stanley\’s Father’,2,21),(8326,111667,’Elya Yelnats’,0,22),(162,85,’Edward Scissorhands’,2,0),(162,1920,’Kim Boggs’,1,1),(162,1902,’Peg’,1,2),(162,1903,’Bill’,2,3),(162,1904,’Jim’,2,4),(162,1905,’The Inventor’,2,5),(162,1907,’Joyce’,1,6),(162,1908,’Kevin’,2,7),(162,1909,’Helen’,1,8),(162,1910,’Marge’,1,9),(162,1911,’Officer Allen’,2,10),(162,1912,’Esmeralda’,1,11),(162,1913,’Tinka’,1,12),(162,1914,’Cissy’,0,13),(162,1915,’Host TV’,2,14),(162,1916,’George’,2,15),(162,181154,’Blonde / TV’,1,16),(162,124131,’Loan Officer’,2,17),(162,29934,’Reporter’,2,18),(162,6908,’Reporter’,2,19),(162,4596,’Retired Man’,0,20),(162,32593,’Dishwasher Man’,2,21),(162,1425156,’Granddaughter’,0,22),(162,140237,’Psychologist’,2,23),(162,98611,’Editor’,2,24),(162,1766817,’Neighborhood Extra’,0,25),(162,82602,’Neighborhood Extra (uncredited)’,2,26),(162,1532886,’Van Friend (uncredited)’,0,27),(1051,193,’Det. Jimmy Popeye Doyle’,2,0),(1051,14821,’Alain Charnier’,2,1),(1051,6355,’Det. Buddy Cloudy Russo’,2,2),(1051,15183,’Salvatora Sal Boca’,2,3),(1051,15184,’Pierre Nicoli’,2,4),(1051,15185,’Henri Devereaux’,0,5),(1051,15186,’Bill Mulderig’,2,6),(1051,15187,’Joel Weinstock’,2,7),(1051,15188,’Angie Boca’,1,8),(1051,152680,’Simonson’,2,9),(1051,1233541,’Klein’,0,10),(8968,25933,’Kate Houghton’,1,0),(8968,47368,’Tim’,2,1),(8968,20815,’Franny Roberts’,1,2),(8968,20584,’Tim\’s Mother’,1,3),(8968,56436,’Jessica’,0,4),(8968,941439,’Terrified Girl’,1,5),(8968,60369,’Young Tim’,2,6),(8968,173538,’Boogeyman’,0,7),(8968,76835,’Co-Worker’,2,8),(8968,125938,’Dr. Matheson’,1,9),(8968,180359,’Tim\’s Father’,2,11),(8968,54814,’Uncle Mike’,0,12),(8968,1425644,’Pam’,0,13),(8968,1182667,’Jessica\’s Dad’,2,14),(8968,132670,’Jessica\’s Mom’,1,15),(8968,1019934,’Jessica\’s Grandma’,0,16),(8968,1811168,’Jessica\’s Sister’,0,17),(9963,18277,’Linda Hanson’,1,0),(9963,20402,’Jim Hanson’,2,1),(9963,58412,’Bridgette Hanson’,0,2),(9963,9781,’Annie’,1,3),(9963,61098,’Megan Hanson’,1,4),(9963,18794,’Joanne’,1,5),(9963,6908,’Sheriff Reilly’,2,6),(9963,52885,’Funeral Attendant’,2,7),(9963,61099,’Mrs. Quinn’,0,8),(9963,61100,’Funeral Attendant’,0,9),(9963,38425,’Claire’,1,10),(9963,53,’Dr. Roth’,2,11),(9963,20496,’Emergency Room Doctor’,0,12),(9963,61102,’School Aide’,1,14),(9963,61103,’Receptionist’,0,15),(9963,61105,’Nurse’,0,16),(9963,7220,’Doug Caruthers’,2,17),(9963,61106,’Doctor\’s Assistant’,0,18),(9963,16460,’Bob’,2,19),(9963,180355,’Young Priest’,2,20),(9760,53493,’Edward’,2,0),(9760,58952,’Peter’,2,1),(9760,38334,’White Bitch’,1,2),(9760,34195,’Lucy’,1,3),(9760,58953,’Susan’,1,4),(9760,1064,’Willy’,2,5),(9760,19754,’Bink’,2,6),(9760,57410,’Mr. Tumnus’,0,7),(9760,58954,’Captain Jack Swallows’,2,8),(9760,28639,’Mystique’,1,9),(9760,20753,’Aslo’,2,10),(9760,141,’Museum Curator’,2,11),(9760,58955,’Harry Potter’,2,12),(9760,58956,’Ron’,0,13),(9760,58957,’Hermoine’,1,14),(9760,180408,’Singing Pirate Girl’,1,15),(9760,138970,’Jogging Girl’,0,16),(9760,1586675,’Cribs Faun’,1,17),(1975,11863,’Karen Davis’,1,0),(1975,20354,’Aubrey Davis’,1,1),(1975,20372,’Eason’,0,2),(1975,20373,’Allison’,1,3),(1975,3130,’Trish’,1,4),(1975,20374,’Vanessa Cassidy’,1,5),(1975,20375,’Miyuki’,1,6),(1975,20376,’Lacey’,1,7),(1975,20377,’Jake’,2,8),(1975,20329,’Kayako Saeki’,1,9),(1975,20378,’Toshio Saeki’,0,10),(1975,593,’Mrs. Davis’,1,11),(1975,20379,’Bill’,2,12),(1975,20380,’John Fleming’,2,13),(1975,20381,’Sally’,1,14),(1975,23706,’School Counselor’,1,15),(1975,4994,’Detective Nakagawa’,2,16),(1975,65772,’Michael’,2,17),(1975,20380,’Mr. Fleming’,2,18),(1975,1507856,’Mrs. Fleming’,0,19),(1975,216330,’Takeo’,2,20),(1649,6384,’Ted Logan’,2,0),(1649,18355,’Bill S. Preston’,2,1),(1649,15903,’Rufus’,2,2),(1649,6573,’Grim Reaper’,2,3),(1649,14324,’De Nomolos’,2,4),(1649,2230,’Ms. Wardroe’,1,5),(1649,18386,’Missy’,1,6),(1649,549532,’Sir James Martin’,2,7),(1649,14801,’Captain Logan’,2,8),(1649,192492,’Elizabeth’,0,9),(1649,5601,’Joanna’,1,10),(1649,10486,’Colonel Oats’,2,11),(1649,94511,’Gatekeeper’,2,12),(1649,183972,’Ria Paschelle’,0,14),(1649,12888,’Deputy James’,2,15),(1649,12439,’Mr. Preston’,2,16),(1649,11898,’1st Seance Member’,0,17),(1649,154022,’3rd Seance Member’,1,18),(1649,18382,’\’Ugly\’ Seance Member’,2,19),(1649,963707,’Young Ted’,2,20),(1649,560020,’Young Bill’,0,21),(1649,1471,’Station’,2,22),(1649,81416,’Station’,2,23),(1649,157543,’Big Station’,2,24),(1649,1078906,’Heavenly Greeter’,0,25),(1649,1078907,’Albert Einstein’,0,26),(1649,1078908,’Benjamin Franklin’,0,27),(1649,57392,’Good Robot Bill’,0,28),(1649,1078909,’Good Robot Ted’,0,29),(1649,152628,’George Washington Carver’,2,30),(1649,70947,’Confucius’,2,31),(1649,1748,’Captain James Tiberius Kirk (archive footage)’,2,32),(1649,125845,’Bach’,2,34),(9895,2157,’Tom Dobbs’,2,0),(9895,4690,’Jack Menken’,2,1),(9895,350,’Eleanor Green’,1,2),(9895,59258,’Eddie Langston’,2,3),(9895,4785,’Stewart’,2,4),(9895,56323,’Herself’,1,5),(9895,60090,’Moderator’,1,6),(9895,60089,’Danny’,2,7),(9895,56322,’Herself’,1,8),(9895,60092,’News Anchor #1′,2,9),(9895,60093,’Political Commentator #1′,2,10),(9895,60091,’Mathias’,2,11),(9895,3720,’Hemmings’,2,12),(9895,60095,’Alison McAndrews’,1,13),(9895,60094,’Political Commentator #2′,1,14),(9895,14893,’Jenny Adams’,1,15),(9895,1529,’President Kellogg’,2,16),(9895,54791,’Senator Mills’,2,17),(9895,29878,’Eckhart’,2,18),(9895,60096,’Grimaldi’,2,19),(9895,135441,’Young Guy’,2,20),(9895,6071,’Donald Tilson’,2,21),(9895,1176263,’Angus’,2,22),(9895,2676,’Make-Up Artist’,1,23),(9895,1212930,’Security Tech’,1,24),(9895,1461423,’Woman in Audience’,1,25),(9895,181028,’Head of Alliance’,2,26),(9895,182944,’Marjorie’,1,27),(9570,12150,’Dr. Hans Reinhardt’,2,0),(9570,7301,’Dr. Alex Durant’,2,1),(9570,5694,’Capt. Dan Holland’,2,2),(9570,58003,’Lt. Charles Pizer’,2,3),(9570,7502,’Harry Booth’,2,4),(9570,21876,’Dr. Kate McCrae’,1,5),(9570,63550,’Captain S.T.A.R.’,2,6),(9570,7505,’V.I.N.CENT (voice)’,2,7),(9570,14253,’B.O.B. (voice)’,2,8),(1164,287,’Richard’,2,0),(1164,112,’Susan’,1,1),(1164,258,’Santiago’,2,2),(1164,18054,’Cheiko’,0,3),(1164,270,’Amelia’,1,4),(1164,17118,’Anwar’,2,5),(1164,17476,’Tom’,2,6),(1164,17477,’Lilly’,1,7),(1164,17478,’Douglas’,0,8),(1164,17479,’Elyse’,1,9),(1164,17481,’Jane’,1,10),(1164,17483,’James’,2,11),(1164,454,’John – Border Patrol’,2,12),(1164,18053,’Bill – Border Patrol’,0,13),(1164,5365,’Officer at Border Crossing’,2,14),(1164,92932,’Officer #2′,2,15),(1164,18056,’Yasujiro Wataya’,2,16),(1164,1376187,’Lucia’,1,17),(1164,18050,’Debbie Jones’,1,18),(1164,18052,’Mike Jones’,2,19),(1164,17482,’Walter’,0,20),(1164,17484,’Barth’,2,21),(1164,37052,’Tourist’,1,22),(1164,1529890,’Tourist’,1,23),(1164,1679366,’Tourist’,1,24),(1164,1524845,’Tourist’,1,25),(1164,28683,’Tourist’,2,26),(1164,1317410,’Tourist’,1,27),(1164,64160,’Tourist’,2,28),(1164,15739,’Ken Clifford’,2,29),(1164,18044,’Yussef’,2,30),(1164,18045,’Ahmed’,2,31),(1164,18046,’Abdullah’,2,32),(1164,122306,’Alarid’,2,33),(1164,18060,’Zohra’,1,34),(1164,1678291,’Yasira’,1,35),(1164,1681177,’Waiter Casbah’,2,36),(1164,1681184,’Old Man in Car’,2,37),(1164,1681194,’Anwar\’s Grandmother’,1,38),(1164,1681199,’Store Owner’,2,39),(1164,263,’Emilio’,2,40),(1164,1681201,’Helicopter Pilot’,2,41),(1164,49832,’FBI Interrogation Officer’,2,42),(1164,18057,’Mitsu’,1,43),(1164,582605,’Mother at Dentist’,1,44),(1164,1681204,’Luis’,2,45),(1164,1411288,’Amelia\’s Daughter’,1,46),(1164,1681213,’Patricia’,1,47),(1164,1681247,’Nurse at Dentist\’s’,1,48),(1164,18059,’Dentist’,2,49),(3989,34517,’Gary Johnston (voice) / Joe (voice) / Kim Jong Il (voice) / Hans Blix (voice) / Carson (voice) / Matt Damon (voice) / Drunk in Bar (voice) / Tim Robbins (voice) / Sean Penn (voice) / Michael Moore (voice) / Helen Hunt (voice) / Susan Sarandon (voice) / Others (voice)’,2,0),(3989,34518,’Chris (voice) / George Clooney (voice) / Danny Glover (voice) / Ethan Hawke (voice) / Others (voice)’,2,1),(3989,34519,’Lisa (voice)’,1,2),(3989,34520,’Sarah (voice)’,0,3),(3989,31162,’Spottswoode (voice)’,2,4),(3989,34521,’Alec Baldwin (voice)’,2,5),(1710,10205,’Helen Hudson’,1,0),(1710,18686,’M.J. Monahan’,1,1),(1710,883,’Nico Letti’,2,2),(1710,18687,’Peter Foley’,2,3),(1710,18688,’Doryll Lee Cullum’,2,4),(1710,5169,’Lt. Quinn’,2,5),(1710,20212,’Ruben Goetz’,2,6),(1710,60205,’Andy’,2,7),(1710,154691,’Susan Schiffer’,1,8),(1710,95838,’Pachulski’,2,9),(1710,215904,’Kerby’,0,10),(1710,1074167,’Kostas’,0,11),(1710,167781,’Landis’,0,12),(1710,1074168,’Cop #1′,0,13),(1710,1074169,’Mike’,0,14),(4258,35548,’Dan Sanders’,2,0),(4258,67600,’Jody Sanders’,1,1),(4258,6952,’Himself’,2,2),(4258,49265,’Herself’,1,3),(4258,451684,’Kendra Brooks’,1,4),(4258,58926,’Blaine Fulda’,2,5),(4258,28640,’Heather Darcy’,1,6),(4258,58954,’Dr. Hall’,2,7),(4258,19767,’Marcus’,2,8),(4258,3035,’Christian Grey’,2,9),(4258,91351,’Mia’,1,10),(4258,53280,’David’,2,11),(4258,74618,’Natalie’,1,12),(4258,58691,’Barbara’,1,13),(4258,80757,’Himself’,2,14),(4258,61114,’Herself’,1,15),(4258,58197,’Eric’,0,16),(4258,928307,’Antoinette Beauchamp’,1,17),(4258,1532416,’Newscaster’,1,18),(9645,5168,’Captain Sean Murphy’,2,0),(9645,25654,’Maureen Epps’,1,1),(9645,6365,’Jack Ferriman’,2,2),(9645,12260,’Dodge’,2,3),(9645,21353,’Greer’,2,4),(9645,1372,’Munder’,2,5),(9645,70456,’Katie Harwood’,1,6),(9645,1004151,’Francesca’,1,7),(9645,217030,’Captain’,0,8),(9645,1262387,’Friendly Officer’,0,9),(9645,75655,’Santos’,2,10),(617,2876,’Sam Lombardo’,2,0),(617,4724,’Sergeant Ray Duquette’,2,1),(617,9205,’Kelly Lanier Van Ryan’,1,2),(617,9206,’Suzie Marie Toller’,1,3),(617,9207,’Sandra Van Ryan’,1,4),(617,1532,’Kenneth Bowden’,2,5),(617,9208,’Tom Baxter’,2,6),(617,9209,’Detective Gloria Perez’,1,7),(617,9210,’District Attorney Bryce Hunter’,2,8),(617,9211,’Frankie Condo’,2,9),(617,9212,’Barbara Baxter’,1,10),(617,953997,’Jimmy Leach’,0,11),(617,6908,’Walter’,2,12),(617,945237,’Nicole’,1,13),(617,93679,’Art Maddox’,2,14),(617,210794,’School Secretary’,0,15),(617,1089404,’Kirk’,0,16),(617,160330,’Judge’,1,17),(617,191003,’Bailiff’,0,18),(617,178678,’Ken\’s Secretary’,0,19),(617,20562,’Police Chief’,2,20),(617,135571,’Prisoner’,0,21),(617,176740,’Dave’,0,22),(617,943990,’Georgie’,2,23),(617,185608,’Barmaid’,0,24),(617,553009,’Hooker’,0,25),(617,163219,’Reporter #1′,1,26),(617,1089405,’Reporter #2′,0,27),(617,153670,’Reporter #3′,0,28),(617,1089406,’Policeman #1′,0,29),(617,1089407,’Policeman #2′,2,30),(617,1089408,’Policeman #3′,0,31),(617,1089409,’Policewoman #1′,0,32),(617,1089410,’Policewoman #2′,0,33),(243,3036,’Rob Gordon’,2,0),(243,1562,’Laura’,1,1),(243,3230,’Dick’,2,2),(243,70851,’Barry’,2,3),(243,3232,’Marie DeSalle’,1,4),(243,1922,’Charlie Nicholson’,1,5),(243,3234,’Liz’,1,6),(243,504,’Ian \’Ray\’ Raymond’,2,7),(243,3235,’Vince’,0,8),(243,3236,’Justin’,2,9),(243,3127,’Sarah Kendrew’,1,10),(243,3237,’Penny Hardwick’,1,11),(243,3270,’Caroline Fortis’,1,12),(243,3271,’Alison Jr. High’,0,13),(243,3272,’Rob Jr. High’,2,14),(243,3273,’Laura\’s Mom’,1,15),(243,3282,’Anaugh’,1,16),(243,1051450,’Barry\’s Customer’,2,17),(243,1208967,’Beta Band Customer’,0,18),(243,189758,’Middle Aged Customer’,0,19),(243,3283,’Rob\’s Mom’,0,20),(243,3284,’Himself’,2,21),(243,554631,’Laura\’s Sister Jo’,0,22),(243,933416,’Minister’,0,23),(243,1273201,’Girl – 19 year old’,0,24),(243,4445,’Paul’,2,25),(243,6945,’Miranda’,0,26),(243,142333,’Alison\’s Mom’,1,27),(243,1273202,’Kevin Bannister’,0,28),(243,43373,’Boy In Park’,2,29),(243,1273203,’Chris Thompson’,0,30),(243,1273204,’Rock Guy’,0,31),(243,1273205,’Mourner’,0,32),(243,35022,’Mourner’,2,33),(243,1273206,’Marco’,0,34),(243,110141,’Louis’,0,35),(243,1273207,’Man In Store’,0,36),(243,204293,’Party Guest’,0,37),(243,1084579,’Party Guest’,2,38),(243,86561,’Party Guest’,0,39),(243,1226311,’Party Guest’,0,40),(243,181502,’Party Guest’,0,41),(243,146281,’Party Guest’,1,42),(243,1141597,’Piano Player’,2,43),(243,1273209,’Greenday Girl’,0,44),(243,1273210,’Skateboarder’,0,45),(243,1273211,’Flea Market Musician’,0,46),(243,1055739,’Bartender’,0,47),(243,1273212,’Laura\’s Friend’,0,48),(6933,27855,’Beth Raymond’,1,0),(6933,12833,’Jack Andrews’,2,1),(6933,7351,’Taylor Anthony’,1,2),(6933,6719,’Ted Summers’,2,3),(6933,31715,’Leann Cole’,1,4),(6933,51455,’Brian Sousa’,2,5),(6933,37203,’Ray Purvis’,2,6),(6933,11152,’Mickey Lee’,1,7),(6933,22122,’Shelley Baum’,1,8),(6933,51456,’Marie Layton’,1,9),(6933,51457,’Monster Marie’,1,10),(6933,42160,’Ellie Layton’,1,11),(6933,51458,’Monster Ellie’,0,12),(6933,51459,’Laurel Layton’,0,13),(6933,51460,’Mrs. Ford’,0,14),(6933,51461,’Child Beth’,0,15),(6933,51462,’Gary’,0,16),(6933,51463,’Dr. Julie Cohn’,0,17),(6933,51464,’Dr. Painter’,0,18),(6933,1785189,’Maddie’,1,19),(8848,976,’Terry Leather’,2,0),(8848,9825,’Martine Love’,0,1),(8848,55467,’Kevin Swain’,2,2),(8848,1670,’Dave Shilling’,2,3),(8848,9140,’Guy Singer’,2,4),(8848,56097,’Bambas’,2,5),(8848,56098,’Eddie Burton’,2,6),(8848,55473,’Ingrid’,0,7),(8848,2968,’Tim Everett’,0,8),(8848,15202,’Miles Urquhart’,2,9),(8848,56100,’Phillip Lisle’,2,10),(8848,56103,’Gale Benson’,1,11),(8848,109650,’Snow’,2,12),(8848,202760,’Quinn’,0,13),(8848,62231,’Lord Drysdale’,2,14),(8848,22809,’Wendy Leather’,1,15),(8848,56099,’Gerald Pyke’,2,16),(8848,51799,’Nick Barton’,2,17),(8848,56101,’Roy Given’,2,18),(8848,20277,’Lew Vogel’,2,19),(8848,56102,’Michael X’,2,20),(8848,5414,’Hakim Jamal’,2,21),(8848,56104,’Sonia Bern’,1,22),(8848,1252814,’Eric Addey’,0,23),(8848,1672707,’Chicken Inn Customer’,2,24),(8848,93848,’Lawyer’,2,25),(8848,1402629,’Reporter’,0,26),(38,206,’Joel Barish’,2,0),(38,204,’Clementine Kruczynski’,1,1),(38,205,’Mary Svevo’,1,2),(38,103,’Stan Fink’,2,3),(38,109,’Patrick’,2,4),(38,207,’Dr. Howard Mierzwiak’,2,5),(38,209,’Carrie Eakin’,1,6),(38,212,’Rob Eakin’,2,7),(38,77013,’Hollis Mierzwiak’,1,8),(38,130840,’Frank’,2,9),(38,208,’Young Joel’,0,10),(38,220,’Young Clementine’,0,11),(38,211,’Joel\’s Mother’,1,12),(38,213,’Train Conducter’,2,13),(38,214,’Young Bully’,0,14),(38,216,’Young Bully’,2,15),(38,217,’Young Bully’,2,16),(38,210,’Young Bully’,2,17),(38,221,’Rollerblader’,1,18),(1266,6384,’Detective Tom Ludlow’,2,0),(1266,2178,’Captain Jack Wander’,2,1),(1266,16828,’Detective Paul Diskant’,2,2),(1266,41419,’Captain James Biggs’,2,3),(1266,55392,’Grace Garcia’,1,4),(1266,5726,’Scribble’,2,5),(1266,2038,’Linda Washington’,1,6),(1266,4238,’Coates’,0,7),(1266,55393,’Julie Fukashima’,0,8),(1266,55394,’Fremont’,0,9),(1266,55395,’Grill’,2,10),(1266,53249,’Michael Monks’,0,11),(1266,12217,’Sgt. Mike Clady’,2,12),(1266,53256,’Detective Terrence Washington’,2,13),(1266,1073001,’Grill’,2,14),(1266,1164795,’Demille\’s Girlfriend’,0,15),(1266,38405,’Detective Dante Demille’,2,16),(1266,17341,’Detective Cosmo Santos’,2,17),(1266,53252,’Quicks’,2,18),(1266,53249,’Pathologist’,0,19),(1266,58924,’Sergeant Green’,2,20),(1266,550826,’The Chief’,0,21),(1266,41561,’Boss Kim’,2,22),(1266,1796511,’Thug Kim’,2,23),(1266,107489,’Toilet Man’,2,24),(1266,936128,’Union Market Clerk’,2,25),(1266,583845,’Union Market Cop #1′,2,26),(1266,1711870,’Union Market Cop #2′,2,27),(1266,188198,’Prostitute #1′,0,28),(1266,1796527,’Prostitute #2′,0,29),(1266,53257,’OG Vato’,2,30),(1266,5146,’Older Black Man’,2,31),(1266,1796529,’Black Woman’,0,32),(1266,55275,’Money Shirt’,2,33),(1266,295370,’Lt. Van Buren’,2,34),(1266,1244124,’Assistant D.A.’,0,35),(1266,1796530,’Little Mexican Girl’,1,36),(1266,1796531,’News Anchor’,1,37),(1266,1138844,’Senior Captain’,0,38),(1266,99703,’Park Twin #1′,0,39),(1266,1796533,’Park Twin #2′,0,40),(1266,17837,’LAPD Captain’,2,41),(1266,1226475,’Clady\’s Wife’,0,42),(1266,1796535,’Co-Anchor’,0,43),(1266,19769,’NLR member in County Jail (uncredited)’,0,44),(1266,1796536,’Troubled teen (uncredited)’,1,45),(1266,1796537,’LAPD Sergeant (uncredited)’,0,46),(1266,1796538,’ER Nurse (uncredited)’,0,47),(9588,15112,’Matthew Quigley’,2,0),(9588,1212,’Crazy Cora’,1,1),(9588,4566,’Elliott Marston’,2,2),(9588,3070,’Major Ashley-Pitt’,2,3),(9588,58100,’Grimmelman’,0,4),(9588,45207,’Dobkin’,2,5),(9588,77335,’O\’Flynn’,2,6),(9588,68321,’Deserter’,2,7),(9954,54815,’Caleb Danvers’,2,0),(9954,51975,’Sarah Wenham’,1,1),(9954,51989,’Kate Tunney’,1,2),(9954,60900,’Pogue Parry’,2,3),(9954,60899,’Tyler Simms’,2,4),(9954,60898,’Chase Collins’,2,5),(9954,60901,’Reid Garwin’,2,6),(9954,232,’Aaron Abbot’,2,7),(9954,19957,’Evelyn Danvers’,1,8),(9954,230,’James Danvers’,2,9),(9954,6074,’Provost Higgins’,0,10),(9954,60903,’Nicky\’s Bar Waitress’,0,11),(9954,60902,’Dead Teenage Boy’,0,12),(9954,60907,’Patrolman Reeve’,2,13),(9954,60905,’Party Kid’,2,14),(9954,60906,’Ryan Bael’,2,15),(9954,60904,’Mr. Pennyworth’,0,16),(9954,60909,’Semi-Driver’,0,17),(9954,60908,’Mr. Hoffman’,2,18),(9954,60910,’Gorman Twoberry’,2,19),(577,2227,’Suzanne Stone Maretto’,1,0),(577,2876,’Larry Maretto’,2,1),(577,73421,’Jimmy Emmett’,2,2),(577,1893,’Russel Hines’,2,3),(577,7796,’Janice Maretto’,1,4),(577,2841,’Lydia Mertz’,1,5),(577,6486,’Joe Maretto’,2,6),(577,4201,’Ed Grant’,2,7),(577,224,’Man at Lake’,2,8),(577,2115,’Earl Stone’,2,9),(577,11318,’Carol Stone’,1,10),(577,4158,’Faye Stone’,1,11),(577,1185405,’Angela Maretto’,0,12),(577,33835,’Mike Warden’,0,13),(9945,4512,’Jack Crow’,2,0),(9945,24516,’Montoya’,2,1),(9945,6726,’Katrina’,1,2),(9945,60705,’Jan Valek’,2,3),(9945,12150,’Kardinal Alba’,2,4),(9945,40275,’Father Adam Guiteau’,2,5),(9945,534,’Catlin’,2,6),(9945,18914,’Father Giovanni’,2,7),(9945,11398,’David Deyo’,2,8),(9945,43010,’Ortega’,0,9),(9945,1324478,’Davis’,0,10),(9945,156605,’Highway Patrolman’,2,11),(539,7301,’Norman Bates’,2,0),(539,7303,’Lila Crane’,1,1),(539,7304,’Sam Loomis’,2,2),(539,7302,’Marion Crane’,1,3),(539,1936,’Det. Milton Arbogast’,2,4),(539,53010,’Sheriff Al Chambers’,2,5),(539,14063,’Dr. Fred Richman’,2,6),(539,78902,’Tom Cassidy’,2,7),(539,12500,’Caroline’,1,8),(539,3641,’George Lowery’,2,9),(539,19781,’Mrs. Chambers’,1,10),(539,45525,’Highway Patrol Officer’,2,11),(539,19111,’California Charlie’,2,12),(539,2636,’Man outside Office’,2,13),(539,1550460,’Church Member (uncredited)’,0,14),(539,124848,’Deputy District Attorney Alan Deats (uncredited)’,0,15),(539,117673,’Extra (uncredited)’,0,16),(539,183856,’Extra (uncredited)’,0,17),(539,1422376,’Extra (uncredited)’,0,18),(539,1574696,’Extra (uncredited)’,0,19),(539,116135,’Police Chief James Mitchell (uncredited)’,0,20),(539,120736,’County Sheriff (uncredited)’,2,21),(539,19110,’Norma Bates (voice) (uncredited)’,1,22),(539,7520,’Norma Bates (voice) (uncredited)’,1,23),(539,117602,’Bob Summerfield (uncredited)’,0,24),(539,71146,’Policeman in Hallway Opening Door (uncredited)’,2,25),(539,151550,’Police Guard (uncredited)’,2,26),(539,1469587,’Passerby on Sidewalk (uncredited)’,0,27),(539,114962,’Hardware Store Customer (uncredited)’,0,28),(539,938901,’Man (uncredited)’,2,29),(526,4756,’Phillipe Gaston’,2,0),(526,585,’Captain Etienne Navarre’,2,1),(526,1160,’Isabeau d\’Anjou’,1,2),(526,658,’Cezar’,2,3),(526,8937,’Bishop of Aquila’,2,4),(526,7192,’Father Imperius’,2,5),(526,7194,’Marquet’,2,6),(526,7195,’Fornac’,2,7),(526,7196,’Jehan’,2,8),(526,7198,’Insane Prisoner’,0,9),(526,27279,’Innkeeper’,0,10),(526,1831105,’Mrs. Pitou’,0,11),(526,7197,’Mr. Pitou’,0,12),(526,22312,’Bishop\’s Secretary’,2,13),(526,7206,’Bishop\’s Woman’,0,14),(2355,19292,’Charlie Fineman’,2,0),(2355,1896,’Alan Johnson’,2,1),(2355,9575,’Janeane Johnson’,1,2),(2355,882,’Angela Oakhurst’,1,3),(2355,9825,’Donna Remar’,0,4),(2355,55636,’Richter Raines’,2,5),(2355,26715,’Jonathan Timpleman’,2,6),(2355,4778,’Ginger Timpleman’,1,7),(2355,24173,’Bryan Sugarman’,2,8),(2355,783,’Stelter’,2,9),(2355,170348,’Adell Modell’,1,10),(2355,17420,’Melanie’,1,11),(2355,11077,’Nigel Pennington’,0,12),(2355,21384,’George Johnson’,0,13),(2355,167220,’Cherie Johnson’,1,14),(2355,202850,’Jocelyn Johnson’,1,15),(2355,23970,’Psychiatric Hospital Therapist’,1,16),(2355,155086,’William Johnson’,2,17),(2355,107770,’Mr. Fallon’,2,18),(2355,1089174,’Night Club Comic’,0,19),(2355,11769,’Peter Savarino’,2,20),(2355,1089176,’Kemp’,0,21),(2355,1089177,’Becky Fishman’,0,22),(2355,172017,’Patty’,0,23),(2355,62100,’Dental Partner’,2,24),(2355,162539,’Taxi Driver’,0,25),(2355,203738,’New York Police Officer #1′,2,26),(2355,1089178,’New York Police Officer #2′,0,27),(2355,1089179,’Sugarman\’s Secretary’,0,28),(2355,1089180,’New Dental Patient’,0,29),(2355,203781,’Dental Hygienist’,1,30),(5915,46593,’Christopher McCandless’,2,0),(5915,4726,’Billie McCandless’,1,1),(5915,227,’Walt McCandless’,2,2),(5915,20089,’Carine McCandless’,1,3),(5915,46594,’Rainey’,0,4),(5915,2229,’Jan Burres’,1,5),(5915,4937,’Wayne Westerberg’,2,6),(5915,37917,’Tracy Tatro’,1,7),(5915,11066,’Ron Franz’,2,8),(5915,20258,’Thomas’,2,9),(5915,46595,’Sonja’,0,10),(5915,46596,’Social Worker’,1,11),(5915,58225,’Kevin’,2,12),(5915,13152,’Gail Borah’,1,13),(5915,928577,’Lee\’s Ferry Ranger’,0,14),(5915,1141723,’Chris McCandless – age 4′,0,15),(5915,49832,’Bull’,2,16),(5915,61555,’Carine McCandless – age 11′,1,17),(5915,28044,’Lori’,1,18),(5915,1431569,’Announcer’,0,19),(5915,1034534,’Leonard Knight’,0,20),(5915,1533630,’Atlanta Braves fan (uncredited)’,0,21),(5915,211705,’Young Boy (voice) (uncredited)’,0,22),(5915,1204226,’Tourist (uncredited)’,2,23),(5915,1608789,’Bank Teller (uncredited)’,0,24),(9842,879,’Dr. P’,2,0),(9842,53926,’Roger’,2,1),(9842,6857,’Amanda’,1,2),(9842,7404,’Becky’,1,3),(9842,61981,’Lesher’,2,4),(9842,212,’Ian’,2,5),(9842,52117,’Diego’,2,6),(9842,59841,’Walsh’,2,7),(9842,3230,’Eli’,2,8),(9842,7399,’Lonnie’,2,9),(9842,40481,’Sergeant Moorehead’,2,10),(9842,58873,’Zack’,2,11),(9842,11827,’Bee Bee’,2,12),(9842,59842,’Ernie’,0,13),(9842,59843,’Little Pete’,2,14),(9842,59846,’Lois’,1,15),(9842,59844,’Lawrence’,2,16),(9842,59845,’Mrs. Washington’,1,17),(9842,5374,’Classmate’,2,18),(9842,59847,’Classmate’,0,19),(9842,86626,’Classmate’,2,20),(9842,39985,’Classmate’,0,21),(9842,95875,’Classmate’,2,22),(9842,17449,’Classmate’,2,23),(9842,55463,’Eli\’s Wife’,1,24),(9842,1023385,’Flight Attendant’,0,25),(9842,131125,’Flight Attendant’,2,26),(9842,1568595,’Margaret (uncredited)’,1,27),(9842,1234262,’Mindy (uncredited)’,0,28),(9842,155687,’Shanice (uncredited)’,1,29),(9842,1371246,’Tennis Player (uncredited)’,0,30),(9842,1558227,’Waitress (uncredited)’,1,31),(9842,1568607,’Airplane Passenger (uncredited)’,0,32),(755,1461,’Seth Gecko’,2,0),(755,138,’Richard Gecko’,2,1),(755,1037,’Jacob Fuller’,2,2),(755,3196,’Kate Fuller’,1,3),(755,11158,’Scott Fuller’,0,4),(755,3136,’Santanico Pandemonium’,1,5),(755,11159,’Border Guard/Chet Pussy/Carlos’,2,6),(755,11160,’Razor Charlie’,2,7),(755,11161,’Sex Machine’,2,8),(755,9811,’Frost’,0,9),(755,2536,’Texas Ranger’,2,10),(755,11162,’Hostage Gloria Hill’,0,11),(755,11163,’FBI Agent’,2,12),(755,3140,’Motel Owner’,2,13),(755,11164,’Newscaster Kelly Houge’,1,14),(755,16861,’Pete Bottoms / Liquor Store Clerk’,2,15),(755,53763,’Titty Twister Guitarist & Vocalist’,2,16),(755,1089505,’Titty Twister Saxophonist’,0,17),(755,1089510,’Titty Twister Drummer’,0,18),(755,35545,’Blonde Hostage’,1,19),(755,982183,’Red-headed Hostage’,0,20),(755,931730,’Big Emilio’,0,21),(755,59287,’Sex Machine\’s Buddy’,2,22),(755,139997,’Danny’,0,23),(755,100260,’Manny’,2,24),(755,68430,’Bar Dancer’,1,25),(755,1830654,’Bar Dancer’,0,26),(755,41691,’Bar Dancer’,0,27),(755,1265433,’Bar Dancer’,0,28),(755,1027008,’Monster’,0,29),(755,555328,’Monster’,0,30),(755,115244,’Monster’,2,31),(755,1042415,’Monster’,0,32),(9089,18686,’Claudia Larson’,1,0),(9089,3223,’Tommy Larson’,2,1),(9089,10774,’Adele Larson’,1,2),(9089,1466,’Henry Larson’,2,3),(9089,6194,’Kitt Larson’,1,4),(9089,32597,’Leo Fish’,2,5),(9089,400,’Aunt Glady’,1,6),(9089,26472,’Walter Wedman’,2,7),(9089,11064,’Russell Terziak’,2,8),(9089,65528,’Joanne Larson Wedman’,1,9),(9470,57607,’Sing’,2,0),(9470,57609,’Landlord’,2,1),(9470,119426,’Landlady’,0,2),(9470,545277,’Sing\’s sidekick’,2,3),(9470,83635,’Fong’,1,4),(9470,1173200,’Donut – Hexagonal Staff’,0,5),(9470,1173216,’Tailor’,2,6),(9470,78878,’Coolie – 12 Kicks of Tam School’,0,7),(9470,1173223,’Brother Sum’,0,8),(9470,576408,’The Beast’,0,9),(9470,1136808,’Axe Gang Advisor’,0,10),(9470,1173224,’Harpist Assassin # 1′,0,11),(9470,118745,’Harpist Assassin # 2′,0,12),(9470,25251,’Axe Gang Vice General’,2,13),(9470,65975,’Beggar’,2,15),(9470,1287732,’Crocodile Gang Boss’,0,16),(9470,1676386,’Rabbit Tooth Jane (Djenn)’,1,17),(7979,53480,’Amir’,2,0),(7979,53481,’Soraya’,1,1),(7979,17857,’Rahim Kahn’,2,2),(7979,53482,’Young Amir’,0,3),(7979,53483,’Young Hassan’,2,4),(7979,1121950,’Sohrab’,0,5),(7979,1010819,’Young Assef’,0,6),(7979,117528,’Baba’,0,7),(7979,1349329,’Ali’,0,8),(7979,1349331,’Wali’,0,9),(7979,1349333,’Kamal’,0,10),(7979,5419,’Farid’,0,11),(7979,1349335,’Uncle Saifo the Kite Seller’,0,12),(7979,1349327,’Business Man in Baba\’s Study’,0,13),(7979,1349337,’Spice Merchant’,0,14),(7979,1349338,’Party Worker’,0,15),(470,2228,’Paul Rivers’,2,0),(470,3489,’Cristina Peck’,1,1),(470,1121,’Jack Jordan’,2,2),(470,6413,’Michael’,2,3),(470,6830,’Cathy’,1,4),(470,6831,’Laura’,1,5),(470,1665,’Reverend John’,2,6),(470,6832,’Marianne Jordan’,1,7),(470,4273,’Mary Rivers’,1,8),(470,20387,’Claudia’,1,9),(470,1276049,’Gina’,1,10),(470,81681,’Dr. Rothberg’,2,11),(470,44261,’Gynecologist’,2,12),(470,173994,’Freddy’,2,13),(470,114850,’Al’,2,14),(470,3137,’Brown’,2,15),(470,1621253,’Guard’,2,16),(470,1621254,’Fat Man’,2,17),(470,52863,’Lucio’,2,18),(470,6907,’Trish’,1,19),(470,65797,’Ana’,1,20),(470,1621255,’Dolores’,1,21),(470,1375657,’Dr. Badnews’,1,22),(470,174434,’Dr. Molina’,2,23),(470,27544,’Dr. Jones’,2,24),(470,37027,’County Sheriff’,2,25),(470,1668313,’Night Guard’,2,26),(9582,11662,’Paul Morse’,2,0),(9582,12041,’Becky Jackon’,1,1),(9582,11826,’Karen Cooper’,1,2),(9582,9274,’Ken Cooper’,2,3),(9582,52647,’Jim’,2,4),(9582,58058,’Ray Donovan’,2,5),(9582,2958,’Sandra Cooper’,1,6),(9582,28638,’Buck’,2,7),(9582,14415,’Dorothy’,1,8),(9582,539,’Pete’,2,9),(9582,61185,’Aunt Budge’,1,10),(9582,63791,’Howard’,2,11),(9582,62245,’Jeff’,2,13),(9582,1491611,’Tonya’,1,14),(9582,80352,’Acne-Faced Teen’,2,15),(9582,27122,’Minister Green’,2,16),(2428,2201,’Jesus’,2,0),(2428,24808,’James the Younger’,2,1),(2428,14701,’Veronica’,1,2),(2428,24809,’Martha of Bethany’,1,3),(2428,24811,’Sorak’,2,4),(2428,3090,’Barabbas’,2,5),(2428,24812,’Mary Magdalene’,1,6),(2428,12515,’Herod Antipas’,0,7),(2428,18803,’Bar Amand’,2,8),(2428,10017,’John the Baptist’,2,9),(2428,2641,’Caiaphas’,2,10),(2428,14730,’Claudia’,1,11),(2428,24810,’Angel at the Tomb’,2,12),(2428,10558,’Mary of Bethany’,1,13),(2428,24813,’Judas Iskarioth’,2,14),(2428,7505,’Matthew’,2,15),(2428,24815,’The Virgin Mary’,1,16),(2428,2770,’Uriah’,2,17),(2428,3160,’Shemiah’,2,18),(2428,9221,’The Dark Hermit – Satan’,2,19),(2428,16897,’Simon of Cyrene’,2,20),(2428,4113,’King Herod’,2,21),(2428,24819,’Simon Peter’,2,22),(2428,10169,’Pontius Pilate’,2,23),(2428,24820,’Nicodemus’,2,24),(2428,11033,’Questor’,2,25),(2428,4165,’Centurion at crucifixion’,2,26),(2428,7632,’Woman who is healed’,1,27),(2428,5833,’Old Aram’,2,28),(2428,24826,’Aben’,2,29),(2428,24827,’Captain of lancers’,2,30),(2428,16074,’Herod\’s commander’,2,31),(2428,9287,’Simon the Zealot’,2,32),(2428,30074,’Andrew’,2,33),(2428,1054308,’Emissary’,0,34),(2428,74763,’John’,2,35),(2428,2649,’Chuza’,2,36),(2428,15693,’Alexander’,2,37),(2428,50574,’The tormentor’,2,38),(2428,88906,’Melchior’,2,39),(2428,55432,’Thaddaeus’,0,40),(2428,10226,’Philip’,2,41),(2428,12355,’Scribe’,2,42),(2428,1820,’Balthazar’,2,43),(2428,1162,’Joseph’,2,44),(2428,30844,’Speaker of Capernaum’,2,45),(2428,3384,’Nathanael’,0,46),(2428,96165,’Thomas’,2,47),(2428,41293,’Herodias’,1,48),(2428,51348,’James the Elder’,0,49),(2428,19217,’Caspar’,2,50),(2428,105062,’Dumah’,2,51),(2428,135066,’Joseph of Arimathaea’,2,52),(2428,14505,’Gen. Varus’,2,53),(2428,130403,’Theophilus’,2,54),(2428,161650,’Lazarus’,2,55),(2428,988795,’Annas’,2,56),(2428,3338,’Drunken Soldier – Herod Antipas\’ Court (uncredited)’,2,57),(2428,15942,’Woman Behind Railings (uncredited)’,1,58),(4597,31132,’Ty Hackett’,2,0),(4597,2975,’Baines’,2,1),(4597,22108,’Dobbs’,2,2),(4597,17341,’Palmer’,2,3),(4597,2876,’Mike Cochrane’,2,4),(4597,1003,’Quinn’,2,5),(4597,10430,’Duncan Ashcroft’,2,6),(4597,16501,’Eckehart’,2,7),(4597,1115002,’Jimmy Hackett’,0,8),(4597,65699,’Dispatcher #1′,2,9),(4597,39214,’Homeless Man’,2,10),(4597,18305,’Joe the Cook’,2,11),(4597,95696,’Child Welfare Agent’,1,12),(4597,167708,’Federal Guard’,2,13),(4597,62100,’Bank Guard’,2,14),(4597,1002203,’Federal Guard #2′,0,15),(9414,1532,’Wallace \’Wally\’ Ritchie’,2,0),(9414,8212,’James \’Jimmy\’ Ritchie’,2,1),(9414,12656,’Lorelei \’Lori\”,1,2),(9414,658,’Boris \’The Butcher\’ Blavasky’,2,3),(9414,47874,’Sir Roger Daggenhurst’,2,4),(9414,11855,’Dr. Ludmilla Kropotkin’,1,5),(9414,11282,’Gilbert Embleton’,2,6),(9414,10731,’Barbara Ritchie’,1,7),(9414,118617,’Sergei’,2,8),(9414,16273,’Hawkins’,2,9),(9414,182110,’Uri’,2,10),(9414,974,’Otto’,2,11),(9414,7321,’Dimitri’,2,12),(9414,1665,’Thief’,2,13),(9414,1356007,’Sylvia’,0,14),(9414,1576856,’Frau Schuster’,1,15),(9414,25656,’Herr Schuster’,2,16),(9414,53351,’Ms. Goldstein’,1,17),(9414,82410,’Spenser’,2,18),(9414,1214789,’Sir Duncan’,2,19),(9414,1234107,’Sir Duncan\’s Wife – Felicity’,1,20),(9414,1222025,’Rupert’,2,21),(9414,73947,’SWAT Team Leader’,2,22),(9414,185822,’Wilkie’,2,23),(9414,2302,’Newman’,2,24),(9414,1569977,’Annabel’,1,25),(9414,1215739,’Det. Sgt. Malloy’,2,27),(9414,101908,’British Agent’,2,28),(9414,5169,’CIA Man’,2,29),(9414,1649778,’Waiter’,2,30),(9414,156003,’Des’,1,31),(8198,3895,’Thomas Fowler’,2,0),(8198,18269,’Alden Pyle’,2,1),(8198,53962,’Phuong’,1,2),(8198,21629,’Hinh’,2,3),(8198,1118,’Inspector Vigot’,2,4),(8198,53963,’Joe Tunney’,2,5),(8198,1578,’Bill Granger’,2,6),(8198,1644580,’General Thu00e9′,0,7),(8198,61637,’Mr. Muoi’,0,8),(8198,1644581,’Phuong\’s Sister’,0,9),(8198,82187,’French Captain’,2,10),(8198,75132,’Watch Tower Soldier’,0,11),(8198,1617765,’Watch Tower Soldier’,0,12),(8198,1644582,’American Photographer’,0,13),(8198,147138,’Dancing American’,2,14),(8198,1644583,’House of 500 Girls\’ Singer’,0,15),(8198,1644584,’American Woman’,0,16),(8198,1644585,’American Woman’,0,17),(8198,1644586,’Assassin’,0,18),(8198,1644587,’Assassin’,0,19),(8198,1644588,’Assassin’,0,20),(8198,1644589,’Assassin’,0,21),(8198,1644590,’Vietnamese Policeman’,0,22),(8198,1644591,’Vietnamese Guard’,0,23),(8198,75469,’French Soldier’,2,24),(8198,1644592,’French Singer’,0,25),(8198,1644593,’French Singer’,0,26),(8198,1644594,’Hotel Continental Maitre d\”,0,27),(8198,1644595,’Vieux Moulin Maitre d\”,0,28),(8198,1644596,’French Woman’,0,29),(8198,1644597,’Mechanic in Muoi\’s Garage’,0,30),(8198,1644598,’Pyle\’s Bodyguard’,0,31),(8198,1644599,’L\’arc en Ciel Band’,0,32),(8198,1644600,’L\’arc en Ciel Band’,0,33),(8198,1644601,’L\’arc en Ciel Band’,0,34),(8198,1644602,’L\’arc en Ciel Band’,0,35),(8198,1644603,’L\’arc en Ciel Band’,0,36),(8198,1644604,’L\’arc en Ciel Band’,0,37),(8198,1644605,’L\’arc en Ciel Band’,0,38),(8198,1644606,’L\’arc en Ciel Band’,0,39),(8198,1644607,’L\’arc en Ciel Band’,0,40),(8198,1644608,’L\’arc en Ciel Band’,0,41),(6963,2963,’David Spritz’,2,0),(6963,3895,’Robert Spritzel’,2,1),(6963,15250,’Noreen’,1,2),(6963,51609,’Shelly Spritzel’,1,3),(6963,3292,’Mike Spritzel’,2,4),(6963,18313,’Russ’,2,5),(6963,6575,’Don’,2,6),(6963,51610,’Lauren’,1,7),(6963,51611,’Guy’,0,8),(6963,1223819,’Himself’,0,9),(6963,112884,’Himself’,2,10),(4953,70851,’Jerry’,2,0),(4953,4239,’Mike’,2,1),(4953,2047,’Mr. Fletcher’,2,2),(4953,12021,’Ms. Kimberley’,0,3),(4953,34111,’James’,2,4),(4953,6070,’Manny’,2,5),(4953,40250,’Mr. Rooney’,2,6),(4953,53936,’Alma’,1,7),(4953,10205,’Ms. Lawson’,1,8),(2639,1243,’Harry Block’,2,0),(2639,1796,’Joan’,1,1),(2639,7904,’Larry/The Devil’,2,2),(2639,351,’Lucy’,1,3),(2639,1910,’Doris’,1,4),(2639,10866,’Burt’,2,5),(2639,27563,’Jane’,1,6),(2639,10447,’Beth Kramer’,1,7),(2639,1951,’Fay’,1,8),(2639,24318,’Ken’,2,9),(2639,12438,’Richard’,2,10),(2639,2219,’Harvey Stern/Harry\’s Character’,2,11),(2639,27564,’Hilly’,2,12),(2639,2157,’Mel’,2,13),(2639,15886,’Leslie’,1,14),(2639,8792,’Janet\’s Mom’,1,15),(2639,199,’Grace’,1,16),(2639,3416,’Helen’,1,17),(2639,2283,’Paul Epstein’,2,18),(2639,9278,’Woman in Elevator’,1,19),(2639,7904,’Larry / The Devil’,2,20),(2639,13242,’Professor Abbott’,2,21),(5971,380,’Ned’,2,0),(5971,2228,’Jim’,2,1),(5971,3416,’Molly’,1,2),(5971,16166,’Father Levesque’,2,3),(5971,9257,’Deputy’,2,4),(5971,40008,’Warden’,2,5),(5971,785,’Bobby’,2,6),(5971,12900,’Translator’,2,7),(5971,4764,’Young Monk’,2,8),(5971,46996,’Deputy’,0,9),(5971,46995,’Passersby’,2,10),(9716,69597,’Skylar Dandridge’,1,0),(9716,58731,’Nanny’,1,1),(9716,10871,’Djuna \’D.J.\’ Berlin’,1,2),(9716,819,’Holden Spence’,2,3),(9716,1243,’Joe Berlin’,2,4),(9716,18892,’Steffi Dandridge’,1,5),(9716,21278,’Bob Danridge’,2,6),(9716,1204,’Von Sidell’,1,7),(9716,3129,’Charles Ferry’,2,8),(9716,524,’Laura Dandrige’,1,9),(9716,12930,’Lane Dandrige’,1,10),(9716,8289,’Ken’,2,11),(9716,17343,’Greg’,2,12),(9716,526,’Scott Dandrige’,2,13),(9716,58513,’Grandpa’,2,14),(9716,163650,’Doorman’,2,15),(9716,28034,’Frieda’,1,16),(9716,166002,’Himself’,2,17),(9716,17490,’Cop’,2,18),(9716,84249,’Harry Winston Salesman’,2,19),(9716,60022,’Harry Winston Dancer’,1,20),(9716,17640,’Harry Winston Dancer’,1,21),(9716,162568,’Le Cirque Waiter’,2,22),(9716,188728,’X-Ray Room Doctor’,2,23),(9716,227537,’Nurse’,1,24),(9716,164235,’Hospital Dancer’,1,25),(9716,1225809,’Hospital Dancer’,1,26),(9716,1093168,’Hospital Dancer’,1,27),(9716,20318,’Hospital Dancer’,1,28),(9716,156294,’DJ\’s Venice Date’,2,29),(9716,1291666,’Cab Driver’,2,30),(9716,171102,’Holden\’s Parent’,2,31),(9716,28010,’Holden\’s Parent’,2,32),(9716,1276203,’Ghost Dancer’,1,33),(9716,21385,’Escaped Convict’,2,34),(9716,1089394,’Escaped Convict’,2,35),(9716,76241,’Trick-or-Treat Child’,1,36),(9716,1494713,’Trick-or-Treat Child’,2,37),(9716,164511,’Scott\’s Doctor’,2,38),(9716,65142,’Groucho Party Dancer’,2,39),(9716,1367680,’Groucho Party Dancer’,1,40),(9716,33240,’Groucho Party Dancer’,1,41),(9716,215752,’Helen Miles Singer’,1,42),(9716,1351005,’Helen Miles Singer’,2,43),(9716,203400,’Italy Dinner Guest (uncredited)’,2,44),(9716,67101,’Skylar (singing voice) (uncredited)’,1,45),(9716,1661583,’Nanny’,1,46),(9716,1661585,’Nanny’,1,47),(9716,1661586,’Nurse’,1,48),(9716,1661587,’Old Woman’,1,49),(9716,1661590,’Homeless Man’,2,50),(9716,1661591,’Mannequin’,1,51),(9716,1661592,’Mannequin / Harry Winston Dancer’,1,52),(9716,1661593,’Mannequin’,1,53),(9716,1661594,’Pianist’,1,54),(9716,1661595,’Claire’,1,55),(9716,1661596,’Jeffrey Vandermost’,2,56),(9716,1661597,’Psychiatrist’,1,57),(9716,1661598,’Harry Winston Dancer’,2,58),(9716,1661599,’Harry Winston Dancer’,1,59),(9716,1661600,’Harry Winston Dancer’,2,60),(9716,1661601,’Harry Winston Dancer’,1,61),(9716,1661602,’Harry Winston Dancer’,2,62),(9716,1661603,’Harry Winston Dancer’,2,63),(9716,1661604,’Harry Winston Dancer’,2,64),(9716,1661605,’Harry Winston Dancer / Hospital Dancer / Ghost Dancer / Groucho Party Dancer’,2,65),(9716,1661607,’Harry Winston Dancer’,1,66),(9716,1661608,’Nurse’,1,67),(9716,1661609,’Nurse / The Helen Miles Singers’,1,68),(9716,1661610,’Nurse / The Helen Miles Singers’,1,69),(9716,1661612,’Hospital Dancer’,1,70),(9716,1661613,’Hospital Dancer’,2,71),(9716,1661615,’Hospital Dancer’,1,72),(9716,1661616,’Hospital Dancer’,2,73),(9716,1661617,’Hospital Dancer’,2,74),(9716,1661618,’Hospital Dancer’,2,75),(9716,1661619,’Hospital Dancer’,1,76),(9716,1661620,’Alberto’,2,77),(9716,1661621,’Ghost Dancer’,2,78),(9716,1661622,’Ghost Dancer’,1,79),(9716,1661623,’Ghost Dancer’,1,80),(9716,1661624,’Ghost Dancer’,2,81),(9716,1661625,’Ghost Dancer’,1,82),(9716,1661626,’Ghost Dancer’,2,83),(9716,121294,’Rapper’,2,84),(9716,1661627,’Rapper’,2,85),(9716,1661628,’Rapper’,2,86),(9716,1661629,’Trick-or-Treat Child’,2,87),(9716,1661630,’Trick-or-Treat Child’,1,88),(9716,1661631,’Trick-or-Treat Child’,2,89),(9716,1661632,’Trick-or-Treat Child’,1,90),(9716,1661633,’Trick-or-Treat Child’,2,91),(9716,1661634,’Trick-or-Treat Child’,2,92),(9716,1661635,’Bob\’s Doctor’,2,93),(9716,1661636,’Groucho Party Dancer’,2,94),(9716,1661637,’Groucho Party Dancer’,2,95),(9716,1661638,’Groucho Party Dancer’,2,96),(9716,1661639,’Groucho Party Dancer’,1,97),(9716,1661640,’Groucho Party Dancer’,1,98),(9716,1661641,’Groucho Party Dancer’,2,99),(9716,1661642,’Groucho Party Dancer’,2,100),(9716,1661643,’Groucho Party Dancer’,2,101),(9716,1661644,’Helen Miles Singer’,1,102),(9716,1661645,’Helen Miles Singer’,2,103),(9716,1661646,’Helen Miles Singer’,2,104),(9716,1661647,’Helen Miles Singer’,2,105),(9716,1661648,’Helen Miles Singer’,1,106),(9716,1661649,’Helen Miles Singer’,2,107),(9716,1661650,’Helen Miles Singer’,1,108),(9716,1661651,’Helen Miles Singer’,2,109),(9716,1661652,’Helen Miles Singer’,2,110),(9716,1661653,’Helen Miles Singer’,1,111),(9716,1661654,’Helen Miles Singer’,1,112),(9716,1661655,’Helen Miles Singer’,1,113),(9716,1661656,’Helen Miles Singer’,0,114),(9716,1661657,’Cigar Girl (uncredited)’,1,115),(9716,1661658,’Harry Winston Dancer (uncredited)’,1,116),(9074,2231,’Derrick Vann’,2,0),(9074,26510,’Andy Fiddler’,2,1),(9074,10843,’Joey Kane’,2,2),(9074,15860,’Agent Peters’,2,3),(9074,56910,’Lt. Rita Carbone’,1,4),(9074,53650,’Booty’,2,5),(9074,170152,’Susan’,1,6),(9074,54819,’Dara Vann’,1,7),(9074,5946,’Second I.A. Agent’,2,8),(9074,122491,’Homeless Man’,2,9),(9074,262720,’Laptop Guy’,2,10),(9074,180881,’Ted’,0,11),(9074,162747,’Flight Attendant’,1,12),(9074,209539,’Cab Driver’,0,13),(9074,44237,’Uniform Cop on PA’,2,14),(9074,1077799,’Rookie’,0,15),(9074,38563,’Tall Agent’,2,16),(9074,166510,’Booking Officer’,2,17),(9074,1077800,’Kate Vann’,0,18),(9074,201782,’Phone Agent’,2,19),(9074,1235524,’Big Kim’,0,20),(9074,90461,’Cashier’,1,21),(9074,1544799,’Guard’,2,22),(3509,6384,’Fred/Bob Arctor’,2,0),(3509,1920,’Donna Hawthorne’,1,1),(3509,57755,’Ernie Luckman’,2,2),(3509,3223,’James Barris’,2,3),(3509,32238,’Brown Bear Lodge Host’,2,4),(3509,32239,’Cop’,2,5),(3509,32240,’Waitress’,0,6),(3509,32241,’Doctor 1′,0,7),(3509,32242,’Doctor 2′,2,8),(3509,32243,’Arctor\’s Wife’,0,9),(3509,51792,’Charles Freck’,2,10),(3509,157534,’Creature’,0,11),(3509,571230,’Mike’,0,12),(3509,20496,’New Path Farm Manager’,0,13),(3509,994259,’Donald’,2,14),(3509,57970,’Activist’,2,15),(3902,112,’Jude’,1,0),(3902,1810,’Robbie’,2,1),(3902,1231,’Alice’,1,3),(3902,17064,’Arthur’,2,4),(3902,4273,’Claire’,1,5),(3902,1812,’Coco Rivington’,1,6),(3902,3894,’Jack/Pastor John’,2,7),(3902,34111,’Woody’,2,7),(3902,1205,’Billy’,2,8),(3902,212,’Alan Ginsberg’,2,9),(3902,10823,’Narrator’,2,10),(3902,87461,’Hobo Joe’,2,11),(3902,2676,’Mrs. Arvin’,1,12),(3902,54246,’Morris Bernstein / Barker’,2,13),(3902,18517,’Carla Hendricks’,1,14),(3902,21089,’Keenan Jones / Garrett’,2,15),(3902,2841,’Grace’,1,16),(3902,1413184,’Brass Band Singer’,0,17),(4960,1233,’Caden Cotard’,2,0),(4960,2206,’Hazel’,1,1),(4960,10431,’Maria’,1,2),(4960,1812,’Claire Keen’,1,3),(4960,2229,’Adele Lack’,1,4),(4960,1639,’Tammy’,0,5),(4960,119232,’Sammy Barnathan’,2,6),(4960,17180,’Olive (4 years old)’,0,7),(4960,15250,’Madeleine Gravis’,1,8),(4960,1902,’Ellen Bascomb / Millicent Weems’,1,9),(4960,205701,’Actress Playing Claire’,1,10),(4960,17488,’Actress Playing Frances’,1,11),(4960,87007,’Burning House Realtor’,1,12),(4960,77013,’Ellen\’s Mother’,1,13),(4960,126713,’Warehouse Realtor’,1,14),(4960,127069,’Like Clockwork Patient’,0,15),(4960,1371296,’Medic’,2,16),(128,622,’Ashitaka (voice)’,0,0),(128,20330,’San (voice)’,1,1),(128,20331,’Eboshi-gozen (voice)’,0,2),(128,20332,’Jiko-bu00f4 (voice)’,2,3),(128,20333,’Kouroku (voice)’,2,4),(128,20334,’Gonza (voice)’,2,5),(128,613,’Toki (voice)’,0,6),(128,20335,’Yama-inu (voice)’,0,7),(128,20336,’Tatari-gami (voice)’,0,8),(128,20337,’Usi-kai (voice)’,0,9),(128,20338,’Moro-no-kimi (voice)’,0,10),(128,20339,’Hii-sama (voice)’,0,11),(128,20340,’Okkoto-nusi (voice)’,2,12),(128,20329,’Woman in Iron Town (voice)’,1,13),(7299,3894,’John Preston’,2,0),(7299,17637,’Brandt’,2,1),(7299,1639,’Mary O\’Brien’,0,2),(7299,2464,’Dupont’,2,3),(7299,48,’Errol Partridge’,2,4),(7299,10862,’Seamus’,2,5),(7299,43454,’Officer in Charge’,0,6),(7299,28848,’Father’,2,7),(7299,886,’Ju00fcrgen’,2,8),(7299,49486,’Chemist’,2,9),(7299,52399,’Evidentiary Storage Officer’,0,10),(7299,52400,’Gate Guard’,2,11),(7299,52401,’Robbie Preston’,2,12),(7299,52402,’Preston\’s Wife’,0,13),(7299,52403,’Lisa Preston’,0,14),(7299,27406,’Guard’,2,15),(7299,15196,’Proctor’,2,16),(7299,213904,’Reading Room Proprietor’,2,17),(7299,62892,’Crematory Technician’,2,18),(8953,43662,’James Ray Steam (voice)’,1,0),(8953,70120,’Dr. Eddie Steam#’,0,1),(8953,70121,’Dr. Lloyd Steam’,2,2),(8953,70122,’Scarlett O\’Hara’,1,3),(8953,70123,’Robert Stephenson’,0,4),(8953,70124,’David’,0,5),(8953,4990,’Freddie’,2,6),(6968,678,’Ulrike Meinhof’,1,0),(6968,677,’Andreas Baader’,2,1),(6968,22687,’Gudrun Ensslin’,1,2),(6968,5511,’Brigitte Mohnhaupt’,1,3),(6968,3933,’Holger Meins’,0,4),(6968,46216,’Jan Karl Raspe’,2,5),(6968,19895,’Peter-Ju00fcrgen Boock’,0,6),(6968,39296,’Horst Mahler’,2,7),(6968,5644,’Petra Schelm’,1,8),(6968,2310,’Horst Herold’,2,9),(6968,1086,’Herolds Assistent’,2,10),(6968,1329144,’Christian Klar’,0,11),(6968,6268,’Rudi Dutschke’,2,12),(6968,1852,’Peter Homann’,2,13),(6968,16783,’Susanne Albrecht’,1,14),(6968,684,’Josef Bachmann’,2,15),(6968,848,’Klaus Rainer Ru00f6hl’,2,16),(6968,18154,’Astrid Proll’,1,17),(6968,38371,’Ingrid Schubert’,1,18),(6968,23182,’Stefan Aust’,2,19),(6968,683,’Hanne’,1,20),(6968,8199,’Richter Dr. Prinzing’,2,21),(6968,17547,’Petra \’Peggy\’ Schoenau’,1,22),(6968,697,’Helmut Ensslin’,2,23),(6968,4539,’Ju00fcrgen Ponto’,2,24),(6968,21743,’Siegfried Buback’,2,25),(6968,16720,’Hanns Martin Schleyer’,2,26),(6968,23122,’Irmgard Mu00f6ller’,1,27),(6968,33682,’Sieglinde Hofmann’,1,28),(6968,71589,’Willy Peter Stoll’,2,29),(6968,21746,’Thorwald \’Thorsten\’ Proll’,0,30),(6968,147881,’Manfred Grashof’,2,31),(6968,1004832,’Hanna Krabbe’,0,32),(6968,44332,’Siegfried Hausner’,0,33),(6968,19230,’Gerhard Mu00fcller’,2,34),(6968,36325,’Jochen’,2,35),(6968,36324,’Benno Ohnsorg’,2,36),(6968,1249903,’Telefonistin Springer Verlag’,0,37),(6968,37411,’Frau Buddenberg’,1,38),(6968,26233,’Gu00fcnter von Drenkmann’,0,39),(6968,51651,’Gu00fcnther Scheicher’,0,40),(6968,1094448,’u00c4gyptischer Fahrer’,2,41),(581,1269,’Lieutenant Dunbar’,2,0),(581,1581,’Stands With A Fist’,1,1),(581,6804,’Kicking Bird’,2,2),(581,7853,’Wind In His Hair’,2,3),(581,7862,’Ten Bears’,0,4),(581,7863,’Black Shawl’,1,5),(581,7866,’Timmons’,2,6),(581,7867,’Lieutenant Elgin’,2,7),(581,7868,’Major Fambrough’,2,8),(581,7869,’Stone Calf’,0,9),(581,7871,’Smiles A Lot’,0,10),(581,7872,’Otter’,2,11),(581,7873,’Worm’,0,12),(581,7874,’Spivey’,2,13),(581,7875,’Pretty Shield’,0,14),(581,140250,’Sergeant Pepper’,2,15),(581,21380,’Sergeant Bauer’,2,16),(581,3206,’Edwards’,2,17),(581,52145,’Major’,2,18),(581,14854,’General Tide’,2,19),(581,1080276,’Christine’,0,20),(581,1160349,’Christine\’s Mother’,0,21),(581,1416085,’Big Warrior’,0,22),(581,1444164,’Escort Warrior’,0,23),(581,4024,’Sioux #1 / Warrior #1′,2,24),(581,240609,’Sioux #2 / Warrior #2′,0,25),(581,15853,’Toughest Pawnee’,2,26),(581,162972,’Pawnee #1′,0,27),(581,1444165,’Pawnee #2′,0,28),(581,1444166,’Pawnee #3′,0,29),(581,1444167,’Sioux Warrior’,0,30),(581,1444168,’Sioux Warrior’,0,31),(581,1444169,’Sioux Courier’,0,32),(581,1444170,’Kicking Bird\’s Son’,0,33),(581,1444171,’Kicking Bird\’s Eldest Son’,0,34),(581,1444172,’Kicking Bird\’s Daughter’,0,35),(581,1444173,’Village Mother’,0,36),(581,139999,’Guard’,0,37),(581,1412253,’General\’s Aide’,2,38),(581,1444174,’Confederate Cavalryman’,0,39),(581,1444175,’Confederate Soldier’,0,40),(581,1444176,’Confederate Soldier’,0,41),(581,1444177,’Wagon Driver’,0,42),(581,1444178,’Union Soldier’,0,43),(581,96636,’Tucker’,0,44),(581,1444179,’Ray’,0,45),(581,1444180,’Ambush Wagon Driver’,0,46),(581,1444181,’Cisco (horse)’,0,47),(581,1444182,’Two Socks (wolf)’,0,48),(581,1444183,’Two Socks (wolf)’,0,49),(581,97405,’Willie’,0,50),(581,1503031,’Ambush Wagon Driver’,0,51),(581,1175469,’Captain Cargill – extended version’,0,52),(581,139316,’Settler (uncredited)’,0,53),(581,1503032,’Union Soldier (uncredited)’,0,54),(581,7847,’Doctor (uncredited)’,2,55),(581,1591740,’Union soldier (uncredited)’,0,56),(4232,15234,’Deputy Dwight \’Dewey\’ Riley’,2,0),(4232,9206,’Sidney Prescott’,1,1),(4232,14405,’Gale Weathers’,1,2),(4232,26457,’Stu Macher’,2,3),(4232,16850,’Tatum Riley’,1,4),(4232,22108,’Billy Loomis’,2,5),(4232,69597,’Casey Becker’,1,6),(4232,6213,’Randy Meeks’,0,7),(4232,6951,’Kenny Jones’,2,8),(4232,13660,’Sheriff Burke’,2,9),(4232,23626,’Cotton Weary’,2,10),(4232,51957,’Phone Voice (voice)’,0,11),(4232,10827,’Steven Orth’,2,12),(4232,101312,’Mr. Becker’,2,13),(4232,101313,’Neil Prescott’,2,14),(4232,1070,’Mrs. Riley’,1,15),(4232,31903,’Principal Arthur Himbry’,2,16),(4232,37366,’Obnoxious Reporter’,1,17),(4232,5140,’Fred the Janitor’,2,18),(9378,4252,’Arthur Kriticos’,2,0),(9378,6368,’Kalina Oretzia’,1,1),(9378,26457,’Dennis Rafkin’,2,2),(9378,21596,’Kathy Kriticos’,1,3),(9378,21360,’Damon’,2,4),(9378,1003356,’Robert \’Bobby\’ Kriticos’,2,5),(9378,238825,’Maggie Bess’,1,7),(9378,1164,’Cyrus Kriticos’,2,8),(9378,62911,’Benjamin Moss’,2,9),(9378,229167,’Cyrus\’ Assistant’,2,10),(9378,191865,’Team Member’,2,11),(9378,1546586,’Team Member’,2,12),(9378,105791,’Team Member’,2,13),(9378,945793,’Billy Michaels, The First Born Son’,2,14),(9378,1546587,’Jimmy \’The Gambler\’ Gambino, The Torso’,0,15),(9378,79343,’Susan LeGrow, The Bound Woman’,1,16),(9378,132345,’Jean Kriticos, The Withered Lover’,1,17),(9378,1546589,’Dana Newman, The Angry Princess’,0,19),(9378,56750,’Isabella Smith, The Pilgrimess’,1,20),(9378,114894,’Harold Shelburne, The Great Child’,2,21),(9378,1546590,’Margaret Shelburne, The Dire Mother’,1,22),(9378,1546591,’George Markley, The Hammer’,2,23),(9378,1546592,’Ryan Kuhn, The Jackal’,2,24),(9378,43299,’Breaker Mahoney, The Juggernaut’,2,25),(9378,198287,’Royce Clayton, The Torn Prince’,2,26),(694,514,’Jack Torrance’,2,0),(694,10409,’Wendy Torrance’,0,1),(694,10410,’Danny Torrance’,2,2),(694,7077,’Dick Hallorann’,2,3),(694,10411,’Stuart Ullman’,2,4),(694,694,’Delbert Grady’,2,5),(694,592,’Lloyd the Bartender’,0,6),(694,10412,’Doctor’,1,7),(694,16504,’Larry Durkin’,2,8),(694,72742,’Bill Watson’,2,9),(694,1413939,’Young Woman in Bath’,0,10),(694,1413940,’Old Woman in Bath’,0,11),(105,521,’Marty McFly’,2,0),(105,1062,’Dr. Emmett Brown’,2,1),(105,1063,’Lorraine Baines’,1,2),(105,1064,’George McFly’,2,3),(105,1065,’Biff Tannen’,2,4),(105,1066,’Jennifer Parker’,1,5),(105,1067,’Dave McFly’,2,6),(105,1068,’Linda McFly’,1,7),(105,1069,’Sam Baines’,0,8),(105,1070,’Stella Baines’,1,9),(105,1072,’Mr. Strickland’,2,10),(105,1074,’Marvin Berry’,0,11),(105,1954,’Match’,2,12),(105,11673,’Skinhead’,2,13),(105,1953,’3-D’,2,14),(105,84494,’Goldie Wilson’,0,15),(105,97708,’Babs’,0,16),(105,1116544,’Betty’,1,17),(105,172280,’Clocktower Lady’,1,18),(105,97718,’Pa Peabody’,2,19),(105,129319,’Ma Peabody’,1,20),(105,184030,’Sherman Peabody’,2,21),(105,1200788,’Daughter Peabody’,0,22),(105,94500,’Milton Baines’,2,23),(105,139044,’Sally Baines’,0,24),(105,18708,’Dixon’,2,25),(105,238572,’Terrorist’,0,26),(105,1020340,’Terrorist Van Driver’,2,27),(105,21065,’Scooter Kid #1′,2,28),(105,158713,’Scooter Kid #2′,0,29),(105,7139,’Lou’,2,30),(105,99725,’Cop’,2,31),(105,77874,’Bystander #1′,1,32),(105,160343,’Bystander #2′,2,33),(105,3038,’Guy #1′,0,34),(105,175060,’Girl #1′,0,35),(105,54564,’Red Thomas – The Bum’,2,36),(105,1200791,’Starlighter’,0,37),(105,1200792,’Starlighter’,0,38),(105,1200793,’Starlighter’,0,39),(105,1200794,’Starlighter’,0,40),(105,964124,’Pinhead’,2,41),(105,1200796,’Pinhead’,0,42),(105,180468,’Pinhead’,0,43),(105,16474,’Man driving jeep – 1985 (uncredited)’,2,44),(105,9971,’1955 Radio Announcer (voice) (uncredited)’,2,45),(105,100600,’TV Newscaster (uncredited)’,1,46),(105,1200797,’High School Girl (uncredited)’,0,47),(105,168702,’High School Band Audition Judge (uncredited)’,2,48),(105,553735,’Student (uncredited)’,0,49),(105,1208039,’Wilbur (uncredited)’,0,50),(129,19587,’Chihiro (voice)’,0,0),(129,19588,’Haku (voice)’,0,1),(129,19589,’Yubaba (voice)’,1,2),(129,19590,’Chihiro\’s Father (voice)’,0,3),(129,19591,’Chihiro\’s Mother (voice)’,0,4),(129,19592,’Aogaeru (voice)’,1,5),(129,19594,’Lin (voice)’,0,6),(129,40450,’Bandai-gaeru (voice)’,2,7),(129,554423,’Kawa no Kami (voice)’,0,8),(129,20334,’Chichiyaku (voice)’,2,9),(129,544088,’Aniyaku (voice)’,2,10),(129,225730,’Bu00f4h (voice)’,2,11),(129,119243,’Kamaju00ee (voice)’,0,12),(129,554612,’Kaonashi (voice)’,0,13),(129,1039220,’Oshirasama (voice)’,2,14),(129,1243817,'(voice)’,0,15),(129,1608518,'(voice)’,0,16),(129,554367,'(voice)’,1,17),(129,1251804,'(voice)’,0,18),(2669,2461,’Fletcher Christian’,2,0),(2669,4173,’Lieutenant William Bligh’,2,1),(2669,3359,’Admiral Hood’,2,2),(2669,9126,’Captain Greetham’,2,3),(2669,11856,’John Fryer’,2,4),(2669,1369,’William Cole’,2,5),(2669,26854,’Edward Young’,2,6),(2669,3896,’Charles Churchill’,2,7),(2669,26855,’Ku00f6nig Tynah’,0,8),(2669,26856,’Mauatua’,0,9),(2669,26857,’John Adams’,0,10),(2669,16273,’David Nelson’,2,11),(2669,26858,’Dr. John Huggan’,0,12),(2669,26859,’Thomas Heywood’,0,13),(2669,26860,’John Smith’,2,14),(2669,26861,’William McCoy’,0,15),(2669,26862,’Matthew Quintal’,2,16),(2669,26863,’John Mills’,2,17),(2669,974,’Thomas Ellison’,2,18),(2669,24605,’William Purcell’,2,19),(2669,26864,’John Norton’,0,20),(2669,26865,’Robert Lamb’,0,21),(2669,26866,’Michael Byrne’,0,22),(2669,26867,’James Valentine’,0,23),(2669,14755,’Richter’,0,24),(2669,26868,’Ku00f6nig Tynahs Frau’,0,25),(2669,26869,’Lieutenant William Blighs Frau’,0,26),(2669,26870,’Ku00f6nig Tynahs Berater’,0,27),(2757,2963,’Charlie/Donald Kaufman’,2,0),(2757,5064,’Susan Orlean’,1,1),(2757,2955,’John Laroche’,2,2),(2757,3063,’Valerie Thomas’,1,3),(2757,2617,’Amelia Kavan’,1,4),(2757,17402,’Marty Bowen’,2,5),(2757,1248,’Robert McKee’,2,6),(2757,1579,’Caroline Cunningham’,1,7),(2757,29861,’Matthew Osceola’,2,8),(2757,29862,’Ranger Tony’,2,9),(2757,69302,’Russell’,2,10),(2757,17005,’Augustus Margary’,2,11),(2757,15439,’Buster Baxley’,2,12),(2757,20750,’Alice the Waitress’,1,13),(2757,1635972,’Randy’,2,14),(2757,6916,’Defense Attorney’,2,15),(2757,21142,’Prosecutor’,2,16),(2757,323,’Orlean\’s Husband’,2,17),(2757,1472602,’Laroche\’s Mom’,1,18),(2757,17449,’David’,2,19),(2757,1236853,’Orlean Dinner Guest’,1,20),(2757,1263449,’Restaurant Customer (uncredited)’,2,22),(2757,6949,’Himself (uncredited)’,2,23),(2757,2229,’Herself (uncredited)’,1,24),(2757,3036,’Himself (uncredited)’,2,25),(1878,85,’Raoul Duke’,2,0),(1878,1121,’Dr. Gonzo / Oscar Z. Acosta’,2,1),(1878,2219,’Hitchhiker’,2,2),(1878,6886,’Lucy’,1,3),(1878,6913,’Waitress at North Star Cafe’,1,4),(1878,2048,’Highway Patrolman’,2,5),(1878,6941,’Blonde TV Reporter’,1,6),(1878,19728,’Magazine Reporter at Mint 400′,2,7),(1878,381,’Desk Clerk at Mint Hotel’,1,8),(1878,2169,’Ron Bumquist’,2,9),(1878,37221,’Carnie Talker’,2,10),(1878,14886,’Lacerda’,2,11),(1878,11059,’Road Person’,2,12),(1878,35159,’Frog-Eyed Woman’,1,13),(1878,5048,’Judge’,2,14),(1878,29712,’Hoodlum’,2,15),(1878,1237,’Hippie/Musician’,2,16),(1878,22227,’Sven, Flamingo Hotel Clerk’,2,17),(1878,31006,’Police Chief’,2,18),(1878,8857,’Herself (voice)’,1,19),(1878,3981,’Alice the Maid’,1,20),(1878,10987,’Wee Waiter’,2,21),(1878,21142,’Mint Hotel Clerk’,2,22),(1878,60916,’Shopper’,0,23),(1878,18262,’Dune Buggy Driver’,2,24),(1878,1580500,’Shopper’,0,25),(1878,1817897,’North Star Waitress’,0,26),(1878,19724,’Other Duke in Matrix Flashback (uncredited)’,2,27),(854,206,’Stanley Ipkiss / The Mask’,2,0),(854,6941,’Tina Carlyle’,1,1),(854,42168,’Mrs. Peenman’,1,2),(854,53400,’Irv’,2,3),(854,53401,’Burt’,2,4),(854,20899,’Lieutenant Mitch Kellaway’,2,5),(854,11803,’Dorian Tyrrell’,2,6),(854,1219,’Peggy Brandt’,1,7),(854,53402,’Charlie Schumaker’,2,8),(854,53403,’Niko’,2,9),(854,29214,’Dancer’,1,10),(854,38951,’Freeze’,2,11),(854,1219157,’Doyle’,0,12),(854,111078,’Sweet Eddy’,2,13),(854,15372,’Bobby the Bouncer’,2,14),(854,131667,’Dr. Arthur Neuman’,2,15),(2280,31,’Joshua Josh Baskin’,2,0),(2280,20,’Susan’,1,1),(2280,1162,’MacMillan’,2,2),(2280,11512,’Paul’,2,3),(2280,57422,’Billy’,2,4),(2280,62123,’Young Josh’,2,5),(2280,16165,’Scotty Brennen’,2,6),(2280,2167,’Mrs. Baskin’,1,7),(2280,143205,’Mr. Baskin’,2,8),(2280,123728,’Gym Teacher’,2,9),(2280,1073814,’Cynthia Benson’,0,10),(2280,1073816,’Freddie Benson’,0,11),(2280,80138,’Cynthia\’s Friend’,0,12),(2280,166788,’Derek’,2,13),(2280,994134,’Ticket Taker’,0,14),(496,6730,’Borat Sagdiyev’,2,0),(496,6734,’Azamat Bagatov’,2,1),(496,6735,’Luenell’,1,2),(496,6736,’Herself’,1,3),(496,1082650,’Himself’,0,4),(496,104882,’Himself’,0,5),(496,1123205,’Herself’,0,6),(496,1123206,’Prime Minister of Kazakhstan’,0,7),(496,1402792,’Himself – Fraternity Member (uncredited)’,0,8),(496,1379499,’Pride Dancer (uncredited)’,0,9),(496,1402793,’Kazakh Swimmer (uncredited)’,0,10),(496,1402794,’Himself – U.S. Congressman (uncredited)’,0,11),(8835,368,’Elle Woods’,1,0),(8835,36422,’Emmett Richmond’,2,1),(8835,11826,’Vivian Kensington’,1,2),(8835,56045,’Warner Huntington III’,2,3),(8835,8536,’Professor Callahan’,2,4),(8835,38334,’Paulette Bonafontu00e9′,1,5),(8835,11318,’Professor Stromwell’,1,6),(8835,17303,’Brooke Taylor Windham’,1,7),(8835,22126,’Margot’,1,8),(8835,10402,’Serena’,1,9),(8835,90609,’Dorky David Kidney’,2,10),(8835,1817,’Chutney Windham’,1,11),(8835,151384,’Enid’,1,12),(8835,21462,’Mrs. Windham Vandermark’,1,13),(8835,96553,’Enrique’,2,14),(8835,166576,’Maurice’,2,15),(8835,79497,’UPS Guy’,2,16),(8835,66561,’Reporter’,1,17),(8835,42138,’Reporter’,0,18),(8835,1354806,’Another Sister’,1,19),(8835,168897,’Nervous 1L Girl’,1,20),(157,1748,’Admiral James T. Kirk’,2,0),(157,1749,’Capt. Spock/Elevator Voice’,2,1),(157,1750,’Dr. Leonard McCoy’,0,2),(157,1751,’Montgomery Scott’,2,3),(157,1752,’Hikaru Sulu’,0,4),(157,1754,’Pavel Chekov’,2,5),(157,1753,’Cmdr. Uhura’,1,6),(157,1795,’Dr. David Marcus’,2,7),(157,1062,’Cmdr. Kruge’,2,8),(157,1819,’Lt. Saavik’,1,9),(157,1820,’Ambassador Sarek’,2,10),(157,1829,’Spock…Age 9′,2,11),(157,1830,’Spock…Age 13′,0,12),(157,1831,’Spock…Age 17′,2,13),(157,1832,’Spock at age 25′,0,14),(157,3362,’Vulcan High Priestess’,1,15),(157,15860,’First Officer’,2,16),(157,65568,’Captain Styles’,0,17),(8643,350,’Erin Bruner’,1,0),(8643,207,’Father Moore’,2,1),(8643,55152,’Ethan Thomas’,2,2),(8643,53828,’Emily Rose’,1,3),(8643,6074,’Dr. Mueller’,0,4),(8643,54782,’Judge Brewster’,1,5),(8643,10132,’Karl Gunderson’,2,6),(8643,15319,’Dr. Briggs’,2,7),(8643,21041,’Dr. Adani’,1,8),(8643,14595,’Dr. Cartwright’,2,9),(8643,11831,’Dr. Vogel’,1,10),(8643,60606,’District Attorney’,2,11),(8643,27112,’Medical Examiner’,2,12),(8643,134608,’Alice’,1,13),(8643,143307,’Maria Rose’,0,14),(8643,1285527,’Emily\’s Sister #3′,0,15),(8643,173006,’University Professor’,2,16),(8643,82643,’Emily\’s Sister #2′,1,17),(8643,102748,’Nathaniel Rose’,2,18),(9043,6194,’Julie Morton’,1,0),(9043,3092,’Sybil Stone’,1,1),(9043,53714,’Amy Stone’,1,2),(9043,20212,’Everett Stone’,2,3),(9043,520,’Meredith Morton’,1,4),(9043,36422,’Ben Stone’,2,5),(9043,8977,’Kelly Stone’,2,6),(9043,31137,’Patrick Thomas’,0,7),(9043,142215,’Thad Stone’,2,8),(9043,53755,”,1,13),(816,12073,’Austin Powers / Dr. Evil’,2,0),(816,13918,’Vanessa Kensington’,1,1),(816,13919,’Basil Exposition’,2,2),(816,13920,’Mrs. Kensington’,1,3),(816,13922,’Scott Evil’,2,4),(816,13923,’Alotta Fagina’,1,5),(816,13924,’Frau Farbissina’,1,6),(816,13925,’Patty O\’Brien’,2,7),(816,9208,’Number two’,2,8),(816,16119,’Cmdr. Gilmour’,2,9),(816,23659,’Mustafa’,2,10),(816,1008676,’\’60s Model’,1,11),(816,170491,’\’60s Model’,1,12),(816,32288,’\’60s Model’,0,13),(816,34844,’Mod Girl’,1,14),(816,15661,’Johnson Ritter’,2,15),(816,2368,’Gen. Borschevsky’,2,16),(816,149682,’Fembot’,1,17),(816,1146942,’Gunman (uncredited)’,0,18),(816,82022,’Random Task’,0,19),(816,27592,’Casino Dealer’,2,20),(816,158009,’Fembot’,0,21),(816,52925,’Fembot’,0,22),(816,74036,’Cowboy’,2,23),(816,4,’Therapist’,1,24),(816,2224,’Verticon Guard’,2,25),(816,2224,’Verticon Guard (uncredited)’,2,26),(106,1100,’Major Alan \’Dutch\’ Schaeffer’,2,0),(106,1101,’Major George Dillon’,0,1),(106,1102,’Anna’,1,2),(106,1103,’Sergeant \’Mac\’ Eliot’,2,3),(106,1104,’Blain’,2,4),(106,1105,’Billy’,2,5),(106,1106,’Poncho Ramirez’,2,6),(106,1107,’General Phillips’,2,7),(106,1108,’Hawkins’,2,8),(106,1109,’Helicopter Pilot / Predator’,2,10),(106,20761,’Russian Officer (uncredited)’,2,11),(279,1164,’Antonio Salieri’,2,0),(279,3999,’Wolfgang Amadeus Mozart’,2,1),(279,4000,’Constanze Mozart’,1,2),(279,4002,’Leopold Mozart’,2,3),(279,4001,’Emanuel Schikaneder’,2,4),(279,4003,’Katerina Cavalieri’,1,5),(279,4004,’Emperor Joseph II’,2,6),(279,4005,’Mrs. Weber’,0,7),(279,38024,’Lorl’,1,8),(279,15833,’Count Arco’,2,9),(279,138413,’Count Orsini-Rosenberg’,0,10),(279,130,’Parody Commendatore’,2,11),(279,1077244,’Young Salieri’,0,13),(279,1217752,’Count Von Strack’,0,14),(279,1077245,’Karl Mozart’,0,15),(279,1077246,’Francesco Salieri’,0,16),(279,102262,’Kappelmeister Bonno’,0,17),(279,162127,’Archbishop Colloredo’,0,18),(279,943463,’Salieri\’s Servant’,2,19),(279,937277,’Papagena’,0,20),(279,1213048,’Father Vogler’,0,21),(279,141742,’Priest’,0,22),(279,1177398,’Baron Van Swieten’,0,23),(279,97165,’Hospital Attendant’,2,24),(279,3418,’Salieri\’s Valet’,2,25),(279,1397291,’Conductor’,2,26),(279,48162,’Wig Salesman’,2,27),(279,1397110,’Figaro in \’The Marriage of Figaro\”,0,28),(279,570399,’Count Almaviva in \’The Marriage of Figaro\”,0,29),(279,1524278,’Antonio in \’The Marriage of Figaro\”,0,30),(279,86377,’Don Giovanni in \’Don Giovanni\”,0,31),(279,1667750,’Dancer’,2,32),(279,1092033,’Czechoslovakian Actor’,0,33),(279,1546023,’Czechoslovakian Actor’,0,34),(279,227727,’Czechoslovakian Actor’,2,35),(279,1404469,’Czechoslovakian Actor’,0,36),(279,1192453,’Czechoslovakian Actor’,0,37),(279,77383,’Czechoslovakian Actor’,2,38),(279,25718,’Czechoslovakian Actor’,0,39),(279,235641,’Czechoslovakian Actor’,2,40),(279,1349159,’Czechoslovakian Actor’,0,41),(279,83880,’Czechoslovakian Actor’,2,42),(279,592075,’Czechoslovakian Actor’,0,43),(279,1381573,’Czechoslovakian Actor’,1,44),(279,1313173,’Czechoslovakian Actor’,0,45),(279,1404467,’Czechoslovakian Actor’,0,46),(279,14632,’Czechoslovakian Actor’,1,47),(279,1386029,’Queen of the Night in \’The Magic Flute\’ (singing voice) (uncredited)’,1,48),(279,1361525,’Susanna in \’The Marriage of Figaro\’ (singing voice) (uncredited)’,0,49),(279,1155233,’Cherubino in \’The Marriage of Figaro\’ (singing voice) (uncredited)’,0,50),(279,1338180,’Don Curzio in \’The Marriage of Figaro\’ (singing voice) (uncredited)’,0,51),(279,1562710,’Countess in \’The Marriage of Figaro\’ (singing voice) (uncredited)’,0,52),(279,1143395,’Basilio in \’The Marriage of Figaro\’ (singing voice) (uncredited)’,0,53),(279,1028318,’Figaro in \’The Marriage of Figaro\’ (singing voice) (uncredited)’,2,54),(279,1429460,’Count Almaviva in \’The Marriage of Figaro\’ / Don Giovanni in \’Don Giovanni\’ (singing voice) (uncredited)’,0,55),(279,553651,’Dr. Bartolo in \’The Marriage of Figaro\’ / Commendatore in \’Don Giovanni\’ (singing voice) (uncredited)’,0,56),(279,1134317,’Antonio in \’The Marriage of Figaro\’ / Leporello in \’Don Giovanni\’ (singing voice) (uncredited)’,0,57),(279,1334560,’Salieri\’s Student (uncredited)’,0,58),(279,1169110,’Cardinal (uncredited)’,0,59),(279,1093332,’Pope Clement (uncredited)’,0,60),(8617,29221,’Donna Keppel’,1,0),(8617,53368,’Bobby’,2,1),(8617,55463,’Claire’,1,2),(8617,39556,’Lisa Hines’,1,3),(8617,55464,’Michael’,2,4),(8617,53652,’Ronnie Heflin’,2,5),(8617,51670,’Richard Fenton’,2,6),(8617,17605,’Detective Winn’,2,7),(8617,21702,’Dr. Elisha Crowe’,1,8),(8617,7523,’Aunt Karen Turner’,1,9),(8617,34502,’Rick Leland’,2,10),(8617,5296,’Detective Nash’,2,11),(8617,96554,’Ms. Waters’,1,12),(8617,159913,’Dancer’,1,13),(8617,66560,’Officer Hicks’,2,14),(8617,155435,’Mrs. Hines’,0,15),(8617,115126,’Crissy Lynn’,1,16),(8617,57251,’Uncle Jack Turner’,2,17),(8617,92856,’April’,1,18),(8617,88038,’Taylor’,1,19),(8617,15010,’Mrs. Keppel’,1,20),(8617,1627987,’DJ Tyler’,0,21),(8617,26852,’Bellhop’,2,22),(5279,15735,’Mrs. Wilson’,1,0),(5279,2296,’Robert Parks’,2,1),(5279,10978,’Constance Trentham’,1,2),(5279,10988,’Louisa Stockbridge’,1,3),(5279,18325,’Ivor Novello’,2,4),(5279,5470,’Sylvia McCordle’,1,5),(5279,2441,’Anthony Meredith’,2,6),(5279,5658,’William McCordle’,2,7),(5279,9015,’Mary Maceachran’,1,8),(5279,20300,’Mrs. Croft’,1,9),(5279,1639,’Elsie’,0,10),(5279,27554,’Jennings’,2,11),(5279,20766,’George’,2,12),(5279,11864,’Henry Denton’,2,13),(5279,42626,’Jeremy Blond’,2,14),(5279,11275,’Inspector Thompson’,2,15),(5279,4391,’Lord Raymond Stockbridge’,2,16),(5279,38809,’Isobel McCordle’,1,17),(5279,40311,’Barnes’,2,18),(5279,937,’Probert’,2,19),(5279,36663,’Mabel Nesbitt’,1,20),(5279,12438,’Morris Weissman’,2,21),(5279,3555,’Arthur’,2,22),(5279,42627,’Freddie Nesbitt’,2,23),(5279,29235,’Lottie’,1,24),(5279,6366,’Rupert Standish’,2,25),(5279,11277,’Lavinia Meredith’,1,26),(5279,3550,’Bertha’,0,27),(5279,32990,’Dorothy’,1,28),(5279,1739314,’Sarah’,0,29),(9829,6569,’Captain Jason Dahl’,2,0),(9829,47538,’Deborah Welsh’,0,1),(9829,59688,’Sandra Bradshaw’,1,2),(9829,59689,’Lorraine G. Bay’,0,3),(9829,59686,’CeeCee Lyles’,0,4),(9829,59685,’First Officer LeRoy Homer’,0,5),(9829,59687,’Wanda Anita Green’,0,6),(9829,1913,’Jane Folger’,1,7),(9829,59690,’Todd Beamer’,2,8),(9829,59691,’William Joseph Cashman’,2,9),(9829,41517,’Thomas E. Burnett, Jr.’,2,10),(9829,59693,’Waleska Martinez’,0,11),(9829,59692,’Joseph DeLuca’,2,12),(9829,59695,’Colleen Fraser’,1,13),(9829,50117,’Jeremy Glick’,2,14),(9829,59694,’Linda Gronlund’,0,15),(9829,59697,’Lauren Catuzzi Grandcolas’,1,16),(9829,59696,’Deora Frances Bodley’,1,17),(9829,59698,’Kristin White Gould’,0,18),(9829,54124,’Georgine Rose Corrigan’,1,19),(9829,53480,’Ziad Jarrah’,2,20),(9829,52442,’Nicole Carol Miller’,1,21),(9829,101165,’Richard Guadagno’,2,22),(9829,1232501,’Donald Peterson’,2,23),(790,11782,’Stevie Wayne’,1,0),(790,8944,’Elizabeth Solley’,1,1),(790,7302,’Kathy Williams’,1,2),(790,11783,’John Houseman’,0,3),(790,11784,’Nick Castle’,2,4),(790,11785,’Dick Baxter’,0,5),(790,11786,’Dan O\’Bannon’,2,6),(790,11787,’Sandy Fadel’,1,7),(790,11788,’Andy’,0,8),(790,11066,’Father Malone’,2,9),(790,52622,’Al Williams’,2,10),(790,54564,’Tommy Wallace’,2,11),(790,161371,’Mrs. Kobritz’,0,12),(790,10380,’Dockmaster’,2,13),(790,83104,’Mel’,0,14),(9610,1100,’Conan’,2,0),(9610,10661,’Zula’,1,1),(9610,58181,’Bombaata’,2,2),(9610,3801,’Malak’,2,3),(9610,10134,’Akiro \’The Wizard\”,2,4),(9610,31364,’Queen Taramis’,1,5),(9610,46423,’Princess Jehnna’,1,6),(9610,10942,’Man Ape / Toth-Amon’,2,7),(9610,9596,’Grand Vizier’,2,8),(9610,20761,’Togra’,2,9),(9610,25504,’Dagoth’,0,10),(1578,380,’Jake La Motta’,2,0),(1578,4517,’Joey La Motta’,2,1),(1578,14702,’Vickie Thailer’,1,2),(1578,7164,’Salvy Batts’,2,3),(1578,17651,’Tommy Como’,2,4),(1578,17652,’Lenore’,1,5),(1578,17653,’Mario’,2,6),(1578,1241,’Man at Webster Hall Table (uncredited)’,2,7),(1578,4692,’Patsy’,2,8),(1578,1006721,’Charlie – Man with Como’,2,9),(1578,559279,’Emma – Miss 48\’s’,0,10),(1578,1498313,’Comedian’,0,11),(1578,16643,’Ring Announcer – Reeves Fight’,0,12),(1578,26874,’Fighting Soldier – Reeves Fight’,0,13),(1578,42290,’Ring Announcer – Janiro Fight’,2,14),(1578,122269,’Referee – Fox Fight’,0,15),(1578,948553,’Heckler – Fox Fight’,2,16),(1578,940212,’Joe Louis – Cerdan Fight’,2,17),(1578,175002,’Cornerman #1 – Cerdan Fight’,2,18),(1578,4130,’Referee – Third Robinson Fight’,0,19),(1578,1010,’Soda Fountain Clerk’,2,20),(1578,38159,’Janet’,0,21),(1578,2554,’Copa Waiter’,2,22),(1578,1422613,’Jackie Curtie’,0,23),(1578,120303,’Detroit Promoter’,2,24),(1578,174657,’J.R.’,2,25),(1578,1227157,’Linda’,0,26),(1578,104578,’Arresting Deputy #2′,0,27),(1578,14795,’Jeweler’,2,28),(1578,1032,’Barbizon Stagehand’,2,29),(1578,104601,’New Yorker (uncredited)’,0,30),(1578,1394703,’Restaurant Doorman (uncredited)’,0,31),(1578,135402,’Police officer (uncredited)’,0,32),(1578,1243306,’Heckler in Bar (uncredited)’,0,33),(1578,177205,’New Yorker (uncredited)’,2,34),(1578,222831,’Photographer (uncredited)’,0,35),(1578,25579,’Cornerman (uncredited)’,2,36),(1578,1095035,’Boxing Fan (uncredited)’,0,37),(1578,1317197,’Cornerman (uncredited)’,0,38),(1578,1265389,’Cornerman (uncredited)’,0,39),(1578,1214919,’Cornerman (uncredited)’,2,40),(1578,61241,’Patron at Nightclub (uncredited)’,2,41),(1578,134013,’Dancer (uncredited)’,2,42),(1578,1235718,’Party Dancer (uncredited)’,0,43),(1578,169362,’Jake\’s Daughter (uncredited)’,1,46),(1578,42090,’Reporter (uncredited)’,2,47),(1578,1888773,’Guido’,0,48),(2575,517,’Andrew Andy Osnard’,2,0),(2575,118,’Harold Harry Pendel’,2,1),(2575,8944,’Louisa Pendel’,1,2),(2575,10839,’Marta’,1,3),(2575,2039,’Michelangelo Mickie Abraxas’,2,4),(2575,26157,’Uncle Benny’,2,5),(2575,2462,’Francesca Deane’,0,6),(2575,10980,’Mark Pendel’,2,7),(2575,26161,’Sarah Pendel’,0,8),(2575,1173,’Rafi Domingo’,2,9),(2575,4790,’Teddy, the Reporter’,2,10),(2575,19152,’General Dusenbaker’,2,11),(2575,4253,’Ramon Rudd’,2,12),(2575,8537,’Cavendish’,2,13),(848,12688,’Galen’,2,0),(848,2275,’Valerian’,1,1),(848,12689,’Ulrich’,2,2),(848,12690,’Tyrian’,2,3),(848,12691,’Casiodorus Rex’,2,4),(848,12692,’Greil’,2,5),(848,12693,’Hodge’,2,6),(848,12694,’Princess Elspeth’,0,7),(848,202466,’Valerian\’s Father’,2,8),(848,591881,’Horsrik’,0,9),(848,27762,’Brother Jacopus’,2,10),(848,94807,’Henchman’,2,11),(848,1074685,’Victim’,0,13),(848,993534,’Urlander’,2,14),(848,1456409,’Henchman’,2,15),(522,85,’Ed Wood’,2,0),(522,2641,’Bela Lugosi’,2,1),(522,520,’Dolores Fuller’,1,2),(522,4687,’Kathy O\’Hara’,1,3),(522,4004,’Criswell’,2,4),(522,3173,’Reverend Lemon’,2,5),(522,7132,’Orson Welles’,2,6),(522,1532,’Bunny Breckinridge’,2,7),(522,5170,’Georgie Weiss’,2,8),(522,7133,’Paul Marco’,2,9),(522,7134,’Conrad Brooks’,2,10),(522,7136,’Tor Johnson’,0,11),(522,7137,’Loretta King’,1,12),(522,7138,’Ed Reynolds’,0,13),(522,7139,’Cameraman Bill’,2,14),(522,7140,’Makeup Man Harry’,2,15),(522,2141,’Dr. Tom Mason’,2,16),(522,7141,’Soundman’,2,17),(522,7142,’Camera Assistant’,2,18),(522,7143,’Tony McCoy’,2,19),(522,4452,’Vampira’,1,20),(522,4171,’Mr. Feldman’,2,21),(522,1916,’Rude Boss’,2,22),(522,1218174,’Security Guard’,0,23),(522,154073,’Old Crusty Man’,2,24),(522,27546,’Secretary #1′,1,25),(522,4766,’Secretary #2′,1,26),(522,97824,’Bartender’,0,27),(522,15800,’Salesman’,2,28),(522,136236,’Stage Guard’,2,29),(522,1845156,’Executive #1′,0,30),(522,1408508,’Executive #2′,2,31),(522,16643,’Ring Announcer’,0,32),(522,53601,’TV Show Host’,2,33),(522,218506,’TV Host\’s Assistant’,1,34),(522,162074,’Conservative Man’,2,35),(522,1225788,’Conservative Wife’,0,36),(522,58354,’Backer\’s Wife’,1,37),(522,938149,’Hick Backer’,0,38),(522,39430,’Southern Backer’,0,39),(522,545,’Valet’,2,40),(522,156741,’Waiter’,0,41),(522,58474,’Busboy’,2,42),(522,41279,’Potential Backer’,2,43),(522,141052,’Another Backer’,0,44),(522,22250,’Old Man McCoy’,2,45),(522,554248,’Professor Strowski’,0,46),(522,100592,’TV Horror Show Director’,2,47),(522,1813575,’Indian Musician’,2,48),(522,1196132,’Nurse’,1,49),(522,12889,’Doctor’,2,50),(522,3218,’Rental House Manager’,2,51),(522,1845370,’Wrestling Opponent’,0,52),(522,97856,’Theatre Manager’,0,53),(522,193063,’Angry Kid’,0,54),(522,1174939,’Tourist’,2,55),(522,1063614,’Tough Boy’,2,56),(522,1683090,’Photographer #1′,0,57),(522,157121,’Photographer #2′,2,58),(522,1568976,’Tor Johnson’,2,59),(522,188377,’Pilot / Strapping Young Man’,2,60),(522,55959,’Hammy Alien’,0,61),(522,1375144,’Sexy Pedestrian (uncredited)’,1,62),(522,34521,’Orson Welles (voice) (uncredited)’,2,63),(522,1116141,’Vampira\’s Friend (uncredited)’,0,64),(522,1116140,’Vampira\’s Friend (uncredited)’,0,65),(522,149216,’Car Vandal (uncredited)’,2,66),(522,1551605,’Extra (uncredited)’,2,67),(8408,54853,’Sarah’,0,0),(8408,54854,’John’,0,1),(8408,54855,’Captain Rhodes’,2,2),(8408,54856,’William McDermott’,2,3),(8408,54857,’Pvt. Miguel Salazar’,0,4),(8408,54858,’Dr. Logan’,2,5),(8408,54859,’Bub’,2,6),(8408,994134,’Steel’,0,7),(8408,170150,’Rickles’,2,8),(8408,15057,’Fisher’,0,9),(8408,1090356,’Miller’,0,10),(8408,107373,’Torrez’,0,11),(8408,59287,’Johnson’,2,12),(8408,31118,’Featured Zombie’,0,13),(8408,1090362,’Featured Zombie’,0,14),(8408,1813083,’Featured Zombie’,0,15),(8408,1813084,’Featured Zombie’,0,16),(8408,96021,’Featured Zombie’,1,17),(8408,1813087,’Featured Zombie’,0,18),(8408,1813088,’Featured Zombie’,0,19),(8408,1419418,’Featured Zombie’,0,20),(8408,1217615,’Featured Zombie’,2,21),(8408,1813093,’Featured Zombie’,0,22),(8408,1813094,’Featured Zombie’,0,23),(8408,1813098,’Featured Zombie’,0,24),(8408,1766863,’Featured Zombie’,0,25),(8408,1813099,’Featured Zombie’,0,26),(8408,1452428,’Featured Zombie’,0,27),(8408,1464484,’Featured Zombie’,0,28),(8408,1203390,’Featured Zombie’,0,29),(8408,91319,’Featured Zombie’,0,30),(8408,1813102,’Mustachioed Zombie biting Rickles\’ fingers off (uncredited)’,0,31),(8408,1813103,’2nd Dirty Pink Collared Shirted Zombie chasing Steel (uncredited)’,0,32),(8408,1813104,’Mine Zombie Chasing Steel (uncredited)’,0,33),(8408,1389928,’Mine Zombie Chasing Steel (uncredited)’,0,34),(8408,1813105,’Zombie Feasting on Fisher\’s Dead Body (uncredited)’,0,35),(8408,107372,’Spinaround Cave Zombie Shot by John (uncredited)’,0,36),(8408,104044,’Surgeon Zombie in Cave (uncredited)’,0,37),(8408,1636797,’Zombie with Yellow Apron (uncredited)’,2,39),(9389,8784,’Barthu00e9lu00e9my Karas’,2,0),(9389,2462,’Bislane Tasuiev’,0,1),(9389,6979,’Ilona Tasuiev’,0,2),(9389,378,’Paul Dellenbach’,2,3),(9389,65,’Jonas Muller’,2,4),(9389,743,’Nusrat Farfella’,2,5),(9389,1059105,’Karas’,0,6),(9389,1059106,’Bislane’,0,7),(9389,544659,’Ilona’,0,8),(9389,1295637,’Dellenbach’,0,9),(9389,1180477,’Nurses (voice)’,0,10),(9389,1619468,’Parisian (voice)’,2,11),(9389,1409656,’Parisian (voice)’,0,12),(9389,28848,’Montoya (voice)’,2,13),(9389,590963,’Jonas Muller (voice)’,0,14),(9626,1100,’Kalidor’,2,0),(9626,921,’Red Sonja’,1,1),(9626,45378,’Queen Gedren’,1,2),(9626,39782,’Falkon’,2,3),(9626,58210,’Prince Tarn’,2,4),(9626,653,’Ikol’,2,5),(9626,10942,’Brytag’,2,6),(9626,1229106,’Djart’,2,7),(9626,55654,’Varna’,1,8),(9626,120016,’Kendra, the High Priestess’,0,9),(9626,141117,’Gedren\’s Handmaid’,0,10),(9626,22796,’Red Sonja\’s Father’,2,11),(9626,51840,’Red Sonja\’s Mother’,0,12),(9626,25066,’Barlok, Red Sonja\’s Brother’,0,13),(9626,1231662,’Wizard’,2,14),(9626,1490390,’Kyobo’,0,15),(9626,70947,’Swordmaster’,2,16),(8363,21007,’Seth’,2,0),(8363,39995,’Evan’,2,1),(8363,54691,’Fogell’,2,2),(8363,19278,’Officer Slater’,2,3),(8363,19274,’Officer Michaels’,2,4),(8363,54692,’Becca’,1,5),(8363,54693,’Jules’,1,6),(8363,53208,’Nicola’,1,7),(8363,21131,’Francis’,2,8),(8363,18472,’Mark’,2,9),(8363,54694,’Homeless Guy’,2,10),(8363,54695,’Mindy’,1,11),(8363,54696,’Liquor Store Clerk’,2,12),(8363,54697,’Greg (Soccer Player)’,2,13),(8363,54698,’Gaby’,1,14),(8363,54699,’Jesse’,2,15),(8363,54700,’Shirley’,0,16),(8363,54701,’Miroki’,0,17),(8363,54702,’Prosthetic Leg Kid’,2,18),(8363,43372,’Evan\’s Mom’,1,19),(8363,54703,’Father with Bat’,0,20),(8363,54704,’Good Shopper Cashier’,2,21),(8363,54705,’Old Lady’,0,22),(8363,54706,’Good Shopper Security’,2,23),(8363,54708,’Period Blood Girl’,1,24),(8363,54709,’Quince Danbury’,2,25),(8363,54710,’Tut Long John Silver’,2,26),(8363,54711,’Patrick Manchester’,2,27),(8363,38582,’Benji Austin’,2,28),(8363,54712,’Billy Baybridge’,0,29),(8363,54713,’Coffee Fairmount’,2,30),(8363,41089,’James Masselin’,2,31),(8363,54714,’Wild Bill Cherry’,2,32),(8363,54715,’Kane Cloverdale’,0,33),(8363,54716,’Scarlett Brighton’,1,34),(8363,53607,’Tiger Greendragon’,2,35),(8363,54717,’Muffin Selby’,0,36),(8363,54718,’Mrs. Hayworth’,1,37),(8363,54719,’Gym Teacher’,2,38),(8363,54720,’Math Teacher’,2,39),(8363,54721,’Young Seth’,0,40),(8363,54722,’Young Becca’,1,41),(8363,54723,’Vagtastic Voyager’,0,42),(8363,54724,’Vagtastic Voyage Girl #1′,1,43),(8363,54725,’Vagtastic Voyage Girl #2′,1,44),(8363,54726,’Bartender’,0,45),(8363,54727,’Bus Driver’,0,46),(8363,54728,’Elementary Principal’,2,47),(8363,54729,’Party Teenager #1′,2,48),(8363,54730,’Party Teenager #2′,0,49),(8363,54731,’Party Teenager #3′,0,50),(8363,54732,’Teacher’,1,51),(8363,1116282,’Party Guest’,1,52),(8328,54499,’Andie West’,1,0),(8328,58368,’Chase Collins’,2,1),(8328,54500,’Blake Collins’,2,2),(8328,54502,’Sophie Donovan’,0,3),(8328,54503,’Moose’,2,4),(8328,54504,’Missy’,0,5),(8328,54505,’Felicia’,0,6),(8328,54506,’Tuck’,2,7),(8328,1189078,’Jenny Kido’,1,8),(8328,232499,’Cable’,2,9),(8328,54515,’Businesswoman on Subway’,0,10),(8328,63674,’Administrator’,1,11),(8328,38673,’Tyler’,2,12),(205,1896,’Paul Rusesabagina’,2,0),(205,2598,’Tatiana Rusesabagina’,1,1),(205,1733,’Colonel Oliver’,2,2),(205,2607,’General Bizimungu’,0,3),(205,73421,’Jack Daglish’,2,4),(205,1003,’Sabena Airlines President, Mr. Tillens’,2,5),(205,2602,’Dube’,2,6),(205,2599,’Roger Rusesabagina’,0,7),(205,2600,’Diane Rusesabagina’,0,8),(205,2603,’George Rutaganda’,2,9),(205,2606,’Gregoire’,2,10),(205,2608,’Odette’,0,11),(205,832,’Thomas Mirama’,2,12),(205,2609,’Fedens’,0,13),(205,1567414,’Jean Jacques’,2,14),(205,134766,’Head Chef’,0,15),(205,1012463,’Old Guard’,0,16),(205,2612,’Elys Rusesabagina’,0,17),(205,2482,’David’,2,18),(205,2613,’Peter’,0,19),(205,2614,’Benedict’,2,20),(205,2619,’Hutu Captain’,0,21),(205,2617,’Pat Archer’,1,22),(205,32562,’Priest’,2,24),(205,2618,’Hutu Lieutenant’,0,25),(205,2620,’Alice the Waitress’,0,26),(205,1821650,’Policeman’,0,27),(205,1821664,’Receptionist’,0,28),(1620,18082,’Agent 47′,2,0),(1620,15336,’Mike Whittier’,2,1),(1620,18182,’Nika Boronina’,1,2),(1620,17343,’Yuri Marklov’,2,3),(1620,4455,’Mikhail Belicoff’,2,4),(1620,31166,’Udre Belicoff’,2,5),(1620,18183,’Jenkins’,2,6),(1620,45849,’General Kormarov’,2,7),(1620,25078,’Bwana Qvie’,2,8),(1620,12983,’Captain Gudnayev’,2,9),(1620,9140,’Smith Jamison’,2,10),(1933,2227,’Grace Stewart’,1,0),(1933,2040,’Charles Stewart’,2,1),(1933,20051,’Anne Stewart’,1,2),(1933,20052,’Nicholas Stewart’,2,3),(1933,20053,’Mr. Edmund Tuttle’,2,4),(1933,20054,’Lydia’,1,5),(1933,20055,’Old Lady’,0,6),(1933,20056,’Mr. Marlish’,2,7),(1933,20057,’Mrs. Marlish’,1,8),(1933,20058,’Victor Marlish’,2,9),(1933,20059,’Assistant’,2,10),(1933,20060,’Second Assistant’,0,11),(1933,58068,’Mrs. Bertha Mills’,1,12),(679,10205,’Lieutenant Ellen Ripley’,1,0),(679,2712,’Corporal Dwayne Hicks’,2,1),(679,1736,’Hicks body double’,2,2),(679,781,’Carter J. Burke’,2,3),(679,2714,’L. Bishop’,2,4),(679,10206,’Rebecca Newt Jorden’,1,5),(679,2053,’Private W. Hudson’,2,6),(679,10207,’Lieutenant S. Gorman’,0,7),(679,3981,’Private J. Vasquez’,1,8),(679,10208,’Sergeant A. Apone’,2,9),(679,6576,’Private M. Drake’,2,10),(679,10212,’Private R. Frost’,0,11),(679,10209,’Corporal C. Ferro’,1,12),(679,10210,’Private D. Spunkmeyer’,2,13),(679,10211,’Corporal C. Dietrich’,0,14),(679,10213,’Private T. Crowe’,2,15),(679,1340211,’Private Wierzbowski’,2,16),(679,748,’Van Leuwen’,2,17),(679,1817689,’Aliens/Alien Queen’,0,18),(679,1653085,’ECA Rep’,1,19),(679,84890,’Insurance Man’,2,20),(679,1230759,’Med Tech’,1,21),(679,1179692,’Doctor’,2,22),(679,96991,’Cocooned Woman’,1,23),(679,1077325,’Alien Warrior’,2,24),(679,141014,’Newt\’s Father (uncredited)’,2,25),(3597,33259,’Julie James’,1,0),(3597,11863,’Helen Shivers’,1,1),(3597,11864,’Barry William Cox’,2,2),(3597,33260,’Ray Bronson’,2,3),(3597,20751,’Elsa Shivers’,0,4),(3597,16478,’Max Neurick’,2,5),(3597,17348,’Benjamin Willis’,2,6),(3597,8256,’Melissa Egan’,1,7),(3597,33262,’Officer David Caporizo’,2,8),(3597,33269,’Sheriff’,2,9),(3597,33271,’Deb’,1,10),(9675,13242,’Miles’,2,0),(9675,19159,’Jack’,2,1),(9675,12519,’Maya’,1,2),(9675,25540,’Stephanie’,1,3),(9675,57823,’Miles\’s Mother’,1,4),(9675,14984,’Victoria’,1,5),(9675,162342,’Cammi’,0,6),(9675,109740,’Christine Erganian’,1,7),(9675,1127469,’Mrs. Erganian’,0,8),(9675,177131,’Mike Erganian’,2,9),(9675,83781,’Miles\’s Building Manager’,2,10),(9675,17837,’Gary the Bartender’,2,11),(9675,14105,’Stephanie\’s Mother’,1,12),(9675,12545,’Frass Canyon Pourer’,2,13),(9675,22132,’Cammi\’s Husband’,2,14),(9675,12075,’Leslie Brough’,2,15),(9675,1571681,’Los Olivos Waitress’,0,16),(9675,1571682,’Siena’,0,17),(9988,56252,’Todd Wolfhouse / Young Baron Ludwig’,2,0),(9988,52049,’Barry / Blind Sikh’,2,1),(9988,52051,’Fink / Emcee’,2,2),(9988,56253,’Jan Wolfhouse’,2,3),(9988,22132,’Priest’,2,4),(9988,9599,’Great Gam Gam’,1,5),(9988,920,’Baron Wolfgang von Wolfhausen’,2,6),(9988,33017,’Soup Waiter’,2,7),(9988,56251,’Landfill / Gil / Sausage Lady’,2,8),(9988,61526,’Helmut’,0,9),(9988,61529,’German Producer’,0,10),(9988,61530,’Mr. Schniedelwichsen’,2,11),(9988,105648,’Rolf’,2,12),(9988,61534,’Inga’,0,13),(9988,61536,’Pim Scutney’,2,14),(9988,55636,’Johann von Wolfhaus’,2,15),(9988,1448113,’Sandy Cook’,0,16),(9988,61532,’Door Bouncer’,0,17),(9988,644,’Krista Krundle’,1,18),(9988,49201,’Herr Referee’,2,19),(9988,61535,’Mexican’,2,20),(9988,61527,’Aussie Sailor #1′,2,21),(9988,61528,’Aussie Sailor #2′,2,22),(9988,61531,’Little Boy’,0,23),(9988,1244933,’Spectator #2′,2,24),(9988,1763429,’\’Cops\’ Girl’,1,25),(948,9221,’Dr. Sam Loomis’,2,0),(948,8944,’Laurie Strode’,1,1),(948,15500,’Lynda van der Klok’,1,2),(948,11787,’Annie Brackett’,1,3),(948,14692,’The Shape’,2,4),(948,15516,’Michael Myers’,0,5),(948,15517,’Michael Myers (age 6)’,0,6),(948,11786,’Sheriff Leigh Brackett’,2,7),(948,15503,’Lindsey Wallace’,1,8),(948,15505,’Tommy Doyle’,2,9),(948,15506,’Bob Simms’,0,10),(948,1651878,’Judith Margaret Myers’,0,11),(948,15508,’Marion Chambers’,1,12),(948,13392,’Graveyard Keeper’,2,13),(948,15510,’Richie’,0,14),(948,15511,’Lonnie Elamb’,0,15),(948,15513,’Keith’,2,16),(948,15515,’Dr. Terence Wynn’,2,17),(948,15519,’Judith\’s Boyfriend’,0,18),(948,1205471,’Morgan Strode’,0,19),(948,11772,’Dead Mechanic (uncredited)’,2,20),(948,11770,’Paul, Annie\’s Boyfriend (voice) (uncredited)’,2,21),(948,152289,’Mr. Peter Myers (uncredited)’,0,22),(948,1205472,’Student (uncredited)’,0,23),(948,101971,’Sanitarium Nurse (uncredited)’,1,24),(7516,10859,’Richard Messner’,2,0),(7516,11477,’Donald Carruthers’,2,1),(7516,15998,’Primo Sparazza’,2,2),(7516,20752,’Serna’,2,3),(7516,10681,’Himself’,2,4),(7516,12799,’Buddy Israel’,2,5),(7516,880,’Jack Dupree’,2,6),(7516,26291,’Hollis Elmore’,2,7),(7516,4238,’Sir Ivy’,0,8),(7516,52855,’Beanie’,2,9),(7516,1271,’Stanley Locke’,2,10),(7516,52857,’Freeman Heller’,0,11),(7516,52859,’FBI Aid’,2,12),(7516,9624,’Top Coated Gunman’,0,13),(7516,36602,’Pistol Pete Deeks’,2,14),(7516,28657,’Bill’,2,15),(7516,72208,’Georgia Sykes’,1,16),(7516,2478,’Lazlo Soot’,2,17),(7516,79072,’Jeeves Tremor’,2,18),(7516,62064,’Darwin Tremor’,2,19),(7516,33192,’Hugo Croop’,2,20),(7516,40036,’Sharice Watters’,1,21),(7516,1680739,’McGarey’,2,22),(7516,21316,’Pasquale Acosta S.A. Gerald Diego’,2,23),(7516,65726,’Lester Tremor’,2,24),(7516,87003,’Morris Mecklen’,2,25),(7516,19898,’The Swede’,0,26),(7516,2555,’Victor Padiche’,2,27),(7516,23532,’Rupert \’Rip\’ Reed’,2,28),(7516,73456,’Hotel Receptionist’,1,29),(2752,2299,’Matt Sulivan’,2,0),(2752,27855,’Erica Sutton’,1,1),(2752,27858,’John Sullivan’,2,3),(2752,2684,’Susie’,1,4),(2752,27860,’Walter Sullivan’,2,5),(2752,27862,’Bev Sullivan’,1,6),(2752,57133,’Ryan’,2,7),(2752,1579,’Sam’,1,9),(2752,945734,’Bagel Boy’,2,10),(2752,5025,’Nicole’,1,11),(2752,2171,’Jerry Anderson’,0,12),(2752,34844,’Candy’,1,13),(9429,23659,’Steve Butabi’,2,0),(9429,58317,’Doug Butabi’,2,1),(9429,38334,’Hottie Cop’,1,2),(9429,61981,’Roxbury Bouncer’,2,3),(9429,8170,’Bridesmaid’,1,4),(9429,87295,’Richard Grieco’,2,5),(9429,34735,’Barbara Butabi’,1,6),(9429,6486,’Kamehl Butabi’,2,7),(9429,28640,’Emily Sanderson’,1,8),(9429,70260,’Fred Sanderson’,2,9),(9429,58058,’Craig’,2,10),(9429,9046,’Benny Zadir’,2,11),(9429,214142,’Hat Girl’,1,12),(9429,1219901,’Dooley’,2,13),(9429,1219901,’Dooey’,2,14),(9792,11022,’Doug Bukowski’,2,0),(9792,8183,’Ethel Carter’,1,1),(9792,5025,’Lynn Carter’,1,2),(9792,28660,’Brenda Carter’,1,3),(9792,59283,’Bobby Carter’,2,4),(9792,19453,’Gas Station Attendant’,2,5),(9792,1275,’Papa Jupiter’,2,6),(9792,19976,’Lizard’,2,7),(9792,15854,’Big Bob Carter’,2,8),(9792,59284,’Big Brain’,2,9),(9792,59285,’Goggle’,2,10),(9792,37008,’Pluto’,2,11),(9792,59286,’Ruby’,1,12),(9792,59287,’Cyst’,2,13),(9792,59288,’Baby Catherine’,0,14),(9310,3291,’Martin Tweed’,2,0),(9310,6065,’President Staton’,2,1),(9310,16855,’Sally Kendoo’,1,2),(9310,5293,’Chief of Staff’,2,3),(9310,21594,’William Williams’,2,4),(9310,38334,’Martha Kendoo’,1,5),(9310,54416,’Omer’,2,6),(9310,4726,’First Lady’,1,7),(9310,62856,’Chet Krogl’,2,8),(9310,68842,’Ittles’,2,9),(9310,20750,’Accordo’,1,10),(9310,156739,’Agha Babur’,2,11),(9310,205954,’Iqbal Riza’,2,12),(9310,66524,’Shazzy Riza’,1,13),(9310,21041,’Nazneen Riza’,1,14),(9310,6407,’Jessica’,1,15),(9310,39127,’Aunt Edna’,1,16),(9310,1005339,’Uncle Fitz’,2,17),(9310,166966,’Ali Riza’,2,18),(9310,136183,’Sholem Glickstein’,2,19),(9310,82103,’Mujeheddin Captain’,2,20),(9310,1658519,’Cameraman’,2,21),(9310,6564,’White House Butler’,2,22),(9310,83860,’Soldier Chuck’,0,23),(9310,1226519,’Stage Manager’,2,24),(9310,1658520,’White House Reporter’,1,25),(9310,995587,’Chinese Premiere’,2,26),(9310,36218,’Chinese Translator’,2,27),(9310,68495,’Marni’,1,28),(9310,28639,’Herself’,1,29),(9310,1359941,’Sally\’s Makeup Artist’,1,30),(9310,1659268,’Man in Line’,2,31),(9310,1341053,’Journalist’,2,32),(9310,5146,’Journalist’,2,33),(9310,1658521,’Journalist’,2,34),(9310,109687,’Terrorist Director’,2,35),(9310,557978,’Show Contestant’,2,36),(9310,94512,’Show Contestant’,1,37),(9310,1615108,’Show Contestant’,2,38),(9310,1658528,’Show Contestant’,1,39),(9310,1227898,’Show Contestant’,2,40),(9310,1659258,’Montage Performer’,2,41),(9310,1659264,’Montage Performer’,1,42),(9310,1452951,’Secret Service Man’,2,43),(9310,87281,’Oscar’,2,44),(9310,1004257,’Crew Member’,2,45),(9310,1659280,’Cohort’,2,46),(9310,1659281,’Makeup Girl (uncredited)’,0,47),(7304,8167,’Joey Gazelle’,2,0),(7304,52414,’Oleg Yugorsky’,2,1),(7304,21657,’Teresa Gazelle’,1,2),(7304,9046,’Detective Rydell’,2,3),(7304,10841,’Anzor Yugorsky’,2,4),(7304,21798,’Tommy \’Tombs\’ Perello’,2,5),(7304,29930,’Mila Yugorsky’,1,6),(7304,50586,’Nicky Gazelle’,2,7),(7304,52415,’Sal Gummy Bear Franzone’,2,8),(7304,27545,’Dez’,2,9),(7304,31167,’Edele’,1,10),(7304,28033,’Frankie Perello’,2,11),(7304,1381,’Ivan Yugorsky’,0,12),(7304,52416,’Divina’,1,13),(7304,37204,’Lester the Pimp’,2,14),(1491,819,’Eisenheim’,2,0),(1491,10860,’Sophie’,1,1),(1491,13242,’Inspector Uhl’,2,2),(1491,17328,’Crown Prince Leopold’,2,3),(1491,1665,’Josef Fischer’,2,4),(1491,162489,’Jurka’,2,5),(1491,27428,’Young Eisenheim’,2,6),(1491,73357,’Young Sophie’,1,7),(1491,39186,’Doctor / Old Man’,2,8),(1491,43024,’Loschek’,2,9),(1491,133031,’Herr Doebler’,0,10),(1491,147425,’Dr. Hofzinser’,0,11),(1491,1048648,’Count Rainer’,0,12),(1491,199055,’Von Thurnburg’,2,13),(1491,27678,’Willigut’,0,14),(1491,1315985,’Eisenheim\’s Father’,0,15),(1491,25730,’Eisenheim\’s Assistant’,2,16),(1491,1390260,’Mrs. Uhl’,1,17),(1491,25731,’Sophie\’s Driver’,0,18),(1491,25682,’Archduke’,0,19),(1491,25685,’Archduke’,2,20),(1491,1184330,’Frankel’,2,21),(1491,25670,’Spiritualist Leader’,2,22),(1491,1271584,’Arrested Man’,0,23),(1491,1022368,’Respectable Man’,2,24),(1491,183737,’Senior Officer’,0,25),(1491,137328,’Senior Officer’,0,26),(1491,25723,’Train Conductor’,0,27),(1491,1090382,’Audience Member’,2,29),(1491,1578092,’Audience Member’,0,30),(1491,155902,’Audience Member’,2,31),(1491,80325,’Audience Member’,2,32),(1491,25719,’Audience Member’,2,33),(1491,1350736,’Audience Member’,0,34),(1491,25659,’Young Father (uncredited)’,2,35),(2989,6929,’Madeleine’,1,0),(2989,29369,’Melanie’,1,1),(2989,29372,’Jerry’,0,2),(2989,29373,’Mativo’,0,3),(2989,29374,’Rick’,0,4),(2989,29375,’Prentiss’,0,5),(2989,29342,’Hank’,2,6),(2989,89246,’John’,2,7),(2989,47458,’Committee Member’,2,8),(4723,18918,’Boxer Santaros’,2,0),(4723,57599,’Roland Taverner’,2,1),(4723,11863,’Krysta Now’,1,2),(4723,16855,’Madeline Frost-Santaros’,1,3),(4723,39125,’Fortunio Balducci’,2,4),(4723,16165,’Bart Bookman’,2,5),(4723,5151,’Dr. Inga Von Westphalen’,1,6),(4723,22124,’Shoshana Kapowski’,1,7),(4723,12111,’Private Pilot Abilene’,2,8),(4723,39126,’Serpentine’,1,9),(4723,39127,’Teri Riley’,1,10),(4723,87003,’Dr. Soberin Exx’,2,11),(4723,135795,’Bing Zinneman’,2,12),(4723,230725,’Vanessa Vera Cruz’,1,13),(4723,4496,’Cyndi Pinziki’,1,14),(4723,38559,’Walter Mung’,2,15),(4723,14101,’Vaughn Smallhouse’,2,16),(4723,21197,’General Teena MacArthur’,1,17),(4723,116075,’Sheena Gee’,1,18),(4723,60252,’Zora Charmichaels’,1,19),(4723,56322,’Veronica Mung / Dream’,1,20),(4723,8436,’Nana Mae Frost’,1,21),(4723,12900,’Baron Von Westphalen’,2,22),(4723,85500,’Hideo Takehashi’,0,23),(4723,19303,’Simon Theory’,2,24),(4723,1776994,’Tab Taverner’,0,25),(4723,1776996,’Brandt Huntington’,0,26),(4723,933579,’UPU 4 Officer 3′,0,27),(4723,1777003,’Jimmy Hermosa’,0,28),(4723,1777004,’USI Dent Reporter’,0,29),(4723,997207,’Starla Von Luft’,1,30),(4723,1777005,’Soldier Falcon’,0,31),(4723,1777006,’Shane Laverne’,0,32),(4723,65829,’Dion Element’,2,33),(4723,1195152,’Todd Zinneman’,0,34),(4723,177114,’Megazeppelin Waitress’,1,35),(4723,1777008,’Dr. Linda Lao’,1,36),(4723,1777009,’Deena Storm’,1,37),(4723,1777010,’Kenny Chan’,0,38),(4723,1578,’Senator Bobby Frost’,2,39),(4723,17441,’Martin Kefauver’,2,40),(4723,1777020,’Seamus Storm’,0,41),(4723,10091,’Dr. Katarina Kuntzler’,1,42),(4723,944561,’Dennis Voogler’,2,43),(4723,203263,’Dancer #1′,1,44),(4723,1202553,’Dancer #2′,1,45),(4723,1777025,’Dancer #3′,1,46),(4723,1752319,’Dancer #4′,1,47),(4723,1776381,’Dancer #5′,0,48),(4723,1773693,’Dancer #6′,1,49),(4723,143742,’Dancer #7′,1,50),(4723,200972,’Dancer #8′,1,51),(4723,1777026,’News Reporter’,0,52),(4723,1777027,’Isabella / Interpreter’,1,53),(4723,1237476,’Secretary’,1,54),(4723,1303212,’US Ident Worker’,0,55),(4723,1474912,’Hysterical Passenger’,1,56),(4723,9466,’Bar Bouncer’,2,57),(4723,1777029,’SWAT Team Officer’,0,58),(4723,1777030,’Homeless Terrorist’,0,59),(4723,16847,’Man who gets Shot on Toilet’,2,60),(4723,1580574,’Homeless Terrorist’,2,61),(4032,34612,’Vada Sultenfuss’,1,0),(4032,11510,’Thomas J. Sennett’,2,1),(4032,707,’Harry Sultenfuss’,2,2),(4032,8944,’Shelly DeVoto’,1,3),(4032,15416,’Phil Sultenfuss’,2,4),(4032,2171,’Mr. Jake Bixler’,0,5),(4032,20906,’Dr. Welty’,2,6),(4032,35168,’Ronda’,1,7),(4032,18222,’Gramoo Sultenfuss’,0,8),(4584,204,’Marianne Dashwood’,1,0),(4584,7056,’Elinor Dashwood’,1,1),(4584,3291,’Edward Ferrars’,2,2),(4584,207,’Mr. Dashwood’,2,3),(4584,4566,’Col. Christopher Brandon’,2,4),(4584,20769,’Lucy Steele’,1,5),(4584,16700,’John Willoughby’,2,6),(4584,41419,’Mr. Palmer’,2,7),(4584,11356,’Charlotte Jennings Palmer’,1,8),(4584,23076,’Sir John Middleton’,2,9),(4584,31923,’Doctor Harris’,2,10),(4584,10726,’John Dashwood’,2,11),(4584,17477,’Fanny Ferrars Dashwood’,1,12),(4584,9138,’Mrs. Dashwood’,1,13),(4584,937907,’Margaret Dashwood’,0,14),(4584,1220119,’Mrs. Jennings’,1,15),(4584,141551,’Robert Ferrars’,2,16),(2977,1813,’Jane Austen’,1,0),(2977,5530,’Tom Lefroy’,2,1),(2977,477,’Mrs. Austen’,1,2),(2977,2505,’Mr. Austen’,2,3),(2977,10978,’Lady Gresham’,1,4),(2977,29234,’Henry Austen’,2,5),(2977,29235,’Eliza de Feuillide’,1,6),(2977,6366,’Mr. Wisley’,2,7),(2977,385,’Richter Langlois’,2,8),(2977,29236,’Cassandra Austen’,1,9),(2977,29237,’John Warren’,2,10),(2977,29238,’Lucy Lefroy’,1,11),(2977,29239,’Mr. Lefroy’,2,12),(2977,29240,’Robert Fowle’,2,13),(2977,33452,’Mr. Curtis’,2,14),(2977,15737,’Mrs. Radcliffe’,1,15),(2977,1368268,’Don Dogarty’,2,16),(2977,1847409,’Jenny’,0,17),(207,2157,’John Keating’,2,0),(207,569,’Todd Anderson’,2,1),(207,2692,’Neil Perry’,2,2),(207,2693,’Charlie Dalton’,2,3),(207,2694,’Knox Overstreet’,2,4),(207,2695,’Richard Cameron’,2,5),(207,2696,’Steven Meeks’,2,6),(207,2697,’Gerard Pitts’,2,7),(207,2698,’Mr. Nolan’,2,8),(207,2115,’Mr. Perry’,2,9),(207,2699,’Mrs. Perry’,0,10),(207,2700,’McAllister’,2,11),(207,2701,’Dr. Hager’,2,12),(207,131183,’Chris Noel’,1,13),(207,6684,’Ginny Danburry’,1,14),(8467,206,’Lloyd Christmas’,2,0),(8467,8447,’Harry Dune’,2,1),(8467,34485,’Mary Swanson’,1,2),(8467,8437,’Helen Swanson’,1,3),(8467,5170,’Joe Mentaliano’,2,4),(8467,76131,’J.P. Shay’,1,5),(8467,7867,’Nicholas Andre’,2,6),(8467,65020,’Athletic Beauty’,1,7),(8467,77547,’Billy’,2,8),(8467,184180,’Sea Bass’,2,9),(8467,162924,’Bartender’,2,10),(8467,181486,’Barnard’,2,11),(8467,153459,’Karl Swanson’,0,12),(8467,44042,’Detective Dale’,2,13),(8467,1074689,’Bobby’,0,14),(8467,1853164,’Cashier’,1,15),(8467,60672,’Dale\’s Man #1′,2,16),(8467,1853166,’Dale\’s man #2′,2,17),(8467,1853167,’Coroner’,2,18),(8467,116727,’Elderly Lady’,1,19),(8467,7401,’Mrs. Neugeboren’,1,20),(8467,1853168,’Reporter’,2,21),(8467,16846,’State Trooper’,2,22),(8467,1853169,’Waitress #1′,1,23),(8467,115989,’Bus Stop Beauty’,1,24),(8467,1853170,’Sea Bass Friend’,2,25),(8467,62833,’Flight Attendant’,2,26),(8467,136222,’Swanson Maid’,1,27),(8467,1223828,’Anxious Man at Phone’,0,28),(8467,1853171,’Waitress #2′,1,29),(8467,1853172,’Nicholas\’s Girl’,1,30),(8467,1662256,’Martial Artist’,0,31),(8467,1596619,’Bikini Girl’,1,32),(8467,1512826,’Bikini Girl’,1,33),(8467,1073208,’Bikini Girl’,1,34),(8467,1853173,’Bikini Girl’,1,35),(8467,1853174,’Barber’,2,36),(8467,1853175,’Concierge’,1,37),(8467,1824208,’Diner Gawker’,1,38),(8467,1853181,’Manicurist’,1,39),(8467,1853182,’Masseuse’,1,40),(8467,1853183,’Mutt Cutts Boss’,2,41),(8467,1853184,’Airport Bystander’,1,42),(8467,1853185,’Peeing Man’,2,43),(8467,1853186,’Peeing Man\’s Friend’,2,44),(8467,1853187,’Aspen Police Officer’,2,45),(8467,1853188,’Preservation Partier’,2,46),(8467,1853189,’Preservation Partier’,2,47),(8467,1853190,’Preservation Partier’,2,48),(8467,1853191,’Preservation Partier’,2,49),(8467,1853192,’Preservation Partier’,2,50),(8467,1853193,’Preservation Partier’,2,51),(8467,1853195,’Preservation Partier’,2,52),(8467,1188495,’Preservation Partier’,0,53),(8467,1853212,’Preservation Partier’,2,54),(8467,1853214,’Preservation Partier’,2,55),(8467,1853216,’Preservation Partier’,2,56),(8467,1853217,’Preservation Partier’,2,57),(8467,1853218,’Preservation Partier’,2,58),(8467,1853219,’Preservation Partier’,2,59),(8467,7412,’Preservation Partier’,0,60),(8467,1748864,’Preservation Partier’,0,61),(8467,1853220,’Preservation Partier’,2,62),(8467,1242525,’Sexy Woman’,1,63),(8467,1832377,’Sweater Friend’,1,64),(8467,1853221,’Sweater Friend’,1,65),(8467,1546585,’Sweater Friend’,1,66),(8467,1853259,’Sweater Friend’,2,67),(8467,1853260,’Sweater Friend’,2,68),(8467,1273849,’Sweater Friend’,0,69),(8467,60661,’Wallbanger’,0,70),(8467,1853261,’Farmworker Singing Mocking Bird (uncredited)’,2,71),(8467,1733375,’Swedish Bikini Team Member (uncredited)’,1,72),(8467,1795599,’Bikini Girl (uncredited)’,1,73),(8467,1084840,’FBI Agent (uncredited)’,0,74),(8467,1853265,’Bellman’,2,75),(8467,1533696,’Flight Personnel (uncredited)’,1,76),(8467,1853265,’Bellman (uncredited)’,2,77),(8467,1853269,’Preservation Partier (uncredited)’,2,78),(8467,1020736,’Guy in Restaurant (uncredited)’,2,79),(639,5344,’Sally Albright’,1,0),(639,7904,’Harry Burns’,2,1),(639,4,’Marie’,1,2),(639,9257,’Jess’,2,3),(639,9258,’Joe’,2,4),(639,9259,’Alice’,1,5),(639,9260,’Amanda’,1,6),(639,119884,’Stewardess’,0,7),(639,86475,’Man on Aisle’,0,8),(639,27106,’Helen’,1,9),(639,151273,’Ira’,0,10),(639,158205,’Julian’,0,11),(639,116727,’Documentary Couple’,1,12),(639,1389091,’9 Year Old Boy’,0,13),(639,1389092,’Judge’,0,14),(639,1389093,’Waiter at Wedding’,0,15),(9285,33654,’Josh Parker’,2,0),(9285,57599,’E.L.’,2,1),(9285,20189,’Beth Wagner’,1,2),(9285,57133,’Rubin Carver’,2,3),(9285,132078,’Kyle Edwards’,2,4),(9285,36423,’Barry Manilow’,2,5),(9285,52478,’Tiffany Henderson’,1,6),(9285,21129,’Sperm Bank Nurse’,1,7),(9285,6165,’Jacob’,2,8),(9285,43120,’Motel Clerk’,2,9),(9285,10430,’Earl Edwards’,2,10),(9285,824,’Ed’,2,11),(9285,52117,’French Toast Guy’,2,12),(9285,51456,’Tour Group Mom’,1,13),(9285,22126,’The Wrong Tiffany’,1,14),(9285,133581,’Cookie Edwards’,0,15),(9285,25884,’Blind Brenda’,1,16),(1417,16970,’Ofelia’,1,0),(1417,16971,’Mercedes’,1,1),(1417,16972,’Capitu00e1n Vidal’,2,2),(1417,17005,’Fauno / Pale Man’,2,3),(1417,17006,’Carmen’,1,4),(1417,3813,’Dr. Ferreiro’,2,5),(1417,17007,’Pedro’,2,6),(1417,592709,’Garcu00e9s’,0,7),(1417,25219,’Serrano’,0,8),(1417,31422,’El Tarta’,0,9),(1417,116071,’Francu00e9s’,2,10),(1417,106707,’Padre’,0,11),(1417,1077942,’Sacerdote’,0,12),(1417,1077944,’Alcalde’,0,13),(1417,1077945,’Esposa del alcalde’,0,14),(1417,588132,’Jefe de botiquu00edn’,0,15),(1417,1077947,’Capitu00e1n Guardia Civil’,0,16),(1417,1077948,’Esposa del doctor’,0,17),(1417,963251,’Conchita’,1,18),(1417,1077950,’Jacinta’,0,19),(1417,1077952,’Paz’,0,20),(1417,560248,’Trigo’,0,21),(1417,1077953,’Joven’,0,22),(1417,100905,’Maquinista’,2,23),(1417,1077954,’Encargado’,0,24),(1417,3653,’Sargento Bayona’,0,25),(1417,17096,’Joven Guerrillero’,0,26),(1417,17095,’Joven Guerrillero 2′,2,27),(1417,17094,’Rey’,2,28),(1417,1077955,’Anciano’,0,29),(1417,1077956,’Narrator / Fauno (voice)’,0,30),(9594,15111,’Alex / Chad Wagner’,2,0),(9594,18071,’Frank Avery’,2,1),(9594,106836,’Danielle Wilde’,0,2),(9594,106837,’Kara’,0,3),(9594,70591,’Raymond Zhang’,2,4),(9594,26075,’Nigel Griffith’,2,5),(9594,58123,’Moon’,2,6),(9594,15024,’Paul Wagner’,0,7),(9594,80116,’Student’,1,8),(9594,53279,’Klimax Klub Bouncer’,2,9),(9594,58121,’Baby Chad’,0,10),(9594,58122,’Baby Alex’,0,11),(9594,1785844,’Body Guard With Spurs’,0,12),(4638,11108,’Nicholas Angel’,2,0),(4638,11109,’PC Danny Butterman’,2,1),(4638,388,’Inspector Frank Butterman’,2,2),(4638,14887,’DS Andy Wainwright’,2,3),(4638,28847,’DC Andy Cartwright’,2,4),(4638,39185,’Sergeant Tony Fisher’,2,5),(4638,39187,’PC Doris Thatcher’,0,6),(4638,39186,’PC Bob Walker’,2,7),(4638,24265,’Sergeant Turner’,2,8),(4638,10669,’Simon Skinner’,2,9),(4638,39188,’Tom Weaver’,2,10),(4638,8226,’Joyce Cooper’,1,11),(4638,1229320,’Bernard Cooper’,0,12),(4638,14344,’Dr. Robin Hatcher’,2,13),(4638,652,’Rev. Philip Shooter’,0,14),(4638,3075,’Michael Lurch Armstrong’,2,15),(4638,26258,’James Reaper’,2,16),(4638,194899,’Mrs. Reaper’,0,17),(4638,17476,’Roy Porter’,2,18),(4638,137471,’Mary Porter’,1,19),(4638,1553131,’Greg Prosser’,0,20),(4638,1495777,’Sheree Prosser’,0,21),(4638,117550,’Annette Roper’,0,22),(4638,82150,’Amanda Paver’,0,23),(4638,79875,’Mr. Treacher’,2,24),(4638,77287,’Leslie Tiller’,1,25),(4638,1502694,’Peter Cocker’,0,26),(4638,155532,’Tim Messenger’,0,27),(4638,59081,’Martin Blower’,2,28),(4638,66446,’Eve Draper’,1,29),(4638,11180,’Arthur Webley’,2,30),(4638,5319,’George Merchant’,2,31),(4638,39189,’Peter Ian Staker’,2,32),(4638,182327,’Tina’,1,33),(4638,7060,’Met Sergeant’,2,34),(4638,4581,’Metropolitan Police Inspector (uncredited)’,2,35),(4638,2440,’Met Chief Inspector’,2,36),(4638,108,’Thief Dressed as Santa (uncredited)’,2,37),(4638,112,’Janine (uncredited)’,1,38),(4638,52842,’Crack Addict (uncredited)’,2,39),(4638,11090,’Shelf Stacker / Voice of Dave (uncredited)’,2,40),(4638,514369,’\’Not\’ Janine’,2,41),(4638,155531,’Bob’,2,42),(4638,88712,’Dave’,0,43),(4638,1512263,’Heston Services Clerk’,0,44),(5038,1245,’Cristina’,1,0),(5038,15556,’Vicky’,1,1),(5038,3810,’Juan Antonio Gonzalo’,2,2),(5038,955,’Maru00eda Elena’,1,3),(5038,60021,’Narrator (voice)’,2,4),(5038,61659,’Doug’,2,5),(5038,1276,’Judy Nash’,1,6),(5038,14721,’Mark Nash’,0,7),(5038,588323,’Charles’,0,8),(5038,1303725,’Guitarist in Barcelona’,0,9),(5038,1303727,’Art Gallery Guest’,0,10),(5038,28005,’Art Gallery Guest’,0,11),(5038,1062005,’Doctor’,0,12),(5038,108908,’Julio’,2,13),(5038,1303728,’Guitarist in Asturias’,0,14),(5038,986521,’Juan Antonio\’s Friend’,0,15),(5038,1061977,’Juan Antonio\’s Friend’,0,16),(5038,19826,’Juan Antonio\’s Friend’,2,17),(5038,1303729,’Juan Antonio\’s Friend’,0,18),(5038,59254,’Ben’,2,19),(5038,7465,’Sally’,1,20),(5038,6212,’Adam’,2,21),(5038,133525,’Jay’,0,22),(9800,31,’Andrew Beckett’,2,0),(9800,5292,’Joe Mille’,2,1),(9800,4765,’Charles Wheeler’,2,2),(9800,2453,’Belinda Conine’,1,3),(9800,3131,’Miguel Alvarez’,2,4),(9800,32592,’Bob Seidman’,2,5),(9800,25626,’Walter Kenton’,2,6),(9800,16119,’Judge Garnett’,2,7),(9800,1318896,’Lisa Miller’,0,8),(9800,52057,’Jerome Green’,2,9),(9800,552526,’Young Man in Pharmacy’,2,10),(9800,552527,’Bud Beckett’,0,11),(9800,91428,’Clinic Storyteller’,0,12),(9800,102429,’Mr. Laird’,2,13),(9800,43366,’Jill Beckett’,1,14),(9800,1176208,’Bruno’,0,15),(9800,568363,’Dr. Gillman’,0,16),(9800,568366,’Kenneth Killcoyne’,0,17),(9800,1318898,’Peter / Mona Lisa’,0,18),(9800,138988,’Dr. Klenstein’,2,19),(9800,60118,’Matt Beckett’,2,20),(9800,10362,’Judge Tate’,1,21),(9800,1066975,’Mr. Finley’,0,22),(9800,127738,’Juror’,2,23),(9800,1318899,’Randy Beckett’,0,24),(9800,1318900,’Filko’,2,25),(9800,1281000,’Iris’,0,26),(9800,63279,’Anthea Burton’,1,28),(9800,568367,’Shelby’,1,29),(9800,1473,’Jury Foreman’,2,30),(9800,3801,’Librarian’,2,31),(9800,11367,’Jamey Collins’,0,32),(9800,171075,’Chandra’,1,33),(9800,79906,’Melissa Benedict’,1,34),(9800,109410,’Sarah Beckett’,1,35),(9800,59329,’Crutches’,0,36),(9800,568364,’Clinic Patient’,0,37),(9800,568365,’Tyrone’,0,38),(9800,58539,’Rachel Smilow’,1,39),(9800,1397318,’Dr. Armbruster’,0,40),(9800,20569,’Alan’,2,41),(9800,196537,’Himself’,2,42),(9800,61607,’Jill\’s Husband’,2,43),(9800,27098,’Guido Paonessa’,2,44),(9800,16298,’Juror’,2,45),(9800,192268,’Juror’,0,46),(9800,127069,’Ralph Peterson’,0,47),(9800,1280989,’Not Adam and Steve’,0,48),(9800,1178317,’Bartender’,0,49),(9800,152638,’Bailiff’,2,50),(9800,1352800,’Party singer’,0,51),(9800,1382436,’Robert’,0,52),(9800,1131774,’Miguel\’s Dad’,0,53),(9800,112167,’Partygoer (uncredited)’,0,54),(9800,1280972,’PR Director (uncredited)’,2,55),(9800,57459,’Guest at Party (uncredited)’,2,56),(9800,1298410,’Reporter (uncredited)’,2,57),(9800,207297,’Security Guard (uncredited)’,0,58),(9800,16300,’Doctor (uncredited)’,2,59),(9800,1216756,’Guy in Library (uncredited)’,0,60),(9800,35352,’Guest (uncredited)’,0,61),(1090,14886,’Douglas Hall/John Ferguson/David’,2,0),(1090,12647,’Hannon Fuller/Grierson’,2,1),(1090,15370,’Jane Fuller/Natasha Molinaro’,0,2),(1090,7132,’Jason Whitney/Jerry Ashton’,2,3),(1090,352,’Detective Larry McBain’,2,4),(1090,15371,’Detective Zev Bernstein’,2,5),(1090,15372,’Tom Jones’,2,6),(1090,15373,’Joe’,2,7),(1090,15374,’Jane\’s Lawyer’,2,8),(1090,15375,’Ellen’,1,9),(1090,15376,’Cop’,2,10),(1090,15377,’Bellhop’,2,11),(1090,1174009,’Concierge’,1,12),(1090,68430,’Natasha\’s Roommate’,1,13),(1090,1497867,’Chauffeur’,2,14),(1090,50346,’Bridget Manilla’,1,15),(1090,129661,’Bank Manager’,2,16),(1090,155983,’Bank Customer’,1,17),(1090,8291,’Honey Bear Girl’,1,18),(1090,1613837,’Chanteuse’,1,19),(1090,59184,’30\’s Cop’,2,20),(1090,1216862,’Grierson\’s Wife’,1,21),(1090,1481,’30\’s Limo Driver’,2,22),(1090,67378,’Newspaper Boy’,2,23),(1090,50975,’Singer’,2,24),(1090,140570,’Choreographer’,2,25),(1090,58651,’Security Guard’,2,26),(1090,160872,’Bridget\’s Mom’,1,27),(1090,1379424,’Cab Driver’,2,28),(1090,106243,’Bank Business Woman (uncredited)’,1,29),(1090,1274297,’Detective (uncredited)’,2,30),(9689,1243,’Val’,2,0),(9689,3267,’Ed’,2,1),(9689,4939,’Ellie’,1,2),(9689,23959,’Lori’,1,3),(9689,21958,’Al’,2,4),(9689,4515,’Hal’,2,5),(9689,1986,’Psychiatrist’,2,6),(9689,57514,’Actress’,1,7),(9689,100771,”,1,8),(9689,56696,”,2,9),(9689,41293,’Alexandra’,1,10),(9689,11022,’Actor’,2,11),(9689,19187,’Sharon Bates’,1,12),(9689,4451,’Tony Waxman’,2,13),(9689,28032,’Galaxie Executive’,0,14),(9689,58543,’Galaxie Executive’,2,15),(9689,17179,’Galaxie Executive’,2,16),(9689,58544,’Commercial A.D.’,2,17),(9689,32983,’Barbeque Guest’,2,18),(9689,58539,’Barbeque Guest’,1,19),(9689,41551,’Barbeque Guest’,2,20),(9689,58545,’Barbeque Guest’,0,21),(9689,58546,’Carlyle Pianist’,0,22),(9781,4133,’Lex’,2,0),(9781,35768,’Trip Hurudie’,2,1),(9781,820,’Hawk’,2,2),(9781,53492,’Jeremiah \’Jam\’ Bruce’,0,3),(9781,7401,’Mrs. Bruce’,1,4),(9781,15091,’Beth Bumsteen’,1,5),(9781,10871,’Christine’,1,6),(9781,45379,’Amanda Finch’,1,7),(9781,59192,’Barbara’,1,8),(9781,34915,’Cashier’,1,9),(9781,59196,’Father Phillip McNulty’,2,10),(9781,59198,’Chongo’,2,12),(9781,59190,’Elvis’,2,13),(9781,59191,’Kenny’,0,14),(9781,59193,’Bobby’,2,15),(9781,59194,’Mr. Stewart Bumsteen’,2,16),(9781,59195,’Mrs. Stewart Bumsteen’,1,17),(9781,44153,’Detroit Priest’,2,18),(9781,59197,’Little Kid’,2,19),(9781,59199,’Study Hall Teacher’,0,20),(9781,57756,’Kiss’,2,21),(9781,123255,’Kiss’,2,22),(9781,123257,’Kiss’,2,23),(9781,123258,’Kiss’,0,24),(8009,38559,’Connor \’The Highlander\’ MacLeod’,2,0),(8009,29021,’Brenda J. Wyatt’,1,1),(8009,6574,’Victor \’The Kurgan\’ Kruger’,2,2),(8009,738,’Juan Sanchez Villa-Lobos Ramirez’,2,3),(8009,53515,’Heather MacLeod’,1,4),(8009,53584,’Lieutenant Frank Moran’,2,5),(8009,4253,’Det. Walter Bedsoe’,2,6),(8009,53585,’Rachel Ellenstein’,1,7),(8009,31925,’Sunda Kastagir’,2,8),(8009,53587,’Aman Fasil’,2,10),(8009,53588,’Dugal MacLeod’,0,11),(8009,2467,’Angus MacLeod’,2,12),(8009,9139,’Kate MacLeod’,1,13),(8009,47808,’Kirk Matunas’,0,14),(8009,56985,’Old Man in Car’,0,15),(8009,1230746,’Bassett’,2,16),(3877,4587,’Audrey Burke’,1,0),(3877,1121,’Jerry Sunborne’,2,1),(3877,12640,’Steven Burke’,2,2),(3877,8291,’Kelly’,1,3),(3877,34051,’Spring’,0,4),(3877,169780,’Harper Burke’,1,5),(3877,963844,’Dory Burke’,0,6),(3877,83852,’Cousin Dave’,2,7),(3877,89885,’Cousin Joel’,2,8),(3877,3911,’Howard Glassman’,2,9),(8854,35806,’John Henry Irons / Steel’,2,0),(8854,49425,’Sparky’,1,1),(8854,6487,’Onkel Joe’,2,2),(8854,21624,’Judd Nelson’,2,3),(8854,43853,’Grandma Odessa’,1,4),(8854,3686,’Martin’,1,5),(8854,124520,’Lamont’,0,6),(8854,1384901,’Martin’,0,7),(8854,16119,’Col. David’,2,8),(8854,1216137,’Sen. Nolan’,0,9),(8854,155996,’Major’,2,10),(8854,51699,’Norma’,1,11),(8854,8175,’Sgt. Marcus’,2,12),(8854,78463,’Detective’,2,13),(8854,57686,’Slats’,2,14),(8854,80135,’Mrs. Hunt’,1,15),(8854,16861,’Mugger’,2,16),(8854,3952,’Singer’,2,17),(8854,956719,’Skinhead Leader’,2,18),(8854,9291,’Skinhead #2′,2,19),(8854,154094,’Skin #1′,2,20),(8854,1226235,’French Mercenary’,0,21),(8854,4665,’Colombian’,0,22),(8854,81442,’American Overload’,0,23),(8854,61545,’SWAT Man’,2,24),(8854,63537,’SWAT Officer’,2,25),(8854,174791,’Soldier’,0,26),(8854,66749,’Federal Reserve Guard’,2,27),(8854,1367129,’Lieutenant’,0,28),(8854,102578,’Reed Driver’,0,29),(8265,22306,’Philippe Abrams’,2,0),(8265,37627,’Antoine Bailleul’,2,1),(8265,54165,’Julie Abrams’,1,2),(8265,1120528,’Raphau00ebl Abrams’,0,3),(8265,54168,’Annabelle Deconninck’,0,4),(8265,66032,’Fabrice Canoli’,2,5),(8265,52348,’Yann Vandernoout’,2,6),(8265,54167,’Madame Bailleul’,1,7),(8265,24629,’le grand oncle de Julie’,2,8),(8265,40305,’Jean’,2,9),(8265,54169,’le gendarme’,0,10),(8265,54170,’inspecteur Lebic’,2,11),(8265,5425,’le garu00e7on du restaurant’,2,12),(8265,5445,’Momo’,2,13),(8265,35902,’La mamie \’Quinquin\”,1,14),(2110,1003,’Hubert Fiorentini’,2,0),(2110,21658,’Yumi Yoshimido’,1,1),(2110,21659,’Maurice Momo’,2,2),(2110,10500,’Sofia’,1,3),(2110,21663,’Takanawa’,2,4),(2110,21664,’Le Squale’,2,5),(2110,21665,’Irene’,0,6),(2110,21666,’Olivier’,0,7),(2110,21667,’Betty’,0,8),(2110,21668,’Josy’,0,9),(2110,58611,’ami de Yumi’,2,10),(2110,1632523,’Hu00f4tesse de l\’air’,1,11),(2110,554597,’Ishibashi’,0,12),(2110,185395,’Van Eyck’,2,13),(2110,1620857,’Del Rio’,0,14),(2110,1677014,’Douanier 1′,0,15),(2110,1677015,’Douanier 2′,0,16),(2110,130452,’Fils de Pru00e9fet’,0,17),(2110,185355,’Jean Baptiste 2′,0,18),(2110,62452,’Jean Baptiste 1′,0,19),(2110,42718,’Secretaire Banque de la Trinitu00e9′,1,20),(2110,1622946,’Jeune banquier’,2,21),(2110,1677019,’Danseuse’,0,22),(2110,1677020,’Miko Kobayashi’,0,23),(2110,1677031,’Commissaire Avion’,0,24),(2110,1677032,’Secru00e9taire Ishibashi’,0,25),(2110,1677033,’Commissaire Japonais’,0,26),(2110,1201020,”,1,27),(2110,1677034,’Receptioniste’,0,28),(9035,51797,’Bill Pardy’,2,0),(9035,56749,’Wally’,2,1),(9035,9281,’Starla Grant’,1,2),(9035,2518,’Jack MacReady’,2,3),(9035,56750,’Uptight Mom’,1,4),(9035,12132,’Grant’,2,5),(9035,59244,’Kylie Strutemyer’,1,6),(9035,189026,’Friend’,1,7),(9035,53117,’Drawing Boy’,2,8),(9035,146557,’Gina Kid’,0,9),(9035,77898,’Brenda Gutierrez’,1,10),(9035,51856,’Shelby’,1,11),(9035,78021,’Sad Drunk’,2,12),(9035,1431012,’Diseased Grant part 1′,0,13),(90,776,’Det. Axel Foley’,2,0),(90,777,’Det. William \’Billy\’ Rosewood’,2,1),(90,778,’Det. Sgt. John Taggart’,2,2),(90,780,’Lt. Andrew Bogomil’,2,3),(90,781,’Jeffrey’,2,4),(90,787,’Insp. Douglas Todd’,2,5),(90,779,’Jeannette \’Jenny\’ Summers’,1,6),(90,782,’Victor Maitland’,2,7),(90,785,’Mikey Tandino’,2,8),(90,783,’Zack, Maitland\’s Thug’,2,9),(90,786,’Police Chief Hubbard’,2,10),(90,4689,’Serge’,2,11),(90,790,’Casey’,2,12),(90,59221,’Hotel Manager’,2,13),(90,1539,’Bonded Warehouse Night Supervisor’,2,14),(90,22675,’Banana Man’,2,15),(90,788,’Det. Foster’,0,16),(90,789,’Det. McCabe’,0,17),(771,11510,’Kevin’,2,0),(771,4517,’Harry’,2,1),(771,11511,’Marv’,2,2),(771,11512,’Peter’,2,3),(771,11514,’Kate’,0,4),(771,66288,’Marley’,2,5),(771,11516,’Buzz’,2,6),(771,945734,’Jeff McCallister’,2,7),(771,11518,’Megan’,0,8),(771,11515,’Linnie’,1,9),(771,11517,’Uncle Frank’,2,10),(771,1530055,’Aunt Leslie’,1,11),(771,11522,’Rod’,0,12),(771,141434,’Tracy’,1,13),(771,1721099,’Sondra’,0,14),(771,18793,’Fuller McCallister’,0,15),(771,1232179,’Brooke’,0,16),(771,11521,’Heather’,1,17),(771,7180,’Gus Polinski’,2,18),(771,1244120,’Johnny – Gangster #1′,2,19),(771,11519,’Officer Balzak’,2,20),(771,236327,’Santa’,2,21),(771,15250,’Receptionist’,1,22),(771,140778,’Woman in Airport’,1,23),(771,26044,’Man in Airport’,2,24),(771,1542824,’Mitch Murphy’,0,25),(771,1863630,’Georgette McCallister’,0,26),(771,1178247,’Uncle Rob’,0,28),(771,1863631,’Officer Devereux’,0,29),(771,1863632,’Pizza Boy’,0,30),(771,1224380,’Steffan’,2,31),(9576,4483,’Michael Dorsey / Dorothy Michaels’,2,0),(9576,4431,’Julie Nichols’,1,1),(9576,8437,’Sandy’,1,2),(9576,12850,’Ron Carlisle’,2,3),(9576,1466,’Les Nichols’,2,4),(9576,1532,’Jeff Slater’,2,5),(9576,2226,’George Fields’,2,6),(9576,57351,’John Van Horn’,2,7),(9576,16935,’April’,1,8),(9576,24293,’Rita’,1,9),(9576,157459,’Jacqui’,0,10),(9576,1178373,’Rick’,0,11),(9576,71266,’Jo’,1,12),(9576,4184,’Phil Weintraub’,2,13),(9576,69504,’Mrs. Mallory’,1,14),(9576,1178374,’Amy’,0,15),(9576,1178375,’Boy’,0,16),(9576,1178376,’Page’,1,17),(9576,1178378,’Stage Hand’,0,19),(9576,1178379,’Middle-Aged Man’,0,20),(9576,59956,’Middle-Aged Woman’,1,21),(9576,4003,’Linda’,1,22),(9576,4150,’Actor #1′,2,23),(9576,1247314,’Actor #2′,0,24),(9576,154818,’Salesgirl’,1,25),(9576,1422457,’Billie’,1,26),(9576,112155,’Party girl’,0,27),(9576,1483630,’Mrs. Crawley’,0,28),(9576,1244595,’Party guest’,0,29),(9576,91374,’Priest’,0,30),(9576,155031,’Stage Manager #2′,2,31),(9576,118754,’Stage Manager’,2,32),(9576,1174375,’Director’,0,33),(9576,156917,’Autograph Hound’,1,34),(9576,1177387,’Autograph Hound’,0,35),(9576,1213749,’Autograph Hound’,0,36),(9576,1388265,’Autograph Hound’,0,37),(9576,2144,’Waiter (uncredited)’,2,38),(9576,148119,'(uncredited)’,0,39),(9576,175082,’Acting Student (uncredited)’,0,40),(9576,55554,’Actor at Party (uncredited)’,2,41),(9576,996487,’Shocked Bystander as Dorothy Grabs a Cab (uncredited)’,1,42),(9576,18626,’Himself (uncredited)’,2,43),(9576,1701693,’Secretary’,1,44),(9576,1218037,’Middle-Aged Man’,0,45),(744,500,’Pete \’Maverick\’ Mitchell’,2,0),(744,11084,’Charlotte \’Charlie\’ Blackwood’,1,1),(744,5576,’Tom \’Iceman\’ Kazanski’,2,2),(744,11085,’Nick \’Goose\’ Bradshaw’,2,3),(744,4139,’Viper’,2,4),(744,11086,’Jester’,2,5),(744,57082,’Cougar’,2,6),(744,11088,’Wolfman’,2,7),(744,2717,’Slider’,0,8),(744,504,’Merlin’,2,9),(744,5344,’Carole’,1,10),(744,11089,’Hollywood’,2,11),(744,17304,’Chipper’,2,12),(744,1072,’Stinger’,2,14),(744,51581,’Sundown’,0,15),(146,1619,’Master Li Mu Bai’,2,0),(146,1620,’Yu Shu Lien’,1,1),(146,1339,’Jen Yu (Mandarin) / Jiao Long (English)’,1,2),(146,1622,’Lo \’Dark Cloud\’ / Luo Xiao Hu’,2,3),(146,1624,’Jade Fox’,1,4),(146,1623,’Sir Te’,0,5),(146,1625,’Governor Yu’,0,6),(146,1268919,’Auntie Wu’,0,7),(146,1626,’Bo’,0,8),(146,1627,’Madame Yu’,0,9),(146,1628,’Police Inspector Tsai’,0,10),(146,1629,’May’,0,11),(14,1979,’Lester Burnham’,2,0),(14,516,’Carolyn Burnham’,1,1),(14,2155,’Jane Burnham’,1,2),(14,8210,’Ricky Fitts’,2,3),(14,8211,’Angela Hayes’,1,4),(14,2955,’Colonel Frank Fitts’,2,5),(14,2154,’Jim Olmeyer’,2,6),(14,8212,’Buddy Kane’,2,7),(14,19,’Barbara Fitts’,1,8),(14,8213,’Jim Berkley’,2,9),(14,8214,’Brad Dupree’,2,10),(14,68842,’Sale House Man #1′,2,11),(14,1658382,’Sale House Man #2′,2,12),(14,9634,’Sale House Man #3′,2,13),(14,64189,’Sale House Woman #1′,1,14),(14,166961,’Sale House Woman #2′,1,15),(14,1397945,’Sale House Woman #3′,1,16),(14,152796,’Sale House Woman #4′,1,17),(14,42715,’Christy Kane’,1,18),(14,12223,’Catering Boss’,2,19),(14,76742,’Mr. Smiley\’s Counter Girl (Janine)’,1,20),(14,1441804,’Mr. Smiley\’s Manager’,0,21),(14,177623,’Firing Range Attendant’,2,22),(14,1448568,’Young Jane’,0,23),(14,101687,’Spartanette #1′,1,25),(14,1503019,’Spartanette #2′,0,26),(14,1503020,’Spartanette #3′,1,27),(14,1503021,’Spartanette #4′,1,28),(14,1503022,’Spartanette #5′,1,29),(14,1503023,’Spartanette #6′,1,30),(14,1503024,’Spartanette #7′,1,31),(14,1503030,’Spartanette #8′,1,32),(14,568656,’Spartanette #9′,1,33),(14,1503025,’Spartanette #10′,1,34),(14,1503026,’Playground Girl #1′,1,35),(14,1219143,’Playground Girl #2′,1,36),(14,1503027,’Newscaster (uncredited)’,1,37),(14,1503028,’Wedding Guest (uncredited)’,2,38),(14,1503029,’Advertising Executive (uncredited)’,2,39),(14,8215,’Bartender (uncredited)’,2,41),(9493,1100,’Julius Benedict’,2,0),(9493,518,’Vincent Benedict’,2,1),(9493,11164,’Marnie Mason’,1,2),(9493,43476,’Linda Mason’,1,3),(9493,16560,’Al Greco’,2,4),(9493,32479,’Old Mary Ann Benedict’,1,5),(9493,4039,’Beetroot McKinley’,2,6),(9493,3041,’Webster’,2,7),(9493,39753,’Granger’,2,8),(9493,3160,’Mitchell Traven’,2,9),(9493,7868,’Burt Klane’,2,10),(9493,65598,’Werner’,2,11),(9493,154727,’Bob Klane’,0,12),(9493,44275,’Miss Busby’,1,13),(9493,4255,’Chop Shop Owner’,2,14),(9493,11794,’Mother Superior’,0,15),(9493,69122,’Young Mary Ann Benedict’,1,16),(9493,107602,’Lead Guitarist’,2,17),(9493,154826,’Granger Granddaughter’,1,18),(9493,52443,’Granger Grandson’,2,19),(9493,11398,’Oriental Man’,2,20),(9493,52145,’Cell Guard’,2,21),(9493,205150,’Mover #2′,0,22),(9493,98078,’Secretary’,1,23),(9493,4024,’Indian’,2,24),(9493,20812,’Mover #1′,2,25),(9493,20761,’Sam Klane’,2,26),(9493,81462,’Female Neighbor’,1,27),(9493,41739,’Gilbert Larsen’,2,28),(9493,91039,’Hollywood Biker #1′,2,29),(9493,102840,’Custodian’,0,30),(9493,12483,’Peter Garfield’,2,31),(9493,555081,’Morris Klane’,0,32),(9493,555082,’Stewardess’,0,33),(9493,555083,’Hollywood Biker #2′,0,34),(9493,141051,’Cop’,0,35),(9493,13003,’McKinley\’s Man’,2,36),(9493,555084,’Visiting Room Guard’,2,37),(9493,35715,’Granger Son #1′,0,38),(9493,42083,’Granger Son #2′,2,39),(9493,13004,’Dave Klane’,0,40),(9493,555085,’Handsome Father’,2,41),(9493,116229,’Painter’,0,42),(9493,57601,’Photographer’,2,43),(9493,555086,’Security Guard’,0,44),(9493,155961,’Security Guard’,0,45),(9493,555088,’Drums’,0,46),(9493,555089,’Keyboards’,0,47),(9493,555090,’Singer’,0,48),(9493,555091,’Bass Player’,0,49),(9493,555092,’Picture Taker #2′,0,50),(9493,555093,’Bar Patron’,0,51),(873,2395,’Celie’,1,0),(873,13307,’Shug Avery’,1,1),(873,2047,’Albert’,2,2),(873,13308,’Netti’,1,3),(873,13309,’Sofia’,1,4),(873,13310,’Harpo’,2,5),(873,13311,’Young Celie Harris’,0,6),(873,13312,’Squeak’,1,7),(873,13313,’Old Mister’,2,8),(873,13314,’Miss Millie’,1,9),(873,13315,’Pa’,2,10),(873,13316,’Grady’,2,11),(873,956838,’Preacher’,2,12),(873,72740,’Reverend Samuel’,2,13),(873,162869,’Corrine’,0,14),(873,1119468,’Buster’,0,15),(873,1119469,’Mayor’,0,16),(873,2975,’Swain’,2,17),(873,1119470,’Adam’,0,18),(873,1119471,’Olivia’,0,19),(873,17858,’Jook Joint Patron’,2,20),(1165,15735,’HM Queen Elizabeth II’,1,0),(1165,3968,’Tony Blair’,2,1),(1165,2505,’Prince Philip’,2,2),(1165,15736,’HM The Queen Mother’,1,3),(1165,15737,’Cherie Blair’,1,4),(1165,15738,’Trevor Rees-Jones’,2,5),(1165,15739,’Prince Charles’,2,6),(1165,11279,’Sir Robin Janvrin’,2,7),(1165,15740,’Stephen Lamport’,2,8),(1165,994133,’Lord Airlie’,0,9),(1165,124686,’Alastair Campbell’,2,10),(1165,83550,’Equerry’,0,11),(1165,16354,’Janvrin\’s Secretary’,0,12),(1165,1704619,’Balmoral Maid’,0,13),(1165,188468,’Head Ghillie’,2,14),(1165,1598278,’Queen\’s Dresser’,0,15),(1165,200332,’Balmoral Head Ghillie’,2,16),(1165,1215219,’Charles\’ Valet’,0,17),(1165,1265372,’Balmoral Switchboard Operator’,0,18),(1165,93848,’Blair\’s Aide’,2,19),(1165,2246,’Portrait Artist’,2,20),(1165,107405,’TV Director<',0,21),(1165,1006167,'Catholic Priest',2,22),(1165,1416230,'German Reporter',0,23),(1165,1188580,'French Bodyguard',2,24),(1165,1207203,'No.10 Advisor (uncredited)',0,25),(1165,30451,'Secret Service (uncredited)',2,26),(1165,591346,'Biker (uncredited)',2,27),(1165,79939,'Man in Crowd (uncredited)',0,28),(4011,16935,'Barbara Maitland',1,0),(4011,7447,'Adam Maitland',2,1),(4011,1920,'Lydia Deetz',1,2),(4011,2232,'Beetlejuice',2,3),(4011,11514,'Delia Deetz',0,4),(4011,4004,'Charles Deetz',2,5),(4011,13243,'Otho',2,6),(4011,528,'Juno',1,7),(4011,54813,'Receptionist',0,8),(4011,10565,'Bernard',2,9),(4011,128621,'Maxie Dean',2,10),(4011,114604,'Sarah Dean',1,11),(4011,27264,'Grace',1,12),(4011,154073,'Messenger',2,13),(4011,34535,'Jane Butterfield',1,14),(4011,34538,'Little Jane Butterfield',1,15),(4011,34537,'Old Bill',0,16),(4011,34536,'Ernie',0,17),(4011,152727,'Moving Man #1',2,18),(4011,1073806,'Moving Man #2',2,19),(4011,52467,'3-Fingered Typist',0,20),(4011,19754,'Preacher',2,21),(4011,62032,'Very Dumb Football Player',2,22),(4011,104944,'Janitor',2,23),(4011,1041787,'Beryl',1,24),(4011,33162,'The Balladeer (voice) (uncredited)',2,25),(4011,148130,'The Hanging Man (uncredited)',2,26),(4011,1583609,'Dancer at Dantes (uncredited)',0,27),(9587,1920,'Jo March',1,0),(9587,5168,'Friedrich Bhaer',2,1),(9587,17187,'Meg March',1,2),(9587,20767,'Older Amy March',1,3),(9587,205,'Younger Amy March',1,4),(9587,6194,'Beth March',1,5),(9587,3894,'Laurie',2,6),(9587,7036,'John Brooke',2,7),(9587,4038,'Mrs. Abigail Marmee March',1,8),(9587,12642,'Mr. Laurence',2,9),(586,4483,'Stanley Motss',2,0),(586,380,'Conrad Brean',2,1),(586,8256,'Winifred Ames',1,2),(586,57755,'Sergeant William Schumann',2,3),(586,26485,'Jim Belushi',2,4),(586,5724,'Fad King',2,5),(586,8261,'Johnny Dean',2,6),(586,8263,'Liz Butsky',1,7),(586,205,'Tracy Lime',1,8),(586,3905,'CIA Agent Charles Young',2,9),(586,8265,'John Levy',2,10),(586,8266,'Grace',1,11),(586,8268,'President',2,12),(586,8269,'Amy Cain',1,13),(586,8270,'A.D.',2,14),(586,1075005,'Sharon',1,15),(9276,22123,'Delilah Profitt',1,0),(9276,109,'Casey Connor',2,1),(9276,20387,'Stokely \'Stokes\' Mitchell',1,2),(9276,25872,'Marybeth Louise Hutchinson',1,3),(9276,2299,'Zeke Tyler',2,4),(9276,52647,'Stan Rosado',2,5),(9276,3136,'Nurse Rosa Harper',1,6),(9276,10696,'Miss Elizabeth Burke',1,7),(9276,57108,'Gabe Santora',0,8),(9276,418,'Coach Joe Willis',2,9),(9276,6721,'Mrs. Karen Olson',1,10),(9276,4443,'Mr. Frank Connor',2,11),(9276,10739,'Principal Valerie Drake',1,12),(9276,12219,'Prof. Edward Furlong',2,13),(9276,1473,'Mr. John Tate',2,14),(9276,17866,'F*** You Boy',2,15),(9276,34543,'F*** You Girl',1,16),(9276,97267,'Mrs. Jessica Brummel',1,17),(9276,1091198,'Eddie \'Meat\' McIvey',0,18),(9276,122416,'Tattoo Girl',0,19),(9276,18972,'F*** Up #1',2,20),(9276,56934,'F*** Up #2',1,21),(9276,939534,'Mr. Knowles',2,22),(9276,957577,'Tina',1,23),(9276,1091199,'Mr. Lewis',0,24),(9276,37005,'Freshman #1',2,25),(9276,1091200,'Freshman #2',0,26),(9276,1091201,'P.E. Teacher',0,27),(9276,2857,'Casey\'s Mom',0,28),(9276,84077,'Officer #1',2,29),(9276,206675,'Officer #2',1,30),(9276,1038939,'Hornet Mascot',0,31),(9276,71901,'Brun Coach',2,32),(2142,16483,'Sheriff Freddy Heflin',2,0),(2142,1037,'Ray Donlan',2,1),(2142,11477,'Gary Figgsy Figgis',2,2),(2142,380,'Lt. Moe Tilden',2,3),(2142,4688,'Murray Superboy Babitch',2,4),(2142,18750,'Liz Randone',1,5),(2142,36602,'Joey Randone',2,6),(2142,418,'Jack Rucker',2,7),(2142,28033,'Frank Lagonda',2,8),(2142,34691,'Leo Crasky',2,9),(2142,21197,'Deputy Cindy Betts',1,10),(2142,11315,'Deputy Bill Geisler',2,11),(2142,14702,'Rose Donlan',1,12),(2142,7164,'PDA President Lassaro',2,13),(2142,12977,'Detective Carson',2,14),(2142,36190,'Berta',1,15),(2142,3137,'Hector - Medic',2,16),(2142,102,'Delores',1,17),(2142,21385,'Toy Torillo',2,18),(2142,5384,'Shondel',2,19),(2142,4735,'Lassaro\'s Aide',2,20),(947,11390,'T.E. Lawrence',2,0),(947,12248,'Prince Feisal',2,1),(947,5401,'Auda abu Tayi',2,2),(947,10018,'General Lord Edmund Allenby',2,3),(947,5004,'Sherif Ali',0,4),(947,4113,'Mr. Dryden',2,5),(947,14371,'Colonel Brighton',2,6),(947,12515,'Turkish Bey',0,7),(947,11128,'Jackson Bentley',0,8),(947,14372,'General Sir Archibald Murray',2,9),(947,14373,'Tafas',2,10),(947,35250,'Gasim',2,11),(947,105634,'Majid',0,12),(947,105633,'Farraj',0,13),(947,105635,'Daud',0,14),(947,32119,'Medical Officer',2,15),(947,13331,'Club Secretary',2,16),(947,148872,'R.A.M.C. Colonel',0,17),(947,1375376,'Majid (voice)',2,18),(947,1152423,'MP in Map Room (uncredited)',0,19),(947,199917,'Captain at Officer\'s Club (uncredited)',0,20),(947,47547,'(uncredited)',2,21),(947,1607520,'Motor Bike Rider (uncredited)',0,22),(947,12238,'Motorcyclist by Suez Canal (uncredited)',2,23),(947,13317,'Officer with Pipe Gazing at Lawrence (uncredited)',2,24),(947,140449,'Officer in Officer\'s Club (uncredited)',2,25),(947,9879,'Sheik in Arab Council (uncredited)',0,26),(947,30769,'Sheik in Arab Council (uncredited)',2,27),(947,30421,'Arab Sheik (uncredited)',2,28),(947,1354487,'Extra (uncredited)',0,29),(947,106627,'Cavalry General at Field Briefing (uncredited)',2,30),(947,1607521,'Driver in Cairo (uncredited)',0,31),(947,22171,'Driver (uncredited)',0,32),(947,1330691,'Talal (uncredited)',0,33),(947,107388,'Allenby\'s Aide (uncredited)',0,34),(947,129051,'William Potter (uncredited)',0,35),(947,10507,'Reporter at Lawrence\'s Funeral (uncredited)',2,36),(947,53950,'Turkish Sergeant (uncredited)',2,38),(947,47383,'Vicar at St. Paul\'s (uncredited)',0,39),(947,188457,'Staff Major - Murray\'s Aide (uncredited)',0,40),(947,57073,'Michael George Hartley (uncredited)',2,41),(947,47403,'Artillery General at Field Briefing (uncredited)',0,42),(947,47396,'Reciter (uncredited)',2,43),(947,95741,'Bedouin (uncredited)',2,44),(947,1468584,'Mourner at St. Paul\'s (uncredited)',0,45),(947,1225600,'Infantry General at Field Briefing (uncredited)',0,46),(947,10596,'Corporal Jenkins (uncredited)',2,47),(947,123902,'Elder Harith (uncredited)',0,48),(947,954853,'Regimental Sergeant Major (uncredited)',0,49),(947,24722,'Bartender in Officer\'s Club (uncredited)',2,50),(947,36118,'Truck Driver (uncredited)',0,51),(947,1657347,'Turkish Soldier (uncredited)',2,52),(947,1844838,'Sergeant at Cairo Headquarters (uncredited)',0,53),(6961,23959,'Kat Ellis',1,0),(6961,20212,'Nick Mercer',2,1),(6961,9273,'Amy Ellis',1,2),(6961,1709,'Edward Fletcher-Wooten',2,3),(6961,53013,'Jeffrey',2,4),(6961,16480,'Victor Ellis',2,5),(6961,17693,'TJ',0,6),(6961,11318,'Bunny',1,8),(6961,185400,'The Flight Attendant',0,9),(6961,121847,'Pretty Woman',1,10),(2493,2130,'Westley',2,0),(2493,32,'The Princess Bride',1,1),(2493,25503,'Inigo Montoya',2,2),(2493,25504,'Fezzik',0,3),(2493,14541,'Prince Humperdinck',2,4),(2493,13524,'Count Tyrone Rugen',2,5),(2493,12900,'Vizzini',2,6),(2493,2314,'The Grandfather / Narrator',2,7),(2493,7904,'Miracle Max',2,8),(2493,2223,'The Grandson',2,9),(2493,10556,'Valerie',1,10),(2493,141450,'The Albino',2,11),(2493,18266,'The Impressive Clergyman',2,12),(2493,10664,'The King',2,13),(2493,1504602,'The Queen',1,14),(2493,213222,'The Ancient Booer',0,15),(2493,129346,'Yellin',2,16),(2493,12831,'The Mother',1,17),(2493,1504603,'The Assistant Brute',0,18),(2493,1504604,'The Balladeer\'s Percussionist (uncredited)',0,19),(2493,24137,'The Balladeer (voice) (uncredited)',0,20),(2493,1504605,'The Balladeer\'s Bassist (uncredited)',0,21),(2493,139560,'The Balladeer\'s Keyboardist (uncredited)',0,22),(2493,8271,'The Balladeer\'s Guitarist (uncredited)',2,23),(2493,1504606,'The Balladeer\'s Drummer (uncredited)',0,24),(2493,1504607,'(uncredited)',0,25),(2493,1504608,'Villager (uncredited)',0,26),(1562,17606,'Tammy Harris',1,0),(1562,18023,'Don',2,1),(1562,9827,'Scarlet',1,2),(1562,17604,'Sergeant Doyle',2,3),(1562,6195,'Flynn',2,4),(1562,2462,'Alice',0,5),(1562,17605,'General Stone',2,6),(1562,17607,'Andy',2,7),(1562,108620,'Sally',1,8),(1562,2972,'Jacob',2,9),(1562,170257,'Geoff',2,10),(1562,130414,'Karen',1,11),(1562,58913,'Boy in Cottage',0,12),(1562,1102065,'DLR Soldier',0,13),(1562,165359,'Military Officer',0,14),(1562,1128854,'Senior Medical Officer',0,15),(1562,1148103,'Rooftop Sniper',0,16),(1562,170230,'Soldier',2,17),(1562,122344,'Medical Officer',0,18),(1562,127714,'Bunker Soldier',0,19),(1562,235277,'Bunker Major',0,20),(1562,1207197,'Medical Centre Lobby Soldier',0,21),(1562,1052209,'Carpark Soldier',2,22),(1562,933049,'Carpark Civilian',1,23),(1562,40641,'Carpark Civilian',0,24),(1562,1207199,'Carpark Civilian',1,25),(1562,210908,'Carpark Civilian',2,26),(1562,82414,'Carpark Civilian',0,27),(1562,990064,'Carpark Civilian',0,28),(1562,1207200,'Carpark Civilian',0,30),(1562,584994,'Sam',2,31),(1562,513945,'Depot Man',0,32),(1562,210950,'Depot Woman',0,33),(1562,94384,'Infected Person (uncredited)',0,34),(1562,1207201,'Civilian (uncredited)',0,35),(1562,1207202,'Infected Person (uncredited)',0,36),(1562,1207203,'Victim (uncredited)',0,37),(1562,1207204,'Marine (uncredited)',0,38),(1562,1207205,'Civilian (uncredited)',0,39),(1562,1207206,'Infected Person (uncredited)',0,40),(1562,115500,'Infected Person (uncredited)',1,41),(1562,1207207,'Infected Person (uncredited)',0,42),(1562,1207208,'Infected Person (uncredited)',0,43),(1562,65952,'Infected Person (uncredited)',0,44),(1562,1207209,'Infected person (uncredited)',0,45),(1562,163545,'Carpark Civilian',2,46),(1562,1525068,'Don',2,47),(1562,1577435,'Jeremy Renner - Double (uncredited)',0,48),(1562,1577436,'Infected (uncredited)',0,49),(1562,1577439,'Infected Person (uncredited)',0,50),(1562,1577441,'Civilian (uncredited)',1,51),(1562,1577443,'Infected (uncredited)',0,52),(9434,3036,'Martin Q. Blank',2,0),(9434,6613,'Debi Newberry',1,1),(9434,707,'Grocer',2,2),(9434,3234,'Marcella',1,3),(9434,1903,'Dr. Oatman',2,4),(9434,5587,'Steven Lardner',2,5),(9434,12799,'Paul Spericki',2,7),(9434,14312,'Mr. Bart Newberry',2,8),(9434,74859,'Bicycle Messenger',2,10),(9434,52415,'Bob Destepello',2,11),(9434,3227,'Terry Rostand',2,12),(9434,143328,'Kenneth McCullers',2,13),(9434,68394,'Eckhart',2,14),(9434,59260,'Amy',1,15),(9434,30618,'Mary Blank',1,16),(9434,40279,'Tanya',1,17),(9434,152863,'Mrs. Kinetta',1,18),(9434,7143,'Waiter',2,19),(9100,17346,'Sarah Bailey',1,0),(9100,826,'Nancy Downs',1,1),(9100,9206,'Bonnie',1,2),(9100,19222,'Rochelle',1,3),(9100,22108,'Chris Hooker',2,4),(9100,15286,'Laura Lizzie',1,5),(9100,33654,'Mitt',2,6),(9100,211998,'Trey',2,7),(9100,44301,'Mr. Bailey',0,8),(9100,42123,'Lirio',1,9),(9100,4160,'Grace Downs',1,10),(9100,152355,'Jenny',1,11),(9100,101396,'Doctor',1,12),(9100,43461,'Monsieur Thepot',2,13),(9100,166617,'Priest',2,14),(116,1244,'Chris Wilton',2,0),(116,1245,'Nola Rice',1,1),(116,1246,'Chloe Hewett Wilton',1,2),(116,1248,'Alec Hewett',2,3),(116,1249,'Eleanor Hewett',1,4),(116,34715,'Detective Banner',2,5),(116,1125,'Inspector Dowd',2,6),(116,195525,'Heather',1,7),(116,250,'Mrs. Eastby',1,8),(116,42276,'Henry',2,9),(116,20286,'Policeman',2,10),(116,1250,'Mr. Townsend',2,11),(116,1247,'Tom Hewett',2,12),(116,71281,'Estate Agent',2,13),(116,34546,'Ping-Pong Player',2,14),(116,10701,'Rod Carver',2,15),(116,80420,'Alan Sinclair',2,16),(116,24272,'John the Chauffeur',0,17),(116,47944,'Custodian',2,18),(116,141355,'Carol',1,19),(116,25655,'Samantha',1,20),(116,32559,'Hewetts\' Friend',0,21),(116,4573,'Margaret',1,22),(116,41547,'Nola Co-Worker',1,23),(116,5414,'Ian',2,24),(116,28485,'Detective Parry',2,25),(116,1143403,'\'La Traviata\' Performer',1,26),(116,1471825,'\'La Traviata\' Performer',0,27),(116,55345,'Hewetts\' Friend',0,28),(116,1665,'Office Worker (uncredited)',2,29),(1245,4173,'James Stevens',2,0),(1245,7056,'Miss Kenton',1,1),(1245,1292,'Lord Darlington',2,2),(1245,20006,'Jack Lewis',2,3),(1245,3291,'Reginald Cardinal',2,4),(1245,386,'William Stevens',2,5),(1245,21343,'Charlie, Head Footman',2,6),(1245,1220068,'Mrs. Mortimer, the cook',1,7),(1245,3568,'Spencer',2,8),(1245,2369,'Dupont D\'Ivry',2,9),(1245,2479,'Sir Geoffrey Wren',2,10),(1245,11276,'Thomas Benn',2,11),(1245,17286,'Lizzie',1,12),(1245,116975,'Harry Smith',2,13),(1245,44419,'Sir Leonard Bax',0,14),(1245,1430048,'Baroness',0,15),(1245,184881,'Doctor Meredith',2,16),(1245,36666,'Doctor Richard Carlisle',2,17),(1245,12691,'Lord Halifax',2,18),(1245,659,'German ambassador',2,19),(1245,1370647,'Housemaid',0,20),(1245,1370644,'Auctioneer',0,21),(1245,1370645,'Landlady',0,22),(1245,1370646,'George, Second Footman',0,23),(1245,10732,'Trimmer',0,24),(1245,27169,'Canon Tufnell',2,25),(1245,1390502,'Viscount Bigge',0,26),(1245,1212147,'Postmaster',0,27),(1245,251768,'Irma',2,28),(1245,1232603,'Publican',0,29),(1245,54446,'Publican\'s wife',0,30),(1245,20069,'Andrews',0,31),(1245,206393,'Craddock (uncredited)',0,32),(4995,13240,'Eddie Adams alias Dirk Diggler',2,0),(4995,16475,'Jack Horner',2,1),(4995,4764,'Reed Rothchild',2,2),(4995,1231,'Amber Waves - Maggie',1,3),(4995,11155,'Todd Parker',2,4),(4995,69122,'Brandy alias Rollergirl',1,5),(4995,1233,'Scotty J.',2,6),(4995,3905,'Little Bill',2,7),(4995,1896,'Buck Swope',2,8),(4995,40481,'Maurice TT Rodriguez',2,9),(4995,658,'Rahad Jackson',2,10),(4995,25626,'The Colonel James',2,11),(4995,4492,'Floyd Gondoli',2,12),(4995,59874,'Studio owner',2,13),(4995,74615,'Becky Barnett',1,14),(4995,10743,'Kurt Longjohn',2,15),(4995,54428,'Hot Traxx Waiter',2,16),(4995,98365,'Judge',1,17),(4995,1748146,'Hot Traxx Chef',0,18),(4995,74252,'Little Bill\'s Wife',1,19),(4995,1748147,'Big Stud',0,20),(4995,20747,'Dirk\'s Mother',1,21),(4995,1748148,'Dirk\'s Father',0,22),(4995,388569,'Stereo Customer',0,23),(4995,4171,'Buck\'s Manager',2,24),(4995,1652791,'Teacher',0,25),(4995,21633,'High School / College Kid',2,26),(4995,18657,'Sheryl Lynn',1,27),(4995,177063,'Johnny - Limo Driver',2,28),(4995,1748149,'Colonel\'s Lady Friend',1,29),(4995,141573,'Young Stud',2,30),(4995,1411927,'Watcher #1',0,31),(4995,1139130,'Watcher #2',2,32),(4995,24435,'Rocky',2,33),(4995,1748150,'Hot Traxx DJ',0,34),(4995,1719106,'Colonel\'s Hot Traxx Girlfriend',1,35),(4995,1748153,'Becky\'s Girlfriend',1,36),(4995,1748155,'Becky\'s Girlfriend\'s Friend',0,37),(4995,4766,'Jessie St. Vincent',1,38),(4995,312,'Awards Ceremony Band Member',2,39),(4995,1661084,'Awards Ceremony Band Member',0,40),(4995,1748156,'Awards Ceremony Band Member',0,41),(4995,1748157,'Awards Ceremony Band Member',0,42),(4995,1717527,'Raphael',0,43),(4995,46921,'Jerome',2,44),(4995,75321,'Floyd\'s Kid - Boy',0,45),(4995,62849,'Floyd\'s Kid - Boy',2,46),(4995,1791767,'Floyd\'s Kid - Girl',1,47),(4995,1748158,'Floyd\'s Kid - Girl',1,48),(4995,1748162,'Mugsy Jack\'s Bartender',0,49),(4995,132095,'New Year\'s Eve Young Stud',0,50),(4995,1734741,'KC Sunshine',1,51),(4995,1655495,'Minister',0,52),(4995,1748164,'Johnny Doe',0,53),(4995,40468,'Nick the Engineer',2,54),(4995,15800,'Bank Worker',2,55),(4995,45297,'Herself',1,56),(4995,138182,'Herself',1,57),(4995,62590,'Lawyer',2,58),(4995,545113,'Amber\'s Husband',0,59),(4995,76314,'Surfer',2,60),(4995,131413,'Surfer Punk',0,61),(4995,1748174,'Surfer Punk',0,62),(4995,1748175,'Surfer Punk',0,63),(4995,1488386,'Donut Boy',0,64),(4995,33017,'Man with Gun',2,65),(4995,1748176,'Puerto Rican Kid',0,66),(4995,1748177,'Rahad\'s Bodyguard',0,67),(4995,1748178,'Cosmo - Rahad\'s Boy',0,68),(4995,1537424,'Tyrone',0,69),(4995,157488,'Maurice\'s Brother',2,70),(4995,1748179,'Maurice\'s Brother',0,71),(4995,1642098,'Doctor',0,72),(4995,1748115,'Hot Traxx Dancer',1,73),(4995,29214,'Hot Traxx Dancer',1,74),(4995,1748180,'Hot Traxx Dancer',0,75),(4995,1748182,'Hot Traxx Dancer',1,76),(4995,1397694,'Hot Traxx Dancer',0,77),(4995,1748183,'Hot Traxx Dancer',0,78),(4995,1339220,'Hot Traxx Dancer',0,79),(4995,14390,'Hot Traxx Dancer',1,80),(4995,1748185,'Hot Traxx Dancer',0,81),(4995,1741701,'Hot Traxx Dancer',1,82),(4995,1748074,'Hot Traxx Dancer',0,83),(4995,1748186,'Hot Traxx Dancer',0,84),(4995,1383838,'Clubgoer',2,85),(4995,103437,'Underwater Swimming Girl at Party',1,86),(4995,1748187,'Patron',0,87),(4995,1748188,'Actor in \'Angels Live in My Town\'',0,88),(4995,1521517,'Dirk Diggler\'s Hairstylist',0,89),(4995,1748189,'Jack\'s Pool Party Guest',0,90),(4995,1748190,'Dancer',0,91),(4995,1748191,'Girl in Red Dress',1,92),(4995,1748193,'Party Man',0,93),(9793,37008,'Papa Hades',2,0),(9793,59293,'Han',2,1),(9793,42547,'Wilson',0,2),(9793,54865,'Redding',2,3),(9793,20754,'Foster',2,4),(9793,11,'Hansel',2,5),(9793,59294,'Stabber',0,6),(9793,59295,'Delmar',2,7),(9793,59296,'Missy',1,8),(9793,59297,'Spitter',2,9),(9793,55463,'Amber',1,10),(9793,59298,'Insurgent',0,11),(9793,59292,'Pregnant Woman',0,12),(9793,16429,'Crank',2,13),(9793,59299,'Stump',2,14),(8975,56446,'John Triton',2,0),(8975,56447,'Kate Triton',1,1),(8975,418,'Rome',2,2),(8975,160179,'Angela',1,3),(8975,9378,'Morgan',2,4),(8975,41782,'Bennett',2,5),(8975,56448,'Billy',2,6),(8975,56449,'Van Buren',2,7),(8975,56450,'Terrorist',2,8),(8975,1325836,'Rick',0,9),(9424,11006,'Steve Clark',2,0),(9424,3897,'Rachel Wagner',1,1),(9424,6408,'Gavin Strick',2,2),(9424,52023,'Officer Cox',0,3),(9424,21089,'Dr. Edgar Caldicott',2,4),(9424,6573,'Newberry',2,5),(9424,27136,'Lindsay Clark',1,6),(9424,100372,'Trent',2,8),(9424,158377,'Mr. Clark',2,9),(9424,71763,'Mrs. Clark',1,10),(9424,58019,'Allen Clark',2,11),(9424,52508,'Andy',2,12),(9424,55591,'Dickie Atkinson',2,13),(9424,1236419,'Lorna',0,14),(9424,43903,'Abbey',1,15),(7501,12834,'Matty Demaret',2,0),(7501,52708,'Chris Scarpa',0,1),(7501,13922,'Johnny Marbles',2,2),(7501,12835,'Taylor Reese',2,3),(7501,6949,'Teddy Deserve',2,4),(7501,28033,'Billy Clueless',2,5),(7501,52711,'Freddy the Watch',0,6),(7501,25878,'Deputy Ward',2,7),(7501,34839,'Brucker',2,8),(7501,2778,'Benny Chains',2,9),(7501,52718,'Matty at 13',2,10),(7501,52719,'Heslep the Barkeep',0,11),(7501,20176,'Decker',2,12),(7501,44176,'Teeze',0,13),(7501,119232,'Sheriff Decker',2,14),(7501,123301,'Louise',0,15),(7501,1791007,'Claire the Waitress',0,16),(7501,99182,'Terri the Waitress',1,17),(7501,33489,'Mac McCreadle',2,18),(7501,5170,'Bobby Boulevard',2,19),(7501,66657,'Dean the Greenskeeper',2,20),(7501,82647,'Devin the Bartender',0,21),(7501,20196,'Bar Patron',2,22),(7501,1465528,'Bernadette the Waitress',1,23),(7501,86237,'Klanderud',2,24),(7501,180917,'Noriega',0,25),(7501,76528,'Tony the Waiter',2,26),(7501,128176,'Earl at the Gun Shop',2,27),(7501,981162,'Sleepy Girl in Bed',1,28),(7501,1701137,'Joey Hook',2,29),(7501,2545,'Bar Patron',2,30),(7501,1816,'Airport Mechanic',0,31),(9686,1243,'Sheldon',2,0),(9686,58529,'Psychiatrist',2,1),(9686,58530,'Mother',1,2),(9686,12021,'Lisa',0,3),(9686,58531,'Sheldon\'s Secretary',1,4),(9686,28029,'Mr. Bates',0,5),(9686,58532,'Board Member',0,6),(9686,58533,'Aunt Ceil',1,7),(9686,22009,'Waiter',0,8),(9686,58534,'Shandu, The Magician',0,9),(9686,42136,'Rita',1,10),(9686,16376,'Theater Manager',2,11),(9686,58535,'Detective Flynn / Clifford, The Doorman / Cop',2,12),(9686,58536,'Store Clerk',0,13),(9686,58537,'Citizen',0,14),(9686,26469,'Costume Party Guest',1,15),(9686,1733,'Lionel Dobie',2,16),(9686,2165,'Paulette',1,17),(9686,884,'Gregory Stark',2,18),(9686,7796,'Paulette\'s Friend',1,19),(9686,205,'Lisa\'s Daughter',1,20),(9686,1032,'Man Having Picture Taken with Lionel Dobie',2,21),(68,378,'Sam Lowry',2,0),(68,380,'Archibald \'Harry\' Tuttle',2,1),(68,381,'Mrs. Ida Lowry',1,2),(68,65,'Mr. M. Kurtzmann',2,3),(68,382,'Spoor',2,4),(68,383,'Jack Lint',2,5),(68,385,'Mr. Warrenn',2,6),(68,280,'Smoking Man (uncredited)',2,7),(68,386,'Mr. Helpmann',2,8),(68,387,'Jill Layton',1,9),(68,388,'Dr. Jaffe',2,10),(68,14325,'Dowser',2,11),(68,20243,'Priest',2,12),(68,141537,'Basement Guard',2,13),(68,97167,'Mrs. Alma Terrain',1,14),(68,374,'Harvey Lime',0,15),(68,177594,'Shirley',0,16),(68,22171,'Spiro',0,17),(68,117555,'Charlie--Dept. of Works',2,18),(68,10732,'T.V. Commercial Presenter',0,19),(68,1215892,'M.O.I. Lobby Porter',0,20),(68,132538,'Dr. Chapman',2,21),(115,1229,'The Dude',2,0),(115,1230,'Walter Sobchak',2,1),(115,1231,'Maude Lebowski',1,2),(115,884,'Theodore Donald Donny Kerabatsos',2,3),(115,1233,'Brandt',2,4),(115,1232,'Jeffrey Lebowski - The Big Lebowski',2,5),(115,1241,'Jesus Quintana',2,6),(115,1234,'Bunny Lebowski',1,7),(115,16431,'The Stranger',2,8),(115,856,'Jackie Treehorn',2,9),(115,53,'Nihilist #1, Uli Kunkel/\'Karl Hungus\'',2,10),(115,1238,'Nihilist #3, Franz',2,11),(115,1237,'Nihilist #2, Kieffer',2,12),(115,4771,'Nihilist Woman, Franz\'s Girlfriend',1,13),(115,1235,'Woo, Treehorn Thug',2,14),(115,1236,'Blond Treehorn Thug',2,15),(115,1239,'Smokey',0,16),(115,1240,'Marty',2,17),(115,1242,'Liam O\'Brien, Quintana\'s Partner',0,18),(115,11207,'Knox Harrington',2,19),(115,4253,'Da Fino',2,20),(115,58565,'Maude\'s Thug #1',2,21),(115,16662,'Older Cop',2,22),(115,41517,'Younger Cop',2,23),(115,60275,'Tony the Chauffeur',2,24),(115,1433893,'Coffee Shop Waitress',0,25),(115,162235,'Auto Circus Cop',2,26),(115,154693,'Gary the Bartender',2,27),(115,116907,'Doctor',2,28),(115,4510,'Arthur Digby Sellers',0,29),(115,6329,'Pilar, Sellers\' Housekeeper',1,30),(115,66210,'Corvette Owner',2,31),(115,169920,'Malibu Police Chief',2,32),(115,1325966,'Cab Driver',0,33),(115,1000228,'Saddam Hussein',2,34),(115,1559637,'Pancake Waitress',1,35),(115,1667649,'Little Larry Sellers',2,36),(115,177164,'Chorine Dancer (uncredited)',1,37),(115,132232,'Sherry in \'Logjammin\' (uncredited)',1,38),(115,154207,'Dancer (uncredited)',1,39),(115,1451618,'Cook (uncredited)',2,40),(7874,2231,'Lazarus',2,0),(7874,6886,'Rae',1,1),(7874,12111,'Ronnie Morgan',2,2),(7874,3978,'Angela',1,3),(7874,9785,'Reverend R. L.',2,4),(7874,53258,'Tehronne',2,5),(7874,53259,'Gill',2,6),(7874,53260,'Rose Woods',1,7),(7874,53261,'Sandy',1,8),(7874,53262,'Lincoln',0,9),(7874,15537,'Deke Woods',2,10),(7874,53263,'Mayella',1,11),(7874,53264,'Bojo',0,12),(7874,53265,'Jesse',0,13),(7874,53266,'Kell',1,14),(4911,6856,'Eldon Perry',2,0),(4911,100,'Bobby Keough',2,1),(4911,39977,'Beth Williamson',1,2),(4911,2039,'Jack van Meter',2,3),(4911,10182,'Arthur Holland',2,4),(4911,12139,'Sally Perry',1,5),(4911,6066,'Gary Sidwell',2,6),(4911,81583,'Darryl Orchard',2,7),(4911,65164,'Maniac',2,8),(4911,65760,'Deena Schultz',1,9),(4911,783,'James Barcomb',2,10),(4911,19265,'Janelle Holland',1,11),(4911,16584,'Henry Kim',2,12),(4911,1560006,'Eldon Perry III',0,13),(4911,64233,'Frank',2,14),(4911,102580,'Sapin',2,15),(4911,64351,'Rico',2,16),(1988,11701,'Mariane Pearl',1,0),(1988,5346,'Daniel Pearl',2,1),(1988,76793,'Captain',2,2),(1988,128645,'Asra Q. Nomani',1,3),(1988,81681,'John Bussey',2,4),(1988,20467,'Adam Pearl',0,5),(1988,20468,'Asra\'s Boyfriend',0,6),(1988,20469,'Maureen Platt',1,7),(1988,20470,'Matt McDowell',2,8),(1988,20471,'John Skelton',2,9),(1988,32334,'Shabir',0,10),(1988,32335,'Dannyu00b4s Taxi Driver',0,11),(1988,32336,'Masud the Fixer',0,12),(1988,32337,'Kaleem Yusuf',0,13),(1988,32338,'Human Rights Director',0,14),(9557,9777,'Jerry Robinson',2,0),(9557,52117,'Nick Ragoni',2,1),(9557,41901,'Gabriella',1,2),(9557,2535,'Felicia',1,3),(9557,44243,'Hector',2,4),(9557,10222,'Lloyd Faversham',2,5),(9557,72689,'Inga',1,6),(9557,7401,'Sonya the Coach',1,7),(9557,131649,'Sheri',1,8),(9557,60672,'Ron',2,9),(9557,236327,'Tom',2,10),(9557,6487,'Felicia\'s Dad',2,11),(9557,4029,'Boat Captain',2,12),(9026,4757,'Algernon Moncrieff (u201eAlgyu201c)',2,0),(9026,5472,'John Worthing (u201eJacku201c)',2,1),(9026,368,'Cecily',1,2),(9026,5309,'Lady Bracknell',1,3),(9026,207,'Dr. Chasuble',2,4),(9026,1518,'Gwendolen Fairfax',1,5),(9026,8227,'Miss Laetitia Prism',1,6),(9026,9126,'Lane',2,7),(9026,3568,'Merriman',2,8),(9026,138413,'Gribsby',0,9),(9026,112439,'Dowager',1,10),(8321,72466,'Ray',2,0),(8321,2039,'Ken Daley',2,1),(8321,5469,'Harry Waters',2,2),(8321,11291,'Chlou00eb Villette',1,3),(8321,45749,'Marie',1,4),(8321,54476,'Jimmy',0,5),(8321,42998,'Natalie Waters',1,6),(8321,51325,'Eirik',2,7),(8321,211413,'Overweight Man',0,8),(8321,145299,'Yuri',0,9),(8321,72857,'Denise',1,10),(8321,588742,'Boy in Church',0,11),(8321,1210044,'Film Director',0,12),(8321,1210045,'Canadian Girl',1,13),(8321,6752,'Canadian Guy',2,14),(8321,1210042,'Ticket Seller',2,15),(8321,58920,'Boat Driver',0,16),(8321,1270046,'Imamoto',0,17),(8321,1210046,'Policeman',0,18),(8321,1559405,'Overweight Woman',0,19),(8321,1091468,'Overweight Woman #2',1,20),(8321,1120704,'Ken\'s Wife (uncredited)',0,21),(8321,8785,'Priest (uncredited)',2,22),(8321,136532,'Young Harry Waters (uncredited)',2,23),(8053,2176,'Pete Perkins',2,0),(8053,12834,'Mike Norton',2,1),(8053,20309,'Belmont',2,2),(8053,31717,'Lou Ann Norton',1,3),(8053,6832,'Rachel',1,4),(8053,36634,'Melquiades Estrada',2,5),(8053,76136,'Old Man with Radio',2,6),(8053,59675,'Captain Gomez',2,7),(8053,25911,'Rosa',1,8),(8053,974819,'Lucio',2,9),(8053,259,'Mariana',1,10),(8053,36633,'Manuel',2,11),(8053,273,'Juan',2,12),(8053,108037,'Border Patrolman',2,13),(8053,51732,'Salesman',2,14),(8053,63214,'Kruger',2,15),(2290,2157,'Jakob Heym',2,0),(2290,12647,'Prof. Dr. Kirschbaum',2,1),(2290,23621,'Lina Kronstein',1,2),(2290,23622,'Lina`s Mutter',0,3),(2290,23623,'Linas`s Vater',0,4),(2290,5646,'Preuss',2,5),(2290,23625,'Hocker',1,6),(2290,12438,'Kowalsky',2,7),(2290,1903,'Max Frenkfurter',2,8),(2290,2169,'Avron',2,9),(2290,1173,'Fajngold',2,10),(2290,23626,'Mischa',2,11),(5236,3223,'Harry Lockhart',2,0),(5236,5576,'Gay Perry',2,1),(5236,11705,'Harmony Faith Lane',1,2),(5236,21246,'Harlan Dexter',2,3),(5236,6066,'Mr. Frying Pan',2,4),(5236,1211,'Dabney Shaw',2,5),(5236,17345,'Mr. Fire',2,6),(5236,27855,'Pink Hair Girl',1,7),(5236,42158,'Flicka',1,8),(5236,42159,'Harry Age 9',0,9),(5236,42160,'Harmony Age 7',1,10),(5236,42163,'Chainsaw Kid',0,11),(5236,3209,'Rickie',0,12),(5236,58114,'Marleah',1,13),(5236,42165,'Pistol Woman',1,14),(5236,42168,'NY Casting Woman',1,15),(5236,1496388,'N.Y. Cop',0,16),(5236,68634,'B-Movie Actress',1,17),(5236,555328,'Creature',0,18),(5236,1570330,'Harmony Faith Lane - Age 14',1,19),(5236,72541,'Gift Bag Girl',1,20),(5236,961908,'Party Girl',1,21),(6552,50398,'Anton',2,0),(6552,13922,'Mick',2,1),(6552,56731,'Molly',1,3),(6552,2535,'Debi LeCure',1,4),(6552,50400,'Die Hand',2,5),(6552,22133,'Randy',2,6),(6552,50401,'Tanya',1,7),(6552,9996,'McMacy',2,8),(6552,50402,'Ruck',2,9),(6552,20220,'Pnub',2,10),(6552,20753,'Dad Tobias',2,11),(6552,35517,'Mom Tobias',1,12),(6552,108438,'Curtis',2,13),(6552,177522,'Tiffany',1,14),(6552,28168,'Principal Tidwell',0,15),(6552,9998,'Burger Jungle Manager',2,16),(6552,1089116,'News Reporter',0,17),(6552,22297,'Burger Jungle Guy',2,18),(6552,13924,'Lady Bowler',1,19),(6552,52925,'Nurse',0,20),(6552,102567,'Sheriff Buchanan',2,21),(6552,1004159,'Chaperone',0,22),(6552,55653,'Chaperone',0,23),(6552,574878,'Band Lead Singer',0,24),(6552,84546,'Window server at Burger Jungle',2,25),(1018,3489,'Betty Elms',1,0),(1018,15007,'Rita',1,1),(1018,15008,'Catherine Lenoix',1,2),(1018,6486,'Vincenzo Castigliane',2,3),(1018,15009,'Adam Kesher',2,4),(1018,15011,'Detective Neal Domgaard',2,5),(1018,5694,'Detective Harry McKnight',2,6),(1018,15012,'Cynthia Jenzen',0,7),(1018,30123,'Louise Bonner',1,8),(1018,9306,'Wilkins',2,9),(1018,78887,'Gene',2,10),(1018,15013,'Jimmy Katz',2,11),(1018,140356,'Linney James',0,12),(1018,14852,'Wally Brown',2,13),(1018,15010,'Lorraine Kesher',1,14),(1018,5628,'Luigi Castigliani',2,15),(1018,65334,'Billy Deznutz',2,16),(1018,154605,'Vincent Darby',2,17),(1018,53646,'Waitress at Winkies (Diane / Betty)',0,18),(1018,79654,'Ray Hott',0,19),(1018,14796,'Irene',1,20),(1018,1037878,'Irene\'s Companion at Airport',0,21),(1018,1172386,'Limo Driver',0,22),(1018,1172387,'Ruth Elms',0,23),(1018,52801,'Dan',2,24),(1018,1172388,'Herb',0,25),(1018,87287,'Bum',1,26),(1018,123517,'Mr. Roque',2,27),(1018,1172389,'Roque\'s Manservant',0,28),(1018,1172390,'Back of Head Man',0,29),(1018,1172391,'Hairy-Armed Man',0,30),(1018,191201,'Cab Driver at LAX',2,31),(1018,141808,'Valet Attendant',2,32),(1018,194624,'Robert Smith',0,33),(1018,1172392,'Espresso Man',0,34),(1018,27755,'Camilla Rhodes',1,35),(1018,8180,'Castigliane Limo Driver',2,36),(1018,1236,'Joe Messing',2,37),(1018,177100,'Ed',2,38),(1018,1172393,'Heavy-Set Woman',0,39),(1018,9654,'Vacuum Man',2,40),(1018,66877,'Laney',1,41),(1018,70947,'Taka',2,42),(1018,13644,'Kenny',2,43),(1018,54864,'Cookie Park Hotel Manager / Club Silencio M.C.',2,44),(1018,6589,'Cowboy',0,45),(1018,21803,'Martha Johnson',0,46),(1018,52145,'Bob Brooker',2,47),(1018,163642,'Nicki Pelazza',0,48),(1018,1172395,'Julie Chadwick',0,49),(1018,55929,'2nd Assistant Director',2,50),(1018,34274,'Carol',0,51),(1018,174012,'Backup Singer #1',2,52),(1018,41690,'Backup Singer #2',1,53),(1018,1172396,'Backup Singer #3',0,54),(1018,1172397,'Backup Singer #4',0,55),(1018,1172398,'Hank',0,56),(1018,84707,'Jason',2,57),(1018,961740,'Woman in #12',1,58),(1018,1172399,'Bondar',0,59),(1018,1172400,'Club Silencio Trumpet Player',0,60),(1018,9320,'Blue-Haired Lady in balcony seat at Club Silencio',0,61),(1018,230725,'Herself',1,62),(1018,1172401,'Blond in Bed (Corpse) in #17',0,63),(1018,1172402,'Dancer',0,64),(1018,1172403,'Dancer',0,65),(1018,1172404,'Dancer',0,66),(1018,1172405,'Dancer',0,67),(1018,1172406,'Dancer',0,68),(1018,1172407,'Dancer',0,69),(1018,1172409,'Dancer',2,70),(6687,57755,'Roy',2,0),(6687,1246,'Jessie',1,1),(6687,51072,'Abby',1,2),(6687,17093,'Carlos',2,3),(6687,3491,'Myassa',2,4),(6687,2282,'Grinko',2,5),(6687,150792,'Frenchman',2,6),(6687,33403,'Minister',2,7),(6687,23608,'Embassy Official',2,8),(6687,1129800,'Manager Hotel Pushkin',0,9),(6687,569842,'Young Detective',0,10),(6687,1129801,'Military Officer',0,11),(6687,569847,'Female Train Attendant #1',0,12),(6687,1129802,'Female Train Attendant #2',0,13),(6687,231869,'Lithuanian Backpacker',0,14),(6687,1129802,'',0,15),(8461,3489,'Ann',1,0),(8461,3129,'George',2,1),(8461,10692,'Paul',2,2),(8461,55493,'Peter',2,3),(8461,55494,'Georgie',0,4),(8461,32389,'Fred',2,5),(8461,55496,'Robert',0,7),(8461,55497,'Betsys Schwu00e4gerin',0,8),(8461,7433,'Eve',1,9),(8461,6751,'Betsy',1,10),(19,75,'Maria',1,0),(19,73,'Johann \'Joh\' Fredersen',2,1),(19,74,'Freder Fredersen',2,2),(19,77,'C.A. Rotwang, the inventor',2,3),(19,78,'Der Schmale',2,4),(19,79,'Josaphat - Joseph',0,5),(19,80,'No. 11811 - Georgy',2,6),(19,81,'Grot',2,7),(19,82,'Jan',2,8),(19,2350,'Arbeiterfrau',2,9),(19,20534,'Frau im Wagen',1,10),(19,83,'Marinus',0,11),(19,20535,'Kreativer Mensch',0,12),(19,20533,'Zeremonienmeister',2,13),(19,47173,'Working Woman (uncredited)',1,14),(19,5028,'Working Man (uncredited)',2,15),(19,50893,'Son in Eternal Gardens (uncredited)',0,16),(19,1288145,'Woman of Eternal Gardens (uncredited)',1,17),(19,29129,'Working Man Who Causes Explosion of M-Machine (uncredited)',0,18),(19,1531781,'Working Man (uncredited)',0,19),(19,1689706,'Working Woman (uncredited)',0,20),(400,1271,'Jimmy \'The Saint\' Tosnia',2,0),(400,1062,'Pieces',2,1),(400,4520,'Franchise',2,2),(400,5502,'Easy Wind',2,3),(400,4515,'Critical Bill',2,4),(400,5251,'Joe Heff',2,5),(400,884,'Mister Shhh',2,6),(400,826,'Lucinda',1,7),(400,5503,'Dagney',1,8),(400,4690,'The Man with the Plan',2,9),(400,5504,'Bernard',2,10),(400,5601,'Meg',1,11),(400,199303,'Alex',2,12),(400,35597,'Blonde Nurse',1,13),(9104,73421,'Ray Elwood',2,0),(9104,228,'Colonel Berman',2,1),(9104,349,'Sergeant Lee',2,2),(9104,10690,'Robyn Lee',1,3),(9104,4513,'Mrs. Berman',1,4),(9104,454,'Garcia',2,5),(9104,32458,'Pfc. Brian Knoll',2,8),(9104,923,'General Lancaster',2,9),(9104,6579,'Colonel Marshall',2,10),(9104,134529,'Sergeant Saad',2,11),(9104,1315455,'Kirschfield',0,12),(9104,29615,'Rothfuss',2,13),(9104,192944,'Squash',2,14),(9104,12974,'Stoney',2,15),(9104,15442,'Colonel Armstrong',2,16),(9104,17605,'Kimborough',2,17),(9288,27422,'Damodar',2,0),(9288,57143,'Berek',2,1),(9288,57144,'Melora',1,2),(9288,57145,'Lux',0,3),(9288,57146,'Nim',0,4),(9288,141533,'Ormaline',1,5),(9288,1331373,'Barnaby',0,6),(137,1532,'Phil Connors',2,0),(137,1533,'Rita',1,1),(137,1534,'Larry',2,2),(137,537,'Ned Ryerson',2,3),(137,1535,'Buster Green',2,4),(137,1537,'Mrs. Lancaster',1,5),(137,1538,'Gus',0,6),(137,1539,'Ralph',2,7),(137,1540,'Doris, the Waitress',1,8),(137,1542,'Kenny',2,9),(137,236327,'Man in Hallway',2,10),(137,335,'Fred',2,11),(137,1524,'Neurologist',2,12),(137,1536,'Nancy',1,13),(137,1318541,'Old Man',0,14),(137,86571,'State Trooper',2,15),(137,36093,'Piano Teacher',1,16),(137,74487,'Psychiatrist',2,17),(137,122238,'Cop',0,18),(137,7690,'Bank Guard Herman',2,19),(137,1231189,'Phil\'s Movie Date',0,20),(137,113919,'Debbie',1,21),(137,1178316,'Flat Tire Lady',0,22),(137,86565,'Flat Tire Lady',1,23),(137,223577,'Buster\'s Wife',0,24),(137,1228791,'Buster\'s Son',0,25),(137,1173804,'D.J. (voice)',0,26),(137,103243,'Reporter (uncredited)',0,27),(137,236495,'Bit (uncredited)',0,28),(137,14784,'State Trooper (voice) (uncredited)',2,29),(454,6193,'Romeo',2,0),(454,6194,'Juliet',1,1),(454,5723,'Tybalt',2,2),(454,6195,'Mercutio',2,3),(454,4935,'Father Laurence',2,4),(454,7004,'Fulgencio Capulet',2,5),(454,6197,'Ted Montague',2,6),(454,6198,'Captain Prince',2,7),(454,6199,'The Nurse',1,8),(454,6200,'Gloria Capulet',1,9),(454,6213,'Sampson',0,10),(454,6066,'Benvolio',2,11),(454,1983,'Abra',2,12),(454,6214,'Anchorwoman',1,13),(454,22226,'Dave Paris',2,14),(33,190,'Bill Munny',2,0),(33,193,'Little Bill Daggett',2,1),(33,192,'Ned Logan',2,2),(33,194,'English Bob',2,3),(33,3710,'The Schofield Kid',2,4),(33,3711,'Delilah Fitzgerald',1,5),(33,3712,'W.W. Beauchamp',2,6),(33,3713,'Strawberry Alice',1,7),(33,3714,'Quick Mike',2,8),(33,2843,'Davey Bunting',0,9),(33,3715,'Skinny Dubois',2,10),(33,1242148,'Clyde Ledbetter',2,11),(33,185111,'Fatty Rossiter',2,12),(33,44205,'Deputy Andy Russell',2,13),(33,976171,'Lippy MacGregor',2,14),(33,188960,'Little Sue',1,15),(33,1055157,'Silky',1,16),(33,5481,'Faith',1,17),(33,130935,'Will Munny',0,18),(33,87210,'Crocker',0,19),(33,43555,'Muddy Chandler',0,20),(33,95638,'Charley Hecker',2,21),(33,1219890,'Barber',2,22),(33,1814,'Tom Luckinbill',0,23),(33,1499017,'Paddy McGee',0,24),(33,61167,'Fuzzy',2,25),(33,58058,'Texas Slim',2,26),(33,60433,'Johnny Foley',2,27),(33,1366825,'Wiggens',0,28),(33,168769,'Train Person',0,29),(33,21380,'Bucky',2,30),(33,175871,'The Shadow',0,31),(33,91839,'Fighter',0,32),(1951,18997,'Grace',1,0),(1951,4812,'Timothy',2,1),(1951,2047,'Wilhelm',2,2),(1951,5293,'Grace\'s Father',2,3),(1951,224150,'Thomas',0,4),(1951,7570,'Mam',1,5),(1951,4654,'Niels',2,6),(1951,1646,'Mr. Kirspe',2,7),(1951,2838,'Philomena',1,8),(1951,5049,'Narrator (Voice)',2,9),(1951,1225417,'Flora',0,11),(1951,185391,'Bertie',2,12),(114,1204,'Vivian Ward',1,0),(114,1205,'Edward Lewis',2,1),(114,1208,'James Morse',2,2),(114,1206,'Philip Stuckey',2,3),(114,1210,'Barney Thompson',2,4),(114,1211,'Mr. Hollister',2,5),(114,1212,'Kit De Luca',1,6),(114,747,'David Morse',0,7),(114,1209,'Bridget',1,8),(114,1219,'Elizabeth Stuckey',1,9),(114,1220,'Susan',1,10),(114,5587,'Detective',2,11),(114,42162,'Mark',2,12),(114,1779786,'Maitre D\'',0,13),(114,1708724,'Waiter',0,14),(114,1211994,'Senator Adams',0,15),(114,166393,'Skateboard Kid',2,16),(9396,57147,'Michael J. \'Crocodile\' Dundee',2,0),(9396,57166,'Sue Charlton',1,1),(9396,42841,'Walter Reilly',2,2),(9396,57593,'Charlie',2,3),(9396,17764,'Leroy Brown',2,4),(9396,40481,'Jose',2,5),(9396,17401,'DEA Agent',2,6),(9396,118937,'Bob Tanner',2,7),(9396,4996,'Park Girl',1,8),(9396,1219901,'Onlooker at Mansion',2,9),(2604,500,'Ron Kovic',2,0),(2604,10361,'Mr. Kovic',2,1),(2604,26466,'Mrs. Kovic',1,2),(2604,26469,'Jenny',1,3),(2604,26467,'Donna',1,4),(2604,13022,'Recruiting Gunnery Sgt. Hayes',2,5),(2604,26468,'Tommy Finnelli',2,6),(2604,9045,'Billy Vorsovich',2,7),(2604,11889,'Arzt',2,8),(2604,2535,'Hooker',1,9),(2604,3127,'Jamie Wilson',1,10),(2604,26470,'Steve Boyer',2,11),(2604,11805,'Timmy',2,12),(2604,5293,'Charlie',2,13),(2604,1044946,'Tommy Kovic',0,14),(2604,4029,'Doctor',2,15),(2604,126096,'Maria Elena',1,16),(2604,1218890,'Mr. Wilson',0,17),(2604,181312,'Mrs. Wilson',0,18),(2604,140234,'Suzanne Kovic',1,19),(2604,176976,'Joey Walsh',2,20),(2604,3197,'Vet - Villa Dulce',2,21),(2604,7486,'Vet - Villa Dulce',2,22),(2604,5170,'Man #1 - Arthur\'s Bar',2,23),(2604,21523,'Legion Commander',2,24),(2604,24516,'Vet #1 - Democratic Convention',2,25),(2604,4890,'Vet #2 - Miami Convention',2,26),(2604,3211,'Infantry Colonel',2,27),(2604,944229,'Massapequa Mom',1,28),(2604,171300,'Young Donna\'s Friend',0,29),(2604,1152,'News Reporter',2,30),(2604,3210,'Young Jimmy Kovic',2,31),(2604,265863,'Young Suzanne Kovic',1,32),(2604,1271929,'Neighbor',0,33),(2604,1338670,'Neighbor',0,34),(2604,20211,'Marine Major - Vietnam',2,35),(2604,37204,'Lieutenant - Vietnam',2,36),(2604,48012,'Martinez - Vietnam',2,37),(2604,92756,'Platoon - Vietnam',0,38),(2604,13021,'Platoon - Vietnam',2,39),(2604,92279,'Platoon - Vietnam',2,40),(2604,6474,'Platoon - Vietnam',2,41),(2604,15338,'Platoon - Vietnam',2,42),(2604,92658,'Platoon - Vietnam',2,43),(2604,137264,'Doctor - Vietnam',2,44),(2604,49832,'Chaplain - Vietnam',2,45),(2604,1447263,'Marvin - VA Hospital',0,46),(2604,27448,'Willie - VA Hospital',2,47),(2604,11890,'Aide #3 - VA Hospital',0,48),(2604,52794,'Patient - VA Hospital',2,49),(2604,155576,'Patient - VA Hospital',0,50),(2604,159948,'Patient - VA Hospital',2,51),(2604,4042,'Patient - VA Hospital',2,52),(2604,11892,'Patient - VA Hospital',0,53),(2604,170948,'Nurse Washington - VA Hospital',1,54),(2604,44682,'Frankie - VA Hospital',2,55),(2604,4177,'Donna\'s Boyfriend - Syracuse, NY',2,56),(2604,38951,'Speaker - Syracuse, NY',2,57),(2604,1231796,'Folk Singer - Syracuse, NY',0,58),(2604,7531,'Student Organizer - Syracuse, NY',2,59),(2604,42308,'Man #2 - Arthur\'s Bar',2,60),(2604,1150570,'Man #3 - Arthur\'s Bar',0,61),(2604,1418951,'Friend #1 - Arthur\'s Bar',0,62),(2604,180533,'Barmaid - Arthur\'s Bar',1,63),(2604,56979,'Vet - Villa Dulce',2,64),(2604,11891,'Vet - Villa Dulce',0,65),(2604,207992,'Young Tommy',2,66),(2604,181343,'Charlie\'s Hooker - Villa Dulce',1,67),(2604,132300,'Madame - Villa Dulce',0,68),(2604,103572,'Bartender - Villa Dulce',0,69),(2604,30487,'Undercover Vet - Miami Convention',0,70),(2604,928480,'Paraplegic #2 - Miami Convention',0,71),(2604,159056,'Paraplegic #3 - Miami Convention',2,72),(2604,118757,'Secret Service Agent - Miami Convention',2,73),(2604,998535,'Agent #2 - Miami Convention',0,75),(2604,1226885,'Vet #1 - Miami Convention',0,76),(2604,163254,'Vet #3 - Miami Convention',0,77),(2604,37827,'Fat Republican - Miami Convention',2,78),(2604,10489,'Democratic Delegate - Democratic Convention',2,79),(2604,44059,'Reporter #1 - Democratic Conventon',1,80),(2604,96223,'Reporter #2 - Democratic Conventon',0,81),(2604,11885,'Official #1 - Democratic Convention, Pushing Wheelchair',2,82),(2604,4201,'Official #2 - Democratic Convention',2,83),(2604,1219410,'Passerby #1 - Democratic Convention',1,84),(2604,5148,'Passerby #2 - Democratic Convention',1,85),(2604,34535,'Passerby #4 - Democratic Convention',1,86),(2604,555159,'Vet #2 - Democratic Convention',0,87),(2604,1328812,'Democratic Conventioner (uncredited)',0,88),(2604,170153,'Marine Recruiter (uncredited)',0,89),(2604,26471,'Parade Veteran (uncredited)',0,90),(2604,16663,'Protesting War Widow (uncredited)',1,91),(2604,107323,'Soldier (uncredited)',0,92),(2604,107322,'(uncredited)',0,93),(2604,95805,'Veteran (uncredited)',0,94),(2604,133452,'Agent #1 - Miami Convention',2,95),(864,12974,'Derice Bannock',2,0),(864,12975,'Sanka Coffie',2,1),(864,12976,'Junior Bevil',2,2),(864,12977,'Yul Brenner',2,3),(864,7180,'Irving \'Irv\' Blitzer',2,4),(864,10361,'Kurt Hemphill',2,5),(864,12978,'Josef Grool',2,6),(864,12979,'Roger',2,7),(864,12980,'Larry',2,8),(864,12981,'Winston',0,9),(864,940039,'Whitby Bevil - Sr.',2,10),(864,52819,'Coolidge',0,11),(864,1074165,'Joy Bannock',0,12),(864,1074166,'Momma Coffie',0,13),(864,118462,'Registration Official',2,14),(1931,31132,'DJ',2,0),(1931,22122,'April',1,1),(1931,31133,'Rich Brown',2,2),(1931,31134,'Grant',2,3),(1931,31135,'Noel',2,4),(1931,31136,'Duron',2,5),(1931,10964,'Zeke',2,6),(1931,31137,'Sylvester',0,7),(1931,31138,'Jackie',0,8),(1931,31139,'Dr. Palmer',2,9),(1931,9464,'Nate',2,10),(1931,114850,'Dr. Wilson',2,11),(691,10222,'James Bond',2,0),(691,10458,'Major Anya Amasova',1,1),(691,10459,'Karl Stromberg',2,2),(691,10460,'Jaws',0,3),(691,10461,'Naomi',1,4),(691,6610,'General Anatol Gogol',0,5),(691,10462,'Sir Frederick Gray',2,6),(691,9874,'M',2,7),(691,10173,'Captain Benson',2,8),(691,10463,'Sergei Barsov',2,9),(691,9906,'Q',2,10),(691,649,'Max Kalba',2,11),(691,9878,'Miss Moneypenny',1,12),(691,109865,'Liparus Captain',2,13),(691,10464,'Felicca',0,14),(691,10465,'Sheik Hosein',2,15),(691,95099,'Hotel Recepcionist',1,16),(691,2980,'Aziz Fekkesh',2,17),(691,104279,'Log Cabin Girl',0,18),(691,104940,'Rublevich',1,19),(691,2449,'HMS Ranger Crewman',2,20),(691,35063,'HMS Ranger Crewman',2,21),(691,83133,'Sandor',0,22),(691,24722,'Dr. Bechmann',2,23),(691,39817,'Prof. Markovitz',0,24),(691,14759,'Barman',2,25),(691,10657,'Cmdr. Carter',2,26),(691,76184,'Cmdr. Talbot',2,27),(691,110319,'Stromberg One Captain',2,28),(9877,3128,'Natalie Simon',1,0),(9877,7499,'Paul Gardener',2,1),(9877,59967,'Brenda Bates',1,2),(9877,19975,'Parker Riley',2,3),(9877,18284,'Reese Wilson',1,4),(9877,1234,'Sasha Thomas',1,5),(9877,12642,'Dean Adams',2,6),(9877,11866,'Damon Brooks',2,7),(9877,2320,'Weird Janitor',2,8),(9877,5139,'Professor William Wexler',2,9),(9877,21320,'Tosh Guaneri',1,10),(9877,3270,'Michelle Mancini',1,11),(9877,1591894,'David McAree',0,12),(9877,106711,'David Evans',2,13),(9877,196707,'Felicia',0,14),(9877,90341,'Blake',2,15),(9877,1815542,'Jenny',0,16),(9877,83024,'Library Attendant',1,17),(9877,166481,'Bitchy Girl',0,18),(9877,1176955,'Weather Lady',0,19),(9877,20179,'Nerdy Guy',0,20),(9877,55593,'Hippie Guy',2,21),(9877,957076,'Dorky Guy',2,22),(9877,180939,'Trendy Girl',0,23),(9877,38562,'Swimming Woman',1,24),(9877,72117,'Killer',2,25),(8291,54421,'Justice',1,0),(8291,54422,'Lucky',2,1),(8291,9788,'Iesha',1,2),(8291,54423,'Chicago',2,3),(8291,9782,'Jessie',1,4),(8291,40377,'Heywood',2,5),(8291,1954,'Brad',2,6),(8291,19265,'Simone',1,7),(8291,54424,'Aunt June',1,8),(8291,15309,'Penelope',1,9),(8291,54425,'Thug #2',0,10),(8291,54426,'Thug #1',0,11),(8291,54427,'Kim',1,12),(8291,54428,'Ticket Taker',2,13),(8291,54429,'Shante',1,14),(8291,54430,'Panhandler',2,15),(8291,54431,'Female Cousin',0,16),(8291,9785,'Uncle Earl',2,17),(8291,54432,'Dina',0,18),(8291,54433,'Helicopter pilot #1',0,19),(8291,54434,'Aunt May',1,20),(8291,54435,'Truck driver',0,21),(8291,54436,'Member, Last Poets',0,22),(8291,54437,'Member, Last Poets',0,23),(8291,54438,'Member, Last Poets',0,24),(8291,54439,'Member, Last Poets',0,25),(8291,54440,'E.J.',2,26),(8291,35689,'Crackhead',2,27),(2830,18976,'Tom Stansfield',2,0),(2830,1234,'Lisa Taylor',1,1),(2830,28637,'Red Taylor',2,2),(2830,4175,'Ken',2,3),(2830,147,'T.J.',2,4),(2830,17866,'Paul',2,5),(2830,28638,'Speed',2,6),(2830,28639,'Tina',1,7),(2830,28640,'Audrey Bennett',1,8),(2830,28641,'Jack Taylor',2,9),(2830,1239283,'Coffee Customer',0,10),(2013,8789,'Jean-Dominique Bauby',2,0),(2013,8925,'Cu00e9line Desmoulins',1,1),(2013,8791,'Henriette Durand',1,2),(2013,7276,'Claude',1,3),(2013,7275,'Dr. Lepage',2,4),(2013,17498,'Roussin',2,5),(2013,20725,'Marie Lopez',0,6),(2013,19162,'Father Lucien',2,7),(2013,32511,'Josu00e9phine',1,8),(2013,2201,'Papinou',2,9),(2013,4812,'Laurent',2,10),(2013,4286,'Empress Eugenia',0,11),(2013,49946,'Doctor Mercier',0,12),(2013,49947,'Doctor Cocheton',0,13),(2013,49948,'Ninjinski',0,14),(2013,1566966,'Thu00e9ophile',0,15),(2013,1131037,'Cu00e9leste',0,16),(2013,1177475,'Hortense',0,17),(2013,35324,'Betty',1,18),(2013,236639,'Madame Bauby',1,19),(2013,5445,'Joubert',2,20),(2013,131827,'Diane',1,21),(2013,53903,'Inu00e8s',1,22),(1440,204,'Sarah Pierce',1,0),(1440,17178,'Brad Adamson',2,1),(1440,6161,'Kathy Adamson',1,2),(1440,17183,'Ronnie J. McGorvey',2,3),(1440,11315,'Larry Hedges',2,4),(1440,17179,'Richard Pierce',2,5),(1440,17184,'May McGorvey',1,6),(1440,10361,'Bullhorn Bob',2,7),(1440,209,'Sheila',1,8),(1440,17181,'Aaron Adamson',2,9),(1440,17180,'Lucy Pierce',0,10),(1440,17185,'Jean',1,11),(1440,17186,'Mary Ann',1,12),(1440,17187,'Theresa',1,13),(1440,17188,'Cheryl',1,14),(1440,17191,'Slutty Kay',1,15),(1440,17192,'Tony Correnti',0,16),(1440,17193,'Richie Murphy',2,17),(1440,17194,'Pete Olafson',2,18),(1440,17195,'G',0,19),(1440,17196,'Richard\'s Secretary',0,20),(1440,17214,'Marjorie',0,21),(1440,17194,'Pete Olaffson',2,22),(1440,1634920,'Christian',2,23),(1123,504,'Nic Vos',2,0),(1123,15543,'Patrick Chamusso',2,1),(1123,15544,'Precious Chamusso',1,2),(1123,15545,'Zuko September',0,3),(1123,15546,'Obadi',2,4),(1123,15547,'Sixpence',0,5),(1123,13093,'Miriam',1,6),(1123,15549,'Anna Vos',0,7),(1123,15550,'Johnny Piliso',0,8),(1123,15551,'Katie Vos',0,9),(1123,15552,'Marie Vos',0,10),(1123,15553,'Mama Dorothy',0,11),(1123,1021884,'White Madam',1,12),(9045,8198,'Kurt Gerstein',2,0),(9045,2406,'Riccardo Fontana',2,1),(9045,8196,'SS-Arzt',2,2),(9045,19062,'Kardinal',2,3),(9045,15320,'Papst Pius XII.',2,4),(9045,15321,'Graf Fontana',0,5),(9045,6698,'Gersteins Vater',2,6),(9045,38299,'Gersteins Frau',0,7),(9045,2344,'Pastor Dibelius',2,8),(9045,169,'Grawitz',2,9),(9045,8197,'Hu00f6ss',2,10),(9045,16782,'Mrs. Hinze',1,11),(9045,5646,'Baron von Otter',2,12),(9045,36177,'Pastor Wehr',0,13),(9045,11951,'Von Weizsu00e4cker',2,14),(9045,19123,'Alexandra Baltz',1,15),(9045,8802,'Monsignore Hudal',2,16),(9045,38720,'Helga',1,17),(9045,8206,'Schachspieler',0,18),(142,1810,'Ennis Del Mar',2,0),(142,131,'Jack Twist',2,1),(142,1811,'Joe Aguirre',2,2),(142,1812,'Alma Beers del Mar',1,3),(142,1813,'Lureen Newsome',1,4),(142,1814,'Jolly Minister',0,5),(142,1815,'Waitress',0,6),(142,1816,'Timmy',0,7),(142,1817,'Cassie Cartwright',1,8),(142,1772,'LaShawn',1,9),(142,35029,'Randall',2,10),(142,19489,'John Twist',2,11),(142,51072,'Alma Jr. (Age 19)',1,12),(142,1081513,'Basque',0,13),(142,10362,'Mrs. Twist',1,14),(9603,5588,'Cher Horowitz',0,0),(9603,58150,'Dionne',1,1),(9603,328,'Tai',1,2),(9603,22226,'Josh',2,3),(9603,49002,'Murray',2,4),(9603,58151,'Amber',1,5),(9603,33654,'Travis',2,6),(9603,23958,'Elton',2,7),(9603,6486,'Mel Horowitz',2,8),(9603,12900,'Mr. Wendell Hall',2,9),(9603,66160,'Miss Toby Geist',1,10),(9603,30881,'Christian',0,11),(9603,40680,'Miss Stoeger',1,12),(9603,17775,'Summer',1,13),(613,2310,'Adolf Hitler',2,0),(613,5644,'Traudl Junge',1,1),(613,680,'Magda Goebbels',1,2),(613,8796,'Joseph Goebbels',2,3),(613,8797,'Eva Braun',1,4),(613,1086,'Albert Speer',2,5),(613,7803,'Prof. Dr. Ernst-Gu00fcnter Schenck',2,6),(613,3491,'SS-Gruppenfu00fchrer Hermann Fegelein',2,8),(613,8799,'Reichsfu00fchrer SS Heinrich Himmler',2,9),(613,8800,'Gerda Christian',1,10),(613,8801,'General der Infanterie Hans Krebs',2,11),(613,5646,'General der Infanterie Wilhelm Burgdorf',2,12),(613,8802,'General der Artillerie Helmuth Weidling',2,13),(613,1846,'SS-Brigadefu00fchrer Wilhelm Mohnke',2,14),(613,37102,'Generaloberst Alfred Jodl',2,15),(613,10744,'SS-Hauptsturmfu00fchrer Otto Gu00fcnsche',0,16),(613,18944,'Kammerdiener Heinz Linge',2,17),(613,8199,'Martin Bormann',2,18),(613,50143,'Peter Kranz',0,20),(613,4534,'Prof. Dr. Werner Haase',2,21),(613,21743,'Walter Hewel',2,22),(613,6086,'Feldwebel Tornow',2,23),(613,22379,'Feldmarschall Wilhelm Keitel',2,24),(613,37066,'Frl. Constanze Manziarly',0,25),(613,33043,'Rochus Misch',0,26),(613,38371,'Hanna Reitsch',1,27),(613,38608,'Ritter Robert von Greim',0,28),(613,39908,'Dorothee Kranz',1,29),(613,28343,'Wilhelm Kranz',2,30),(613,234536,'Dr. Stumpfegger',0,31),(613,5204,'Erich Kempka',2,32),(613,17543,'Obersturmbannfu00fchrer Stehr',2,33),(613,39586,'Reichsarzt SS Grawitz',0,34),(613,10246,'Panzerkommandant',2,35),(613,96313,'Schwester Erna',0,36),(613,38486,'H. Fritzche',2,37),(613,1289290,'Schadle',0,38),(613,18936,'SS-Soldat 1',0,39),(613,1151383,'Soldat 2',0,40),(613,131219,'Hermann Gu00f6ring',0,41),(613,1104776,'Oberst Clausen',0,42),(613,1130286,'Standesbeamter Wagner',2,43),(613,50752,'Oberleutnant',0,44),(613,3932,'Hanna Potrowski',1,45),(613,43738,'SA-Mann / Ruinenkeller',2,46),(613,1195490,'Margarete Lorenz',1,47),(613,1352527,'u00c4lterer Soldat',0,48),(613,938247,'Verwundeter Soldat',2,49),(613,1323652,'Russische Arzthelferin',0,50),(613,239716,'Adjutant von General Weidling',0,51),(613,18946,'Russische u00c4rztin',0,52),(613,43169,'SS-Mann Greifkommando',0,53),(613,45694,'Baur',2,54),(613,1324905,'Dolmetscher',0,55),(613,1474678,'Rothaarige Frau',0,56),(613,143674,'Russischer Soldat',2,57),(613,1134350,'Offizier 1',0,58),(613,28114,'Maschinist Hentschel',2,59),(613,41776,'Obergruppenfu00fchrer Tellermann',0,60),(613,1190960,'Russischer Adjutant',0,61),(613,50792,'Wachsoldat vor der Wolfsschanze (uncredited)',0,62),(613,1394311,'Mohnke\'s Adjutant im Bunker (uncredited)',2,63),(1913,3810,'Ramu00f3n Sampedro',2,0);
INSERT INTO `movie_cast` VALUES (1913,19907,'Julia',1,1),(1913,2759,'Rosa',1,2),(1913,19908,'Joaquu00edn',1,3),(1913,19909,'Padre Francisco',2,4),(1913,33409,'Manuela',1,5),(1913,16870,'Josu00e9',2,6),(1913,33410,'Genu00e9',1,7),(1913,24919,'Germu00e1n',2,8),(1913,33411,'Javi',2,9),(1913,33412,'Hermano Andru00e9s',2,10),(1913,1033064,'Marc',0,11),(1913,31011,'Santiago',2,12),(1913,588129,'Conductor',0,13),(1913,16977,'Cristian',0,14),(1913,1111671,'Juez 1',2,15),(1913,1019693,'Juez 2',0,16),(1913,1020775,'Periodista 1',0,17),(1913,1538753,'Ejecutivo',0,18),(1913,1538755,'Encuadernador',0,19),(1913,932628,'Muchacha Playa',1,20),(1913,1459456,'(uncredited)',2,21),(801,2157,'Adrian Cronauer',2,0),(801,2178,'Edward Montesque Garlick',2,1),(801,11960,'Tuan',0,2),(801,11961,'Trinh',0,3),(801,9257,'Lt. Steven Hauk',2,4),(801,4040,'Marty Lee Dreiwitz',2,5),(801,22131,'Sgt. Major Dickerson',0,6),(801,31005,'Gen. Taylor',2,7),(801,6396,'Pvt. Abersold',2,8),(801,14330,'Phil McPherson',2,9),(801,4255,'Dan \'The Man\' Levitan',2,10),(801,184378,'Jimmy Wah',0,11),(801,16185,'Censor #1',2,12),(801,16184,'Censor #2',2,13),(801,1218025,'Eddie Kirk',0,14),(240,1158,'Don Michael Corleone',2,0),(240,3087,'Tom Hagen',2,1),(240,3092,'Kay Corleone',1,2),(240,380,'Don Vito Corleone',2,3),(240,3096,'Fredo Corleone',2,4),(240,3094,'Connie Corleone',1,5),(240,3171,'Hyman Roth',2,6),(240,3172,'Frankie Pentangeli',2,7),(240,3173,'Senator Pat Geary',2,8),(240,3174,'Al Neri',2,9),(240,3279,'die Mutter des jungen Vito',1,10),(240,3280,'Vito Andolini as a Boy',2,11),(240,3281,'Don Fanucci',2,12),(240,3333,'Don Francesco Ciccio',2,13),(240,9257,'Young Clemenza',2,14),(240,11480,'Genco',2,15),(240,933716,'Mama Corleone',1,16),(240,15659,'Deanna Corleone',1,17),(240,14151,'Signor Roberto',2,18),(240,68186,'Johnny Ola',2,19),(240,116739,'Mrs. Marcia Roth',1,20),(240,5048,'F.B.I. Man #1',2,21),(240,1004,'Tony Rosato',2,22),(240,102429,'Senator #2',2,23),(240,69948,'Senate Committee Chairman',2,24),(240,3085,'Sonny Corleone',2,25),(240,1213795,'Rocco Lampone',2,26),(240,99788,'Michael\'s Bodyguard',2,27),(240,45363,'Merle Johnson',2,28),(240,104504,'Young Tessio',2,29),(240,16525,'Willi Cicci',2,30),(240,3093,'Tessio',2,31),(240,982089,'Theresa Hagen',1,32),(240,3095,'Carlo',2,33),(240,24697,'Vito\'s mother',1,34),(240,1343811,'Don Tommasino',2,35),(240,133853,'Carmine Rosato',2,36),(240,14553,'Policeman',2,37),(240,76064,'Girl in \'Senza Mamma\'',1,39),(240,46929,'Yolanda',1,40),(240,38803,'Sonny Corleone as a Boy',2,41),(240,1769,'Child on Ship',1,42),(240,99846,'Passerby in Coat with Cap Pulled Down',2,43),(240,1503033,'Anthony Corleone',2,44),(240,1503034,'Bartender',2,45),(240,1503035,'Father Carmelo',2,46),(240,1581646,'Michael\'s Buttonman #1',2,47),(240,28413,'Michael\'s Buttonman #2',2,48),(240,1503036,'Michael\'s Buttonman #3',2,49),(240,1503037,'Impressario',2,50),(240,1503038,'Tenor in \'Senza Mamma\'',2,51),(240,1503039,'Signora Colombo',1,52),(240,1503040,'Cuban President',2,53),(240,1503041,'Cuban Translator',2,54),(240,1503042,'Pentangeli\'s Wife',1,55),(240,1503043,'Pentangeli\'s Brother',2,56),(240,1503044,'Mosca',0,57),(240,1503045,'Strollo',0,58),(240,1503046,'Signor Abbandando',0,59),(240,1503047,'Street Vendor',0,60),(240,14849,'Questadt',2,61),(240,1212995,'Fred Corngold',2,62),(240,7768,'Senator #1',2,63),(240,1205819,'Attendant at Brothel',0,64),(240,1503048,'Ellis Island Doctor',0,65),(240,1503049,'Ellis Island Nurse',0,66),(240,1503050,'Cuban Nurse',0,67),(240,1269763,'Senator Pat Geary',2,68),(240,40349,'Governess',1,69),(240,12401,'Photographer in Court (uncredited)',2,70),(240,99949,'(uncredited)',0,71),(240,101615,'Extra (uncredited)',2,72),(240,1403118,'Cuban Guerilla with Grenade (uncredited)',0,73),(240,160728,'Sandra Corleone (uncredited)',1,74),(240,1494522,'Vito\'s Uncle (uncredited)',0,75),(240,47756,'Senator with mustache (uncredited)',0,76),(240,12415,'Senator #3 (uncredited)',2,77),(240,8490,'Young Hyman Roth (uncredited)',2,78),(240,160627,'Street Vendor (uncredited)',2,79),(240,1209678,'Extra in Little Italy (uncredited)',0,80),(240,59364,'Sam Roth (uncredited)',0,81),(240,1434484,'Passerby in Coat with Cap Pulled Down (uncredited)',2,82),(240,38803,'Sonny Corleone as a Boy (uncredited)',2,83),(240,126072,'Mama Corleone\'s Body (uncredited)',1,85),(9816,12041,'Sara Johnson',1,0),(9816,11868,'Derek Reynolds',2,1),(9816,11703,'Chenille Reynolds',1,2),(9816,59568,'Malakai',2,3),(9816,11067,'Roy Johnson',2,4),(9816,36068,'Nikki',1,5),(9816,59569,'Snookie',2,6),(9816,59570,'Kenny',0,7),(9816,59571,'Diggy',1,8),(9816,59572,'Arvel',0,9),(9816,59573,'Lip',0,10),(9816,59574,'Glynn',1,11),(9816,59575,'Momma Dean',0,12),(9816,59576,'Lindsay Johnson',0,13),(9816,59577,'Woman on Train',0,14),(9816,59578,'Mrs. Gwynn',0,15),(9816,59579,'Mr. Campbell',0,16),(9816,59580,'Wonk',0,17),(9816,59581,'Stern Judge',2,18),(9816,59582,'Lakisha',0,19),(9816,97802,'',0,20),(8859,18976,'Jesse',2,0),(8859,57599,'Chester',2,1),(8859,56128,'Christie Boner',1,2),(8859,9278,'Wanda',1,3),(8859,80109,'Wilma',1,4),(8859,52794,'Nelson',2,5),(8859,75316,'Zoltan',0,6),(8859,129122,'Tommy',2,7),(8859,42316,'Mr. Pizzacoli',0,8),(8859,1410250,'Alien Nordic Dude #1',0,9),(8859,1541994,'Alien Nordic Dude #2',0,10),(8859,1172439,'Jeff',0,11),(8859,129661,'Zarnoff',2,12),(8859,25884,'Zelmina',1,13),(8859,149824,'Zellner',2,14),(4951,1810,'Patrick Verona',2,0),(4951,12041,'Katarina Kat Stratford',1,1),(4951,24045,'Cameron James',2,2),(4951,40978,'Bianca Stratford',1,3),(4951,38582,'Michael Eckman',2,4),(4951,40979,'Joey Donner',2,5),(4951,40980,'Mandella',1,6),(4951,17773,'Chastity',1,7),(4951,1211,'Walter Stratford',2,8),(4951,15028,'Mr. Morgan',2,9),(4951,19,'Ms. Perky',1,10),(4951,24521,'Mr. Chapin',2,11),(4951,40982,'Scruvy',2,12),(4951,40981,'Bogie Lowenstien',0,13),(4951,1144823,'Derek',2,14),(4951,1435471,'Trevor',0,15),(4951,1435472,'Audio Visual Guy',2,16),(4951,1435473,'Beautiful Jock',0,17),(4951,1435474,'Coffee Kid',0,18),(4951,1435475,'Coffee Kid',0,19),(4951,1435476,'Cohort',0,20),(4951,69616,'Coffee Girl',1,21),(4951,1435477,'Drugged Out Loser',0,22),(4951,1435478,'Wimpy Loser',0,23),(4951,1435479,'Laughing Loser',0,24),(4951,1435480,'Crying Loser',0,25),(4951,1435483,'Screaming Loser',0,26),(4951,1435484,'Detention Student',0,27),(4951,1212247,'Bartender',0,28),(4951,99006,'Drunken Girl',0,29),(4951,1435704,'Jock',0,30),(4951,1435705,'Mba Guy at Party',0,31),(4951,1435707,'Heather',0,32),(4951,1435708,'Clem',0,33),(4951,1435709,'Cowboy',0,34),(4951,165215,'Kissing Guy',0,35),(4951,163002,'Judith',0,36),(4951,1435710,'Perky Girl',0,37),(4951,1275938,'Buckaroo Bartender',0,38),(4951,1435716,'Biker',0,39),(4951,1435717,'Save Ferris Singer',0,40),(4951,1435718,'Save Ferris Singer',0,41),(4951,1238557,'Letters To Cleo Singer',0,42),(4951,227721,'Letters To Cleo Singer',0,43),(9644,2880,'Sgt. Jack Colt',2,0),(9644,2231,'Sgt. Wes Luger',2,1),(9644,16165,'Becker',2,2),(9644,13472,'Mr. Jigsaw',2,3),(9644,58277,'Miss Destiny Demeanor',1,4),(9644,2395,'Billy York',1,5),(9644,1748,'General Mortars',2,6),(9644,1735,'Captain Doyle',2,7),(9644,1164,'Harold Leacher',2,8),(9644,13591,'Prison Attendant',2,9),(9644,5724,'Mike McCracken',2,10),(9644,6952,'Valet',2,11),(9644,3034,'Young Cop',2,12),(9644,62,'Man Whose Caravan Is Attacked (uncredited)',2,13),(9644,141429,'Irv',0,14),(9644,5502,'Police Photographer',2,15),(9644,7401,'Witness',1,16),(9644,1751,'Scotty',2,17),(9644,9205,'Cindy',1,18),(9644,14104,'Comic Cop',2,19),(9644,11786,'Interrogator',2,20),(9644,16119,'Interrogator',2,21),(9644,1538,'D.A.',0,22),(9644,7675,'FBI Agent',2,23),(1954,18976,'Evan Treborn',2,0),(1954,4766,'Andrea Treborn',1,1),(1954,20189,'Kayleigh Miller',1,2),(1954,20220,'Lenny Kagan',2,3),(1954,10128,'Tommy Miller',2,4),(1954,7036,'George Miller',2,5),(1954,33235,'Evan Treborn age 7',2,6),(1954,824,'Thumper',2,7),(1954,20221,'Dr. Redfield',0,8),(1954,85140,'Lenny age 13',2,9),(1954,10135,'Tommy age 13',2,10),(1954,540,'Jason Treborn',2,11),(1954,946171,'Kayleigh age 13',1,12),(1954,43464,'Evan Treborn age 13',2,13),(1954,52414,'Tommy age 7',2,14),(1954,80348,'Mrs. Boswell',1,15),(1954,59185,'Mrs. Kagan',1,16),(1954,1234935,'Priest',0,17),(1954,80353,'Anchor',2,18),(1954,33051,'Professor Carter',2,19),(1954,112557,'Cricket',1,20),(1954,84270,'Heidi',1,21),(1954,169469,'Spencer',2,22),(1954,1235532,'Boss',2,23),(1954,60723,'Anesthesiologist',2,24),(1954,1517843,'Senior Brother',2,25),(1954,1228184,'Gesela (as Melanie Hall)',1,26),(1954,42392,'Hunter',2,27),(9448,13240,'Melvin Smiley',2,0),(9448,38560,'Cisco',2,1),(9448,18979,'Pam Shulman',1,2),(9448,92866,'Keiko Nishi',1,3),(9448,822,'Paris',2,4),(9448,44222,'Vince',2,5),(9448,827,'Morton Shulman',2,6),(9448,53647,'Jeanne Shulman',1,7),(9448,71913,'Crunch',2,8),(9448,43426,'Gump',2,9),(5876,11155,'David Drayton',2,0),(5876,4726,'Mrs. Carmody',1,1),(5876,8332,'Amanda',1,2),(5876,6861,'Norton',2,3),(5876,13014,'Ollie',2,4),(5876,6573,'Jim',2,5),(5876,12645,'Dan Miller',0,6),(5876,36926,'Irene',1,7),(5876,18052,'Billy Drayton',2,8),(5876,28109,'Sally',1,9),(5876,26999,'Norm',2,10),(5876,46362,'Jessup',2,11),(5876,52490,'Bud Brown',2,12),(5876,60875,'Myron',2,13),(5876,31535,'Woman with Kids at Home',1,14),(5876,21083,'Mike Hatlen',2,15),(5876,71562,'Ambrose Cornell',2,16),(5876,1873078,'Bobby Egleaton',0,17),(5876,61563,'Joe Eagleton',2,18),(5876,6580,'Biker',0,19),(5876,1434225,'Hattie',0,20),(5876,559328,'Silas',0,21),(5876,1325945,'Morales',2,22),(5876,1421637,'Donaldson',0,23),(5876,131772,'M.P.',0,24),(5876,1511242,'Steff Drayton',1,25),(5876,80780,'Woman #1',0,26),(5876,223027,'Woman #2',0,27),(5876,1782252,'Terrified Woman',1,28),(5876,36634,'Father',2,29),(5876,168745,'Mr. Mackey',0,30),(5876,84702,'Tom Smalley',2,31),(5876,201255,'Man with El Camino',0,32),(5876,138608,'Screaming Woman',0,33),(5876,237345,'Shopper (uncredited)',0,34),(5876,92488,'Shopper (uncredited)',2,35),(5876,1393519,'Shopper (uncredited)',0,36),(5876,95366,'Teenager #1 (uncredited)',0,37),(5876,83272,'Teenage Girl (uncredited)',1,38),(5876,1026877,'Norton Group Member (uncredited)',2,39),(5876,93228,'Colonel (uncredited)',2,40),(5876,1569869,'Sentry (uncredited)',0,41),(5876,109789,'Military Soldier (uncredited)',0,42),(5876,52885,'Paisley Hat Man (uncredited)',2,43),(492,3036,'Craig Schwartz',2,0),(492,6941,'Lotte Schwartz',1,1),(492,2229,'Maxine Lund',1,2),(492,6952,'Charlie',2,3),(492,6949,'John Horatio Malkovich',2,4),(492,2228,'Himself (uncredited)',2,5),(492,287,'Brad Pitt (uncredited)',2,6),(492,4483,'Willy Loman (uncredited)',2,7),(492,1920,'Herself (archive footage) (uncredited)',1,8),(492,863,'Dr. Lester',2,9),(492,5960,'Floris',1,10),(492,6951,'First J.M. Inc. Customer',2,11),(492,52930,'Larry the Agent',2,12),(492,1542,'Guy in Restaurant',2,13),(492,6947,'Captain Mertin',2,14),(492,10000,'Drunk at Bar',2,15),(492,6944,'Woman in Elevator',1,16),(1251,3899,'General Tadamichi Kuribayashi',2,0),(1251,33515,'Private Saigo',2,1),(1251,33516,'Colonel Baron Nishi',2,2),(1251,33517,'Private Shimizu',2,3),(1251,72202,'Lieutenant Ito',2,4),(1251,33519,'Lieutenant Fujita',0,5),(1251,33520,'Lieutenant Okubo',0,6),(1251,33521,'Sam',2,7),(1251,77955,'Private Nozaki',2,8),(1251,33522,'Lt. Colonel Oiso',0,9),(1251,33523,'Medic Endo',0,10),(1251,33524,'Kanda',0,11),(1251,552266,'Captain Iwasaki',2,12),(1251,156963,'Colonel Adachi',2,13),(1251,1237536,'Maj. General Hayashi',0,14),(1251,1190728,'Ozawa',0,15),(1251,239955,'Lead Woman',0,16),(1251,1172152,'Admiral Ichimaru',0,17),(5172,879,'Charles Farmer',2,0),(5172,12519,'Mrs Farmer',1,1),(5172,41883,'Shepard Farmer',2,2),(5172,41884,'Stanley Farmer',0,3),(5172,41885,'Sunshine Farmer',0,4),(5172,9629,'FBI Agent Killbourne',2,5),(5172,41886,'FBI Agent Mathis',2,6),(5172,6905,'Hal',1,7),(5172,1462,'Kevin Munchak',2,8),(5172,8666,'Pepe Garcia',0,9),(5172,18999,'Jacobson',2,10),(5172,23504,'Phyllis',1,11),(5172,1539,'Arnold \'Arnie\' Millard',2,12),(5172,6396,'Chopper Miller',2,13),(5172,983707,'Madison Roberts',0,14),(5172,24305,'Beth Goode',1,15),(5172,6110,'Frank',2,16),(5172,3041,'Judge Miller',2,17),(5172,59304,'Mrs. Harder',0,18),(5172,235348,'Mrs. Graham',1,19),(5172,79213,'State Senator',0,20),(5172,93927,'Jodie',1,21),(5172,3909,'Dr. Livingston',2,22),(5172,177623,'Henry Malone',2,23),(5172,53971,'Vanessa',0,24),(5172,206379,'Gretchen Boyd',1,25),(5172,1668305,'Will Beacon',2,26),(5172,1668313,'Phil',2,27),(5172,1668328,'Karl',2,28),(5172,1668299,'Reporter',1,29),(5172,58510,'Reporter',2,30),(5172,92756,'Reporter',0,31),(5172,208060,'Reporter',1,32),(5172,109529,'Local News Reporter',1,33),(5172,1424325,'CNN News Reporter',1,34),(5172,85954,'Sky Copter Reporter',2,35),(5172,1668463,'Morning Show Host',1,36),(5172,79211,'FBI Agent',0,37),(5172,1668330,'Student',2,38),(5172,14991,'Himself',2,39),(5172,1668460,'Appraiser',2,40),(5172,220118,'Child',2,41),(5172,1086573,'Secretary',1,42),(5172,1240490,'Rocket Expert',2,43),(5172,1448096,'NASA Expert',1,44),(5172,1668468,'Italian Anchorwoman',1,45),(5172,1104811,'Japanese Anchorman',0,46),(5172,1668469,'Hindu Anchorman',2,47),(5172,1356745,'French Anchorman',2,48),(5172,1016954,'Chinese Anchorwoman',1,49),(5172,1668476,'National Anchorman',2,50),(5172,79228,'Astro \'Nut\' Local',2,51),(5172,982297,'Balloon Game Carnie',2,52),(5172,189680,'Square Dance Caller',2,53),(5172,1668478,'Square Dance Caller #2',2,54),(5172,1402887,'Rocket Ride Operator',2,55),(5172,1630274,'Mission Control',2,56),(5172,76625,'Young Man',2,57),(5172,1668483,'MP',2,58),(5172,62,'Col. Doug Masterson (uncredited)',2,59),(3682,11864,'Shane O\'Shea',2,0),(3682,3136,'Anita Randazzo',1,1),(3682,33654,'Greg Randazzo',2,2),(3682,12073,'Steve Rubell',2,3),(3682,9206,'Julie Black',1,4),(3682,33653,'Viv',1,5),(3682,6068,'Billie Auster',1,6),(3682,3072,'Marc the Doorman',2,7),(3682,33655,'Ciel',1,8),(3682,33656,'Grace O\'Shea',1,9),(3682,33657,'Kelly O\'Shea',0,10),(3682,33658,'Harlan O\'Shea',2,11),(3682,103,'Ricko',2,12),(3682,27964,'Liz Vangelder',1,13),(3682,28033,'IRS Agent',2,14),(3682,33659,'IRS Agent',0,15),(3682,33660,'TV Host',1,16),(3682,2456,'Andy Warhol',2,17),(3682,33661,'DJ',2,18),(3682,33662,'DJ',2,19),(3682,10750,'VIP',1,20),(3682,10584,'VIP',1,21),(3682,33663,'VIP',2,22),(3682,33664,'VIP',0,23),(3682,33665,'VIP',1,24),(3682,33666,'VIP',0,25),(3682,33667,'VIP',2,26),(3682,33668,'Romeo',2,27),(3682,33669,'Atlanta',2,28),(3682,33670,'Buck',0,29),(3682,33671,'Tarzan',0,30),(3682,10692,'Dance Student',2,31),(3682,85171,'Disco Dottie',1,32),(3682,1123417,'Photographer',2,33),(9683,131,'Jimmy Livingston',2,0),(9683,12967,'Mrs. Livingston',1,1),(9683,6407,'Chloe',1,2),(9683,11160,'Slim',2,3),(9683,3911,'Mr. Livingston',2,4),(9683,10987,'Dr. Phreak',2,5),(9683,35701,'Mark',2,6),(9683,58511,'Pushpop',2,7),(9683,58513,'Pappy / Pippy',2,8),(9683,57093,'Chicken Man',2,9),(9683,41557,'Lisa, Mark\'s Sister',1,10),(9683,5375,'Flipper Boy',2,11),(9683,58516,'Li\'l Zip',0,12),(9683,8295,'Human Sasquatch',2,13),(9683,58517,'Rubber Woman',1,14),(9683,212824,'Working Girl',1,15),(9683,58225,'Bus Stop Man',2,16),(9683,57387,'Todd',2,17),(2084,2227,'Sophie alias Nadia',1,0),(2084,21343,'John',2,1),(2084,1925,'Alexei',2,2),(2084,2406,'Yuri',2,3),(2084,21344,'Clare',0,4),(2084,21345,'Bank Manager',2,5),(2084,9144,'Karen',1,6),(2084,1250,'Robert Mosley',2,7),(2084,21347,'Waitress',1,8),(2084,18025,'Concierge',2,9),(2084,28477,'D.I. O\'Fetiger',2,10),(2084,34546,'Porter',2,11),(2084,34551,'Porter',2,12),(2084,34550,'Passport Official',2,13),(2084,28485,'Duty sergeant',2,14),(2084,34545,'Bank Colleague',0,15),(2084,34547,'Bank Colleague',2,16),(2084,34549,'Bank Colleague',2,17),(2084,34548,'Bank Colleague',0,18),(2084,34552,'Policeman',0,19),(2266,884,'Touriste (Tuileries)',2,0),(2266,524,'Francine (Faubourg Saint-Denis)',1,1),(2266,5293,'Le cow-boy (Place des Victoires)',2,2),(2266,1579,'Liz (Quartier des Enfants Rouges)',1,3),(2266,22165,'Axel (Tuileries)',0,4),(2266,21550,'Julie (Tuileries)',0,5),(2266,21769,'L\'automobiliste (Montmartre)',2,6),(2266,22163,'Jeune Femme (Montmartre)',0,7),(2266,20234,'Fanny Forestier (Pigalle)',1,8),(2266,23383,'Zarka (Quais de Seine)',1,9),(2266,1137,'Suzanne (Place des Victoires)',1,10),(2266,23384,'Hassan (Place des Fu00eates)',0,11),(2266,1610,'Le docteur (Bastille)',2,12),(2266,2166,'Le mari (Bastille)',2,13),(2266,23385,'Le garu00e7on (Place des Victoires)',2,14),(2266,23386,'Franu00e7ois (Quais de Seine)',2,15),(2266,23387,'Ken (Quartier des Enfants Rouges)',2,16),(2266,19995,'Marianne (Le Marais)',1,17),(2266,856,'Ben (Quartier Latin)',2,18),(2266,23388,'Le pu00e8re (Place des Victoires)',2,19),(2266,382,'Bob (Pigalle)',2,20),(2266,18182,'La vampire (Quartier de la Madeleine)',1,21),(2266,23390,'Sara (Parc Monceau)',1,22),(2266,19198,'Elie (Le Marais)',2,23),(2266,2415,'La mime (Tour Eiffel)',0,24),(2266,5887,'Ana (Loin du 16e)',1,25),(2266,1246,'Frances (Pu00e8re-Lachaise)',1,26),(2266,1733,'Vincent (Parc Monceau)',2,27),(2266,23391,'Le mime (Tour Eiffel)',2,28),(2266,23392,'Joana (Quartier des Enfants Rouges)',1,29),(2266,4800,'Gena (Quartier Latin)',1,30),(2266,8436,'La femme au trench rouge (Bastille)',1,31),(2266,4390,'Claire (Parc Monceau)',1,32),(2266,23393,'Monsieur Henny (Porte de Choisy)',2,33),(2266,17328,'William (Pu00e8re-Lachaise)',2,34),(2266,16790,'Gaspard (Le Marais)',2,35),(2266,101,'La mau00eetresse (Bastille)',1,36),(2266,109,'Le garu00e7on (Quartier de la Madeleine)',2,37),(2266,23394,'Madame Li (Porte de Choisy)',0,38),(2266,452,'Carol (14u00e8me arrondissement)',1,39),(2266,132429,'Sophie (Place des Fu00eates)',0,40),(2266,142573,'Manu (Quais de Seine)',0,41),(2266,146720,'Le mu00e9decin (Montmartre)',0,42),(2266,1788690,'Arnaud (Quais de Seine)',0,43),(2266,1610,'Le cancu00e9rologue (Bastille)',2,44),(2266,1558043,'La jeune fille en rouge (Bastille)',0,45),(2266,5140,'La victime de la vampire (Quartier de la Madeleine)',2,46),(2266,13235,'Oscar Wilde (Pere-Lachaise)',0,47),(9950,12835,'Jackie DiNorscio',2,0),(9950,20752,'Nick Calabrese',2,1),(9950,17923,'Carlo Mascarpone',2,2),(9950,60795,'Tom Napoli',0,3),(9950,7466,'Gino Mascarpone',2,4),(9950,7168,'Graziedei',2,5),(9950,4692,'Phil Radda',2,6),(9950,60796,'Jimmy Katz',2,7),(9950,60797,'Joe Bellini',2,8),(9950,22970,'Ben Klandis',2,9),(9950,4255,'Max Novardis',2,10),(9950,37156,'Frank Brentano',0,11),(9950,60799,'Mike Belaggio',0,12),(9950,60800,'Henry Fiuli',0,13),(9950,60798,'Alessandro Tedeschi',0,14),(9950,4892,'James Washington',0,15),(9950,59281,'Chris Cellano',2,16),(9950,5302,'Theodore',0,17),(9950,60801,'Pissaro',0,18),(9950,60802,'Henry Kelsey',0,19),(9672,10205,'Babe Paley',1,0),(9672,13014,'Truman Capote',2,1),(9672,12052,'Kitty Dean',1,2),(9672,18277,'Nelle Harper Lee',1,3),(9672,6588,'Marella Agnelli',1,4),(9672,39012,'Bennett Cerf',2,5),(9672,8447,'Alvin Dewey',2,6),(9672,8784,'Perry Smith',2,7),(9672,6238,'Diana Vreeland',1,8),(9672,58461,'Gore Vidal',2,9),(9672,15250,'Slim Keith',1,10),(9672,21179,'Jack Dunphy',2,11),(9672,72095,'Dick Hickock',2,12),(8952,206,'Steven Russell',2,0),(8952,3061,'Phillip Morris',2,1),(8952,41087,'Debbie',1,2),(8952,17289,'Jimmy',2,3),(8952,1218149,'Larry Bukheim',2,4),(8952,143260,'Steven\'s Brother',0,5),(8952,120253,'Racist Client',2,6),(8952,143261,'Prison Guard',2,7),(8952,86276,'Policeman',0,8),(8952,16460,'Young Doctor',2,11),(8952,1061053,'Bikini Girl',1,12),(8952,1787322,'Lindholm',0,13),(8952,66094,'Eudora',1,14),(8952,57823,'Barbara Bascombe',1,15),(8952,60875,'Judge',2,16),(8952,571230,'Houston Lawyer',0,17),(8952,1503756,'Arnie',2,18),(8952,93228,'Doctor',2,19),(8952,201270,'Steven\'s Mom',1,20),(8952,141762,'Steven\'s Dad',2,21),(8952,76021,'Mark',2,22),(8952,1620933,'Samuel',0,23),(8952,109787,'Gary',2,24),(8952,1541058,'Sara',0,25),(8952,1489197,'Neil',0,26),(8952,1680192,'Steven - 9yrs',2,27),(8952,141226,'Screecher',2,28),(8952,1319345,'Paramedic',0,29),(8952,1609622,'Vera',1,30),(8952,1781705,'Helen',1,31),(8952,1408940,'Todd',0,32),(8952,1659999,'Mandi',1,33),(8952,1411664,'Mrs. Lindholm',0,34),(8952,106966,'Saleswoman',1,35),(319,2224,'Clarence Worley',2,0),(319,4687,'Alabama Whitman',1,1),(319,4688,'Dick Ritchie',2,2),(319,4689,'Elliot Blitzer',2,3),(319,64,'Drexl Spivey',2,4),(319,2778,'Clifford Worley',2,5),(319,4690,'Vincenzo Coccotti',2,6),(319,287,'Floyd',2,7),(319,3197,'Cody Nicholson',2,8),(319,2231,'Big Don',2,9),(319,3712,'Lee Donowitz',2,10),(319,4691,'Virgil',2,11),(319,4692,'Frankie',2,12),(319,4693,'Marty',2,13),(319,5576,'Mentor',2,14),(319,2969,'Nicky Dimes',2,15),(319,3711,'Lucy',1,16),(319,41125,'Boris',2,17),(319,1909,'Mary Louise Ravencroft',1,18),(319,2561,'Lenny',2,19),(319,109670,'Clerk',0,20),(319,10000,'Burger Stand Customer',2,21),(319,3208,'Kandi',1,22),(319,18472,'Marvin',2,23),(319,85142,'Luca',2,24),(319,87118,'Wurlitzer',2,25),(319,120257,'Police Radio Operator',2,26),(319,1638394,'Detective',0,27),(319,206398,'Squad Cop #1',2,28),(319,91427,'Monty',0,29),(319,184121,'Lobby Cop #1',2,30),(319,1759035,'Lobby Cop #2',0,31),(319,1648118,'Running Cop',0,32),(319,1759036,'I.A. Officer',2,33),(319,65141,'Floyd \'D\'',2,34),(319,1759037,'Cop',0,35),(319,1758695,'Burger Stand Customer',1,36),(319,21523,'Police Captain Quiggle',2,37),(319,19675,'Elvis, Alabama\'s and Clarence\'s Son',0,38),(319,1332245,'Hotel Hostage',1,39),(9504,1158,'Ricky Roma',2,0),(9504,3151,'Shelley Levene',2,1),(9504,7447,'Blake',2,2),(9504,1903,'George Aaronow',2,3),(9504,228,'Dave Moss',2,4),(9504,1979,'John Williamson',2,5),(9504,378,'James Lingk',2,6),(9504,27545,'Larry Spannel',2,7),(9504,8693,'Detective',2,8),(9504,21384,'Policeman',0,9),(9504,171743,'Coat Check Girl',1,11),(9504,4199,'Man in Donut Shop',2,12),(9504,175037,'Additional Voices (voice)',0,13),(9504,16580,'Additional Voices (voice)',2,14),(9504,7178,'Additional Voices (voice)',0,15),(9504,16584,'Additional Voices (voice)',2,16),(9504,1229807,'Additional Voices (voice)',0,18),(9504,1282690,'Telephone Service Man (uncredited)',0,19),(9504,78620,'Additional Voices (voice)',1,20),(6217,2630,'Irena Gallier',1,0),(6217,56890,'Paul Gallier',2,1),(6217,11512,'Oliver Yates',2,2),(6217,15532,'Female',1,3),(6217,42157,'Joe Creigh',2,4),(6217,48810,'Bill Searle',2,5),(6217,13936,'Det. Brandt',2,6),(6217,1734,'Alice Perrin',1,7),(6217,98420,'Ruthie',1,8),(6217,14101,'Bronte Judson',2,9),(6615,30614,'Lars Lindstrom',2,0),(6615,1246,'Karin',1,1),(6615,15684,'Gus',2,2),(6615,17442,'Margo',1,3),(6615,50773,'Holly',1,4),(6615,1276,'Dr. Dagmar Berman',1,5),(6615,44183,'Reverend Bock',0,6),(6615,50774,'Mrs. Gruner',1,7),(6615,50775,'Mr. Hofstedter',2,8),(6615,50776,'Mr. Shaw',0,9),(6615,50777,'Mrs. Schindler',0,10),(6615,5889,'Mrs. Petersen',1,11),(6615,178058,'Cindy',1,12),(6615,53577,'Kurt',2,13),(6615,62674,'Erik',2,14),(16,47,'Selma Jezkova',1,0),(16,50,'Kathy',1,1),(16,52,'Bill Houston',2,2),(16,53,'Jeff',2,3),(16,6748,'Oldrich Novy',2,4),(16,2617,'Linda Houston',1,5),(16,6749,'Gene Jezkova',0,6),(16,1642,'Norman',2,7),(16,6750,'Samuel',0,8),(16,6751,'Brenda',1,9),(16,6752,'District Attorney',2,10),(16,1646,'Dr. Porkorny',2,11),(16,6121,'Morty',2,12),(16,6753,'Judge',0,13),(16,6754,'Receptionist',0,14),(16,6755,'Defense Attorney',0,15),(16,6756,'Suzan',1,16),(16,6757,'Angry Man',0,17),(16,6758,'Detective',2,18),(16,1640,'Doctor',2,19),(16,4458,'Woman on Night Shift',0,20),(16,1439629,'Officer of the Court / Dancer',0,21),(16,6135,'Chairman / Dancer',2,22),(16,1507755,'New Defense Council',0,23),(16,1190848,'Person in Doorway',2,24),(16,1445063,'Dancer',0,25),(16,148629,'Dancer',0,26),(16,1151162,'Dancer (uncredited)',0,27),(16,1335599,'Prison Guard - Serving Selma Jezkova\'s last meal (uncredited)',0,28),(9552,37366,'Regan',1,0),(9552,2201,'Father Merrin',2,1),(9552,9560,'Chris MacNeil',1,2),(9552,21736,'Father Karras',2,3),(9552,5248,'Lt. Kinderman',2,4),(9552,57921,'Sharon',1,5),(9552,65433,'Father Dyer',0,6),(9552,14016,'Burke Dennings',2,7),(9552,79732,'Dr. Klein',2,8),(9552,71732,'Dr. Barringer - Clinic Director',2,9),(9552,26600,'Karl',0,10),(9552,119716,'Dr. Taney',0,11),(9552,140177,'Karras\' Uncle',0,12),(9552,56694,'Mary Jo Perrin',1,13),(9552,129664,'Senator at Party',2,14),(9552,18737,'Demon (voice)',1,15),(9552,108700,'Captain Howdy / Regan Double',1,16),(578,6355,'Police Chief Martin Brody',2,0),(578,8606,'Quint',2,1),(578,3037,'Matt Hooper',2,2),(578,8607,'Ellen Brody',1,3),(578,8608,'Mayor Larry Vaughn',0,4),(578,8555,'Ben Meadows',2,5),(578,8609,'Deputy Leonard \'Lenny\' Hendricks',2,6),(578,8610,'Christine \'Chrissie\' Watkins',1,7),(578,5286,'Tom Cassidy',0,8),(578,8611,'Michael \'Mike\' Brody',2,9),(578,8612,'Sean Brody',2,10),(578,8613,'Mrs. Kintner',0,11),(578,8614,'Alex M. Kintner',0,12),(578,8615,'Ben Gardner',0,13),(578,8616,'Medical Examiner',0,14),(578,8591,'Estuary Victim',0,15),(578,8554,'Interviewer',2,16),(578,51550,'Girl in Music Store (uncredited)',1,17),(578,488,'Amity Point Lifestation Worker (voice) (uncredited)',2,18),(578,97751,'Swimming Chrissie - First Victim (uncredited)',0,19),(578,16224,'Mrs. Taft (uncredited)',0,20),(578,197925,'Research Assistant (uncredited)',2,21),(578,592894,'Mrs. Posner (uncredited)',0,22),(578,1360008,'Swimmer (uncredited)',2,23),(578,1946,'Topless Swimmer (uncredited)',1,24),(578,124243,'Nurse (uncredited)',1,25),(578,1081816,'Lifeguard (uncredited)',0,26),(578,39039,'Scout Master (uncredited)',0,27),(2105,21593,'Jim Levenstein',2,0),(2105,21594,'Chris \'Oz\' Ostreicher',2,1),(2105,21403,'Kevin Meyers',2,2),(2105,21595,'Michelle Flaherty',1,3),(2105,21596,'Nadia',1,4),(2105,1234,'Victoria \'Vicky\' Lathum',1,5),(2105,52480,'Paul Finch',2,6),(2105,57599,'Steve Stifler',2,7),(2105,26510,'Jim\'s Father',2,8),(2105,10871,'Jessica',1,9),(2105,8211,'Heather',1,10),(2105,38334,'Stifler\'s Mom',1,11),(2105,26999,'Chuck Sherman',2,12),(2105,53116,'Albert',2,13),(2105,54586,'Jim\'s Mother',1,14),(2105,68842,'John',2,15),(2105,88507,'Justin',2,16),(2105,116027,'Matt Stifler',2,17),(2105,61111,'College Girl',1,18),(2105,6564,'Coach Marshall',2,19),(2105,2249,'English Teacher',2,20),(2105,37936,'Band Member',1,21),(2105,42288,'Party Guy',0,22),(2105,217524,'Sarah, the Sophomore Chick',1,23),(2105,184340,'Vocal Jazz Teacher',1,24),(2105,76031,'Vocal Jazz Girl',1,25),(2105,1225809,'Vocal Jazz Girl',1,26),(2105,1656606,'Vocal Jazz Group',2,27),(2105,1656607,'Vocal Jazz Group',1,28),(2105,1656608,'Vocal Jazz Group',2,29),(2105,83585,'Courtney, the Random Cute Girl',1,30),(2105,1394788,'Vicky\'s Mom',1,31),(2105,61219,'Bathroom Girl',1,32),(2105,1570015,'Enthralled Girl',0,33),(2105,35768,'Enthusiastic Guy',2,34),(2105,1656609,'Computer Nerd',2,35),(2105,234801,'Garage Band Member',2,36),(2105,84546,'Garage Band Member',2,37),(2105,1517843,'Guy with Monkey',2,38),(2105,1223965,'Computer Girl',1,39),(2105,1659340,'Drinking Buddy',2,41),(2105,1893,'Tom Myers (uncredited)',2,42),(2105,1217828,'Girl Holding Out',1,43),(154,1748,'Admiral James T. Kirk',2,0),(154,1749,'Captain Spock',2,1),(154,1750,'Dr. Leonard McCoy',0,2),(154,1751,'Montgomery Scott',2,3),(154,1752,'Cmdr. Hikaru Sulu',0,4),(154,1754,'Cmdr. Pavel Chekov',2,5),(154,1753,'Cmdr. Uhura',1,6),(154,1793,'Khan Noonien Singh',2,7),(154,1794,'Dr. Carol Marcus',1,8),(154,1795,'Dr. David Marcus',2,9),(154,1796,'Lt. Saavik',1,10),(154,1818,'Captain Clark Terrell',2,11),(154,87066,'Preston',2,12),(154,104505,'Jedda',2,13),(154,1214565,'Kyle',0,14),(154,157612,'Beach',2,15),(3049,206,'Ace Ventura',2,0),(3049,586,'Lt. Lois Einhorn',1,1),(3049,14405,'Melissa Robinson',1,2),(3049,31004,'Emilio',2,3),(3049,1223629,'Himself',0,15),(3049,31005,'Riddle',2,16),(3049,31006,'Roger Podacter',2,17),(3049,21082,'Woodstock',2,18),(3049,1646,'Ron Camp',2,19),(3049,4692,'Vinnie',2,20),(3049,98579,'Roc',2,21),(3049,31007,'Sgt. Aguado',2,22),(3049,17488,'Mrs. Finkle',1,23),(3049,928,'Sexy Woman',0,24),(3049,1173,'Mr. Shickadance',2,25),(3049,5177,'Gruff Man',0,26),(3049,214541,'Toothless Giant',0,27),(3049,135571,'Redneck #1',0,28),(3049,30029,'Mascot',0,29),(860,4756,'David Lightman',2,0),(860,12850,'Dr. John McKittrick',2,1),(860,12851,'Jennifer Katherine Mack',1,2),(860,8937,'Dr. Stephen Falken',2,3),(860,12852,'General Jack Beringer',2,4),(860,12853,'Pat Healy',1,5),(860,12854,'Arthur Cabot',0,6),(860,12855,'Lyle Watson',2,7),(860,12856,'Col. Joe Conley',2,8),(860,12857,'Paul Richter',2,9),(860,1080265,'Beringer\'s Aide',0,10),(860,14543,'Mr. Lightman',2,11),(860,160600,'Mrs. Lightman',0,12),(860,1072,'Nigan',2,13),(860,107078,'Stockman',0,14),(860,52188,'Ayers',2,15),(860,950548,'Corporal in the Infirmary',2,16),(860,1072730,'Major Lem',0,17),(860,95682,'Radar Analyst',0,18),(860,34691,'Jerry',2,19),(860,147,'Steve',2,20),(860,161599,'Commander',2,21),(860,161541,'Deputy',0,22),(860,1072733,'Technician',0,23),(860,18192,'Captain Knewt',2,24),(860,208720,'Airman Fields',0,25),(860,44043,'Sergeant',2,26),(860,22053,'Mr. Liggett',2,27),(860,182759,'Boys Vice Principal',0,28),(860,7868,'Jim Sting',2,29),(860,42362,'Malvin',2,30),(860,84328,'Airman',2,31),(860,3905,'NORAD Officer',2,32),(9281,3,'Det. Capt. John Book',2,0),(9281,11084,'Rachel Lapp',1,1),(9281,14792,'Chief Paul Schaeffer',2,2),(9281,526,'Samuel Lapp',2,3),(9281,37422,'Eli Lapp',2,4),(9281,7674,'Daniel Hochleitner',2,5),(9281,2047,'McFee',2,6),(9281,84685,'Carter',2,7),(9281,5699,'Elaine',1,8),(9281,58475,'Fergie',2,9),(9281,162568,'Stoltzfus',2,10),(9281,110,'Moses Hochleitner',2,11),(9281,554627,'Bishop Tchantz',0,12),(9281,87051,'Mrs. Yoder',0,13),(9281,554628,'Sheriff',0,14),(9281,17396,'Zenovich',2,15),(9281,122239,'Tourist Lady',1,16),(9281,98927,'Custodian',2,18),(9762,38673,'Tyler Gage',2,0),(9762,20381,'Nora Clark',1,1),(9762,58959,'Mac Carter',0,2),(9762,58960,'Skinny Carter',0,3),(9762,58961,'Miles Darby',2,4),(9762,58962,'Lucy Avila',1,5),(9762,3052,'Director Gordon',1,6),(9762,58963,'Brett Dolan',2,7),(9762,58964,'Andrew',2,8),(9762,58965,'Camille',1,9),(9762,18795,'Omar',2,10),(9762,58966,'Nora\'s Mom / Katherine Clark',1,11),(9762,58967,'Lena Freeman',1,12),(9762,58968,'Bill Freeman',0,13),(9762,58969,'Mac\'s Mother',0,14),(9762,1194209,'History Teacher',0,15),(9762,1752120,'PJ',0,16),(9762,1752121,'Omar Party Girl Yvette',0,17),(9762,1752122,'Omar Party Girl #2',0,18),(9762,1752123,'Omar Party Girl #3',0,19),(9762,142159,'Security Guard',2,20),(9762,1752125,'Judge Milton',0,21),(9762,29214,'Ms. Stephanie',1,22),(9762,1752127,'Little Girl Ballerina',0,23),(9762,1752128,'Colin',0,24),(9762,1752151,'Malcolm',0,25),(9762,1752152,'Stagehand',0,26),(9762,145177,'Scout #1',0,27),(9762,1752154,'Scout #2',0,28),(9762,1752155,'Oamr Partier',0,29),(9762,1752156,'Music Teacher',0,30),(9762,1752157,'Piano Player',0,31),(9762,1752158,'Ballerina',1,32),(9762,1752159,'Girl Singer #1 / Lucy Back Up Singer #1',0,33),(9762,1752160,'Girl Singer #3',0,34),(9762,1752161,'Court Room Sheriff',0,35),(9762,1752162,'Fruit Vendor',0,36),(9762,9165,'Custodian',2,37),(9762,1752163,'Omar\'s Chop Shop Guy',0,38),(9762,1752164,'Ballet Dancer',1,39),(9762,1752165,'Ballet Dancer',0,40),(9762,1752166,'Ballet Dancer',1,41),(9762,1752171,'Ballet Dancer',0,42),(9762,1752175,'Ballet Dancer',0,43),(9762,1346990,'Dance Class Dancer',1,44),(9762,1290632,'Dance Class Dancer',0,45),(9762,1752178,'Dance Class Dancer',1,46),(9762,1752179,'Dance Class Dancer',1,47),(9762,79800,'Dance Class Dancer',1,48),(9762,1752191,'Dance Class Dancer',1,49),(9762,1752193,'Dance Class Dancer',1,50),(9762,1401053,'Nora\'s Finale Dancer',0,51),(9762,1290636,'Nora\'s Finale Dancer',1,52),(9762,1752196,'Nora\'s Finale Dancer',1,53),(9762,1752197,'Nora\'s Finale Dancer',0,54),(9762,1752198,'Nora\'s Finale Dancer',1,55),(9762,1752199,'Nora\'s Finale Dancer',1,56),(9762,1752200,'Nightclub Dancer',0,57),(9762,1752201,'Nightclub Dancer',1,58),(9762,1752202,'Nightclub Dancer',1,59),(9762,1752203,'Nightclub Dancer',0,60),(9762,1752204,'Nightclub Dancer',0,61),(9762,1752205,'Nightclub Dancer',1,62),(9762,1752206,'Nightclub Dancer',1,63),(9762,1752207,'Nightclub Dancer',1,64),(9762,29215,'Nightclub Dancer',0,65),(9762,20739,'Nightclub Dancer',2,66),(9762,29216,'Nightclub Dancer',0,67),(9762,1752208,'Audition Dancer',0,68),(9762,1752209,'Hip Hop Dancer',0,69),(9762,1752210,'Hip Hop Dancer',0,70),(9762,1752211,'Hip Hop Dancer',0,71),(9762,1752212,'Hip Hop Dancer',0,72),(9762,1752213,'Dancer',1,73),(9762,1752214,'Dancer',0,74),(9762,1634027,'Dancer',0,75),(9762,1752215,'Dance Student',0,76),(9762,1752216,'Customer',1,77),(9762,1752218,'Nightclub Dancer',0,78),(9762,1752219,'Student',0,79),(9762,1752220,'Art Student',0,80),(9762,1752221,'Funeral Mourner',0,81),(9762,207297,'Defense Attorney',0,82),(9762,1752222,'Receptionist',1,83),(9762,1752223,'Bartender',0,84),(9762,1752224,'Ballet Dancer',0,85),(9762,1752225,'Dancer',1,86),(9762,1752226,'Teacher',0,87),(9762,1549561,'Talent Scout',1,88),(9762,1752227,'PJ\'s Boy',0,89),(9762,1067546,'Music Student',0,90),(9762,1752228,'MSA Student / Ballet Dancer',1,91),(9762,1752229,'Dancer',0,92),(9762,1752230,'Dancer',0,93),(9762,1752231,'Stage Manager',0,94),(9762,1752232,'House Party Patron',0,95),(9762,1752233,'Parent',0,96),(9762,1752234,'Parent',1,97),(9762,1442529,'Music Student',0,98),(9762,1752235,'Pedestrian',1,99),(9762,1752236,'Club Patron',1,100),(9762,1279375,'Student',1,101),(9762,1752237,'Nightclub Dancer',1,102),(9762,1514482,'Concert Usher',1,103),(9762,1368495,'Nightclub Dancer',0,104),(9762,1752240,'Dancer',0,105),(9762,1752241,'Dancer',1,106),(9762,1576483,'Nightclub Dancer',0,107),(9762,1437828,'MSA Student',0,108),(9762,1752244,'Hip Hop Dancer / Omar Party Dancer',0,109),(9762,1752245,'Dancer',0,110),(9762,1752246,'Nightclub Dancer',0,111),(9762,1752248,'Band Student',0,112),(9762,1752249,'Ballet Student',0,113),(3179,17403,'Beavis / Butt-Head / Tom Anderson / Mr. Van Driessen / Principal McVicker (voice)',2,0),(3179,62,'Muddy Grimes (voice)',2,1),(3179,3416,'Dallas Grimes (voice)',1,2),(3179,2493,'ATF Agent Flemming (voice)',2,3),(3179,564,'Tour Bus Driver',2,4),(3179,564,'Tour Bus Driver (voice)',2,5),(3179,9599,'Old Woman (voice)',1,6),(3179,17141,'ATF Agent Bork (voice)',2,7),(3179,136487,'Mu00f6tley Cru00fce Roadie',2,8),(3179,1757780,'Mu00f6tley Cru00fce Roadie (voice)',0,9),(3179,136487,'Mu00f6tley Cru00fce Roadie (voice)',2,10),(3179,1235088,'Man on Plane / Man in Confession Booth / Old Guy / Jim (voice)',0,11),(3179,10866,'Old Faithful Ranger / White House Press Secretary / Strategic Air Command Lieutenant (voice)',2,12),(3179,1757788,'Agent Hurly',0,13),(3179,1218045,'Flight Attendant / White House Tour Guide (voice)',0,14),(184,2230,'Jackie Brown',1,0),(184,2231,'Ordell Robbie',2,1),(184,5694,'Max Cherry',2,2),(184,2233,'Melanie Ralston',1,3),(184,2232,'Ray Nicolette',2,4),(184,380,'Louis Gara',2,5),(184,2234,'Mark Dargus',2,6),(184,66,'Beaumont Livingston',2,7),(184,64908,'Sheronda',0,8),(184,8396,'Winston',2,9),(184,5695,'Judge',2,10),(184,35545,'Amy, Billingsley Sales Girl',1,11),(184,97260,'Billingsley Sales Girl #2',0,13),(184,534301,'Raynelle, Ordell\'s Junkie Friend',1,14),(184,1265427,'Cabo Flight Attendant',0,15),(184,1214957,'Anita Lopez',0,16),(184,1265429,'Bartender at Sam\'s',1,18),(184,1265430,'Girl at Security Gate',0,19),(184,11807,'Steakhouse Waitress',0,20),(184,106886,'Tec-9 Sidney - Chicks Who Love Guns',0,21),(184,1265431,'Steyr AUG Cindy - Chicks Who Love Guns',0,22),(184,1265432,'AK-47 Gloria - Chicks Who Love Guns',0,23),(184,1265433,'Baretta 12S Brittany - Chicks Who Love Guns',0,24),(184,1265435,'The Deputy',0,26),(184,1265436,'The Deputy',0,27),(184,1265437,'The Sheriff',0,28),(184,1265438,'The Sheriff',0,29),(184,1265439,'The Sheriff',0,30),(184,1212688,'Simone',0,31),(184,106243,'Flight Attendant (uncredited)',1,32),(184,1274297,'Restaurant Regular (uncredited)',2,33),(184,1219510,'Cockatoo Bartender',2,34),(9357,2157,'Seymour Parrish',2,0),(9357,935,'Nina Yorkin',1,1),(9357,15424,'Will Yorkin',2,2),(9357,18662,'Maya Burson',1,3),(9357,23628,'Det. James Van Der Zee',2,4),(9357,21163,'Bill Owens',2,5),(9357,1172661,'Jake Yorkin',2,7),(9357,23975,'Waitress',1,8),(9357,1662254,'Mrs. Von Unwerth',0,9),(9357,20090,'Mr. Siskind',2,10),(9357,161932,'Amateur Porn Guy',2,11),(9357,12538,'Repairman',2,12),(9357,1367112,'Sav-Mart Clerk',2,13),(9357,58352,'Soccer Coach',2,14),(9357,9048,'Det. Paul Outerbridge',2,15),(9357,204993,'Officer Lyon',2,16),(9357,97408,'Officer Bravo',1,17),(9357,62597,'Hotel Desk Manager',2,18),(9357,25990,'Duane',2,19),(9357,35172,'Eye Surgeon',2,20),(9357,1662256,'Cook',0,21),(9357,104928,'Nurse',0,22),(9357,1235946,'Risa Owens',0,23),(9357,63469,'Yoshi Araki',2,24),(9030,56731,'Sydney Wells',1,0),(9030,4941,'Dr. Paul Faulkner',2,1),(9030,7489,'Helen Wells',1,2),(9030,1118,'Simon McCullough',2,3),(9030,56732,'Ana Christina Martinez',1,4),(9030,52057,'Dr. Haskins',2,5),(9030,56733,'Miguel',2,6),(9030,10768,'Rosa Martinez',1,7),(9030,56734,'Alicia Millstone',1,8),(9030,3134,'Mrs. Cheung',1,9),(9030,30489,'Mrs. Hillman',1,11),(9030,129713,'Little Girl',1,12),(8386,5384,'Silas P. Silas',2,0),(8386,54799,'Jamal King',2,1),(8386,52057,'Dean Carl Cain',2,2),(8386,51944,'Baby Powder',2,3),(8386,54800,'Mamma King',1,4),(8386,20753,'Philip Huntley',2,5),(8386,4004,'Vice President',2,6),(8386,1210,'Bill the Crew Coach',2,7),(8386,54801,'Musikband',0,8),(8386,154000,'Jamie',1,9),(1360,3136,'Frida Kahlo',1,0),(1360,658,'Diego Rivera',2,1),(1360,6859,'Cristina Kahlo',0,2),(1360,16406,'Matilde Kahlo',1,3),(1360,8688,'Alejandro',2,4),(1360,16407,'Guillermo Kahlo',2,5),(1360,15852,'Tina Modotti',1,6),(1360,3131,'David Alfaro Siqueiros',2,7),(1360,819,'Nelson Rockefeller',2,8),(1360,9825,'Gracie',0,9),(1360,118,'Leon Trotsky',2,10),(1360,16408,'Natalia Trotsky',1,11),(1360,16409,'Andru00e9 Breton',0,12),(1360,991946,'Tango Singer',0,13),(9059,1954,'The Collector',2,0),(9059,6573,'Frank Brayker',2,1),(9059,9575,'Jeryline',1,2),(9059,32290,'Cordelia',1,3),(9059,30485,'Irene',1,4),(9059,31365,'Crypt Keeper',2,5),(9059,102441,'Uncle Willy',2,6),(9059,19159,'Roach',2,7),(9059,24046,'Sheriff Tupper',2,8),(9059,15439,'Deputy Bob Martel',2,9),(9059,12826,'Wally Enfield',2,10),(9059,956719,'Homer',2,11),(9059,43068,'Wanda',1,12),(9059,166406,'Danny',2,13),(9059,1108092,'Sirach',0,14),(9059,544069,'Party babe',1,15),(9059,97780,'Party babe',1,16),(9059,101170,'Amanda',0,17),(1948,976,'Chev Chelios',2,0),(1948,20189,'Eve',1,1),(1948,20191,'Ricky Verona',0,2),(1948,20190,'Kaylo',2,3),(1948,20309,'Doc Miles',2,4),(1948,171136,'Carlito',0,5),(1948,117187,'Orlando',2,6),(1948,39391,'Haitian Cabbie',2,7),(1948,77870,'Doctor',2,8),(1948,962169,'Alex',2,9),(1948,91387,'Don Kim',2,10),(1948,1212687,'Chocolate',0,11),(1948,123102,'Arab Cabbie',0,12),(1948,1310647,'Man in Garage',0,13),(1948,1260146,'Sin City Brother',0,14),(1948,62735,'Convenience Store Clerk',2,15),(1948,1874839,'Verona Crew #1',0,16),(1948,1502956,'Verona Crew #2',0,17),(1948,1197372,'Verona Crew #3',0,18),(1948,1874840,'Hightower',0,19),(1948,1874841,'Hightower',0,20),(1948,1874840,'Restaurant Waitress',0,21),(1948,1223805,'Pharmacy Man',0,22),(1948,1352093,'Pharmacist',0,23),(1948,108661,'Pharmacy Stoner',2,24),(1948,146837,'Hospital Cop',2,25),(1948,74228,'Stretcher Patient',2,26),(1948,1171859,'Hospital Tech #1',0,27),(1948,1874844,'Hospital Tech #2',0,29),(1948,1228835,'Motorcycle Cop',2,31),(1948,27688,'TV Store Guy',0,32),(1948,53252,'Warehouse Rooftop Hood',2,33),(1948,1434037,'Warehouse Window Hood',0,34),(1948,17918,'Warehouse Hood Leader',2,35),(1948,1825452,'Warehouse Hood #1',0,36),(1948,1129158,'Warehouse Hood #2',2,37),(1948,201389,'Hood #3',2,38),(1948,1367499,'Hood #4',2,39),(1948,1031469,'Hood #5',2,40),(1948,1762704,'Hood #6',0,41),(1948,1196122,'Shirt Factory Supervisor',0,42),(1948,1217896,'Bus Girl',0,43),(1948,156963,'Japanese Businessman',2,44),(1948,46362,'Shootout Henchman #1',2,45),(1948,978844,'Shootout Henchman #2',0,46),(1948,931041,'Cocoon Girl',1,47),(1948,1714916,'Helicopter Pilot',0,48),(1948,79074,'TV Reporter',2,49),(3635,1245,'Griet',1,0),(3635,5472,'Johannes Vermeer',2,1),(3635,2037,'Pieter',2,2),(3635,207,'Pieter Van Ruijven',2,3),(3635,33448,'Maria Thins',0,4),(3635,33449,'Catharina Bolnes Vermeer',1,5),(3635,33450,'Tanneke',1,6),(3635,33451,'Griet\'s Mother',1,7),(3635,33452,'Griet\'s Father',2,8),(3635,20051,'Cornelia Vermeer',1,9),(3635,33453,'Frans',2,10),(3635,5529,'Maertge',1,11),(3635,54275,'White Haired Woman',1,12),(387,920,'Kapitu00e4n-Leutnant Heinrich Lehmann-Willenbrock',2,0),(387,5228,'Leutnant Werner',2,1),(387,5229,'Der Leitende/Fritz Grade',2,2),(387,5230,'1WO',2,3),(387,4924,'2WO',2,4),(387,2349,'Kriechbaum/Navigator',2,5),(387,3970,'Johann',2,6),(387,5232,'Ullmann',2,7),(387,5233,'Hinrich',2,8),(387,682,'Bosun',2,9),(387,5234,'Ario',2,10),(387,5235,'Pilgrim',2,11),(387,4922,'Frenssen',2,12),(387,2311,'Phillip Thomsen',2,13),(387,5012,'Leutnant Mu00fcller',2,15),(387,39325,'Preacher',2,16),(387,28114,'Schwalle',2,17),(387,1136687,'Bockstiegel',2,18),(387,1649330,'Dufte',2,19),(387,574349,'Monique',1,20),(387,9932,'Captain of the \'Weser\'',2,21),(387,1346868,'Benjamin',2,22),(387,1665127,'Hagen',0,23),(387,1665128,'Schmutt',0,24),(387,1665129,'Franz',0,25),(387,38601,'Markus',0,26),(387,1665130,'Erster WO Merkel (uncredited)',0,27),(387,1665131,'Franu00e7oise (uncredited)',0,28),(387,1170466,'Nadine (uncredited)',1,29),(6020,47368,'Dave / Daisey',2,0),(6020,19975,'Adam / Adina',2,1),(6020,16846,'Doofer / Roberta',2,2),(6020,41555,'Leah',1,3),(6020,3908,'Jimmy',2,4),(6020,19227,'Spence',2,5),(6020,47369,'Patty',1,6),(6020,33656,'Katie',1,7),(6020,1042684,'Tri Pi',1,8),(9550,43661,'Jin',2,0),(9550,25246,'Leo',2,1),(9550,1339,'Xiao Mei',1,2),(9550,57912,'Yee',0,3),(9550,1517431,'',0,4),(9550,1571927,'',0,5),(9550,1620869,'',0,6),(9550,1620870,'',0,7),(9550,1620872,'',0,8),(9550,1620873,'',0,9),(9550,1620874,'',0,10),(9550,1620875,'',0,11),(9550,1620876,'',0,12),(9550,1620877,'',0,13),(9550,1620878,'',0,14),(9550,1620879,'',0,15),(9550,1620880,'',0,16),(9466,11181,'Lee Simon',2,0),(9466,351,'Robin Simon',1,1),(9466,3266,'Tony Gardella',2,2),(9466,6193,'Brandon',2,3),(9466,6885,'Supermodel',1,4),(9466,1920,'Nola',1,5),(9466,29369,'Nicole Oliver',1,6),(9466,10696,'Bonnie',1,9),(9466,10739,'Nina - the Hooker',1,10),(9466,38160,'Iris',1,11),(9466,556036,'Pinky Virdon',0,13),(9466,21385,'Lou DeMarco',2,13),(9466,28022,'Rabbi Kaufman',0,14),(9466,5587,'David',2,16),(9466,19,'Evelyn Isaacs',1,16),(9466,32983,'Bill Gaines',2,17),(9466,5090,'Darrow Entourage',2,18),(9466,6807,'Darrow Entourage',2,19),(9466,4250,'Dr. Lupus',2,20),(9466,19152,'Catholic Retreat Priest',2,21),(9466,18999,'Souvenir Hawker',2,22),(9466,2954,'Greg',2,24),(9466,15370,'Vicky',0,25),(9466,23959,'TV Reporter',1,26),(9466,33663,'Himself',2,27),(9466,1989,'Dee Bartholomew',1,28),(9466,76131,'TV Reporter at Premiere',1,29),(9466,18236,'Manhattan Moods Anchor Woman',1,30),(9466,1200831,'Manhattan Moods Assistant Director',0,31),(9466,65829,'Al Swayze',2,32),(9466,1701137,'Frankie',2,33),(9466,106791,'Olga',0,34),(7510,516,'Deirdre Burroughs',1,0),(7510,1248,'Dr. Finch',2,1),(7510,33528,'Augusten Burroughs',2,2),(7510,12763,'Neil Bookman',2,3),(7510,38940,'Natalie Finch',1,4),(7510,7447,'Norman Burroughs',2,5),(7510,20362,'Agnes Finch',1,6),(7510,12052,'Hope Finch',1,7),(7510,17773,'Dorothy',1,8),(7510,17178,'Michael Shephard',2,9),(7510,52775,'Fern Stewart',1,10),(7510,52776,'Suzanne',1,11),(7510,13023,'Joan',1,12),(7510,52777,'Six-Year-Old Augusten Burroughs',0,13),(7510,52778,'Poo',0,14),(7510,167862,'Restaurant Manager',2,15),(1255,20738,'Park Gang-du',2,0),(1255,21687,'Park Nam-il',2,2),(1255,21688,'Park Nam-joo',1,3),(1255,21689,'Park Hyun-seo',0,4),(1255,116180,'Park Hie-bong',0,5),(1255,6914,'American Doctor',2,6),(1255,138988,'US Doctor trying to operate Gang-Du',2,7),(8669,21028,'Charlie Bartlett',2,0),(8669,3223,'Nathan Gardner',2,1),(8669,15250,'Marilyn Bartlett',1,2),(8669,52852,'Susan Gardner',1,3),(8669,419,'Murphy Bivens',2,4),(8669,34918,'Kip Crombwell',2,5),(8669,55614,'Len Arbuckle',2,6),(8669,55615,'Whitney Drummond',1,7),(8669,116638,'Jordan Sunder',0,9),(8669,1196133,'Superintendent Sedgwick',0,10),(8669,40551,'Dr. Stan Weathers',2,11),(8669,963433,'Henry Freemont',0,12),(8669,182396,'Officer Hansen',2,13),(8669,94833,'Thomas',2,14),(8669,33668,'Dean West',2,15),(8669,88620,'Kelly',1,16),(8669,1212302,'Daisy',0,17),(8669,190895,'Priscilla',1,18),(8669,197315,'A/V Jones',2,19),(8669,205446,'Scott',2,20),(8669,1281020,'Bus Driver',0,21),(8669,184388,'Mrs. Albertson',1,22),(8669,64310,'Dr. Sam Costell',0,23),(8669,2676,'Dr. Linda Jenkins',1,24),(8669,44101,'Dr. Jacob Kaufmann',2,25),(8669,1239376,'Dr. P. Sarossy',0,26),(8669,1281021,'Cheerleader #1',0,28),(8669,1281022,'Cheerleader #2',1,29),(8669,1281023,'Cheerleader #3',0,30),(8669,1281024,'Len\'s Girlfriend #1',0,31),(8669,1281025,'Len\'s Girlfriend #2',0,32),(8669,1281026,'Receptionist',0,33),(8669,1281027,'Kip\'s Mom',0,34),(8669,1281028,'Spiral Beach Band Member',0,35),(8669,1281029,'Spiral Beach Band Member',0,36),(8669,1281030,'Spiral Beach Band Member',0,37),(8669,1281031,'Spiral Beach Band Member',0,38),(8669,168750,'Dustin Lauderbach',2,39),(8669,1073625,'Dorm Head',0,40),(844,1337,'Chow Mo-Wan',2,0),(844,1339,'Bai Ling',1,1),(844,12671,'Wang Jing Wen',1,2),(844,12670,'Tak',2,3),(844,643,'Su Li-Zhen',1,4),(844,12672,'Lulu/Mimi',1,5),(844,12674,'Ah Ping',2,6),(844,1338,'Su Li-Zhen',1,7),(844,12676,'Wang Jie Wen',0,8),(844,12675,'Bird',0,9),(844,1622,'cc 1966',2,10),(844,1178957,'Mr Wang',0,11),(8060,2955,'Harry Allen',2,0),(8060,517,'Richard Langley',2,1),(8060,1276,'Pat Allen',1,2),(8060,53714,'Kay Nesbitt',1,3),(8060,1371,'John Ou00b4Brien',2,4),(8060,53715,'Miss Jones',0,5),(8060,53716,'Mrs. Walsh',1,6),(8060,53718,'Becky',1,7),(8060,53719,'Little Charlie',0,8),(8060,27112,'Dr. Anderson',2,9),(8060,53720,'Alvin Waters',2,10),(8060,46906,'Tom',2,11),(8060,58908,'Operator',0,12),(8060,963962,'Charade Player',2,13),(327,3317,'Aniki Yamamoto',2,0),(327,4987,'Denny',2,1),(327,1091315,'Ken',2,2),(327,4990,'Kato',2,4),(327,4989,'Shirase',2,5),(327,4991,'Jay',2,6),(327,4992,'Mo',2,7),(327,4994,'Ishihara',2,8),(327,4995,'Sugimoto',2,9),(327,4996,'Latifa',1,10),(327,5063,'Rossi',2,11),(327,137029,'Harada',0,12),(9260,3905,'Riley',2,0),(9260,21353,'Leon',2,1),(9260,6807,'Pero',2,2),(9260,2169,'Toto',2,3),(9260,40481,'Cosimo',2,4),(9260,1461,'Jerzy',2,5),(9260,1276,'Rosalind',1,6),(9260,18285,'Carmela',1,7),(9260,52708,'Basil',0,8),(9260,17773,'Michelle',1,9),(4170,8945,'Ray Sheridan',2,0),(4170,36584,'Jorge',2,1),(4170,36586,'Adriana',1,2),(4170,5203,'Veronica',1,4),(4170,260,'Manuelo',2,5),(4170,58643,'Patty Sheridan',1,6),(4170,12714,'Alex Green',2,7),(4170,36628,'Laura',1,8),(4170,52762,'Vadim Youchenko',2,10),(4170,586303,'Lupe',0,11),(4170,1020699,'Alejandro',2,12),(4170,1149132,'Moncho',0,14),(4170,271,'Don Victor',0,15),(4170,27771,'Hank Jefferson',2,16),(4170,990727,'Old Mexican Shopkeeper',1,17),(107,976,'Turkish',2,0),(107,287,'Mickey O\'Neil',2,1),(107,980,'Bullet Tooth Tony',2,2),(107,1117,'Abraham \'Cousin Avi\' Denovitz',2,3),(107,1121,'Franky Four Fingers',2,4),(107,1115,'Tommy',2,5),(107,1116,'Brick Top Polford',2,6),(107,1118,'Boris \'The Blade\' Yurinov',2,7),(107,1119,'Vincent',0,8),(107,1120,'Sol',2,9),(107,1122,'Doug \'The Head\' Denovitz',2,10),(107,973,'Darren',2,11),(107,1123,'Errol',0,12),(107,1124,'Neil',0,13),(107,1125,'Mullet',2,14),(107,2302,'Gorgeous George',2,15),(107,2627,'Tyrone',2,16),(107,1340211,'Bomber Harris',2,17),(107,956,'Man Reading Newspaper (uncredited)',2,18),(107,1473866,'Boxer (uncredited)',2,19),(107,1221763,'Mum O\'Neil',0,20),(107,34515,'The Russian',2,21),(107,30323,'Policeman',0,22),(107,976,'hu0131rsu0131z',2,23),(8913,56265,'Louis Creed',2,0),(8913,56266,'Jud Crandall',2,1),(8913,1743,'Rachel Creed',1,2),(8913,56267,'Victor Pascow',2,3),(8913,13938,'Irwin Goldman',2,4),(8913,8186,'Gage Creed',2,5),(8913,175553,'Ellie Creed',0,6),(8913,1913,'Missy Dandridge',1,7),(8913,1117928,'Marcy Charlton',0,8),(8913,111710,'Steve Masterton',2,9),(8913,115767,'Dory Goldman',1,10),(8913,1117929,'Zelda',0,11),(8913,1117930,'Girl at Infirmary',0,12),(8913,1117931,'Candystriper',0,13),(927,16170,'Billy Peltzer',2,0),(927,16171,'Kate Beringer',1,1),(927,16166,'Randall Peltzer',2,2),(927,11715,'Ruby Deagle',1,3),(927,102441,'Murray Futterman',2,4),(927,16103,'Grandfather (Mr. Wing)',2,5),(927,16173,'Mrs. Joe Harris',1,6),(927,14847,'Sheriff Frank',2,7),(927,777,'Gerald Hopkins',2,8),(927,16167,'Chinese Boy',0,9),(927,16168,'Rockin\' Ricky Rialto (voice)',2,10),(927,16169,'Little Girl',0,11),(927,4316,'Mr. Anderson',2,12),(927,16172,'Man on Street',2,13),(927,77920,'Gizmo (voice)',2,14),(927,3034,'Pete Fountaine',2,15),(927,29719,'Mr. Corben',2,16),(927,783,'Deputy Brent',2,17),(11,2,'Luke Skywalker',2,0),(11,3,'Han Solo',2,1),(11,4,'Princess Leia Organa',1,2),(11,5,'Grand Moff Tarkin',2,3),(11,12248,'Obi-Wan Ben Kenobi',2,4),(11,6,'See Threepio (C-3PO)',2,5),(11,130,'Artoo-Detoo (R2-D2)',2,6),(11,24343,'Chewbacca',2,7),(11,24342,'Darth Vader',2,8),(11,15152,'Voice of Darth Vader (voice)',0,9),(11,33032,'Uncle Owen',2,10),(11,131625,'Aunt Beru',1,11),(11,132538,'Chief Jawa',2,12),(11,69249,'General Willard',2,13),(11,47698,'Red Two (Wedge)',2,14),(11,17356,'Red Three (Biggs)',2,15),(11,42570,'General Taggi',2,16),(11,79489,'Commander #1',2,17),(11,12829,'General Motti',2,18),(11,1729623,'Stormtrooper',2,19),(11,216087,'General Dodonna',2,20),(11,47401,'Red Leader',2,21),(11,162432,'Red Four (John D)',2,22),(11,663,'Red Six (Porkins)',2,23),(11,58475,'Gold Leader',2,24),(11,151819,'Gold Two',2,25),(11,202276,'Gold Five',2,26),(11,1216947,'Red Two (voice) (uncredited)',2,27),(11,1271058,'Boba Fett (special edition) (uncredited)',2,28),(11,3044,'Stormtrooper (voice) (uncredited)',2,29),(11,1271059,'Stormtrooper (uncredited)',2,30),(11,1271060,'Cantina Alien (uncredited)',2,31),(11,1271061,'Cantina Alien (uncredited)',0,32),(11,199356,'Greedo (uncredited)',2,33),(11,1271062,'Nabrun Leids (uncredited)',0,34),(11,1271063,'Wuher (uncredited)',2,35),(11,1271064,'Drifter (Red 12) (uncredited)',2,36),(11,1271065,'Cantina Patron (uncredited)',2,37),(11,1178140,'Stormtrooper (uncredited)',2,38),(11,186229,'Wioslea (uncredited)',0,39),(11,1271066,'Dr. Evazan (uncredited)',2,40),(11,1271067,'Cantina Patron (uncredited)',0,41),(11,104149,'Greedo (uncredited)',1,42),(11,1271068,'Hrchek Kal Fas (uncredited)',0,43),(11,1271069,'Jawa (uncredited)',0,44),(11,53587,'Stormtrooper / Tusken Raider / Death Star Trooper / Garouf Lafoe (uncredited)',2,45),(11,1271070,'Jawa (uncredited)',0,46),(11,1271071,'Garindan (uncredited)',0,47),(11,1271072,'Djas Puhr (uncredited)',0,48),(11,202402,'Death Star Trooper (uncredited)',2,49),(11,1271073,'Stormtrooper with Binoculars (uncredited)',0,50),(11,1271074,'Cantina Patron (uncredited)',0,51),(11,1195602,'Death Star Trooper (uncredited)',0,52),(11,1271075,'Kabe (uncredited)',0,53),(11,252527,'Kabe / Jawa / GONK Droid (uncredited)',0,54),(11,1271076,'Cantina Patron (uncredited)',0,55),(11,1271077,'Stormtrooper (special edition) (uncredited)',0,56),(11,1271078,'Stormtrooper (uncredited)',0,57),(11,964699,'Leia\'s Rebel Escort (uncredited)',2,58),(11,1271079,'Stormtrooper (uncredited)',0,59),(11,1271080,'Brea Tonnika (uncredited)',0,60),(11,1271081,'Stormtrooper (uncredited)',0,61),(11,1271082,'Ponda Baba (uncredited)',0,62),(11,4945,'Death Star Trooper (uncredited)',2,63),(11,1271083,'Mosep (uncredited)',0,64),(11,1148750,'Chall Bekan (uncredited)',0,65),(11,201344,'Solomohal (uncredited)',0,66),(11,1271085,'Stormtrooper (voice) (uncredited)',0,67),(11,1271086,'Jawa (uncredited)',0,68),(11,1190780,'Jawa (uncredited)',0,69),(11,190453,'Daine Jir (uncredited)',0,70),(11,1012562,'BoShek (uncredited)',0,71),(11,1271091,'Muftak / Cantina Band Member (uncredited)',0,72),(11,1271092,'Temple Guard / Medal Bearer (uncredited)',2,73),(11,1271095,'Jawa (uncredited)',0,74),(11,1271096,'Takeel (uncredited)',0,75),(11,19801,'Stormtrooper (special edition) (uncredited)',0,76),(11,1271102,'Death Star Gunner (uncredited)',0,77),(11,1271104,'Cantina Patron (uncredited)',0,78),(11,1271106,'Swilla Corey (uncredited)',0,79),(11,1271107,'Massassi Base Rebel Scout (uncredited)',0,80),(11,1183443,'Rycar Ryjerd (uncredited)',0,81),(11,10657,'InCom Engineer (uncredited)',2,82),(11,1271116,'Leesub Sirln (uncredited)',0,83),(11,110319,'Cmdr. Praji (Imperial Officer #2 on rebel ship) (uncredited)',2,84),(11,1271121,'Tawss Khaa (uncredited)',0,85),(11,1271122,'Senni Tonnika (uncredited)',0,86),(11,1271123,'Cantina Patron (uncredited)',0,87),(11,1271124,'Cantina Patron (uncredited)',0,88),(11,1271125,'Sai\'torr Kal Fas (uncredited)',0,89),(11,187398,'Lt. Pol Treidum (uncredited)',0,90),(11,1271126,'Cantina Voices (voice) (uncredited)',0,91),(11,390158,'Massassi Outpost Announcer / Various Voices (voice) (uncredited)',0,92),(11,166258,'Lt. Shann Childsen (uncredited)',2,93),(11,7727,'Cantina Alien (uncredited)',2,94),(11,184980,'Del Goren (uncredited)',0,95),(11,160947,'Stormtrooper (voice) (uncredited)',0,96),(11,161301,'Stormtrooper (voice) (uncredited)',0,97),(11,1271127,'Jawa (uncredited)',0,98),(11,159108,'Greedo (voice) (uncredited)',2,99),(11,1271128,'Thuku (uncredited)',0,100),(11,1271129,'Ketwol / Melas (uncredited)',0,101),(11,24278,'Stormtrooper (uncredited)',2,102),(11,60207,'Mos Eisley Citizen (special edition) (uncredited)',0,103),(11,1271131,'Cantina Patron (uncredited)',0,104),(11,301657,'Rebel Pilot (uncredited)',0,105),(907,5004,'Dr. Yuri Zhivago',0,0),(907,1666,'Lara Antipova',1,1),(907,400,'Tonya Gromeko',1,2),(907,522,'Viktor Komarovsky',2,3),(907,12248,'Gen. Yevgraf Zhivago',2,4),(907,14012,'Anna',1,5),(907,12689,'Alexander Gromeko',2,6),(907,14014,'Liberius',2,7),(907,14015,'Razin, Liberius\' Lieutenant',2,8),(907,14016,'Petya',2,9),(907,14017,'Engineer at dam',2,10),(907,14018,'Sergei',0,11),(907,14277,'Kostoyed Amourski',2,12),(907,47754,'The Girl',1,13),(907,14011,'Pasha Antipov / Strelnikov',2,14),(907,63000,'The Bolshevik',2,15),(907,10462,'Medical Professor',2,16),(907,2265,'Amelia',1,17),(907,730346,'Beef-Faced Colonel',0,18),(907,90627,'Delegate',2,19),(907,111326,'Female Janitor',1,20),(907,102153,'The Train Jumper',1,21),(907,199919,'Political Officer',2,22),(907,941312,'Mrs. Sventytski (uncredited)',0,23),(907,37796,'Mr. Sventytski (uncredited)',0,24),(907,100901,'Militiaman (uncredited)',0,25),(907,1443973,'Raped Woman (uncredited)',0,26),(907,32830,'Hospital Inmate (uncredited)',0,27),(907,1545347,'Major (uncredited)',0,28),(907,1436363,'Siberian Husband (uncredited)',0,29),(907,231021,'Gentlewoman (uncredited)',0,30),(907,14822,'Priest (uncredited)',0,31),(907,32130,'Extra (uncredited)',2,32),(907,83739,'Extra (uncredited)',0,33),(907,1375376,'Kostoyed (voice) (uncredited)',2,34),(907,103469,'Captain (uncredited)',2,35),(907,140095,'Demented Woman (uncredited)',0,36),(907,1169593,'(uncredited)',1,37),(907,49895,'(uncredited)',2,38),(9942,13022,'Jake Taylor',2,0),(9942,6952,'Rick \'Wild Thing\' Vaughn',2,1),(9942,21246,'Roger Dorn',2,2),(9942,60700,'Rachel Phelps',1,3),(9942,16433,'Lou Brown',2,4),(9942,14343,'Lynn Wells',1,5),(9942,10814,'Willie Mays Hayes',2,6),(9942,11786,'Charlie Donovan',2,7),(9942,10486,'Eddie Harris',2,8),(9942,352,'Pedro Cerrano',2,9),(9942,32289,'Pepper Leach',2,10),(9942,147486,'Harry Doyle',2,11),(9942,1526035,'Duke Temple',0,12),(9942,147487,'Haywood',0,13),(9942,147485,'Suzanne Dorn',0,14),(9942,156435,'Tom',2,15),(9942,1213105,'Vic Bolito',0,16),(9942,59406,'Thelma',1,17),(9942,43776,'Longshoreman',2,18),(1817,72466,'Stu Shepard',2,0),(1817,2628,'Der Anrufer',2,1),(1817,2178,'Captain Ed Ramey',2,2),(1817,8329,'Kelly Shephard',1,3),(1817,3897,'Pamela McFadden',1,4),(1817,45245,'Felicia',1,5),(1817,17941,'Wyatt',2,6),(1817,1188456,'Negotiator',0,7),(1817,11107,'Big Q',2,8),(687,4038,'Sister Helen Prejean',1,0),(687,2228,'Matthew Poncelet',2,1),(687,10360,'Hilton Barber',2,2),(687,10361,'Earl Delacroix',2,3),(687,8655,'Clyde Percy',2,4),(687,1989,'Mary Beth Percy',1,5),(687,2207,'Helen\'s Mother',1,6),(687,6914,'Kaplan Farlely',2,7),(687,10362,'Lucille Poncelet',1,8),(687,452,'Sister Colleen',1,9),(687,70851,'Craig Poncelet',2,10),(687,10366,'Luis Montoya',2,11),(687,133,'Walter Delacroix',2,12),(687,79732,'Captain Beliveau',2,13),(687,1183429,'Sgt. Neal Trapp',0,14),(687,21152,'Warden Hartman',2,15),(687,19511,'Guy Gilardi',2,16),(687,25711,'Governor Benedict',2,17),(687,6574,'State Trooper',2,18),(687,1232566,'Carl Vitello',0,19),(687,51384,'Hope Percy',1,20),(687,1237883,'Emily Percy',0,21),(687,17866,'Sonny Poncelet',2,22),(687,1223451,'Troy Poncelet',0,23),(687,95940,'Helen\'s Brother',2,24),(687,56757,'9-Year-Old Helen',1,25),(687,1366946,'Opossum Kid #1',0,26),(687,93679,'Henry',2,27),(687,62570,'Nellie',0,28),(687,1591178,'Nurse',1,29),(687,1371000,'Parent #1',0,30),(687,1407052,'Parent #2',0,31),(687,20765,'Parent #4',1,32),(687,32287,'Guard #2',2,33),(687,75611,'Guard #3',0,34),(687,4732,'Guard #4',2,35),(687,108147,'Guard #7',0,36),(687,16460,'Parole Board Member (uncredited)',2,37),(687,1411679,'Trustee (uncredited)',2,38),(687,1191341,'ER Doctor (uncredited)',2,39),(687,1463362,'Cop (uncredited)',0,40),(687,10298,'Woman at Vigil (uncredited)',1,41),(796,11863,'Kathryn Merteuil',1,0),(796,11864,'Sebastian Valmont',2,1),(796,368,'Annette Hargrove',1,2),(796,11826,'Cecile Caldwell',1,3),(796,7071,'Helen Rosemond',1,4),(796,11866,'Blaine Tuttle',2,5),(796,11867,'Greg McConnell',2,6),(796,11868,'Ronald Clifford',2,7),(796,11870,'Bunny Caldwell',1,8),(796,11871,'Nurse',1,9),(796,11872,'Mrs. Michalak',1,10),(796,1234,'Marci Greenbaum',1,11),(796,12967,'Dr. Greenbaum',1,12),(796,136482,'Mrs. Sugarman',1,13),(796,167166,'Mai-Lee',1,14),(796,129122,'Court Reynolds',2,15),(796,1049208,'Meter Maid',2,16),(796,1395911,'Clorissa',0,17),(796,52188,'Headmaster Hargrove',2,18),(796,94561,'',0,19),(3175,31070,'Barry Lyndon',2,0),(3175,31071,'Lady Lyndon',1,1),(3175,37777,'Capt. Potzdorf',2,2),(3175,22703,'Lischen',1,3),(3175,31718,'Sir Charles Reginald Lyndon',0,4),(3175,31719,'Captain Feeny',2,5),(3175,2279,'Capt. Grogan',0,6),(3175,249,'Capt. John Quin',2,7),(3175,694,'Graham',2,8),(3175,2264,'The Chevalier de Balibari',2,9),(3175,782,'Lord Ludd',2,10),(3175,31720,'Nora Brady',1,11),(3175,31721,'Belle, Barry\'s mother',1,12),(3175,31722,'Rev. Samuel Runt',2,13),(3175,10029,'Lord Gustavos Adolphus Wendover',2,14),(3175,5020,'Lord Bullingdon',2,15),(3175,31723,'Seamus Feeny',0,16),(766,11357,'Ash',2,0),(766,6368,'Sheila',1,1),(766,11763,'Lord Arthur',2,2),(766,11764,'Wiseman',2,3),(766,11765,'Duke Henry the Red',2,4),(766,11766,'Blacksmith',0,5),(766,11767,'Gold Tooth',2,6),(766,2233,'Linda',1,7),(766,11768,'Possessed Witch',1,8),(766,11769,'Cowardly Warrior/Second Supportive Villager/S-Mart Clerk',2,9),(766,1195675,'Mini-Ash #2',0,10),(1587,85,'Gilbert Grape',2,0),(1587,6193,'Arnie Grape',2,1),(1587,3196,'Becky',1,2),(1587,17768,'Bonnie Grape',1,3),(1587,2453,'Betty Carver',1,4),(1587,17769,'Amy Grape',1,5),(1587,8184,'Ellen Grape',1,6),(1587,4764,'Tucker Van Dyke',2,7),(1587,17770,'Ken Carver',2,8),(1587,1064,'Bobby McBurney',2,9),(1587,1375991,'Ministre',0,10),(1587,1375994,'Dave',0,11),(1587,215830,'Doug Carver',2,12),(1587,79008,'l\'employu00e9e de la boulangerie',1,13),(1587,172680,'la grand-mu00e8re de Becky',0,14),(1587,1376009,'la secru00e9taire de la Police',0,15),(1587,1376012,'le Du00e9putu00e9',0,16),(1587,177905,'le patron du Burger Barn',2,17),(1587,1376033,'Mr. Lamson',2,18),(1587,1376035,'Mrs. Lamson',1,19),(1587,111002,'Sheriff Jerry Farrel',0,20),(1587,1376047,'Todd Carver',0,21),(1587,1089548,'un garu00e7on',0,22),(1587,1376059,'un garu00e7on',0,23),(1587,2857,'une serveuse',0,24),(9027,16756,'Ramu Gupta',2,0),(9027,69122,'Sharonna',1,1),(9027,3141,'Lexi',1,2),(9027,21731,'Dwain',2,3),(9027,6066,'Rusty McGee',2,4),(9027,26201,'Vijay Rao',2,5),(9027,11870,'Chantal',1,6),(9027,47085,'Edwin',2,7),(9027,21127,'Randy',2,8),(9027,1178792,'Josh\'s Assistant',0,9),(9027,1834037,'Wedding Dancer',0,10),(1590,228,'Ludwig van Beethoven',2,0),(1590,9824,'Anna Holtz',1,1),(1590,1247,'Martin Bauer',2,2),(1590,17787,'Mother Canisius',1,3),(1590,17788,'Wenzel Schlemmer',2,4),(1590,17789,'Rudy',2,5),(1590,1714,'Krenski',2,6),(1590,17790,'Magda',0,7),(1590,17479,'Old Woman',1,9),(4657,350,'Claire',1,0),(4657,5168,'Stewart',2,1),(4657,28745,'Jude',1,2),(4657,102603,'Carl',2,3),(4657,38782,'Carmel',1,4),(4657,38783,'Rocco',2,5),(4657,38784,'Elissa',1,6),(4657,38785,'Billy the Kid',2,7),(4657,38786,'Vanessa',1,8),(4657,3070,'Gregory',2,9),(4657,38665,'Terry',2,10),(4657,38789,'Susan',0,12),(4657,38787,'Caylin-Calandria',1,13),(4657,38788,'Tom',0,14),(4657,11132,'Minister',2,15),(4657,1532525,'Alice - Susan\'s Sister',1,16),(62,245,'Dr. Dave Bowman',2,0),(62,246,'Dr. Frank Poole',2,1),(62,247,'Dr. Heywood R. Floyd',2,2),(62,253,'HAL 9000 (voice)',2,3),(62,248,'Moon-Watcher',0,4),(62,249,'Dr. Andrei Smyslov',2,5),(62,250,'Elena',1,6),(62,251,'Dr. Ralph Halvorsen',2,7),(62,252,'Dr. Bill Michaels',2,8),(62,102573,'Mission Controller (voice)',2,9),(62,108277,'Aries-1B Lunar Shuttle Captain',0,10),(62,117540,'Aries-1B Stewardess',1,11),(62,127363,'Stewardess',0,12),(62,1102076,'Stewardess',0,13),(62,1819434,'stewardess',0,14),(62,1819435,'stewardess',0,15),(62,1819436,'Voiceprint identification girl',0,16),(62,93948,'Poole\'s Father',0,17),(62,107445,'Poole\'s Mother',1,18),(62,8645,'Squirt - Floyd\'s Daughter (uncredited)',1,19),(62,1330813,'BBC-12 Announcer (uncredited)',0,20),(62,24278,'Astronaut',2,21),(62,948173,'Astronaut',2,22),(62,1330785,'Astronaut',0,23),(62,1330786,'Ape',0,24),(62,1330787,'Ape',0,25),(62,1330788,'Ape',0,26),(62,1330789,'Ape',0,27),(62,1330790,'Ape',0,28),(62,1330791,'Ape',0,29),(62,1330792,'Ape Attacked by Leopard',0,30),(62,1330793,'Ape',0,31),(62,1330794,'Ape',0,32),(62,1330795,'Ape',0,33),(62,1330796,'Ape',0,34),(62,1330797,'Ape',0,35),(62,1330798,'Ape',0,36),(62,1330799,'Ape',0,37),(62,1330800,'Ape',0,38),(62,1330801,'Ape',0,39),(62,1330802,'Ape',0,40),(62,1330803,'Ape',0,41),(62,1330804,'Ape',0,42),(62,1330805,'Ape Killed by Moon-Watcher',0,43),(62,1330806,'Interviewer (uncredited)',0,44),(62,1330807,'Young Man (uncredited)',0,45),(62,1330808,'(uncredited)',0,46),(62,1330809,'(uncredited)',0,47),(62,1330811,'(uncredited)',0,48),(62,1330812,'(uncredited)',0,49),(62,1330814,'(uncredited)',1,50),(62,1330815,'Russian Scientist (uncredited)',0,51),(62,1330816,'Russian Scientist (uncredited)',0,52),(62,1330817,'(uncredited)',0,53),(62,1330818,'(uncredited)',0,54),(62,1330819,'(uncredited)',0,55),(62,1330820,'Miller (uncredited)',0,56),(62,1330821,'TMA-1 Site Technician #1 (uncredited)',2,57),(62,184980,'TMA-1 Site Photographer (uncredited)',0,58),(62,1208787,'TMA-1 Site Technician #2 (uncredited)',2,59),(601,9976,'Elliott',0,0),(601,69597,'Gertie',1,1),(601,9978,'Michael',0,2),(601,62001,'Mary',1,3),(601,9979,'Keys',2,4),(601,23764,'Pretty Girl',1,5),(601,9981,'Steve',0,6),(601,2878,'Tyler',2,7),(601,9980,'Greg',0,8),(601,9982,'Schoolboy',0,9),(601,9983,'Science Teacher',0,10),(601,9984,'Policeman',0,11),(601,9985,'E.T. (voice)',0,12),(489,2157,'Sean Maguire',2,0),(489,1892,'Will Hunting',2,1),(489,880,'Chuckie Sullivan',2,2),(489,1640,'Prof. Gerald Lambeau',2,3),(489,6613,'Skylar',1,4),(489,1893,'Morgan O\'Mally',2,5),(489,6614,'Billy McBride',2,6),(489,6615,'Tom',0,7),(489,6616,'Krystyn',0,8),(489,6617,'Cathy',0,9),(489,6618,'Barbershop Quartet #1',0,10),(489,6619,'Barbershop Quartet #2',0,11),(489,6620,'Barbershop Quartet #3',0,12),(489,6621,'Barbershop Quartet #4',0,13),(489,2841,'M.I.T. Student',1,14),(489,6622,'M.I.T. Student',0,15),(489,6623,'M.I.T. Student',2,16),(489,1281440,'Girl on Street',0,17),(489,1281441,'Carmine Scarpaglia',0,18),(489,163438,'Carmine Friend #1',2,19),(489,1281442,'Lydia',0,20),(489,144578,'Clark',0,21),(489,134076,'Head Custodian',2,22),(489,1281443,'Assistant Custodian',0,23),(489,1237062,'Courtroom Guard',2,24),(489,1281445,'Judge Malone',0,25),(489,1281447,'Prosecutor',0,26),(489,1281448,'Court Officer',0,27),(489,95741,'Psychologist',2,28),(489,937042,'Hypnotist',2,29),(489,1281449,'Bunker Hill Student',0,30),(489,1242878,'Bunker Hill Student',2,31),(489,1281450,'Toy Store Cashier',0,32),(489,101803,'M.I.T. Professor',2,33),(489,44103,'Timmy',2,34),(489,1281443,'Marty',0,35),(489,1239394,'Executive #1',2,36),(489,37981,'Executive #2',2,37),(489,1190319,'Executive #3',2,38),(489,1228841,'NSA Agent',0,39),(489,1281451,'2nd NSA Agent',0,40),(489,4572,'Security Guard',2,41),(489,1647723,'Reunion Guest (uncredited)',2,42),(489,1444763,'M.I.T. Student (uncredited)',1,43),(489,1483455,'M.I.T. Student (uncredited)',0,44),(489,943742,'Student (uncredited)',2,45),(489,51918,'Jerve (uncredited)',0,46),(489,1003974,'Waiter (uncredited)',2,47),(489,1507846,'Race Track Fan (uncredited)',0,48),(489,1397188,'Bystander (uncredited)',2,49),(489,1693507,'Reception Attendant (uncredited)',1,50),(214,2144,'John Kramer',2,0),(214,2138,'Amanda Young',1,1),(214,2464,'Jeff Reinhart',2,2),(214,2677,'Dr. Lynn Denlon',1,3),(214,2133,'Kerry',1,4),(214,2676,'Deborah',1,5),(214,2680,'Eric Matthews',2,6),(214,2128,'Adam',2,7),(214,139631,'Troy',2,8),(214,22434,'Jill',1,9),(214,36055,'Forensic Hoffman',2,10),(214,51042,'Corbett Denlon',1,11),(214,1795981,'Paramedic',2,12),(1588,205,'Torrance Shipman',1,0),(1588,17772,'Cliff Pantone',2,1),(1588,13446,'Missy Pantone',1,2),(1588,17773,'Isis',1,3),(1588,86969,'Les',2,4),(1588,17774,'Courtney',1,5),(1588,17775,'Whitney',1,6),(1588,168014,'Darcy',1,7),(1588,55115,'Jan',2,8),(1588,1155676,'Lava',0,9),(1588,1155677,'Jenelope',0,10),(1588,73700,'Aaron',0,11),(1588,41662,'Big Red',1,12),(1588,8696,'Kasey',1,13),(1588,1695841,'Lafred',1,14),(1588,69616,'Carver',1,15),(1588,1578,'Bruce Shipman',2,16),(1588,1225571,'Christine Shipman',1,17),(1588,154038,'Justin Shipman',2,18),(1588,13101,'Sparky Polastri',2,19),(1588,1748692,'Toros Tight End',0,20),(1588,1748693,'Toros Quarterback',0,21),(1588,1748694,'New Pope Cheerleader #1',1,22),(1588,1223965,'New Pope Cheerleader #2',1,23),(1588,42392,'Costa Mesa Quarterback',2,24),(1588,1748702,'Cosa Mesa Linebacker',0,25),(1588,1748704,'Argumentative Girl',1,26),(1588,1740586,'Been-Crying-For-Hours Girl',1,27),(1588,1607844,'Rappin\' White Girl',1,28),(1588,1748708,'Be Aggressive Girl',1,29),(1588,1748721,'Start-Over Girl',1,30),(1588,1215765,'Theatre Boy',0,31),(1588,1748722,'Tiny Tot Cheerleader',0,32),(1588,1748723,'Emcee #1',0,33),(1588,1172434,'Emcee #2',1,34),(1588,29214,'Event Coordinator',1,35),(1588,1748726,'UCA Official',0,36),(1588,1748727,'High-Strung Mom',1,37),(1588,1748728,'Class Monitor',1,38),(1588,1748729,'Football Announcer',0,39),(1588,198772,'T.V. Reporter',1,40),(1588,49551,'Pauletta',1,41),(1588,1748732,'T.V. Commentator',0,42),(1588,1748733,'Jamie',1,43),(1588,59026,'Mime',2,44),(1588,1354806,'Cheer Coach',1,45),(1588,36137,'Nervous Cheerleader',1,46),(1588,167694,'Confident Cheerleader',1,47),(1588,67850,'Guy Cheerleader',2,48),(1588,1748747,'Aaron\'s Lover',1,49),(1588,1748748,'Clover Cheerleader',0,50),(1588,1748749,'High School Student',0,51),(1588,1748750,'Photographer',0,52),(1588,1088588,'Student',1,53),(1588,1722007,'New Pope Cheerleader',1,54),(1588,1223005,'Ballet Boy',0,55),(1588,230945,'Clover Cheerleader',0,56),(1588,1748753,'New Pope Cheerleader',0,57),(1588,182680,'Pervy Earth Science Teacher',2,58),(1588,1217828,'Toothless Cheerleader',1,59),(663,2144,'Jigsaw/John',2,0),(663,50020,'Agent Strahm',2,1),(663,36055,'Hoffman',2,2),(663,22434,'Jill',1,3),(663,2687,'Rigg',2,4),(663,51036,'Art',0,5),(663,51037,'Agent Perez',1,6),(663,51038,'Lamanna',2,7),(663,28869,'Fisk',2,8),(663,51039,'Ivan',2,9),(663,51040,'Brenda',1,10),(663,51041,'Cecill',2,11),(663,51042,'Corbett Denlon',1,12),(663,2320,'Vagrant',2,13),(663,99181,'Crime Scene Photographer',1,14),(663,2680,'Eric Matthews',2,15),(663,2138,'Amanda Young',1,16),(663,2464,'Jeff Denlon',2,17),(663,2133,'Detective Allison Kerry',1,18),(663,106644,'Dr. Heffner / Coroner',2,19),(663,2684,'Addison Corday',1,20),(9289,11998,'Col. Thompson',2,0),(9289,77260,'U.S. Army Ranger',2,1),(9289,25154,'Madame Barrault',0,2),(9289,25155,'Father Louis Roulland',0,3),(9289,6679,'Pvt. Dutch Schultz',2,4),(9289,23694,'Maj. Werner Pluskat',2,5),(9289,37131,'Le maire de Colleville',2,6),(9289,5341,'Flight Officer David Campbell',2,7),(9289,32554,'Maj. Gen. Dr. Hans Speidel',0,8),(9289,7503,'Pvt. John Steele',2,9),(9289,738,'Pvt. Flanagan',2,10),(9289,33722,'Capt. Frank',2,11),(9289,543813,'Maid',0,12),(9289,51173,'Blumentritt\'s Adjutant (uncredited)',2,13),(9289,6890,'Pvt. Harris (uncredited)',2,14),(9289,96623,'British Soldier (uncredited)',2,15),(9289,35586,'Janine Boitard (as Irina Demich)',1,16),(9289,544753,'U.S. Army Ranger major',0,17),(9289,39757,'U.S. Army Ranger',2,18),(9289,3754,'Maj. Gen. Robert Haines',2,19),(9289,6637,'Pvt. Coke (uncredited)',2,20),(9289,4958,'Brig. Gen. Theodore Roosevelt jr.',2,21),(9289,44998,'Capt. Harding',2,22),(9289,8545,'Pvt. Hutchinson (uncredited)',2,23),(9289,19574,'Meyer\'s Aide (uncredited)',0,24),(9289,24422,'French Commando (uncredited)',2,25),(9289,9908,'Sgt. Kaffekanne',2,26),(9289,579413,'Bit Part (uncredited)',0,27),(9289,211314,'German Guard on Traintreck (uncredited)',0,28),(9289,29655,'Brig. Gen. Edwin P. Parker Jr.',2,29),(9289,1208202,'British Soldier (uncredited)',0,30),(9289,6610,'German soldier (uncredited)',0,31),(9289,3648,'Gen. Dwight D. Eisenhower (uncredited)',2,32),(9289,90624,'British Padre',2,33),(9289,32162,'',0,34),(9289,12373,'Field Marshal Gerd von Rundstedt',2,35),(9289,36358,'Frau Maria Rommel (uncredited)',1,36),(9289,10507,'RAF Briefing Officer (uncredited)',2,37),(9289,36028,'Manfred Rommel (uncredited)',0,38),(9289,20863,'Field Marshal Erwin Rommel',2,39),(9289,38358,'RAF Pilot',2,40),(9289,30551,'Sgt. (later Lt.) John H. Fuller',2,41),(9289,30936,'Gen. Wolfgang Hager',0,42),(9289,10459,'Maj. Gen. Gunther Blumentritt',2,43),(9289,5800,'Capt. Helmuth Lang',0,44),(9289,40529,'Maj. Gen. Walter Bedell Smith',2,45),(9289,4353,'Lord Lovat',2,46),(9289,16310,'Col. Gen. Alfred Jodl (uncredited)',2,47),(9289,38914,'Cmdr. Philippe Kieffer (commando leader)',2,48),(9289,7505,'Pvt. Morris',2,49),(9289,2770,'Pvt. Martini',2,50),(9289,10158,'Brig. Gen. Norman Cota',2,51),(9289,67676,'Capt. Colin Maud',2,52),(9289,18964,'Gen. Erich Marcks',0,53),(9289,8254,'Gen. Raymond D. Barton',2,54),(9289,10655,'RAF Officer Mac',2,55),(9289,14121,'Maj. Gen. Max Pemsel',2,56),(9289,38053,'Col. Josef \'Pips\' Priller',2,57),(9289,236906,'Mother Superior',1,58),(9289,8253,'Brig. Gen. James M. Gavin',2,59),(9289,37793,'Luftwaffe major',2,60),(9289,30934,'Gen. Hans von Salmuth (uncredited)',0,61),(9289,18364,'U.S. Army Ranger',2,62),(9289,14242,'RAdm. Janjard',0,63),(9289,18546,'Deutscher Offizier (uncredited)',0,64),(9289,522,'Destroyer Commander',2,65),(9289,20393,'Maj. John Howard',2,66),(9289,30778,'Lt. Wilson',2,67),(9289,2567,'Lt. Col. Ocker (as Peter Van Eyck)',2,68),(9289,36992,'Pemsel\'s adjutant (uncredited)',0,69),(9289,9208,'U.S. Army Ranger',2,70),(9289,4165,'Col. Benjamin Vandervoort',2,71),(9289,38761,'Lt. Sheen',2,72),(1970,11863,'Karen Davis',1,0),(1970,20386,'Doug',2,1),(1970,20387,'Jennifer Williams',1,2),(1970,8984,'Peter Kirk',2,3),(1970,15338,'Matthew Williams',2,4),(1970,20388,'Susan Williams',1,5),(1970,6465,'Emma Williams',1,6),(1970,20389,'Maria Kirk',1,7),(1970,11769,'Alex',2,8),(1970,20329,'Kayako Saeki',1,9),(1970,4994,'Nakagawa',2,10),(1970,592147,'Yoko',1,11),(1970,552504,'Toshio',0,12),(1970,216330,'Takeo',2,13),(1970,107110,'Igarashi',0,14),(9614,19292,'Happy Gilmore',2,0),(9614,7399,'Hal L. - Orderly in Nursing Home (uncredited)',2,1),(9614,4443,'Shooter McGavin',2,2),(9614,31171,'Virginia Venit',1,3),(9614,11794,'Grandma Gilmore',0,4),(9614,1101,'Chubbs',0,5),(9614,10460,'Mr. Larson',0,6),(9614,170802,'Himself',2,7),(9614,20818,'Otto',2,8),(9614,59196,'Jeering Fan',2,9),(9614,392685,'Himself',0,10),(9614,53684,'IRS Agent',2,11),(9614,17494,'Doug Thompson',2,12),(9614,58478,'Potter',2,13),(9614,1024638,'Announcer',2,14),(9614,191857,'Happy\'s Waterbury Caddy',0,15),(9614,106789,'Coach',0,16),(8922,56356,'Patricia \'Trish\' Jenner',1,0),(8922,15033,'Darius \'Darry\' Jenner',2,1),(8922,56357,'The Creeper',2,2),(8922,56358,'Jezelle Gay Hartman',1,3),(8922,39015,'The Cat Lady',1,4),(8922,36637,'Sgt. David Tubbs',2,5),(8922,955065,'Waitress Beverly',1,6),(8922,215118,'Restaurant Manager',0,7),(8922,943484,'Binky Plutzker',2,8),(8922,948289,'Officer Robert Gideon',2,9),(8922,168703,'Officer Natasha Weston',0,10),(8922,163220,'Cellblock Officer',0,11),(8922,945612,'Austin McCoy',2,12),(8922,78116,'Officer with Hole in Chest',2,13),(8922,195854,'Camper Driver',0,14),(8922,955081,'Dying Boy',0,15),(1648,6384,'Ted Logan',2,0),(1648,18355,'Bill S. Preston',2,1),(1648,15903,'Rufus',2,2),(1648,2550,'Billy the Kid',2,3),(1648,14801,'Captain Logan',2,4),(1648,18386,'Missy Preston',1,5),(1648,18359,'Napoleon',2,6),(1648,18360,'Socrates',0,7),(1648,18361,'Dr. Sigmund Freud',2,8),(1648,10939,'Mr. Ryan',2,9),(1648,61704,'Genghis Khan',2,10),(1648,35157,'Joan of Arc',1,11),(1648,157502,'Abraham Lincoln',2,12),(1648,28048,'Ludwig van Beethoven',2,13),(1648,12439,'Mr. Preston',2,14),(1648,1080213,'Deacon Logan',0,15),(1648,80137,'Princess Joanna',1,16),(1648,154499,'Princess Elizabeth',1,17),(1648,1040620,'Ox Robbins',2,18),(1648,148239,'Randolf Shepherd',0,19),(1648,1080214,'Buffy',0,20),(1648,1080215,'Jody Davis',0,21),(9355,2461,'Mad Max Rockatansky',2,0),(9355,1459,'Aunty Entity',1,1),(9355,27752,'Jedediah the Pilot',2,2),(9355,57424,'Savannah Nix',1,3),(9355,97985,'Master',2,4),(9355,1001970,'Jedediah Jr.',0,5),(9355,10025,'The Collector',0,6),(9355,952227,'Blaster',2,7),(9355,220829,'Ironbar',2,8),(9355,127135,'Pig Killer',2,9),(9355,938578,'Blackfinger',0,10),(9355,79376,'Dr. Dealgood',2,11),(9355,187134,'Waterseller',0,12),(9355,1125226,'Ton Ton Tattoo',0,13),(9355,138580,'Aunty\'s Guard',0,14),(9355,1125227,'Aunty\'s Guard',0,15),(1832,880,'Bartleby',2,0),(1832,1892,'Loki',2,1),(1832,9625,'Bethany Sloane',1,2),(1832,19302,'Jay',2,3),(1832,2632,'Rufus',2,4),(1832,4566,'Metatron',2,5),(1832,11662,'Azrael',2,6),(1832,3136,'Serendipity',1,7),(1832,19303,'Silent Bob',2,8),(1832,131024,'God',1,9),(1832,4971,'John Doe Jersey',2,10),(1832,15903,'Cardinal Ignatius Glick',2,11),(1832,23629,'Grant Hicks',2,12),(1832,21197,'Liz',1,13),(1832,23633,'Protestor #2',2,14),(1832,20503,'Smooching Seaman',2,15),(1832,20283,'Kane',2,16),(1832,1573776,'Mrs. Reynolds',0,17),(1832,1729865,'Stygian Triplet',0,18),(1832,1766586,'Stygian Triplet',2,19),(1832,922344,'Stygian Triplet',0,20),(1832,140881,'Nun',1,21),(1832,23630,'Gun Salesman',2,22),(1832,65166,'Whitland',2,23),(1832,1275451,'Governor Dalton',1,24),(9034,18892,'Suzette',1,0),(9034,4038,'Lavinia',1,1),(9034,118,'Harry Plummer',2,2),(9034,21711,'Hannah Kingsley',1,3),(9034,41465,'Raymond Kingsley',2,4),(9034,56757,'Ginger Kingsley',1,5),(9034,17040,'Jules',2,6),(9034,56758,'Jake',2,7),(9794,31837,'Zack',2,0),(9794,52052,'Amy',1,1),(9794,51298,'Vince',2,2),(9794,43120,'Lon',2,3),(9794,53400,'Glen Gary',2,4),(9794,58511,'Iqbal',2,5),(9794,20190,'Jorge',2,6),(9794,59300,'Semi',2,7),(9794,13645,'Glen Ross',2,8),(9794,16846,'Russell',2,9),(9794,9996,'Dirk',2,10),(9794,59301,'Granny',1,11),(9794,59302,'Greeter',2,12),(9794,59303,'Gene',2,13),(9794,59304,'Grumpy Lady',0,14),(227,2876,'Dallas \'Dally\' Winston',2,0),(227,2877,'Johnny Cade',2,1),(227,2878,'Ponyboy Curtis',2,2),(227,723,'Darrel \'Darry\' Curtis',2,3),(227,2879,'Sodapop Curtis',2,4),(227,2880,'Keith \'Two-Bit\' Mathews',2,5),(227,500,'Steve Randle',2,6),(227,2881,'Tim Shepard',2,7),(227,2882,'Sherri \'Cherry\' Valance',1,8),(227,2883,'Bob Sheldon',2,9),(227,2884,'Randy Anderson',2,10),(227,2885,'Marcia',1,11),(227,2886,'Jerry Wood',2,12),(227,2887,'Buck Merrill',0,13),(227,1769,'Little Girl (as Domino)',1,14),(227,98102,'Store Clerk',2,15),(9526,5064,'Yolanda Johnson',1,0),(9526,49265,'Lola Johnson',1,1),(9526,12519,'Dangerous Woman',1,2),(9526,57755,'Dusty',2,3),(9526,57824,'GK',2,4),(9526,4764,'Lefty',2,5),(9526,10437,'Rhonda Johnson',1,6),(9526,8945,'Guy Noir',2,7),(9526,2176,'Axeman',2,8),(9526,8262,'Chuck Akers',2,9),(9526,57823,'Evelyn',1,10),(9526,52792,'Molly',1,11),(9526,986399,'Stage Manager',2,12),(9526,986400,'Makeup Lady',1,13),(9526,1364537,'Sound Effects Man',0,14),(8359,17140,'Kit Kittredge',1,0),(8359,5577,'Mr. Kittredge',2,1),(8359,15887,'Mrs. Kittredge',1,2),(8359,2283,'Uncle Hendrick',2,3),(8359,3234,'Aunt Millie',1,4),(8359,41883,'Will Shephard/Charlie Kittredge',2,5),(8359,21104,'Mrs. Howard',1,6),(8359,13636,'Nurse',1,7),(8359,12900,'Register\'s Reporter',2,8),(8359,52869,'Ruthie Smithens',1,9),(8359,23533,'Stirling Howard',2,10),(8359,49920,'Countee',1,11),(9362,4724,'Valentine McKee',2,0),(9362,10430,'Earl Bassett',2,1),(9362,57453,'Rhonda LeBeck',1,2),(9362,67015,'Burt Gummer',2,3),(9362,21986,'Heather Gummer',1,4),(9362,52141,'Melvin Plug',2,5),(9362,14794,'Nancy Sterngood',1,6),(9362,166606,'Miguel',2,7),(9362,4788,'Mindy Sterngood',1,8),(9362,70782,'Nestor',2,9),(9362,11395,'Walter Chang',2,10),(9362,79744,'Edgar',2,11),(9362,1193342,'Old Fred',0,12),(9362,158052,'Dr. Jim',2,13),(9362,1794,'Megan',1,14),(9902,6365,'Chris Flynn',2,0),(9902,13446,'Jessie Burlingame',1,1),(9902,59192,'Carly',1,2),(9902,23958,'Scott',2,3),(9902,7431,'Evan',2,4),(9902,51936,'Francine',1,5),(9902,2320,'Three Finger',2,6),(9902,1239447,'Saw-Tooth',0,7),(9902,106469,'One-Eye',0,8),(9902,1253667,'Halley',0,9),(9455,13240,'Detective Danny Wallace',2,0),(9455,1619,'Lieutenant Nick Chen',2,1),(9455,57748,'Bobby Vu',2,2),(9455,8400,'Benny Wong',0,3),(9455,11397,'Henry Lee',2,4),(9455,85142,'Schabacker',2,5),(9455,21358,'Jack',0,6),(9455,163801,'Willy Ung',2,7),(9455,189482,'Louise Deng',0,8),(9455,1248,'Sean Wallace',2,9),(9455,236,'Vince Kirkpatrick',2,10),(9455,41640,'Margaret Wheeler',1,11),(9515,517,'Julian Noble',2,0),(9515,17141,'Danny Wright',2,1),(9515,15250,'Carolyn \'Bean\' Wright',1,2),(9515,61058,'Genevive',1,3),(9515,36801,'Phil Garrison',2,4),(9515,61067,'The Matador',0,5),(9515,57770,'Radio DJ',0,6),(9515,57771,'Young Denver Fling',0,7),(9515,57772,'Ten Year Old Boy',0,8),(9515,61057,'Ten Year Old Boy\'s Mother',0,9),(9515,61059,'Skinny Mexican Man',2,10),(9515,61060,'Hotel Bartender 1',0,11),(9515,61061,'Shooting Stand Owner',0,12),(9515,61062,'School Girl',0,13),(9515,4492,'Mr. Randy',2,14),(9515,61066,'Hotel Lobby Musicians',0,15),(9515,61064,'Cantina Turista #2',0,16),(9515,61063,'Cantina Turista #1',0,17),(9515,61065,'Hotel Bartender 2',2,18),(9515,61068,'Fat Man',0,19),(1542,17402,'Peter Gibbons',2,0),(1542,4491,'Joanna',1,1),(1542,52794,'Michael Bolton',2,2),(1542,1982,'Samir Nagheenanajar',2,3),(1542,5727,'Lawrence',2,4),(1542,17401,'Milton Waddams',2,5),(1542,21163,'Bill Lumbergh',2,6),(1542,18262,'Tom Smykowski',2,7),(1542,104998,'Anne',0,8),(1542,105701,'Dom Portwood',2,9),(1542,11885,'Bob Slydell',2,10),(1542,15099,'Bob Porter',2,11),(1542,102309,'Nina',1,12),(1542,116428,'Brian',2,13),(1542,84816,'Drew',2,14),(1542,8316,'Dr. Swanson',2,15),(1542,1077910,'Laura Smykowski',1,16),(1542,1077911,'Female Temp',1,17),(1542,1077912,'Rob Newhouse',2,18),(1542,18270,'Steve - Magazine Salesman',2,19),(1542,1077913,'Peggy - Lumbergh\'s Secretary',0,20),(1542,987426,'Construction Foreman',2,21),(1542,954426,'Mexican Waiter',2,22),(1542,1053511,'Swanson\'s Patient #1',1,23),(1542,141486,'Swanson\'s Patient #2',2,24),(1542,977061,'Cop at Fire',2,25),(1542,17403,'Stan - Chotchkie\'s Manager',2,26),(1542,1077914,'Spectator',2,27),(1542,20581,'Judge',0,28),(1542,1392601,'Jogger (uncredited)',1,29),(1542,1656034,'Initech Security Guard (uncredited)',2,30),(9893,57674,'Julie Corky',1,0),(9893,21027,'Hannah',1,1),(9893,43775,'Gabby Corky',1,2),(9893,60072,'Stacie',1,3),(9893,60073,'Liz Daniels',1,4),(9893,4495,'Officer Sherman',2,5),(9893,60074,'Jay Corky',2,6),(9893,53492,'Ren Corky',0,7),(9893,21318,'Farrah',1,8),(9893,55084,'Steve Phillips',2,9),(9893,60071,'Yancy',1,10),(9893,55089,'Russell',2,11),(9893,35236,'Lance',2,12),(9893,60075,'Miles',0,13),(9893,60077,'Gregg',2,14),(9893,60078,'Molly',1,15),(9893,60076,'Todd',2,16),(9893,60079,'Jenna Allen',1,17),(9893,60081,'Bouncer',0,18),(9893,60080,'Peter',2,19),(9893,54881,'Ticket Girl',1,20),(3472,5294,'Okwe',2,0),(3472,2405,'Senay',1,1),(3472,16972,'Sneaky / Juan',2,2),(3472,30082,'Guo Yi',2,3),(3472,2598,'Juliette',1,4),(3472,31960,'Ivan',2,5),(3472,31961,'Punter',0,6),(3472,1137533,'Cafe Owner',0,7),(3472,58781,'Mohammed',0,8),(3472,186396,'Immigration Officer',2,9),(3472,125970,'Shinti',2,10),(3472,1091005,'Shinti\'s Son',2,11),(3472,40311,'',2,12),(73,819,'Derek Vinyard',2,0),(73,820,'Danny Vinyard',2,1),(73,821,'Doris Vinyard',1,2),(73,822,'Dr. Bob Sweeney',2,3),(73,823,'Davina Vinyard',1,4),(73,824,'Seth Ryan',2,5),(73,825,'Cameron Alexander',2,6),(73,826,'Stacey',1,7),(73,827,'Murray',2,8),(73,828,'Lamont',2,9),(73,829,'Dennis Vinyard',2,10),(73,830,'Rasmussen',2,11),(73,831,'Little Henry',2,12),(73,832,'Lawrence',2,13),(73,833,'Mitch McCormick',2,14),(73,4133,'Jason',2,15),(73,4134,'Chris',2,16),(73,1520755,'Lizzy',0,17),(73,1332231,'Jerome',0,18),(73,35769,'Daryl Dawson',2,19),(73,1236020,'Curtis',2,20),(73,1332233,'Huge Aryan',0,21),(73,12406,'McMahon',2,22),(73,1280435,'Cop',2,23),(73,112997,'Kammi',0,24),(73,157567,'Dr. Aguilar',2,25),(73,1332235,'Ally Vinyard',1,26),(73,40310,'Cassandra',1,27),(73,1332236,'Reporter',2,28),(73,1332238,'Desk Sergeant',2,29),(73,67453,'Buddy',2,30),(73,170730,'Guard',2,31),(73,1332240,'Young Ally Vinyard',0,32),(73,1332241,'Lawrence\'s Partner',2,33),(73,102853,'Student',2,34),(73,1332242,'Random Skinhead',2,35),(73,14950,'Randy',2,36),(73,1331794,'Stocky Buddy',2,37),(73,134770,'Basketball Player',2,38),(73,1332243,'White Supremicist (uncredited)',0,39),(73,1332244,'Skinhead (uncredited)',0,40),(73,202080,'Prison Gang Leader (uncredited)',2,41),(73,1332246,'Police officer (uncredited)',0,42),(73,1332247,'Parking Lot Skinhead (uncredited)',0,43),(73,1332248,'Young Danny Vinyard (uncredited)',0,44),(73,40072,'Student (uncredited)',0,45),(73,104619,'Skinhead Girlfriend (uncredited)',1,46),(73,1332249,'Jail Inmate (uncredited)',0,47),(73,146008,'Jail Inmate (uncredited)',2,48),(73,1332252,'Skinhead (uncredited)',0,49),(73,1229751,'High School Student Leaving Bathroom (uncredited)',2,50),(73,159264,'Arresting Officer (uncredited)',2,51),(73,1274297,'Deputy Sheriff (uncredited)',2,52),(404,5605,'Alvin Straight',2,0),(404,5606,'Rose Straight',1,1),(404,5607,'Dorothy, Straight\'s Next-Door Neighbor',1,2),(404,5608,'Bud',0,3),(404,5609,'Sig',0,4),(404,5610,'Nurse',0,5),(404,5611,'Doctor Gibbons',0,6),(404,5612,'Pete',0,7),(404,5613,'Apple',2,8),(404,5614,'Sun Ray Tours Bus Driver',0,9),(404,5615,'Woman on Bus',0,10),(404,5616,'Tom the John Deere Dealer',2,11),(404,5617,'Danny Riordan, Clermont Resident',2,12),(404,3912,'Darla Riordan, Clermont Resident',0,13),(404,5618,'Janet Johnson, Clermont Resident',0,14),(404,5619,'Johnny Johnson, Clermont Resident',0,15),(404,5620,'Harald Olsen',2,16),(404,5621,'Thorvald Olsen',2,17),(404,5622,'Bar Patron',0,18),(404,5623,'Farmer on Tractor',0,19),(404,5048,'Lyle Straight, Alvin\'s Brother',2,20),(404,5675,'Crystal',0,21),(404,5677,'Priest',2,22),(404,1695842,'Steve',0,23),(7942,11108,'Dennis',2,0),(7942,9030,'Libby',1,1),(7942,5587,'Whit',2,2),(7942,7028,'Gordon',2,3),(7942,53362,'Mr. Goshdashtidar',2,4),(7942,53364,'Maya Goshdashtidar',1,5),(7942,53365,'Jake',0,6),(7942,53366,'Vincent',2,7),(7942,53367,'Claudine',1,8),(7942,53388,'Mickey',0,9),(7942,53389,'Grover',0,10),(7942,94958,'News Reporter',2,11),(7942,6239,'Taxi Driver',2,12),(7942,1089425,'Himself',0,13),(7942,1089426,'Herself',0,14),(7942,209990,'Nurse',0,15),(7942,1013050,'Drag Queen',0,16),(7942,199523,'Claire',1,17),(7942,39189,'Man with Broken Leg',2,18),(7942,80536,'Man in Bakery',2,19),(7942,94742,'Older Woman',0,20),(7942,73967,'Receptionist',1,21),(7942,30446,'Undercover Cop / Dad',2,22),(7942,193340,'Marathon Official',2,23),(7942,133038,'Doctor',2,24),(7942,119906,'Libby\'s Grandmother',1,25),(7942,220167,'Libby\'s Mum',0,26),(7942,1017831,'Libby\'s Dad',2,27),(7942,1089427,'Reception Nurse',0,28),(7942,11115,'TV Commentator',2,29),(9952,3894,'Dieter Dengler',2,0),(9952,18324,'Duane',2,1),(9952,3041,'Admiral',2,2),(9952,18271,'Spook',2,4),(9952,60846,'Norman',2,5),(9952,60851,'Province Governor',2,6),(9952,60848,'Jet Pilot',2,7),(9952,60847,'Farkas',0,8),(9952,60850,'Pathet Lao Guard',0,9),(9952,60849,'U.S. Navy Pilot',2,10),(9952,60852,'Little Hitler',2,11),(9952,4654,'Gene',2,12),(9952,60856,'Jumbo',0,13),(9952,60854,'Nook the Rock',0,14),(9952,60853,'Crazy Horse',0,15),(9952,60855,'Walkie Talkie',0,16),(9952,60857,'Y.C.',2,17),(9952,60858,'Phisit',2,18),(9952,60859,'Procet',0,19),(9952,7471,'Squad Leader',2,20),(2088,64,'Jack Grimaldi',2,0),(2088,5313,'Mona Demarkov',1,1),(2088,18750,'Natalie Grimaldi',1,2),(2088,3196,'Sheri',1,3),(2088,6355,'Don Falcone',2,4),(2088,2555,'Scally',2,5),(2088,883,'Martie',2,6),(2088,21380,'Joey',2,7),(2088,2505,'Cage',2,8),(2088,21381,'Waiter',0,9),(2088,21382,'John',2,10),(2088,21383,'Paddy',2,11),(2088,21384,'Skouras',0,12),(2088,21385,'Malacci',2,13),(2088,7486,'Sal',2,14),(2088,1117,'Nick Gazzara',2,15),(2088,2372,'Jack\'s Lawyer',2,16),(1640,18277,'Jean Cabot',1,0),(1640,1896,'Det. Graham Waters',2,1),(1640,2876,'Officer John Ryan',2,2),(1640,454,'Daniel',2,3),(1640,18285,'Ria',1,4),(1640,18269,'Rick Cabot',2,5),(1640,18286,'Karen',1,6),(1640,18288,'Cameron Thayer',2,7),(1640,8171,'Anthony',2,8),(1640,9030,'Christine Thayer',1,9),(1640,18290,'Lara',1,10),(1640,2393,'Shereen',1,11),(1640,18291,'Peter Waters',2,12),(1640,18292,'Graham\'s Mother',1,13),(1640,18293,'Officer Johnson',1,14),(1640,65827,'Lt. Dixon',2,15),(1640,886,'Flanagan',2,16),(1640,18307,'Park',2,17),(1640,11864,'Officer Tom Hansen',2,18),(1640,18282,'Elizabeth',1,19),(1640,18283,'Lucien',2,20),(1640,18296,'Ken Ho',0,21),(1640,18298,'Fred',2,23),(1640,18284,'Shaniqua Johnson',1,24),(1640,18299,'Georgie',0,25),(1640,18300,'Officer Gomez',2,26),(1640,18303,'Store Owner',0,28),(1640,18304,'Officer Hill',2,29),(1640,18287,'Bruce',2,30),(1640,130732,'Hispanic Passenger',0,31),(1640,1331790,'Lara\'s Friend',0,32),(1640,61830,'Nurse Hodges',1,33),(1640,154932,'Security Guard',2,35),(1640,10489,'Gun Store Owner',2,36),(1640,1110185,'First Assistant Director',1,37),(1640,1331791,'Conklin',0,38),(1640,1331792,'Hispanic Driver',2,39),(1640,191198,'Choi',0,40),(1640,18289,'Maria',0,41),(1640,58930,'Kim Lee',0,42),(1640,1331793,'Woman at Locksmith\'s',0,43),(1640,1331794,'Officer Stone',2,44),(1640,2677,'Dorri',1,45),(1640,1331795,'Paramedic',2,46),(1640,1331796,'Receptionist',0,47),(1640,18305,'Country DJ (voice)',2,48),(1640,17857,'Farhad',2,49),(1640,1263449,'Carjack Witness (uncredited)',2,50),(1640,1331797,'Young Peter (uncredited)',0,51),(1640,1331798,'Jamal (uncredited)',2,52),(1640,3042,'Pop Ryan',0,53),(1640,18297,'Motorcycle Cop',2,54),(9613,5469,'Spider',2,0),(9613,8436,'Yvonne / Mrs. Cleg',1,1),(9613,5168,'Bill Cleg',2,2),(9613,29791,'Mrs. Wilkinson',1,3),(9613,12642,'Terrence',2,4),(9613,166529,'John',2,5),(9613,1527825,'Spider Boy',0,8),(9613,76417,'Freddy',2,9),(9613,24241,'Gladys',1,10),(9613,17638,'Bob',2,11),(9613,85064,'Nora',0,12),(9613,193365,'Ernie',2,13),(9613,183191,'Barmaid',1,14),(9613,176198,'Large Man',0,15),(9613,212658,'Toothless Jack',0,16),(9613,59199,'Cook',0,17),(9613,1238424,'Resident',2,18),(9613,1205726,'Resident',0,19),(9613,124315,'Resident',2,20),(1989,20472,'Elizabeth',0,0),(1989,9642,'Jeremy',2,1),(1989,524,'Leslie',1,2),(1989,11064,'Arnie',2,3),(1989,3293,'Sue Lynne',1,4),(1989,53865,'Katya',0,5),(1989,13936,'Travis',2,6),(1989,105089,'Cowboy',0,7),(1989,1574780,'Boyfriend',0,8),(1989,1411803,'Girlfriend',0,9),(1989,1574781,'Diner Manager',0,10),(1989,1574782,'Male Customer',0,11),(1989,53260,'Sandy',1,12),(1989,116409,'Randy',2,13),(5072,41042,'Steve',2,0),(5072,25872,'Maggie',1,1),(5072,10881,'Harris',2,2),(5072,41043,'Richard',2,3),(5072,41044,'Billy',0,4),(5072,22810,'Gordon',2,6),(5072,36663,'Jill',1,7),(5072,101949,'George',2,8),(5072,998210,'Olga',1,9),(5072,1093154,'Nadia',0,10),(5072,1093158,'Coach Driver',0,11),(7006,51797,'Abe Dale',2,0),(7006,51798,'Sherry Clarke',1,1),(7006,51799,'Henry Caine',2,2),(7006,33348,'Marty Bloom',2,3),(7006,51800,'Julia Caine',1,4),(7006,51801,'Dr. Karros',2,5),(7006,51802,'Danny Dale',2,6),(7006,51803,'Kurt',2,7),(7006,33352,'Scooter Guy',2,8),(9700,1271,'Fico Fellove',2,0),(9700,1272,'Don Donoso Fellove',2,3),(9700,21316,'Luis Fellove',2,4),(9700,12798,'Ricardo Fellove',2,5),(9700,58635,'Mercedes Fellove',1,6),(9700,4483,'Meyer Lansky',2,7),(9700,1532,'The Writer',2,8),(9700,58636,'Leonela',0,9),(9700,1159,'Captain Castel',2,10),(9700,1607,'President Fulgencio Batista',2,11),(9700,13657,'Ernesto Che Guevarra',2,12),(9700,58637,'Rodney',2,13),(9700,17413,'Colonel Candela',2,14),(9700,21708,'Don Federico Fellove',2,15),(9700,37918,'Aurora Fellove',1,16),(667,738,'James Bond',2,0),(667,10068,'Aki',1,1),(667,10073,'Helga Brandt',1,2),(667,10070,'Kissy Suzuki',0,3),(667,10071,'Tiger Tanaka',2,4),(667,10072,'Mr. Osato',2,5),(667,9221,'Ernst Stavro Blofeld',2,6),(667,9874,'M',2,7),(667,9878,'Miss Moneypenny',1,8),(667,9906,'Q',2,9),(667,10074,'Dikko Henderson',2,10),(667,10075,'Ling',1,11),(667,21944,'Spectre 3',2,12),(667,21631,'Spectre 4',0,14),(667,1231323,'Hans',0,15),(667,199904,'Bond\'s Masseuse',1,16),(219,955,'Raimunda',1,0),(219,2744,'Abuela Irene',1,1),(219,2759,'Sole',1,2),(219,3480,'Agustina',0,3),(219,3481,'Paula',1,4),(219,3482,'Tu00eda Paula',1,5),(219,3483,'Paco',2,6),(219,4363,'Emilio',0,7),(219,4364,'Regina',1,8),(219,4365,'Inu00e9s',0,9),(219,4366,'Auxiliar',0,10),(219,4367,'Presentadora TV',0,11),(219,4368,'Carlos',0,12),(219,4369,'Vecina',0,13),(219,4370,'Vecina',0,14),(219,4371,'Vecina',1,15),(219,4372,'Vecina',0,16),(219,4373,'Vecina',0,17),(219,4374,'Vecina',0,18),(219,4375,'Vecina',0,19),(219,1621575,'Vecina',0,20),(219,954664,'Vecina',1,21),(219,952,'Empleado ferreteru00eda (uncredited)',2,22),(219,1077948,'Vecina (uncredited)',0,23),(219,1348364,'Make-up Artist (uncredited)',0,24),(348,4139,'Arthur Dallas',2,0),(348,10205,'Ellen Ripley',1,1),(348,5047,'Joan Lambert',1,2),(348,5048,'Samuel Brett',2,3),(348,5049,'Gilbert Kane',2,4),(348,65,'Ash',2,5),(348,5050,'Dennis Parker',0,6),(348,5051,'Alien',0,7),(348,5052,'Mother (voice)',1,8),(348,1077325,'Alien (uncredited)',2,9),(660,738,'James Bond',2,0),(660,9919,'Dominique \'Domino\' Derval',1,1),(660,9920,'Emilio Largo',2,2),(660,9921,'Fiona Volpe',1,3),(660,9922,'Felix Leiter',2,4),(660,9923,'Count Lippe',2,5),(660,9924,'Patricia Fearing',1,6),(660,9925,'Paula Caplan',1,7),(660,9874,'M',2,8),(660,9906,'Q',2,9),(660,9878,'Miss Moneypenny',1,10),(660,9926,'Foreign Secretary',2,11),(660,2246,'Pinder',2,12),(660,125908,'Palazzi',2,13),(660,990420,'Madame Boitier',1,14),(660,27321,'Vargas',2,15),(660,30142,'Kutze',2,16),(660,89208,'Air Vice Marshall',2,17),(660,9951,'Man Smoking at Nassau Casino (uncredited)',2,18),(9400,9575,'Stony',1,0),(9400,15758,'Cleo',1,1),(9400,2535,'Frankie',1,2),(9400,55314,'Tisean',1,3),(9400,56871,'Keith Weston',2,4),(9400,11885,'Detective Strode',2,5),(9400,58681,'Detective Waller',1,6),(9400,43524,'Nate Andrews',2,7),(9400,2041,'Black Sam',2,8),(9400,305427,'Darnell',2,9),(9400,37932,'Guy Driving Low-Rider',2,10),(9400,164939,'TV Anchor',0,11),(9400,1233979,'Nigel',0,12),(9400,83099,'Tanika',0,13),(9400,98889,'Luther',0,14),(9400,154176,'Stevie Newsome',2,15),(9400,1424350,'Lorenz',0,16),(2359,17087,'himself',2,0),(2359,19011,'Himself',2,1),(2359,116341,'Himself',2,2),(2359,216674,'Herself',1,3),(2359,7904,'Himself',2,4),(2359,1572790,'',0,5),(6521,64,'Sheldon Runyon',2,0),(6521,11148,'Laine Hanson',1,1),(6521,1229,'President Jackson Evans',2,2),(6521,2224,'Reginald Webster',2,3),(6521,16431,'Kermit Newman',2,4),(6521,52267,'Jack Hathaway',2,5),(6521,3712,'Jerry Tolliver',2,6),(6521,4492,'Oscar Billings',2,7),(6521,24173,'Lewis Hollis',2,8),(6521,2208,'Paige Willomina',1,9),(6521,10447,'',1,10),(1621,776,'Billy Ray Valentine',2,0),(1621,707,'Louis Winthorpe III',2,1),(1621,8944,'Ophelia',1,2),(1621,26485,'Harvey',2,3),(1621,656,'Coleman',2,4),(1621,1208,'Randolph Duke',2,5),(1621,18156,'Mortimer Duke',2,6),(1621,7675,'Clarence Beeks',2,7),(1621,18160,'Penelope Witherspoon',1,8),(1621,7908,'Corrupt Cop',2,9),(1621,98927,'Attendant',2,10),(1621,68456,'Wilson',2,11),(1621,106005,'Official #1',2,12),(1621,186648,'Official #2',2,13),(1621,4808,'Cellmate #2',2,14),(9656,55775,'Kelli Presley',1,0),(9656,49961,'Melissa',1,1),(9656,58392,'Leigh Colvin',1,2),(9656,17628,'Heather Fitzgerald',1,3),(9656,22082,'Dana',1,4),(9656,8263,'Barbara \'Ms. Mac\' MacHenry',1,5),(9656,58393,'Lauren Hannon',1,6),(9656,58395,'Billy\'s Mother',1,7),(9656,58396,'Agnes - 16',1,8),(9656,58397,'Billy Lenz - 20',2,9),(9656,58398,'Megan Helms',1,10),(9656,58399,'Clair Crosby',1,11),(9656,58400,'Eve Agnew',1,12),(9656,58402,'Billy Lenz - 5',2,13),(9656,77866,'Candy Striper',0,14),(9656,62692,'Kyle Autry',2,15),(8272,350,'Wendy Savage',1,0),(8272,1233,'Jon Savage',2,1),(8272,6541,'Lenny Savage',2,2),(8272,2617,'Kasia',1,3),(8272,54246,'Larry',2,4),(8272,22821,'Eduardo',2,5),(8272,81683,'Jimmy',2,6),(8272,1214060,'Ms. Robinson',0,7),(8272,19752,'Bill Lachman',2,8),(8272,10386,'Nancy Lachman',1,9),(8272,8492,'Doris Metzger',1,10),(8272,1690482,'Burt',0,11),(8272,1690483,'Lizzie',0,12),(8272,137269,'Mr. Sperry',2,13),(8272,121757,'Annie',1,14),(8272,452,'Roz',1,15),(8272,205578,'Howard',0,16),(8272,1194969,'Simone',0,17),(8272,35028,'Student',1,18),(8272,1154564,'Manicurist #1',1,19),(1619,1121,'Mr. Longbaugh',2,0),(1619,11864,'Mr. Parker',2,1),(1619,3196,'Robin',1,2),(1619,3085,'Joe Sarno',2,3),(1619,17637,'Jeffers',2,4),(1619,18070,'Obecks',2,5),(1619,18071,'Abner Mercer',2,6),(1619,7404,'Raving Bitch',1,7),(1619,2695,'Dr. Allen Painter',2,8),(1619,6914,'Hale Chidduck',2,9),(1619,148112,'Francesca Chidduck',1,10),(1619,1384919,'P. Whipped',0,11),(1619,1194340,'Federale #1',0,12),(1619,1830044,'Federale #2',0,13),(1619,1533696,'Sloppy Prostitute',1,14),(9685,18793,'Jason \'Igby\' Slocumb, Jr.',0,0),(9685,6194,'Sookie Sapperstein',1,1),(9685,4785,'D.H. Banes',2,2),(9685,15440,'Russel',2,3),(9685,2956,'Rachel',1,4),(9685,11864,'Oliver \'Ollie\' Slocumb',2,5),(9685,8984,'Jason Slocumb',2,6),(9685,4038,'Mimi Slocumb',1,7),(9685,28042,'10-Year-Old Igby',2,8),(9685,52861,'13-Year-Old Oliver',0,9),(9685,58549,'Lt. Ernest Smith, Pershing Academy',2,10),(9685,23625,'Ida',1,11),(9685,58550,'Little Cadet',0,12),(9685,1989,'Bunny',1,13),(9685,58551,'Lisa Fiedler',0,14),(1808,3061,'Curt Wild',2,0),(1808,3894,'Arthur Stuart',2,1),(1808,1244,'Brian Slade',2,2),(1808,47627,'Female narrator (voice)',1,3),(1808,3051,'Mandy Slade',1,4),(1808,1926,'Jerry Devine',2,5),(1808,1695128,'Jack Fairy',0,6),(1808,1466624,'Tommy Stone',0,7),(1808,33679,'Shannon',1,8),(1808,1336755,'Cooper',0,9),(1808,26259,'Cecil',2,10),(1808,119942,'Pantomime Dame',0,11),(1808,33680,'Mary',0,12),(1808,1489436,'Bass Player',0,13),(1808,1647462,'Freddi',2,14),(8883,20258,'Flame',2,0),(8883,1019,'Citron',2,1),(8883,71155,'Ketty Selmer',1,2),(8883,71154,'Winther',2,3),(8883,71157,'Bodil',1,4),(8883,7803,'Hoffmann',2,5),(8883,169,'Gilbert',2,6),(8883,71156,'Spex',0,7),(8883,71158,'Ravnen',2,8),(8883,2244,'Flames Vater',2,9),(8883,587170,'Cap',0,10),(8883,558626,'Teddy',0,11),(8883,77539,'Bananen',0,12),(8883,578970,'Gilbert\'s Kone',1,13),(8883,137443,'Lillebju00f8rn',2,14),(8883,135756,'Storebju00f8rn',2,15),(8883,1437421,'Heinrich',0,16),(8883,1441905,'',0,17),(8883,1441906,'',0,18),(8883,1441907,'',0,19),(8883,98065,'',2,20),(8883,1388466,'',2,21),(8883,1441908,'',0,22),(8883,1436812,'',0,23),(8883,112735,'',0,24),(8883,1441909,'',0,25),(8883,1441910,'',0,26),(8883,231246,'',0,27),(8883,6140,'',2,28),(8883,1441912,'',0,30),(8883,1441913,'',0,31),(8883,1441914,'',0,32),(8883,1036401,'',0,33),(8883,1441915,'',0,34),(8883,1441916,'',0,35),(8883,1441917,'',0,36),(8883,1025545,'',0,37),(8883,1430159,'',0,38),(8883,1441918,'',0,39),(8883,1441919,'',0,40),(8883,1441920,'',0,41),(8883,1441921,'',0,42),(8883,1441922,'',0,43),(8883,1441923,'',0,44),(9671,57147,'Michael J. \'Crocodile\' Dundee',2,0),(9671,57166,'Sue Charlton',1,1),(9671,14103,'Richard Mason',2,2),(9671,53023,'Neville Bell',0,3),(9671,13938,'Sam Charlton',2,4),(9671,42841,'Walter Reilly',2,5),(9671,1040112,'Con',0,6),(9671,7672,'Gus',2,7),(9671,164669,'Danny',0,8),(9671,152408,'Pimp',2,9),(1547,12261,'Michael Emerson',2,0),(1547,17444,'Sam Emerson',2,1),(1547,3034,'Edgar Frog',2,2),(1547,1902,'Lucy Emerson',1,3),(1547,2628,'David',2,4),(1547,9995,'Star',1,5),(1547,52995,'Max',2,6),(1547,134800,'Alan Frog',2,7),(1547,39112,'Dwayne',2,8),(1547,18355,'Marko',2,9),(1547,134801,'Laddie',0,10),(1547,2549,'Grandpa',0,11),(1547,114149,'Paul',0,12),(1547,1077770,'Greg',0,13),(1547,368784,'Shelly',0,14),(1547,63046,'Maria',1,15),(1547,154450,'Surf Nazi #1',0,16),(1547,1880361,'Surf Nazi #2',0,17),(1547,1880362,'Surf Nazi #3',0,18),(1547,1880363,'Surf Nazi #4',0,19),(1547,1880364,'Surf Nazi #5',0,20),(1547,1880365,'Security Guard',0,21),(1547,580255,'Beach Concert Star',0,22),(1547,58768,'Gas Station Owner',2,23),(1547,1880366,'Lost Child',0,24),(1547,1880367,'Child\'s Mother',0,25),(1547,1880368,'Girl on Boardwalk (uncredited)',0,26),(8069,6352,'Barbarella',1,0),(8069,29426,'Pygar',2,1),(8069,53768,'The Great Tyrant',1,2),(8069,39690,'Professor Ping',2,3),(8069,20113,'President of Earth',2,4),(8069,47137,'Concierge / Durand-Durand',2,5),(8069,44439,'Captain Moon',1,6),(8069,38915,'Captain Sun',2,7),(8069,53769,'Stomoxys',1,8),(8069,53770,'Glossina',1,9),(8069,15196,'Dildano',2,10),(8069,32312,'Mark Hand',2,11),(8069,93963,'Jean-Paul',2,12),(8069,1274731,'La femme arbre',1,13),(8069,1086959,'',1,14),(8069,1082665,'',2,15),(8069,1016052,'',2,16),(8069,1082664,'',2,17),(8069,24479,'',2,18),(8069,5567,'',2,19),(8069,1375376,'Professor Ping (voice)',2,20),(8069,1338525,'Girl in Sogo (uncredited)',1,21),(8069,21181,'Tall Man at Party (uncredited)',2,22),(8069,1549084,'Pipe-Smoking Girl (uncredited)',1,23),(8069,33708,'Jean-Paul (uncredited)',2,24),(8069,1683324,'Bald Handmaiden at Sogovian Court (uncredited)',1,25),(8069,91201,'(uncredited)',1,26),(8069,553513,'(uncredited)',1,27),(8069,76236,'(uncredited)',1,28),(8069,45466,'The Great Tyrant (voice) (uncredited)',1,29),(8069,1142406,'Suicide Girl (uncredited)',1,30),(9451,4756,'Jim McAllister',2,0),(9451,368,'Tracy Flick',1,1),(9451,21594,'Paul Metzler',2,2),(9451,58032,'Tammy Metzler',1,3),(9451,88949,'Dave Novotny',0,4),(9451,58741,'Walt Hendricks',2,5),(9451,58045,'Diane McAllister',1,6),(9451,996758,'Linda Novotny',0,7),(9451,13023,'Judith R. Flick',1,8),(9451,1015780,'Lisa Flanagan',0,9),(9451,19208,'Vice-Principal Ron Bell',2,10),(9451,152355,'Jo Metzler',1,11),(9451,1578,'Dick Metzler',2,12),(9451,37059,'Larry Fouch',2,13),(1116,2037,'Damien O\'Donovan',2,0),(1116,15497,'Teddy',0,1),(1116,15498,'Dan',2,2),(1116,15509,'Sinead',0,3),(1116,15499,'Donnacha',0,4),(1116,15501,'Gogan',2,5),(1116,11279,'John Hamilton',2,6),(1116,15502,'Micheail',0,7),(1116,15504,'Julia',0,8),(1116,15507,'Sweeney',0,9),(1116,56622,'Black and Tan Soldier',0,10),(680,8891,'Vincent Vega',2,0),(680,2231,'Jules Winfield',2,1),(680,139,'Mia Wallace',1,2),(680,62,'Butch Coolidge',2,3),(680,10182,'Marsellus Wallace',2,4),(680,1037,'Wolf',2,5),(680,7036,'Lance',2,6),(680,3129,'Pumpkin',2,7),(680,99,'Honey Bunny',1,8),(680,2319,'Fabienne',1,9),(680,138,'Jimmie Dimmick',2,10),(680,4690,'Captain Koons',2,11),(680,2165,'Jody',1,12),(680,11803,'Zed',2,13),(680,11804,'Maynard',2,14),(680,71836,'Esmarelda Villalobos',1,15),(680,31549,'Marvin',2,16),(680,884,'Buddy Holly',2,17),(680,33399,'Trudi',0,18),(680,11807,'Waitress',0,19),(680,11805,'Brett',2,20),(680,58552,'Roger',0,21),(680,3137,'Paul',2,22),(680,1174004,'Ed Sullivan',2,23),(680,1174003,'Page for Phillip Morris',2,24),(680,1174007,'Ricky Nelson',0,25),(680,1174000,'Marilyn Monroe',1,26),(680,1174001,'James Dean',0,27),(680,54855,'Dean Martin',2,28),(680,1174008,'Jerry Lewis',2,29),(680,1099751,'Mamie van Doren',1,30),(680,107023,'Hold Hands You Lovebirds (archive footage)',0,31),(680,11162,'Mrs. Coolidge - Butch\'s Mother',0,32),(680,1174002,'Young Butch',0,33),(680,1174006,'Klondike',0,34),(680,1173999,'Sportscaster #1 - Coffee Shop',0,35),(680,46346,'Sportscaster #2',0,36),(680,90337,'Wilson\'s Trainer',2,37),(680,1174005,'Dead Floyd Wilson',0,38),(680,157865,'Gawker #1',1,39),(680,3138,'Hit-and-run Witness',1,40),(680,1174009,'Pedestrian / Bonnie Dimmick',1,41),(680,65907,'Shot Woman',1,42),(680,1173998,'The Gimp',2,43),(680,19578,'Man No. 4',1,44),(680,11806,'Raquel',1,45),(680,2545,'Long Hair Yuppy Scum',2,46),(680,1274295,'Winston Wolfe\'s Girlfriend At Party (uncredited)',1,47),(680,1177915,'Bar Tender (uncredited)',2,48),(680,1274296,'Lucky Lady (uncredited)',1,49),(680,1274297,'Drug Dealer (uncredited)',2,50),(680,1274298,'Hopalong Cassidy (uncredited)',0,51),(680,1274299,'Woman in Bathroom (uncredited)',1,52),(680,1584544,'Michael (uncredited)',2,53),(2619,31,'Allen Bauer',2,0),(2619,589,'Madison',1,1),(2619,26510,'Walter Kornbluth',2,2),(2619,7180,'Freddie Bauer',2,3),(2619,8903,'Mrs. Stimler',1,4),(2619,27514,'Mr. Buyrite',2,5),(2619,27515,'Dr. Ross',2,6),(2619,27516,'Jerry',2,7),(2619,27517,'Dr. Zidell',2,8),(2619,27518,'Stan',2,9),(2619,27519,'Rudy',2,10),(2619,102199,'Parilli',2,11),(2619,1560856,'Husband',2,12),(773,17141,'Richard Hoover',2,0),(773,3051,'Sheryl Hoover',1,1),(773,4495,'Uncle Frank',2,2),(773,17142,'Dwayne Hoover',2,3),(773,17140,'Olive Hoover',1,4),(773,1903,'Grandpa Edwin Hoover',2,5),(773,17419,'Stan Grossman',2,6),(773,5151,'Nancy Jenkins',1,7),(773,17421,'Kirby',2,8),(773,35521,'Pageant MC',2,9),(773,17413,'Mechanic',2,10),(773,4857,'Doctor #1',2,11),(773,17414,'Cindy',1,12),(773,17415,'Diner Waitress',1,13),(773,17416,'Convience Store Proprietor',0,14),(773,17417,'Josh',2,15),(773,17418,'Larry Sugarman',2,16),(773,230868,'Teen Boy #1',2,17),(773,131833,'Doctor #2',2,18),(773,17420,'Linda',1,19),(773,14329,'State Trooper McCleary',2,20),(773,17412,'Miss California',1,21),(773,25884,'Pageant Assistant Pam',1,22),(773,157858,'Funeral Home Worker',2,23),(773,86204,'Biker Dad',2,24),(773,236611,'Judge',1,25),(773,59675,'Officer Martinez',2,26),(235,3033,'Gordie Lachance',2,0),(235,741,'Chris Chambers',2,1),(235,3034,'Teddy Duchamp',2,2),(235,3035,'Vern Tessio',2,3),(235,2628,'Ace Merrill',2,4),(235,3037,'Gordon Lachance (Adult)',2,5),(235,3036,'Denny Lachance',2,6),(235,1953,'Billy Tessio',2,7),(235,3039,'Eyeball Chambers',2,8),(235,3041,'Mr. Lachance',2,9),(235,3038,'Charlie Hogan',0,10),(235,1070,'Mrs. Lachance',1,11),(235,3044,'Mayor Grundy',2,12),(235,3040,'Vince Desjardins',0,13),(235,3042,'Mr. Quidacioluo',0,14),(235,3043,'Milo Pressman',2,15),(170,2037,'Jim',2,0),(170,2038,'Selena',1,1),(170,2050,'Mark',2,2),(170,2052,'Jim\'s father',2,3),(170,2054,'Jim\'s mother',1,4),(170,2056,'Mr. Bridges',2,5),(170,2057,'Mr. Bridgesu2019 Daughter',1,6),(170,2039,'Frank',2,7),(170,2058,'Hannah',1,8),(170,1535021,'Infected Kid',0,9),(170,68307,'Private Clifton',2,10),(170,2258,'Seargent Farrell',2,11),(170,63003,'Corporal Mitchell',2,12),(170,29237,'Private Jones',2,13),(170,195446,'Private Bell',0,14),(170,82107,'Private Bedford',2,15),(170,2040,'Major Henry West',2,16),(170,2060,'Activist',0,17),(170,2061,'Activist',0,18),(170,2063,'Activist',0,19),(170,2065,'Scientist',2,20),(170,2066,'Infected Priest',0,21),(668,10167,'James Bond',2,0),(668,10168,'Tracy Di Vicenzo',1,1),(668,10169,'Ernst Stavro Blofeld',2,2),(668,4961,'Marc Ange Draco',2,3),(668,10170,'Irma Bunt',0,4),(668,10171,'Ruby Bartlett',0,5),(668,9878,'Miss Moneypenny',1,6),(668,10173,'Sir Hilary Bray',2,8),(668,9874,'M',2,9),(668,9906,'Q',2,10),(668,18915,'Nancy',1,11),(668,10174,'Campbell',2,12),(668,40923,'Olympe',1,13),(668,24335,'Toussaint',0,14),(668,95512,'The Scandinavian Girl',0,15),(668,189872,'The Chinese Girl',0,16),(668,34901,'The English Girl',1,17),(668,112465,'The Irish Girl',1,18),(668,214463,'The American Girl (as Dani Sheridan)',0,19),(668,1536792,'The Indian Girl (as Zara)',0,20),(668,44695,'The Australian Girl (as Anoushka Hempel)',1,21),(668,558582,'The German Girl (as Ingrit Back)',0,22),(668,99480,'The Israeli Girl',1,23),(9490,4169,'Thurgood Jenkins / Sir Smoke-a-Lot',2,0),(9490,63208,'Squirrel Master',2,1),(9490,16846,'Kenny Davis',2,2),(9490,8695,'Scarface',2,3),(9490,57690,'Brian',2,4),(9490,19222,'Mary Jane Potman',1,5),(9490,19767,'Scavenger Smoker',2,6),(9490,15864,'Samson Simpson',2,7),(9490,99007,'Jan',1,8),(9490,3714,'Horse Cop',2,9),(9490,12219,'Enhancement Smoker',2,10),(9490,21197,'I\'m Only Creative When I Smoke Smoker',1,11),(1359,3894,'Patrick Bateman',2,0),(1359,5293,'Det. Donald Kimball',2,1),(1359,7499,'Paul Allen',2,2),(1359,6164,'Craig McDermott',1,3),(1359,20767,'Courtney Rawlinson',1,4),(1359,11154,'Luis Carruthers',2,5),(1359,32029,'David Van Patten',2,6),(1359,2838,'Jean',1,7),(1359,2617,'Christie',1,8),(1359,15009,'Timothy Bryce',2,9),(1359,32030,'Elizabeth',1,10),(1359,368,'Evelyn Williams',1,11),(1359,32031,'Harold Carnes',2,12),(1359,32032,'Daisy',0,13),(1359,38951,'Homeless Man',2,14),(1359,1147823,'Victoria',0,15),(1359,103872,'Mrs. Wolfe',1,16),(1359,32033,'Sabrina',0,17),(1359,110245,'Vanden',1,18),(9962,4491,'Justine Last',1,0),(9962,131,'Holden Worther',2,1),(9962,11664,'Cheryl',1,2),(9962,4764,'Phil Last',2,3),(9962,44830,'Gwen Jackson',1,4),(9962,17735,'Corny',2,5),(9962,3911,'Jack Field, Your Store Manager',2,6),(9962,1462,'Bubba',2,7),(9962,42746,'Mr. Worther',2,8),(9962,29021,'Mrs. Worther',1,9),(9962,56457,'Nurse',1,10),(9962,61079,'Haggard Woman',1,11),(9962,61080,'Lester',0,12),(9962,61081,'Big Haired Woman',1,13),(9962,61082,'Old Woman',0,14),(9962,61083,'Blackberry Vendor',0,15),(9962,61084,'Floberta',1,16),(9962,61086,'Bits',0,17),(9962,61085,'Reporter',2,18),(9962,42291,'Heavy Set Woman',1,19),(8293,13333,'Ruth Wilcox',1,0),(8293,1283,'Helen Schlegel',1,1),(8293,7056,'Margaret Schlegel',1,2),(8293,55643,'Aunt Juley',1,3),(8293,4173,'Henry J. Wilcox',2,4),(8293,54444,'Paul Wilcox',0,5),(8293,54445,'Tibby Schlegel',2,6),(8293,54446,'Annie',0,7),(8293,54447,'Leonard Bast',2,8),(8293,42627,'Charles Wilcox',2,9),(8293,80145,'Evie Wilcox',1,10),(8293,235169,'Albert Fussell',0,11),(8293,4001,'Music and Meaning Lecturer (uncredited)',2,12),(1958,50,'Gaby',1,0),(1958,17882,'Augustine',1,1),(1958,4885,'Louise',0,2),(1958,20234,'Pierrette',1,3),(1958,19163,'Suzon',1,4),(1958,4390,'Catherine',1,5),(1958,20235,'Madame Chanel',1,6),(1958,236016,'Mamy',1,7),(1958,1178313,'Marcel, the husband',2,8),(7870,819,'Harlan',2,0),(7870,38940,'Tobe',1,1),(7870,52,'Wade',2,2),(7870,28042,'Lonnie',2,3),(7870,6905,'Charlie',1,4),(7870,4942,'Steve',2,5),(7870,18071,'Sheridan',2,6),(7870,7430,'Gale',1,7),(7870,52852,'April',1,8),(7870,35236,'Kris',2,9),(7870,53208,'Sherri',1,10),(7870,53209,'Jeremy',2,11),(7870,53210,'Shell',1,12),(7870,24199,'Rita',1,13),(7870,53211,'Hispanic Kid',0,14),(149,1678,'Shu00f4taru00f4 Kaneda (voice)',0,0),(149,1679,'Tetsuo Shima (voice)',0,1),(149,1680,'Kei (voice)',1,2),(149,1681,'Ryu00fbsaku (voice)',2,3),(149,1682,'Nezu (voice)',0,4),(149,1683,'Priestess Miyako, Council A (voice)',0,5),(149,1684,'Kaori (voice)',1,6),(149,1685,'Yamagata (voice)',0,7),(149,1686,'Kai (voice)',0,8),(149,1687,'Masaru (No. 27) (voice)',0,9),(149,1688,'Takashi (No. 26) (voice)',0,10),(149,1689,'Kiyoko (No. 25) (voice)',0,11),(1544,15555,'Rachel',1,0),(1544,17286,'Luce',1,1),(1544,1247,'Heck',2,2),(1544,9139,'Tessa',1,3),(1544,17123,'Cooper',2,4),(1544,21676,'Beth',1,5),(1544,21553,'Ella',1,6),(1544,21270,'H',1,7),(1544,21679,'Zina',0,8),(1544,16901,'Edie',1,9),(1544,34257,'Ned',2,10),(1544,289370,'Anna',1,11),(1544,11280,'Rob',2,12),(1544,83137,'Gordon',2,13),(1544,53367,'Mrs. Webster',1,14),(302,44079,'Sarah Morton',1,0),(302,4390,'Julie',1,1),(302,4391,'John Bosload',2,2),(302,4392,'Franck',0,3),(302,4393,'Marcel',2,4),(302,4394,'Marcel\'s Daughter',0,5),(302,4395,'First Man',0,6),(302,4396,'Second Man',2,7),(302,4397,'Waitress at Cafe',1,8),(302,4398,'Old Man',0,9),(403,192,'Hoke Colburn',2,0),(403,5698,'Daisy Werthan',1,1),(403,707,'Boolie Werthan',2,2),(403,5699,'Florine Werthan',1,3),(403,5700,'Idella',1,4),(403,5701,'Miss McClatchey',0,5),(403,5702,'Oscar',0,6),(403,5703,'Nonie',0,7),(403,5704,'Miriam',0,8),(403,5705,'Beulah',0,9),(403,1403815,'Dr. Weil',0,10),(403,1403817,'Neighbor Lady',0,11),(403,937317,'Katie Bell',0,12),(403,43992,'Red Mitchell',2,13),(403,1472,'Trooper #1',2,14),(403,569901,'Girl at Temple (uncredited)',0,15),(9388,6383,'Nick Naylor',2,0),(9388,49,'Polly Bailey',1,1),(9388,52414,'Joey Naylor',2,2),(9388,11702,'Jack',2,3),(9388,16431,'Lorne Lutch',2,4),(9388,3897,'Heather Holloway',1,5),(9388,2879,'Jeff Megall',2,6),(9388,3905,'Senator Ortolan Finistirre',2,7),(9388,3087,'The Captain',2,8),(9388,28638,'Bobby Jay Bliss',2,9),(9388,18999,'BR',2,10),(9388,21165,'Jill Naylor',1,11),(9388,35517,'Pearl',1,12),(9388,57554,'Joan Lunden',1,13),(9388,21985,'Sue Maclean',1,14),(9388,3230,'Ron Goode',2,15),(9388,144438,'Kidnapper',2,16),(9388,543,'Teacher',1,17),(9388,70643,'Kid #2',2,18),(9388,58412,'Kid #3',0,19),(9388,646,'Brad',2,20),(9388,58112,'Trainee',2,21),(9388,73406,'Tiffany',1,22),(9388,132315,'EGO Assistant',2,23),(9388,18326,'Dennis Miller',2,24),(9388,1549740,'Ski Mask #1',0,25),(9388,1549741,'Ski Mask #2',2,26),(9388,200820,'Flighty Girl',0,27),(9388,140237,'Doctor',2,28),(9388,404,'Interviewer',1,29),(9388,89708,'FBI Agent (voice)',0,30),(9388,91030,'Dr. Meisenbach',2,31),(9388,49275,'Senator Lothridge',2,32),(9388,87119,'Senator Dupree',2,33),(9388,154826,'Reporter #1',1,34),(9388,1180936,'Reporter #2',0,35),(9388,57564,'Oil Lobbyist',2,36),(9388,127130,'Nancy Humphries O\'Dell',1,37),(9388,1237248,'Debate Moderator',0,38),(9388,157582,'Gentleman #2',2,39),(9388,57556,'Man at Metro Station (uncredited)',0,40),(9388,52450,'Hotel Phone Operator (voice) (uncredited)',0,41),(9388,1364232,'Flight Attendant (uncredited)',0,42),(9388,1018071,'Peter (uncredited)',0,43),(9388,49551,'Gizelle (voice) (uncredited)',1,44),(1691,37014,'Beth',1,0),(1691,11671,'Whitney',1,1),(1691,33656,'Lorna',1,2),(1691,25849,'Todd',0,3),(1691,45566,'Stuart',2,4),(1691,37015,'Axelle',1,5),(1691,19487,'Paxton',2,6),(1691,20492,'Stephanie',1,7),(1691,11290,'Miroslav',2,8),(1691,37016,'Inya',0,9),(1691,37017,'Sasha',2,10),(1691,37018,'Pavel',0,11),(1691,37019,'Roman',0,12),(1691,37020,'Riccardo',0,13),(1691,44434,'Art Class Professor',1,14),(1691,45568,'Make-Up Woman',0,15),(1691,36913,'Italian Detective',2,16),(1691,45570,'Italian Translator',1,17),(1691,45571,'Mrs. Barthory',0,18),(1691,45572,'Cannibal',2,19),(2610,67773,'Ray Porter',2,0),(2610,6194,'Mirabelle Buttersfield',1,1),(2610,17881,'Jeremy Kraft',2,2),(2610,20751,'Lisa Cramer',0,3),(2610,4432,'Catherine Butterfield',1,4),(2610,8350,'Dan Buttersfield',2,5),(2610,27267,'Christie Richards',1,6),(2610,27268,'Loki',1,7),(2610,27269,'Del Rey',1,8),(2610,2249,'Mr. Agasa',2,9),(2610,50347,'Trey\'s Girlfriend',1,10),(2577,504,'William Geld',2,0),(2577,2206,'Maria Gonzales',1,1),(2577,26197,'Vendor',2,2),(2577,11851,'Bahkland',2,3),(2577,26201,'Mohan',2,4),(2577,26202,'Wole',1,5),(2577,26203,'Bikku',2,6),(2577,9192,'Driver',2,7),(2577,57575,'Sphinx Receptionist',0,8),(2577,77191,'Sylvie',1,9),(2577,1192715,'Himself',0,10),(2577,150469,'Hospital Receptionist',0,11),(2577,128645,'Check In',1,12),(2577,1504900,'Weather Girl',0,13),(2577,26199,'Boxer',0,14),(2577,7063,'Anya',1,15),(2577,1498967,'William\'s Boss',0,16),(2577,30082,'Medic',2,17),(2577,33449,'Doctor',1,18),(2577,93291,'Paul',2,19),(2011,20710,'Marjane adulte et adolescente (voice)',1,0),(2011,236016,'Grand-mu00e8re de Marjane (voice)',1,1),(2011,50,'Mu00e8re de Marjane (voice)',1,2),(2011,10917,'Pu00e8re de Marjane (voice)',2,3),(2011,43779,'Marjane enfant (voice)',0,4),(2011,43780,'Oncle Anouche (voice)',0,5),(2011,585604,'Lali (voice)',1,6),(2011,1702439,'Walla (voice)',0,7),(2011,82302,'Walla (voice)',0,8),(2011,82187,'Walla (voice)',2,9),(2011,2228,'Mr. Satrapi - Marjane\'s father (English version, voice)',2,10),(7735,17373,'Rainer Wenger',0,0),(7735,49767,'Tim',2,1),(7735,38773,'Marco',2,2),(7735,692,'Karo',1,3),(7735,1859,'Anke Wenger',1,4),(7735,25409,'Sinan',2,5),(7735,52964,'Lisa',0,6),(7735,52722,'Dennis',0,7),(7735,52965,'Bomber',0,8),(7735,52966,'Jens',0,9),(7735,52967,'Mona',0,10),(7735,28432,'Kevin',2,11),(7735,55042,'Kaschi',0,12),(7735,23171,'Ferdi',0,13),(7735,1327616,'Maja',0,14),(7735,20262,'Schu00e4del',2,15),(7735,52721,'Miri',0,16),(7735,1053732,'Dominik',2,17),(7735,63835,'Bommel',0,18),(7735,1349918,'Maxwell',0,19),(7735,5209,'Thorben',0,20),(7735,1314896,'Bobby',0,21),(7735,1349919,'Kulle',0,22),(7735,31444,'Dr. Kohlhage',1,23),(7735,588317,'Karo\'s Mutter',1,24),(7735,38609,'Karo\'s Vater',0,25),(7735,21743,'Tim\'s Vater',2,26),(7735,18035,'Tim\'s Mutter',1,27),(7735,1284699,'Marco\'s Mutter',0,28),(7735,4539,'Dieter Wieland',2,29),(7735,52961,'Martin',2,30),(7326,27578,'Juno MacGuff',1,0),(7326,39995,'Paulie Bleeker',2,1),(7326,9278,'Vanessa Loring',1,2),(7326,23532,'Mark Loring',2,4),(7326,19,'Bren MacGuff',1,5),(7326,18999,'Mac MacGuff',2,6),(7326,52442,'Leah',1,7),(7326,52457,'Gerta Rauss',1,8),(7326,11678,'Rollo',2,9),(7326,52458,'Steve Rendazo',2,10),(7326,1369082,'Bleeker\'s Mom',1,11),(7326,85616,'Vijay',0,12),(7326,82791,'Su-Chin',1,13),(7326,64914,'Punk Receptionist',0,14),(7326,1093538,'Ultrasound Technician',1,15),(7326,230868,'Guy Lab Partner',2,16),(7326,85144,'Girl Lab Partner',1,17),(7326,135802,'Liberty Bell',1,18),(7326,229679,'Chemistry Teacher',2,19),(7326,209723,'Tough Girl',1,20),(7326,169511,'Nurse',1,21),(7326,59181,'Pretty-to-Goth Girl',1,22),(7326,1582007,'Katrina De Voort',1,23),(7326,144438,'Track Announcer',2,24),(7326,1582008,'Keith',2,25),(7326,1366470,'Sex Ed Teacher',0,26),(7326,52414,'RPG Nerd',2,27),(7326,1582010,'Delivery Room Doctor',1,28),(7326,1313741,'Vanessa\'s Friend #1',1,29),(7326,1222953,'Vanessa\'s Friend #2',1,30),(681,738,'James Bond',2,0),(681,10190,'Tiffany Case',1,1),(681,10074,'Ernst Stavro Blofeld',2,2),(681,10191,'Plenty O\'Toole',1,3),(681,10192,'Willard Whyte',2,4),(681,3244,'Albert R. Saxby',2,5),(681,10193,'Mr. Kidd',0,6),(681,10194,'Mr. Wint',2,7),(681,10195,'Felix Leiter',2,8),(681,10196,'Prof. Dr. Metz',2,9),(681,9874,'M',2,10),(681,9906,'Q',2,11),(681,9878,'Miss Moneypenny',1,12),(681,3140,'Slumber Inc. Attendant',2,13),(681,69764,'Sir Donald Munger',2,14),(681,1221898,'Shady Tree',0,15),(681,228813,'Mrs. Whistler',1,16),(681,79866,'Doctor',2,17),(681,93949,'Mr. Slumber',2,18),(681,5695,'Slumber Inc. Attendant',2,19),(681,111838,'Bambi (uncredited)',0,20),(681,111841,'Thumper (uncredited)',0,21),(681,26483,'Shady Tree\'s Acorn (uncredited)',1,22),(238,3084,'Don Vito Corleone',2,0),(238,1158,'Michael Corleone',2,1),(238,3085,'Santino \'Sonny\' Corleone',2,2),(238,3086,'Pete Clemenza',0,3),(238,3087,'Tom Hagen',2,4),(238,3088,'Capt. Mark McCluskey',2,5),(238,3142,'Jack Woltz',2,6),(238,3090,'Emilio Barzini',2,7),(238,3091,'Virgil \'Der Tu00fcrke\' Sollozzo',2,8),(238,3092,'Kay Adams',1,9),(238,3093,'Salvatore Sally Tessio',2,10),(238,3094,'Connie Corleone Rizzi',1,11),(238,3095,'Carlo Rizzi',2,12),(238,3096,'Fredo Corleone',2,13),(238,3143,'Carmine Cuneo',2,14),(238,3144,'Johnny Fontane',0,15),(238,933716,'Mama Corleone',1,16),(238,106811,'Luca Brasi',2,17),(238,99724,'Paulie',2,18),(238,1195877,'Bonasera',0,19),(238,20752,'Moe Greene',2,20),(238,3414,'Bruno Tattaglia',2,21),(238,3413,'Philip Tattaglia',2,22),(238,3145,'Apollonia Vitelli-Corleone',1,23),(238,119431,'Vitelli',0,24),(238,1769,'Michael Francis Rizzi',1,25),(238,20973,'Don Zaluchi',2,26),(238,138211,'Enzo, the baker',0,27),(238,55672,'Tony - Stablehand',2,28),(238,3174,'Neri',2,29),(238,82779,'Nazorine',2,30),(238,982089,'Theresa Hagen',1,31),(238,160728,'Sandra Corleone',1,32),(238,27647,'Fabrizio',2,34),(238,24604,'Don Tommasino',2,35),(238,44860,'Calo',2,36),(238,178006,'Extra in Furniture-Moving Scene (uncredited)',0,37),(238,2872,'Piano Player in Montage (uncredited)',2,38),(238,38803,'Boy on Street Who Attended Funeral (uncredited)',2,39),(238,1209294,'Don Victor Stracci (uncredited)',0,40),(238,1394703,'Crowd (uncredited)',0,41),(238,2870,'Cowboy on the Set at Woltz\'s Studio (uncredited)',2,42),(238,1235937,'Usher in Bridal Party (uncredited)',0,43),(238,1503036,'Sonny\'s Bodyguard (uncredited)',2,45),(238,1233541,'Cop Outside Hospital (uncredited)',0,46),(238,1068099,'Sonny\'s Killer #1 (uncredited)',0,48),(238,61241,'Wedding Guest (uncredited)',2,49),(238,106187,'Boy at Wedding (uncredited)',0,50),(238,100503,'Corleone Family Member (uncredited)',2,51),(238,1503035,'Priest at Baptism (uncredited)',2,52),(238,1290895,'Man in Passenger Seat (uncredited)',0,53),(238,1237372,'Drunk (uncredited)',0,54),(238,1213795,'Rocco Lampone (uncredited)',2,55),(238,11480,'Street Extra (uncredited)',2,56),(238,1209678,'Extra in Wedding Scene (uncredited)',0,57),(238,16525,'Willi Cicci (uncredited)',2,58),(238,78336,'Wedding Party Guest (uncredited)',2,59),(238,1234848,'Fruit Vendor (uncredited)',0,60),(535,3130,'Alex Owens',1,0),(535,8699,'Nick Hurley',2,1),(535,31114,'Hanna Long',1,2),(535,31115,'Richie',2,3),(535,31116,'Jeanie Szabo',1,4),(535,31117,'Frank Szabo',2,5),(535,21202,'Rosemary Szabo',1,6),(535,724,'Tina Tech',1,7),(535,80745,'Johnny C.',2,8),(535,1367324,'Jake Mawby',0,9),(535,44049,'Katie Hurley',1,10),(535,81689,'Secretary',0,11),(535,1237185,'Heels',0,12),(535,1027773,'Sunny',1,13),(535,14738,'Cecil',2,14),(535,31118,'Pete',0,15),(535,69056,'Margo',0,16),(535,4040,'Mawby\'s Regular',2,17),(535,156522,'Mawby\'s Regular',2,18),(535,1828979,'Mawby\'s Regular',2,19),(535,101615,'Mawby\'s Regular',2,20),(535,1828977,'Mr. Freeze',2,21),(535,1828978,'Frosty Freeze',2,22),(535,96021,'Dancer at Repertory',1,23),(535,199811,'Waiter',2,24),(535,103819,'Woman at Hanna Long\'s',0,25),(713,18686,'Ada McGrath',1,0),(713,1037,'George Baines',2,1),(713,4783,'Alisdair Stewart',2,2),(713,10690,'Flora McGrath',1,3),(713,7248,'Mana',2,4),(713,10756,'Aunt Morag',1,5),(713,10755,'Hira',0,6),(713,7255,'Reverend',2,7),(713,10760,'Nessie',0,8),(713,7249,'Hone',2,9),(713,10761,'Chief Nihe',0,10),(713,173431,'Blind Piano Tuner',2,11),(713,53485,'Angel',1,12),(713,1690610,'Tahu',2,13),(713,1404551,'Taunting Man',2,14),(253,10222,'James Bond',2,0),(253,5050,'Kananga/Mr. Big',0,1),(253,10223,'Solitaire',1,2),(253,10224,'Sheriff J.W. Pepper',2,3),(253,6772,'Tee Hee',2,4),(253,10225,'Baron Samedi',2,5),(253,10226,'Felix Leiter',2,6),(253,10227,'Rosie Carver',1,7),(253,9874,'M',2,8),(253,9878,'Miss Moneypenny',1,9),(253,10228,'Adam',0,10),(253,141270,'Whisper',0,11),(253,19617,'Strutter',2,12),(253,30577,'Miss Caruso',0,13),(253,1350577,'Quarrel',2,14),(8390,10859,'Will Hayes',2,0),(8390,17140,'Maya Hayes',1,1),(8390,9281,'Emily',1,2),(8390,52848,'April',1,3),(8390,3293,'Summer Hartley',1,4),(8390,8945,'Hampton Roth',2,5),(8390,15543,'Russell McCormack',2,6),(8390,54817,'Kelly',1,7),(8390,24291,'Anne',1,8),(8390,14331,'Arthur',2,9),(8390,18472,'Rafael',2,10),(8390,1142303,'Ad Exec',0,11),(8390,16328,'Bookstore Owner',2,13),(8390,204679,'1998 Intern',0,14),(8390,182280,'Charlie',0,15),(3291,11064,'Edward R. Murrow',2,0),(3291,8447,'Sig Mickelson',2,1),(3291,24357,'Natalie',1,2),(3291,31507,'Millie Lerner',1,3),(3291,31513,'Jazz Su00e4ngerin',0,4),(3291,15455,'Jesse Zousmer',2,5),(3291,31508,'John Aaron',2,6),(3291,11154,'Eddie Scott',2,7),(3291,1276,'Shirley Wershba',1,8),(3291,3223,'Joe Wershba',2,9),(3291,1461,'Fred Friendly',2,10),(3291,17867,'Palmer Williams',0,11),(3291,12797,'Colonel Anderson',2,12),(3291,1007,'Colonel Jenkins',2,13),(3291,31511,'Don Hewitt',2,14),(3291,31512,'Charlie Mack',2,15),(3291,6719,'Don Hollenbeck',2,16),(3291,17343,'Don Surine',2,17),(3291,31510,'Mary',1,18),(3291,8924,'William Paley',2,19),(3291,31514,'Jimmy',2,20),(398,1233,'Truman Capote',2,0),(398,5348,'Laura Kinney',0,1),(398,5349,'Christopher',0,2),(398,5350,'Barbara',0,3),(398,5351,'Rose',1,4),(398,5352,'Grayson',2,5),(398,5353,'Williams',2,6),(398,2229,'Harper Lee',1,7),(398,5354,'Porter',2,8),(398,5355,'Car Rental Agent',0,9),(398,5364,'Nancy Clutter',0,10),(398,2955,'Alvin Dewey',2,11),(398,5365,'Perry Smith',2,12),(398,1236,'Dick Hickock',2,13),(398,39388,'Marie Dewey',1,14),(398,21089,'Jack Dunphy',2,15),(398,114894,'Lowell Lee Andrews',2,16),(8068,3131,'El Mariachi',2,0),(8068,3136,'Carolina',1,1),(8068,22462,'Bucho',2,2),(8068,11159,'Short Bartender',2,3),(8068,884,'Buscemi',2,4),(8068,5295,'Right Hand',0,5),(8068,138,'Pick-Up Guy',2,6),(8068,53763,'Tavo',2,7),(8068,53764,'Zamira',0,8),(8068,11160,'Navajas',2,9),(8068,53765,'Niu00f1o',2,10),(8068,20498,'Campa',2,11),(8068,53766,'Quino',2,12),(8068,6897,'Buddy',0,13),(8068,4666,'Tourist Girl',0,14),(8068,65421,'Mariachi Fan',1,15),(682,10222,'James Bond',2,0),(682,113,'Francisco Scaramanga',2,1),(682,10341,'Mary Goodnight',1,2),(682,10342,'Andrea Anders',1,3),(682,10343,'Nick Nack',2,4),(682,10224,'Sheriff J.W. Pepper',2,5),(682,10344,'Hai Fat',2,6),(682,10345,'Lieutenant Hip',2,7),(682,3140,'Rodney',2,8),(682,9874,'M',2,9),(682,9878,'Miss Moneypenny',1,10),(682,9906,'Q',2,11),(682,33109,'Colthorpe',2,12),(682,83676,'Chula',0,13),(682,1215738,'Saida',0,14),(682,67882,'Lazar',2,15),(9392,57574,'Sarah',1,0),(9392,57575,'Juno',0,1),(9392,57576,'Beth',0,2),(9392,57577,'Rebecca',1,3),(9392,57578,'Sam',1,4),(9392,53998,'Holly',1,5),(9392,95023,'Paul',0,6),(9392,998202,'Jessica',1,7),(9392,94956,'Crawler - Scar',2,8),(9392,944315,'Crawler',2,9),(2074,7399,'Mel Coplin',2,0),(2074,4687,'Nancy Coplin',1,1),(2074,4939,'Tina Kalb',1,2),(2074,21277,'Pearl Coplin',1,3),(2074,21278,'Richard Schlichting',2,4),(2074,18364,'Ed Coplin',2,5),(2074,10437,'Mary Schlichting',1,6),(2074,16851,'Tomy Kent',2,7),(2074,28633,'Paul Harmon',2,8),(2074,1989,'Valerie Swaney',1,9),(2074,10694,'Lonnie Schlichting',2,10),(2074,1050399,'Jane',1,11),(2074,149682,'Sandra',1,12),(2074,1737,'Fritz Boudreau',2,13),(2074,175008,'Mitch',2,14),(2074,953732,'B&B Lady',1,15),(2074,167604,'Jill',1,16),(2074,1007,'Cop #1',2,17),(2074,1209608,'Cop #2',0,18),(2074,1209609,'Detective',0,19),(2074,171329,'Sheriff',0,20),(2074,1209610,'Deputy',0,21),(2074,4742,'Flight Attendant',0,22),(2074,101257,'Roger',2,23),(2074,20363,'Alternative Wife (unconfirmed)',1,24),(1696,5695,'Captain Spaulding / James Cutter',2,0),(1696,27737,'Otis B. Driftwood',0,1),(1696,21319,'Baby Firefly / Vera-Ellen',1,2),(1696,4520,'Sheriff John Quincy Wydel',2,3),(1696,15070,'Charlie Altamont',2,4),(1696,8295,'Tiny Firefly',2,5),(1696,22252,'Mother Firefly',1,6),(1696,18071,'Roy Sullivan',2,7),(1696,23648,'Gloria Sullivan',1,8),(1696,35701,'Officer Ray Dobson',2,9),(1696,37026,'Wendy Banjo',1,10),(1696,37027,'Adam Banjo',2,11),(1696,11160,'Rondo',2,12),(1696,86903,'Billy Ray Snapper',2,13),(1696,15274,'Candy',1,14),(1696,27736,'Lieutenant George Wydell',2,15),(1696,7073,'Clevon',2,16),(1696,15500,'Susan',1,17),(1696,77256,'Casey',1,18),(1696,44936,'Fanny',1,19),(1696,100552,'Abbie',1,20),(1696,43774,'Morris Green',2,21),(1696,11804,'Dr. Bankhead',2,22),(1696,52023,'Sheriff Ken Dwyer',0,23),(1696,9832,'Rufus',2,24),(1696,62596,'Officer with Gas Mask',2,25),(1696,20405,'Jimmy',2,26),(2662,5695,'Captain Spaulding',2,0),(2662,27737,'Otis B. Driftwood',0,1),(2662,21319,'Baby Firefly',1,2),(2662,8963,'Mother Firefly',1,3),(2662,18662,'Denise Willis',1,4),(2662,27738,'Jerry Goldsmith',2,5),(2662,11678,'Bill Hudley',2,6),(2662,27739,'Mary Knowles',1,7),(2662,27736,'Lieutenant George Wydell',2,8),(2662,27740,'Deputy Steve Naish',2,9),(2662,8295,'Tiny Firefly',2,10),(2662,27741,'Rufus \'RJ\' Firefly Jr.',0,11),(2662,27742,'Grandpa Hugo Firefly',2,12),(2662,555328,'Rufus \'Earl\' Firefly Sr.',0,13),(2662,51931,'Don Willis',2,14),(2662,13592,'Ravelli',2,15),(2662,6451,'Stucky',2,16),(2662,44824,'Killer Karl',0,17),(2662,83978,'Sheriff Frank Huston',2,18),(2662,44825,'Richard \'Little Dick\' Wick',0,19),(2662,1581369,'Gerry Ober',0,20),(2662,109900,'Skunk Ape Wife',1,21),(2662,986334,'Dr. Wolfenstein',2,22),(2662,1581372,'Skunk Ape Husband',0,23),(2662,1581375,'Lewis Dover',0,25),(2662,27736,'George Wydell',2,27),(2662,115244,'Dr. Satan',2,28),(9555,57951,'Molly Craig',1,0),(9555,57952,'Daisy Craig',1,1),(9555,57953,'Gracie Fields',1,2),(9555,11181,'A. O. Neville',2,3),(9555,53023,'Moodoo der Fu00e4hrtensucher',0,4),(9555,76512,'Constable Riggs',2,5),(9555,1461107,'Maude',0,6),(9555,1485712,'Molly\'s Grandmother',0,7),(9555,228704,'Mavis',1,8),(9555,12211,'Mr. Neal',0,9),(9555,1040111,'Miss Jessop',1,10),(4251,35742,'Veer Pratap Singh',2,0),(4251,35745,'Zaara Hayaat Khan',1,1),(4251,35776,'Saamiya Siddiqui',1,2),(4251,35780,'Chaudhary Sumer Singh',2,3),(4251,35781,'Maati',1,4),(4251,35778,'Shabbo',1,5),(4251,6217,'Zakir Ahmed',2,6),(4251,35777,'Mariam Hayaat Khan',1,7),(4251,35779,'Jahangir Hayaat Khan',2,8),(4251,35782,'Razaa Shirazi',0,9),(4251,35783,'Bebe',1,10),(4251,85724,'Jailor',2,11),(4251,1246733,'',0,12),(1956,1893,'Gerry',2,0),(1956,1892,'Gerry',2,1),(8374,5293,'Paul Smecker',2,0),(8374,4886,'Murphy McManus',2,1),(8374,54789,'Connor McManus',2,2),(8374,54790,'Rocco',2,3),(8374,54791,'Detective Dolly',2,4),(8374,54792,'Detective Duffy',2,5),(8374,9188,'II Duce',0,6),(8374,54793,'Yakavetta',2,7),(8374,42545,'Vincenzo Lipazzi',2,8),(8374,105776,'Detective Greenly',2,9),(8374,44103,'The Chief',2,10),(8374,1558726,'Macklepenny',0,11),(8374,1219312,'Rosengurtle Baumgartener',0,12),(8374,180916,'Sick Mob Man',2,13),(8374,190941,'Bartender',2,14),(8879,190,'Preacher',2,0),(8879,21030,'Hull Barret',2,1),(8879,44831,'Sarah Wheeler',1,2),(8879,2969,'Josh LaHood',2,3),(8879,15413,'Coy LaHood',2,4),(8879,158833,'Megan Wheeler',1,5),(8879,10460,'Club',0,6),(8879,62033,'Spider Conway',0,7),(8879,4304,'Stockburn',2,8),(8879,15414,'McGill',2,9),(8879,13003,'Jagou',2,10),(8879,152670,'Ma Blankenship',1,11),(8879,9633,'Jed Blankenship',2,12),(9571,52474,'Randall \'Pink\' Floyd',2,0),(9571,51792,'Ron Slater',2,1),(9571,56934,'Mitch Kramer',1,2),(9571,58000,'Don Dawson',2,3),(9571,58001,'Jodie Kramer',1,4),(9571,6163,'Mike Newhouse',2,5),(9571,27727,'Cynthia',1,6),(9571,6165,'Tony',2,7),(9571,63,'Michelle Burroughs',1,8),(9571,10297,'David Wooderson',2,9),(9571,880,'Fred O\'Bannion',2,10),(9571,16484,'Simone Kerr',1,11),(9571,7489,'Darla Marks',1,12),(9571,18070,'Clint',2,13),(9571,568,'Ms. Stroud',1,14),(9571,1622623,'Party Girl (uncredited)',1,15),(9571,9137,'Girl in blue pickup truck (uncredited)',1,16),(2211,22686,'Felice Jaguar Schragenheim',1,0),(2211,8797,'Lilly Aimee Wu00fcst',1,1),(2211,22687,'Ilse',1,2),(2211,7059,'Klu00e4rchen',1,3),(2211,22688,'Lotte',0,4),(2211,5844,'Gu00fcnter Wu00fcst',2,5),(2211,22689,'Lilly Wu00fcst im Jahre 1997',1,6),(2211,22690,'Ilse im Jahre 1997',0,7),(2211,6258,'Chefredakteur Keller',2,8),(2211,23340,'Blonde Dame',0,9),(2211,6273,'Fritz Borchert',2,10),(2211,8796,'Eckert',2,11),(2211,1114156,'Erika',1,12),(2211,48372,'Frau Pohl',0,13),(2211,1011172,'Frau Ude',1,14),(2211,1244344,'Ernst Biermu00f6sel',0,15),(7347,52583,'Capitu00e3o Nascimento',2,0),(7347,52584,'Neto',2,1),(7347,52585,'Andru00e9 Matias',2,2),(7347,52586,'Capitao Fabio',2,3),(7347,469968,'Maria',1,4),(7347,12397,'Rosane',1,5),(7347,575447,'Baiano',2,6),(7347,1429606,'Marcinho',2,7),(7347,1086172,'Coronel Otu00e1vio',0,8),(7347,1429607,'Rose',0,9),(650,2975,'Jason \'Furious\' Styles',2,0),(650,9777,'Tru00e9 Styles',2,1),(650,9778,'Darin \'Doughboy\' Baker',2,2),(650,9779,'Ricky Baker',2,3),(650,9780,'Reva Devereaux',1,4),(650,9781,'Brandi',1,5),(650,9782,'Brenda Baker',1,6),(650,9783,'Mad Dog',0,7),(650,9784,'Young Tru00e9 Styles',2,8),(650,9785,'Lewis Crump, USC Recruiter',2,9),(650,9786,'Officer Coffey',0,10),(650,9787,'Rosa',0,11),(650,9788,'Shalika',1,12),(9430,98,'Ronna',1,0),(9430,3897,'Claire',1,1),(9430,12217,'Zack',2,2),(9430,18082,'Todd',2,3),(9430,886,'Burke',2,4),(9430,24965,'Adam',2,5),(9430,1217939,'Switterman',2,6),(9430,19307,'Stringy Haired Woman',1,7),(9430,59284,'Simon Baines',2,8),(9430,19223,'Mannie',2,9),(9430,55536,'Sandra',1,10),(9430,17637,'Marcus',2,11),(9430,33654,'Tiny',2,12),(9430,1582,'Singh',2,13),(9430,13636,'Irene',1,14),(9430,88597,'Loop',2,15),(9430,15012,'Becky',0,16),(8998,2229,'Christine',1,0),(8998,11355,'David',2,1),(8998,52933,'Richard',2,2),(8998,4491,'Olivia',1,3),(8998,3234,'Franny',1,4),(8998,19974,'Matt',2,5),(8998,56538,'Tammy',0,6),(8998,16358,'Aaron',0,7),(8998,3910,'Jane',1,8),(8998,65760,'Maya',1,9),(8998,15232,'Other Aaron',2,10),(8998,1894,'Mike',2,11),(8998,17449,'Marty',2,12),(1591,8797,'Jettel Redlich',1,0),(1591,17817,'Walter Redlich',2,1),(1591,17818,'Owuor',2,2),(1591,4534,'Su00fcu00dfkind',2,3),(1591,17820,'Regina (younger)',0,4),(1591,17819,'Regina (older)',0,5),(1591,17821,'Max',2,6),(1591,17822,'Ina',0,7),(1591,17823,'Liesel',0,8),(1591,17824,'Ku00e4the',1,9),(1591,1030715,'Johannes',1,10),(1591,1450279,'Klara',0,11),(1591,37066,'Mrs. Sadler',0,12),(1591,1450280,'Inge',0,13),(1591,1052279,'Elsa Konrad',1,14),(1591,1450281,'Boy with Sledge',2,15),(1591,1450282,'Jogona (younger)',0,16),(1591,1450283,'Jogona (older)',0,17),(1591,1450284,'Kimani',0,18),(1591,40643,'Captain Caruther',0,19),(1591,134137,'Mr. Brindley',0,20),(1591,1394553,'Robert Green',0,21),(1591,1450288,'Mr. Morrison',0,22),(1591,47858,'Mrs. Rubens',0,23),(1591,47851,'Mr. Rubens',2,24),(4836,8784,'XXXX',2,0),(4836,2524,'Clarkie',2,1),(4836,17782,'Gene',2,2),(4836,2247,'Morty',2,3),(4836,39658,'Slasher',1,4),(4836,26258,'Jimmy Price',2,5),(4836,3543,'Duke',2,6),(4836,23459,'Tammy',1,7),(4836,5658,'Eddie Temple',2,8),(4836,17064,'Sidney',2,9),(4836,31648,'Dragan',2,10),(4836,39681,'Shanks',2,11),(4836,39682,'Trevor',2,12),(4836,974,'Cody',2,13),(4836,39660,'Terry',2,14),(4836,973,'Larry - Crazy',2,15),(4836,39664,'Charlie',0,16),(4836,39678,'Mickey',2,17),(5708,32987,'Ian Curtis',2,0),(5708,2206,'Debbie Curtis',1,1),(5708,5644,'Annik Honoru00e9',1,2),(5708,29234,'Peter \'Hooky\' Hook',2,3),(5708,45049,'Bernard \'Barney\' Sumner',2,4),(5708,20286,'Rob Greton',2,5),(5708,45050,'Tony Wilson',2,6),(5708,45051,'Steve Morris',2,7),(5708,86133,'Nick',2,8),(5708,1232078,'Terry Mason',0,9),(5708,108145,'Twinny',0,10),(5708,19903,'Mr Curtis - Ian\'s Father',2,11),(5708,148143,'Mrs Curtis - Ian\'s Mum',0,12),(5708,148143,'Mrs Curtis - Ian\'s Mother',0,13),(5708,1821216,'Ian\'s Sister',0,14),(5708,118610,'Debbie\'s Mother',1,15),(5708,1821219,'Martin Hannet',0,16),(5708,1528816,'Mrs Brady',0,17),(5708,938983,'Himself',0,18),(5708,122999,'Studio Owner',2,19),(5708,1821220,'Chemistry Teacher',0,20),(5708,1821221,'Colin',0,21),(5708,1675330,'Corrine',0,22),(5708,1821222,'Corinne\'s Mother',0,23),(5708,62972,'Earnest',0,24),(5708,5228,'GP',2,25),(5708,1632618,'Claire',0,26),(5708,1821223,'Alan from Crispy Ambulance',0,27),(5708,1821224,'Tony Wilson\'s Girlfriend',0,28),(5708,1821225,'Gillian Gilbert',0,29),(5708,1335638,'Maternity Nurse',0,30),(5708,1821226,'Baby Natalie',0,31),(218,1100,'The Terminator',2,0),(218,2712,'Kyle Reese',2,1),(218,2713,'Sarah Connor',1,2),(218,1818,'Lieutenant Ed Traxler',2,3),(218,2714,'Detective Vukovich',2,4),(218,2715,'Ginger Ventura',1,5),(218,2716,'Dr. Peter Silberman',2,6),(218,2717,'Matt Buchanan',0,7),(218,2053,'Punk Leader',2,8),(218,2719,'Punk',2,9),(218,35710,'Future Terminator',2,10),(218,102441,'Pawnshop Clerk',2,11),(218,1378212,'TV Anchorman',0,12),(218,65001,'Nancy',1,13),(218,1258399,'Desk Sergeant',0,14),(218,100626,'Punk',0,15),(218,2711,'Policeman',2,16),(218,1378202,'Policeman',0,17),(218,103219,'TV Anchorwoman',0,18),(218,54814,'Mexican Boy',0,19),(218,156085,'Derelict',0,20),(218,1377933,'Customer',0,21),(218,1411308,'Customer',0,22),(218,54941,'Customer',1,23),(218,192063,'Customer',0,24),(218,1378207,'Tanker Driver',0,25),(218,1391620,'Phone Booth Man',0,26),(218,61968,'Bar Customer',2,27),(218,1159421,'Motel Customer',2,28),(218,543,'Wrong Sarah',1,29),(218,1456721,'Dancer shot by the Terminator (uncredited)',1,30),(218,1571206,'Policeman (uncredited)',0,31),(218,1387846,'Bar Patron at Pay Phone with Sarah (uncredited)',0,32),(338,3872,'Alexander \'Alex\' Kerner',2,0),(338,4792,'Christiane Kerner',1,1),(338,4793,'Lara',1,2),(338,4794,'Ariane Kerner',1,3),(338,4795,'Denis',2,4),(338,4796,'Rainer',2,5),(338,3934,'Robert Kerner',2,6),(338,697,'Klapprath',2,7),(338,4797,'Frau Schu00e4fer',0,8),(338,4798,'Herr Ganske',2,9),(338,210570,'Herr Mehlert',0,10),(338,1350135,'Taxifahrer / Sigmund Ju00e4hn',0,11),(338,13746,'Dr. Wagner',2,12),(338,8200,'Dr. Mewes',2,13),(338,17373,'Das Ku00fcken',0,14),(338,17411,'Verku00e4uferin HO-Markt',0,15),(2293,11662,'Brodie Bruce',2,0),(2293,23646,'T.S. Quint',2,1),(2293,19144,'Rene Mosier',1,2),(2293,4174,'Brandi Svenning',1,3),(2293,880,'Shannon Hamilton',2,4),(2293,16484,'Gwen Turner',1,5),(2293,12132,'Mr. Jared Svenning',2,6),(2293,19302,'Jay',2,7),(2293,19303,'Silent Bob',2,8),(2293,23648,'Miss Ivannah',1,9),(2293,23647,'Tricia Jones',1,10),(2293,824,'Willam Black',2,11),(2293,7624,'Himself',2,12),(2293,23629,'Gil Hicks, Suitor #3',2,13),(2293,20761,'LaFours',2,14),(2293,20503,'Roddy',2,15),(2293,23633,'Walt Fanboy Grover',2,16),(2293,572591,'Steve-Dave Pulasti',2,17),(621,8891,'Danny Zuko',2,0),(621,8892,'Sandy Olsson',1,1),(621,8893,'Betty Rizzo',1,2),(621,8894,'Kenickie',2,3),(621,8895,'Frenchy',1,4),(621,8896,'Doody',2,5),(621,8897,'Sonny',2,6),(621,8898,'Putzie',0,7),(621,8899,'Jan',1,8),(621,8900,'Marty Maraschino',1,9),(621,860,'Principal McGee',1,10),(621,8901,'Vince Fontaine',2,11),(621,8902,'Coach Calhoun',2,12),(621,8903,'Blanche',1,13),(621,8904,'Patty Simcox',1,14),(621,8905,'Waitress',1,15),(621,8906,'Cha Cha DiGregorio',1,16),(621,8907,'Leo, Scorpions member',2,17),(621,13568,'Vi',1,18),(621,42362,'Eugene Felnic',2,19),(621,18251,'Nurse Wilkins',1,20),(621,11366,'Tom Chisum',2,21),(621,22092,'Teen Angel',2,22),(792,13022,'Staff Sergeant Bob Barnes',2,0),(792,6952,'Private First Class Chris Taylor',2,1),(792,5293,'Sergeant Elias Grodin',2,2),(792,2178,'Big Harold',2,3),(792,11885,'Sergeant Red O\'Neill',2,4),(792,6863,'Bunny',2,5),(792,85,'Private Gator Lerner',2,6),(792,11886,'Rhah',2,7),(792,6396,'Sal',2,8),(792,65827,'King',2,9),(792,11889,'Lt. Wolfe',2,10),(792,11890,'Crawford',0,11),(792,1152,'Alpha Company major in bunker',2,12),(792,1447263,'Manny',0,13),(792,11894,'Francis',2,15),(792,11895,'Gardner',0,16),(792,4042,'Tex',2,17),(792,19384,'Warren',2,18),(792,11896,'Morehouse',0,19),(792,11897,'Ace',2,20),(792,11891,'Tony',0,21),(792,11892,'Doc',0,22),(792,3211,'Captain Harris',2,23),(792,107323,'Mechanized Soldier #1',0,24),(792,11881,'Mechanized Soldier #2',2,25),(792,135538,'Soldier with Mohawk Haircut (uncredited)',2,26),(792,1457986,'Soldier (uncredited)',0,27),(792,1434559,'Huffmeister (uncredited)',0,28),(792,1153891,'Soldier (uncredited)',0,29),(792,107322,'Bit part (uncredited)',0,30),(792,11888,'Junior',2,31),(1777,380,'Himself (archive footage) (uncredited)',2,0),(1777,17087,'himself',2,1),(1777,19011,'himself (archive footage)',2,2),(1777,880,'himself (archive footage)',2,3),(1777,18746,'Himself (archive footage)',2,4),(1777,19013,'Himself - U.S. Vice President and Senate President (archive footage)',2,5),(1777,120576,'Himself (archive footage)',0,6),(1777,46432,'Himself - Former U.S. President (archive footage)',2,7),(1777,128057,'Himself (archive footage)',2,8),(1777,84384,'Himself (archive footage)',0,9),(1777,44127,'Himself - On \'Larry King Live\' (archive footage)',2,10),(1777,116341,'Himself (archive footage)',2,11),(1777,95779,'Himself (archive footage)',0,12),(1777,1220626,'Herself (archive footage)',0,13),(1777,146687,'Himself (archive footage)',2,14),(1777,111946,'Herself (archive footage)',0,15),(1777,110380,'Himself (archive footage)',0,16),(642,3636,'Butch Cassidy',2,0),(642,4135,'Sundance Kid',2,1),(642,9594,'Etta Place',0,2),(642,8260,'Percy Garris',2,3),(642,5732,'Bike Salesman',2,4),(642,9596,'Sheriff Ray Bledsoe',2,5),(642,9597,'Woodcock',2,6),(642,9599,'Agnes',1,7),(642,9600,'Harvey Logan',2,8),(642,9601,'Marshal',2,9),(642,9602,'Macon',2,10),(642,34472,'Large Woman',0,11),(642,83411,'News Carver',2,12),(642,104630,'Fireman',2,13),(642,15988,'Flat Nose Curry',2,14),(642,19447,'Bank Manager',0,15),(642,91222,'Photographer',2,16),(642,34609,'Card Player #1',0,17),(642,16431,'Card Player #2',2,18),(642,1077251,'Bank Teller',0,19),(642,102791,'Tiffany\'s Salesman',0,20),(433,5823,'Mary Poppins',1,0),(433,61303,'Bert/Mr. Dawes, Sr.',2,1),(433,5825,'Mr. George W. Banks',2,2),(433,5826,'Mrs. Winifred Banks',1,3),(433,5827,'Ellen',1,4),(433,5828,'Mrs. Brill',1,5),(433,5829,'Jane Banks',1,6),(433,5830,'Michael Banks',2,7),(433,2926,'Katie Nanna',1,8),(433,5831,'Constable Jones',2,9),(433,5832,'Admiral Boom',0,10),(433,5833,'Uncle Albert',2,11),(433,8515,'The Bird Woman',1,12),(433,13392,'Mr. Dawes Junior',2,13),(433,157411,'Bank Doorman',0,14),(433,30144,'Mr. Binnacle - Admiral\'s Servant',2,15),(433,403760,'Mrs. Corry - Old Woman in Park',1,16),(433,117714,'Miss Persimmon - Old Woman in Park',1,17),(433,97257,'Miss Lark - Old Woman in Park',1,18),(433,1787560,'Woman in Carriage',1,19),(1725,2769,'Maria',1,0),(1725,6679,'Tony',2,1),(1725,6725,'Riff',2,2),(1725,13299,'Anita',1,3),(1725,24880,'Bernardo',2,4),(1725,14063,'Lieutenant Schrank',2,5),(1725,18870,'Doc',2,6),(1725,18871,'Officer Krupke',2,7),(1725,18872,'Ice',0,8),(1725,151333,'Action',2,9),(1725,29700,'A-Rab',2,10),(1725,1161038,'Baby John',0,11),(1725,1161044,'Snowboy',0,12),(1725,1824462,'Tiger',0,13),(1725,1824463,'Joyboy',0,14),(1725,1161040,'Big Deal',0,15),(1725,1741859,'Mouthpiece',0,16),(1725,1824464,'Gee-Tar',0,17),(1725,982293,'Anybodys',1,18),(1725,955862,'Graziella',0,19),(1725,1161036,'Velma',0,20),(1725,975393,'Chino',2,21),(1725,1824465,'Pepe',0,22),(1725,101891,'Indio',2,23),(1725,1824466,'Juano',0,24),(1725,1378309,'Loco',0,25),(1725,1824467,'Rocco',0,26),(1725,1192281,'Luis',0,27),(1725,1424000,'Toro',0,28),(1725,1824471,'Del Campo',0,29),(1725,1824472,'Chile',0,30),(1725,1161041,'Consuelo',0,31),(1725,1098447,'Rosalia',0,32),(1725,1161043,'Francisca',0,33),(1725,41230,'Glad Hand, the dance organizer',2,34),(1725,80599,'Madam Lucia',1,35),(629,9045,'Michael McManus',2,0),(629,5168,'Dean Keaton',2,1),(629,9046,'US Customs Agent Dave Kujan',2,2),(629,7166,'Todd Hockney',2,3),(629,4935,'Kobayashi',2,4),(629,1979,'Roger \'Verbal\' Kint',2,5),(629,2179,'Edie Finneran',1,6),(629,4808,'FBI Agent Jack Baer',2,7),(629,1121,'Fred Fenster',2,8),(629,6486,'Sgt. Jeffrey Jeff Rabin',2,9),(629,101377,'Smuggler',2,10),(629,56166,'Saul Berg',0,11),(629,9047,'Dr. Plummer',1,12),(629,9048,'Dr. Walters',2,13),(629,156227,'Arkosh Kovash',2,14),(629,3218,'Agent Strausz',2,15),(629,1216752,'Agent Rizzi',0,16),(629,1235937,'Daniel Dan Metzheiser',0,17),(1103,6856,'Snake Plissken',2,0),(1103,4078,'Police Commissioner Bob Hauk',2,1),(1103,7502,'Cabbie',2,2),(1103,9221,'President of the United States',2,3),(1103,6542,'The Duke of New York',2,4),(1103,5048,'Harold \'Brain\' Helman',2,5),(1103,11782,'Maggie',1,6),(1103,11784,'Rehme',2,7),(1103,15449,'Romero',2,8),(1103,15450,'Cronenberg',0,9),(1103,47456,'Girl in Chock Full O\'Nuts',1,10),(1103,11786,'Secretary of State',2,11),(1103,9785,'Gypsy #1',2,12),(1103,54564,'Drunk',2,13),(1523,2178,'Idi Amin',2,0),(1523,5530,'Dr. Nicholas Garrigan',2,1),(1523,16358,'British Diplomat',0,2),(1523,12214,'Sarah Merrit',1,3),(1523,11703,'Kay Amin',1,4),(1523,35013,'Dr. Thomas Junju',2,5),(1523,35014,'Masanga',0,6),(1523,35015,'Dr. David Merrit',2,7),(1523,35018,'Mrs. Garrigan',1,8),(1523,35017,'Dr. Garrigan - Senior',0,9),(1523,1033153,'Tolu',0,10),(1523,962605,'Jonah Wasswa',2,11),(1523,984315,'Bonny',0,12),(1523,1296173,'Times Journalist',0,14),(1523,565241,'Italian Journalist',1,15),(1523,1719834,'Perkins',2,16),(1443,4512,'Mr. Lisbon',2,0),(1443,3391,'Mrs. Lisbon',1,1),(1443,205,'Lux Lisbon',1,2),(1443,2299,'Trip Fontaine',2,3),(1443,60650,'Adult Trip Fontaine',2,4),(1443,349,'Father Moody',2,5),(1443,518,'Dr. Horniker',2,6),(1443,17236,'Mary Lisbon',1,7),(1443,204997,'Cecilia Lisbon',1,8),(1443,17238,'Therese Lisbon',0,9),(1443,17239,'Bonnie Lisbon',1,10),(1443,17243,'Tim Weiner',2,11),(1443,1239453,'Parkie Denton',0,12),(1443,17240,'Chase Buell',2,13),(1443,17241,'David Barker',0,14),(1443,17242,'Paul Baldino',2,15),(1443,17244,'Joe Hill Conley',2,16),(1443,110548,'Amy Schraff',1,17),(1443,1771,'Narrator',2,18),(1443,81098,'Dominic Palazzolo',2,19),(8545,4154,'Mari Hoff',1,0),(8545,3895,'Ray Say',2,1),(8545,3061,'Billy',2,2),(8545,34902,'LV',1,3),(8545,388,'Mr. Boo',2,4),(8545,30320,'Sadie',1,5),(8545,25532,'George',0,6),(8545,2302,'Bouncer',2,7),(8545,1232002,'Arthur',0,8),(8545,1715223,'LV\'s Dad',0,9),(8545,1715225,'Money Lender',0,10),(8545,1379142,'Stripper',0,11),(8545,1715226,'Bouncer',0,12),(8545,2451,'Bunnie Morris',2,14),(8545,109379,'Talent Scout',0,15),(576,8252,'Pike Bishop',2,0),(576,7502,'Dutch Engstrom',2,1),(576,8253,'Deke Thornton',2,2),(576,8254,'Freddie Sykes',2,3),(576,8255,'Lyle Gorch',2,4),(576,8257,'Angel',0,5),(576,8258,'Tector Gorch',2,6),(576,8259,'Gen. Mapache',2,7),(576,8260,'Coffer',2,8),(576,8262,'T.C',2,9),(576,2755,'Pat Harrigan',2,10),(576,12410,'Clarence \'Crazy\' Lee',2,11),(576,6463,'Reverend Wainscoat',0,12),(576,176445,'Ross',2,13),(576,31321,'Major Zamorra',2,14),(576,22767,'Herrera',2,15),(576,160598,'Jess',2,16),(576,30848,'Buck',0,17),(576,950225,'McHale',2,18),(576,990426,'Teresa',1,19),(576,239944,'Gonzalez',0,20),(576,107285,'Don Jose',0,21),(576,233128,'Elsa',0,22),(576,544591,'Aurora',1,23),(576,19448,'Ignacio',2,24),(576,553157,'Rocio',1,25),(576,103565,'Juan Jose',2,26),(576,1715664,'Juan',0,27),(576,564929,'Benson',0,28),(576,1509586,'Emma',1,29),(576,557983,'Mohr',2,30),(576,174426,'Ernst',2,31),(576,30308,'Luna',0,32),(576,553168,'Lilia',0,33),(576,1391093,'Jabalai (uncredited)',0,34),(576,1788495,'Burt (uncredited)',0,35),(576,70987,'Pinkerton Man (uncredited)',0,36),(576,1400372,'Frank (uncredited)',0,37),(576,91203,'Bounty Hunter (uncredited)',2,38),(576,60916,'Thornton Posse Rider (uncredited)',0,39),(576,1317197,'Abe (uncredited)',0,40),(576,953975,'Boy Watching Robber Scoop Up Moneybag (uncredited)',2,41),(576,209585,'Phil (uncredited)',2,42),(576,121234,'Simkins (uncredited)',0,43),(7547,15852,'Lucy Fowler',1,0),(7547,18974,'Kim',1,1),(7547,52886,'Cal Percell',2,2),(7547,825,'Owen Allen',2,3),(7547,6914,'Lowell Fowler',2,4),(7547,1462,'Uncle Tim',2,5),(7547,52881,'Sue',1,6),(7547,52882,'Doll',1,7),(7547,52883,'Papa',2,8),(7547,6587,'Nana',1,9),(7547,52884,'Eli',2,10),(7547,52885,'Bob',2,11),(7547,52887,'Michelle',1,12),(7547,1472,'Toby',2,13),(7547,1310611,'Vet Receptionist',1,14),(7547,58733,'Mickey',2,15),(7547,52879,'Motel Man',0,16),(7547,52880,'Motel Clerk',0,17),(7547,24529,'Man with Michelle',2,18),(9282,9976,'Jack',0,0),(9282,57127,'Aaron',2,1),(9282,10767,'Norma',1,2),(9282,448,'Buzzy',1,3),(9282,9048,'Officer Hannagan',2,4),(9282,52647,'Duffy',2,5),(9282,33532,'Tim',2,6),(9282,3492,'Mark',2,7),(9282,11107,'Eddie',2,8),(9282,723,'Frank',2,9),(9282,38581,'Cheri',1,10),(9282,41088,'Leon (Paramedic #1)',2,11),(9282,123532,'Kevin (Paramedic #2)',2,12),(837,4512,'Max Renn',2,0),(837,12482,'Bianca O\'Blivion',1,1),(837,102,'Nicki Brand',1,2),(837,12483,'Harlan',2,3),(837,12485,'Brian O\'Blivion',2,5),(837,12486,'Masha',0,6),(837,12487,'Bridey',1,7),(837,12488,'Moses',0,8),(837,12489,'Raphael',0,9),(837,12490,'Rena King',1,10),(837,12716,'Barry Convex',2,11),(837,1567231,'Brolley',0,12),(837,189644,'Japanese Salesman',2,13),(837,1722163,'Japanese Salesman',0,14),(837,83024,'Matron',1,15),(837,138877,'Sidewalk Derelict',0,16),(837,1722164,'Newscaster',0,17),(837,4568,'Woman Caller',1,18),(837,1722165,'Bellydancer',0,19),(837,224,'Max Renn in helmet (uncredited)',2,20),(1555,17497,'Xavier',2,0),(1555,2405,'Martine',1,1),(1555,17521,'Wendy',1,2),(1555,17522,'Isabelle',1,3),(1555,17523,'Soledad',1,4),(1555,17524,'Alessandro',2,5),(1555,17525,'Tobias',2,6),(1555,17526,'Lars',2,7),(1555,17527,'Xavier\'s Mother',0,8),(1555,17528,'Juan',2,9),(1555,17529,'Xavier\'s Father',0,10),(1555,73937,'Anne-Sophie',1,11),(1555,19996,'William',2,12),(1555,400612,'Jean-Michel',2,13),(1555,64541,'Jean-Charles Perrin',2,14),(1555,72673,'Neus',1,15),(1555,94958,'Alistair',2,16),(1555,1320851,'Bruce',0,17),(1555,72674,'Flamenco Teacher',0,18),(1555,17520,'Stressed Teacher',2,19),(3482,13784,'Paul Labiche',2,0),(3482,13324,'von Waldheim',2,1),(3482,14812,'Christine',1,2),(3482,30720,'Mademoiselle Villard',0,3),(3482,12748,'Papa Boul',2,4),(3482,14121,'Maj. Herren',2,5),(3482,1655,'Didont',0,6),(3482,32112,'Pesquet',2,7),(3482,18964,'General von Libitz',0,8),(3482,5764,'Octave',2,9),(3482,26890,'Jacques',2,10),(3482,41716,'Spinet',2,11),(3482,948462,'Schmidt',0,12),(3482,31779,'Schwartz',2,13),(3482,22623,'Pilzer',2,14),(3482,33793,'Major',0,15),(3482,13696,'Dietrich',2,16),(3482,1004175,'Railroad Worker',0,17),(3482,143534,'Grote',0,18),(3482,1162643,'Robert',0,19),(3482,1162644,'Ordnance Officer',0,20),(3482,48417,'Engineer Officer',2,21),(3482,27443,'Corporal',2,22),(3482,1162645,'Tauber',0,23),(8982,57207,'Kham',2,0),(8982,57208,'Mark',2,1),(8982,57209,'Pla',1,2),(8982,57210,'Madame Rose',0,3),(8982,24898,'T.K.',2,4),(8982,127451,'Johnny',2,5),(8982,123812,'Capoeira Fighter',0,6),(8982,100586,'Wushu Fighter',2,7),(8982,985070,'Vincent',2,8),(8982,1051833,'Officer Rick',0,9),(455,231610,'Jesminder \'Jess\' Kaur Bhamra',1,0),(455,116,'Juliette \'Jules\' Paxton',1,1),(455,1244,'Joe',2,2),(455,6217,'Mr. Bhamra',2,3),(455,6218,'Mrs. Bhamra',1,4),(455,990,'Alan Paxton',2,5),(455,6238,'Paula Paxton',1,6),(455,6239,'Tony',2,7),(455,128645,'Pinky Bhamra',1,8),(455,1227682,'Meena',1,9),(455,117795,'Monica',1,10),(455,1227784,'Nairobi Grandson',2,11),(455,62230,'Polly',1,12),(9277,3636,'Henry Gondorff',2,0),(9277,4135,'Johnny Hooker',2,1),(9277,8606,'Doyle Lonnegan',2,2),(9277,1466,'Lt. Wm. Snyder',2,3),(9277,4093,'J.J. Singleton',2,4),(9277,39015,'Billie',1,5),(9277,14833,'Kid Twist',2,6),(9277,171056,'Eddie Niles',0,7),(9277,37712,'F.B.I. Agent Polk',2,8),(9277,1273,'Erie Kid',2,9),(9277,98927,'Luther Coleman',2,11),(9277,157936,'Mottola',0,12),(9277,15988,'Floyd - Bodyguard',2,13),(9277,110436,'Bodyguard',2,14),(9277,12134,'Crystal',1,15),(9277,1155210,'Benny Garfield',0,16),(9277,83806,'Combs',0,17),(9277,161360,'Granger',2,18),(9277,1274,'Cole',0,19),(9277,152701,'Riley',2,20),(9277,1220923,'Loretta',1,21),(9277,144604,'Train Conductor',0,22),(9277,1221898,'Burlesque House Comedian',0,23),(9277,1213880,'Alva Coleman',0,24),(9277,153628,'Duke Boudreau',2,26),(9277,98928,'Curly Jackson',0,27),(9277,77482,'Western Union Executive',2,28),(9277,1213863,'Louise Coleman',0,29),(9277,1263061,'Roulette Dealer',2,30),(9277,86347,'Bill Clayton from Pittsburgh (uncredited)',2,31),(9277,7210,'Kid Twist\'s Wife (uncredited)',1,32),(9277,16200,'Landlady (uncredited)',1,33),(9277,100295,'Lacey the Bouncer (uncredited)',0,34),(9277,12427,'Landlord (uncredited)',2,35),(9277,1444837,'FBI Agent Chuck (uncredited)',0,36),(9277,151482,'Mr. Jameson from Chicago (uncredited)',2,37),(9277,157617,'Lady in Phone Booth (uncredited)',1,38),(9277,1208039,'Bank Officer (uncredited)',0,39),(9277,101484,'Gambling Den Boss (uncredited)',2,40),(9277,84978,'Black Gloved Gunman',2,41),(9443,29068,'Harold Abrahams',2,0),(9443,11854,'Eric Liddell',2,1),(9443,47536,'Jennie Liddell',1,2),(9443,2506,'Sybil Gordon',1,3),(9443,53517,'Lord Andrew Lindsay',2,4),(9443,65,'Sam Mussabini',2,5),(9443,32357,'Aubrey Montague',2,6),(9443,73933,'Henry Stallard',2,8),(9443,11857,'Master of Trinity',2,9),(9443,78157,'Master of Caius',2,10),(9443,13327,'Lord Birkenhead',2,11),(9443,27770,'Charles Paddock',2,12),(9443,69010,'Jackson Scholz',2,13),(9443,2264,'Lord Cadogan',2,14),(9443,16480,'Duke of Sutherland',2,15),(9443,137927,'Sandy McGrath',2,16),(9443,2369,'Garth Jones',2,17),(7863,118,'David Helfgott',2,0),(7863,1284,'(Young) David Helfgott',2,2),(7863,12647,'Peter Helfgott',2,3),(7863,1192652,'Tony',0,4),(7863,1192653,'Sylvia',0,5),(7863,3070,'Sam',2,6),(7863,79703,'David Helfgott',2,7),(7863,29791,'Gillian',1,8),(7863,14306,'Katharine Susannah Prichard',1,9),(7863,11857,'Cecil Parkes',2,10),(1548,2155,'Enid',1,0),(1548,1245,'Rebecca',1,1),(1548,884,'Seymour',2,2),(1548,51214,'Josh',2,4),(1548,12438,'Enid\'s Dad',2,5),(1548,8437,'Maxine',1,6),(1548,31714,'Dana',1,7),(1548,212,'Gerrold, the Pushy Guy',2,8),(1548,60846,'John Ellis',2,9),(1548,35701,'Doug',2,10),(1548,77338,'Joe',2,11),(1548,141052,'Norman',0,12),(1548,183745,'Melora',0,13),(1548,58511,'Sidewinder Boss',2,14),(1548,7796,'Roberta Allsworth',1,15),(1548,1216556,'Ebony - Graduation Rapper',1,16),(1548,1216483,'Jade - Graduation Rapper',1,17),(1548,1224380,'Masterpiece Video Employee',2,18),(1548,8696,'Graduation Speaker',1,19),(1548,151263,'Todd',2,20),(1548,59285,'Weird Al',2,21),(1548,1870807,'Vanilla - Graduation Rapper',0,22),(1548,82630,'Margaret - Art Class',1,23),(5528,21171,'Clu00e9ment Mathieu',0,0),(5528,7693,'Rachin',2,1),(5528,22306,'Chabert',2,2),(5528,43998,'Pu00e8re Maxence',2,3),(5528,28793,'Violette Morhange',1,4),(5528,43996,'Pierre Morhange',0,5),(5528,43997,'Pu00e9pinot',0,6),(5528,43999,'Pascal Mondain',0,7),(5528,1334021,'Corbin',0,8),(5528,1334022,'Le Querrec',0,9),(5528,550110,'Monsieur Langlois',0,10),(5528,583220,'La comtesse',0,11),(5528,48418,'Le docteur Dervaux',0,12),(5528,35077,'Pu00e9pinot adulte',0,13),(5528,20030,'Pierre Morhange adulte',2,14),(5528,1334023,'Boniface',0,15),(5528,1334024,'Leclerc',0,16),(5528,114822,'Le mu00e9decin',0,17),(5528,930809,'Assistant Pierre Morhange',0,18),(5528,146640,'(uncredited)',0,19),(321,7002,'Angelo Barberini',2,0),(321,7003,'Maria Barberini',0,1),(321,7004,'Gino Barberini',2,2),(321,7005,'Lina Paventi',1,3),(321,7006,'Nino Paventi',2,4),(321,7007,'Anna Barberini',1,5),(321,7008,'Pina Lunetti',0,6),(321,7009,'Peter',2,7),(321,7010,'Yolanda/Woman in Airplane/Jolene',1,8),(321,7011,'Rosetta',1,9),(321,7012,'Giorgio',0,10),(321,7013,'Johnny Christofaro',2,11),(321,7014,'Father Carmignani',2,12),(321,7015,'Marco',0,13),(321,7016,'Mu00e9lanie',0,14),(4997,5576,'John Holmes',2,0),(4997,32597,'David Lind',2,1),(4997,7517,'Dawn Schiller',1,2),(4997,6164,'Ron Launius',1,3),(4997,14406,'Sharon Holmes',1,4),(4997,10866,'Eddie Nash',2,5),(4997,18979,'Susan Launius',1,6),(4997,4,'Sally Hansen',1,7),(4997,1462,'Billy Deverell',2,9),(4997,21197,'Joy Miller',1,10),(4997,3270,'Barbara Richardson',1,11),(4997,15854,'Sam Nico',2,12),(4997,19212,'Cherokee',2,13),(4997,22132,'Billy Ward',2,14),(4997,59233,'Jack',2,15),(4997,966742,'Alexa',1,16),(4997,1528739,'Reporter',0,17),(4997,3218,'Slim Jim',2,18),(925,1004,'Sal',2,0),(925,15531,'Da Mayor',2,1),(925,15532,'Mother Sister',1,2),(925,6396,'Vito',2,3),(925,4808,'Buggin Out',2,4),(925,5281,'Mookie',2,5),(925,5502,'Radio Raheem',2,6),(925,1241,'Pino',2,7),(925,15534,'ML',2,8),(925,13936,'Coconut Sid',2,9),(925,15535,'Sweet Dick Willie',2,10),(925,13602,'Jade',1,11),(925,30488,'Officer Ponte',2,12),(925,128597,'Officer Long',0,13),(925,47879,'Clifton',2,14),(925,2231,'Mister Seu00f1or Love Daddy',2,15),(925,4810,'Tina',1,16),(925,40377,'Smiley',2,17),(925,15536,'Ahmad',2,18),(925,78029,'Cee',2,19),(925,15537,'Punchy',2,20),(925,1736531,'Ella',1,21),(925,7164,'Charlie',2,22),(925,162339,'Stevie',0,23),(925,1880160,'Eddie',0,24),(925,42296,'Louise',1,25),(925,4025,'Sonny',2,26),(925,96538,'Kim',0,27),(925,1880161,'Korean Child',0,28),(925,1327735,'Puerto Rican Icee Man',0,29),(925,1880162,'Rosa',0,30),(925,1880163,'Stevie\'s Friends',0,31),(925,1880164,'Stevie\'s Friends',0,32),(925,1645223,'Stevie\'s Friends',2,33),(925,222487,'Stevie\'s Friends',2,34),(925,1880165,'Hector',0,35),(925,1675606,'Sergeant',0,36),(925,1880166,'Plainclothes Detective',0,37),(925,1880167,'Double Dutch Girl',0,38),(925,1880171,'Double Dutch Girl',0,39),(925,1880169,'Double Dutch Girl',0,40),(925,1880170,'Double Dutch Girl',0,41),(979,28782,'Alex',1,0),(979,1925,'Marcus',2,1),(979,14606,'Pierre',2,2),(979,14610,'Le Tenia',2,3),(979,5444,'Philippe',2,4),(979,14611,'Stu00e9phane',0,5),(979,14612,'Fistman',2,6),(979,14613,'Mourad',0,7),(979,577431,'Mick',2,8),(979,1414268,'Layde',0,9),(979,1414269,'Commissaire',0,10),(979,1414270,'Chauffeur Taxi',0,11),(7913,52763,'DJ',2,0),(7913,53672,'Sonia',1,1),(7913,53673,'Sue',0,2),(7913,53674,'Sukhi',2,3),(7913,53675,'Aslam',2,4),(7913,53676,'Laxman Pandey',2,5),(7913,85519,'Ajay Rathod',2,6),(7913,108216,'Karan Singhania',2,7),(7913,35777,'Mitro',1,8),(215,2144,'Jigsaw',2,0),(215,2138,'Amanda',1,1),(215,2680,'Eric Matthews',2,2),(215,2682,'Xavier',0,3),(215,2683,'Jonas',2,4),(215,2685,'Laura',1,5),(215,2133,'Kerry',1,6),(215,2684,'Addison',1,7),(215,2681,'Daniel Matthews',0,8),(215,2686,'Obi',2,9),(215,2687,'Rigg',2,10),(215,33668,'Michael',2,11),(215,76528,'Gus',2,12),(215,76529,'SWAT Member Pete',0,13),(215,76530,'SWAT Member Joe',0,14),(9012,9656,'Himself',2,0),(9012,56584,'Himself',2,1),(9012,56585,'Himself',2,2),(9012,56586,'Himself',2,3),(9012,86627,'Himself',2,4),(9012,110068,'Himself',2,5),(9012,76365,'Himself',2,6),(9012,78840,'Wee Man',2,7),(9012,220241,'Himself',2,8),(9012,117289,'Himself',2,9),(9012,117261,'Himself',2,10),(9012,117287,'Herself',1,11),(9012,117260,'Himself',2,12),(9012,164944,'Herself',1,13),(9012,61441,'Himself',2,14),(9012,1692535,'Himself',2,15),(9012,117259,'Himself',2,16),(9012,117256,'Himself',2,17),(9012,1211925,'Himself',2,18),(9012,16832,'Himself',2,19),(9012,1225764,'Himself',2,20),(9012,5953,'Himself',2,21),(9012,56578,'Himself',2,22),(9012,61437,'Himself',2,23),(9012,56580,'Himself',0,24),(9012,37438,'Himself',2,25),(9012,1692541,'Himself',2,26),(9012,1692536,'Himself',0,27),(9012,229077,'Himself',2,28),(9012,1713573,'Himself',0,29),(9012,9290,'Himself',2,30),(9012,232999,'Himself',0,31),(504,6885,'Aileen',1,0),(504,6886,'Selby',1,1),(504,6905,'Thomas',1,2),(504,6906,'Vincent Corey',2,3),(504,6907,'Donna',1,4),(504,6908,'Will/Daddy John',2,5),(504,6909,'Lawyer',0,6),(504,6910,'Bartender',0,7),(504,95749,'Justy',1,8),(504,6914,'Horton/Last John',2,9),(173,2090,'Ned Land',2,0),(173,2091,'Captain Nemo',2,1),(173,2092,'Prof. Pierre Arronax',2,2),(173,2094,'Conseil',2,3),(173,2096,'First Mate of the Nautilus',2,4),(173,2097,'Capt. Farragut',2,5),(173,2098,'John Howard',2,6),(173,2099,'Billy',0,7),(173,2101,'Coach Driver',0,8),(173,2102,'Mate on \'Lincoln\'',2,9),(173,1239950,'Blonde Girlfriend (uncredited)',0,10),(173,161766,'Sailor (uncredited)',2,11),(173,111827,'Casey Moore (uncredited)',2,12),(173,93628,'Ticket Agent (uncredited)',2,13),(173,28164,'Drummer Boy (uncredited)',2,14),(173,2110,'Minister in San Francisco Steam Packet office (uncredited)',2,15),(173,81284,'Shipping Agent (uncredited)',2,16),(173,1034935,'Reporter from The Post (uncredited)',2,17),(173,91218,'Nautilus Seaman (uncredited)',2,18),(173,1120620,'Police Detective (uncredited)',2,19),(1955,4173,'Dr. Frederick Treves',2,0),(1955,5049,'John Merrick',2,1),(1955,10774,'Mrs. Kendal',1,2),(1955,11857,'Carr Gomm',2,3),(1955,13325,'Mothershead',1,4),(1955,12517,'Bytes',2,5),(1955,1821,'Night Porter',2,6),(1955,11282,'Dr. Fox',2,7),(1955,3930,'Merrick\'s Mother',1,8),(1955,130,'Plumed Dwarf',2,9),(1955,643171,'Princess Alex',0,10),(1955,11282,'Fox',2,11),(1955,974,'Bytes\' Boy',2,12),(1955,47864,'Nora',1,13),(1955,1230584,'Fairground Bobby',2,14),(1955,1218876,'Fat lady',1,15),(1955,912036,'Skeleton Man',0,16),(1955,158278,'Patsy Smart',1,17),(1955,99905,'Lady Waddington',1,18),(1955,938390,'Man In Pub',0,19),(1955,159159,'Mrs. Anne Treves',0,20),(1955,47545,'Alderman',0,21),(1955,1238976,'Hodges',0,22),(1955,109993,'Messenger',0,23),(1955,159057,'Cabman',2,24),(1955,1515418,'Cook',0,25),(1955,1448418,'Nurse Kathleen',0,26),(1955,109372,'Young Porter',2,27),(1955,1271066,'Milkman',2,28),(1955,133222,'1st Fighting Woman',0,29),(1955,1225742,'Tart',0,30),(1955,1231604,'Broadneck',0,31),(1955,1243569,'1st Committee Man',0,32),(1955,1532470,'Mrs. Kendal\'s Dresser',1,33),(1955,224018,'Lord Waddington',0,34),(1955,27822,'Man With Whores',2,35),(1955,186025,'1st Whore',0,36),(1955,227751,'2nd Whore',1,37),(1955,1183443,'Midget',0,38),(1955,1514728,'Siamese Twin',0,39),(1955,207310,'Japanese Bleeder',0,40),(1955,175977,'Screaming Mum',1,41),(1955,1524886,'First Bobby',0,42),(1955,1446669,'Second Bobby',0,43),(1955,1328618,'King In Panto',2,44),(1955,1398385,'Horse',0,45),(1955,186053,'Merrick\'s Mother',0,46),(1955,32477,'Lyra Box Player #1 (uncredited)',0,47),(1955,32478,'Lyra Box Player #2 (uncredited)',0,48),(1955,202402,'Policeman (uncredited)',2,49),(1955,5602,'Man in the Bowler Hat in the Mob Chasing Merrick (uncredited)',2,50),(1955,1230662,'Young aristocrat (uncredited)',0,51),(1955,1271131,'Injured Man (uncredited)',0,52),(77,529,'Leonard',2,0),(77,530,'Natalie',1,1),(77,532,'Teddy Gammell',2,2),(77,534,'Burt',2,3),(77,537,'Sammy',2,4),(77,538,'Mrs. Jankis',1,5),(77,540,'Dodd',2,6),(77,544,'Jimmy',2,7),(77,536,'Leonard\'s Wife',1,8),(77,535,'Waiter',2,9),(77,539,'Doctor',2,10),(77,542,'Blonde',1,11),(77,543,'Tattooist',1,12),(2295,23629,'Dante',2,0),(2295,23630,'Randall',2,1),(2295,19302,'Jay',2,2),(2295,19303,'Silent Bob',2,3),(2295,5916,'Becky',1,4),(2295,23658,'Emma',0,5),(2295,880,'Gawking Guy',2,6),(2295,23740,'Elias',2,7),(2295,20503,'Concerned Father',2,8),(2295,11662,'Lance Dowds',2,9),(2295,177165,'Teen #1',2,10),(2295,824,'Teen #2',2,11),(2295,576173,'Kid in Window',1,12),(2295,149670,'Hobbit Lover',2,13),(2295,27102,'Wife',0,14),(2295,140909,'Sexy Stud',2,15),(2295,24362,'Cop',2,16),(2295,1561014,'Dancer',1,17),(2295,23633,'Pack-o-Smokes Guy',2,18),(2295,60277,'Husband',2,19),(2295,280714,'Milk Lady',0,20),(71,478,'Billy Elliot',2,0),(71,477,'Mrs. Wilkinson',1,1),(71,481,'Grandmother',1,2),(71,479,'Tony Elliot',2,3),(71,480,'Jackie Elliot',2,4),(71,21345,'Ballet Doctor',2,5),(71,8979,'Principal',2,6),(71,482,'Michael Caffrey',2,7),(71,195254,'Geography Teacher',1,8),(71,20494,'Sandra',1,9),(71,483,'Debbie Wilkinson',0,10),(71,487,'Billy\'s mother',0,11),(71,107381,'Gary Poulson',0,12),(71,116991,'Mr. Tom Wilkinson',2,13),(71,938824,'PC Jeff Peverly',0,14),(71,1041491,'Sheila Briggs',0,15),(71,8228,'Vice-Principal',1,16),(2895,3087,'Euliss Dewey',2,0),(2895,879,'Troublemaker',2,1),(2895,28767,'Mrs. Dewey Sr.',1,2),(2895,28768,'Jessie Dewey',1,3),(2895,8436,'Toosie',1,4),(2895,21484,'Horace',2,5),(2895,27740,'Sam',2,6),(2895,71563,'Joe',2,7),(2895,154004,'Latin Translator',1,8),(8346,54645,'Toula',1,0),(8346,38405,'Ian Miller',2,1),(8346,53647,'Maria Portokalos',1,2),(8346,14884,'Gus Portokalos',2,3),(8346,8263,'Aunt Voula',1,4),(8346,54651,'Angelo',2,5),(8346,54649,'Nick Portokalos',2,6),(8346,14226,'Cousin Nikki',1,7),(8346,54646,'Toula as child',0,8),(8346,54647,'Toula Teenager',0,9),(8346,54650,'Uncle Taki',2,10),(8346,54648,'Yiayia',1,11),(8346,4568,'Mrs. White',1,12),(8346,54652,'Harriet Miller',1,13),(8346,5945,'Rodney Miller',2,14),(8346,1202716,'Suitor',0,15),(1391,258,'Julio Zapata',2,0),(1391,8688,'Tenoch Iturbide',2,1),(1391,16971,'Luisa Cortu00e9s',1,2),(1391,17088,'Ana Morelos',0,3),(1391,224320,'Silvia Allende de Iturbide',1,4),(1391,7375,'Maru00eda Eugenia Calles de Huerta',1,5),(1391,229615,'Cecilia Huerta',1,6),(1391,947768,'Diego \'Saba\' Madero',0,7),(1391,263,'Miguel Iturbide',2,8),(1391,1733304,'Manuel Huerta',0,9),(1391,1733306,'Nicole Bazaine',0,10),(1391,90265,'Esteban Morelos',0,11),(1391,139590,'Enriqueta \'Queta\' Allende',1,12),(1391,1186821,'Alejandro \'Jano\' Montes de Oca',0,13),(1391,1473386,'Leodegaria \'Leo\' Victoria',0,14),(1391,105843,'Jesu00fas \'Chuy\' Carranza',2,15),(1391,17687,'Mabel Juu00e1rez de Carranza',0,16),(1391,1603,'Narrator (voice)',2,17),(1391,1733307,'Christian Carranza',0,18),(1391,1244075,'Lucero Carranza',0,19),(747,11108,'Shaun',2,0),(747,11109,'Ed',2,1),(747,11110,'Liz',1,2),(747,11111,'Dianne',1,3),(747,7028,'David',2,4),(747,11115,'Pete',2,5),(747,28847,'Noel',2,6),(747,1249,'Barbara',1,7),(747,2440,'Phillip',2,8),(747,34551,'Mark',2,9),(747,47730,'Yvonne',1,10),(747,7060,'Declan',2,11),(747,120931,'Maggie',1,12),(747,11117,'John',0,13),(747,11116,'Mary',0,14),(747,1445662,'Nelson',0,15),(747,1445663,'Snakehips',0,16),(747,26209,'Cousin Tom',2,17),(747,81129,'Chris Martin',2,18),(747,211413,'Hulking Zombie',0,19),(747,1215808,'Trisha Goddard',0,20),(747,1778224,'Jeremy Thompson',0,21),(9900,1817,'Samantha',1,0),(9900,20818,'Alex',2,1),(9900,20819,'Dante',2,2),(9900,28778,'Bea',1,3),(9900,59231,'J.P.',2,4),(9900,58478,'Mr. Cheezle',2,5),(9900,45863,'Grandma Lilly',1,6),(9900,60158,'Grace',1,7),(9900,32907,'Jeff',2,8),(9900,21007,'Barry',2,9),(9900,51997,'Kane',2,10),(9900,60159,'Dan',0,11),(9900,2225,'Mover #1',2,12),(9900,60160,'Bobby, Co-Worker #1',2,13),(9900,60162,'Pamela Mills',0,14),(9900,60161,'Milk Maid',0,15),(9900,60163,'Businessman',0,16),(9900,60165,'Best Man',0,17),(9900,60166,'DJ',0,18),(9900,60164,'Party Guy',0,19),(9900,1202550,'Party Girl (uncredited)',0,20),(9900,60949,'Yuri',2,21),(335,4958,'Frank',2,0),(335,4959,'Jill McBain',1,1),(335,4765,'Cheyenne',2,2),(335,4960,'Harmonica',2,3),(335,4961,'Morton (railroad baron)',2,4),(335,4962,'Sam',2,5),(335,4963,'Stony (member of Frank\'s gang)',2,6),(335,4965,'Snaky (member of Frank\'s gang)',2,7),(335,4966,'Sheriff',2,8),(335,4968,'Brett McBain',0,9),(335,4969,'Barman',2,10),(335,129314,'Knuckles - Member of Frank\'s Gang (uncredited)',2,11),(335,49895,'Cheyenne\'s Lieutenant (uncredited)',2,12),(335,21181,'Member of Frank\'s Gang with Black Hat at Auction (uncredited)',2,13),(3028,29709,'Dr. Jekyll/Mr. Heyde',2,0),(3028,29710,'Mary Carew',1,2),(3028,29711,'Ivy',0,3),(3028,29712,'Dr. Lanyon',2,4),(3028,29713,'Dr. Carew',2,5),(3028,29714,'Queen',0,6),(3028,44810,'Busty Nurse',1,8),(3028,7074,'Hubert Howes',2,9),(3028,1239218,'Female Student',0,10),(3028,1211997,'Mrs. Larson',1,11),(3028,66606,'Injured Man',2,12),(3028,103231,'Madame Woo Woo',1,13),(3028,29508,'Child in Supermarket',2,14),(3028,44792,'Clock Repairman',2,15),(3028,7401,'Nurse with Telegram',1,16),(3028,24880,'Himself',2,17),(3028,19754,'Lawn Jockey #1',2,18),(1024,15091,'Pauline Parker Rieper',1,0),(1024,204,'Juliet Hulme',1,1),(1024,15092,'Honorah Parker Rieper',1,2),(1024,15093,'Herbert Rieper',2,3),(1024,15094,'Hilda Hulme',1,4),(1024,5475,'Dr. Henry Hulme',2,5),(1024,15095,'Dr. Bennett',0,6),(1024,173451,'John',0,7),(1024,1085972,'Miss Stewart',0,8),(1024,1238424,'Bill Perry',2,9),(1024,11334,'Miss Waller',1,10),(1024,1326,'Mrs. Collins',1,11),(1024,116961,'Orson Welles',0,12),(1024,1439931,'Charles',2,13),(4553,3894,'Trevor Reznik',2,0),(4553,10431,'Stevie',1,1),(4553,37946,'Marie',1,2),(4553,36900,'Ivan',2,3),(4553,11086,'Miller',2,4),(4553,37947,'Jackson',2,5),(4553,38950,'Tucker',0,6),(4553,38951,'Jones',2,7),(4553,8227,'Mrs. Shike',1,8),(4553,38952,'Nicholas',2,9),(4553,38953,'Reynolds',0,10),(4553,1402327,'Supervisor Furman',0,11),(1415,13922,'James St. James',2,0),(1415,11510,'Michael Alig',2,1),(1415,2838,'Gitsy',1,2),(1415,2958,'Elke',1,3),(1415,9315,'Christina',2,4),(1415,32597,'Peter Gatien',2,5),(1415,18975,'Kioki',2,6),(1415,32598,'The Rat',2,7),(1415,18658,'Natasha',1,8),(1415,10871,'Brooke',1,9),(1415,32599,'Freez',2,10),(1415,32600,'Talk Show Host',2,11),(8744,2876,'Dova',2,0),(8744,6450,'Janet Boudreaux',1,1),(8744,33,'Milo',2,2),(8744,886,'Law',2,3),(8744,110,'Guy Foucard',2,4),(8744,34691,'Jack',2,5),(8744,22108,'Danny Boudreaux',2,6),(8744,13936,'Agent Marv Rose',2,7),(8744,58692,'Jenny Ferguson',0,8),(8744,588,'Dino',2,9),(8744,3266,'A.T.F. Agent G.D. Browning',2,10),(8847,56080,'Himself',0,0),(8847,56081,'Himself',0,1),(8847,56082,'Himself',0,2),(8847,56083,'Himself',0,3),(8847,56084,'Herself',0,4),(8847,56085,'Himself',0,5),(8847,56086,'Herself',0,6),(8847,56087,'Herself',0,7),(8847,56088,'Himself',0,8),(8847,56089,'Himself',0,9),(8847,56090,'Himself',0,10),(8847,56091,'Himself',0,11),(1690,19487,'Paxton',2,0),(1690,33934,'Josh',2,1),(1690,33935,'Oli',2,2),(1690,33936,'Natalya',1,3),(1690,33937,'Svetlana',0,4),(1690,33938,'The Dutch Businessman',2,5),(1690,33939,'Alex',0,6),(1690,17282,'Miike Takashi',0,7),(1690,1265216,'Yuki',0,9),(1690,1265217,'Vala',0,10),(1690,1216133,'The American Client',2,11),(1690,1265218,'The German Surgeon',0,12),(1690,1154564,'Kana',1,13),(1690,16847,'American Stoner',2,14),(1690,1172639,'The Butcher',0,15),(8435,4581,'Tristram Shandy / Walter Shandy / himself',2,0),(8435,47632,'Capt. Toby Shandy / himself',2,1),(8435,22809,'Elizabeth Shandy / herself',1,2),(8435,1834,'Susannah / herself',1,3),(8435,584994,'Trim',2,4),(8435,55400,'Tristam Shandy, 6 years',0,5),(8435,55401,'Tristam Shandy, 9 years',0,6),(8435,200365,'Obadiah',0,7),(8435,95259,'London doctor',2,8),(8435,7028,'Dr Slop',2,9),(8435,45587,'Surgeon',2,10),(8435,80536,'Parson',2,11),(8435,18325,'Mark',2,12),(8435,30082,'Ed',2,13),(8435,2038,'Jennie',1,14),(8435,86477,'Make-up Assistant',1,15),(8435,9015,'Jenny',1,16),(8435,1240511,'Leo',0,17),(8435,42998,'Debbie',1,18),(8435,20999,'Ingoldsby',2,19),(8435,1344638,'Sandy',0,20),(8435,1241692,'Himself',2,21),(8435,207040,'Tony\'s Director',1,22),(8435,176,'Gary',2,23),(8435,11279,'Adrian',2,24),(8435,55398,'Lindsey',1,25),(8435,10726,'Simon',2,26),(8435,10985,'Joe',2,27),(8435,47723,'Anita',1,28),(8435,16700,'Greg',2,29),(8435,1344639,'Prop Guy',0,30),(8435,11275,'Patrick Curator / Parson Yorick',2,31),(8435,3902,'Joanna',1,32),(8435,12214,'Widow Wadman / Herself',1,33),(8435,1344640,'New York Times Reporter',0,35),(8435,14344,'Sound Mixer',2,36),(8435,151949,'Rachel',1,37),(8435,1344641,'Fire Dancer',0,38),(8435,1344642,'Playing Film Crew',0,39),(8435,1344643,'Redcoat Officer',0,40),(8435,133668,'Midwife',1,41),(8981,17276,'The Stranger',2,0),(8981,1246,'Lizzie',1,1),(8981,3065,'Frankie',2,2),(8981,3294,'Marie',1,3),(8981,56471,'Miss MacKenzie',1,4),(8981,1391414,'Catriona',1,5),(8981,56473,'Nell',1,6),(8981,107380,'Davey',2,7),(8981,1602370,'Ally',2,8),(8981,3077,'Janet',0,9),(8981,56476,'Waitress',1,10),(8981,56472,'Serious Girl',0,11),(8981,1543046,'Librarian',1,12),(8981,119101,'Post Office Clerk',2,13),(9336,26472,'Cadet Carey Mahoney',2,0),(9336,2109,'Cadet Karen Thompson',1,1),(9336,27237,'Lt. Thaddeus Harris',2,2),(9336,57349,'Cadet Moses Hightower',2,3),(9336,57350,'Cadet Leslie Barbara',2,4),(9336,57351,'Cmndt. Eric Lassard',2,5),(9336,57352,'Cadet George Martu00edn',2,6),(9336,57353,'Cadet Eugene Tackleberry',2,7),(9336,22252,'Sgt. Debbie Callahan',1,8),(9336,14672,'Cadet Larvelle Jones',2,9),(9336,57354,'Mrs. Fackler',0,10),(9336,57356,'Cadet Douglas Fackler',2,11),(9336,57357,'Capt. Reed',2,12),(9336,9997,'Cadet Chad Copeland',2,13),(9336,57358,'Cadet Kyle Blankes',2,14),(9336,186816,'Laverne Hooks',1,15),(9336,1351508,'Booking Sergeant',0,16),(9336,127037,'Mrs. Thompson',1,17),(9336,103769,'Hooker',1,18),(5689,15110,'Emmeline',1,0),(5689,42740,'Richard',2,1),(5689,7192,'Paddy Button',2,2),(5689,10775,'Arthur Lestrange',0,3),(5689,44841,'Lookout',0,4),(5689,44843,'Officer',2,6),(5689,136853,'Young Emmeline',1,7),(5689,136854,'Young Richard',2,8),(5689,1037039,'Little Paddy',2,9),(5689,1296157,'Infant Paddy',0,10),(5689,136855,'Sailor',0,11),(5689,136856,'Sailor',0,12),(5689,136857,'Sailor',0,13),(712,3291,'Charles',2,0),(712,1533,'Carrie',1,1),(712,10726,'Tom',2,2),(712,4001,'Gareth',2,3),(712,10727,'Matthew',2,4),(712,5470,'Fiona',1,5),(712,10728,'David',2,6),(712,10729,'Scarlett',1,7),(712,10730,'Father Gerald',2,8),(712,10731,'Henrietta',1,9),(712,10736,'Angus',0,10),(712,117557,'Laura',1,11),(712,1075073,'Vicar',0,12),(712,151439,'Laura\'s Mother',0,13),(712,189281,'Laura\'s Father',2,14),(712,2479,'George the Boor at The Boatman',2,15),(712,141354,'Frightful Folk Duo',1,16),(712,137927,'Best Man',2,17),(712,26717,'Bernard the Groom - Wedding Two',2,18),(712,32990,'Lydia the Bride - Wedding Two',1,19),(712,13328,'Hamish - Wedding Two',2,20),(712,1220019,'Naughty Nicki - Wedding Two',0,21),(712,10731,'Henrietta - Wedding Two',1,22),(712,70961,'Shop Assistant - Wedding Two',1,23),(712,135180,'Lord Hibbott - Wedding Two',2,24),(712,55037,'Sir John Delaney - Wedding Two',2,25),(712,1229281,'Vicar - Wedding Three',2,26),(712,137927,'Best Man - Wedding Three',2,27),(712,210169,'Miss Piggy - Wedding Two',0,28),(1429,819,'Monty Brogan',2,0),(1429,1233,'Jacob Elinsky',2,1),(1429,12834,'Frank Slaughtery',2,2),(1429,5916,'Naturelle Riviera',1,3),(1429,10690,'Mary D\'Annuzio',1,4),(1429,1248,'James Brogan',2,5),(1429,27036,'Kostya Novotny',2,6),(1429,27037,'Uncle Nikolai',2,7),(1429,1255887,'Senka Valghobek',0,8),(1429,17490,'Agent Flood',2,9),(1429,51865,'Agent Cunningham',0,10),(1429,543256,'Khari',2,11),(1429,122546,'Salvatore Dominick',0,12),(1429,11022,'Marcuse',2,13),(1429,37046,'Daphne',1,14),(1429,1567422,'Dasha',0,15),(1429,1214165,'Coventry Administrator',1,16),(1429,207297,'Agent Allen',0,17),(9303,7906,'Violet',1,0),(9303,11150,'Corky',1,1),(9303,532,'Caesar',2,2),(9303,15213,'Mickey Malnato',2,3),(9303,22227,'Johnnie Marzzone',2,4),(9303,21544,'Gino Marzzone',0,5),(9303,96554,'Sue, Bartender',1,6),(9303,1429026,'Jesse',0,7),(9303,1218682,'Woman Cop',1,8),(9303,152345,'Shelly',2,9),(9303,9659,'Lou',2,10),(9303,11891,'Cop #1',0,11),(9303,24362,'Cop #2',2,12),(9303,152638,'Roy',2,13),(641,9560,'Sara Goldfarb',1,0),(641,7499,'Harry Goldfarb',2,1),(641,6161,'Marion Silver',1,2),(641,9562,'Tyrone C. Love',2,3),(641,4443,'Tappy Tibbons',2,4),(641,9565,'Ada',1,5),(641,14548,'Rae',1,6),(641,171117,'Mrs. Pearlman',0,7),(641,11484,'Mrs. Scarlini',1,8),(641,1173,'Mr. Rabinowitz',2,9),(641,1402326,'Mrs. Ovadia',0,10),(641,1081123,'Mrs. Miles',0,11),(641,15415,'Dr. Pill',2,12),(641,23970,'Tyrone\'s Mother',1,13),(641,53937,'Malin & Block Secretary',1,14),(641,6437,'Dr. Spencer',2,15),(641,65827,'Big Tim',2,16),(641,19152,'Southern Doctor',2,17),(641,76764,'Court Doctor',2,18),(641,6431,'Visitor',2,19),(641,189128,'Angelic Nurse',0,20),(641,1163066,'Uncle Hank',0,21),(641,84106,'Big Tim Party Girl',0,22),(641,67581,'Big Tim Party Girl',1,23),(641,122545,'E.R. Doctor',2,24),(641,140409,'Ward Attendant Seto',0,25),(641,15442,'Prison Guard',2,26),(6106,4512,'Richard Boyle',2,0),(6106,26485,'Doctor Rock',2,1),(6106,4776,'Ambassador Thomas Kelly',2,2),(6106,47879,'John Cassady',2,4),(6106,41737,'Major Maximilliano Casanova',2,5),(6106,47881,'Jack Morgan',2,6),(6106,47882,'Cathy Moore',1,7),(6106,47883,'Colonel Bentley Hyde Sr.',2,8),(6106,47884,'Pauline Axelrod',1,9),(6106,47885,'Archbishop Romero',2,10),(6106,47886,'COlonel Julio Figueroa',2,11),(6106,1607,'Army Lieutenant',2,12),(6106,47888,'Human Rights Assistant',0,13),(6106,1102,'Maria',1,14),(6106,1070128,'Human Rights Leader',0,15),(141,131,'Donnie Darko',2,0),(141,20089,'Gretchen Ross',1,1),(141,723,'Jim Cunningham',2,2),(141,1579,'Elizabeth Darko',1,3),(141,69597,'Karen Pomeroy',1,4),(141,5151,'Kitty Farmer',1,5),(141,1578,'Eddie Darko',2,6),(141,1580,'Samantha Darko',1,7),(141,1581,'Mrs. Rose Darko',1,8),(141,1582,'Frank',2,9),(141,1583,'Dr. Fisher',2,10),(141,9594,'Dr. Lilian Thurman',0,11),(141,1585,'Roberty Sparrow / Grandma Death',1,12),(141,1598,'Bob Garland',2,13),(141,1599,'Joanie James',0,14),(141,20088,'Cherita Chen',1,15),(141,20090,'Principal Cole',2,16),(141,13526,'Prof. Kenneth Monnitoff',2,17),(141,20091,'Susie Bates',1,18),(141,20092,'Emily Bates',1,19),(141,20093,'David',2,20),(141,10383,'Anne Fisher',1,21),(141,20094,'Sean Smith',0,22),(141,20095,'Seth Devlin',0,23),(141,156011,'Ronald Fisher',2,24),(141,85097,'Mystery Woman',1,25),(141,19274,'Ricky Danforth',2,26),(141,1584,'Police Officer',0,27),(4550,64880,'Mr. Baek',2,0),(4550,25001,'Lee Geum-ja',1,1),(4550,1117876,'Jenny',0,2),(4550,1256494,'Ma-nyeo',0,4),(4550,570303,'So-young Woo',1,5),(4550,39258,'Prison Head',2,6),(4550,554330,'Yi-jeong Park',0,7),(4550,1117877,'Prison Officer',0,8),(4550,77188,'Mr. Chang',2,9),(4550,1299313,'Preacher',2,10),(4550,1299317,'TV Announcer',1,11),(4550,1299277,'Detective Choi',0,12),(4550,1299313,'jeon-do-sa',2,14),(4550,980225,'Oh Su-hee',1,16),(4550,1255409,'Geun-shik',0,17),(4550,150697,'Woo So-young\'s husband',2,18),(4550,20738,'assassin 1',2,19),(4550,25004,'assassin 2',0,20),(9991,980,'Danny Meehan',2,0),(9991,1282,'Doc',2,1),(9991,15196,'Governor',2,2),(9991,53916,'Burton',2,3),(9991,995,'Massive',2,4),(9991,1119,'Trojan',0,5),(9991,6969,'Ratchett',2,6),(9991,61584,'Sykes',2,7),(9991,9144,'Tracey',1,8),(9991,41042,'Billy the Limpet',2,9),(9991,973,'Bob Likely',2,10),(9991,976,'Monk',2,11),(9991,61585,'Z',0,12),(9991,53678,'Barman',2,13),(9991,61586,'Second Barman',0,14),(9991,61587,'Policeman',0,15),(9991,61588,'Policeman',0,16),(9991,61589,'Hayter',0,17),(9991,39681,'Nitro',2,18),(9991,17357,'Ketch',2,19),(9991,1833,'Chiv',2,20),(9991,2302,'Mouse',2,21),(9991,1211865,'Cigs',0,22),(9991,1473866,'Jerome McFife',2,23),(510,514,'Randle Patrick McMurphy',2,0),(510,7071,'Nurse Mildred Ratched',1,1),(510,518,'Martini',2,2),(510,7072,'Harding',2,3),(510,7077,'Orderly Turkle',2,4),(510,1370,'Billy Bibbit',2,5),(510,1062,'Taber',2,6),(510,68301,'Chief Bromden',2,7),(510,7075,'Dr. John Spivey',2,8),(510,7073,'Ellis',2,9),(510,7085,'Charlie Cheswick',2,10),(510,7079,'Jim Sefelt',2,11),(510,3418,'Fredrickson',2,12),(510,7074,'Col. Matterson',2,13),(510,7076,'Miller',2,14),(510,7078,'Warren',0,15),(510,7080,'Bancini',0,16),(510,7083,'Beans Garfield',0,17),(510,7082,'Washington',2,18),(510,136195,'Hap Arlich',2,19),(510,100560,'Rose',1,20),(510,133774,'Candy',1,21),(510,276531,'Scanlon',0,22),(510,7081,'Nurse Itsu',0,23),(510,1544194,'Nurse Pilbow',0,24),(510,7084,'Harbor Master',0,25),(510,7086,'Night Supervisor',1,26),(510,1544193,'Ellsworth',0,27),(510,1544288,'Ruckley',0,28),(510,9893,'Lady on Pier (uncredited)',1,29),(510,5657,'Woman in Crowd on Pier (uncredited)',1,30),(510,100601,'Actress on TV Screen (uncredited)',1,31),(510,1310,'Captain on Shore (uncredited)',2,32),(1088,15293,'Paikea Apirana',0,0),(1088,15294,'Koro',2,1),(1088,15295,'Nanny Flowers',1,2),(1088,7248,'Porourangi',2,3),(1088,15296,'Uncle Rawiri',0,4),(1088,15297,'Hemi',0,5),(1088,15298,'Shilo',1,6),(1088,7245,'Willie',0,7),(1088,15299,'Dog',1,8),(1088,15300,'Maka',0,9),(1088,15301,'Miro',0,10),(1088,15302,'Miss Parata',0,11),(3040,23440,'Anton Gorodetsky',0,0),(3040,23442,'Geser',2,1),(3040,23443,'Olga',0,2),(3040,23441,'Svetlana',1,3),(3040,23444,'Alice Donnikova',0,4),(3040,29832,'Zavulon',2,5),(3040,29843,'Daria',0,6),(3040,29847,'Yegor\'s Mother',0,7),(3040,31859,'Yegor',0,8),(3040,1190182,'Kostyau2019s Father',0,9),(3040,29848,'Larisa',0,10),(3040,31861,'Tiger',0,11),(3040,31899,'Andrej',0,12),(3040,29839,'Ignat',2,13),(3040,101433,'Kostja',0,14),(3040,29838,'Bear',0,15),(3040,29837,'Simeon',0,16),(3040,83831,'',2,17),(153,1532,'Bob Harris',2,0),(153,1245,'Charlotte',1,1),(153,1772,'Kelly',1,2),(153,1771,'John',2,3),(153,1770,'Ms. Kawasaki',0,4),(153,1773,'Press Agent',0,5),(153,1774,'Press Agent',0,6),(153,1775,'Press Agent',0,7),(153,1785,'Charlie',2,8),(153,1786,'Hiroko',1,9),(153,1787,'Bambie',0,10),(153,75491,'Jazz Singer',0,11),(153,1276607,'Commercial Director',0,12),(153,237167,'P Chan',0,13),(153,1185077,'Sausalito Piano',0,14),(153,496263,'American Businessman #1',0,15),(153,1165229,'Ikebana Instructor',0,16),(153,238826,'Doctor',0,18),(153,90159,'TV Host',2,19),(153,1020826,'Sexy Businesswoman',0,20),(153,5215,'Lydia Harris (voice) (uncredited)',1,21),(153,30562,'Hospital Receptionist',2,22),(703,1243,'Alvy Singer',2,0),(703,3092,'Annie Hall',1,1),(703,10555,'Rob',2,2),(703,10556,'Allison',1,3),(703,10557,'Tony Lacey',2,4),(703,10409,'Pam',0,5),(703,10558,'Robin',1,6),(703,10559,'Mrs. Hall',1,7),(703,4690,'Duane Hall',2,8),(703,10560,'Dad Hall',2,9),(703,1462345,'Man in Theatre Line',0,10),(703,10565,'Dick Cavett',2,11),(703,10566,'Marshall McLuhan',0,12),(703,821,'Actress in Rob\'s TV Show',1,13),(703,3801,'Actor in Rob\'s TV Show',2,14),(703,10205,'Alvy\'s Date Outside Theatre',1,15),(703,97352,'Tony Lacey\'s Girlfriend',1,16),(703,1820,'Navy Officer',2,17),(703,5589,'Actor Boy Friend',2,18),(703,85869,'L.A. Policeman',2,19),(703,100614,'Lacey Party Guest',2,20),(703,734,'Street Stranger',1,21),(703,3665,'Street Stranger',1,22),(703,4785,'Lacey Party Guest',2,23),(703,136220,'Man at Health Food Restaurant',0,24),(703,6835,'Annie\'s Date Outside Theatre',2,25),(703,1217974,'Joey Nichols (as Hy Ansel)',2,26),(703,10562,'Alvy\'s Dad',2,27),(703,10563,'Alvy\'s Mom (as Joan Newman)',1,28),(703,10564,'Alvy - Age 9',2,29),(703,10561,'Grammy Hall',1,30),(703,1726163,'Alvy\'s Aunt',0,31),(703,1726165,'Alvy\'s Uncle',0,32),(703,940121,'Aunt Tessie',1,33),(703,437104,'Alvy\'s Psychiatrist',2,34),(703,930719,'Annie\'s Psychiatrist',0,35),(703,1547026,'Janet',0,36),(703,142244,'Miss Reed',1,37),(703,1237366,'Dorrie',1,38),(703,28006,'Coke Fiend',0,39),(703,1228161,'Doctor',0,40),(703,1726176,'Comedian at Rally',0,41),(703,1726177,'Maharishi',0,42),(703,151695,'Comic',2,43),(703,1726179,'Comic\'s Agent',0,44),(703,1930,'Truman Capote Look-Alike (uncredited)',2,45),(703,1434006,'College Audience (uncredited)',0,46),(703,1407717,'Usher (uncredited)',0,47),(1365,4587,'Leticia Musgrove',1,0),(1365,879,'Hank Grotowski',2,1),(1365,1810,'Sonny Grotowski',2,2),(1365,16450,'Lawrence Musgrove',2,3),(1365,16451,'Tyrell Musgrove',0,4),(1365,1039,'Buck Grotowski',2,5),(1365,16452,'Lucille',0,6),(1365,16453,'Betty',0,7),(1365,16454,'Vera',0,8),(1365,4239,'Ryrus Cooper',2,9),(1365,16455,'Darryl Cooper',0,10),(1365,16456,'Willie Cooper',2,11),(1365,16457,'Dappa Smith',0,12),(1365,16458,'Georgia Ann Paynes',0,13),(1365,16459,'Harvey Shoonmaker',2,14),(1365,16460,'Phil Huggins',2,15),(1365,16447,'Tommy Roulaine',2,16),(1365,60879,'Deputy Jones',2,17),(451,2963,'Ben Sanderson',2,0),(451,1951,'Sera',1,1),(451,6104,'Yuri',2,2),(451,6105,'Peter',2,3),(451,6106,'Marc Nussbaum',2,4),(451,6107,'Sheila',1,5),(451,6108,'Debbie',1,6),(451,6109,'Man At Bar',2,7),(451,3124,'Terri',1,8),(451,6110,'L.A. Bartender',2,9),(451,6240,'Hooker at bar',1,10),(451,12133,'Landlady',1,11),(451,2138,'Biker Girl',1,12),(451,52418,'Hotel Manager',2,13),(987,3151,'Hildebrand Johnson',2,0),(987,6837,'Walter Burns/Otto Fishbine',2,1),(987,4038,'Peggy Grant',1,2),(987,14830,'\'Honest Pete\' Hartman Sheriff of Clark County',2,3),(987,14831,'Roy Bensinger of the Tribune',2,4),(987,922,'Kruger',2,5),(987,6168,'Earl Williams',2,6),(987,1466,'Murphy',2,7),(987,14832,'Schwartz',0,8),(987,6931,'Dr. Max J. Eggelhofer',2,9),(987,14833,'The Mayor/Herbie/Green Hornet',2,10),(987,14834,'Officer Jacobi',2,11),(987,14835,'McHugh',2,12),(987,14836,'Rudy Keppler of the Chicago Examiner',0,13),(987,14837,'Mollie Malloy',0,14),(987,41243,'Plunkett',2,15),(987,30005,'Telegrapher',2,16),(987,1076602,'Myrtle',0,17),(987,41719,'Police Dispatcher',0,18),(987,160969,'Endicott',0,19),(987,19097,'Jennie',1,20),(987,1213215,'Wilson',0,21),(987,1217165,'Cab Driver',0,22),(8337,44240,'Nada',2,0),(8337,65827,'Frank',2,1),(8337,41229,'Holly',1,2),(8337,54564,'Drifter',2,3),(8337,6916,'Gilbert',2,4),(8337,54565,'Street Preacher',2,5),(8337,1172156,'Family Man',0,6),(8337,86345,'Bearded Man',2,7),(8337,104059,'Brown Haired Woman',1,8),(8337,58623,'Black Revolutionary',2,9),(8337,1485654,'Family Man\'s Daughter',1,10),(8337,1485655,'Female Interviewer',1,11),(8337,158986,'Ingenue',1,12),(8337,7139,'Foreman',2,13),(8337,1485656,'Black Junkie',0,14),(8337,52622,'Well Dressed Customer',2,15),(8337,1485657,'Rich Lady',1,16),(8337,1190889,'Depressed Human',0,17),(8337,1485658,'Arab Clerk',0,18),(8337,78395,'Blonde Haired Cop',2,19),(8337,1485659,'Neighbor',0,20),(8337,1485660,'Biker',0,21),(8337,554009,'Scruffy Blonde Man',0,22),(8337,1485661,'Passageway Guard',0,23),(8337,1485662,'Passageway Guard #2',0,24),(8337,95481,'Manager',0,25),(8337,1485663,'Male News Anchor',0,26),(8337,1485664,'Female News Anchor',1,27),(8337,1485665,'Young Female Executive',1,28),(8337,999687,'Woman on Phone',1,29),(8337,161441,'Pregnant Secretary',1,30),(8337,1485667,'Security Guard #2',0,32),(8337,1402117,'2nd Unit Guard',2,33),(8337,1485668,'Naked Lady',1,34),(8337,169628,'Male Ghoul',2,35),(8337,1485669,'Female Ghoul',1,36),(8337,1417685,'Security Guard #1',2,37),(8337,95805,'Vendor',0,38),(8337,550085,'Homeless kid (uncredited)',2,39),(8337,1832288,'Teenage Girl (uncredited)',1,40),(8337,1832290,'Ghoul at Bar (uncredited)',0,41),(8337,33574,'TV Technician (uncredited)',0,42),(8337,1782966,'Woman at the Dinner Party (uncredited)',1,43),(8337,61704,'Asian Revolutionary (uncredited)',2,44),(8337,1832292,'Male Ghoulie (uncredited)',2,45),(8337,9466,'Police Officer (uncredited)',2,46),(8337,16661,'Dave - Resistance Fighter (uncredited)',2,47),(5925,13565,'Captain Hilts',2,0),(5925,16896,'Flight Lt. Hendley',2,1),(5925,4786,'Roger Bartlett',2,2),(5925,12250,'Group Capt. Ramsey The SBO',2,3),(5925,4960,'Flight Lt. Danny Velinski',2,4),(5925,9221,'Flight Lt. Colin Blythe The Forger',2,5),(5925,5563,'Flying Officer Louis Sedgwick The Manufacturer',2,6),(5925,23696,'Kommandant von Luger',0,7),(5925,24813,'Lt. Cmdr. Eric Ashley-Pitt Dispersal',2,8),(5925,41998,'Flight Lt. Sandy MacDonald Intelligence',2,9),(5925,93125,'Flight Lt. William Dickes The Tunneler',2,10),(5925,78942,'Flying Officer Archibald Ives The Mole',2,11),(5925,108637,'Flight Lt. Denys Cavendish The Surveyor',2,12),(5925,1054816,'Werner \'The Ferret\'',2,13),(5925,117865,'Goff',0,14),(5925,26586,'Herr Kuhn',0,15),(5925,37531,'Stratwitch',0,16),(5925,32041,'Sorren',2,17),(5925,19574,'Capt. Posen',0,18),(5925,26937,'Preissen',2,19),(5925,137383,'Lt. Dietrich',2,20),(5925,140146,'Griffith \'Tailor\'',0,21),(5925,5800,'Frick',0,22),(5925,18968,'Kramer',2,23),(5925,23910,'Dai Nimmo (\'Diversions\')',2,24),(5925,78094,'S.S. Officer Steinach',0,25),(5925,1213151,'Haynes (\'Diversions\')',2,26),(8357,19797,'Lead',1,0),(8357,55422,'Jennifer',0,1),(8357,23899,'Bob',2,2),(8357,55425,'Elliot',2,3),(8357,55426,'Reggie',2,4),(512,1245,'Sondra Pransky',1,0),(512,6968,'Peter Lyman',2,1),(512,1243,'Sid Waterman',2,2),(512,6972,'Joe Strombel',2,3),(512,2449,'Mike Tinsley',2,4),(512,6979,'Vivian',0,5),(512,4391,'Mt Malcolm',2,6),(512,6973,'Jane Cook',1,7),(512,740,'Lord Lyman',2,8),(512,6969,'Strombel\'s Co-Worker',2,9),(512,6970,'Strombel\'s Co-Worker',2,10),(512,42663,'Strombel\'s Co-Worker',2,11),(512,6971,'Strombel\'s Co-Worker',2,12),(512,26860,'Strombel\'s Co-Worker',2,13),(512,178748,'Lyman Party Guest',0,14),(512,11282,'Lyman Party Guest',2,15),(512,6974,'Joe\'s Co-Passenger #1',0,16),(512,2065,'Joe\'s Co-Passenger #2',2,17),(512,6975,'Joe\'s Co-Passenger #3',1,18),(512,13014,'Joe\'s Co-Passenger',2,19),(512,6978,'Funeral Speaker',2,20),(512,6981,'Vivian\'s Mother',0,21),(512,55645,'',1,22),(512,6982,'Vivian\'s Brother',2,23),(512,47712,'Compere',0,24),(512,6985,'Stagehand',0,25),(512,145997,'Poker Player',2,26),(512,65642,'Poker Player',2,27),(512,42998,'Antique Shop Couple',1,28),(512,62231,'Antique Shop Couple',2,29),(512,142519,'Desk Clerk',2,30),(512,6984,'Splendiniu2019s Assistant',0,31),(512,3068,'Jerry Burke',2,32),(512,47944,'Bystander',2,33),(512,189921,'Bystander',1,34),(512,151949,'Bystander',1,35),(512,271458,'',1,36),(512,37442,'',1,37),(512,191601,'',2,38),(512,1250,'',2,39),(512,34257,'',2,40),(512,20510,'',2,41),(512,250,'',1,42),(512,137471,'',1,43),(512,1557797,'',0,44),(512,6976,'Tinsleyu2019s Fan #1',0,45),(512,6977,'Tinsley\'s Fan #2',0,46),(9782,3051,'Donna D. Logand',1,0),(9782,2157,'Gabriel Noone',2,1),(9782,3977,'Ashe',2,2),(9782,21127,'Jess',2,3),(9782,28042,'Pete D. Logand',2,4),(9782,25540,'Anna',1,5),(9782,18510,'Young Man at Party',0,6),(9782,53085,'Pap Noone',2,7),(9782,59201,'Darlie Noone',1,8),(9782,59202,'Female Neighbor',0,9),(9782,59203,'Pant Suited Woman',1,10),(9782,59204,'Flight Attendant',2,11),(9782,59205,'Mail Clerk',0,12),(9782,59206,'Waitress',1,13),(9782,59207,'Hospital Security Guard',0,14),(6537,19907,'Laura',1,0),(6537,51902,'Carlos',0,1),(6537,51903,'Simu00f3n',0,2),(6537,33409,'Pilar',1,3),(6537,51904,'Benigna',0,4),(6537,51905,'Enrique',0,5),(6537,51906,'Balaban',0,6),(6537,51943,'Tomu00e1s',0,7),(6537,400,'Aurora',1,8),(6537,1559198,'Alicia',0,9),(1809,19210,'Sean Bateman',2,0),(1809,27855,'Lauren Hynde',1,1),(1809,19211,'Paul Denton',2,2),(1809,10860,'Lara',1,3),(1809,7517,'Kelly',1,4),(1809,449,'Harry',2,5),(1809,21403,'Mitchell',2,6),(1809,19212,'Richard \'Dick\' Jared',2,7),(1809,65561,'Victor',2,8),(1809,226344,'Raymond',2,9),(1809,5365,'Rupert',2,10),(1809,17774,'Candice',1,11),(1809,6450,'Mrs. Denton',1,12),(1809,12967,'Mrs. Jared',1,13),(1809,101618,'Donald',0,14),(1809,2223,'A Junkie Named Marc',2,15),(1809,104914,'Handsome Dunce',2,16),(1809,42545,'At the Player Piano',2,17),(1809,1198057,'Food Service Girl',0,18),(2370,24363,'Andru00e9 Devereaux',2,0),(2370,24364,'Nicole Devereaux',1,1),(2370,3507,'Michu00e8le Picard',1,2),(2370,24365,'Franu00e7ois Picard',2,3),(2370,10073,'Juanita de Cordoba',1,4),(2370,17580,'Rico Parra',2,5),(2370,3784,'Jacques Granville',2,6),(2370,24366,'Henri Jarre',2,7),(2370,24367,'Michael Nordstrom',2,8),(2370,24368,'Philippe Dubois',2,9),(2370,24369,'Boris Kuzenov',0,10),(2370,24549,'McKittreck',0,11),(2370,24550,'Mrs. Kusenov',0,12),(2370,24552,'Tamara Kusenov',0,13),(2370,24554,'Claude Martin',0,14),(2370,24556,'Luis Uribe',2,15),(2370,1454251,'Jean Chabrier',0,16),(9809,51298,'John Lyshitski',2,0),(9809,21200,'Nelson Biederman IV',2,1),(9809,8687,'Barry',2,2),(9809,28638,'Shanahan',2,3),(9809,19152,'Warden',2,4),(9809,335,'Lynard',2,5),(9809,59400,'Icepick',2,6),(9809,59401,'Judge Eva Fwae Wun',1,7),(9809,35022,'Judge Biederman',2,8),(9809,59410,'Duane',2,9),(9809,59405,'Breen Guard',2,10),(9809,59402,'Pawn Broker',2,11),(9809,59403,'John - 8 years',2,12),(9809,59404,'John - 18 years',2,13),(9809,59406,'Old Bartender',1,14),(9809,59407,'Stripper',1,15),(9809,59408,'Sgt. Barker',2,16),(9809,59409,'Deputy Mayor',0,17),(9809,59411,'Korean Pharmacist',0,18),(9809,59399,'Jesus',2,19),(5,3129,'Ted the Bellhop',2,0),(5,3131,'Man',2,1),(5,3130,'Angela',1,2),(5,3125,'Elspeth',1,3),(5,3141,'Margaret',1,4),(5,62,'Leo',2,5),(5,138,'Chester Rush',2,6),(5,3122,'Jezebel',1,7),(5,3123,'Diana',1,8),(5,3124,'Athena',1,9),(5,3127,'Raven',1,10),(5,2545,'Long Hair Yuppy Scum',2,11),(5,3126,'Eva',1,12),(5,3128,'Kiva',1,13),(5,2555,'Siegfried',2,14),(5,3132,'Sarah',1,15),(5,3134,'Wife',1,16),(5,3138,'Betty',1,17),(5,3137,'Norman',2,18),(5,3136,'TV Dancing Girl',1,19),(5,3133,'Corpse',1,20),(5,3135,'Juancho',0,21),(5,37336,'Hooker',0,22),(5,3140,'Sam the Bellhop',2,23),(8141,2282,'Frank Falenczyk',2,0),(8141,4939,'Laurel Pearson',1,1),(8141,36422,'Tom',2,2),(8141,8984,'Dave',2,3),(8141,1117,'Edward O\'Leary',2,4),(8141,4492,'Roman Krzeminski',2,5),(8141,55174,'Stef Krzeminski',2,6),(8141,10869,'James Doyle',2,7),(8141,60042,'Doris Rainford',1,8),(8141,134078,'Walter Fitzgerald',2,9),(8141,4568,'Kathleen Fitzgerald',1,10),(8141,38576,'Man in park',2,11),(8141,1374611,'Kevin',2,12),(8141,75813,'Stanley',2,13),(8141,1374612,'Henry',0,14),(1546,17441,'Justin Cobb',2,0),(1546,3063,'Audrey Cobb',1,1),(1546,7132,'Mike Cobb',2,2),(1546,6384,'Perry',2,3),(1546,4589,'Matt Schramm',2,4),(1546,4937,'Mr. Geary',2,5),(1546,17442,'Rebecca',1,6),(1546,17443,'Joel Cobb',2,7),(874,13324,'Thomas More',2,0),(874,13325,'Alice More',1,1),(874,7192,'Thomas Cromwell',2,2),(874,8606,'King Henry VIII',2,3),(874,40,'Cardinal Wolsey',2,4),(874,13326,'Margaret More',1,5),(874,13327,'The Duke of Norfolk',2,6),(874,5049,'Richard Rich',2,7),(874,13328,'William Roper (the Younger)',2,8),(874,13329,'Matthew',2,9),(874,13330,'Archbishop Cranmer',0,10),(874,13331,'Chief Justice',2,11),(874,13332,'Boatman',2,12),(874,13333,'Anne Boleyn',1,13),(874,25641,'Averil Machin',1,14),(874,25643,'King\'s Representative',2,15),(874,1155209,'Matthew\'s Wife',0,17),(874,131691,'Maid',0,18),(874,47139,'Courtier',0,19),(874,139687,'Norfolk\'s Aide',2,20),(874,200558,'Captain of Guard',0,21),(874,1221533,'Governor of Tower',2,22),(874,175403,'Messenger',0,23),(874,1229320,'Executioner',0,24),(874,1220097,'Jailer',0,25),(770,10538,'Scarlett O\'Hara',1,0),(770,11492,'Rhett Butler',2,1),(770,8725,'Melanie Hamilton',1,2),(770,3383,'Gerald O\'Hara',2,3),(770,11493,'Ashley Wilkes',0,4),(770,7642,'Ellen O\'Hara',1,5),(770,11494,'Suellen O\'Hara',1,6),(770,11495,'Carreen O\'Hara',1,7),(770,11496,'Stuart Tarleton',2,8),(770,11497,'Brent Tarleton',0,9),(770,11498,'Mammy',1,10),(770,11499,'Pork',0,11),(770,11500,'Prissy',1,12),(770,11501,'Cathleen Calvert',0,13),(770,11502,'Dr. Meade',2,14),(770,13822,'Mrs. Meade',0,15),(770,11503,'Bonnie Blue Butler',0,16),(770,2099,'Johnny Gallagher',0,17),(770,4303,'Tom - Yankee Captain',2,18),(770,33775,'Phil Meade',2,19),(770,10545,'Beau Wilkes',2,20),(770,93896,'Maybelle Merriwether',1,21),(770,105797,'Belle Watling',1,22),(770,8515,'Mrs. Merriwether',1,23),(770,33277,'Emmy Slattery',1,24),(770,98571,'Uncle Peter - Her Coachman',0,25),(770,223051,'Aunt \'Pittypat\' Hamilton',1,26),(770,91217,'Charles Hamilton - Her Brother',0,27),(770,34209,'A Carpetbagger Businessman',0,28),(770,1073154,'India - His Daughter',0,29),(770,122148,'Frank Kennedy - Guest',0,30),(770,33025,'John Wilkes',2,31),(770,15666,'Jonas Wilkerson - Field Overseer',2,32),(770,70939,'Rene Picard',2,33),(770,30530,'Corporal',2,34),(770,2015,'Mounted Officer',2,35),(770,88979,'Renegade',2,36),(770,124853,'Amputation Case',2,37),(770,30236,'Reminiscent Soldier',2,38),(770,13979,'Hungry Soldier Holding Beau Wilkes',2,39),(770,14664,'Yankee Deserter',0,40),(770,101881,'Dying Soldier',0,41),(770,1509,'Convalescent Soldier',0,42),(770,101882,'Gentleman',0,43),(770,1133401,'Belle\'s Girl',0,44),(770,120822,'Collapsing Soldier',0,45),(770,144372,'Tony Fontaine',2,46),(770,120556,'Frank Kennedy\'s Clerk',2,47),(770,942165,'Cade Calvert',2,48),(770,131003,'Tom\'s Aide',2,49),(770,589217,'Poker-Playing Captain',2,50),(770,99330,'Poker-Playing Captain',2,51),(770,5605,'Soldier',2,52),(770,17759,'Soldier Aiding Dr. Meade',2,53),(770,89736,'Yankee on Street',0,54),(770,1064924,'Woman Writing Letter at Atlanta Church Hospital',0,55),(770,30017,'Man with Stove Pipe Hat in Charge of Convict Workers',2,56),(770,87545,'Guest at Twelve Oaks',1,57),(770,121066,'Bartender',2,58),(770,14970,'Commanding Officer During Evacuation',2,59),(770,589730,'Renegade\'s Companion',0,60),(770,96258,'Carpetbagger\'s Friend',2,61),(770,105759,'Wounded Card Player',0,62),(770,2009,'Prison Gang Overseer',2,63),(770,110204,'Minor Role',2,64),(770,9096,'Minor Role',0,65),(770,94897,'Undetermined Minor Role',2,66),(770,1016571,'Rafe Calvert',2,67),(770,555903,'Big Sam - Field Foreman',2,68),(770,1468786,'Beau Wilkes',0,69),(770,1408726,'Elijah',2,70),(770,124854,'Bonnie\'s Nurse in London',0,71),(770,115992,'Wounded Soldier',0,72),(770,1468783,'Yankee Soldier in Shantytown / Townsperson',0,73),(770,164809,'Gentleman at Twelve Oaks Barbecue',2,74),(770,1437091,'Housemaid at Evening Prayers',0,75),(770,1468785,'Housemaid at Evening Prayers',0,76),(770,1468835,'Housemaid at Evening Prayers',0,77),(770,1468845,'Housemaid at Evening Prayers',0,78),(770,1468787,'Housemaid at Twelve Oaks',0,79),(770,1468838,'Housemaid at Twelve Oaks',0,80),(770,1468848,'Housemaid at Twelve Oaks',0,81),(770,80646,'Housemaid at Twelve Oaks',0,82),(770,89782,'Atlanta Citizen',0,83),(770,1074127,'Bandleader',0,84),(770,34750,'Bandleader\'s Wife',1,85),(770,195031,'Belle\'s Girl',0,86),(770,1298484,'Boy with Tears When Death Rolls Are Read',0,87),(770,120734,'Sergeant at Hospital',2,88),(770,124855,'Yankee Major',2,89),(770,1042201,'Yankee Soldier in Shantytown',0,90),(770,34187,'Yankee Soldier in Shantytown',2,91),(770,1468844,'Yankee Soldier in Shantytown',0,92),(770,1468841,'Yankee Soldier in Shantytown',0,93),(770,568421,'Melanie\'s Baby',0,94),(770,1468832,'Jewel Collector at Bazaar',0,95),(770,1468833,'Bonnie Blue Butler - Age 2',1,96),(770,1069698,'Bonnie Blue Butler as Newborn',0,97),(770,1468834,'Hospital Nurse',0,98),(770,1468839,'Hospital Nurse',0,99),(770,1195341,'General\'s Wife',0,100),(770,1042290,'Wounded Soldier in Pain',2,101),(770,1468840,'Melanie\'s Son',0,102),(770,1468755,'Southern Dandy',0,103),(770,107444,'Boy in Band',2,104),(770,1121713,'Party Guest',0,105),(770,1468842,'Party Guest',0,106),(770,1468843,'Old Levi',0,107),(770,102071,'Carpetbagger Orator',0,108),(770,1464567,'Drummerboy',0,109),(770,1208030,'Dancer - Atlanta Bazaar',0,110),(770,1364421,'Guest at Birthday Party',2,111),(770,1468849,'Fanny Elsing',0,112),(770,233117,'Minister',0,113),(770,124091,'Returning Veteran',0,114),(770,1468850,'Youngest Boy in Band',0,115),(770,140412,'Gentleman / Bearded Confederate on Steps of Tara',0,116),(770,1468851,'Bonnie at Six Months',0,117),(770,34094,'Gentleman at Twelve Oaks Barbecue',0,118),(770,1468852,'Girl in Blue Dress',0,119),(770,1468853,'New Born Baby Boy',0,120),(770,1514041,'Boy covered in Ashes in Atlanta (uncredited)',0,121),(770,1468837,'Cancan Girl',0,122),(770,1468846,'Cancan Girl',0,123),(770,1413586,'Cancan Girl',1,124),(770,1468784,'Minor Role',0,125),(770,89660,'Minor Role',2,126),(770,121122,'Minor Role',2,127),(770,1468847,'Minor Role',0,128),(770,1466733,'Minor Role',0,129),(770,1468836,'Minor Role',0,130),(770,1416046,'Extra',0,131),(770,1468833,'Bonnie Blue Butler - Age 2 (uncredited)',1,132),(5178,1248,'Jacques',2,0),(5178,17142,'Lucas',2,1),(5178,121953,'Sarah',1,2),(5178,151180,'April',1,3),(5178,76764,'Roger Verne',2,4),(5178,59162,'Jonathan',2,5),(5178,171538,'Dimitri',2,6),(5178,111679,'Barber',2,7),(5178,181876,'Markus',2,8),(5178,109144,'Roddie',2,9),(5178,1043858,'Sooty',0,10),(5178,196179,'Psychiatrist',2,11),(8618,55465,'Crowther',2,0),(8618,55470,'Dakin',2,1),(8618,55466,'Timms',2,2),(8618,55471,'Posner',2,3),(8618,55469,'Rudge',0,4),(8618,40633,'Scripps',2,5),(8618,55468,'Lockwood',2,6),(8618,55472,'Akhtar',2,7),(8618,10983,'Hector',2,8),(8618,55467,'Irwin',2,9),(8618,47468,'Mrs. Lintott',1,10),(8618,5475,'Headmaster',2,11),(8618,1249,'Mrs. Bibby',1,12),(8618,40311,'Wilkes',2,13),(8618,55473,'Fiona',0,14),(3116,4483,'\'Ratso\' Rizzo',2,0),(3116,10127,'Joe Buck',2,1),(3116,19335,'Cass',1,2),(3116,1943,'Mr. O\'Daniel',2,3),(3116,30585,'Shirley',1,4),(3116,2549,'Towny',0,5),(3116,8493,'Sally Buck - Texas',1,6),(3116,41258,'Annie - Texas',1,7),(3116,109957,'Woodsy Niles - Texas',0,8),(3116,1075091,'Little Joe - Texas',0,9),(3116,1075092,'Ralph - Texas',0,10),(3116,14109,'Rich Lady - New York',1,11),(3116,12438,'The Young Student - New York',2,12),(3116,125128,'Girl at Party (uncredited)',1,13),(3116,1708828,'Freaked-Out Lady - New York',1,14),(3116,1066346,'Cafeteria Manager - Texas',0,15),(3116,1844158,'Mother on the Bus - Texas',1,16),(3116,1844159,'The Old Lady - Texas',1,17),(3116,1844160,'Jackie - New York',2,18),(3116,119778,'TV Bishop - New York',2,19),(3116,15534,'Bartender - New York',2,20),(3116,171444,'Hotel Clerk - New York',0,21),(3116,1844161,'Laundromat Lady - New York',1,22),(3116,1844162,'Laundromat Lady - New York',1,23),(3116,4195,'Escort Service Man - New York',0,24),(3116,1528898,'The Frantic Lady - New York',1,25),(3116,160414,'Hansel McAlbertson - The Party',2,26),(3116,54754,'Gretel McAlbertson - The Party',1,27),(3116,1077303,'The Party',1,28),(3116,95227,'The Party',2,29),(3116,105059,'The Party',1,30),(3116,1844163,'The Party',1,31),(3116,13617,'The Party',2,32),(3116,18627,'The Party',0,33),(3116,1521516,'The Waitress - Florida',1,34),(3116,1844164,'Bus Driver - Florida',2,35),(3116,103962,'Party Guest (uncredited)',1,36),(3116,142244,'Old Lady in Subway (uncredited)',1,37),(3116,164652,'Rapist in Flashback (uncredited)',2,38),(3116,1394703,'Bus Passenger (uncredited)',0,39),(3116,1766535,'Man at Lunch Counter (uncredited)',0,40),(3116,1844168,'Party Guest (uncredited)',2,41),(3116,1844169,'Gina (uncredited)',1,42),(3116,1805176,'Pimp (uncredited)',0,43),(3116,1844170,'Hippie in Coffee Shop (uncredited)',1,44),(3116,1390338,'Hippie #3 (uncredited)',0,45),(3116,588,'Bus Passenger (uncredited)',2,46),(3116,1290726,'St. Bernard Owner (uncredited)',0,47),(3116,14677,'Joe Pyne on TV Show (uncredited)',2,48),(9427,18023,'Gaz',2,0),(9427,13633,'Dave',2,1),(9427,57628,'Nathan',2,2),(9427,57629,'Lomper',2,3),(9427,207,'Gerald',2,4),(9427,29698,'Horse',2,5),(9427,2251,'Guy',2,6),(9427,80366,'Jean',1,7),(9427,33679,'Mandy',1,8),(9427,186025,'Linda',0,9),(9427,1335635,'Barry',0,10),(9427,20246,'Alan',2,11),(9427,235361,'Reg',2,12),(9427,201013,'Terry',0,13),(9427,1335636,'Sharon',0,14),(9427,1335637,'Bee',0,15),(9427,1335638,'Sheryl',0,16),(9427,229605,'Dole Clerk',0,18),(9427,1356539,'Lomper\'s Mum',0,19),(9427,1356540,'Police Inspector',0,20),(9427,1356541,'Duty Sergeant',0,21),(9427,1198660,'Policeman',0,22),(9427,1356542,'Job Club Manager',0,23),(9427,1217103,'Director',0,24),(9427,1356544,'Social Worker',0,25),(9427,1356546,'Repossession Man',0,26),(9427,1356547,'Horse\'s Mum',0,27),(9427,1356548,'Beryl',0,28),(9427,1356549,'Horse\'s Sister',0,29),(9427,1356550,'Horse\'s Sister',0,30),(813,14416,'Ted Striker',2,0),(813,14415,'Elaine',1,1),(813,14414,'Murdock',2,2),(813,2177,'McCroskey',2,3),(813,9111,'Captain Oveur',2,4),(813,7633,'Dr. Rumack',2,5),(813,14418,'Randy',1,6),(813,2493,'Rex Kramer',2,7),(813,14423,'Johnny',2,8),(813,12936,'Religious zealot #6',2,9),(813,14427,'Victor Basta',2,10),(813,783,'Gunderson',2,11),(813,174872,'Paul Carey',0,12),(813,117723,'Jive Lady',1,13),(813,160328,'Mrs. Hammen',1,14),(813,153386,'Mrs. Davis',1,15),(813,169802,'Security Lady',0,16),(813,109897,'Lieutenant Hurwitz',1,17),(813,31366,'Windshield Wiper Man',2,18),(813,173263,'Lisa Davis',1,19),(813,41711,'',1,20),(813,1449360,'Cocaine Lady',0,21),(813,103069,'Air Controller Neubauer',2,22),(9516,57773,'Caine \'Kaydee\' Lawson',2,0),(9516,18291,'Kevin \'O-Dog\'',2,1),(9516,2683,'Pernell',2,2),(9516,9575,'Ronnie',1,3),(9516,2231,'Tat Lawson',2,4),(9516,156015,'Grocery Store Woman',0,5),(9516,156963,'Grocery Store Man',2,6),(9516,154096,'Clyde',2,7),(9516,19265,'Karen Lawson',1,8),(9516,170159,'Anthony',0,9),(9516,23681,'Five Year Old Caine',2,10),(9516,91525,'Tony',0,11),(573,8223,'Richard Ian Blaney',2,0),(573,8224,'Chief Inspector Oxford',2,1),(573,8225,'Robert Rusk',2,2),(573,8226,'Hetty Porter',1,3),(573,8227,'Barbara Jane (\'Babs\') Milligan',1,4),(573,8228,'Brenda Margaret Blaney',1,5),(573,40943,'Felix Forsythe',2,6),(573,12657,'Monica Barling',1,7),(573,35314,'Mrs. Oxford',1,8),(573,33108,'Johnny Porter',2,9),(573,40966,'Gladys',1,10),(573,91663,'Mr. Usher - Solicitor in Pub',2,11),(573,1075445,'Sir George',0,12),(3033,1327,'James Whale',2,0),(3033,18269,'Clayton Boone',2,1),(3033,29791,'Hanna',1,2),(3033,12139,'Betty',1,3),(3033,29792,'David Lewis',2,4),(3033,29794,'Dwight',2,6),(3033,29795,'Edmund Kay',2,7),(3033,29796,'Elsa Lanchester',1,8),(3033,20581,'Boris Karloff',0,9),(3033,29797,'Colin Clive',0,10),(3033,18916,'Harry',2,11),(765,11357,'Ashley \'Ash\' J. Williams',2,0),(765,11749,'Annie Knowby',0,1),(765,11750,'Jake',0,2),(765,11751,'Bobbie Joe',0,3),(765,11753,'Linda',0,4),(765,11754,'Ed Getley',2,5),(765,11755,'Professor Raymond Knowby',0,6),(765,11756,'Henrietta Knowby',1,7),(765,11769,'Possessed Henrietta',2,8),(540,22121,'Amy Bradshaw',1,0),(540,22122,'Max Brewer',1,1),(540,22123,'Lucy Diamond',1,2),(540,6278,'Dominique',1,3),(540,22124,'Janet',1,4),(540,22127,'Madeleine',1,5),(540,22128,'Bobby Matthews',2,6),(540,22125,'Scud',2,7),(540,11318,'Mrs. Petrie',1,8),(540,61981,'Mr. Phipps',2,9),(540,22126,'Ninotchka Kaprova',1,10),(540,86257,'Dustin',2,11),(540,59233,'Stoner',2,12),(540,154395,'Waitress',1,13),(540,1826581,'Eric',0,14),(540,63661,'German D.E.B.',1,15),(540,56457,'Maria',1,16),(540,263229,'News Anchor #1',2,17),(540,1826582,'News Anchor #2',0,18),(540,1826583,'Junior #1',0,19),(540,1319846,'Junior #2',1,20),(540,53828,'Hysterical Student',1,21),(540,1826584,'David',0,22),(540,1826585,'Hutch',0,23),(540,1826586,'Kirk',0,24),(540,1545466,'Proctor',0,25),(1667,192,'Narrator',2,0),(1667,48576,'Le pu00e8re',2,1),(1667,40938,'La mu00e8re',1,2),(1667,24502,'Le bu00e9bu00e9',0,3),(598,8595,'Buscapu00e9',2,0),(598,8596,'Zu00e9 Pequeno',2,1),(598,8597,'Benu00e9',2,2),(598,8598,'Dadinho',2,3),(598,8599,'Cabeleira',2,4),(598,8600,'Sandro Cenoura',2,5),(598,5659,'Manu00e9 Galinha',2,6),(598,8601,'Alicate',0,7),(598,8602,'Angu00e9lica',1,8),(598,8603,'Berenice',1,9),(598,8604,'Buscapu00e9 Crianu00e7a',0,10),(598,8605,'Filu00e9-com-Fritas',2,11),(598,50362,'Lampiu00e3o',2,12),(598,55105,'Parau00edba - Shorty',2,13),(598,1372457,'Thiago - Tiago',2,14),(598,1181464,'Tio Sam - Uncle Sam',0,15),(598,560263,'Vizinha do Parau00edba - Shorty\'s Neighbor',0,16),(598,1245030,'Caixa Baixa - Runts',0,17),(598,403249,'Bando Zu00e9 Pequeno - Li\'l Zu00e9\'s Gang',0,18),(598,1206910,'Bando Zu00e9 Pequeno - Li\'l Zu00e9\'s Gang',0,19),(598,558258,'Grande',0,20),(598,444956,'Mulher do Neguinho',0,21),(598,8560,'Pastor da Igreja',2,22),(598,54998,'Recepcionista do Motel',1,23),(598,54996,'Marina Cintra',1,24),(598,8579,'Newspaper Employee (uncredited)',0,25),(598,1853689,'Otu00e1vio',0,26),(850,4778,'Mrs. Parker',1,0),(850,7333,'The Old Man (Mr. Parker)',2,1),(850,12708,'Ralphie Parker',2,2),(850,12699,'Ralphie as an Adult',2,3),(850,12709,'Randy Parker',2,4),(850,12710,'Flick',0,5),(850,12711,'Schwartz',0,6),(850,12714,'Scut Farkus',2,7),(850,12713,'Grover Dill',2,8),(850,12712,'Miss Shields',1,9),(850,12715,'Santa Claus',0,10),(850,1717582,'Woman',0,11),(850,12698,'Swede',2,12),(850,12716,'Christmas Tree Man',2,13),(850,61872,'Freight Man',0,14),(8841,64155,'Franu00e7ois Marin',0,0),(8841,69188,'Souleyman',0,1),(8841,69189,'Esmeralda',0,2),(8841,69190,'Khoumba',0,3),(8841,69191,'Wei',0,4),(8841,69194,'Cherif',0,6),(8841,69196,'Louise',0,7),(8841,69197,'Rabah',2,8),(8841,69198,'Carl',0,9),(8841,69199,'Le principal',0,10),(8841,69200,'Henriette',0,11),(8841,69201,'Laura',0,12),(8841,1652590,'Agame',0,13),(8841,1652594,'Angu00e9lica',0,14),(8841,1291612,'Arthur',0,15),(8841,1652604,'Boubacar',0,16),(8841,1652608,'Burak',0,17),(8841,1652615,'Dalla',0,18),(8841,1652621,'Damien',0,19),(8841,1652622,'Eva',0,20),(8841,1652625,'Juliette',0,21),(8841,1652626,'Justine',0,22),(805,12021,'Rosemary Woodhouse',0,0),(805,11147,'Guy Woodhouse',2,1),(805,4970,'Minnie Castevet',1,2),(805,12022,'Roman Castevet',2,3),(805,12023,'Edward Hutchins',2,4),(805,1208,'Dr. Abraham Sapirstein',2,5),(805,12024,'Terry Gionoffrio',1,6),(805,12025,'Laura-Louise McBirney',1,7),(805,3339,'Mr. Nicklas',2,8),(805,12026,'Elise Dunstan',1,9),(805,12027,'Joan Jellico',0,10),(805,28164,'Dr. Hill',2,11),(805,91197,'Grace Cardiff',1,12),(805,3433,'Dr. Shand',2,13),(805,109086,'Diego',2,14),(805,85838,'Mrs. Gilmore',1,15),(805,103457,'Rosemary\'s Girl Friend',1,16),(805,12011,'Man by Pay Phone (uncredited)',2,17),(436,5887,'Maru00eda u00c1lvarez',1,0),(436,5902,'Lucy Du00edaz',0,1),(436,5891,'Blanca',0,2),(436,5972,'Franklin',0,3),(436,5890,'Juana',0,4),(436,5893,'Supervisor',0,5),(436,5895,'Felipe',0,6),(436,5896,'Juan',0,7),(436,5898,'Diana u00c1lvarez',0,8),(436,5899,'Rosita',0,9),(436,5874,'Javier',0,10),(436,5903,'Pellet Maker',2,11),(436,5905,'Pharmacist',0,12),(436,5906,'Stewardess',0,13),(436,5973,'Carla',1,14),(436,1343352,'',0,15),(8469,7171,'John Bluto Blutarski',2,0),(8469,21561,'Eric Otter Stratton',2,1),(8469,17580,'Dean Vernon Wormer',2,2),(8469,55192,'Marion Wormer',1,3),(8469,3999,'Larry Pinto Kroger',2,4),(8469,2558,'Mayor Carmine DePasto',2,5),(8469,20899,'Donald Boon Schoenstein',2,6),(8469,55196,'Mandy Pepperidge',1,7),(8469,52304,'Kent Flounder Dorfman',2,8),(8469,55195,'Robert Hoover',2,9),(8469,14888,'Daniel Simpson Day',2,10),(8469,55194,'Doug Neidermeyer',2,11),(8469,55206,'Otis Day',2,12),(8469,650,'Katy',1,13),(8469,55198,'Greg Marmalard',2,14),(8469,55197,'Barbara Sue Babs Jansen',1,15),(8469,55203,'Clorette DePasto',0,16),(8469,55208,'Shelly',0,17),(8469,4724,'Chip Diller',2,18),(8469,55636,'Dave Jennings',2,19),(8469,55199,'Stork',0,20),(8469,55200,'Hardbar',2,21),(8469,55201,'B.B.',0,22),(8469,55202,'Mothball',0,23),(8469,31116,'Otter\'s Co-Ed',1,24),(8469,55204,'Sissy',0,25),(8469,55207,'Brunella',1,26),(8469,55209,'Beth',0,27),(8469,55210,'Noreen',0,28),(8469,55211,'Mean Dude',0,29),(8469,55212,'Meaner Dude',0,30),(8469,55213,'Meanest Dude',0,31),(8469,55214,'Gigantic Dude',0,32),(8469,55215,'Dean\'s Secretary',0,33),(8469,55216,'Omega',0,34),(8469,55217,'Man On Street',0,35),(8469,55218,'Lucky Boy',0,36),(8469,55219,'Sorority Girl',0,37),(8469,55220,'Mongol',0,38),(8469,938558,'Charming Guy with Guitar',0,39),(8469,4610,'Cafeteria Dishwasher',2,40),(658,738,'James Bond',2,0),(658,9907,'Pussy Galore',1,1),(658,9908,'Auric Goldfinger',2,2),(658,9909,'Jill Masterson',1,3),(658,9910,'Tilly Masterson',0,4),(658,9911,'Oddjob',2,5),(658,9874,'M',2,6),(658,9912,'Martin Solo',2,7),(658,9913,'Felix Leiter',2,8),(658,9914,'Simmons',2,9),(658,9878,'Miss Moneypenny',1,10),(658,9906,'Q',2,11),(658,21944,'Mr. Ling',2,12),(658,9901,'Bonita',0,13),(658,95129,'Dink',1,14),(658,29305,'Midnight',2,15),(658,96993,'Kisch',2,16),(658,1523910,'Johnny',0,17),(658,47000,'Smithers',2,19),(658,1523913,'Mei-Lei',0,20),(658,1523914,'Swiss Gatekeeper',0,21),(658,115068,'Brigadier',2,22),(658,117410,'Atomic Specialist',2,23),(658,89897,'Blacking',0,24),(658,605021,'Capungo',2,25),(658,231801,'Hawker',0,26),(658,1633210,'Flying Circus Pilot',1,27),(1585,854,'George Bailey',2,0),(1585,17752,'Mary Hatch',1,1),(1585,17753,'Henry F. Potter',2,2),(1585,3383,'Uncle Billy Bailey',2,3),(1585,7666,'Clarence Odbody',2,4),(1585,17755,'Ma Bailey',1,5),(1585,4303,'Bert',2,6),(1585,17759,'Ernie Bishop',2,7),(1585,77081,'Violet Bick',1,8),(1585,33278,'Mr. Gower',0,9),(1585,78902,'Sam Wainwright',2,10),(1585,17754,'Harry Bailey',2,11),(1585,17756,'Peter Bailey',0,12),(1585,1033185,'Ruth Dakin Bailey',0,13),(1585,106584,'Cousin Tilly',1,14),(1585,120544,'Cousin Eustace',2,15),(1585,85957,'Mrs. Hatch',1,16),(1585,95967,'Giuseppe Martini',2,17),(1585,150633,'Annie',1,18),(1585,113726,'Mrs. Martini',1,19),(1585,117856,'Little George',2,20),(1585,1033350,'Little Sam',0,21),(1585,1033287,'Little Mary',1,22),(1585,1033351,'Little Violet',0,23),(1585,34181,'Little Marty Hatch',2,24),(1585,17758,'Little Harry Bailey',2,25),(1585,41750,'Nick',2,26),(1585,34168,'Potter\'s Bodyguard',0,27),(1585,34423,'Joe - Luggage Shop',2,28),(1585,29579,'Real Estate Salesman',2,29),(1585,120708,'Tom - Bldg. & Loan',2,30),(1585,1055407,'Bailey Child - Janie',0,31),(1585,1033293,'Bailey Child - Zuzu',1,32),(1585,30223,'Bailey Child - Pete',2,33),(1585,117674,'Bailey Child - Tommy',2,34),(1585,1422125,'Townswoman (uncredited)',0,35),(1585,34098,'Ed (uncredited)',0,36),(1585,1420615,'(uncredited)',0,37),(1585,34505,'Mr. Welch (uncredited)',2,38),(1585,590519,'Nervous Banker (uncredited)',0,39),(1585,1216586,'One of Vi\'s Suitors (uncredited)',2,40),(1585,115995,'Military Officer in Montage (uncredited)',2,41),(1585,139183,'Townsman (uncredited)',0,42),(1585,120785,'Sheriff (uncredited)',2,43),(1585,1411487,'(uncredited)',0,44),(1585,82614,'Jane Wainwright (uncredited)',1,45),(1585,5460,'Singer at Martini\'s (uncredited)',1,46),(1585,90369,'(uncredited)',2,47),(1585,126898,'Young George\'s Friend (uncredited)',0,48),(1585,32193,'Townsman (uncredited)',0,49),(1585,1046955,'Cop Arresting Violet (uncredited)',2,50),(1585,118319,'Dr. Campbell (uncredited)',0,51),(1585,43826,'Building & Loan Board Member (uncredited)',0,52),(1585,1468172,'Building & Loan Customer (uncredited)',0,53),(1585,5738,'Ms. Davis (uncredited)',1,54),(1585,1468743,'Uncle Billy\'s Pet Crow',0,55),(1585,1199590,'High School Teacher at Poolside (uncredited)',0,56),(1585,1422434,'(uncredited)',0,57),(1585,1010448,'Woman at Graduation Dance (uncredited)',1,58),(1585,30217,'Man on Porch (uncredited)',2,59),(1585,83623,'Tollhouse Keeper (uncredited)',0,60),(1585,135356,'Violet\'s Boyfriend (uncredited)',2,61),(1585,133100,'Horace (uncredited)',2,62),(1585,120736,'Relieved Banker in Potter\'s Office (uncredited)',2,63),(1585,99497,'(uncredited)',0,64),(1585,120746,'Photographer with Sheriff (uncredited)',2,65),(1585,1287871,'Bar Patron (uncredited)',0,66),(1585,1598135,'(uncredited)',0,67),(1585,19218,'(voice) (uncredited)',0,68),(1585,2502,'Carter (uncredited)',2,69),(1585,1000083,'Building & Loan Depositor (uncredited)',0,70),(1585,124554,'Mr. Partridge (uncredited)',0,71),(1585,1199836,'Building & Loan Board Member (uncredited)',0,72),(1585,1422459,'Building & Loan Board Member (uncredited)',0,73),(1585,1144743,'Mr. Randall (uncredited)',0,74),(1585,115331,'Man in Fantasy (uncredited)',0,75),(1585,96060,'Building & Loan Depositor (uncredited)',2,76),(1585,137209,'(uncredited)',0,77),(1585,117036,'Building & Loan Board Member (uncredited)',0,78),(1585,103909,'Townswoman (uncredited)',0,79),(1585,198219,'Building & Loan Customer (uncredited)',0,80),(1585,235367,'Marty Hatch (uncredited)',0,81),(1585,114330,'Pianist in Nick\'s Place (uncredited)',0,82),(1585,153295,'Bar Patron (uncredited)',2,83),(1585,9091,'Man Whose Grandfather Planted Tree (uncredited)',2,84),(1585,121327,'Building & Loan Customer (uncredited)',2,85),(1585,1269188,'(uncredited)',0,86),(1585,122984,'Man with Sheriff (uncredited)',0,87),(1585,1023934,'Building & Loan Customer (uncredited)',2,88),(1585,1422117,'School Dancer (uncredited)',0,89),(1585,587830,'Bar Patron (uncredited)',2,90),(1585,121127,'Military Officer in Montage (uncredited)',0,91),(1585,18586,'Senior Angel (voice) (uncredited)',2,92),(1585,117772,'Bill-Poster (uncredited)',0,93),(1585,114401,'(uncredited)',0,94),(1585,1040564,'Photographer / Reporter (uncredited)',2,95),(1585,1413586,'Nick\'s Waitress (uncredited)',1,96),(1585,131229,'Mickey (uncredited)',2,97),(1585,148402,'Bar Patron (uncredited)',2,98),(1585,113491,'Nick\'s Bouncer (uncredited)',0,99),(1585,107678,'Potter\'s Secretary (uncredited)',1,100),(1585,1166723,'(uncredited)',0,101),(1585,120473,'Man in Fantasy (uncredited)',0,102),(1585,126836,'Nick\'s Bartender (uncredited)',0,103),(1585,1706855,'Freddie Othello (uncredited)',2,104),(1585,120178,'Cashier / Nick\'s Assistant Bouncer (uncredited)',2,105),(1585,988794,'Building & Loan Board Member (uncredited)',2,106),(1585,30160,'Charlie (uncredited)',2,107),(627,3061,'Mark Renton',2,0),(627,1125,'Spud',2,1),(627,9012,'Sick Boy',2,2),(627,18023,'Begbie',2,3),(627,9015,'Diane',1,4),(627,9013,'Tommy',2,5),(627,3064,'Swanney',2,6),(627,2467,'Mr. Renton',2,7),(627,9016,'Mrs. Renton',1,8),(627,1837,'Allison',1,9),(627,9017,'Lizzy',1,10),(627,1834,'Gail',1,11),(627,2258,'Gavin/US Tourist',2,12),(627,20056,'Dealer',2,13),(627,36083,'Andreas',2,14),(627,8998,'Mikey Forrester',2,15),(627,94740,'Estate Agent',0,16),(627,1469826,'Gail\'s Mother',0,17),(627,1469829,'Gail\'s Father',0,18),(627,1220473,'Game Show Host',0,19),(627,79648,'Man',2,20),(627,1231388,'Man 2',0,21),(627,1626620,'Woman',1,22),(1430,17087,'Himself',2,0),(1430,46432,'Himself',2,1),(1430,19011,'Himself',2,2),(1430,46433,'Himself',2,3),(1430,10017,'Himself - NRA President',2,4),(1430,1335009,'Himself - President of Guatemala',0,6),(1430,1335010,'Himself - Mayor of Sarnia, Ontario, Canada',0,7),(1430,1335011,'Himself - County Prosecutor: Flint, Michigan',0,8),(1430,1335012,'Himself - Police Detective',0,9),(1430,1335013,'Himself - Columbine Victim',0,10),(1430,116341,'Himself',2,11),(1430,1335015,'Himself - Deputy Sheriff',0,13),(1430,1335016,'Himself - President of South Vietnam',0,14),(1430,1335017,'Himself - Shopper in Mall',0,15),(1430,1335018,'Himself - Superintendent of Schools',0,16),(1430,34518,'Himself',2,17),(1430,1413524,'Himself',0,18),(1430,1413526,'Himself',0,19),(1430,9315,'Himself',2,20),(1430,2632,'Himself',2,21),(1430,566295,'Himself - President of Chile (archive footage)',2,22),(261,3635,'Maggie',1,0),(261,3636,'Brick',2,1),(261,2753,'Harvey u201eBig Daddyu201d Pollitt',2,2),(261,3362,'Big Momma',1,3),(261,2672,'Gooper',2,4),(261,3639,'Mae',0,5),(261,3641,'Deacon Davis',2,6),(261,3640,'Dr. Baugh',2,7),(261,3752,'Servant',1,8),(261,195830,'Boy',2,9),(261,274868,'Sonny Pollitt',2,10),(261,193032,'Buster Pollitt',0,11),(1685,18643,'Brent',2,0),(1685,10539,'Dr. Zira',1,1),(1685,12023,'Dr. Zaius',2,2),(1685,13260,'Nova',1,3),(1685,10017,'Taylor',2,4),(1685,18645,'Mendez',2,5),(1685,18644,'Cornelius',0,6),(1685,18646,'Minister',2,7),(1685,24811,'Fat Man',2,8),(1685,14732,'Ursus',2,9),(1685,9596,'Caspay',2,10),(1685,18648,'Albina',1,11),(1685,9222,'Ongaro',2,12),(1685,99890,'Skipper',2,13),(1685,18914,'Verger',2,14),(1685,1404408,'Gorilla Sgt.',0,15),(826,8252,'Cmdr. Shears',2,0),(826,12248,'Col. Nicholson',2,1),(826,10018,'Maj. Warden',2,2),(826,12249,'Col. Saito',2,3),(826,12250,'Maj. Clipton',2,4),(826,12251,'Lt. Joyce',2,5),(826,10029,'Col. Green',2,6),(826,12252,'Capt. Reeves',2,7),(826,1075445,'Major Hughes',0,8),(826,33220,'Grogan',2,9),(826,1208202,'Baker',0,10),(826,964548,'Nurse',1,11),(826,1075446,'Captain Kanematsu',2,12),(826,1075447,'Lieutenant Miura',2,13),(826,1748362,'Siamese Girl',0,14),(5854,30618,'Blanche',1,0),(5854,6905,'George',1,1),(5854,8963,'Fran',1,2),(5854,21416,'Adamson',2,3),(5854,21523,'Maloney',2,4),(5854,46098,'Julia Rainbird',1,5),(5854,381,'Mrs. Maloney',1,6),(5854,12440,'Grandison',2,7),(5854,14577,'Mrs. Clay',1,8),(5854,46099,'Bishop',2,9),(5854,17651,'Constantine',2,10),(5854,4974,'Wheeler',2,11),(5854,12427,'Parson',2,12),(5854,2636,'Silhouette at Office of Vital Statistics',2,13),(5854,19783,'Mrs. Hannagan',1,14),(5854,46100,'Bush',2,15),(284,3151,'C.C. Baxter',2,0),(284,4090,'Fran Kubelik',1,1),(284,4091,'Jeff D. Sheldrake',2,2),(284,4093,'Joe Dobisch',2,3),(284,4094,'Dr. Dreyfuss',2,4),(284,4096,'Mrs. Mildred Dreyfuss',1,5),(284,4097,'Mrs. Margie MacDougall',1,6),(284,4098,'Miss Olsen',1,7),(284,3161,'Sylvia',1,8),(284,4099,'Karl Matuschka',2,9),(284,571911,'Al Kirkeby',2,10),(284,40381,'The Blonde',1,11),(284,87517,'Mr. Vanderhoff',2,12),(284,141694,'Mr. Eichelberger',2,13),(284,1234545,'Office Worker (uncredited)',0,14),(284,1551605,'Office Worker (uncredited)',2,15),(284,1250242,'Office Maintenance Man (uncredited)',0,16),(284,16527,'TV Movie Host (uncredited)',2,17),(284,120555,'Charlie - Bartender (uncredited)',0,18),(284,98166,'Elevator Supervisor with Clicker (uncredited)',1,19),(284,1225439,'Bit Part (uncredited)',0,20),(284,153413,'Messenger (uncredited)',2,21),(284,25627,'Man in Santa Claus Suit (uncredited)',2,22),(5780,3636,'Michael Armstrong',2,0),(5780,5823,'Sarah Sherman',1,1),(5780,45523,'Countess Kuchinska',1,2),(5780,45524,'Heinrich Gerhard',2,3),(5780,41985,'Ballerina',1,4),(5780,26517,'Hermann Gromek',2,5),(5780,34405,'Gustav Lindt',2,6),(5780,38100,'Dr. Koska',0,7),(5780,26349,'Karl Manfred',0,8),(5780,45525,'Farmer',2,9),(5780,45526,'Farmer\'s Wife',1,10),(292,4169,'Himself',2,0),(292,4237,'Herself',1,1),(292,4238,'Common',0,2),(292,4239,'Mos Def',2,3),(292,4240,'Bilal',0,4),(292,4241,'Lil\' Cease',0,5),(292,4242,'Cody Chestnutt',0,6),(292,4243,'James \'Kamal\' Gray',0,7),(292,4244,'Lauryn Hill',0,8),(292,4245,'Leonard \'Hub\' Hubbard',0,9),(292,4246,'Wyclef Jean',2,10),(292,4247,'Tiffany Limos',1,11),(292,4719,'Ahmir \'?uestlove\' Thompson',0,12),(292,4720,'Kanye West',2,13),(292,4721,'Jill Scott',1,14),(821,12147,'Chief Judge Dan Haywood',2,0),(821,13784,'Dr. Ernst Janning',2,1),(821,12149,'Col. Tad Lawson',2,2),(821,2896,'Mrs. Bertholt',1,3),(821,12150,'Hans Rolfe',2,4),(821,9066,'Mrs. Irene Hoffman Wallner',1,5),(821,12151,'Rudolph Petersen',2,6),(821,2651,'Sen. Burkette',2,7),(821,12152,'Emil Hahn',2,8),(821,12153,'Werner Lampe',2,9),(821,12154,'Friedrich Hofstetter',2,10),(821,1748,'Capt. Harrison Byers',2,11),(821,12155,'Judge Kenneth Norris',2,12),(821,12156,'Brig. Gen. Matt Merrin',2,13),(821,12157,'Dr. Karl Wieck',2,14),(821,12158,'Dr. Heinrich Geuter',2,15),(821,12159,'Hugo Wallner',2,16),(821,121323,'Lady in Theatre Box',1,17),(821,126903,'Maj. Abe Radnitz',2,18),(821,101481,'Mrs. Halbestadt',1,19),(821,14365,'Pohl',0,20),(821,93624,'Judge Curtiss Ives',0,21),(821,71781,'Halbestadt',2,22),(821,127672,'Mrs. Elsa Lindnow',1,23),(821,178888,'Schmidt',2,24),(821,1215915,'Max Perkins',0,25),(821,27164,'Courtroom Spectator (uncredited)',0,26),(821,1072437,'Courtroom Spectator (uncredited)',2,27),(821,89729,'Courtroom Spectator at Verdict (uncredited)',2,28),(821,1010443,'Courtroom Spectator (uncredited)',0,29),(821,1216356,'Courtroom Spectator (uncredited)',2,30),(821,1468755,'Courtroom Spectator (uncredited)',0,31),(821,89937,'Courtroom Spectator (uncredited)',2,32),(821,983505,'Courtroom Spectator (uncredited)',2,33),(821,120445,'Courtroom Spectator (uncredited)',2,34),(821,148853,'Courtroom Spectator (uncredited)',0,35),(821,1511945,'Courtroom Spectator (uncredited)',0,36),(821,1120620,'Courtroom Spectator (uncredited)',2,37),(821,213641,'Waiter at Court Lounge (uncredited)',0,38),(821,30979,'Waiter (uncredited)',2,39),(821,1208018,'Concert Attendee (uncredited)',2,40),(821,170562,'Concert Attendee (uncredited)',2,41),(821,99827,'Mrs. Ives (uncredited)',1,42),(821,171111,'Courtroom Officer (uncredited)',2,43),(821,1469587,'Assistant Defense Attorney (uncredited)',0,44),(821,89040,'Captain at Nightclub Announcing Call-up of Officers (uncredited)',2,45),(821,1176510,'German Prisoner in Cafeteria (uncredited)',2,46),(821,1214926,'Interpreter in Courtroom (uncredited)',0,47),(821,1208035,'German Prisoner in Cafeteria (uncredited)',0,48),(821,1432701,'German Counsel (uncredited)',0,49),(821,151604,'Elsa Scheffler (uncredited)',1,50),(821,1551605,'Army Major at trial (uncredited)',2,51),(821,1581532,'Courtroom Spectator (uncredited)',0,52),(821,1600501,'Concert Attendee (uncredited)',0,53),(821,122067,'Club Patron (uncredited)',0,54),(3089,4165,'Thomas Dunson',2,0),(3089,12151,'Matthew \'Matt\' Garth',2,1),(3089,30296,'Tess Millay',1,2),(3089,4302,'\'Groot\' Nadine',2,3),(3089,3336,'Fen',0,4),(3089,30212,'Mr. Melville',2,5),(3089,14502,'Cherry Valance',2,6),(3089,30297,'Buster McGee',2,7),(3089,4316,'Dan Latimer',2,8),(3089,30298,'Quo',0,9),(3089,8496,'Teeler Yacey',2,10),(3089,30299,'Simms Reeves',2,11),(3089,10545,'Matt, as a boy',2,12),(3089,30300,'Walt Jergens',2,13),(3089,121238,'Old Leather',2,14),(7509,52969,'Kalyani',1,0),(7509,52970,'Chuyia',1,1),(7509,52971,'Narayan',2,2),(7509,230632,'Shakuntala',1,3),(7509,52973,'Bhagavati, Narayan\'s Mother',1,5),(7509,43416,'Rabindra',2,6),(7509,52975,'Snehalata',1,7),(7509,1325553,'Madhumati',0,8),(7509,52974,'Gulabi',2,9),(252,3460,'Willy Wonka',2,0),(252,3461,'Grandpa Joe',0,1),(252,3462,'Charlie Bucket',0,2),(252,3463,'Mr. Henry Salt',2,3),(252,3468,'Violet Beauregarde',0,4),(252,3467,'Mr. Sam Beauregarde',0,5),(252,3464,'Veruca Salt',0,6),(252,3469,'Mrs. Teevee',1,7),(252,3476,'The Tinker',2,8),(252,29493,'Computer Scientist',0,9),(252,1183443,'Oompa Loompa',0,10),(252,252527,'Oompa Loompa',0,11),(252,78940,'Mr. Teavee',2,12),(252,48859,'Mr. Gloop',0,13),(252,995639,'Oompa Loompa',0,14),(252,3470,'Mike Teevee',0,15),(252,3471,'Mrs. Gloop',0,16),(252,1686604,'Augustus Gloop',0,17),(252,3473,'Mrs. Bucket',0,18),(252,3474,'Bill, Candy Shop Owner',2,19),(252,3475,'Mr. Turkentine',2,20),(252,3478,'Henrietta Salt',0,21),(252,3617,'Mr. Slugworth',2,22),(252,951286,'Mr. Jopeck',2,23),(252,97869,'Winkelmann',0,24),(252,1686605,'Grandma Josephine',1,25),(252,1686606,'Grandma Georgina',1,26),(252,1686607,'Grandpa George',0,27),(252,956818,'Stanley Kael',2,28),(252,153588,'Auctioneer',2,29),(252,1686608,'Oompa Loompa',0,30),(252,100299,'Oompa Loompa',0,31),(252,1686610,'Oompa Loompa',0,32),(252,1686611,'Oompa Loompa',0,33),(252,1220976,'Oompa Loompa',0,34),(252,1686615,'Marcus Powell',0,35),(549,2954,'Jean Michel Basquiat',2,0),(549,7487,'Andy Warhol',2,1),(549,2778,'Bruno Bischofberger',2,2),(549,64,'Albert Milo',2,3),(549,1121,'Benny Dalmau',2,4),(549,4174,'Gina Cardinale',1,5),(549,7486,'Rene Ricard',2,6),(549,7489,'Mary Boone',1,7),(549,7621,'Big Pink',1,8),(549,68890,'Cynthia Kruger',1,9),(549,4690,'The Interviewer',2,10),(549,5293,'The Electrician',2,11),(549,6807,'Thug',2,12),(549,7488,'Shenge',2,13),(549,7622,'Matilde Basquiat',1,14),(549,6401,'Rockets',2,15),(549,17257,'Annina Nosei',1,16),(549,101377,'Henry Geldzahler',2,17),(549,1218174,'Guard at Hospital',0,18),(549,1010,'Counterman at Deli',2,19),(868,13091,'Tsotsi',2,0),(868,13092,'Morris',2,1),(868,13093,'Miriam',1,2),(868,13094,'Aap',2,3),(868,13095,'Butcher',0,4),(868,13097,'Fela',0,5),(868,13098,'John Dube',2,6),(868,13100,'Pumla Dube',0,7),(868,13101,'Captain Smit',2,8),(868,13103,'Sergeant Zuma',2,9),(868,13105,'Soekie',0,10),(868,13106,'Gumboot Dlamini',2,11),(868,13108,'Tsotsi\'s father',2,12),(868,13109,'Tsotsi\'s Mother',0,13),(868,13111,'Young Tsotsi',2,14),(868,2614,'Boston',2,15),(670,64880,'Oh Dae-su',2,0),(670,10112,'Lee Woo-jin',2,1),(670,1299317,'Mi-do',1,2),(670,1299313,'Mr. Han',2,3),(670,77188,'Park Cheol-woong',2,4),(670,139491,'No Joo-Hwan',0,5),(670,77183,'Young Dae-su',2,6),(670,117504,'Lee Soo-ah',0,8),(670,554330,'Yoo Hyung-ja',0,9),(670,39258,'Beggar',2,10),(670,1402308,'Young Woo-jin',0,13),(670,528339,'Suicidal Man',2,14),(670,587675,'Lee Woo-jin (young)',2,15),(342,5201,'Tobi',2,0),(342,5202,'Achim',2,1),(342,5203,'Anke',1,2),(342,5204,'Hansi',2,3),(342,5205,'Georg Schorsi',0,4),(342,5206,'Sandra',0,5),(342,5207,'Leo',2,6),(342,5208,'Malte',2,7),(342,5209,'Ferdl',0,8),(342,5210,'Susanne',0,9),(342,5211,'Flasche',2,10),(342,5212,'Nils',0,11),(342,5213,'Niels',0,12),(342,5214,'Oli',0,13),(666,10055,'Dora',1,0),(666,10057,'Irene',1,1),(666,10059,'Josuu00e9',2,2),(666,10061,'Cu00e9sar',2,3),(666,10062,'Pedru00e3o',0,4),(666,8600,'Isau00edas',2,5),(666,52584,'Moisu00e9s',2,6),(666,10063,'Yolanda',0,7),(666,55011,'Waitress',0,8),(666,1337623,'Dora\'s Client',2,9),(666,10060,'Ana',0,10),(666,933139,'Jessu00e9\'s Wife',0,11),(666,55010,'Benu00e9',0,12),(666,1511425,'Man in the bus',0,13),(666,1364415,'Nordeste preacher',0,14),(666,1331384,'Dora\'s Client',0,15),(666,230171,'Dora\'s Client',0,16),(666,1415432,'Dora\'s Client in Nordeste',0,17),(666,1200357,'Jessu00e9',0,18),(248,3381,'Dave \'the Dude\' Conway',2,0),(248,3380,'Apple Annie',1,1),(248,3382,'Elizabeth Queenie Martin',1,2),(248,857,'Count Alfonso Romero',2,3),(248,2314,'Joy Boy',2,4),(248,3383,'Judge Henry G. Blake',2,5),(248,2437,'Hutchins',2,6),(248,3442,'Junior',2,7),(248,16016,'Governor',2,8),(248,41750,'Steve Darcey',2,9),(248,13567,'Louise',1,10),(248,14451,'Police Commissioner (as Barton Maclane)',0,11),(248,16766,'Police Inspector McCrary',2,12),(248,14452,'Mayor',2,13),(248,29285,'Cortego',2,14),(248,30115,'Newspaper Editor',2,15),(248,83149,'Newspaper Editor',2,16),(248,13821,'Pierre',2,17),(248,5738,'Soho Sal',1,18),(248,2927,'Mr. Cole',2,19),(248,117029,'Flyaway',2,20),(248,4965,'Cheesecake',2,21),(248,84229,'Big Mike',2,22),(248,40623,'Police Captain Moore',2,23),(248,89735,'Pool Player',2,24),(248,108101,'Mayor\'s Wife (uncredited)',1,25),(248,96302,'Mallethead (uncredited)',0,26),(248,13874,'Young reporter at dock (uncredited)',0,27),(248,121323,'Pedestrian Entering Queenie Martin\'s Club (uncredited)',1,28),(248,96722,'Lloyd (uncredited)',2,29),(248,117677,'Newspaper Editor (uncredited)',2,30),(248,85778,'Knuckles (uncredited)',2,31),(248,157234,'Annie\'s Neighbor (uncredited)',1,32),(248,3163,'Shimkey (uncredited)',2,33),(248,34448,'Governor of Florida (uncredited)',2,34),(248,1759,'Queenie\'s \'Broad\' in Black Dress (uncredited)',1,35),(248,3384,'Carlos Romero',0,36),(248,83623,'Herbie - Hotel Employee (uncredited)',0,37),(248,1208035,'Dock Extra (uncredited)',0,38),(248,1045763,'Slop - Pretends to be Governor of Utah (uncredited)',0,39),(239,3149,'Sugar Kane Kowalczyk',1,0),(239,3150,'Joe (Josephine)',2,1),(239,3151,'Jerry (Daphne)',2,2),(239,3152,'Spats Colombo',2,3),(239,3155,'Det. Mulligan',0,4),(239,3156,'Osgood Fielding III',0,5),(239,3160,'Little Bonaparte',2,6),(239,3161,'Sweet Sue',1,7),(239,1700403,'Sig Poliakoff',0,8),(239,3163,'Toothpick Charlie',2,9),(239,1238851,'Beinstock',0,10),(239,84229,'Spats\' henchman',2,11),(239,1045763,'Spats\' Henchman',0,12),(239,164975,'Dolores',1,13),(239,3168,'Nellie',1,14),(239,81501,'Johnny Paradise',2,15),(239,1072437,'Party Guest (uncredited)',2,16),(239,153395,'Olga (uncredited)',1,17),(239,151865,'Spats\' Henchman (uncredited)',0,18),(239,1152705,'Gangster Convention Greeter (uncredited)',2,19),(239,1547818,'Gangster at Convention (uncredited)',2,20),(239,16417,'Funeral Director / Speakeasy Waiter (voice) (uncredited)',2,21),(239,1287871,'Gangster with Charlie (uncredited)',0,22),(239,120048,'Mobster at Banquet (uncredited)',0,23),(239,562713,'Official #2 (uncredited)',0,24),(239,1514041,'Policeman (uncredited)',0,25),(239,115331,'Waiter (uncredited)',0,26),(239,34324,'Bouncer (uncredited)',2,27),(239,151771,'Small Role (uncredited)',2,28),(239,134001,'Small Role (uncredited)',1,29),(239,1250242,'Small Role (uncredited)',0,30),(239,1364421,'Old Man (uncredited)',2,31),(239,165132,'Drunk (uncredited)',2,32),(239,1496053,'Small Role (uncredited)',0,33),(239,1208035,'Speakeasy Patron (uncredited)',0,34),(239,1208039,'Speakeasy Patron (uncredited)',0,35),(239,1547827,'Small Role (uncredited)',0,36),(239,3345,'Mozzarella (uncredited)',2,37),(239,1221372,'Emily (uncredited)',0,38),(239,119255,'Small Role (uncredited)',2,39),(239,1759,'Rosella (uncredited)',1,40),(239,1468481,'Chef (uncredited)',0,41),(239,569144,'Speakeasy Patron (uncredited)',2,42),(239,191823,'Hotel Guest (uncredited)',0,43),(630,9066,'Dorothy Gale',1,0),(630,9067,'Professor Marvel / The Wizard of Oz',2,1),(630,9068,'Hunk / The Scarecrow',0,2),(630,9069,'Zeke / The Cowardly Lion',2,3),(630,9070,'Hickory / The Tin Man',0,4),(630,9071,'Glinda, the Good Witch of the North',1,5),(630,9072,'Miss Gulch / The Wicked Witch of the West',1,6),(630,8517,'Uncle Henry',2,7),(630,9073,'Auntie Em',1,8),(630,1468722,'The Munchkins',0,9),(630,1318970,'Nikko',0,10),(630,1179846,'Toto',0,11),(3034,3460,'Dr. Frederick Frankenstein',2,0),(3034,1039,'The Monster',2,1),(3034,29802,'Igor',2,2),(3034,29803,'Elizabeth',1,3),(3034,9599,'Frau Blu00fccher',1,4),(3034,8437,'Inga',1,5),(3034,193,'Blindman',2,6),(3034,9601,'Insp. Hans Wilhelm Friedrich Kamp',2,7),(3034,29283,'Gerhard Falkstein',2,8),(3034,213641,'Sadistic Jailor',0,9),(3034,13392,'Village Elder',2,10),(3034,44823,'Gravedigger',2,11),(3034,85988,'First Village Elder',2,12),(3034,11764,'Second Villager',2,13),(3034,14639,'Werewolf / Cat Hit by Dart / Victor Frankenstein (voice)',2,14),(3034,30865,'Frightened Villager',2,15),(3034,51230,'Helga\'s Father',2,16),(3034,1191818,'Theatre Goer',1,17),(3034,43115,'',2,18),(3034,152711,'Mr. Hilltop',0,19),(3034,111383,'Medical Student',2,20),(3034,1068894,'Little Girl',0,21),(3034,1068895,'Gravedigger',0,22),(3034,1068896,'Villager',0,23),(3034,134613,'Orderly in Frankenstein\'s Class',2,24),(3034,1217501,'Medical Student',0,25),(3034,1507184,'Theatre Goer',2,26),(3034,103815,'Helga\'s Mother',0,27),(3034,1465347,'Spectator',0,28),(3034,119739,'Villager',2,29),(3034,30979,'Emcee at Frankenstein\'s Show',2,30),(3034,19552,'Train Conductor',2,31),(3034,1441104,'Train Passenger',0,32),(3034,1208039,'Member of Angry Mob',0,33),(5900,27880,'Van Tilt',2,0),(5900,46456,'Mrs. Van Tilt',0,1),(5900,46457,'Cremer',0,2),(5900,46458,'Stewardess',0,3),(5900,46459,'Loohman',2,4),(5900,46460,'De Vos',0,5),(5900,46461,'Koerier',0,6),(5900,46450,'De Vet',0,7),(5900,46462,'Eva',0,8),(5900,46463,'Shopassistent',0,9),(5900,9134,'Martin',0,10),(5900,46464,'Stella',0,11),(5900,28896,'Gardener',0,12),(5900,45746,'Cleaning Woman',1,13),(5900,46465,'Neighbor',0,14),(5900,27883,'Blind Woman',1,15),(5900,27875,'Train conductor',2,16),(5900,46466,'Train conductor',2,17),(5900,34872,'Painter',0,18),(5900,27882,'Woman with gun',1,19),(5900,46467,'Hengelaar',0,20),(5900,45747,'Busdriver',0,21),(5900,46468,'Chantalle',0,22),(5900,27836,'Chantalle\'s mother',1,23),(5900,46469,'Chantalle\'s father',0,24),(5900,27881,'Marie',1,25),(5900,34870,'prostitute',0,26),(5900,45750,'Teacher',2,27),(5900,27885,'Vrachtwagenchauffeur',2,28),(5900,446906,'Overvaller',2,29),(5900,211133,'Vrouw voor etalage',0,30),(5900,1273714,'Carla',0,31),(5900,211105,'Stratenmaker',2,32),(5900,1189908,'Stratenmaker',2,33),(5900,1280679,'Indiase man',0,34),(5900,297193,'Orgelman',2,35),(5900,1803842,'Drukker',2,36),(9730,2174,'Trisha \'Trish\' Jarvis',1,0),(9730,58813,'Rob Dier',2,1),(9730,3034,'Tommy Jarvis',2,2),(9730,58814,'Sara',1,3),(9730,1064,'Jimmy Mortimer',2,4),(9730,72541,'Samantha',1,5),(9730,59442,'Doug',2,6),(9730,72462,'Paul',2,7),(9730,106752,'Ted',2,8),(9730,21458,'Mrs. Jarvis',1,9),(9730,22050,'Tina',0,10),(9730,563576,'Terri',0,11),(9730,176475,'Jason',2,12),(291,4322,'Jeff Clark',0,0),(291,4323,'Darrick Doerner',2,1),(291,4324,'Laird John Hamilton',0,2),(291,4325,'Dave Kalama',2,3),(291,4326,'Dave Kalama',0,4),(291,4327,'Brian L. Keaulana',0,5),(291,4328,'Buzzy Kerbox',2,6),(291,4329,'Titus Kinimaka',2,7),(291,4330,'Gerry Lopez',2,8),(291,4331,'Mickey Munoz',0,9),(291,4332,'Greg Noll',0,10),(291,4333,'Evan Slater',0,11),(291,4334,'Kelly Slater',2,12),(291,4335,'Darryl Virostko',0,13),(8875,56162,'Mike',0,1),(8875,12538,'clyde',2,2),(8875,45391,'Ida',1,3),(8875,56163,'Deacon',0,4),(8875,56164,'Darryl',0,5),(8875,24213,'Jason',0,6),(8875,56165,'Brody',0,7),(8875,56166,'Sam',0,8),(8875,56167,'Lonnie',0,9),(8875,56168,'Sarah',1,10),(8875,56169,'Evelyn',0,11),(8875,52271,'Sheryl',1,12),(872,13294,'Don Lockwood',2,0),(872,13295,'Cosmo Brown',2,1),(872,8857,'Kathy Selden',1,2),(872,13296,'Lina Lamont',1,3),(872,13297,'R.F. Simpson',2,4),(872,41226,'Dancer',1,5),(872,13298,'Roscoe Dexter',0,6),(872,13299,'Zelda Zanders',1,7),(872,29814,'Hairdresser (uncredited)',1,8),(872,121323,'Audience Member (uncredited)',1,9),(872,2784,'Matt - Policeman (uncredited)',2,10),(872,7210,'Phoebe Dinsmore (uncredited)',1,11),(872,55997,'Chorus Girl (uncredited)',1,12),(872,1213241,'Female Tango Dancer (uncredited)',0,13),(872,85778,'Old Man Getting Umbrella in Singin\' in the Rain Number (uncredited)',2,14),(872,15992,'Messenger on Screen (uncredited)',2,15),(872,121765,'Lady-in-Waiting (uncredited)',1,16),(872,120473,'Policeman in Singin\' in the Rain Number (uncredited)',0,17),(872,97999,'Audience Member (uncredited)',2,18),(9591,16857,'Guy Patterson',2,0),(9591,51670,'Jimmy Mattingly',2,1),(9591,31,'Mr. White',2,2),(9591,18324,'Lenny Haise',2,3),(9591,58019,'T.B. Player',2,4),(9591,882,'Faye Dolan',1,5),(9591,6885,'Tina',1,6),(9591,8854,'Del Paxton',2,7),(9591,1771,'Chad',2,8),(9591,52057,'Lamarr',2,9),(9591,20752,'Sol Siler',2,10),(9591,6591,'Uncle Bob',2,11),(9591,1578,'Mr. Patterson',2,12),(9591,8191,'Phil Horace',2,13),(9591,42363,'Troy Chesterfield',2,14),(9591,12931,'Margueritte',1,15),(9591,7166,'Victor \'Boss Vic Koss\' Kosslovich',2,16),(9591,74933,'Freddy Fredrickson',2,17),(9591,67805,'Mrs. Patterson',0,19),(9591,166935,'Darlene Patterson',1,20),(9591,16294,'Major Motion Picture Director',2,21),(9591,116805,'KMPC DJ',2,22),(9591,17419,'Virgil Gus Grissom',2,23),(9591,3492,'Male Page',2,24),(9591,93055,'Chrissy Thomkins',1,26),(1687,7505,'Cornelius',2,0),(1687,10539,'Dr. Zira',1,1),(1687,18647,'Dr. Lewis Dixon',2,2),(1687,18648,'Dr. Stephanie \'Stevie\' Branton',1,3),(1687,8544,'Dr. Otto Hasslein',2,4),(1687,8499,'The President',2,5),(1687,2770,'Dr. Milo',2,6),(1687,12692,'E-1',2,7),(1687,16089,'E-2',0,8),(1687,18649,'Committee Chairman',2,9),(1687,588,'Aide',2,10),(1687,1793,'Armando',2,11),(1687,1208039,'Official at Briefing',0,12),(468,741,'Mike Waters',2,0),(468,6384,'Scott Favor',2,1),(468,785,'Richard Waters',2,2),(468,6385,'Bob Pigeon',2,3),(468,6386,'Gary',2,4),(468,6405,'Carmella',1,5),(468,6465,'Mother',1,6),(468,6466,'Jack Favor',2,7),(468,53361,'Digger',0,8),(468,188589,'Denise',0,9),(468,1237,'Budd',2,10),(468,1646,'Hans',2,11),(468,1048023,'Jane Lightwork',0,12),(401,5367,'Andrew Largeman',2,0),(401,524,'Sam',1,1),(401,65,'Gideon Largeman',2,2),(401,133,'Mark',2,3),(401,5376,'Carol',1,4),(401,19497,'Jesse',2,5),(401,5385,'Aunt Sylvia Largeman',1,6),(401,5384,'Diego',2,7),(401,5395,'Dave',0,8),(401,5372,'Dr. Cohen',2,9),(401,5374,'Tim',2,10),(401,51381,'Kenny',2,11),(401,43366,'Olivia',1,12),(401,5377,'Titembay',2,13),(401,81681,'Albert',2,14),(401,5373,'Kelly',1,15),(401,5375,'Karl Benson',2,16),(401,5369,'Restaurant Manager',2,17),(401,5370,'Waiter',0,18),(401,5371,'Young Hollywood Guy',0,19),(401,118494,'Obnoxious Girl',1,20),(401,74308,'Gleason Party Drunk',2,21),(401,230060,'Dana',1,22),(401,77644,'Pam',0,23),(401,211,'Faye',1,24),(401,1533076,'Neurology Receptionist',0,25),(401,1232500,'Mrs. Lubin',1,26),(401,1828875,'Handi-World Cashier',1,27),(401,1811956,'Man Having Sex',2,28),(401,1639440,'Peeping Tom',2,29),(401,5368,'Busboy',2,30),(401,1840207,'Teen in Hallway',0,31),(401,1840208,'Hooker',0,32),(401,1840209,'Arthur-the-Dog',0,33),(401,1840210,'Masturbating Dog',0,34),(401,1840211,'Herself - News 12 New Jersey News Anchor (voice) (archive footage)',0,35),(401,1840212,'Himself - News 12 New Jersey News Anchor (archive footage)',0,36),(76,569,'Jesse',2,0),(76,1146,'Cu00e9line',1,1),(76,571,'Wife on Train',1,2),(76,572,'Husband on Train',0,3),(76,573,'Guy on Bridge',2,4),(76,574,'Guy on Bridge',0,5),(76,146859,'Palm Reader',1,6),(76,3735,'Street Poet',0,7),(76,3738,'Bartender',0,8),(76,3737,'Guitar Player in Club',0,9),(76,3736,'Belly Dancer',0,10),(76,3739,'Percussionist',0,11),(76,3722,'Cafe Patron',2,12),(76,1265413,'Cafe Patron',0,13),(76,1265414,'Cafe Patron',0,14),(76,1265415,'Cafe Patron',0,15),(76,1265416,'Cafe Patron',0,16),(76,1265417,'Cafe Patron',0,17),(76,1265418,'Cafe Patron',0,18),(76,3727,'Cafe Patron',2,19),(76,1265419,'Cafe Patron',0,20),(76,1265420,'Cafe Patron',0,21),(76,1265421,'Cafe Patron',0,22),(76,1265422,'Cafe Patron',0,23),(76,1265423,'Musician on Boat',0,24),(76,1265424,'Musician on Boat',0,25),(76,1265425,'Harpsichord Player',0,26),(20,98,'Ann',1,0),(20,99,'Laurie',1,1),(20,100,'Don',2,2),(20,101,'Neighbor Ann',1,3),(20,102,'Ann\'s Mother',1,4),(20,103,'Lee',2,5),(20,2319,'Hairdresser',1,6),(20,2320,'Dr. Thompson',2,7),(20,2321,'Penny',1,8),(20,2322,'Patsy',0,9),(20,2323,'Camille Martu00ednez',0,10),(20,658,'Ann\'s Father',2,11),(1698,679,'Paula',1,0),(1698,11953,'Hein',2,1),(1698,28361,'Gretchen',1,2),(1698,36863,'Ludwig',0,3),(1698,6268,'Caspar',2,4),(1698,36864,'Phil',0,5),(1698,26602,'Prof. Grombek',0,6),(1698,36463,'David',2,7),(1698,19913,'Franz',0,8),(1698,36865,'Gabi',1,9),(1698,5266,'Dr. Henning',0,10),(1698,36866,'Frau Henning',1,11),(1698,36712,'Paulas Grou00dfvater',0,12),(1698,12767,'Pru00e4parator',0,13),(1698,36867,'Professor in Mu00fcnchen',2,14),(1698,34302,'Bernie',0,15),(7512,36422,'Cpl. Average Joe Bauers/Not Sure',2,0),(7512,52792,'Rita',1,1),(7512,51298,'Frito Pendejo',2,2),(7512,53256,'President Dwayne Elizondo Mountain Dew Herbert Camacho',2,3),(7512,52793,'Secretary of Defense',0,4),(7512,52794,'Secretary of State',2,5),(7512,52795,'Prosecutor',0,6),(7512,52796,'Bailiff',0,7),(7512,52797,'Sgt. Keller',0,8),(7512,182680,'Officer Collins',2,9),(7512,52798,'Hospital Technician',2,10),(7512,15033,'Dr. Lexus',2,11),(7512,52799,'Cop #1',0,12),(7512,52800,'Horny Guy',0,13),(7512,52801,'Yuppie Husband',2,14),(7512,21005,'Yuppie Wife',1,15),(7512,52802,'Trashy Guy',0,16),(7512,1375020,'Slutty Girl',0,17),(7512,1375021,'New Slutty Girl',0,18),(7512,1375022,'Trashy Teen Jock',0,19),(7512,71555,'Beef Supreme',2,20),(7512,1375023,'Officer',0,21),(7512,1375024,'Main Character (Ow! My Balls! Guy)',0,22),(7512,1375025,'Additional Officer',0,23),(7512,1375026,'Counter Woman',0,24),(7512,1375027,'Doctor in Waiting Room',0,25),(7512,1375028,'Prison Guard #1 / Costco Greeter',0,26),(7512,1375029,'Prison Guard #2',0,27),(7512,1375030,'Prison Guard #3',0,28),(7512,157534,'Guy at Costco',0,29),(7512,71565,'Woman at Carl\'s Jr.',1,30),(7512,1375031,'Congressman #1',0,31),(7512,1375032,'Congressman #2',0,32),(7512,215887,'Secret Service Thug',2,33),(7512,1087617,'Upgrayedd',0,34),(7512,94983,'Secretary of Energy',0,35),(7512,19159,'Brawndo CEO',2,36),(7512,78798,'',2,37),(7512,1375033,'Female Newscaster',0,38),(7512,1375034,'Male Newscaster',0,39),(7512,180527,'Female Reporter',1,40),(7512,1375035,'Stadium Guard',0,41),(7512,84816,'Cameraman',2,42),(7512,1375036,'Cop at Government Center',0,43),(7512,32238,'Doctor',2,44),(7512,1375037,'Control Room Director',0,45),(7512,139235,'Cop at Costco',2,46),(7512,1375038,'Trapped Man',0,47),(7512,1375039,'Secretary of Education',0,48),(7512,1375040,'Secret Service Thug #2',0,49),(7512,1375041,'Narrator',0,50),(7512,10131,'Attorney General (uncredited)',1,51),(7512,589305,'Charles Chaplin (uncredited)',0,52),(756,565402,'Narrator - Narrative Introductions',2,1),(756,2106,'Mickey Mouse (segment \'The Sorcerer\'s Apprentice\') (voice)',2,2),(756,1098082,'Soloist (segment \'Ave Maria\') (singing voice)',0,4),(756,233471,'Himself - Conductor of The Philadelphia Orchestra',2,5),(9728,58799,'Chris Higgins',1,0),(9728,58802,'Rick',2,1),(9728,1225471,'Debbie',0,2),(9728,106249,'Andy',0,3),(9728,55268,'Vera Sanchez',1,4),(9728,558477,'Shelly',0,5),(9728,82176,'Chili',0,6),(9728,1682653,'Chuck',0,7),(9728,995980,'Ali',0,8),(9728,83334,'Fox',0,9),(9728,191939,'Loco',0,10),(9728,58807,'Jason',2,11),(9728,7909,'Harold',2,12),(9728,1782844,'Abel',0,13),(9728,1778206,'Mrs. Sanchez',1,14),(9728,58808,'Cashier',0,15),(9731,197057,'Pam Roberts',1,0),(9731,162927,'Tommy Jarvis',2,1),(9731,1212555,'Reggie',2,2),(9731,745,'Matthew Letter',2,3),(9731,94182,'Sheriff Cal Tucker',2,4),(9731,98583,'Robin',1,5),(9731,1238682,'Ethel Hubbard',0,6),(9731,1213030,'George',0,7),(9731,176352,'Duke',0,8),(9731,58819,'Vinnie',2,10),(9731,58821,'Joey',2,11),(9731,103967,'Violet',1,12),(9731,3034,'Tommy Jarvis Age 12',2,13),(9731,3205,'Deputy Dodd',2,14),(9731,1265341,'Tina',0,15),(9731,58820,'Nurse Yates',0,16),(9731,2080,'Neil',2,17),(9731,74354,'Demon',2,18),(9731,179625,'Victor Faden',2,19),(9916,7071,'Miz Elda',1,0),(9916,9976,'Man of God',0,1),(9916,60459,'Fagan Kai',2,2),(9916,60460,'Angor Forbes',2,3),(9916,60461,'Brogan Kai',2,4),(9916,60458,'Cadi Forbes',1,5),(9916,34274,'Fia Forbes',0,6),(9916,60462,'The Sin Eater',2,7),(9916,55958,'Iona Kai',1,8),(9916,47884,'Gervase O\'Dara',1,9),(9916,53762,'Granny Forbes',0,10),(9916,7144,'Laochailand Kai',2,11),(9916,60463,'Lilybet',1,12),(9916,60464,'Bletsung McLeod',1,13),(9916,60465,'Elen Forbes',0,14),(9916,33299,'Indian Chief',0,15),(9916,60468,'Glynnis',0,16),(9916,60467,'Cullen',0,17),(9916,60466,'Cleet Kai',0,18),(9916,60469,'Elderly Woman',0,19),(887,13576,'Al Stephenson',2,0),(887,13577,'Milly Stephenson',1,1),(887,13578,'Fred Derry',2,2),(887,7663,'Peggy Stephenson',1,3),(887,13579,'Marie Derry',1,4),(887,10023,'Wilma Cameron',1,5),(887,11439,'Butch Engle',1,6),(887,13580,'Homer Parrish',2,7),(887,14450,'Hortense Derry',1,8),(887,95315,'Pat Derry',2,9),(887,14518,'Mr. Milton',2,10),(887,32431,'Mrs. Parrish',1,11),(887,85990,'Mr. Parrish',2,12),(887,78792,'Cliff Scully',0,13),(887,3346,'Mrs. Cameron',2,14),(9517,51214,'Marty Puccio',2,0),(9517,11671,'Ali Willis',1,1),(9517,6408,'Bobby Kent',2,2),(9517,54126,'Lisa Connelly',1,3),(9517,10692,'Donny Semenex',2,5),(9517,57387,'The Hitman',2,6),(9517,17442,'Heather Swallers',1,7),(9517,32598,'Cousin Derek',2,8),(9517,1072037,'Claudia',0,9),(9517,1837918,'Mr. Puccio',0,10),(6007,47175,'Elling',0,0),(6007,47176,'Kjell Bjarne',2,1),(6007,47177,'Frank u00c5sli',2,2),(6007,49561,'Reidun Nordsletten',0,3),(6007,49562,'Alfons Ju00f8rgensen',0,4),(6007,49563,'Gunn',0,5),(6007,49564,'Hauger',0,6),(8329,34793,'u00c1ngela Vidal',1,0),(8329,54532,'Manu',0,1),(8329,54523,'Conchita Izquierdo',1,2),(8329,54521,'Alex',2,3),(8329,54519,'Cu00e9sar',0,4),(8329,54520,'Marcos',2,5),(8329,54522,'Polizist',0,6),(8329,54524,'Guillem',0,7),(8329,147878,'Sergio',2,8),(8329,1619939,'Abuela',1,9),(8329,543335,'Abuelo',2,10),(8329,138697,'Madre histu00e9rica',1,11),(8329,111091,'Jennifer',0,12),(8329,111090,'Niu00f1a Medeiros',0,13),(8329,567333,'Mu00e9dico',0,14),(8329,1367762,'Japonesa',1,15),(8329,1619946,'Japonu00e9s',2,16),(8329,1031748,'Chica colombiana',1,17),(8329,17528,'Pablo (voice)',2,18),(8329,1092534,'(voice) (uncredited)',2,19),(657,738,'James Bond',2,0),(657,9896,'Tatiana Romanova',0,1),(657,96973,'Ali Kerim Bey',2,2),(657,9898,'Rosa Klebb',1,3),(657,8606,'Donovan \'Red\' Grant',2,4),(657,9874,'M',2,5),(657,9877,'Sylvia Trench',1,6),(657,6610,'Morzeny',0,7),(657,9899,'Vavra',2,8),(657,9901,'Kerim\'s Girl',0,9),(657,9878,'Miss Moneypenny',1,10),(657,9902,'Vida',1,11),(657,9906,'Q',2,12),(657,39036,'Kronsteen',2,13),(657,9900,'Train Conductor',2,14),(657,9925,'Zora',1,15),(657,1567984,'Masseuse',0,16),(657,199919,'McAdams',2,17),(657,1038820,'Girl Dancing During Opening Titles',0,18),(657,7682,'Ernst Blofeld',2,19),(657,1202127,'Foreign Agent',0,20),(657,1409366,'Kerim\'s Chauffeur',0,21),(657,192856,'Benz',2,22),(657,1316027,'Mehmet',0,23),(657,1534114,'Rhoda',0,24),(657,143564,'Gypsy (uncredited)',0,25),(657,1685336,'Gypsy (uncredited)',0,26),(657,1271096,'Gypsy (uncredited)',0,27),(657,1784198,'Gypsy (uncredited)',0,28),(657,1468584,'Gypsy (uncredited)',0,29),(657,1271131,'Gypsy (uncredited)',0,30),(657,1039759,'Hotel Concierge (uncredited)',0,31),(657,1498332,'Hotel Porter (uncredited)',2,32),(657,1556619,'Woman in a Punt (uncredited)',0,33),(657,47520,'Man in a Punt (uncredited)',2,34),(657,1556340,'Chess Tournament Spectator (uncredited)',0,35),(657,1613886,'Chess Tournament Spectator (uncredited)',1,36),(657,8926,'Tatiana Romanova (voice) (uncredited)',1,37),(657,1496047,'Krilencu\'s Henchman (uncredited)',2,38),(657,21609,'Ernst Stavro Blofeld (voice) (uncredited)',2,39),(657,1784214,'Naval Officer Listening to Bond\'s Tape (uncredited)',0,40),(657,1166842,'James Bond in Gunbarrel Sequence (uncredited)',0,41),(657,185033,'SPECTRE Helicopter Pilot (uncredited)',2,42),(657,1595501,'Sylvia Trench / Receptionist (voice) (uncredited)',0,43),(657,1784215,'Police (uncredited)',0,44),(595,8487,'Atticus Finch',2,0),(595,2112,'Tom Robinson',2,1),(595,8498,'Bob Ewell',2,2),(595,8488,'Jean Louise \'Scout\' Finch',1,3),(595,8489,'Jeremy \'Jem\' Finch',2,4),(595,8490,'Charles Baker \'Dill\' Harris',2,5),(595,8494,'Calpurnia',1,6),(595,8497,'Mayella Violet Ewell (as Collin Wilcox)',1,7),(595,6838,'Sheriff Heck Tate',2,8),(595,8492,'Maudie Atkinson',1,9),(595,8493,'Mrs. Dubose',1,10),(595,3087,'Arthur \'Boo\' Radley',2,11),(595,8496,'Judge Taylor',2,12),(595,8495,'Aunt Stephanie Crawford',0,13),(595,8499,'Mr. Gilmer - Prosecutor',2,14),(595,13787,'Walter Cunningham Sr.',0,15),(595,16055,'Nathan Radley',0,16),(595,1344188,'Man (uncredited)',0,17),(595,1041513,'Courtroom Spectator (uncredited)',2,18),(595,30117,'Courtroom Spectator (uncredited)',2,19),(595,1404180,'Courtroom Spectator (uncredited)',0,20),(595,1598134,'Juror (uncredited)',0,21),(595,1423288,'Juror (uncredited)',0,22),(595,1178759,'Walter Cunningham Jr. (uncredited)',0,23),(595,15073,'David Robinson (uncredited)',0,24),(595,34165,'Juror (uncredited)',2,25),(595,950433,'Court Clerk (uncredited)',2,26),(595,170562,'Courtroom Spectator (uncredited)',2,27),(595,192330,'Spence Robinson - Tom\'s Father (uncredited)',2,28),(595,34187,'Courtroom Spectator (uncredited)',2,29),(595,96733,'Helen Robinson - Tom\'s Wife (uncredited)',1,30),(595,1471682,'Courtroom Spectator (uncredited)',2,31),(595,1505860,'Courtroom Spectator (uncredited)',2,32),(595,120445,'Courtroom Spectator (uncredited)',2,33),(595,1041747,'Townsman (uncredited)',0,34),(595,30999,'Schoolteacher (uncredited)',0,35),(595,1064925,'Courtroom Spectator (uncredited)',2,36),(595,1213880,'Jesse - Dubose Servant Girl (uncredited)',0,37),(595,1176510,'Courtroom Spectator (uncredited)',2,38),(595,1193340,'Courtroom Spectator (uncredited)',0,39),(595,98503,'Dr. Reynolds (uncredited)',2,40),(595,1595381,'Courtroom Spectator (uncredited)',1,41),(595,1264978,'Courtroom Spectator (uncredited)',0,42),(595,1324821,'Courtroom Spectator (uncredited)',0,43),(595,30515,'Townsman (uncredited)',0,44),(595,31440,'Scout as an Adult - Narrator (voice) (uncredited)',1,45),(595,81735,'Burly Mob Member (uncredited)',1,46),(595,1208039,'Juror (uncredited)',0,47),(595,572525,'Courtroom Spectator (uncredited)',0,48),(595,120178,'Courtroom Spectator (uncredited)',2,49),(595,103107,'Reverend Sykes (uncredited)',2,50),(595,1496054,'Bailiff (uncredited)',0,51),(595,94897,'Mob Leader (uncredited)',2,52),(595,105759,'Jury Foreman (uncredited)',0,53),(595,1511232,'Courtroom Spectator (uncredited)',0,54),(595,106571,'Courtroom Spectator (uncredited)',1,55),(8810,2461,'Max Rockatansky',2,0),(8810,27752,'The Gyro Captain',2,1),(8810,47461,'Pappagallo',2,2),(8810,121417,'The Toadie',0,3),(8810,26491,'Wez',2,4),(8810,933020,'The Humungus',0,5),(8810,933021,'The Feral Kid',0,6),(8810,26055,'Warrior Woman',1,7),(8810,83771,'Zetta',2,8),(8810,94785,'The Captain\'s Girl',1,9),(8810,181831,'Mechanic',0,10),(8810,933022,'Curmudgeon',0,11),(8810,220357,'Big Rebecca',0,12),(8810,152565,'Nathan',0,13),(8810,933023,'Quiet Man',0,14),(8810,118933,'Mechanic\'s Assistant',0,15),(8810,187073,'Broken Victim',0,16),(8810,152548,'Defiant Victim',2,17),(226,448,'Brandon Teena',1,0),(226,2838,'Lana Tisdel',1,1),(226,133,'John Lotter',2,2),(226,2839,'Tom Nissen',2,3),(226,1346644,'Candace',0,4),(226,2841,'Kate',1,5),(226,2842,'Lana\'s Mom',1,6),(226,2843,'Brian',0,7),(226,2844,'Lonny',0,8),(226,2845,'Nicole',1,9),(226,2846,'Trucker',0,10),(226,2847,'Kwik Stop Cashier',0,11),(226,2848,'Trucker in Kwik Stop',2,12),(226,2849,'April',0,13),(226,2850,'Judge',2,14),(226,2851,'Sheriff',0,15),(226,2852,'Pam',0,16),(226,2853,'Sam Phillips',0,17),(226,2854,'Tom',0,18),(226,2855,'Nerdy Teen',0,19),(226,2856,'Girl in Car',0,20),(226,2857,'Nurse',0,21),(226,2858,'Dave (Deputy)',0,22),(226,2859,'Clerk',1,23),(582,678,'Christa-Maria Sieland',1,0),(582,8196,'Gerd Wiesler',2,1),(582,8197,'Georg Dreyman',2,2),(582,8198,'Anton Grubitz',2,3),(582,8199,'Bruno Hempf',2,4),(582,8200,'Paul Hauser',2,5),(582,8201,'Albert Jerska',2,6),(582,8202,'Karl Wallner',0,7),(582,8203,'Hu00e4ftling 227',0,8),(582,8204,'Udo',2,9),(582,1081,'Gregor Hessenstein',2,10),(582,8205,'Frau Meineke',1,11),(582,8206,'Axel Stigler',0,12),(582,8207,'Nowack',2,13),(582,5214,'Benedikt Lehmann',0,14),(582,1052284,'Schriftexperte',2,15),(582,39849,'Einsatzleiter in Uniform',2,16),(582,44393,'Einsatzleiter Meyer',0,17),(582,1036638,'Egon Schwalber',0,18),(582,28447,'Onkel Frank Hauser',2,19),(582,47784,'Junge mit Ball',0,20),(582,1324562,'Andrea',1,21),(582,13817,'Zahnarzt Dr. Czimmy',2,22),(582,1462898,'Tagesschausprecher',0,23),(582,1199032,'Wu00e4chter',0,24),(582,213579,'\'Martha\' 1991',1,25),(582,19232,'\'Anja\' 1984',0,26),(582,571188,'\'Elena\' 1984',1,27),(582,1071512,'\'Elena\' 1991 / BStU-Mitarbeiterin',1,28),(582,1156061,'\'Rolf\' Andi Wenzke-Falkenau',0,29),(582,36751,'Buchverku00e4ufer',2,30),(582,1252573,'Theatre Actress (uncredited)',0,31),(582,123242,'Erich Mielke (voice) (uncredited)',0,32),(990,3636,'Eddie Felson',2,0),(990,14882,'Minnesota Fats',2,1),(990,6721,'Sarah Packard',1,2),(990,862,'Bert Gordon',2,3),(990,14883,'Charlie Burns',2,4),(990,8608,'Findley',0,5),(990,14884,'Big John',2,6),(990,52463,'Preacher',2,7),(990,552081,'Bartender',2,8),(990,14830,'Bartender',2,9),(990,14885,'Cashier',0,10),(990,109996,'Turk',2,11),(990,1413431,'Score Keeper',0,12),(990,175066,'Waitress',1,13),(990,1287570,'Young Hustler',0,14),(9662,58416,'Les Triplettes (voice)',0,0),(9662,58417,'Les Triplettes (voice)',0,1),(9662,58418,'voice',1,2),(9662,58419,'voice',2,3),(9662,58420,'',1,4),(9662,58422,'',0,5),(9662,35878,'Les Triplettes (voice)',0,7),(2771,13242,'Harvey Pekar',2,0),(2771,15250,'Joyce Brabner',1,1),(2771,52860,'Toby Radloff',2,2),(2771,58528,'Robert Crumb',2,3),(2771,27976,'Real Harvey',2,4),(2771,93466,'Herself',1,5),(2771,27974,'Young Harvey',0,6),(2771,10825,'Stage Actor Harvey',2,7),(2771,28640,'Stage Actor Joyce',1,8),(2771,1007589,'Himself',0,9),(2771,27972,'Robin',2,10),(2771,1403521,'The Guitarist',0,11),(2771,87119,'Mr. Boats',2,12),(2771,82105,'Alice Quinn',1,13),(2771,27971,'Batman',0,14),(2771,27970,'Superman',0,15),(2771,27973,'Green Lantern',0,16),(2771,27975,'Housewife',0,17),(2771,1229502,'Danielle',1,18),(80,569,'Jesse',2,0),(80,1146,'Cu00e9line',1,1),(80,649,'Bookstore Manager',2,2),(80,651,'Journalist #1',1,3),(80,657,'Waitress',1,5),(80,3728,'Philippe',0,6),(80,3729,'Boat Attendant',0,7),(80,3730,'Man at Grill',2,8),(80,3731,'Woman in Courtyard',1,9),(80,654,'Journalist #2',2,10),(55,258,'Octavio',2,0),(55,259,'Susana',1,1),(55,261,'Valeria',1,2),(55,262,'Daniel',0,3),(55,263,'El Chivo',2,4),(55,264,'Luis',2,5),(55,265,'Gustavo',0,6),(55,266,'Jorge',2,7),(55,267,'Mauricio',0,8),(55,268,'Tu00eda Luisa',0,9),(55,269,'Mama Susana',1,10),(55,270,'Mama Octavio',1,11),(55,271,'Leonardo',0,12),(55,272,'Maru',1,13),(55,260,'Ramiro',2,14),(55,553140,'Julieta',1,15),(55,18468,'Jarocho',0,16),(55,127825,'Alvaro',0,17),(55,1197402,'El jaibo',2,18),(55,23875,'Doctor',0,19),(55,174434,'Conductor de T.V.',2,20),(55,1044057,'Hombre deshuesadero',0,21),(55,132018,'Judicial',2,22),(55,1234762,'Andru00e9s Salgado',2,23),(55,1660431,'El Chispas',2,24),(1382,16860,'Christine Jesperson',1,0),(1382,16861,'Richard Swersey',2,1),(1382,53887,'Robby Swersey',0,2),(1382,53888,'Peter Swersey',0,3),(1382,53889,'Sylvie',1,4),(1382,15376,'Andrew',2,5),(1382,53890,'Heather',0,6),(1382,53891,'Rebecca',1,7),(1382,4975,'Ellen',1,8),(1382,53892,'Sylvie\'s Mom',1,9),(1382,53893,'Sylvie\'s Dad',0,10),(4816,2178,'Ghost Dog',2,0),(4816,19183,'Sonny Valerio',2,1),(4816,39596,'Louise Vargo',1,2),(4816,14731,'Ray Vargo',2,3),(4816,2561,'Vinny',2,4),(4816,13605,'Joe Rags',2,5),(4816,28002,'Louie',2,6),(4816,39597,'Young Ghost Dog',2,7),(4816,39598,'Big Angie',2,8),(4816,4255,'Handsome Frank',2,9),(4816,39599,'Old Consigliere',2,10),(4816,4692,'Bodyguard',2,11),(4816,150,'Samurai',2,12),(4816,4812,'Raymond',2,13),(4816,933507,'Mugger',2,14),(4816,105248,'Gangsta in Red',2,15),(4816,74123,'Gangsta in Red',0,16),(4816,1175318,'Punk in Alley',2,17),(4816,1343277,'Punk in Alley',2,18),(4816,1222948,'Pearline',0,19),(4816,15439,'Nobody',2,20),(4816,1644893,'Lefty',2,21),(4816,1644894,'Al',2,22),(4816,139703,'Blonde with Jaguar',1,23),(7873,3894,'Jim Luther Davis',2,0),(7873,6862,'Mike Alonzo',2,1),(7873,52605,'Sylvia',1,2),(7873,53247,'Toussant',2,3),(7873,53248,'Marta',1,4),(7873,18999,'Agent Richards',2,5),(7873,53249,'Agent Hollenbeck',0,6),(7873,53250,'Letty',0,7),(7873,53251,'Patty',1,8),(7873,53252,'Flaco',2,9),(7873,53253,'Rita',0,10),(7873,53254,'Wilo',0,11),(7873,53255,'Listo',0,12),(7873,53256,'Darrell',2,13),(7873,53257,'Eddy',2,14),(7873,1733288,'Ranchero',2,15),(1378,19766,'Sofia',1,0),(1378,19764,'James',2,1),(1378,19762,'Jamie',2,2),(1378,19760,'Ceth',2,3),(1378,19761,'Severin',1,4),(1378,19763,'Rob',2,5),(1378,19765,'Caleb',2,6),(1378,36540,'Shabbos Goy',0,7),(1378,36541,'Bitch',0,8),(1378,36542,'Leah',0,9),(1378,32599,'Brad',2,10),(1378,18273,'Cheryl',1,11),(1378,36543,'Dr. Donut',0,12),(1378,36544,'Albino',0,13),(1378,36545,'Jesse',0,14),(1378,36546,'Tobias, the Mayor',0,15),(1378,36547,'Nick',0,16),(1378,36548,'Creamy',0,17),(1378,36549,'Faustus',1,18),(1378,36550,'Jid',0,19),(1378,36551,'Little Prince',0,20),(1378,36552,'Zoey',0,21),(1378,36553,'Derek',0,22),(1378,17108,'Blondie-Grabber',2,23),(1378,36554,'Ann, Lady of the Gutter',1,24),(1378,36556,'Sextra (one of the participants in the orgy sequence)',0,25),(1378,36563,'Himself',2,26),(8885,56198,'Himself (voice)',2,0),(8885,72567,'Himself (voice)',0,1),(8885,72573,'Himself (voice)',0,2),(8885,72569,'Himself (voice)',0,3),(7515,16828,'Syd',2,0),(7515,10860,'London',1,1),(7515,52847,'Mallory',1,2),(7515,976,'Bateman',2,3),(7515,17442,'Maya',1,4),(7515,52848,'Rebecca',1,5),(7515,52849,'Therapist',2,6),(7515,51303,'Jay',2,7),(7515,31837,'George',2,8),(7515,52850,'Kelly',1,9),(7515,52851,'Alex',1,10),(7515,52852,'Lilly',1,11),(7515,52853,'Michelle',1,12),(7515,52420,'Josh',2,13),(7515,52854,'Lauren',1,14),(7515,208944,'Dominatrix (uncredited)',1,15),(3766,33741,'Elsa Bannister',1,0),(3766,40,'Michael O\'Hara',2,1),(3766,11027,'Arthur Bannister',0,2),(3766,33742,'George Grisby',2,3),(3766,2097,'Sidney Broome',2,4),(3766,14364,'Judge',0,5),(3766,33743,'Goldfish',2,6),(3766,33744,'Jake',0,7),(3766,33745,'District Attorney Galloway',0,8),(3766,33746,'Bessie',0,9),(3766,4077,'Cab Driver',2,10),(3766,11030,'Reporter (uncredited)',0,11),(3766,135842,'Reporter (uncredited)',2,12),(3766,138248,'Reporter (uncredited)',0,13),(3766,1359791,'Reporter (uncredited)',0,14),(3766,1075381,'Schoolteacher at Aquarium / Courtroom Spectator (uncredited)',1,15),(3766,1468172,'Courtroom Spectator (uncredited)',0,16),(3766,97042,'Courtroom Spectator (uncredited)',1,17),(3766,1271204,'Courtroom Spectator (uncredited)',1,18),(3766,1208039,'Courtroom Spectator (uncredited)',0,19),(3766,1271340,'Guard (uncredited)',0,20),(3766,13791,'Guard (uncredited)',2,21),(3766,34424,'Policeman (uncredited)',0,22),(3766,1317082,'Policeman (uncredited)',0,23),(3766,160707,'Policeman (uncredited)',2,24),(3766,117036,'Policeman (uncredited)',0,25),(3766,131003,'Policeman (uncredited)',2,26),(3766,118072,'Policeman (uncredited)',0,27),(3766,11031,'Policeman / Thug (uncredited)',2,28),(3766,19218,'Police Lieutenant (uncredited)',0,29),(3766,1595022,'Li (uncredited)',2,30),(3766,1195341,'Old Lady (uncredited)',0,31),(3766,117638,'Old Woman (uncredited)',0,32),(3766,123576,'Court Clerk (uncredited)',0,33),(3766,1595378,'Man in Courthouse (uncredited)',0,34),(3766,8724,'Man in Background Outside of Cantina (uncredited)',2,35),(3766,590548,'Truck Driver (uncredited)',0,36),(3766,1269188,'Jury Foreman (uncredited)',0,37),(3766,1023934,'Port Steward / Officer Peters (uncredited)',2,38),(3766,940683,'Captain of Yacht Circe (uncredited)',2,39),(3766,1250242,'Cab Driver (uncredited)',0,40),(3766,1472526,'Waiter (uncredited)',0,41),(3766,1297378,'Garage Attendant (uncredited)',0,42),(3766,1595381,'Woman (uncredited)',1,43),(3766,975598,'Big Coke Drinker with Vest (uncredited)',2,44),(3766,96159,'Assistant District Attorney (uncredited)',2,45),(702,10538,'Blanche DuBois',1,0),(702,3084,'Stanley Kowalski',2,1),(702,10539,'Stella Kowalski',1,2),(702,9857,'Harold Mitchell',2,3),(702,3143,'Steve',2,4),(702,2757,'Pablo Gonzales',2,5),(702,10540,'Eunice',0,6),(702,10541,'A Collector',0,7),(702,10542,'A Doctor',0,8),(702,10543,'The Matron',0,9),(702,10544,'The Mexican Woman',0,10),(702,10545,'A Sailor',2,11),(702,143454,'Foreman (uncredited)',0,12),(702,2790,'Giggling Woman with Eunice (uncredited)',1,13),(702,97999,'Passerby (uncredited)',2,14),(702,120521,'Policeman (uncredited)',2,15),(702,26158,'Passerby (uncredited)',0,16),(702,1467478,'Vendor (uncredited)',0,17),(702,1044864,'Minor Role (uncredited)',0,18),(935,12446,'Group Capt. Lionel Mandrake / President Merkin Muffley / Dr. Strangelove',2,0),(935,862,'General Buck Turgidson',2,1),(935,3088,'Brigadier General Jack D. Ripper',2,2),(935,4966,'Colonel Bat Guano',2,3),(935,14253,'Major King Kong',2,4),(935,6600,'Botschafter De Sadesky',2,5),(935,15152,'Lt. Lothar Zogg',0,6),(935,126354,'Miss Scott',1,7),(935,12485,'Mr. Staines',2,8),(935,1332529,'Lt. Dietrich',0,9),(935,1236452,'Adm. Randolph',0,10),(935,948173,'Lt. Kivel',2,11),(935,1332531,'Frank',0,12),(935,10657,'Capt. \'Ace\' Owens',2,13),(935,186212,'Burpelson AFB Defense Team Member',0,14),(935,185044,'Lt. Goldberg',0,15),(935,1332532,'Burpelson AFB Defense Team Member',0,16),(935,1063405,'Burpelson AFB Defense Team Member',0,17),(935,117301,'Gen. Faceman',2,18),(935,184980,'Mandrake\' aide (uncredited)',0,19),(935,1556340,'War Room Aide (uncredited)',0,20),(542,258,'Padre Amaro',2,0),(542,7351,'Amelia',1,1),(542,7352,'Padre Benito Du00edaz',0,2),(542,7353,'Augustina Sanjuanera',1,3),(542,7368,'Obispo',2,4),(542,7369,'Martu00edn',2,5),(542,7370,'Padre Natalio Pu00e9rez',2,6),(542,7371,'Rubu00e9n de la Rosa',0,7),(542,7372,'El Presidente Municipal Gordo',2,8),(542,7373,'Getsemanu00ed',0,9),(542,7374,'Chato Aguilar',2,10),(542,7375,'Amparito',1,11),(542,7376,'Padre Mauro',0,12),(542,7377,'Don Paco de la Rosa',0,13),(542,7378,'Padre Galvu00e1n',0,14),(1705,7505,'Caesar',2,0),(1705,18648,'Lisa',1,1),(1705,103707,'MacDonald',2,2),(1705,99829,'Kolp',2,3),(1705,4307,'Aldo',2,4),(1705,35040,'Virgil',2,5),(1705,18678,'Mutant',2,6),(1705,2007,'Mandemus',2,7),(1705,18677,'Cornelius II',2,8),(1705,106121,'Teacher',2,9),(1705,16096,'Alma',1,10),(1705,160494,'Mendez',2,11),(1705,153641,'Doctor',1,12),(1705,101453,'Jake',2,13),(1705,196057,'Soldier',2,14),(1705,13023,'Julie',1,15),(1705,6593,'The Lawgiver',2,16),(4929,190,'Marshal Jed Cooper',2,0),(4929,40056,'Rachel Warren',1,1),(4929,39816,'Captain Wilson',2,2),(4929,3798,'Judge Adam Fenton',2,3),(4929,8258,'Marshal Dave Bliss',2,4),(4929,6905,'Miller',1,5),(4929,8233,'Sheriff Ray Calhoun',2,6),(4929,8493,'Madame Sophie',1,7),(4929,35322,'Matt Stone',2,8),(4929,8262,'Loomis',2,9),(4929,40154,'Francis Elroy Duffy',2,10),(4929,2778,'Prophet',2,11),(4929,9866,'Prisoner',2,12),(4929,40155,'Ben',0,13),(4929,33589,'Billy Joe',0,14),(4929,22494,'Jennifer',1,15),(4929,83128,'The Preacher',2,16),(4929,88649,'Jenkins',2,17),(4929,31503,'Schmidt',2,18),(4929,1820,'Prosecutor',2,19),(4929,120070,'Elwood',0,20),(4929,105062,'Reno',2,21),(4929,136129,'Maddow',2,22),(4929,100418,'Charlie Blackfoot',2,23),(9783,59216,'George Grieves',2,0),(9783,59213,'P.J.',2,1),(9783,59214,'Dr. Sharazi',2,2),(9783,15423,'Andrea',1,3),(9783,59215,'Friar Lazaro Mate',2,4),(9783,2072,'European Nurse',1,5),(9783,59217,'Chloe',1,6),(9783,59218,'Zoe',1,7),(9783,59219,'Ned',0,8),(9783,59220,'The Bald Man',2,9),(9783,59221,'The Face',2,10),(9783,36152,'Mandingo',0,11),(9783,59222,'Frank / PVS Host',2,12),(9783,59223,'Ira',2,13),(9783,59224,'Rayven',1,14),(9783,59225,'Young Quecha Indian Girl',1,15),(9783,59226,'Billy',2,16),(9783,44261,'Lichterhand',2,17),(9783,59227,'Gisella',1,18),(9783,18293,'Jenny',1,19),(9783,939123,'Zoe',0,20),(104,679,'Lola',1,0),(104,677,'Manni',2,1),(104,1081,'Lola\'s Father',2,2),(104,1082,'Frau Hansen',0,3),(104,1083,'Herr Schuster',2,4),(104,1084,'Homeless Man',2,5),(104,1086,'Ronnie',2,6),(104,1087,'Herr Kruse',0,7),(104,1088,'Herr Meier',2,8),(104,3702,'Mike',0,10),(104,3703,'Mother',0,11),(104,3704,'Doris',1,12),(104,3705,'Cleaning Person',0,13),(104,3706,'Croupier',0,14),(104,3707,'Casino Manager',0,15),(104,3708,'Ambulance Driver',2,16),(104,16782,'Blind Woman',1,17),(104,142653,'Frau Ju00e4ger',0,18),(104,1194754,'Polizist (uncredited)',0,19),(104,1032959,'Casino-Kassiererin (uncredited)',0,20),(104,46198,'Erzu00e4hler (voice) (uncredited)',2,21),(104,13741,'Wachmann Supermarkt (uncredited)',2,22),(104,4780,'Man on picture (uncredited)',2,23),(1688,7505,'Caesar',2,0),(1688,18666,'Breck',2,1),(1688,1793,'Armando',2,2),(1688,98797,'MacDonald',2,3),(1688,99829,'Kolp',2,4),(1688,13262,'Busboy',2,5),(1688,18648,'Lisa',1,6),(1688,18649,'Commission Chairman',2,7),(1688,168116,'Mrs. Riley',1,8),(1688,18668,'Zelda',1,9),(1688,19435,'Hoskyns',2,10),(1688,122529,'Aldo',0,11),(1688,111489,'Frank - Gorilla',2,12),(1688,134613,'Policeman',2,13),(1688,153675,'2nd Policeman',2,14),(1688,151555,'Auctioneer',2,15),(1688,118486,'Announcer',0,16),(1688,1753890,'Ape With Chain',0,17),(1688,947974,'Ape (uncredited)',2,18),(1688,30848,'Riot Control Commander in Plaza (uncredited)',0,19),(1688,97281,'Man at Auction (uncredited)',2,20),(1688,131281,'Book Store Owner (uncredited)',1,21),(1688,105622,'Controller (uncredited)',2,22),(1688,124848,'Auction Attendee (uncredited)',0,23),(1688,1753891,'Auction Attendee (uncredited)',0,24),(1688,1224177,'Cafe Customer (uncredited)',0,25),(1688,1459362,'Jailguard (uncredited)',0,26),(1688,1238906,'Controller (uncredited)',0,27),(1688,179327,'Restaurant Chef (uncredited)',2,28),(1999,207,'Matt Fowler',2,0),(1999,5606,'Ruth Fowler',1,1),(1999,6408,'Frank Fowler',2,2),(1999,3141,'Natalie Strout',1,3),(1999,15338,'Richard Strout',2,4),(1999,20542,'Willis Grinnel',2,5),(1999,650,'Marla Keyes',1,6),(1999,1989,'Katie Grinnel',1,7),(1999,20543,'Henry',0,8),(1999,20544,'Carl',0,9),(1999,20545,'Tim',0,10),(9709,37983,'Mona',0,0),(9709,5081,'Tamsin',1,1),(9709,14887,'Phil',2,2),(9709,58693,'Ricky',2,3),(7973,53431,'Layale',1,0),(7973,53442,'Nisrine',1,1),(7973,53443,'Rima',0,2),(7973,53444,'Jamale',0,3),(7973,53445,'Youssef',0,4),(7973,53446,'Rose',0,5),(7973,53447,'Lili',0,6),(7973,53449,'Siham',0,7),(7973,53450,'Charles',0,8),(7973,53451,'Christine',0,9),(7973,53452,'Bassam',0,10),(592,193,'Harry Caul',2,0),(592,3096,'Stan',2,1),(592,8351,'Mark',2,2),(592,8434,'Ann',1,3),(592,3,'Martin Stett',2,4),(592,8437,'Amy Fredericks',1,5),(592,922,'William P. \'Bernie\' Moran',2,6),(592,8438,'Meredith',1,7),(592,3087,'The Director',2,8),(592,2979,'Paul',2,9),(592,152718,'Receptionist',2,10),(592,3799,'',0,11),(592,33060,'',2,12),(592,1757776,'Lurleen',0,13),(592,1757777,'',0,14),(592,1087233,'The mime',0,15),(592,1757778,'',0,16),(1651,3829,'Louis Mahu00e9',2,0),(1651,50,'Julie Roussel/Marion Vergano',1,1),(1651,11989,'Camolli',2,2),(1651,17029,'Berthe',1,3),(1651,3515,'Landlady',0,4),(1651,3524,'Jardine',2,5),(1651,18362,'Detective',0,6),(1651,18363,'Richard',0,7),(3083,854,'Jefferson Smith',2,0),(3083,30210,'Clarissa Saunders',1,1),(3083,4113,'Sen. Joseph Harrison Paine',2,2),(3083,30211,'Jim Taylor',2,3),(3083,30002,'Gov. Hubert \'Happy\' Hopper',2,4),(3083,3383,'Diz Moore',2,5),(3083,8728,'Chick McGann',2,6),(3083,17755,'Ma Smith',1,7),(3083,1686569,'Narrator',0,8),(3083,30212,'President of the Senate',2,9),(3083,33278,'Senate Majority Leader',0,10),(3083,30215,'Sen. MacPherson',0,11),(3083,30216,'Sen. Barnes',2,12),(3083,14975,'Sen. Monroe',0,13),(3083,119898,'Susan Paine',0,14),(3083,30214,'Emma Hopper',1,15),(3083,29579,'Nosey newsman',2,16),(3083,21510,'Bill Griffith',2,17),(3083,30217,'Carl Cook',2,18),(3083,8519,'Kenneth Allen',2,19),(3083,30219,'Jimmie Hopper',2,20),(3083,4304,'Hopper Boy',2,21),(3083,81282,'Hopper Girl',1,22),(3083,30223,'Hopper Boy (as Baby Dumpling)',2,23),(3083,30218,'Peter Hopper',2,24),(3083,30221,'Hopper Boy',2,25),(3083,30222,'Hopper Boy',0,26),(3083,939842,'Hopper\'s Butler',2,27),(3083,67371,'Pageboy Richard Jones',2,28),(3083,12286,'Himself - Radio Broadcaster / Trailer Narrator',0,29),(3083,589728,'Handwriting Expert',0,30),(3083,89691,'Handwriting Expert',2,31),(3083,120810,'Handwriting Expert',2,32),(3083,34505,'Senator Hodges',2,33),(3083,120785,'Senator Dwight',2,34),(3083,1091997,'Senator',0,35),(3083,43836,'Senator Gower',2,36),(3083,590519,'Senator Lancaster',0,37),(3083,1295853,'Senator Hammett',0,38),(3083,148542,'Senator',0,39),(3083,115995,'Senate Clerk',2,40),(3083,120818,'Family Man',2,41),(3083,11029,'Woman at Station',1,42),(3083,30195,'Man in Press Section of Senate Gallery',2,43),(3083,9096,'Barber',0,44),(3083,2772,'Paine\'s Secretary',1,45),(3083,103501,'Editor',2,46),(3083,105455,'Reporter',2,47),(3083,1422857,'Committeewoman',0,48),(3083,1018011,'Inventor at Smith\'s Office Door',2,49),(3083,1273898,'Reporter',0,50),(3083,1342200,'Boy Ranger',0,51),(3083,22091,'Senate Reporter',2,52),(3083,6463,'Reporter',0,53),(3083,33178,'Reporter',2,54),(3083,955809,'Porter',2,55),(3083,2672,'Sweeney Farrell - Newsman',2,56),(3083,99369,'Boy Cheering for Smith in Meeting',2,57),(3083,30263,'Mrs. McGann',1,58),(3083,122984,'Man in Senate Building',0,59),(3083,948509,'Arthur Kim',2,60),(3083,121240,'Photographer',0,61),(3083,1469599,'Senate Reporter',0,62),(3083,34238,'Mr. Edwards - Howling Citizen',2,63),(3083,1369418,'Senate Reporter',2,64),(3083,74877,'Senator Dearhorn',0,65),(3083,1176930,'Third Radio Speaker',1,66),(3083,1451973,'Announcer',0,67),(3083,121291,'Townsend',0,68),(3083,141029,'Ragner - Newsman',0,69),(3083,120734,'Reporter',2,70),(3083,1075172,'Committeeman',0,71),(3083,1466733,'Minor Role',0,72),(3083,1422169,'Assistant Bartender',0,73),(3083,1317082,'Photographer',0,74),(3083,121225,'Reporter',0,75),(3083,22606,'Speaker',0,76),(3083,141304,'Senate Reporter',1,77),(3083,194173,'Waiter',2,78),(3083,1286627,'Committeewoman',0,79),(3083,1170908,'Photographer',0,80),(3083,1195240,'Senate Reporter',0,81),(3083,122979,'Senate Reporter',2,82),(3083,1142371,'Diggs - Newsman',0,83),(3083,1072363,'Paine\'s Secretary',0,84),(3083,1199590,'Senate Clerk',0,85),(3083,1468220,'Senate Reporter',0,86),(3083,1469600,'Paine\'s Friend',0,87),(3083,119543,'Hat Salesman / Secretary',2,88),(3083,96722,'Hopper\'s Secretary',2,89),(3083,34213,'Paine\'s Secretary',1,90),(3083,103108,'Francis Scott Key',0,91),(3083,81974,'Waiter',2,92),(3083,1186769,'Reporter',0,93),(3083,265594,'Secretary',0,94),(3083,1329836,'Senate Chaplain',0,95),(3083,121122,'Taylor\'s Stooge',2,96),(3083,217770,'Reporter',0,97),(3083,34508,'Reporter',0,98),(3083,1170356,'Reporter',0,99),(3083,133100,'Senate Reporter',2,100),(3083,1469601,'Senate Reporter',0,101),(3083,1250237,'Committeewoman',0,102),(3083,121098,'Reporter',0,103),(3083,2934,'Woman',1,104),(3083,1069732,'Woman at Station',0,105),(3083,96719,'Woman at Station',1,106),(3083,103068,'First Radio Announcer',2,107),(3083,13979,'Soapbox Speaker',2,108),(3083,89012,'Senator Fernwick',0,109),(3083,83993,'Senator Byron',0,110),(3083,1173173,'Senator Albert',2,111),(3083,1382691,'Senator Carlton',0,112),(3083,1205434,'Senator',2,113),(3083,1445914,'Senator',0,114),(3083,1188829,'Senator',0,115),(3083,1469602,'Senate Guard',0,116),(3083,1469603,'House Boy',0,117),(3083,1145556,'Boy Ranger',2,118),(3083,32192,'Butler',2,119),(3083,121247,'Committeeman',2,120),(3083,1421016,'Minor Role',0,121),(3083,1219861,'Hoodlum',0,122),(3083,1367614,'Butler',2,123),(3083,96060,'Reporter',2,124),(3083,133230,'Reporter',2,125),(3083,117036,'Senate Reporter',0,126),(3083,84640,'Summers - newsman',2,127),(3083,103500,'Reporter Asking \'What Do You Think of the Girls in This Town?\'',1,128),(3083,119486,'Bodyguard',0,129),(3083,34420,'Boy Ranger',0,130),(3083,1420551,'Boy Ranger',0,131),(3083,1469606,'Boy Ranger',0,132),(3083,1431745,'Rabbi',0,133),(3083,29953,'Mrs. Edwards',0,134),(3083,1422186,'Chorus Member',0,135),(3083,83397,'Hoodlum',2,136),(3083,34333,'Chief Clerk',2,137),(3083,1420479,'Hoodlum',0,138),(3083,1422279,'Photographer',0,139),(3083,121060,'Head Sister',0,140),(3083,13856,'Photographer',2,141),(3083,1064924,'Nun with Cheering Orphan Boys',0,142),(3083,148419,'Man in Senate Building',2,143),(3083,1109646,'Assistant Bartender',0,144),(3083,97223,'Reporter',0,145),(3083,124634,'Civil War Veteran at Lincoln Memorial',2,146),(3083,144127,'Pompous Man',0,147),(3083,1271643,'Pompous Man',0,148),(3083,30201,'Pompous Man',2,149),(3083,121288,'Boy Ranger',0,150),(3083,1422863,'Reporter',0,151),(3083,103753,'Reporter',2,152),(3083,34208,'Second Radio Announcer',2,153),(3083,100945,'Senate Reporter',2,154),(3083,1432396,'Shoe Salesman',0,155),(3083,1067843,'Porter',0,156),(3083,145828,'Reporter',2,157),(3083,1412667,'Senate Clerk',0,158),(3083,1435567,'Boy Ranger',0,159),(3083,1416869,'Foreign Diplomat',0,160),(3083,121127,'Senator Alfred',0,161),(3083,1274075,'Fisk',0,162),(3083,1250242,'Hoodlum',0,163),(3083,1416046,'Minor Role',0,164),(3083,173693,'Senate Reporter',0,165),(3083,1468089,'Senate Reporter',0,166),(3083,954389,'Hoodlum',2,167),(3083,34367,'Lang',2,168),(3083,540363,'Senator Ashman',2,169),(3083,932308,'Senator Carlisle',0,170),(3083,171030,'Senator Manchester',0,171),(3083,34270,'Senator Pickett',0,172),(3083,1420542,'Senator Atwater',0,173),(3083,1290486,'Senator Grainger',0,174),(3083,29961,'Senator Burdette',0,175),(3083,1142897,'Senator Holland',2,176),(3083,89013,'Senator',2,177),(3083,29643,'Senate Reporter',2,178),(3083,120816,'Flood - Newsman',2,179),(3083,231256,'Otis Hopper',0,180),(3083,94293,'Newspaperman with Pipe',2,181),(3083,1014032,'Hendricks',0,182),(3083,131003,'Bodyguard',2,183),(3083,955691,'Bodyguard',2,184),(3083,40212,'Senate Guard',2,185),(3083,89016,'Schultz - Newsman',2,186),(3083,96724,'Undetermined Role',2,187),(3083,14421,'Paine\'s Friend',2,188),(3083,126836,'Cab Driver',0,189),(3083,1130370,'Doorman',2,190),(3083,1420880,'Butler',0,191),(3083,139182,'Mrs. Taylor',0,192),(3083,120765,'Boy Ranger',0,193),(3083,1469616,'Jane Hopper',0,194),(3083,119255,'Reporter',2,195),(3083,121255,'Photographer',0,196),(3083,89000,'Photographer',2,197),(3083,1468448,'Committeewoman',0,198),(3083,140817,'Committeewoman',1,199),(3083,1271051,'Committeewoman',0,200),(3083,1467394,'Committeewoman',0,201),(3083,1269827,'Committeewoman',0,202),(3083,1423377,'Committeewoman',0,203),(3083,1422389,'Black Committeeman',0,204),(3083,1031424,'Angry committee member',0,205),(3083,135827,'Committeeman',2,206),(3083,120476,'Committeeman',2,207),(3083,981096,'Committeeman',2,208),(3083,1395666,'Foreign Diplomat',0,209),(3083,1458223,'Foreign Diplomat',0,210),(3083,1459314,'Minor Role',0,211),(3083,569144,'Senator (uncredited)',2,212),(9344,57387,'Telly',2,0),(9344,5916,'Ruby',1,2),(9344,2838,'Jenny',1,3),(9344,57389,'Casper',2,4),(9344,1187713,'Paul',0,5),(9344,1187714,'Stanly',0,6),(9344,1187715,'Zack',0,7),(9344,1187716,'Javier',0,8),(9344,1187717,'Luis',0,9),(9344,1187718,'Christian',0,10),(9344,1187719,'Alex',0,11),(9344,131299,'Deli Owner',2,12),(9344,1187720,'Korean Guy',0,13),(9344,1187721,'Little Girl',0,14),(9344,57388,'Girl #1',0,15),(9344,17866,'Steven',2,16),(4174,4111,'Dr. Constance Petersen',1,0),(4174,8487,'John Ballantine',2,1),(4174,35193,'Dr. Alexander Brulov',2,2),(4174,10160,'Mary Carmichael',1,3),(4174,2642,'Dr. Murchison',2,4),(4174,35194,'Dr. Fleurot',2,5),(4174,2698,'Mr. Garmes',2,6),(4174,34287,'House detective',2,7),(4174,30847,'Dr. Graff',2,8),(4174,35847,'Harry',2,9),(4174,35848,'Det. Lt. Cooley',2,10),(4174,22093,'Det. Sgt. Gillespie',2,11),(4174,34320,'Dr. Hanish',0,12),(4174,35849,'Hotel masher',2,13),(9464,22461,'Billy Brown',2,0),(9464,6886,'Layla',1,1),(9464,856,'Jimmy Brown',2,2),(9464,2295,'Bookmacher',2,3),(9464,2165,'Wendy Balsam',1,4),(9464,5657,'Jan Brown',1,5),(9464,83037,'Sonny',2,6),(9464,7166,'TV Sportscaster',2,7),(9464,73234,'TV Sportscaster',2,8),(9464,1733421,'Little Billy',0,9),(9464,1733422,'The Donut Clerk',2,10),(9464,1733423,'Don Shanks',0,11),(9464,1733424,'Scott Woods',0,12),(9464,1733425,'The Judge',0,13),(9464,1733426,'The Motel Clerk',0,14),(9464,1733427,'The Guy in the Bathroom',0,15),(9464,1733428,'The Denny\'s Host',0,16),(9464,1733429,'The Prison Guard',0,17),(9464,1733430,'The Cafe Owner',0,18),(9464,1733431,'The Denny\'s Waitress',0,19),(9464,1733432,'The Info Booth Clerk',0,20),(9464,1733433,'The Tap Teacher',0,21),(9464,134064,'The Gas Station Clerk',2,22),(9464,1733444,'The Bus Station Woman',0,23),(9464,129793,'Tap Dance Kid',2,24),(9464,1733447,'Tap Dance Kid',0,25),(507,7036,'Zed',2,0),(507,1146,'Zoe',1,1),(507,7037,'Eric',2,2),(507,7038,'Franu00e7ois',2,3),(507,7039,'Ricardo',2,4),(507,7040,'Jean',2,5),(507,7041,'Claude',2,6),(507,7042,'Oliver',2,7),(507,7043,'Cab Driver',0,8),(507,7044,'Bellboy',0,9),(507,7046,'Martina',1,10),(4012,30614,'Danny Balint',2,0),(4012,34543,'Carla Moebius',1,1),(4012,9207,'Lina Moebius',1,2),(4012,1954,'Curtis Zampf',2,3),(4012,34544,'Kyle',2,4),(4012,10694,'Drake',2,5),(4012,22225,'Guy Danielsen',2,6),(4012,47085,'Danny\'s Father',2,7),(4012,39520,'Billings',0,8),(4012,52996,'Linda',1,9),(4012,88550,'O.L.',2,10),(4012,122250,'Carleton',0,11),(4012,53755,'Miriam',1,12),(4012,1192377,'Stuart',0,13),(4012,1192378,'Avi',0,14),(4012,172017,'Whit',0,15),(4012,1192379,'Rav Zingesser',0,16),(4012,1192380,'Young Danny',0,17),(4012,1192381,'Young Avi',0,18),(4012,1192382,'Young Stuart',0,19),(4012,1192383,'Orthodox Student',0,20),(4012,1217575,'Chuck',0,21),(4012,1192385,'Mrs. Frankel',0,23),(4012,1192386,'Polish Man',0,24),(4012,1192387,'Ancient Jew',0,25),(4012,1192388,'Hate Counselor',0,26),(4012,155236,'Judge',2,27),(4012,1192389,'Rabbi Greenwalt',0,28),(4012,1192390,'Roger Brand',0,29),(4012,64237,'Cindy Pomerantz',1,30),(4012,30458,'Ilio Manzetti',2,31),(4012,294586,'Steve',2,32),(4012,21042,'First Waiter',2,33),(3082,13848,'A factory worker',2,0),(3082,14027,'A gamin',1,1),(3082,14438,'Cafe proprietor',2,2),(3082,30194,'Big Bill',2,3),(3082,30195,'Mechanic',2,4),(3082,13856,'Burglar',2,5),(3082,30196,'Gamin\'s father',0,6),(3082,13855,'President of the Electro Steel Corp.',2,7),(3082,30197,'Cellmate',2,8),(3082,30198,'Minister',0,9),(3082,30199,'Minister\'s wife',0,10),(3082,30200,'J. Widdecombe Billows',2,11),(3082,30201,'Juvenile officer',2,12),(3082,30202,'Sheriff Couler',0,13),(3082,30203,'Head waiter',0,14),(3082,30204,'Turbine operator',2,15),(3082,30205,'Woman with buttoned bosom',0,16),(3082,30206,'Billows\' assistant',0,17),(3082,120306,'Gamin\'s Sister (uncredited)',1,18),(3082,2941,'Billows\' Silent Assistant (uncredited)',0,19),(3082,30117,'Worker (uncredited)',2,20),(3082,34187,'Worker (uncredited)',2,21),(3082,1420479,'Worker (uncredited)',0,22),(3082,1045763,'Worker (uncredited)',0,23),(3082,1250223,'Assembly Line Worker Next to Big Bill (uncredited)',0,24),(3082,1092484,'Paddywagon Policeman (uncredited)',2,26),(3082,121247,'Frustrated Cafe Patron (uncredited)',2,27),(3082,97996,'Assembly Line Foreman (uncredited)',2,28),(3082,1199823,'Cigar Counterman (uncredited)',0,29),(3082,103932,'Convict (uncredited)',2,30),(3082,121250,'Assembly Line Relief Man (uncredited)',2,31),(3082,1178520,'Burglar (uncredited)',0,32),(3082,98001,'Department Store Section Manager (uncredited)',0,33),(3082,119547,'Gypsy in Police Patrol Wagon (uncredited)',2,34),(3082,21310,'Other Waiter (uncredited)',2,35),(3082,148416,'Paddywagon Policeman (uncredited)',2,36),(1961,11357,'Bruce Campbell',2,0),(1961,112543,'Kelly Graham',0,1),(1961,11769,'Wing',2,2),(1961,20250,'Tiny',0,3),(1961,20251,'Fan',0,4),(1961,20252,'Kasey',1,5),(1961,20253,'Gold Lick Citizen',0,6),(408,5460,'Snow White (voice)',1,0),(408,288940,'Queen (voice)',1,1),(408,540747,'Prince (voice)',2,2),(408,5457,'Doc (voice)',2,3),(408,5462,'Sleepy (voice)',2,4),(408,5465,'Happy (voice)',2,5),(408,364526,'Bashful (voice)',0,6),(408,5464,'Sneezy (voice)',2,7),(408,5461,'Dopey (voice)',2,8),(408,18586,'Magic Mirror (voice)',2,9),(408,5458,'Huntsman (voice)',0,10),(408,5463,'Birds (voice)',1,11),(408,523407,'Birds (voice)',0,12),(2661,26847,'Batman / Bruce Wayne',2,0),(2661,35192,'Robin / Dick Grayson',2,1),(2661,16108,'The Catwoman / Kitka',1,2),(2661,4355,'The Joker',2,3),(2661,16523,'The Penguin',2,4),(2661,291,'The Riddler',2,5),(2661,6933,'Alfred',2,6),(2661,27733,'Commissioner Gordon',2,7),(2661,27734,'Chief O\'Hara',2,8),(2661,43824,'Aunt Harriet Cooper',1,9),(2661,3364,'Commodore Schmidlapp',2,10),(2661,78776,'Vice Admiral Fangschliester',2,11),(2661,1214919,'Bluebeard',2,12),(2661,14256,'Morgan',2,13),(2661,100799,'Quetch',2,14),(2661,145535,'President Lyndon B. Johnson',2,15),(2661,102933,'Man',0,16),(2661,1208039,'Cop',0,17),(100,973,'Tom',2,0),(100,974,'Soap',2,1),(100,975,'Eddie',2,2),(100,976,'Bacon',2,3),(100,980,'Big Chris',2,4),(100,982,'JD',0,5),(100,978,'Winston',2,6),(100,984,'J',2,7),(100,987,'Barry the Baptist',2,8),(100,989,'\'Hatchet\' Harry Lonsdale',0,9),(100,990,'Dog',2,10),(100,992,'Paul',2,11),(100,994,'Nick the Greek',2,12),(100,988,'Little Chris',2,13),(100,985,'Charles',0,14),(100,993,'John',2,15),(100,991,'Plank',2,16),(100,986,'Willie',2,17),(100,995,'Rory Breaker',2,18),(100,4317,'Dean',2,19),(100,4318,'Gary',2,20),(100,115787,'Barfly Jack',0,21),(100,1473866,'Nathan',2,22),(100,236388,'Tanya',1,23),(100,47632,'Traffic Warden',2,24),(100,1116,'Alan / Narrator',2,25),(100,17290,'Man in Pub',2,26),(309,4455,'Christian Klingenfeldt',2,0),(309,4456,'Faderen Helge Klingenfeldt',0,1),(309,4457,'Michael',2,2),(309,4458,'Helene',0,3),(309,4459,'Moderen',0,4),(309,4460,'Pia',1,5),(309,4461,'Mette',1,6),(309,4462,'Michelle',0,7),(309,4463,'Toastmasteren',0,8),(309,4464,'Kim',2,9),(309,4465,'Gbatokai',0,10),(309,4467,'Receptionisten',2,12),(309,4468,'Linda',0,13),(309,4469,'Birthe',0,14),(309,4470,'Farfar',0,15),(309,4471,'Farmor',0,16),(309,4453,'Taxidriver',2,17),(309,4480,'',0,18),(309,4481,'',0,19),(309,4482,'',0,20),(309,3409,'Onklen',0,21),(223,3359,'\'Maxim\' de Winter',2,0),(223,3360,'Mrs. de Winter (2nd)',1,1),(223,3361,'Jack Favell',2,2),(223,3362,'Mrs. Danvers',1,3),(223,3363,'Major Giles Lacy',0,4),(223,3364,'Frank Crawley',2,5),(223,3366,'Beatrice Lacy',1,6),(223,3367,'Mrs. Edythe Van Hopper',1,7),(223,2642,'Dr. Baker',2,8),(223,3368,'Ben',2,9),(223,3369,'Tabbs',2,10),(223,3370,'Frith',2,11),(223,3371,'Chalcroft',2,12),(223,3372,'Robert',2,13),(223,2636,'Man outside phone booth',2,14),(223,2438,'Colonel Julyan',2,15),(223,100763,'Policeman',0,16),(223,9096,'Manager, Princesse Hotel',0,17),(223,8730,'Coroner',2,18),(223,89727,'Hotel Desk Clerk (uncredited)',2,19),(223,30136,'Mullen (uncredited)',0,20),(223,195086,'Hotel Headwaiter (uncredited)',0,21),(223,1176510,'Hotel Waiter (uncredited)',2,22),(223,1186118,'Hotel Dining Room Guest (uncredited)',0,23),(223,1668909,'Little Girl',0,24),(9725,58710,'Ginny Field',1,0),(9725,55571,'Paul Holt',2,1),(9725,37470,'Alice Hardy',1,2),(9725,58711,'Terri',0,3),(9725,37469,'Mrs. Pamela Voorhees',1,4),(9725,1048670,'Vickie',1,5),(9725,1014310,'Crazy Ralph',2,6),(9725,55931,'Ted',2,7),(9725,92758,'Sandra',1,8),(9725,102436,'Scott',2,9),(9725,1036511,'Mark',2,10),(9725,1234924,'Jeff',2,11),(1412,1533,'Ann Bishop Mullany',1,0),(1412,8212,'John Mullany',2,1),(1412,13548,'Graham Dalton',2,2),(1412,1212,'Cynthia Bishop',1,3),(1412,32592,'Therapist',2,4),(1412,32593,'Barfly',2,5),(1412,1403163,'Girl on Tape',0,6),(1412,1403165,'Landlord',0,7),(1412,1403169,'John\'s Colleague',0,8),(176,2130,'Dr. Lawrence Gordon',2,0),(176,2047,'Detective David Tapp',2,1),(176,2140,'Alison Gordon',1,2),(176,2136,'Zep Hindle',2,3),(176,2131,'Detective Steven Sing',2,4),(176,2144,'John Kramer (a.k.a. Jigsaw)',2,5),(176,2128,'Adam',2,6),(176,2133,'Kerry',1,7),(176,2134,'Paul',2,8),(176,2135,'Mark',2,9),(176,2137,'Brett',2,10),(176,2138,'Amanda',1,11),(176,2139,'Diana Gordon',1,12),(176,2141,'Jeff',2,13),(176,2142,'Carla',1,14),(176,2143,'Father',2,15),(176,1630461,'Detective (uncredited)',2,16),(480,6497,'Lalit Verma',2,0),(480,6498,'Pimmi Verma',1,1),(480,6500,'Parabatlal Kanhaiyalal \'P.K.\' Dubey',2,3),(480,6501,'Alice',0,4),(480,6502,'Aditi Verma',1,5),(480,6503,'Hemant Rai',2,6),(480,6515,'Vikram Mehta',0,7),(480,6516,'Ayesha Verma',0,8),(480,6517,'Aliya Verma',0,9),(480,6518,'Varun Verma',0,10),(480,6519,'Rahul Chadha',2,11),(480,6520,'Saroj Rai',0,12),(480,693,'Mohan Rai',0,13),(480,120430,'Ria Verma',0,14),(500,1037,'Mr. White/Larry Dimmick',2,0),(500,3129,'Mr. Orange/Freddy Newandyke',2,1),(500,147,'Mr. Blonde/Vic Vega',2,2),(500,2969,'Nice Guy Eddie Cabot',2,3),(500,884,'Mr. Pink',2,4),(500,6937,'Joe Cabot',2,5),(500,6939,'Mr. Blue',2,6),(500,138,'Mr. Brown',2,7),(500,6938,'Detective Holdaway',2,8),(500,3206,'Officer Marvin Nash',2,9),(500,3214,'K-Billy DJ (voice)',2,10),(500,46346,'Sheriff #1',0,11),(500,1067187,'Sheriff #2',2,12),(500,1287673,'Sheriff #3',0,13),(500,65908,'Sheriff #4',0,14),(429,3265,'Tuco',2,0),(429,190,'Blondie',2,1),(429,4078,'Sentenza/Angel Eyes',2,2),(429,5813,'Alcoholic Union Captain',0,3),(429,5814,'Father Pablo Ramirez',2,4),(429,5815,'Maria',0,5),(429,5816,'Sheriff',2,6),(429,5817,'Baker',0,7),(429,5818,'Jackson/Bill Carson',0,8),(429,5819,'Monk',0,9),(429,5843,'Thomas \'Shorty\' Larson (uncredited)',0,10),(429,1077276,'Storekeeper',0,11),(429,1077277,'Mexican Peon',0,12),(429,1077278,'Mexican Peon',0,13),(429,4661,'Member of Angel Eyes\' Gange',0,14),(429,103529,'Stevens',0,15),(429,49895,'Member of Angel Eyes\' Gang',2,16),(429,129314,'One-Armed Bounty Hunter',2,17),(429,37512,'Blonde Bounty Hunter',0,18),(429,102096,'Capt. Harper',0,19),(429,100930,'Member of Angel Eyes\' Gang',0,20),(429,16318,'Cpl. Wallace',2,21),(429,535685,'Stevens\' Wife (uncredited)',2,22),(429,144612,'1st Sombrero Onlooker at Tuco\'s 1st Hanging (uncredited)',0,23),(429,589876,'Bounty Hunter (uncredited)',0,24),(429,1127109,'Mexican Girl with Blondie (uncredited)',0,25),(429,72888,'Bounty Hunter #2 (uncredited)',2,26),(429,1046525,'2nd Sombrero Onlooker at Tuco\'s 1st Hanging (uncredited)',0,27),(429,1063555,'Bounty Hunter (uncredited)',0,28),(429,1281095,'Member of Angel Eye\'s Gang (uncredited)',0,29),(429,102121,'Member of Angel Eye\'s Gang (uncredited)',0,30),(429,50784,'Deputy (uncredited)',0,31),(429,43241,'3rd Sombrero Onlooker at Tuco\'s 1st Hanging (uncredited)',0,32),(429,1467655,'Bald Onlooker at Tuco\'s 1st Hanging (uncredited)',2,33),(429,222591,'Pardue the Hotel Owner (uncredited)',0,34),(429,32830,'Sergeant at Confederate Fort (uncredited)',0,35),(429,119515,'Mexican Bounty Hunter (uncredited)',0,36),(429,32130,'Bartender in Socorro (uncredited)',2,37),(429,1082083,'Stevens\' Youngest Son (uncredited)',0,38),(429,1059887,'Pistolero Recruited by Tuco in the Cave (uncredited)',0,39),(7553,10859,'Monty',2,0),(7553,1772,'Serena',1,1),(7553,15033,'Dean',2,2),(7553,28638,'Dan',2,3),(7553,40481,'Raddimus',2,4),(7553,8687,'Bishop',2,5),(7553,52935,'Mitch',2,6),(7553,52936,'Amy',1,7),(7553,52937,'Calvin',2,8),(7553,10402,'Naomi',1,9),(7553,52938,'Natasha',1,10),(7553,52939,'T-Dog',2,11),(7553,52940,'Nick',2,12),(7553,31837,'Floyd',2,13),(7553,20492,'Danielle',1,14),(7553,59192,'Tyla',1,15),(7553,61980,'Monty\'s Mom',1,16),(7553,129868,'Redneck',2,17),(7553,1504712,'Girl at Bar',1,18),(7553,1503756,'Video Host',2,19),(7553,1633652,'Chett',2,20),(7553,1633666,'Jack',2,21),(7553,203048,'Cook',2,22),(7553,1633658,'Smooth Guy',2,23),(7553,1560908,'Background Cook',0,24),(7553,1633659,'Girly',1,25),(7553,1633662,'Elderly Woman',1,26),(7553,1088044,'Rocco',2,27),(289,4110,'Rick Blaine',2,0),(289,4111,'Ilsa Lund',1,1),(289,4112,'Victor Laszlo',2,2),(289,4113,'Captain Louis Renault',2,3),(289,3001,'Major Heinrich Strasser',2,4),(289,4114,'Signor Ferrari',2,5),(289,2094,'Ugarte',2,6),(289,94110,'Carl (as S.K. Sakall)',2,7),(289,4116,'Yvonne (as Madeleine LeBeau)',1,8),(289,4117,'Sam',2,9),(289,4118,'Annina Brandel',1,10),(289,4119,'Berger',2,11),(289,4120,'Sascha',2,12),(289,2313,'Pickpocket',2,13),(289,1331750,'Guest at Rick\'s (uncredited)',0,14),(289,121320,'Bar Patron (uncredited)',0,15),(289,1224787,'Refugee at Rick\'s (uncredited)',0,16),(289,1331753,'Overseer (uncredited)',0,17),(289,95054,'Dealer at Rick\'s (uncredited)',2,18),(289,1331754,'Gendarme (uncredited)',0,19),(289,114402,'Waiter at the Blue Parrot (uncredited)',0,20),(289,90074,'American (uncredited)',2,21),(289,120545,'Policeman (uncredited)',2,22),(289,981271,'Native Officer (uncredited)',0,23),(289,1044381,'Baccarat Dealer at Rick\'s (uncredited)',2,24),(289,21877,'Bearded man in street watching plane in flight to Lisbon. (uncredited)',2,25),(289,1276330,'Woman Companion (uncredited)',0,26),(289,120066,'American (uncredited)',0,27),(289,1047407,'Guest at Rick\'s (uncredited)',2,28),(289,1331756,'Oriental at Rick\'s (uncredited)',0,29),(289,1062527,'Commuter at Train Station (uncredited)',0,30),(289,9096,'Waiter at Rick\'s (uncredited)',0,31),(289,1228104,'French Police Officer (uncredited)',0,32),(289,120778,'Concierge (uncredited)',0,33),(289,4121,'Emil - Croupier at Rick\'s (uncredited)',2,34),(289,4122,'Jan Brandel (uncredited)',2,35),(289,588565,'Orderly (uncredited)',2,36),(289,1331757,'Lt. Casselle (uncredited)',0,37),(289,22099,'Police Officer (uncredited)',2,38),(289,1331758,'Arab Guest with Fez (uncredited)',0,39),(289,1263504,'Moroccan (uncredited)',0,40),(289,1331759,'News Vendor (uncredited)',0,41),(289,95967,'Second Contact Man at Rick\'s (uncredited)',2,42),(289,121095,'Englishman Questioning Casino\'s Honesty (uncredited)',2,43),(289,121331,'Singing Frenchman (uncredited)',0,44),(289,121322,'Gambler at Rick\'s (uncredited)',0,45),(289,1331760,'Conspirator (uncredited)',0,46),(289,94401,'Headwaiter at Rick\'s (uncredited)',0,47),(289,19551,'German Banker Refused by Rick (uncredited)',2,48),(289,1331761,'Cashier at Rick\'s (uncredited)',0,49),(289,100898,'Mrs. Leuchtag - Carl\'s Immigrating Friend (uncredited)',1,50),(289,97981,'Customer (uncredited)',2,51),(289,977271,'Englishwoman (uncredited)',1,52),(289,1331762,'Muezzini (uncredited)',0,53),(289,1144743,'Elderly Admirer (uncredited)',0,54),(289,32192,'Pickpocketed Prosperous Man (uncredited)',2,55),(289,125808,'Italian Officer Tonnelli (uncredited)',0,56),(289,120061,'Haggling Arab Monkey Seller (uncredited)',2,57),(289,1331764,'Policeman (uncredited)',0,58),(289,121330,'Moor Buying Diamonds (uncredited)',0,59),(289,1331765,'Narrator (voice) (uncredited)',0,60),(289,1331767,'Bartender (uncredited)',0,61),(289,99330,'Rick\'s Friend (uncredited)',2,62),(289,32195,'Policeman (uncredited)',2,63),(289,1331768,'Arab Guest with Fez (uncredited)',0,64),(289,120700,'Conspirator (uncredited)',2,65),(289,12153,'Dutch Banker at Cafe Table (uncredited)',2,66),(289,70939,'French Officer Insulting Yvonne (uncredited)',2,67),(289,1331769,'Fydor (uncredited)',0,68),(289,82803,'Singer with Guitar (uncredited)',0,69),(289,148852,'Gambler at Rick\'s (uncredited)',0,70),(289,94325,'Woman Selling Her Diamonds (uncredited)',0,71),(289,931793,'Paul - Waiter at Rick\'s (uncredited)',2,72),(289,1331770,'Guest at Rick\'s (uncredited)',2,73),(289,1278060,'Croupier (uncredited)',0,74),(289,89691,'Arab Vendor (uncredited)',2,75),(289,120702,'Conspirator (uncredited)',2,76),(289,120046,'Bouncer at Rick\'s (uncredited)',2,77),(289,33074,'Col. Heinz - Strasser\'s Aide (uncredited)',0,78),(289,85943,'Abdul (uncredited)',2,79),(289,975881,'Refugee (uncredited)',2,80),(289,1331774,'Woman Customer (uncredited)',0,81),(289,1039630,'Pickpocketed Englishman (uncredited)',2,82),(289,120703,'Native Officer (uncredited)',0,83),(289,388490,'Customer (uncredited)',2,84),(289,31209,'Mr. Leuchtag (uncredited)',2,85),(289,1132779,'Gambler (uncredited)',2,86),(289,1331777,'Man Turning Propeller at Airport (uncredited)',0,87),(289,1015446,'Frenchman (uncredited)',0,88),(289,1269196,'Woman Gambler at Rick\'s Next to Croupier (uncredited)',1,89),(289,10926,'Wife of Pickpocketed Englishman (uncredited)',1,90),(289,3007,'German Officer with Yvonne (uncredited)',2,91),(289,119549,'Waiter (uncredited)',2,92),(289,29124,'Man with Expired Papers (uncredited)',2,93),(289,590709,'Baccarat Player at Rick\'s (uncredited)',0,94),(289,115770,'Native Introducing Ferrari (uncredited)',2,95),(289,40519,'Gambler (uncredited)',0,96),(289,2783,'Moroccan Boy (uncredited)',2,97),(289,45164,'German Officer (uncredited)',2,98),(289,29274,'Emile - Waiter (uncredited)',2,99),(289,995920,'Prosperous Tourist (uncredited',2,100),(289,1072437,'Guest at Rick\'s (uncredited)',2,101),(289,1543340,'Guest at Rick\'s (uncredited)',2,102),(289,30163,'Vendor (uncredited)',2,103),(289,1666966,'Merchant (uncredited)',0,104),(811,6905,'Freeman Lowell',1,0),(811,12121,'John Keenan',2,1),(811,12122,'Marty Barker',2,2),(811,12123,'Andy Wolf',2,3),(811,12124,'Drone',2,4),(811,12125,'Drone 2/Huey',2,5),(811,12126,'Drone 1/Dewey',1,6),(1366,16483,'Rocky Balboa',2,0),(1366,3094,'Adrianna Adrian Pennino',1,1),(1366,4521,'Paulie',2,2),(1366,1101,'Apollo Creed',0,3),(1366,16523,'Mickey Goldmill',2,4),(1366,16524,'Jergens',2,5),(1366,16525,'Gazzo',2,6),(1366,16504,'Duke',2,7),(1366,16508,'Club Fighter',2,8),(1366,107375,'Himself',2,9),(1366,39780,'Streetcorner Singer',2,10),(1366,16543,'Fight Commentator (uncredited)',2,11),(1366,16527,'Fight Announcer',2,12),(1366,78021,'Drunk',2,13),(1366,16530,'TV Commentator 1',0,14),(1366,2391,'Apollo Creed\'s Bodyguard (uncredited)',2,15),(1366,16526,'Mike',0,16),(1366,16528,'Cut Man',2,17),(1366,2563,'Ice Rink Attendant',0,18),(1366,16529,'Marie',0,19),(1366,16531,'TV Commentator 2',0,20),(1366,16532,'TV Interviewer',2,21),(1366,16936,'Dipper',2,22),(1366,16623,'Bartender',0,23),(1366,29364,'Club Fight Announcer',0,24),(1366,1214134,'Apollo\'s Corner',0,25),(1366,104944,'Club Corner Man',2,26),(1366,1379467,'Apollo Corner Man',0,27),(1366,12429,'Secretary',1,28),(1366,180294,'Paulie\'s Date',1,29),(1366,140591,'Owner of Pet Shop',1,30),(1366,1383106,'Club Fight Referee',0,31),(1366,131832,'Spectator (uncredited)',2,32),(1366,101615,'Spectator (uncredited)',2,33),(1366,16542,'Aftershave Commercial Director (uncredited)',2,34),(1366,43869,'Mary Anne Creed (uncredited)',0,35),(1366,1208039,'Reporter (uncredited)',0,36),(5769,3926,'Tom Jones',0,0),(5769,13326,'Sophie Western',1,1),(5769,10021,'Squire Western',0,2),(5769,45465,'Miss Western',0,3),(5769,45466,'Lady Bellaston',1,4),(5769,45467,'Molly Seagrim',1,5),(5769,45468,'Squire Allworthy',2,6),(5769,5825,'Lord Fellamar',2,7),(5769,39002,'Mrs. Seagrim',1,8),(5769,14016,'Partridge',2,9),(5769,29791,'Susan, Uptown Inn',1,10),(5769,37441,'Mrs. Waters',1,11),(5769,2076,'Mr. Blifil',2,12),(5769,145237,'Narrator (voice)',0,13),(5769,10653,'Bridget',1,14),(5769,6600,'Thwackum',2,15),(5769,79356,'Landlady',1,16),(5769,140108,'Mrs. Wilkins',0,17),(103,380,'Travis Bickle',2,0),(103,1036,'Betsy',1,1),(103,1037,'\'Sport\' Matthew',2,2),(103,1038,'Iris Steensma',1,3),(103,1039,'Wizard',2,4),(103,1040,'Senator Charles Palantine',2,5),(103,13,'Tom',2,6),(103,1041,'Concession Girl',1,7),(103,1043,'Policeman al rally',0,8),(103,1032,'Man in cab',2,9),(103,77255,'Iris\' Time Keeper',2,10),(103,1274408,'Secret Service Agent',0,11),(103,1274409,'Tom\'s Assistant',0,12),(103,169093,'Mafioso',0,13),(103,2561,'Melio, Delicatessen Owner',2,14),(103,16525,'Personell Officer',2,15),(103,1042,'Angry Black Man',2,16),(103,101977,'Soap Opera Woman',0,17),(103,84684,'Charlie T',0,18),(103,127738,'Doughboy',2,19),(103,954132,'Campaign Worker',0,20),(103,76155,'Andy - Gun Salesman',2,21),(103,1422613,'The John',0,22),(103,194066,'Palantine\'s Aide',2,23),(103,18855,'T.V. Interviewer',2,24),(103,170830,'Campaign Worker (uncredited)',1,25),(103,71813,'Political rallier (uncredited)',2,26),(103,1213088,'Campaign Aide (uncredited)',1,27),(103,88161,'Girl at Columbus Circle (uncredited)',1,28),(103,69494,'Policeman (uncredited)',2,29),(646,738,'James Bond',2,0),(646,9871,'Honey Ryder',1,1),(646,9872,'Dr. No',2,2),(646,9873,'Felix Leiter',2,3),(646,9874,'M',2,4),(646,7682,'Professor Dent',2,5),(646,9875,'Miss Taro',1,6),(646,9876,'Quarrel',0,7),(646,9877,'Sylvia Trench',1,8),(646,9878,'Miss Moneypenny',1,9),(646,9879,'Major Boothroyd',0,10),(9003,14782,'Larry Cotton',0,0),(9003,45588,'Julia Cotton',1,1),(9003,56551,'Kirsty Cotton',1,2),(9003,56552,'Frank Cotton',2,3),(9003,24737,'Frank the Monster',2,4),(9003,56553,'Steve',2,5),(9003,56554,'1st Victim',0,6),(9003,56555,'2nd Victim',0,7),(9003,1349468,'3rd Victim',2,8),(9003,1706797,'Derelict',0,9),(9003,56557,'Bill',0,10),(9003,56558,'Evelyn',0,11),(9003,40043,'Dinner Guest',2,12),(9003,97172,'Moving Man 1',2,13),(9003,56710,'Moving Man 2',2,14),(9003,73040,'Pinhead the Lead Cenobite',2,15),(9003,56559,'Chattering Cenobite',0,16),(9003,56560,'\'Butterball\' Cenobite',0,17),(9003,56561,'Female Cenobite',0,18),(9003,26869,'Nurse',0,19),(9003,56562,'Doctor',0,20),(9003,1026980,'Complaining Customer',1,21),(546,7427,'Bree',1,0),(546,7431,'Toby',2,1),(546,7430,'Margaret',1,2),(546,7428,'Dr. Spikowsky',0,3),(546,7429,'Fernando',0,4),(546,6804,'Calvin',2,5),(546,74687,'Taylor',1,6),(546,42915,'Little Girl',1,7),(546,7463,'Hitchhiker',0,8),(546,4521,'Murray',2,9),(546,7465,'Sydney',1,10),(546,7466,'New York City Cop',2,11),(546,58068,'Elizabeth',1,12),(5722,45110,'Kelly McNamara',0,0),(5722,45111,'Casey Anderson',0,1),(5722,45112,'Petronella Danforth',0,2),(5722,45113,'Ronnie Z-Man Barzell',0,3),(5722,45114,'Harris Allsworth',2,4),(5722,45115,'Ashley St. Ivens',1,5),(5722,45099,'Roxanne',1,6),(5722,36480,'Susan Lake',1,7),(5722,45101,'Emerson Thome',2,8),(5722,43867,'Porter Hall',0,9),(5722,102817,'Randy Black',0,10),(5722,16119,'Baxter',2,11),(5722,44589,'Matron',0,12),(5722,1146397,'Disciple',0,13),(5722,43869,'Vanessa',0,14),(5722,4593,'Cat Woman',0,15),(5722,101967,'Red Head',0,16),(5722,100158,'Art Director',0,17),(5722,45091,'Rotund Drunk',2,18),(5722,2230,'Fourth Woman (as Pamela Grier)',1,19),(5722,4590,'TV Cameraman (uncredited)',0,20),(5722,45100,'Man with Newspaper (uncredited)',2,21),(1781,19013,'Himself',2,0),(1781,23679,'(voice)',2,1),(1781,18802,'Himself (archive footage)',2,2),(1781,19011,'Himself (archive footage)',2,4),(1781,46432,'Himself (archive footage)',2,5),(7944,1428,'Himself',2,0),(7944,1430,'Himself',2,1),(7944,1429,'Himself',2,2),(7944,53396,'Himself',2,3),(7944,53397,'Herself',1,4),(7944,13611,'Himself',0,5),(7944,53399,'Himself',2,6),(7944,1448155,'Dorothy Howell',0,7),(7944,1448156,'Blondie Chaplin',0,8),(7944,1448157,'Tim Ries',0,9),(7944,1448158,'Michael Davis',0,10),(7944,1448159,'Kent Smith',0,11),(7944,1121,'Himself',2,12),(9707,11357,'Elvis',2,0),(9707,15531,'Jack',2,1),(9707,58681,'The Nurse',1,2),(9707,58682,'Callie',0,3),(9707,79592,'Bubba Ho-tep',0,4),(9707,150186,'Elderly Woman',1,5),(9707,58214,'Kemosabe',2,6),(9707,97939,'Rest Home Administrator',2,7),(9707,43774,'Hearse Driver',2,8),(9707,1097169,'Hearse Driver',0,9),(9707,51931,'Elvis\' Roommate',2,10),(9707,1097170,'Room Nurse',0,11),(9707,1097171,'Attending Nurse',0,12),(9707,1097172,'Iron Lung Lady',0,13),(9707,1097173,'Baby',0,14),(8675,34517,'Joe Young / Orgazmo',2,0),(8675,55624,'Ben Chapleski',2,1),(8675,34518,'Dave the Lighting Guy',2,2),(8675,42545,'Clark',2,3),(8675,55623,'Maxxx Orbison',0,4),(8675,55625,'Lisa',1,5),(8675,55626,'Rodgers',2,6),(8675,55627,'A-Cop',0,7),(8675,55628,'Jimmy the Fish',0,8),(8675,55629,'Guy White Giant Cock',0,9),(8675,55630,'Guy Black Giant Cock',0,10),(8675,55631,'Porn Star',0,11),(8675,55632,'Sancho',0,12),(8675,544069,'Candi',1,13),(8675,74145,'G Fresh - Sushi Bar Owner',0,14),(8675,102894,'Nurse',1,15),(8675,74147,'Georgi',1,16),(8675,44938,'Saffi',1,17),(8675,1826706,'Tommy the Shark',2,18),(8675,1171101,'Randy the Guppy',2,19),(8675,74148,'Porno Film Crew',0,20),(8675,1826722,'Video Store Clerk',2,21),(8675,1826724,'Nasuko',0,22),(654,3084,'Terry Malloy',2,0),(654,9857,'Father Barry',2,1),(654,5248,'Johnny Friendly',2,2),(654,522,'Charlie Malloy',2,3),(654,9862,'Timothy Dugan',2,4),(654,9865,'Glover',0,5),(654,9866,'Big Mac',2,6),(654,589670,'Truck',2,7),(654,977544,'Tillio',2,8),(654,89837,'\'Pop\' Doyle',0,9),(654,88881,'Mott',0,10),(654,3143,'Moose',2,11),(654,976235,'Luke',2,12),(654,977392,'Jimmy',2,13),(654,1125637,'Barney',0,14),(654,2639,'Edie Doyle',1,15),(654,1936,'Gillette (uncredited)',2,16),(654,3172,'Bit Part (uncredited)',2,17),(654,56266,'Slim (uncredited)',2,18),(654,3798,'Jocko (uncredited)',2,19),(654,1297793,'Mother of a Longshoreman (uncredited)',1,20),(654,3160,'Cab Driver (uncredited)',2,21),(2009,20699,'Otilia',1,0),(2009,20698,'Gabita',1,1),(2009,39959,'Domnu\' Bebe',2,2),(2009,39960,'Adi',2,3),(2009,39961,'Doamna Radu',1,4),(2009,39962,'Dr. Radu',2,5),(2009,122784,'Unireal Hotel receptionist',1,6),(2009,145241,'Benzanirul',2,7),(2009,85227,'Dr. Rusu',2,8),(2009,983490,'Receptionist Tineretului',1,9),(2009,114159,'Night receptionist',1,10),(2009,479941,'Unireal Hotel receptionist',2,11),(2009,1552315,'Domnu\' Bebe\'s mother',1,12),(2009,1178620,'Adela Racoviceanu',1,13),(2009,1628026,'Mrs. Aldea',1,14),(2009,1328108,'Dr. Aldea',2,15),(2009,1113206,'Dora',1,16),(2009,1034689,'Mihaela',1,17),(2009,1628035,'Carmen',1,18),(2009,1628053,'Mireasa',1,19),(2009,1628055,'Marcu',2,20),(2652,17178,'Jeff Kohlver',2,0),(2652,27578,'Hayley Stark',1,1),(2652,25540,'Judy Tokuda',1,2),(2652,27579,'Janelle Rogers',1,3),(2652,27580,'Nighthawks Clerk',0,4),(9813,25837,'Nina Deer',1,0),(9813,38670,'Dot',1,1),(9813,36190,'Olivia Deer',1,2),(9813,42993,'Paul Deer',2,3),(9813,11023,'Connor',2,4),(9813,59450,'Michelle Fell',1,5),(9813,59451,'Brian',2,6),(9813,59453,'Mrs. Feltswatter',0,7),(9813,59454,'Myrna',0,8),(9813,59455,'Mr. Piln',0,9),(9813,59456,'Officer Jim',2,10),(9813,59457,'Police Officer',0,11),(9813,59458,'Waitress',0,12),(9813,59459,'Newscaster #1',0,13),(9813,59460,'Newscaster #2',0,14),(9813,59461,'Sign Language Interpreter',0,15),(9813,59462,'Ted',0,16),(9813,59463,'Regina McQueen',0,17),(9813,59464,'High School Student',1,18),(9813,82663,'Fiona',1,19),(3170,30161,'Young Bambi (voice)',2,0),(3170,31704,'Young Thumper (voice)',0,1),(3170,31703,'Young Flower (voice)',0,2),(3170,11503,'Young Faline (voice)',0,3),(3170,34279,'Friend Owl (voice)',2,4),(3170,31702,'Adolescent Bambi (voice)',2,5),(3170,107445,'Adolescent Faline (voice)',1,6),(3170,31707,'Adolescent Thumper / Adolescent Flower (voice)',2,7),(3170,31705,'Adult Thumper (voice)',2,8),(3170,34759,'Adult Flower (voice)',2,9),(3170,5465,'Mr. Mole (voice)',2,10),(905,13904,'Lulu',1,0),(905,13905,'Dr. Peter Schu00f6n',2,1),(905,13906,'Alwa Schu00f6n',2,2),(905,13907,'Schigolch',0,3),(905,13908,'Rodrigo Quast',0,4),(905,13909,'Anna Geschwitz',1,5),(838,3037,'Curt Henderson',2,0),(838,6159,'Steve Bolander',2,1),(838,12406,'John Milner',2,2),(838,1270,'Terry \'The Toad\' Fields',2,3),(838,8434,'Laurie Henderson',1,4),(838,12407,'Debbie Dunham',1,5),(838,12408,'Carol',1,6),(838,12409,'XERB Disc Jockey',2,7),(838,12410,'Joe Young',2,8),(838,12411,'Carlos',2,9),(838,12412,'Ants',0,10),(838,3,'Bob Falfa',2,11),(838,8183,'Peg',1,12),(838,161912,'The Blonde in T-Bird',1,13),(838,1804407,'Car Salesman',0,14),(838,42174,'Jane',1,15),(838,57354,'Falfa\'s Girl',0,16),(838,162323,'Mr. Wolfe',0,17),(838,1232417,'Bobbie',0,18),(838,152572,'Budda',0,19),(838,200523,'Holstein',0,20),(838,1231581,'Judy',0,21),(838,3044,'Mr. Gordon',2,22),(838,1804429,'Girl in Studebaker',0,25),(838,161279,'Man at Liquor Store',0,26),(838,161318,'Hank',0,27),(8416,1352,'Marcello Clerici',2,0),(8416,34027,'Giulia',1,1),(8416,3281,'Manganiello',2,2),(8416,24590,'Anna Quadri',1,3),(8416,55757,'Professor Quadri',0,4),(8416,33471,'Il colonnello',0,5),(8416,25815,'Italo',0,6),(8416,17577,'Lino',2,7),(8416,55758,'Madre di Giulia',1,8),(9022,55085,'Mandy Lane',1,0),(9022,56675,'Garth',2,1),(9022,56676,'Emmet',2,2),(9022,56677,'Chloe',1,3),(9022,56679,'Bird',2,4),(9022,43373,'Red',2,5),(9022,56680,'Jake',2,6),(9022,56681,'Marlin',1,7),(9022,56682,'Dylan',2,8),(9022,56684,'Aunt Jo',1,9),(9022,56685,'Cousin Jen',1,10),(9022,56686,'Keg Trucker',2,11),(9022,231856,'Girl at pool party (uncredited)',1,12),(288,4068,'Marshal Will Kane',2,0),(288,4070,'Amy Fowler Kane',1,1),(288,3383,'Mayor Jonas Henderson',2,2),(288,2177,'Deputy Marshal Harvey Pell',2,3),(288,4069,'Helen Ramu00edrez',1,4),(288,4071,'Judge Percy Mettrick',2,5),(288,4072,'Martin Howe',2,6),(288,4073,'Sam Fuller',2,7),(288,4074,'Frank Miller',2,8),(288,4075,'Mildred Fuller',1,9),(288,4076,'Dr. Mahin, minister',2,10),(288,4077,'Cooper',2,11),(288,4078,'Jack Colby',2,12),(288,2096,'Jim Pierce',2,13),(288,4080,'Ben Miller',2,14),(288,4965,'Charlie - Drunk in Jail (uncredited)',2,15),(288,34130,'Trumbull (uncredited)',2,16),(288,137203,'Station Master (uncredited)',2,17),(288,50306,'Boy (uncredited)',2,18),(288,103099,'Fred - Coffinmaker (uncredited)',0,19),(288,82750,'Gillis - Saloon Owner (uncredited)',2,20),(288,1598134,'Church Member (uncredited)',0,21),(288,1276434,'Church Member (uncredited)',0,22),(288,1598135,'Church Member (uncredited)',0,23),(288,119486,'Church Member (uncredited)',0,24),(288,1176510,'Church Member (uncredited)',2,25),(288,1002189,'Barfly (uncredited)',2,26),(288,1469572,'Barfly (uncredited)',2,27),(288,1551021,'Townswoman (uncredited)',0,28),(288,1145704,'Townswoman (uncredited)',0,29),(288,990401,'Townsman (uncredited)',2,30),(288,1596347,'Townsman (uncredited)',0,31),(288,114232,'Townsman (uncredited)',0,32),(288,1471682,'Townsman (uncredited)',2,33),(288,1290997,'Townsman (uncredited)',2,34),(288,207141,'Townsman (uncredited)',0,35),(288,1244482,'Townsman (uncredited)',0,36),(288,1096851,'Townsman (uncredited)',0,37),(288,96137,'Hotel Clerk (uncredited)',0,38),(288,101481,'Mrs. Simpson (uncredited)',1,39),(288,89728,'Ed Weaver (uncredited)',0,40),(288,27035,'Scott (uncredited)',2,41),(288,30217,'Kibbee (uncredited)',2,42),(288,98966,'Mrs. Fletcher (uncredited)',1,43),(288,131053,'Sawyer (uncredited)',2,44),(288,153392,'Ezra (uncredited)',2,45),(288,93628,'Coy (uncredited)',2,46),(288,103911,'Lewis (uncredited)',0,47),(288,932309,'Sam (uncredited)',2,48),(288,1198883,'Fletcher (uncredited)',0,49),(288,103753,'Jimmy - Drunk with Eye Patch (uncredited)',2,50),(288,100945,'Deputy Sheriff Herb Baker (uncredited)',2,51),(288,94337,'Barber (uncredited)',2,52),(288,2931,'Joe - Ramirez Saloon Bartender (uncredited)',2,53),(288,170609,'Johnny - Town Boy (uncredited)',0,54),(288,1536134,'Indian Outside of Saloon (uncredited)',0,55),(288,1003623,'Barbershop Customer (uncredited)',0,56),(2287,23591,'Himself',2,0),(2287,23592,'Himself',2,1),(2287,23593,'Herself',0,2),(2287,23596,'Himself',0,3),(2287,23597,'Himself',0,4),(2287,23598,'Herself',0,5),(2287,23599,'Himself',0,6),(2287,154013,'Himself',2,7),(7859,30614,'Dan Dunne',2,0),(7859,53055,'Roodly',0,1),(7859,53056,'Drey',1,2),(7859,53057,'Terrance',2,3),(7859,53058,'Stacy',0,4),(7859,53059,'Gina',0,5),(7859,53060,'Jamal',2,6),(7859,53061,'Bernard',0,7),(7859,53062,'Lena',0,8),(7859,53063,'Erika',0,9),(7859,53064,'Vanessa',1,10),(7859,53065,'Simone',1,11),(7859,53066,'Javier',2,12),(7859,40060,'Rachel',1,13),(7859,53067,'Karen',1,14),(7859,53650,'Frank',2,15),(7859,53651,'Isabel',1,16),(7859,53652,'Mike',2,17),(7859,44830,'Jo',1,18),(7859,6067,'Russ',2,19),(7859,18516,'Cindy',1,20),(7859,81681,'Jimbo',2,22),(7859,467633,'Crack Smoker',1,23),(3080,30181,'Jerry Travers',2,0),(3080,30003,'Dale Tremont',1,1),(3080,2437,'Horace Hardwick',2,2),(3080,30185,'Madge Hardwick',1,3),(3080,30183,'Alberto Beddini',2,4),(3080,30184,'Bates',0,5),(3080,40174,'Flower Clerk',1,6),(3080,9096,'Venice Hotel Manager',0,7),(2667,26853,'Mike',2,0),(2667,26851,'Heather Donahue',1,1),(2667,26852,'Joshua \'Josh\' Leonard',2,2),(2667,81061,'Short Fisherman',2,3),(2667,81062,'Interviewee',2,4),(2667,81063,'Waitress',0,5),(2667,81064,'Fisherman With Glasses',2,6),(2667,81065,'Mary Brown',0,7),(2667,81066,'Man in Yellow Hat',0,8),(2667,81067,'Interviewee with Child',0,9),(9459,57891,'Himself',2,1),(9459,86385,'Himself',2,2),(9459,1490,'Herself',1,3),(9459,44547,'Himself',2,6),(9459,86389,'Themselves',0,8),(9459,86390,'Himself',0,9),(9459,86391,'Themselves',0,10),(9459,86392,'Himself',2,11),(9459,86393,'Themselves',0,12),(9459,86394,'Themselves',0,13),(9459,86395,'Herself',1,14),(9459,115089,'Himself',0,15),(704,10592,'himself',2,0),(704,10215,'himself',2,1),(704,10593,'himself',2,2),(704,10594,'himself',2,3),(704,10595,'Grandfather',2,4),(704,10596,'Norm',2,5),(704,10597,'Shake',2,6),(704,10598,'T.V. director',2,7),(704,10599,'Millie',0,8),(704,10600,'Police Inspector',0,9),(704,749,'Actress (uncredited)',1,10),(704,1192729,'Jean - Schoolgirl on Train #1 (uncredited)',0,11),(704,47000,'Man on Train',2,12),(704,1242930,'Hotel Waiter',0,13),(83,644,'Susan Watkins',1,0),(83,646,'Daniel Kintner',2,1),(83,1187,'Seth',2,2),(83,1420204,'Davis',2,3),(83,590483,'Linda',0,4),(83,64101,'Junior',0,5),(2056,22970,'Finbar McBride',2,0),(2056,1276,'Olivia Harris',1,1),(2056,21127,'Joe Oramas',2,2),(2056,1812,'Emily',1,3),(2056,21128,'Cleo (neighbor girl)',1,4),(2056,6181,'Carl',2,5),(2056,21134,'David',2,6),(2056,21130,'Chris',2,7),(2056,21131,'Danny',2,8),(2056,15534,'Henry Styles',2,9),(2056,21123,'Store Customer',0,10),(2056,21124,'Cashier',1,11),(2056,21125,'Louis Tiboni',2,12),(2056,8792,'Patty at the Good to Go',1,13),(2056,21129,'Janice',1,14),(7301,1893,'Jim',2,0),(7301,18472,'Tim',2,1),(7301,882,'Anika',1,2),(7301,5960,'Sally',1,3),(7301,5950,'Don',2,4),(7301,52406,'Rachel',1,5),(7301,52407,'Sarah',1,6),(7301,52408,'Bar Patron',0,7),(7301,534,'Evil',2,8),(7301,52409,'Phillip - Welder',2,9),(7301,52410,'Neighbor',0,11),(7301,52411,'Doug the preacher',2,12),(7301,52412,'Stacy',0,13),(7301,1310666,'Ben',2,14),(346,7450,'Kikuchiyo',2,0),(346,7453,'Kambei Shimada',2,1),(346,20828,'Gorobei Katayama',2,2),(346,20829,'Kyuzo',2,3),(346,7454,'Heihachi Hayashida',2,4),(346,7457,'Shichiroji',0,5),(346,20830,'Katsushiro Okamoto',2,6),(346,20831,'Shino',1,7),(346,554250,'Rikichi\'s Wife',0,8),(346,96552,'Manzu00f4 - Father of Shino',2,9),(346,134272,'Mosuke',0,10),(346,34377,'Yohei',0,11),(346,17540,'Rikichi',2,12),(346,108028,'Gisaku, the Old Man',0,13),(346,106165,'Kidnapper',2,14),(346,228547,'Coolie A',0,16),(346,134294,'Bun Seller',2,17),(346,134406,'Grandfather of Kidnapped Girl',0,18),(346,134020,'Samurai',0,19),(346,7455,'Bandit Scout',2,20),(346,1173025,'Blind Player',0,21),(346,552187,'Samurai Who Kicks Farmers',0,22),(346,1478367,'Gosaku',0,23),(346,121190,'Bandit Chieftain',0,24),(346,552174,'Bandit Second-in-Command',0,25),(346,1093065,'Samurai with Gun',0,26),(346,1083308,'Tea Shop Owner',0,27),(346,125016,'Weak Ronin',2,28),(346,108026,'Coolie #2',0,29),(346,1481118,'Strong-Looking Samurai',0,30),(346,552180,'Buddhist Priest',0,31),(346,106161,'Wife of Gono Family',0,32),(346,7456,'Woman Farmer',0,33),(346,1200247,'Samurai',0,34),(346,1481119,'Bandit',0,35),(346,552175,'Samurai',0,36),(346,552184,'Samurai',0,37),(346,1481120,'Samurai',0,38),(346,1478372,'Bandit',0,39),(346,1481121,'Samurai',0,40),(346,552166,'Bandit Who Escapes',0,41),(346,1481122,'Bandit Who Escapes',0,42),(346,552170,'Bandit',0,43),(346,1059891,'Bandit',0,44),(346,1478373,'Bandit',0,45),(346,1112075,'Bandit',0,46),(346,1481123,'Bandit',0,47),(346,1481124,'Bandit',0,48),(346,552181,'Bandit',0,49),(346,552167,'Bandit',0,50),(346,1185637,'Bandit',0,51),(346,1481125,'Bandit',0,52),(346,1481126,'Bandit',0,53),(346,235722,'Bandit',2,54),(346,551810,'Farmer',0,55),(346,1481127,'Samurai',0,56),(346,1481128,'Samurai',0,57),(346,1481129,'Gisaku\'s Son',0,58),(346,1481130,'Farmer',0,59),(346,1481131,'Farmer',0,60),(346,1479150,'Farmer',0,61),(346,1201022,'Farmer',0,62),(346,1481132,'Farmer',0,63),(346,552176,'Farmer',0,64),(346,1481133,'Farmer',0,65),(346,1481134,'Farmer',0,66),(346,1167989,'Farmer',0,67),(346,1342305,'Husband of Gono Family',0,68),(346,1200144,'Farmer',0,69),(346,1481135,'Farmer',0,70),(346,1481137,'Farmer',0,71),(346,1478371,'Farmer',0,72),(346,1481140,'Farmer',0,73),(346,1481142,'Farmer',0,74),(346,1167993,'Farmer in Front of Gono',0,75),(346,1481144,'Farmer',0,76),(346,1481145,'Farmer in Front of Gono',0,77),(346,1481146,'Farmer',0,78),(346,1481147,'Farmer',0,79),(346,1117087,'Farmer',0,80),(346,1481148,'Farmer',0,81),(346,1481149,'Coolie #3',0,82),(346,1268056,'Gisaku\'s Daughter-in-Law',0,83),(346,136386,'Woman Farmer in front of Gono',0,84),(346,1481151,'Woman Farmer',0,85),(346,1479144,'Woman Farmer',0,86),(346,1481152,'Woman Farmer',0,87),(346,1481154,'Woman Farmer',0,88),(346,1481155,'Farmer\'s Wife',0,89),(346,1198473,'Farmer\'s Wife',0,90),(346,1200402,'Farmer\'s Wife',0,91),(346,1268329,'Farmer\'s Wife',0,92),(346,1481158,'Farmer\'s Wife',0,93),(346,1481159,'Farmer\'s Wife',0,94),(346,1481160,'Farmer\'s Wife',0,95),(346,1481161,'Woman Farmer',0,96),(346,1481162,'Woman Farmer',0,97),(346,72540,'Samurai Wandering through Town',0,98),(346,70131,'Samurai Wandering through Town',2,99),(346,78496,'Samurai Wandering through Town',2,100),(346,931393,'Farmer',0,101),(4107,34715,'Ivan Cooper',2,0),(4107,34716,'Kevin McCorry',0,1),(4107,34717,'Eamonn McCann',0,2),(4107,34718,'Bernadette Devlin',1,3),(4107,34719,'Bridget Bond',0,4),(4107,11276,'Major General Ford',2,5),(4107,32357,'Brigadier Maclellan',2,6),(4107,34720,'Major Steele',2,7),(4107,1612696,'Colonel Tugwell',0,8),(4107,1612697,'Gerry Donaghy',0,9),(4107,1612698,'Gerry\'s girl',0,10),(4107,1612699,'Mary Donaghy',0,11),(4107,1612700,'Soldier 027',0,12),(4107,1612701,'Para F',0,13),(4107,1612702,'Para G',0,14),(4107,1612703,'Para H',0,15),(4107,1612704,'Para E',0,16),(4107,1612705,'Colonel Wilford',0,17),(4107,1392725,'Major Loden',0,18),(4107,1612706,'Jim',0,19),(4107,59226,'Dennis',2,20),(4107,1612707,'Hugh',2,21),(4107,1612708,'Tommy',0,22),(4107,1612709,'Bogside woman',0,23),(4107,1612710,'Mr. O\'Keefe',0,24),(3062,29999,'Julian Marsh',2,0),(3062,30000,'Dorothy Brock',1,1),(3062,20364,'Pat Denning',0,2),(3062,30001,'Peggy',1,3),(3062,30002,'Abner Dillon',2,4),(3062,13963,'Lorraine Fleming',1,5),(3062,30003,'Ann',1,6),(3062,30004,'Barry',0,7),(3062,19328,'Billy Lawler',2,8),(3062,30005,'Mac Elroy',2,9),(3062,30006,'Terry',2,10),(3062,30007,'Jones',2,11),(3062,3163,'Andy Lee',2,12),(3062,1018113,'Billy\'s partner in Young & Healthy number',0,13),(3062,89101,'Pansy',1,14),(3062,29579,'Playwright of Pretty Lady',2,15),(3062,589217,'Dr. Chadwick',2,16),(3062,34324,'Slim Murphy',2,17),(3062,956981,'Jerry the pianist',2,18),(3062,13823,'Hotel doctor',2,19),(3062,1201233,'Peggy\'s groom in Shuffle Off To Buffalo number',0,20),(3062,99347,'Thug',2,21),(3062,8830,'Stage actor',2,22),(3062,1636743,'Chorus Girl (uncredited)',0,23),(3062,34119,'Geoffrey Warning (voice) (uncredited)',2,24),(3062,148574,'Chorus Girl (uncredited)',1,25),(464,6283,'Daniel Daru00e9us',2,0),(464,6285,'Lena',0,1),(464,6286,'Gabriella',0,2),(464,6287,'Arne',2,3),(464,6288,'Inger',1,4),(464,6289,'Loredana',0,5),(464,6290,'Amanda',0,6),(464,6291,'Conny',0,7),(464,6292,'Olga',1,8),(464,6294,'Stig',2,9),(464,6296,'Florence',0,10),(464,6297,'Erik',0,11),(464,6298,'Siv',1,12),(464,6301,'Holmfrid',0,13),(464,6327,'Tore',0,14),(8193,53926,'Napoleon Dynamite',2,0),(8193,53927,'Kip Dynamite',2,1),(8193,9629,'Uncle Rico',2,2),(8193,20190,'Pedro Sanchez',2,3),(8193,53928,'LaFawnduh',1,4),(8193,53929,'Summer',1,5),(8193,53930,'Deb',1,6),(8193,5727,'Rex',2,7),(8193,53931,'Grandma',1,8),(8193,53932,'Don',2,9),(8193,53933,'Trisha',1,10),(8193,53934,'Ilene',1,11),(8193,1613043,'School Kid',1,12),(1282,2228,'Narrator',2,0),(1282,29900,'Himself (Zephyr skate team)',2,1),(1282,9290,'Himself',2,2),(1282,110393,'Himself',0,3),(1282,16832,'Himself',2,4),(1282,83981,'Himself',2,5),(1282,401433,'Himself',2,6),(1282,401445,'Himself',2,7),(1282,1160018,'Himself',0,8),(762,10722,'King Arthur / Voice of God / Middle Head / Hiccoughing Guard',2,0),(762,8930,'Second Swallow-Savvy Guard / The Black Knight / Peasant 3 / Sir Lancelot the Brave / Taunting French Guard / Tim the Enchanter',0,1),(762,280,'Patsy / Green Knight / Old Man from Scene 24 (Bridgekeeper) / Sir Bors / Animator / Gorrilla Hand',2,2),(762,10713,'Dead Collector / Peasant 1 / Sir Robin the Not-Quite-So-Brave-as-Sir Launcelot / First Swamp Castle Guard / Concorde / Roger the Shrubber / Brother Maynard',2,3),(762,10707,'Dennis\'s Mother / Sir Bedevere / Left Head / Prince Herbert / Cartoon Scribe (voice)',2,4),(762,383,'First Swallow-Savvy Guard / Dennis / Peasant 2 / Right Head / Sir Galahad the Pure / Narrator / King of Swamp Castle / Brother Maynard\'s Brother / Leader of The Knights Who Say NI!',2,5),(762,149979,'The Witch',1,6),(762,10733,'Zoot / Dingo',1,7),(762,70624,'First Monk / Singing Minstrel / Page Crushed by the Rabbit / Peasant #4',0,8),(762,18760,'Old Crone',1,9),(762,179028,'Dead Body / Historian Frank',0,10),(762,58579,'Historian\'s Wife',1,11),(762,1052099,'Dr. Piglet',0,12),(762,1052100,'Dr. Winston',0,13),(762,1052101,'Prisoner',0,14),(762,1211879,'Knight Who Says Ni / Witch-Hunting Villager / Musician at Swamp Castle / Monk / Knight in Final Battle',0,15),(762,10718,'Police Sergeant',2,16),(762,1306824,'Girl in Castle Anthrax',0,18),(762,937002,'Girl in Castle Anthrax',0,19),(1435,17109,'Herself',0,0),(1435,17110,'Himself',0,1),(1435,17108,'Himself',2,2),(1435,17111,'Herself',0,3),(1435,17112,'Himself',0,4),(9029,18976,'Jack Fuller',2,0),(9029,6941,'Joy McNally',1,1),(9029,25703,'Tipper',1,2),(9029,15758,'Dr. Twitchell',1,3),(9029,4515,'Jack Fuller Sr.',2,4),(9029,55253,'Chong',1,5),(9029,18326,'Judge Whopper',2,6),(9029,1117,'Richard Banger',2,7),(9029,58224,'Mason',2,8),(9029,58225,'Dave the bear',2,9),(9029,52997,'Hater',2,10),(9029,78080,'Kelly',1,11),(9029,973651,'Band Leader',0,12),(9029,95875,'Curtis',2,13),(3059,8828,'The Woman Who Rocks the Cradle',1,0),(3059,8829,'The Dear One (Modern Story)',1,1),(3059,29950,'The Boy (Modern Story)',2,2),(3059,29951,'The Girl\'s Father (Modern Story)',2,3),(3059,29952,'Arthur Jenkins (Modern Story)',2,4),(3059,29953,'Mary T. Jenkins (Modern Story)',0,5),(3059,29954,'Mary, the Mother (Judean Story)',0,6),(3059,29955,'Mary Magdalene (Judean Story)',1,7),(3059,29956,'First Pharisee (Judean Story)',0,8),(3059,29258,'The Bride of Cana (Judean Story)',0,9),(3059,29957,'Brown Eyes (French Story)',0,10),(3059,8728,'Prosper Latour (French Story)',2,11),(3059,8835,'Brown Eyes\' Father (French Story)',2,12),(3059,29958,'Brown Eyes\' Mother (French Story)',1,13),(3059,8838,'The Rhapsode (Babylonian Story)',2,14),(3059,29960,'Princess Beloved (Attarea) (Babylonian Story)',1,16),(3059,29961,'King Nabonidus (Babylonian Story)',0,17),(3059,8832,'Uplifter',0,18),(3059,1577210,'Uplifter',1,19),(3059,1557078,'Uplifter',0,20),(3059,8831,'The Friendless One',1,21),(3059,100245,'The Musketeer of the Slums / Babylonian Warrior',2,22),(3059,96061,'The Kindly Policeman',2,23),(3059,8833,'The Governor',2,24),(3059,121247,'Judge of the Court',2,25),(3059,980418,'Prison Guard',2,26),(3059,90074,'The Strike Leader',2,27),(3059,1119768,'Debutante',0,28),(3059,1044969,'Crook',2,29),(3059,928233,'Bartender',0,30),(3059,8842,'Jesus Christ / Cardinal de Lorraine',2,31),(3059,89187,'Father of the Bride of Cana / Warden',0,32),(3059,633744,'The Bridegroom of Cana',2,33),(3059,32427,'Cana Wedding Guest',2,34),(3059,1313506,'The Mercenary',2,35),(3059,1647611,'Charles IX',0,36),(3059,8840,'Henri III',0,37),(3059,8834,'Catherine de Mu00e9dici',1,38),(3059,1167757,'Marguerite de Navarre / The Mountain Girl',1,39),(3059,1130900,'Henri de Navarre',0,40),(3059,8820,'L\'amiral de Coligny / Defendant',2,41),(3059,123521,'Page',0,42),(3059,29959,'Prince Belshazzar',0,43),(3059,13359,'High Priest of Bel / Friend of the Musketeer',2,44),(3059,1440224,'The Friendly Neighbor',0,45),(3059,1366743,'Captain of the Gateg / Bodyguard of the Princess Beloved',0,46),(3059,89107,'Extra (uncredited)',2,47),(3059,14855,'Extra (uncredited)',2,48),(3059,117644,'Extra (uncredited)',2,49),(3059,63383,'Extra (uncredited)',0,50),(3059,17660,'Extra (uncredited)',1,51),(3059,8841,'Extra (uncredited)',0,52),(3059,34047,'Extra (uncredited)',2,53),(3059,132320,'Extra (uncredited)',0,54),(3059,99378,'Extra (uncredited)',2,55),(3059,13969,'Extra (uncredited)',2,56),(3059,1268901,'Extra (uncredited)',0,57),(3059,30201,'Extra (uncredited)',2,58),(3059,102327,'Extra (uncredited)',2,59),(3059,1349871,'Extra (uncredited)',0,60),(3059,1349415,'Extra (uncredited)',0,61),(3059,1347532,'Extra (uncredited)',0,62),(3059,29962,'Extra (uncredited)',2,63),(3059,1207226,'Extra (uncredited)',0,64),(3059,99373,'Extra (uncredited)',2,65),(3059,35505,'Woman at Jenkins Employees Dance (uncredited)',1,66),(3059,8836,'Woman at Jenkins Employees Dance (uncredited)',1,67),(3059,8839,'Second Priest of Bel (uncredited)',0,68),(3059,10531,'Jenkins Party Guest (uncredited)',1,69),(3059,1496,'Crook (uncredited)',2,70),(3059,137402,'The Mountain Girl\'s Brother (uncredited)',0,71),(3059,145109,'Old Babylonian Mother / The City Mother (uncredited)',1,72),(3059,1181318,'Charioteer of the Priest of Bel (uncredited)',2,73),(3059,3247,'Babylonian Soldier (uncredited)',2,75),(3059,262394,'Babylonian Judge (uncredited)',2,76),(3059,97992,'Favorite of the Harem (uncredited)',0,77),(3059,100040,'Favorite of the Harem (uncredited)',1,78),(3059,89186,'Favorite of the Harem (uncredited)',0,79),(3059,1522077,'Favorite of the Harem (uncredited)',0,80),(3059,108102,'Favorite of the Harem (uncredited)',1,81),(3059,1050223,'Favorite of the Harem (uncredited)',0,82),(3059,1307853,'Favorite of the Harem (uncredited)',0,83),(3059,10526,'Favorite of the Harem (uncredited)',0,84),(3059,98024,'Favorite of the Harem (uncredited)',1,85),(3059,1321407,'Child in Epilogue (uncredited)',0,86),(3059,1031280,'Child in Epilogue (uncredited)',0,87),(3059,148394,'Little Girl (uncredited)',0,88),(3059,9096,'The Runner (uncredited)',0,89),(3059,1269185,'Second Pharisee (uncredited)',0,90),(3059,8630,'Second Pharisee (uncredited)',0,91),(3059,139240,'Kindly Neighbor (uncredited)',2,92),(3059,109088,'Man on White Horse (uncredited)',0,93),(3059,130494,'Bit Role (uncredited)',1,94),(3059,1375801,'Jenkins\'s Secretary (uncredited)',0,95),(3059,1647625,'Wife of The Kindly Neighbor (uncredited)',0,96),(3059,580811,'The Mighty Man of Valor (uncredited)',2,97),(3059,1106626,'Attarea\'s Slave (uncredited)',0,98),(3059,148791,'Boy Killed in Battle (uncredited)',2,99),(3059,1304062,'Girl at the Marriage Market (uncredited)',1,100),(3059,103017,'Girl at the Marriage Market (uncredited)',0,101),(3059,8837,'Cyrus (uncredited)',2,102),(3059,1406784,'Counselor to Charles IX (uncredited)',0,103),(3059,1395652,'The Favorite of Egibi (uncredited)',0,104),(3059,76381,'Babylonian Soldier (uncredited)',2,105),(764,11357,'Ashley \'Ash\' J. Williams',2,0),(764,11462,'Cheryl',1,1),(764,11463,'Scott',0,2),(764,11464,'Linda',1,3),(764,11465,'Shelly',1,4),(764,7623,'Hitchhiking Fisherman',2,5),(764,1116941,'Fake Shemp',0,6),(764,1116942,'Fake Shemp',0,7),(764,1116943,'Fake Shemp',0,8),(764,1116944,'Fake Shemp',0,9),(389,4958,'Juror 8',2,0),(389,1936,'Juror 1',2,1),(389,5247,'Juror 2',2,2),(389,5248,'Juror 3',2,3),(389,5249,'Juror 4',2,4),(389,5250,'Juror 5',2,5),(389,2651,'Juror 6',2,6),(389,5251,'Juror 7',2,7),(389,5252,'Juror 9',0,8),(389,39816,'Juror 10',2,9),(389,5254,'Juror 11',2,10),(389,5255,'Juror 12',2,11),(389,3143,'Judge (uncredited)',2,12),(389,1437464,'Guard (uncredited)',0,13),(389,5257,'Court Clerk (uncredited)',0,14),(389,5258,'The Accused (uncredited)',0,15),(389,153394,'Man Waiting for Elevator (uncredited)',0,16),(3078,11492,'Peter Warne',2,0),(3078,30155,'Ellie Andrews',1,1),(3078,30156,'Alexander Andrews',2,2),(3078,30157,'Oscar Shapeley',0,3),(3078,30158,'King Westley',2,4),(3078,8729,'Danker',2,5),(3078,29263,'Zeke',2,6),(3078,30159,'Zeke\'s wife',0,7),(3078,30160,'Joe Gordon, Editor',2,8),(3078,4303,'Bus Driver #1 (uncredited)',2,9),(3078,30530,'Gas Station Attendant (uncredited)',2,10),(3078,14453,'Detective (uncredited)',2,11),(3078,89729,'Detective (uncredited)',2,12),(3078,1172948,'Vendor on Bus (uncredited)',0,13),(3078,117036,'Drunk Reporter (uncredited)',0,14),(3078,121323,'Agnes, Gordon\'s Secretary (uncredited)',1,15),(3078,122978,'Drunk Reporter (uncredited)',2,16),(1550,3897,'April Burns',1,0),(1550,15543,'Bobby',2,1),(1550,1276,'Joy Burns',1,2),(1550,17485,'Jim Burns',2,3),(1550,17486,'Beth Burns',1,4),(1550,17487,'Timmy Burns',2,5),(1550,17488,'Grandma Dottie',1,6),(1550,17489,'Evette',0,7),(1550,17490,'Eugene',2,8),(1550,25988,'Half Asleep Man',2,9),(1550,94432,'Man in Mohair Sweater',2,10),(1550,1237353,'Tish',0,11),(1550,1594615,'Boy on Bicycle',0,12),(1550,1217647,'Woman in Stairwell',0,13),(1550,1014030,'Lee Loung Tan',0,14),(1550,1228152,'Lee Quong Tan',0,15),(1550,52601,'Wayne',2,16),(1550,62520,'Latrell',0,17),(1550,1594617,'Parade Announcer',0,18),(1550,1594620,'Lee Quong',0,19),(1550,1594622,'Lee Lang',0,20),(1550,1594623,'Lee Wai Yam',0,21),(1550,192602,'Woman outside Bodega',0,22),(1550,19497,'Tyrone',2,23),(1550,1594630,'Waitress',0,24),(1550,1356433,'Young Mother',0,25),(1550,1594631,'Young Girl',0,26),(1550,101397,'Joy\'s Biker Guy',0,27),(1550,1594636,'Timmy\'s Biker Guy',0,28),(1550,1594637,'Bernadette the Dog',0,29),(8942,1812,'Wendy',1,0),(8942,883,'Mechanic',2,1),(8942,77080,'Icky',2,2),(8942,19197,'Andy',2,3),(2786,3829,'Ferdinand-Pierrot',2,0),(2786,18197,'Marianne',1,1),(2786,12773,'Maria, la femme de Ferdinand',1,2),(2786,20420,'Fred',2,3),(2786,21772,'le chef des gangsters',0,4),(2786,22162,'Gangster',2,5),(2786,22796,'Gangster',2,6),(2786,26959,'Lui-Mu00eame',0,7),(2786,22167,'Marin',0,9),(2786,23162,'l\'homme du port',2,10),(2786,1653,'un Spectateur',2,12),(2786,23701,'Staquet',0,13),(2786,23480,'Le pompiste',0,14),(2786,13697,'Le pompiste',2,16),(2786,66716,'lazlo kovacs',0,18),(2786,38899,'Lazlo Kovacs',0,19),(2255,880,'Holden McNeil',2,0),(2255,16484,'Alyssa Jones',1,1),(2255,11662,'Banky Edwards',2,2),(2255,20283,'Hooper LaMont',2,3),(2255,19302,'Jay',2,4),(2255,19303,'Silent Bob',2,5),(2255,824,'Fan',2,6),(2255,20503,'Collector',2,7),(2255,1893,'Little Kid',2,8),(2255,1892,'Shawn Oran',2,9),(2255,23629,'Jim Hicks',2,10),(2255,143963,'Kim',0,11),(2255,32030,'Singer',1,12),(2255,1187909,'Himself',0,13),(2255,7796,'Alyssa\'s Roommate (uncredited)',1,14),(2255,93620,'Jane',1,15),(431,5888,'Leaven',1,0),(431,5889,'Holloway',1,1),(431,5892,'Worth',2,2),(431,5894,'Kazan',2,3),(431,2320,'Alderson',2,4),(431,5897,'Rennes',2,5),(431,5900,'Quentin',2,6),(1424,14405,'Sophie Jacobs',1,0),(1424,6474,'Hugh',2,1),(1424,8177,'Jesse',2,2),(1424,4496,'Dr. Fayn',1,3),(1424,17039,'Officer Roberts',2,4),(1424,10427,'Carol Jacobs',1,5),(1424,17040,'The Shooter',2,6),(1424,17041,'Juhn',2,7),(3060,98045,'James Apperson',2,0),(3060,29973,'Melisande',1,1),(3060,29536,'Mr. Apperson',2,2),(3060,29974,'Mrs. Apperson',1,3),(3060,29975,'Justyn Reed',1,4),(3060,29976,'Harry',0,5),(3060,29977,'Bull',2,6),(3060,29978,'Slim',2,7),(3060,29979,'Miss Apperson',1,8),(3060,29980,'Melisande\'s mother',0,9),(3060,29981,'Justine Devereux',1,10),(9659,2461,'Mad Max Rockatansky',2,0),(9659,58401,'Jessie Rockatansky',1,1),(9659,26060,'Toecutter',2,2),(9659,45211,'Jim Goose, Main Force Patrol Officer',2,3),(9659,1125220,'Johnny the Boy',0,4),(9659,94809,'Fifi',2,5),(9659,1125222,'Nurse',0,6),(9659,1125223,'Mudguts',0,7),(9659,1125224,'Clunk',0,8),(9659,172747,'Underground Mechanic',2,9),(9659,1125225,'Singer',0,10),(9659,252659,'Sarse',0,11),(9659,1466390,'Toddler',0,12),(9659,1354808,'Ziggy',0,13),(9659,1230289,'Station Master',0,14),(9659,91491,'Diabando',0,15),(9659,187073,'Benno',0,16),(9659,1466392,'Grinner',0,17),(391,190,'Joe',2,0),(391,16309,'Marisol',1,1),(391,14276,'Ramu00f3n Rojo',0,2),(391,16310,'John Baxter',2,3),(391,16311,'Silvanito',2,4),(391,16312,'Esteban Rojo',2,5),(391,16313,'Don Miguel Rojo',2,6),(391,16314,'Consuelo Baxter',1,7),(391,16316,'Juliu00e1n',0,8),(391,16317,'Antonio Baxter',0,9),(391,4661,'Rubio',0,10),(391,16318,'Chico',2,11),(391,14279,'Piripero, der Sargtischler',0,12),(391,72888,'Baxter Gang Member',2,13),(5759,45396,'Matt',2,0),(5759,45398,'Chad',2,1),(5759,45400,'Michelle',1,2),(5759,45404,'Catherine',1,3),(5759,1287657,'Jett Garner',0,4),(5759,1287658,'Festival Director',1,5),(5759,1287659,'Pickup truck driver',0,6),(5759,1741922,'\'We Are Naked\' Girlfriend',1,7),(5759,1741925,'Bouncer',0,8),(5759,1741927,'Name Checker',1,9),(5759,1741930,'Festival Goer',1,10),(5759,558860,'Festival Goer',2,11),(5759,1282173,'Festival Audience Member',0,12),(5759,1741931,'Girl in the Front Row',1,13),(5759,1741932,'Festival Audience Member',1,14),(5759,1155593,'Film Festival Attendee',0,15),(5822,45812,'Beetle',0,0),(5822,135650,'Sweetback',0,1),(5822,45813,'Mu-Mu',0,2),(5822,16214,'The Young Sweetback',2,3),(5822,101432,'Commissioner',2,4),(5822,22384,'Biker',2,5),(5822,43869,'',0,6),(5822,43986,'Old Girlfriend',0,7),(5822,104573,'',0,8),(5822,84978,'',2,9),(5822,104452,'',0,10),(5822,26153,'',0,11),(5822,104601,'',0,12),(5822,1134868,'',0,13),(5723,45124,'Guy',0,0),(5723,45127,'Girl',1,1),(5723,231753,'Timmy Drummer',0,2),(5723,231754,'Lead Guitarist',0,3),(5723,45129,'Bassist',0,4),(5723,45130,'Eamon',0,5),(5723,45131,'Guy\'s Dad',0,6),(5723,45132,'Girl\'s Mother',0,7),(5723,143859,'Heroin Addict',2,8),(5723,188433,'Bill',0,9),(5723,163544,'Ex Girlfriend',1,10),(1779,17087,'Himself',2,0),(1779,1374979,'himself',0,1),(1779,1374980,'Himself',0,2),(1779,1090751,'Hilmselt',0,3),(985,6718,'Henry Spencer',2,0),(985,14794,'Mary X',1,1),(985,14795,'Mr. X',2,2),(985,14796,'Mrs. X',1,3),(985,14797,'Beautiful Girl Across the Hall',1,4),(985,14798,'Lady in the Radiator',0,5),(985,14799,'The Boss',2,6),(985,14800,'Little Girl',1,7),(985,14801,'Pencil Machine Operator',2,8),(985,14802,'Grandmother',0,9),(985,105624,'Paul',2,10),(9821,4430,'Gwen Dillon',1,0),(9821,20220,'Maxwell Max Kane',2,1),(9821,18793,'Kevin Freak Dillon',0,2),(9821,4800,'Gram',1,3),(9821,5048,'Grim',2,4),(9821,7470,'Iggy',2,5),(9821,15899,'Mrs. Addison',1,6),(9821,4691,'Kenny Kane',2,7),(9821,12214,'Loretta Lee',1,8),(473,6432,'Maximillian Cohen',2,0),(473,1173,'Sol Robeson',2,1),(473,6437,'Lenny Meyer',2,2),(473,6439,'Devi',1,3),(473,177560,'Marcy Dawson',0,4),(473,1982,'Farroukh',2,5),(473,1402326,'Mrs. Ovadia',0,6),(473,6438,'Rabbi Cohen',0,7),(473,6440,'Jenna',0,8),(473,1193064,'Jenny Robeson',0,9),(473,6377,'Photographer',2,10),(473,6441,'Jenna\'s Mom',0,11),(473,1163066,'Moustacheless Man',0,12),(9372,57492,'Himself',2,0),(9372,57493,'Himself (as Daryl M. Isaacs MD Internal Medicine)',0,1),(9372,57494,'Herself (as Lisa Ganjhu D.O. Gastroenterologist & Hepatologist)',0,2),(9372,57495,'Himself (as Steven Siegel MD FACC Cardiologist)',0,3),(9372,57496,'Herself (as Bridget Bennett R.D.)',0,4),(9372,57498,'Himself, exercise physiologist',0,5),(9372,57499,'Himself, former editor, Walking',0,6),(9372,57500,'Herself - Morgan\'s Girlfriend (as Healthy Chef Alex)',0,7),(9372,57502,'Himself (as John F. Banzhaf III)',0,8),(9372,57503,'Himself (as Dr. David Satcher)',0,9),(9372,57504,'Herself (as Dr. Lisa Young)',0,10),(9372,57505,'Himself',0,11),(9372,57506,'Himself',0,12),(9372,57507,'Himself',0,13),(9372,57508,'Himself',0,14),(2292,23629,'Dante Hicks',2,0),(2292,23630,'Randal Graves',2,1),(2292,19302,'Jay',2,2),(2292,19303,'Silent Bob',2,3),(2292,23632,'Caitlin Bree',0,4),(2292,23631,'Veronica Loughran',0,5),(2292,20503,'Willam Black/Angry Hockey Playing Customer/Angry Mourner',2,6),(2292,23633,'Woolen Cap Smoker/Egg Man/Offended Customer/Cat Admiring Bitter Customer',2,7),(2292,23634,'Chewlie\'s Rep',0,8),(2292,21405,'Hunting Cap Smoking Boy/Low I.Q. Video Customer/Hubcap Searching Customer/Angry Mourner/Angry Crowd at Door',2,9),(2292,23635,'Sanford/Angry Mourner',0,10),(2292,23636,'Coroner',0,11),(2292,23637,'Olaf Oleeson',0,12),(2292,1560996,'Heather Jones',0,13),(2292,280714,'Milk Lady',0,14),(692,10369,'Divine / Babs Johnson',2,0),(692,10370,'Raymond Marble',0,1),(692,10371,'Cotton',0,2),(692,9292,'Connie Marble',1,3),(692,10372,'Crackers',0,4),(692,10373,'Edie',0,5),(692,10374,'Channing',0,6),(692,10375,'Cookie',0,7),(692,10376,'Suzie',1,8),(692,10377,'Linda',0,9),(692,1832086,'Party Guest',2,10),(9367,20498,'El Mariachi',2,0),(9367,57470,'Bigotu00f3n',0,2),(9367,57471,'Mauricio (Moco)',2,3),(9367,1192733,'Azul',0,4),(9367,1192734,'Cantinero',0,5),(9367,1293343,'Domino',0,6),(9367,1066358,'Moco\'s Men',2,7),(19995,65731,'Jake Sully',2,0),(19995,8691,'Neytiri',1,1),(19995,10205,'Dr. Grace Augustine',1,2),(19995,32747,'Col. Quaritch',2,3),(19995,17647,'Trudy Chacon',1,4),(19995,1771,'Selfridge',2,5),(19995,59231,'Norm Spellman',2,6),(19995,30485,'Moat',1,7),(19995,15853,'Eytukan',2,8),(19995,10964,'Tsu\'Tey',2,9),(19995,95697,'Dr. Max Patel',2,10),(19995,98215,'Lyle Wainfleet',2,11),(19995,154153,'Private Fike',2,12),(19995,397312,'Cryo Vault Med Tech',2,13),(19995,42317,'Venture Star Crew Chief',2,14),(19995,986734,'Lock Up Trooper',2,15),(19995,1207227,'Shuttle Pilot',0,16),(19995,1180936,'Shuttle Co-Pilot',0,17),(19995,1019578,'Shuttle Crew Chief',2,18),(19995,91443,'Tractor Operator / Troupe',0,19),(19995,173391,'Dragon Gunship Pilot',2,20),(19995,1207236,'Dragon Gunship Gunner',0,21),(19995,215913,'Dragon Gunship Navigator',0,22),(19995,143206,'Suit #1',0,23),(19995,169676,'Suit #2',2,24),(19995,1048610,'Ambient Room Tech',0,25),(19995,42288,'Ambient Room Tech / Troupe',0,26),(19995,68278,'Horse Clan Leader',2,27),(19995,1207247,'Link Room Tech',0,28),(19995,1207248,'Basketball Avatar / Troupe',1,29),(19995,89714,'Basketball Avatar',0,30),(19995,1207249,'Na\'vi Child',0,31),(19995,1207250,'Troupe',0,32),(19995,83105,'Troupe',1,33),(19995,1207253,'Troupe',0,34),(19995,1207251,'Troupe',0,35),(19995,1207252,'Troupe',0,36),(19995,1207254,'Troupe',0,37),(19995,1207257,'Troupe',0,38),(19995,1207259,'Troupe',0,39),(19995,1207262,'Troupe',0,40),(19995,1158600,'Troupe',1,41),(19995,983705,'Troupe',1,42),(19995,1207263,'Troupe',0,43),(19995,1145098,'Op Center Staff',1,44),(19995,33305,'Op Center Staff',2,45),(19995,1207264,'Op Center Staff',0,46),(19995,33311,'Op Center Staff',2,47),(19995,1207265,'Op Center Staff',0,48),(19995,1207266,'Op Center Duty Officer',0,49),(19995,54492,'Op Center Staff',2,50),(19995,1207267,'Dancer',0,51),(19995,1207268,'Dancer',0,52),(19995,1207269,'Dancer',0,53),(19995,1207270,'Dancer',0,54),(19995,1207271,'Dancer',0,55),(19995,1207272,'Dancer',0,56),(19995,1207273,'Dancer',0,57),(19995,1207274,'Dancer',0,58),(19995,1207275,'Dancer',0,59),(19995,1207276,'Mining Chief (uncredited)',0,60),(19995,107969,'Veteran Miner (uncredited)',0,61),(19995,1207278,'Richard (uncredited)',0,62),(19995,147898,'Nav\'i (uncredited)',1,63),(19995,1207280,'Trooper (uncredited)',0,64),(19995,1207281,'Trooper (uncredited)',0,65),(19995,1207282,'Ground Technician (uncredited)',2,66),(19995,1207283,'Flight Crew Mechanic (uncredited)',0,67),(19995,98216,'Samson Pilot',0,68),(19995,1201399,'Trooper (uncredited)',0,69),(19995,236696,'Banshee (uncredited)',0,70),(19995,1207287,'Soldier (uncredited)',0,71),(19995,1207288,'Blast Technician (uncredited)',0,72),(19995,1207289,'Vindum Raah (uncredited)',0,73),(19995,584868,'Hero (uncredited)',0,74),(19995,1207290,'Ops Centreworker (uncredited)',0,75),(19995,1062463,'Engineer (uncredited)',0,76),(19995,60656,'Col. Quaritch\'s Mech Suit (uncredited)',0,77),(19995,1207291,'Female Marine (uncredited)',0,78),(19995,1186027,'Ikran Clan Leader (uncredited)',1,79),(19995,1207292,'Geologist (uncredited)',0,80),(19995,103259,'Na\'vi (uncredited)',0,81),(19995,42286,'Ambient Room Tech / Troupe',1,82),(10764,8784,'James Bond',2,0),(10764,18182,'Camille Montes',1,1),(10764,8789,'Dominic Greene',2,2),(10764,5309,'M',1,3),(10764,3753,'Renu00e9 Mathis',2,4),(10764,59620,'Strawberry Fields',1,5),(10764,2954,'Felix Leiter',2,6),(10764,35029,'Gregg Beam',2,7),(10764,2244,'Mr. White',2,8),(10764,62892,'Elvis',2,9),(10764,139549,'Tanner',2,10),(10764,11276,'Foreign Secretary',2,11),(10764,76857,'General Medrano',2,12),(10764,574355,'Henry Mitchell',0,13),(10764,52888,'Guy Haines',2,14),(10764,34408,'Corinne Veneau',1,15),(10764,136290,'Gemma',1,16),(10764,20289,'Monsieur Slate',2,17),(10764,566331,'Perla de las Dunas Receptionist',1,18),(10764,127000,'Anna',1,20),(10764,574361,'Quantum Member',0,21),(10764,205222,'MI6 Agent',0,22),(10764,62961,'Ocean Sky Receptionist',0,23),(10764,193339,'MI6 Agent (uncredited)',0,24),(10764,424182,'MI6 Agent (uncredited)',0,25),(10764,574364,'Quantum Member',0,26),(10764,574365,'Mario Cavaradossi',0,27),(10764,574367,'Spoletta',0,28),(10764,149307,'Colonel of Police',2,29),(10764,69865,'Lt. Orso',2,30),(10764,1234388,'Yusef',0,31),(10764,1529894,'Forensics Tech',0,32),(24428,3223,'Tony Stark / Iron Man',2,0),(24428,16828,'Steve Rogers / Captain America',2,1),(24428,103,'Bruce Banner / The Hulk',2,2),(24428,74568,'Thor Odinson',2,3),(24428,1245,'Natasha Romanoff / Black Widow',1,4),(24428,17604,'Clint Barton / Hawkeye',2,5),(24428,91606,'Loki',2,6),(24428,9048,'Agent Phil Coulson',2,7),(24428,71189,'Agent Maria Hill',1,8),(24428,1640,'Erik Selvig',2,9),(24428,2231,'Director Nick Fury',2,10),(24428,12052,'Virginia Pepper Potts',1,11),(24428,6162,'J.A.R.V.I.S. (voice)',2,12),(24428,14464,'World Security Council',1,13),(24428,101522,'Shield Pilot',2,14),(24428,6280,'World Security Council',2,15),(24428,7624,'Old Man in TV Report',2,16),(24428,188758,'World Security Council',2,17),(24428,168246,'World Security Council',2,18),(24428,34486,'Waitress',1,19),(24428,5048,'Security Guard',2,20),(24428,81959,'Carrier Bridge Techs',1,21),(24428,1033652,'Gala Scientist',0,22),(24428,79079,'Celebration Montage Interviewee',2,23),(24428,51303,'Tall Thug',2,24),(24428,43553,'Georgi Luchkov',2,25),(24428,1018947,'Agent Jasper Sitwell',2,26),(24428,1214673,'The Other',2,27),(24428,19151,'Senator Boynton',2,28),(24428,1224022,'Young Cop',0,29),(24428,150194,'Thanos / The Mad Titan (Uncredited)',2,30),(24428,60120,'NASA Scientist',1,31),(24428,1479945,'Weaselly Thug',2,32),(24428,1479946,'Young Girl',1,33),(24428,86157,'Calcutta Woman',1,34),(24428,60878,'Carrier BridgeTechs',2,35),(24428,66525,'Carrier BridgeTechs',2,36),(24428,87128,'German Old Man',2,37),(24428,1479957,'Maintenance Guy',2,38),(24428,1479959,'Japanese Family',2,39),(24428,1479961,'Japanese Family',0,40),(24428,1479962,'Japanese Family',0,41),(24428,2256,'Police Sergeant',2,42),(24428,1479967,'Office Woman',0,43),(24428,1480042,'News Reporter',1,44),(24428,1480043,'News Reporter',1,45),(24428,1480044,'Faceless Pilot',2,46),(24428,1203089,'Celebration Montage Interviewee',2,47),(24428,98626,'Celebration Montage Interviewee',2,48),(24428,1480045,'Celebration Montage Interviewee',1,49),(24428,156342,'Shawna Lynde',1,50),(24428,1480047,'Himself',2,51),(24428,1234512,'Himself',2,52),(24428,1263294,'Woman in Restaurant (uncredited)',0,53),(24428,1480048,'German Pedestrian (uncredited)',1,54),(24428,1153698,'Lentil Merchant (uncredited)',2,55),(24428,1480049,'S.H.I.E.L.D. Agent (uncredited)',2,56),(24428,1191953,'Celebration Montage Man Shaving Beard (uncredited)',2,57),(24428,1480051,'Gala Guest (uncredited)',1,58),(24428,1480053,'Museum Gala Patron (uncredited)',2,59),(24428,1480055,'Stuttgart Biergarten patron (uncredited)',0,60),(24428,1403346,'S.H.I.E.L.D. Guard (uncredited)',0,61),(24428,1480056,'Gala Guest (uncredited)',1,62),(24428,1466605,'Soldier (uncredited)',2,63),(24428,1480057,'Museum Gala Guest (uncredited)',0,64),(24428,1480058,'Captain Putz (uncredited)',2,65),(24428,19137,'The Hulk (voice) (uncredited)',0,66),(24428,1354406,'Pedestrian (uncredited)',2,67),(24428,1480060,'Stuttgart Citizen (uncredited)',0,68),(24428,1480065,'S.H.I.E.L.D. Agent (uncredited)',2,69),(24428,1480066,'Museum Gala Patron (uncredited)',0,70),(24428,1480067,'Mercenary (uncredited)',2,71),(24428,1480085,'Pedestrian (uncredited)',2,72),(24428,1480087,'S.H.I.E.L.D. Agent (uncredited)',2,73),(24428,1480091,'Stuttgart Citizen (uncredited)',2,74),(24428,1480096,'Hostage (uncredited)',1,75),(24428,1480097,'Limo Driver (uncredited)',1,76),(24428,1480124,'Helicarrier Medical Team Leader (uncredited)',2,77),(24428,1480128,'Stuttgart Driver (uncredited)',0,78),(24428,1480130,'Civilian (uncredited)',1,79),(24428,1480132,'Cafe Patron (uncredited)',2,80),(24428,1001496,'Guard (uncredited)',2,81),(24428,1480144,'Waitress (uncredited)',1,82),(24428,1480146,'Gala Museum Patron (uncredited)',1,83),(24428,1480148,'Extra (uncredited)',2,84),(24428,1480150,'New York City Pedestrian (uncredited)',0,85),(24428,1480152,'S.H.I.E.L.D. Agent (uncredited)',2,86),(24428,1480153,'New York Pedestrian (uncredited)',0,87),(24428,1365516,'Shiel Employee (uncredited)',2,88),(24428,1480198,'Museum Gala Guest (uncredited)',1,89),(24428,1480199,'Extra (uncredited)',2,90),(24428,1480200,'Helicarrier Shield Agent (uncredited)',2,91),(24428,1480202,'S.H.I.EL.D Agent - Loki Escort (uncredited)',2,92),(24428,1371850,'S.H.I.E.L.D. Agent (uncredited)',2,93),(24428,1480204,'Stuttgart Gala Patron (uncredited)',2,94),(24428,1480208,'S.H.E.I.L.D. Agent (uncredited)',2,95),(24428,1454362,'Restaurant Patron (uncredited)',1,96),(24428,1480209,'New York City Police Officer (uncredited)',2,97),(24428,1480210,'New York Police Officer in Firefight (uncredited)',2,98),(24428,1480211,'Stuttgart Beer Garden Patron (uncredited)',0,99),(24428,1480212,'Lab Tech (uncredited)',1,100),(24428,1480213,'Museum Gala Patron (uncredited)',2,101),(24428,6037,'S.H.I.E.L.D. Agent #4 (uncredited)',2,102),(24428,1480218,'Gala Patron (uncredited)',2,103),(24428,1480219,'S.H.I.E.L.D. Agent (uncredited)',0,104),(24428,1480220,'Pedestrian (uncredited)',0,105),(24428,1480221,'Mercenary (uncredited)',2,106),(24428,1480222,'Child on News #1 (uncredited)',2,107),(24428,1480223,'Running Pedestrian (uncredited)',2,108),(24428,1480224,'Sweeper (uncredited)',1,109),(24428,1480226,'Barbershop (uncredited)',2,110),(24428,1673576,'Tourist (uncredited)',2,111),(24428,1636801,'Gala Guest (uncredited)',1,112),(24428,1343164,'S.H.I.E.L.D agent (uncredited)',1,113),(24428,1376001,'NYC Pedestrian (uncredited)',1,114),(20662,934,'Robin Longstride',2,0),(20662,112,'Marion Loxley',1,1),(20662,2201,'Sir Walter Loxley',2,2),(20662,227,'William Marshal',2,3),(20662,2983,'Godfrey',2,4),(20662,25072,'Prince John',2,5),(20662,6413,'King Richard the Lionheart',2,6),(20662,20300,'Eleanor of Aquitaine',1,7),(20662,13633,'Friar Tuck',2,8),(20662,15576,'Sheriff of Nottingham',2,9),(20662,79072,'Little John',2,10),(20662,35091,'Will Scarlet',2,11),(20662,147472,'Allan A\'Dayle',2,12),(20662,80149,'Sir Robert Loxley',2,13),(20662,121529,'Isabella of Angoulu00eame',1,14),(20662,17499,'King Philip of France',2,15),(20662,47643,'Baron Baldwin',2,16),(20662,43131,'Baron Fitzrobert',0,17),(20662,34515,'Belvedere',2,18),(20662,556444,'Loop',2,19),(20662,16358,'Father Tancred',0,20),(20662,185460,'Stone Mason Longstride',2,21),(20662,75076,'Jimoen',2,22),(20662,81125,'Adhemar',0,23),(20662,226083,'Margaret - Walter\'s Maid',1,24),(20662,1151410,'Princess Isabel of Gloucester',0,25),(20662,1796466,'Farmer Paul',0,26),(20662,24709,'Gaffer Tom',2,27),(20662,1182597,'Village Mother',0,28),(20662,114019,'Sheriff\'s Thug',2,29),(20662,146457,'Groom',2,30),(20662,58787,'Lady-in-Waiting',1,31),(20662,202032,'Northerner',2,32),(20662,3551,'Distinctive Man',0,33),(12155,76070,'Alice Kingsleigh',1,0),(12155,85,'The Mad Hatter',2,1),(12155,1813,'The White Queen',1,2),(12155,1283,'The Red Queen',1,3),(12155,1064,'The Knave of Hearts',2,4),(12155,20982,'Charles Kingsleigh',2,5),(12155,30083,'Helen Kingsleigh',1,6),(12155,26209,'Tweedledee / Tweedledum',2,7),(12155,11855,'Lady Ascot',1,8),(12155,11276,'Lord Ascot',2,9),(12155,29237,'Hamish Ascot',2,10),(12155,47468,'Aunt Imogene',1,11),(12155,3968,'The White Rabbit (voice)',2,12),(12155,4566,'The Caterpillar (voice)',2,13),(12155,113,'The Jabberwocky (voice)',2,14),(12155,11275,'The Cheshire Cat (voice)',2,15),(12155,9191,'The Bloodhound (voice)',2,16),(12155,34900,'The March Hare (voice)',2,17),(12155,40942,'The Dormouse (voice)',1,18),(12155,3796,'The Dodo (voice)',2,19),(12155,11356,'Tall Flower Faces (voice)',1,20),(12155,73357,'Fiona Chattaway',1,21),(12155,282628,'Margaret Kingsleigh',2,22),(12155,119413,'Faith Chattaway',1,23),(12155,1652888,'Strange Woman Kisser',1,24),(12155,1323226,'Woman with Large Nose in Red Queen Court',0,25),(12155,31737,'Woman with Big Ears in Red Queen Court',1,26),(12155,156136,'Man with Large Belly in Red Queen Court',2,27),(12155,208507,'Woman with Large Poitrine in Red Queen Court',1,28),(12155,63280,'Man with Large Chin in Red Queen Court',2,29),(12155,1350949,'Hightopp Hat Juggler',0,30),(12155,1652908,'Party Dancer',1,31),(12155,1652911,'Party Dancer',1,32),(12155,487836,'Party Dancer',2,33),(12155,1116282,'Red Queen\'s Court',1,34),(20526,9828,'Sam Flynn',2,0),(20526,1229,'Kevin Flynn / Clu',2,1),(20526,59315,'Quorra',1,2),(20526,2547,'Alan Bradley / Tron',2,3),(20526,60033,'Siren',1,4),(20526,86268,'Siren',1,5),(20526,20403,'Gem',1,6),(20526,130108,'Siren',1,7),(20526,22063,'Jarvis',2,8),(20526,86269,'Young Mrs. Flynn',0,9),(20526,58371,'Sobel',2,10),(20526,3968,'Castor / Zuse',2,11),(20526,109205,'Young Sam',0,12),(20526,37980,'Green Light Cycle Rider',2,13),(20526,67931,'Masked DJ\'s',0,14),(20526,10874,'Chattering Homeless Man',2,15),(20526,43263,'Bartik',2,16),(20526,145110,'Half Faced Man',2,17),(20526,2037,'Edward Dillinger',2,18),(20526,1566267,'Black Guard',2,19),(20526,1459145,'Young Man on Recognizer',2,20),(20526,77622,'Reporter #2',1,21),(20526,186373,'Reporter #3',2,22),(10193,31,'Woody (voice)',2,0),(10193,12898,'Buzz Lightyear (voice)',2,1),(10193,13726,'Lotso (voice)',2,2),(10193,3234,'Jessie the Yodeling Cowgirl (voice)',1,3),(10193,2232,'Ken (voice)',2,4),(10193,2395,'Stretch the Octopus (voice)',1,5),(10193,5149,'Purple-haired doll (voice)',1,6),(10193,12900,'Rex (voice)',2,7),(10193,7907,'Hamm (voice)',2,8),(10193,7167,'Mr. Potato Head (voice)',2,9),(10193,61964,'Mrs. Potato Head (voice)',1,10),(10193,1116442,'Andy (voice)',0,11),(10193,63978,'Barbie (voice)',1,12),(10193,1096415,'Bonnie (voice)',0,13),(10193,12133,'Andy\'s Mom (voice)',1,14),(10193,21485,'Slinky Dog (voice)',0,15),(10193,59357,'Chatter Telephone (voice)',2,16),(10193,109869,'Trixie (voice)',0,17),(10193,8655,'Sarge (voice)',2,18),(10193,7918,'Chuckles (voice)',2,19),(10193,97051,'Molly (voice)',0,20),(10193,10669,'Mr. Pricklepants (voice)',2,21),(10193,24358,'Bonnie\'s Mom (voice)',1,22),(10193,60074,'Buttercup (voice)',2,23),(10193,167295,'Twitch (voice)',0,24),(10193,7882,'Aliens (voice)',2,25),(10193,19545,'Chunk (voice)',2,26),(10193,157626,'Sparks (voice)',2,27),(10193,21125,'Bookworm (voice)',2,28),(10193,12901,'Sid (voice)',2,29),(10193,1381777,'Frog (voice)',2,30),(10193,59784,'Additional Voice (voice)',2,31),(10193,117081,'Additional Voice (voice)',1,32),(10193,84495,'Additional Voice (voice)',2,33),(10193,52699,'Additional Voice (voice)',2,34),(10193,84493,'Additional Voice (voice)',0,35),(10193,35159,'Additional Voice (voice)',1,36),(10193,1212864,'Additional Voice (voice)',1,37),(10193,10,'Additional Voice (voice)',2,38),(10193,7960,'Additional Voice (voice)',2,39),(10193,8,'Additional Voice (voice)',2,40),(10193,1443485,'Additional Voice (voice)',0,41),(10193,214701,'(voice) (uncredited)',0,42),(10193,86007,'(voice) (uncredited)',0,43),(10193,15831,'Bullseye / Buster / The Monkey / Pigeon (voice) (uncredited)',2,44),(10681,670,'WALLu00b7E / M-O (voice)',2,0),(10681,72754,'EVE (voice)',0,1),(10681,60074,'Captain (voice)',2,2),(10681,20753,'Shelby Forthright, BnL CEO',2,3),(10681,7907,'John (voice)',2,4),(10681,11074,'Mary (voice)',1,6),(10681,117081,'(voice)',1,7),(10681,35159,'Axiom Passenger (voice)',1,8),(10681,72755,'AUTO (voice)',0,9),(10681,59357,'Steward Bots (voice)',2,10),(10681,78317,'Axiom Passenger (voice)',2,11),(10681,167295,'Axiom Passenger (voice)',0,12),(10681,12890,'Axiom Passenger (voice)',2,13),(10681,86006,'Axiom Passenger (voice)',2,14),(10681,84494,'Axiom Passenger (voice)',0,15),(10681,84495,'Axiom Passenger (voice)',2,16),(10681,214701,'Axiom Passenger (voice)',0,17),(10681,84493,'Axiom Passenger (voice)',0,18),(10681,24358,'Axiom Passenger (voice)',1,19),(10681,1443485,'Axiom Passenger (voice)',0,20),(10681,157626,'Axiom Passenger (voice)',2,21),(10681,7882,'Forthright\'s Advisor (voice)',2,22),(10681,225986,'PR-T (voice)',1,23),(10681,7,'Lifeguard Bot (voice)',2,24),(10681,86007,'Billboard Announcer (voice)',0,25),(10681,99639,'Hoverchair Mother (uncredited)',0,26),(10681,7929,'BURN-E (voice) (uncredited)',0,27),(10681,1174938,'Blond Boy in Commercial (uncredited)',0,28),(10681,10205,'Ship\'s Computer (voice)',1,29),(14161,3036,'Jackson Curtis',2,0),(14161,2956,'Kate Curtis',1,1),(14161,5294,'Adrian Helmsley',2,2),(14161,9030,'Laura Wilson',1,3),(14161,17485,'Carl Anheuser',2,4),(14161,17867,'Dr. Gordon Silberman',0,5),(14161,57755,'Charlie Frost',2,6),(14161,2047,'President Wilson',2,7),(14161,83852,'Noah Curtis',2,8),(14161,74227,'Lilly Curtis',1,9),(14161,101014,'Tamara',1,10),(14161,101017,'Sasha',2,11),(14161,21722,'Professor Frederic West',2,12),(14161,101015,'Tenzin',2,13),(14161,101016,'Nima',2,14),(14161,86633,'Grandma Sonam',1,15),(14161,41664,'Grandfather Sonam',2,16),(14161,44150,'Harry Helmsley',2,17),(14161,18364,'Tony Delgatto',2,18),(14161,230,'Captain Michaels',2,19),(14161,16756,'Dr. Satnam Tsurutani',2,20),(14161,153516,'Scotty',0,21),(14161,31960,'Yuri Karpov',2,22),(14161,1615554,'Oleg',2,23),(14161,967933,'Alec',2,24),(14161,1055157,'Cruise Ship Lady',1,25),(14161,5274,'Roland Picard',0,26),(14161,206669,'Mrs. Birnbaum',1,27),(14161,92079,'German Chancellor',1,28),(14161,39829,'Lama Rinpoche',2,29),(14161,76828,'Ark Communications Officer',2,30),(14161,79151,'Ark Communications Officer',2,31),(14161,10874,'Ark Boarding Officer',2,32),(14161,60601,'Ark Boarding Officer',2,33),(14161,116400,'Ark Boarding Officer',2,34),(14161,158560,'Ark Tech Officer',2,35),(14161,143329,'Arc Naval Officer',1,36),(14161,203294,'Ark Bridge Crew',1,37),(14161,60614,'Ark Bridge Crew',2,38),(14161,1366442,'Ark Bridge Crew',2,39),(14161,62919,'Ark Bridge Crew',2,40),(14161,177885,'AF1 Science Officer',1,41),(14161,60609,'AF1 Science Officer',2,42),(14161,1221020,'AF1 Lieutenant',2,43),(14161,42711,'AF1 Officer',2,44),(14161,1615565,'Governor',2,45),(14161,62173,'Aparna',1,46),(14161,1615574,'Gurdeep',2,47),(14161,190944,'Paris Reporter',1,48),(14161,1205803,'Angry Billionaire',0,49),(14161,41432,'Cruise Ship Lady',1,50),(14161,205881,'Vegas Tow Truck Driver',2,51),(17979,64,'Tiny Tim, Bob Cratchit, Marley',2,0),(17979,206,'Ebenezer Scrooge, Ghost of Christmas Past, Ghost of Christmas Present, Ghost of Christmas Yet To Come',2,1),(17979,78311,'Funerary Undertaker / Topper',2,2),(17979,57675,'Undertaker\'s Apprentice / Tattered Caroler / Beggar Boy / Peter Cratchit / Well-Dressed Caroler',2,3),(17979,558926,'Tattered Caroler',2,4),(17979,1074139,'Tattered Caroler / Well-Dressed Caroler',0,5),(17979,492081,'Tattered Caroler / Beggar Boy / Young Cratchit Boy / Ignorance Boy / Young Boy with Sleigh',2,6),(17979,1074140,'Tattered Caroler / Well-Dressed Caroler',0,7),(17979,60602,'Tattered Caroler / Well-Dressed Caroler',2,8),(17979,61831,'Beggar Boy / Young Cratchit Girl / Want Girl',1,9),(17979,79635,'Fat Cook / Portly Gentleman #2 / Business Man #3',2,10),(17979,5472,'Fred',2,11),(17979,2130,'Portly Gentleman #1 / Dick Wilkins / Mad Fiddler / Guest #2 / Business Man #1',2,12),(17979,32,'Fan / Belle',1,13),(17979,382,'Fezziwig / Old Joe',2,14),(17979,72305,'Mrs. Cratchit',1,15),(17979,96349,'Belinda Cratchit',1,16),(17979,68287,'Caroline\'s Husband',2,18),(14160,68812,'Carl Fredricksen (voice)',2,0),(14160,290,'Charles Muntz (voice)',2,1),(14160,80676,'Russell (voice)',2,2),(14160,10,'Dug / Alpha (voice)',2,3),(14160,18792,'Beta (voice)',2,4),(14160,7960,'Gamma (voice)',2,5),(14160,7907,'Construction Foreman Tom (voice)',2,6),(14160,84490,'Newsreel Announcer (voice)',2,7),(14160,84491,'Young Ellie (voice)',0,8),(14160,84492,'Young Carl (voice)',0,9),(14160,84493,'Police Officer Edith (voice)',0,10),(14160,52699,'Construction Worker Steve (voice)',2,11),(14160,84494,'Nurse George (voice)',0,12),(14160,84495,'Nurse AJ (voice)',2,13),(14160,84496,'Omega (voice)',0,14),(14160,12890,'Campmaster Strauch (voice)',2,15),(15512,19274,'B.O.B. (voice)',2,0),(15512,368,'Susan Murphy / Ginormica (voice)',1,1),(15512,41419,'Dr. Cockroach Ph.D. (voice)',2,2),(15512,22226,'Derek Dietl (voice)',2,3),(15512,2628,'General W.R. Monger (voice)',2,4),(15512,11678,'Gallaxhar (voice)',2,5),(15512,21200,'The Missing Link (voice)',2,6),(15512,58769,'President Hathaway (voice)',2,7),(15512,78303,'Insectosaurus (voice)',0,8),(15512,24305,'Wendy Murphy (voice)',1,9),(15512,4175,'Carl Murphy (voice)',2,10),(15512,56322,'Computer (voice)',1,11),(15512,27105,'News Reporter (voice)',2,12),(15512,9137,'Katie (voice)',1,13),(15512,64446,'Private Bullhorn / Helicopter Pilot / Advisor Ortega (voice)',0,14),(15512,936666,'Commander / Advisor Smith (voice)',2,15),(15512,65630,'Secret Service Man #1 / Lieutenant (voice)',0,17),(15512,18864,'Wilson (voice)',2,18),(15512,12098,'Advisor Cole / Army Commander Jones (voice)',2,19),(15512,64151,'Advisor Wedgie (voice)',2,20),(15512,45416,'Technician Jerry (voice)',2,21),(15512,936669,'Advisor Ouaou / Mrs. Ronson / Female Advisor #2 / Panicked Guest (voice)',1,22),(15512,1077843,'Soldier #4 / Pilot / Soldier #3 / News Technician (voice)',0,23),(15512,1077844,'Soldier #1 / Advisor Jackson (voice)',0,24),(15512,11652,'Bridesmaid Candy (voice)',1,25),(15512,12080,'Advisor Hawk / Advisor Dither / Minister / Secret Service Man #2 / Mama Dietl (voice)',2,26),(15512,17697,'Cuthbert (voice)',2,27),(15512,1448984,'Technician Bee (voice)',0,28),(14869,6065,'General Hawk',2,0),(14869,38673,'Duke',2,1),(14869,9562,'Ripcord',2,2),(14869,23459,'Ana Lewis / Baroness',1,3),(14869,24045,'The Doctor / Rex',2,4),(14869,5419,'Breaker',0,5),(14869,2040,'McCullen / Destro',2,6),(14869,31164,'Heavy Duty',2,7),(14869,25002,'Storm Shadow',2,8),(14869,50347,'Scarlet',1,9),(14869,11007,'Snake Eyes',2,10),(14869,16743,'Zartan',2,11),(14869,18916,'Doctor Mindbender',2,12),(14869,1040850,'Baron de Cobray',0,13),(14869,378,'U.S. President',2,14),(14869,557921,'Young Snake Eyes',2,15),(14869,1115122,'Young Storm Shadow',0,16),(14869,105047,'Hard Master',2,17),(14869,215317,'Cover Girl',1,18),(14869,93211,'James McCullen - 1641',2,19),(14869,18269,'Sgt. Stone',2,20),(14869,209680,'Apache Navigator',0,21),(14869,159454,'Dr. Hundtkinder',2,22),(10138,3223,'Tony Stark / Iron Man',2,0),(10138,12052,'Virginia Pepper Potts',1,1),(10138,1896,'Lt. Col. James Rhodey Rhodes / War Machine',2,2),(10138,1245,'Natalie Rushman / Natasha Romanoff / Black Widow',1,3),(10138,2295,'Ivan Vanko / Whiplash',2,4),(10138,6807,'Justin Hammer',2,5),(10138,2231,'Director Nick Fury',2,6),(10138,9048,'Agent Phil Coulson',2,7),(10138,21134,'Howard Stark',2,8),(10138,52865,'Senator Stern',2,9),(10138,6162,'J.A.R.V.I.S. (voice)',2,10),(10138,51072,'U.S. Marshal',1,11),(10138,57451,'Christine Everhart',1,12),(10138,15277,'Happy Hogan',2,13),(10138,73641,'Herself',1,14),(10138,14741,'Detective Lemieux',2,15),(10138,1209714,'Security Force #1',0,16),(10138,216601,'Security Force #2',0,17),(10138,1265248,'Expo Fan',0,18),(10138,1265249,'Russian Newscaster',0,19),(10138,1177850,'French Photographer',0,20),(10138,586090,'Himself',0,21),(10138,1228219,'Himself',2,22),(10138,40275,'Major Allen',2,23),(10138,1230885,'General Meade',0,24),(10138,1265250,'10 Rings Gangster',0,25),(10138,1079976,'Anton Vanko',0,26),(10138,7624,'Himself',2,27),(10138,1265251,'AV Operator',0,28),(10138,113676,'Rebecca',1,29),(10138,118755,'Expo Cop',0,30),(10138,210292,'Rebeka',1,31),(10138,1265252,'Bambi Arbogast',0,32),(10138,81364,'Chess Roberts',1,33),(10138,57563,'Himself',0,34),(10138,95777,'Himself',0,35),(10138,81957,'Strawberry Vendor',0,36),(10138,1265795,'Young Tony Stark',0,37),(10138,997632,'Guard',0,38),(10138,1265796,'Hammer Expo Tech',0,39),(10138,201883,'French Waiter',0,40),(10138,1265797,'Jack',0,41),(10138,1265798,'Ironette Dancer',0,42),(10138,1003061,'Ironette Dancer',1,43),(10138,1265799,'Ironette Dancer',0,44),(10138,1202543,'Ironette Dancer',0,45),(10138,1265800,'Ironette Dancer',0,46),(10138,1265801,'Ironette Dancer',0,47),(10138,571240,'Ironette Dancer',0,48),(10138,1265802,'Ironette Dancer',0,49),(10138,108725,'Ironette Dancer',1,50),(10138,1265803,'Ironette Dancer',0,51),(10138,995348,'Ironette Dancer',0,52),(10138,1265804,'Ironette Dancer',0,53),(10138,1265805,'Ironette Dancer',1,54),(10138,1265806,'Ironette Dancer',0,55),(10138,83274,'Ironette Dancer',1,56),(10138,168925,'Ironette Dancer',1,57),(10138,1265807,'Ironette Dancer',0,58),(10138,98999,'News Cameraman (uncredited)',0,59),(10138,1265808,'Birthday Party Guest / Expo Guest (uncredited)',0,60),(10138,1265809,'Expo Greeter (uncredited)',0,61),(10138,1265810,'Expo Patron (uncredited)',0,62),(10138,1265811,'Monaco Grand Prix Restaurant Guest (uncredited)',0,63),(10138,1265812,'Bartender (uncredited)',0,64),(10138,1265813,'Model (uncredited)',0,65),(10138,1265814,'Little Girl at EXPO Gala (uncredited)',0,66),(10138,1265815,'Dignitary / Expo Attendee (uncredited)',0,67),(10138,1078574,'Air Force Major (uncredited)',2,68),(10138,1265816,'Tony Stark Racing Fan (uncredited)',0,69),(10138,1236642,'Captain Anders (uncredited)',0,70),(10138,1231548,'Beautiful Girl (uncredited)',0,71),(10138,1265817,'Expo Guest (uncredited)',0,72),(10138,1265818,'Monte Carlo Race Fan (uncredited)',2,73),(10138,1265819,'French Prison Guard #2 (uncredited)',0,74),(10138,1225936,'Watermelon Girl (uncredited)',1,75),(10138,97447,'Justin Hammer Expo Attendee (uncredited)',2,76),(10138,1265820,'Stark Expo Attendee (uncredited)',0,77),(10138,1265821,'I Love You girl (uncredited)',0,78),(10138,1265822,'Pepper\'s Party Guest (uncredited)',0,79),(10138,1265823,'French Prison Guard #1 (uncredited)',2,80),(10138,1265824,'Expo Fan (uncredited)',0,81),(10138,1265825,'Expo Attendee (uncredited)',1,82),(10138,1265826,'Expo Attendee (uncredited)',0,83),(10138,193946,'Prisoner (uncredited)',2,84),(10138,1265827,'Senate Page (uncredited)',0,85),(10138,201951,'Reporter (archive footage) (uncredited)',1,86),(10138,1200895,'Expo Guest (uncredited)',0,87),(10138,1200313,'Prison Guard Chevalier (uncredited)',0,88),(10138,101037,'Reporter (uncredited)',2,89),(10138,1265828,'Photographer at Senate hearing (uncredited)',0,90),(10138,1265829,'Expo Guest (uncredited)',0,91),(10138,1186481,'Awards Attendee (uncredited)',2,92),(10138,1265830,'Russian Woman (uncredited)',0,93),(10138,992389,'SWAT Sergeant Bellows (uncredited)',2,94),(10138,1265831,'Watermelon Girl (uncredited)',1,95),(10138,208056,'French Reporter (uncredited)',0,96),(10138,1265832,'White House Chief of Staff (uncredited)',0,97),(10138,1265833,'Expo Guest (uncredited)',0,98),(10138,223048,'Expo VIP (uncredited)',0,99),(10138,1197358,'Senate Gallery Member (uncredited)',0,100),(10138,1265834,'Expo Kid (uncredited)',0,101),(10138,1265835,'VIP Expo Guest (uncredited)',1,102),(10138,1265836,'1960\'s Film Crew (uncredited)',0,103),(10138,77824,'Security Guard Fighting Happy Hogan (uncredited)',2,104),(10138,1197040,'Stark Expo Attendee (uncredited)',0,105),(10138,1265837,'Pepper\'s Birthday Party Guest (uncredited)',0,106),(10138,1265838,'Senator (uncredited)',2,107),(10138,1265839,'Model (uncredited)',0,108),(10138,92189,'Party Guest (uncredited)',2,109),(10138,1265840,'US Senator (uncredited)',0,110),(10138,1265841,'Background (uncredited)',0,111),(10138,1122811,'Tony Stark Usher (uncredited)',0,112),(10138,1205141,'Expo Attendee (uncredited)',1,113),(10138,1429470,'Stark Expo Attendee (uncredited)',0,114),(10192,12073,'Shrek (voice)',2,0),(10192,776,'Donkey (voice)',2,1),(10192,6941,'Princess Fiona (voice)',1,2),(10192,3131,'Puss in Boots (voice)',2,3),(10192,5823,'Queen (voice)',1,4),(10192,65717,'Brogan (voice)',2,5),(10192,8930,'King (voice)',0,6),(10192,64342,'Cookie (voice)',2,7),(10192,118489,'Rumpelstiltskin / Priest / Krekraw Ogre (voice)',2,8),(10192,43775,'Gretched (voice)',1,9),(10192,25703,'Patrol Witch / Wagon Witch #2 (voice)',1,10),(10192,3138,'Dancing Witch / Wagon Witch #1 (voice)',1,11),(10192,5960,'Guard Witch (voice)',1,12),(10192,109869,'Pumpkin Witch / Palace Witch (voice)',0,13),(10192,118490,'Broomsy Witch (voice)',1,14),(10192,167662,'Father of Butter Pants (voice)',2,15),(10192,12095,'Pinocchio / Three Pigs (voice)',2,16),(10192,44127,'Doris (voice)',2,17),(10192,151657,'Mabel (voice)',2,18),(10192,12097,'Blind Mice (voice)',2,19),(10192,12080,'Gingerbread Man (voice)',2,20),(10192,12106,'Wolf (voice)',0,21),(10192,1454441,'Ogre Baby (voice)',0,22),(10192,1784322,'Ogre Baby (voice)',0,23),(10192,76743,'Ogre Baby / Villager Kid (voice)',0,24),(10192,76744,'Ogre Baby / Tourist Girl / Villager Girl (voice)',0,25),(10192,112821,'Cackling Witch (voice)',1,26),(10192,1784323,'Villager Fan #1 (voice)',0,27),(10192,1454420,'Villager Fan #3 / Ogre Gnimrach (voice)',0,28),(10192,12098,'Royal Messenger / Magic Mirror / Geppetto (voice)',2,29),(10192,64151,'Tour Guide / Camp Ogre / Ogre Naysayer / Baba Witch / Melty Witch / Witch Guard #2 / Butter Pants (voice)',2,30),(10192,1181220,'Villager Fan #2 (voice)',0,31),(10192,86655,'Witch / Pedestrian (voice) (uncredited)',1,32),(10192,1784324,'Witch / Pedestrian (voice) (uncredited)',1,33),(10192,15831,'Dragon / Animals (voice) (uncredited)',2,34),(10191,449,'Hiccup',2,0),(10191,17276,'Stoick',2,1),(10191,24264,'Gobber',2,2),(10191,59174,'Astrid',1,3),(10191,21007,'Snotlout',2,4),(10191,54691,'Fishlegs',2,5),(10191,51990,'Tuffnut',2,6),(10191,41091,'Ruffnut',1,7),(10191,130081,'Ack',2,8),(10191,138619,'Starkard',0,9),(10191,138620,'Hoark the Haggard',0,10),(10191,55398,'Phlegma the Fierce',1,11),(10191,20049,'Spitelout',2,12),(27205,6193,'Dom Cobb',2,0),(27205,24045,'Arthur',2,1),(27205,27578,'Ariadne',1,2),(27205,2524,'Eames',2,3),(27205,3899,'Saito',2,4),(27205,2037,'Robert Fischer',2,5),(27205,8293,'Mal',1,6),(27205,3895,'Miles',2,7),(27205,95697,'Yusuf',2,8),(27205,13022,'Browning',2,9),(27205,4935,'Maurice Fischer',2,10),(27205,526,'Nash',2,11),(27205,66441,'Blonde',1,12),(27205,173212,'Japanese Security Guard',0,13),(27205,967376,'Phillipa (5 years)',1,14),(27205,973135,'Phillipa (3 years)',1,15),(27205,1677266,'James (3 years)',2,16),(27205,56120,'Saito\'s Attendant',2,17),(27205,2246,'Elderly Bald Man',2,18),(27205,1677267,'Lawyer',2,19),(27205,1334309,'Flight Attendant',1,20),(27205,535,'Cab Driver',2,21),(27205,72864,'Thin Man',2,22),(27205,1677498,'Bridge Sub Con',1,23),(27205,13695,'Bridge Sub Con',0,24),(27205,133257,'Bridge Sub Con',2,25),(27205,1677507,'Bridge Sub Con',2,26),(27205,1536351,'Bridge Sub Con',2,27),(27205,203087,'Lobby Sub Con',2,28),(27022,2963,'Balthazar Blake',2,0),(27022,449,'Dave Stutler',2,1),(27022,28782,'Veronica Gorloisen',1,2),(27022,658,'Maxim Horvath',2,3),(27022,20374,'Becky Barnes',1,4),(27022,119586,'Andre',2,5),(27022,2506,'Morgana le Fay',1,6),(27022,1254435,'Young Becky',1,7),(27022,20286,'Drake Stone',2,8),(27022,334,'Bennet',0,9),(27022,17834,'Young Dave',2,10),(27022,1187835,'Merlin',2,11),(27022,1187836,'Sun-Lok',0,12),(27022,210392,'Physics Student',2,13),(10140,5527,'Edmund Prevensie',2,0),(10140,5526,'Lucy Pevensie',1,1),(10140,11108,'Reepicheep (Voice)',2,2),(10140,75170,'Lord Drinian',2,3),(10140,107474,'Rhince',2,4),(10140,3063,'The White Witch',1,5),(10140,143270,'Rynelf',0,6),(10140,25134,'Tavros the Minotaur',2,7),(10140,143271,'Auctioneer',0,8),(10140,25130,'Caspian',2,9),(10140,93491,'Eustace',2,10),(10140,187107,'Lord Bern',0,11),(10140,27752,'Lord Rhoop',2,12),(10140,42393,'Coriakin',2,13),(10140,962438,'Liliandil',0,14),(10140,5529,'Susan Pevensie',1,15),(10140,5528,'Peter Pevensie',2,16),(10140,3896,'Aslan (voice)',2,17),(10140,1633572,'Gael',1,18),(10527,7399,'Alex (voice)',2,0),(10527,9575,'Gloria (voice)',1,1),(10527,14409,'Melman (voice)',2,2),(10527,2632,'Marty / Additional Zebras (voice)',2,3),(10527,5726,'Maurice (voice)',2,4),(10527,28637,'Mort (voice)',2,5),(10527,1897,'Zuba (voice)',2,6),(10527,7447,'Makunga (voice)',2,7),(10527,6730,'Julien (voice)',2,8),(10527,109561,'Mom (voice)',1,9),(10527,82092,'Moto Moto (voice)',2,10),(10527,64445,'Nana (voice)',0,11),(10527,18864,'Skipper / Lemur (voice)',2,12),(10527,12098,'Kowalski (voice)',2,13),(10527,12097,'Private (voice)',2,14),(10527,12080,'Mason (voice)',2,15),(10527,1077795,'Baby Alex (voice)',0,16),(10527,1077796,'Baby Alex (voice)',0,17),(10527,60279,'Teetsi / Poacher #1 / Elephant (voice)',2,18),(10527,18863,'Joe the Witch Doctor / Poacher #2 (voice)',2,19),(10527,49920,'Baby Glorida (voice)',1,20),(10527,205171,'Baby Marty (voice)',0,21),(10527,89819,'Baby Melman (voice)',2,22),(10527,118490,'Newscaster (voice)',1,23),(10527,197819,'Newscaster (voice)',0,24),(10527,111875,'Newscaster (voice)',2,25),(10527,94075,'Lemur (voice)',0,26),(10527,31549,'Guide (voice)',2,27),(10527,1448984,'Stephen the Giraffe / Tourist with Video Camera / Rhino (voice)',0,28),(10527,1232325,'Tourist with University Shirt / Cape Buffalo (voice)',0,29),(10527,571265,'Telephone Recording (voice)',1,30),(10527,20497,'Hippo Girlfriend (voice) (as Stacy Ferguson)',1,32),(10527,16846,'Additional Giraffe (voice)',2,33),(10527,62389,'Tourist with New York T-Shirt (voice)',2,34),(10527,173428,'Female Tourist (voice)',1,35),(10527,61305,'Cub (voice) (as Terence Hardy)',0,36),(10527,1224835,'Little Giraffe (voice)',0,37),(10527,64449,'Fish (voice)',0,38),(10527,1077844,'Bobby the Dik Dik (voice) (as David Smith)',0,39),(10527,64451,'Lioness (voice)',0,40),(10527,950773,'Additional Dik Dik (voice)',0,41),(10527,183507,'Additional Dialogue (voice) (as John Bentley)',2,42),(18360,7399,'Larry Daley',2,0),(18360,9273,'Amelia Earhart',1,1),(18360,887,'Jedediah Smith',2,2),(18360,5587,'Kahmunrah / The Thinker / Abe Lincoln',2,3),(18360,2157,'Theodore Roosevelt',2,4),(18360,13524,'Ivan the Terrible',2,5),(18360,4581,'Octavius',2,6),(18360,17835,'Dr. McPhee',2,7),(18360,19278,'General George Armstrong Custer',2,8),(18360,19498,'Al Capone',2,9),(18360,1030313,'Teenage Boy #3',0,10),(18360,17841,'Sacajawea',1,11),(18360,17838,'Ahkmenrah',2,12),(18360,1428580,'Dexter',0,13),(18360,125167,'Docent',1,14),(18360,17834,'Nicky Daley',2,15),(18360,4275,'Napoleon Bonaparte',2,16),(18360,17837,'Attila the Hun',2,17),(18360,85757,'Cupid #1',0,18),(18360,130566,'Cupid #2',0,19),(18360,130565,'Cupid #3',2,20),(18360,85757,'Cherub #1',0,21),(18360,130566,'Cherub #2',0,22),(18360,130565,'Cherub #3',2,23),(18360,449,'Joey Motorola',2,24),(18360,164067,'Tuskegee Airman #1',2,25),(18360,64342,'Tuskegee Airman #2',2,26),(18360,15661,'Air and Space Mission Control Tech #1',2,27),(18360,440439,'Air and Space Mission Control Tech #2',2,28),(18360,109887,'Oscar the Grouch',2,29),(18360,1728453,'Darth Vader',0,30),(18360,26510,'Albert Einstein Bobbleheads (voice)',2,31),(18360,85757,'Cherub #1 (voice)',0,32),(18360,130566,'Cherub #2 (voice)',0,33),(18360,130565,'Cherub #3 (voice)',2,34),(18360,65606,'Himself',2,35),(18360,17825,'Infomercial Father',2,36),(18360,1178539,'Kissing Nurse',0,37),(18360,27105,'Ed',2,38),(18360,21007,'Brundon',2,39),(18360,59413,'Orville Wright',2,40),(18360,539,'Wilbur Wright',2,41),(13448,31,'Robert Langdon',2,0),(13448,3061,'Camerlengo Patrick McKenna',2,1),(13448,8786,'Vittoria Vetra',1,2),(13448,1640,'Commander Richter',2,3),(13448,17839,'Inspector Olivetti',2,4),(13448,12647,'Cardinal Strauss',2,5),(13448,20258,'Chartrand',2,6),(13448,74487,'Claudio Vincenzi',2,7),(13448,74488,'Father Simeon',0,8),(13448,74494,'Lieutenant Valenti',2,9),(13448,966875,'Cardinal Lamasse',2,10),(13448,74506,'Cardinal Ebner',2,11),(13448,26738,'Cardinal Guidera',2,12),(13448,1018,'Mr. Gray',2,13),(13448,28413,'Father Silvano Bentivoglio',2,14),(13448,22250,'Cardinal Beck',2,15),(13448,74492,'Cardinal Pugini',2,16),(13448,2368,'Cardinal Petrov',2,17),(13448,40224,'Urs Weber',2,18),(13448,1247537,'Swiss Guardsman',2,19),(13448,1136411,'Swiss Guardsman',0,20),(13448,74516,'Swiss Guard Blue',0,21),(13448,168588,'American Reporter',2,22),(13448,74490,'BBC Reporter',0,23),(13448,74496,'British Reporter',1,24),(13448,74495,'Chinese Reporter',0,25),(13448,1277677,'French Reporter',2,26),(13448,27282,'Italian Reporter',0,27),(13448,74499,'Italian Reporter',2,28),(13448,74502,'Polish Reporter',2,29),(13448,34520,'South African Reporter',0,30),(13448,74511,'South American Reporter',0,31),(13448,6180,'CERN Scientist',0,32),(13448,43461,'CERN Scientist',2,33),(13448,6701,'CERN Scientist',2,34),(13448,74493,'Little Girl in Square',0,35),(13448,1189077,'Vatican Choir Member (uncredited)',2,36),(13448,27570,'Docent',1,37),(13448,987053,'Cardinal Baggia',2,38),(13448,24323,'Cardinal Colbert',2,39),(13448,74509,'Adrian Bachman',0,40),(13448,168981,'Cardinal Yoruba',2,41),(13448,1277668,'Conclave Cardinal',0,42),(13448,1277675,'Swiss Guardsman',0,43),(13448,1277667,'Conclave Cardinal',0,44),(13448,1277676,'Philippe',0,45),(13448,211624,'Mexican Reporter',0,46),(10195,74568,'Thor Odinson',2,0),(10195,524,'Jane Foster',1,1),(10195,91606,'Loki',2,2),(10195,4173,'Odin',2,3),(10195,1640,'Erik Selvig',2,4),(10195,52852,'Darcy',1,5),(10195,9048,'Agent Phil Coulson',2,6),(10195,10132,'King Laufey',2,7),(10195,17605,'Heimdall',2,8),(10195,56614,'Volstagg',2,9),(10195,13275,'Hogun',2,10),(10195,77880,'Fandral',2,11),(10195,59817,'Lady Sif',1,12),(10195,14343,'Frigga',1,13),(10195,1018947,'Agent Sitwell',2,14),(10195,12371,'Frost Giant Captain',2,15),(10195,125050,'Frost Giant Sentry',2,16),(10195,78150,'Frost Giant Hailstrum',2,17),(10195,79079,'Agent Jackson',2,18),(10195,33045,'Townie',2,19),(10195,7624,'Stan the Man',2,20),(10195,2231,'Nick Fury',2,21),(10195,17604,'Clint Barton / Hawkeye',2,22),(10195,270,'Isabela Alvarez',1,23),(10195,1579743,'Frost Giant Brute',2,24),(10195,58508,'Frost Giant Grundroth',2,25),(10195,169653,'Frost Giant Raze',2,26),(10195,1056049,'Einherjar Guard',2,27),(10195,963745,'Agent Delancey',2,28),(10195,1147968,'Techie',2,29),(10195,25310,'Agent Garrett',2,30),(10195,84341,'Agent Cale',2,31),(13053,8891,'Bolt (voice)',2,0),(13053,76594,'Penny (voice)',1,1),(13053,56910,'Mittens (voice)',1,2),(13053,61423,'Rhino (voice)',2,3),(13053,56890,'Dr. Calico (voice)',2,4),(13053,58772,'The Director (voice)',2,5),(13053,19974,'The Agent (voice)',2,6),(13053,5727,'Veteran Cat (voice)',2,7),(13053,32907,'Blake (voice)',2,8),(13053,88702,'Tom (voice)',2,9),(13053,15892,'Billy (voice)',2,10),(13053,116315,'Mindy Parker (voice)',0,11),(13053,56734,'Young Penny (voice)',1,12),(13053,89023,'Thug (voice)',2,13),(13053,89024,'Dr. Forrester (voice)',2,14),(13053,15761,'Penny\'s Mom (voice)',1,15),(19585,6807,'Darwin the Guinea Pig (voice)',2,0),(19585,955,'Juarez the Guinea Pig (voice)',1,1),(19585,56903,'Blaster the Guinea Pig (voice)',2,2),(19585,15277,'Hurley the Guinea Pig (voice)',2,3),(19585,884,'Bucky the Hamster (voice)',2,4),(19585,2963,'Speckles the Mole (voice)',2,5),(19585,84845,'Mooch the Fly (voice)',0,6),(19585,84846,'Jared the Skunk (voice)',0,7),(19585,84847,'Micah the Fox (voice)',0,8),(19585,2440,'Leonard Saber',2,9),(19585,21200,'Kip Killian',2,10),(19585,58225,'Ben',2,11),(19585,17442,'Marcie',1,12),(19585,63231,'Rosalita',0,13),(19585,84848,'Grandpa Goodman',0,14),(19585,62821,'Connor',2,15),(19585,84849,'Penny',1,16),(19585,8191,'NSA Director',2,17),(19585,18272,'Carter',2,18),(19585,84850,'Terrell',0,19),(19585,1367499,'Agent',2,20),(10196,88816,'Aang',2,0),(10196,61186,'Katara',1,1),(10196,84215,'Sokka',2,2),(10196,76788,'Zuko',2,3),(10196,17857,'Uncle Iroh',2,4),(10196,20644,'Commander Zhao',2,5),(10196,23680,'Appa / Momo',2,6),(10196,11354,'Avatar Roku',0,7),(10196,19729,'Gran Gran',1,8),(10196,7248,'Fire Lord Ozai',2,9),(10196,559643,'Princess Yue',0,10),(10196,162754,'Master Pakku',2,11),(10196,53454,'Monk Gyatso',2,12),(10196,73336,'Azula',1,13),(10196,9462,'Old Man in Temple',2,14),(10196,1317363,'Zhao\'s Assistant',0,15),(10196,164102,'Earthbending Father',2,16),(10196,1209900,'Fire Nation Soldier',2,17),(10196,1440178,'Fire Nation Soldier',2,18),(10196,1377246,'Suki',1,20),(10196,11614,'Firebender at Earth Prison Camp',2,21),(11619,6968,'Roddy',2,0),(11619,204,'Rita',1,1),(11619,1327,'The Toad',2,2),(11619,1003,'Le Frog',2,3),(11619,2440,'Whitey',2,4),(11619,1333,'Spike',2,5),(11619,215823,'Sid',0,6),(11619,37759,'Rita\'s Mum',1,7),(11619,20277,'Rita\'s Dad',2,8),(11619,6199,'Rita\'s Grandma',1,9),(11619,1075046,'Tabitha',0,10),(11619,58893,'Mother',1,11),(11619,206393,'Father',0,12),(11619,1075047,'Football Commentator',0,13),(11619,1060194,'Newspaper Seller',2,14),(13475,62064,'James T. Kirk',2,0),(13475,17306,'Spock',2,1),(13475,1749,'Spock Prime',2,2),(13475,8783,'Nero',2,3),(13475,21089,'Christopher Pike',2,4),(13475,1372,'Leonard \'Bones\' McCoy',2,5),(13475,8691,'Nyota Uhura',1,6),(13475,11108,'Montgomery Scott',2,7),(13475,68842,'Hikaru Sulu',2,8),(13475,21028,'Pavel Chekov',2,9),(13475,29068,'Sarek',2,10),(13475,1920,'Amanda Grayson',1,11),(13475,74568,'George Kirk',2,12),(13475,41421,'Winona Kirk',1,13),(13475,50347,'Galia',1,14),(13475,57452,'Captain Robau',2,15),(13475,5365,'Ayel',2,16),(13475,4031,'Chief Engineer Olsen',2,17),(13475,128628,'Nero\'s Wife',1,18),(13475,26069,'Barracks Officer',2,19),(13475,451,'Romulan Communications Officer',0,20),(13475,6860,'Young James T. Kirk',2,21),(13475,17305,'Stepdad (voice)',2,22),(13475,92774,'Barracks Officer',1,23),(13475,46801,'Young Spock',2,24),(13475,80602,'Admiral Richard Barnett',2,25),(13475,13024,'Hannity',1,26),(13475,59263,'The Wrong Orion',1,27),(13475,1181331,'Cadet Alien',1,28),(13475,138324,'Officer Pitts',2,29),(13475,188796,'Tactical Officer',0,30),(13475,1274566,'Kelvin Crew Member',0,31),(13475,27031,'Kelvin Engineer',2,32),(13475,51754,'Kelvin Helmsman',1,33),(13475,583844,'Kelvin Alien',0,34),(13475,154748,'Romulan Helmsman',2,35),(13475,963257,'Kelvin Doctor',1,36),(13475,51997,'Medical Technician',2,37),(13475,1216155,'Medical Technician',1,38),(13475,1274869,'Kelvin Crew Member',0,39),(13475,1026981,'Kelvin Crew Member',0,40),(13475,64805,'Med Evac Pilot',2,41),(13475,168962,'Johnny',2,42),(13475,126841,'Iowa Cop',2,43),(13475,1275518,'Vulcan Student',0,44),(13475,1275519,'Vulcan Student',0,45),(13475,1107818,'Vulcan Bully',2,46),(13475,203012,'Vulcan Bully',0,47),(13475,170883,'Vulcan Bully',0,48),(13475,5575,'Vulcan Council Member',2,49),(13475,27570,'Vulcan Council Member',1,50),(13475,51301,'Long Face Bar Alien',2,51),(13475,178452,'Lew the Bartender',2,52),(13475,181879,'Barfly',0,53),(13475,1275520,'Barfly',0,54),(13475,154702,'Burly Cadet',2,55),(13475,182213,'Burly Cadet',2,56),(13475,129661,'Shipyard Worker',2,57),(13475,22075,'Test Administrator',2,59),(13475,78899,'Test Administrator',2,60),(13475,1228940,'Simulator Tactical Officer',0,61),(13475,1275522,'Admiral James Komack',0,62),(13475,51994,'College Council Stenographer',0,63),(13475,1212484,'Shuttle Officer',0,64),(13475,1271733,'Kimberly Arland',0,65),(13475,56448,'Cadet Alien',2,66),(13475,1275523,'Enterprise Crew Member',2,67),(13475,1007337,'Enterprise Crew Member',1,68),(13475,1275524,'Enterprise Crew Member',0,69),(13475,1275932,'Enterprise Crew Member',0,70),(13475,1275933,'Enterprise Crew Member',0,71),(13475,1275934,'Enterprise Crew Member',0,72),(13475,1275935,'Enterprise Crew Member',0,73),(13475,187563,'Enterprise Crew Member',0,74),(13475,90609,'Enterprise Communiations Officer',2,75),(13475,1716,'Romulan Tactical Officer',0,76),(13475,1275937,'Romulan Crew Member',0,78),(13475,1080735,'Romulan Crew Member',2,79),(13475,1275938,'Romulan Crew Member',0,80),(13475,146004,'Transport Chief',1,81),(13475,174797,'Vulcan Elder',0,82),(13475,156283,'Vulcan Elder',0,83),(13475,1275939,'Vulcan Elder',0,84),(13475,79585,'Vulcan Elder',0,85),(13475,1020340,'Vulcan Elder',2,86),(13475,1295,'Keenser',2,87),(13475,1755,'Starfleet Computer (voice)',0,88),(13475,204068,'Council Member - Captain Kelley Bogel (uncredited)',2,89),(13475,993162,'Romulan Science Tech (uncredited)',2,90),(13475,225488,'Amphibian Prisoner (uncredited)',0,91),(13475,931039,'Doctor (uncredited)',1,92),(13475,1278357,'Starfleet Cadet (uncredited)',0,93),(13475,1366,'Drill Tower Romulan (uncredited)',2,94),(13475,1278358,'Starfleet Cadet (uncredited)',0,95),(13475,1278359,'Starfleet Cadet (uncredited)',0,96),(13475,1278360,'Bridgeport Cadet (uncredited)',0,97),(13475,1278361,'Starfleet Cadet (uncredited)',0,98),(13475,1278363,'Enterprise Crewmember (uncredited)',0,99),(13475,1278364,'Starfleet Cadet (uncredited)',0,100),(13475,1278365,'Starfleet Cadet (uncredited)',0,101),(13475,1278367,'Security Officer Daniels (uncredited)',0,102),(13475,1278368,'Starfleet Officer (uncredited)',0,103),(13475,1278369,'Enterprise Crew Member (uncredited)',0,104),(13475,97447,'Klingon Prisoner - Nero\'s Flashback (uncredited)',2,105),(13475,1278370,'Vulcan Federation Officer (uncredited)',0,106),(13475,1278371,'Doctor (uncredited)',0,107),(13475,1278372,'Hurried Cadet with Clipboard (uncredited)',0,108),(13475,129600,'Shipyard Worker (uncredited)',2,109),(13475,1278373,'Starfleet Cadet (uncredited)',0,110),(13475,1010873,'Missile Launcher (uncredited)',0,111),(13475,8536,'Klingon Interrogator (scenes deleted) (uncredited)',2,112),(13475,1278375,'FourSquare (uncredited)',0,113),(13475,218569,'Shipyard Bar Patron (uncredited)',0,114),(13475,1278378,'Starfleet Cadet (uncredited)',0,115),(13475,971780,'Child Running in Snow (uncredited)',2,116),(13475,74504,'Crew Member (uncredited)',0,117),(13475,85743,'Starfleet Security Officer (uncredited)',0,118),(13475,1278379,'Kelvin Crew Member (uncredited)',0,119),(13475,15376,'Uncle Frank (uncredited) (unconfirmed)',2,120),(13475,490982,'Enterprise Nurse (uncredited)',1,121),(13475,228458,'Shipyard Worker (uncredited)',2,122),(13475,1278380,'Enterprise Crew Member (uncredited)',0,123),(13475,1278381,'Starfleet Cadet (uncredited)',0,124),(13475,1278382,'Enterprise Crew Member (uncredited)',0,125),(13475,1014618,'Starfleet Cadet (uncredited)',0,126),(13475,1278383,'Starfleet Commander (uncredited)',0,127),(13475,139553,'Enterprise Crew Member (uncredited)',1,128),(13475,1103961,'Lieutenant Star Fleet Command (uncredited)',2,129),(13475,1278384,'Flight Operational Air Safety Conductor (uncredited)',0,130),(13475,1278385,'Starfleet Cadet (uncredited)',0,131),(13475,989924,'Romulan Crew Member Placing Bomb (uncredited)',2,132),(13475,1278386,'Bar Patron (uncredited)',0,133),(13475,1114365,'Alien Cadet / Enterprise Crew (uncredited)',0,134),(13475,1278387,'Kelvin Alien (uncredited)',0,135),(13475,1278388,'Starfleet Cadet (uncredited)',0,136),(13475,59055,'Kelvin Computer (uncredited)',1,137),(13475,1278389,'Councilwoman (uncredited)',0,138),(13475,1278390,'Enterprise Crewman (uncredited)',0,139),(13475,1278391,'Starfleet Cadet (uncredited)',0,140),(13475,1278392,'Enterprise Crew Member (uncredited)',0,141),(13475,1278393,'Sal (uncredited)',0,142),(13475,1226016,'Romulan Crew Member (uncredited)',2,143),(13475,149466,'Romulan (uncredited)',2,144),(13475,150194,'Drill Hanson #1 (uncredited)',2,145),(13475,986700,'Academy Teacher (uncredited)',1,146),(13475,97466,'Shuttle Cadet (uncredited)',0,147),(13475,588647,'Starfleet Cadet (uncredited)',1,148),(13475,1278394,'Starfleet Cadet (uncredited)',0,149),(13475,1278395,'Starfleet Cadet (uncredited)',0,150),(13475,938390,'Vulcan Science Minister (uncredited)',0,151),(13475,1278397,'Enterprise Crew Member (uncredited)',0,152),(13475,121905,'Shuttle Pilot (uncredited)',0,154),(13475,1278398,'Cadet Officer (uncredited)',0,155),(13475,1278399,'Romulan Engineer (uncredited)',0,156),(13475,980805,'Klingon Agitator (uncredited)',2,157),(13475,203279,'Starfleet Security Officer (uncredited)',0,158),(13475,1235227,'Klingon Prison Guard (uncredited)',2,159),(13475,1278508,'Federation Captain Cartwright (uncredited)',0,160),(13475,1278509,'Cadet at Trial (uncredited)',0,161),(13475,1278514,'Starfleet Cadet (uncredited)',0,162),(13475,1278515,'Enterprise Crewman (uncredited)',2,163),(13475,1202555,'Vulcan Council Member (uncredited)',0,164),(13475,1278516,'Star Fleet Cadet (uncredited)',0,165),(13475,3033,'Romulan (voice) (uncredited)',2,166),(13475,1278521,'Starfleet Cadet (uncredited)',0,167),(13475,64451,'Enterprise Computer (voice) (uncredited)',0,168),(13475,52762,'Romulan Officer',2,169),(13475,130733,'Flight Officer',1,170),(10048,6164,'Lt. Ben Gannon',1,0),(10048,10860,'Lt. Kara Wade',1,1),(10048,134,'Lt. Henry Purcell',2,2),(10048,9880,'Capt. George Cummings',2,3),(10048,12206,'Dr. Keith Orbit',2,4),(10048,3977,'Capt. Dick Marshfield',2,5),(10048,21042,'Tim',2,6),(10048,62487,'Naval Controller',0,7),(10048,62489,'USS Abraham Lincoln Sailor',0,8),(10048,62488,'Master at Arms',0,9),(10048,62486,'Lt. Aaron Shaftsbury',2,10),(10048,62490,'USS Abraham Lincoln Sailor',0,11),(10048,62491,'USS Abraham Lincoln Sailor',0,12),(10048,29095,'Executive Officer',2,13),(10048,41785,'Black Ops Leader',2,14),(10048,10367,'Black Ops Doctor',2,15),(10048,62492,'USS Abraham Lincoln Sailor',0,16),(10048,62493,'Commander 3rd Fleet',0,17),(10048,62495,'Rangoon Terrorist',0,18),(10048,62494,'Korean Girl',0,19),(10048,1291386,'Henry\'s Date',1,20),(10048,1232126,'Dr. Orbit\'s Secretary',1,21),(10048,1530759,'Naval Controller',2,22),(13183,50463,'Laurie Jupiter / Silk Spectre II',1,0),(13183,8289,'Jon Osterman / Dr. Manhattan',2,1),(13183,17832,'Sally Jupiter / Silk Spectre',1,2),(13183,47296,'Edward Blake / The Comedian',2,4),(13183,17178,'Dan Dreiberg / Nite Owl II',2,5),(13183,17183,'Walter Kovacs / Rorschach',2,6),(13183,1247,'Adrian Veidt / Ozymandias',2,7),(13183,40009,'Edgar Jacobi / Moloch the Mystic',2,8),(13183,230,'Hollis Mason / Nite Owl',2,9),(13183,79343,'Janey Slater',1,10),(13183,42708,'Wally Weaver',2,11),(13183,3909,'John McLaughlin',2,12),(13183,79344,'Pat Buchanan',0,13),(13183,79345,'Eleanor Clift',1,14),(13183,79346,'Doug Roth',2,15),(13183,37432,'Richard Nixon',2,16),(13183,21091,'Detective Fine',2,17),(13183,56749,'Detective Gallagher',2,18),(13183,46930,'Henry Kissinger',2,19),(13183,60612,'Norad General #1',2,20),(13183,66661,'Ted Koppel',2,21),(13183,20180,'Janet Black',1,22),(13183,79347,'Dumb Thug',0,23),(13183,79348,'Vietnamese Girl',0,24),(13183,79349,'Lee Iacocca',2,25),(13183,1330755,'Foreign Newscaster',1,26),(13183,79350,'Foreign Newscaster',0,27),(13183,79351,'Foreign Newscaster',0,28),(13183,79352,'Truman Capote',0,29),(13183,79353,'John with Rorschach\'s Mother',0,30),(13183,26089,'NORAD General',2,31),(13183,583061,'Paul Klein',2,32),(13183,80353,'Larry Culpeper',2,33),(13183,13645,'Big Figure',2,34),(13183,1235562,'Child Murderer',0,35),(27576,11701,'Evelyn Salt',1,0),(27576,23626,'Theodore Winter',2,1),(27576,5294,'Darryl Peabody',2,2),(27576,7107,'Oleg Vasilyevich Orlov',2,3),(27576,6091,'Mike Krause',0,4),(27576,1116905,'Young Orlov',0,5),(27576,44826,'US President Howard Lewis',2,6),(27576,6861,'Secretary of Defense',2,7),(27576,53573,'Russian President Matveyev',2,8),(27576,118377,'Young Salt',1,9),(27576,74541,'Shnaider',2,10),(27576,118384,'Francis',2,11),(27576,118374,'Todd Bottoms',2,12),(27576,82885,'Zoe Kinnally',1,13),(27576,118372,'Cleo',1,14),(27576,10379,'3-Star General',2,15),(27576,118380,'Precision Driver',0,16),(27576,118403,'CIA / SWAT team',0,17),(27576,118389,'Russian Thug #1',0,18),(27576,118383,'Lead Technician',0,19),(27576,118385,'Corporal Davis - U.S. Military',0,20),(27576,118395,'CIA Agent',0,21),(27576,118386,'The Ritual Matchmaker',0,22),(27576,78404,'Paul Tracey',2,23),(27576,118387,'Cop escorting Evelyn Salt from Bombing',0,24),(27576,28046,'CIA Director Medford',1,25),(27576,118388,'Portico Checkpoint Agent',1,26),(27576,118390,'Russian Thug #3',0,27),(27576,118391,'Security Officer',0,28),(27576,118392,'Mourning Granddaughter',0,29),(27576,118393,'Joe Oates',0,30),(27576,118394,'Camera man',0,31),(27576,118397,'Coms Agent / Radio Op',0,32),(27576,118398,'202. SS Bunker Tech #3',0,33),(27576,83242,'Basayev',2,34),(27576,118399,'Secret service agent',0,35),(27576,118400,'Russian Reporter',0,36),(27576,118401,'7-year-old Schnaider',0,37),(27576,118402,'12-year-old Schnaider',0,38),(27576,1358758,'Military Aide',0,39),(27576,110742,'Front Deskwoman',1,40),(27576,1610301,'Orlov Lieutenant (uncredited)',2,41),(17578,478,'Tintin (voice)',2,0),(17578,1333,'Captain Haddock / Sir Francis Haddock (voice)',2,1),(17578,8784,'Sakharine / Red Rackham (voice)',2,2),(17578,11109,'Thomson (voice)',2,3),(17578,11108,'Inspector Thompson (voice)',2,4),(17578,2130,'Pilot (voice)',2,5),(17578,1711,'Ernie (voice)',2,6),(17578,2220,'Lt. Delcourt (voice)',2,7),(17578,13014,'Silk (voice)',2,8),(17578,1670,'Allan (voice)',2,9),(17578,23789,'Pedro (voice)',2,10),(17578,104802,'Co-Pilot (voice)',2,11),(17578,6696,'Afgar Outpost Soldier (voice)',2,12),(17578,51100,'Ben Salaad (voice)',0,13),(17578,42291,'Lady in the Phonebox / Old Lady',1,14),(17578,1083807,'Barnaby (voice)',0,15),(10567,61962,'Aladar (voice)',2,0),(10567,1981,'Plio (voice)',1,1),(10567,15531,'Yar (voice)',2,2),(10567,7133,'Zini (voice)',2,3),(10567,17265,'Suri (voice)',1,4),(10567,67392,'Kron (voice)',2,5),(10567,25654,'Neera (voice)',1,6),(10567,154693,'Bruton (voice)',2,7),(10567,23709,'Baylene (voice)',1,8),(10567,56950,'Eema (voice)',1,9),(18823,65731,'Perseus',2,0),(18823,3896,'Zeus',2,1),(18823,5469,'Hades',2,2),(18823,59620,'Io',1,3),(18823,973,'Calibos / Acrisius',2,4),(18823,28109,'Andromeda',1,5),(18823,114018,'Danae',1,6),(18823,1019,'Draco',2,7),(18823,114019,'Apollo',2,8),(18823,59592,'Athena',1,9),(18823,15498,'Solon',2,10),(18823,37168,'Ixas',2,11),(18823,766,'Ozal',2,12),(18823,78225,'Kucuk',0,13),(18823,946696,'Sheikh Sulieman',2,14),(18823,9831,'Kepheus',2,15),(18823,6416,'Cassiopeia',1,16),(18823,103351,'Prokopion',2,17),(18823,4935,'Spyros',2,18),(18823,4513,'Marmara',1,19),(18823,3075,'Bello',2,20),(18823,115150,'Peshet',1,21),(18823,2957,'Hermes',2,22),(18823,6413,'Poseidon',2,23),(18823,231272,'Harbourmaster',0,24),(18823,45840,'Citizen (Argos)',0,25),(18823,62498,'Kepheus\' General',2,26),(18823,58778,'Hera',1,27),(18823,21817,'Hestia',0,28),(18823,17337,'Artemis',1,29),(18823,1060671,'Aphrodite',1,30),(18823,1105030,'Medusa',0,31),(18823,181045,'Demeter',0,32),(18823,3292,'Eusebios',2,33),(18823,969143,'Aged Cassiopeia',0,34),(10996,521,'Stuart Little (voice)',2,0),(10996,16935,'Mrs. Eleanor Little',1,1),(10996,41419,'Mr. Frederick Little',2,2),(10996,67778,'George Little',2,3),(10996,122552,'Martha Little',1,4),(10996,122553,'Martha Little',1,5),(10996,78729,'Snowbell (voice)',2,6),(10996,29369,'Margalo the Bird (voice)',1,7),(10996,4512,'The Evil Falcon (voice)',2,8),(10996,18324,'Monty the Alley-Cat (voice)',2,9),(10996,60278,'Teacher',1,11),(10996,120256,'Irwin (as Kevin Johnson Olson)',0,12),(10996,46074,'Additional Voices (voice)',1,13),(10996,62646,'Will, George\'s Friend',2,14),(12100,2963,'Sergeant Joe Enders',2,0),(12100,33527,'Private Ben Yahzee',2,1),(12100,53,'Sergeant Eric Hjelmstad',2,2),(12100,11315,'Corporal Charles Rogers',2,3),(12100,103,'Pappas',2,4),(12100,11355,'Major Mellitz',2,5),(12100,2224,'Sergeant Peter Henderson',2,6),(12100,1518,'Rita Swelton',1,7),(12100,15318,'Kittring',2,8),(12100,26291,'Private Nellie',2,9),(13700,46393,'Maggie (voice)',1,0),(13700,5309,'Mrs. Caloway (voice)',1,1),(13700,7906,'Grace (voice)',1,2),(13700,884,'Wesley (voice)',2,3),(13700,27237,'Rusty (voice)',2,4),(13700,9777,'Buck (voice)',2,5),(13700,1811,'Alameda Slim (voice)',2,6),(13700,119776,'Junior (voice)',2,7),(13700,43800,'Rico (voice)',2,8),(13700,1458592,'The Willie Brothers (voice)',0,9),(13700,59196,'Jeb (voice)',2,10),(13700,18262,'Sheriff (voice)',2,11),(13700,41730,'Pearl Gesner (voice)',1,12),(13700,61964,'Audrey (voice)',1,13),(13700,62846,'Ollie (voice)',2,14),(13700,12078,'Piggy (voice)',2,15),(13700,1582228,'Piggy (voice)',0,16),(13700,1748493,'Piggy (voice)',0,17),(13700,9224,'Larry (voice)',2,18),(13700,69791,'Lucky Jack (voice)',0,19),(13700,61423,'Barry & Bob (voice)',2,20),(10204,18897,'Passepartout / Lau Xing',2,0),(10204,4581,'Phileas Fogg',2,1),(10204,17522,'Monique Laroche',1,2),(10204,64160,'Jean Michel',2,3),(10204,388,'Lord Kelvin',2,4),(10204,3547,'Colonel Kitchener',2,5),(10204,27822,'Lord Salisbury',2,6),(10204,27660,'Lord Rhodes',2,7),(10204,23429,'Mr. Sutton',2,8),(10204,62831,'Policeman',2,9),(10204,13633,'Steamer Captain',2,10),(10204,8534,'Queen Victoria',1,11),(10204,64436,'Bak Mei',2,12),(10204,1100,'Prince Hapi',2,13),(10204,21045,'Female Agent',1,14),(10204,62410,'Wong Fei Hung',2,15),(10204,57831,'General Fang',0,16),(10204,158079,'Balloon Man',0,17),(10204,8930,'Grizzled Sergeant',0,18),(10204,203194,'Stunning Woman',1,19),(10204,955709,'Belgian Dignitary',0,20),(10204,1125,'Inspector Fix',2,21),(10204,20824,'Vincent van Gogh',2,22),(10204,60949,'San Francisco Hobo',2,23),(10204,887,'Wilbur Wright',2,24),(10204,36422,'Orville Wright',2,25),(10588,12073,'The Cat',2,0),(10588,501,'Sally Walden',1,1),(10588,35654,'Conrad Walden',2,2),(10588,11164,'Joan Walden',1,3),(10588,7447,'Larry Quinn',2,4),(10588,59401,'Mrs. Kwan',1,5),(10588,52601,'Mr. Humberfloob / Voice of the Fish',2,6),(10588,135532,'Thing One',1,7),(10588,1056728,'Thing One',0,8),(10588,982705,'Thing Two',1,9),(10588,168388,'Thing Two',0,10),(10137,521,'Stuart Little (voice)',2,0),(10137,16935,'Mrs. Eleanor Little',1,1),(10137,41419,'Mr. Fredrick Little',2,2),(10137,67778,'George Little',2,3),(10137,78729,'Snowbell (voice)',2,4),(10137,4004,'Crenshaw Little',2,5),(10137,35517,'Tina Little',1,6),(10137,94008,'Beatrice Little',1,7),(10137,1535,'Edgar Little',2,8),(10137,59956,'Estelle Little',1,9),(10137,14833,'Spencer Little',2,10),(10137,9046,'Smokey (voice)',2,11),(10137,18324,'Monty (voice)',2,12),(10137,9257,'Reginald Stout (voice)',2,13),(10137,7906,'Camille Stout (voice)',1,14),(10137,58563,'Red (voice)',2,15),(10137,1219157,'Det. Phil Allen / Lucky (voice)',0,16),(10137,11806,'Mrs. Keeper',1,17),(10198,15563,'Tiana (voice)',1,0),(10198,66252,'Prince Naveen (voice)',2,1),(10198,65827,'Dr. Facilier (voice)',2,2),(10198,110884,'Louis (voice)',2,3),(10198,110885,'Charlotte (voice)',1,4),(10198,12077,'Ray (voice)',2,5),(10198,163711,'Lawrence (voice)',2,6),(10198,15899,'Mama Odie (voice)',1,7),(10198,13309,'Eudora (voice)',1,8),(10198,18288,'James (voice)',2,9),(10198,1230,'Big Daddy La Bouff (voice)',2,10),(10198,1615558,'Young Tiana (voice)',1,11),(10198,1615559,'Young Charlotte (voice)',1,12),(10198,52885,'Reggie (voice)',2,13),(10198,227439,'Darnell (voice)',2,14),(10198,1340669,'Two Fingers (voice)',0,15),(10198,1001821,'Mr. Henry Fenner (voice)',0,16),(10198,35219,'Mr. Harvey Fenner (voice)',2,17),(10198,54430,'Buford (voice)',2,18),(10198,183758,'Marlon the Gator (voice)',2,19),(10198,24362,'Ian the Gator (voice)',2,20),(10198,7885,'Cousin Randy (voice)',2,21),(10198,5287,'Louis\' Trumpet Playing (voice)',2,22),(24113,6449,'Porter Stoddard',2,0),(24113,3092,'Ellie Stoddard',1,1),(24113,18892,'Mona Morris',1,2),(24113,52865,'Griffin Morris',2,3),(24113,1533,'Eugenie Clayborne',1,4),(24113,2630,'Alex',1,5),(24113,40279,'Auburn',1,6),(24113,10017,'Mr. Clayborne',2,7),(24113,2299,'Tom Stoddard',2,8),(24113,15012,'Holly',0,9),(11322,3894,'Melvin Purvis',2,0),(11322,85,'John Dillinger',2,1),(11322,1771,'Alvin Karpis',2,2),(11322,8289,'J. Edgar Hoover',2,3),(11322,8293,'Billie Frechette',1,4),(11322,28660,'Anna Patzke',1,5),(11322,38673,'Pretty Boy Floyd',2,6),(11322,22290,'Polly Hamilton',1,7),(11322,17941,'Gilbert Catena',2,8),(11322,32747,'Charles Winstead',2,9),(11322,36662,'Carol Slayman',1,10),(11322,785,'Walter Dietrich',2,11),(11322,1371,'Harry \'Pete\' Pierpont',2,12),(11322,36091,'Charles Makley',2,13),(11322,76512,'\'Red\' Hamilton',2,14),(11322,1226707,'Turnkey',2,15),(11322,10822,'Homer Van Meter',2,16),(11322,1052875,'Ed Shouse',2,17),(11322,1052876,'Guard Dainard',2,18),(11322,83402,'Jim Leslie',2,19),(11322,1052877,'Earl Adams',2,20),(11322,1052878,'Viola Norris',1,21),(11322,1052879,'Toddler on Farm',2,22),(11322,82042,'Clarence Hurt',0,23),(11322,15268,'Anna Sage',0,24),(11322,1115,'Baby Face Nelson',2,25),(11322,1018310,'Farmer',2,26),(11322,51792,'Agent Carter Baum',2,27),(11322,1395525,'Agent Warren Barton',0,28),(11322,1953,'Harry Berman',2,29),(11322,1217571,'Martin Zarkovich',2,30),(11322,1624910,'Grover Weyland',2,31),(11322,1624925,'Tellers',2,32),(11322,1624928,'Angry Cop',2,33),(11322,1624934,'Ella Natasky',1,34),(11322,121718,'Frank Nitti',2,35),(11322,40543,'Phil D\'Andrea',2,36),(11322,206483,'Agent Sam Cowley',2,37),(11322,134787,'Agent Julius Rice',2,38),(11322,52647,'Agent John Madala',2,39),(11322,35025,'Agent William Rorer',0,40),(11322,1188193,'Agent Hugh Clegg',0,41),(11322,17193,'Agent Harold Reinecke',2,42),(11322,143714,'Doris Rogers',1,43),(11322,137386,'Torch Singer',1,44),(11322,1012144,'Helen Gillis',1,45),(11322,3127,'Sheriff Lillian Holley',1,46),(11322,1624948,'Emil Wanatka',2,47),(11322,1624949,'Edward Saager',2,48),(18487,5292,'Walter Garber',2,0),(18487,8891,'Ryder',2,1),(18487,40481,'Phil Ramos',2,2),(18487,84318,'Bashkim',2,3),(18487,1241,'Camonetti',2,4),(18487,4691,'Mayor',2,5),(18487,18313,'John Johnson',2,6),(18487,72985,'Delgado',2,7),(18487,17194,'ESU Captain',2,8),(18487,1357037,'George\'s Girlfriend',0,9),(18487,142294,'Mr. Thomas',2,10),(18487,21179,'Deputy Mayor LaSalle',2,11),(18487,115972,'George',0,12),(18487,81683,'Wallace',2,13),(18487,1517868,'Mom',1,14),(18487,115977,'8-Year-Old Boy',0,15),(18487,96228,'Jerry Pollard',2,16),(18487,1214060,'Regina',0,17),(18487,53923,'Therese',1,18),(18487,100703,'Sniper',2,19),(18487,1676936,'Federal Reserve Supervisor',2,20),(18487,1838353,'ESU Guy',2,21),(27581,23659,'Detective Allen Gamble',2,0),(27581,13240,'Detective Terry Hoitz',2,1),(27581,8170,'Sheila Gamble',1,2),(27581,2231,'P.K. Highsmith',2,3),(27581,18918,'Christopher Danson',2,4),(27581,2232,'Captain Gene Mauch',2,5),(27581,224197,'Hal',2,6),(27581,56614,'Roger Wesley',2,7),(27581,932748,'Rasta',2,8),(27581,84459,'Rasta',0,9),(27581,4581,'David Ershon',2,10),(27581,71403,'Martin',2,11),(27581,87822,'Fosse',2,12),(27581,21127,'Jimmy',2,13),(27581,15110,'Brooke Shields',1,14),(27581,8256,'Pamela Boardman',1,15),(27581,464993,'Douglas',2,16),(27581,55710,'Dirty Mike',2,17),(27581,222121,'Beaman\'s Assistant',2,18),(27581,170635,'Don Beaman',2,19),(27581,80595,'Officer Watts',2,20),(27581,97406,'Christinith',1,21),(27581,41662,'Francine',1,22),(27581,21411,'Narrator (voice)',2,23),(27581,52117,'Gallery Owner',2,24),(27581,111678,'Gallery Attendee',2,25),(27581,147445,'Himself',2,26),(27581,4810,'Herself',1,27),(27581,56903,'Himself',2,28),(10545,3999,'Quasimodo (voice)',2,0),(10545,3416,'Esmeralda (voice)',1,1),(10545,65598,'Frollo (voice)',2,2),(10545,8945,'Phoebus (voice)',2,3),(10545,72250,'Clopin (voice)',0,4),(10545,20749,'Gargoyle Victor (voice)',0,5),(10545,1206,'Gargoyle Hugo (voice)',2,6),(10545,20624,'Gargoyle Laverne (voice)',1,7),(10545,28010,'Archdeacon (voice)',2,8),(10545,30695,'Quasimodo\'s Mother (voice)',1,9),(10545,35219,'Brutish Guard (voice)',2,10),(10545,1022161,'Esmeralda (singing voice)',1,11),(10545,12077,'Guards & Gypsies (voice)',2,12),(10545,34398,'Oafish Guard (voice)',2,13),(10545,61968,'Guards & Gypsies (voice)',2,14),(10545,62047,'The Old Heretic (voice)',2,15),(10545,15831,'Baby Bird (voice)',2,16),(11688,60950,'Kuzco (voice)',2,0),(11688,1230,'Patcha (voice)',2,2),(11688,70243,'Yzma (voice)',1,4),(11688,9657,'Kronk (voice)',2,6),(11688,61980,'Chicha, Pacha\'s Wife (voice)',1,8),(11688,1381716,'Chaca, Pacha\'s Daughter (voice)',0,9),(11688,102320,'Tipo, Pacha\'s Son (voice)',0,10),(11688,16842,'Stephen J. Anderson',2,12),(11688,78317,'Bucky the Squirrel',2,13),(11688,91024,'Waitress',1,14),(11688,5247,'Old Man',2,15),(16523,80576,'Max',0,0),(16523,2229,'Connie',1,1),(16523,54470,'KW (voice)',1,2),(16523,4691,'Carol (voice)',2,3),(16523,11514,'Judith (voice)',0,4),(16523,2178,'Ira (voice)',2,5),(16523,103,'Connie\'s boyfriend',2,6),(16523,113495,'Claire',0,7),(16523,187406,'Claire\'s Friend',0,9),(16523,187281,'Claire\'s Friend',0,10),(16523,187494,'Teacher',0,11),(16523,17142,'Alexander (voice)',2,12),(16523,1716,'The Bull (voice)',0,13),(16523,2955,'Douglas (voice)',2,14),(16523,1213279,'Claire\'s Friend',0,15),(16523,1575431,'Claire\'s Friend',0,16),(16523,5953,'Bob (voice) / Terry (voice)',2,17),(18162,23659,'Dr. Rick Marshall',2,0),(18162,58016,'Holly',1,1),(18162,62862,'Will Stanton',2,2),(18162,62863,'Chaka',2,3),(18162,141525,'Himself',2,4),(18162,75633,'Tar Pits Kid',2,5),(18162,141526,'Tar Pits Kid',1,6),(18162,141527,'Tar Pits Kid',0,7),(18162,141528,'Tar Pits Kid',0,8),(18162,54728,'Teacher',2,9),(18162,141529,'Teenager',0,10),(18162,141530,'Teenager',2,11),(18162,141531,'Teenager',0,12),(18162,141532,'Teenager',0,13),(18162,560159,'Enik',0,14),(18162,1287088,'Sleestak',0,15),(18162,934289,'Tar Pits Kid (uncredited)',1,16),(18162,236302,'Tar Pits Kid (uncredited)',2,17),(10214,6213,'Tim Avery',0,0),(10214,10697,'Loki',2,1),(10214,54826,'Tonya Avery',1,2),(10214,53493,'Jorge',2,3),(10214,3214,'Daniel Moss',2,4),(10214,382,'Odin',2,5),(10214,131667,'Dr. Arthur Neuman',2,6),(11692,776,'Pluto Nash',2,0),(11692,1811,'Bruno',2,1),(11692,5916,'Dina Lake',1,2),(11692,532,'Mogan',2,3),(11692,12217,'Tony Francis',2,4),(11692,40481,'Felix Laranga',2,5),(11692,1039,'Rowland',2,6),(11692,4521,'Gino',2,7),(11692,2230,'Flura Nash',1,8),(11692,8930,'James',0,9),(11692,7796,'Dr. Mona Zimmer',1,10),(11692,833,'Tommy',2,11),(11692,1589963,'Filomina Francis',1,12),(11692,1589970,'Gina Francis',1,13),(22972,1892,'Roy Miller',2,0),(22972,17141,'Clark Poundstone',2,1),(22972,2039,'Martin Brown',2,2),(22972,39388,'Lawrie Dayne',1,3),(22972,11355,'Maj. Briggs',2,4),(22972,53480,'Freddy',2,5),(22972,41316,'General Al Rawi',2,6),(22972,20562,'Col. Lyons',2,7),(22972,109670,'Seyyed Hamza',0,8),(22972,21710,'Colonel Bethel',2,9),(22972,122281,'Wilkins',2,10),(22972,122279,'Al Rawi Bodyguard',0,11),(22972,122280,'Ayad Hamza',2,12),(22972,93131,'Perry',2,13),(22972,122282,'Conway',2,14),(22972,18995,'Met-D',0,15),(22972,122283,'Met-D',0,16),(22972,122285,'Met-D',0,17),(22972,122286,'Met-D',0,18),(22972,122287,'Met-D',0,19),(22972,122288,'Met-D',0,20),(22972,1426429,'Met-D',2,21),(22972,122289,'Met-D',2,22),(22972,122290,'Met-D',0,23),(22972,122291,'Met-D',0,24),(22972,122292,'Met-D',0,25),(22972,81672,'Met-D',2,26),(22972,122293,'Infantery Sergeant',0,27),(22972,122294,'Soldier at WMD Site',2,28),(22972,73710,'Ahmed Zubaidi',0,29),(22972,122295,'Zubaidi\'s Aide',0,30),(22972,122296,'Poundstone Aide',0,31),(22972,122297,'JMOC Tech',0,32),(22972,117437,'Military Intel 2 Star',0,33),(22972,122299,'Colonel Jonathan Vaught',0,34),(22972,122300,'Gonzales',0,35),(22972,36901,'Brown\'s Aide',2,36),(22972,20562,'Colonel Lyons',2,37),(22972,122302,'General at VTC',0,38),(22972,122303,'Bureaucrat at VTC',0,39),(22972,122304,'Senior CIA Man at VTC',0,40),(22972,122305,'Hawkish Iraqi',0,42),(22972,122306,'Tahir al-Malik',2,43),(22972,122307,'Quasim',0,44),(22972,122308,'Hawkish Aide',0,45),(22972,105980,'Iraqi Officer',0,46),(22972,122309,'Mystery Man',0,47),(22972,122310,'Qasim Aide',0,48),(22972,122311,'Sanaa',0,49),(22972,122312,'Seyyed\'s Housekeeper',0,50),(22972,122313,'Seyyed\'s Son',0,51),(22972,122314,'Seyyed\'s Son',0,52),(22972,122315,'Seyyed\'s Son',0,53),(22972,122316,'Seyyed\'s Daughter',0,54),(22972,122317,'TF221s',0,55),(22972,122318,'TF221s',0,56),(22972,122319,'TF221s',0,57),(22972,122321,'TF221s',0,58),(22972,122322,'TF221s',0,59),(22972,122323,'TF221s',0,60),(22972,122324,'TF221s',0,61),(22972,122325,'TF221s',0,62),(22972,122327,'TF221s',0,63),(22972,122328,'TF221s',0,64),(22972,122329,'Camp Cropper Tech',0,65),(22972,122330,'Translator',0,66),(22972,122331,'Camp Cropper Guards',0,67),(22972,122332,'Camp Cropper Guards',0,68),(22972,122333,'Camp Cropper Guards',0,69),(22972,122334,'Camp Cropper Guards',0,70),(22972,122335,'Camp Cropper Wardens',0,71),(22972,122336,'Camp Cropper Wardens',0,72),(22972,122337,'Iraqi Prisoner',0,73),(22972,122338,'Righteous Ali',2,74),(22972,122339,'CIA Techs',0,75),(22972,122341,'CIA Techs',0,76),(22972,113235,'CIA Techs',0,77),(22972,122342,'Special Forces Tech',0,78),(22972,122343,'Alpha Leader 1',0,79),(22972,122344,'CPA Presser',0,80),(22972,122345,'Chopper Comms Commander',0,81),(22972,122346,'Chopper Comms Tech',0,82),(22972,122347,'Convoy Commander',0,83),(22972,122349,'Republican Palace Reporter',0,84),(22972,122350,'Zubaide Conference Speaker #1',0,85),(22972,122351,'Zubaide Conference Speaker #2',0,86),(22972,122352,'Zubaide Conference Speaker #3',0,87),(22972,122353,'Zubaide Conference Speaker #4',0,88),(29193,67773,'Jimmy Dell',2,0),(29193,55152,'Joe Ross',2,1),(29193,856,'Mr. Klein',2,2),(29193,27267,'Susan Ricci',1,3),(29193,10743,'George Lang',2,4),(29193,7427,'Pat McCune',1,5),(10501,11181,'Miguel (voice)',2,0),(10501,8945,'Tulio (voice)',2,1),(10501,4810,'Chel (voice)',1,2),(10501,23346,'Tzekel-Kan (voice)',2,3),(10501,587,'Chief (voice)',2,4),(10501,12077,'Cortes (voice)',2,5),(10501,15831,'Altivo (voice)',2,6),(10501,2144,'Zaragoza (voice)',2,7),(10501,11370,'Narrator (voice)',2,8),(10501,1552486,'Acolyte (voice)',0,9),(10501,1718935,'Kid #1 (voice)',0,10),(10501,1718936,'Kid #2 (voice)',0,11),(10733,6065,'Sam Houston',2,0),(10733,879,'Davy Crockett',2,1),(10733,12261,'James Bowie',2,2),(10733,17178,'William Travis',2,3),(10733,263,'Antonio Lopez de Santa Ana',2,4),(10733,25933,'Rosanna Travis',1,5),(10733,31384,'Juan Seguin',2,6),(10733,15374,'Sgt. William Ward',2,7),(10733,88059,'Colonel Green Jameson',2,8),(10733,46772,'James Bonham',2,9),(10733,2846,'Albert Grimes',0,10),(10733,156165,'Micajah Autry',2,11),(10733,177905,'Mial Scurlock',2,12),(10733,1325915,'Captain Almeron Dickinson',0,13),(10733,978608,'Susanna Dickinson',1,14),(10733,80967,'Private Gregorio Esparza',0,15),(10733,32239,'Lieutenant John Forsythe',2,16),(10733,1328408,'Juana',0,17),(10733,36637,'Lieutenant Colonel J.C. Neill',2,18),(10733,180524,'Stunning Tejana',0,19),(32657,33235,'Percy Jackson',2,0),(32657,53336,'Grover Underwood',2,1),(32657,109513,'Annabeth Chase',1,2),(32657,105727,'Luke Castellan',2,3),(32657,48,'Zeus',2,4),(32657,517,'Mr. Brunner / Chiron',2,5),(32657,4581,'Hades',2,6),(32657,5916,'Persephone',1,7),(32657,25972,'Athena',1,8),(32657,2229,'Sally Jackson',1,9),(32657,9013,'Poseidon',2,10),(32657,532,'Gabe Ugliano',2,11),(32657,139,'Medusa',1,12),(32657,2320,'Ferryman',2,13),(32657,209196,'Aphrodite Girl',1,14),(32657,999790,'Aphrodite Girl',1,15),(32657,21430,'Lotus Land Waitress',1,16),(32657,1218928,'Hera',1,17),(32657,140114,'Aphrodite Girl',1,18),(32657,142402,'Mrs. Dodds / Fury',1,19),(32657,971237,'Lotus Land Dancer',2,20),(32657,25946,'Hysterical Woman',1,21),(32657,208230,'Aphrodite Girl',1,22),(32657,59244,'Aphrodite Girl',1,23),(32657,168554,'Aphrodite Girl',0,24),(32657,113861,'Aphrodite Girl',1,25),(32657,1507597,'Aphrodite Girl',0,26),(32657,127127,'Aphrodite Girl',1,27),(32657,1294968,'Lotus Land Dancer',1,28),(32657,1507598,'Lotus Land Bellhop',0,29),(32657,27775,'Lotus Land Waitress',1,30),(32657,204975,'Lotus Land Waitress',1,31),(32657,1507599,'Lotus Land Waitress',0,32),(32657,76008,'Seventies Kid - Casino',0,33),(32657,86268,'Aphrodite',1,34),(32657,1507600,'Apollo',0,35),(32657,67978,'Artemis',1,36),(32657,52396,'Demeter',1,37),(32657,43263,'Hephaestus',2,38),(32657,79149,'Hermes',2,39),(32657,1369075,'Dionysus',2,40),(32657,1507601,'Grover Girl',0,41),(32657,1507602,'Grover Girl',0,42),(32657,1507603,'Grover Girl',0,43),(32657,1507604,'Grover Girl',0,44),(32657,209210,'Grover Girl',0,45),(32657,82791,'Cute Girl',1,46),(32657,1507605,'Nymph Warrior',1,47),(32657,387183,'Pretty Girl #1',1,48),(32657,543990,'Pretty Girl #2',1,49),(32657,1507606,'WGHP News Anchor - Video',0,50),(32657,1507607,'Field News Reporter',0,51),(32657,1511127,'Percy\'s Classmate',1,52),(32657,1432102,'Poker Buddy',0,53),(32657,1678612,'Poker Buddy',0,54),(32657,1187262,'Poker Buddy',0,55),(32657,171584,'Old Fisherman',0,56),(32657,153849,'Maid at Motel',0,57),(32657,144852,'Smart Ass Kid',2,58),(32657,1678622,'Museum Tour Guide',0,59),(32657,1666304,'Museum Employee',0,60),(32657,118002,'Parthenon Janitor',0,61),(32657,55788,'Parthenon Janitor',2,62),(32657,1678624,'Parthenon Janitor',0,63),(32657,1678625,'Parthenon Janitor',0,64),(32657,1678626,'Parthenon Janitor',0,65),(32657,987572,'50\'s Tough',2,66),(32657,1678716,'Son of Ares',0,67),(32657,141787,'Son of Ares',2,68),(32657,1678717,'Son of Ares',0,69),(32657,1678977,'Son of Ares',0,70),(32657,184842,'Son of Ares',2,71),(32657,939589,'College Buddy',2,72),(32657,1678979,'College Buddy',0,73),(32657,119151,'College Buddy',2,74),(32657,1678980,'Cute Girlfriend',0,75),(32657,1265065,'Boyfriend',0,76),(32657,1678983,'Cook',0,77),(32657,92078,'Waitress',1,78),(32657,591210,'Waitress with Cleaver',0,79),(32657,1236411,'Screaming Diner',0,80),(32657,1678985,'Stuffy Croupier',0,81),(32657,1519437,'Warrior',0,82),(32657,1476624,'Lotus Land Dancer',0,83),(32657,62133,'Lotus Land Dancer',0,84),(32657,1397694,'Lotus Land Dancer',0,85),(32657,1398165,'Lotus Land Dancer',0,86),(32657,1288837,'Lotus Land Dancer',1,87),(32657,1354722,'Lotus Land Dancer',0,88),(32657,143336,'Lotus Land Dancer',0,89),(32657,1398169,'Lotus Land Dancer',0,90),(22794,19278,'Flint Lockwood (voice)',2,0),(22794,1772,'Sam Sparks (voice)',1,1),(22794,3085,'Tim Lockwood (voice)',2,2),(22794,16619,'Earl Devereaux (voice)',2,3),(22794,4589,'Manny (voice)',2,4),(22794,11357,'Mayor Shelbourne (voice)',2,5),(22794,41686,'Steve (voice)',2,6),(22794,111875,'Patrick Patrickson (voice)',2,7),(22794,16858,'Fran Lockwood (voice)',1,8),(22794,62861,'\'Baby\' Brent (voice)',2,9),(22794,75633,'Cal Devereaux (voice)',2,10),(22794,62831,'Joe Towne (voice)',2,11),(22794,968412,'Young Flint (voice)',2,12),(22794,154693,'Rufus (voice)',2,13),(22794,470529,'Regina Devereaux (voice)',0,14),(22794,43776,'Weather News Network Producer (voice)',2,15),(22794,448309,'Flint\'s Teacher (voice)',1,16),(22794,210877,'(voice)',1,17),(22794,24358,'(voice)',1,18),(22794,52868,'(voice)',2,19),(22794,78317,'(voice)',2,20),(22794,12095,'(voice)',2,21),(22794,155639,'(voice)',0,22),(22794,167295,'(voice)',0,23),(22794,1443837,'(voice)',0,24),(22794,86006,'(voice)',2,25),(22794,84495,'(voice)',2,26),(22794,1077782,'(voice) (as Gary Hecker)',2,27),(22794,107446,'(voice)',0,28),(22794,214701,'(voice)',0,29),(22794,52699,'(voice)',2,30),(22794,111466,'(voice)',0,31),(22794,84493,'(voice)',0,32),(22794,155267,'(voice)',2,33),(22794,35159,'(voice)',1,34),(22794,157626,'(voice)',2,35),(22794,946462,'(voice)',1,36),(22794,204131,'(voice)',2,37),(22794,1281596,'(voice)',0,38),(22794,587697,'(voice)',0,39),(22794,42160,'(voice)',1,40),(10674,776,'Mushu (voice)',2,0),(10674,18897,'[Singing voice]',2,1),(10674,21702,'Mulan (voice)',1,2),(10674,15838,'Mulan (singing voice)',0,3),(10674,15098,'Grandmother Fa (voice)',1,4),(10674,10345,'Fa Zhou (voice)',2,5),(10674,51754,'Fa Li (voice)',1,6),(10674,20904,'Chi Fu (voice)',2,7),(10674,14592,'Shang (voice)',2,8),(10674,140567,'Shang (singing voice)',2,9),(10674,23915,'The Emperor (voice)',2,10),(10674,7420,'Yao (voice)',2,11),(10674,187678,'Grandmother Fa (singing voice)',1,12),(10674,1752,'First Ancestor (voice)',0,13),(10674,71858,'Chien-Po (voice)',2,14),(10674,16183,'Ling (voice)',2,15),(10674,15860,'Shan-Yu (voice)',2,16),(10674,4995,'General Li (voice)',2,17),(10674,15831,'Khan / Cri-Kee (voice)',2,18),(10674,6199,'The Matchmaker (voice)',1,19),(10674,129889,'Ling (singing voice)',0,20),(10528,3223,'Sherlock Holmes',2,0),(10528,9642,'Dr. John Watson',2,1),(10528,53714,'Irene Adler',1,2),(10528,2983,'Lord Blackwood',2,3),(10528,1665,'Inspector Lestrade',2,4),(10528,112692,'Dredger',2,5),(10528,11855,'Mrs. Hudson',1,6),(10528,17521,'Mary',1,7),(10528,84865,'Constable Clark',2,8),(10528,37168,'Lord Coward',2,9),(10528,1292,'Sir Thomas Rotheram',2,10),(10528,10207,'Ambassador Standish',0,11),(10528,19901,'Captain Tanner',2,12),(10528,1270734,'Reordan',0,13),(10528,1121204,'McMurdo',0,14),(10528,1156243,'Maid',0,16),(10528,202760,'Guard Captain',0,17),(10528,1270741,'Carriage Driver',0,19),(10528,174524,'Coach Driver',0,20),(10528,1270742,'Guard',0,21),(10528,1187835,'Captain Philips',2,22),(10528,237767,'Groundskeeper',0,23),(10528,33399,'Palm Reader',0,24),(10528,1270828,'Anonymous Man',0,25),(10528,1000873,'Big Man',2,26),(10528,109322,'Young Guard',0,27),(10528,221857,'Waiter',0,28),(10528,1270829,'Police Officer',0,29),(10528,59082,'Prison Guard',0,30),(10528,63362,'Man with Roses',0,31),(10528,1270830,'Removable Man',0,32),(10528,1270831,'Young Woman Sacrifice',0,33),(10528,1266585,'Governor',2,34),(10528,1270832,'Grave Policeman',0,35),(10528,208451,'Grave Policeman',0,37),(10528,62106,'Preacher',0,38),(10528,1270833,'Porter / Smith',0,39),(10528,974063,'Golden Dawn Envoy',2,40),(10528,1230574,'Thug',0,41),(10528,1034905,'Man Carrying Tray of Fish in Market (uncredited)',2,42),(10528,1030253,'Thug (uncredited)',0,43),(10528,1270834,'Frenzy Man (uncredited)',0,44),(10528,1031711,'Prison Guard (uncredited)',2,45),(10528,1270836,'Man with Dog (uncredited)',0,46),(10528,1270837,'Bishop (uncredited)',0,47),(10528,1270838,'Photographer (uncredited)',0,48),(10528,93715,'Dog Fighter (uncredited)',0,49),(10528,1270839,'Pallbearer (uncredited)',0,50),(10528,1270840,'Fishmonger (uncredited)',0,51),(10528,1270841,'Barman (uncredited)',0,52),(10528,1209051,'Prizefighter (uncredited)',0,53),(10528,1209055,'Policeman (uncredited)',0,54),(10528,1058080,'Grave Policeman',0,55),(10528,1459592,'Docker',2,56),(10528,1123460,'Carriage Driver',0,57),(10865,521,'Milo James Thatch (voice)',2,0),(10865,35219,'Gaetan \'The Mole\' Moliere (voice)',2,1),(10865,52300,'Helga Katrina Sinclair (voice)',1,2),(10865,16896,'Commander Lyle Tiberius Rourke (voice)',2,3),(10865,4251,'Preston B. Whitmore (voice)',2,4),(10865,56853,'Dr. Joshua Strongbear Sweet (voice)',2,5),(10865,1749,'King Kashekim Nedakh (voice)',2,6),(10865,161860,'Vincenzo \'Vinny\' Santorini (voice)',2,7),(10865,49818,'Audrey Rocio Ramirez (voice)',1,8),(10865,84323,'Wilhelmina Bertha Packard (voice)',1,9),(10865,28010,'Fenton Q. Harcourt (voice)',2,10),(10865,182258,'Young Kida (voice)',0,11),(10865,34985,'Princess \'Kida\' Kidagakash (voice)',1,12),(10865,12899,'Jebidiah Allardyce \'Cookie\' Farnsworth (voice)',2,13),(10865,12077,'Additional Voices (voice)',2,14),(10661,19292,'Zohan',2,0),(10661,1241,'The Phantom',2,1),(10661,59192,'Dalia',1,2),(10661,32907,'Michael',2,3),(10661,53647,'Gail',1,4),(10661,66069,'Nasi',0,5),(10661,66070,'James',2,6),(10661,66071,'Mrs. Greenhouse',1,7),(10661,66072,'Walbridge',2,8),(10661,60949,'Salim',2,9),(10661,66073,'Oori',0,10),(10661,173810,'Hamdi',2,11),(10661,58478,'Kevin',2,12),(10661,53684,'Yosi',2,13),(10661,66586,'Mariah Carey',1,14),(10661,1209417,'Hassan',0,15),(10661,1245993,'Dorit',1,16),(10661,1231206,'Michal',1,17),(10661,1446841,'Older Lady in Salon',1,18),(10661,131946,'Ze\'ev',2,19),(10661,166976,'Kids\' Salon Owner',1,20),(10661,98186,'Older Lady in Salon',1,21),(10661,119713,'Bruce Vilanch',2,23),(10661,215157,'Himself',0,24),(10661,25817,'Zohan\'s Mother',1,25),(10661,10403,'Zohan\'s Father',2,26),(10661,2632,'Taxi Driver',2,27),(10661,1288829,'Paul Mitchell',0,28),(10661,12224,'Claude',2,29),(10661,183439,'Waleed',2,30),(10661,1375446,'Yitzhak',0,31),(10661,5621,'Tom',2,32),(10661,1410944,'Pinchas',0,33),(10661,183820,'Aharon',0,34),(10661,54712,'Bashir',0,35),(10661,1781850,'Ephraim',0,36),(10661,164708,'Levi',0,37),(10661,75344,'Gray Kleibolt',2,38),(10661,164544,'Philip',0,39),(10661,1339470,'Real Estate Agent',0,40),(10661,996242,'Doorman',2,41),(10661,1202531,'Mariah\'s Assistant',1,42),(10661,214834,'Mariah\'s Assistant',1,43),(10661,2225,'Fred',2,44),(10661,963297,'Coleman',2,45),(10661,1241324,'Skizzy',0,46),(10661,1188481,'Commander',2,47),(10661,81480,'Second Commander',0,48),(10661,1781853,'Koby',0,49),(10661,61647,'Avi',2,50),(10661,1781854,'Danny',0,51),(10661,1781857,'Sara',1,52),(10661,17494,'Homeless Guy',2,53),(10661,1781865,'Exploded Shop Owner',0,54),(10661,170882,'Debbie',1,55),(10661,1781871,'Nadira',1,56),(10661,166671,'Mrs. Skitzer',1,57),(10661,1349480,'Mrs. Paulson',1,59),(10661,139943,'Older Lady in Salon',1,60),(10661,170356,'Older Lady in Salon',1,61),(10661,1781883,'Older Lady in Salon',1,62),(10661,179548,'Older Lady in Salon',1,63),(10661,1781884,'Older Lady in Salon',1,64),(10661,170865,'Older Lady in Salon',1,65),(10661,1241158,'Hip Salon Receptionist',1,66),(10661,55269,'Blonde at Salon',1,67),(10661,126843,'Catty Hairdresser',1,68),(10661,1665045,'African American Salon Owner',0,69),(10661,992381,'Little Boy',2,70),(10661,20820,'Doctor',2,71),(10661,1781885,'Plus Size Girl at Disco',1,72),(10661,1781886,'DJ',0,73),(10661,1217590,'First Woman in Cab',1,74),(10661,1781887,'First Woman in Cab',1,75),(10661,1212979,'Second Woman in Cab',1,76),(10661,159669,'Second Woman in Cab',1,77),(10661,171642,'Angry Tall Driver',0,78),(10661,1089394,'Truck Driver',2,79),(10661,1781701,'Dog Owner',1,80),(10661,1781888,'Hamdi\'s Passenger',0,81),(10661,1781889,'Boy Customer',0,82),(10661,1718070,'Arguing Female Customer',1,83),(10661,1781891,'Walbridge\'s Girlfriend',1,84),(10661,111679,'Pharmacist',2,85),(10661,1446318,'Inaz',1,86),(10661,1781892,'Hamdi\'s Wife (voice)',1,87),(10661,1781893,'Phantom\'s Trainer',0,88),(10661,184436,'Reporter',1,89),(10661,1652383,'Beach Girl',1,90),(10661,1759621,'Kayaker',0,91),(10661,54809,'Terrorist with Hand',2,92),(10661,1781900,'Disco Merchant',0,93),(10661,1781901,'Disco Merchant',0,94),(10661,1781902,'Disco Merchant',0,95),(10661,1781903,'Rabbi',0,96),(10661,1781904,'Girl on Zohan\'s Shoulders',1,97),(10661,1781905,'Hot Girl in Club',1,98),(10661,84261,'Eti',1,99),(10661,1539450,'Girl at Mall',1,100),(10661,225865,'Cheerleader',1,101),(10661,1781906,'Isreali Fan',0,102),(10661,109687,'Fry Cook',2,103),(10661,1781907,'Autograph Seeker #1',0,104),(10661,1265856,'Isreali Hacky Sack Coach',0,105),(10661,1777581,'Hackey Sack Enthusiast',1,106),(10661,1265857,'Isreali Soldier',0,107),(10661,1781909,'Businessman',0,108),(10661,1781910,'Isreali Dancer',1,109),(10661,1781914,'Fizzy-Bubbeleh Girl',1,110),(10661,1003287,'Times Square Crazy Man',0,111),(10661,1777583,'Phantom\'s Wife',1,112),(10661,1781917,'Nick',0,113),(10661,1344706,'Ribbon Cutting Girl',1,114),(10661,1781925,'Phantom\'s Wife',1,115),(10661,1781937,'Isreali Hacky Sack Fan',0,116),(10661,1781938,'Hot Dog Vendor',0,117),(10661,1781941,'Picnic Girl',1,118),(10661,52274,'Electronic Store Customer',2,119),(10661,1508666,'Airline Terminal Passenger',0,120),(10661,1396608,'Isreali Fan',0,121),(10661,129600,'Disco Merchant',2,122),(10661,116466,'Phantom\'s Wife',1,123),(10661,1419587,'Phantom\'s Wife',0,124),(10661,109425,'Disco Hip Girl',1,125),(10661,1094263,'Girl in Club',1,126),(10661,1781963,'Waitress',1,127),(10661,1781964,'Commuter',0,128),(10661,1781965,'Isreali Soldier',1,129),(10661,1781966,'Isreali Soldier',1,130),(10661,1781983,'Dalohan Receptionist',1,131),(10661,1202533,'Party Guy',0,132),(10661,32895,'Hacky Sack Tournament Celebrity Judge',2,133),(10661,1781984,'Hotel Manager',0,134),(10661,1777592,'Spectator',0,135),(10661,1781985,'Nightclub Bouncer',0,136),(10661,1781986,'Amir',0,137),(10661,1781987,'Reporter',1,138),(10661,170382,'Vendor with No Fizzi Bubblech',2,139),(10661,193946,'Criminal #3',2,140),(10661,1781988,'Shocked Businessman',0,141),(10661,1781989,'Go Go Dancer',1,142),(10661,1246221,'Businesswoman',1,143),(10661,1096679,'Arab #3',2,144),(10661,1511383,'Hot Girl / Waitress',1,145),(10661,1781990,'Cheerleader',1,146),(10661,1205138,'Girl in Park',1,147),(10661,127910,'Girl in Club',1,148),(10661,1781991,'Phantom\'s Wife',1,149),(10661,1781992,'Hacky Sack Fan',1,150),(10661,1407372,'Street Merchant',0,151),(10661,1781993,'Phantom\'s Wife',1,152),(10661,1553633,'Redneck Posse Man #2',0,153),(10661,1781994,'The Hot Chick',1,154),(10661,588647,'Snooty French Girl at the Club',1,155),(10661,1585042,'Middle Eastern Girl',1,156),(10661,1781995,'Score Keeper',0,157),(10661,1716163,'Fan in the Crowd',2,158),(10661,1781997,'Dancer',1,159),(10661,1530055,'Woman in Beauty Shop',1,160),(10661,210849,'Angry Palestinian',0,161),(10661,1778304,'Isreali Weapons Trainer',0,162),(10661,211429,'Little Boy #2',0,163),(10661,1781998,'Isreali Soldier',0,164),(10661,1399537,'Party Goer',1,165),(10661,1781999,'Ruth',0,166),(10661,1782000,'Rock-throwing Girl',1,167),(10661,1782001,'Zeb',0,168),(10661,1782002,'Alena',0,169),(10661,1782003,'Angry Palestinian',0,170),(10661,1782004,'Shopper',1,171),(10661,1401102,'Cafe Customer',0,172),(10661,1355360,'Isreali Soldier',2,173),(10661,1782006,'Disco-Tech',0,174),(10661,36072,'Girlfriend',1,175),(10661,1782007,'Salon Patron',1,176),(10661,1782008,'Hot Dog Patron',0,177),(10661,31903,'Limousine Passenger',2,178),(10661,80449,'News Cameraman',0,179),(10661,1086567,'Girlfriend',1,180),(10661,1501572,'Ukrossi',0,181),(10661,1782009,'Phantom\'s Best Friend',0,182),(10661,1205141,'Taxi Cab Patron',1,183),(10661,571249,'Mrs. Haines',1,184),(10756,776,'Jim Evers',2,0),(10756,28641,'Ramsley',2,1),(10756,27631,'Master Gracey',2,2),(10756,36219,'Sara Evers',1,3),(10756,7906,'Madame Leota',1,4),(10756,56567,'Emma',0,5),(10756,12900,'Ezra',2,6),(10756,62646,'Megan',2,9),(10756,1219157,'Mr. Coleman',0,10),(10756,46074,'Mrs. Coleman',1,11),(10756,56576,'Mr. Silverman',2,12),(10756,1430209,'Megan',0,13),(10756,89500,'Mrs. Silverman',1,14),(10756,15034,'Hitchhiking Ghost',2,15),(10756,1295,'Hitchhiking Ghost',2,16),(10756,1015053,'Hitchhiking Ghost',0,17),(10756,962026,'Tiki Lounge Customer',1,18),(10756,68436,'Tiki Lounge Customer',2,19),(10756,443770,'Tea Ghost',2,20),(10756,1594136,'Boy on Bicycle',0,21),(10756,943864,'The Singing Busts',0,22),(10756,1594137,'The Singing Busts',0,23),(10756,1594138,'The Singing Busts',0,24),(10756,1594139,'The Singing Busts',0,25),(10756,1594140,'The Singing Busts',0,26),(10003,5576,'Simon Templar',2,0),(10003,1951,'Emma Russell',1,1),(10003,1118,'Ivan Tretiak',2,2),(10003,7030,'Dr. Lev Botvin',2,3),(10003,2629,'Inspector Teal',2,4),(10003,742,'Vereshagin, Tretiak\'s Aide',2,5),(10003,19301,'President Karpov',2,6),(10003,146399,'Frankie',1,7),(10003,90356,'General Sklarov',0,8),(10003,87416,'Inspector Rabineau',1,9),(10003,1246,'Woman on Plane',1,10),(10003,955006,'Russian Prostitute',1,11),(10003,34515,'Skinhead',2,12),(10003,2478,'Scarface',2,13),(10003,1079977,'Scratchface',0,14),(10003,1810376,'Young Simon Templar',2,15),(10003,188468,'Catholic Priest',2,17),(10003,1079978,'Agnes',0,18),(10003,1079979,'Boy in Orphanage',0,19),(10003,7032,'TV Reporter',1,20),(10003,238702,'Old Russian Lady',0,21),(10003,1079980,'Old Russian Man',0,22),(10003,70883,'Prostitute\'s Mother',0,23),(10003,27172,'Frankie\'s Curator',2,24),(10003,79954,'President\'s Aide',0,25),(10003,166258,'Russian Doctor',2,26),(10003,116126,'',2,27),(10003,128719,'Ilya Tretiak',2,28),(10357,2176,'Mike Roark',2,0),(10357,8256,'Dr. Amy Barnes',1,1),(10357,12930,'Kelly Roark',1,2),(10357,1896,'Emmit Reese',2,3),(10357,197872,'Medic',0,4),(10357,56485,'Dr. Jaye Calder',1,5),(10357,65827,'Police Lieutenant Ed Fox',2,6),(10357,38405,'Norman Calder',2,7),(10357,18313,'Gator Harris',2,8),(10357,3911,'Stan Olber',2,9),(10357,59300,'Kevin',2,10),(10357,152339,'L.A. Fire Chief',2,11),(10357,158012,'Bud McVie',2,12),(10357,1188456,'Terry Jasper',0,13),(10357,87108,'Roger Lapher',2,14),(10357,1357100,'O.E.M. Staffer #5',0,15),(10481,515,'Cruella de Vil',1,0),(10481,65524,'Kevin Shepherd',2,1),(10481,65535,'Chloe Simon',1,2),(10481,41043,'Alonzo',2,3),(10481,16927,'Jean Pierre Le Pelt',2,4),(22897,5064,'Jane Adler',1,0),(22897,7447,'Jake Adler',2,1),(22897,67773,'Adam Schaffer',2,2),(22897,17697,'Harley',2,3),(22897,25703,'Agness Adler',1,4),(22897,5960,'Joanne',1,5),(22897,12931,'Trisha',1,6),(22897,104998,'Diane',0,7),(22897,35236,'Luke Adler',2,8),(22897,35028,'Gabby Adler',1,9),(22897,211993,'Lauren Adler',1,10),(22897,1259762,'Pedro Adler',2,11),(22897,4496,'Sally',1,12),(22897,27545,'Ted',2,13),(22897,233298,'Peter',2,14),(22897,105641,'Dr. Moss',2,15),(22897,62597,'Dr. Allen',2,16),(22897,1800985,'Oliver',0,17),(22897,1223878,'Waitress',1,18),(22897,6321,'Reynaldo',2,19),(22897,1100549,'Melanie',1,20),(22897,644,'Woman at Fertility Clinic',1,21),(22897,130513,'Woman at Fertility Clinic',1,22),(22897,1099510,'Woman at Bar',0,23),(22897,131361,'Woman at Bar',1,24),(10159,18918,'Beck',2,0),(10159,57599,'Travis',2,1),(10159,5916,'Mariana',1,2),(10159,4690,'Hatcher',2,3),(10159,58210,'Manito',2,4),(10159,1125,'Declan',2,5),(10159,9629,'Harvey',2,6),(10159,131725,'Walker',2,7),(10159,1815341,'Swenson',2,8),(10159,1221121,'Naylor',0,9),(10159,956198,'Henshaw',2,10),(10159,179882,'Head Indian Tracker',0,11),(10159,55205,'Knappmiller',2,12),(10159,1562258,'Martin',0,13),(10159,1815342,'Mullaire',0,14),(10159,74931,'Jamal',2,15),(10159,159482,'Coggeshall',2,16),(10159,56448,'Kambui',2,17),(10159,1815343,'Rudy',0,18),(10159,1815344,'Paymaster',0,19),(10159,1100,'Bar Patron',2,20),(16858,6355,'Joe Gideon',2,0),(16858,4431,'Angelique',1,1),(16858,80927,'Audrey Paris',1,2),(16858,80928,'Kate Jagger',1,3),(16858,26664,'O\'Connor Flood',2,4),(16858,19183,'Davis Newman',2,5),(16858,1155690,'Michelle',0,6),(16858,161650,'Dr. Ballinger',2,7),(16858,106772,'Joshua Penn',2,8),(16858,982731,'Jonesy Hecht',2,9),(16858,62602,'Leslie Perry',0,10),(16858,106807,'Victoria',0,11),(16858,1028288,'Kathryn',1,12),(16858,119778,'Paul Dann',2,13),(16858,166000,'Ted Christopher',2,14),(16858,8875,'Larry Goldie',2,15),(16858,1185298,'Stacy',0,16),(16858,33054,'Young Joe',0,17),(16858,1127494,'Comic',0,18),(16858,853,'Eddie',2,19),(16858,12074,'Lucas Sergeant',2,20),(16858,45378,'Principal Dancer Airotica Sequence',1,21),(16858,30485,'Nurse Blake',1,22),(16858,12900,'Assistant Insurance Man',2,23),(22538,39995,'Scott Pilgrim',2,0),(22538,17628,'Ramona V. Flowers',1,1),(22538,18793,'Wallace Wells',0,2),(22538,16828,'Lucas Lee',2,3),(22538,84223,'Stacey Pilgrim',1,4),(22538,17486,'Kim Pine',1,5),(22538,17271,'Todd Ingram',2,6),(22538,17881,'Gideon Gordon Graves',2,7),(22538,88902,'Knives Chau',0,8),(22538,88903,'Matthew Patel',2,9),(22538,52404,'Roxy Richter',1,10),(22538,27104,'\'Young\' Neil Nordegraf',2,11),(22538,60073,'Envy Adams',1,12),(22538,4451,'Stephen Stills',2,13),(22538,2681,'Luke \'Crash\' Wilson',0,14),(22538,119592,'Julie Powers',1,15),(22538,88928,'Comeau',2,16),(22538,88929,'Mother Chau',1,17),(22538,88930,'Sandra',1,18),(22538,88931,'Trisha \'Trasha\' Ha',1,19),(22538,33702,'Other Scott',0,20),(22538,88932,'Monique',0,21),(22538,88933,'Tamara',1,22),(22538,88934,'Winifred Hailey',0,23),(22538,43464,'Smoking hipster kid',2,24),(22538,193539,'Party Goer',0,25),(22538,224724,'Party Goer',2,26),(22538,11155,'Vegan Police (uncredited)',2,27),(22538,5365,'Vegan Police (uncredited)',2,28),(22538,19278,'The Voice (voice)',2,29),(12107,776,'Professor Sherman Klump and various roles',2,0),(12107,54421,'Denise Gaines',1,1),(12107,1211,'Dean Richmond',2,2),(12107,64343,'Jason',2,3),(12107,16662,'Denise\'s Father',2,4),(12107,54800,'Denise\'s Mother',1,5),(12107,58692,'Leanne Guilford',0,6),(12107,59019,'Ernie Klump, Jr.',2,7),(12107,1673480,'Isaac',0,8),(12107,1534,'Restaurant Manager',2,9),(12107,553853,'Restaurant Trainee',0,10),(12107,2716,'Dr. Knoll',2,11),(12107,87317,'Bright Student',1,12),(12107,553854,'Old Willie',0,13),(12107,27102,'Chantal',0,14),(12107,154630,'Preacher',2,15),(12107,102698,'Bridesmaid',1,16),(12107,1236187,'Claudine',0,17),(12107,1349629,'Boardroom Member',2,18),(16281,11066,'Henry Northrup (segment The Crate)',2,0),(16281,11782,'Wilma Northrup (segment The Crate)',1,1),(16281,6839,'Dexter Stanley (segment The Crate)',2,2),(16281,7633,'Richard Vickers (segment Something To Tide You Over)',2,3),(16281,175087,'Sylvia Grantham',0,4),(16281,5249,'Upson Pratt (segment They\'re Creeping Up On You)',2,5),(16281,22137,'Aunt Bedelia',1,6),(16281,228,'Hank Blaine (segment Father\'s Day)',2,7),(16281,12836,'Harry Wentworth (segment Something To Tide You Over)',2,8),(16281,3027,'Jordy Verrill (segment The Lonesome Death Of Jordy Verrill)',2,9),(16281,190119,'Richard Grantham',2,10),(16281,15072,'Becky Vickers',1,11),(16281,15721,'Nathan Grantham',2,12),(16281,104046,'Jordy\'s Dad / Cameos',2,13),(16281,15057,'Nathan\'s Corpse',0,14),(16281,15074,'White',2,15),(16281,945445,'Billy\'s Mother',0,16),(16281,100507,'Tabitha Raymond',1,17),(16281,11161,'Garbage Man #2 (segment Epilogue)',2,18),(16281,11784,'Stan (uncredited)',2,19),(16281,103819,'Lenora Castonmeyer (voice) (uncredited)',0,20),(11253,2372,'Hellboy',2,0),(11253,11826,'Liz Sherman',1,1),(11253,4175,'Tom Manning',2,2),(11253,17005,'Abe Sapien',2,3),(11253,5049,'Trevor Bruttenholm',2,4),(11253,10843,'Prince Nuada',2,5),(11253,443770,'Johann Krauss / Bethmoora Goblin',2,6),(11253,1050937,'Johann Krauss',0,7),(11253,52139,'Johann (voice)',2,8),(11253,221553,'Princess Nuala',1,9),(11253,12359,'Wink / Cronie / Spice Shop Troll / Cathedral Head / Fragglewump',2,10),(27578,16483,'Barney Ross',2,0),(27578,976,'Lee Christmas',2,1),(27578,16644,'Gunnar Jensen',2,2),(27578,21315,'Monroe',2,3),(27578,74748,'Toll Road',2,4),(27578,77120,'Dan Paine',2,5),(27578,22821,'General Garza',2,6),(27578,99414,'Sandra',1,7),(27578,53256,'Hale Caesar',2,8),(27578,2295,'Tool',2,9),(27578,62,'Mr. Church',2,10),(27578,1100,'Trench',2,11),(27578,126502,'Lacy',1,12),(27578,131772,'Pirate Leader',0,14),(27578,115840,'Tall Pirate Leader',0,15),(27578,9437,'Paul',0,16),(27578,78815,'Garza\'s Bodyguard #1 and #2',0,17),(27578,131773,'Vilena Customs Agent',0,18),(27578,14771,'Gunner\'s Goon',0,19),(27578,131774,'Gagged Hostage',0,20),(27578,68559,'The Brit',2,21),(27578,1336,'Yin Yang',2,22),(11544,66193,'\'Stitch\' (voice)',2,0),(11544,1580,'Lilo (voice)',1,1),(11544,13445,'Nani (voice)',1,2),(11544,28010,'Dr. Jumba Jookiba (voice)',2,3),(11544,58955,'Pleakley (voice)',2,4),(11544,10182,'Cobra Bubbles (voice)',2,5),(11544,24362,'Captain Gantu (voice)',2,6),(11544,58319,'David Kawena (voice)',2,7),(11544,937681,'Grand Councilwoman (voice)',1,8),(11544,59401,'Mrs. Hasagawa (voice)',1,9),(11544,76003,'Rescue Lady (voice)',1,10),(11665,4495,'Maxwell Smart',2,0),(11665,1813,'Agent 99',1,1),(11665,18918,'Agent 23',2,2),(11665,1903,'The Chief',2,3),(11665,28641,'Siegfried',2,4),(11665,53256,'Agent 91',2,5),(11665,28638,'Larabee',2,6),(11665,3085,'The President',2,7),(11665,1532,'Agent 13',2,8),(11665,9657,'Hymie',2,9),(11665,71078,'Ladislas Krstic',2,10),(11665,17273,'Bruce',2,11),(11665,41565,'Lloyd',2,12),(11665,1391612,'Co-Pilot',2,13),(11665,119154,'Dalip',0,14),(11324,6193,'Teddy Daniels',2,0),(11324,103,'Chuck Aule',2,1),(11324,2282,'Dr. John Cawley',2,2),(11324,1246,'Rachel Solando',1,3),(11324,1812,'Dolores Chanal',1,4),(11324,2201,'Dr. Jeremiah Naehring',2,5),(11324,17183,'George Noyce',2,6),(11324,1276,'Rachel 2',1,7),(11324,15854,'Warden',2,8),(11324,3911,'Deputy Warden McPherson',2,9),(11324,13550,'Laeddis',2,10),(11324,11902,'Bridget Kearns',1,11),(11324,61510,'Christian',0,12),(11324,4012,'Timothy',2,13),(11324,82631,'Glen Miga',2,14),(11324,2254,'Trey Washington',2,15),(11324,141448,'Gate Guard',0,16),(11324,928638,'Criminally Insane Inmate (uncredited)',0,17),(11324,177898,'Nurse Marino',1,18),(11324,1181562,'Orderly Ganton',2,19),(11324,141458,'Inmate Billings',2,20),(11324,1218228,'Little Girl',0,21),(11324,58333,'Ward C Guard',2,22),(11324,50588,'Ward C Guard',2,23),(11324,1455792,'Younger Boy',2,24),(11324,1588593,'U.S. G.I. at Dachau Liberation / German S.S. Officer Killed (uncredited)',0,25),(12193,4937,'Brad McVie',2,0),(12193,368,'Kate',1,1),(12193,3087,'Howard McVie',2,2),(12193,5606,'Paula',1,3),(12193,10127,'Creighton',2,4),(12193,15277,'Denver McVie',2,5),(12193,2453,'Marilyn',1,6),(12193,20309,'Pastor Phil',2,7),(12193,74428,'Dallas McVie',2,8),(12193,52775,'Courtney',1,9),(12193,59450,'Susan McVie',1,10),(12193,13023,'Aunt Donna',1,11),(12193,58929,'Gram-Gram',1,12),(12193,16052,'Grandpa',2,13),(12193,76112,'Jim',0,14),(12193,1795115,'Cody',0,15),(12193,61263,'Connor McVie',2,16),(12193,1795116,'Kasi',0,17),(12193,64715,'Darryl',2,18),(12193,63235,'Stan',2,19),(12193,94622,'Eric',2,20),(12193,42186,'Cheryl',1,21),(12193,86624,'Cindy',1,22),(12193,1795119,'Baby Clementine',0,23),(12193,12708,'Ticket Agent',2,24),(10202,19292,'Skeeter Bronson',2,0),(10202,41292,'Jill',1,1),(10202,529,'Kendall',2,2),(10202,14405,'Wendy',1,3),(10202,20584,'Aspen',1,4),(10202,20374,'Violet Nottingham',1,5),(10202,59919,'Mickey',2,6),(10202,38674,'Donna Hynde',1,7),(10202,106935,'Mrs. Dixon',1,8),(10202,28639,'Hot Girl',1,9),(10202,378,'Marty Bronson',2,10),(10202,10983,'Barry Nottingham',2,11),(10202,576511,'Patrick',0,12),(10202,1187842,'Bobbi',0,13),(10202,32907,'Engineer',2,14),(10202,20818,'Ferrari Guy',2,15),(10202,56728,'Young Barry Nottingham',2,16),(10202,1116200,'Young Skeeter',2,17),(10202,204330,'Young Wendy',0,18),(10202,1202530,'Young Mrs. Dixon',1,19),(10202,199512,'Young Mr. Dixon',2,20),(10202,1202531,'Hokey Pokey Woman',1,21),(10202,214834,'Hokey Pokey Woman',1,22),(10202,17191,'Hokey Pokey Woman',1,23),(10202,154485,'Hokey Pokey Woman',1,24),(10202,1202532,'Hokey Pokey Woman',0,25),(10202,21485,'Biker',0,26),(10202,60954,'Biker',2,27),(10202,15900,'Hot Dog Vendor',2,28),(10202,211594,'Birthday Party Kid',0,29),(10202,59825,'Angry Dwarf',0,31),(10202,1060474,'Gremlin Driver',2,32),(10202,1202533,'Cubby the Home Depot Guy',0,33),(10202,60959,'Lady Jacqueline',1,34),(10202,1202534,'Sweetest Medieval Girl of All Time',0,35),(10202,1202535,'Teacher',0,36),(10202,19753,'Booing Goblin',1,37),(10202,987800,'Big Hairy Guy on Beach',2,38),(10202,73456,'Secretary',1,39),(10202,1024722,'Tricia Sparks',1,40),(10202,209417,'Luau Waitress',0,41),(10202,58477,'Party Guest',0,42),(10202,62100,'Party Guest',2,43),(10202,1202536,'Truck Driver',0,44),(10202,963298,'Nottingham Pool Waiter',2,45),(10202,1202537,'Nobleman',0,46),(10202,1202538,'Lady at Fountain',0,47),(10202,60949,'Chief Running Mouth / Pickpocket',2,48),(10202,578735,'Pedestrian (uncredited)',0,49),(10202,1202540,'Protesting Mom (uncredited)',0,50),(10202,1202541,'Greek Goddess (uncredited)',0,51),(10202,1078574,'Claudius Falisimus (uncredited)',2,52),(10202,1202542,'Jogger (uncredited)',0,53),(10202,1202543,'West Side Story Showgirl #2 (uncredited)',0,54),(10202,1202544,'Tambourine Player Medieval Band (uncredited)',0,55),(10202,1202545,'Student (uncredited)',0,56),(10202,205649,'Paparazzi (uncredited)',0,57),(10202,1202546,'Rabbi (uncredited)',0,58),(10202,1202547,'A Spaceball (uncredited)',0,59),(10202,1202548,'Daft Alien (uncredited)',0,60),(10202,1202549,'Western Girl (uncredited)',0,61),(10202,1202550,'Party Girl (uncredited)',0,62),(10202,1202551,'Party Guest (uncredited)',0,63),(10202,1200895,'Coliseum / Space Station Vendor (uncredited)',0,64),(10202,221606,'Dancer (uncredited)',1,65),(10202,1202552,'Roman Peasant (uncredited)',0,66),(10202,1202553,'Damn Yankees Girl (uncredited)',1,67),(10202,114486,'Showgirl (uncredited)',0,69),(10202,1030906,'Businessman #1 (uncredited)',2,70),(10202,1202555,'Record Producer (uncredited)',0,71),(10202,1202556,'Greek Goddess (uncredited)',0,72),(13027,10959,'Jerry Shaw',2,0),(13027,11705,'Rachel Holloman',1,1),(13027,5916,'Zoe Perez',1,2),(13027,19654,'Defense Secretary Callister',2,3),(13027,53650,'Major William Bowman',2,4),(13027,879,'Thomas Morgan',2,5),(13027,58019,'Agent Toby Grant',2,6),(13027,165263,'Ranim Khalid',2,7),(13027,75041,'Sam Holloman',2,8),(13027,8792,'Mrs. Wierzbowski',1,9),(13027,17200,'Admiral Thompson',2,10),(13027,60287,'Mr. Miller',2,11),(13027,6573,'Jerry\'s Dad',2,12),(13027,1231,'ARIIA (voice)',1,13),(13027,35350,'Explosives Developer',2,14),(13027,1214388,'Jerry\'s Mom',0,15),(13027,1229502,'Becky',1,16),(13027,1242819,'Rachel\'s Friend',1,17),(13027,163855,'Translator',2,18),(13027,1394359,'Chase Bystander (uncredited)',0,19),(20504,5292,'Eli',2,0),(20504,64,'Carnegie',2,1),(20504,18973,'Solara',1,2),(20504,56614,'Redridge',2,3),(20504,3130,'Claudia',1,4),(20504,2887,'Engineer',0,5),(20504,5658,'George',2,6),(20504,47468,'Martha',1,7),(20504,123812,'Highjacker #3',0,8),(20504,76543,'Highjacker Leader',2,9),(20504,86237,'Hoyt',2,10),(20504,333,'Martz',2,11),(20504,1151637,'Young Woman Highjacker',1,12),(20504,56890,'Lombardi',2,13),(20504,1651045,'Sniper',2,14),(20504,12371,'Hijacker',2,15),(20504,1083165,'Hijacker',2,16),(20504,1452956,'Hijacker',2,17),(20504,1549025,'Middle-Aged Man',0,18),(20504,1665465,'Middle-Aged Woman',1,19),(20504,60537,'Biker',1,20),(20504,1031469,'Biker',2,21),(20504,92483,'Biker / Town Thug',0,22),(20504,131413,'Sniper',0,23),(20504,92495,'Sniper',0,24),(20504,66667,'Construction Thug Leader',2,25),(20504,1366,'Construction Thug',2,26),(20504,105786,'Bartender',2,27),(20504,1283045,'Town Doctor',0,28),(20504,1123871,'Door Guard',0,29),(20504,1335375,'Town Thug',0,30),(20504,1380919,'Town Thug',0,31),(20504,210700,'Town Thug',0,32),(20504,1291797,'Convoy Thug',0,33),(20504,1537690,'Convoy Thug',0,34),(20504,146143,'Convoy Thug',2,35),(20504,1209419,'Convoy Thug',0,36),(20504,1143301,'Carnegie Gunman #1',0,37),(20504,210157,'Gatling Gun Gunner',0,38),(20504,1545551,'Caddy Driver',0,39),(20504,1357063,'Suburban Driver',2,40),(20504,1635196,'Ice Cream Truck Driver',2,41),(20504,983608,'Alcatraz Guard',0,42),(20504,1039678,'Alcatraz Soldier',2,43),(20504,1813644,'Biker',1,44),(11618,3896,'Dr. David Marrow',2,0),(11618,1922,'Theo',1,1),(11618,887,'Luke Sanderson',2,2),(11618,3127,'Eleanor \'Nell\' Vance',1,3),(11618,6905,'Mr. Dudley',1,4),(11618,12519,'Jane',1,5),(11618,101172,'Dr. Malcolm Keogh',2,6),(11618,22132,'Large Man',2,7),(11618,41293,'Mrs. Dudley',1,8),(11618,14707,'Mary Lambetta',1,9),(11618,5010,'Todd Hackett',2,10),(11618,27544,'Lou',2,11),(11618,71659,'Hugh Crain',2,12),(11618,552094,'Ritchie',2,13),(11618,176436,'Carolyn Crain',1,14),(11618,552095,'Rene Crain',0,15),(11618,552096,'Psych Patient #1',1,16),(11618,175678,'Psych Patient #2',0,17),(11618,166652,'Psych Patient #3',2,18),(11618,183057,'Psych Patient #4',1,19),(11618,552097,'Psych Patient #5',2,20),(12096,67773,'Inspector Jacques Clouseau',2,0),(12096,8945,'Chief Inspector Dreyfus',2,1),(12096,1003,'Gendarme Gilbert Ponton',2,2),(12096,14386,'Xania',1,3),(12096,1246,'Nicole',1,4),(12096,15319,'Yuri',2,5),(12096,52775,'Cherie',1,6),(12096,16407,'Raymmond Laroque',2,7),(12096,205262,'Bizu',2,8),(12096,976,'Yves Gluant (uncredited)',2,9),(12096,2296,'Nigel Boswell/Agent 006 (uncredited)',2,10),(12096,78110,'Jacquard',2,11),(12096,27570,'Agent Corbeille',1,12),(12096,38863,'Female Reporter',1,13),(12096,70175,'Security Guard',1,14),(12096,118357,'Ticket Checker',1,15),(12096,17163,'Casino Waitress',0,16),(12096,35359,'Justice Minister Clochard',2,17),(12096,163873,'Deputy Chief Renard',2,18),(12096,101165,'Music Producer',2,19),(12096,151432,'Vainqueur',2,20),(12096,198831,'Agent Savard',2,21),(10200,6384,'Klaatu',2,0),(10200,6161,'Helen Benson',1,1),(10200,8534,'Regina Jackson',1,2),(10200,120724,'Jacob Benson',2,3),(10200,8930,'Professor Barnhardt',0,4),(10200,65717,'Michael Granier',2,5),(10200,3497,'John Driscoll',2,6),(10200,17343,'Colonel',2,7),(10200,20904,'Mr. Wu',2,8),(10200,60205,'Dr. Myron',2,9),(10200,91337,'Rouhani',0,10),(10200,85613,'William Kwan',2,11),(10200,979103,'Tom',2,12),(10200,206669,'Isabel',1,13),(10200,83948,'Student',1,14),(10200,54712,'Yusef',0,15),(10200,64153,'Soldier #3',0,16),(10200,112645,'Medic #3',1,17),(14462,5292,'Major Bennett Ezekiel Marco',2,0),(14462,5064,'Senator Eleanor Prentiss Shaw (D-VA)',1,1),(14462,23626,'Congressman Raymond Prentiss Shaw (D-NY)',2,2),(14462,10127,'Senator Thomas Jordan (D-CT)',2,3),(14462,55314,'FBI Ag. Eugenie Rose',1,4),(14462,21657,'Jocelyne Jordan',1,5),(14462,2954,'CPL Al Melvin',2,6),(14462,16358,'Dr. Atticus Noyle',0,7),(14462,2310,'Delp',2,8),(14462,43366,'Congresswoman Beckett',1,9),(14462,15854,'Colonel Howard',2,10),(14462,15860,'Colonel Garret',2,11),(14462,923,'Mark Whiting',2,12),(14462,16119,'General Sloan',2,13),(14462,8693,'David Donovan',2,14),(14462,1237357,'Governor Robert Bob Arthur',0,15),(14462,59254,'PFC Eddie Ingram',2,16),(14462,53650,'PFC Robert Baker III',2,17),(14462,73913,'Laurent Tokar',2,18),(14462,52057,'Senator Wells',2,19),(14462,6752,'Vaughn Utly',2,20),(14462,61607,'Congressman Healy',2,21),(14462,20191,'Villalobos',0,22),(14462,44302,'Agent Evan Anderson',2,23),(14462,1520857,'Late Night Comedian',2,24),(14462,1534627,'Reporter #3',2,25),(14462,40103,'Shaw\'s Aide',2,26),(14462,1698392,'Victory Party Celebrity Soldier',1,27),(14462,164094,'Army Transcriber',1,28),(12159,2157,'Chris Nielsen',2,0),(12159,9777,'Albert Lewis',2,1),(12159,18750,'Annie Collins-Nielsen',1,2),(12159,2201,'The Tracker',2,3),(12159,91035,'Marie Nielsen',1,4),(12159,197545,'Ian Nielsen',2,5),(12159,74073,'Leona',1,6),(12159,5148,'Mrs. Jacobs',1,7),(12159,1233838,'Stacey Jacobs',0,8),(12159,1576333,'Best Friend Cindy',1,9),(12159,1576334,'Angie',1,10),(12159,76234,'Reverend Hanley',0,11),(12159,19979,'Woman in Car Accident',1,12),(12159,6818,'Face',2,13),(12159,1075044,'Little Boy at Lake',2,14),(12159,1237748,'Kid by the Dock (uncredited)',1,15),(12159,1576335,'Angel (uncredited)',1,16),(12159,1576336,'Devil (Hell Scene) (uncredited)',0,17),(19959,62,'Tom Greer',2,0),(19959,8329,'Jennifer Peters',1,1),(19959,10882,'Maggie Greer',1,2),(19959,2505,'Dr. Lionel Canter',2,3),(19959,10182,'Prophet',2,4),(19959,113676,'JJ the Blonde',1,5),(19959,80758,'Andrew Stone',2,6),(19959,587701,'Andre',0,7),(19959,11516,'Bobby Saunders',2,8),(19959,22133,'Miles Strickland',2,9),(19959,172303,'Victim',0,10),(19959,1016151,'Armando',0,11),(19959,52415,'Colonel Brendon',2,12),(19959,1233560,'Surrie / Greer',0,13),(19959,180327,'Landlady',1,14),(19959,1234039,'Uniformed Cop',0,15),(19959,55582,'Canter',0,16),(19959,1717251,'Undergrad #1',0,17),(19959,1802035,'Undergrad #2',0,18),(19959,169677,'Assistant',0,19),(19959,165242,'Female Counsel',1,20),(19959,54182,'Female Lawyer',1,21),(19959,144675,'Victor Welch',2,22),(19959,1802036,'Steinberg',0,23),(19959,1802037,'Female Newscaster',0,24),(19959,1802038,'Male Newscaster',0,25),(19959,1802039,'Pulaski / Commando',0,26),(19959,1802040,'Captain',0,27),(19959,1215144,'Lopez',2,28),(19959,66636,'Bridget',1,29),(19959,1802115,'Cop',0,30),(19959,1802120,'Salesman',0,32),(19959,1802128,'Hunk',0,33),(19959,1511961,'Gate Guard',0,34),(19959,1753529,'Pedestrian',0,35),(19959,187812,'Miller',2,36),(19959,141932,'Bud',2,37),(19959,219664,'Boy Canter',0,38),(19959,1224687,'Brian',2,39),(19959,206045,'Lisa',1,40),(19959,106435,'Agent #1',2,41),(19959,1802145,'Agent #2',0,42),(19959,138009,'Clerk',2,43),(19959,210292,'Beautiful Woman',1,44),(11973,1269,'Kenneth O\'Donnell',2,0),(11973,21089,'John F. Kennedy',2,1),(11973,63544,'Robert F. Kennedy',2,2),(11973,19152,'Robert McNamara',2,3),(11973,1573322,'U-2 Pilot',2,4),(11973,1574552,'Mark O\'Donnell',0,5),(11228,16483,'Kit Latura',2,0),(11228,15851,'Madelyne Thompson',1,1),(11228,110,'Roy Nord',2,2),(11228,6486,'Frank Kraft',2,3),(11228,6067,'Steven Crighton',2,4),(11228,16215,'Sarah Crighton',1,5),(11228,21320,'Ashley Crighton',1,6),(11228,29545,'Eleanor Trilling',1,7),(11228,137161,'Roger Trilling',2,8),(11228,27860,'Norman Bassett',2,9),(11228,16936,'George Tyrell',2,10),(11228,100653,'Grace Calloway',1,11),(11228,16660,'Vincent',2,12),(11228,28863,'Mikey',2,13),(11228,1213343,'LaTonya',0,14),(11228,59300,'Kadeem',2,15),(11228,6576,'Chief Dennis Wilson',2,16),(11228,59075,'Gem Thief #3',0,17),(10715,18269,'DJ Drake / Tasmanian Devil (voice) / She-Devil (voice)',2,0),(10715,40279,'Kate',1,1),(10715,67773,'Mr. Chairman',2,2),(10715,10669,'Damien Drake',2,3),(10715,58691,'Dusty Tails',1,4),(10715,3234,'Mother',1,5),(10715,3140,'Acme VP, Stating the Obvious',2,6),(10715,16180,'Acme VP, Rhetorical Questions',2,8),(10715,2372,'Acme VP, Never Learning',2,11),(10715,65236,'Mr. Smith',2,12),(10715,16184,'Mr. Warner',2,13),(10715,16185,'Mr. Warner\'s Brother',2,14),(10715,102441,'Security Guard',2,15),(10715,102429,'Hollywood Director',2,16),(10715,34597,'Dr. Bennell',2,17),(10715,26457,'Himself',2,18),(10715,100552,'Acme VP, Bad Ideas',1,19),(10715,16555,'Acme VP, Nitpicking',0,20),(10715,2081,'Acme VP, Unfairly Promoted',2,21),(10715,26491,'Acme VP, Child Labor',2,22),(10715,67524,'Acme VP, Climbing to the Top',2,23),(10715,93670,'Stunt Director',2,24),(10715,33017,'Interrogator',2,25),(10715,86434,'Bugs Bunny / Daffy Duck (voice)',2,26),(10715,34982,'Yosemite Sam / Foghorn Leghorn (voice)',2,27),(10715,23679,'Elmer Fudd / Peter Lorre (voice)',2,28),(10715,65531,'Tweety Bird / Marvin the Martian / Speedy Gonzalez (voice)',2,29),(10715,16418,'Shaggy (voice)',2,30),(10715,15831,'Scooby-Doo (voice)',2,31),(10715,1097196,'Tour Bus Girl',1,32),(10715,1776369,'Flower Vendor',1,33),(10715,167230,'Paris Cafe Waiter',2,34),(10715,1776370,'Studio Executive',0,35),(10715,1776371,'Bugs Bunny Driver',0,36),(10715,1776372,'Dancer',1,37),(10715,143244,'Dancer',1,38),(10715,1776373,'Dancer',1,39),(10715,1776379,'Dancer',1,40),(10715,1775887,'Dancer',1,41),(10715,1776380,'Dancer',1,42),(10715,1752319,'Dancer',1,43),(10715,1775926,'Dancer',0,44),(10715,1773695,'Dancer',1,45),(10715,442574,'Dancer',1,46),(10715,1776381,'',0,47),(10715,1776381,'Dancer',0,48),(10715,1775888,'Dancer',0,49),(10715,130863,'Dancer',0,50),(10715,1223005,'Dancer',0,51),(10715,1560639,'Dancer',1,52),(10715,1776382,'The Man from Planet X',0,53),(10715,9111,'Host of Civil Defense Film',2,54),(10715,1215420,'Laboratory Scientist',0,55),(10715,1395178,'Dalek',0,56),(10715,1038868,'Wooden Nickel Waitress',1,57),(10715,1776383,'Secret Agent Shopper',1,58),(10715,81104,'Robby the Robot',0,59),(10715,1776384,'Studio Tour Guide',0,60),(10197,5309,'Lilli',1,0),(10197,11856,'Guido Contini',2,1),(10197,8293,'Luisa Contini',1,2),(10197,955,'Carla',1,3),(10197,16757,'Mamma',1,4),(10197,2227,'Claudia',1,5),(10197,11661,'Stephanie',1,6),(10197,20497,'Saraghina',1,7),(10197,105114,'Dante',2,8),(10197,91494,'Leopardi',2,9),(10197,106350,'Fausto',2,10),(10197,59269,'Pierpaolo',0,11),(10197,40541,'Benito',1,12),(10197,115609,'Jaconelli',2,13),(10077,7059,'Alicia Wallenbeck',1,0),(10077,1083,'John Wallenbeck',2,1),(10077,35013,'Payne',2,2),(10077,20021,'Dr. Lucas',2,3),(10077,12833,'Travis Ryer',2,4),(10077,62932,'Jenny Krase',1,5),(10077,2282,'Charles Hatton',2,6),(10077,11951,'Clay Derris',2,7),(10077,2462,'Sonia Rand',0,8),(10077,62933,'Young Technician',0,9),(10077,29616,'Ted Eckles',2,10),(10077,17199,'Christian Middleton',0,11),(10077,62934,'George the Doorman',0,12),(10077,62936,'Onlooker',0,13),(10077,62935,'Newswoman on TV',0,14),(10077,62937,'Chinese Man I',2,15),(10077,62938,'Chinese Man II',0,16),(10077,62940,'Elderly Woman',1,17),(10077,62939,'Taxi Driver',0,18),(10077,62941,'Delivery Man',2,19),(17711,14343,'Natasha',1,0),(17711,1206,'Boris',2,1),(17711,15555,'Karen Sympathy',1,2),(17711,1811,'Cappy von Trapment',2,3),(17711,380,'Fearless Leader',2,4),(17711,13593,'Whoppa chopper pilot / Ohio cop with bullhorn / Old Jeb',2,5),(17711,15098,'Rocky / Cartoon Natasha Fatale / Narrator\'s Mother',1,6),(17711,94979,'Bullwinkle / Narrator / Cartoon Boris Badenov / Cartoon Fearless Leader',1,7),(17711,21197,'Minnie Mogul',1,8),(17711,1895,'P.G. Biggershot',2,9),(17711,1230,'Oklahoma Cop',2,10),(17711,77330,'Lewis',2,11),(17711,59645,'Martin',2,12),(17711,58563,'Measures',2,13),(17711,93015,'RBTV Lackey',1,14),(17711,166896,'Sydney',1,15),(17711,156980,'FBI Agent - Radish',1,16),(17711,44818,'FBI Agent - Potato',2,17),(17711,40036,'Left-Wing Student',1,18),(17711,2395,'Judge Cameo',1,19),(11026,1640,'Father Merrin',2,0),(11026,10695,'Sarah',1,1),(11026,19655,'Father Francis',2,2),(11026,5473,'Major Granville',2,3),(11026,67854,'Joseph',2,4),(11026,207186,'Chuma',0,5),(11026,27957,'Lieutenant Kessel',0,6),(11026,29068,'Semelier',2,7),(11026,1116,'Jeffreries',2,8),(11026,53916,'Sergeant Major',2,9),(11026,11180,'Father Gionetti',2,10),(11026,203461,'Emekwi',0,11),(11026,67147,'Jomo',2,12),(11026,82854,'Bession',2,13),(11026,1544524,'James',2,14),(11026,1602382,'Little Dutch Girl',0,15),(11026,965718,'Medieval Priest',0,16),(11026,1602383,'Sebituana\'s Wife',0,17),(11026,1602384,'Boy in Market',0,18),(11026,1602385,'Stricken Turkana Worker',0,19),(11026,1602386,'Turkana Shaman',0,20),(11026,1149593,'Tribesman in Hospital',0,21),(11026,1602387,'Turkana Warrior #1',0,22),(11026,1602388,'Turkana Warrior #2',0,23),(11026,1602389,'Preacher with Pazuzu',0,24),(11026,81508,'Corporal Finn',2,25),(15189,34847,'Andi',1,0),(15189,60255,'Bruce',2,1),(15189,1896,'Bernie',2,2),(15189,27104,'Dave',2,3),(15189,31031,'Heather',1,4),(15189,55258,'Carol',1,5),(15189,55673,'Mark',2,6),(15189,14406,'Lois Scudder',1,7),(15189,6863,'Carl Scudder',2,8),(15189,1982,'ACO Jake',2,9),(15189,59297,'ACO Max',2,10),(15189,111513,'Ms. Camwell',1,11),(15189,1018947,'Officer Mike',2,12),(15189,56758,'Officer Jeff',2,13),(15189,109183,'Evan',2,14),(15189,109046,'Marianne',1,15),(11678,5577,'Peter Garrett',2,0),(11678,17346,'Annie Garrett',1,1),(11678,2053,'Elliot Vaughn',2,2),(11678,349,'Montgomery Wick',2,3),(11678,10695,'Monique Aubertine',1,4),(11678,42706,'Tom McLaren',2,5),(11678,7242,'Major Rasul',2,6),(11678,2957,'Kareem Nazir',2,7),(11678,14344,'Royce Garrett',2,8),(11678,1079558,'Aziz',0,9),(11678,693,'Colonel Amir Salim',0,10),(11678,1079559,'Sergeant Asim',0,11),(11678,70908,'Ali Hasan',0,12),(11678,59116,'Cyril Bench',2,13),(11678,77335,'Malcolm Bench',2,14),(11678,135673,'Himself',2,15),(11678,39545,'Skip Taylor',2,16),(11678,186469,'\'Ali\'',0,17),(10555,2888,'Oscar (voice)',2,0),(10555,380,'Don Lino (voice)',2,1),(10555,9137,'Angie (voice)',1,2),(10555,70851,'Lenny (voice)',2,3),(10555,11701,'Lola (voice)',1,4),(10555,154857,'Ernie (voice)',2,5),(10555,1032,'Sykes (voice)',2,6),(10555,1077844,'Crazy Joe (voice)',0,7),(10555,12975,'Bernie (voice)',2,8),(10555,11486,'Frankie (voice)',2,9),(10555,47774,'Luca (voice)',2,10),(10555,2314,'Don Feinberg',2,11),(10555,166658,'Katie Current',1,12),(10555,7164,'Great White #3',2,13),(10555,62125,'Missy',1,14),(10555,53397,'Herself',1,15),(11375,3,'Sgt. Joe Gavilan',2,0),(11375,2299,'Det. K.C. Calden',2,1),(11375,5313,'Ruby',1,2),(11375,21089,'Lt. Bennie Macko',2,3),(11375,21353,'Antoine Sartain',2,4),(11375,12139,'Cleo Ricard',1,5),(11375,65827,'Leon',2,6),(11375,65164,'Julius Armas',2,7),(11375,20309,'Leroy Wasley',2,8),(11375,2641,'Jerry Duran',2,9),(11375,38560,'Wanda',2,10),(11375,10676,'Olivia Robidoux',1,11),(11375,1188456,'Danny Broome',0,12),(11375,52760,'Commander Preston',2,13),(11375,42226,'Sartain Receptionist',1,14),(11375,151384,'I.A. Detective Jackson',1,15),(11375,1214304,'I.A. Detective Zino',0,16),(11375,81583,'K-Ro',2,17),(11375,37934,'Silk Brown',2,18),(11375,2249,'Coroner Chung',2,19),(11375,10713,'Celebrity',2,20),(11375,185588,'Marty Wheeler',2,21),(11375,9208,'Himself',2,22),(11375,1221271,'Himself',0,23),(11375,107617,'Cabbie',2,24),(11375,21472,'Killer \'Z\'',2,25),(11375,53650,'Killer \'Joker\'',2,26),(11375,66653,'Det. Mando Lopez',2,27),(11375,49921,'Officer King',2,28),(11375,131647,'Cheeseburger Cop',0,29),(11375,83362,'Hank the Bartender',2,30),(11375,41275,'Repo Guy',2,31),(11375,36040,'Mixer',2,32),(11375,64351,'Det. Eddie Cruz',2,33),(11375,52271,'Shawna',1,34),(25769,17441,'Danny Green',2,0),(25769,62064,'Brian Green',2,1),(25769,15555,'Bobby',1,2),(25769,84247,'Kate',1,3),(25769,22227,'Frank Holloway',2,4),(25769,934289,'Jodie Holloway',1,5),(25769,171994,'Preacher',0,6),(25769,11889,'Doctor',2,7),(25769,108037,'Survivalist',2,8),(25769,1015340,'Survivalist',2,9),(25769,210156,'Survivalist',0,10),(25769,85419,'Tom',2,11),(25769,1120616,'Rose',0,12),(23685,18269,'Stu Miley',2,0),(23685,2233,'Dr. Julie McElroy',1,1),(23685,1241,'Monkeybone (voice)',2,2),(23685,58317,'Organ Donor Stu',2,3),(23685,4808,'Hypnos',2,4),(23685,16850,'Miss Kitty',1,5),(23685,21290,'Herb',0,6),(23685,52119,'Kimmy Miley',1,7),(23685,59410,'Head Surgeon',2,8),(23685,2395,'Death',1,9),(23685,68836,'Burger God Representative',2,10),(23685,68848,'Medusa',1,11),(23685,26295,'Alice',1,12),(23685,1216179,'Hutch',0,13),(23685,181090,'Clarissa',1,14),(23685,126583,'Dr. Edelstein',2,15),(23685,139680,'Nurse',1,16),(23685,90659,'Bill, Bazoom Toy Representative',0,17),(23685,9300,'Guest',1,18),(23685,1748760,'Ambulance Driver',0,19),(23685,7962,'Cop / Psycharist',2,20),(23685,1330751,'Surgeon in Nightmare',0,21),(23685,1406839,'Surgeon',2,22),(23685,1748761,'Surgeon',0,23),(23685,1041791,'Surgeon',0,24),(23685,154263,'Grim Reaper (voice)',2,25),(23685,1748762,'Reaper Who Takes Lulu',0,26),(23685,45386,'Lulu',1,27),(23685,1748763,'Reaper in Death\'s Office',0,28),(23685,157616,'Earl Biegler',2,29),(23685,98554,'Patron',2,30),(23685,1399874,'Arnold the Super Reaper',0,31),(23685,1231187,'Lizzie Borden',1,32),(23685,109667,'Rasputin',2,33),(23685,1227922,'Edgar Allan Poe',0,34),(23685,63547,'Typhoid Mary',1,35),(23685,1393539,'Man in the Dungeon',0,36),(23685,1744139,'Jack the Ripper',0,37),(23685,1312451,'Attila the Hun',2,38),(23685,1748764,'Model',1,39),(23685,1748765,'Model',1,40),(23685,1748766,'Model',1,41),(23685,1748767,'Model',1,42),(23685,1748768,'Model',1,43),(23685,1748769,'Model',1,44),(23685,1748770,'Model',1,45),(23685,1531529,'Museum Guard / Tuxedo Guard',0,46),(23685,151386,'Museum Dancer',0,47),(23685,29214,'Museum Dancer',1,48),(23685,14390,'Museum Dancer',1,49),(23685,1748771,'All-Girl Band Sax Player',1,50),(23685,1748772,'All-Girl Band Percussionist',0,51),(23685,1748773,'All-Girl Band Drummer',1,52),(23685,1556310,'All-Girl Band Member',1,53),(23685,1748774,'All-Girl Band Member',0,54),(23685,111213,'All-Girl Band Member',1,55),(23685,1748775,'All-Girl Band Member',1,56),(23685,1748776,'Korean Father',0,57),(23685,1445424,'Statue Woman',1,58),(23685,585767,'Bug Man',2,59),(23685,17005,'Yeti',2,60),(23685,81416,'Rat Guard',2,61),(23685,55963,'Centaur',0,62),(23685,12359,'Jumbo the Elephant God',2,63),(23685,77153,'Cyclops',2,64),(23685,1748777,'Community Service Cigarette Sweeper',0,65),(23685,1324275,'BBQ Pig',2,66),(23685,1748778,'Wasp Woman',1,67),(23685,1748779,'Betty the Bovine',1,68),(23685,1081822,'Scorpion',0,69),(23685,110276,'Assbackward',0,70),(23685,1748783,'Sea Monster',0,71),(23685,1748787,'Buffalo Kuchina',0,72),(23685,1560639,'Party Babe Hybrid #1',1,73),(23685,1584349,'Party Babe Hybrid #2',0,74),(23685,1748799,'Party Babe Hybrid #3',0,75),(23685,7911,'Streetsquash Rabbit (voice)',0,76),(23685,1224515,'Streetsquash Raccoon (voice)',0,77),(23685,1383860,'Streetsquash Snake (voice)',1,78),(23685,1453507,'Subramansa (voice)',0,79),(23685,51957,'Arnold the Super Reaper (voice)',0,80),(23685,1748801,'Community Service Cigarette Sweeper (voice)',0,81),(23685,1748802,'Assbackward (voice)',0,82),(23685,1748804,'Buffalo Kachina (voice)',0,83),(23685,97956,'BBQ Pig (voice)',2,84),(23685,64151,'Miss Hudiapp (voice)',2,85),(23685,1235947,'Fred',0,86),(23685,161254,'Detective #1',2,87),(23685,1332244,'Record Store Owner / Coma Victim',0,88),(23685,19159,'Death\'s Assistant',2,89),(23685,232518,'Reporter #1',0,90),(23685,1748806,'Visitor',0,91),(23685,174280,'Beautiful Fan',1,92),(23685,1748807,'Reporter #2',0,93),(23685,939534,'Lucky',2,94),(23685,19978,'Guest',2,95),(23685,1748808,'Janitor',0,96),(23685,1628613,'Bazoom Toy Rep',0,97),(23685,1748809,'Woman with Bat',1,98),(23685,553735,'Burger God Representative',0,99),(11866,6065,'Frank Towns',2,0),(11866,8169,'A.J.',2,1),(11866,1771,'Elliott',2,2),(11866,502,'Kelly',1,3),(11866,41419,'Ian',2,4),(11866,49623,'John Davis',2,5),(11866,2220,'Alex Rodney',2,6),(11866,86462,'Jeremy',0,7),(11866,16429,'Sammi',2,8),(11866,65728,'James Liddle',0,9),(11866,743,'Rady',2,10),(11866,1047709,'Dr. Gerber',0,11),(11866,1047710,'Newman',2,12),(11866,146352,'Kyle',2,13),(11866,930817,'Lead Smuggler',0,14),(11866,1277051,'Jeremy (as Kirk Jones)',2,15),(23629,70456,'Baby Doll',1,0),(23629,37260,'Sweet Pea',1,1),(23629,20089,'Rocket',1,2),(23629,67599,'Blondie',1,3),(23629,78324,'Amber',1,4),(23629,17832,'Madame Vera Gorski / Dr. Vera Gorski',1,5),(23629,25072,'Blue Jones',2,6),(23629,12371,'CJ',2,7),(23629,65717,'The Doctor / The High Roller',2,8),(23629,349,'The Wise Man / The General / The Bus Driver',2,9),(23629,27124,'The Stepfather / The Priest',2,10),(23629,52514,'The Cook',2,11),(23629,10874,'Danforth',2,12),(23629,229694,'Big Boss Thug',0,13),(23629,52703,'Mayor / Lighter Orderly',2,14),(23629,1079146,'Babydoll\'s Mother',0,15),(23629,1079147,'Babydoll\'s Sister',0,16),(23629,102744,'Lobotomy Nurse / High Roller Girl #1',1,17),(23629,449127,'Lobotomy Nurse / High Roller Girl #2',1,18),(23629,963118,'Tommy Soldier #1',2,19),(23629,58402,'Tommy Soldier #2',2,20),(23629,1079148,'Tommy Soldier #3',0,21),(23629,1566369,'Dancer',0,22),(23629,1366840,'Dancer',0,23),(23629,1566370,'Dancer',0,24),(23629,1294968,'Dancer',1,25),(23629,172809,'Guard / Chauffeur #1',0,26),(23629,25389,'Guard / Chauffeur #2',2,27),(23629,102742,'Earl',2,28),(23629,80344,'Grim Doctor',2,29),(23629,228892,'Cemetary Cop',0,30),(23629,25386,'Police Officer #1',2,31),(23629,1235591,'Police Officer #2',2,32),(23629,63566,'State Trooper #1',2,33),(23629,158390,'State Trooper #2',2,34),(10153,4483,'Dr. Norman Goodman',2,0),(10153,4430,'Dr. Elizabeth \'Beth\' Halperin',1,1),(10153,2231,'Dr. Harry Adams',2,2),(10153,9979,'Captain Harold C. Barnes',2,3),(10153,23626,'Dr. Ted Fielding',2,4),(10153,15758,'Alice \'Teeny\' Fletcher',1,5),(10153,1525534,'Jane Edmunds',0,6),(10153,168702,'Helicopter Pilot',2,7),(10153,132434,'Seaman',2,8),(10153,25544,'O.S.S.A. Instructor',2,9),(10153,172677,'O.S.S.A. Official',2,10),(10153,75205,'O.S.S.A. Official',2,11),(20829,19292,'George Simmons',2,0),(20829,19274,'Ira Wright',2,1),(20829,41087,'Laura',1,2),(20829,8783,'Clarke',2,3),(20829,21007,'Leo Koenig',2,4),(20829,17881,'Mark Taylor Jackson',2,5),(20829,150,'Chuck',2,6),(20829,86626,'Randy',2,7),(20829,119592,'Daisy Danby',1,8),(20829,41090,'Mable',1,9),(20829,963429,'Ingrid',1,10),(20829,211662,'Dawn',0,11),(20829,967453,'Mandy',1,12),(20829,1238,'Dr. Lars',2,13),(20829,123728,'Dr. Stevens',2,14),(20829,170759,'Comedy & Magic Manager',0,15),(20829,97351,'Himself',2,16),(20829,781,'Himself',2,17),(20829,552139,'Himself',2,18),(20829,77075,'Himself',0,19),(20829,65923,'Himself',2,20),(20829,325,'Himself',2,21),(20829,7404,'Herself',1,22),(20829,15757,'Himself',2,23),(20829,1569834,'Himself',0,24),(20829,559654,'Himself',2,25),(20829,12826,'Himself',2,26),(20829,43120,'Himself',2,27),(20829,552242,'Himself',0,28),(20829,161927,'Herself',1,29),(20829,1217267,'Himself',0,30),(20829,312,'Himself',2,31),(20829,1876895,'Himself',0,32),(20829,85363,'Himself',2,33),(20829,59405,'Himself',2,34),(20829,1876971,'Himself',0,35),(20829,109799,'Himself',0,36),(20829,1528912,'Himself',0,37),(20829,1876997,'Herself',0,38),(20829,180778,'Himself',2,39),(20829,74537,'Rachel',1,40),(20829,1242819,'George\'s Sister',1,41),(20829,14102,'George\'s Dad',2,42),(20829,180422,'George\'s Agent',2,43),(20829,129750,'MySpace Escort',2,44),(20829,1386927,'Yo Teach Cast Member',2,45),(20829,1445772,'Yo Teach Cast Member',2,46),(20829,115128,'Yo Teach Cast Member',2,47),(20829,1227098,'Yo Teach Cast Member',1,48),(20829,1876899,'Yo Teach Cast Member',0,49),(20829,1449144,'Yo Teach Cast Member',0,50),(20829,1876905,'Yo Teach Cast Member',0,51),(20829,115803,'Yo Teach Cast Member',1,52),(20829,75356,'Yo Teach Principal',2,53),(20829,54708,'Miss Pruitt on Yo Teach',1,54),(20829,200163,'Bonita',0,55),(20829,54720,'Deli Manager',2,56),(20829,15033,'Re-Do Guy',2,57),(20829,1876924,'College Guy with Camera',0,58),(20829,996242,'College Guy with Camera',2,59),(20829,117775,'Mom with Camera',1,60),(20829,1876932,'Family with Camera',0,61),(20829,1833716,'Family with Camera',0,62),(20829,1576633,'Magician',0,63),(20829,1243656,'Chuck\'s Wife',0,64),(20829,167287,'Private Jet Pilot',2,65),(20829,552254,'San Francisco Theatre Manager',0,66),(20829,57194,'Paparazzi at Medical Center',2,67),(20829,448526,'Paparazzi at Medical Center',2,68),(20829,83350,'Emcee at Improv',2,69),(20829,1876967,'Deli Customer',0,70),(20829,127727,'Hot Dog-Eating Champion\'s Son',2,71),(20829,221945,'Hot Dog-Eating Co-Star',0,72),(20829,1852347,'George\'s Mom',0,73),(20829,88525,'George\'s Brother-In-Law',0,74),(20829,1876992,'George\'s Young Nephew',0,75),(20829,568321,'Comedy & Magic Club Audience',0,76),(20829,159907,'Comedy & Magic Club Audience',2,77),(10808,776,'Dr. John Dolittle',2,0),(10808,31029,'Lisa Dolittle',1,1),(10808,66896,'Charisse Dolittle',1,2),(10808,31031,'Maya Dolittle',1,3),(10808,16855,'Girl Bear Cub',1,4),(10808,31531,'Seeing Eye Dog / Wassup Fish / Mouse (voice)',0,5),(10808,28637,'Eugene Wilson',2,7),(10808,23970,'Secretary',1,8),(10808,51547,'Eldon',2,9),(10808,1100,'White Wolf (voice) (archive sound) (uncredited)',2,10),(10808,43120,'Lennie the Weasel (voice)',2,11),(10808,16484,'Squirrel (voice)',1,12),(10808,212,'Dog / Animal Groupie #2 (voice)',2,13),(10808,52697,'Giraffe (voice)',1,14),(10808,51944,'Sonny (voice)',2,15),(10808,6213,'Bandit / Forest Animal / Animal Groupie #1 (voice)',0,16),(10808,78798,'Male Tortoise (voice)',2,17),(10808,5726,'Zoo Bear #1 (voice)',2,18),(10808,78619,'Bird (voice)',2,19),(10808,21731,'Bird (voice)',2,20),(10808,16855,'Girl Bear Cub (voice)',1,21),(10808,51391,'Boy Bear Cub (voice)',2,22),(10808,59410,'Animal Groupie #4 / Forest Animal / Dog (voice)',2,23),(10808,14784,'Rat #2 (voice)',2,24),(10808,75316,'School Fish #1 (voice)',0,25),(10808,56105,'Female Tortoise (voice)',0,26),(10808,56902,'Zoo Bear #2 (voice)',2,27),(10808,14406,'Ava (voice)',1,28),(10808,1428580,'Drunk Monkey (uncredited)',0,29),(10808,7166,'Riley / Alligator',2,30),(10808,1212758,'Judge B. Duff',0,31),(10808,4004,'Joe Potter',2,32),(10808,60603,'Logger / Nature Show Narrator',2,33),(10808,236327,'Animal Control Officer / Dog / Animal Groupie #3 / Forest Animal (voice)',2,34),(10808,1590757,'Woman',1,35),(10808,1786577,'Farmer',2,36),(10808,78037,'Farm Worker',0,37),(10808,1744176,'Yuppie Man',0,38),(10808,1215291,'Newscaster',1,39),(10808,93846,'Bear Announcer',2,40),(10808,1786591,'Shamu Trainer',1,41),(10808,1141373,'Klondike Dave Delivery Man',0,42),(10808,1786592,'Waitress',1,43),(10808,981323,'Chihuahua Lady',1,44),(10808,1763099,'Guy Throwing Frisbee',0,45),(10808,1786598,'Girl Throwing Frisbee',1,46),(10808,6564,'Governor of California',2,47),(10808,1216485,'Eric',2,48),(11086,206,'Peter Appleton',2,0),(11086,2641,'Harry Trimble',2,1),(11086,8332,'Adele Stanton',1,2),(11086,28010,'Doc Stanton',2,3),(11086,11066,'Congressman Doyle',2,4),(11086,12438,'Elvin Glyde',2,5),(11086,12122,'Kevin Bannerman',2,6),(11086,12645,'Mayor Ernie Cole',0,7),(11086,15011,'Sheriff Cecil Coleman',2,8),(11086,97266,'Emmett Smith',2,9),(11086,6577,'Stan Keller',2,10),(11086,97267,'Irene Terwilliger',1,11),(11086,65797,'Mabel',1,12),(11086,1990,'Carl Leffert',0,13),(11086,97268,'Bob Leffert',2,14),(11086,11357,'Roland',2,15),(11086,1892,'Luke Trimble (voice)',2,16),(10477,65561,'Jimmy Bly',2,0),(10477,2692,'Demille Bly',2,1),(10477,1844,'Beau Brandenburg',2,2),(10477,13241,'Sophia Simone',1,3),(10477,16483,'Joe Tanto',2,4),(10477,16475,'Carl Henry',2,5),(10477,43372,'Lucretia Clan',1,6),(10477,11150,'Cathy Heguy',1,7),(10477,66143,'Memo Moreno',0,8),(10477,15011,'Crusher',2,9),(10477,52334,'Nina',0,10),(10477,986096,'Ingrid',1,11),(10477,1074687,'Team Owner',0,12),(10477,1074688,'Team Manager',0,13),(10477,193040,'Commentator #1',2,14),(10477,16938,'Replacement Driver',2,15),(10477,122151,'Dealership Reporter',2,16),(16869,287,'Lieutenant Aldo The Apache Raine',2,0),(16869,19119,'Shosanna Dreyfus / Emmanuelle Mimieux',1,1),(16869,27319,'SS Colonel Hans Landa',2,2),(16869,16847,'Sergeant Donny The Bear Jew Donowitz',2,3),(16869,17288,'Lieutenant Archie Hicox',2,4),(16869,9824,'Bridget von Hammersmark',1,5),(16869,3872,'Private First Class Fredrick Zoller',2,6),(16869,1844,'Sergeant Hugo Stiglitz',2,7),(16869,32823,'Corporal Wilhelm Wicki',0,8),(16869,51636,'Marcel',0,9),(16869,107770,'Private First Class Smithson The Little Man Utivich',2,10),(16869,23286,'Private First Class Omar Ulmer',0,11),(16869,6091,'Major Dieter Hellstrom',0,12),(16869,81125,'Perrier LaPadite',0,13),(16869,41965,'Joseph Goebbels',2,14),(16869,49056,'Adolf Hitler',2,15),(16869,12073,'General Ed Fenech',2,16),(16869,2539,'Francesca Mondino',1,17),(16869,121529,'Charlotte LaPadite',1,18),(16869,49487,'Sergeant Werner Rachtman',2,19),(16869,31663,'Staff Sergeant Wilhelm / Pola Negri',2,20),(16869,8229,'Winston Churchill',2,21),(16869,58507,'Private First Class Hirschberg',2,22),(16869,85236,'Private First Class Andy Kagan',2,23),(16869,58744,'Private First Class Michael Zimmerman',2,24),(16869,36463,'German Soldier / Winnetou',2,25),(16869,24061,'German Female Soldier / Beethoven',1,26),(16869,1052284,'German Soldier / Edgar Wallace',2,27),(16869,44651,'German Soldier / Mata Hari',2,28),(16869,7803,'Proprietor Eric',2,29),(16869,236647,'Mathilda',0,30),(16869,122416,'Julie LaPadite',0,31),(16869,1471993,'Suzanne LaPadite',1,32),(16869,1088,'CPT. Wolfgang',2,33),(16869,20259,'Babette',1,34),(16869,40718,'Herrman #1',0,35),(16869,1643968,'Herrman #3',2,36),(16869,65054,'General Schonherr',2,37),(16869,35085,'Old French Veterinarian',0,38),(16869,550554,'Hellstrom\'s Driver / Nazi Usher #1',2,39),(16869,8432,'Gaspar',2,40),(16869,147446,'Private Butz / Walter Frazer',2,41),(16869,107771,'PFC. Simon Sakowitz',2,42),(16869,48828,'Emil Jannings',2,43),(16869,128095,'Jakob Dreyfus',2,44),(16869,7161,'Miriam Dreyfus',1,45),(16869,1471995,'Bob Dreyfus',2,46),(16869,1471996,'Amos Dreyfus',0,47),(16869,20021,'German Company SGT.',2,48),(16869,35953,'Maxim\'s Waiter',0,49),(16869,1471997,'General Frank',0,50),(16869,1471998,'Motorcycle Rider #1',2,51),(16869,40742,'Motorcycle Rider #2',0,52),(16869,30044,'American Colonel',2,53),(16869,50739,'Himself',2,54),(16869,278152,'Kliest Voice (voice)',0,55),(16869,2231,'Narrator (uncredited / voice)',2,56),(16869,22630,'Usher #2 (uncredited)',2,57),(16869,1129140,'German Movie Star (uncredited)',1,58),(16869,5311,'German Official (voice) (uncredited)',0,59),(16869,1206190,'German Soldier (uncredited)',0,60),(16869,175330,'German Civilian (uncredited)',0,61),(16869,1307787,'Military Attachu00e9 (uncredited)',0,62),(16869,104246,'SS Major (uncredited)',2,63),(16869,1037,'OSS Commander Who Agrees to Deal (voice) (uncredited)',2,64),(16869,1314543,'Nazi Theatre Attendee (uncredited)',2,65),(16869,59287,'Gestapo Major (uncredited)',2,66),(16869,138,'First Scalped Nazi / American Soldier in \'Pride of Nation\' (uncredited)',2,67),(16869,146065,'French Waiter (uncredited)',0,68),(16869,1693466,'German Female Soldier (uncredited)',1,69),(16869,1484919,'Cinema Guest (uncredited)',1,70),(23398,69899,'Toby',2,0),(23398,212,'Ian',2,1),(23398,11662,'Dave',2,2),(23398,15033,'Alvin (voice)',2,3),(23398,5661,'Simon (voice)',2,4),(23398,49915,'Theodore (voice)',2,5),(23398,56322,'Eleanor (voice)',1,6),(23398,1772,'Jeanette (voice)',1,7),(23398,18979,'Brittany (voice)',1,8),(23398,61980,'Dr. Rubin',1,9),(23398,106934,'Julie',0,10),(23398,106935,'Aunt Jackie',1,11),(23398,85140,'Ryan',2,12),(23398,77196,'Xander',2,13),(23398,85176,'Becca',1,14),(23398,1253199,'Valentina',1,15),(23398,1115336,'Cheerleader (uncredited)',1,16),(10590,2461,'Lt. Col. Hal Moore',2,0),(10590,17141,'Maj. Bruce \'Snake\' Crandall',2,1),(10590,289,'Julie Moore',1,2),(10590,16431,'Sgt. Maj. Basil Plumley',2,3),(10590,21594,'2nd Lt. Jack Geoghegan',2,4),(10590,41292,'Barbara Geoghegan',1,5),(10590,12834,'Joe Galloway',2,6),(10590,9048,'Capt. Tom Metsker',2,7),(10590,46772,'2nd Lt. Henry Herrick',2,8),(10590,13657,'Capt. Tony Nadal',2,9),(10590,65715,'1st Lt. Charlie Hastings',2,12),(10590,57127,'Sp4 Galen Bungum',2,13),(10590,65716,'Sp4 Robert Ouellette',2,14),(10590,65717,'Capt. Matt Dillon',2,15),(10590,21043,'Capt. Robert Edwards',2,16),(10590,65719,'Sp4 Russell Adams',2,17),(10590,65720,'Capt. Ed \'Too Tall\' Freeman',2,18),(10590,6365,'Sp4 Bill Beck',2,19),(10590,35053,'Lt. Col. Nguyen Huu An',2,20),(10590,43858,'Sgt. Ernie Savage',2,21),(10590,116278,'Pfc. Jimmy Nakayama',2,22),(10590,1232581,'Cecile Moore',0,23),(10590,87280,'Catherine Metsker',1,24),(10590,172200,'Alma Givens',0,25),(10590,41745,'Maj. Gen. Henry Kinnard',0,26),(10590,1212551,'Sfc. Carl Palmer',0,27),(10590,1170994,'Sp5 Charlie \'Doc\' Lose',2,28),(10590,154680,'Capt. Robert \'Doc\' Carrera',2,29),(10590,156616,'Col. Tim Brown',2,30),(10590,87957,'Diplomatic Spook',2,31),(10590,99235,'Army Intelligence Officer',2,32),(10590,117437,'General in Hallway',0,33),(10590,1479429,'Sfc. Bob White, Mortar Sergeant',0,34),(10590,43774,'Medevac CO',2,35),(10590,428,'Cab Driver',2,36),(10590,20480,'Daughter Julie Moore',1,37),(10590,127725,'Steve Moore',2,38),(10590,84482,'David Moore',2,39),(10590,95852,'Mr. Nik',2,40),(10590,85921,'NVA Officer',0,41),(10590,216490,'Reporter',0,42),(10590,65709,'Edwards\' Radio Operator',0,43),(10590,945810,'Lt. Cochran (uncredited)',2,44),(10590,1488336,'Sec. of Defense Robert McNamara (uncredited)',2,45),(10590,16580,'NVA Officer (uncredited)',2,46),(10590,1226026,'Jump Coordinator (uncredited)',0,47),(10590,583457,'French Officer (uncredited)',2,48),(10590,1345177,'Army Wife (uncredited)',0,49),(10590,200900,'Private Davey (uncredited)',0,50),(10590,1310385,'Sergeant (uncredited)',0,51),(10590,1381493,'Pvt. Soprano (uncredited)',0,52),(10590,127451,'Young NVA Lieutenant (uncredited)',2,53),(10590,102567,'Lt. Col. List (uncredited)',2,54),(10590,1223006,'White Private (uncredited)',0,55),(10395,514,'Will Randall',2,0),(10395,290,'Raymond Alden',2,1),(10395,13548,'Stewart Swinton',2,2),(10395,1160,'Laura',1,3),(10395,18794,'Charlotte Randall',1,4),(10395,28633,'Detective Bridger',2,5),(10395,20300,'Mary',1,6),(10395,11076,'Roy',2,7),(10395,11851,'Dr. Vijay Alezais',2,8),(10395,12122,'Doctor',2,9),(10395,55643,'Maude',1,10),(10395,28004,'Detective Wade',2,11),(10395,1986,'George',2,12),(10395,19,'Party Guest',1,13),(10395,14409,'Cop',2,14),(33909,3392,'Gordon Gekko',2,0),(33909,10959,'Jacob Moore',2,1),(33909,16851,'Bretton James',2,2),(33909,36662,'Winnie Gekko',1,3),(33909,8924,'Lewis Zabel',2,4),(33909,4038,'Sylvia Moore',1,5),(33909,3265,'Julie Steinhardt',2,6),(33909,20491,'Audrey',1,7),(33909,76512,'Jack Schwietzer',2,8),(33909,118753,'Jake\'s friend at club',2,9),(33909,60118,'Bill Clark',2,10),(33909,115335,'Office Blogger',1,11),(33909,71810,'Natasha',0,12),(33909,118755,'Clark Wildman',0,13),(33909,118757,'Chuckie',2,14),(33909,6952,'Bud Fox',2,15),(33909,118752,'Churchill Schwartz Trader',1,16),(33909,53066,'Diego',2,17),(33909,1417527,'VIP Party Patron',0,18),(33909,1129795,'Reporter',0,19),(10592,62,'Col. William A. McNamara',2,0),(10592,72466,'Lt. Thomas W. Hart',2,1),(10592,18288,'Lt. Lincoln A. Scott',2,2),(10592,15320,'Col. Werner Visser',2,3),(10592,6614,'Staff Sgt. Vic W. Bedford',2,4),(10592,3900,'Capt. Peter A. Ross',2,5),(10592,25868,'Lt. Lamar T. Archer',0,6),(10592,51792,'Sgt. Carl S. Webb',2,7),(10592,8192,'Col. J.M. Lange',2,8),(10592,51381,'Pfc. W. Roy Potts',2,9),(10592,5090,'Pvt. Daniel E. Abrams',2,10),(10592,27773,'Pvt. Lewis P. Wakely',2,11),(10592,65726,'Pfc. Dennis A. Gerber',2,12),(10592,65727,'Capt. R.G. Sisk',0,13),(10592,65728,'Cpl. Joe S. Cromin',0,14),(10592,65730,'Maj. Joe Clary',2,15),(10592,65729,'Pvt. Bert D. \'Moose\' Codman',2,16),(10592,65732,'Pvt. G.H. \'Cookie\' Bell',2,17),(10592,65733,'Cpl. D.F. Lisko',0,18),(10592,65731,'as Cpl. B.J. \'Depot\' Guidry',2,19),(11535,21594,'Jonathan Cross',2,0),(11535,36424,'Marcus Ridley',2,1),(11535,11008,'Aurora',1,2),(11535,5471,'Sanjay',2,3),(11535,1003,'Alexi Petrovich',2,4),(11535,77351,'Denekin',2,6),(11535,58805,'Serokin',2,7),(11535,28871,'Yuri Kotlev',2,8),(11535,142159,'Assistant Gold Coach',2,9),(11535,106460,'Coach Olga',1,10),(11535,451,'Red Team #9',0,11),(11535,567257,'English Sports Announcer',0,12),(11535,1536858,'Bar Patron',0,13),(11535,52366,'Halloran',2,14),(11535,30436,'Katya',1,15),(11535,1470303,'Red Team #7',0,16),(11535,113208,'Red Team #12',0,17),(11535,1224673,'Red Team #16 - U Chow',2,18),(11535,1674890,'Red Team #28',0,19),(11535,1674892,'Red Team #39 - Toba Maheota',0,20),(11535,1282744,'Red Team #68 - Rabbit',0,21),(11535,1674894,'Red Team Player',0,22),(11535,1237062,'Red Team Player',2,23),(11535,1274904,'Red Team Player',0,24),(11535,119483,'Red Team Player',0,25),(11535,1674898,'Red Team Player',0,26),(11535,1296930,'Red Team Player',1,27),(11535,64674,'Michael \'The Assassin\'',2,28),(11535,1237738,'Red Team Player',0,29),(11535,77271,'Rock Singer',1,30),(11535,17630,'Starter',2,31),(11535,1674904,'Photographer',0,32),(11535,181010,'Foreign Guest',0,33),(11535,216224,'Eskimo',0,34),(11535,930329,'Gold Team Thug',0,35),(11535,1674906,'Club Bartender',0,36),(11535,1674908,'Club VIP',0,37),(11535,1583695,'Club VIP',2,38),(11535,19902,'Gold Coach',2,39),(11535,1003550,'German Guest',2,40),(11535,1674910,'Herzen',0,41),(11535,559897,'Komo',0,42),(11535,170173,'Toll',0,43),(11535,1674914,'Miner',0,44),(11535,1674923,'Ally',2,45),(11535,1233146,'Borges',2,46),(11535,55437,'Chowler',2,47),(11535,1674924,'Chowler\'s Assistant',0,48),(11535,163669,'Director',0,49),(11535,198707,'Tahli',0,50),(11535,1198964,'American Media Mogul',0,51),(11535,1239345,'Russian Translator',1,52),(11535,1674934,'Mandarin Translator',2,53),(11535,1674935,'African Sports Announcer',0,54),(11535,209539,'Arabic Sports Announcer',0,55),(11535,133957,'Chinese Sports Announcer',2,56),(11535,171946,'French Sports Announcer',0,57),(11535,1674936,'German Sports Announcer',0,58),(11535,128154,'Indian Sports Announcer',2,59),(11535,1132170,'Italian Sports Announcer',0,60),(11535,122268,'Russian Sports Announcer',2,61),(11535,1348733,'Russian Sports Announcer',0,62),(11535,84248,'Serbo-Croatian Sports Announcer',2,63),(11535,185165,'Spanish Sports Announcer',2,64),(11535,1674949,'Russian Doctor',0,65),(11535,1674950,'Club Galore Twin',0,66),(11535,1674951,'Club Galore Twin',0,67),(11535,1674952,'Petrovich\'s Girlfriend',0,68),(11535,129419,'Petrovich\'s Heavy',0,69),(11535,1197789,'Petrovich\'s Bodyguard',0,70),(11535,1674954,'Petrovich\'s Bodyguard',0,71),(11535,1046057,'Petrovich\'s Bodyguard',0,72),(11535,1674955,'Petrovich\'s Bodyguard',0,73),(11535,1674956,'VIP',0,74),(11535,1674957,'Italian VIP',0,75),(11535,1674958,'VIP Booth Judge (as Tom Karle)',0,76),(11535,1674960,'Patriarch',0,77),(11535,1674961,'English Announcer\'s Assistant',0,78),(11535,1674975,'Technician',0,79),(11535,1674976,'Technician',0,80),(11535,1674978,'Cigarette Girl',0,81),(11535,1674979,'Journalist',0,82),(11535,1674980,'Journalist',0,83),(11535,1674982,'Journalist',0,84),(11535,1674985,'Journalist',0,85),(11535,1674986,'Asian Director',0,86),(11535,1674990,'Arabic Man',0,87),(11535,64186,'Home Band Keyboarder',0,88),(11535,554013,'Home Band Keyboarder',0,89),(11535,92311,'Slipknot Band Member',0,90),(11535,92313,'Slipknot Band Member',0,91),(11535,92314,'Slipknot Band Member',0,92),(11535,92315,'Slipknot Band Member',0,93),(11535,92316,'Slipknot Band Member',0,94),(11535,92318,'Slipknot Band Member',0,95),(11535,92319,'Slipknot Band Member',2,96),(11535,92320,'Slipknot Band Member',0,97),(11535,92312,'Slipknot Band Member',0,98),(11535,1675033,'Japanese Announcer',0,99),(11535,337009,'Aurora (voice)',0,100),(10550,3131,'Agent Jeremiah Ecks',2,0),(10550,140,'Agent Sever',1,1),(10550,2518,'Robert Gant',2,2),(10550,11007,'A.J. Ross',2,3),(10550,10680,'Rayne Gant',1,4),(11258,192,'Jim',2,0),(11258,2224,'Tom',2,1),(11258,1811,'Sheriff',2,2),(11258,6613,'Karen',1,3),(11258,68812,'Onkel Charlie',2,4),(11258,9175,'Mr. Mehlor',2,5),(11258,95233,'Phil',2,6),(11258,49424,'Kenny',2,7),(11258,158452,'Ray',2,8),(11258,6576,'Wayne Bryce',2,9),(12610,2632,'Osmosis Jones (voice)',2,0),(12610,2975,'Thrax (voice)',2,1),(12610,11076,'Drix (voice)',2,2),(12610,33285,'Leah (voice)',1,3),(12610,1532,'Frank Detomello',2,4),(12610,28640,'Mrs. Boyd',1,5),(12610,1748,'Mayor Phlegmming (voice)',2,6),(12610,6159,'Tom Colonic (voice)',2,7),(24021,37917,'Isabella \'Bella\' Swan',1,0),(24021,11288,'Edward Cullen',2,1),(24021,84214,'Jacob Black',2,2),(24021,45827,'Alice Cullen',1,3),(24021,56857,'Carlisle Cullen',2,4),(24021,21029,'Charlie Swan',2,5),(24021,53755,'Esme Cullen',1,6),(24021,59252,'Rosalie Hale',1,7),(24021,34502,'Emmett Cullen',2,8),(24021,84215,'Jasper Hale',2,9),(24021,84225,'Billy Black',2,10),(24021,84223,'Jessica Stanley',1,11),(24021,56676,'Mike Newton',2,12),(24021,84224,'Angela Weber',1,13),(24021,18997,'Victoria Sutherland',1,14),(24021,65225,'Eric Yorkie',1,15),(24021,109438,'Riley Biers',2,16),(24021,501,'Jane Volturi',1,17),(24021,25836,'Renu00e9e Dwyer',0,18),(24021,52414,'Alec Volturi',2,19),(24021,121868,'Seth Clearwater',0,20),(24021,87310,'Leah Clearwater',1,21),(24021,84219,'Sam Uley',2,22),(24021,8338,'Bree Tanner',1,23),(24021,1655017,'Quil Ateara',2,24),(24021,84217,'Paul Lahote',2,25),(24021,84218,'Embry Call',0,26),(24021,84216,'Jared Cameron',2,27),(24021,54203,'Emily Young',1,28),(24021,5887,'Maria',1,29),(24021,60715,'Lucy',1,30),(24021,54738,'Royce King',2,31),(24021,84222,'Felix Volturi',2,32),(24021,84221,'Demitri Volturi',0,33),(24021,103285,'Nettie',1,34),(24021,173866,'Sue Clearwater',1,35),(24021,1366713,'John',0,36),(24021,20380,'Mr. Biers',2,37),(24021,1219552,'Mrs. Biers',1,38),(24021,158465,'Taha Aki',2,39),(24021,1714270,'The Third Wife',0,40),(24021,58402,'Newborn Boy',2,41),(11371,380,'Nick Wells',2,0),(11371,819,'Jack Teller',2,1),(11371,3084,'Max',2,2),(11371,9780,'Diane',1,3),(11371,1215283,'Danny',0,4),(11371,86919,'Steven',2,5),(11371,41746,'Laurent',2,6),(11371,7013,'Sapperstein\'s Cousin',2,8),(11371,15439,'Burt',2,9),(11371,543212,'Jean-Claude',0,10),(11371,146092,'Albert',0,11),(11371,173835,'Sapperstein',0,12),(11371,239960,'Woman in Study',0,13),(11371,1696124,'Tuan',0,14),(11371,1696125,'Cop',0,15),(11371,43612,'Drunk',2,16),(11371,936196,'Storekeeper',1,17),(11371,1696131,'Tony',2,18),(11371,1684843,'Philippe',2,19),(11371,190060,'Ironclad Tech',2,20),(11371,129419,'Thug',0,21),(11371,1246316,'Special Appearance',0,22),(11371,1696190,'Special Appearance',0,23),(11371,125837,'Andru00e9',2,24),(20352,4495,'Gru (voice)',2,0),(20352,41088,'Vector (voice)',2,1),(20352,59919,'Dr. Nefario (voice)',2,2),(20352,5823,'Gru\'s Mother (voice)',1,3),(20352,21200,'Mr. Perkins (voice)',2,4),(20352,41091,'Miss Hattie (voice)',1,5),(20352,17743,'Margo (voice)',1,6),(20352,124750,'Edith (voice)',1,7),(20352,122851,'Agnes (voice)',1,8),(20352,124747,'Tim the Minion / Bob the Minion / Mark the Minion / Phil the Minion / Stuart the Minion (voice)',2,9),(20352,124748,'Dave the Minion (voice)',0,10),(20352,55936,'Jerry the Minion (voice)',0,11),(20352,58737,'Carnival Barker / Tourist Dad (voice)',2,12),(20352,62862,'Fred McDade (voice)',2,13),(20352,125167,'Tourist mom (voice)',1,14),(20352,80595,'Anchorman (voice)',2,15),(20352,83586,'Talk Show Host (voice)',2,16),(20352,52360,'Egyptian Guard (voice)',2,17),(20352,1444032,'Additional Voices (voice)',0,18),(20352,194804,'Additional Voices (voice)',1,19),(20352,1444033,'Additional Voices (voice)',0,20),(20352,113916,'Additional Voices (voice)',2,21),(20352,64449,'Additional Voices (voice)',0,22),(20352,571265,'Additional Voices (voice)',1,23),(20352,950773,'Additional Voices (voice)',0,24),(20352,1214171,'Additional Voices (voice)',0,25),(20352,1444259,'Additional Voices (voice)',0,26),(20352,1444262,'Additional Voices (voice)',0,27),(20352,1313638,'Additional Voices (voice)',0,28),(20352,1444263,'Additional Voices (voice)',0,29),(20352,1216343,'Additional Voices (voice)',0,30),(20352,105830,'Additional Voices (voice)',2,31),(20352,1234237,'(voice) (uncredited)',0,32),(11517,10814,'John',2,0),(11517,57755,'Charlie',2,1),(11517,16866,'Grace Santiago',1,2),(11517,9287,'Donald Patterson',2,3),(11517,2955,'Torch',2,4),(11517,4887,'Riley',2,5),(11517,32287,'Mr. Brown',2,6),(11517,33658,'Kowalski',2,7),(11517,106791,'Woman on Platform',0,8),(11517,47774,'Gambler',2,9),(11517,15029,'Dooley',2,10),(11517,5502,'Crash Train Motorman',2,11),(11517,203801,'Crosswalk Child',1,12),(11517,15372,'Guard',2,13),(11517,1811956,'Decoy Cop',2,14),(26428,3293,'Hypatia',1,0),(26428,2978,'Davus',2,1),(26428,25072,'Orestes',2,2),(26428,766,'Ammonius',2,3),(26428,2369,'Theon',2,4),(26428,17283,'Synesius',2,5),(26428,117528,'Aspasius',0,6),(26428,124398,'Cyril',0,7),(26428,120833,'Olympius',2,8),(26428,369256,'Isidorus',2,9),(26428,121546,'Theophilus',2,10),(26428,77820,'Medorus',2,11),(26428,109383,'Hierax',2,12),(26428,312548,'Pierre',0,13),(26428,574378,'Sidonia',1,14),(26428,968928,'Hesiquius',2,15),(26428,968929,'Prefect Evragius',2,16),(26428,195232,'Pagan Rival',0,17),(26428,2247,'Heladius Dignitary',2,18),(26428,36664,'Dignitary',2,19),(26428,548417,'Dignitary',0,20),(26428,1069851,'Hypatia\'s Disciple',2,21),(26428,1205982,'Hypatia\'s disciple',0,22),(26428,1205983,'Hypatia\'s Disciple',0,23),(26428,84298,'Student',0,24),(26428,1205987,'Parabalano',0,25),(26428,1205988,'Parabolano',0,26),(26428,1205989,'Philosopher',0,27),(26428,1205990,'Philosopher',0,28),(26428,1205991,'Old Philosopher',0,29),(26428,1205992,'Rabbi',0,30),(26428,1205994,'Pagan Priest',0,31),(26428,1205995,'Troublemaker',0,32),(26428,1205998,'Roman Officer',0,33),(26428,1206002,'Bodyguard',0,34),(26428,1206004,'Bodyguard',0,35),(26428,1206006,'Bodyguard',0,36),(26428,1114427,'Crier via Canopica',0,37),(26428,1206007,'Old Jewish Woman',0,38),(26428,109383,'Parabolano',2,39),(26428,1206008,'Child',0,40),(26428,1206009,'Christian',0,41),(26428,1206010,'Christian student',0,42),(26428,1206011,'Christian Woman',0,43),(26428,1206012,'Deacon',0,44),(26428,991203,'Deacon',0,45),(26428,143973,'Deacon',0,46),(26428,1206013,'Frightened Hellenic Man',0,47),(26428,1206014,'Frightened Hellenic Woman',0,48),(26428,1206015,'Alarmed Neighbour',0,49),(26428,1206016,'Guard',0,50),(26428,1206017,'Guard',0,51),(26428,1206018,'Informer',0,52),(26428,1206019,'Roman officer',0,53),(26428,1206020,'Roman Officer',0,54),(26428,1206021,'Ship\'s Captain',0,55),(26428,1206022,'Slave',0,56),(26428,1206023,'Surgeon',0,57),(26428,1206024,'Suspicious Jew',0,58),(26428,1206025,'Woman with figs',0,59),(26428,1206026,'Stallkeeper',0,60),(26428,185321,'Customer',0,61),(26428,1206027,'Rabbi',0,62),(26428,1206028,'Charition',0,63),(26428,121549,'Charition\'s Brother',0,64),(26428,1206029,'Indian King',0,65),(26428,1206030,'Clown',0,66),(26428,1206031,'Crier',0,67),(26428,1206032,'Jewish Girl (uncredited)',0,68),(26428,1206033,'Student (uncredited)',0,69),(26428,1206034,'Roman Officer (uncredited)',0,70),(26428,1206035,'Dead Jew (uncredited)',0,71),(26428,1206036,'Parabalano Fighter (uncredited)',0,72),(12113,6193,'Roger Ferris',2,0),(12113,934,'Ed Hoffman',2,1),(12113,2983,'Hani',2,2),(12113,762,'Omar Sadiki',2,3),(12113,16358,'Garland',0,4),(12113,33241,'Holiday',2,5),(12113,43436,'Nizar',2,6),(12113,229932,'Aisha',1,7),(12113,25072,'Bassam',2,8),(12113,16607,'Al-Saleem',2,9),(12113,77496,'Skip',2,10),(12113,25087,'Mustafa Karami',2,11),(12113,544186,'Marwan',0,12),(12113,77498,'Aisha\'s Sister Cala',1,13),(12113,544187,'Aisha\'s Nephew Rowley',0,14),(12113,41645,'Bessam\'s wife',0,15),(12113,58787,'Hoffman\'s Wife',1,16),(12113,82809,'Hani\'s Girlfriend in Bar',1,17),(12113,1634315,'Manchester News Reporter',0,18),(12133,23659,'Brennan Huff',2,0),(12133,4764,'Dale Doback',2,1),(12133,2453,'Nancy Huff',1,2),(12133,28633,'Dr. Robert Doback',2,3),(12133,36801,'Derek',2,4),(12133,17696,'Alice',1,5),(12133,71402,'Denise',1,6),(12133,71403,'Randy',2,7),(12133,19274,'Sporting Goods Manager',2,8),(12133,141532,'Chris Gardoki',0,9),(12133,964809,'Tommy',0,10),(12133,1186229,'Nurse',0,11),(12133,170759,'Blind Man',0,12),(12133,1003061,'Featured Dancer',1,13),(12133,59841,'Drunk Corporate Guy',2,14),(12133,83586,'Employment Agent',2,15),(11820,1204,'Katherine Ann Watson',1,0),(11820,205,'Betty Warren',1,1),(11820,12041,'Joan Brandwyn',1,2),(11820,1579,'Giselle Levy',1,3),(11820,417,'Constance Baker',1,4),(11820,17052,'Tommy Donegal',2,5),(11820,17287,'Bill Dunbar',2,6),(11820,1067581,'Louise',0,7),(11820,6238,'Amanda Armstrong',1,8),(11820,4726,'Nancy Abbey',1,9),(11820,111164,'Wedding Singer',0,10),(11820,4888,'Art History Student',1,11),(11820,1667753,'Girl at the Station',1,12),(11820,21134,'Paul Moore',2,13),(11820,41293,'President Jocelyn Carr',1,14),(11820,56694,'Mrs. Warren',1,15),(11820,10748,'Dr. Edward Staunton',2,16),(11820,79792,'Susan Delacorte',1,17),(11820,65762,'Spencer Jones',2,18),(11820,21042,'Charlie Stewart',2,19),(11820,1099170,'Art History Student',0,20),(11820,78080,'Art History Student',1,21),(10483,976,'Jensen Ames',2,0),(10483,11148,'Warden Hennessey',1,1),(10483,6972,'Coach',2,2),(10483,8169,'Machine Gun Joe Mason',2,3),(10483,76511,'Elizabeth Case',1,4),(10483,21942,'Pachenko',2,5),(10483,16429,'Gunner',2,6),(10483,76512,'Guard Ulrich',2,7),(10483,76513,'Lists',2,8),(10483,76514,'Travis Colt',2,9),(10483,65831,'Hector Grimm',2,10),(10483,57250,'14K',0,11),(10483,98723,'Neo Nazi',2,12),(11412,16935,'Samantha Caine / Charly Baltimore',1,0),(11412,2231,'Mitch Henessey',2,1),(11412,37252,'Caitlin Caine',1,2),(11412,14886,'Timothy',2,3),(11412,126471,'Hal',2,4),(11412,1248,'Dr. Nathan Waldman',2,5),(11412,8979,'Leland Perkins',2,6),(11412,52,'Luke / Daedalus',2,7),(11412,141458,'One-Eyed Jack',2,8),(11412,25972,'Trin',1,9),(11412,16937,'Man in Bed',2,10),(11412,53584,'Earl',2,11),(11412,141459,'Raymond',0,12),(11412,141460,'Girl #1',0,13),(11412,141461,'Girl #2',1,14),(11983,5344,'Alice Bowman',1,0),(11983,934,'Terry Thorne',2,1),(11983,52,'Peter Bowman',2,2),(11983,14699,'Janis Goodman',1,3),(11983,16560,'Dino',2,4),(11983,66913,'Linda',1,5),(11983,16293,'Ted Fellner',2,6),(11983,3757,'Eric Kessler',2,7),(11983,1454453,'Fred / Marco',0,8),(11170,10297,'Jack Lengyel',2,0),(11170,28657,'Red Dawson',2,1),(11170,53650,'Nate Ruffin',2,2),(11170,11064,'President Dedmon',2,3),(11170,6972,'Paul Griffen',2,4),(11170,51072,'Annie Cantrell',1,5),(11170,31717,'Carole Dawson',1,6),(11170,1785189,'Ticket Taker',1,7),(10783,8891,'Russ Richards',2,0),(10783,14406,'Crystal',1,1),(10783,3129,'Gig',2,2),(10783,18977,'Dick Simmons',2,3),(10783,4688,'Dale',2,4),(10783,15028,'Detective Chambers',2,5),(10783,8984,'Detective Pat Lakewood',2,6),(10783,31028,'Jerry Green',2,7),(10783,17087,'Walter',2,8),(10783,5176,'Chief Troutman',2,9),(10783,51381,'Larry',2,10),(10783,60278,'Wendy',1,11),(10783,1910,'Sharpling',1,12),(10783,66749,'Bobby',2,13),(10783,66750,'Jack',0,14),(12618,3,'Dutch Van Den Broeck',2,0),(12618,5470,'Kay Chandler',1,1),(12618,17764,'Alcee',2,2),(12618,5149,'Wendy Judd',1,3),(12618,352,'Detective George Beaufort',2,4),(12618,2226,'Carl Broman',2,5),(12618,28633,'Truman Trainor',2,6),(12618,925,'Dick Montoya',2,7),(12618,62547,'Peyton Van Den Broeck',1,8),(12618,9979,'Cullen Chandler',2,9),(12618,19152,'Richard Judd',2,10),(12618,71266,'Phyllis Bonaparte',1,11),(12618,39730,'Molly Roll',1,12),(12618,8854,'Marvin',2,13),(12618,51072,'Jessica Chandler',1,14),(12618,1511013,'Shyla Mumford',0,15),(12618,101418,'Silvio Coya',2,16),(12618,31649,'Sarah',1,17),(12618,1215689,'Laurie',1,18),(12618,91461,'Susan',1,19),(12618,25869,'Mary Claire Clark',1,20),(12618,1181562,'Officer Clayton Williams',2,21),(12618,36190,'Janice',1,22),(12618,3978,'Nea',1,23),(16577,2963,'Dr. Tenma (voice)',2,0),(16577,40462,'Cora (voice)',1,1),(16577,2440,'Dr. Elefun (voice)',2,2),(16577,55636,'General Stone (voice)',2,3),(16577,1281,'Astro Boy (voice)',2,4),(16577,26510,'Orrin (voice)',2,5),(16577,80641,'Sludge (voice)',2,6),(16577,78729,'Ham Egg (voice)',2,7),(16577,2231,'Zog (voice)',2,8),(16577,6885,'Narrator',1,9),(16577,58563,'Mr. Squirt / Math Cowboy / Boxer Robot',2,10),(16577,21088,'Mr. Squeegee / Scrapheap Head / Stinger Two',2,11),(16577,84080,'General Heckler (voice)',2,12),(16577,18050,'Grace (voice)',1,13),(16577,1397895,'Cora\'s Mom (voice)',0,14),(12160,1269,'Wyatt Earp',2,0),(12160,6065,'Doc Holliday',2,1),(12160,193,'Nicholas Earp',2,2),(12160,7219,'James Earp',2,3),(12160,57251,'Morgan Earp',2,4),(12160,20495,'Ike Clanton',2,5),(12160,59662,'Josie Marcus',1,6),(12160,19728,'Sheriff Johnny Behan',2,7),(12160,147,'Virgil Earp',2,8),(12160,11514,'Allie Earp',0,9),(12160,8984,'Ed Masterson',2,10),(12160,6588,'Big Nose Kate',1,11),(12160,3197,'Bat Masterson',2,12),(12160,10080,'Bessie Earp',1,13),(12160,51544,'Mattie Blaylock',1,14),(12160,16433,'Mr. Sutherland',2,15),(12160,16937,'Frank McLaury',2,16),(12160,2059,'Tom McLaury',2,17),(12160,1218048,'John Clum',2,18),(12160,49425,'Urilla Sutherland',1,19),(12160,36041,'Curly Bill Brocius',2,20),(12160,31362,'Young Wyatt',2,21),(12160,52462,'Virginia Earp',1,22),(12160,16331,'Danny',2,23),(12177,12073,'Guru Pitka',2,0),(12177,56731,'Jane Bullard',1,1),(12177,12111,'Jacques Le Coq Grandu00e9',2,2),(12177,71530,'Darren Roanoke',2,3),(12177,22122,'Prudence',1,4),(12177,10987,'Coach Punch Cherkov',2,5),(12177,187644,'Rajneesh',2,6),(12177,41379,'Guru Satchabigknoba',2,7),(12177,2282,'Guru Tugginmypuddha',2,8),(12177,71531,'Deepak Chopra',0,9),(12177,58769,'Jay Kell',2,10),(12177,84407,'Trent Lueders',2,11),(12177,5576,'Val Kilmer',2,12),(12177,52052,'Jessica Simpson',1,13),(12177,6240,'Mariska Hargitay',1,14),(12177,4720,'Kanye West',2,15),(12177,90748,'Young Pitka',0,16),(12177,84292,'Dick Pants',2,17),(12177,1218277,'Cinnabon Cashier',1,18),(12138,6856,'Michael Zane',2,0),(12138,1269,'Thomas J. Murphy',2,1),(12138,14405,'Cybil Waingrow',1,2),(12138,2224,'Hanson',2,3),(12138,7166,'Damitry',2,4),(12138,15234,'Gus',2,5),(12138,16165,'Jay Peterson',2,6),(12138,126418,'Jack',2,7),(12138,19159,'Quigley',2,8),(12138,71913,'Franklin',2,9),(12138,21411,'Hamilton',2,10),(12138,3218,'Otto Sinclair',2,11),(12138,583061,'Jefferson',2,12),(14306,887,'John Grogan',2,0),(14306,4491,'Jennifer Grogan',1,1),(14306,58115,'Sebastian Tunney',2,2),(14306,3391,'Ms. Kornblut',1,3),(14306,1903,'Arnie Klein',2,4),(14306,18052,'Patrick (Age 10)',2,5),(14306,58754,'Lisa',1,6),(14306,43366,'Dr. Platt',1,7),(14306,61011,'Editor',0,8),(14306,965819,'Conor (Age 8)',2,9),(14306,979104,'Colleen (Age 5)',1,10),(14306,204629,'Patrick (Age 7)',2,11),(14306,979105,'Conor (Age 5)',2,12),(14306,1077801,'Neighbor Mom (Nurse)',1,13),(14306,76540,'Big Guy',2,14),(14306,159985,'Debby',1,15),(14306,27544,'Dr. Sherman',2,16),(14306,12224,'Jorge',2,17),(14306,53931,'Lori',1,18),(14306,14108,'Mrs. Butterly',1,19),(14306,171955,'OB-GYN Nurse',0,20),(14306,1077803,'Secretary',0,21),(14306,1077804,'Shannon',0,22),(14306,1077805,'Viviana',0,23),(14306,1077806,'Billy',2,24),(14306,1077807,'Sunbather',0,25),(14306,208043,'Dude',0,26),(14306,1077809,'Metro Reporter',0,27),(14306,1025968,'Waitress',0,28),(14306,1077810,'Boy',0,29),(14306,915692,'Still Photographer',1,30),(14306,1077811,'Patrick (Age 3)',0,31),(14306,1077813,'Neighbor Steve',0,32),(14306,939760,'Party Guy Michael',2,33),(14306,1077814,'Patrick (Age 20 Months)',0,34),(14306,992174,'Newscaster',2,35),(11199,12898,'Doug Madsen',2,0),(11199,8891,'Woody Stevens',2,1),(11199,78029,'Bobby Davis',2,2),(11199,3905,'Dudley Frank',2,3),(11199,11477,'Jack',2,4),(11199,3141,'Maggie',1,5),(11199,11885,'Highway Patrolman',2,6),(11199,22132,'Murdock',2,7),(11199,50877,'Kelly Madsen',1,8),(11199,1223903,'Billy Madsen',2,9),(11199,83600,'Karen Davis',1,10),(11199,537,'Charley',2,11),(11199,172169,'Earl Dooble',2,12),(11199,172170,'Buck Dooble',2,13),(11199,58962,'Haley Davis',1,14),(11199,1676936,'Diner Patron #2',2,15),(11199,8949,'Damien Blade',2,16),(10708,776,'Charlie Hinton',2,0),(10708,60074,'Phil',2,1),(10708,18324,'Marvin',2,2),(10708,9788,'Kim Hinton',1,3),(10708,58478,'Bruce',2,4),(10708,6751,'Peggy',1,5),(10708,22082,'Jenny',1,6),(10708,96072,'Dan Kubitz',2,7),(10708,41420,'Crispin\'s Mom',1,8),(10708,61409,'Sheila',1,9),(10708,65240,'Kelli',1,10),(10708,5657,'Mrs. Gwyneth Harridan',1,11),(10708,87056,'Ben Hinton',2,12),(10708,81083,'Max',2,13),(10708,62563,'Nicky',2,14),(10708,1038347,'Cheap Trick',0,15),(10708,74616,'German Speaking Boy',2,16),(10708,85097,'Day Care Lady',1,17),(10708,18050,'Jamie',1,18),(10708,53211,'Sean',0,19),(10708,56538,'Becca',0,20),(10708,1786648,'Dylan',0,21),(10708,52868,'Crispin',2,22),(10708,6860,'The Flash / Tony',2,23),(10708,1786649,'Duncan',0,24),(10708,1786652,'Jeannie',0,25),(10708,59786,'Juel',1,26),(10708,1786653,'Erin',0,27),(10708,981323,'Jamie\'s Mom',1,28),(10708,59227,'Sean\'s Mom',1,29),(10708,42324,'Becca\'s Mom',1,30),(10708,58354,'Tony\'s Mom',1,31),(10708,61408,'Tony\'s Brother',0,32),(10708,148632,'Enraged Mom',1,33),(10708,142608,'SAT Teacher',1,34),(10708,214108,'Mr. Carrott',0,35),(10708,17421,'Jim Fields',2,36),(10708,1223828,'Job Counselor',0,37),(10708,54648,'Old Gypsy Woman',1,38),(10708,155625,'Waitress',1,39),(10708,1786656,'Co-Worker Marty',0,40),(10708,46074,'Co-Worker Elaine',1,41),(10708,60603,'Co-Worker Steve',2,42),(10708,155825,'Marketing Guy',2,43),(10708,1323219,'Marketing Guy',0,44),(10708,1786657,'Marketing Girl',1,45),(10708,55253,'English Teacher',1,46),(10708,1786658,'Interested Mom',1,47),(10708,89708,'Skeptical Father',0,48),(10708,1786659,'Parks Employee',0,49),(10708,1786661,'Focus Group Kid',0,50),(10708,1786662,'Office Worker',1,51),(10992,4785,'Professor Brody',2,0),(10992,20,'Mrs. Brody',1,1),(10992,67817,'Scotty Brody',2,2),(10992,6199,'Sophie the Castle Maid',1,3),(10992,2219,'Lou(voice)',2,5),(10992,7447,'Butch(vcoice)',2,6),(10992,4038,'Ivy(voice)',1,7),(10992,10017,'Mastiff(voice)',2,8),(19899,4937,'Dave',2,0),(19899,50463,'Ronnie',1,1),(19899,23532,'Jason',2,2),(19899,40462,'Cynthia',1,3),(19899,15277,'Joey',2,4),(19899,83586,'Therapist #2',2,5),(19899,38025,'Lucy',1,6),(19899,8265,'Therapist #1',2,7),(19899,74610,'Jennifer',1,8),(19899,62066,'Shane',2,9),(19899,7242,'Briggs',2,10),(19899,11115,'Sctanley',2,11),(19899,79124,'Spa Attendant',1,12),(19899,62067,'Salvadore',2,13),(19899,89462,'Trudy',1,14),(19899,1003,'Marcel',2,15),(19899,999790,'San Diego Dance Academy',1,16),(19899,117885,'Robert',2,17),(11128,73421,'Jack Morrison',2,0),(11128,8891,'Captain Mike Kennedy',2,1),(11128,6857,'Linda Morrison',1,2),(11128,418,'Lenny Richter',2,3),(11128,9779,'Tommy Drake',2,4),(11128,21029,'Dennis Gauquin',2,5),(11128,4728,'Frank Mckinny',2,6),(11128,19487,'Keith Perez',2,7),(11128,104785,'Don Miller',2,8),(11128,9296,'Ray Gauquin',2,9),(13576,82702,'Himself',2,0),(13576,90778,'Herself',1,1),(13576,65310,'Kenny Ortega',2,2),(13576,1449376,'Dorian Holley',0,3),(13576,1449377,'Patrick Woodroffe',0,4),(13576,1449380,'Bashiri Johnson',0,5),(13576,1449381,'Mo Pleasure',0,6),(13576,1449382,'Jonathan Moffett',0,7),(13576,1449383,'Tommy Organ',0,8),(13576,1449384,'Earth Child',0,9),(10628,3035,'Charlie Carbone',2,0),(10628,18471,'Louis Booker',2,1),(10628,13241,'Jessie',1,2),(10628,4690,'Salvatore \'Sal\' Maggio',2,3),(10628,335,'Frankie Lombardo',2,4),(10628,20982,'Mr. Smith',2,5),(10628,40403,'Anna Carbone',1,6),(14836,501,'Coraline Jones (voice)',1,0),(14836,10742,'Mother / Other Mother (voice)',1,1),(14836,12094,'Miss Spink (voice)',1,2),(14836,5539,'Miss Forcible (voice)',1,3),(14836,65827,'Cat (voice)',2,4),(14836,77344,'Father / Other Father (voice)',2,5),(14836,55426,'Wyborne \'Wybie\' Lovat',2,6),(14836,6972,'Mr. Sergei Alexander Bobinsky / Other Bobinsky',2,7),(10067,12898,'Dave Douglas',2,0),(10067,38025,'Rebecca Douglas',1,1),(10067,2047,'Ken Hollister',2,2),(10067,35654,'Josh Douglas',2,3),(10067,3223,'Dr. Kozak',2,4),(10067,62760,'Carly Douglas',1,5),(10067,26852,'Justin Forrester',2,6),(10067,58184,'Judge Claire Whittaker',1,7),(10067,42324,'Justin Forrester\'s Attorney',1,8),(10067,62763,'Larry',2,9),(10067,62762,'Dr. Gwen Lichtman',1,10),(10067,4492,'Lance Strictland',2,11),(10067,62761,'Trey',2,12),(10067,59231,'Pound Employee',2,13),(10067,25711,'Doctor',2,14),(10067,60951,'Baxter',2,15),(10067,62764,'Janey',1,16),(10067,62765,'Lori',1,17),(10067,62766,'Monk',0,18),(10067,42141,'Leader',2,19),(10067,1741409,'Football Coach',2,20),(10199,4756,'Despereaux (voice)',2,0),(10199,4483,'Roscuro (voice)',2,1),(10199,10990,'Princess Pea (voice)',1,2),(10199,30364,'Miggery Sow (voice)',0,3),(10199,8945,'Chef Andre (voice)',2,4),(10199,10205,'The Narrator (voice)',1,5),(10199,3905,'Lester (voice)',2,6),(10199,2283,'Boldo (voice)',2,7),(10199,8785,'Botticelli (voice)',2,8),(10199,1923,'Gregory (voice)',2,9),(10199,25147,'Furlough (voice)',2,10),(10199,4432,'Antoinette (voice)',1,11),(10199,8924,'Mayor (voice)',2,12),(10199,28633,'Principal (voice)',2,13),(10199,1062,'Hovis (voice)',2,14),(10199,63474,'Pietro (voice)',2,15),(10199,68740,'Queen (voice)',1,16),(10199,148632,'Teacher (voice)',1,17),(10771,18897,'Jimmy Tong',2,0),(10771,33259,'Del Blaine',1,1),(10771,11355,'Clark Devlin',2,2),(10771,5578,'Steena',1,3),(10771,13939,'Dietrich Banning',2,4),(10771,53,'Dr. Simms',2,5),(10771,149209,'Cheryl',1,6),(10771,71530,'Mitch',2,7),(10771,10210,'Rogers',2,8),(10771,33339,'Kells',2,9),(10771,33339,'Vic',2,10),(10771,166510,'CSA Agent Wallace',2,11),(10771,1212946,'CSA Agent Joel',2,12),(10771,79403,'CSA Agent Randa',1,13),(10771,70445,'CSA Agent Gabe',0,14),(10040,18277,'Gracie Hart',1,0),(10040,9788,'Sam Fuller',1,1),(10040,12798,'Jeff Foreman',2,2),(10040,1748,'Stan Fields',2,3),(10040,39015,'Carol Fields',1,4),(10040,8874,'FBI Asst. Director Harry McDonald',2,5),(10040,126932,'Agent Janet McKaren',1,6),(10040,17039,'Karl Steele',2,7),(10040,21132,'Lou Steele',2,8),(10040,4515,'FBI Asst. Director Walter Collins',2,9),(10040,26716,'Cheryl Frasier',1,10),(10040,5727,'Joel Meyers',2,11),(10040,6944,'Octavia',1,12),(10040,1212123,'Pam',1,13),(17610,70851,'Zed',2,0),(17610,39995,'Oh',2,1),(17610,59315,'Princess Inanna',1,2),(17610,17485,'High Priest',2,3),(17610,212,'Cain',2,4),(17610,54691,'Isaac',2,5),(17610,980,'Sargon',2,6),(17610,5587,'Abraham',2,7),(17610,36594,'Eema',1,8),(17610,83873,'Maya',0,9),(17610,3982,'King',2,10),(17610,14226,'Queen',1,11),(17610,22297,'Zaftig the Eunuch',2,12),(17610,22226,'Abel',2,13),(17610,217524,'Lilith',1,14),(17610,1524,'Adam',2,15),(17610,51456,'Eve',1,16),(17610,52117,'Enmebaragesi',2,17),(17610,74487,'Prime Minister',2,18),(17610,92617,'Marlak',0,19),(17610,94985,'Seth',2,20),(17610,19278,'Shaman',2,21),(17610,116907,'Slave Trader',2,22),(17610,59843,'Bricklayer',2,23),(22954,192,'Nelson Mandela',2,0),(22954,1892,'Francois Pienaar',2,1),(22954,2606,'Jason Tshabalala',2,2),(22954,63136,'Linga Moonsamy',2,3),(22954,109649,'Hendrick Booyens',2,4),(22954,109650,'Etienne Feyder',2,5),(22954,109651,'Brenda Mazibuko',1,6),(22954,109652,'Nerine',1,7),(22954,2609,'Mary',0,8),(22954,109653,'Mr. Pienaar',2,9),(22954,928572,'Joel Stransky',2,10),(22954,37093,'George',2,11),(22954,15544,'Zindzi',1,12),(22954,93919,'Rugby President',0,13),(22954,1071690,'Johan De Villiers',0,14),(22954,47973,'Boer',0,15),(22954,1021884,'Mrs. Cole',1,16),(22954,1302090,'High School Coach',2,17),(22954,108579,'Mrs. Pienaar',1,18),(22954,967456,'Springbok Coach',2,19),(22954,1184628,'Captain of 747',2,20),(22954,67059,'Co-Captain of 747',2,21),(22954,82190,'Presidential Guard',2,22),(22954,1171654,'Presidential Guard',0,23),(22954,1138169,'Presidential Guard',0,24),(22954,1148622,'Johannesburg Cop',0,25),(22954,1076786,'Springbok Manager',0,26),(22954,63144,'Mandela\'s Doctor',0,27),(22954,105878,'Minister of the Environment',0,28),(22954,47970,'Mrs. Brits',0,29),(22954,222286,'Mrs. Dlamini',0,30),(22954,181269,'Prison Guard',0,31),(22954,1083451,'Staff Member',0,32),(22954,942749,'Team Crew',1,33),(22954,13100,'Trophy Wife',0,34),(22954,938734,'T.V. Announcer',0,35),(22954,181093,'Announcer (voice)',2,36),(22954,1378662,'South African Springbok',0,37),(22954,1042812,'New Zealand All Blacks',0,38),(22954,1331834,'England Rose',0,39),(22954,52857,'Stadium Announcer (uncredited)',0,40),(22954,37403,'Radio Rugby Announcer (uncredited)',2,41),(22954,86320,'Springbok Equipment Manager (uncredited)',2,42),(22954,1274177,'Springbok Trainer (uncredited)',0,43),(22954,120092,'Cabinet Minister (uncredited)',0,44),(22954,1720843,'Australian Wallaby',2,45),(16995,934,'Cal McAffrey',2,0),(16995,880,'Stephen Collins',2,1),(16995,53714,'Della Frye',1,2),(16995,32,'Anne Collins',1,3),(16995,23532,'Dominic Foy',2,4),(16995,8447,'Senator George Fergus',2,5),(16995,15735,'Cameron Lynne',1,6),(16995,9464,'Det. Donald Bell',2,7),(16995,33489,'Pete',2,8),(16995,20623,'Greer Thornton',1,9),(16995,46921,'Stuart Brown',2,10),(16995,1218149,'Andrew',2,11),(16995,81867,'Robert Bingham',2,12),(16995,51381,'Hank',2,13),(16995,8689,'Gene Stavitz',2,14),(16995,19492,'Dr. Judith Franklin',1,15),(16995,35029,'PointCorp Insider',2,16),(16995,170185,'Ferris',2,17),(16995,81868,'Mandi Brokaw',1,18),(16995,59450,'Rhonda Silver',1,19),(16995,1838407,'Graves',2,20),(16995,164494,'Junior Detective #1',2,21),(16558,2296,'Ray Koval',2,0),(16558,1204,'Claire Stenwick',1,1),(16558,13242,'Richard Garsik',2,2),(16558,207,'Howard Tully',2,3),(16558,15109,'Tully\'s Assistant',1,4),(16558,81681,'Duke Monahan',2,5),(16558,52003,'Pam Frailes',1,6),(16558,7465,'Barbara Bofferd',1,7),(16558,1340884,'Garsik\'s Aide',0,8),(16558,34541,'Turtleneck',0,9),(16558,61545,'Dale Raimes',2,10),(16558,235858,'Boris Fetyov',0,11),(16558,164388,'Dinesh Patel',2,12),(16558,17867,'Jeff Bauer',0,13),(16558,1470,'Ned Guston',2,14),(16558,1340885,'Hotel Manager',0,15),(16558,1403675,'Italian Chambermaid',0,16),(16558,164103,'Bartender',0,17),(16558,734028,'Realtor',0,18),(16558,61510,'Ronny Partiz',0,19),(16558,155109,'Mr. Security',2,20),(16558,1264745,'Counter Sloth',0,21),(16558,97268,'Physec',2,22),(16558,1370986,'Physec',0,23),(16558,118393,'San Diego Equikrom',0,24),(16558,1748593,'San Diego Equikrom',0,25),(16558,1748598,'San Diego Equikrom',0,26),(16558,1748605,'Tully\'s Makeup Girl',0,27),(16558,4455,'Big Swiss Suit',2,28),(16558,1377224,'Swiss Female Executive',0,29),(16558,99096,'Garsik\'s Shareholder',2,30),(16558,235275,'Swiss Chemist',0,31),(16558,1748617,'Business Woman (uncredited)',0,32),(16866,18918,'Capt. Charles \'Chuck\' Baker (voice)',2,0),(16866,57599,'Skiff (voice)',2,1),(16866,10860,'Neera (voice)',1,2),(16866,15033,'Lem (voice)',2,3),(16866,64,'General Grawl (voice)',2,4),(16866,8930,'Professor Kipple (voice)',0,5),(16866,968218,'Eckle (voice)',2,6),(16866,235815,'Glar (voice)',0,7),(16866,82806,'Soldier Vesklin (voice)',2,8),(16866,55466,'Soldier Vernkot (voice)',2,9),(16866,1074722,'Additional Voice (voice)',0,10),(16866,211412,'Additional Voice (voice)',0,11),(16866,155530,'Additional Voice (voice)',1,12),(16866,131083,'Additional Voice (voice)',0,13),(16866,185065,'Additional Voice (voice)',1,14),(16866,127153,'Additional Voice (voice)',0,15),(16866,59865,'Additional Voice (voice)',0,16),(16866,108399,'Additional Voice (voice)',0,17),(11775,1461,'Miles Massey',2,0),(11775,1922,'Marilyn Rexroth',1,1),(11775,52995,'Rex Rexroth',2,2),(11775,118,'Donovan Donaly',2,3),(11775,28633,'Freddy Bender',2,4),(11775,879,'Howard D. Doyle',2,5),(11775,31714,'Bonnie Donaly',1,6),(11775,5726,'Gus Petch',2,7),(11775,17342,'Wrigley',2,8),(11775,100602,'Sarah Sorkin',1,9),(11775,122245,'Heinz, the Baron Krauss von Espy',0,10),(11775,49835,'Herb Myerson',2,11),(11775,110246,'Ollie Olerud',2,12),(11775,13592,'Wheezy Joe',2,13),(11775,109900,'Mrs. Gutman',1,14),(11775,151598,'Mrs. Gutman\'s Lawyer',0,15),(11775,93746,'Rex\'s Young Woman',1,16),(11775,9999,'Miles\' Receptionist',0,17),(11775,149209,'Ramona Barcelona',1,18),(11775,62595,'Nero\'s Waitress',1,19),(11775,105390,'Gutman Trial Judge',0,20),(11775,23504,'Claire O\'Mara',1,21),(11775,1739255,'Gus\'s Pal',2,22),(11775,63915,'Gus\'s Pal',2,23),(11775,1376786,'Gus\'s Pal',0,24),(11775,65745,'Stewardess',0,25),(11775,163580,'Maitre d\'',2,26),(11775,94627,'Judge Marva Munson',1,27),(11775,1580500,'Court Reporter',0,28),(11775,21485,'Convention Secretary',0,29),(11775,97956,'Convention Lawyer',2,30),(11775,119757,'Santa Fe Tart',1,31),(11775,140529,'Santa Fe Tart',0,32),(11775,1231217,'Santa Fe Tart',0,33),(11775,98158,'Santa Fe Tart',1,34),(11775,80731,'Santa Fe Tart',1,35),(11775,1232328,'Santa Fe Tart',0,36),(11775,101434,'Mr. MacKinnon',2,37),(11775,1739293,'Bailiff',0,38),(11775,75325,'Bailiff',2,39),(11775,1464177,'Father Scott',0,40),(11775,1227684,'Waiter',2,41),(12201,2461,'Thomas Craven',2,0),(12201,5538,'Darius Jedburgh',2,1),(12201,6413,'Bennett',2,2),(12201,81097,'Burnham',2,3),(12201,81681,'Moore',2,4),(12201,81682,'Emma Craven',0,5),(12201,81683,'Det. Darcy Jones',2,6),(12201,81684,'Melissa Conway',1,7),(12201,6067,'Whitehouse',2,8),(12201,1470,'Chief of Police',2,9),(12201,81685,'The agent one',2,10),(12201,60195,'Millroy',2,11),(12201,81686,'Hospital Nurse',0,12),(12201,58333,'Paul Honeywell',2,13),(12201,81687,'Robinson Jr.',2,14),(12201,81688,'Northmoor Doctor',0,15),(12201,50117,'Sanderman',2,16),(12201,510488,'State Trooper #2',2,17),(12201,1674426,'Pedestrian',2,18),(12201,1774091,'Watch Sergeant',0,19),(11015,14698,'Dr. Margo Green',1,0),(11015,3197,'Lt. Vincent D\'Agosta',2,1),(11015,12516,'Dr. Ann Cuthbert',1,2),(11015,6577,'Dr. Albert Frock',2,3),(11015,91725,'Det. Hollingsworth',2,4),(11015,554095,'Dr. Greg Lee',0,5),(11015,167490,'Tom Parkinson',2,6),(11015,140176,'Mayor Robert Owen',2,7),(11015,157549,'The Mayor\'s Wife',1,8),(11015,104331,'John Whitney',2,9),(11015,20276,'Mrs. Blaisedale',1,10),(11015,100650,'Mr. Blaisedale',2,11),(11015,4162,'Dr. Zwiezic',1,12),(11015,55554,'McNally',2,13),(11015,103933,'Bailey',0,14),(11015,141417,'Bradley',2,15),(11015,94766,'Martini',0,16),(11015,113922,'Guard Wootton',2,17),(11015,2555,'Guard Johnson',2,18),(11015,9559,'Guard Frederick Ford',0,19),(11015,1280,'Spota',2,20),(11015,1242469,'Josh',0,21),(11015,1765315,'Eugene',0,22),(11015,47463,'Capt. Borne',2,23),(11015,5147,'Sergeant',2,24),(11015,1218750,'Donna',0,25),(11015,1337441,'Perri Masai',1,26),(13389,380,'Turk',2,0),(13389,17832,'Karen Corelli',1,1),(13389,62644,'Spider',2,2),(13389,1158,'Rooster',2,3),(13389,2680,'Detective Ted Riley',2,4),(13389,6197,'Lieutentant Hingis',2,5),(13389,5723,'Detective Simon Perez',2,6),(13389,142101,'Jessica',1,7),(13389,6832,'Cheryl',1,8),(13389,1225953,'Rogers',2,9),(13389,65123,'Natalya',1,10),(13389,1982,'Dr Chadrabar',2,11),(13389,142589,'Rambo',2,12),(13389,59693,'Judge Angel Rodriguez',0,13),(13389,77351,'Yevgeny Mugalat',2,14),(13389,171754,'Gwen Darvis',0,15),(13389,170483,'Jill Goldman',0,16),(13389,1448691,'Stubby',2,17),(13389,155607,'Father Connell',2,18),(13389,1982,'Dr. Chadrabar',2,19),(13389,2257,'Jon Van Luytens',2,20),(13389,9275,'Charles Randall',2,21),(13389,22053,'Martin Baum',2,22),(13389,73194,'Prosky',2,23),(13389,552526,'Officer Jones',2,24),(13389,206398,'Joseph Cianci',2,25),(13389,1218215,'Hostess',1,26),(13389,1309682,'Ellis Lynde',2,27),(13389,28044,'Vergewaltigungsopfer',1,28),(13389,1643621,'Fly Ty',2,29),(13389,90113,'Tu00e4nzer',1,30),(13389,1643598,'Waitress (uncredited)',1,31),(13389,82290,'Club Dancer (uncredited)',0,32),(17332,3223,'Steve Lopez',2,0),(17332,134,'Nathaniel Ayers',2,1),(17332,2229,'Mary Weston',1,2),(17332,81697,'David Carter',2,3),(17332,81698,'Adam Crane',2,4),(17332,2441,'Graham Claydon',2,5),(17332,64908,'Jennifer Ayers',0,6),(17332,46074,'Leslie Bloom',1,7),(17332,17401,'Curt Reynolds',2,8),(17332,81726,'Flo Ayers',1,9),(17332,20089,'Cheery Lab Tech',1,10),(17332,6944,'Troubled Woman',1,11),(11679,9778,'Darius Stone / xXx',2,0),(11679,2231,'Agent Augustus Gibbons',2,1),(11679,5293,'Gen. George Octavius Deckert',2,2),(11679,100,'Agent Kyle Steele',2,3),(11679,21368,'President James Sandford',2,4),(11679,336,'Zeke',2,5),(11679,53347,'Toby Lee Shavers',0,6),(11679,58707,'Charlie Mayweather',1,7),(11679,18286,'Lola Jackson',1,8),(11679,1191451,'Lt. Alabama Bama Cobb',2,9),(11679,171898,'Agent Meadows',2,10),(11679,169670,'Bull',2,11),(11679,93929,'Agent',0,12),(11679,173739,'Col. Jack Pettibone',2,13),(11679,1297083,'Conductor',0,14),(14411,287,'Sinbad (voice)',2,0),(14411,1922,'Marina (voice)',1,1),(14411,1160,'Eris (voice)',1,2),(14411,12763,'Proteus (voice)',2,3),(14411,352,'Kale (voice)',2,4),(14411,35257,'Dymas (voice)',2,5),(14411,73475,'Rat (voice)',2,6),(14411,12099,'Jin (voice)',0,7),(14411,1335620,'Li (voice)',0,8),(14411,12077,'Luca / Additional Voices (voice)',2,9),(14411,12080,'Jed (voice)',2,10),(14411,1335621,'Grum / Chum (voice)',0,11),(14411,12098,'Tower Guard (voice)',2,12),(10052,1269,'Joe Darrow',2,0),(10052,3977,'Hugh Campbell',2,1),(10052,12122,'Charlie Dickinson',2,2),(10052,62547,'Emily Darrow',1,3),(10052,8534,'Mrs. Belmont',1,4),(10052,9829,'Ben',2,5),(10052,55426,'Jeffrey Reardon',2,6),(10052,21105,'Hal',2,7),(10052,52878,'Flora',1,8),(10052,13525,'Eric',2,9),(10052,25834,'Charisse Darrow',1,10),(10052,17358,'Intake Nurse',1,11),(10052,55546,'Suicide Girl',1,12),(10052,11915,'Paramedic',2,13),(10052,62548,'Neil Darrow',2,14),(10052,62551,'Surgical Nurse',1,15),(10052,62550,'Eulogist',0,16),(10052,62552,'Surgical Nurse',0,17),(10052,62553,'Waitress',1,18),(10052,62549,'Phillip Darrow',2,19),(10052,77013,'Gwyn',1,20),(10052,12516,'Sister Madeline',1,21),(10052,95517,'nurse',1,22),(10384,13548,'Nick Vanzant',2,0),(10384,9780,'Dr. Kaela Evers',1,1),(10384,5694,'A.J. Marley',2,2),(10384,38560,'Yerzy Penalosa',2,3),(10384,56857,'Karl Larson',2,4),(10384,17346,'Danika Lund',1,5),(10384,54453,'Benj Sotomejor',2,6),(10384,214954,'Flyboy',0,7),(10384,554533,'Troy Larson',0,8),(10384,158322,'Troy Larson (voice)',2,9),(10384,81663,'Sweetie (voice)',1,10),(10384,156100,'Rescue Leader (uncredited)',2,11),(11260,776,'Dave Ming Chang / Kapitu00e4n',2,0),(11260,9281,'Gina Morrison',1,1),(11260,17773,'Nr.3- Kulturoffizierin',1,2),(11260,1894,'Dooley',2,3),(11260,27105,'Nr.2- Stellvertreter des Kapitu00e4ns',2,4),(11260,55638,'Nr. 17',2,5),(11260,68836,'Nr.4- Sicherheitsoffizier',2,6),(11260,52860,'Ingenieur',2,7),(11260,46772,'Mark',2,8),(11260,58768,'Doktor',2,9),(11260,68837,'Josh Morrison',2,10),(11260,91274,'Old Navy Customer',0,11),(11260,87192,'Knox',2,12),(11260,154997,'Nerdy Girl',1,13),(11260,30367,'A Chorus Line Dancer',1,14),(11260,1673257,'Medical Facility Girl (uncredited)',1,15),(11374,10297,'Ed \'Eddie\' Pekurny',2,0),(11374,57755,'Ray Pekurny',2,1),(11374,12134,'Jeanette',1,2),(11374,40279,'Shari',1,3),(11374,2641,'Al',2,4),(11374,14,'Cynthia Topping',1,5),(11374,3026,'Mr. Whitaker',2,6),(11374,2778,'Henry \'Hank\' Pekurny',2,7),(11374,13918,'Jill',1,8),(11374,6163,'John',2,9),(11374,156774,'Marcia',1,10),(11374,15661,'Ken',2,11),(11374,148122,'Keith',2,12),(11374,3422,'Wife',1,13),(11374,1075005,'Felicia',1,14),(11374,81918,'Roach',2,15),(11374,78589,'RuPaul',2,16),(11374,1214164,'Ms. Seaver',0,17),(11374,34457,'McIlvaine',2,18),(11374,38572,'Clint',2,19),(11374,90659,'Paul',0,20),(11374,163555,'Panel Member',1,21),(11374,124603,'Husband',2,22),(11374,9999,'Rita',0,23),(11374,84212,'Desipio',0,24),(11374,77331,'Terry',2,25),(11374,102794,'Fig Lady',1,26),(11374,30697,'Dr. Geller',2,27),(11374,101378,'Benson',2,28),(11374,1539,'Barry',2,29),(11374,129466,'Tad',0,30),(11374,34407,'Alice',1,31),(11374,172339,'Jack',2,32),(11374,16183,'Greg',2,33),(11374,168588,'Reporter',2,34),(11374,93846,'Reporter',2,35),(11374,1557453,'Tracy',0,36),(11374,1178193,'Kevin',0,37),(11374,1044042,'Party Goer',2,38),(11374,75755,'Party Goer',0,39),(11374,1848718,'College Girl',1,40),(11374,112052,'College Girl',1,41),(11374,69399,'College Girl',1,42),(11374,152718,'Bartender',2,43),(11374,42145,'Snapple Girl',1,44),(11374,95741,'Panel Member',2,45),(11374,17087,'Panel Member',2,46),(11374,1236861,'Panel Member',1,47),(11374,74086,'Bill Maher',2,48),(11374,14991,'Jay Leno',2,49),(11374,1549747,'Ticket Taker',0,50),(13922,4589,'Lt. Colonel Mucci',2,0),(13922,17051,'Captain Prince',2,1),(13922,935,'Margaret Utinsky',1,2),(13922,20982,'Captain Redding',2,3),(13922,12763,'Major Gibson',2,4),(13922,112143,'Cpl. Guttierez',2,5),(13922,94864,'1st Sgt. Sid Top Wojo',2,6),(13922,130253,'Lt. Paul Colvin',2,7),(13922,83769,'Captain Fisher',2,8),(13922,1037286,'Guerilla Leader Juan Pajota',0,9),(13922,53198,'Cpl. Aliteri',2,10),(13922,59671,'PFC Aldridge',2,11),(13922,1179110,'Major Nagai',0,12),(13922,552209,'Yamada',0,13),(13922,77771,'2nd Lt. Riley',2,14),(13922,65731,'PFC Lucas',2,15),(13922,37760,'Pitt',2,16),(13922,57575,'Mina',0,17),(13922,89719,'Sgt. Valera',0,18),(13922,83283,'Lt. Hikobe',0,19),(13922,80122,'Sgt. Shigeno',0,20),(13922,112144,'2nd Lt. Foley',2,21),(13922,20287,'2nd Lt. O\'Grady',2,22),(13922,112145,'Lt. Able',2,23),(13922,87811,'Lt. LeClaire',2,24),(13922,112147,'Sgt. Adams',0,25),(13922,1374191,'PFC Daly',0,26),(13922,61907,'PFC Miller',0,27),(13922,3211,'General Kreuger',2,28),(13922,56449,'Col. H. White',2,29),(13922,1224188,'Major Lapham',0,30),(13922,186420,'Cpl. Lee',2,31),(13922,213087,'Sgt. Lyle',0,32),(13922,109751,'PFC Chestnut',0,33),(13922,1226337,'Cpl. Friedberg',2,34),(13922,9374,'Ron Carlson Radio Op.',2,35),(13922,15340,'Duke',2,36),(13922,1322698,'McMahon',0,37),(13922,59118,'Monty',2,38),(13922,1325836,'Sgt. Williams',0,39),(13922,113948,'Cora (Manila Nurse)',1,40),(13922,231981,'Rudi',0,41),(13922,1185021,'Miguel',0,42),(13922,1604805,'Carlos',0,43),(13922,75745,'Father McPherson',0,44),(13922,160224,'Father Connor',0,45),(13922,1534426,'Nurse Manila Hospital',0,46),(13922,557552,'Henchman #1',2,47),(13922,1019408,'Henchman #2',0,48),(13922,75748,'Sgt. Major Takeda',0,49),(13922,1521620,'Colonel Mori',0,50),(13922,1503609,'Captain Joson',0,51),(13922,1218802,'Refugee Woman',0,52),(13922,10279,'Himself (archive footage)',2,53),(13922,120578,'Himself (archive footage)',0,54),(13922,1027218,'Himself (archive footage)',0,55),(24438,3291,'Paul Morgan',2,0),(24438,520,'Meryl Morgan',1,1),(24438,2453,'Emma Wheeler',1,2),(24438,16431,'Clay Wheeler',2,3),(24438,114310,'Monique Rabelais',0,4),(24438,111685,'Nurse Kelly',1,5),(24438,20588,'Girard Rabelais',2,6),(24438,114311,'Adam Feller',0,7),(24438,32798,'Jackie Drake',1,8),(24438,50217,'Vincent',2,9),(24438,41688,'U.S. Marshal Lasky',2,10),(24438,1422570,'Anton Forenski',2,11),(24438,207324,'U.S. Marshal Henderson',2,12),(24438,1422571,'U.S. Marshal Ferber',2,13),(24438,176695,'U.S. Marshal King',0,14),(24438,1650118,'U.S. Marshal at Rodeo',2,15),(10589,517,'Max Burdett',2,0),(10589,3136,'Lola Cirillo',1,1),(10589,57755,'Stan Lloyd',2,2),(10589,31711,'Luc',2,3),(10589,62649,'Jean-Paul',2,4),(10589,16937,'Agent Kowalski',2,5),(10589,2234,'FBI Driver',2,6),(10589,11889,'Lakers FBI Agent',2,7),(10589,2969,'Rowdy Fan',2,8),(10589,52057,'Zacharias',2,9),(10589,3095,'Clippers Fan',2,10),(10589,1896,'Henri Mooru00e9',2,11),(10589,2038,'Sophie',1,12),(10589,65699,'Popcorn Victim',2,13),(10589,65697,'Himself',0,14),(10589,35806,'Himself',2,15),(10589,65698,'Himself',2,16),(10589,34,'Agent Stafford',2,17),(10589,52760,'Security Chief',2,18),(10589,233298,'Lakers FBI Agent',2,19),(10589,60074,'Ron',2,20),(10589,61114,'Sheila',1,21),(10589,77338,'Ed',2,22),(10589,46074,'June',1,23),(10589,47058,'Gail',1,24),(10589,88950,'Wendell',2,25),(10589,299397,'Masseuse',1,26),(10589,1647092,'Masseuse',1,27),(10589,61182,'Exhibit Guide',1,28),(10589,76225,'Bahamian Cop',2,29),(10589,1559335,'Ship Entrance Security',2,30),(10589,145633,'Mooru00e9\'s Girl',1,31),(10589,1199720,'Mooru00e9\'s Girl',0,32),(10589,1248751,'Mooru00e9\'s Girl',1,33),(10589,65696,'Referee',0,34),(10022,12835,'Shane Wolf',2,0),(10022,16858,'Principal Claire Fletcher',1,1),(10022,62054,'Julie Plummer',1,2),(10022,72997,'Capt. Bill Fawcett',2,3),(10022,29221,'Zoe Plummer',1,4),(10022,148615,'Lulu Plummer',1,5),(10022,41883,'Seth Plummer',2,6),(10022,18,'Vice Principal Dwayne Murney',2,7),(10022,10556,'Helga',1,8),(10022,15455,'Howard Plummer',2,9),(10022,78576,'Director',2,10),(10022,538687,'Mr. Chun',2,11),(10022,1337815,'Mrs. Chun',1,12),(10022,29214,'Liesel',1,13),(10022,1752070,'Maria Rainer',1,14),(10022,1720992,'Captain von Trapp',0,15),(10022,1463851,'Brigitta',1,16),(10022,1752072,'Friedrich',0,17),(10022,124342,'Gretl',0,18),(10022,1226927,'Kurt',0,19),(10022,1752074,'Louisa',1,20),(10022,1752076,'Marta',1,21),(10022,1470304,'Mother Abbess',0,22),(10022,1752079,'Nun / Nazi',1,23),(10022,1752081,'Nun / Nazi',1,24),(10022,1752082,'Nun / Nazi',1,25),(10022,1752084,'Nun / Nazi',0,26),(10022,931757,'Nazi',0,27),(10022,1752085,'Cheerleader',1,28),(10022,1752086,'Cheerleader',1,29),(10022,1752087,'Cheerleader',1,30),(10022,1752089,'Cheerleader',1,31),(10022,1752090,'Cheerleader',0,32),(10022,1281022,'Cheerleader',1,33),(10022,1752093,'Cheerleader',1,34),(10022,1752097,'Female Customer',1,35),(10022,981162,'Teacher',1,36),(10022,8357,'Teacher',2,37),(10022,201067,'Showroom Cleaner',0,38),(10022,133926,'Little Boy',2,39),(10022,110018,'Cute Cop',2,40),(10022,190917,'Cute Cop\'s Partner',2,41),(10022,1752102,'Firefly',0,42),(10022,1752103,'Firefly',1,43),(10022,1228361,'Firefly',1,44),(10022,1752104,'Firefly',0,45),(10022,147478,'First Junior Grizzly',2,46),(10022,1752105,'Second Junior Grizzly',0,47),(10022,1752106,'Grizzly',0,48),(10022,1752107,'Grizzly',0,49),(10022,1752108,'Grizzly',0,50),(10022,1202533,'Woody Woodchuck Manager',0,51),(10022,1205728,'FBI Agent',0,52),(10022,36816,'FBI Agent',2,53),(10022,1752109,'Piano Accompaniest',1,54),(10022,1239480,'Marcel',0,56),(10022,1366350,'Car Salesman',0,57),(10022,1752110,'Male Customer',0,58),(10022,1387397,'Wrestler',0,59),(10022,1366377,'Wrestler',0,60),(10022,1480850,'Swiss Banker',0,61),(10022,232,'Scott',2,62),(10022,1752112,'Construction Worker',0,63),(10022,1752113,'Navy SEAL #3',0,64),(10022,1752114,'Navy SEAL #4',0,65),(10022,1214665,'Wyatt',0,66),(10022,1225829,'Boat Captain',0,67),(10022,1752115,'Serbian',0,68),(10022,84064,'Serbian',0,69),(10022,9437,'Serbian Gunner',0,70),(10022,1275523,'Stagehand',2,71),(10022,1752116,'Serbian Pilot',0,72),(10022,1299079,'Stage Manager',0,73),(10022,1415898,'Ski Ball Player',0,74),(10022,1752117,'Child on Seesaw',0,75),(10022,20739,'Driving Instructor',2,76),(11358,18918,'Chris Vaughn',2,0),(11358,9656,'Ray Templeton',2,1),(11358,2203,'Jay Hamilton',2,2),(11358,31029,'Michelle Vaughn',1,3),(11358,71189,'Exotic Beauty',1,4),(11358,2234,'Sheriff Stan Watkins',2,5),(11358,71128,'Deni',1,6),(11358,38571,'Chris Vaughn Sr.',2,7),(11358,31391,'Connie Vaughn',1,8),(11358,54495,'Pete Vaughn',2,10),(11358,79072,'Booth',2,11),(11358,104040,'Jimmy',2,12),(11358,17837,'Keith',2,13),(11358,1432102,'Rusty',0,14),(11358,91404,'Deputy Ralston',2,15),(11358,77164,'Travis',2,16),(11358,63566,'Burke',2,17),(11358,1216570,'Smittie',0,18),(11358,963962,'Doctor',2,19),(11358,60433,'Michele\'s Partner',2,20),(11358,110525,'Kenner',2,21),(11358,27112,'Judge L. Powell',2,22),(11358,534315,'Merle Crowe',2,23),(11358,26782,'County Prosecutor',2,24),(11358,33308,'Bailiff',0,25),(11358,2250,'Dan Stadler',2,26),(11358,77222,'Casino Stickman',2,27),(11358,1228459,'Casino Maintenance Worker',0,28),(11358,45428,'Casino Waitress',1,29),(11358,168500,'Addict Mother',1,30),(11358,72099,'Drug Dealer',2,31),(11358,1773099,'Lap Dancer',1,32),(11358,1773101,'Lap Dancer',1,33),(11358,1773102,'Lap Dancer',1,34),(11358,1773104,'Casino Trashy Woman',1,35),(11358,1773110,'Casino Trashy Woman',1,36),(11358,42711,'Deputy',2,37),(11358,1773112,'Blackjack Dealer',1,38),(11358,1366447,'Ray\'s AA Sponsor',0,39),(11358,1055157,'Nurse',1,40),(11358,1773114,'Wet T-Shirt Girl',1,41),(11358,1773116,'Wet T-Shirt Girl',1,42),(11358,1773117,'Boxman',0,43),(11358,1773118,'Dollar Bill Girl',1,44),(11358,1414747,'Girl on Platform',1,45),(11358,169792,'Casino Security',2,46),(11358,1773121,'Casino VIP',1,47),(11358,64674,'Casino Security',2,48),(11358,1773126,'Casino VIP',0,49),(10530,65529,'Pocahontas (voice)',1,0),(10530,2461,'John Smith (voice)',2,1),(10530,28010,'Governor Ratcliffe (voice)',2,2),(10530,31365,'Meeko (voice)',2,3),(10530,3203,'Powhatan (voice)',2,4),(10530,3894,'Thomas (voice)',2,5),(10530,110316,'Pocahontas (singing voice)',1,6),(10530,12516,'Grandmother Willow (voice)',1,7),(10530,52699,'Percy (voice)',2,8),(10530,9188,'Ben (voice)',0,9),(10530,181486,'Lon (voice)',2,10),(10530,15831,'Flit (voice)',2,11),(10530,163070,'Nakoma (voice)',0,12),(10530,950126,'Kocoum (voice)',2,13),(10530,37430,'Kekata (voice)',2,14),(10530,12077,'Powhatan / Kekata (singing voice)',2,15),(10603,18269,'George of the Jungle',2,0),(10603,41087,'Ursula Stanhope',1,1),(10603,19159,'Lyle van de Groot',2,2),(10603,8930,'An Ape Named \'Ape\' (voice)',0,3),(10603,6487,'Kwame',2,4),(10603,21132,'Thor',2,5),(10603,11318,'Beatrice Stanhope',1,6),(10603,20361,'Arthur Stanhope',2,7),(10603,58090,'Max',2,8),(10603,1229698,'Betsy',1,9),(10603,61307,'N\'Dugo',2,10),(10603,953505,'Kip',0,11),(10603,559485,'Baleto',0,12),(10603,94979,'The Narrator (voice)',1,13),(10603,49275,'Male Guest at Party',2,14),(10603,82719,'Male Guest at Party',2,15),(10603,168326,'Ursula\'s Friend',1,16),(10603,1448921,'Ursula\'s Friend',1,17),(10603,1224308,'Ursula\'s Friend',1,18),(10603,1748102,'Mercenary',0,19),(10603,1748103,'Mercenary',0,20),(10603,20761,'Mercenary',2,21),(10603,1748104,'Jailer',0,22),(10603,1748105,'TV Weatherman',0,23),(10603,1748106,'TV Anchor',1,24),(10603,1748107,'Cameraman',0,25),(10603,1748108,'TV Reporter',1,26),(10603,1748109,'Perfume Lady',1,27),(10603,1748110,'Fireboat Captain',0,28),(10603,1748111,'Bongo Drummer at Dance Studio',0,29),(10603,127614,'Bongo Drummer at Dance Studio',2,30),(10603,1748112,'Dancer',1,31),(10603,29214,'Dancer',1,32),(10603,1748053,'Dancer',1,33),(10603,1748113,'Dancer',0,34),(10603,1748114,'Dancer',1,35),(10603,1748052,'Dancer',0,36),(10603,14390,'Dancer',1,37),(10603,1741701,'Dancer',1,38),(10603,1748068,'Dancer',1,39),(10603,1748115,'Dancer',1,40),(10603,1748116,'Dancer',1,41),(10603,1748117,'Dancer',0,42),(10603,1748119,'Caterer',1,43),(10603,1748124,'Caterer with Tray',2,44),(10603,1748125,'Waiter',0,45),(10603,1609276,'Shop Owner',1,46),(10603,1748126,'Party Attendant',0,47),(10603,106243,'Customer at Department Store',1,48),(11353,67773,'Bobby Bowfinger',2,0),(11353,776,'Kit Ramsey | Jeffernson \'Jiff\' Ramsey',2,1),(11353,69122,'Daisy',1,2),(11353,11870,'Carol',1,3),(11353,6213,'Dave',0,4),(11353,20804,'Afrim',2,5),(11353,92276,'Slater',2,6),(11353,27860,'Hal, Kit\'s Agent',2,7),(11353,28641,'Terry Stricter',2,8),(11353,3223,'Jerry Renfro',2,9),(11353,81957,'Sanchez',0,10),(11353,92277,'Martinez',2,11),(11353,92278,'Hector',2,12),(11353,60785,'Luis',2,13),(11353,92279,'Freddy',2,14),(11353,92280,'LA Cop',2,15),(11353,42724,'MindHead Executive',2,16),(11353,80301,'Camera Security Guard',2,17),(11353,92281,'Federal Express Man',0,18),(11353,33490,'Actor at Audition',2,19),(11353,84457,'Young Actress at Audition',1,20),(11353,92282,'Clothing Sales Clerk',2,21),(11353,92283,'Renfro\'s Executive',0,22),(11353,68842,'Nightclub Cleaner',2,23),(11353,92284,'Camera Store Clerk',0,24),(11353,46075,'Kenny, Kit\'s Limo Driver',2,25),(11353,92285,'Kit\'s Bodyguard',2,26),(11353,3952,'Kit\'s Bodyguard',2,27),(11353,92286,'Kit\'s Assistant',0,28),(11353,92287,'Studio Executive',2,29),(11353,92288,'E! Channel Interviewer',1,30),(11353,92289,'Farrah, Hollywood Lesbian',1,31),(11353,92290,'Laker Girl',0,32),(11353,92291,'Laker Girl',0,33),(11353,92292,'Laker Girl',0,34),(11353,92293,'Laker Girl',0,35),(11353,92294,'Laker Girl',0,36),(11353,92295,'Laker Girl',1,37),(11353,92296,'Laker Girl',0,38),(11353,92298,'Reporter at Premier',0,40),(11353,92299,'\'Mongo\' Premiere Guest',0,41),(11353,92300,'Black Masked Ninja',0,42),(11353,92481,'',0,43),(10586,3392,'Charles Remington',2,0),(10586,5576,'Col. John Henry Patterson',2,1),(10586,207,'Robert Beaumont',2,2),(10586,51878,'Samuel',2,3),(10586,1246,'Helena Patterson',1,4),(10586,1369,'Dr. David Hawthorne',2,5),(10586,18280,'Angus Starling',2,6),(10586,11851,'Abdullah',2,7),(10586,143476,'Mahina',0,8),(10586,667748,'Indian Victim',2,9),(10586,1556203,'Worker',0,10),(10586,1556204,'Worker',0,11),(10586,1556205,'Worker',0,12),(10586,1156168,'Nervous Sikh Orderly',0,13),(10586,541462,'Orderly',0,14),(10632,2176,'L.T. Bonham',2,0),(10632,1121,'Aaron Hallam',2,1),(10632,935,'Abby Durrell',1,2),(10632,21474,'Irene Kravitz',1,3),(10632,9277,'Ted Chenoweth',2,4),(12117,4173,'Dr. Ethan Powell',2,0),(12117,9777,'Dr. Theo Caulder',2,1),(12117,55636,'Ben Hillard',2,2),(12117,16307,'Lynn Powell',1,3),(12117,10477,'Dr. John Murray',2,4),(12117,778,'Guard Dacks',2,5),(12117,103833,'Warden Keefer',2,6),(12117,35024,'Nicko',2,7),(12117,1484867,'Pete',2,8),(12117,65422,'Catherine',0,9),(12117,4693,'Bluto',2,10),(12117,16937,'Gurad Alan',2,11),(12117,155560,'Guard Anderson',2,12),(12117,134061,'Annie',1,13),(12117,1827420,'Lester Rodman',0,14),(12117,143574,'Tom Hanley',2,15),(12117,6908,'Foley',2,16),(12117,41745,'Boaz',0,17),(12117,204896,'Marjorie Powell',1,18),(12117,1325966,'Captain Kagona',0,19),(12117,1827421,'David',0,20),(12117,46929,'Dr. Marzuez',1,21),(12117,1174793,'Dr. Josephson',0,22),(12117,182136,'Gilbert',2,23),(12117,93704,'Guard #1',2,24),(12117,78885,'Guard #2',0,25),(12117,1236029,'Federal Marshall',0,26),(13260,23659,'Jackie Moon',2,0),(13260,16307,'Lynn',1,1),(13260,57755,'Monix',2,2),(13260,28638,'Commissioner',2,3),(13260,21200,'Lou Redwood',2,4),(13260,37934,'Clarence',2,5),(13260,28637,'Bobby Dee',2,6),(13260,52997,'Kyle',2,7),(13260,51857,'Cornelius',2,8),(13260,17183,'Dukes',2,9),(13260,59841,'Father Pat',2,10),(13260,41091,'',1,11),(13260,95875,'Dick Pepperfield',2,12),(13260,11827,'Bee Bee Ellis',2,13),(13260,86624,'Melinda',1,14),(13260,58224,'Nacho Fan',2,15),(12123,6384,'Eddie Kasalivich',2,0),(12123,192,'Paul Shannon',2,1),(12123,3293,'Dr. Lily Sinclair',1,2),(12123,10430,'FBI Agent Leon Ford',2,3),(12123,14721,'FBI Agent Doyle',0,4),(12123,1248,'Lyman Earl Collier',2,5),(12123,593,'Maggie McDermott',1,6),(12123,10486,'Ed Rafferty',2,7),(12123,1362093,'Dr. Alistair Barkley',0,8),(12123,21629,'Lu Chen',2,9),(12123,24524,'Lucasz Screbneski',2,10),(12123,588278,'Emily Pearl',0,11),(12123,73831,'Chidi Egbuna',0,12),(12123,992588,'James Washington',0,13),(12123,156592,'Morris Grodsky',2,14),(12123,1463182,'Lab Techie #3',0,15),(12123,1522071,'Video Dan',0,16),(12123,171631,'Caleb Williams',0,17),(12123,154657,'Ken Lim',2,18),(12123,1522072,'Sarah Fine',0,19),(12123,148306,'Raymond Peu00f1a',0,20),(12123,1522073,'Gabrielle Guerrera',0,21),(12123,76987,'Stuart Showcroft',2,22),(12123,173739,'Wisconsin Chief Schmidke',2,23),(12123,1178314,'DC Technician',0,24),(12123,1522083,'DC Technician',0,25),(12123,86576,'Sergeant Joe Byczkowski',0,26),(12123,57597,'Sergeant Nick Zingaro',2,27),(12123,59399,'Officer Miguel',2,28),(12123,135717,'Dane County Cop',0,29),(12123,43776,'State Trooper Nemitz',2,30),(12123,182372,'State Trooper Schwartz',0,31),(12123,3283,'Anita Fermi',0,32),(12123,21816,'Jackie Mann',0,33),(12123,1522089,'Chicago Administrator',0,34),(12123,1522091,'Receptionist',0,35),(12123,1327404,'Matthew Haig',0,36),(12123,1522095,'Justin Tidy',0,37),(12123,1522096,'Colleen Dryden',0,38),(12123,1522097,'Rita Bliss',0,39),(12123,1522098,'Dolores Enrique',0,40),(12123,74487,'Al Vanzetti',2,41),(12123,1522099,'Drummond',0,42),(12123,1522100,'TV Reporter',0,43),(12123,1522101,'TV Reporter',0,44),(12123,16477,'Clancy Butler',2,45),(12123,86573,'Yusef Reed',2,46),(12123,1522102,'Jim Gaylord',0,47),(12123,201389,'Naldo Partida',2,48),(12123,554391,'Senator Phil Schmidt',2,49),(12123,933416,'Senate Chairman',0,50),(12123,1522103,'Staff Member Stennis',2,51),(12123,1522104,'Senate Guard',0,52),(12123,1522105,'Firechief #1',0,53),(12123,1005538,'Barkley\'s Lawyer',1,54),(12123,62731,'Bar Patron',2,55),(12123,1522106,'Bridge Controller',0,56),(12123,1226696,'Bridge Controller',0,57),(12123,1395066,'Train Porter',0,58),(12123,59406,'Older Woman on Train',1,59),(12123,1522107,'Flower Shop Owner',0,60),(12123,335,'D.C. Flower Delivery Man',2,61),(12123,1522108,'Doorman',0,62),(12123,1522109,'Gate Guard',0,63),(12123,109007,'Panhandler',0,64),(12123,1522110,'Homeless Husband',0,65),(12123,1522111,'Homeless Wife',0,66),(12123,1522112,'Homeless Man',0,67),(12123,1230668,'Romano',2,68),(12123,1522113,'Evelyn',0,69),(12123,1522114,'Max Holloway',0,70),(12123,159394,'Orbit',2,71),(12123,35520,'Hamada',1,72),(12123,14839,'Swizlard',2,73),(12123,1265395,'Tunnel Foreman',0,74),(16072,32747,'Lt. Gen. Thomas Stonewall Jackson',2,0),(16072,8447,'Lt. Col. Joshua Lawrence Chamberlain',2,1),(16072,3087,'Gen. Robert E. Lee',2,2),(16072,27116,'Sgt. Buster Kilrain',2,3),(16072,2878,'Sgt. Thomas Chamberlain',2,4),(16072,23646,'Capt. Alexander \'Sandie\' Pendleton',2,5),(16072,28414,'Col. Adelbert Ames',2,6),(16072,945144,'Maj. Gen. Winfield Scott Hancock',0,7),(16072,241735,'Maj. Walter Taylor',0,8),(16072,2547,'Lt. Gen. James Longstreet',2,9),(16072,590,'Maj. Gen. A. P. Hill',2,10),(16072,20215,'Maj. Gen. George Pickett',2,11),(16072,155962,'Maj. Gen. J. E. B. Stuart',2,12),(16072,93345,'Brig. Gen. Marsena Patrick',2,13),(16072,1218005,'Jane Beale',1,14),(16072,1446014,'George Jenkins',0,15),(16072,32494,'John Janney',2,16),(16072,13936,'Jim Lewis',2,17),(16072,1223185,'John Beale',2,18),(16072,1197765,'Lucy Beale',0,19),(16072,15198,'Old Penn',2,20),(34314,11477,'Ryan Weaver',2,0),(34314,34485,'Teri Halloran',1,1),(34314,2039,'Stubbs',2,2),(34314,1210,'Lt. Aldo Hines',2,3),(34314,10768,'Rachel Taper',1,4),(34314,29068,'Captain Samuel Bowen',2,5),(34314,2022,'Maggie',1,6),(34314,12645,'Brooks',0,7),(34314,9277,'FBI Agent Frank Sinclair',2,8),(34314,65038,'Betty',1,9),(34314,97944,'Captain Matt Powell',2,10),(34314,1188456,'1st Officer Ted Kary',0,11),(34314,14333,'Marshal Al Arquette',2,12),(34314,1214447,'Marshal Marty Douglas',2,13),(34314,99090,'Air Traffic Controller',2,14),(34314,1854662,'Carl',2,15),(34314,1854663,'Marshall Riordan',2,16),(34314,1854664,'Marsahll Green',2,17),(34314,1819858,'Mr. Kramer',0,18),(34314,1729745,'Mrs. Kramer',1,19),(34314,184116,'Kip',0,20),(34314,188216,'Career Woman',1,21),(34314,27492,'LAX Manager',2,22),(34314,157405,'Limato',2,23),(34314,1854665,'Asian Businessman',2,24),(34314,1214304,'Mr. Hollywood',0,25),(34314,1854667,'Detective',2,26),(34314,160959,'Desk Sergeant',2,27),(34314,155607,'Door Man',2,28),(34314,1004156,'Rodriguez',2,29),(34314,1412253,'Port Authority Officer',2,30),(34314,164397,'Laura',1,31),(34314,122243,'Stone',2,32),(34314,97976,'William Harris',0,33),(34314,92110,'Air Traffic Controller',1,34),(34314,55714,'Air Traffic Controller',2,35),(34314,156653,'Wing Commander W. Hadfield',2,36),(34314,1218282,'Mark Pavone',2,37),(34314,42317,'Felix',2,38),(34314,1775709,'Air Traffic Controller (uncredited)',1,39),(34314,1854668,'Airport Fireman',2,40),(34314,1854669,'FBI Agent (uncredited)',2,41),(34314,1854668,'Airport Fireman (uncredited)',2,42),(34314,1741327,'Shopper (uncredited)',0,43),(34314,1854670,'Lizzie (uncredited)',1,44),(19724,776,'Evan Danielson',2,0),(19724,19159,'Johnny Whitefeather',2,1),(19724,118372,'Olivia Danielson',1,2),(19724,780,'Tom Stevens',2,3),(19724,78437,'Noah Kulick',0,4),(19724,74615,'Tricia Danielson',1,5),(19724,11827,'John Strother',2,6),(19724,8349,'Dante D\'Enzo',2,7),(19724,52933,'Tod',2,9),(19724,127728,'Indigo Whitefeather',0,10),(19724,17401,'Fred Franklin',2,11),(19724,31028,'Carl Simons',2,12),(19724,65760,'Miss Davis',1,13),(19724,75633,'Fo Fo Figgleys Kid',2,14),(19724,101416,'Brock Pressman',2,16),(19724,65749,'Mrs. Pressman',1,17),(19724,105641,'Mr. Pratt',2,18),(19724,147653,'Evan\'s Neighbor',0,19),(19724,543193,'Lori Strother',1,21),(19724,1375338,'Rose',0,22),(19724,1236042,'Financial Reporter',1,23),(14623,55493,'Alan Tracy',2,0),(14623,60459,'Fermat',2,1),(14623,49346,'Teacher',1,2),(14623,12830,'Headmaster',2,3),(14623,141349,'Excited Kid',0,4),(14623,20471,'News Anchor',2,5),(14623,82345,'Lisa Lowe',0,6),(14623,58428,'Scott Tracy',2,7),(14623,58758,'Mullion',2,8),(14623,2053,'Jeff Tracy',2,9),(14623,141350,'Know It All Kid',0,10),(14623,141351,'Virgil Tracy',2,11),(14623,141352,'Gordon Tracy',2,12),(14623,3971,'Lady Penelope',1,13),(14623,5319,'Parker',2,14),(14623,141353,'Panhead',0,15),(14623,141354,'Panhead\'s Mother',1,16),(14623,2282,'The Hood',2,17),(14623,11085,'Brains',2,18),(14623,75067,'Onaha',0,19),(14623,119792,'Kyrano',2,20),(14623,67599,'Tintin',1,21),(14623,55583,'John Tracy',2,22),(14623,141355,'Transom',1,23),(14623,141356,'Engineer',0,24),(14623,141357,'Ice Cream Man',0,25),(14623,141358,'Henchman',0,26),(14623,40736,'Henchman & Oil Rig Worker',0,27),(10375,16483,'Jake Malloy',2,0),(10375,24047,'Jones',2,1),(10375,13022,'Hank',2,2),(10375,17764,'Detective Hendricks',2,3),(10375,2954,'Jaworski',2,4),(10375,10823,'',2,5),(10375,32747,'',2,6),(10375,418,'',2,7),(10375,54789,'',2,8),(10375,2133,'',1,9),(10375,6970,'',2,10),(10375,10360,'',2,11),(11321,2888,'Ben',2,0),(11321,5916,'Emily',1,1),(11321,70304,'Susan',1,2),(11321,57755,'Ezra Turner',2,3),(11321,8177,'Ben\'s Brother',2,4),(11321,235547,'Young Ben',2,5),(11321,12834,'Dan',2,6),(11321,1102,'Connie',1,7),(11321,55258,'Sarah',1,8),(11321,54696,'Larry',2,9),(11321,17200,'George Ristuccia',2,10),(11321,72864,'Stewart Goodman',2,11),(11321,156818,'Dr. Briar',1,12),(11321,1043304,'George\'s Doctor',2,13),(11321,77033,'Holly',1,14),(11321,74929,'Connie\'s Daughter',1,15),(11321,6944,'Kate the Home Health Care Nurse',1,16),(11456,8891,'Frank Morrison',2,0),(11456,4937,'Rick Barnes',2,1),(11456,10399,'Susan',1,2),(11456,71467,'Danny Morrison',2,3),(11456,884,'Ray Coleman',2,4),(11456,69502,'Jason',2,5),(11456,69503,'Laurie',1,6),(11456,69504,'Theresa',1,7),(11456,571504,'Wedding Guest (uncredited)',0,8),(22803,134,'Nick Rice',2,0),(22803,17276,'Clyde Alexander Shelton',2,1),(22803,17782,'Detective Dunnigan',2,2),(22803,14888,'Jonas Cantrell',2,3),(22803,57451,'Sarah Lowell',1,4),(22803,124304,'Detective Garza',2,5),(22803,21142,'Warden Iger',2,6),(22803,35705,'Kelly Rice',1,7),(22803,124305,'Denise Rice',0,8),(22803,36091,'Clarence Darby',2,9),(22803,6907,'Judge Laura Burch',1,10),(22803,4255,'Bill Reynolds',2,11),(22803,19492,'Mayor April Henry',1,12),(22803,50217,'Bray',2,13),(22803,40039,'Rupert Ames',2,14),(22803,45566,'Brian Bringham',2,15),(22803,1152008,'Sereno',0,16),(22803,1577506,'Clyde\'s Wife',1,17),(22803,1128450,'Charlie - City Hall Security',2,18),(22803,1385071,'Older Cop',2,19),(11631,5064,'Donna Sheridan',1,0),(11631,517,'Sam Carmichael',2,1),(11631,71070,'Sophie Sheridan',1,2),(11631,5472,'Harry Bright',2,3),(11631,1640,'Bill Anderson',2,4),(11631,477,'Rosie Mulligan',1,5),(11631,11870,'Tanya Chesham-Leigh',1,6),(11631,55470,'Sky',2,7),(11631,1240058,'Ali',1,8),(11631,127000,'Lisa',1,9),(11631,1820225,'Pepper',2,10),(11631,71073,'Gregoris',0,11),(11631,58970,'Petros',2,12),(11631,40043,'Father Alex',2,13),(11631,1231600,'Stavros',0,14),(11631,1749206,'Arina',0,15),(11631,1237617,'Eddie',0,16),(11631,570010,'Panos',0,17),(11631,1820226,'Dimitri',0,18),(11631,1820227,'Ione',0,19),(11631,138158,'Irini',0,20),(11631,1450460,'Elena',1,21),(11631,1820228,'Ariana',0,22),(11631,1170519,'Elpida',0,23),(11631,71072,'Sam\'s PA',1,24),(11631,1105459,'Hen',0,25),(32856,56731,'Morley Clarkson',1,0),(32856,10860,'Kara Monahan',1,1),(32856,51329,'Holden Wilson',2,2),(32856,58115,'Sean Jackson',2,3),(32856,18352,'Dr. Harrison Copeland',2,4),(32856,1210,'Edgar Paddington',2,5),(32856,134,'Kelvin Moore',2,6),(32856,9278,'Julia Fitzpatrick',1,7),(32856,17052,'Jason Morris',2,8),(32856,1813,'Liz Curran',1,9),(32856,86653,'Alex Franklin',2,10),(32856,18976,'Reed Bennett',2,11),(32856,15758,'Paula Thomas',1,12),(32856,41798,'Alphonso Rodriguez',2,13),(32856,4090,'Estelle Paddington',1,14),(32856,34847,'Grace Smart',1,15),(32856,1204,'Captain Kate Hazeltine',1,16),(32856,84214,'Willy Harrington',2,17),(32856,8534,'Susan Milton',1,18),(32856,212208,'Felicia Miller',1,19),(32856,1057442,'Masseuse',2,20),(32856,169337,'Pamela Copeland',1,21),(32856,1665036,'Mailroom Danny',2,22),(26389,8891,'Charlie Wax',2,0),(26389,1244,'James Reece',2,1),(26389,120832,'Caroline',1,2),(26389,120833,'Ambassador Bennington',2,3),(26389,1019987,'M. Wong',0,4),(26389,574378,'Nichole',1,5),(26389,145299,'Foreign Minister',0,6),(26389,1637449,'The Thug',0,7),(26389,82318,'Rashid',2,8),(26389,1068891,'The Pimp',2,9),(26389,1637450,'Chinese Punk',0,10),(26389,1001076,'Dir Yasin',0,11),(26389,1121635,'Foreign Minister\'s Aide',1,12),(26389,118512,'Airport Security Official',0,13),(26389,1637451,'Customs Official',0,14),(26389,146182,'Head of Delegation',1,15),(26389,149915,'Embassy Security',0,16),(26389,982098,'Chief of Security',2,17),(26389,1170829,'Bearded Driver',0,18),(26389,572475,'Wax\'s Hooker',1,19),(26389,1177817,'Asian Hooker German',0,20),(26389,1237646,'German Tourist',2,21),(26389,226021,'Chinese Mau00eetre\'D',0,22),(26389,1237646,'The Voice (voice)',2,23),(26389,1637461,'Suicidal Pakistani',0,24),(11817,57599,'Kar',2,0),(11817,5915,'Jade',1,1),(11817,10841,'Strucker',2,2),(11817,1619,'nameless monk',2,3),(11817,74278,'Sax',2,4),(11817,3315,'Nina',1,5),(11817,1005130,'Mr. Funktastic',2,6),(11817,10134,'Mr. Kojima',2,7),(11817,2974,'Master Monk',2,8),(11817,190884,'Diesel',2,9),(11817,1053949,'DV',0,10),(11817,1024492,'Buzz',0,11),(11817,209772,'Wicho',0,12),(11817,201712,'Shade',0,13),(11817,29466,'Brother Tenzin',2,14),(18239,37917,'Isabella \'Bella\' Swan',1,0),(18239,11288,'Edward Cullen',2,1),(18239,84214,'Jacob Black',2,2),(18239,21029,'Charlie Swan',2,3),(18239,45827,'Alice Cullen',1,4),(18239,84215,'Jasper Hale',2,5),(18239,56857,'Carlisle Cullen',2,6),(18239,53755,'Esme Cullen',1,7),(18239,34502,'Emmett Cullen',2,8),(18239,59252,'Rosalie Hale',1,9),(18239,39391,'Laurent Da Revin',2,10),(18239,58168,'Victoria Sutherland',1,11),(18239,84223,'Jessica Stanley',1,12),(18239,56676,'Mike Newton',2,13),(18239,84224,'Angela Weber',1,14),(18239,84225,'Billy Black',2,15),(18239,6804,'Harry Clearwater',2,16),(18239,3968,'Aro Volturi',2,17),(18239,83356,'Caius Volturi',2,18),(18239,501,'Jane Volturi',1,19),(18239,32887,'Marcus Volturi',2,20),(18239,52414,'Alec Volturi',2,21),(18239,65225,'Eric Yorkie',1,22),(18239,1655017,'Quil Ateara',2,23),(18239,84222,'Felix Volturi',2,24),(18239,84221,'Demetri Volturi',0,25),(18239,84219,'Sam Uley',2,26),(18239,84218,'Embry Call',0,27),(18239,84217,'Paul Lahote',2,28),(18239,84216,'Jared Cameron',2,29),(18239,54203,'Emily Young',1,30),(18239,84227,'Gianna',1,31),(18239,84226,'Heidi Volturi',0,32),(18239,172776,'Mr. Berty',2,33),(18239,43933,'Bob Marks',2,34),(18239,63566,'Chet',2,35),(18239,158587,'Marie Higginbotham',1,36),(10312,2157,'Hunter \'Patch\' Adams',2,0),(10312,1233,'Mitch Roman',2,1),(10312,4029,'Dean Walcott',2,2),(10312,9979,'Bill Davis',2,3),(10312,2169,'Rudy',2,4),(10312,2140,'Carin',1,5),(10312,3907,'Dean Anderson',2,6),(10312,95604,'Truman',2,7),(10312,14792,'Dr. Eaton',2,8),(10312,43853,'Joletta',1,9),(10312,1070,'Judy',1,10),(10312,198772,'Adelane',1,11),(10312,43544,'Bile',2,12),(10312,14833,'Arthur Mendelson',2,13),(10312,155861,'Trevor Beene',0,14),(10312,35518,'Dr. Prack',2,15),(10312,8689,'Emmet',2,16),(10312,176386,'Charlie',2,17),(10312,26660,'Dr. Titan',2,18),(10312,82585,'Larry',2,19),(10312,85171,'Aggie',1,20),(10312,21088,'Everton',2,21),(10312,43858,'Neil',2,22),(10312,1077966,'Chess Man',0,23),(10312,194571,'Instructor',0,24),(10312,81918,'Jaime (Monica Potter\'s brother)',2,25),(10312,1363928,'Patch Pirate',0,26),(10312,160375,'Hispanic Father',2,27),(10201,206,'Carl Allen',2,0),(10201,11664,'Renee Allison',1,1),(10201,82666,'Norman',2,2),(10201,64154,'Lucy',1,3),(10201,58068,'Tillie',1,4),(10201,40481,'Jumper',2,5),(10201,18972,'Rooney',2,6),(10201,60952,'Stephanie',1,7),(10201,51329,'Peter',2,8),(10201,8265,'Nick',2,9),(10201,1216510,'Ticket Lady',0,10),(10201,1226913,'Bystander',1,11),(10201,28641,'Terence',2,12),(10201,1219121,'Marv\'s Wife',0,13),(10201,1221679,'Yes Patron',0,14),(10201,113567,'Faranoush',1,15),(10201,1511383,'Bigfoot Waitress',1,16),(10201,1511384,'Daphne',1,17),(10201,1212270,'Soo-Mi',0,18),(10201,133400,'Woman Bank Employee',1,19),(10329,350,'Dr. Karen Ross',1,0),(10329,21043,'Dr. Peter Elliot',2,1),(10329,8874,'Captain Munro Kelly',2,2),(10329,13472,'Herkermer Homolka',2,3),(10329,31511,'Richard',2,4),(10329,10671,'R.B. Travis',2,5),(10329,982276,'Amy',1,6),(10329,23967,'Moira',0,7),(10329,95747,'Amy the Gorilla',1,8),(10329,52043,'Boyd',2,9),(10329,42970,'Eleanor Romy',0,10),(10329,156342,'Assistant',1,11),(10329,14852,'College President / Elliot\'s Boss',2,12),(10329,167075,'William',2,13),(10329,192268,'Prof. Arliss Wender',0,14),(10329,16861,'Bob Driscoll',2,15),(10329,11357,'Charles Travis',2,18),(10329,31164,'Kahega (as Adewalu00e9)',2,19),(10329,18792,'Captain Wanta (uncredited)',2,20),(10329,532,'Eddie Ventro (uncredited)',2,21),(10329,994073,'727 Pilot',2,22),(13811,2963,'John Koestler',2,0),(13811,9827,'Diana Wayland',1,1),(13811,77334,'Caleb Koestler',2,2),(13811,77335,'Phil Bergman',2,3),(13811,77336,'Grace Koestler',1,4),(13811,84963,'The Stranger',0,5),(13811,84964,'Lucinda Embry / Abby Wayland',1,6),(13811,44842,'Rev. Koestler',2,7),(13811,37292,'Allison',1,8),(13811,84965,'Younger Caleb',0,9),(13811,79106,'Miss Taylor (2009)',1,10),(13811,84966,'Miss Taylor (1959)',1,11),(13811,84967,'Lucinda\'s Mother',1,12),(13811,84968,'Lucinda\'s Father',0,13),(13811,96066,'Spencer',2,14),(13811,213157,'Flight Attendant',1,15),(13811,1530759,'Man in Duffle Coat',2,16),(10320,3489,'Rachel Keller',1,0),(10320,1284159,'Max Rourke',2,1),(10320,20,'Dr. Emma Temple',1,2),(10320,26292,'Aidan Keller',2,3),(10320,21163,'Martin Savide',2,4),(10320,5606,'Evelyn',1,5),(10320,57136,'Jake',0,6),(10320,84247,'Emily',1,7),(10320,61829,'Betsy',1,8),(10320,155743,'Doctor',2,9),(10320,1580,'Samara (archive footage)',1,10),(10320,107791,'Evil Samara',1,11),(10320,162828,'Father of Emily',2,12),(10320,17628,'Young Evelyn',1,13),(10320,1214389,'Male Reporter',0,14),(10320,1793074,'Adoption Counselor',0,15),(10320,167098,'Mother of Emily',1,16),(13673,12898,'Luther Krank',2,0),(13673,8944,'Nora Krank',1,1),(13673,707,'Vic Frohmeyer',2,2),(13673,588,'Walt Scheel',2,3),(13673,138242,'Bev Scheel',1,4),(13673,17190,'Spike Frohmeyer',2,5),(13673,11159,'Officer Salino',2,6),(13673,28410,'Officer Treen',2,7),(13673,6168,'Umbrella Santa / Marty',2,8),(13673,71728,'Father Zabriskie',2,9),(13673,68769,'Blair Krank',1,10),(13673,148622,'Enrique Decardenal',0,11),(13673,86905,'Candi',1,12),(13673,7427,'Merry',1,13),(13673,15031,'Aubie',0,14),(13673,1599175,'Officer Staff',2,15),(13673,95875,'Husband',2,16),(13836,18918,'Jack Bruno',2,0),(13836,1285,'Sara',1,1),(13836,23498,'Seth',2,2),(13836,17832,'Dr. Alex Friedman',1,3),(13836,59238,'Pope',2,4),(13836,53261,'Tina',1,5),(13836,18706,'Natalie Gann',1,6),(13836,8785,'Burke',2,7),(13836,16857,'Matheson',2,8),(13836,64805,'Carson',2,9),(13836,109870,'Siphon',2,10),(13836,129661,'Lloyd',2,11),(13836,74933,'Dominick',2,12),(13836,31365,'Chuck',2,13),(13836,1201,'Dr. Donald Harlan',2,14),(13836,87066,'Sheriff Antony',2,15),(13836,11159,'Eddie',2,16),(13836,1349629,'Analyst D. Pleasence',2,17),(13836,159482,'Frank',2,18),(13836,122853,'Marty',2,19),(13836,149824,'Matt',2,20),(13836,1308381,'Imperial Stormtrooper Ciardi',2,21),(13836,1208891,'Imperial Stormtrooper Gray',2,22),(13836,1063263,'Stenftenagel',0,23),(13836,112049,'Gallagher',2,24),(13836,59641,'Four-Star General V. Lewton',2,25),(13836,1673228,'General E. Albert',2,26),(13836,87332,'Casey Taylor',2,27),(13836,19307,'Gail Ross',1,28),(13836,1193473,'Oren Bergman',2,29),(13836,30882,'Sunday',1,30),(13836,63107,'Herself (Brokedown Cadillac)',1,31),(13836,1673233,'Himself (Brokedown Cadillac)',2,32),(13836,1673239,'Himself (Brokedown Cadillac)',0,33),(13836,1673240,'Himself (Brokedown Cadillac)',2,34),(13836,1673241,'Himself (Brokedown Cadillac)',2,35),(13836,1367112,'Iscovich',2,36),(13836,59844,'Police Officer Hough',2,37),(13836,1665036,'Frankie Valet',2,38),(13836,1658178,'Teddy Tentacles',2,39),(13836,1673245,'Hendricks',2,40),(13836,7679,'Ray',2,41),(13836,83635,'Shira the UFO Huntress',1,42),(13836,1302500,'Fem-Alien #1',1,43),(13836,1673257,'Fem-Alien #2',1,44),(11451,49265,'Maggie Peyton',1,0),(11451,2232,'Ray Peyton Sr.',2,1),(11451,2876,'Trip Murphy',2,2),(11451,33654,'Ray Peyton Jr.',2,3),(11451,15033,'Kevin',2,4),(11451,57854,'Sally',1,5),(11451,22125,'Crash',2,6),(11451,59233,'Augie',2,7),(11451,539,'Larry Murphy',2,8),(11451,22124,'Charisma',1,9),(11451,15372,'Crazy Dave',2,10),(11451,173756,'Beeman',2,11),(11451,200145,'Juan Hernandez',2,12),(11451,157193,'Miguel Hernandez',0,13),(11451,58513,'Jimmy D.',2,14),(11451,63234,'Girlfriend',1,15),(12103,3392,'Nathan R. Conrad',2,0),(12103,48,'Patrick Koster',2,1),(12103,328,'Elisabeth Burrows',1,2),(12103,20815,'Jessie Conrad',1,3),(12103,828,'Dolen',2,4),(12103,18285,'Detective Sandra Cassidy',1,5),(12103,25878,'Russel Maddox',2,6),(12103,2561,'Sydney Simon',2,7),(12103,135353,'Max Dunlevy',2,8),(12103,36189,'Jake',2,9),(12103,129101,'Arnie',2,10),(12103,10696,'Aggie Conrad',1,11),(12103,17485,'Dr. Louis Sachs',2,12),(12103,237,'Leon Edward Croft',2,13),(12103,307982,'Jonathan',2,14),(12103,37204,'Ryan',2,15),(10393,6384,'Shane Falco',2,0),(10393,193,'Jimmy McGinty',2,1),(10393,35980,'Annabelle Farrell',1,2),(10393,18270,'Clifford Franklin',2,3),(10393,62066,'Jamal Jackson',2,4),(10393,15277,'Daniel Bateman',2,5),(10393,7026,'Nigel \'The Leg\' Gruff',2,6),(10393,1532981,'Jumbo',0,8),(10393,76476,'Walter Cochran',2,9),(10393,62562,'Brian Murphy',2,10),(10393,46921,'Earl Wilkinson / Ray Smith',2,11),(10393,2886,'Pilachowski',2,12),(10393,16841,'Eddie Martel',2,13),(10393,5251,'Edward O\'Neil',2,14),(10393,87360,'Andre Jackson',2,15),(14199,84214,'Sharkboy',2,0),(14199,84517,'Lavagirl',0,1),(14199,4741,'Max',2,2),(14199,15234,'Max\'s Dad',2,3),(14199,38025,'Max\'s Mom',1,4),(14199,84518,'Linus / Minus',2,5),(14199,62168,'Marissa / Ice Princess',1,6),(14199,41798,'Mr. Electricidad / Tobor / Ice Guardian',2,7),(22832,112013,'Raizo',2,0),(22832,2038,'Mika Coretti',1,1),(22832,61697,'Hollywood',2,2),(22832,9462,'Tattoo Master',2,3),(22832,10883,'Takeshi',2,4),(22832,53174,'Yakuza Couch',0,5),(22832,99846,'Ozunu',2,6),(22832,11280,'Maslow',2,7),(22832,19115,'Pretty Ninja',1,8),(22832,1257963,'Teenage Raizo',2,9),(22832,1086861,'Yakuza Henchman',0,10),(22832,46021,'Yakuza Mohawk',1,11),(22832,1157287,'Laundromat Manager',2,12),(22832,46992,'Landlady',1,13),(22832,979342,'Young Kiriko',0,15),(22832,1434485,'Young Raizo',0,16),(22832,38621,'Mrs. Sabatin',0,17),(22832,17060,'Aleksei Sabatin',2,18),(22832,1434486,'Teenage Takeshi',0,19),(22832,1434487,'Teenage Kiriko',0,20),(22832,1434488,'Agent Zabranski',0,21),(22832,1186438,'Battuta',2,22),(22832,1434489,'Kid with Envelope',0,23),(22832,147637,'Mika\'s Neighbor',2,24),(22832,994,'Kingpin',2,25),(22832,1434490,'Girl on Roof',0,26),(22832,104246,'Lead Europol Agent',2,27),(22832,141778,'Europol Cell Guard',2,28),(22832,40684,'Europol Door Guard',2,29),(22832,40738,'Europol Pointman',0,30),(22832,6266,'Europol Guard',0,31),(22832,22705,'Europol Guard',0,32),(22832,96226,'Maslow\'s Aide',0,33),(22832,40729,'Task Force Agent',0,34),(22832,1327310,'Medic',0,35),(22832,998518,'(uncredited)',0,36),(22832,1278518,'Jamison (uncredited)',2,37),(22832,147642,'Indonesian Shopman - Istanbul (uncredited)',0,38),(10390,1269,'Billy Chapel',2,0),(10390,11164,'Jane Aubrey',1,1),(10390,4764,'Gus Sinski',2,2),(10390,20089,'Heather Aubrey',1,3),(10390,18999,'Frank Perry',2,4),(10390,1248,'Gary Wheeler',2,5),(10390,3714,'Heckler',2,6),(11892,18277,'Cassie Mayweather',1,0),(11892,21343,'Sam Kennedy',2,1),(11892,30614,'Richard Haywood',2,2),(11892,10692,'Justin Pendleton',2,3),(11892,51536,'Lisa Mills',1,4),(11892,2969,'Ray Feathers',2,5),(11892,49832,'Captain Rod Cody',2,6),(11892,155423,'Asst. D.A. Al Swanson',2,7),(11892,77014,'Ms. Elder',0,8),(11892,1212284,'Restaurant Manager',0,9),(11892,180078,'Mr. Chechi',2,10),(11892,1319508,'Olivia Lake, the Victim',0,11),(11892,155456,'Male Officer in Flashback',2,12),(11892,154114,'Lab Technician',1,13),(11892,155031,'Lawyer',2,14),(11892,1555341,'Female Officer in Flashback',0,15),(11892,146391,'Parole Board Marshall',2,16),(11892,154621,'Nurse',1,17),(11892,172725,'Fingerprint Technician',2,18),(11892,155825,'Criminalist #1 at Ray\'s House',2,19),(11892,1228791,'Criminalist #2 at Ray\'s House',0,20),(11892,1555343,'Richard\'s Mother',0,21),(11892,5147,'Paramedic',2,22),(11892,104057,'Justin\'s Mother',1,23),(11892,17039,'Cop at Richard\'s House',2,24),(11892,1555344,'Cop at First Crime Scene',0,25),(12220,62,'Ben Jordan',2,0),(12220,1160,'Katie Jordan',1,1),(12220,3026,'Stan',2,2),(12220,21058,'Erin Jordan at ten',1,3),(12220,71725,'Josh Jordan at twelve',2,4),(12220,71726,'Josh Jordan at two and a half',0,5),(12220,14415,'Liza',1,7),(12220,12931,'Rachel',1,8),(12220,781,'Dave, Ben\'s literary agent',2,9),(12220,7503,'Arnie Jordan',2,10),(12220,71727,'Lillian Jordan',1,11),(12220,19415,'Dot',1,12),(12220,71728,'Harry',2,13),(12220,181553,'Josh Jordan at Three',0,14),(12220,51662,'Dr. Rifkin',2,15),(12220,32390,'Dr. Siegler',2,16),(12220,1044,'Waiter',2,17),(10782,8891,'Hardy',2,0),(10782,935,'Osborne',1,1),(10782,2231,'West',2,2),(10782,1771,'Kendall',2,3),(10782,68122,'Styles',2,4),(10782,12792,'Dunbar',2,5),(10782,41901,'Nunez',1,6),(10782,66143,'Castro',0,7),(10782,17637,'Pike',2,8),(10782,6066,'Mueller',2,9),(10782,18688,'Vilmer',2,10),(10782,982098,'Helicopter Pilot',2,11),(10782,91932,'Helicopter Pilot',2,12),(10782,3283,'Nurse #1',0,13),(10782,930944,'MP',2,14),(10782,1676936,'G.I. on the Tarmac',2,15),(10782,75200,'Jeep Driver',2,16),(10061,6856,'Snake Plissken',2,0),(10061,825,'Malloy',2,1),(10061,884,'Eddie',2,2),(10061,2230,'Hershe Las Palamas',1,3),(10061,19153,'President',0,4),(10061,35529,'Cuervo Jones',2,5),(10061,41820,'Brazen',1,6),(10061,3124,'Taslima',1,7),(10061,157904,'Utopia',1,8),(10061,8949,'Pipeline',2,9),(10061,11357,'Surgeon General of Beverly Hills',2,10),(10061,2221,'Test Tube',2,11),(10061,169628,'Saigon Shadow',2,12),(10061,61704,'Hershe Gang Member',2,13),(10061,94089,'Hershe Gang Member',2,14),(10061,1592534,'Mescalito (uncredited)',2,15),(10061,33654,'Surfer',2,16),(10386,116027,'Hogarth Hughes (voice)',2,0),(10386,4491,'Annie Hughes (voice)',1,1),(10386,12835,'The Iron Giant (voice)',2,2),(10386,4443,'Kent Mansley (voice)',2,3),(10386,18688,'Dean McCoppin (voice)',2,4),(10386,4251,'General Rogard (voice)',2,5),(10386,9599,'Mrs. Lynley Tensedge (voice)',1,6),(10386,16433,'Foreman Marv Loach / Floyd Turbeaux (voice)',2,7),(10386,588,'Earl Stutz (voice)',2,8),(10386,19545,'Additional Voices',2,9),(10386,78317,'Additional Voices',2,10),(10386,30695,'Additional Voices',1,11),(10386,1075148,'Additional Voices',0,12),(10386,1075150,'Additional Voices',0,13),(10386,70615,'Additional Voices',2,14),(10386,35172,'Additional Voices',2,15),(10386,81843,'Additional Voices',1,16),(10386,1407907,'Additional Voices (voice)',0,17),(10386,86006,'Additional Voices (voice)',2,18),(10386,84213,'Additional Voices (voice)',2,19),(10386,160616,'Additional Voices (voice)',2,20),(10386,143786,'Additional Voices (voice)',0,21),(10386,214701,'Additional Voices (voice)',0,22),(10386,84493,'Additional Voices (voice)',0,23),(10386,166406,'Additional Voices (voice)',2,24),(10386,61969,'Additional Voices (voice)',2,25),(10386,63646,'Additional Voices (voice)',2,26),(10386,1196132,'Additional Voices (voice)',1,27),(10386,16060,'Additional Voices (voice)',2,28),(11615,1979,'David Gale',2,0),(11615,204,'Bitsey Bloom',1,1),(11615,350,'Constance Hallaway',1,2),(11615,32458,'Zack Stemmons',2,3),(11615,25702,'Berlin',1,4),(11615,13525,'Dusty Wright',2,5),(11615,55536,'Nico the Goth Girl',1,6),(11615,7574,'Barbara Kreuster',1,7),(11615,583836,'Joe Mullarkey',0,8),(11615,98307,'Motel Waitress',1,9),(11615,29862,'Duke Grover',2,10),(11615,15374,'Braxton Belyeu',2,11),(11615,977061,'Supervising Guard',2,12),(11615,974854,'Door Guard',2,13),(11615,1241931,'Jo Edna the Babysitter',1,14),(11615,109525,'Ross',2,15),(11615,1472372,'John',0,16),(11615,994259,'TV Host',2,17),(11615,61567,'Governor Hardin',2,18),(11615,36634,'Officer Ramirez',2,19),(11615,1197336,'Officer Hasermann',2,20),(11615,217322,'University President',0,21),(11615,140884,'DeathWatch Chief / TV Reporter',2,22),(11615,139235,'Hospital Orderly',2,23),(11615,1394283,'New Homeowner',1,24),(11615,1219824,'Inmate Cook',2,25),(11615,559329,'Warden',0,26),(11615,101981,'Bullhorn Protester',2,27),(11615,35652,'Bullhorn Protester',2,28),(11615,206675,'Bullhorn Protester',1,29),(11615,132444,'Sharon\'s Maid',1,30),(11615,1143403,'Liu00fa',1,31),(11615,1249188,'TV Reporter',1,32),(11615,141485,'TV Reporter',1,33),(11615,1446095,'TV Reporter',1,34),(11615,180566,'TV Reporter',2,35),(11615,111009,'TV Reporter',1,36),(11615,232450,'TV Reporter',0,37),(11615,1375994,'Interviewee',0,38),(11615,93927,'Interviewee',1,39),(11615,1817204,'Reporter A.J. Roberts',1,40),(11615,1817216,'Margie',1,41),(11615,1817224,'Grad Student',1,42),(11615,1817236,'Berlin\'s Classmate',1,43),(11615,1817239,'Jamie',0,44),(11615,1817245,'Greer',0,45),(11615,1817246,'TV Assistant Director',0,46),(11615,1333917,'Sharon Gale',1,47),(11615,1817254,'Radio Shed Executive',0,48),(11615,1741958,'Josh',0,49),(11615,1817256,'Rosie',0,50),(11615,1817258,'Beth',1,51),(11615,1817268,'Constance\'s Doctor',1,52),(11615,1817272,'College Girl',1,53),(11615,1817277,'Belyeu\'s Clerk',0,54),(11615,1817279,'Belyeu\'s Assistant',1,55),(11615,1817280,'Section 1835 Guard',0,56),(11615,1817281,'TV Soprano',1,57),(11615,1817283,'TV Tenor',0,58),(11615,1817284,'Chaplain',0,59),(11615,1817285,'Photographer',0,60),(11615,1494880,'Religious Woman',1,61),(11615,1817288,'News Cameraman',0,62),(11615,1817289,'Barcelona Neighbor',0,63),(11615,1817291,'Mail Girl',1,64),(11615,1639812,'Guillermo',0,65),(11615,1817294,'Timur',2,66),(11615,1817295,'Calaf',0,67),(11615,1817296,'TV Reporter',0,68),(11615,1817298,'TV Reporter',0,69),(11615,1792151,'TV Reporter',0,70),(11615,1817299,'TV Reporter',1,71),(11615,1817303,'TV Reporter',1,72),(11615,1817304,'Interviewee',0,73),(11615,1817305,'Interviewee',0,74),(11615,1817306,'Interviewee',1,75),(11615,1744994,'Interviewee',0,76),(11615,1386304,'Protestor (uncredited)',1,77),(11615,1817309,'Traveler (uncredited)',1,78),(11615,1817310,'Concerned Man (uncredited)',0,79),(11615,1741968,'Protestor / Prison Inmate (uncredited)',0,80),(11615,1817311,'Businessman (uncredited)',0,81),(11615,1817312,'Texas Governor\'s Aide (uncredited)',0,82),(11615,1817313,'College Student (uncredited)',0,83),(11615,1817314,'Flight Attendant (uncredited)',1,84),(11615,1817315,'Dayplayer (uncredited)',1,85),(11615,1652419,'Party Girl (uncredited)',1,86),(11615,63303,'College Professor (uncredited)',2,87),(11615,1817317,'College Student / Activist (uncredited)',0,88),(11615,1817318,'Student (uncredited)',0,89),(11615,1817319,'Protestor (uncredited)',1,90),(11615,1817320,'College Student (uncredited)',0,91),(11615,1153847,'State Trooper / Lunch Patron (uncredited)',0,92),(11615,1817321,'Reporter (uncredited)',1,93),(11615,1817322,'Student (uncredited)',1,94),(11615,1817323,'Drinking Game Contestant (uncredited)',0,95),(11615,1105698,'Coffee Boy (uncredited)',0,96),(11615,56684,'Doctor (uncredited)',1,97),(11615,1815363,'Patient at AA Meeting (uncredited)',0,98),(11615,1817324,'Party Guest (uncredited)',1,99),(11615,1817325,'News Crew Cameraman (uncredited)',0,100),(11615,1745016,'Reporter (uncredited)',0,101),(11615,1817326,'Airline Pilot (uncredited)',0,102),(11615,1817327,'Reporter (uncredited)',0,103),(11615,1817328,'Protester (uncredited)',0,104),(11615,1152042,'Carla (uncredited)',1,105),(11615,1243825,'Sports Bar Youth (uncredited)',0,106),(11615,1817329,'Governor\'s Bodyguard (uncredited)',0,107),(11615,1817330,'Victim\'s Mother (uncredited)',1,108),(11615,1817332,'Background Reporter (uncredited)',0,109),(11615,9168,'Partygoer (uncredited)',2,110),(11615,122455,'Alcoholic (uncredited)',2,111),(11615,1090132,'College Student / Activist (uncredited)',0,112),(11615,1817334,'Prison Guard (uncredited)',0,113),(11615,1817335,'Protestor (uncredited)',0,114),(11615,1817336,'Protester / Party Girl (uncredited)',1,115),(11615,1204635,'Protestor (uncredited)',0,116),(11615,1817337,'Protester (uncredited)',0,117),(11615,1506538,'Interviewee (uncredited)',1,118),(11615,1817339,'News Magazine Secretary (uncredited)',1,119),(11615,1690501,'Salsa Dancer (uncredited)',0,120),(11615,1591072,'Shooter at Rally (uncredited)',2,121),(11615,1742438,'Flight Attendant (uncredited)',1,122),(11615,1817341,'6th St. Club Patron (uncredited)',1,123),(11615,1572117,'Prison Guard (uncredited)',0,124),(13498,2176,'Ranger Roland Sharp',2,0),(13498,5726,'Percy Stevens',2,1),(13498,37936,'Anne',1,2),(13498,21124,'Teresa',1,3),(13498,18315,'Evie',1,4),(13498,20491,'Heather',1,5),(13498,17442,'Barbara \'Barb\' Thompson',1,6),(13498,10427,'Professor Molly McCarthy',1,7),(13498,12792,'Agent Eddie Zane',2,8),(13498,74242,'Ranger Holt',2,9),(13498,1576251,'Ranger Riggs',2,10),(13498,8655,'Captain Nichols',2,11),(13498,15423,'Binky',1,12),(13498,82663,'Emma Sharp',1,13),(13498,1214364,'Maggie Swanson',0,14),(13498,87003,'Morgan Ball',2,15),(13498,1529146,'Pizza Delivery Guy',0,16),(13498,35566,'Jimmy',2,17),(13498,1529147,'Jack Carter',0,18),(13498,4606,'Border Bus Driver',2,19),(13498,1659281,'Student (uncredited)',0,20),(11968,8167,'Jared',2,0),(11968,56731,'Sam',1,1),(11968,1894,'Bryce',2,2),(11968,71128,'Amanda',1,3),(11968,16851,'Bates',2,4),(11968,57089,'Quinn',2,5),(11968,22063,'Reyes',2,6),(11968,92589,'Roy',2,7),(11968,77072,'Primo',2,8),(10047,63,'Jeanne du2019Arc',1,0),(10047,4483,'The Conscience',2,1),(10047,6450,'Yolande of Aragon',1,2),(10047,6949,'Charles VII',2,3),(10047,1925,'Gilles de Rais',2,4),(10047,10698,'Jean de Dunois',2,5),(10047,39678,'Comrade',2,6),(10047,24564,'Look Out',0,7),(10047,214644,'Bishop',0,8),(10047,1715,'English Judge',2,9),(10047,44509,'Captain',2,10),(10047,3548,'English Judge',2,11),(10047,1077832,'Nobleman',0,12),(10047,1077833,'Captain',0,13),(10047,2355,'Talbot',2,14),(10047,1236882,'English Judge',0,16),(10047,140452,'Old Priest',0,17),(10047,1077834,'The Bludgeoned French Soldier',0,18),(10047,9142,'Domremy\'s Priest',2,19),(10047,25675,'Joan\'s Father',0,20),(10047,40651,'Vaucouleurs\' Priest',2,21),(10047,1077835,'Captain',0,22),(10047,62441,'Compiegne\'s Mayor',0,23),(10047,1077836,'Church\'s Peer',0,24),(10047,61623,'Xaintrailles',0,25),(10047,550110,'Dijon',0,26),(10047,549323,'Mary of Anjou\'s Lady\'s Companion',0,27),(10047,1077839,'The Aunt',0,28),(10047,45849,'La Tremoille',2,29),(10047,1229040,'English Judge',2,30),(10047,1668026,'Poitiers\' Inquisitor',2,31),(10047,1075355,'Girl',0,32),(11212,3266,'Eddie',2,0),(11212,6684,'Laraine Cotwell',1,1),(11212,532,'Norby',2,2),(11212,10138,'Veeko',2,3),(11212,38024,'Gilbertine',1,4),(11212,12642,'Mr. Andrews',2,5),(11212,1491527,'Cop #2',2,6),(11212,3711,'Mrs. McCray',1,7),(10533,3416,'Hester Prynne',1,0),(10533,64,'Rev. Arthur Dimmesdale',2,1),(10533,3087,'Roger Chillingworth',2,2),(10533,10360,'Horace Stonehall',2,3),(10533,3545,'Gov. John Bellingham',2,4),(10533,23709,'Harriet Hibbons',1,5),(10533,4002,'Rev. Thomas Cheever',2,6),(10533,55316,'Goody Mortimer',0,7),(10533,87007,'Goody Gotwick',1,8),(10533,13314,'Meredith Stonehall',1,9),(10533,65543,'Mituba',0,10),(11863,16560,'David Corelli',2,0),(11863,9625,'Katrina Gavin',1,1),(11863,9046,'Matt Gavin',2,2),(11863,2712,'Bob Hargrove',2,3),(11863,16554,'Governor Edwards',2,4),(11863,58312,'Patrice Jacinto',1,5),(11863,2517,'Karen Heller',1,6),(11863,7497,'Bill Barrett',2,7),(11863,47932,'Pat Callendar',2,8),(11863,17770,'D.A. Arnold Clifford',2,9),(11863,41465,'Mr. Green',2,10),(11863,1755979,'Sandy',0,11),(11863,52188,'Executive',2,12),(11863,1457926,'Assistant District Attorney',1,13),(11863,8432,'Assistant District Attorney',2,14),(11863,16659,'Assistant District Attorney',2,15),(11863,161787,'Assistant District Attorney',0,16),(11863,11395,'Mr. Wong',2,17),(11863,87128,'Corporate Man',2,18),(11863,61703,'Technician',2,19),(11863,10506,'Cop',2,20),(18501,17276,'Kable',2,0),(18501,53820,'Ken Castle',2,1),(18501,33235,'Simon',2,2),(18501,38425,'Angie',1,3),(18501,53256,'Hackman',2,4),(18501,26467,'Gina Parker Smith',1,5),(18501,8171,'Humanez Brother',2,6),(18501,8291,'Trace',1,7),(18501,16501,'Rick Rape',2,8),(18501,54247,'Humanez Dude',2,9),(18501,5723,'Freek',2,10),(18501,73589,'Scotch',2,11),(18501,20494,'Sandra',1,12),(18501,208225,'2Katchapredator',1,13),(18501,965550,'Delia',1,14),(18501,51873,'Female News Host #1',1,15),(18501,558934,'Kumdumpsta #1',1,16),(18501,406191,'Kumdumpsta #2',1,17),(18501,78046,'Stikkimuffin',1,18),(18501,1270179,'Society Victim',1,19),(18501,1577331,'Guard (uncredited)',2,20),(18501,1639187,'Lab Tech',2,21),(18501,54247,'Humanz Dude',2,22),(18501,51381,'Producer',2,23),(18501,53252,'Upgrade Guard',2,24),(18501,65827,'Agent Keith',2,25),(18501,80219,'News Co-Host #1',0,26),(18501,46362,'Caseworker',2,27),(18501,78021,'Genericon',2,28),(12634,887,'Jack Ryan',2,0),(12634,192,'Walter Crewes',2,1),(12634,33,'Ray Ritchie',2,2),(12634,22121,'Nancy Hayes',1,3),(12634,8261,'Joe Lurie',2,4),(12634,980,'Lou Harris',2,5),(12634,10739,'Alison Ritchie',1,6),(12634,6952,'Bob Rogers, Jr.',2,7),(12634,5048,'Bob Rogers, Sr.',2,8),(12634,71555,'Ned Coleman',2,9),(12634,10000,'Frank Pizzarro',2,10),(12634,1635449,'Jimmy Opono',0,11),(12634,1635450,'Con Nuuiwa',0,12),(12634,4327,'Barry Salu',0,13),(12634,946201,'Number 9 (Virginia)',0,14),(10416,52865,'Harold Anderson',2,0),(10416,516,'Susan Anderson',1,1),(10416,1230,'Roland Jones',2,2),(10416,17141,'Perry Gordon',2,3),(10416,9625,'Helen Gordon',1,4),(10416,2282,'Graydon',2,5),(10416,20750,'Rebecca',1,6),(10416,28633,'Don Fisk',2,7),(10416,31714,'Woman',1,8),(10416,21197,'Nervous Woman',1,9),(10416,6944,'Baby Nurse',1,10),(10416,1910,'Nadine Jones',1,11),(15268,55751,'Chun-Li',1,0),(15268,21594,'Charlie Nash',2,1),(15268,2203,'Bison',2,2),(15268,61981,'Balrog',2,3),(15268,56455,'Det. Maya Sunee',1,4),(15268,57250,'Gen',0,5),(15268,78429,'Cantana',1,6),(10796,1336,'Gabe Law / Gabriel Yulaw / Lawless',2,0),(10796,976,'MVA Agent Evan Funsch',2,1),(10796,17832,'T.K. Law / Massie Walsh',1,2),(10796,18792,'MVA Agent Harry Roedecker / Gas Station Attendant',2,3),(10796,62003,'LAPD Officer Bobby Aldrich / \'A\' World Inmate #1',2,4),(10796,52476,'Yates',2,5),(10796,129124,'D\'Antoni',2,6),(10796,10137,'MVA Supervisor',0,7),(10796,92777,'Prison Warden',2,8),(10796,538,'Nurse Besson',1,9),(10796,141489,'MRI Technician',0,10),(10796,14329,'Sgt. Siegel',2,11),(10796,141491,'Hugo',0,13),(10796,87794,'Cesar',2,14),(10796,1235093,'Rotten Ronnie',0,15),(10796,67519,'Dr. Hamilton',1,16),(10796,155978,'Dr. Franklin',2,17),(10796,59293,'Woo',2,18),(10796,1752557,'Dr. Hackler',2,19),(18947,90451,'Carl',2,0),(18947,1233,'Le Comte',2,1),(18947,7026,'Gavin',2,2),(18947,2440,'Quentin',2,3),(18947,7056,'Charlotte',1,4),(18947,11109,'Dave',2,5),(18947,11181,'Dormandy',2,6),(18947,31717,'Eleonore',1,7),(18947,59620,'Desiree',1,8),(18947,1709,'Twatt',2,9),(18947,82666,'Angus',2,10),(18947,40477,'Simon',2,11),(18947,74158,'Felicity',1,12),(18947,77266,'Angus\' Boat Girl',1,13),(18947,17292,'Mark',2,14),(18947,979167,'News John',2,15),(18947,75066,'Thick Kevin',2,16),(18947,53916,'Bob',2,17),(18947,1135106,'Harold',2,18),(18947,36668,'Miss C',0,19),(18947,66441,'Marianne',1,20),(18947,1370854,'Mr. Roberts',0,21),(18947,142389,'James',2,22),(18947,1231664,'Mrs. Roberts',1,23),(18947,199975,'Transfer Boatman',2,24),(18947,934045,'Mrs. Dormandy',0,25),(18947,1603909,'Model',1,26),(18947,117654,'Marianne\'s Captain',2,27),(18947,1266563,'Margaret',1,28),(18947,174723,'Commanding officer',2,29),(11232,5344,'Kate McKay',1,0),(11232,6968,'Leopold',2,1),(11232,23626,'Stuart Besser',2,2),(11232,33654,'Charlie McKay',2,3),(11232,10871,'Darci',1,4),(11232,11367,'J.J. Camden',0,5),(11232,129996,'Uncle Millard',2,6),(11232,8978,'Dr. Geisler',2,7),(11232,21882,'Colleague Bob',2,8),(11232,159869,'Ad Executive Phil',2,9),(11232,6281,'Patrice',0,10),(11232,6541,'Otis',2,11),(11232,240629,'Roebling',2,12),(11232,205583,'Photographer',0,13),(11232,109869,'Miss Tree',0,14),(11232,19492,'Policewoman',1,15),(11091,69597,'Beverly Donofrio',1,0),(11091,18324,'Ray Hasek',2,1),(11091,28472,'Jason',2,2),(11091,328,'Fay Forrester',1,3),(11091,33235,'Jason - Age 8',2,4),(11091,21620,'Mrs. Forrester',1,5),(11091,11478,'Teresa Donofrio',0,6),(11091,4512,'Leonard Donofrio',2,7),(11091,142293,'Janet Donofrio',1,8),(11091,1579,'Amelia',1,9),(11091,4810,'Shirley Perro-Hasek',1,10),(11091,6365,'Bobby',2,11),(11091,3282,'Tina Barr',1,12),(11091,56857,'Tommy Butcher',2,13),(11091,59882,'Phone Call flirt',1,14),(11091,21027,'Beverly age 11',1,15),(11091,20815,'Amelia age 8',1,16),(11467,1204,'Kathleen Kiki Harrison',1,0),(11467,7904,'Lee Phillips',2,1),(11467,1922,'Gwen Harrison',1,2),(11467,3036,'Eddie Thomas',2,3),(11467,5587,'Hector Gorgonzolas',2,4),(11467,2283,'Dave Kingman',2,5),(11467,4690,'Hal Weidmann',2,6),(11467,1903,'Wellness Guide',2,7),(11467,13922,'Danny Wax',2,8),(11467,11678,'Dave O\'Hanlon',2,9),(11467,34489,'Security Guard',2,10),(11467,149740,'Davis',2,11),(11467,44127,'Himself',2,12),(11467,3227,'Limo Driver',2,13),(11467,60634,'Security Guard',2,14),(11467,77803,'Leaf Weidmann',0,15),(11467,85759,'Adinah',0,16),(11467,155035,'Maura Klein',1,17),(11467,1660386,'Mort Josephson',2,18),(11467,75336,'Laura Messinger',1,19),(11467,1238982,'Byron Allen',2,20),(11467,1660396,'Bob',2,21),(11467,92568,'Ken',2,22),(11467,1215291,'Nevada Anchorwoman',1,23),(11467,1214216,'Nevada Anchorman',2,24),(11467,1425204,'Network Anchor',2,25),(11467,1660387,'Reporter',1,26),(11467,1236042,'Reporter on Patio',1,27),(11467,114604,'Matronly Interviewer',1,28),(11467,1219384,'Larry King Producer',2,29),(11467,1564987,'Larry King Producer',0,30),(11467,1660405,'Judge',2,31),(11467,1660411,'Bar Hostess',1,32),(11467,1660414,'Little Boy',2,33),(11467,1573322,'Sean',2,34),(11467,59260,'Assistant to Lee Phillips (uncredited)',1,35),(11467,1204169,'Dancer (uncredited)',1,36),(11467,34847,'Girl in Purple T-shirt (uncredited)',1,37),(20533,16851,'Jonah Hex',2,0),(20533,6949,'Turnbull',2,1),(20533,19537,'Leila',1,2),(20533,17288,'Burke',2,3),(20533,21200,'Lieutenant Grass',2,4),(20533,335,'Doc Cross Williams',2,5),(20533,18992,'Ulysses S. Grant',2,6),(20533,129101,'Smith',2,7),(20533,60875,'Turnbull\'s Guard',2,8),(20533,17487,'Second Lt. Evan',2,9),(20533,114293,'Colonel Slocum',2,10),(20533,8210,'Adleman Lusk',2,11),(20533,87310,'Cassie',1,12),(20533,47296,'Jeb Turnbull',2,13),(20533,1622033,'',0,14),(20533,86272,'Jonah\'s Wife',1,15),(20533,86273,'The Lovely Prostitute',1,16),(20533,86274,'Train Engineer',0,17),(20533,86275,'Red Haired Prostitute',1,18),(20533,86276,'The Preacher',0,19),(20533,86278,'Grimey Local',2,20),(20533,86279,'Turnbull Man',0,21),(20533,1025647,'Peasant',0,22),(20533,968889,'Billy',2,23),(20533,1609622,'Mother on Train',1,24),(20533,1844319,'Old Cherokee (as Joe Billingiere)',0,25),(10684,5292,'Lieutenant Colonel Nathaniel Serling',2,0),(10684,5344,'Captain Karen Emma Walden',1,1),(10684,38560,'Staff Sergeant John Monfriez',2,2),(10684,1892,'Ilario',2,3),(10684,21030,'Brigadier General Hershberg',2,4),(10684,1214165,'Maria',1,5),(10684,4689,'Bruno',2,6),(10684,181851,'Annie',1,7),(10684,6930,'Louise Boylar',0,8),(10684,41688,'Stephen Altameyer',2,9),(10684,21848,'Meredith Serling',1,10),(10684,6752,'Banacek',2,11),(10684,349,'Gartner',2,12),(10684,40275,'Rady',2,13),(10684,1174218,'Boylar',0,14),(10684,1328,'Patella',2,15),(10684,51582,'Chelli',2,16),(10684,72983,'Jenkins',2,17),(10684,1567432,'Egan',0,18),(10684,1840816,'Radio operator',2,19),(11130,1813,'Mia Thermopolis',1,0),(11130,5823,'Queen Clarisse Renaldi',1,1),(11130,1210,'Joe',2,2),(11130,655,'Viscount Mabrey',2,3),(11130,33656,'Lilly Moscovitz',1,4),(11130,62064,'Nicholas Devereaux',2,5),(11130,68287,'Andrew Jacoby',2,6),(11130,1211,'Paolo',2,7),(11130,66896,'Asana',1,8),(11130,303542,'Charlotte Kutaway',1,9),(11130,6692,'Mia\'s Mom Helen',1,10),(11130,966053,'Princess Lorraine',1,11),(11130,95469,'Lady Salsa',1,12),(11130,33832,'Baron Siegfried von Troken',2,13),(11130,17140,'Carolina',1,14),(11130,155403,'Lord Crawley',2,15),(11130,1665036,'Monsieur Dupont',2,16),(11130,83053,'Lady Caroline',1,17),(11130,1451161,'Lord Peroit',2,18),(11130,156005,'Genovian Cafe Owner',2,19),(10731,4038,'Regina Reggie Love',1,0),(10731,2176,'\'Reverend\' Roy Foltrigg',2,1),(10731,18248,'Dianne Sway',1,2),(10731,57829,'Barry \'The Blade\' Muldano',2,3),(10731,11367,'Thomas Fink',0,4),(10731,883,'Sergeant Hardy',2,5),(10731,51214,'Mark Sway',2,6),(10731,11085,'Clint Von Hooser',2,7),(10731,22131,'Jason McThune',0,8),(10731,16293,'Larry Trumann',2,9),(10731,8335,'Paul Gronke',2,10),(10731,1984,'Doreen',1,11),(10731,268179,'Ricky Sway',2,12),(10731,3905,'Dr. Greenway',2,13),(10731,1158447,'Emergency Room Nurse',0,14),(10478,1269,'Roy \'Tin Cup\' McAvoy',2,0),(10478,25129,'David Simms',0,1),(10478,11159,'Romeo Posar',2,2),(10478,156756,'Jose',2,3),(10478,14343,'Dr. Molly Griswold',1,5),(10478,53602,'Doreen',1,6),(10478,83362,'Earl',2,7),(10478,16937,'Dewey',2,8),(10478,20748,'Clint',0,9),(10478,3205,'Curt',2,10),(10478,100230,'Turk',2,11),(10478,154295,'Boone',2,12),(27983,40174,'Helen North',1,0),(27983,4958,'Frank Beardley',2,1),(27983,37446,'Warrant Officer Darrel Harrison',2,2),(27983,41217,'Family Doctor',2,3),(27983,153582,'Madeleine Love',1,4),(27983,106805,'Dr. Ashford',2,5),(27983,79739,'Louise Beardsley',1,6),(27983,60698,'Germaine Beardsley',1,7),(27983,21561,'Mike Beardsley',2,8),(15045,77330,'Fat Albert',2,0),(15045,77799,'Rudy',2,1),(15045,31135,'MushMouth',2,2),(15045,15564,'Bill',2,3),(15045,60506,'Bucky',2,4),(15045,77800,'Old Weird Harold',2,5),(15045,77801,'Dumb Donald',2,6),(15045,37046,'Lauri',1,7),(15045,77802,'Reggie',2,8),(15045,77803,'Heather',0,9),(15045,52050,'Becky',1,10),(15045,51962,'Himself',2,11),(15045,31031,'Doris',1,12),(17379,15758,'Georgia Byrd',1,0),(17379,36424,'Sean Matthews',2,1),(17379,16327,'Matthew Kragen',2,2),(17379,4808,'Senator Dillings',2,3),(17379,3128,'Ms. Buns',1,4),(17379,16927,'Chef Didier',2,5),(17379,209,'Rochelle',1,6),(11359,69301,'Omri',2,0),(11359,69302,'Little Bear',2,1),(11359,32225,'Jane',1,2),(11359,28633,'Victor',2,3),(11359,1318612,'Patrick',0,4),(11359,4581,'',2,5),(11359,18181,'Boone',2,6),(11359,34200,'Lucy',1,7),(11359,52646,'',2,8),(11359,14331,'',2,9),(20856,86653,'Tom Pearson',2,0),(20856,86654,'Jake Pearson',2,1),(20856,58478,'Stuart Pearson',2,2),(20856,58368,'Ricky Dillman',2,3),(20856,45863,'Rose Pearson',1,4),(20856,51857,'Sheriff Doug Armstrong',2,5),(20856,86655,'Hannah Pearson',1,6),(20856,86656,'Art Pearson',2,7),(20856,86657,'Lee Pearson',2,8),(20856,67600,'Bethany Pearson',1,9),(20856,118544,'Julie',1,10),(20856,61182,'Nina Pearson',1,11),(20856,28637,'Uncle Nathan Pearson',2,12),(20856,1574203,'Annie Filkins',0,13),(20856,18999,'Skip (voice)',2,14),(20856,15760,'Sparks (voice)',2,15),(20856,19159,'Tazer (voice)',2,16),(20856,116315,'Razor (voice)',0,17),(21355,1892,'John Grady Cole',2,0),(21355,9976,'Lacey Rawlins',0,1),(21355,955,'Alejandra',1,2),(21355,9880,'J.C. Franklin',2,3),(21355,418,'Cole',2,4),(21355,155,'Jimmy Blevins',2,5),(21355,88124,'Young Grady',2,6),(21355,2049,'Don Hector de la Rocha y Villarreal',2,7),(10858,4173,'Richard Nixon',2,0),(10858,11148,'Pat Nixon',1,1),(10858,6280,'Alexander Haig',2,2),(10858,228,'E. Howard Hunt',2,3),(10858,382,'J. Edgar Hoover',2,4),(10858,5249,'John Mitchell',2,5),(10858,19839,'Ron Ziegler',2,6),(10858,11076,'John Dean',2,7),(10858,7004,'Henry Kissinger',2,8),(10858,2453,'Hannah Nixon',1,9),(10858,22131,'John Ehrlichman',0,10),(10858,4512,'H.R. Haldeman',2,11),(10858,70843,'Clyde Tolson',2,12),(10858,14721,'Charles Colson',0,13),(10858,56687,'Murray Chotiner',2,14),(10858,49425,'Julie Nixon Eisenhower',1,15),(10858,6840,'Jack Jones',2,16),(10858,29803,'Martha Mitchell',1,17),(10858,6486,'Trini Cardoza',2,18),(10858,20751,'Sandy',0,19),(10858,19453,'Frank Nixon',2,20),(10858,3417,'Harold Nixon',2,21),(10858,52995,'Nelson Rockefeller',2,22),(10858,15183,'Johnny Roselli',2,23),(10858,3712,'Herb Klein',2,24),(10858,50880,'Frank Sturgis',2,25),(10858,167561,'Bob',2,26),(10858,4942,'Gordon Liddy',2,27),(10858,11885,'Earl in Training Film',2,28),(10858,19654,'TV Director',2,29),(10858,11397,'Mao Tse-Tung',2,30),(10858,230280,'Leonid Brezhnev',0,31),(10858,8975,'Richard Helms',2,32),(10858,6407,'Tricia Nixon Cox',1,33),(11439,3061,'The Ghost',2,0),(11439,517,'Adam Lang',2,1),(11439,19498,'Rick Ricardelli',2,2),(11439,2109,'Amelia',1,3),(11439,207,'Paul Emmett',2,4),(11439,11616,'Ruth Lang',1,5),(11439,16327,'Sidney Kroll',2,6),(11439,26485,'John Maddox',2,7),(11439,84070,'Josh',0,8),(11439,113360,'Roy',2,9),(11439,84071,'The Island Reporter',0,10),(11439,84073,'FBI Agent #1',2,11),(11439,74225,'FBI Officer',2,12),(11439,5755,'CNN Newscaster #1',0,13),(11439,113361,'SKY TV newsreader',0,14),(11439,84067,'Lucy',0,15),(11439,84068,'Connie',0,16),(11439,84069,'War Crime Prosecutor',0,17),(11439,902,'Taxi Driver',2,18),(11439,16716,'Protection Officer #1',0,19),(11439,3265,'Old man',2,20),(11439,30323,'Barry',0,21),(11439,1591650,'Alice',0,22),(11439,1184674,'Dep',1,23),(11439,47643,'Richard Rycart',2,24),(11439,49491,'Frank',0,25),(11439,1571182,'Hotel Receptionist',0,26),(11439,1010055,'Barman',0,27),(11439,1170767,'Journalist',0,28),(11439,32854,'CIA Agent on Ferry',0,29),(11439,145588,'CIA Agent on Ferry',0,30),(11439,25677,'Motel Receptionist',2,31),(11439,1572408,'Diner Waitress',1,32),(12412,15543,'2nd Staff Sergeant Aubrey Stamps',2,0),(12412,8177,'Sergeant Bishop Cummings',2,1),(12412,10964,'Corporal Hector Negron',2,2),(12412,1241,'Detective Antonio Ri',2,3),(12412,21965,'Renata',1,4),(12412,24045,'Tim Boyle',2,5),(12412,5723,'Enrico',2,6),(12412,11703,'Zana Wilder',1,7),(12412,61962,'Colonel Driscoll',2,8),(12412,334,'Private First Class Sam Train',0,9),(12412,17839,'Peppi \'The Great Butterfly\' Grotta',2,10),(12412,41556,'Platoon Commander Huggs',2,11),(12412,27208,'Ludovico',2,12),(12412,7803,'Hauptmann Eichholz',2,13),(12412,5644,'Axis Sally',1,14),(12412,27627,'Colonel Pflueger',2,15),(12412,4920,'Fritz Bennecke',2,16),(12412,4796,'Nazi Soldier',2,17),(12412,27740,'Captain Nokes',2,18),(12412,1457293,'Angelo Torancelli (The Boy)',0,19),(12412,16861,'Herb Redneck',2,20),(12412,126988,'Rodolfo',0,21),(12412,31512,'General Ned Almond',2,22),(12412,39390,'',2,23),(12412,459980,'Private Needles',2,24),(13184,2963,'Joe',2,0),(13184,74747,'Kong',0,1),(13184,66762,'Fon',1,2),(13184,76484,'Aom',1,3),(13184,76485,'Surat',2,4),(13184,76478,'Aran',2,5),(13184,76486,'Kong\'s Brother',2,6),(13184,76487,'Michigan',2,7),(13184,76488,'USC',0,8),(13184,76489,'Chicago',2,9),(27573,17276,'Milo Boyd',2,0),(27573,4491,'Nicole Hurley',1,1),(27573,114144,'Uncle Sam',0,2),(27573,6751,'Teresa',1,3),(27573,88550,'Dwight',2,4),(27573,1214054,'Gelman',0,5),(27573,19208,'Gary',2,6),(27573,58224,'Stewart',2,7),(27573,962997,'Jimmy',2,8),(27573,11870,'Kitty Hurley',1,9),(27573,26718,'Bobby Jenkins',2,10),(27573,82167,'Arthur',0,11),(27573,167582,'Judge',0,12),(27573,11803,'Earl Mahler',2,13),(27573,60074,'Sid',2,14),(27573,133046,'Rich Guy',0,15),(27573,127069,'Track Vet',0,16),(27573,1697187,'Bone',0,17),(10895,33923,'Gideon',2,0),(10895,67369,'Carnival Barkers',0,1),(10895,13819,'John Worthington Foulfellow',2,2),(10895,5463,'Birds',1,3),(10895,67370,'Lampwick',2,4),(10895,30236,'Jiminy Cricket',2,5),(10895,67371,'Pinocchio',2,6),(10895,96053,'Stromboli',2,7),(10895,78077,'Figaro',2,8),(10895,1377560,'Marionettes',0,9),(10895,985275,'Geppetto',2,10),(10895,117073,'Blue Fairy',1,11),(10935,10823,'James Averill',2,0),(10935,4690,'Nathan D. Champion',2,1),(10935,5049,'Billy Irvine',2,2),(10935,17882,'Ella Watson',1,3),(10935,8975,'Frank Canton',2,4),(10935,1370,'Mr. Eggleston',2,5),(10935,1229,'John L. Bridges',2,6),(10935,7664,'The Reverend Doctor',2,7),(10935,76143,'Major Wolcott',2,8),(10935,68681,'Mayor Charlie Lezak',2,9),(10935,18071,'Trapper Fred',2,10),(10935,15416,'Cully',2,11),(10935,163989,'Nell',0,12),(10935,118617,'Small man',2,13),(10935,12646,'Capt. Minardi',2,14),(10935,21675,'Morrison',2,15),(10935,11902,'Mrs. Lezak',1,16),(10935,119232,'Jake',2,17),(10935,26466,'Stefka',1,18),(10935,2295,'Nick Ray',2,19),(10935,1483,'',0,20),(10935,5293,'',2,21),(10935,3711,'Little Dot',1,22),(10468,18277,'Gwen Cummings',1,0),(10468,110,'Eddie Boone',2,1),(10468,17287,'Jasper',2,2),(10468,20,'Lily Cummings',1,3),(10468,21088,'Gerhardt',2,4),(10468,884,'Cornell',2,5),(10468,14784,'Daniel',2,6),(10468,17352,'Roshanda',1,7),(10468,87192,'Oliver',2,8),(10468,31715,'Andrea',1,9),(10468,6587,'Bobbie Jean',1,10),(10468,452,'Betty',1,11),(10468,174254,'Saleslady / Night Tech',1,12),(10468,156617,'Evelyn',1,13),(10468,1621825,'Young Gwen',1,14),(10468,1218202,'Young Lily',1,15),(10468,84848,'Guitar Guy',0,16),(10468,66561,'Vanessa',1,17),(10468,1215689,'Bridesmaid',1,18),(10468,74828,'Chauffeur',2,19),(10468,1621826,'Traci',1,20),(10468,29223,'Darnell',2,21),(10468,118595,'Father at Gas Station',0,22),(10468,1568029,'Groom',0,23),(10468,1217963,'Groom\'s Mother',1,24),(10468,77522,'Equine Therapist',2,25),(10468,59283,'Older Boy at Gas Station',2,26),(10027,1336,'Danny',2,0),(10027,192,'Sam',2,1),(10027,382,'Bart',2,2),(10027,9831,'Raffles',2,3),(10027,8032,'Lefty',2,4),(10027,39660,'Georgie',2,5),(10027,17787,'Distinguished Lady',1,6),(10027,62106,'Wyeth',0,7),(10027,62107,'Maddy',0,8),(10027,62105,'Victoria',1,9),(10027,62108,'The Stranger',0,10),(10027,62110,'Teen Danny',0,11),(10027,62109,'Danny\'s Mother',0,12),(10027,41547,'Floozy 1',1,13),(10027,62111,'Little Danny',0,14),(10027,62112,'Baby Danny',0,15),(10027,1123,'Righty',0,16),(10027,62113,'Baby Danny',0,17),(10027,62115,'Boxing Boss',2,18),(10027,62114,'Floozy 2',0,19),(10027,54807,'Tough man',2,20),(10027,1592947,'Wyeth\'s Aide-de-Camp',2,21),(10027,78110,'Swimming Pool Fighter',2,22),(11812,6941,'Christina Walters',1,0),(11812,18979,'Courtney Rockcliffe',1,1),(11812,11155,'Peter Donahue',2,2),(11812,11826,'Jane Burns',1,3),(11812,23532,'Roger Donahue',2,4),(11812,7489,'Judy Webb',1,5),(11812,81685,'Andy',2,6),(11812,120679,'Michael',2,7),(11812,366,'Dr. Greg',2,8),(11812,52697,'Vera',1,9),(11812,51670,'Leather Coat Guy',2,10),(27582,976,'Arthur Bishop',2,0),(27582,11107,'Steve Mckenna',2,1),(27582,55636,'Harry Mckenna',2,2),(27582,142953,'Sara',1,3),(27582,3417,'Dean Sanderson',2,4),(27582,85178,'Kelly',1,5),(27582,90113,'Maria',1,6),(27582,56448,'Burke',2,7),(27582,18300,'Lara\'s Guard',2,8),(27582,16459,'Vaughn',2,9),(27582,94428,'Mrs. Finch',1,10),(27582,1092893,'Bell Hop',2,11),(27582,161976,'Jorge Lara',0,12),(27582,1496437,'Car Jacker',0,13),(27582,1485819,'Husband',0,14),(27582,179973,'Mr. Finch',0,15),(27582,1278784,'Dr. X',2,16),(11066,776,'Marcus Graham',2,0),(11066,59153,'Jacqueline \'Jackie / Jack\' Broyer',1,1),(11066,4587,'Angela Lewis',1,2),(11066,58563,'Gerard Jackson',2,3),(11066,10661,'Strangu00e9',1,4),(11066,78029,'Tyler',2,5),(11066,10225,'Nelson',2,6),(11066,70243,'Lady Eloise',1,7),(11066,2632,'Bony T',2,8),(11066,141823,'Yvonne',1,10),(11066,51359,'Christie',1,11),(11066,1341524,'Todd',0,12),(11066,56902,'Mr. Jackson',2,13),(11560,15852,'Claire Chapman',1,0),(11560,192,'Charlie Grimes',2,1),(11560,8767,'Tom Kubik / Sgt. Ron Chapman',2,2),(11560,2956,'Jackie',1,3),(11560,36801,'1st Lt. Terence Embry',2,4),(11560,52374,'Brig. Gen. Bill Marks',2,5),(11560,19453,'FBI Agent Mullins',2,6),(11560,116714,'Maj. James Hernandez',0,7),(11560,33241,'Maj. Lucas Waldron',2,8),(11560,8693,'Col. Farrell',2,9),(11560,53257,'Salvadoran Man',2,10),(11560,335,'Troy Abbott',2,11),(11560,1506612,'Lt. Col. LaPierre',0,12),(11560,21722,'Lie Detector Coach',2,13),(11560,81462,'Lola',1,14),(11560,45245,'Gracie',1,15),(11560,152802,'Franklin',2,16),(11560,1859363,'Nurse',0,17),(11560,1859368,'Lisa Stenstrom',0,18),(11560,31115,'San Francisco Judge',2,19),(11560,1058072,'San Francisco D. A.',0,20),(11560,21714,'Ramona',1,21),(11560,1544214,'Female Attorney',0,22),(11560,1748124,'Male Attorney',2,23),(11560,131648,'Bailiff',0,24),(11560,1415659,'Mr. Arguer',0,25),(11560,1524538,'Guard #1',0,26),(11560,78432,'Guard #2',2,27),(11560,1859373,'Guard #3',0,28),(11560,1748090,'Court Stenographer',1,29),(11560,1371532,'Military Guard #1',0,30),(11560,91333,'Military Guard #2',2,31),(11560,1006368,'Reporter #1',0,32),(11560,1800204,'Reporter #2',0,33),(11560,1503027,'Reporter #3',1,34),(11560,92508,'Student in San Salvador',0,35),(25189,10400,'Rose Morgan',0,0),(25189,1229,'Gregory Larkin',2,1),(25189,7570,'Hannah Morgan',1,2),(25189,18364,'Henry Fine',2,3),(25189,13920,'Claire',1,4),(25189,517,'Alex',2,5),(25189,30585,'Doris',1,6),(25189,1834389,'Candy',0,7),(18480,6730,'Bruno',2,0),(18480,83247,'Himself',0,1),(18480,83248,'Himself',2,2),(18480,11040,'Lutz',0,3),(18480,232055,'Diesel',0,4),(18480,124471,'Kookus',2,5),(18480,81129,'Himself',2,6),(18480,11370,'Himself',2,7),(18480,92706,'Himself',2,8),(18480,33684,'Himself',2,9),(18480,3,'Himself',2,10),(27936,37627,'Bazil',2,0),(27936,2413,'Fracasse',2,1),(27936,18177,'Nicolas Thibault De Fenouillet',2,2),(27936,20795,'Placard',0,3),(27936,54292,'La Mu00f4me Caoutchouc',1,4),(27936,2415,'Tambouille',0,5),(27936,99303,'Petit Pierre',2,6),(27936,78421,'Franu00e7ois Marconi',0,7),(27936,78423,'Remington',2,8),(27936,99304,'Calculette',1,9),(27936,226024,'Gravier',2,10),(27936,1805664,'La dame u00e2gu00e9e au lit',0,11),(10610,18897,'Eddie Yang',2,0),(10610,7400,'Arthur Watson',2,1),(10610,4174,'Nicole James',1,2),(10610,6104,'Snakehead',2,3),(10610,655,'Cmdr. Hammerstock-Smythe',2,4),(10610,66717,'Lester Wong',2,5),(10610,54615,'Mrs Charlotte Watson',1,6),(10610,56804,'Antiquities dealer',0,7),(10610,70106,'Waiter',2,8),(10610,20372,'Waiter',0,9),(10610,66122,'Chinese professor',2,10),(10610,65952,'Snakehead\'s henchman',0,11),(10610,1358814,'Guard monk',0,12),(10610,1624031,'Jai',0,13),(10610,60542,'Interpol Agent Harrington',0,14),(10610,60533,'Interpol Agent Martin',2,15),(10610,78110,'Snakehead\'s henchman',2,16),(10610,237163,'Snakehead\'s henchman',0,17),(10610,81671,'Snakehead\'s henchman',2,18),(10610,1039927,'Snakehead\'s henchman',0,19),(10610,1624032,'Snakehead\'s henchman',0,20),(10610,1624033,'Snakehead\'s henchman',0,21),(10610,137146,'Interpol officer in van',2,22),(18240,18277,'Margaret Tate',1,0),(18240,10859,'Andrew Paxton',2,1),(18240,2453,'Grace Paxton',1,2),(18240,8977,'Joe Paxton',2,3),(18240,71727,'Grandma Annie',1,4),(18240,81681,'Mr. Gilbertson',2,5),(18240,50463,'Gertrude',1,6),(18240,76094,'Ramone',2,7),(18240,20644,'Bob Spaulding',2,8),(18240,8699,'Chairman Bergen',2,9),(18240,72994,'Chuck',2,10),(18240,84436,'Jim McKittrick',0,11),(18240,63674,'Party Guest',1,12),(18240,112266,'Colden Books Receptionist',1,13),(18240,1579759,'Medivac Pilot',2,14),(18240,118645,'Jordan',0,15),(18240,17179,'Lead Counsel Malloy',2,16),(18240,1579760,'Executive Secretary',1,17),(18240,29214,'Jill',1,18),(18240,1579761,'Coffee Barista',1,19),(18240,1579762,'Immigration Clerk',1,20),(18240,1579763,'Mrs. McKittrick',1,21),(18240,1579764,'Store Owner',0,22),(18240,1579765,'Guy in Office',0,23),(18240,1264229,'Engagement Party Guest (uncredited)',1,24),(18240,1475121,'African Immigrant at INS Office (uncredited)',1,25),(18240,928638,'Taxicab Driver (uncredited)',0,26),(18240,1753484,'Wedding Guest',1,27),(18240,1103658,'Woman Buying Coffee',1,28),(18240,1753500,'Shopper',0,29),(18240,1753502,'Airline Crew',0,30),(18240,1753505,'Airline Passenger',0,31),(18240,1753506,'Office Worker',1,32),(18240,1753511,'Waitress',1,33),(18240,1753513,'1st Class Airline Passenger',1,34),(18240,1753517,'Immigrant at INS Officer',0,35),(18240,1753517,'Immigrant at INS Office',0,36),(18240,1753518,'Businessman',0,37),(18240,1535492,'Alaska Plane Passenger',0,38),(18240,1753519,'Businessman / Pedestrian on Sidewalk',0,39),(18240,1753520,'Sitka Airline Passenger',1,40),(18240,1753521,'Gay Friend',0,41),(18240,1553308,'Wedding and Reception Guest',1,42),(18240,1753522,'Office Worker',0,43),(18240,1753524,'Airline Passenger',0,44),(18240,1753525,'Lawyer',0,45),(18240,1588593,'Lawyer at Publishing Company',0,46),(18240,1753527,'Businessman',0,47),(18240,1753528,'Mail Clerk',0,48),(18240,1753529,'Wedding Guest',0,49),(18240,63231,'Stewardess',0,50),(18240,1473459,'Party Guest',0,51),(18240,1753532,'Businesswoman',1,52),(18240,1753538,'Mail Room Clerk',0,53),(18240,1753539,'Reception Guest',1,54),(18240,1753540,'INS Employee',1,55),(18240,1753541,'Businessman',0,56),(18240,1753542,'Ground Crewman',0,57),(18240,1753544,'Bagel Guy',0,58),(18240,1753545,'New York Cab Driver',0,59),(18240,928305,'Immigrant at INS Office',1,60),(18240,1753546,'Secretary',1,61),(18240,1753548,'Airline Passenger',0,62),(18240,118641,'Indian Immigrant at INS Office',1,63),(18240,1588592,'Worker in Lobby',0,64),(18240,1401102,'Pedestrian',0,65),(18240,50587,'Party Guest',0,66),(18240,1753549,'Wedding Guest',0,67),(18240,1753550,'Messenger',0,68),(18240,1753551,'Office Worker',0,69),(18240,1753552,'Businessman',0,70),(10398,2176,'Travis Lehman',2,0),(10398,15852,'Elizabeth Libby Parsons',1,1),(10398,21089,'Nicholas Nick Parsons / Jonathan Devereaux',2,2),(10398,49425,'Angela Angie Green',1,3),(10398,942021,'Matty - Age 4',2,4),(10398,63791,'Bobby',2,5),(10398,21021,'Rudy',0,6),(10398,156633,'Orbe',1,7),(12279,3131,'Gregorio Cortez',2,0),(12279,17832,'Ingrid Cortez',1,1),(12279,57674,'Carmen Cortez',1,2),(12279,57675,'Juni Cortez',2,3),(12279,16483,'Toymaker',2,4),(12279,3136,'Cesca Giggles',1,5),(12279,1793,'Grandfather',2,6),(12279,11318,'Grandmother',1,7),(12279,17403,'Donnagon Giggles',2,8),(12279,71467,'Gary Giggles',2,9),(12279,82785,'Gerti Giggles',1,10),(12279,78341,'Arnold',0,11),(12279,64775,'Rez',2,12),(12279,151385,'Francis',2,13),(12279,84481,'Demetra',1,14),(12279,11159,'Felix Gumm',2,15),(12279,11160,'Machete',2,16),(12279,10697,'Fegan Floop',2,17),(12279,4252,'Alexander Minion',2,18),(12279,884,'Romero',2,19),(12279,2053,'Dinky Winks',2,20),(12279,1461,'Devlin',2,21),(12279,109,'The Guy',2,22),(12279,77948,'Waterpark Girl',1,23),(12279,38407,'Creepy Kid',0,24),(12279,1218266,'Processor',1,25),(12279,1595128,'Agent Hot Rod',0,26),(12279,90553,'Edog',0,27),(12279,1595130,'Logos',0,28),(12279,83271,'Long-fingered Boy',2,29),(12279,1595131,'Agent Damage Report',0,30),(12279,57471,'OSS Agent #2',2,31),(12279,1231768,'Dinky Winks Jr.',2,32),(11007,67773,'Tom Baker',2,0),(11007,5149,'Kate Baker',1,1),(11007,15555,'Nora Baker',1,2),(11007,11824,'Charlie Baker',2,3),(11007,5958,'Lorraine Baker',1,4),(11007,85140,'Henry Baker',2,5),(11007,58965,'Sarah Baker',1,6),(11007,9829,'Jake Baker',2,7),(11007,71861,'Jessica Baker',1,8),(11007,148615,'Kim Baker',1,9),(11007,60393,'Mark Baker',2,10),(11007,142635,'Mike Baker',2,11),(11007,148617,'Nigel Baker',2,12),(11007,148618,'Kyle Baker',2,13),(11007,59449,'Tina Shenk',1,14),(11007,1643258,'Assistant Coach',2,15),(11007,18976,'Hank (uncredited)',2,16),(11287,31,'Jimmy Dugan',2,0),(11287,16935,'Dottie Hinson',1,1),(11287,3125,'Mae Mordabito',1,2),(11287,15309,'Kit Keller',1,3),(11287,16165,'Ernie Capadino',2,4),(11287,11064,'Ira Lowenstein',2,5),(11287,1201,'Walter Harvey',2,6),(11287,8984,'Bob Hinson',2,7),(11287,53570,'Marla Hooch - 2nd Base',1,8),(11287,12929,'Doris Murphy - 3rd Base',0,9),(11287,8189,'Betty \'Betty Spaghetti\' Horn - Left Field',1,10),(11287,138240,'Evelyn Gardner - Right Field',1,11),(11287,15863,'Charlie Collins, Racine Coach',2,12),(11287,138241,'Alice Gaspers - Left Field / Center Field',1,13),(11287,59260,'Shirley Baker - Left Field',1,14),(11287,8692,'Dave Hooch',2,15),(11287,1077313,'Ellen Sue Gotlander',0,16),(11287,25023,'Helen Haley',1,17),(11287,1077314,'\'Beans\' Babbitt',0,18),(11287,156025,'Marbleann Wilkenson',0,19),(11287,163825,'Beverly Dixon',0,20),(11287,1077315,'Neezer Dalton',0,21),(11287,4939,'Racine 1st Base',1,22),(11287,78619,'Radio Sportscaster',2,23),(11287,9998,'Doris\' Fan #2',2,24),(11287,44818,'Older Stilwell',2,25),(11287,19257,'Racine Pitcher',1,26),(10184,880,'Neil',2,0),(10184,4491,'Beth Murphy',1,1),(10184,69597,'Mary Harris',1,2),(10184,6161,'Janine Gunders',1,3),(10184,16666,'Conor Barry',2,4),(10184,51329,'Ben Gunders',2,5),(10184,417,'Gigi Phillips',1,6),(10184,1245,'Anna Marks',1,7),(10184,15033,'Alex',2,8),(10184,10823,'Ken Murphy',2,9),(10184,54453,'Nathan',2,10),(10184,41558,'Laura Murphy',1,11),(10184,64154,'Catherine',1,12),(10184,24200,'Joshua Nguyen',2,13),(10184,60928,'Kelli Ann',1,14),(10184,56685,'Paige Murphy',1,15),(10184,74302,'Tyrone',2,16),(10184,1214835,'Amber Gnech',1,17),(10184,59715,'Bill',0,18),(10184,1619410,'Bruce',0,19),(10184,149829,'Jarrad',2,20),(10184,1776764,'Gregory',0,21),(10184,40481,'Javier',2,22),(10184,55425,'Dan',2,23),(10184,168780,'Cousin Jay',2,24),(10184,21633,'Devon',2,25),(10184,61854,'George',2,26),(10184,1371532,'Steven',0,27),(10184,45397,'Larry',2,28),(10184,1522226,'Trent',0,29),(10184,120995,'Jude',2,30),(10184,93846,'Cousin Dominic',2,31),(10184,470529,'Angela',0,32),(10184,1226786,'Frances',0,33),(10184,74227,'5 yr. old Girl',1,34),(10184,204505,'6 yr. old Boy',2,35),(10184,209196,'Hot Girl',1,36),(10184,1256416,'Sorority Girl',0,37),(10184,1496728,'African Woman',1,38),(10184,85097,'Emotionless Cashier',1,39),(10184,153912,'Wealthy Divorcee',1,40),(24803,5064,'Julia Child',1,0),(24803,9273,'Julie Powell',1,1),(24803,2283,'Paul Child',2,2),(24803,61659,'Eric Powell',2,3),(24803,58643,'Simone Beck',1,4),(24803,17185,'Louisette Bertholle',1,5),(24803,25884,'Sarah',1,6),(24803,43775,'Dorothy McWilliams',1,7),(24803,1123818,'Madame Brassart',0,8),(24803,967452,'Ernestine',1,9),(24803,171242,'Chef Max Bugnard',0,10),(24803,20491,'Cassie',1,11),(24803,83872,'Regina',1,12),(24803,61219,'Annabelle',1,13),(24803,206902,'John O\'Brien',0,14),(16538,22226,'Peter Klaven',2,0),(16538,41088,'Sydney Fife',2,1),(16538,80591,'Zooey Rice',1,2),(16538,62861,'Robbie Klaven',2,3),(16538,18999,'Oswald Klaven',2,4),(16538,58184,'Joyce Klaven',1,5),(16538,15277,'Barry',2,6),(16538,56824,'Denise',1,7),(16538,80595,'Tevin Downey',2,8),(16538,539,'Doug',2,9),(16538,80592,'Hailey',1,10),(16538,19137,'Himself',0,11),(16538,80593,'Hailey\'s Date',0,12),(16538,80594,'Leanne',0,13),(16538,80597,'Female Co-Worker',1,14),(16538,80596,'Female Co-Worker',1,15),(16538,282835,'Gil',2,16),(16538,86626,'Eugene',2,17),(16538,208519,'Larry',0,18),(16538,448309,'Zooey\'s Friend',1,19),(16538,210566,'Zooey\'s Friend',1,20),(16538,154826,'Zooey\'s Friend',1,21),(16538,54708,'Zooey\'s Friend',1,22),(16538,154884,'Zooey\'s Friend',1,23),(16538,84815,'Alan',2,24),(16538,52049,'Barry\'s Buddy',2,25),(16538,212290,'Barry\'s Buddy',2,26),(16538,59405,'Berry\'s Buddy',2,27),(16538,21131,'Lonnie',2,28),(16538,981814,'Mel Stein',0,29),(16538,1550754,'JAR Waitress',1,30),(16538,570559,'Open House Couple',0,31),(16538,13101,'Venice Broadwalk Jogger',2,32),(16538,1008727,'Sidney\'s Buddy',0,33),(16538,88928,'Sidney\'s Buddy',2,34),(16538,1223812,'Mr. Chu',2,35),(16538,1240195,'Woman Leaving Sydney\'s House',1,36),(16538,59841,'Impatient Golfer',2,37),(16538,81249,'Himself - Rush',0,38),(16538,81248,'Himself - Rush',0,39),(16538,81250,'Himself - Rush',0,40),(16538,1221716,'Woman Jogger Yelling at Sydney',1,41),(16538,22214,'Wedding Photographer',2,43),(16538,154091,'Justice Of The Peace',2,44),(16538,17748,'Wedding Band',2,45),(16538,1475180,'Wedding Band',0,46),(11565,78029,'Malcolm / Big Momma',2,0),(11565,9781,'Sherri',1,1),(11565,6108,'Leah Fuller',1,2),(11565,69899,'Kevin Keneally',2,3),(11565,11889,'Tom Fuller',2,4),(11565,52852,'Molly Fuller',1,5),(11565,56734,'Carrie Fuller',1,6),(11565,84457,'Liliana Morales',1,7),(16996,29222,'Mike O\'Donnell (Teen)',2,0),(16996,41087,'Scarlett O\'Donnell (Adult)',1,1),(16996,14408,'Mike O\'Donnell (Adult)',2,3),(16996,42289,'Ned Gold (Teen)',2,4),(16996,17270,'Scarlett (Teen)',1,5),(16996,49961,'Maggie O\'Donnell',1,6),(16996,87741,'Alex O\'Donnell',2,7),(16996,539,'Ned Gold',2,8),(16996,159962,'Jamie',1,9),(16996,109046,'Samantha',1,10),(16996,114602,'Lauren',1,11),(16996,146516,'Nicole',1,12),(16996,84407,'Coach Murphy',2,13),(16996,86624,'Wendy',1,14),(16996,1239467,'Dom',2,15),(16996,35236,'Stan',2,17),(16996,986634,'Samir',2,18),(16996,404,'Principal Jane Masterson',1,19),(16996,1535,'Janitor',2,20),(16996,180789,'Roger',2,21),(16996,73456,'Secretary',1,22),(16996,1349549,'Hostess',1,23),(16996,34488,'Judge',1,24),(16996,1219510,'Bailiff',2,25),(16996,131821,'School Cop',2,26),(16996,1226225,'Referee',2,27),(16996,34979,'Mike\'s Lawyer',2,28),(16996,16845,'Naomi',1,29),(16996,11152,'Mrs. Dell',1,30),(16996,25944,'Dean',2,31),(16996,209545,'Dorky Kid (Ned\'s Party)',2,32),(16996,1579399,'Syracuse Scout (1989)',2,33),(16996,1579575,'Kevin (1989)',2,34),(16996,1187585,'Girl (Wyatt)',1,35),(16996,152355,'Scarlet\'s Lawyer',1,36),(16996,10000,'Ohio Scout',2,37),(16996,1494736,'Guy in Crowd',2,38),(16996,1325691,'Kid (Office)',2,39),(16996,557778,'Cheerleader (1989)',1,40),(16996,149549,'Cheerleader (1989)',1,41),(16996,206869,'Cheerleader (1989)',1,42),(16996,1579589,'Cheerleader (1989)',1,43),(16996,1448031,'Cheerleader (1989)',1,44),(16996,1579592,'Cheerleader (1989)',1,45),(16996,933929,'Cheerleader (1989)',1,46),(16996,1261980,'Cheerleader (1989)',1,47),(16996,4938,'Cheerleader',1,48),(16996,970084,'Cheerleader',1,49),(16996,1579617,'Mr. Adams',0,50),(19912,94421,'Nick O\'Bannon',2,0),(19912,94423,'Lori Milligan',1,1),(19912,84076,'Hunt Wynorski',2,2),(19912,94424,'Janet Cunningham',1,3),(19912,21858,'Samantha Lane',1,4),(19912,65699,'Mechanic',2,5),(19912,74136,'Racist',2,6),(19912,94427,'Mechanic\'s Girlfriend',1,7),(19912,94428,'Racist\'s Wife',1,8),(19912,94429,'Cowboy',2,9),(19912,34,'George Lanter',2,10),(19912,21249,'Nurse',1,11),(19912,143264,'Theater Manager',2,12),(32823,21007,'Aaron Green',2,0),(32823,59919,'Aldous Snow',2,1),(32823,9827,'Jackie Q',1,2),(32823,32798,'Daphne Binks',1,3),(32823,17782,'Jonathan Snow',2,4),(32823,16450,'Sergio Roma',2,5),(32823,89462,'Kali Coleman',1,6),(32823,86626,'Matty Briggs',2,7),(32823,208519,'Kevin McLean',0,8),(32823,54708,'Destiny',1,9),(32823,1014926,'Naples',2,10),(32823,10993,'Himself',2,11),(32823,53397,'Herself',1,12),(32823,111455,'Herself',0,13),(32823,77271,'Herself',1,14),(32823,558267,'Himself',2,15),(32823,19185,'Himself',2,16),(32823,543505,'Jazz Man',2,17),(32823,475512,'Pinnacle Executive',1,18),(32823,40462,'Sarah Marshall',1,19),(32823,51990,'Brian',2,20),(32823,97906,'Lap Dancer in Vegas',1,21),(32823,5377,'Smiling African Drummer',2,22),(32823,1057442,'Standard Guest',2,23),(32823,109869,'Today Show Production Assistant',0,24),(11551,20814,'Alan Abernathy',2,0),(11551,205,'Christy Fimple',1,1),(11551,5724,'Gil Mars',2,2),(11551,14104,'Phil Fimple',2,3),(11551,212,'Irwin Wayfair',2,4),(11551,12217,'Larry Benson',2,5),(11551,14721,'Stuart Abernathy',0,6),(11551,37042,'Irene Abernathy',1,7),(11551,37600,'Marion Fimple',1,8),(11551,9829,'Timmy Fimple',2,9),(11551,2176,'Chip Hazard',2,10),(11551,8924,'Archer',2,11),(11551,7502,'Kip Killagin',2,12),(11551,4774,'Butch Meathook',2,13),(11551,6905,'Link Static',1,14),(11551,12950,'Brick Bazooka',2,15),(11551,40207,'Nick Nitro',2,16),(11551,13524,'Slamfist / Scratch-It',2,17),(11551,21731,'Insaniac / Freakenstein',2,18),(11551,6008,'Punch-It',2,19),(11551,11863,'Gwendy Doll',1,20),(11551,6886,'Gwendy Doll',1,21),(11551,102441,'Joe',2,22),(10336,64856,'Al Simmons',2,0),(10336,8349,'Jason Wynn',2,1),(10336,5723,'Clown / Violator',2,2),(10336,4604,'Wanda Blake',1,3),(10336,51812,'Cogliostro',2,4),(10336,61962,'Terry Fitzgerald',2,5),(10336,89251,'Jessica Priest',1,6),(10336,8186,'Zack',2,7),(10336,1072036,'Cyan',0,8),(10336,15831,'The Devil Malebolgia',2,9),(11362,8767,'Edmond Dantes',2,0),(11362,529,'Fernand Mondego',2,1),(11362,194,'Abbu00e9 Faria',2,2),(11362,22063,'J.F. Villefort',2,3),(11362,52776,'Mercedu00e8s Iguanada',1,4),(11362,7486,'Armand Dorleac',2,5),(11362,40481,'Jacopo',2,6),(11362,64102,'Maurice',2,7),(11362,136152,'Luigi Vampa',2,8),(11362,73968,'Albert Mondego',2,9),(34851,17052,'Edwin',2,0),(34851,8602,'Isabelle',1,1),(34851,2975,'Noland',2,2),(34851,3490,'Royce',2,4),(34851,11160,'Cuchillo',2,5),(34851,27740,'Stans',2,6),(34851,77351,'Nikolai',2,7),(34851,113308,'Hanzo',2,8),(34851,1015924,'Tracker Predator',0,9),(34851,12359,'Berserker Predator / Falconer Predator',2,10),(34851,51300,'Classic Predator',2,11),(34851,932967,'Mombasa',2,12),(10761,18352,'Thomas \'Tom\' Bailey',2,0),(10761,11705,'Hannah',1,1),(10761,9013,'Colin McMurray',2,2),(10761,61659,'Dennis',2,3),(10761,7472,'Gary',2,4),(10761,60928,'Melissa',1,5),(10761,66554,'Felix',2,6),(10761,66555,'Stephanie',1,7),(10761,8183,'Joan',1,8),(10761,2226,'Thomas Bailey Sr.',2,9),(10761,66556,'Hilary',0,10),(10761,65568,'Reverend Foote',0,11),(10761,60633,'Tiny Shorts Guy',2,12),(10761,20403,'Gloria',1,13),(10761,66557,'Grandma Pearl',0,14),(10761,56447,'Christie - Wife #6',1,15),(10761,66559,'Lingerie Salesgirl',1,16),(10761,66561,'Restaurant Hostess',1,17),(10761,66560,'Christie\'s Lawyer',2,18),(10761,66558,'Psycho Blogger',0,19),(10761,131723,'Sexy Blonde',1,20),(10761,1216581,'Driver in Scotland',2,21),(11975,1892,'Rudy Baylor',2,0),(11975,518,'Deck Shifflet',2,1),(11975,10127,'Leo F. Drummond',2,2),(11975,6194,'Kelly Riker',1,3),(11975,5960,'Dot Black',1,4),(11975,923,'Judge Harvey Hale',2,5),(11975,12519,'Jackie Lemancyzk',1,6),(11975,2295,'Bruiser Stone',2,7),(11975,55725,'Billy Porter',2,8),(11975,6355,'Wilfred Keeley',2,9),(11975,60508,'Buddy Black',2,10),(11975,73589,'Donny Ray Black',2,11),(11975,90749,'Cliff Riker',2,12),(11975,7663,'Colleen \'Miss Birdie\' Birdsong',1,13),(11975,2047,'Richter Tyrone Kipler',2,14),(11975,234795,'Prince Thomas',0,15),(11975,60765,'Butch',2,16),(11975,177175,'Everett Lufkin',0,17),(11975,1332339,'Jack Underhall',0,18),(11975,20545,'F. Franklin Donaldson',0,19),(11975,172677,'B. Bobby Hall',2,20),(11975,167122,'J. Michael Floquet',2,21),(11975,1563216,'Mr. Van Landel',0,22),(11975,1857325,'Kermit Aldy',0,23),(11975,37823,'Delbert Birdsong',2,24),(11975,1857326,'Vera Birdsong',0,25),(11831,192,'Theodore',2,0),(11831,15788,'Martin Van Buren',0,1),(11831,4173,'John Quincy Adams',2,2),(11831,938,'Cinque',2,3),(11831,10297,'Roger Sherman Baldwin',2,4),(11831,19839,'Secretary John Forsyth',2,5),(11831,4935,'Holabird',2,6),(11831,1640,'Tappan',2,7),(11831,5294,'Ens. James Covey',2,8),(11831,10690,'Queen Isabella',1,9),(11831,21708,'Calderon',2,10),(11831,40543,'Montes',2,11),(11831,53916,'Lieutenant Gedney',2,12),(11831,568531,'Judge Juttson',2,13),(11831,925,'Attorney',2,14),(11831,22109,'Captain Fitzgerald',2,15),(11831,18325,'Judge Coglin',2,16),(11831,3229,'John C. Calhoun',2,17),(11831,34407,'Mrs. Pendleton',1,18),(11831,4177,'Mr. Wright',2,19),(11831,7372,'General Espatero',2,20),(11831,1611779,'Spanish Guard',0,21),(11831,1629286,'',2,22),(11831,1171094,'Guardsman',0,23),(11011,11510,'Richie Rich',2,0),(11011,14101,'Lawrence Van Dough',2,1),(11011,52995,'Richard Rich',2,2),(11011,4003,'Regina Rich',1,3),(11011,952664,'Tony',2,4),(11011,218589,'Omar',2,5),(11011,974420,'Pee Wee',2,6),(11011,28042,'Young Richie',2,7),(11011,8537,'Herbert Cadbury',2,8),(11011,2266,'Gloria Pazinski',1,9),(10641,1205,'Will Keane',2,0),(10641,1920,'Charlotte Fielding',1,1),(10641,57829,'John Volpe',2,2),(10641,36802,'Dolores Dolly Talbot',1,3),(10641,21657,'Lisa Tyler',1,4),(10641,33653,'Sarah',1,5),(10641,50877,'Lynn',1,6),(10641,18999,'Dr. Tom Grandy',2,7),(10641,131006,'Simon',2,8),(10641,54782,'Dr. Sibley',1,9),(10641,149665,'Shannon',1,10),(11172,69597,'Sophie Fisher',1,0),(11172,3291,'Alex Fletcher',2,1),(11172,53368,'Colin Thompson',2,2),(11172,18,'Chris Riley',2,3),(11172,58754,'Cora Corman',1,4),(11172,1077875,'Pop Bass Player',0,5),(11172,1077876,'Pop Guitar Player',0,6),(11172,1077877,'Pop Drummer',0,7),(11172,1077878,'Has-Beens Promo Announcer (voice)',0,8),(11172,6212,'David Newbert',2,9),(11172,207915,'Janice Stern',1,10),(11172,225629,'Willy',0,11),(11172,20644,'Khan',2,12),(11172,155209,'Ray',2,13),(11172,130749,'Greg Antonsky',2,14),(11172,1024027,'Charlie',2,15),(11172,163934,'Lucy',0,16),(11172,13635,'Rhonda',1,17),(11172,159826,'Gary',2,18),(11172,26722,'Barbara',1,19),(11172,105831,'Tricia',1,20),(11172,164433,'Mia',1,21),(11172,55152,'Sloan Cates',2,22),(11172,163866,'Derek',2,23),(11172,171673,'Gloria',1,24),(11172,155077,'Maitre d\'',2,25),(11172,978719,'Beth Riley',1,26),(11172,163991,'Security Guard',0,27),(11172,1781159,'Stage Manager',2,28),(11172,1706010,'Choreographer',0,29),(11172,1634331,'Dancer',0,30),(11172,1781162,'Dancer',1,31),(11172,1781165,'Dancer',1,32),(11172,1781167,'Dancer',0,33),(11172,1781168,'Dancer',0,34),(11172,1276887,'Dancer',0,35),(11172,1781172,'Dancer',1,36),(11172,1398830,'Dancer',1,37),(11172,1363088,'Dancer',1,38),(11172,1778298,'Dancer',1,39),(11172,1781183,'Dancer',1,40),(11172,1781191,'Dancer',0,41),(11172,1587180,'Dancer',0,42),(11172,1781192,'Dancer',0,43),(11172,1781193,'Dancer',0,44),(11172,1385445,'Girl at Concert',1,45),(11172,1781194,'Man at Concert',0,46),(11172,1781195,'Concert Vendor',0,47),(11172,454223,'Party Guest',0,48),(11172,1202712,'Reunion Classmate',2,49),(11172,1781196,'Reunion Attendee',0,50),(11172,1553306,'Concert Goer',0,51),(11172,1781197,'Groupie',1,52),(11172,1758694,'Concert Shirt Vendor',0,53),(11172,1741973,'Music Exec at Penthouse Party',0,54),(11172,1781199,'Girl at Concert',1,55),(11172,1781205,'Girl at Concert',1,56),(11172,1781217,'Girl at Concert',1,57),(11172,1781218,'Vinny',0,58),(11172,66684,'Penthouse Party Guest',2,59),(11172,1549561,'Mom',1,60),(11172,1781219,'Concert Goer',0,61),(11172,205720,'Girlfriend of Alex Fletcher',1,62),(11172,1781220,'Sloan\'s Dinner Companion',0,63),(11172,1781221,'Loft Party Guest',1,64),(11172,1246221,'Cora Corman Fan',1,65),(11172,92813,'Nurse',1,66),(11172,1781225,'Concert Attendee',1,67),(11172,1781226,'Reunion Classmate',1,68),(11172,1344661,'Reunion Classmate',0,69),(11172,1781227,'Concert Goer',1,70),(11172,1781228,'Reunion Classmate',0,71),(11172,1558984,'Waiter',0,72),(10537,5576,'Jim Morrison',2,0),(10537,5344,'Pamela Courson',1,1),(10537,6677,'Ray Manzarek',2,2),(10537,11805,'Robby Krieger',2,3),(10537,6863,'John Densmore',2,4),(10537,7486,'Paul Rothchild',2,5),(10537,147,'Tom Baker',2,6),(10537,1044946,'Bill Siddons',0,7),(10537,36055,'Italian Count',2,8),(10537,83362,'Dog',2,9),(10537,31007,'Jerry',2,10),(10537,11889,'Jac Holzman',2,11),(10537,1238777,'Ed Sullivan',0,12),(10537,55496,'Music Manager',0,13),(10537,7862,'Shaman',0,14),(10537,80117,'Cat',2,15),(10537,8183,'Patricia Kennealy',1,16),(10537,11024,'Dorothy',1,17),(10537,1064,'Andy Warhol',2,18),(10537,35040,'Warhol PR',2,19),(10537,5578,'Whiskey Girl',1,20),(10537,12662,'Man at Birthday Party',2,21),(10537,1152,'UCLA Film Professor',2,22),(10537,7906,'Okie Girl',1,23),(10537,56978,'Edie',1,24),(10537,13920,'Magazine Photographer',1,25),(10537,147396,'CBS Girl Backstage',1,26),(10537,16663,'(uncredited)',1,27),(10537,80116,'Extra (uncredited)',1,28),(10385,5344,'Eve Mozell Marks',1,0),(10385,3092,'Georgia Mozell',1,1),(10385,14406,'Maddy Mozell',1,2),(10385,6837,'Lou Mozell',2,3),(10385,55257,'Joe Marks',2,4),(10385,177131,'Dr. Omar Kunundar',2,5),(10385,1511583,'Ogmed Kunundar',0,6),(10385,9599,'Pat Mozell',1,7),(10385,114604,'Angie',1,8),(10385,156875,'Dr. Kelly',1,9),(10385,1231210,'Libby',0,10),(10385,3202,'Esther',1,11),(10385,74611,'Kim',1,12),(10385,1989,'Madge Turner',1,13),(10385,1218029,'Nixon Library Representative',0,14),(10385,263618,'Victoria',1,15),(10385,1174009,'Nurse at Mesh Window',1,16),(10385,1511584,'Gay Man',0,17),(10385,1408757,'Gay Man',0,18),(10385,1511585,'Six Year Old Eve',0,19),(10385,122728,'Young Lou',0,20),(10385,1233911,'Four Year Old Jesse',0,21),(10385,1511586,'Mother at Party',0,22),(10154,3291,'Michael Felgate',2,0),(10154,3085,'Frank Vitale',2,1),(10154,10478,'Gina Vitale',1,2),(10154,4521,'Vito Graziosi',2,3),(10154,1292,'Philip Cromwell',2,4),(10154,60023,'Vinnie D\'Agostino',2,5),(10154,19468,'FBI Agent Bob Connell',2,6),(10154,121757,'Carol the Photographer',1,7),(10154,11482,'Angel',2,8),(10154,138988,'Ritchie Vitale',2,9),(10154,47774,'Al',2,10),(10154,78576,'FBI Agent Lewis',2,12),(10154,87707,'Johnny Graziosi',2,13),(10154,1701137,'Sante',2,14),(10647,1979,'Eugene Simonet',2,0),(10647,9994,'Arlene McKinney',1,1),(10647,9640,'Trevor McKinney',2,2),(10647,12217,'Chris Chandler',2,3),(10647,8767,'Jerry',2,4),(10647,32362,'Ricky McKinney',2,5),(10647,4301,'Grace',1,6),(10647,116774,'Sidney Parker',2,7),(10647,1087649,'Mr. Thorsen',0,8),(10647,81375,'Woman on Bridge',1,9),(10647,112600,'Adam',2,10),(10647,42335,'Bonnie',1,11),(10647,1229915,'Michelle',1,12),(10647,2842,'Nurse',1,13),(10647,1450290,'Thorsen\'s Daughter',0,14),(10647,235346,'News Stand Guy',0,15),(11431,69597,'Lindsey Meeks',1,0),(11431,11669,'Ben Wrightman',2,1),(11431,74151,'Ben - 1980',2,2),(11431,1240,'Al',2,3),(11431,69423,'Viv',1,4),(11431,42199,'Waiter',2,5),(11431,3126,'Molly',1,6),(11431,76742,'Sarah',1,7),(11431,20388,'Robin',1,8),(11431,10080,'Maureen Meeks',1,9),(11431,6751,'Lana',1,10),(11431,1225188,'Ryan',2,11),(11431,114036,'Troy',2,12),(11431,98308,'Chris',2,13),(11431,1420715,'Tammy',1,14),(11431,1578571,'Charlene',1,15),(11431,63548,'Casey',2,16),(11431,1578572,'Christie',1,17),(11431,87131,'Uncle Carl',2,18),(11431,60673,'Reporter at Spring Training',2,19),(11431,69421,'Artie',2,20),(11431,69422,'Theresa',1,21),(11431,65568,'Doug Meeks',0,22),(11431,1542,'Kevin',2,23),(11431,19497,'Gerard',2,24),(11431,60672,'Steve',2,25),(11431,135441,'Ezra',2,26),(11431,1212960,'Spin Instructor',1,27),(11431,217291,'Himself',0,28),(11431,3027,'Himself (uncredited)',2,29),(10060,62644,'Marcus',2,0),(10060,52847,'Charlene',1,1),(10060,31164,'Majestic',2,2),(10060,334,'Keryl',0,3),(10060,18288,'Bama',2,4),(10060,19492,'Grandma',1,5),(10060,61364,'Antwan',2,6),(10060,62645,'Justice',2,7),(10060,62646,'Young Marcus',2,8),(10060,62647,'Grandpa',2,9),(10060,1103,'Levar',2,10),(10060,59713,'Junebug',0,11),(10060,62648,'Katrina',1,12),(10060,62649,'Odell',2,13),(10060,62652,'Marcus\' Relative',0,14),(10060,62650,'Uncle Deuce',2,15),(10060,62651,'Uncle Ray',2,16),(10060,62654,'Marcus\' Relative',0,17),(10060,62655,'Marcus\' Relative',0,18),(10060,62653,'Marcus\' Relative',0,19),(10060,133921,'Security Guard',2,20),(11398,10814,'Neil Shaw',2,0),(11398,55636,'Douglas Thomas',2,1),(11398,7868,'Frank Capella',2,2),(11398,10427,'Eleanor Hooks',1,3),(11398,2712,'Robert Bly',2,4),(11398,11398,'David Chan',2,5),(11398,61696,'Julia Fang',1,6),(10391,326,'Maggie O\'Connor',1,0),(10391,32799,'Jenna',1,1),(10391,65362,'Cody',1,2),(10391,17328,'Eric Stark',2,3),(10391,6886,'Cheri Post',1,4),(10391,33181,'Agemt John Travis',2,5),(10391,33241,'Det. Frank Bugatti',2,6),(10391,74940,'Sister Rosa',1,7),(10391,1220923,'Dahnya',1,8),(10391,28871,'Stuart',2,9),(10391,13029,'Maria',0,10),(10391,65,'Reverend Grissom',2,11),(10391,160261,'Sister Joseph',1,12),(10391,201736,'New Dawn Kid at Van',2,13),(10391,141459,'New Dawn Kid',0,14),(11370,50,'The Queen',1,0),(11370,8211,'Francesca Bonacieux',1,1),(11370,9029,'Cardinal Richelieu',2,2),(11370,3129,'Febre the Man in Black',2,3),(11370,20746,'D\'Artagnan',2,4),(11370,43680,'Bonacieux',2,5),(11370,3593,'King Louis XIII',2,6),(11370,939,'Rochefort, Richelieu Henchman',0,7),(11370,975,'Aramis',2,8),(11370,25441,'Porthos',2,9),(11370,17545,'Athos',2,10),(11370,73172,'Lord Buckingham',2,11),(11370,742,'Treville, Head of the Musketeers',2,12),(11370,20800,'Planchet',0,13),(11370,24942,'Madame Lacross',1,14),(12184,524,'Anne Boleyn',1,0),(12184,1245,'Mary Boleyn',1,1),(12184,8783,'Henry Tudor',2,2),(12184,38941,'George Boleyn',2,3),(12184,5470,'Lady Elizabeth Boleyn',1,4),(12184,40900,'Sir Thomas Boleyn',2,5),(12184,18616,'Thomas Howard - Duke of Norfolk',2,6),(12184,24976,'Katherine of Aragon',1,7),(12184,37632,'William Stafford',2,8),(12184,71580,'William Carey',2,9),(12184,71581,'Henry Percy',0,10),(12184,36594,'Jane Parker',1,11),(12184,37625,'Francis Weston',2,12),(12184,185460,'Brandon',2,13),(12184,71584,'Thomas Cromwell',0,14),(12184,17078,'Physician',2,15),(12184,71583,'Lady in Waiting',0,16),(12184,71586,'King\'s Messenger',2,17),(12184,71587,'Jane Seymour',0,18),(12184,1506319,'Rider',0,19),(12184,33450,'Midwife',1,20),(12184,1835811,'Maid',0,21),(12184,1227783,'Young Elizabeth',1,22),(12184,1835812,'Young Anne',0,23),(12184,1835817,'Mary Talbot',0,24),(12184,1534230,'Archbishop Cranmer',2,25),(12184,1835822,'Young Henry',2,26),(12184,1835824,'Mary Tudor',0,27),(11858,518,'Bill Rago',2,0),(11858,13240,'Pvt. Tommy Lee Haywood',2,1),(11858,66804,'Sergeant Cass',2,2),(11858,1736,'Captain Tom Murdoch',2,3),(11858,42157,'Jack Markin',2,4),(11858,17917,'Soldat Donnie Benitez',2,5),(11858,58150,'Soldat Miranda Myers',1,6),(11858,66554,'Soldat Jamaal Montgomery',2,7),(11858,19153,'Colonel James',0,8),(11858,55755,'Pvt. Jackson Leroy',2,9),(11858,79538,'Pvt. Roosevelt Nathaniel Hobbs',2,10),(11858,10000,'Pvt. Melvin',2,11),(18937,7523,'Kayley (voice)',1,0),(18937,2130,'Garrett (voice)',2,1),(18937,64,'Ruber (voice)',2,2),(18937,7167,'Cornwall (voice)',2,4),(18937,10223,'Juliana (voice)',1,5),(18937,517,'King Arthur (voice)',2,6),(18937,4689,'Grifin (voice)',2,7),(18937,87079,'Bladebeak (voice)',2,8),(18937,5168,'Lionel (voice)',2,9),(18937,11857,'Merlin (voice)',2,10),(18937,15831,'Ayden (voice)',2,11),(18937,12903,'Young Kayley (voice)',1,12),(18937,10713,'Devon (voice)',2,13),(13536,380,'Vincent LaMarca',2,0),(13536,17051,'Joey',2,1),(13536,3910,'Michelle',1,2),(13536,13446,'Gina',1,3),(13536,10477,'Reg Duffy',2,4),(13536,5699,'Maggie',1,5),(13536,58643,'Margery',1,6),(13536,2266,'Bree',1,7),(15556,5576,'Virgil Adamson',2,0),(15556,23931,'Amy Benic',1,1),(15556,11084,'Jennie Adamson',1,2),(15556,6106,'Duncan Allanbrook',2,3),(15556,52374,'Dr. Charles Aaron',2,4),(15556,78729,'Phil Webster',2,5),(15556,18328,'Virgil\'s Father',2,6),(15556,21881,'Betsy Ernst',1,7),(15556,93015,'Caroline',1,8),(15556,1079544,'Nancy Bender',1,9),(15556,137386,'Singer',1,10),(15556,20760,'Jack Falk',0,11),(10718,26291,'Ford',2,0),(10718,9778,'Trey',2,1),(10718,34844,'Shane',1,2),(10718,36801,'FBI Agent McPherson',2,3),(10718,31841,'Henry James',2,4),(10718,56824,'China',1,5),(10718,66823,'Passenger in Train',2,6),(10718,19487,'Dalton',2,7),(10718,37936,'Nina',1,8),(10718,62066,'Sonny',2,9),(10718,1030724,'Yellow Car Driver',2,10),(10718,66587,'Luther',0,11),(10718,31837,'Neil Luff',2,12),(10718,42746,'Sheriff Barnes',2,13),(10718,155767,'Nomo',0,14),(10718,1345608,'18 Wheeler Driver',0,15),(10718,10884,'Val',2,16),(10718,95517,'Henderson',1,17),(10718,1602372,'Kid',0,18),(10718,1226794,'Neal Luff\'s Girlfriend',1,19),(10718,1037108,'Mikisha',1,20),(10718,31841,'Henry',2,21),(10718,1602373,'Officer Frank',0,22),(10718,36801,'McPherson',2,23),(10718,1602374,'Reporter',0,24),(10718,59568,'Junior',2,25),(10718,202958,'Rasan',2,26),(10718,293911,'Red Car Driver',2,27),(10718,170803,'Young Dude',2,28),(10718,92328,'Earl',2,29),(10718,1602375,'Farmer',0,30),(11062,1158,'Mayor John Pappas',2,0),(11062,3036,'Deputy Mayor Kevin Calhoun',2,1),(11062,2233,'Marybeth Cogan',1,2),(11062,1004,'Frank Anselmo',2,3),(11062,2641,'Judge Walter Stern',2,4),(11062,19839,'Abe Goodman',2,5),(11062,31028,'Larry Schwartz',2,6),(10802,19189,'Nomi Malone',1,0),(10802,6677,'Zack Carey',2,1),(10802,11150,'Cristal Connors',1,2),(10802,2683,'James Smith',2,3),(10802,2055,'Al Torres',2,4),(10802,105626,'Tony Moss',2,5),(10802,77279,'Molly Abrams',1,6),(10802,955883,'Henrietta \'Mama\' Bazoom',1,7),(10802,9312,'Phil Newkirk',2,8),(10802,37254,'Mr. Karlman',2,9),(10802,111080,'Marty Jacobsen',2,10),(10802,156029,'Andrew Carver',2,11),(10802,42657,'Dee',1,12),(10802,167676,'Jeff',2,13),(10802,66877,'Penny/Hope',1,14),(10802,1233895,'Gay Carpenter',1,15),(10802,9313,'Sonny',1,16),(10802,10489,'Jack',2,17),(10802,1768246,'Nadia',0,18),(10802,162884,'Nurse',1,19),(10802,63210,'Caesar',2,20),(10802,1483263,'Al Torres\' Girl',1,21),(10802,14391,'Goddess Dancer',1,22),(10461,16483,'Jack Carter',2,0),(10461,8436,'Gloria Carter',1,1),(10461,38581,'Doreen Carter',1,2),(10461,2295,'Cyrus Paice',2,3),(10461,12796,'Eddie',2,4),(10461,25702,'Geraldine',1,5),(10461,11885,'Con McCarty',2,6),(10461,10697,'Jeremy Kinnear',2,7),(10461,3895,'Cliff Brumby',2,8),(10461,15370,'Audrey',0,9),(10461,12055,'Thorpey',2,10),(10461,58393,'Girl #1',1,11),(10461,534,'Jim Davis',2,12),(10461,51383,'Bud #1',2,13),(10461,3197,'Les Fletcher (voice)',2,14),(12704,6449,'Lyle Rogers',2,0),(12704,4483,'Chuck Clarke',2,1),(12704,6553,'Shirra Assel',1,2),(12704,28164,'Jim Harrison',2,3),(12704,726,'Marty Freed',2,4),(12704,41249,'Willa',1,5),(12704,10556,'Carol',1,6),(12704,25808,'Emir Yousef',2,7),(12704,153912,'Siri Darma',1,8),(12704,40009,'CIA Agent',2,9),(12704,747,'CIA Agent',0,10),(10315,1461,'Mr. Fox (voice)',2,0),(10315,5064,'Mrs. Fox (voice)',1,1),(10315,17881,'Ash (voice)',2,2),(10315,1532,'Badger (voice)',2,3),(10315,486,'Kylie (voice)',2,4),(10315,1332415,'Kristofferson (voice)',0,5),(10315,5658,'Franklin Bean (voice)',2,6),(10315,5293,'Rat (voice)',2,7),(10315,887,'Coach Skip (voice)',2,8),(10315,107170,'Petey (voice)',0,9),(10315,5655,'Weasel (voice)',2,10),(10315,76131,'Linda Otter (voice)',1,11),(10315,1332416,'Walter Boggis (voice)',0,12),(10315,992097,'Nathan Bunce (voice)',2,13),(10315,15737,'Mrs. Bean (voice)',1,14),(10315,38803,'Squirrel Contractor (voice)',2,15),(10315,1332418,'Agnes (voice)',0,16),(10315,1004835,'Beaver\'s Son (voice)',0,17),(10315,52842,'Bean\'s Son (voice)',2,18),(10315,1248,'Action 12 Reporter (voice)',2,19),(10315,53331,'Explosives Man (voice)',0,20),(10315,1332423,'Mole (voice)',0,21),(10315,1004836,'Beaver (voice)',0,22),(10315,1332426,'Pilot (voice)',0,23),(10315,1332428,'Dr. Badger (voice)',0,24),(10315,34894,'Rabbit\'s Ex-Girlfriend (voice)',0,25),(10315,1332433,'Rabbit Girl (voice)',0,26),(10315,3490,'Field Mouse (voice)',2,27),(10315,146747,'Rabbit (voice)',2,28),(10315,1332434,'Fire Chief (voice)',0,29),(16643,11701,'Lanie Kerrigan',1,0),(16643,12833,'Pete',2,1),(16643,4252,'Jack',2,2),(16643,71198,'Cal Cooper',2,3),(16643,65756,'Andrea',1,4),(16643,47058,'Gwen',1,5),(16643,8893,'Deborah Connors',1,6),(16643,21142,'Dennis',2,7),(16643,10960,'Vin',2,8),(16643,83777,'Mark Laughlin',2,9),(16643,16433,'Pat Kerrigan',2,10),(16643,63563,'Doctor',1,11),(11025,67848,'Jane Ryan',1,0),(11025,67849,'Roxy Ryan',1,1),(11025,26510,'Max Lomax',2,2),(11025,28637,'Bennie Bang',2,3),(11025,67850,'Jim',2,4),(11025,1224499,'Dr. Ryan',0,6),(11025,58954,'Hudson McGill',2,7),(11025,8263,'Senator Anne Lipton',1,8),(11025,72450,'Himself',2,9),(11025,133197,'Justin',0,10),(11025,99784,'Himself',0,11),(11025,935358,'Himself',2,12),(11025,935356,'Himself',2,13),(11025,935355,'Himself',2,14),(11025,935357,'Himself',2,15),(11025,935354,'Himself',2,16),(30943,1160,'Beth Cappadora',1,0),(30943,4515,'Pat Cappadora',2,1),(30943,2395,'Candy Bliss',1,2),(30943,23495,'Vincent Cappadora - Age 16',2,3),(30943,156606,'Vincent Cappadora - Age 7',2,4),(30943,57136,'Sam Karras / Ben Cappadora - Age 12',0,5),(30943,57674,'Kerry Cappadora',1,6),(30943,157015,'Jimmy Daugherty',2,7),(30943,101396,'Ellen',1,8),(30943,159435,'Ben Cappadora - Age 3',2,9),(30943,20564,'Grandpa Angelo',2,10),(30943,140355,'Grandma Rosie',1,11),(30943,55554,'George Karras',2,12),(30943,5148,'Laurie',1,13),(30943,9285,'Chief Bastokovich',2,14),(24418,4764,'Larten Crepsley',2,0),(24418,27972,'Steve',2,1),(24418,109441,'Darren Shan',2,2),(24418,11663,'Evra the Snake Boy',2,3),(24418,3136,'Madame Truska',1,4),(24418,109867,'Rebecca',1,5),(24418,49827,'Mr. Tiny',2,6),(24418,56614,'Murlaugh',2,7),(24418,109868,'Annie',1,9),(24418,79025,'Mr. Shan',2,10),(24418,3899,'Mr. Tall',2,12),(24418,18270,'Alexander Ribs',2,13),(24418,13936,'Rhamus Twobellies',2,14),(24418,5293,'Gavner Purl',2,15),(24418,109869,'Gertha Teeth',0,16),(24418,15031,'Mr. Kersey',0,17),(24418,109870,'Wolfman',2,18),(24418,13636,'Corma Limbs',1,19),(24418,109871,'Loaf Head',2,20),(24418,13023,'Mrs. Shan',1,21),(24418,1444726,'Student in Hallway and Classroom',1,22),(24418,1005339,'Trucker',2,23),(24418,143264,'Singing Dad',2,24),(24418,1536670,'Pete',2,25),(14655,2231,'Louis Hinds',2,0),(14655,1897,'Floyd Henderson',2,1),(14655,15566,'Cleo',1,2),(14655,59256,'Phillip',2,3),(14655,52601,'Danny Epstein',2,4),(14655,98394,'Lester',2,5),(14655,66526,'Zig-Zag',2,6),(14655,51944,'Duane Henderson',2,7),(14655,113461,'Marcus Hooks',2,8),(14655,6542,'Himself',2,9),(14655,101154,'Full-Figured Neighbor',1,10),(14655,6734,'Ardesh Kezian',2,12),(14655,38334,'Rosalee',1,13),(14655,1569054,'Weather Woman',1,14),(24575,588,'Master Chief Vinnie Walker',2,0),(24575,12518,'Dirk Pitt',2,1),(24575,56930,'Dr. Gene Seagram',2,2),(24575,10427,'Dana Archibald',1,3),(24575,12248,'John Bigalow',2,4),(24575,85146,'Captain Prevlov',2,5),(24575,4765,'Admiral James Sandecker',2,6),(24575,1080265,'Lieutenant Northacker',0,7),(24575,1152827,'Dr. Silverstein',0,8),(10366,15111,'Luc Devereux',2,0),(10366,65235,'Maggie',0,1),(10366,65236,'Romeo',2,2),(10366,64856,'SETH',2,3),(10366,11321,'Erin Young, KTXD',1,4),(10366,3982,'Dr. Dylan Cotner',2,5),(10366,160082,'Captain Blackburn',2,6),(10366,1473,'General Radford',2,7),(10366,106911,'Sergeant Morrow',2,8),(10366,154531,'Hillary Deveraux',0,9),(10366,7134,'Squid',2,10),(10366,180538,'Technician #2',2,11),(19898,11107,'Bower',2,0),(19898,6065,'Payton',2,1),(19898,55086,'Gallo',2,2),(19898,43202,'Nadia',1,3),(19898,116637,'Manh',2,4),(19898,79419,'Leland',0,5),(19898,4886,'Shepard',2,6),(19898,1846,'Hunter Leader',2,7),(19898,28273,'Evalon',1,8),(19898,46216,'Insane Officer \'Eden\'',2,9),(19898,132181,'Child Hunter',1,10),(19898,132182,'Young Bower\'s Mother',1,11),(19898,7805,'Young Bower\'s Father',2,12),(19898,132183,'Young Bower',2,13),(19898,73539,'Wounded Officer \'Eden\'',0,14),(19898,20132,'Big Russian Passenger',2,15),(19898,49491,'Trapped Officer \'Eden\'',0,16),(19898,48883,'Female Crew Officer',1,17),(19898,54023,'2nd Lieutenant (Team 4)',1,18),(19898,132184,'Hunter Weasel',0,19),(19898,132185,'Hunter Shape',0,20),(19898,132186,'Hunter Brute',0,21),(19898,132187,'Mateo (uncredited)',0,22),(19898,116243,'Cooper (uncredited)',0,23),(15074,50398,'Will',2,0),(15074,20751,'Chloe',0,1),(15074,17328,'Ian',2,2),(15074,11278,'Jeffrey',2,3),(15074,1086,'Mark',2,4),(15074,97430,'Silo',2,5),(15074,20259,'Kittie',1,6),(15074,20800,'Zoran',0,7),(15074,25689,'Yana',1,8),(15074,9927,'Slobodan u201ePawelu201c Pavlov',2,9),(20542,33260,'Delgo',2,0),(20542,33259,'Princess Kyla',1,1),(20542,5576,'Bogardus',2,2),(20542,10774,'Sedessa',1,3),(20542,58317,'Filo',2,4),(20542,56890,'Raius',2,5),(20542,61981,'Elder Marley',2,6),(20542,20959,'King Zahn',2,7),(20542,10713,'Spig',2,8),(20542,16475,'Delgo\'s Father',2,9),(20542,76096,'Kurrin',1,10),(20542,9805,'Narrator',1,11),(20542,181836,'Ando',0,12),(20542,31535,'Miss Sutley / Elder Pearo',1,13),(20542,1223084,'Baby Delgo (voice)',1,14),(10428,9012,'Dade Murphy / \'Crash Override\' / \'Zero Cool\'',2,0),(10428,11701,'Kate Libby / \'Acid Burn\'',1,1),(10428,17772,'Joey Pardella',2,2),(10428,26457,'Emmanuel Goldstein / \'Cereal Killer\'',2,3),(10428,28863,'Ramon Sanchez / \'Phantom Phreak\'',2,4),(10428,26473,'Eugene Belford / \'The Plague\' / Mr. Babbage',2,5),(10428,19958,'Lauren Murphy',1,6),(10428,65141,'Paul Cook / \'Lord Nikon\'',2,7),(10428,11478,'Margo',0,8),(10428,17859,'S.S. Agent Richard Gill',2,9),(10428,33241,'S.S. Agent Bob',2,10),(10428,47775,'S.S. Agent Ray',2,11),(10428,37221,'Hal',2,12),(10428,65143,'Blade',2,13),(10428,65142,'Razor',2,14),(10428,65145,'Laura',0,15),(10428,65146,'Duke Ellingson',2,16),(10428,65144,'Curtis',0,17),(10428,65147,'S.S. Agent, Seattle',0,18),(10428,65148,'Young Dade Murphy / \'Zero Cool\'',2,19),(10428,29071,'2nd V.P.',0,20),(10428,7427,'Attorney',1,21),(10428,171567,'Michael Murphy',2,22),(10428,134654,'Denise',2,23),(10428,204388,'Jock',0,24),(11934,504,'Norville Barnes',2,0),(11934,10431,'Amy Archer',1,1),(11934,3636,'Sidney J. Mussburger',2,2),(11934,1466,'Waring Hudsucker',2,3),(11934,4251,'Chief',2,4),(11934,108717,'Buzz',2,5),(11934,8854,'Moses',2,6),(11934,11357,'Smitty',2,7),(11934,4510,'Aloysius',0,8),(11934,4887,'Lou',2,9),(11934,884,'Beatnik Barman',2,10),(11934,115654,'Za-Za',1,11),(11934,174254,'Newsreel Secretary',1,12),(11934,17399,'Thorstenson Finlandson',2,13),(11934,1571818,'Emcee',0,14),(11934,168648,'Benny',2,15),(11934,12888,'Board Member',2,16),(11934,4257,'Board Member',2,17),(11934,4253,'Mr. Bumstead',2,18),(11934,1230,'Newsreel Announcer',2,19),(11934,52494,'Newsboy',2,20),(11934,56268,'Mailroom Screamer',2,21),(11934,31028,'Mailroom Screamer',2,22),(11934,86583,'New Year\'s Mob',0,23),(14392,1336,'General Ma Xinyi',2,0),(14392,25246,'Cao Er-Hu',2,1),(14392,43661,'Zhang Wen-Xiang',2,2),(14392,76811,'Lian',0,3),(14392,1127729,'Lord Chen',2,4),(14392,228915,'Lord Jiang',0,5),(14392,1127730,'Lord Di',0,6),(14392,1021201,'Lu Da Shan',0,7),(14392,116636,'Huang Wen Jin',0,8),(14392,1138369,'He Kui',0,9),(14392,1127732,'Xiao Shun',0,10),(14392,1615837,'Zhu Guan',0,11),(14392,1562567,'Wang Xiao-Shou',0,12),(14392,1418100,'Xiao Wu',0,13),(14392,1615838,'Zhang Shan',0,14),(14392,1615839,'Gong Jiang',0,15),(14392,1021200,'Gou Zi',0,16),(14392,1615841,'Xiao Fu',0,17),(14392,1615842,'Tai Ping General',0,18),(14392,1615843,'Liu Jin',0,19),(14392,105423,'Bandit Shi Jin Biao',0,20),(19495,58982,'Mansur',2,0),(19495,19487,'Erali',2,1),(19495,58319,'Oraz',2,2),(19495,84731,'Galdan Ceren, the Jungar Sultan',0,3),(19495,84732,'Gaukhar',0,4),(19495,18702,'Sharish',2,5),(19495,84733,'Ragbat',0,6),(19495,84734,'Barak',0,7),(19495,84735,'Hocha',0,8),(26486,4756,'Steven Schats',2,0),(26486,7447,'Joe Devine',2,1),(26486,3051,'Emily French',1,2),(26486,49148,'Valerie Weston',1,3),(26486,11477,'Jack Devine',2,4),(26486,1462,'Marshal Paris',2,5),(26486,8986,'Abe White',2,6),(26486,4252,'Tommy Sanz',2,7),(26486,20750,'Girl with Emily French at Movie Premiere',1,8),(26486,7795,'Lonnie Bosco',0,9),(26486,34457,'Agent Nance',2,10),(26486,76476,'Agent Ray Dawson',2,11),(26486,17867,'Agent Pike',0,12),(26486,6951,'Willie Gratzo',2,13),(26486,333,'Troy Haines',2,14),(26486,12797,'Agent McCaffrey',2,15),(26486,134711,'Heidi Katz',0,16),(26486,20582,'Ed Rossi, Jr.',2,17),(26486,4253,'Wally Kamin',2,18),(26486,1676597,'Delores',0,19),(26486,15253,'Howard Schatz / Ben Cartwright',2,21),(26486,206366,'Man With Couch',2,23),(26486,110931,'Criminal #1',2,24),(26486,1236068,'Receptionist',0,25),(26486,9996,'P.A.',2,26),(26486,27269,'Costume Designer',1,27),(26486,21051,'First AD',2,28),(26486,143591,'Steven\'s Girlfriend',1,29),(26486,42724,'Hotel Manager',2,30),(26486,99681,'Man',2,31),(26486,1216429,'Nicky\'s Wife / Widow',0,32),(26486,1337842,'Steven\'s Friend',0,33),(26486,1676665,'Steven\'s Friend',0,34),(26486,113781,'Show Announcer',2,35),(26486,54514,'Little Joe',0,36),(26486,1214389,'Hollywood Boulevard Type',0,37),(26486,1416443,'Hollywood Boulevard Type',0,38),(26486,1546957,'Doorman',0,40),(26486,3203,'Himself',2,41),(26486,23915,'Himself',2,42),(26486,1174794,'Producer',1,43),(26486,156466,'Funeral Director',2,44),(26486,170432,'Bus Stop Drag Queen',2,45),(24420,8783,'Henry DeTamble',2,0),(24420,53714,'Clare Abshire',1,1),(24420,95635,'Annette DeTamble',1,2),(24420,3229,'Richard DeTamble',2,3),(24420,17402,'Gomez',2,5),(24420,1017085,'Mark Abshire',2,6),(24420,41743,'Alicia Abshire',1,7),(24420,54652,'Lucille Abshire',1,8),(24420,166529,'Philip Abshire',2,9),(24420,59243,'Henry at Six',2,10),(24420,1393528,'Hospital Receptionist',0,11),(24420,1393529,'Library Researcher',0,12),(24420,1123849,'Waitress',0,13),(24420,1123849,'Chicago Police #1',0,14),(24420,1393530,'Chicago Police #2',0,15),(24420,1393531,'Librarian',0,17),(24420,1393533,'Thai Waiter',0,18),(24420,39518,'Clare at Six and Eight',1,19),(24420,1393534,'Barber',0,20),(24420,115582,'Moving Man',0,21),(24420,1239413,'Pastor',0,22),(24420,1178559,'Jeremy (Gallery Owner)',2,23),(24420,193040,'Lottery Announcer',2,24),(24420,44246,'TV Sales Person',0,25),(24420,1393535,'Realtor',0,26),(24420,537,'Dr. Kendrick',2,27),(24420,1393536,'Alba at Nine and Ten',0,28),(24420,1393537,'Dr. Osman',0,29),(24420,1393538,'Dr. Osman\'s Nurse',0,30),(24420,88929,'Dr. Montague',1,31),(24420,1225804,'Alba at Four and Five',0,32),(24420,113931,'Resident Doctor',2,33),(24420,1393539,'Chicago Radio Show Host',0,35),(24420,91607,'Hunting Buddy',2,36),(16320,51797,'Mal',2,0),(16320,9576,'Zoe',1,1),(16320,21088,'Wash',2,2),(16320,54882,'Inara',1,3),(16320,2059,'Jayne',2,4),(16320,72092,'Kaylee',1,5),(16320,55148,'Simon',2,6),(16320,54881,'River',1,7),(16320,74570,'Shepherd Book',2,8),(16320,5294,'The Operative',2,9),(16320,38582,'Mr. Universe',2,10),(16320,75463,'Dr. Mathias',2,11),(16320,34490,'Dr. Caron',1,12),(16320,80426,'Mingo',0,13),(16320,80427,'Fanty',2,14),(16320,36137,'Lenore',1,15),(16320,39464,'Teacher',1,16),(16320,77870,'Lilac Young Tough',2,17),(16320,80428,'Young River',0,18),(16320,80429,'Boy Student',2,19),(16320,80430,'Boy Student',2,20),(16320,80431,'Girl Student',1,21),(16320,80433,'Girl Student',1,22),(16320,80432,'Girl Student',0,23),(16320,80434,'Ensign',2,24),(16320,80435,'Helmsman',2,25),(16320,80436,'Lab Technician',0,26),(16320,80437,'Lab Technician',2,27),(16320,80438,'Trade Agent',2,28),(16320,80439,'Young Female Intern',1,29),(16320,80440,'Vault Guard',0,30),(16320,80441,'Lilac Mom',0,31),(16320,80442,'Lilac Son',2,32),(16320,80443,'Fan Dancer',1,33),(16320,61305,'Mining Camp Boy',0,34),(16320,80444,'Alliance Pilot',0,35),(16320,80445,'Black Room Soldier',2,36),(16320,56459,'Black Room Soldier',0,37),(16320,80446,'News Anchor',2,38),(16320,80447,'Slovenly Beaumonde Man',2,39),(16320,80448,'Bartender (uncredited)',2,40),(16320,43470,'Chinese Snake Dancer (uncredited)',1,41),(16320,80449,'Furturistic Worker (uncredited)',0,42),(16320,1286738,'Bar Guy (uncredited)',2,43),(12289,1622,'Sun Quan',2,0),(12289,96862,'Zhao Yun',0,1),(12289,1337,'Zhou Yu',2,2),(12289,43661,'Zhuge Liang',2,3),(12289,96614,'Li Ji',1,4),(12289,77304,'Sun Shangxiang',1,5),(12289,65277,'Cao Cao',0,6),(12289,118724,'Xiao Qiao',1,7),(12289,72202,'Gan Xing',2,8),(12289,110507,'Liu Bei',0,9),(12289,958556,'Lu Su',0,10),(12289,1031246,'Sun Shucai',0,11),(12289,1117866,'Guan Yu',0,12),(12289,1117867,'Zhang Fei',0,13),(12289,1044559,'Huang Gai',0,14),(12289,1297520,'Kong Rong',0,15),(12289,1623402,'Cao Hong',0,16),(12289,1614307,'Hua Tuo',2,17),(12289,1190213,'Jiang Gan',0,18),(12289,1623403,'Zhang Liao',0,19),(12289,1623404,'Yue Jin',0,20),(12289,1299620,'Xiahou Jun',0,21),(12289,1623405,'Xu Chu',0,22),(12289,1623406,'Li Tong',0,23),(12289,1436148,'Wei Ben',0,24),(12289,1623407,'Cai Mao',0,25),(12289,1623408,'Zhang Yun',0,26),(12289,1623409,'Xun You',2,27),(11529,368,'Melanie Carmichael Smooter Perry',1,0),(11529,6164,'Jake Perry',1,1),(11529,18352,'Andrew Hennings',2,2),(11529,11850,'Mayor Kate Hennings',1,3),(11529,25702,'Tabatha Wadmore-Smith',1,4),(11529,29931,'Sherma',1,5),(11529,10430,'Earl Smooter',2,6),(11529,5960,'Pearl Smooter',1,7),(11529,60633,'Barry Lowenstein',2,8),(11529,15091,'Lurlynn',1,9),(11529,58019,'Bobby Ray',2,10),(11529,5376,'Stella Kay',1,11),(11529,146025,'Virgie',1,12),(11529,501,'Young Melanie Smooter',1,13),(11529,1024312,'Dead Soldier',2,14),(11529,15012,'Erin Vanderbilt',0,15),(20943,25541,'Abby',1,0),(20943,17276,'Mike',2,1),(20943,74409,'Colin',2,2),(20943,62065,'Joy',1,3),(20943,12538,'Stuart',2,4),(20943,44043,'Cliff',2,5),(20943,57854,'Georgia',1,6),(20943,8265,'Larry',2,7),(20943,141415,'Jonah',2,8),(20943,66579,'Elizabeth',1,9),(20943,141424,'Bob',2,10),(20943,111513,'Dori',1,11),(20943,127048,'Josh',0,12),(20943,141432,'Duane',2,13),(20943,141433,'Steve',2,14),(20943,27688,'Rick',0,15),(20943,1217895,'Bambi',0,16),(20943,1218828,'Candi',0,17),(20943,16666,'Jim',2,18),(20943,1215619,'Guest Chef',0,19),(20943,6321,'Javier',2,20),(20943,154551,'KPQU Big Wig',2,21),(20943,154888,'KPQU Big Wig',2,22),(20943,38709,'Jack Magnum',2,23),(20943,106965,'Jack Magnum',2,24),(20943,1367974,'Drunk Guy',0,25),(20943,1260031,'Cute Brunette',0,26),(20943,24264,'Himself',2,27),(20943,1539375,'Hostess',0,28),(20943,78046,'Female Fan',1,29),(20943,74228,'Security Guard',2,30),(20943,180168,'Bell Man',2,31),(20943,1387575,'KPQU Production Assistant',0,32),(20943,1539432,'Bartender',0,33),(20943,14723,'Saleswoman',1,34),(20943,59545,'Sexy Woman',0,35),(20943,1427006,'Karen',0,36),(20943,1352093,'TV Production Assistant',0,37),(20943,1539450,'Girl on Bike (uncredited)',1,38),(20943,1196258,'Stagehand (uncredited)',0,39),(20943,1539459,'Salsa Dancer (uncredited)',0,40),(20943,100378,'Salsa Dancer (uncredited)',0,41),(20943,968010,'Station Employee (uncredited)',2,42),(20943,1384666,'Cliff (uncredited)',0,43),(20943,1539471,'Mike\'s Mom (uncredited)',0,44),(20943,1539472,'Salsa Dancer (uncredited)',0,45),(20943,1539474,'Woman on Bike (uncredited)',0,46),(20943,98297,'Wedding Guest (uncredited)',1,47),(20943,1492023,'Salsa Dancer (uncredited)',0,48),(20943,1539476,'Restaurant Guest (uncredited)',2,49),(20943,44737,'Salsa Dancer (uncredited)',0,50),(20943,85743,'Himself (uncredited)',0,51),(20943,111651,'Devil\'s Baseball Hero (uncredited)',2,52),(20943,1539482,'Date (uncredited)',0,53),(20943,1382923,'Salsa Dancer (uncredited)',0,54),(20943,94531,'Disgusted Baseball Fan (uncredited)',0,55),(20943,1506254,'Production Manager (uncredited)',0,56),(20943,1539492,'Salsa Dancer (uncredited)',0,57),(20943,1278387,'Station Employee (uncredited)',0,58),(20943,1539504,'Trashy Redhead (uncredited)',0,59),(20943,149660,'Harold (uncredited)',2,60),(20943,1539514,'Bar patron (uncredited)',2,61),(20943,138974,'Beautiful Restaurant Patron (uncredited)',0,62),(20943,1539524,'Salsa Dancer (uncredited)',0,63),(20943,1539533,'Salsa Dancer (uncredited)',0,73),(20943,1539536,'Salsa Dancer (uncredited)',0,74),(20943,1539544,'Day Player (uncredited)',0,75),(20943,1539545,'Announcer (uncredited)',0,76),(20943,210849,'Park Pedestrian (uncredited)',0,77),(20943,1539554,'Office Worker (uncredited)',0,78),(20943,36072,'Chef Megan (uncredited)',1,79),(20943,1256257,'Stage Manager (uncredited)',1,80),(20943,1241301,'Salsa Dancer (uncredited)',0,81),(20943,1539561,'Salsa Dancer (uncredited)',0,82),(10400,5292,'Rubin Hurricane Carter',2,0),(10400,25868,'Lesra Martin',0,1),(10400,13549,'Lisa Peters',1,2),(10400,23626,'Sam Chaiton',2,3),(10400,10727,'Terry',2,4),(10400,6486,'Della Pesca',2,5),(10400,88161,'Mae Thelma',1,6),(10400,6574,'Lt. Jimmy Williams',2,7),(10400,19839,'Myron Bedlock',2,8),(10400,1166,'Leon Friedman',2,9),(10400,522,'Judge Sarokin',2,10),(10400,107009,'Mobutu',2,11),(10400,47774,'Alfred Bello',2,12),(10400,36172,'Warden',2,13),(10400,80991,'U.S. Court Prosecutor',2,14),(10400,59570,'John Artis',0,15),(10400,4892,'Earl Martin',0,16),(10400,171079,'Alma Martin',1,17),(10400,40385,'Jean Wahl',1,18),(10400,168638,'Louise Cockersham',0,19),(10400,1393328,'Young Rubin Carter',0,20),(10400,7576,'Paterson Judge',2,21),(10400,130724,'Judge Larner',0,22),(10400,1393330,'Man at Falls',0,23),(10400,1393331,'Boy at the Falls',0,24),(10400,941550,'Tina Barbieri',0,25),(10400,944895,'Nite Spot Cabbie',2,26),(10400,51532,'Reporter at Bar',2,27),(10400,1393332,'Nite Spot Woman',1,28),(10400,209380,'Paterson Detective',2,29),(10400,1217610,'Big Ed',0,30),(10400,1214060,'Woman at Prison',0,31),(10400,65808,'Paterson Policeman',2,32),(10400,23874,'Soldier #1 in U.S.O. Club',2,33),(10400,5304,'Soldier #2 in U.S.O. Club',0,34),(10400,62129,'Woman in U.S.O. Club',0,35),(10400,1393338,'Emile Griffith',0,36),(10400,59674,'Joey Giardello',2,37),(10400,1393339,'Joey Cooper',0,38),(10400,115856,'Detective at Hospital',2,39),(10400,1393342,'Pittsburgh Ring Announcer',0,40),(10400,1393343,'Pittsburgh Referee',2,41),(10400,1218566,'Pittsburgh TV Announcer',0,42),(10400,1393344,'Philadelphia Ring Announcer',0,43),(10400,166489,'Philadelphia TV Announcer',2,44),(10400,31581,'Reading, PA. TV Announcer',2,45),(10400,169077,'Patty Valentine',1,47),(10400,174952,'Detective',0,48),(10400,1393348,'Detective at Lafayette Bar',0,49),(10400,63859,'Reporter at Banquet',2,50),(10400,219407,'Cashier',1,51),(10400,82647,'Prison Guard',0,52),(10400,27586,'Prison Guard',2,53),(10400,1393349,'',1,54),(10400,1393350,'',0,55),(10400,41658,'',0,57),(10400,1239597,'',0,58),(10400,1393353,'',0,59),(10400,1393354,'',0,60),(10400,1393355,'',0,61),(10400,1399075,'Prisoner with Camera',0,62),(10400,1393349,'Prison Guard',1,63),(10400,1393350,'Prison Guard',0,64),(10400,1393352,'Prison Guard',2,65),(10400,41658,'Prison Guard',0,66),(10400,1239597,'Prison Guard',0,67),(10400,1393353,'Prison Guard',0,68),(10400,1393354,'Prison Guard',0,69),(10400,1393355,'Prison Guard',0,70),(10400,1393357,'Mechanic',0,71),(10400,1393358,'New Jersey Policeman',0,72),(10400,1393359,'New Jersey Policeman',0,73),(10400,1393360,'Federal Court Assistant Prosecutor',2,74),(10400,1196490,'Reporter',0,75),(10400,1393361,'Elstan Martin',2,76),(10400,1393362,'St. Joseph\'s Doctor',0,77),(10400,1293297,'Dancer with John Artis',0,78),(10400,1240845,'Jury Foreman',2,79),(10400,1551263,'Reading, PA. Referee',0,80),(10833,10205,'Max Conners',1,0),(10833,33259,'Page Conners',1,1),(10833,193,'William B. Tensy',2,2),(10833,11477,'Dean Cumanno',2,3),(10833,11662,'Jack Withrowe',2,4),(10833,10774,'Gloria Vogal',1,5),(10833,31714,'Nurse Gale Grey',1,6),(10833,4004,'Mr. Appel',2,7),(10833,4496,'Miss Madress',1,8),(10833,7404,'Linda',1,9),(10833,58225,'Bill',2,10),(10833,75463,'Dr. Arnold Davis',2,11),(10833,4,'Ms. Surpin',1,12),(10833,58478,'Man at the Bar',2,13),(10833,1225991,'Davis Maid',1,14),(12312,12898,'Joe Scheffer',2,0),(12312,31171,'Meg Harper',1,1),(12312,6473,'Callie Scheffer',1,2),(12312,19974,'Jeremy',2,3),(12312,26485,'Chuck Scarett',2,4),(12312,17265,'Natalie Scheffer',1,5),(12312,9657,'Mark McKinney',2,6),(12312,77089,'Rick Raglow',2,7),(12312,68672,'Cade Raymond',2,8),(12312,5130,'Abby Manheim',1,9),(12312,19976,'Pat Chilcutt',2,10),(12312,57992,'Cassandra Taylor',1,11),(12312,5617,'Exec. Bill',2,12),(12312,1637859,'Waver \'Tawnja\'',0,13),(12312,1637860,'Neva',0,14),(11306,3291,'Dr. Guy Luthan',2,0),(11306,193,'Dr. Lawrence Myrick',2,1),(11306,520,'Jodie Trammel',1,2),(11306,52,'FBI Agent Frank Hare',2,3),(11306,5502,'Det. Bob Burke',2,4),(11306,42316,'Bobby',0,5),(11306,925,'Dr. Jeffrey Manko',2,6),(11306,10386,'Dr. Judith Gruszynski',1,7),(11306,181010,'Claude Minkins',0,8),(11306,1043858,'Teddy Dolson',0,9),(11306,18999,'Dr. Mingus',2,10),(11306,1005,'Det. Stone',2,11),(11306,199837,'Helen',1,12),(11306,50774,'Ruth Myrick',1,13),(11306,19468,'Dr. Gene Spitelli',2,14),(11306,39599,'Izzy',2,15),(11306,236,'Det. Stone\'s Partner',2,16),(11306,1705344,'E.R. Doctor',0,17),(11306,51038,'Simon',2,18),(11306,61662,'E.R. Doctor',2,19),(11306,1237061,'E.R. Doctor',0,20),(11306,5921,'E.R. Doctor',2,21),(11306,1705350,'E.R. Doctor',0,22),(11306,1705351,'E.R. Doctor',2,23),(11306,611061,'E.R. Nurse',1,24),(11306,125582,'E.R. Nurse',1,25),(11306,13552,'E.R. Nurse',0,26),(11306,15415,'Mr. Randall',2,27),(11306,1225381,'Cop',0,28),(11306,33668,'Criminal',2,29),(11306,55316,'Myrick\'s Daughter',0,30),(11306,1705353,'Myrick\'s Granddaughter',0,31),(11306,195043,'Dr. Garlock',2,32),(11306,1705354,'Shelter Supervisor',0,33),(11306,1669780,'Medical Examiner',0,34),(11306,185154,'Janitor',0,35),(11306,116691,'Pam',1,36),(11306,87707,'Det. Manning',2,37),(11306,171056,'Cartman',0,38),(11306,21082,'Half-Mole',2,39),(11306,237532,'Tony',0,40),(11306,222487,'Skicap',2,41),(11306,1983,'Patches',2,42),(11306,538687,'Prof. Asakura',2,43),(11306,2676,'Home Nurse',1,44),(11306,234,'Party Guest',2,45),(11306,169287,'Neighbor',0,46),(11306,13195,'Uniformed Cop',0,47),(11306,1190319,'Guy\'s Lawyer',2,48),(11306,11898,'Prosecutor',0,49),(11306,86442,'Judge',2,50),(11306,224,'Hospital Lawyer',2,51),(11306,185102,'Triphase Nurse',1,52),(11306,64624,'Triphase Nurse',1,53),(11306,1705357,'Mole Lady',0,54),(12508,13240,'Chris \'Izzy\' Cole',2,0),(12508,4491,'Emily Poule',1,1),(12508,973,'Bobby Beers',2,2),(12508,17287,'Kirk Cuddy',2,3),(12508,72576,'A.C.',2,4),(12508,72577,'Ghode',2,5),(12508,72578,'Jorgen',2,6),(12508,18082,'Rob Malcolm',2,7),(12508,5151,'Mrs Cole',1,8),(12508,9191,'Mats, Steel Dragon Road Manager',2,9),(12508,1219226,'Joe Cole',0,11),(12508,9291,'Mr. Cole',2,12),(12508,5151,'Mrs. Cole',1,13),(12508,52776,'Tania Asher, Steel Dragon PR',1,14),(12508,62521,'Guitarist in Crowd Outside Mansion',1,15),(12508,1289722,'Bar Patron',1,16),(25793,109560,'Precious',1,0),(25793,60561,'Mary',1,1),(25793,52851,'Ms. Rain',1,2),(25793,66586,'Mrs. Weiss',1,3),(25793,77069,'Nurse John',2,4),(25793,109561,'Cornrows',1,5),(25793,109562,'Rita',0,6),(25793,109563,'Rhonda',1,7),(25793,109564,'Jermaine',1,8),(25793,109565,'Joann',1,9),(25793,109566,'Consuelo',0,10),(25793,109567,'Tootsie',0,11),(25793,109568,'Mrs. Lichtenstien',0,12),(25793,109569,'Social Worker',0,13),(25793,109570,'Tom Cruise (as Barret Isaiah Mindell)',0,14),(25793,65397,'Katherine',1,15),(25793,32029,'Mr. Wicher',2,16),(25793,109571,'Fairy Godmother',0,17),(25793,109572,'Abdul, New Born',0,18),(25793,109573,'Abdul, New Born',0,19),(25793,109574,'Abdul, 9 Months',0,20),(25793,109575,'AIDS Clerk',0,21),(10534,1229,'Captain Christopher \'Skipper\' Sheldon',2,0),(10534,6692,'Dr. Alice Sheldon',1,1),(10534,47879,'McCrea, Albatross Crewman',2,2),(10534,24965,'Charles \'Chuck\' Gieg',2,3),(10534,23958,'Frank Beaumont',2,4),(10534,11864,'Gil Martin',2,5),(10534,153862,'Robert Marsh',2,6),(10534,153862,'Robert March',2,7),(10534,83051,'Dean Preston',2,8),(10534,61983,'Shay Jennings',2,9),(10534,56930,'Francis Beaumont',2,10),(10534,17413,'Girard Pascal',2,11),(10534,6752,'Sanders',2,12),(10534,9296,'Tod Johnstone',2,13),(10534,58019,'Tracy Lapchick',2,14),(10871,6065,'Frank LaCrosse',2,0),(10871,2047,'Bob Goodall',2,1),(10871,8655,'Sheriff Buck Olmstead',2,2),(10871,67805,'Missy, the Babysitter',0,3),(10871,7134,'Man on Porch',2,4),(10871,7499,'Lane Dixon',2,5),(10871,1875778,'Andy LaCrosse',0,6),(10871,27740,'Bud',2,8),(10871,15854,'Deputy Nate Booker',2,9),(10871,1675163,'Sim',0,10),(10871,886,'Chief Jack McGinnis',2,11),(10871,6007,'Fae',0,12),(13503,19210,'Lincoln Rogers Dunnison',2,0),(13503,38581,'Caroline Dukes',1,1),(13503,18976,'George Durham',2,2),(13503,32597,'Leander McNelly',2,3),(13503,57108,'Randolph Douglas Scipio',0,4),(13503,4139,'Richard Dukes',2,5),(13503,55725,'Frank Bones',2,6),(13503,10839,'Perdita',1,7),(13503,74592,'Jean-Pierre Marsele',0,8),(13503,658,'John King Fisher',2,9),(13503,74593,'Abajo',0,10),(13503,74594,'Henrietta Dukes',0,11),(13503,418,'Sgt. John Armstrong',2,12),(13503,74595,'Mariachi Guard',2,13),(13503,74596,'General Cortinas',2,14),(13503,33337,'Rollins',2,15),(13600,36592,'Lina Mayfleet',1,0),(13600,45051,'Doon Harrow',2,1),(13600,5960,'Mrs. Murdo',1,2),(13600,1532,'Mayor Cole',2,3),(13600,2641,'Sul',2,4),(13600,13014,'Barton Snode',2,5),(13600,504,'Loris Harrow',2,6),(13600,27822,'Chief Builder',2,7),(13600,43138,'Builder',2,8),(13600,82142,'Mayor\'s Guard',0,9),(13600,82143,'Lizzie Bisco',1,10),(13600,82144,'Joss',0,11),(13600,82145,'Roner',0,12),(13600,82146,'Smat',0,13),(13600,82148,'Student #2',0,15),(13600,82149,'Student #3',0,16),(13600,82150,'Miss Thorn',0,17),(13600,17352,'Clary',1,18),(13600,1559187,'Student #1',0,19),(13600,1711,'Looper',2,20),(13600,7320,'Granny',1,21),(14324,76916,'Ghino',2,0),(14324,17244,'Lorenzo',2,2),(14324,11617,'Pampinea',1,3),(14324,47589,'Bernardo',2,4),(14324,76923,'Andreuccio',2,5),(14324,1312315,'Dioneo',2,6),(14324,3129,'Gerbino',2,7),(14324,45050,'Tindaro',2,8),(14324,141492,'Sister Lisabetta',1,9),(14324,1080518,'Sister Caterina',1,10),(14324,88082,'Sister Maddalena',0,11),(14324,1240781,'Sister Gabriella',1,12),(14325,10689,'Ernie Davis',2,0),(14325,6065,'Ben Schwartzwalder',2,1),(14325,31134,'Jim Brown',2,2),(14325,17764,'Willie \'Pops\' Davis',2,3),(14325,53923,'Marie Davis',1,4),(14325,334,'Jack Buckley',0,5),(14325,6574,'Roy Simmons',2,6),(14325,172069,'Floyd Little',2,7),(23168,880,'Doug MacRay',2,0),(23168,15556,'Claire Keesey',1,1),(23168,17604,'James Coughlin',2,2),(23168,65717,'Adam Frawley',2,3),(23168,59175,'Krista Coughlin',1,4),(23168,133068,'Desmond Elden',2,5),(23168,39389,'Dino Ciampa',2,6),(23168,4935,'Fergus \'Fergie\' Colm',2,7),(23168,2955,'Stephen MacRay',2,8),(23168,133070,'Agent Quinlan',1,9),(23168,64143,'Henry',2,10),(23168,55205,'Derrick',2,11),(23168,141448,'Internal Affairs Officer at Fenway',0,12),(23168,209799,'Cedar Junction C.O.',2,13),(23168,1291696,'Beacon G.I. Joe Driver',2,14),(23168,1355923,'Claire\'s Lawyer',0,15),(23168,1183867,'Neptune\'s Waitress',0,16),(23168,1480058,'FBI Agent (uncredited)',2,17),(23168,1558766,'FBI Agent (uncredited)',2,18),(23168,8536,'Assistant Bank Manager (uncredited)',2,19),(23168,1553308,'Runner (uncredited)',1,20),(23168,1656064,'Car Driver (uncredited)',2,21),(23168,1293730,'Inmate (uncredited)',0,22),(23168,1360008,'Inmate (uncredited)',2,23),(23168,1360002,'Decoy Cop (uncredited)',0,24),(23168,133067,'Albert \'Gloansy\' Magloan',2,25),(23168,133072,'Vericom Crew Chief',0,26),(23168,1588955,'Boston Police (uncredited)',2,27),(23168,928638,'Townie (uncredited)',0,28),(23168,133069,'Rusty',0,29),(23168,133071,'Henryu2019s Girl',0,30),(23168,1108851,'FBI SWAT #1',0,31),(23168,44821,'NA Speaker',0,32),(23168,1588581,'Marty McGuire (uncredited)',0,33),(23168,1500999,'Man at Casino Cash in Window Line (uncredited)',0,34),(23168,592888,'FBI Agent (uncredited)',2,35),(23168,1448129,'FBI Agent Gary Clark (uncredited)',0,36),(23168,1198454,'FBI SWAT (uncredited)',2,37),(23168,1508818,'FBI Special Task Force Agent (uncredited)',2,38),(23168,1371552,'Boston Police Officer (uncredited)',0,39),(23168,1574936,'Boston P.D. (uncredited)',0,40),(23168,1175452,'Pedestrian (uncredited)',1,41),(23168,1588590,'Pedestrian (uncredited)',0,42),(23168,1588592,'Pedestrian (uncredited)',0,43),(23168,1588593,'Pedestrian Harvard Professor / Graduate Student (uncredited)',0,44),(23168,1519595,'Sullys Kid (uncredited)',0,45),(23168,1191341,'Crime Scene Investigator (uncredited)',2,46),(23168,1473459,'CSI Officer (uncredited)',0,47),(10488,17140,'Nim Rusoe',1,0),(10488,1038,'Alexandra Rover',1,1),(10488,17276,'Jack Rusoe / Alex Rover',2,2),(10488,68321,'Captain',2,3),(10488,985532,'Purser',2,4),(10488,26056,'First Mate',2,5),(10488,59118,'Ensign',2,6),(10488,1077896,'Edmund',2,7),(10488,78567,'Edmund\'s Father',2,8),(10488,207938,'Edmund\'s Mother - Shirley',1,9),(10488,1077897,'Old Fisherman',0,10),(10488,939990,'Cruise Director',2,11),(10488,1014587,'Australian Tourist #1',0,12),(10488,1077898,'Australian Tourist #2',0,13),(10488,1077899,'Blue-Haired Woman',0,14),(10488,1077900,'Older Woman Tourist',0,15),(10488,109545,'Older Man Tourist',0,16),(10488,1077901,'Taxi Driver',0,17),(10488,33182,'Helicopter Pilot',2,18),(10488,1265157,'Evil Captor',2,19),(10488,98306,'Alice (uncredited)',0,20),(10488,1643129,'Buccaneer Pirate Chef (uncredited)',2,21),(10488,1643131,'Tourist (uncredited)',1,22),(23742,62,'Jimmy Monroe',2,0),(23742,56903,'Paul Hodges',2,1),(23742,116714,'Raul',0,2),(23742,57599,'Dave',2,3),(23742,49961,'Ava',1,4),(23742,11662,'Roy',2,5),(23742,7166,'Hunsaker',2,6),(23742,11702,'Barry Mangold',2,7),(23742,57409,'Gabriela',1,8),(23742,80591,'Debbie',1,9),(23742,118043,'Pam',1,10),(23742,1460926,'Juan',0,11),(23742,104196,'Captain Romans',2,12),(23742,8695,'Poh Boy',2,13),(23742,205586,'Julio',0,14),(23742,577478,'Russian Lawyer\'s Wife',1,15),(23742,61110,'Russian Lawyer',2,16),(23742,56910,'Laura',1,17),(23742,1056523,'Kevin',2,18),(23742,135855,'George',2,19),(23742,21130,'Eddie',2,20),(23742,1567422,'Hourly Housekeeper',0,21),(23742,112143,'Manuel',2,22),(11001,78029,'Miles Logan',2,0),(11001,36422,'Carlson',2,1),(11001,4169,'Tulley',2,2),(11001,11803,'Deacon',2,3),(11001,74615,'Mellisa Green',1,4),(11001,4520,'Detective Hardcastle',2,5),(11001,6110,'Rizzo',2,6),(11001,20625,'Glenfiddish',2,7),(11001,53573,'Jean LaFleur',2,8),(11001,56691,'Benny',2,9),(11001,59154,'Janiece',1,10),(11001,16861,'Eddie',2,11),(11001,1088201,'Cop in Gem Store Elevator',2,12),(11001,75323,'Little Friend',2,13),(11001,21544,'Uncle Lou',0,14),(11001,17413,'Detective Diaz',2,15),(11001,10137,'FBI Agent Gray',0,16),(11001,28413,'Captain Penelli',2,17),(11001,1216752,'Frank',0,18),(11001,6944,'Shawna',1,19),(11001,1672644,'Cop in Alley',0,20),(11001,1672645,'Uniform Outside Station',0,21),(11001,32287,'Prison Guard #37',2,22),(11001,188707,'K-9 Cop',0,23),(11001,1504123,'Guard #1',2,24),(11001,1645509,'Guard #2',0,25),(11001,1576419,'Clerk',0,26),(11001,93846,'Desk Sergeant',2,27),(11001,65831,'Twitchy Suspect',2,28),(11001,101266,'Cop in Elevator',0,29),(11001,1088201,'Cop in Gem Store Elevator (as Billy Williams)',2,30),(11001,1672657,'Cop in Precinct',0,31),(11001,19978,'Customs Guy',2,32),(11001,1202981,'FBI Tech',0,33),(11001,141400,'Helicopter Pilot',0,34),(11001,184436,'Female Officer',1,35),(11001,42000,'Museum Official',0,36),(11001,1672661,'Terrified Woman',0,37),(11001,1672662,'Briefing Room Detective',0,38),(11001,1525030,'Francois',0,39),(11001,97944,'Peterson, FBI',2,40),(11001,1672667,'Tipsy Cop',0,41),(11001,639148,'Office Porter',2,42),(11001,1672668,'Friendly Officer',0,43),(11001,1568541,'S.W.A.T. Team Member',0,44),(11001,1672671,'S.W.A.T. Team Member',0,45),(11001,1672679,'S.W.A.T. Team Member',0,46),(11001,1235963,'Thug',0,47),(11001,1672682,'Thug',0,48),(11001,1672683,'Repelled Passerby',0,49),(11001,1672684,'Chinese Delivery Man',0,50),(16911,80996,'Maxim Kammerer',0,0),(16911,80997,'Guy Gaal',2,1),(16911,80998,'Rada Gaal',1,2),(16911,80999,'Prosecutor',2,4),(16911,81000,'Zef',2,5),(16911,81002,'Rittmeister Chachu',0,7),(16911,81003,'Ordi Tader',1,8),(16911,81004,'Nolle Renadu',0,9),(16911,81005,'Papa',2,10),(16911,81007,'Prosecutor\'s secretary',2,11),(16911,113332,'Strider',0,12),(16911,29839,'Vepr',2,13),(16911,59899,'Funk',2,14),(16911,1376016,'Ketshev',2,16),(16911,1858286,'Devitsa v ochkakh',0,17),(23048,3036,'Adam',2,0),(23048,51988,'April',1,1),(23048,52997,'Lou',2,2),(23048,64342,'Nick',2,3),(23048,54729,'Jacob',2,4),(23048,54812,'The Repairman',2,5),(23048,60898,'Blaine',2,6),(23048,86624,'Kelly',1,7),(23048,116882,'Jennie',1,8),(23048,1064,'Phil',2,9),(23048,56124,'Rick',2,10),(23048,82096,'Tara',1,11),(23048,58393,'Zoe',1,12),(23048,70776,'Courtney',1,13),(23048,119219,'Lucy',1,14),(23048,347335,'Terry',2,15),(23048,64135,'Chaz',2,16),(23048,1763429,'Vince Nail\'s Video Girl',1,17),(31908,7447,'Bobby DeLaughter',2,0),(31908,4512,'Byron De La Beckwith',2,1),(31908,12519,'Dixie DeLaughter',1,2),(31908,2395,'Myrlie Evers',1,3),(31908,8977,'Ed Peters',2,4),(31908,3905,'Charlie Crisco',2,5),(31908,62547,'Peggy Lloyd',1,6),(31908,155,'Burt DeLaughter',2,7),(31908,1386078,'Drew DeLaughter',0,8),(31908,57674,'Claire DeLaughter',1,9),(10219,569,'Ishmael Chambers',2,0),(10219,16145,'Hatsue Imada Miyamoto',1,1),(10219,64710,'Young Ishmael Chambers',2,2),(10219,43662,'Young Hatsue Imada',1,3),(10219,10883,'Kazuo Miyamoto',2,4),(10219,2201,'Nels Gudmundsson',2,5),(10219,8986,'Alvin Hooks',2,6),(10219,2505,'Judge Fielding',2,7),(10219,28633,'Sheriff Art Moran',2,8),(10219,33432,'Susan Marie Heine',1,9),(10219,53574,'Carl Heine Jr.',2,10),(10219,1989,'Etta Heine',1,11),(10219,1473,'Carl Heine Sr.',2,12),(10219,1333696,'Hisao Imada',0,13),(10219,1113467,'Fujiko Imada',0,14),(10219,11398,'Zenhichi Miyamoto',2,15),(10219,6212,'Deputy Abel Martinson',2,16),(10219,106772,'Horace Whaley',2,17),(10219,9880,'Arthur Chambers',2,18),(10219,26466,'Helen Chambers',1,19),(10219,37422,'Ole Jurgensen',2,20),(10219,87208,'Liesel Jurgensen',1,21),(10219,6752,'Dr. Whitman',2,22),(11802,62861,'Ham III (voice)',2,0),(11802,57854,'Luna (voice)',1,1),(11802,8447,'Zartog (voice)',2,2),(11802,9657,'Titan (voice)',2,3),(11802,52775,'Kilowatt (voice)',1,4),(11802,77330,'Ringmaster (voice)',2,5),(11802,134245,'Comet / Nava Boy (voice)',2,6),(11802,59784,'Houston (voice)',2,7),(11802,167862,'Dr. Jagu (voice)',2,8),(11802,15031,'Dr. Bob (voice)',0,9),(11802,43775,'Dr. Poole (voice)',1,10),(11802,60739,'Dr. Smothers (voice)',1,11),(11802,2283,'Senator (voice)',2,12),(11802,19513,'Splork / Infinity Probe / Pappy Ham (voice)',2,13),(11802,1862748,'Ship Voice / Infinity Probe / Additional Voices (voice)',0,14),(11802,78798,'Newsreel (voice)',2,15),(11802,1178792,'Guard (voice)',0,16),(18785,51329,'Phil Wenneck',2,0),(18785,27105,'Stu Price',2,1),(18785,58225,'Alan Garner',2,2),(18785,21180,'Doug Billings',2,3),(18785,69122,'Jade',1,4),(18785,83585,'Tracy Garner',1,5),(18785,4175,'Sid Garner',2,6),(18785,83586,'Mr. Chow',2,7),(18785,46074,'Melissa',1,8),(18785,80757,'Himself',2,9),(18785,51944,'Black Doug',2,10),(18785,55275,'Leonard',2,11),(18785,71403,'Officer Franklin',2,12),(18785,7574,'Officer Garden',1,13),(18785,78320,'Eddie Palermo',2,14),(18785,59841,'Dr. Valsh',2,15),(18785,123813,'Chow\'s #1',2,16),(18785,1265844,'Chow\'s #2',0,17),(18785,153621,'Linda',1,18),(18785,61182,'Stephanie',1,19),(18785,142375,'Lisa',0,20),(18785,52654,'Hotel Guest at Valet',2,21),(18785,98397,'Hotel Valet',2,22),(18785,151121,'Wedding Singer',0,23),(18785,1265845,'Casino Dealer',0,24),(18785,142373,'Officer Foltz',0,25),(18785,57130,'Mr. Creepy',2,26),(18785,558036,'Neeco',2,27),(18785,162849,'Police Clerk',2,28),(18785,981814,'Felix',0,29),(18785,208524,'Eli',2,30),(18785,54721,'Budnick',0,31),(18785,1265846,'Old Timer at Gas Station',0,32),(18785,1265847,'Pit Boss',0,33),(18785,1265848,'Woman in Elevator',0,34),(18785,1265849,'Mini-Mart Cashier',0,35),(18785,58927,'Tailor',2,36),(18785,1265850,'Minister',0,37),(18785,1265851,'Bridesmaid',0,38),(18785,62818,'Bridesmaid',0,39),(18785,1265852,'Bridesmaid',1,40),(18785,1120016,'Stun Gun Boy',2,41),(18785,1265853,'Stun Gun Girl',0,42),(18785,1265854,'Screaming Girl',0,43),(18785,1265855,'Eddie\'s Assistant',0,44),(18785,175174,'Tyson\'s Bodyguard',0,45),(18785,66650,'Orderly (uncredited)',0,46),(18785,567226,'Ceasar\'s Palace Pimp (uncredited)',0,47),(18785,1265856,'Drunk Casino Patron (uncredited)',0,48),(18785,1265814,'Flower Girl #1 (uncredited)',0,49),(18785,1265857,'Guest at Casino (uncredited)',0,50),(18785,208952,'Student (uncredited)',0,51),(18785,1265858,'Convenience Store Patron (uncredited)',0,52),(18785,1265859,'Girl in Elevator (uncredited)',0,53),(18785,221942,'Casino Patron #6 (uncredited)',1,54),(18785,1265860,'Blackjack Player (uncredited)',2,55),(18785,240945,'Roman Soldier at Caesar\'s Palace (uncredited)',0,56),(18785,1017323,'High Roller (uncredited)',0,57),(18785,1265861,'Katie - Girl in the elevator (uncredited)',0,58),(18785,128971,'Parent Driving Jaguar (uncredited)',0,59),(18785,1214803,'Max - Student (uncredited)',0,60),(18785,1265864,'VIP Hotel Guest (uncredited)',0,61),(18785,1265865,'Bartender (uncredited)',0,62),(18785,1265866,'Bachelorette (uncredited)',0,63),(18785,970104,'Casino Guest (uncredited)',1,64),(18785,1265867,'Wedding Guest (uncredited)',0,65),(18785,1265868,'Blackjack Player (uncredited)',0,66),(18785,1265869,'Casino Guest (uncredited)',1,67),(18785,1265870,'Precision Driver (uncredited)',0,68),(18785,1265871,'Groom\'s Wedding Guest (uncredited)',0,69),(18785,1265872,'Tri Card Player (uncredited)',2,70),(18785,1265873,'Private School Student (uncredited)',0,71),(18785,984422,'Vegas High Roller (uncredited)',2,72),(18785,1265874,'High Roller Wife (uncredited)',1,73),(18785,1265875,'Cocktail Waitress (uncredited)',0,74),(18785,1265876,'Guy in the elevator (uncredited)',0,75),(18785,1172720,'Mom in Elevator (uncredited)',0,76),(18785,123476,'Guitarist in Wedding Band (uncredited)',2,77),(18785,1265877,'Dancing Grandma (uncredited)',0,78),(18785,139202,'Casino Guest (uncredited)',0,79),(18785,1063037,'Casino High Roller (uncredited)',2,80),(18785,96010,'Himself (uncredited)',0,81),(18785,1265878,'Bartender Hostess (uncredited)',0,82),(18785,1265879,'Wedding Waiter (uncredited)',0,83),(18785,1265880,'Extra (uncredited)',0,84),(18785,1219668,'Tiger (uncredited)',0,85),(18785,1574241,'Cocktail Waitress (uncredited)',0,86),(22881,18277,'Leigh Anne Tuohy',1,0),(22881,112560,'Michael Oher',2,1),(22881,8534,'Miss Sue',1,2),(22881,74428,'Sean Tuohy',2,3),(22881,66658,'S.J. Tuohy',2,4),(22881,112561,'Collins Tuohy',1,5),(22881,1472,'Coach Burt Cotton',2,6),(22881,21165,'Mrs. Boswell',1,7),(22881,53260,'Denise Oher',1,8),(22881,112562,'Mrs. Smith',1,9),(22881,142374,'Investigator Granger',1,10),(22881,21083,'Principal Sandstrom',2,11),(22881,94854,'Literature Teacher',2,12),(22881,226537,'Sarcastic Teacher',1,13),(22881,1127790,'Jay Collis',0,14),(22881,968305,'History Teacher',1,15),(22881,1040864,'Alton',2,16),(22881,59844,'\'Big Tony\' Hamilton',2,17),(22881,1039342,'Steven Hamilton',0,18),(22881,928307,'Sherry',1,19),(22881,1024312,'Paramedic',2,20),(10054,57674,'Carmen Cortez',1,0),(10054,57675,'Juni Cortez',2,1),(10054,3131,'Gregorio Cortez',2,2),(10054,17832,'Ingrid Cortez',1,3),(10054,10697,'Fegan Floop',2,4),(10054,10742,'Ms. Gradenko',1,5),(10054,11159,'Felix Gumm',2,6),(10054,11160,'Machete',2,7),(10054,418,'Mr. Lisp',2,8),(10054,4252,'Alexander Minion',2,9),(10054,564,'Cool Spy',2,10),(10054,17403,'Donnagon / Donnamight',2,11),(10054,3113,'Pastor',2,12),(10054,96007,'Agent Johnny',2,13),(10054,1189737,'FoOglie #1/Flower',0,14),(10054,1461,'Devlin',2,15),(11638,1897,'Percy Jones',2,0),(11638,18976,'Simon Green',2,1),(11638,8691,'Theresa Jones',1,2),(11638,44185,'Marilyn Jones',1,3),(11638,70775,'Howard Jones',2,4),(11638,70776,'Keisha Jones',1,5),(11638,22126,'Polly',1,6),(11459,11665,'Will Stronghold',2,0),(11459,6856,'Steve Stronghold / The Commander',2,1),(11459,11164,'Josie Stronghold / Jetstream',1,2),(11459,31838,'Layla Williams',1,3),(11459,56251,'Ron Wilson, Bus Driver',2,4),(11459,69507,'Ethan',0,5),(11459,69508,'Magenta',1,6),(11459,17628,'Gwen Grayson / Royal Pain',1,7),(11459,44935,'Principal Powers',1,8),(11459,11357,'Coach Boomer',2,9),(11459,54815,'Warren Peace',2,10),(11459,9599,'Nurse Spex',1,11),(11459,161932,'Mr. Grayson / Stitches',2,12),(11459,21290,'Mr. Boy',0,13),(11459,58955,'Mr. Medulla',2,14),(11459,78798,'Mr. Timmerman',2,15),(11459,1568595,'Penny',1,16),(11459,1234262,'Penny',0,17),(11459,135786,'Speed',2,18),(11459,9657,'Royal Pain (voice)',2,19),(10806,8945,'Howard Brackett',2,0),(10806,3234,'Emily Montgomery',1,1),(10806,15112,'Peter Malloy',2,2),(10806,2876,'Cameron Drake',2,3),(10806,8857,'Berniece Brackett',1,4),(10806,11065,'Frank Brackett',2,5),(10806,64930,'Tom Halliwell',2,6),(10806,24360,'Walter Brackett',2,7),(10806,92857,'Sonya',1,8),(10806,52647,'Jack',2,9),(10806,6212,'Mike',2,10),(10806,54470,'Vicky',1,11),(10806,44830,'Ava Blazer',1,12),(10806,35515,'Cousin Gretchen',1,13),(10806,17488,'Aunt Susan',1,14),(10806,69399,'Meredith',1,15),(10806,515,'Herself',1,16),(10806,11826,'Cousin Linda',1,17),(10806,2395,'Whoopi Goldberg (uncredited)',1,18),(13920,9777,'Radio',2,0),(13920,228,'Coach Jones',2,1),(13920,1981,'Principle Daniels',1,2),(13920,3978,'Maggie',1,3),(13920,26513,'Linda',1,4),(13920,15824,'Frank',2,5),(22949,2157,'Dan',2,0),(22949,8891,'Charlie',2,1),(22949,13922,'Ralph White',2,2),(22949,15033,'Adam Devlin',2,3),(22949,2876,'Yancy Devlin',2,4),(22949,11164,'Vicki',1,5),(22949,1897,'Jimmy Lunchbox',2,6),(22949,51298,'Trent Rice',2,7),(22949,12931,'Gloria Lawrence',1,8),(22949,79792,'Kelly',1,9),(22949,11827,'Julio',2,10),(22949,92509,'Amanda',1,11),(22949,1547772,'Emily',1,12),(22949,1224835,'Zach',0,13),(22949,13567,'Martha',1,14),(22949,12110,'Condo Woman',1,15),(22949,85500,'Yoshiro Nishamura',0,16),(22949,63674,'Rayburn & Reed Employee',1,17),(22949,40481,'Nick - Child Proofer #2 (uncredited)',2,18),(22949,1635408,'Hot Waitress',1,19),(22949,66630,'Hot Waitress 2',1,20),(22949,1635984,'Japanese Flight Attendant',1,21),(12437,2440,'Viktor',2,0),(12437,3968,'Lucian',2,1),(12437,25702,'Sonja',1,2),(12437,3969,'Kraven',2,3),(12437,978,'Andreas Tanis',2,4),(12437,3952,'Raze',2,5),(12437,9383,'Coloman',0,6),(12437,1047942,'Nobleman\'s Wife',0,7),(12437,1226685,'Fearful Lycan',0,8),(12437,1049596,'Young Lucian',2,9),(12437,5533,'Orsova',1,10),(12437,1292753,'Death Dealer',0,11),(12437,205427,'Nobleman',0,12),(12437,1332,'Sabas',2,14),(12437,173441,'Janosh',0,15),(12437,107546,'Luka',0,16),(12437,3967,'Selene',1,17),(12437,1097391,'Xristo',2,18),(12437,1880685,'Young Sonja',0,19),(11648,2882,'Sarah Nolan',1,0),(11648,3036,'Jake',2,1),(11648,20,'Carol',1,2),(11648,290,'Bill',2,3),(11648,20212,'Bob',2,4),(11648,8893,'Dolly',1,5),(11648,58114,'Christine',1,6),(11648,15376,'Leo',2,7),(11648,68769,'June',1,8),(11648,77870,'Michael',2,9),(11648,6437,'Charlie',2,10),(11648,39481,'Sherry',1,11),(11648,1219650,'Deli Guy',0,12),(11648,1215144,'Eric',2,13),(11648,1228866,'Marc',0,14),(11648,1219121,'Bertha',0,15),(11648,26998,'Mai',1,16),(11648,62762,'Rebecca',1,17),(11648,61409,'Marcia',1,18),(11648,149484,'Jeremy',2,19),(13051,13240,'Max Payne',2,0),(13051,18973,'Mona Sax',1,1),(13051,2222,'BB Hensley',2,2),(13051,8171,'Jim Bravura',2,3),(13051,5577,'Jason Colvin',2,4),(13051,10825,'Alex Balder',2,5),(13051,17341,'Jack Lupino',2,6),(13051,20879,'Nicole Horne',1,7),(13051,18182,'Natasha',1,8),(13051,63813,'Joe Salle',2,9),(13051,74122,'Owen Green',2,10),(13051,74123,'Lincoln DeNeuf',0,11),(13051,74124,'Trevor',2,12),(13051,74125,'Michelle Payne',1,13),(13051,74126,'Christa Balder',1,14),(13051,1047710,'Demon',2,15),(13051,1009511,'Detective Sergeant Amerini',2,16),(34806,16866,'Zoe',1,0),(34806,41297,'Stan',2,1),(34806,81164,'Olivia',1,2),(34806,29020,'Clive',2,3),(34806,18471,'Dad',2,4),(34806,66524,'Daphne',1,5),(34806,55536,'Carol',1,6),(34806,41217,'Arthur',2,7),(34806,207250,'Lori',1,8),(34806,113223,'Nana',1,9),(34806,113224,'Mona',1,10),(34806,112052,'Babyland Salesgirl',1,11),(34806,1179337,'Mona\'s Kid (6 yrs)',2,12),(34806,1656906,'Sara',1,13),(34806,1257205,'Mona\'s Kid (7 yrs)',1,14),(11469,78029,'Jamal Walker / Skywalker',2,0),(11469,36219,'Victoria the Chambermaid / Nicole',1,1),(11469,207,'Sir Knolte of Marlborough',2,2),(11469,9831,'Percival, Leo\'s Chief Henchman',2,3),(11469,15028,'Steve',2,4),(11469,121939,'Phillip, Leo\'s Chamberlain',2,5),(11469,27116,'King Leo',2,6),(11469,71824,'Derek',2,7),(11469,94627,'Mrs. Bostick, \'Medieval World\' Owner',1,8),(11469,1614360,'Dancer',2,9),(23479,6837,'Coach Morris Buttermaker',2,0),(23479,68890,'Amanda Whurlitzer',1,1),(23479,90163,'Councilman Whitewood',2,3),(23479,83810,'Coach Roy Turner',2,4),(23479,90164,'Ahmad Abdul Rahim',2,5),(23479,17183,'Kelly Leak',2,6),(23479,90165,'Endelberg',0,7),(23479,14108,'Cleveland',1,8),(23479,90166,'Jose Agilar',0,9),(23479,90168,'Regi Tower',2,10),(23479,90169,'Miguel Agilar',2,11),(23479,90170,'Ogilvie',2,12),(23479,90173,'Rudi Stein',2,13),(23479,90172,'Jimmy Feldman',2,14),(23479,90174,'Timmy Lupus',2,15),(23479,90175,'Toby Whitewood',2,16),(23479,1828552,'Tanner Boyle',0,17),(11667,15111,'Colonel William Guile',2,0),(11667,27888,'General M. Bison',2,1),(11667,21702,'Chun-Li Zang',1,2),(11667,58646,'Ken Masters',2,3),(11667,12207,'Cammy White',1,4),(11667,15853,'Victor Sagat',2,5),(11667,57748,'Ryu Hoshi',2,6),(11667,693,'Dr. Dhalsim',0,7),(11667,14333,'Balrog',2,8),(11667,29861,'Vega',2,9),(11667,4001,'A.N. Official',2,10),(11667,52366,'Zangief',2,11),(11667,74354,'Dee Jay',2,12),(11667,83769,'Carlos Blanka',2,13),(10066,25837,'Carly Jones',1,0),(10066,38406,'Paige Edwards',1,1),(10066,12792,'Bo / Vincent',2,2),(10066,49623,'Wade',2,3),(10066,62747,'Nick Jones',2,4),(10066,17866,'Dalton Chapman',2,5),(10066,52037,'Blake',2,6),(10066,62749,'Young Bo',0,7),(10066,62748,'Trudy Sinclair',0,8),(10066,62750,'Dr. Victor Sinclair',0,9),(10066,62751,'Young Vincent',0,10),(10066,62752,'Roadkill Driver',2,11),(10066,62754,'Jennifer',1,12),(10066,62753,'Sheriff',2,13),(10066,1094514,'Sexy Girl (uncredited)',1,14),(13515,2628,'Ben Carson',2,0),(13515,52851,'Amy Carson',1,1),(13515,20189,'Angela Carson',1,2),(13515,75041,'Michael Carson',2,3),(13515,75042,'Daisy Carson',1,4),(13515,973,'Larry Byrne',2,5),(13515,1035907,'Jimmy Esseker',2,6),(13515,59285,'Terrence Berry',2,7),(13515,740,'Robert Esseker',2,8),(11979,56778,'Lestat de Lioncourt',2,0),(11979,21352,'Akasha',1,1),(11979,22223,'Jessica u201aJesseu2018 Reeves',1,2),(11979,20239,'Marius de Romanus',0,3),(11979,47654,'David Talbot',2,4),(11979,5313,'Maharet',1,5),(11979,26054,'Pandora',1,6),(11979,27752,'Khayman',2,7),(11979,1451740,'Mael',2,8),(11979,26061,'Armand',2,9),(11979,75892,'Roger',2,10),(11979,199315,'Maudy',0,11),(11622,18269,'Adam Webber',2,0),(11622,5588,'Eve Rustikoff',0,1),(11622,4690,'Calvin Webber',2,2),(11622,5606,'Helen Thomas Webber',1,3),(11622,51797,'Cliff',2,4),(11622,21290,'Troy',0,5),(11622,9998,'Soda Jerk',2,6),(11622,1028072,'Heather',1,7),(11622,1226231,'Miss Sweet',0,8),(11622,172734,'Jerry',2,9),(11622,1178622,'Betty',1,10),(11622,166617,'Hotel Desk Clerk',2,11),(11622,1349629,'Bob',2,12),(11622,15899,'Dr. Aron',1,13),(10410,514,'James R. \'Jimmy\' Hoffa',2,0),(10410,518,'Bobby Ciaro',2,1),(10410,23346,'Carol D\'Allesandro',2,2),(10410,22131,'Frank Fitzsimmons',0,3),(10410,4764,'Pete Connelly',2,4),(10410,65017,'Jo Hoffa',1,5),(10410,1213105,'Reporter',0,6),(10410,10360,'Billy Flynn',2,7),(10410,51805,'Robert F. Kennedy',2,8),(10410,11805,'Young Trucker in Diner',2,9),(10410,1226707,'Senate Policeman',2,10),(10410,15213,'Red Bennett',2,11),(10410,13028,'Hoffa\'s Attorney',2,12),(10410,925,'Ted Harmon',2,13),(10410,16215,'Young Woman at RTA',1,14),(10410,19183,'Solly Stein',2,15),(10410,1758634,'Soignee Woman',1,16),(10410,1228768,'Loading Foreman',0,18),(10410,1737720,'Kreger Worker',0,19),(10410,1758636,'Dock Worker',0,20),(10410,31118,'Police Captain',0,21),(10410,1758638,'Cop',0,22),(10410,1758639,'Father Doyle',0,23),(10410,1758640,'Nurse Nun in White',1,24),(10410,1758641,'Driver with Pistol',0,25),(10410,1758642,'Organizer',0,26),(10410,1758644,'Assailant #1',0,27),(10410,1758645,'Scialla',0,28),(10410,154713,'Teamster President',2,29),(10410,1178315,'Driver with Flat',0,30),(10410,27714,'Counterman at Laundry',1,31),(10410,93501,'Counterman at Roadhouse',0,32),(10410,168320,'RTA Representative',2,33),(10410,1758646,'Reporter #1',0,34),(10410,157136,'Reporter #2',2,35),(10410,19468,'Business Negotiator',2,36),(10410,1408764,'Hoffa\'s Secretary',1,37),(10410,1507586,'Bladesdale',0,38),(10410,1226706,'Working Man',0,39),(10410,1758647,'\'Joey\' Boy at RTA',0,40),(10410,1758648,'D\'Allesandro\'s Man',0,41),(10410,1758649,'Hoffa\'s Daughter',1,42),(10410,1758650,'Teamster Widow',1,43),(10410,1758651,'Woman in Cabin',1,44),(10410,1758652,'Airplane Pilot',0,45),(10410,1758653,'Airplane Pilot',0,46),(10410,104047,'Senate Reporter',2,47),(10410,1758654,'Castratore',0,48),(10410,1758656,'Young Reporter',0,49),(10410,1758658,'Newspaper Secretary',1,50),(10410,1090362,'State Trooper',0,51),(10410,1758660,'Copa Thug',0,52),(10410,1758661,'Woman in Penthouse',1,53),(10410,31028,'Government Attorney',2,54),(10410,1226361,'Ciaro\'s Secretary',1,55),(10410,152864,'Eliot Cookson',0,56),(10410,42139,'Dancer with Cigarette',1,57),(10410,197073,'Maitre\'d',2,58),(10410,1758673,'Party Crasher',0,59),(10410,1758674,'Bouncer',0,60),(10410,9659,'Man in Crowd',2,61),(10410,1758676,'Bailiff',0,62),(10410,1758677,'Bartender',0,63),(10410,987357,'Prosecutor',2,64),(10410,1452207,'Bartender',0,65),(10410,3909,'Government Agent in Bar',2,66),(10410,1758678,'Barbara Hoffa',1,67),(10410,1758679,'Granddaughter',1,68),(10410,1758680,'Granddaughter',1,69),(10410,1758681,'Hoffa\'s Driver',0,70),(10410,1758682,'Newsman',0,71),(10410,1758683,'Young Driver',0,72),(10410,1758684,'Prison Guard',0,73),(10410,1758685,'Convict #1',0,74),(10410,1280998,'Convict #2',0,75),(10410,1748146,'Official at Hall',0,76),(10410,1758686,'Airplane Pilot',0,77),(10410,48535,'Newsman',0,78),(10410,1291639,'D\'Ally\'s Financial Advisor',0,79),(10410,1758688,'Reporter',1,80),(10410,1758689,'Young Reporter',0,81),(10410,1758690,'Committee Chairman',0,82),(10410,1758691,'Social Club Waiter',0,83),(10410,1758692,'Teamster',0,84),(10410,1375144,'Secretary',1,85),(10410,1391060,'Waiter',0,86),(10410,510,'Corpse',2,87),(10410,1758693,'Detroit News Reporter',0,88),(10410,1758694,'Teamster',0,89),(10410,1266790,'Detroit Cop',0,90),(10410,1758695,'Reporter',1,91),(10410,150665,'Streike Breaker',0,92),(10410,150665,'Strike Breaker',0,93),(10410,1098036,'Dock Worker',2,94),(10410,9257,'Nightclub Comic',2,95),(10410,106145,'Bakery Worker',0,96),(10410,1737782,'Teamster',0,97),(10410,1673034,'Reporter',2,98),(10410,1758696,'News Reporter',0,99),(10410,1758697,'Dock Worker',0,100),(10410,1758698,'Trucker',0,101),(10410,1758699,'Union Worker',0,102),(10410,157020,'Vegas Showgirl',1,103),(10410,1758700,'Teamster',0,104),(10410,1327986,'Teamster',0,105),(10410,133292,'Las Vegas Dancer',1,106),(14442,1813,'Ella of Frell',1,0),(14442,12791,'Prince Char Charmont',2,1),(14442,2130,'King Edgar',2,2),(14442,2535,'Lucinda',1,3),(14442,34901,'Dame Olga',1,4),(14442,16756,'Benny',2,5),(14442,4581,'Heston (voice)',2,6),(14442,47653,'Slannen',2,7),(14442,10584,'Brumhilda',1,8),(14442,20070,'Nish',2,9),(14442,64411,'Olive',1,10),(14442,231610,'Areida',1,11),(14442,66446,'Hattie',1,12),(14442,6613,'Mandy',1,13),(14442,29459,'Sir Peter',2,14),(14442,10713,'Narrator',2,15),(14442,550833,'Ella\'s Mother',0,16),(14175,3061,'Valiant (voice)',2,0),(14175,17835,'Bugsy (voice)',2,1),(14175,13472,'Von Talon (voice)',2,2),(14175,388,'Sergeant (voice)',2,3),(14175,41419,'Gutsy (voice)',2,4),(14175,8930,'Mercury (voice)',0,5),(14175,5049,'Felix (voice)',2,6),(14175,36666,'Lofty (voice)',2,7),(14175,14469,'Cufflingk (voice)',2,8),(14175,11616,'Victoria (voice)',1,9),(14175,44731,'Big Thug (voice)',2,10),(14175,176178,'Toughwood (voice)',2,11),(14175,240778,'Tailfeather (voice)',2,12),(14175,240779,'Underlingk (voice)',0,13),(14175,21676,'Charles De Girl',1,14),(11004,3392,'Prof. Grady Tripp',2,0),(11004,2219,'James Leer',2,1),(11004,3910,'Dean Sara Gaskell',1,2),(11004,3897,'Hannah Green',1,3),(11004,9626,'Quentin \'Q\' Morewood',2,4),(11004,3223,'Terry Crabtree',2,5),(11004,209,'Oola',1,6),(11004,1188782,'Miss Antonia \'Tony\' Sloviak',0,7),(11004,19576,'Walter Gaskell',2,8),(11004,21088,'Sam Traxler',2,9),(11004,6541,'Emily\'s Father',2,10),(11004,728,'Amanda Leer',1,11),(11004,72056,'Fred Leer',2,12),(11004,104046,'Wordfest Party Guest',2,13),(11004,78597,'Student',2,15),(11918,3272,'Dragonfly',2,0),(11918,60072,'Jill Johnson',1,1),(11918,7633,'Uncle Albert Adams',2,2),(11918,4443,'Lou Landers',2,3),(11918,4175,'Dr. Whitby',2,4),(11918,6736,'Invisible Girl',1,5),(11918,55638,'Trey',2,6),(11918,75355,'Aunt Lucille',1,7),(11918,78433,'Lance Landers',2,8),(11918,65827,'The Chief of Police',2,9),(11918,19976,'Dr. Hawking',2,10),(11918,14416,'Blaine Riker',2,11),(11918,16845,'Julia Riker',1,12),(11918,999301,'Young Rick',0,13),(11918,56903,'Professor Xavier',2,14),(11918,1213786,'Dr. Strom',2,15),(10012,62010,'Zela',1,0),(10012,6886,'Ellie',1,1),(10012,44735,'Jimmy',2,2),(10012,16501,'Bo',2,3),(10012,20750,'Joanie',1,4),(10012,17643,'Jenny',1,5),(10012,21596,'Becky',1,6),(10012,43443,'Brooke',1,7),(10012,170293,'Jose',2,8),(10012,1052086,'Earl',0,9),(10012,188311,'Louie',2,10),(10012,11866,'Jake',2,11),(10012,51300,'Werewolf',2,12),(10012,17039,'Officer',2,13),(10012,61085,'Newscaster',2,14),(10012,1156412,'Zipper',0,15),(11823,205,'Lizzie Bradbury',1,0),(11823,6162,'Peter Colt',2,1),(11823,4783,'Dennis Bradbury',2,2),(11823,5530,'Carl Colt',2,3),(11823,1369,'Edward Colt',2,4),(11823,6069,'Jake Hammond',2,5),(11823,15277,'Ron Roth',2,6),(11823,12795,'Dieter Prohl',2,7),(11823,9139,'Lydice Kenwood',1,8),(11823,215157,'Himself',0,9),(18886,2047,'Cmdr. Frank \'Dooke\' Camparelli',2,0),(18886,5293,'Lt. Cmdr. Virgil \'Tiger\' Cole',2,1),(18886,36067,'Lt. Jake \'Cool Hand\' Grafton',2,2),(18886,2165,'Callie Joy',1,3),(18886,3197,'Boxman',2,4),(13496,72466,'Jesse James',2,0),(13496,1894,'Cole Younger',2,1),(13496,17303,'Zerelda \'Zee\' Mimms',1,2),(13496,16856,'Frank James',2,3),(13496,20814,'Jim Younger',2,4),(13496,8534,'Ma James',1,5),(13496,10669,'Allan Pinkerton',2,6),(13496,1166,'Thaddeus Rains, President Rock Northern Rail Road',2,7),(13496,78500,'Bob Younger',2,8),(13496,780,'Doc Mimms, Zee\'s Dad',2,9),(13496,12646,'Rollin H. Parker - Rains\' Gopher',2,10),(13496,60722,'Comanche Tom',2,11),(13496,184834,'Clell Miller',0,12),(13496,177905,'Loni Packwood',2,13),(13496,11088,'Captain Malcolm',2,14),(18320,5081,'Queen Victoria',1,0),(18320,388,'King William',2,1),(18320,2983,'Sir John Conroy',2,2),(18320,6162,'Lord Melbourne',2,3),(18320,8436,'Duchess of Kent',1,4),(18320,36669,'Prince Albert',2,5),(18320,49018,'Baroness Lehzen',1,6),(18320,3491,'',2,7),(18320,91520,'',2,8),(18320,18067,'',1,9),(18320,740,'',2,10),(18320,17483,'',2,11),(18320,2244,'',2,12),(18320,17477,'',1,13),(18320,139654,'',1,14),(18320,147884,'',1,15),(18320,86479,'',2,16),(18320,43554,'',2,17),(18320,102375,'',2,18),(18320,40660,'',2,19),(18320,75066,'',2,20),(22787,3967,'Carrie Stetko',1,0),(22787,16856,'Robert Pryce',2,1),(22787,4139,'Dr. John Fury',2,2),(22787,31132,'Delfy',2,3),(22787,25878,'Sam Murphy',2,4),(22787,41297,'Russell Haden',2,5),(22787,262720,'Jack',2,7),(22787,979279,'Rubin',0,8),(22787,115596,'McGuire',0,9),(22787,1298379,'Rhonda',0,10),(22787,105688,'Russian Pilot',0,11),(22787,179828,'Russian Co-pilot',0,12),(22787,1221121,'Russian Guard',0,13),(22787,1286873,'Russian Guard',0,14),(22787,95641,'Russian Guard',2,15),(22787,8355,'Mooney',0,16),(22787,230595,'Lab Tech',2,17),(13056,56614,'Frank Castle / The Punisher',2,0),(13056,17287,'Billy Russoti / Jigsaw',2,1),(13056,35551,'Angela Donatelli',1,2),(13056,5414,'Paul Budiansky',2,3),(13056,6806,'Loony Bin Jim',2,4),(13056,6066,'Martin Soap',2,5),(13056,4201,'Micro',2,6),(13056,1366972,'Grace Donatelli',0,7),(13056,7013,'Pittsy',2,8),(13056,96591,'Nicky',2,9),(13056,4134,'Ink',2,10),(13056,60907,'Agent Miller',2,11),(13056,44248,'Captain Ross',2,12),(13056,119479,'Saffiotti',2,13),(13056,980805,'Maginty',2,14),(13056,1187553,'Carlos',2,15),(13056,37205,'Cristu Bulat',2,16),(14113,12898,'Jack Sheppard',2,0),(14113,14405,'Marsha Holloway',1,1),(14113,54812,'Dr. Grant',2,2),(14113,35654,'Tucker Willams / Mega-Boy',2,3),(14113,7431,'Connor Shepard / Concussion',2,4),(14113,51072,'Summer Jones / Wonder',1,5),(14113,56556,'Dylan West / Houdini',2,6),(14113,57189,'Cindy Collins / Princess',1,7),(14113,9626,'Larraby',2,8),(14113,94100,'Cindy\'s Mom',0,9),(14113,1317566,'Halloween Bully',2,10),(14113,1617628,'Prince',0,11),(14113,1065,'Dylan\'s Teacher',2,12),(14113,77332,'Mean Bully',2,13),(14113,1228716,'Meaner Bully',0,14),(20763,109,'Mike',2,0),(20763,11478,'Mary',0,1),(20763,2059,'The King',2,2),(20763,11512,'Daugherty',2,3),(20763,4787,'Bobby',2,4),(20763,8258,'Geronimo Bill',2,5),(20763,31,'Older Mike/Narrator (uncredited)',2,6),(20763,21403,'Ferdie',2,7),(20763,76239,'Chad (as Garette Ratliff)',2,8),(20763,1108984,'Fisher',0,9),(20763,939799,'Little Raymond',2,10),(20763,53765,'Carlos Hernandez',2,11),(20763,66538,'First Boy',2,12),(20763,1108999,'Second Boy',0,13),(20763,196185,'School Boy',0,14),(20763,174892,'Fisher\'s Friend',0,15),(20763,157954,'Fisher\'s Friend',0,16),(20763,1109020,'Fisher\'s Friend',0,18),(20763,20220,'Fisher\'s Friend',2,19),(26843,5401,'Omar Mukhtar',2,0),(26843,522,'Benito Mussolini',2,1),(26843,936,'Gen. Rodolfo Graziani',2,2),(26843,18847,'Mabrouka',1,3),(26843,3268,'Colonel Diodiece',2,4),(26843,11857,'Sharif El Gariani',2,5),(26843,53815,'Salem',2,6),(26843,3281,'Major Tomelli',2,7),(26843,544575,'Lt. Sandrini',0,8),(26843,6787,'Colonel Sarsani',2,9),(26843,5012,'Prince Amadeo',2,10),(26843,65896,'Bu-Matari',2,11),(26843,1007636,'Ismail',0,12),(26843,10513,'Al Fadeel',2,13),(26843,1300632,'Ali\'s mother',0,14),(11876,1137,'Pauline de Thu00e9us',1,0),(11876,15533,'Angelo Pardi',2,1),(11876,24816,'Monsieur Peyrolle',2,2),(11876,33161,'Le mu00e9decin',0,3),(11876,16927,'Le commissaire de police de Manosque',2,4),(11876,24381,'Le colporteur',2,5),(11876,4166,'La pru00e9ceptrice',1,6),(11876,23961,'Maggionari',2,7),(11876,1316257,'Mme Peyrolle',0,8),(11876,1316258,'Adrien Peyrolle',0,9),(11876,96974,'Giuseppe',2,10),(11876,1316259,'Carla',0,11),(11876,652,'Laurent de Thu00e9us',0,12),(11876,2415,'Mme Rigoard',0,13),(11876,2197,'Mau00eetre Rigoard',2,14),(11876,1316260,'Une villageoise',0,15),(11876,49487,'Un voyageur',2,16),(11876,23985,'Le vieux moissonneur',0,17),(11876,146720,'Brigadier Maugin',0,18),(11876,1316261,'',0,19),(11876,1316263,'Edmond enfant',0,20),(11876,26371,'Le vieux monsieur',2,21),(11876,18557,'La femme du fermier',0,22),(11876,23505,'Monsieur Barthelemy',2,23),(11876,44234,'Alexandre Petit',2,24),(11876,1316264,'Un fugitif',0,25),(11876,4817,'',2,26),(11876,38354,'La grand-mu00e8re',0,27),(11876,1316265,'Une religieuse',0,28),(22267,2219,'Jake Roedel',2,0),(22267,22108,'Jack Bull Chiles',2,1),(22267,2954,'Daniel Holt',2,2),(22267,51860,'Sue Lee Shelley',1,3),(22267,1244,'Pitt Mackeson',2,4),(22267,8767,'Black John',2,5),(22267,1284159,'George Clyde',2,6),(22267,103,'Alf Bowden',2,7),(22267,207,'Orton Brown',2,8),(22267,1226707,'Otto Roedel',2,9),(22267,33299,'George',0,10),(10436,11856,'Newland Archer',2,0),(10436,1160,'Ellen Olenska',1,1),(10436,1920,'May Welland',1,2),(10436,65284,'Louisa van der Luyden',1,3),(10436,400,'Mrs. Welland',1,4),(10436,378,'Riviu00e8re',2,5),(10436,1190701,'Female Opera Singer',0,6),(10436,1190702,'Male Opera Singer',0,7),(10436,1190703,'Male Opera Singer',0,8),(10436,1190704,'Male Opera Singer',0,9),(10436,20766,'Larry Lefferts',2,10),(10436,8224,'Sillerton Jackson',2,11),(10436,54782,'Regina Beaufort',1,12),(10436,14344,'Julius Beaufort',2,13),(10436,28028,'Beaufort Guest',0,14),(10436,1190705,'Party Guest',0,15),(10436,1190706,'Party Guest',0,16),(10436,6199,'Mrs. Mingott',1,17),(10436,12522,'Mrs. Archer',1,18),(10436,1033159,'Janey Archer',0,19),(10436,3796,'Henry van der Luyden',2,20),(10436,109410,'Narrator (voice)',1,21),(10436,2692,'Ted Archer',2,22),(10436,35515,'Mingott Maid',1,23),(12429,78346,'Ponyo (voice)',0,0),(12429,78347,'Sosuke (voice)',0,1),(12429,78348,'Fujimoto (voice)',0,2),(12429,78349,'Lisa (voice)',0,3),(12429,78350,'Grandmammare (voice)',1,4),(12429,78351,'Koichi (voice)',0,5),(12429,78352,'Ponyo\'s Sisters (voice)',0,6),(12429,78353,'Anchorman (voice)',0,7),(12429,78354,'Kayo (voice)',0,8),(12429,78355,'Kumiko (voice)',0,9),(12429,19587,'Young Mother (voice)',0,10),(12429,78356,'Yoshie (voice)',0,11),(12429,78357,'Karen (voice)',0,12),(12429,36074,'Toki (voice)',0,13),(12429,112,'Granmamare (voice: English)',1,14),(12429,1084317,'Ponyo (voice: English)',1,15),(12429,1892,'Ku00f4ichi (voice: English)',2,16),(12429,56323,'Lisa (voice: English)',1,17),(12429,1244093,'Su00f4suke (voice: English)',0,18),(12429,9599,'Kayo (voice: English)',1,19),(12429,3896,'Fujimoto (voice: English)',2,20),(12429,1075686,'Kumiko (voice: English)',0,21),(12429,10437,'Toki (voice: English)',1,22),(12429,71727,'Yoshie (voice: English)',1,23),(21311,326,'Kuki Gallmann',1,0),(21311,20239,'Paolo Gallmann',0,1),(21311,19977,'7-Year-Old Emanuele',2,2),(21311,8784,'Declan Fielding',2,3),(21311,2639,'Franca',1,4),(21311,129101,'Simon',2,5),(21311,1386160,'Vincenzo',2,6),(21311,47969,'Duncan Maitland',2,7),(18254,6449,'John Reed',2,0),(18254,3092,'Louise Bryant',1,1),(18254,52995,'Max Eastman',2,2),(18254,514,'Eugene O\'Neill',2,3),(18254,64822,'Grigory Zinoviev',0,4),(18254,7004,'Louis Fraina',2,5),(18254,21151,'Emma Goldman',1,6),(18254,13731,'Paul Trullinger',2,7),(18254,588,'Speaker - Liberal Club',2,8),(18254,2782,'Mr. Partlow',2,9),(18254,29258,'Mrs. Partlow',0,10),(18254,81557,'Carl Walters',2,11),(18254,201335,'Helen Walters',0,12),(18254,81562,'Mrs. Reed',0,13),(18254,106772,'Floyd Dell',2,14),(18254,95741,'Horace Whigham',2,15),(18254,55908,'Maurice Becker',2,16),(18254,1182258,'Ida Rauh',0,17),(18254,164426,'Crystal Eastman',0,18),(18254,90529,'Marjorie Jones',1,19),(18254,1182259,'Jane Heap',0,20),(18254,116123,'Barney',2,21),(18254,3015,'Big Bill Haywood',2,22),(18254,33060,'Police Chief',2,23),(18254,182576,'Pinkerton Guard',2,24),(18254,193,'Pete Van Wherry',2,25),(18254,31506,'Dr. Lorber',2,26),(18254,10775,'Julius Gerber',0,27),(18254,987050,'Joe Volski',2,28),(18254,6199,'Woman writing in Notebook',1,29),(18254,74043,'Allan Benson',2,30),(18254,89141,'Harry',2,31),(18254,206299,'Henry Miller',0,33),(18254,10657,'MacAlpine',2,34),(18254,79954,'Alex Gomberg',0,35),(18254,1107,'Agent',2,36),(10877,23880,'Orin Boyd',2,0),(10877,21355,'Latrell Walker',2,1),(10877,21353,'George Clark',2,2),(10877,18471,'T.K. Johnson',2,3),(10877,1103,'Chief Hinges',2,4),(10877,64856,'Lewis Strutt',2,5),(10877,50877,'Annette Mulcahy',1,6),(10877,74036,'Henry Wayne',2,7),(10877,14888,'Frank Daniels',2,8),(10877,37205,'Matt Montini',2,9),(10877,8170,'Trish',1,10),(10877,59198,'Useldinger',2,11),(10877,1642247,'Parker',0,12),(10877,63546,'Fitz',2,13),(10877,1056119,'Shaun Rollins',0,14),(10877,52956,'Linda, Anger Management Therapist',1,15),(10877,10210,'Rory',2,16),(10877,63813,'Norris',2,17),(10877,21265,'Carlson',2,18),(10877,1891649,'Gregory',0,19),(10877,51938,'O\'Malley',0,20),(10877,96401,'Mrs. Clark',0,21),(10877,184388,'Housewife',1,22),(10877,1891652,'Jail Guard',0,23),(10877,7223,'Vice President',2,24),(10877,172915,'Terrorist Leader',2,25),(10877,33343,'Mulcahy\'s Date',2,26),(10685,13548,'FBI Special Agent Joel Campbell',2,0),(10685,6384,'David Allen Griffin',2,1),(10685,3141,'Dr. Polly Beilman',1,2),(10685,8874,'FBI Special Agent in Charge Mike Ibby',2,3),(10685,8191,'Hollis',2,4),(10685,156431,'Mitch',2,5),(10685,554629,'Lisa',1,6),(10685,42209,'Diana',1,7),(10685,554630,'Sharon',1,8),(10685,154666,'Ellie',0,9),(10685,82631,'Skater',2,10),(10685,554631,'Jessica',0,11),(10685,554632,'Rachel',0,12),(10685,59581,'Jack Fray',2,13),(10685,74487,'Norton',2,14),(12596,3036,'Nick Falzone',2,0),(12596,879,'Russell Bell',2,1),(12596,112,'Connie Falzone',1,2),(12596,11701,'Mary Bell',1,3),(12596,76102,'Enzo Sorrento',2,4),(13460,25702,'Major Eden Sinclair',1,0),(13460,382,'Bill Nelson',2,1),(13460,56890,'Dr. Marcus Kane',2,2),(13460,2957,'Prime Minister John Hatcher',2,3),(13460,2482,'Michael Canaris',2,4),(13460,94956,'Sol Kane',2,5),(13460,1352080,'Viper',1,6),(13460,76215,'Sergeant Norton',2,7),(13460,57578,'Cally Kane',1,8),(13460,28848,'Dr. Talbot',2,9),(13460,107378,'Dr. Stirling',2,10),(13460,944315,'Carpenter',2,11),(13460,172917,'Miller',2,12),(13460,231199,'Drop Dead Girl / Podium Marauder #1',0,13),(13460,1294849,'Vagrant Girl',1,14),(13460,1294850,'Nurse',1,15),(13460,70815,'Katherine Sinclair',1,16),(13460,1294852,'David / Gimp',2,17),(13460,1037760,'Hot Dog Victim',0,18),(13460,209193,'Pilot',2,19),(13460,82193,'Wall Guard',2,20),(13460,1008550,'Soldier #1 / Johnson',2,21),(13460,1288410,'Soldier',2,22),(13460,1231420,'DDS Guard',2,23),(13460,20304,'Richter',2,24),(13460,1329372,'John Michaelson',2,25),(13460,53998,'Read',1,26),(13460,97599,'Jane Harris',1,27),(13460,83137,'Chandler',2,28),(13460,107380,'Chancellor Falco',2,29),(13460,1047343,'Afro Girl',1,30),(13460,1585710,'Bathtub Blonde',1,31),(13460,950125,'Captain Hendrix',2,32),(13460,100097,'George Dutton',2,33),(13460,1302090,'Telamon',2,34),(13460,16628,'Joshua',2,35),(13460,141468,'Pin Stripe',2,36),(13460,1021884,'Command Centre Official',1,37),(13460,1585718,'Starved Girl',1,38),(13460,1585929,'Carpenter\'s Bat Attacker',1,39),(13460,564775,'Cellar Jailer',2,40),(13460,1585930,'Cellar Guard',2,41),(13460,230822,'DJ',2,42),(13460,77750,'Podium Marauder #2',2,43),(13460,1294851,'Eden Sinclair (young)',0,44),(13460,1294853,'Sergeant #1',0,45),(13460,1294854,'Patient \'X\'',0,46),(13460,154043,'DDS Assault Trooper',0,47),(13460,59294,'Pit Audience Member',0,48),(13460,1585951,'Pin Stripe\'s Security #1',0,49),(13460,1585952,'Pin Stripe\'s Security #2',0,50),(13460,1585953,'Command Centre Guard',0,51),(13460,1412670,'Wild Girl (uncredited)',1,52),(13460,583278,'DDS Guard #2 (uncredited)',2,53),(13460,1585954,'Marauder (uncredited)',1,54),(13460,127005,'London Refuge (uncredited)',2,55),(10719,23659,'Buddy',2,0),(10719,3085,'Walter',2,1),(10719,11664,'Jovie',1,2),(10719,2453,'Emily',1,3),(10719,27974,'Michael',0,4),(10719,68812,'Santa',2,5),(10719,64930,'Papa Elf',2,6),(10719,22297,'Eugene',2,7),(10719,62066,'Gimbel\'s Manager',2,8),(10719,22970,'Miles Finch',2,9),(10719,12110,'Deb',1,10),(10719,4250,'Fulton',2,11),(10719,28637,'Morris',2,12),(10719,20788,'Gimbel\'s Santa',2,13),(10719,12708,'Maymay',2,14),(10719,66758,'Polar Bear Cub (voice)',2,15),(10719,15277,'Dr. Leonardo',2,16),(10719,32751,'Mailroom worker',2,17),(10719,1051916,'Leon the Snowman (voice)',0,18),(10719,77096,'NY 1 Reporter',0,19),(10719,80353,'NY 1 Anchor',2,20),(10719,59841,'Witness',2,21),(10719,12708,'Ming Ming',2,22),(10719,94601,'Guard',0,23),(11888,26485,'Demon (voice)',2,0),(11888,9777,'Ted Brooks',2,1),(11888,5563,'James \'Thunder Jack\' Johnson',2,2),(11888,588,'George',2,3),(11888,62520,'Dr. Rupert Brooks',0,4),(11888,1753,'Amelia Brooks',1,5),(11888,6804,'Peter Yellowbear',2,6),(11888,1535,'Ernie',2,7),(11888,1449399,'Lucy',1,8),(10307,4687,'Frankie Paige',1,0),(10307,5168,'Father Andrew Kiernan',2,1),(10307,378,'Cardinal Daniel Houseman',2,2),(10307,9781,'Donna Chadway',1,3),(10307,9284,'Father Durning',2,4),(10307,1118,'Marion Petrocelli',2,5),(10307,15029,'Father Dario',2,6),(10307,131879,'Father Gianni Delmonico',2,7),(10307,62010,'Jennifer Kelliho',1,8),(10307,41687,'Steven',2,9),(10307,59260,'Dr. Reston',1,10),(10307,17857,'Doctor',2,11),(10307,112300,'ER Nurse',2,12),(10307,156517,'Attending Nurse',1,13),(10307,177131,'Dr. Eckworth',2,14),(11978,380,'Master Chief Leslie W. Sunday (\'Billy\')',2,0),(11978,9777,'Senior Chief Carl Brashear',2,1),(11978,6885,'Gwen Sunday',1,2),(11978,53923,'Jo',1,3),(11978,11066,'\'Mr. Pappy\'',2,4),(11978,4688,'GM1 Snowhill',2,6),(11978,6280,'Captain Pullman',2,7),(11978,18181,'Captain Hartigan',2,8),(11978,114674,'Chief Floyd',2,9),(11978,53280,'Boy (uncredited)',2,10),(11978,1720476,'Rescued Pilot',2,11),(22907,31136,'Jesse Attica',2,0),(22907,17244,'A.J.',2,1),(22907,2876,'Jack Welles',2,2),(22907,8177,'Jake Attica',2,3),(22907,17605,'Gordon Jennings',2,4),(22907,76126,'Ghost',0,5),(22907,8691,'Rachel Jansen',1,6),(22907,8167,'John Rahway',2,7),(22907,17352,'Naomi',1,8),(22907,51670,'Scott',2,9),(22907,19487,'Eddie Hatcher',2,10),(22907,2202,'Lt. Carver',2,11),(22907,1233560,'Rahway Body Double',0,12),(22907,118374,'Max',2,13),(22907,1332245,'Bank Customer (uncredited)',1,14),(22907,35981,'Sergei',2,15),(22907,81703,'Monica',1,16),(22907,114674,'Detective Jefe Duncan',2,17),(11519,707,'Sgt. Frank Tree',2,0),(11519,13726,'Ward Douglas',2,1),(11519,7171,'Capt. Wild Bill Kelso',2,2),(11519,8607,'Joan Douglas',1,3),(11519,8608,'Claude Crumn',0,4),(11519,113,'Capt. Wolfgang von Kleinschmidt',2,5),(11519,21561,'Capt. Loomis Birkhead',2,6),(11519,2493,'Maj. Gen. Joseph W. Stilwell',2,7),(11519,4515,'Cpl. Chuck \'Stretch\' Sitarski',2,8),(11519,7180,'Pvt. Foley',2,9),(11519,7450,'Cmdr. Akiro Mitamura',2,10),(11519,8255,'Col. \'Madman\' Maddox',2,11),(11519,44038,'Donna Stratton',1,12),(11519,12430,'Gas Mama (Eloise)',1,13),(11519,1052333,'Macey Douglas',0,14),(11519,3339,'The Patron (Dexter)',2,15),(11519,42362,'Herbie Kazlminsky',2,16),(11519,27516,'Wally Stephens',2,17),(11519,160250,'Betty Douglas',1,18),(11519,124783,'Dennis DeSoto',2,19),(11519,5699,'Lydia Hedberg',1,20),(11519,12439,'Pvt. DuBois',2,21),(11519,1735,'Pvt. Ogden Johnson Jones',2,22),(11519,200296,'Gus Douglas',0,23),(11519,14253,'Hollis P. Wood',2,24),(11519,1068,'Maxine Dexheimer',1,25),(11519,78619,'Joe',2,26),(11519,21731,'Willy',2,27),(11519,102441,'Officer Miller',2,28),(11519,4969,'Angelo Scioli',2,29),(11519,6463,'Mr. Malcomb',0,30),(11519,151628,'Meyer Mishkin',2,31),(11519,59196,'Raoul Lipschitz',2,32),(11519,8610,'Polar Bear Woman',1,33),(11519,1216889,'USO Girl',1,34),(11519,2295,'Reese',2,35),(12920,6856,'Ben Crane',2,0),(12920,501,'Cale Crane',1,1),(12920,10823,'Pop Crane',2,2),(12920,1951,'Lily',1,3),(12920,52,'Palmer',2,4),(12920,6862,'Manolin',2,5),(12920,40481,'Balon',2,6),(12106,4430,'Ellen The Ladyu201c',1,0),(12106,193,'John Herod',2,1),(12106,934,'Cort',2,2),(12106,6193,'Fee Herod The Kidu201c',2,3),(12106,2144,'Dog Kelly',2,4),(12106,66288,'Doc Wallace',2,5),(12106,27116,'Eugene Dred',2,6),(12106,65827,'Sgt. Cantrell',2,7),(12106,2714,'Ace Hanlon',2,8),(12106,3798,'Horace',2,9),(12106,33,'Marshall',2,10),(12106,534,'Scars',2,11),(12106,27261,'Katie',1,12),(12106,65409,'Mattie Silk',1,13),(12106,21082,'Ratsy',2,14),(12106,4963,'Charlie Moonlight',2,15),(11141,517,'Daniel Rafferty',2,0),(11141,1231,'Audrey Woods',1,1),(11141,3968,'Thorne Jamison',2,2),(11141,7489,'Serena',1,3),(11141,3713,'Sara Miller',1,4),(11141,4496,'Judge Abramovitz',1,5),(11141,1129795,'TV Reporter',0,6),(31867,9642,'Remy',2,0),(31867,2178,'Jake',2,1),(31867,8602,'Beth',1,2),(31867,23626,'Frank',2,3),(31867,23229,'Carol',1,4),(31867,77334,'Peter',2,5),(31867,150,'T-Bone',2,6),(31867,86237,'Ray',2,7),(31867,211937,'Little Alva',1,8),(31867,51998,'Alva',1,9),(31867,111513,'Rhodesia',1,10),(31867,6172,'Hooker',1,11),(31867,5723,'Asbury',2,12),(31867,1627909,'Curious Man',2,13),(31867,1470384,'Larry the Lung',0,14),(10253,20386,'Ethan Kendrick',2,0),(10253,5694,'Jack',2,1),(10253,56457,'Brandy',1,2),(10253,15824,'Agent Frank Pinsky',2,3),(10253,7430,'Agent Linda Perez',1,4),(10253,64342,'Bruce',2,5),(10253,64341,'Sarah Daniels',1,6),(10253,1578,'Hypnotherapist',2,7),(10253,64343,'Agent Judah Campbell',2,8),(10253,64344,'Mr. Belafonte',2,9),(10253,54711,'Reporter',2,10),(10253,25879,'Secretary of Defense',2,11),(10253,64345,'Psychiatrist',0,12),(10253,64347,'Sarah\'s Mother',0,13),(10253,64346,'Young Ethan',2,14),(10253,64348,'Head Doctor',2,15),(10253,64349,'Dr. Austin',2,16),(10253,64350,'Sarah\'s Nurse',0,17),(10253,64351,'Homeless Native American',2,18),(10253,64352,'Mystery Driver',0,19),(10253,75318,'Receptionist Nurse',0,20),(10253,1631354,'',2,21),(24662,2154,'Danny',2,0),(24662,77353,'Sawyer',1,1),(24662,95791,'Sawyer (singing voice)',1,2),(24662,82630,'Darla Dimple',1,3),(24662,1227071,'Darla Dimple (singing voice)',0,4),(32274,5587,'Marc Blitzsetin',2,0),(32274,2049,'Diego Rivera',2,1),(32274,3234,'Hazel Huffman',1,2),(32274,3036,'Nelson Rockefeller',2,3),(32274,1532,'Tommy Crickshaw',2,4),(32274,1241,'Aldo Silvano',2,5),(32274,1639,'Olive Stanton',0,6),(32274,187565,'Blitzstein - \'Joe Worker\' Singer',1,7),(32274,2130,'John Houseman',2,8),(32274,4492,'Gray Mathers',2,9),(32274,1956,'Hallie Flanagan',1,10),(32274,2464,'Orson Welles',2,11),(32274,13333,'Countess Constance La Grave',1,12),(32274,4038,'Margherita Sarfatti',1,13),(32274,2977,'John Adair',2,14),(32274,12438,'Harry Hopkins',2,15),(32274,70851,'Sid',2,16),(32274,22297,'Larry',2,17),(32274,13242,'Carlo',2,18),(32274,1591178,'Augusta Weissberger',1,19),(11313,4173,'Ted Brautigan',2,0),(11313,21028,'Robert \'Bobby\' Garfield',2,1),(11313,15250,'Elizabeth \'Liz\' Garfield',1,2),(11313,21027,'Carol Gerber',1,3),(11313,52,'Adult Bobby Garfield',2,4),(11313,21088,'Monte Man',2,5),(11313,19453,'Len Files',2,6),(11313,1989,'Alana Files',1,7),(11313,77013,'Mrs. Gerber',1,8),(11313,1328126,'Harry Doolin',0,9),(11313,61607,'Don Biderman',2,10),(11313,544059,'Willie Shearman',0,11),(11313,130719,'Mr. Oliver',2,12),(11313,149484,'John Sullivan',2,13),(10559,6065,'Frank Sullivan',2,0),(10559,8767,'John Sullivan',2,1),(10559,6861,'Satch DeLeon',2,2),(10559,31167,'Julia Sullivan',1,3),(10559,11315,'Gordo Hersch',2,4),(10559,25878,'Jack Shepard',2,5),(10559,65762,'Graham Gibson',2,6),(10559,65756,'Samantha Thomas',1,7),(10559,39995,'Gordy Jr. (10 Years)',2,8),(10559,65757,'Johnny Sullivan (6 Years)',2,9),(10559,65758,'Gordo Hersch (8 Years)',0,10),(10559,65759,'Commander Butch O\'Connell',0,11),(10559,229,'Butch Foster',2,12),(10559,65760,'Sissy Clark',1,13),(10559,65761,'Chuck Hayes',0,14),(10559,21152,'Fred Shepard',2,15),(10559,59199,'Laura Shepard',0,16),(10559,65763,'Teenage Runaway',0,17),(10559,65764,'Carrie Reynolds',0,18),(10559,65765,'Daryl Simpson',2,19),(27569,3,'Dr. Robert Stonehill',2,0),(27569,18269,'John Crowley',2,1),(27569,41292,'Aileen Crowley',1,2),(27569,24047,'Marcus Temple',2,3),(27569,135164,'Megan Crowley',1,4),(27569,1567479,'Patrick Crowley',2,5),(27569,15440,'Docteur Kent Webber',2,6),(27569,5274,'CEO Erich Loring',0,7),(27569,2394,'Pete Sutphen',2,8),(27569,15412,'Dr. Renzler',2,9),(27569,62001,'Sal',1,10),(27569,23897,'Wendy Temple',0,11),(27569,1211946,'Dr. Preston',2,12),(27569,27580,'Niles',0,13),(27569,1533614,'Vinh Tran',0,14),(27569,157029,'Cal Dunning',0,15),(27569,1252507,'Renzler Scientist #1',0,16),(27569,1286703,'Researcher',2,17),(27569,1572704,'Night Nurse (Marcy)',0,18),(27569,66637,'Dr. Waldman',0,19),(27569,998040,'Day Nurse (Kate)',0,20),(27569,1195092,'ICU Doctor',0,21),(27569,152355,'Nell Madden',1,22),(27569,23899,'Armed Guard',2,23),(27569,5381,'Renzler Venture Capitalist #1',2,24),(10637,5292,'Coach Herman Boone',2,0),(10637,883,'Coach Bill Yoast',2,1),(10637,43858,'Gerry Bertier',2,2),(10637,65829,'Julius Campbell',2,3),(10637,17265,'Sheryl Yoast',1,4),(10637,30614,'Alan Bosley',2,5),(10637,74615,'Carol Boone',1,6),(10637,7517,'Emma Hoyt',1,7),(10637,49002,'Petey Jones',2,8),(10637,1227734,'Jerry \'Rev\' Harris',2,9),(10637,824,'Louie Lastik',2,10),(10637,65561,'Ronnie \'Sunshine\' Bass',2,11),(10637,84116,'Blue Stanton',2,13),(10637,117309,'Ray Budds',2,14),(10637,196899,'Mrs. Jean Bertier',1,15),(10637,1572967,'Frankie Glascoe',0,16),(10637,1572968,'Cook',0,17),(10637,1572969,'Jerry Buck',0,18),(10637,1116804,'Kirk Barker',0,19),(10637,37937,'Coach Paul \'Doc\' Hines',2,20),(10637,29934,'Coach Herb Tyrell',2,21),(10637,159109,'A.D. Watson',2,22),(10637,95941,'Executive Director',2,23),(10637,1215975,'Nicky Boone',0,24),(10637,37825,'Charles Campbell',2,25),(10637,1183804,'Colonel William G. Bass',2,26),(10637,86938,'Fred Bosley',2,27),(10637,1572970,'Captain Hal',2,28),(10637,94854,'Coach Ed Henry',2,29),(10637,41745,'Coach Taber',0,30),(10637,21084,'Coach Tolbert',2,31),(10637,1084209,'Kip Tyler',0,32),(10637,108180,'Ferdinand Day',0,33),(10637,1572973,'Radio Announcer',0,34),(10637,1351880,'Colorman',0,35),(10637,33269,'Doctor',2,36),(10637,65423,'Cop',2,37),(10637,146025,'Nurse Allice',1,38),(10637,1572974,'White Girl #1',0,39),(10637,1534410,'White Girl #2',0,40),(10637,1572975,'White Kid #1',0,41),(10637,1572976,'Black Kid #1',0,42),(10637,1572977,'Black Kid #2',0,43),(10637,1572978,'Official',0,44),(10637,73586,'Official',2,45),(10637,1572979,'Crooked Official',0,46),(10637,1534883,'Quarterback',0,47),(10637,33262,'Marshall Assistant Coach',2,48),(10637,1572981,'Lee Roy \'Monk\' Davis',0,49),(10637,1572982,'Reporter #1',0,50),(10637,1572983,'Reporter #2',0,51),(10637,1572984,'Reporter #3',0,52),(10637,118595,'Reporter #4',0,53),(10637,1572986,'Titan',0,54),(10637,1477869,'Titan',0,55),(10637,99676,'Titan',0,56),(10637,1373203,'Titan #4',0,57),(10637,1572989,'Titan',0,58),(10637,1572990,'Titan',0,59),(10637,1572991,'Titan',0,60),(10637,1572992,'Titan',0,61),(10637,1572995,'Titan',0,62),(10637,1224328,'Titan',2,63),(10637,1283778,'Emma\'s Friend',0,64),(10637,114634,'Parent',2,65),(10637,1156237,'Heckler',0,66),(10637,1572998,'Opposition Quarterback',0,67),(17654,82191,'Wikus van der Merwe',2,0),(17654,82193,'Christopher Johnson / Grey Bradnam / Trent',2,1),(17654,97599,'Sarah Livingstone - Sociologist',1,2),(17654,230818,'Dr Katrina McKenzie',1,3),(17654,1086505,'Interviewee',0,4),(17654,3495,'Les Feldman - MIL Engineer',2,5),(17654,53087,'Dirk Michaels',2,6),(17654,240024,'Francois Moraneu - CIV Engineer Team',0,7),(17654,1029046,'Interviewer',2,8),(17654,82190,'Ross Pienaar',2,9),(17654,82192,'Tania Van De Merwe',1,10),(17654,13094,'Thomas',2,11),(17654,1086506,'Interviewee',0,12),(17654,1086507,'Interviewee',0,13),(17654,1086508,'Interviewee',0,14),(17654,1086509,'Interviewee',0,15),(17654,173451,'James Hope - Police Officer',0,16),(17654,967456,'Piet Smit',2,17),(17654,967457,'Sandra Van De Merwe',1,18),(17654,967458,'Michael Bloemstein - MNU Alien Civil Affairs',2,19),(17654,1073473,'MNU Doctor',0,20),(17654,1050718,'MSU Doctor',2,21),(17654,1071689,'Koobus Venter',2,22),(17654,1351857,'Clive Henderson - Entomologist',2,23),(17654,203421,'Paramedic',2,24),(17654,1379225,'MNU Executive',0,25),(17654,1198931,'Obesandjo',0,26),(17654,1148656,'Anton Grobler',0,27),(17654,136309,'Mike Van Kerland',0,28),(17654,222288,'MNU Medical Student',0,29),(17654,575938,'MNU Lead Medical Technician',0,30),(17654,47969,'Craig Weldon',2,31),(17654,1029029,'MNU Mercenary',0,32),(17654,1156032,'MNU Mercenary',0,33),(17654,1264617,'MNU Mercenary',0,34),(17654,2619,'MNU Mercenary',0,35),(17654,109649,'MNU Mercenary',2,36),(17654,1184628,'MNU Mercenary',2,37),(17654,1138169,'MNU Guard',0,38),(17654,1187374,'Nigerian Gangster',0,39),(17654,1467496,'Nigerian Gangster',2,40),(17654,82194,'Man with Wikus\' Coordinates (uncredited)',2,41),(17654,1137847,'MNU Mercenary (uncredited)',0,42),(11836,78798,'Spongebob',2,0),(11836,6574,'Mr. Krabs (voice)',2,1),(11836,70615,'Squidward (voice)',2,2),(11836,34398,'Patrick Star (voice)',2,3),(11836,78799,'Sandy (voice)',1,4),(11836,4175,'King Neptune (voice)',2,5),(11836,1245,'Mindy (voice)',1,6),(11836,7447,'Dennis (voice)',2,7),(11836,28238,'Himself',2,8),(11836,188229,'Plankton (voice)',2,9),(11036,53714,'Allie Hamilton',1,0),(11036,30614,'Noah Calhoun',2,1),(11036,4800,'Allie Calhoun',1,2),(11036,16896,'Duke',2,3),(11036,9880,'Frank Calhoun',2,4),(11036,11148,'Anne Hamilton',1,5),(11036,11006,'Lon Hammond Jr.',2,6),(11036,76526,'John Hamilton',2,7),(11036,16666,'Fin',2,8),(11036,44822,'Nurse Esther',1,9),(11036,102719,'Harry',2,10),(11036,24199,'Nurse Selma',1,11),(11036,55317,'Sara Tuffington',1,12),(11036,1223006,'Seabrook Boy',0,13),(11036,1215021,'Bodee',2,14),(11036,174093,'Veronica',1,15),(11036,107404,'Aaron',0,16),(11036,1399877,'Professor',0,17),(11036,52057,'Band Leader',2,18),(11036,52654,'Bus Driver',2,19),(11036,509950,'Reporter',0,20),(11036,5162,'Photographer',2,21),(11036,2596,'Buyer #1',2,22),(11036,174158,'Buyer #2',0,23),(11036,77368,'Martha Shaw',1,24),(11036,174133,'Aunt Georgia',1,25),(11036,174125,'Aunt Kitty',0,26),(11036,1104568,'Rosemary',1,27),(11036,66532,'Lon\'s Employee',2,28),(11036,1326170,'Lon\'s Employee',0,29),(11036,1458992,'Lon\'s Employee',0,30),(11036,1225045,'Lon\'s Secretary',0,31),(11036,545,'Dr. Barnwell',2,32),(11036,1514927,'Mary Allen',1,33),(11036,134978,'Recruit (uncredited)',0,34),(11036,1487255,'Guy in Movie Theatre (uncredited)',0,35),(11036,1568593,'Man Having Dinner in Retirement Home (uncredited)',0,36),(11036,73035,'Allie\'s Mom\'s Ex Boyfriend (uncredited)',2,37),(11036,1568594,'Carnival Patron (uncredited)',0,38),(18126,76594,'Miley Stewart/Hannah Montana',1,0),(18126,78887,'Billy Ray Stewart',2,1),(18126,82785,'Lilly Truscott',1,2),(18126,54594,'Jackson Rod Stewart',0,3),(18126,212208,'Herself',1,4),(18126,429,'Travis Brody',2,5),(18126,51583,'Oliver Oken',2,6),(18126,57412,'Rico',0,7),(18126,27011,'Vita',1,8),(18126,452,'Ruby',1,9),(18126,404,'Lorelai',1,10),(18126,15110,'Miley\'s Mom',1,11),(18126,1329572,'Extra',2,12),(18126,1039011,'Clarissa Granger',1,13),(18126,1544453,'Derrick',2,14),(16340,15274,'Tommy Pickles (voice)',1,0),(16340,4038,'Coco LaBouche (voice)',1,1),(16340,12074,'Jean-Claude (voice)',2,2),(16340,15762,'Dil Pickles (voice)',1,3),(16340,80719,'Angelica Pickles (voice)',1,4),(16340,58136,'Chuckie Finster (voice)',1,5),(16340,34985,'Susie Carmichael (voice)',1,6),(16340,60739,'Lil Deville / Phil DeVille / Betty DeVille (voice)',1,7),(16340,19546,'Drew Pickels / Chaz Finsters, Sr. (voice)',2,8),(16340,34983,'Charlotte Pickles (voice)',1,9),(16340,16418,'Wedding DJ (voice)',2,10),(16340,8857,'Lulu Pickles (voice)',1,11),(16340,86434,'Grandpa Lou Pickles (voice)',2,12),(16340,10134,'Mr. Yamaguchi (voice)',2,13),(16340,13472,'Sumo Singer (voice)',2,14),(16340,1746397,'Kira Watanabe',0,15),(16340,23679,'Sumo Singer',2,16),(16340,1746397,'Kira Watanabe (voice)',0,17),(16340,23679,'Sumo Singer (voice)',2,18),(10333,1733,'Tom Wingo',2,0),(10333,10400,'Susan Lowenstein',0,1),(10333,10401,'Sally Wingo',1,2),(10333,18794,'Lila Wingo Newbury',1,3),(10333,1924,'Herbert Woodruff',0,4),(10333,4778,'Savannah Wingo',1,5),(10333,15903,'Eddie Detreville',2,6),(10333,21064,'Bernard Woodruff',2,7),(10333,975134,'Savannah Wingo',1,8),(22947,1461,'Ryan Bingham',2,0),(22947,21657,'Alex Goran',1,1),(22947,84223,'Natalie Keener',1,2),(22947,23532,'Craig Gregory',2,3),(22947,15091,'Julie Bingham',1,4),(22947,16431,'Maynard Finch',2,6),(22947,26930,'Kara Bingham',1,7),(22947,18999,'Bob',2,8),(22947,62862,'Jim Miller',2,9),(22947,58225,'Steve',2,10),(22947,9276,'Samuels',2,11),(22947,142384,'Tammy',0,12),(22947,59154,'Karen Barnes',1,13),(22947,84300,'Kevin',2,14),(22947,933819,'Dianne',0,15),(16300,2632,'Lance Barton',2,0),(16300,9788,'Sontee Jenkins',1,1),(16300,9046,'King',2,2),(16300,26510,'Keyes',2,3),(16300,13936,'Whitney Daniels',2,4),(16300,19974,'Sklar',2,5),(16300,38334,'Mrs. Wellington',1,6),(16300,27102,'Wanda',0,7),(16300,68842,'Phil Quon',2,8),(16300,65921,'Apollo M.C.',2,9),(16300,126650,'Gospel Singer',0,10),(16300,126651,'Rosa',0,11),(16300,126652,'Charles Wellington, III',0,12),(16300,28025,'Trashman',0,13),(16300,13633,'Cisco',2,14),(10521,1813,'Emma',1,0),(10521,11661,'Liv',1,1),(10521,23821,'Nate',2,2),(10521,73457,'Fletcher',2,3),(10521,81388,'Daniel',2,4),(10521,11850,'Marion St. Claire',1,5),(10521,13635,'Deb',1,6),(10521,83874,'Kevin',2,7),(10521,10379,'Colson',2,8),(10521,944116,'Kathy',1,9),(10521,59872,'John',2,10),(10521,1337520,'Young Liv',0,11),(10521,1337521,'Young Emma',0,12),(10521,83873,'Amanda',0,13),(10521,83872,'Stacy',1,14),(10521,59843,'Ricky Coo',2,15),(10521,1572034,'Rob',0,16),(10521,1572035,'Pamela',0,17),(10521,1572020,'Student #1',0,18),(10521,111922,'Student #2',2,19),(10521,1572024,'Student #3',0,20),(10521,1214054,'Delivery Guy',0,21),(10521,1572036,'Receptionist',0,22),(10521,1281301,'Tanorexic',1,23),(10521,1572042,'Geeky Neighbor',0,24),(10521,1337522,'Wedding DJ',0,25),(10521,459980,'DJ Jazzles',2,26),(10521,928638,'New York Cabbie (uncredited)',0,27),(10762,13922,'Dan Mott',2,0),(10762,26457,'Jerry Conlaine',2,1),(10762,51298,'Tom Marshall',2,2),(10762,60373,'Billy Newwood',2,3),(10762,66574,'Young Jerry',0,4),(10762,66573,'Young Dan',0,5),(10762,1547726,'Young Tom',0,6),(10762,66575,'Young Billy',0,7),(10762,66576,'Angie',0,8),(10762,66578,'Dick Stark',2,9),(10762,66577,'Tony',1,10),(10762,66579,'Denise',1,11),(10762,66580,'Greasy Man',2,12),(10762,66581,'Sandi',0,13),(10762,29082,'Minister',0,14),(10762,12889,'Sheriff Briggs',2,15),(10762,66585,'River Guide',2,16),(10762,66583,'Old Woman',1,17),(10762,66584,'Bonnie Newwood',0,18),(10762,66582,'Giselle',1,19),(10762,16475,'Del Knox',2,20),(10762,439765,'Butterfly',1,21),(10096,9278,'Jenna Rink',1,0),(10096,103,'Matt Flamhaff',2,1),(10096,20750,'Lucy Wyman',1,2),(10096,1333,'Richard Kneeland',2,3),(10096,1907,'Bev Rink',1,4),(10096,21532,'Alex Carlson',2,5),(10096,116691,'Arlene',1,6),(10096,58741,'Wayne Rink',2,7),(10096,63373,'Young Matt',2,8),(10096,63372,'Young Jenna',1,9),(10096,23504,'Trish Sackett',1,10),(10096,86128,'Tracy Hansen',1,11),(10096,21044,'Wendy',1,12),(10096,155621,'Becky',1,13),(10096,157108,'Young Tom-Tom',1,14),(10096,154694,'Young Chris Grandy',2,15),(10096,4887,'Mr. Flamhaff',2,16),(10096,62595,'Mrs. Flamhaff',1,17),(10096,78030,'Six Chick',1,18),(10096,88072,'Six Chick',1,19),(10096,60073,'Six Chick',1,20),(10096,52272,'Six Chick',1,21),(10096,1564984,'Six Chick',0,22),(10096,1564987,'Carla',0,23),(10096,20754,'Phil',2,24),(10096,2252,'Glenn',2,25),(10096,55258,'Rachel',1,26),(10096,1564989,'Waitress at Party',0,27),(10096,1367171,'Catherine',0,28),(10096,137424,'Gina',1,29),(10096,1072036,'Sydni',0,30),(10096,1622585,'Grandy\'s Friend',2,31),(10096,1573492,'Partygoer',1,32),(10096,181514,'Pete Hansen',2,33),(10096,1622591,'Sara',1,34),(10096,84407,'Chris Grandy',2,35),(10096,133070,'Poise Employee',1,36),(10096,1622612,'Poise Secretary',1,37),(10096,168925,'Dancer',1,38),(10096,928295,'Dancer',2,39),(10096,1239752,'Dancer',1,40),(10096,1212446,'Dancer',0,41),(10096,1622614,'Dancer',1,42),(10096,1223005,'Dance',0,43),(10096,1622616,'Dancer',1,44),(10096,1220575,'Dancer',1,45),(10096,1229700,'Dancer',1,46),(10096,21318,'Tiffany (uncredited)',1,47),(10096,1622623,'Poise Party Guest (uncredited)',1,48),(10096,83920,'Wardrobe Designer (uncredited)',1,49),(10207,1269,'Garrett Blake',2,0),(10207,32,'Theresa Osborne',1,1),(10207,3636,'Dodge Blake',2,2),(10207,47879,'Johnny Land',2,3),(10207,7796,'Lina Paul',1,4),(10207,1923,'Charlie Toschi',2,5),(10207,10135,'Jason Osborne',2,6),(10207,153694,'Marta Land',1,7),(10207,49835,'Hank Land',2,8),(10207,156774,'Alva',1,9),(10207,97943,'Andy',2,10),(10207,1390847,'Chet',2,11),(10207,8492,'Helen at the B&B',1,12),(10207,163537,'David Osborne',2,13),(10207,1461219,'Catherine Land Blake',1,14),(10207,1685460,'Helicopter Pilot #1',2,15),(10207,56358,'Annie',1,16),(10207,1559637,'Woman on Sinking Boat',1,17),(10207,17265,'Girl on Sinking Boat',1,18),(21972,58197,'Calvin Cambridge',0,0),(21972,9779,'Tracey Reynolds',2,1),(21972,67778,'Murph',2,2),(21972,88123,'Reg Stevens',1,3),(21972,88124,'Ox',2,4),(21972,88125,'Marlon',0,5),(21972,1064,'Stan Bittleman',2,6),(21972,32394,'Sister Theresa',1,7),(21972,5694,'Coach Wagner',2,8),(21972,26510,'Frank Bernard',2,9),(21972,88126,'Marvin Joad',0,10),(21972,88127,'Henderson',0,11),(21972,1653176,'Jones',0,12),(16871,8291,'Christine Brown',1,0),(16871,15033,'Clay Dalton',2,1),(16871,95696,'Mrs. Ganush',1,2),(16871,95697,'Rham Jas',2,3),(16871,19839,'Mr. Jacks',2,4),(16871,270,'Shaun San Dena',1,5),(16871,10486,'Leonard Dalton',2,6),(16871,22075,'Stu Rubin',2,7),(16871,54586,'Trudy Dalton',1,8),(16871,81682,'Ilenka Ganush',0,9),(16871,95698,'Milos',2,10),(16871,22138,'Farm Worker',2,11),(16871,155868,'Farm Worker\'s Wife',1,12),(16871,1121875,'Farm Worker\'s Son',0,13),(16871,59846,'Mr. Jack\'s Secretary',1,14),(16871,11769,'Doctor',2,15),(16871,6944,'Bank Co-Worker',1,16),(16871,158777,'Cackling Woman at Death Feast',0,17),(16871,11641,'Mourner at Death Feast',2,18),(16871,204265,'Family at Diner',0,19),(16871,1735986,'Security Guard',0,20),(16871,7623,'Ghost at Seance (uncredited)',2,21),(13156,3895,'Garth',2,0),(13156,3087,'Hub',2,1),(13156,9640,'Walter',2,2),(13156,6164,'Adult Walter',1,3),(13156,26467,'Mae',1,4),(13156,71198,'Young Hub',2,5),(13156,18070,'Stan',2,6),(13156,34489,'Sheik\'s Grandson',2,7),(13156,1766445,'Young Garth',0,8),(13156,2684,'Jasmine',1,9),(13156,51583,'Boy',2,10),(13156,173994,'Boy',2,11),(13156,21710,'Ralph',2,12),(13156,77013,'Helen',1,13),(13156,1201221,'The Sheik',0,14),(13156,142108,'Martha',1,15),(13156,177905,'Insurance Salesman',2,16),(13156,201270,'Receptionist',1,17),(13156,17304,'Skeet Machine Salesman',2,18),(13156,571230,'Animal Truck Driver',0,19),(13156,20496,'Helper',0,20),(13156,308843,'Feed Store Owner',2,21),(13156,71561,'Woman in Hospital',1,22),(13156,1004155,'Doctor',2,23),(13156,1221888,'Hood',2,24),(13156,179851,'Hood',2,25),(13156,1781481,'Hood',2,26),(13156,71563,'Biplane Truck Driver',2,27),(13156,1110882,'Sheik\'s Great Grandson',0,28),(22970,210824,'Dana Polk',1,0),(22970,74568,'Curt Vaughn',2,1),(22970,486603,'Jules Louden',1,2),(22970,51533,'Marty Mikalski',2,3),(22970,210695,'Holden McCrea',2,4),(22970,28633,'Richard Sitterson',2,5),(22970,11367,'Steve Hadley',0,6),(22970,31137,'Daniel Truman',0,7),(22970,81133,'Wendy Lin',1,8),(22970,956719,'Mordecai',2,9),(22970,62849,'Ronald The Intern',2,10),(22970,85505,'Matthew Buckner',2,11),(22970,8338,'Patience Buckner',1,12),(22970,385220,'Father Buckner',2,13),(22970,172997,'Mother Buckner',1,15),(22970,1275701,'Judah Buckner',0,16),(22970,63564,'Clean Man',2,17),(22970,83948,'Labcoat Girl',1,18),(22970,89551,'Demo Guy',2,19),(22970,33348,'Demo Guy',2,20),(22970,70175,'Demo Girl',1,21),(22970,11677,'Operations Guy',2,22),(22970,83423,'Accountant',1,23),(22970,102742,'Elevator Guard',2,24),(22970,158390,'Lead Guard',2,25),(22970,111933,'Japanese Floaty Girl',0,26),(22970,158644,'Military Liaison',1,27),(22970,76828,'Werewolf Wrangler',2,28),(22970,172836,'Chem Department Guy',0,29),(22970,1275703,'Japanese Frog Girl',0,30),(22970,1275704,'Japanese School Girl',0,31),(22970,1275705,'Japanese School Girl',0,32),(22970,1275706,'Japanese School Girl',0,33),(22970,1275707,'Japanese School Girl',0,34),(22970,1275708,'Japanese School Girl',0,35),(22970,1275709,'Japanese School Girl',0,36),(22970,1275711,'Japanese School Girl',0,37),(22970,1275712,'Japanese School Girl',0,38),(22970,1275713,'Japanese School Girl',0,39),(22970,1275714,'Japanese School Girl',0,40),(22970,12371,'Werewolf/Merman',2,41),(22970,1275715,'Sugarplum Fairy',0,42),(22970,190232,'Dismemberment Goblin',0,43),(22970,168815,'Dismemberment Goblin',0,44),(22970,196686,'Floating Witch',0,45),(22970,1275716,'Fornicus, Lord of Bondage and Pain',2,46),(22970,10205,'The Director',1,47),(22970,236696,'The Clown (uncredited)',0,48),(10776,8872,'Seymour Krelborn',2,0),(10776,13420,'Audrey',1,1),(10776,14830,'Mr. Mushnik',2,2),(10776,67773,'Orin Scrivello, DDS',2,3),(10776,141823,'Chiffon',1,4),(10776,7180,'Wink Wilkinson',2,5),(10776,1532,'Arthur Denton',2,6),(10776,83600,'Crystal',1,7),(10776,6199,'Dental Nurse',1,8),(10776,26485,'Partick Martin',2,9),(10776,13524,'The First Customer',2,10),(10776,115787,'Doo-Wop Street Singer',0,11),(10776,102757,'Doo-Wop Street Singer',0,12),(10776,1353187,'Fifth Customer',0,13),(10776,1330820,'Fourth Customer',0,14),(10776,1257821,'Chinese Florist',2,15),(10776,218028,'Audrey II (Voice)',0,16),(12763,3131,'Pierre Dulaine',2,0),(12763,10689,'Rock',2,1),(12763,60033,'LaRhette',1,2),(12763,1981,'Augustine James',1,3),(12763,40543,'Mr. Temple',2,4),(12763,60034,'Tina',1,5),(12763,143324,'Morgan',0,6),(12763,20381,'Sasha',1,7),(14034,78029,'Kevin Caffery',2,0),(14034,518,'Max Fairbanks',2,1),(14034,5723,'Berger',2,2),(14034,21104,'Gloria Sidell',1,3),(14034,37158,'Amber Belhaven',1,4),(14034,1897,'Uncle Jack',2,5),(14034,1211,'Earl Radburn',2,6),(14034,4496,'Lutetia Fairbanks',1,7),(14034,886,'Detective Alex Tardio',2,8),(14034,31028,'Walter Greenbaum',2,9),(14034,86267,'Ann Marie',1,10),(14034,64237,'Tracey Kimberly',1,11),(14034,6751,'Edwina',1,12),(14034,184180,'Jerry',2,13),(12244,290,'1 (voice)',2,0),(12244,2641,'2 (voice)',2,1),(12244,4764,'5 (voice)',2,2),(12244,1064,'6 (voice)',2,3),(12244,6161,'7 (voice)',1,4),(12244,60279,'8 (voice)',2,5),(12244,109,'9 (voice)',2,6),(12244,24320,'Scientist (voice)',0,7),(12244,71535,'Dictator (voice)',2,8),(12244,108701,'News Caster (voice)',0,9),(11137,12041,'Paige Morgan',1,0),(11137,68307,'Prince Edvard',2,1),(11137,18025,'Soren',2,2),(11137,8436,'Queen Rosalind',1,3),(11137,1292,'King Haraald',2,4),(11137,19958,'Amy Morgan',1,5),(11137,55378,'Ben Morgan',2,6),(11137,54834,'John Morgan',2,7),(11137,77794,'Beth Curtis',0,8),(11137,23775,'Princess Arabella',1,9),(11137,107943,'English Teacher\'s Assistant',1,10),(11137,1442832,'Deli Patron',2,11),(10152,13920,'Mrs. Dunne',1,0),(10152,29020,'Lloyd Christmas',2,1),(10152,40481,'Ray',2,2),(10152,50347,'Jessica',1,3),(10152,26510,'Principal Collins',2,4),(10152,33934,'Harry Dunne',2,5),(10152,10959,'Lewis',2,6),(10152,7401,'Margie',1,7),(10152,1213538,'Terri',0,8),(10152,20220,'Turk',2,9),(10152,10128,'Carl',2,10),(10152,55253,'Ching Chong',1,11),(10152,122807,'Mr. Moffitt',2,12),(10152,20405,'Store Clerk',2,13),(10152,60252,'Ms. Heller',1,14),(10152,72450,'Jessica\'s Dad',2,15),(14846,328,'Stacy',1,0),(14846,18686,'Barb',1,1),(14846,8534,'Kippie Kann',1,2),(14846,17402,'Derek',2,3),(14846,60633,'Ira',2,4),(14846,74651,'Lulu Fritz',1,5),(14846,86034,'Joyce',1,6),(14846,80591,'Dr. Rachel Keyes',1,7),(14846,130749,'Larry',2,8),(14846,121566,'Mom',1,9),(14846,10961,'Random',2,10),(14846,157847,'Phil',2,11),(14846,176653,'Bean',2,12),(14846,1212270,'Katie',0,13),(14846,1569166,'Backstage Production Assistant',2,14),(14846,1328023,'Honey Squeeze',0,15),(14846,111513,'Production Assistant',1,16),(14846,1137626,'Colleen (Bean\'s Wife)',0,17),(14846,1011204,'Jane',1,18),(14846,1470861,'Phillip',0,19),(16232,1897,'Stan Ross',2,0),(16232,9780,'Maureen Mo Simmons',1,1),(16232,18313,'Boca',2,2),(16232,31137,'Rex \'T-Rex\' Pennebaker',0,3),(16232,103944,'Skillet',2,4),(16232,7004,'Gus Panas',2,5),(16232,74036,'Tom Arnold',2,6),(16232,31837,'Sausage Mascot',2,7),(16232,1226707,'Executive',2,8),(16232,1394359,'Brewers Fan (uncredited)',0,9),(16232,298410,'Reporter',2,10),(11702,1619,'John Lee',2,0),(11702,23931,'Meg Coburn',1,1),(11702,12132,'Stan \'Zeedo\' Zedkov',2,2),(11702,10885,'Terence Wei',0,3),(11702,920,'Michael Kogan',2,4),(11702,1844,'Ryker',2,5),(11702,11160,'Collins',2,6),(11702,5365,'Loco',2,7),(11702,115874,'Hunt',0,8),(11702,1216752,'Rawlins',0,9),(11702,188274,'Lam',0,10),(11702,32286,'Pryce',2,11),(11702,9462,'Alan Chan',2,12),(18550,2975,'Piper',2,0),(18550,9045,'Dodge',2,1),(18550,3136,'Cora',1,2),(18550,883,'Gibson',2,3),(18550,31512,'Pat Schiller',2,4),(18550,88094,'Lieutenant Clark',2,5),(18550,58648,'Santiago',2,6),(18550,29792,'Chris Paine',2,7),(18550,38570,'Warden Nichols',2,8),(18550,95938,'Mantajano',2,9),(18550,95939,'Faith/Cindy',1,10),(18550,95940,'Herb Foster',2,11),(18550,29934,'Officer Thornhill',2,12),(18550,95941,'Chairman',2,13),(18550,95942,'Margaret Parks',0,14),(10658,1063,'Beverly Switzler',1,0),(10658,4004,'Dr. Walter Jenning',2,1),(10658,504,'Phil Blumburtt',2,2),(10658,1471,'Howard T. Duck',2,3),(10658,168581,'K.C., Cherry Bomb',1,4),(10658,19839,'Larry, Scientist',2,5),(10658,925,'Lieutenant Welker',2,6),(10658,6396,'Ritchie',2,7),(10658,1012338,'Cal, Cherry Bomb',1,8),(10658,1027773,'Ronette, Cherry Bomb',1,9),(13150,819,'Ray Tierney',2,0),(13150,10127,'Francis Tierney, Sr.',2,1),(13150,72466,'Jimmy Eagan',2,2),(13150,11315,'Francis Tierney, Jr.',2,3),(13150,49971,'Abby Tierney',1,4),(13150,40543,'Ruben Santiago',2,5),(13150,81685,'Eddie Carbone',2,6),(13150,74242,'Kenny Dugan',2,7),(13150,25703,'Megan Egan',1,8),(13150,37158,'Tasha',1,9),(13150,72983,'Coco Dominguez',2,10),(13150,1470,'Bill Avery',2,11),(13150,72985,'Angel Tezo',2,12),(13150,53184,'Eladio Casado',2,13),(13150,1018947,'Carlos Bragon',2,14),(13150,164517,'Maureen Tierney',0,15),(13150,1125868,'Caitlin Tierney',0,16),(13150,17181,'Matthew Egan',2,17),(17813,36422,'Alex Sheldon / Adam Shipley',2,0),(17813,11661,'Emma Dinsmore / Ylva / Elsa / Eldora / Anna',1,1),(17813,1957,'Polina Delacroix',1,2),(17813,19839,'John Shaw',2,3),(17813,88379,'Whistling John Shaw',0,4),(17813,205117,'Tony',2,5),(17813,48071,'Bobby',2,6),(17813,37438,'Polina\'s Farther',2,7),(17813,582281,'Andre Delacroix',0,8),(17813,582282,'Michele Delacroix',0,9),(17813,3026,'Wirschafter',2,10),(17813,167197,'Madame Blanche',0,11),(17813,33713,'Claude',2,12),(17813,538321,'Croupier',2,13),(17813,33492,'Bus Driver',2,14),(17813,9599,'Grandmother',1,15),(17813,74228,'Bernard Pompier',2,16),(17813,147383,'Receptionist',0,18),(17813,59215,'Flamenco Dancer #3',2,19),(17813,140898,'Casino Owner',2,20),(17813,86169,'Scooter Boy (uncredited)',2,21),(17813,1453555,'Croupier (uncredited)',2,22),(11208,2299,'Matthew',2,0),(11208,9827,'Alex',1,1),(11208,26457,'Luke',2,2),(11208,9824,'Lisa',1,3),(11208,20379,'Daniel',2,4),(11208,82096,'Rebecca',1,5),(11208,58169,'Jeweller',2,6),(11208,944474,'Ellie',1,7),(11208,190900,'Walter',2,8),(11208,1041350,'Chamber Maid',0,9),(11208,7013,'Bartender',2,10),(11208,548204,'Actress Olivia',0,11),(11400,72466,'Captain Smith',2,0),(11400,69225,'Pocahontas',1,1),(11400,290,'Captain Newport',2,2),(11400,3894,'John Rolfe',2,3),(11400,18260,'Powhatan',2,4),(11400,15853,'Opechancanough',2,5),(11400,11207,'Wingfield',2,6),(11400,31387,'Captain Argall',0,7),(11400,77335,'Ben',2,8),(11400,1284,'Selway',2,9),(11400,1363928,'Parker',0,10),(11400,1665,'Eddie',2,11),(11400,154647,'Rupwew',2,12),(11400,3551,'James',0,13),(11400,84217,'Core Warrior',2,14),(10350,33260,'1st Lt. Christopher Blair',2,0),(10350,9825,'Lt. Cmdr. \'Angel\' Devereaux',0,1),(10350,26457,'Lt. Todd \'Maniac\' Marshall',2,2),(10350,10698,'Cmmdre. James \'Paladin\' Taggart',2,3),(10350,920,'Cdr. Paul Gerald',2,4),(10350,20277,'Capt. Jason Sansky',2,5),(10350,2076,'Admiral Geoffrey Tolwyn',2,6),(10350,178579,'Lt. Rosie Forbes',0,7),(10350,31925,'Lt. Obutu',2,8),(10350,91662,'Admiral Bill Wilson',0,9),(10350,200332,'Richard Bellegarde',2,10),(10350,176227,'Lt. Hunter',2,11),(10350,106385,'Lt. Polanski',0,12),(10350,111437,'Lt. Knight',2,13),(10350,24743,'Flight Boss',2,14),(28902,516,'Claire Cooper',1,0),(28902,18992,'Paul Cooper',2,1),(28902,9029,'Doctor Silverman',2,2),(28902,3223,'Vivian Thompson',2,3),(28902,925,'Detective Jack Kay',2,4),(28902,57676,'Rebecca Cooper',1,5),(28902,951387,'Mary',1,6),(28902,118937,'Doctor Stevens',2,7),(28902,170392,'Walter',0,8),(28902,188049,'Nurse Rosco',2,9),(28902,452,'Nurse Floyd',1,10),(28902,161769,'Ethel',1,11),(14164,1619,'Master Roshi',2,0),(14164,503,'Goku',2,1),(14164,78323,'Yamcha',2,2),(14164,78324,'Chi Chi',1,3),(14164,4730,'Bulma',1,4),(14164,47297,'Lord Piccolo',2,5),(14164,9462,'Grandpa Gohan',2,6),(14164,8874,'Master Mutaito',2,7),(14164,53185,'Carey Fuller',2,8),(14164,78325,'Emi',0,9),(14164,37492,'Mai',1,10),(14164,78326,'Weaver',0,11),(14164,78327,'Agundas',0,12),(14164,78328,'Mr. Kingery',2,13),(14164,147880,'Seki',0,14),(11058,17141,'Paul Duncan',2,0),(11058,11008,'Jessie Duncan',1,1),(11058,380,'Richard Wells',2,2),(11058,52414,'Adam Duncan',2,3),(11058,133252,'Susan Pierce',1,4),(11058,1228341,'Max Shaw',2,5),(11058,1037730,'',0,6),(11058,40385,'Principal Hersch',1,7),(14844,16855,'Anna Foster',1,0),(14844,33532,'Grant Hillman',2,1),(14844,80310,'White House Guard',0,2),(14844,12799,'Alan Weiss',2,3),(14844,18750,'Cynthia Morales',1,4),(14844,67205,'Harper',0,5),(14844,19728,'President James Foster',2,6),(14844,6692,'Michelle Foster',1,7),(14844,1247,'Ben Calder',2,8),(14844,101014,'Gabrielle',1,9),(14844,6199,'Maria',1,10),(11162,1158,'Shylock',2,0),(11162,16940,'Antonio',0,1),(11162,12763,'Bassanio',2,2),(11162,21044,'Portia',1,3),(11162,20803,'Jessica',1,4),(11162,7058,'Gratiano',2,5),(11162,23458,'Lorenzo',2,6),(11162,1711,'Gobbo',2,7),(11162,52996,'Nerissa',1,8),(11162,26860,'Salerio',2,9),(11162,7053,'Solanio',2,10),(11162,5319,'Old Gobbo',2,11),(11162,28853,'The Duke',2,12),(11162,16752,'Prince of Morocco',2,13),(11162,78018,'Tubal',2,14),(17186,81388,'K.C. Carlyle',2,0),(17186,6858,'Trip Carlyle',2,1),(17186,49914,'Piper Cole',1,2),(17186,54830,'Zoe Lang',1,3),(17186,38673,'Rowdy Sparks',2,4),(17186,62036,'Clay Sparks',2,6),(17186,418,'Earl Cole',2,7),(17186,81390,'Owen Cole',2,8),(17186,81391,'Chuy',2,9),(17186,81392,'Herself',0,10),(17186,81393,'Himself',2,11),(17186,81394,'Rowdy\'s Hairstylist',0,12),(17186,81395,'Rider\'s Girlfriend',1,13),(13967,3061,'Norman Warne',2,0),(13967,9137,'Beatrix Potter',1,1),(13967,1639,'Millie Warne',0,2),(13967,183201,'Helen Potter',1,3),(13967,104795,'Rupert Potter',2,4),(13967,17479,'Miss Wiggin',1,5),(13967,172935,'William Heelis',2,6),(13967,27397,'Harold Warne',2,7),(13967,26657,'Fruing Warne',2,8),(13967,17787,'Mrs. Warne',1,9),(13967,86232,'Young Beatrix Potter',1,11),(13967,1136120,'Young Bertram',0,12),(13967,205671,'Young Heelis',0,13),(13967,105491,'Hilda',0,14),(13967,1231385,'Fiona',1,15),(13967,1220072,'Lady Sybil',1,16),(13967,14465,'Sir Nigel',2,17),(13967,1356007,'Lady Clifford',0,18),(13967,1655832,'Saunders',0,19),(13967,26684,'Lady Armitage',0,20),(13967,1591028,'Bidder',0,21),(13967,208444,'Auctioneer',0,22),(13967,191749,'Man at Meeting',0,23),(13967,31924,'Mr. Copperthwaite',0,24),(13967,71533,'Mrs. Haddon-Bell',0,25),(31203,117861,'Nicolas',0,0),(31203,62531,'La mu00e8re de Nicolas',1,1),(31203,22306,'Le pu00e8re de Nicolas',2,2),(31203,81821,'La mau00eetresse',1,3),(31203,76858,'Le bouillon',2,4),(31203,19062,'Le directeur',2,5),(31203,24832,'M. Moucheboume',2,6),(31203,24629,'Le ministre',2,7),(31203,39350,'Mlle Navarin',1,8),(31203,78216,'La fleuriste',1,9),(31203,21171,'Le chef de la chorale',0,10),(31203,553198,'Alceste',2,11),(31203,572627,'Geoffroy',0,12),(31203,572628,'Clotaire',0,13),(31203,572629,'Eudes',0,14),(31203,24041,'Blu00e9durt, le voisin',2,15),(31203,572630,'Rufus',0,16),(31203,572631,'Joachim',0,17),(31203,20850,'Le majordome',2,18),(31203,554596,'Mu00e9decin 3',0,19),(31203,28676,'La dame u00e0 la roulette',1,20),(31203,51971,'Madame Moucheboume',0,21),(31203,7279,'L\'oncle de Nicolas',0,22),(31203,572632,'La secru00e9taire (non cru00e9ditu00e9e)',0,23),(31203,572633,'Mu00e9decin 1',0,24),(31203,572634,'Mu00e9decin',0,25),(31203,572635,'Mu00e9decin 2',0,26),(31203,572636,'Mu00e9decin 4',0,27),(31203,492293,'Marie Edwige',0,28),(31203,572637,'Agnan',0,29),(31203,572638,'Un u00e9lu00e8ve salle des examens',0,30),(31203,16873,'Francis Leborgne',2,31),(31203,1105278,'le moniteur d\'auto-u00e9cole',2,32),(10955,6949,'Tom Ripley',2,0),(10955,5538,'Reeves',2,1),(10955,67747,'Terry',2,2),(10955,169,'Art Dealer',2,3),(10955,105341,'Franco',0,4),(10955,17286,'Sarah Trevanny',1,5),(10955,15336,'Jonathan Trevanny',2,6),(11499,3968,'David Frost',2,0),(11499,8924,'Richard Nixon',2,1),(11499,4724,'Jack Brennan',2,2),(11499,6807,'James Reston Jr.',2,3),(11499,66660,'Hugh Hefner',2,4),(11499,15576,'John Birt',2,5),(11499,17485,'Bob Zelnick',2,6),(11499,15556,'Caroline Cushing',1,7),(11499,13014,'Swifty Lazar',2,8),(11499,1043304,'Frank Gannon',2,9),(11499,59697,'Diane Sawyer',1,10),(11499,92808,'Ken Khachigian',0,11),(11499,30697,'Ray Price',2,12),(11499,125026,'Pat Nixon',1,13),(11499,148122,'Interview Director',2,14),(11499,15661,'Lloyd Davis',2,15),(11499,22250,'Ollie',2,16),(11499,38572,'White House Director',2,17),(11499,152306,'Frost Show Director',0,18),(11499,64351,'Manolo Sanchez',2,19),(11499,1089547,'Neil Diamond',0,20),(11499,157452,'Sammy Cahn',2,21),(11499,239021,'Marv Minoff',0,22),(11499,1089549,'Lady with Dachshund',0,23),(11499,1089550,'Frost\'s Female Assistant',0,24),(12771,14408,'Joe Tyler',2,0),(12771,13918,'Sara Moore',1,1),(12771,47774,'Tony',2,2),(12771,11357,'Gordon Moore',2,3),(12771,5726,'Ray Harris',2,4),(12771,9273,'Kate',1,5),(12771,26042,'Milton the Cop',2,6),(12506,5292,'Steve Biko',2,0),(12506,8945,'Donald Woods',2,1),(12506,1249,'Wendy Woods',1,2),(12506,20771,'Jane Woods',1,3),(12506,77681,'Mapetla',2,4),(12506,47458,'Father Kani',2,5),(12506,137924,'Kruger',2,6),(12506,2449,'Ken',2,7),(12506,174708,'Dr Ramphele',1,8),(12506,1629826,'Ntsiki Biko',0,9),(12506,35257,'Capt. De Wet',2,10),(12506,65885,'Lemick',2,11),(12506,385,'State Prosecutor',2,12),(12506,1492650,'Policeman Nel',2,13),(12506,91663,'Police Doctor',2,14),(12506,17203,'Guard',2,15),(12506,189431,'Guard',2,16),(12506,186070,'Police Sergeant',0,17),(12506,42644,'Mortician',0,18),(12506,740,'Don Card',2,19),(12506,264968,'Girl at Funeral',1,20),(12506,93518,'Bruce',2,21),(12506,1212897,'Major Boshoff',0,22),(12506,8224,'Acting High Comissioner',2,23),(12506,1212803,'Moses',2,24),(12506,45455,'Receptionist',1,25),(12506,29306,'Wendy\'s Father',0,26),(12506,47478,'Wendy\'s Mother',1,27),(12506,1213708,'Police Sergeant',2,28),(12506,1230439,'Sergeant Louw',0,29),(24071,11628,'Mumford',2,0),(24071,15250,'Sofie Crisp',1,1),(24071,11662,'Skip Skipperton',2,2),(24071,1981,'Lily',1,3),(24071,11664,'Nessa Watkins',1,4),(24071,1581,'Althea Brockett',1,5),(24071,3201,'Henry Follett',2,6),(24071,519,'Lionel Dillard',2,7),(24071,19839,'Dr. Ernest Delbanco',2,8),(24071,209,'Dr. Phyllis Sheeler',1,9),(24071,13314,'Mrs. Crisp',1,10),(24071,17770,'Mr. Crisp',2,11),(24071,12836,'Jeremy Brockett',2,12),(24071,32798,'Katie Brockett',1,13),(24071,2493,'Himself',2,14),(24071,50095,'Martin Brockett',2,15),(11249,1370,'Chucky',2,0),(11249,7906,'Tiffany',1,1),(11249,1329,'Glen',2,2),(11249,54799,'sich',2,3),(11249,35865,'Joan',1,4),(11249,10367,'Pete Peters',2,5),(11249,1087217,'Stan',0,6),(11249,1833905,'Fulvia',0,7),(11249,1234582,'Psychs',0,8),(11249,973,'Santa',2,9),(11249,984,'Lawyer',2,10),(11249,1244404,'Claudia\'s Mum',0,11),(11249,1845920,'Claudia\'s Dad',0,12),(11249,1845921,'Claudia',0,13),(14444,2395,'Ranger Margaret (voice)',1,0),(14444,60950,'Ranger Frank (voice)',2,1),(14444,15274,'Tommy Pickles (voice)',1,2),(14444,15762,'Dylan Pickles (voice)',1,3),(14444,58136,'Chuckie Finster (voice)',1,4),(14444,60739,'Phillip / Lillian / Betty DeVille (voices)',1,5),(14444,80719,'Angelica Pickles (voice)',1,6),(14444,13472,'Rex Pester (voice)',2,7),(14444,62590,'Stuart \'Stu\' Pickles (voice)',2,8),(14444,6485,'Reptar Wagon (voice)',2,9),(14444,19546,'Charles \'Chaz\' Finster Sr (voice)',2,10),(14444,86434,'Grandpa Lou Pickles (voice)',2,11),(14444,13604,'Newborn Baby (singing voice)',0,12),(15373,57599,'Wheeler',2,0),(15373,22226,'Danny Donahue',2,1),(15373,9281,'Beth',1,2),(15373,54691,'Augie Farks',2,3),(15373,75633,'Ronnie Shields',2,4),(15373,43775,'Gayle Sweeny',1,5),(15373,83586,'King Argotron',2,6),(15373,74289,'Isabel',1,7),(15373,21131,'Kuzzik',2,8),(15373,77089,'Jim Stansel',2,9),(15373,63220,'Lynette',1,10),(15373,22225,'Martin',2,11),(15373,59841,'Davith of Glencracken',2,12),(15373,155687,'Karen',1,13),(15373,983661,'Esplen',1,14),(15373,1020027,'Connie',1,15),(15373,104912,'Linda the Teacher',1,16),(15373,188024,'Artonius',2,17),(15373,55097,'Rule Master',2,19),(15373,22214,'Chevron Baine',2,20),(15373,52849,'Security Guard',2,21),(15373,298410,'Duane',2,22),(15373,1173004,'Party Dude',0,23),(15373,212291,'Gretchen',1,24),(15373,1492804,'Barista',0,25),(15373,46075,'Tow Truck Driver',2,26),(15373,1840617,'Gleebo',0,27),(15373,53607,'Ladislas of Pleasure',2,28),(15373,62863,'Mitch from Graphics',2,29),(26320,84075,'Elliot Teichberg',2,0),(26320,11356,'Sonia Teichberg',1,1),(26320,7030,'Jake Teichberg',2,2),(26320,23626,'Wilma',2,3),(26320,221611,'Michael Lang',0,4),(26320,26510,'Max Yasgur',2,5),(26320,46593,'Billy',2,6),(26320,17142,'VW Guy',2,7),(26320,17442,'VW Girl',1,8),(26320,47296,'Dan',2,9),(26320,115974,'Artie Kornfeld',2,10),(26320,47281,'Tisha',1,11),(26320,58873,'Devon',2,12),(26320,73128,'John Roberts',2,13),(26320,19576,'Don',2,14),(26320,34395,'Jackson Spiers',2,15),(26320,84249,'British Gentleman',2,16),(26320,1079042,'George the Doorman',2,17),(26320,77795,'Penny',1,18),(26320,1127717,'Esther',0,19),(26320,171538,'Frank',2,20),(26320,49834,'Annie',1,21),(26320,171297,'Margaret',0,22),(26320,22127,'Carol',1,23),(26320,182280,'Joel Rosenman',0,24),(14292,6856,'Herb Brooks',2,0),(14292,1276,'Patty Brooks',1,1),(14292,11315,'Craig Patrick',2,2),(14292,17646,'Walter Bush',2,3),(14292,6074,'Doc Nagobads',0,4),(14292,25987,'Jim Craig',2,5),(14292,84341,'Mike Eruzione',2,6),(14292,84342,'Jack O\'Callahan',2,7),(14292,963962,'Party Husband',2,8),(14292,976171,'TV Reporter',2,9),(10439,73931,'Winifred \'Winnie\' Sanderson',0,0),(10439,520,'Sarah Sanderson',1,1),(10439,11074,'Mary Sanderson',1,2),(10439,65309,'Max Dennison',2,3),(10439,2155,'Dani',1,4),(10439,5025,'Allison',1,5),(10439,1106749,'Emily Binx',0,6),(10439,61983,'Thackery Binx (voice)',2,7),(10439,426,'Ernie / \'Ice\'',2,8),(10439,951643,'Jay',2,9),(10439,14105,'Jenny Dennison',1,10),(10439,7867,'Dave Dennison',2,11),(10439,17005,'Billy Butcherson',2,12),(10439,1210516,'Headless Billy Butcherson',0,13),(10439,1230381,'Thackery',2,14),(10439,1210517,'Elijah',0,15),(10439,6701,'Thackery\'s Father',2,16),(10439,7210,'Miss Olin',1,17),(10439,4211,'Fireman #1',0,18),(10439,1210503,'Fireman #2',0,19),(10439,172734,'Bus Driver',2,20),(10439,157015,'Cop',2,21),(10439,167379,'Cop\'s Girlfriend',0,22),(10439,156960,'Little Girl \'Neat Broom\'',0,23),(10439,170211,'Singer',2,24),(10439,1210513,'Little Angel',0,25),(10439,1210514,'Lobster Man',0,26),(10439,1210515,'Boy in Class',0,27),(10439,89569,'Calamity Jane',0,28),(10439,80672,'Dancer',1,29),(10439,1201,'Devil (Husband) (uncredited)',2,31),(10439,14911,'The Master\'s Wife (uncredited)',1,32),(23483,27428,'Dave Lizewski / Kick-Ass',2,0),(23483,56734,'Mindy Macready / Hit-Girl',1,1),(23483,54691,'Chris D\'Amico / Red Mist',2,2),(23483,2963,'Damon Macready / Big Daddy',2,3),(23483,2983,'Frank D\'Amico',2,4),(23483,41556,'Marcus',2,5),(23483,3982,'Detective Vic Gigante',2,6),(23483,54729,'Marty',2,7),(23483,27492,'Mr. Lizewski',2,8),(23483,55089,'Todd',2,9),(23483,116881,'Mrs. Zane',1,10),(23483,116882,'Katie Deauxma',1,11),(23483,116883,'Erika Cho',0,12),(23483,4513,'Mrs. Lizewski',1,13),(23483,164250,'Huge Goon',0,14),(23483,18313,'Big Joe',2,15),(23483,17199,'Sporty Goon',0,16),(23483,1132694,'Scary Goon',2,17),(23483,185737,'Baby Goon',2,18),(23483,36631,'Tre Fernandez',2,19),(23483,974,'Cody',2,20),(23483,20759,'Angie D\'Amico',1,21),(23483,24264,'Himself',2,22),(23483,973,'Lobby Goon',2,23),(23483,94432,'Ginger Goon',2,24),(23483,1811956,'Posh Goon',2,25),(10577,17276,'Dracula',2,0),(10577,290,'Matthew Van Helsing',2,1),(10577,9012,'Simon Sheppard',2,2),(10577,42705,'Mary Heller',1,3),(10577,18285,'Solina',1,5),(10577,4987,'Marcus',2,6),(10577,81295,'JT',2,8),(10577,18972,'Nightshade',2,9),(10577,51797,'Father David',2,10),(10577,11868,'Trick',2,11),(10577,1213613,'Valerie Sharpe',1,12),(10577,62521,'Lucy Westerman',1,13),(10577,58058,'Eddie',2,14),(11780,3896,'Robert Roy MacGregor (Rob Roy)',2,0),(11780,4431,'Mary MacGregor',1,1),(11780,5049,'John Graham (Marquis of Montrose)',2,2),(11780,3129,'Archibald Cunningham',2,3),(11780,7036,'Alan MacDonald',2,4),(11780,1248,'Killearn',2,5),(11780,973,'Gregor',2,6),(11780,53815,'Argyll',2,7),(11780,1834,'Morag',1,8),(11780,18280,'Alasdair',2,9),(11780,1307695,'Guthrie',0,10),(11780,1575626,'Betty',1,11),(11780,1475236,'Iain',0,12),(11780,3071,'Coll',2,13),(11780,54014,'Sibbald',2,14),(11780,1564131,'Duncan',0,15),(11780,1450460,'Tinker Woman',1,16),(11780,1073161,'Referee',0,17),(11780,1732890,'Ceilidh Singer',1,18),(11780,208977,'Tavern Lad',0,19),(11780,1749806,'Ranald',0,20),(11780,1749814,'Servant Boy',0,21),(11780,1473717,'Gutherie\'s Opponent',0,22),(11780,1749815,'Sibbald Gang 1',0,23),(10383,1920,'Maya Larkin',1,0),(10383,21343,'Peter Kelson',2,1),(10383,41819,'Claire Van Owen',1,2),(10383,4492,'Father James',2,4),(10383,5049,'Father Lareaux',2,5),(10383,13550,'John Townsend',2,6),(10383,4942,'Henry Birdson',2,7),(10383,1981,'Dr. Allen',1,8),(10383,10379,'Father Thomas',2,9),(10383,38571,'Det. Mike Smythe',2,10),(10383,129661,'Mental Patient',2,12),(10383,91030,'Kleiman',2,13),(10383,56267,'George Viznik',2,14),(10383,945062,'Michael Kim \'Robert\'',2,15),(10383,134531,'Sally Prescott',1,16),(10383,6951,'William Kelson',2,17),(10383,1367129,'Susan Kelson',0,18),(10383,178557,'Father Jeremy',0,19),(10383,75331,'Gina',1,20),(10383,35517,'Mother',1,21),(10383,1219121,'Sharon',0,22),(11516,69681,'Narrator',0,0),(11516,20030,'Narrator (voice)',2,1),(10025,49265,'Ashley Albright',1,0),(10025,19664,'Maggie',1,1),(10025,62064,'Jake Hardin',2,2),(10025,1294,'Peggy Braden',1,3),(10025,2139,'Katy',1,4),(10025,62065,'Dana',1,5),(10025,62066,'Damon Phillips',2,6),(10025,62067,'Antonio',2,7),(10025,62069,'Himself - McFly Band Member',2,8),(10025,62068,'Himself - McFly Band Member',0,9),(10025,62070,'Himself - McFly Band Member',0,10),(10025,62071,'Himself - McFly Band Member',0,11),(10025,41640,'Madame Z',1,12),(10025,60874,'Mac',2,13),(10025,62072,'Tiffany',1,14),(10025,62074,'Doorman Oscar',0,15),(10025,62075,'Aunt Martha',0,16),(10025,62073,'Tough Jailbird',0,17),(10025,62076,'Tom Gilpin',2,18),(10025,62077,'Phillips Minion',2,19),(10025,1504712,'Phillips Minion',1,20),(10025,228431,'Concert Goer',1,21),(15198,934,'John Biebe',2,0),(15198,5587,'Charles Danner',2,1),(15198,1980,'Donna Biebe',1,2),(15198,16475,'Judge Walter Burns',2,3),(15198,17782,'Mayor Scott Pitcher',2,4),(15198,12139,'Mary Jane Pitcher',1,5),(15198,7868,'Bailey Pruitt',2,6),(15198,12260,'\'Skank\' Marden',2,7),(15198,100370,'Stevie Weeks',0,8),(15198,85812,'Connor Banks',2,9),(15198,79072,'\'Tree\' Lane',2,10),(15198,35091,'\'Birdie\' Burns',2,11),(15198,6166,'Bobby Michan',2,13),(15198,27127,'Kevin Holt',2,14),(15198,33527,'Galin Winetka',2,15),(15198,78685,'\'Tinker\' Connolly',2,16),(15198,21731,'Mr. Walsh',2,17),(15198,87020,'Marla Burns',1,18),(15198,79024,'Janice Pettiboe',1,19),(15198,154332,'Sarah Heinz',1,20),(15198,19239,'Joanne Burns',1,21),(15198,77041,'Jack Danby',0,22),(15198,12073,'Donnie Shulzhoffer',2,23),(15198,158377,'Dr. Henry Savage',2,24),(15198,1239283,'Mirabelle Houle',0,25),(15198,1648935,'Joe',0,26),(15198,1752395,'Jury Foreman',0,27),(23172,38425,'Gillian',1,0),(23172,429,'Larry',2,1),(23172,18897,'Bob Ho',2,2),(23172,78887,'Colton James',2,3),(23172,41798,'Glaze',2,4),(23172,62564,'Farren',1,5),(23172,1281596,'Ian',0,6),(23172,1251285,'Nora',0,7),(23172,224446,'Anton Poldark',0,8),(23172,211488,'Creel',0,10),(23172,129713,'Cute Girl',1,11),(23172,1424323,'Chad',0,12),(23172,1424324,'Carl',0,13),(23172,1396029,'Mom',0,14),(23172,1424325,'Principal',1,15),(23172,105786,'Scientist',2,16),(17834,519,'Murray',2,0),(17834,3391,'Claudia',1,1),(17834,11717,'Anabel Greening',1,2),(17834,7866,'Oliver Greening',2,3),(17834,43247,'Jeri',1,4),(17834,17918,'Charlie Greening',2,5),(17834,15532,'Hortence',1,6),(17834,99,'Boots',1,7),(17834,8437,'Rena',1,8),(10016,57395,'Lt. Melanie Ballard',1,0),(10016,9778,'James \'Desolation\' Williams',2,1),(10016,976,'Sgt. Jericho Butler',2,2),(10016,20387,'Bashira Kincaid',1,3),(10016,2230,'Commander Helena Braddock',1,4),(10016,593,'Dr. Arlene Whitlock',1,5),(10016,12371,'Big Daddy Mars',2,6),(10016,49958,'Inquisitor',1,7),(10016,48071,'Dos',2,8),(10016,7853,'Tres',2,9),(10016,6916,'Engineer McSimms',2,10),(10016,57991,'Akooshay',1,11),(10016,62031,'Michael Descanso',2,12),(10016,62032,'Uno',2,13),(10016,62033,'Benchley',0,14),(10016,62034,'Zimmerman',0,15),(10016,16937,'Yared',2,16),(10016,62035,'Man in the Rover',2,17),(10016,62036,'Rodale',2,18),(10016,62037,'Woman Warrior',1,19),(10016,106728,'Young Woman',1,20),(10317,18277,'\'Calamity\' Jane Bodine',1,0),(10317,53650,'Ben',2,1),(10317,879,'Pat Candy',2,2),(10317,35028,'LeBlanc',1,3),(10317,59233,'Buckley',2,5),(10317,43366,'Nell',1,6),(10317,22462,'Pedro Gallo',2,7),(10317,1493208,'Protestor',0,8),(10317,1292730,'',1,9),(10317,1459830,'Devil Mask Man',2,10),(10317,235850,'Eddie',0,11),(10317,1320732,'American IMF Man #1',0,12),(10317,529943,'Rivera Reporter',0,13),(10317,1748388,'Castillo Junior\'s Staff',1,14),(13092,74154,'Young Sidney',0,0),(13092,74155,'Sidney\'s Mother',1,1),(13092,11108,'Sidney Young',2,2),(13092,19537,'Sophie Maes',1,3),(13092,12214,'Eleanor Johnson',1,4),(13092,74156,'Apollo Awards Presenter',0,5),(13092,74157,'Apollo Awards Guest',2,6),(13092,74158,'PR Woman',1,7),(13092,9143,'Clipboard Nazi',1,8),(13092,9030,'Herself',1,9),(13092,205,'Alison Olsen',1,10),(13092,1229,'Clayton Harding',2,11),(13092,40477,'Post Modern Review Staff',2,12),(13092,55466,'Post Modern Review Staff',2,13),(13092,177,'Ingrid',1,14),(13092,6413,'Lawrence Maddox',2,15),(13092,6199,'Mrs. Kowalski',1,16),(13092,1572537,'Mother Superior - Trailer',0,17),(13092,17835,'Himself (uncredited)',2,18),(13092,3051,'Herself (uncredited)',1,19),(13092,204,'Herself (uncredited)',1,20),(13092,8784,'Himself (uncredited)',2,21),(13092,1547937,'Assistant Hotel Manager',0,22),(13092,6973,'Post Modern Review Staff',1,23),(13092,17072,'Barman',0,24),(13092,104795,'Richard Young',2,25),(13092,19148,'Party Guest (uncredited)',2,26),(13495,110,'Diego Alatriste',2,0),(13495,3623,'Angu00e9lica de Alquu00e9zar',1,1),(13495,50994,'u00cdu00f1igo Balboa',2,2),(13495,87015,'Sebastiu00e1n Copons',2,3),(13495,17093,'Conde de Guadalmedina',2,4),(13495,17006,'Maru00eda de Castro',1,5),(13495,36277,'Francisco de Quevedo',2,6),(13495,1610,'Conde Duque de Olivares',2,7),(13495,6535,'Curro Garrote',2,8),(13495,3480,'Fray Emilio Bocanegra',0,9),(13495,1033064,'Martu00edn Saldau00f1a',0,10),(13495,98357,'Mujer de Malatesta',1,11),(13495,116072,'Luis de Alquu00e9zar',2,12),(13495,25026,'Joyera',0,13),(13495,28511,'Pereira',2,14),(13495,78882,'Alguacil',2,15),(10024,6941,'Sara Fitzgerald',1,0),(10024,7447,'Campbell Alexander',2,1),(10024,17140,'Andromeda Fitzgerald',1,2),(10024,3234,'Judge De Salvo',1,3),(10024,95039,'Kate Fitzgerald',1,4),(10024,25933,'Dr. Farquad',1,5),(10024,55317,'Aunt Kelly',1,6),(10024,12261,'Brian Fitzgerald',2,7),(10024,181074,'Jesse Fitzgerald',2,8),(10024,52650,'Gus',2,9),(10024,1109920,'Gloria',1,10),(10024,1592478,'Dr. Nguyen',2,11),(10024,136778,'Bailiff Bert',2,12),(10024,1592035,'Bailiff #2',2,13),(10024,1009511,'Process Server',2,14),(10024,1429705,'Paramedic (uncredited)',0,15),(13490,78029,'Roscoe Jenkins',2,0),(13490,15152,'Papa Jenkins',0,1),(13490,13307,'Mamma Jenkins',1,2),(13490,52847,'Bianca Kittles',1,3),(13490,5726,'Clyde Stubb',2,4),(13490,74615,'Lucinda Allen',1,5),(13490,61981,'Sheriff Otis Jenkins',2,6),(13490,51944,'Reggie',2,7),(13490,60561,'Betty',1,8),(13490,74616,'Jamaal Jenkins',2,9),(13490,74617,'Amy',1,10),(13490,74616,'Jamaal',2,11),(15927,351,'Adela Quested',1,0),(15927,12248,'Prof. Godbole',2,1),(15927,3672,'Mrs. Moore',1,2),(15927,1292,'Richard Fielding',2,3),(15927,78951,'Dr. Aziz H. Ahmed',2,4),(15927,53517,'Ronny Heaslop',2,5),(15927,47520,'Maj. McBryde',2,6),(10188,6279,'Lena Kaligaris',1,0),(10188,20354,'Tibby Rollins',1,1),(10188,59174,'Carmen Lowell',1,2),(10188,59175,'Bridget Vreeland',1,3),(10188,50347,'Julia Beckwith',1,4),(10188,17292,'Ian',2,5),(10188,59177,'Kostas Dounas',2,6),(10188,24200,'Brian McBrian',2,7),(10188,10768,'Christina Lowell',1,8),(10188,21041,'Professor Nasrin Mehani',1,9),(10188,10401,'Greta',1,10),(10188,210695,'Leo',2,11),(10188,205307,'Effie Kaligaris',1,12),(10188,59184,'Franz Vreeland',2,13),(10188,6677,'Bill Kerr',2,14),(10188,1472789,'Katherine Rollins',0,15),(10188,1292111,'Nicky Rollins',0,16),(10188,59178,'Yia Yia',1,17),(10188,155077,'Nigel O\'Bannon',2,18),(10188,1686711,'Melia',0,19),(10188,209465,'Ariadne Kaligaris',0,20),(10188,1192826,'David Breckman',0,21),(10188,2841,'Stage Manager Margaret',1,22),(10188,131724,'Cute Video Couple Girl',1,23),(10188,74046,'Yaffa Waitress',1,24),(34584,29508,'Bastian',2,0),(34584,29512,'Bastian\'s Father',2,1),(34584,29509,'Atreyu',2,2),(34584,124432,'1st Bully',0,3),(34584,124433,'2nd Bully',0,4),(34584,124434,'3rd Bully',0,5),(34584,124435,'Carl Conrad Koreander - The Librarian',2,6),(34584,124443,'Teeny Weeny (voice)',2,14),(34584,124445,'Fairy',0,16),(34584,124442,'The Childlike Empress',1,17),(34584,12693,'Engywook',2,18),(34584,6561,'Cairon - Empress\' Servant',2,19),(34584,12658,'Urgl',1,20),(34584,24320,'Rockbiter / Falkor / G\'mork / Narrator (voice)',0,21),(34584,13812,'Night Hob',0,22),(34584,38053,'Fuchur (voice)',2,23),(34584,1295,'Teeny Weeny',2,24),(12783,116,'Georgiana Cavendish, Duchess of Devonshire',1,0),(12783,5469,'Duke of Devonshire',2,1),(12783,47653,'Richard Brinsley Sheridan',2,2),(12783,16358,'Fox',0,3),(12783,44079,'Lady Spencer',1,4),(12783,55470,'Grey',2,5),(12783,39459,'Bess Foster',1,6),(12783,1227575,'Sir Peter Teazle',0,7),(12783,73462,'Lady Teazle',1,8),(12783,56100,'Heaton',2,9),(12783,3568,'Dr. Neville',2,10),(12783,7025,'Sir James Hare',2,11),(12783,1427529,'Burleigh',0,12),(13155,826,'Dorothy Gale',1,0),(13155,51812,'Dr. Worley / Nome King',2,1),(13155,12657,'Nurse Wilson / Mombi',1,2),(13155,6721,'Aunt Em',1,3),(13155,2454,'Uncle Henry',2,4),(13155,201459,'Tik-Tok (voice)',0,5),(13155,1189041,'Billina (voice)',0,6),(13155,65298,'Jack Pumpkinhead (voice)',2,7),(13155,1189043,'Gump (voice)',0,8),(13155,1151357,'Scarecrow',0,9),(13155,443770,'Cowardly Lion',2,10),(13155,1295,'Tin Man',2,11),(13155,1189044,'Ozma',0,12),(28355,9137,'Emily Jenkins',1,0),(28355,8338,'Lillith Sullivan',1,1),(28355,6972,'Detective Mike Barron',2,2),(28355,100567,'Margaret Sullivan',0,3),(28355,540,'Edward Sullivan',2,4),(28355,51329,'Douglas J. Ames',2,5),(28355,76215,'Wayne',2,6),(28355,65528,'Nancy',1,7),(28355,133926,'Diego',2,8),(28355,1120617,'Javier',2,9),(28355,112643,'Javier\'s Wife',0,10),(28355,11831,'Custody Judge',1,11),(28355,73539,'Domenico D\'Ambrosio',0,12),(28355,75532,'Therapist',1,13),(28355,1145894,'Judge',0,14),(28355,208146,'Co-Worker',2,15),(28355,158609,'Co-Worker',1,16),(28355,203315,'Chief Psychiatrist',2,17),(28355,1187262,'Bus Driver',0,18),(28355,168569,'Young Emily',0,19),(28355,90813,'Emily\'s Mother',1,20),(28355,62711,'Inmate',2,21),(28355,169783,'Nurse',0,22),(28355,1203951,'Nurse',1,23),(28355,37696,'Police Sergeant',2,24),(28355,175734,'Coordinator',0,25),(28355,1218813,'News Anchor',1,26),(28355,83959,'Interviewer',0,27),(28355,41436,'Doctor',2,28),(28355,59183,'Barron\'s Wife',1,29),(28355,90726,'Demon Person',2,30),(28355,1202353,'Mrs. Lynch',1,31),(28355,1203953,'Priest',2,32),(28355,61187,'Businessperson',2,33),(28355,1070350,'Young Cop',0,34),(28355,183016,'Detention Center Cop',2,35),(28355,158390,'Lead Guard',2,36),(28355,65808,'Fire Marshall',2,37),(31582,380,'Walt Koontz',2,0),(31582,1233,'Rusty',2,1),(31582,62014,'Leonard Wilcox',2,2),(31582,4445,'Jacko',2,3),(31582,33658,'Tommy',2,4),(16617,36424,'Gabe Jensen',2,0),(16617,9012,'Lucas Harper',2,1),(16617,2208,'Sara Moore',1,2),(16617,18920,'Nicole Willis',1,3),(16617,5365,'Vince Sherman',2,4),(16617,7498,'Bobby Whitman',2,5),(16617,54500,'Rafe Perry',2,6),(16617,5576,'Jake Harris',2,7),(16617,2224,'J.D. Reston',2,8),(16617,128290,'Jen',1,9),(16617,117200,'Second Man in the Bar',2,10),(16617,27957,'Man in the Bar',0,11),(16617,117201,'Friend of Jen',1,12),(16617,158484,'Attacker',0,13),(14560,32895,'Paul Blart',2,0),(14560,39213,'Veck Sims',2,1),(14560,34195,'Amy',1,2),(14560,78436,'Maya Blart',1,3),(14560,28778,'Mom',1,4),(14560,78437,'Stuart',0,5),(14560,1986,'Chief Brooks',2,6),(14560,21127,'Cmdr. James Kent',2,7),(14560,113245,'Sergeant Howard',2,8),(14560,59019,'Leon',2,9),(14560,440306,'Pahud',2,10),(14560,18917,'Vijay',2,11),(14560,179508,'Karaoke Singer',2,12),(14560,20818,'Jerky Security Guy',2,13),(14560,558036,'Rudolph',2,14),(14560,1021579,'Blitzen',2,15),(14560,117267,'Prancer',0,16),(14560,953838,'Comet',2,17),(14560,558038,'Cupid',0,18),(14560,1077984,'Donner',0,19),(14560,200441,'Vixen',0,20),(14560,60959,'Victoria\'s Secret Sales Associate',1,21),(14560,204120,'Mr. Ferguson',2,22),(14560,74934,'Officer',0,23),(14560,207005,'Bank Manager',0,24),(14560,981323,'Bank Teller',1,25),(14560,1431853,'Shopper with Kids',1,26),(14560,1237533,'Jacob',2,27),(14560,183653,'Old Man on Scooter',2,28),(14560,996242,'SWAT Tech',2,29),(14560,89402,'Drill Instructor',2,30),(14560,1786721,'Shopper',1,31),(14560,43927,'Mother',1,32),(14560,1786725,'Victoria\'s Secret Customer',1,33),(14560,78843,'Victoria\'s Secret Customer',1,34),(14560,62100,'SWAT Officer',2,35),(14560,1759621,'Joe\'s Patron',0,36),(14560,1786730,'Joe\'s Patron',0,37),(14560,1786732,'Father Carl',0,38),(14560,1464956,'Joe\'s Waitress',1,39),(14560,1493117,'Ruby the Waitress',1,40),(14560,1786741,'Girl at Mall',1,41),(14560,1753539,'Mall Patron',1,42),(14560,1753484,'Upscale Shopper',1,43),(14560,1786761,'Mall Shopper',0,44),(14560,1786762,'Mall Cop',0,45),(14560,1053275,'Shopper',1,46),(14560,1786766,'Girl in Mall Throwing Play Balls',1,47),(14560,1103658,'Mall Shopper / Wedding Guest',1,48),(14560,1786767,'Shopper',0,49),(14560,1753502,'Joe\'s Bar Drunk Patron',0,50),(14560,1264229,'Shopper',1,51),(14560,1395906,'Joe',0,52),(14560,1786770,'Wedding Guest',1,53),(14560,1786774,'New Jersey Police Academy Trainee',0,54),(14560,1786775,'Mall Shopper',0,55),(14560,1475121,'Mall Shopper / Wedding Guest',1,56),(14560,1753506,'Christmas Shopper',1,57),(14560,1371552,'Security Guard',0,58),(14560,1786782,'Mall Shopper',0,59),(14560,1786783,'Mall Shopper',0,60),(14560,1753513,'Christmas Shopper',1,61),(14560,1786786,'Kid in Ball Pit',0,62),(14560,1765788,'Shopper',0,63),(14560,1511961,'Shopper',0,64),(14560,1786790,'Mall Shopper',1,65),(14560,1786796,'Mall Shopper',0,66),(14560,1786798,'Amy\'s Friend at Joe\'s',1,67),(14560,1247835,'Upscale Shopper',1,68),(14560,1753518,'New Jersey State Trooper',0,69),(14560,1535492,'Mall Shopper / Bar and Grill Patron',0,70),(14560,1786800,'Mall Shopper',0,71),(14560,1786801,'Mall Shopper',0,72),(14560,1328763,'Mall Shopper',1,73),(14560,1389340,'Surveillence Officer',0,74),(14560,1786806,'Upscale Shopper',1,75),(14560,1786810,'Wedding Guest',0,76),(14560,1786811,'Wedding Guest',0,77),(14560,1786812,'Mall Shopper',0,78),(14560,1753520,'Shopper',1,79),(14560,1424184,'Mall Shopper',1,80),(14560,1786814,'Mall Shopper',0,81),(14560,1753522,'Shopper / Terrorist Victim',0,82),(14560,1786815,'Mall Shopper',0,83),(14560,1786817,'Mall Shopper',0,84),(14560,1786818,'Police Recruit',0,85),(14560,1753524,'Usher',0,86),(14560,1753525,'Shopper',0,87),(14560,1786820,'Shopper',0,88),(14560,1786821,'Mall Shopper',1,89),(14560,1588593,'Mall Shopper / Dancing Bistro Waiter at Wedding',0,90),(14560,1179737,'Shopper',0,91),(14560,1786823,'New Jersey State Trooper',0,92),(14560,578743,'Police Recruit',0,93),(14560,1753529,'Pedestrian',0,94),(14560,1492563,'Bartender',0,95),(14560,1588590,'Wedding Guest',0,96),(14560,1786826,'Police Recruit',0,97),(14560,1786827,'Mall Shopper',0,98),(14560,1786828,'Mall Shopper',1,99),(14560,1786829,'Mall Game Shopper',0,100),(14560,1786830,'Mall Shopper',0,101),(14560,1786831,'Mall Shopper',0,102),(14560,1786832,'Mall Shopper',1,103),(14560,1786851,'Restaurant Patron',0,104),(14560,1753542,'West Orange Police Officer',0,105),(14560,1786852,'Mall Shopper',0,106),(14560,1786853,'Police Officer',0,107),(14560,163909,'William Sonoma Employee',1,108),(14560,1786855,'Video Game Hurdler',0,109),(14560,928305,'Upscale Mall Shopper',1,110),(14560,1786856,'Mall Shopper',0,111),(14560,1753546,'Mom with baby Stroller',1,112),(14560,118641,'Mall Shopper',1,113),(14560,1588592,'Shopper',0,114),(14560,1508818,'Bar Patron / Shopper',2,115),(14560,1786857,'Wedding Guest',0,116),(14560,1786858,'Late-Night Mall Denizen',0,117),(14560,1786859,'Mall Shopper',0,118),(14560,1753549,'Security Guard / Mall Shopper',0,119),(14560,558913,'Shopper',0,120),(14560,1753551,'Shopper',0,121),(10330,8944,'Tess Coleman',1,0),(10330,49265,'Anna Coleman',1,1),(10330,19728,'Ryan',2,2),(10330,14833,'Grandpa',2,3),(10330,159985,'Peg',1,4),(10330,62747,'Jake',2,5),(10330,56567,'Dottie Robertson',0,6),(10330,537,'Mr. Bates',2,7),(10330,61904,'Maddie',1,8),(10330,137169,'Harry Coleman',2,9),(10330,74073,'Pei-Pei',1,10),(10330,112288,'Pei-Pei\'s Mom',1,11),(10330,1542,'Evan',2,12),(10330,68769,'Stacey Hinkhouse',1,13),(10330,1575802,'Same Shirt Girl',0,14),(10330,1433893,'Detention Monitor',0,15),(10330,64829,'Gym Teacher',1,16),(10330,73456,'Butcher Woman',1,17),(10330,1575803,'Ethan - Drummer',0,18),(10330,1526,'Scott - Bass Player',2,19),(10330,156927,'Harry\'s Friend #1',2,20),(10330,4741,'Harry\'s Friend #2',2,21),(10330,1067,'Boris',2,22),(10330,1213609,'Mr. Waters',0,23),(10330,1340662,'Depressed Patient',2,24),(10330,1346157,'Crying Patient',0,25),(10330,23967,'Diary Reading Patient',0,26),(10330,94430,'Harry\'s Teacher',1,27),(10330,1124108,'Talk Show P.A.',0,28),(10330,181876,'Makeup Artist',2,29),(10330,1102046,'Champagne Waitress',0,30),(10330,1175742,'Bouncer',2,31),(10330,1575805,'House of Blues Emcee',0,32),(10330,1575806,'Wedding Baby',0,33),(10189,19274,'Dale Denton',2,0),(10189,17051,'Saul Silver',2,1),(10189,62862,'Red',2,2),(10189,21163,'Ted',2,4),(10189,4810,'Carol',1,5),(10189,55085,'Angie Anderson',1,6),(10189,64144,'Ack',2,7),(10189,16584,'Cheung',2,8),(10189,64143,'Carrie Longwood',2,9),(10189,64342,'Matheson',2,10),(10189,42157,'Robert',2,11),(10189,4496,'Shannon',1,12),(10189,21131,'Mr. Edwards',2,13),(10189,82179,'Clark',0,14),(10189,7574,'Police Liaison Officer',1,15),(10189,19278,'Private Miller',2,16),(10189,1736,'General Bratt',2,17),(10189,83586,'Ken',2,18),(10189,198149,'Bobby',2,19),(10189,116727,'Faye Belogus',1,20),(10189,201829,'Cop with Mole',2,21),(10189,63217,'Mrs. Mendelson',0,22),(10189,204379,'Walt',2,23),(10189,177909,'Blake',0,24),(10189,2842,'Sandra Danby',1,25),(10189,208380,'Scientist',2,26),(10189,1660442,'Mark',2,27),(10189,79416,'Dr. Terrence',2,28),(10189,1660672,'Old Woman',1,29),(10189,205349,'Guy in Car',2,30),(10189,1172865,'Xerox Secretary',0,31),(10189,1240,'Walter - Accountant',2,32),(10189,54783,'Peter - Thug',2,33),(10189,54720,'Jared - Thug',2,34),(10189,79419,'Lance - Thug',0,35),(10189,64143,'Thug',2,36),(10189,55673,'Troy (uncredited)',2,37),(10189,1001980,'Assassin (uncredited)',2,38),(11460,53714,'Lisa Reisert',1,0),(11460,2037,'Jackson Rippner',2,1),(11460,1248,'Joe Reisert',2,2),(11460,34195,'Cynthia',1,3),(11460,58792,'Charles Keefe',2,4),(11460,74573,'Bob Taylor',2,5),(11460,1774125,'Marianne Taylor',0,6),(11460,982705,'Rebecca',1,7),(11460,42186,'Blonde Woman',1,8),(11460,52939,'Headphone Kid',2,9),(11460,59219,'Headphone Kid\'s Brother',0,10),(11460,1537,'Nice Lady',1,11),(11460,34979,'Irate Passenger',2,12),(11460,8266,'Senior Flight Attendant',1,13),(11460,1225809,'Junior Flight Attendant',1,14),(11460,68225,'Lydia Keefe',0,15),(11460,1774124,'Keefe\'s Son',0,16),(11460,104742,'Keefe\'s Daughter',0,17),(11460,155308,'Taxi Driver',2,18),(11460,562701,'Airline Representative',1,19),(11460,20754,'Dallas Ticket Agent',2,20),(11460,205394,'Dallas Ticket Agent',1,21),(11460,39568,'Dallas Gate Agent',0,22),(11460,152355,'Passenger with Iced Mocha',1,23),(22894,6162,'Michael',2,0),(22894,6065,'Bob Hanson',2,1),(22894,79072,'Gabriel',2,2),(22894,61114,'Sandra Anderson',1,3),(22894,17005,'Ice Cream Man',2,4),(22894,155,'Jeep Hanson',2,5),(22894,8169,'Kyle Williams',2,6),(22894,88995,'Charlie',1,7),(22894,17764,'Percy Walker',2,8),(22894,4602,'Howard Anderson',2,9),(22894,58929,'Gladys Foster',1,11),(22894,1125192,'Minivan Boy',0,12),(22894,21882,'Burton',2,13),(22894,21049,'Estevez',2,14),(22894,1223171,'Audrey Anderson',1,15),(15028,17772,'Zak Gibbs',2,0),(15028,21124,'Francesca',1,1),(15028,41465,'Dr. Gibbs',2,2),(15028,67711,'Dr. Earl Dopler',2,3),(15028,2712,'Henry Gates',2,4),(15028,11806,'Jenny Gibbs',1,5),(15028,69119,'Meeker',2,6),(15028,90423,'Kelly Gibbs',1,7),(15028,95475,'Richard',2,8),(15028,38570,'NSA Agent Moore',2,9),(15028,53303,'Administrator',0,10),(15028,203950,'Car Salesman (uncredited)',0,11),(11509,8945,'Paden',2,0),(11509,349,'Emmett',2,1),(11509,1269,'Jake',2,2),(11509,2047,'Malachi \'Mal\' Johnson',2,3),(11509,6197,'Cobb',2,4),(11509,8930,'Sheriff John T. Langston',0,5),(11509,60677,'Trooper (as Brad Williams)',2,6),(11509,13003,'Clerk',2,7),(11509,4080,'Cavalry Sergeant',2,8),(11509,30368,'Boy at Outpost',2,9),(11509,21484,'Deputy Kern',2,10),(11509,183968,'Deputy Block',0,11),(11509,39774,'Carter',2,12),(11509,133580,'Barmaid',0,13),(11509,82507,'Bar Fighter',2,14),(11509,184792,'Bar Fighter',2,15),(11509,235345,'Hat Thief',0,16),(11509,51851,'Stable Boy',2,17),(11509,2165,'Hannah',1,18),(11509,235346,'Conrad',0,19),(11509,235347,'Mr. Parker',0,20),(11509,235348,'Mrs. Parker',1,21),(11509,16433,'Dawson',2,22),(11509,235349,'Baxter',0,23),(11509,194265,'Tall outlaw',0,24),(11509,12516,'Stella',1,25),(11509,4785,'Slick',2,26),(11509,12889,'McKendrick',2,27),(11509,51546,'Ezra',2,28),(11509,16217,'Rae',1,29),(11509,20495,'Tyree',2,30),(11509,133581,'Kate',0,31),(11509,13656,'Phoebe',1,32),(11509,53285,'J.T.',2,33),(11509,57421,'Augie',2,34),(11509,10380,'Bradley',2,35),(11509,28633,'Kelly',2,36),(11509,1885589,'Deputy Kyle',2,37),(11509,180529,'Deputy Garth',2,38),(17047,51391,'Cody Banks',2,0),(17047,18471,'Derek Bowman',2,1),(17047,35865,'Emily Sommers',1,2),(17047,71586,'Berkhamp on Double Bass',2,3),(17047,65528,'Mrs. Banks',1,4),(17047,43774,'Mr. Banks',2,5),(17047,10731,'Jo Kenworth',1,6),(17047,20056,'Diaz',2,7),(17047,9140,'Kenworth',2,8),(17047,1282,'Trival',2,9),(17047,10847,'Santiago',2,10),(17047,80343,'Alex Banks',2,11),(17047,65827,'CIA Director',2,12),(17047,559631,'Kumar',0,13),(17047,1029196,'Ryan',0,14),(17047,29076,'Bender',0,15),(16784,15757,'Harold \'Handy\' Harrison',2,0),(16784,193,'Monroe Eagle Cole',2,1),(16784,4726,'Grace Sutherland',1,2),(16784,16307,'Dr. Sally Mannis',1,3),(16784,35515,'Irma',1,4),(16784,11870,'Charlotte Cole',1,5),(16784,2223,'Bullard',2,6),(16784,9626,'Bert Langdon',2,7),(16784,5897,'Morris Gutman',2,8),(16784,1228299,'Secret Service Agent',2,9),(31640,514,'Alex Gates',2,0),(31640,10822,'Jason',2,1),(31640,16866,'Gabriela \'Gabby\'',1,2),(31640,351,'Suzanne',1,3),(31640,3895,'Victor \'Vic\' Spansky',2,4),(31640,6195,'Henry',2,5),(31640,129430,'Dina Reese',0,6),(31640,5170,'Mike',2,7),(13223,190,'Walt Kowalski',2,0),(13223,74308,'Father Janovich',2,1),(13223,74309,'Tao Vang Lor',2,2),(13223,74312,'Sue Lor',1,3),(13223,10138,'Mitch Kowalski',2,4),(13223,16502,'Karen Kowalski',1,5),(13223,74303,'Ashley Kowalski',1,6),(13223,1990,'Steve Kowalski',0,7),(13223,3911,'Barber Martin',2,8),(13223,1232496,'Tim Kennedy',0,9),(13223,1586430,'Vu',0,10),(13223,1445218,'Grandma Vang Lor',0,11),(13223,1445219,'Youa',0,12),(13223,928572,'Trey',2,13),(13223,1586431,'Kor Khue',0,14),(13223,74304,'Fong/Spider',0,15),(13223,74305,'Paralegal',0,17),(13223,74306,'Hmong Gang Banger 3',0,18),(13223,74307,'Monk',0,19),(13223,74310,'Family Friend',0,20),(13223,74311,'Daniel Kowalski',0,21),(13223,74313,'Latino #3',0,22),(13223,74314,'Day Planner',0,23),(13223,1452207,'Mel',0,24),(13223,1720257,'Prez',0,25),(13223,76690,'Dr. Chu',0,26),(13223,1361061,'Hmong Gangbanger',0,27),(13223,1378664,'Officer',0,28),(13223,928543,'Extra (uncredited)',0,29),(13223,1480058,'Neighbor (uncredited)',2,30),(13223,1292651,'Family Friend (uncredited)',0,31),(13223,1201311,'Man on Street (uncredited)',0,32),(13223,1083168,'Blonde (uncredited)',1,33),(13223,1735890,'Smokie',0,34),(13223,1735891,'Bartender',0,35),(13223,1735892,'Al',0,36),(13223,1735893,'Darrell',0,37),(13223,1735894,'David Kowalski',0,38),(13223,1735896,'Josh Kowalski',0,39),(13223,1735897,'Gee',0,40),(13223,1735898,'Head Latino',0,41),(13223,1735899,'Latino Gangbanger',0,42),(13223,1735900,'Latino Gangbanger',0,43),(13223,1735901,'Hmong Grandfather',0,44),(13223,1654074,'Lawyer',0,45),(13223,1735902,'Muslim Receptionist',0,46),(13223,1735903,'Waitress',0,47),(13223,1735905,'White Woman Neighbor',0,48),(13223,1735907,'Church Member',0,49),(13223,1735909,'Family Friend',0,50),(13223,1735911,'Man on Street',0,51),(10523,16851,'George W. Bush',2,0),(10523,9281,'Laura Bush',1,1),(10523,9560,'Barbara Bush',1,2),(10523,65524,'Tony Blair',2,3),(10523,9030,'Condoleezza Rice',1,4),(10523,3037,'Dick Cheney',2,5),(10523,349,'Donald Rumsfeld',2,6),(10523,2505,'George Herbert Walker Bush',2,7),(10523,2954,'Colin Powell',2,8),(10523,13014,'Karl Rove',2,9),(10523,14888,'George Tenet',2,10),(10523,33241,'General Tommy Franks',2,11),(10523,50095,'Jeb Bush',2,12),(10523,52997,'Ari Fleischer',2,13),(10523,825,'Rev. Earle Hudd',2,14),(10523,3492,'Speechwriter #1',2,15),(10523,17772,'Fraternity President',2,16),(10523,6407,'Fran',1,17),(11024,33260,'Fred',2,0),(11024,11863,'Daphne',1,1),(11024,26457,'Shaggy',2,2),(11024,1817,'Velma',1,3),(11024,13922,'Patrick',2,4),(11024,1039,'Old Man Wickles',2,5),(11024,1462,'Jacobo',2,6),(11024,5588,'Heather',0,7),(11024,58271,'Scooby-Doo (voice)',0,8),(11024,1212818,'Himself',0,10),(11024,1228374,'Investor',2,11),(11024,83424,'Daphne\'s Tattooed Fan #2',2,12),(12589,73016,'James \'Jimmy\' Isaac Neutron (voice)',1,0),(12589,53570,'Judy Neutron (voice) / VOX (voice)',1,1),(12589,60258,'Hugh Neutron (voice)',2,2),(12589,59782,'Sheen Estevez (voice)',2,3),(12589,2387,'King Goobot V (voice)',2,4),(12589,519,'Ooblar (voice)',2,5),(12589,15831,'Goddard (voice) / Poultra (voice)',2,6),(12589,43125,'Carl Wheezer (voice) / Mr. Wheezer (voice) / Mrs. Wheezer (voice) / Kid in Classroom (voice)',2,7),(12589,78799,'Cindy Vortex (voice)',1,8),(12589,113918,'Libby Folfax (voice)',1,9),(12589,95257,'Nick Dean (voice) / Britney (voice) / PJ (voice)',0,10),(12589,78619,'Yokian Guard (voice) / Gus (voice)',2,11),(12589,59784,'Mr. Estevez (voice)',2,12),(12589,12077,'Ultra Lord (voice) / Mission Control (voice) / General Bob (voice)',2,13),(12589,60238,'Bobby (voice) / Kid (voice) / Control Yokian (voice)',2,14),(12589,54427,'Zachary (voice) / Reporter (voice) / Angie (voice) / Libby\'s Mom (voice)',1,15),(12589,8263,'Ms. Winfred Fowl (voice)',1,16),(12589,23679,'Bobby\'s Twin Brother (voice) / Butch (voice) / Jailbreak Cop (voice) / Old Man Johnson (voice) / Robobarber (voice) / Flurp Announcer (voice) / Yokian Officer (voice) / Anchor Boy (voice) / Guard (voice)',2,17),(12589,1219832,'Yokian Newscaster #1',0,18),(12589,1223103,'Yokian Newscaster #2 (voice)',0,19),(12589,1219832,'Yokian Newscaster #1 (voice)',0,20),(12589,23680,'Norad Officer (voice)',2,21),(12589,154106,'Libby\'s Dad (voice)',0,22),(10327,368,'Elle Woods',1,0),(10327,35,'Rep. Victoria Rudd',1,1),(10327,9788,'Grace Rossiter',1,2),(10327,38334,'Paulette',1,3),(10327,151124,'Ray Fuchs',0,4),(10327,36422,'Emmett Richmond',2,5),(10327,14888,'Stanford Marks',2,6),(10327,13314,'Congresswoman Libby Hauser',1,7),(10327,25884,'Reena Giuliani',1,8),(10327,10402,'Serena McGuire',1,10),(10327,1150085,'Timothy McGinn',0,11),(10327,15253,'Michael Blaine',2,12),(10327,79497,'UPS Guy',2,13),(10327,64930,'Sid Post',2,14),(10327,168797,'Madeline Kroft',1,15),(10327,22126,'Margot',1,16),(10327,1371769,'Delta Nu Sister',1,17),(10327,6944,'Security Guard',1,18),(10327,10489,'Detective Finchley',2,19),(10327,203086,'Associate',2,20),(10327,1827518,'Mailroom Guy',2,21),(10327,154799,'Kevin',2,22),(10327,58528,'Lab Technician',2,23),(10327,162878,'Female Partner',0,24),(10327,41506,'Amy',0,25),(10327,1795301,'Staff Member',0,26),(10327,1217939,'Guard',2,27),(10327,5385,'Dog Spa Receptionist',1,28),(10327,1227231,'Ted Hall',0,29),(10327,56456,'Elle\'s Father',2,30),(10327,43432,'Elle\'s Mother',1,31),(11969,6856,'Wyatt Earp',2,0),(11969,5576,'Doc Holliday',2,1),(11969,16431,'Virgil Earp',2,2),(11969,2053,'Morgan Earp',2,3),(11969,6280,'Curly Bill Brocius',2,4),(11969,2712,'Johnny Ringo',2,5),(11969,10017,'Henry Hooker',2,6),(11969,19143,'Billy Breckinridge',2,7),(11969,4602,'Behan',2,8),(11969,32747,'Ike Clanton',2,9),(11969,19159,'Billy Clanton',2,10),(11969,65002,'Josephine Marcus',1,11),(11969,47533,'Allie Earp',1,12),(11969,936813,'Louisa Earp',0,13),(11969,58866,'Mattie Earp',1,14),(11969,36059,'Kate',1,15),(11969,12132,'Sherman McMasters',2,16),(11969,4316,'Marshal Fred White',2,17),(11969,879,'Johnny Tyler',2,18),(11969,941,'Frank Stillwell',2,19),(11969,1229197,'Milt Joyce',0,20),(11969,85142,'Florentino',2,21),(11969,103011,'Tom Mclaury',2,22),(11969,31512,'Frank McLaury',2,23),(11969,1954,'Mr. Fabian',2,24),(11969,1223940,'Billy Claiborne',0,25),(11969,38405,'Barnes',2,26),(11969,68447,'Wes Fuller',0,27),(11969,1333809,'Pony Deal',0,28),(11969,113781,'Texas Jack Vermillion',2,29),(11969,71562,'Turkey Creek Jack Johnson',2,30),(11969,12646,'Mayor John Clum',2,31),(11969,148130,'Professor Gillman',2,32),(11969,134000,'Crawley Dake',2,33),(11969,39780,'Ed Bailey',2,34),(11969,1803309,'Hank Swilling',0,35),(11969,116433,'Dr. Goodfellow',2,36),(11969,593206,'Lucinda Hobbs',0,37),(11969,1730173,'Father Feeney',0,38),(11969,10158,'Narrator (voice)',2,39),(11969,37251,'Ranch Hand',2,40),(11969,1333597,'Mexican bride (uncredited)',0,41),(11096,380,'David Callaway',2,0),(11096,501,'Emily Callaway',1,1),(11096,10696,'Katherine',1,2),(11096,1951,'Elizabeth',1,3),(11096,27563,'Alison Callaway',1,4),(11096,19152,'Sheriff Hafferty',2,5),(11096,6832,'Laura',1,6),(11096,31512,'Steven',2,7),(11096,1789205,'Amy',0,8),(11096,2839,'Store Clerk (uncredited)',2,9),(10923,51391,'Cody Banks',2,0),(10923,5958,'Natalie Connors',1,1),(10923,52929,'Ronica Miles',1,2),(10923,65827,'CIA Director',2,3),(10923,65528,'Mrs. Banks',1,4),(10923,58954,'Earl',2,6),(10923,42993,'Dr. Connors',2,7),(10923,16743,'Molay',2,8),(10923,43774,'Mr. Banks',2,9),(10923,6972,'Brinkman',2,10),(10923,1505136,'Surveillance Van Agent',2,11),(10923,53119,'Surveillance Van Agent',2,12),(10923,58655,'Double Agent',2,13),(10923,80343,'Alex Banks',2,14),(10923,87739,'Mom',1,15),(10923,62918,'McAllister',2,16),(10923,1243137,'Amy',1,17),(10923,83424,'Rosychuk',2,18),(10923,75467,'Army Colonel',2,19),(10923,41664,'Mr, Yip',2,20),(10923,1831853,'Bug Man',0,21),(11283,7056,'Nanny McPhee',1,0),(11283,5472,'Mr. Brown',2,1),(11283,9015,'Evangeline',1,2),(11283,25663,'Simon',2,3),(11283,23775,'Tora',1,4),(11283,89827,'Eric',0,5),(11283,150544,'Sebastian',0,6),(11283,14730,'Aunt Adelaide',1,7),(11283,9139,'Mrs. Quickly',1,8),(11283,11356,'Mrs. Blatherwick',1,9),(11283,42998,'Letita',1,10),(11283,937,'Mr. Wheen',2,11),(11283,17787,'Mrs. Partridge (voice)',1,12),(11283,23429,'Vicar',2,13),(11676,504,'Nick Beam',2,0),(11676,78029,'Terrence Paul T-Paul Davidson',2,1),(11676,11885,'Davis Rig Lanlow',2,2),(11676,11164,'Ann Beam',1,3),(11676,43853,'Bertha Mama Davidson',1,4),(11676,4808,'Charlie Dunt',2,5),(11676,21731,'Phillip P.B. Barrow',2,6),(11676,59967,'Danielle',1,7),(11676,4489,'Security Guard Baxter',2,8),(14317,22082,'Eliza Thornberry (voice)',1,0),(14317,71535,'Darwin (voice)',2,1),(14317,34985,'Phaedra (voice)',1,2),(14317,13472,'Nigel Thornberry (voice)',2,3),(14317,29791,'Cordelia Thornberry (voice)',1,4),(14317,21320,'Debbie Thornberry (voice)',1,6),(14317,1237,'Donnie Thornberry (voice)',2,7),(14317,113918,'Cheetah Cubs (voice)',1,8),(14317,54427,'Tally (Cheetah Cub) (voice)',1,9),(14317,1981,'Akela (Cheetah Mother) (voice)',1,10),(14317,2112,'Jomo (voice)',2,11),(14317,80223,'Sarah Wellington (voice)',1,12),(14317,146182,'Victoria (voice)',1,13),(14317,59057,'Jane (voice)',0,14),(14317,1212225,'Marianne Thornberry (voice)',0,15),(14317,52404,'Schoolgirl (voice)',1,16),(14317,3141,'Bree Blackburn (voice)',1,17),(14317,4757,'Sloan Blackburn (voice)',2,18),(20694,15274,'Tommy Pickles',1,0),(20694,200,'Chuckie Finster',1,1),(20694,60739,'Phil DeVille / Lil DeVille / Betty DeVille',1,2),(20694,86432,'Kimi Finster',1,3),(20694,13472,'Nigel Thornberry',2,4),(20694,86434,'Grandpa Lou',2,5),(20694,34983,'Charlotte Pickles',1,6),(20694,19546,'Drew Pickles / Charles \'Chaz\' Finster, Sr.',2,7),(20694,86436,'Kira Finster',0,8),(20694,61969,'Howard DeVille',2,9),(20694,62590,'Stuart \'Stu\' Pickles',2,10),(20694,15762,'Dil Pickles',1,11),(20694,34985,'Susie Carmichael',1,12),(20694,80719,'Angelica Pickels',1,13),(20694,62,'Spike',2,14),(12277,62842,'Undercover Brother',2,0),(12277,58317,'Mr. Feather',2,1),(12277,9205,'White She Devil',1,2),(12277,53923,'Sistah Girl',1,3),(12277,8687,'The Chief',2,4),(12277,41686,'Lance',2,5),(12277,4169,'Conspiracy Brother',2,6),(12277,54043,'Smart Brother',0,7),(12277,3799,'Gen. Warren Boutwell',0,8),(12277,68750,'MR. UB',2,9),(12277,7172,'Himself',2,10),(12620,1772,'Shelley',1,0),(12620,54693,'Natalie',1,1),(12620,52852,'Mona',1,2),(12620,77088,'Harmony',1,3),(12620,20848,'Joanne',1,4),(12620,31309,'Hugh Hefner',2,5),(12620,4443,'Dean Simmons',2,6),(12620,821,'Mrs. Hagstrom',1,7),(12620,74046,'Lilly',1,8),(12620,74047,'Colby',0,9),(12620,3492,'Oliver',2,10),(12620,131723,'Ashley',1,11),(12620,1202550,'Girl at Panhellenic',0,12),(12620,214834,'Carrie Mae',1,13),(12620,1528691,'Tanya',0,14),(12620,34844,'Cassandra',1,15),(12620,1105796,'Kip',2,16),(12620,32907,'Playboy Photographer',2,17),(12620,35806,'Himself',2,18),(12620,166029,'Cop',2,19),(12620,60955,'Himself',0,20),(12620,20818,'Waiter #2 (uncredited)',2,21),(14177,15758,'Gina Norris',1,0),(14177,5588,'Lynn',0,1),(14177,1533,'Terri',1,2),(14177,1981,'Ms. Josephine',1,3),(14177,8211,'Joanne',1,4),(14177,133302,'Chanel',1,5),(14177,105880,'Rochelle',1,6),(14177,84206,'Darnelle',1,7),(14177,60483,'Denise',0,8),(14177,216119,'Rita',1,9),(14177,4724,'Jorge',2,10),(14177,938,'Joe',2,11),(14177,6944,'Big Customer',1,12),(14177,18975,'Corky (uncredited)',2,13),(10735,29220,'Daphne Reynolds',1,0),(10735,5472,'Henry Dashwood',2,1),(10735,11164,'Libby Reynolds',1,2),(10735,378,'Alistair Payne',2,3),(10735,78730,'Ian Wallace',2,4),(10735,20300,'Jocelyn Dashwood',1,5),(10735,10731,'Glynnis Payne',1,6),(10735,47625,'Clarissa Payne',0,7),(10735,1266585,'Percy',2,8),(10735,1517174,'Armistead Stuart',0,9),(10735,15736,'Princess Charlotte',1,10),(10735,72003,'Noelle',1,11),(10735,1267471,'Prince Charles',0,12),(10735,1417042,'Policeman',0,13),(10735,25074,'Bride\'s Father',2,14),(10735,20243,'Lord Orwood',2,15),(10735,1226857,'Dancer',0,16),(10735,1221046,'Henry\'s Secretary',0,17),(11351,6719,'Jack Taggart, Sr.',2,0),(11351,56357,'The Creeper',2,1),(11351,69119,'Deaundre \'Double D\' Davis',2,2),(11351,69120,'Scott \'Scotty\' Braddock',2,3),(11351,46927,'Jake Spencer',0,4),(11351,1340627,'Minxie Hayes',0,5),(11351,63465,'Rhonda Truitt',1,6),(11351,1219497,'Coach Charlie Hanna',0,7),(11351,134450,'Andy \'Bucky\' Buck',2,8),(11351,96793,'Dante Belasco',2,9),(11351,1340628,'Kimball \'Big K\' Ward',0,10),(11351,945612,'Coach Dwayne Barnes',2,11),(11351,33052,'Jack Taggart, Jr.',2,12),(11351,1225512,'Billy Taggart',0,13),(11351,15033,'Darry Jenner',2,14),(11351,43859,'Bus Driver Betty Borman',1,15),(10030,31837,'Dr. Charlie Logan',2,0),(10030,56731,'Cam Wexler',1,1),(10030,58873,'Dr. Stu Kaminsky',2,2),(10030,62171,'Reba',1,3),(10030,205300,'Joe',2,4),(10030,27775,'Carol',1,5),(10030,62167,'Birthday Girl',0,6),(10030,62168,'Goth Girl',1,7),(10030,62169,'Jennifer',1,8),(10030,33053,'Bride',1,9),(10030,62172,'Groomsman',2,10),(10030,58908,'Dirty Talker',0,11),(10030,58393,'Cam\'s Wedding Friend',1,12),(10030,1216429,'Woman in Car',0,13),(10030,1224766,'Lara',0,14),(10030,1558944,'George W. Lover',0,15),(10030,1066283,'Holy Lover',1,16),(10030,8338,'Lila',1,17),(10030,59240,'Anisha',1,18),(10030,33355,'Howard',2,19),(10030,1224825,'Howard\'s Wife',1,20),(10030,83423,'Gossipy Woman #1',1,21),(10030,37980,'Wedding D.J.',2,22),(10030,1666302,'Red Haired Lover',1,23),(10030,83852,'Boy in Penguin Habitat',2,24),(10623,1336,'Su',2,0),(10623,21355,'Anthony Fait',2,1),(10623,11024,'Sona',1,2),(10623,18471,'Tommy',2,3),(10623,74036,'Archie',2,4),(10623,18702,'Yao Ling',2,5),(10623,17773,'Daria',1,6),(10623,127451,'Ling\'s Hitman',2,7),(10623,18297,'Willy Chickens',2,8),(11237,21798,'Bill Johnson',2,0),(11237,20388,'Sam Rogers',1,1),(11237,12793,'Dr. Jack Byron',2,2),(11237,61852,'Dr. Ben Douglas',2,3),(11237,342,'Cole Burris',2,4),(11237,19860,'Tran',2,5),(11237,53918,'Gail Stern',1,6),(11237,9779,'Gordon Mitchell',2,7),(11237,62753,'John Livingston',2,8),(11237,81172,'Christian Van Dyke',2,9),(11237,186939,'Lawyer',0,10),(11237,10480,'CEO',2,11),(11932,1471,'Chucky',2,0),(11932,7906,'Tiffany',1,1),(11932,1370,'Chucky (voice)',2,2),(11932,25541,'Jade',1,3),(11932,70958,'Jesse',2,4),(11932,27772,'Chief Warren Kincaid',2,5),(11932,19578,'Damien',1,6),(11932,11074,'Motel Maid',1,7),(11932,166807,'David',2,8),(11932,36173,'Lt. Preston',2,9),(11932,1846135,'Norton',0,10),(11932,55876,'Russ',2,11),(11932,64915,'Diane',0,12),(11932,106711,'Bailey',2,13),(11932,62527,'Stoner',0,14),(11932,1846136,'Girl at One-Stop',0,15),(11932,1218206,'Lt. Ellis',0,16),(11932,1846137,'Justice of the Peace',0,17),(11932,181018,'Reporter',0,18),(11165,1936,'Admiral Husband E. Kimmel',2,0),(11165,68411,'Vice-Admiral Isoroku Yamamoto',2,1),(11165,7664,'Henry L. Stimson, U.S. Secretary of War',2,2),(11165,13251,'Commander Minoru Genda',2,3),(11165,5249,'Lt. Colonel Rufus S. Bratton',2,4),(11165,6577,'Vice Admiral William F. \'Bull\' Halsey Jr.',2,5),(11165,118989,'Lt. Commander Mitsuo Fuchida',0,6),(11165,4765,'Lt. General Walter C. Short',2,8),(11165,66712,'Lt. Commander Alwin D. Kramer',2,9),(11165,123380,'Lt. Commander Francis J. Thomas - USS Nevada',2,10),(11165,123381,'Prime Minister Prince Fumimaro Konoye',0,11),(11165,13994,'Secretary of the Navy Frank Knox',2,12),(11165,123382,'Admiral Zengo Yoshida',0,13),(11165,12312,'Captain John B. Earle',2,14),(11165,63707,'Foreign Minister Yosuke Matsuoka',2,15),(11165,30907,'Rear Admiral Tamon Yamaguchi',2,16),(11165,29719,'Admiral Harold R. Stark',2,17),(11165,123384,'Admiral Koshiro Oikawa',0,18),(11165,9112,'Lieutenant Harold Kaminsky',2,19),(11165,9110,'Colonel Edward F. French',2,20),(11165,15953,'General George C. Marshall',2,21),(11165,106165,'Vice Admiral Chuichi Nagumo',2,22),(11165,150249,'Japanese Ambassador Kichisaburo Nomura',0,23),(11165,1459104,'Captain Kameto \'Gandhi\' Kuroshima',0,24),(11165,1459105,'Joseph C. Grew',0,25),(11165,1459106,'Pvt. Joseph L. Lockard',0,26),(11165,1459107,'Lt. Colonel William H. Murphy',0,27),(11165,1459108,'First Lieutenant Kermit A. Tyler',0,28),(11165,1459109,'Mess Attendant 3rd Class Doris Miller',0,29),(11165,1459118,'Lt. Col. Carrol A. Powell',0,30),(21724,84835,'Megan',1,0),(21724,87822,'Thomas',2,1),(21724,154000,'Charity',1,2),(21724,1534,'Ron',2,3),(21724,58563,'Sugar Bear',2,4),(21724,35690,'Baby Daddy',2,5),(21724,9562,'Mr. Moody',2,6),(21724,1181331,'Keloid',1,7),(21724,12110,'Ms. Cameltou00e9',1,8),(21724,77448,'Tyler',2,9),(11543,57755,'Roy Munson',2,0),(11543,1811,'Ishmael Boorg',2,1),(11543,25308,'Claudia',1,2),(11543,1532,'Ernie McCracken',2,3),(11543,1534,'The Gambler',2,4),(11543,101975,'Mr. Boorg',2,5),(11543,1824206,'Sarah Boorg',1,6),(11543,14700,'Owner Of Stiffy\'s',2,7),(11543,7401,'Landlady',1,8),(11543,60672,'Thomas',2,9),(11543,951387,'Mrs. Boorg',1,10),(11543,162924,'Stanley Osmanski',2,11),(11543,42199,'Calvert Munson',2,12),(11543,149484,'Young Roy',2,13),(11543,7412,'1979 Bowling Buddy',0,14),(11543,1076569,'1979 Bowling Buddy',0,15),(11543,173810,'Fatima',2,16),(11543,1496718,'1979 Waitress',1,17),(11543,1229514,'Beaver Valley Bowl Manager',2,18),(11543,116908,'Red Neck Stutterer',0,19),(11543,12772,'Beaver Bowl Hustler',0,20),(11543,1824201,'Make-Out Queen',0,21),(11543,1542,'Purse Snatcher',2,22),(11543,93846,'Lancaster Bowl Manager',2,23),(11543,1824202,'Cocktail Waitress',1,24),(11543,77076,'Scranton Wino',2,25),(11543,153459,'Bowling Priest',0,26),(11543,177692,'Skidmark\'s Squirrel',1,27),(11543,87021,'Tavern Drunk',0,28),(11543,60019,'Beautiful Dancer',1,29),(11543,1580198,'Gas Station Attendant',2,30),(11543,1824208,'Nouchi\'s Gal',1,31),(11543,1824209,'Silver Legacy Maid',0,32),(13374,49961,'Casey Carlyle',1,0),(13374,3234,'Joan Carlyle',1,1),(13374,27561,'Ann',1,2),(13374,17265,'Gen Harwood',1,3),(13374,2109,'Tina Harwood',1,4),(13374,1045630,'Mr. Bast',2,5),(13374,107040,'Teddy Harwood',2,6),(13374,947207,'Nikki Fletcher',1,7),(13374,947209,'Tiffany Lai',1,8),(13374,35517,'Nikki\'s Mom',1,9),(13374,178068,'Tiffany\'s Dad',0,10),(13374,1291605,'Tiffany\'s Coach',0,11),(13374,1291606,'Nikki\'s Coach',2,12),(13374,1291607,'Brian',0,13),(13374,979671,'Hot Dog Kid',1,14),(22971,71070,'Savannah Lynn Curtis',1,0),(22971,38673,'John Tyree',2,1),(22971,9976,'Tim Wheddon',0,2),(22971,28633,'Mr. Tyree',2,3),(22971,53368,'Randy',2,4),(22971,15564,'Captain Stone',2,5),(22971,84482,'Alan at 14',2,6),(22971,7219,'Mr. Curtis',2,7),(22971,51976,'Noodles',2,8),(34813,47296,'Franklin Clay',2,0),(34813,8691,'Aisha al-Fadhil',1,1),(34813,16828,'Jake Jensen',2,2),(34813,17605,'William Roque',2,3),(34813,31132,'Linwood \'Pooch\' Porteous',2,4),(34813,59129,'Carlos \'Cougar\' Alvarez',2,5),(34813,12261,'Max',2,6),(34813,7497,'Wade Travis',2,7),(34813,64147,'Vikram',2,8),(34813,113230,'Fadhil',2,9),(34813,143244,'Jolene',1,10),(34813,1644991,'Nabil',0,11),(34813,1725970,'Mr. Anderson',0,12),(34813,113231,'Jet Pilot',2,13),(34813,1611777,'Soldier',0,14),(34813,1594173,'',2,15),(10431,1336,'Rogue',2,0),(10431,976,'Special Agent Jack Crawford',2,1),(10431,11389,'Li Chang',2,2),(10431,6278,'Kira Yanagawa',1,3),(10431,40481,'Benny',2,4),(10431,3712,'Dr. Sherman',2,5),(10431,4994,'Shiro Yanagawa',2,6),(10431,61697,'Special Agent Goi',2,7),(10431,44151,'Jenny Crawford',1,8),(10431,41561,'Takada',2,9),(10431,65195,'Special Agent Wick',2,10),(10431,65196,'Maria',1,11),(10431,11677,'Special Agent Tom Lone',2,12),(10431,65197,'Wu Ti',2,13),(10431,65200,'Diane Lone',1,14),(10431,65199,'Ana Chang',1,15),(10431,65198,'Temple Garden Warrior',2,16),(10431,2250,'Leevie',2,17),(10431,65201,'Amy Lone',0,18),(10431,65202,'Daniel Crawford',2,19),(10431,1655618,'Mexican Interpol Agent',2,20),(10167,23880,'Sasha Petrosevitch',2,0),(10167,9779,'Donald Robert Johnson',2,1),(10167,61658,'Nicolas \'Nick\' Frazier',2,2),(10167,19456,'49er Six',1,3),(10167,52300,'Special Agent Ellen Williams',1,4),(10167,41737,'Warden El Fuego',2,5),(10167,52330,'Reporter',1,6),(10167,81583,'Twitch',2,7),(10167,87360,'Little Joe',2,8),(10167,36058,'Lester McKenna',2,9),(10167,15282,'49er Three',2,10),(10167,19903,'Sonny Eckvall',2,11),(10167,110019,'Frank Hubbard',2,12),(10167,83052,'Judge Jane McPherson',1,13),(10167,157015,'Guard Damon J. Kestner',2,14),(10167,1230455,'FBI Agent',0,15),(18147,59258,'Oliver Porter',2,0),(18147,18975,'Zach Van Bourke',2,1),(18147,1214870,'Charlie Goldfinch',2,2),(18147,167689,'Spencer Davenport',2,3),(18147,63992,'Timothy \'Beef\' Wellington',2,4),(18147,137424,'Grace Conrad',1,5),(18147,429728,'Donna Malone',1,6),(18147,52997,'Sam Davenport',2,7),(18147,15423,'Valerie Davenport',1,8),(18147,433243,'Katherine Davenport',1,9),(18147,41232,'Cindi',1,10),(18147,71403,'Head Guard Hoffman',2,11),(18147,28638,'Ernie',2,12),(18147,41091,'Carole Malone',1,13),(18147,25147,'Alan Davies',2,14),(18147,1768896,'Mary Lynn',0,15),(18147,107770,'Desk Attendant',2,16),(18147,125167,'Restaurant Hostess',1,17),(17170,521,'Jamie Conway',2,0),(17170,2628,'Tad Allagash',2,1),(17170,16171,'Amanda',1,2),(17170,4765,'Drunken Writer/Mr. Hardy',2,3),(17170,1902,'Mother',1,4),(17170,12967,'Megan',1,5),(17170,36926,'Clara',1,6),(17170,177443,'Vicky',1,7),(17170,11783,'Mr. Vogel',0,8),(17170,4254,'Rittenhouse',2,9),(17170,12224,'Yasu Wade',2,10),(17170,21282,'Ferret Man',2,11),(17170,183517,'Kathy',1,12),(17170,8213,'Rich Vanier',2,13),(17170,1048569,'Stevie',0,14),(17170,1535802,'Bald Girl',0,15),(17170,83196,'Theresa',1,16),(17170,6473,'Elaine',1,17),(17170,73513,'Maitre d\'',2,18),(17170,42324,'Barbara',1,19),(17170,1462345,'Walter Tyler',0,20),(17170,3208,'Pony Tail Girl',1,21),(17170,4158,'Leather Lady',1,22),(17170,11076,'Bartender at Fashion Show',2,23),(18975,2641,'Geppetto',2,0),(18975,53283,'Pinocchio',2,1),(18975,35341,'Leona',0,2),(18975,1646,'Lorenzini',2,3),(18975,10739,'Felinet',1,4),(18975,60949,'Volpe',2,5),(18975,94968,'Lampwick',2,6),(18975,123632,'Pepe (voice)',2,7),(18975,5539,'Baker\'s Wife',1,8),(15487,10959,'Francis Ouimet',2,0),(15487,8435,'Harry Vardon',2,1),(15487,216,'Eddie Lowery',2,2),(15487,22109,'Lord Northcliffe',2,3),(15487,229031,'Sarah Wallis',1,4),(15487,13550,'Arthur Ouimet',2,5),(22825,6941,'Norma Lewis',1,0),(22825,11006,'Arthur Lewis',2,1),(22825,8924,'Arlington Steward',2,2),(22825,80661,'Garcin',2,3),(22825,8986,'Norm Cahill',2,4),(22825,1578,'Dick Burns',2,5),(22825,94098,'Dana',1,6),(22825,1989,'Lana Burns',1,7),(22825,39127,'Rhonda Martin',1,8),(22825,997207,'Rebecca Matheson',1,9),(22825,1263931,'Suzanne Weller',0,10),(22825,1263937,'Female 911 Operator',0,11),(22825,155595,'Diane Carnes',1,13),(22825,1264229,'911 Operator',1,14),(22825,1266054,'Deborah Burns',1,15),(22825,928638,'Lurker (uncredited)',0,16),(11152,11023,'Eric',2,0),(11152,17243,'Jeff McIntire',2,1),(11152,20089,'Amy',1,2),(11152,51975,'Stacy',1,3),(11152,29234,'Mathias',2,4),(10591,46593,'Matthew Kidman',2,0),(10591,25837,'Danielle',1,1),(10591,18082,'Kelly',2,2),(10591,1736,'Hugo Posh',2,3),(10591,59238,'Eli',2,4),(10591,17142,'Klitz',2,5),(10591,19207,'Mr. Kidman',2,6),(10591,54587,'April',1,7),(10591,65738,'Derek',2,8),(10591,65745,'Jeannie',0,9),(10591,65742,'Samnang',0,10),(10591,65741,'Troy',2,11),(10591,65740,'Mrs. Kidman',1,12),(10591,65739,'Ferrari',1,13),(10591,65743,'Hunter',2,14),(10591,65744,'Dr. Salinger',2,15),(10591,65746,'Mr. Ruether',0,16),(10591,65748,'Mr. Peterson',2,17),(10591,65749,'Mrs. Peterson',1,18),(10591,65747,'Ryan Wenger',0,19),(10591,59315,'Kellie',1,20),(10591,128267,'TV Talk Show Host',2,21),(10591,74607,'Jane',1,22),(10861,15111,'Mikhail Suverov',2,0),(10861,57395,'Alex Minetti',1,2),(10861,7037,'Sebastien',2,3),(10861,7471,'Ivan Dzasokhov',2,4),(10861,85142,'Agent Pellman',2,5),(10861,138401,'Agent Loomis',2,6),(10861,28040,'Yuri',0,8),(10861,38567,'Nicholas',2,9),(10861,1363425,'Red Face',0,10),(10861,1583767,'Davis Hartley',2,11),(10861,58805,'Dmitri Kirov',2,12),(10861,128188,'Morris',2,13),(10861,28025,'Martin',0,14),(10861,184488,'Anderson',2,15),(10861,1392105,'Vladimir',0,16),(10861,32340,'Boris',0,17),(10861,8362,'Tim',2,18),(10861,1499186,'Ronnie',0,19),(10861,54793,'Bohemia Bartender',2,20),(10861,86237,'Bohemia Doorman',2,21),(10861,76638,'Bohemia Doorman',2,22),(10861,1815812,'Airline Steward',0,23),(10861,185102,'Large Woman',1,24),(10861,1393485,'Desk Clerk',0,25),(10861,193040,'Reporter',2,26),(10861,1815821,'Bank Manager',0,27),(10861,1239237,'Tough Teen',2,28),(10861,1173284,'Yuri\'s Girlfriend',0,29),(10861,63860,'Kirov\'s Butler',2,30),(10861,1567231,'Cab Driver',0,31),(10861,123307,'Nervous Passenger',2,32),(10861,1237062,'Guard',2,33),(10861,1815827,'Assistant Bank Manager',0,34),(10861,1594902,'Bank Security Guard',0,35),(10861,553479,'FBI Boss',0,36),(10861,1330118,'Bodyguard',0,37),(10861,1815829,'Ivan\'s Bodyguard',0,38),(10861,8366,'Ivan\'s Bodyguard',0,39),(12770,11662,'John Plummer',2,0),(12770,36423,'Walter P. \'Duff\' Duffy',2,1),(12770,41087,'Elaine Warner',1,2),(12770,1117,'Mr. Warner',2,3),(12770,11885,'Detective Charles',2,4),(12770,28633,'Honorable Judge Emmett Cook',2,5),(12770,5950,'Uncle Jack',2,6),(12770,52119,'Patty Plummer',1,7),(12770,2969,'David Loach',2,8),(12770,106745,'Loach\'s Friend',0,9),(10074,62861,'Rod Kimble',2,0),(10074,52848,'Denise',1,1),(10074,19278,'Dave',2,2),(10074,5606,'Marie Powell',1,3),(10074,62862,'Rico',2,4),(10074,62863,'Kevin Powell',2,5),(10074,6972,'Frank Powell',2,6),(10074,21200,'Jonathan',2,7),(10074,51382,'Barry Pasternack',0,8),(10074,32751,'Homeless Dude',2,9),(10074,50094,'Trailer Guy',2,10),(10074,41434,'Waitress',1,11),(10074,62864,'Richardson',2,12),(10074,62866,'Cathy',1,13),(10074,62865,'Maggie',1,14),(10074,62867,'Sullivan',2,15),(10074,62869,'Furious Boss',2,16),(10074,62868,'Angry Mom',0,17),(10074,62870,'EMT',0,19),(10074,1171405,'EMT',0,20),(10397,1639,'Angela McCourt',0,0),(10397,18023,'Malachy McCourt',2,1),(10397,65030,'Young Frank',2,2),(10397,65031,'Older Frank',2,3),(10397,65032,'Middle Frank',2,4),(10397,1352394,'St. Vincent Man #2',0,5),(10397,931885,'Seamus',2,6),(10397,1381066,'Grandma Sheehan',0,7),(10397,69465,'Aunt Aggie',1,8),(10397,1333583,'Uncle Pa Keating',0,9),(10397,63367,'Uncle Pat',0,10),(10397,1762545,'Young Malachy',0,11),(10397,234922,'Middle Malachy',2,12),(10397,1781511,'Older Malachy',0,13),(10397,1752289,'Young Paddy Clohessy',0,14),(10397,1781516,'Middle Paddy Clohessy',0,15),(10397,17019,'Older Paddy Clohessy',2,16),(10397,102980,'Mr. Benson',0,17),(10397,1384969,'Toby Mackey',0,18),(10397,185437,'Bridey Hannon',0,19),(10397,43131,'Father Gregory',0,20),(10397,17779,'Quasimodo',2,21),(10397,559208,'Rent Man',0,22),(10397,112827,'Funeral Carriage Driver',2,23),(10397,1253168,'Clarke',0,24),(10397,9168,'Dr. Campbell',2,25),(10397,994,'English Agent',2,26),(11954,52023,'Col. Tom Carlsen',0,0),(11954,22109,'Col. Colin Caine',2,1),(11954,6637,'Dr. Hans Fallada',2,2),(11954,44233,'Space Girl',1,3),(11954,2387,'Dr. Armstrong',2,4),(11954,10505,'Dr. Bukovsky',2,5),(11954,26707,'Roger Derebridge',2,6),(11954,2278,'Sir Percy Heseltine',0,7),(11954,172568,'Ellen Donaldson',2,8),(11954,12690,'Lamson',2,9),(11954,213805,'Guard',0,10),(11954,543232,'First Vampire',0,11),(11954,553072,'Second Vampire',0,12),(11954,175975,'Physician',2,14),(11954,1220033,'Pathologist',0,15),(10655,8447,'Col. Joshua Chamberlain',2,0),(10655,13022,'Lt. Gen. James Longstreet',2,1),(10655,8349,'Gen. Robert E. Lee',2,2),(10655,16431,'Brig. Gen. John Buford',2,3),(10655,32747,'Maj. Gen. George E. Pickett',2,4),(10655,12518,'Brig. Gen. Lewis A. Armistead',2,5),(10655,15668,'Brig. Gen. Richard B. Garnett',2,6),(10655,156653,'Henry T. Harrison',2,7),(10655,136921,'Maj. Gen. John Bell Hood',2,8),(10655,241735,'Maj. Walter H. Taylor',0,9),(10655,178557,'Lt. Col. Arthur Fremantle',0,10),(10655,53806,'Maj. G. Moxley Sorrel',2,11),(10655,105641,'Col. E. Porter Alexander',2,12),(10655,464170,'Maj. Charles Marshall',0,13),(10655,22251,'Brig. Gen. James L. Kemper',2,14),(10655,11891,'Cap. Thomas J. Goree',0,15),(10655,169915,'Maj. Gen. Henry Heth',2,16),(10655,81557,'Maj. Gen. Jubal A. Early',2,17),(10655,155962,'Maj. Gen. J.E.B. Stuart',2,18),(10655,83411,'Lt. Gen. Richard S. Ewell',2,19),(10655,10167,'Brig. Gen. J. Johnston Pettigrew',2,20),(10655,938390,'Maj. Gen. Isaac R. Trimble / Narrator',0,21),(15992,3897,'Katie Burke',1,0),(15992,4589,'Wade Handler',2,1),(15992,56365,'Embry Larkin',2,2),(15992,11664,'Samantha Harper',1,3),(15992,10430,'Lieutenant Bill Strayton',2,4),(15992,11365,'Robert Hanson',2,5),(15992,15091,'Mousy Julie',1,6),(15992,6541,'Professor Jergensen',2,7),(15992,32458,'Harrison Hobart',2,8),(15992,78500,'August',2,9),(15992,3417,'Dr. David Schaffer',2,10),(15992,17773,'Amanda Luttrell',1,11),(15992,58168,'Eager Beaver',1,12),(15992,1488192,'Pirates of Penzance',2,13),(17707,6194,'Alice Marano',1,0),(17707,3967,'Darlene Davis',1,1),(17707,8984,'Hank Greene',2,2),(17707,56485,'Yon Greene',1,3),(17707,38560,'Roy Knox',2,4),(17707,3072,'Nick Parks',2,5),(17707,126471,'Doug Davis',2,6),(17707,35545,'Beth Ann Gardener',1,7),(17707,42746,'Bill Marano',2,8),(17707,93737,'Chief Detective Jagkrit',2,9),(17707,156813,'Guard Velie',1,10),(17707,1422212,'Mary',0,11),(17707,1216156,'Ferg',0,12),(17707,8167,'Jason',2,13),(21338,87400,'Joe Huff / John Stone',2,0),(21338,2714,'Chains Cooper',2,1),(21338,4520,'Ice',2,2),(21338,42967,'Nancy',0,3),(21338,5176,'Lance',2,4),(21338,16662,'Cunningham',2,5),(21338,87401,'Bolivian',2,6),(21338,78183,'Brent Whipperton',2,7),(21338,87402,'Gut',2,8),(21338,7874,'Tool',2,9),(21338,87403,'Trouble',0,10),(21338,87404,'Mudfish',0,11),(21338,44178,'A.W.O.L.',2,12),(21338,87405,'Greek',0,13),(21338,87406,'Poker',0,14),(21338,13443,'Joe\'s Girlfriend',1,15),(20766,110,'Father',2,0),(20766,113505,'Boy',2,1),(20766,6885,'Mother',1,2),(20766,3087,'Old Man - Eli',2,3),(20766,529,'Veteran',2,4),(20766,27125,'Friendly Woman',1,5),(20766,39390,'The Thief',2,6),(20766,39520,'Gang Member',0,7),(20766,113506,'Bearded Man',0,8),(20766,1297771,'Archer\'s Woman',0,9),(20766,963745,'Archer',2,10),(20766,1297772,'Bearded Face',0,11),(20766,991960,'Bearded Man #2',0,12),(20766,1297777,'Man On Mattress',0,13),(20766,1297776,'Well Fed Woman',0,14),(24264,10660,'Sheena',1,0),(24264,151192,'Vic Casey',2,1),(24264,57350,'Fletcher (Fletch)',2,2),(24264,91474,'Shaman',0,3),(24264,91475,'Countess Zanda',1,4),(24264,79864,'Prince Otwani',2,5),(24264,91476,'King Jabalani',2,6),(24264,61584,'Colonel Jorgensen',2,7),(19803,36811,'Tracy \'Tre\' Stokes',2,0),(19803,41901,'Karen Lopez',1,1),(19803,11023,'Rob Donovan',2,2),(19803,11159,'Captain Victor Delgado',2,3),(19803,11024,'Lisa Brooks',1,4),(19803,1216163,'Des',1,5),(19803,34457,'Detective Gallecki',2,6),(20309,21594,'Gilbert Noble',2,0),(20309,69122,'Josephine Wingfield',1,1),(20309,18270,'Dig McCaffrey',2,2),(20309,35,'Valdine Wingfield',1,3),(20309,28633,'Walter Wingfield',2,4),(20309,55541,'Jack Mitchelson',2,5),(20309,1236,'Jimmy Mitchelson',2,6),(20309,29795,'Leon Pitofsky',2,7),(20309,60205,'Larry Falwell',2,8),(20309,7401,'Nurse Bautista',1,9),(20309,24305,'Ruthie Falwell',1,10),(20309,7404,'Gina',1,11),(20309,126223,'Mrs. Hartunian',1,12),(20309,59285,'Stewart',2,13),(20309,78619,'Reverend Stillwater',2,14),(20309,1408768,'Mexican Man - Canada',2,15),(20309,1228374,'Mr. Chin',2,16),(27360,18471,'Malcolm King',2,0),(27360,12217,'Corey',2,1),(27360,98087,'Renee King',1,2),(27360,42297,'Brooke Mayo',1,3),(27360,49002,'Andre',2,4),(27360,1212946,'Officer Holland',2,5),(27360,181020,'Peking Palace Employee',0,6),(22256,8289,'Steve Prefontaine',2,0),(22256,55636,'Bill Bowerman',2,1),(22256,2140,'Mary Marckx',1,2),(22256,23958,'Frank Shorter',2,3),(22256,26457,'Roscoe Devine',2,4),(22256,14329,'Bill Dellinger',2,5),(22256,21029,'Kenny Moore',2,6),(22256,106435,'Don Kardong',2,7),(22256,19239,'Barbara Bowerman',1,8),(22256,15338,'Bob Peters',2,9),(22256,56895,'Iowa\'s finest',1,10),(22256,15012,'Coed #1',0,11),(12404,29222,'Richard Samuels',2,0),(12404,6194,'Sonja Jones',1,1),(12404,28478,'Orson Welles',0,2),(12404,17606,'Lorelei Lathrop',1,3),(12404,35028,'Gretta Alder',1,4),(12404,21343,'George Coulouris',2,5),(12404,17521,'Muriel Brassler',1,6),(12404,1665,'John Houseman',2,7),(12404,13363,'Barbara Luddy',1,8),(12404,119807,'Joseph Cotten',0,9),(12404,29237,'Norman Lloyd',2,10),(12404,1015830,'Sam Leve',2,11),(12404,586510,'Grover Burgess',0,12),(12404,141539,'John Hoyt',0,13),(11699,2963,'Terence McDonagh',2,2),(11699,8170,'Frankie Donnenfeld',1,2),(11699,5576,'Stevie Pruit',2,3),(11699,826,'Heidi',1,4),(11699,52647,'Armand Benoit',2,5),(11699,38334,'Genvieve',1,6),(11699,19453,'Pat McDonagh',2,7),(11699,6198,'Captain James Brasser',2,8),(11699,43853,'Binnie Rogers',1,10),(11699,74242,'Justin',2,11),(11699,335,'Mundt',2,12),(11699,1370,'Ned Schoenholtz',2,13),(11699,336,'Big Fate',2,14),(11699,77278,'Daryl',2,15),(11699,110999,'Larry Moy',2,16),(11699,129868,'Rick Fitzsimon',2,17),(11699,1485912,'G (Gary Jenkins)',2,18),(11699,930994,'Midget',2,19),(11699,1633662,'Antoinette',1,20),(11699,84760,'Evaristo Chavez',2,21),(11699,1044954,'Andy',2,23),(11699,101847,'Jeremiah Goodhusband',2,24),(11699,120253,'Hurley',2,25),(11699,1676644,'Yasco',2,26),(11699,60879,'Dub',2,27),(11699,1334377,'Bernie',2,28),(11699,68180,'Chief of Police',2,29),(11699,206027,'First Narcotics Detective',0,30),(11699,1049830,'Second Narcotics Detective',1,31),(11699,1432328,'Renaldo Hayes',2,32),(11699,60881,'Sergeant',2,33),(11699,21249,'Civilian Aide',1,34),(11699,1137888,'Woman',1,35),(11699,60874,'Bettor',2,36),(11699,172734,'Client',2,37),(11699,143264,'Dealer',2,38),(11699,1630264,'Dr. Milburn',2,39),(11699,94182,'Eugene Gratz',2,40),(11699,578736,'Juan Michel',2,41),(11699,84756,'Lawrence',2,42),(11699,1546955,'Maimouna',1,43),(11699,29933,'Pharmacist',1,44),(11699,1209377,'Security Guard',2,45),(11699,1676832,'Host',2,46),(11699,86276,'Lt. Stoyer',0,47),(11699,94954,'Tina',1,48),(11699,86271,'Yvonne',1,49),(11699,1676840,'Waiter',2,50),(11699,1015919,'Boy',2,51),(11699,94427,'Girl',1,52),(11699,1676844,'Witness #1',2,53),(11699,1676848,'Witness #2',2,54),(11699,932104,'Jeff',2,55),(11699,550317,'Assistant to D.A.',1,56),(11699,1676849,'Police Officer (uncredited)',1,57),(11699,1659999,'Family Member (uncredited)',1,58),(11699,1356706,'Detective (uncredited)',2,59),(11699,933119,'Dave Jacobs',2,60),(25353,93592,'Le chat',0,0),(25353,2415,'La reine',0,1),(25353,93593,'La princesse',0,2),(25353,93594,'Petit Prince',0,3),(25353,37650,'Le chambellan',2,4),(33157,522,'Napoleon Bonaparte',2,0),(33157,290,'Arthur Wellesley, Duke of Wellington',2,1),(33157,40,'Louis XVIII',2,2),(33157,10018,'General Sir Thomas Picton',2,3),(33157,77165,'Duchess of Richmond',1,4),(33157,6836,'Marshal Michel Ney',2,5),(33157,74689,'Gordon',2,6),(33157,201637,'La Bedoyere',0,7),(33157,97684,'Drouot',2,8),(33157,84251,'Marshal Soult',0,9),(33157,51755,'De Lancey',2,10),(33157,20392,'Colonel Sir William Ponsonby',2,11),(33157,30035,'Lord Uxbridge',2,12),(33157,1325282,'Blucher',0,13),(33157,168632,'O\'Connor',2,14),(33157,42124,'Tomlinson',2,15),(33157,1325285,'Magdalene Hall',0,16),(33157,1325287,'Lord Hay',0,17),(33157,10664,'Ramsey',2,18),(33157,27198,'Officer',2,19),(33157,1700689,'Chactas',2,20),(11635,36422,'Mitch Martin',2,0),(11635,23659,'Frank',2,1),(11635,4937,'Beanie',2,2),(11635,9280,'Nicole',1,3),(11635,15050,'Lara Campbell',1,4),(11635,25837,'Darcie',1,5),(11635,12799,'Dean Gordon Pritchard',2,6),(11635,3196,'Heidi',1,7),(11635,164945,'Erica',1,8),(11635,68495,'Marissa Jones',1,9),(11635,60951,'Mark',2,10),(11635,112464,'Caterer',1,11),(11635,1244362,'Julie',0,12),(11635,57599,'Peppers',2,13),(10358,19274,'Zack',2,0),(10358,9281,'Miri',1,1),(10358,23658,'Betsy',0,2),(10358,19302,'Lester',2,3),(10358,76525,'Mr. Surya',2,4),(10358,10826,'Bubbles',1,5),(10358,17271,'Bobby Long',2,6),(10358,15033,'Brandon St. Randy',2,7),(10358,23630,'Deacon',2,8),(10358,64342,'Delaney',2,9),(10358,141823,'Delaney\'s Wife',1,10),(10358,11161,'Jenkins',2,11),(10358,1229795,'Zack II',2,12),(10358,140406,'Stacey',1,13),(10480,9137,'Betty Sizemore',1,0),(10480,192,'Charlie',2,1),(10480,2632,'Wesley',2,2),(10480,17141,'Dr. David Ravell/George McCord',2,3),(10480,6383,'Del Sizemore',2,4),(10480,68430,'Rosa Hernandez',1,5),(10480,1064,'Roy Ostery',2,6),(10480,3201,'Ballard',2,7),(10480,19,'Lyla Branch',1,8),(10480,42335,'Sue Ann Rogers',1,9),(10480,31167,'Chloe Jensen',1,10),(10480,104059,'Darlene',1,11),(10480,538,'Ellen',1,12),(10480,65739,'Jasmine',1,13),(10480,20287,'Dr. Lonnie Walsh',2,14),(10480,31032,'Blake',2,15),(10480,129872,'Mercedes',1,16),(10480,68109,'Joyce',1,17),(10480,94434,'Merle',2,18),(10480,141195,'Doctor',2,19),(10480,1273694,'Grandfather',2,20),(10313,1461,'Lyn Cassady',2,0),(10313,3061,'Bob Wilton',2,1),(10313,1229,'Bill Django',2,2),(10313,1979,'Larry Hooper',2,3),(10313,418,'Todd Nixon',2,4),(10313,32747,'Brigadier General Dean Hopgood',2,5),(10313,94431,'Mahmud Daash',0,6),(10313,17401,'Gus Lacey',2,7),(10313,12797,'Major General Holtz',2,8),(10313,17039,'Scotty Mercer',2,9),(10313,27031,'Tim Kootz',2,10),(10313,54679,'Debora Wilton',1,11),(10313,43596,'Lieutenant Boone',0,12),(10313,1504586,'Dave',0,13),(10313,159907,'Ron',2,14),(10313,1504587,'Gus\' Mother',0,15),(10313,1504588,'Kuwait Waiter',0,16),(10313,1193258,'Journalist #1',0,17),(10313,204509,'Journalist #2',2,18),(10313,233298,'General Brown',2,19),(10313,116447,'Kidnapper #1',2,20),(10313,1504589,'Kidnapper #2',0,21),(10313,1219530,'Iraqi Driver',2,22),(10313,1227523,'Chris - Viet Nam Pvt.',2,23),(10313,1240490,'Major General Jack Gillian',2,24),(10313,1865786,'Clifford Hickox',0,25),(10313,105786,'Norm Pendleton',2,26),(10313,1865789,'Major General Pendleton',0,27),(10313,202830,'Bob\'s Editor',2,28),(10313,1225183,'Technician',2,29),(10313,1254364,'Lyn\'s Father',0,30),(10313,56418,'Lyn (12 years old)',2,31),(10313,1865795,'Insurgent',2,32),(10313,223395,'Ben Echmeyer',0,33),(10313,87478,'CIA Agent',2,34),(18828,18270,'Daryl Chase',2,0),(18828,62842,'Freddy Tiffany',2,1),(18828,31647,'Chloe',1,2),(18828,68180,'Timothy Jarret McReady',2,3),(18828,43774,'Agent Norville',2,4),(18828,52995,'Charles Allsworth',2,5),(18828,33712,'Capt. Garcia',2,6),(13476,19536,'Tad Hamilton',2,0),(13476,7517,'Rosalee Futch',1,1),(13476,17052,'Pete Monash',2,2),(13476,78729,'Richard Levy the Driven',2,3),(13476,52601,'Richard Levy the Shameless',2,4),(13476,21163,'Henry Futch',2,5),(13476,17696,'Angelica',1,6),(13476,417,'Cathy Feely',1,7),(13476,20189,'Nurse Betty',1,8),(13476,537,'George Ruddy',2,9),(13476,6944,'Janine',1,10),(10208,64180,'Kermit the Frog',2,0),(10208,64181,'Gonzo',2,1),(10208,64182,'Pepe the Prawn',2,2),(10208,7908,'Miss Piggy',2,3),(10208,68455,'Robin / Statler / Ubergonzo',2,4),(10208,4175,'K. Edgar Singer',2,5),(10208,1164,'Noah',2,6),(10208,60949,'TV Producer',2,7),(10208,3138,'Female Armed Guard',1,8),(10208,2694,'Agent Barker',2,9),(10208,11477,'Gate Guard',2,10),(10208,15234,'Dr. Tucker',2,11),(10208,1533,'Shelley Snipes',1,12),(10208,16620,'Man in Black',2,13),(10208,3897,'Beach Girl',1,14),(10208,11866,'Beach Scene',2,15),(10208,3798,'General Luft',2,16),(10208,157602,'UFO Mania Announcer (voice)',2,17),(24961,32715,'Dorothy',1,0),(24961,82702,'Scarecrow',2,1),(24961,92899,'Tinman',2,2),(24961,57357,'Lion / Fleetwood Coup de Ville',2,3),(24961,77226,'Aunt Emma',1,4),(24961,92900,'Glinda the Good',1,5),(24961,9309,'The Wiz',2,6),(24961,52031,'Evillene',1,7),(24961,937441,'Miss One',1,8),(24961,937442,'Uncle Henry',0,9),(20697,15234,'Gordie Boggs',2,0),(20697,1894,'Sean Dawkins',2,1),(20697,17485,'Jimmy King',2,2),(20697,16850,'Sasha',1,3),(20697,65236,'Himself (as Goldberg)',2,4),(20697,86903,'Himself (as DDP)',2,5),(20697,3205,'Mr. Boggs',2,6),(20697,26999,'Isaac',2,7),(20697,532,'Titus Sinclair',2,8),(20697,2641,'Sal Bandini',2,9),(20697,86905,'Eugenia King',1,10),(20697,58743,'Frankie King',2,11),(20697,85171,'Mrs. MacKenzie',1,12),(20697,7210,'Jane King',1,13),(20697,75465,'Fred King',2,14),(20697,86906,'Cashier',2,15),(20697,56446,'Himself (Uncredited)',2,16),(20697,1334109,'Vendor (uncredited)',0,17),(20697,1108859,'Sting',2,18),(20697,1087342,'Bam Bam Bigelow',0,19),(20697,89023,'Himself',2,20),(20697,543599,'Booker T',0,21),(20697,1195465,'Sid Vicious',0,22),(20697,950958,'Juventud Guerrera',2,23),(20697,711143,'Himself',0,24),(20697,218023,'Disco Inferno',0,25),(20697,1200324,'Billy Kidman',0,26),(20697,952032,'Konnan',0,27),(20697,1216226,'Stunt Double',0,28),(20697,568555,'Rey Mysterio, Jr.',0,29),(20697,1199453,'Perry Saturn',0,30),(20697,1264429,'Prince Iaukea',0,31),(20697,1209394,'Van Hammer',0,32),(20697,1217276,'Gorgeous George',0,33),(20697,1200120,'Stunt Double',0,34),(20697,66072,'Himself',2,35),(20697,102937,'Himself',0,36),(20697,1770580,'Himself',0,37),(20697,1227410,'Himself',0,38),(20697,1225558,'Referee',2,39),(20697,1770583,'Referee',0,40),(20697,1227420,'Chae',0,41),(20697,1770585,'Fyre',0,42),(20697,1770586,'Storm',0,43),(20697,1770586,'Spice',0,44),(20697,1216813,'Storm',0,45),(20697,1770589,'Tygress',0,46),(20761,3131,'Cesar Dominguez',2,0),(20761,57755,'Vince Boudreau',2,1),(20761,12139,'Grace Pasic',1,2),(20761,3197,'Joe Domino',2,3),(20761,140,'Lia',1,4),(20761,9208,'Hank Goody',2,5),(20761,15416,'Artie',2,6),(20761,1542,'Cappie Caplan',2,7),(20761,56040,'Rudy',2,8),(20761,40429,'Dante Solomon',2,9),(20761,106791,'Mad Greek Waitress',0,10),(20761,16584,'Man with Ferrari',2,11),(20761,80757,'Himself',2,12),(20761,1269,'Himself (Ringside Fan)',2,13),(20761,10814,'Himself (Ringside Fan)',2,14),(20761,4512,'Himself (Ringside Fan)',2,15),(20761,3270,'Herself (Ringside Fan)',1,16),(20761,83349,'Himself (Ringside Fan)',2,17),(20761,7906,'Herself (Ringside Fan)',1,18),(20761,3150,'Himself (Ringside Fan)',2,19),(20761,106793,'Party Guest',0,20),(20761,97619,'Overdosed Hooker',1,21),(20761,263720,'Himself',2,22),(20761,16506,'Cesar\'s Trainer',2,23),(26672,1905,'Zigzag the Grand Vizier (voice)',2,0),(26672,14371,'King Nod (voice)',2,1),(26672,738,'Tack the Cobbler',2,2),(26672,40949,'Mad Old Holy Witch (voice)',1,3),(26672,103190,'Mighty One-Eye (voice)',0,4),(26672,9221,'Phido the Vulture (voice)',2,5),(26672,92699,'Princess YumYum',0,6),(26672,3130,'Princess YumYum',1,7),(26672,4756,'Tack the Cobbler',2,8),(26672,10866,'Phido the Vulture',2,9),(26672,3051,'Nurse / Mad Holy Old Witch',1,10),(26672,14324,'Brigand (voice)',2,11),(19908,44735,'Columbus',2,0),(19908,57755,'Tallahassee',2,1),(19908,54693,'Wichita',1,3),(19908,17140,'Little Rock',1,4),(19908,55085,'406',1,5),(19908,1532,'Bill Murray',2,6),(19908,112119,'Clown Zombie',2,7),(19908,933182,'Sprint Zombie (uncredited)',2,8),(19908,17735,'Gas Station Attendant (uncredited)',2,9),(19908,1330040,'Bubby & Pee Paw\'s Granddaughter (uncredited)',0,10),(19908,1694504,'Businesswoman Zombie (uncredited)',1,11),(19908,1663958,'Zombie (uncredited)',1,12),(19908,1694508,'Zombie (uncredited)',2,13),(19908,1694509,'Cardio Zombie (uncredited)',2,14),(19908,1567654,'Girl on Cell Phone (uncredited)',0,15),(19908,1138250,'Yellow Truck Girl (uncredited)',1,16),(10663,19292,'Bobby Boucher',2,0),(10663,8534,'Mama Boucher',1,1),(10663,826,'Vicki Vallencourt',1,2),(10663,31903,'Coach Klein',2,3),(10663,67764,'Coach Red Beaulieu',2,4),(10663,37947,'Derek Wallace',2,5),(10663,21485,'Farmer Fran',0,6),(10663,20819,'Gee Grenouille',2,7),(10663,58477,'Lyle Robideaux',0,8),(10663,124016,'Casey Bugge',0,9),(10663,15661,'Paco',2,10),(10663,20818,'Walter',2,11),(10663,60949,'Townie',2,12),(10663,185731,'Himself',2,13),(10663,166029,'Himself',2,14),(10316,30614,'Stephen Meyers',2,0),(10316,1461,'Governor Mike Morris',2,1),(10316,1233,'Paul Zara',2,2),(10316,13242,'Tom Duffy',2,3),(10316,38940,'Molly Stearns',1,4),(10316,3141,'Ida Horowicz',1,5),(10316,2954,'Senator Thompson',2,6),(10316,2978,'Ben Harpen',2,7),(10316,49971,'Cindy Morris',1,8),(10316,21142,'Jack Stearns',2,9),(10316,91030,'Senator Ted Pullman',2,10),(10316,150672,'Mike',2,11),(10316,972921,'Jenny',1,12),(10316,972922,'Sue',2,13),(10316,146413,'Campaign Editor',2,14),(10316,1741959,'Advance Guy',0,15),(10316,1023322,'Piano Player',0,16),(10316,1741964,'Security Guard',0,17),(10316,1708423,'Janitor',0,18),(10316,1741966,'Head First Bartender',0,19),(10316,27690,'Stage Manager',0,20),(10316,932326,'Director',0,21),(10316,1741971,'Sound Man',0,22),(10316,1741972,'Student #1',0,23),(10316,1741976,'Student #2',0,24),(10316,1395050,'Pullman Staffer',0,25),(10316,1741978,'Jill',0,26),(10316,1741979,'Clinic Nurse',0,27),(10316,1087552,'As Himself',0,28),(10316,451844,'As Herself',1,29),(10316,60092,'As Himself',2,30),(10316,70177,'As Himself',2,31),(10316,1741982,'Local Achor',0,32),(10316,1741983,'Reporter #1',0,33),(10316,76687,'Reporter #2',1,34),(10316,1741986,'Joe the Staffer',0,35),(10316,1741987,'Organist',0,36),(10316,1741990,'Air Tran Ticket Agent',0,37),(10316,1741991,'Choir',0,38),(10316,1741992,'Choir',0,39),(10316,1741993,'Choir',0,40),(10316,1741998,'Choir',0,41),(10316,559475,'Choir',0,42),(10316,169378,'Choir',0,43),(10316,1742003,'Choir',0,44),(10316,1742004,'Choir',0,45),(10316,1742005,'Choir',0,46),(10316,109802,'Choir',0,47),(10316,562709,'Choir',0,48),(10316,1725025,'Choir',0,49),(10316,564888,'Choir',0,50),(10316,1742006,'Choir',0,51),(10316,1742007,'Choir',0,52),(10316,1310314,'Choir',1,53),(12658,15852,'Jane Goodale',1,0),(12658,17141,'Ray Brown',2,1),(12658,6968,'Eddie Alden',2,2),(12658,3141,'Liz',1,3),(12658,6913,'Diane Roberts',1,4),(12658,65797,'Alice, Jane\'s Sister',1,5),(12658,73836,'Evelyn',1,6),(12658,54246,'Stephen, Alice\'s Husband',2,7),(12658,175826,'Yoga Instructor #1',1,8),(12658,13023,'Realtor',1,9),(10866,18324,'Fuller Thomas',2,0),(10866,8167,'Lewis Thomas',2,1),(10866,22290,'Venna',1,2),(10866,67538,'Charlotte',1,3),(10866,156011,'Danny, Lewis\' Roommate',2,4),(10866,16754,'Car Salesman',2,5),(10866,154838,'Officer Keeney',2,6),(10866,154996,'Salt Lake City Police Desk Clerk',0,7),(10866,552465,'Assistant Salt Lake City Police Desk Clerk',0,8),(10866,149526,'Gas Station Mechanic',2,9),(10866,12548,'Ronald Ellinghouse',2,10),(10866,552466,'Night Manager',0,11),(10866,552467,'Officer Akins',2,12),(10866,29862,'Sheriff Ritter',2,13),(10866,7473,'Gas Station Manager',1,14),(10866,552468,'Ice Truck Man',0,15),(10866,19567,'Bartender',0,16),(10866,552469,'Truck Stop Waitress',0,17),(10866,87404,'Truck Stop Manager',0,18),(10866,552470,'Waitress',0,19),(10866,117564,'Hotwire Consultant',0,20),(10866,154195,'Man at Door',2,21),(10866,552471,'Traveling Salesman',0,22),(10866,19487,'Marine',2,23),(10866,552472,'Policeman #1',0,24),(10866,99231,'Policeman #2',2,25),(10866,552473,'Policeman #3',0,26),(10866,1188456,'Local in Nebraska Bar',0,27),(21349,4038,'Adele August',1,0),(21349,524,'Ann August',1,1),(21349,7678,'Josh Spritzer',2,2),(21349,12543,'Lillian',1,3),(21349,12889,'Ted',2,4),(21349,4942,'Jimmy',2,5),(21349,52647,'Benny',2,6),(21349,7673,'Carol',1,7),(21349,57452,'Hisham Badir',2,8),(21349,111454,'Hisham Badir (voice)',2,9),(21349,32798,'Rachel',1,10),(21349,3911,'Jack Irwin',2,11),(21349,1910,'Gail Letterfine',1,12),(19150,3037,'Bobby Bartellemeo / Narrator',2,0),(19150,16475,'Joey \'Bats\' Pistella',2,1),(19150,6486,'Mike \'The Brick\' Donatelli',2,2),(19150,5950,'Tony \'Mouth\' Donato',2,3),(19150,530,'Detective Olivia Neal',1,4),(19150,7906,'Ferris \'aka Maureen\' Lowenstein',1,5),(19150,53647,'Pepper Lowenstein',1,6),(19150,30488,'Raul Ventana, Drug Lord',2,7),(19150,12799,'Det. Steve Menteer',2,8),(19150,1953,'Young Bobby Bartellemeo',2,9),(19150,84163,'Young Joey \'Bats\' Pistella',2,10),(19150,84164,'Young Tony \'Mouth\' Donato',2,11),(19150,44205,'Young Mike \'The Brick\' Donatelli',2,12),(13579,9778,'Curtis Plummer',2,0),(13579,74688,'Jasmine',1,1),(13579,74610,'Claire Plummer',1,2),(13579,98399,'Ronnie',1,3),(13579,6066,'Cyrus',2,4),(13579,13525,'Coach Fisher',2,5),(13579,2683,'Winston',2,6),(13579,83187,'Reverend Pratt',2,7),(13579,1605092,'Damon',0,8),(13579,98272,'Tammy',1,9),(13579,123846,'Popular Girl',1,10),(13579,57997,'Roy',2,11),(13579,54430,'Ennis',2,12),(13579,60277,'Karl',2,13),(13579,54765,'Edgar Mejavar',0,14),(13579,572541,'Jonesy',2,15),(13579,1451543,'Javy Hall',2,16),(13579,90721,'News Reporter',0,17),(13579,1163789,'Girl #1',1,18),(20024,5469,'Maurice Bendrix',2,0),(20024,9029,'Henry Miles',2,1),(20024,1231,'Sarah Miles',1,2),(20024,79357,'Mr. Savage',2,3),(20024,10985,'Mr. Parkis',2,4),(20024,11355,'Father Richard Smythe',2,5),(20024,135420,'Miss Smythe',1,6),(20024,1147314,'Lance Parkis',0,7),(20024,24722,'Waiter',2,8),(20024,1621284,'Dr Gilbert',0,9),(20024,1227777,'Henry\'s Maid',0,10),(20024,195628,'Chief Warden',2,11),(20024,1211845,'Chief Engineer',2,12),(11156,2405,'Gabrielle \'Coco\' Chanel',1,0),(11156,47820,'Etienne Balsan',2,1),(11156,4941,'Arthur Boy Capel',2,2),(11156,54227,'Adrienne Chanel',1,3),(11156,19117,'Emilienne',1,4),(11156,264812,'Alec, le jockey',2,5),(11156,145196,'Maurice de Nexon',2,6),(11156,1086615,'Patron boutique',2,7),(11156,38876,'Jean, le palefrenier',2,8),(11156,146488,'Directeur beuglant',0,9),(11156,22309,'Acteur thu00e9u00e2tre',2,10),(11156,230078,'Gros homme thu00e9u00e2tre',2,11),(11156,53906,'Tailleur Deauville',2,12),(11156,1644682,'Adrienne Chanel, 10 ans',1,13),(11156,240067,'Raymond',2,14),(11156,1644683,'Sophie, amie d\'Emilienne',1,15),(11156,1152985,'Prostituu00e9e Balsan',1,16),(11156,1175146,'Directeur Alcazar',2,17),(22215,1160,'Lea',1,0),(22215,8534,'Madame Peloux',1,1),(22215,36669,'Chu00e9ri',2,2),(22215,72855,'Edmee',1,3),(22215,1562,'Marie Laure',1,4),(22215,184924,'Rose',1,5),(22215,52891,'Vicomte Desmond',2,6),(22215,1354141,'Ernest',0,7),(22215,12983,'Marcel',2,8),(22215,20286,'Patron',2,9),(22215,1354142,'Priest',0,10),(22215,1162704,'Baronne',0,11),(22215,1229467,'Madame Aldonza',0,12),(22215,20181,'Silver Haired Industrialist',0,13),(22215,13483,'Lili',0,14),(22215,1670618,'Madame Roland',1,15),(11632,368,'Becky Sharp',1,0),(11632,17648,'Rawdon Crawley',2,1),(11632,1244,'George Osborne',2,2),(11632,6979,'Amelia Sedley',0,3),(11632,5168,'The Marquess of Steyne',2,4),(11632,7026,'William Dobbin',2,5),(11632,388,'Mr. Osborne',2,6),(11632,382,'Sir Pitt Crawley',2,7),(11632,20300,'Miss Matilda Crawley',1,8),(11632,79856,'Joseph Sedley',2,9),(11632,80149,'Pitt Crawley',2,10),(11632,90451,'Older Georgy Osborne',2,11),(11632,11288,'Older Rawdy Crawley (uncredited)',2,12),(30596,1341,'Sum Chung-Yang / Shen Chong-Yang',2,0),(30596,77303,'Li Yu-Tang',2,1),(30596,56861,'Prof. Chen Xiaobai',2,2),(30596,70106,'Ah Si / Deng Si-Di',2,3),(30596,96862,'General Yan Xiao-Guo',0,4),(30596,26724,'HK Police Chief Shi Mi-Fu',2,5),(30596,106578,'Fang Hong',0,6),(30596,64439,'Yuet-yu',1,7),(30596,144813,'Ah Suen',0,8),(30596,1618635,'Stinky Tofu',0,9),(30596,966327,'Li Chung-Guang',0,10),(30596,66761,'Prince Lau Luk-Yak / Liu Yu-Bai',2,11),(30596,25245,'Prof Yang Quyun',2,12),(30596,56816,'Prince Lau\'s woman',0,13),(30596,20519,'General Fang Tian',2,14),(30596,116637,'Qing assassin, Sa Zhenchan',2,15),(30596,99687,'Sun Yat-Sen',2,16),(30596,116906,'Ah Suen\'s father',2,17),(11395,12898,'Santa Claus / Scott Calvin',2,0),(11395,777,'Dr. Neil Miller',2,1),(11395,19957,'Laura Calvin Miller',1,2),(11395,38582,'Bernard the Elf',2,3),(11395,1039,'Mr. Whittle',2,4),(11395,27564,'Charlie Calvin',2,5),(11395,141801,'Judy the Elf',1,6),(11395,92119,'Detective Nunzio',2,7),(11395,4568,'Judy the Waitress',1,8),(11395,190621,'ELFS Leader',0,9),(11395,76105,'Fireman O\'Hara',0,10),(14635,6065,'Jimmy Morris',2,0),(14635,3052,'Lorri Morris',1,1),(14635,5151,'Olline',1,3),(14635,77117,'Hunter Morris',2,4),(14635,1248,'Jim Morris Sr.',2,5),(14635,9186,'Joe David West',2,7),(14635,77119,'Joel De La Garza',2,8),(14635,19487,'Joaquin \'Wack\' Campos',2,9),(14635,53184,'Rudy Bonilla',2,10),(13680,18918,'Joe Kingman',2,0),(13680,74929,'Peyton Kelly',1,1),(13680,26467,'Stella Peck',1,2),(13680,41901,'Monique Vasquez',1,3),(13680,9779,'Travis Sanders',2,4),(13680,74930,'Kyle Cooper',2,5),(13680,31137,'Jamal Webber',0,6),(13680,74931,'Clarence Monroe',2,7),(13680,74932,'Karen Kelly',1,8),(13680,26008,'Coach Mark Maddox',2,9),(13680,57346,'Tatianna',1,10),(13680,74933,'Samuel Blake, Jr.',2,11),(13680,74934,'Larry the Doorman',0,12),(13680,74935,'Nanny Cindy',1,13),(13680,1673228,'ER Doctor',2,14),(11090,60949,'Marvin Mange',2,0),(11090,68000,'Rianna',0,1),(11090,11885,'Sgt. Sisk',2,2),(11090,68812,'Chief Wilson',2,3),(11090,828,'Miles',2,4),(11090,19292,'Townie',2,5),(11090,75889,'Dr. Wilder',2,6),(11090,3218,'Fatty',2,7),(11090,193939,'Bob Harris',2,8),(11090,1465493,'Mrs. De La Rosa',0,9),(11090,6914,'Mayor',2,10),(11090,165214,'Mr. Tam',2,11),(11090,5048,'Hunter (uncredited)',2,12),(11090,77075,'Mob Member',0,13),(10950,2228,'Sam Dawson',2,0),(10950,1160,'Rita Harrison Williams',1,1),(10950,1902,'Annie Cassell',1,2),(10950,501,'Lucy Diamond Dawson',1,3),(10950,31028,'Mr. Turner',2,4),(10950,18284,'Margaret Calgrove',1,5),(10950,65760,'Patricia',1,6),(10950,4784,'Randy Carpenter',1,7),(10950,1235193,'Brad',0,8),(10950,1407026,'Joe',0,9),(10950,4171,'Robert',2,10),(10950,6806,'Ifty',2,11),(10950,98089,'George',2,12),(10950,2453,'Dr. Blake',1,13),(10950,12543,'Estelle Dawson',1,14),(10950,12226,'Dr. Jaslow',2,15),(10950,74073,'Lily',1,16),(10950,38570,'Judge Philip McNeily',2,17),(10950,64857,'Miss Wright',1,18),(10950,156706,'Conner Rhodes',0,19),(10950,48810,'Duncan Rhodes',2,20),(10950,158719,'Ms. Davis',1,21),(10950,1984,'Gertie',1,22),(10950,1836327,'Willy Harrison',0,23),(10950,1452110,'Bruce',0,24),(10950,1836328,'Nurse',0,25),(10950,154625,'Grace',1,26),(10950,1213786,'Shoe Saleman',2,27),(10950,95046,'Principal',2,28),(10950,33676,'Big Boy Waitress',1,29),(10950,1411151,'Rita\'s Colleague',0,30),(10950,1836332,'Obnoxious Mom',0,31),(10950,1836333,'Cristina',0,32),(10950,1836336,'Collin',0,33),(10950,98092,'Vice Cop',0,34),(10950,1836338,'Cafeteria Worker',0,35),(10950,49832,'Cop at Park',2,36),(10950,18050,'Lucy (2 Years Old)',1,37),(11323,1892,'Mark Whitacre',2,0),(11323,2154,'Brian Shepard',2,1),(11323,74949,'Robert Herndon',2,2),(11323,15091,'Ginger Whitacre',1,3),(11323,43366,'Kate Medford',1,4),(11323,1065,'Mark Cheviron',2,5),(11323,170364,'Mick Andreas',2,6),(11323,1539,'Terry Wilson',2,7),(11323,66657,'FBI Supervisor Dean Paisley',2,8),(11323,10872,'Ed Herbst',2,9),(11323,66580,'Sid Hulse',2,10),(11323,1898,'Kirk Schmidt',2,11),(11323,6574,'Aubrey Daniel',2,12),(11323,120244,'Sarah Scott',1,13),(11323,25147,'James Epstein',2,14),(11323,95875,'Marty Allison',2,15),(11323,15831,'Mark Whitacre\'s Father',2,16),(11323,12407,'Mark Whitacre\'s Mother',1,17),(11323,166789,'Judge Harold Baker',2,18),(11323,160263,'Dwayne Andreas',2,19),(11323,81662,'Bob Zaiderman',0,20),(11323,102936,'John Dowd',2,21),(11323,1219029,'Anthony D\'Angelo',0,22),(11323,1487546,'Alexander Whitacre',0,23),(10445,4173,'C. S. \'Jack\' Lewis',2,0),(10445,26513,'Joy Gresham',1,1),(10445,8937,'Christopher Riley',2,2),(10445,10747,'Desmond Arding',2,3),(10445,127264,'Arnold Dopliss',0,4),(10445,85934,'Harry Harrington',2,5),(10445,15740,'Nick Farrell',2,6),(10445,3545,'Warnie Lewis',2,7),(10445,22063,'Peter Whistler',2,8),(10445,41958,'Claude Bird',2,9),(10445,20243,'Dr. Eddie Monk',2,10),(10445,4787,'Douglas Gresham',2,11),(10445,22109,'Dr. Craig',2,12),(10445,31951,'Committee Chairwoman',1,13),(11453,60949,'Deuce Bigalow',2,0),(11453,62842,'T.J. Hicks',2,1),(11453,1924,'Gaspar Voorsboch',0,2),(11453,1844,'Heinz Hummer',2,3),(11453,69497,'Eva',1,4),(11453,18041,'Antoine Laconte',2,5),(11453,62067,'Rodrigo',2,6),(11453,166645,'Chadsworth Buckingham, III',2,7),(11453,13937,'Gian-Carlo',2,8),(11453,75655,'Enzo Giarraputo',2,9),(10878,21593,'Darren Silverman',2,0),(10878,18324,'Wayne Lefessier',2,1),(10878,70851,'J.D. McNugent',2,2),(10878,2956,'Judith Fessbeggler',1,3),(10878,19275,'Sandy',1,4),(10878,8655,'Coach',2,5),(10878,69669,'Himself',2,6),(10878,22297,'Bar Dude',2,7),(10878,946293,'Vageet',2,8),(10878,158567,'Thai Referee',2,10),(10878,1228374,'Old Man',2,11),(10878,1622657,'Luigi',2,12),(10878,1475099,'Cheerleader',1,13),(10279,5723,'Vinny',2,0),(10279,3490,'Richie',2,1),(10279,23931,'Dionna',1,2),(10279,18285,'Ruby',1,3),(10279,57829,'Detective Petrocelli',2,4),(10279,18313,'Joey',2,5),(10279,56691,'Woodstock',2,6),(10279,10739,'Gloria',1,7),(10279,5699,'Helen',1,8),(10279,5170,'Eddie',2,9),(10279,40377,'Detective Atwater',2,10),(10279,856,'Luigi',2,11),(10279,28033,'Mario',2,12),(10279,11486,'Midnite',2,13),(10279,47879,'Simon',2,14),(10279,1010,'David Berkowitz',2,15),(10279,5281,'John Jeffries',2,16),(10279,1241,'Voice of Harvey the Dog',2,17),(10279,122546,'Anthony',0,18),(19366,38581,'Josie McCoy',1,0),(19366,5916,'Valerie Brown',1,1),(19366,1234,'Melody Valentine',1,2),(19366,32458,'Alan M.',2,3),(19366,10697,'Wyatt Frame',2,4),(19366,1294,'Alexandra Cabot',1,5),(19366,7489,'Fiona',1,6),(19366,49002,'D.J. - Du Jour (uncredited)',2,7),(19366,13922,'Travis - Du Jour (uncredited)',2,8),(19366,33654,'Marco - Du Jour (uncredited)',2,9),(19366,57133,'Alexander Cabot',2,10),(24100,20766,'Frederick Sackville-Bagg',2,0),(24100,67778,'Tony Thompson',2,1),(24100,20070,'Rookery',2,2),(24100,2506,'Freda Sackville-Bagg',1,3),(24100,59789,'Dottie Thompson',1,4),(24100,93925,'Bob Thompson',2,5),(24100,5529,'Anna Sackville-Bagg',1,6),(24100,93926,'Gregory Sackville-Bagg',2,7),(24100,956764,'Nigel',0,8),(30379,13919,'Stone Alexander',2,0),(30379,2712,'David Alexander',2,1),(30379,6200,'Gabriella Francini',1,2),(30379,8655,'President Richard Benson',2,3),(30379,1646,'The Guardian',2,4),(30379,22383,'Gen. Francini',2,5),(30379,62747,'David Alexander - Age 16',2,6),(30379,9298,'British Leader',2,7),(30379,61307,'African Leader',2,8),(30379,56348,'Chuck Farrell',2,9),(30379,235858,'Russian Leader',0,10),(17709,18269,'Dudley Do-Right',2,0),(17709,520,'Nell Fenwick',1,1),(17709,658,'Snidely Whiplash',2,2),(17709,10713,'Prospector',2,3),(17709,10360,'Inspector Fenwick',2,4),(17709,1240,'Howard',2,5),(17709,20752,'Chief',2,6),(17709,55962,'Standing Room Only',0,7),(17709,172734,'Kenneth',2,8),(17709,15032,'Lavar',2,9),(17709,57358,'Barry',2,10),(17709,35219,'The Announcer (voice)',2,11),(17709,167689,'Young Dudley',2,12),(17709,1748602,'Young Nell',1,13),(17709,61401,'Young Snidely',2,14),(17709,1225986,'Bank President',0,15),(17709,105864,'Teller',0,16),(17709,1201305,'Local Banker',0,17),(17709,158466,'Townsperson',1,19),(17709,1748608,'Townsperson',0,20),(17709,158464,'Townsperson',2,21),(17709,151657,'Himself',2,22),(17709,162783,'Herself',1,23),(17709,165448,'Customs Officer',2,24),(17709,64673,'Customs Officer',1,25),(17709,1748609,'Anchor',0,26),(17709,1748610,'Caitlin',0,27),(17709,1748611,'Lefty',0,28),(17709,91404,'Husband',2,29),(17709,1748612,'Wife',1,30),(17709,196690,'Another Guy',2,31),(17709,114894,'Shane',2,32),(17709,27124,'Spinworthy',2,33),(17709,231047,'10-Year Old Boy',2,34),(17709,158450,'A Bad Guy in Back',2,35),(17709,564975,'Another Bad Guy',2,36),(17709,1235448,'Yet Another Bad Guy',0,37),(17709,51801,'In the Back',2,38),(17709,1488644,'Indian',0,39),(17709,1235689,'Mrs. Darling',1,40),(17709,124313,'Jim Darling',0,41),(17709,1748614,'Chad Darling',0,42),(17709,1748615,'Mother\'s Kid',0,43),(17709,1748616,'Mother\'s Kid',0,44),(17709,1618607,'Asian Golfer',0,45),(17709,1228761,'Dancer',0,46),(17709,928295,'Dancer',2,47),(17709,1748618,'Dancer',1,48),(17709,1748619,'Dancer',0,49),(17709,1748620,'Dancer',1,50),(17709,82501,'Dancer',2,51),(17709,1748621,'Dancer',0,52),(17709,1748622,'Dancer',1,53),(17709,57392,'Dancer',0,54),(17709,29214,'Dancer',1,55),(17709,1748180,'Dancer',0,56),(17709,1748627,'Dancer',1,57),(17709,1748628,'Dancer',0,58),(17709,1748629,'Dancer',1,59),(17709,1748630,'Dancer',1,60),(17709,1748221,'Dancer',0,61),(17709,1748632,'Dancer',0,62),(17709,1748633,'Dancer',0,63),(17709,1339220,'Dancer',0,64),(17709,1748635,'Dancer',1,65),(17709,1748637,'Dancer',1,66),(17709,1741701,'Dancer',1,67),(17709,169792,'Bad Guy',2,68),(17709,1748638,'Snidely\'s Bodyguard',0,69),(17709,1224872,'In the Way Back',2,70),(17709,1748639,'Snidely\'s Man Overboard',0,71),(17709,1414738,'A Particularly Idiotic Bad Guy',0,72),(17709,1235586,'Mother',0,73),(11661,9824,'Anna Sorensen',1,0),(11661,550023,'Anna Su00f6rensen (singing voice)',0,1),(11661,11953,'Nikolaus Sprink',2,2),(11661,19866,'Lieutenant Audebert',2,3),(11661,480,'Palmer',2,4),(11661,37627,'Ponchel',2,5),(11661,3872,'Horst Mayer',2,6),(11661,25854,'Gueusselin',2,7),(11661,60416,'Gordon',0,8),(11661,550026,'Ju00f6rg',0,9),(11661,6015,'Le gu00e9nu00e9ral',2,10),(11661,385,'L\'u00e9vu00eaque',2,11),(11661,36013,'Le Kronprinz',2,12),(11661,591005,'Nikolaus Sprink (singing voice)',0,13),(11661,55364,'Jonathan',2,14),(12085,3092,'Bridget Cardigan',1,0),(12085,15758,'Nina Brewster',1,1),(12085,3897,'Jackie Truman',1,2),(12085,12836,'Don Cardigan',2,3),(12085,25877,'Barry',2,4),(12085,17401,'Glover',2,5),(12085,63296,'Mandelbrot',2,6),(12085,4443,'Bryce Arbogast',2,7),(12085,66528,'Shaun',2,8),(21494,17497,'Moliere',2,0),(21494,28255,'M. Jourdain',2,1),(21494,41035,'Dorante',2,2),(21494,4390,'Celimene',1,3),(21494,56654,'Elmire Jourdain',1,4),(21494,144760,'Henriette Jourdain',1,5),(21494,1804067,'Valu00e8re',0,6),(21494,1371626,'Thomas',0,7),(21494,586747,'Madeleine Bu00e9jart',0,8),(21494,6550,'Catherine de Brie',1,9),(21494,51102,'Marquise du Parc',1,10),(17795,3151,'President Russell P. Kramer',2,0),(17795,16896,'President Matt Douglas',2,1),(17795,707,'President William Haney',2,2),(17795,11512,'Vice President Ted Matthews',2,3),(17795,11065,'Joe Hollis',2,4),(17795,7570,'Margaret Kramer',1,5),(17795,6068,'Kaye Griffin',1,6),(17795,11367,'Carl Witnaur',0,7),(17795,5616,'Col. Paul Tanner',2,8),(17795,8986,'Charlie Reynolds',2,9),(17795,5700,'Rita',1,10),(17795,1240,'Wayne',2,11),(17795,35517,'Genny',1,12),(17795,140250,'NSA Agent Wilkerson',2,13),(17795,1470,'Chet',2,14),(17795,454,'Ernesto',2,15),(17795,53552,'Ben, Caretaker',2,16),(10724,190,'Mitchell Gant',2,0),(10724,12517,'Kenneth Aubrey',2,1),(10724,66811,'Captain Buckholz',2,2),(10724,2268,'Pavel Upenskoy',2,3),(10724,653,'Semelovsky',2,4),(10724,10734,'Colonel Kontarsky',2,5),(10724,9927,'General Vladimirov',2,6),(10724,15788,'Pyotr Baranovich',0,7),(10724,87457,'First Secretary',2,8),(10724,124435,'General Brown',2,9),(10724,5475,'Major Lanyev',2,10),(10724,42146,'Lt. Colonel Voskov',2,11),(10724,1220923,'Natalia',1,12),(10724,9914,'Walters',2,13),(10724,66200,'Captain Seerbacker',2,14),(10724,29385,'Lt. Commander Fleischer',2,15),(10724,107549,'General Rogers',0,16),(10724,12828,'Air Marshal Kutuzov',2,17),(10724,24627,'Dmitri Priabin',2,18),(10724,55155,'William Saltonstall',2,19),(10724,15772,'Admiral Curtin',2,20),(10724,1729761,'Major Dietz',0,21),(10724,105209,'KGB Guard',2,22),(10724,67028,'Police Inspector Tortyev',2,23),(10724,21431,'KGB Official',2,24),(10724,42568,'Customs Officer',2,25),(10724,1270888,'Old Man',0,26),(10724,29714,'Richard Cunningham',0,27),(10724,1823372,'Sub Radio Operator',0,28),(10724,178576,'Code Operator',0,29),(10724,659,'KGB Chairman Andropov',2,30),(10724,28871,'KGB Agent',2,31),(10724,74506,'Dr. Schuller',2,32),(10724,1472601,'Guard at Shower',0,33),(10724,56192,'Captain',2,34),(10724,1882503,'Grosch',2,35),(10724,1882504,'Interrogator',2,36),(10724,1882505,'Officer at Plane',2,37),(10724,175871,'Leon Sprague',0,38),(10724,94624,'GRU Officer',2,39),(10724,144865,'Borkh',2,40),(10724,1882506,'GRU Officer',2,41),(10724,30142,'General Borov',2,42),(10724,7907,'Chief Peck',2,43),(10724,156586,'Captain of the Riga',0,44),(10724,1794711,'Agent',0,45),(10724,160605,'Russian Captain',2,46),(10724,164707,'Shelley',2,47),(10724,129346,'KGB Agent',2,48),(10724,1882508,'RAF Operator',2,49),(10724,1850440,'Admiral Pearson',0,50),(10724,166204,'Riga Fire Control Chief',0,51),(10724,37108,'KGB Agent (uncredited)',0,52),(10724,1494522,'KGB Guard (uncredited)',0,53),(20857,6384,'Conor O\'Neill',2,0),(20857,2882,'Elizabeth Wilkes',1,1),(20857,135651,'Jamal',2,2),(20857,61962,'Matt Hyland',2,3),(20857,16861,'Ticky Tobin',2,4),(20857,170375,'Andre Ray Peetes',2,5),(20857,1855224,'Jefferson Albert Tibbs',0,6),(20857,1685830,'Jarius \'G-Baby\' Evans',0,7),(20857,1593036,'Clarence',0,8),(20857,1741409,'Baseball Coach',2,9),(20857,6110,'Duffy',2,10),(20857,69298,'Jimmy Fleming',2,11),(20857,86175,'Ellen',1,12),(20857,1173,'Fink',2,13),(20857,1234844,'Barber\'s Son',0,14),(20857,1855240,'Lenora Tibbs',1,15),(20857,1855244,'Straight-Laced Kid',0,16),(20857,1483236,'Gino',0,17),(20857,86571,'Ed',2,18),(20857,86579,'Pizza Guy',0,19),(20857,59569,'Other Pizza Guy',2,20),(19255,17697,'Burt Farlander',2,0),(19255,52792,'Verona De Tessant',1,1),(19255,37158,'Grace De Tessant',1,2),(19255,11514,'Gloria Farlander',0,3),(19255,8447,'Jerry Farlander',2,4),(19255,19,'Lily',1,5),(19255,84407,'Lowell',2,6),(19255,84408,'Ashley',0,7),(19255,84409,'Taylor',0,8),(19255,1579,'LN',1,9),(19255,52419,'Roderick',2,10),(19255,84410,'Wolfie',0,11),(19255,84411,'Baby Neptune',0,12),(19255,84412,'Baby Neptune',0,13),(19255,61659,'Tom Garnett',2,14),(19255,15684,'Courtney',2,15),(19255,15091,'Munch Garnett',1,16),(10187,1269,'Bud Johnson',2,0),(10187,62564,'Molly Johnson',1,1),(10187,52851,'Kate Madison',1,2),(10187,7090,'President Andrew Boone',2,3),(10187,2778,'Donald Greenleaf',2,4),(10187,78729,'Art Crumb',2,5),(10187,2283,'Martin Fox',2,6),(10187,41798,'John Sweeney',2,7),(10187,777,'Walter',2,8),(10187,157412,'Lewis',2,9),(10187,1229705,'Richard Petty',0,10),(10187,8261,'Willie Nelson',2,11),(10187,51544,'Larissa Johnson',1,12),(10187,11889,'Attorney General Wyatt',2,13),(10187,74070,'Galena Greenleaf',1,14),(10187,7862,'Chief Running Bear',0,15),(10187,60093,'James Carville',2,16),(10187,1223103,'Mary Hart',0,17),(10187,163555,'Arianna Huffington',1,18),(10187,44127,'Larry King',2,19),(10187,74086,'Bill Maher',2,20),(10187,60092,'Chris Matthews',2,21),(10187,1219487,'Lawrence O\'Donnell',0,22),(10187,79213,'Ted Drake',0,23),(10187,1448096,'Mrs. Abernathy',1,24),(10187,1301633,'KNME Techie',2,25),(10187,1527953,'Trailer Reporter #5',1,26),(10187,1654001,'Female Student',1,27),(31005,131,'Joe Nast',2,0),(31005,4483,'Ben Floss',2,1),(31005,4038,'Jojo Floss',1,2),(31005,129658,'Cheryl',0,3),(31005,9280,'Bertie Knox',1,4),(31005,129659,'Rabbi',0,5),(31005,129660,'Cantor',0,6),(31005,129661,'Server #1',2,7),(31005,101776,'Server #2',2,8),(31005,23967,'Mrs. Meyerson',0,9),(31005,65748,'Mr. Meyerson',2,10),(31005,129662,'Fashion Plate',0,11),(31005,18686,'Mona Camp',1,12),(31005,26008,'Tanner',2,13),(31005,12850,'Mike Mulcahey',2,14),(31005,9658,'Patty',0,15),(16363,16475,'Sheriff Ed Earl Dodd',2,0),(16363,67274,'Mona Stangley',1,1),(16363,6844,'Melvin P. Thorpe',2,2),(16363,1466,'Governor',2,3),(16363,84399,'Deputy Fred',2,4),(16363,115766,'Sen. Charles Wingwood',2,5),(16363,89043,'Dulcie Mae',1,6),(16363,77226,'Jewel',1,7),(16363,12852,'C.J.',2,8),(16363,80634,'Rita Crowell',1,9),(16363,115767,'Miss Modene',1,10),(16363,115768,'Himself',2,11),(16363,30297,'Edsel',2,12),(16363,1651878,'Chicken Ranch Girl (as Sandi Johnson)',0,13),(16363,103582,'Chicken Ranch Girl',1,14),(16363,99841,'Wulla Jean',1,15),(16363,151521,'Sheriff Chapman',2,16),(16363,17488,'Governor\'s Secretary',1,17),(16363,1283860,'Washing Girl',0,18),(16363,58808,'Chicken Ranch Girl (uncredited)',0,19),(16363,182590,'Mayor',2,20),(16363,1537819,'Mansel',0,21),(16363,1174058,'Chicken Ranch Girl',0,22),(16363,1868844,'Chicken Ranch Girl',0,23),(16363,1868845,'Chicken Ranch Girl',0,24),(16363,66637,'Chicken Ranch Girl',0,25),(16363,1868846,'Chicken Ranch Girl',0,26),(16363,1868847,'Chicken Ranch Girl (as Terrie M. Robinson)',0,27),(16363,1868848,'Chicken Ranch Girl',0,28),(16363,1868849,'Chicken Ranch Girl',0,29),(16363,1868850,'Aggie',0,30),(16363,1868851,'Aggie',0,31),(16363,1868852,'Aggie',0,32),(16363,1868853,'Aggie (as Jeffrey Calhoun)',0,33),(16363,1868854,'Aggie (as Jeffrey Calhoun)',0,34),(16363,1868855,'Aggie',0,35),(16363,1868856,'Aggie',0,36),(10678,67773,'Peter Sanderson',2,0),(10678,15758,'Charlene Morton',1,1),(10678,26510,'Howie Rottman',2,2),(10678,23709,'Virginia Arness',1,3),(10678,5376,'Kate Sanderson',1,4),(10678,43893,'Sarah Sanderson',1,5),(10678,1294,'Ashley',1,6),(10678,77117,'Georgey Sanderson',2,7),(10678,19975,'Todd Gendler',2,8),(10678,71727,'Mrs. Kline',1,9),(10678,2202,'Widow',2,10),(10678,10380,'Ed Tobias',2,11),(10678,976711,'Mike',0,12),(10678,55275,'Widow\'s Bodyguard',2,13),(10678,1073867,'Widow\'s Bodyguard',0,14),(10678,1080265,'Daniel Barnes',0,15),(10678,1230911,'Aaron',0,16),(10678,102567,'FBI Agent',2,17),(10678,75599,'Italian FBI Agent',2,18),(10678,154549,'Doorman',2,19),(10678,1215144,'Glen',2,20),(10678,1394349,'Big Man',2,21),(10678,1223877,'Big Man',0,22),(10678,66131,'Sofia',1,23),(10678,1749211,'College Party Boy',0,24),(10678,29214,'Saleslady',1,25),(10678,42724,'Male Commentator',2,26),(10678,159424,'Bear',2,27),(10678,1202533,'Caddy',0,28),(10678,1689900,'Hip Hopper',0,29),(10678,1749212,'Hip Hopper',0,30),(10678,1397694,'Hip Hopper',0,31),(10678,93009,'Flygirl',1,32),(10678,154181,'Hostess',1,33),(10678,143378,'Bartender',0,34),(10678,79349,'Mr. Kline',2,35),(10678,157078,'Rosa',0,36),(10678,1749214,'Waiter',0,37),(10678,541733,'Heavy Guy',2,38),(10678,1749215,'Nightclub Singer',0,39),(10678,1749216,'Backup Singer',0,40),(10678,1749217,'Backup Singer',0,41),(10678,1749218,'Down Low Dancer',0,42),(10678,1749219,'Down Low Dancer',0,43),(10678,1749221,'Down Low Dancer',0,44),(10678,582838,'Down Low Dancer',0,45),(10678,1749223,'Down Low Dancer',0,46),(10678,1749224,'Down Low Dancer',0,47),(10678,154041,'Charlene\'s Neighbor',1,48),(10678,92288,'Hotel Hostess',1,49),(10678,1348580,'House Guest #4',0,50),(10678,1123808,'Club Goer',1,51),(10678,1749232,'Club Goer',0,52),(10678,1749233,'Paramedic',0,53),(10678,102853,'Party Guest',2,54),(10678,1749234,'Partygoer',0,55),(10678,1519011,'Attorney in Photo',1,56),(10678,1749236,'Valet',0,57),(10678,1749238,'Club Goer',0,58),(16290,9656,'Himself',2,0),(16290,56584,'Himself',2,1),(16290,110068,'Himself',2,2),(16290,56585,'Himself',2,3),(16290,56586,'Himself',2,4),(16290,78840,'Wee Man (Himself)',2,5),(16290,76365,'Himself',2,6),(16290,220241,'Himself',2,7),(16290,86627,'Himself',2,8),(16290,117261,'Himself',2,9),(16290,117287,'Herself',1,10),(16290,1692535,'Himself',2,12),(16290,56578,'Himself',2,13),(16290,117258,'Himself',2,14),(16290,16832,'Himself',2,15),(16290,229077,'Himself',2,16),(16290,5953,'Himself',2,17),(16290,61437,'Himself',2,18),(16290,61441,'Himself',2,19),(16290,56580,'Himself',0,20),(16290,1692536,'Himself',0,21),(16290,1211925,'Himself',2,22),(16290,571929,'Himself',2,23),(16290,1692537,'Himself',0,24),(16290,61440,'Himself',0,25),(16290,1692538,'Himself',0,26),(16290,1692539,'Himself',0,27),(16290,1225764,'Himself',2,28),(16290,117256,'Himself',2,29),(16290,1692540,'Himself',0,30),(16290,60828,'Himself',2,31),(16290,60827,'Himself',0,32),(16290,60830,'Himself',0,33),(16290,60804,'Himself',2,34),(16290,1692541,'Himself',2,35),(16290,79962,'Himself',0,36),(16290,117260,'Himself',2,37),(16290,1230736,'Himself',2,38),(16290,117289,'Himself',2,39),(16290,1850223,'Himself',2,40),(16290,1735983,'Himself',2,41),(16290,1869605,'Herself',1,42),(14405,69597,'Chloe (voice)',1,0),(14405,15555,'Rachel Ashe Lynn',1,1),(14405,1271,'Delgado (voice)',2,2),(14405,41798,'Papi (voice)',2,3),(14405,55259,'Chico (voice)',2,4),(14405,77886,'Monte (voice)',2,5),(14405,587,'Diablo (voice)',2,6),(14405,18284,'Delta (voice)',1,7),(14405,8944,'Aunt Viv',1,8),(14405,40481,'Chucho (voice)',2,9),(14405,77887,'Rafa (voice)',2,10),(14405,77888,'Tomu00e1s (voice)',0,11),(11637,9778,'Nick Persons',2,0),(11637,9781,'Suzanne Kingston',1,1),(11637,64064,'Lindsey Kingston',1,2),(11637,64066,'Kevin Kingston',2,3),(11637,12217,'Marty',2,4),(11637,22132,'Al',2,5),(11637,67913,'Carl',2,6),(11637,172851,'Car Dealer',2,7),(11637,60601,'Nick\'s Pal on the Street',2,8),(11637,1224874,'Frank Kingston',0,9),(11637,114894,'Ernst',2,10),(11637,1655618,'Basketball Player',2,11),(11637,1235562,'Drug Store Clerk',0,12),(12153,35690,'Kevin Copeland',2,0),(12153,9562,'Marcus Copeland',2,1),(12153,5915,'Heather Vandergeld',1,2),(12153,13936,'Elliott Gordon',2,3),(12153,71482,'Brittany Wilson',1,4),(12153,24198,'Tiffany Wilson',1,5),(12153,58058,'Agent Jake Harper',2,6),(12153,11512,'Warren Vandergeld',2,7),(12153,60928,'Karen',1,8),(12153,53256,'Latrell Spencer',2,9),(12153,35476,'Megan Vandergeld',1,10),(12153,88031,'Agent Vincent Gomez',2,11),(12153,22126,'Tori',1,12),(12153,80760,'Denise Porter',1,13),(12153,53828,'Lisa',1,14),(13497,36811,'Devon Miles',2,0),(13497,8691,'Laila',1,1),(13497,18270,'Dr. Lee',2,2),(13497,83859,'Sean Taylor',2,3),(13497,60847,'Jayson',0,4),(13497,84116,'Charles',2,5),(13497,84115,'Ernest',2,6),(13497,84117,'Diedre',1,7),(13497,84118,'Big Rob',2,8),(13497,84119,'Trey',0,9),(13497,84120,'Mr. Wade',2,10),(13497,37825,'President Wagner',2,11),(13497,84122,'Henry',0,13),(13497,84123,'Buck Wild',2,14),(13497,1305249,'Dorothy Miles',0,15),(10073,21595,'Julia Jones',1,0),(10073,58952,'Grant Funkyerdoder',2,1),(10073,52854,'Andy',1,2),(10073,38334,'Roz Funkyerdoder',1,3),(10073,20753,'Bernie Funkyerdoder',2,4),(10073,62843,'Linda Jones',1,5),(10073,62842,'Frank Jones',2,6),(10073,61696,'Betty',1,7),(10073,52860,'Nicky',2,8),(10073,28639,'Anne',1,9),(10073,19754,'Hitch',2,10),(10073,62844,'Eduardo / Housekeeper',0,11),(10073,62846,'Justice of the Peace',2,12),(10073,62845,'Old Cat Woman',1,13),(10073,62850,'Sam',0,14),(10073,62847,'Wedding Planner / Receptionist',0,15),(10073,62849,'Frodo',2,16),(10073,62848,'Jell-O',1,17),(10073,62851,'Gandalf',2,18),(10073,62852,'Jewelry Store Clerk',0,19),(10073,159913,'Krumpin Dance Double - Julia',1,20),(10073,1868278,'Native King Kong',2,21),(16690,107358,'Jane / Young Wendy (Voice)',1,0),(16690,77885,'Peter Pan (Voice)',2,1),(16690,34982,'Smee (Voice)',2,2),(16690,60739,'Wendy Darling (voice)',1,3),(16690,35219,'Captain Hook (voice)',2,4),(16690,35219,'Wendy Darling (voice)',2,5),(16690,1381842,'Danny (voice)',0,6),(16690,16407,'Edward (voice)',2,7),(16690,35654,'Cubby (voice)',2,8),(16690,145151,'Nibs (voice)',0,9),(16690,1381843,'Slightly (voice)',0,10),(16690,91785,'Twins (voice)',0,11),(14873,1230,'Baloo (voice)',2,0),(14873,9640,'Mowgli (voice)',2,1),(14873,52404,'Shanti (voice)',1,2),(14873,945115,'Ranjan (voice)',2,3),(14873,179702,'Bagheera (voice)',2,4),(14873,65598,'Shere Khan (voice)',2,5),(14873,110001,'Lucky (voice)',2,6),(14873,655,'Ranjan\'s Father (voice)',2,7),(14873,12077,'Kaa / Colonel Hathi / M.C. Monkey (voice)',2,8),(15655,12077,'Tigger / Winnie the Pooh (voice)',2,0),(15655,90453,'Roo (voice)',2,2),(15655,77482,'Rabbit (voice)',2,3),(15655,5247,'Piglet (voice)',2,4),(15655,19540,'Eeyore (voice)',2,5),(15655,77546,'Owl (voice)',2,6),(15655,60739,'Kanga (voice)',1,7),(15655,105503,'Christopher Robin (voice)',2,8),(21208,21657,'Kate Coleman',1,0),(21208,133,'John Coleman',2,1),(21208,77517,'Esther',1,2),(21208,30485,'Sister Abigail',1,3),(21208,6860,'Daniel Coleman',2,4),(21208,452,'Dr. Browning',1,5),(21208,10841,'Dr. Vu00e4rava',2,6),(21208,90455,'Max Coleman',1,7),(21208,44275,'Grandma Barbara',1,8),(21208,90456,'Brenda',0,9),(21208,90457,'Joyce',0,10),(21208,59602,'Detective',0,11),(21208,80969,'Sister Judith',1,12),(21208,90458,'Daniel\'s Friend #1',0,13),(21208,90459,'Daniel\'s Friend #2',0,14),(21208,90460,'Hospital Receptionist',0,15),(21208,90461,'Delivery Room Nurse',1,16),(21208,90462,'Teacher',0,17),(21208,90463,'Saarne Institute Receptionist',0,18),(21208,90464,'Saarne Institute Orderly',0,19),(21208,44191,'ICU Doctor',2,20),(21208,90465,'ICU Nurse',0,21),(21208,90466,'Waiting Room Nurse',0,22),(21208,90467,'Injection Doctor',2,23),(13279,2231,'Abel Turner',2,0),(13279,17178,'Chris Mattson',2,1),(13279,11703,'Lisa Mattson',1,2),(13279,74570,'Harold Perreau',2,3),(13279,20746,'Donnie Eaton',2,4),(13279,19487,'Javier Villareal',2,5),(13279,74571,'Celia Turner',1,6),(13279,74572,'Marcus Turner',0,7),(13279,74573,'Captain Wentworth',2,8),(13279,54714,'Clarence Darlington',2,9),(13279,74574,'Damon Richards',0,10),(13279,74575,'Jung Lee Pak',2,11),(13279,74576,'Sang Hee Pak',0,12),(13279,74577,'Nadine',1,13),(13279,74578,'Manager',2,14),(13279,100653,'Aunt Dorrie',1,15),(13279,1668476,'TV Weatherman',2,16),(33644,9780,'Stella Payne',1,0),(33644,17637,'Winston Shakespeare',2,1),(33644,2395,'Delilah Abraham',1,2),(33644,9788,'Vanessa',1,3),(33644,80622,'Angela',1,4),(33644,59018,'Quincy Payne',2,5),(33644,1433986,'Chantel',0,6),(33644,10090,'Jack',2,7),(33644,8689,'Buddy',2,8),(33644,1481,'Nate',2,9),(33644,114674,'Dr. Shakespeare',2,10),(33644,171167,'Mrs. Shakespeare',0,11),(33644,1433987,'Ms. Thang',0,12),(33644,1433988,'Abby',0,13),(33644,25544,'Walter Payne',2,14),(33644,198886,'Kennedy',0,15),(33644,20748,'Uncle Ollie',0,16),(33644,1433990,'Minister',0,17),(33644,15212,'Dr. Steinberg',2,18),(33644,29382,'Judge Spencer Boyle',2,19),(33644,1217813,'Leslie James',0,20),(33644,1433991,'Kitchen Worker',0,21),(33644,1445439,'Buffet Server',0,22),(33644,1433994,'Upbeaters Band',0,23),(33644,1433995,'Upbeaters Band',0,24),(33644,1433997,'Upbeaters Band',0,25),(33644,1433999,'Winston\'s Friend',0,26),(33644,184250,'Girl in Jamaica Commercial',0,27),(33644,55600,'Man in Commercial',0,28),(33644,1434000,'Stella\'s Friend',0,29),(33644,1434001,'Friend at Party #1',0,30),(33644,1434003,'Friend at Party #2',0,31),(33644,2047,'(scenes deleted)',2,32),(33644,1434005,'Moviegoer (uncredited)',0,33),(33644,1434006,'Woman on the Gurney (uncredited)',0,34),(33644,1434007,'Dreadlocked Man in Commercial (uncredited)',0,35),(33644,8536,'Isaac (uncredited)',2,36),(33644,1386130,'Guy by pool / Pajama Party Guest (uncredited)',0,37),(27579,1461,'Jack / Edward',2,0),(27579,44649,'Clara',1,1),(27579,45749,'Mathilde',1,2),(27579,4819,'Father Benedetto',0,3),(27579,53904,'Pavel',2,4),(27579,85386,'Ingrid',1,5),(27579,586953,'Anna',1,6),(27579,1280827,'Hunter #1',0,7),(27579,55002,'Hunter #2',2,8),(27579,7556,'Old Cheese Vendor',0,9),(27579,1223739,'Waiter (Market)',2,10),(27579,226029,'Man on Vespa',2,11),(27579,147734,'Young Swedish Man',2,12),(27579,1280828,'Postmaster',2,13),(27579,105868,'Fabio',2,14),(27579,585365,'Hooker #1',0,15),(27579,1280829,'Hooker #2',1,16),(27579,1280830,'Hooker #3',1,17),(27579,1040332,'Waiter (Locanda Grapelli)',2,18),(27579,1280831,'Barman (Town Square Bar)',0,19),(16052,16866,'Selena Quintanilla-Pu00e9rez',1,0),(16052,587,'Abraham Quintanilla',2,1),(16052,92326,'Marcela Quintanilla',1,2),(16052,288,'Chris Perez',2,3),(16052,28779,'Yolanda Saldu00edvar',1,4),(16052,1242291,'Suzette Quintanilla',0,5),(16052,16429,'A. B. Quintanilla',2,6),(16052,104380,'Deborah',1,7),(16052,953193,'Young Selena',0,8),(16052,950326,'Young Suzette',1,9),(16052,955633,'Young Abie',2,10),(16052,156756,'Seff - Dinos 1961',2,11),(14359,5064,'Sister Aloysius Beauvier',1,0),(14359,1233,'Father Brendan Flynn',2,1),(14359,9273,'Sister James',1,2),(14359,19492,'Mrs. Miller',1,3),(14359,17488,'Sister Veronica',1,4),(14359,77100,'Sister Raymond',1,5),(14359,1913,'Mrs. Carson',1,6),(14359,7465,'Christine Hurley',1,7),(14359,171747,'Warren Hurley',2,8),(14359,1716577,'Jimmy Hurley',0,9),(14359,1561113,'Donald Miller',0,10),(14359,1716578,'William London',0,11),(14359,1716579,'Kevin',0,12),(14359,1248382,'Ralph',0,13),(14359,1611576,'Tommy Conroy',0,14),(14359,1716580,'Raymond',0,15),(14359,1419649,'Noreen Horan',1,16),(14359,1716581,'Sarah',1,17),(14359,945753,'Alice',1,18),(14359,1716582,'Mrs. Kean',1,19),(14359,160261,'Sister Teresa',1,20),(14359,102199,'Monsignor Benedict',2,21),(14359,1292473,'Father Sherman',0,22),(14359,1716584,'Mrs. Shields',1,23),(14359,1186003,'Mr. McGuinn',2,24),(14359,57823,'Mrs. Deakins',1,25),(14359,1782381,'Girl in Church',0,26),(14359,1276203,'Parishioner',1,27),(14359,133905,'Parishioner',0,28),(14359,1633449,'Parishioner',0,29),(14359,1449608,'Parishioner',0,30),(14359,4571,'Parishioner',1,31),(14359,1782399,'Parishioner',0,32),(14359,1680932,'Parishioner',1,33),(14359,1652397,'Parishioner',2,34),(14359,1781199,'Student',1,35),(14359,1781205,'Student',1,36),(14359,1781217,'Student',1,37),(14359,1639432,'Parishioner',0,38),(14359,1758909,'Parishioner',0,39),(14359,1246221,'Parishioner',1,40),(14359,1782406,'Parishioner',1,41),(14359,1782408,'Parishioner',0,42),(14359,1782412,'Parishioner',1,43),(14359,1003286,'Parishioner',1,44),(20391,18391,'Ben Rumson',2,0),(20391,190,'Pardner',2,1),(20391,3830,'Elizabeth',1,2),(20391,3907,'Rotten Luck Willie',2,3),(20391,4093,'Mad Jack Duncan',2,4),(20391,163548,'Horton Fenty',2,5),(20391,97659,'Parson',2,6),(20391,15969,'Horace Tabor',2,7),(20391,32494,'Atwell',2,8),(20391,1125664,'Foster',0,9),(20391,14786,'Jacob Woodling',2,10),(20391,166961,'Sarah Woodling',1,11),(20391,12298,'Hennessey',2,12),(10139,2228,'Harvey Milk',2,0),(10139,46593,'Cleve Jones',2,1),(10139,17051,'Scott Smith',2,2),(10139,16851,'Dan White',2,3),(10139,8688,'Jack Lira',2,4),(10139,17486,'Anne Kronenberg',1,5),(10139,8536,'Mayor Moscone',2,6),(10139,81681,'John Briggs',2,7),(10139,33528,'Dick Pabich',2,8),(10139,57093,'Rick Stokes',2,9),(10139,467645,'Denton Smith',2,10),(10139,67601,'Danny Nicoletta',2,11),(10139,54697,'Telephone Tree',2,12),(19904,21043,'David Harris',2,0),(19904,6068,'Susan Harding',1,1),(19904,110927,'Michael Harding',2,2),(19904,55085,'Kelly Porter',1,3),(19904,33653,'Leah',1,4),(19904,74932,'Jackie Kerns',1,5),(19904,4602,'Jay',2,6),(19904,110928,'Mrs. Cutter',1,7),(19904,110929,'Detective Shay',2,8),(19904,107437,'Sean Harding',2,9),(19904,58966,'Detective Tylar',1,10),(19904,110930,'Beth Harding',1,11),(19904,110931,'Captain Mackie',2,12),(19904,81373,'Dylan Bennet',2,13),(19904,7523,'Julie King',1,14),(17182,35,'Karen McCann',1,0),(17182,2628,'Robert Doob',2,1),(17182,228,'Mack McCann',2,2),(17182,821,'Dolly Green',1,3),(17182,33689,'Angel Kosinsky',1,4),(17182,3266,'Detective Sergeant Denillo',2,5),(17182,27261,'Julie McCann',1,6),(17182,157108,'Megan McCann',1,7),(17182,65827,'Martin',2,8),(17182,4492,'Sidney Hughes',2,9),(17182,65017,'Susan Juke',1,10),(17182,29446,'Judge Arthur Younger',2,11),(17182,8539,'District Attorney Howard Bolinger',2,12),(17182,51188,'Peter Green',2,13),(17182,74375,'Tina',1,14),(17182,173264,'Redheaded Woman',1,15),(17182,170074,'Teacher',1,16),(14043,34847,'Nancy Drew',1,0),(14043,216,'Corky Veinshtein',2,1),(14043,41883,'Ned Nickerson',2,2),(14043,38581,'Jane Brighton',1,3),(14043,15455,'Carson Drew',2,4),(14043,3041,'John Leshing',2,5),(14043,76313,'Inga Veinshtein',1,6),(14043,69508,'Trish',1,7),(14043,13473,'Dashiel Biedermeyer',2,8),(14043,154829,'Thug',0,9),(14043,163968,'Charlie',0,10),(14043,165950,'Bess',1,11),(14043,38703,'Georgie',1,12),(14043,100463,'Chief McGinnis',2,13),(14043,124086,'Father Murray',2,14),(14043,15007,'Dehlia Draycott',1,15),(14043,35232,'Landlady',1,16),(14043,156658,'Hannah',1,17),(14043,1910,'Barbara Barbara',1,18),(14043,167139,'Principal Fineman',2,19),(14043,59846,'Costume Lady',1,21),(14043,149774,'Assistant Director',2,22),(14043,6163,'Arrogant Director Andy',2,23),(14043,183838,'File Lady',1,24),(14043,71392,'Twin Palms Manager',1,25),(14043,1077886,'Allie Brighton',0,26),(14043,1212619,'\'New Century\' Actor',2,27),(14043,62,'Bruce (uncredited)',2,28),(19901,569,'Edward Dalton',2,0),(19901,4783,'Charles Bromley',2,1),(19901,5293,'Lionel \'Elvis\' Cormac',2,2),(19901,79966,'Audrey Bennett',1,3),(19901,103554,'Alison Bromley',1,4),(19901,77496,'Christopher Caruso',2,5),(19901,33182,'Senator Turner',2,6),(19901,76068,'Frankie Dalton',2,7),(19901,1121519,'Lisa Barrett',0,8),(19901,61911,'News Reader',1,9),(19901,56496,'Colin Briggs',0,10),(19901,125318,'Ellie Landon',1,11),(19901,1391737,'Joy Watkins',0,12),(19901,75175,'Jarvis Bayom',2,14),(19901,1120664,'Officer Hobbs',0,16),(19901,1128161,'Forensic Investigator Simms',1,17),(34016,59860,'Molly',1,0),(34016,449,'Kirk Kettner',2,1),(34016,6858,'Jack',2,2),(34016,78080,'Patty',1,3),(34016,15453,'Mrs. Kettner',1,4),(34016,41662,'Marnie',1,5),(34016,111685,'Katie (Mollyu2019s Sister)',1,6),(34016,22128,'Cam',2,7),(34016,51990,'Stainer',2,8),(34016,41565,'Devon',2,9),(34016,1215836,'Dylan',0,10),(34016,1222945,'Wendy',0,11),(34016,61607,'Mr. Kettner',2,12),(34016,95875,'Mr. Fuller',2,13),(10069,20132,'Hutch',2,0),(10069,19664,'Abigail',1,1),(10069,51391,'Swink',2,2),(10069,22125,'Phineus',2,3),(10069,17859,'Detective Thibodeaux',2,4),(10069,16501,'Loomis Crowley',2,5),(10069,54830,'October',1,6),(10069,6163,'Miller Banks',2,7),(10069,62784,'Rex',0,8),(10069,62783,'Sarah',0,9),(10069,62785,'Loretta',0,10),(10069,62787,'Detective King',0,11),(10069,62788,'Fidget',2,12),(10069,62786,'Mrs. Crowley',0,13),(10069,62790,'Countess',0,14),(10069,62793,'Stay Alive Game Voice-Over',0,15),(10069,62789,'Young Rookie',0,16),(10069,62791,'Emma',0,17),(10069,62792,'News Reporter',0,18),(10069,21166,'Jonathan Malkus',2,19),(12819,17265,'Kate',1,0),(12819,15033,'Humphrey',2,1),(12819,2778,'Tony',2,2),(12819,6886,'Lilly',1,3),(12819,2047,'Winston',2,4),(12819,30882,'Reba',1,5),(12819,14723,'Eve',1,6),(12819,74577,'Sweets',1,7),(12819,1063149,'Paddy',2,9),(12819,60633,'Shakey',2,10),(12819,87440,'Garth',2,11),(12819,1227849,'Salty (voice)',2,12),(10115,1229,'Burt Vickerman',2,0),(10115,34434,'Haley Graham',1,1),(10115,52938,'Joanne Charis',1,2),(10115,63677,'Mina Hoyt',1,3),(10115,63676,'Wei Wei Yong',0,4),(10115,34502,'Frank',2,5),(10115,43464,'Poot',2,6),(10115,9629,'Brice Graham',2,7),(10115,14226,'Alice Graham',1,8),(10115,11715,'Judge Westreich',1,9),(10115,63678,'Ivan',2,10),(10115,63679,'Dorrie',1,11),(10115,6907,'Officer Ferguson',1,12),(10115,63683,'Himself',0,13),(10115,63682,'Himself',2,14),(10115,63681,'Mrs. Charis',1,15),(10115,63680,'Tricia Skilken',1,16),(10115,63684,'Herself',0,17),(10115,63686,'Nick',0,18),(10115,63685,'Stussy',0,19),(10115,1584877,'Gloria Javier',1,20),(25132,6860,'Teo Thompon',2,0),(25132,52852,'Stacy Thompson',1,1),(25132,93218,'Helvetica Black',0,2),(25132,3905,'Dr. Noseworthy',2,3),(25132,13548,'Mr. Black',2,4),(25132,69718,'Dad Thompsan',2,5),(25132,93219,'Nose Noseworthy',2,6),(25132,76098,'Loogie',2,7),(25132,55494,'Cole Black',0,8),(25132,20499,'Lug',0,9),(25132,557921,'Laser',2,10),(25132,947563,'Bully #1',2,11),(25132,947564,'Bully #2',2,12),(25132,1112451,'Hallway Kid (uncredited)',0,13),(25132,1112452,'Classroom Kid (uncredited)',0,14),(25132,957632,'Classmate (uncredited)',2,15),(25132,1112453,'Schoolyard Kid (uncredited)',0,16),(25132,456066,'Classmate / Neighborhood Kid (uncredited)',2,17),(25132,1112454,'Classmate (uncredited)',0,18),(25132,1112455,'Schoolyard Kid (uncredited)',0,19),(25132,1112456,'Girl on Bus (uncredited)',0,20),(25132,1112457,'Classmate (uncredited)',0,21),(25132,1104323,'Blinker #1',0,22),(25132,1112458,'Blinker #2',0,23),(25132,1112459,'Neighborhood Kid',0,24),(25132,1112460,'Neighborhood Kid (uncredited)',0,25),(25132,1093510,'(uncredited)',0,26),(25132,1112461,'Schoolyard Kid (uncredited)',0,27),(25132,41087,'Mom Thompson',1,28),(12690,110,'Everett Hitch',2,0),(12690,228,'Virgil Cole',2,1),(12690,9137,'Allie',1,2),(12690,16940,'Randall Bragg',0,3),(12690,9191,'Phil Olson',2,4),(12690,2714,'Ring Shelton',2,5),(12690,92949,'Vince',2,6),(12690,9566,'Marshall Jack Bell',0,7),(12690,53969,'Dean',2,8),(12690,142331,'Joe Whittfield',0,9),(12690,239210,'Tilda',0,10),(12690,16433,'Earl May',2,11),(12690,19453,'Abner Raines',2,12),(12690,17006,'Katie',1,13),(13596,31837,'Tank',2,0),(13596,11661,'Alexis',1,1),(13596,7447,'Professor Turner',2,2),(13596,21593,'Dustin',2,3),(13596,59263,'Rachel',1,4),(13596,51988,'Ami',1,5),(13596,453,'Hilary',1,6),(13596,142953,'Lizzy',1,7),(13596,41565,'Craig',2,8),(13596,1077059,'Claire',0,9),(13596,132355,'Dwalu',2,10),(13596,1213573,'Josh',0,11),(13596,70830,'Merrilee',1,12),(13596,64341,'Carly',1,13),(13596,133967,'Brian',2,14),(13596,205586,'Pedro',0,15),(13596,204913,'Courtney',1,16),(13596,115217,'Laney the Babysitter',1,17),(13596,54717,'Heavily Pierced Kid',0,18),(13596,77912,'Sad Dork',2,19),(13596,69423,'Seamstress',1,20),(13596,58333,'Priest',2,21),(13596,133072,'Chef Slava',0,22),(13596,886142,'Kindly Stripper',1,23),(13596,1732322,'Ms. Barber',0,24),(13596,1183867,'Hot Coed',0,25),(13596,230944,'Ms. Reiling',0,26),(13596,208343,'Burt',0,27),(13596,63661,'Colleen',1,28),(13596,1802145,'Random Guy',0,29),(13596,1811264,'Random Guy\'s Girl',1,30),(13596,1811260,'Lee',0,31),(13596,1811261,'Grandmother',0,32),(13159,6352,'Georgia Randall',1,0),(13159,49265,'Rachel Wilcox',1,1),(13159,7427,'Lily Randall',1,2),(13159,20212,'Dr. Simon Ward',2,3),(13159,2130,'Arnold',2,4),(13159,9828,'Harlan Wilson',2,5),(13159,1210,'Izzy',2,6),(13159,61400,'Sam',2,7),(13159,89819,'Ethan',2,8),(13159,12133,'Paula Richards',1,9),(13159,83053,'Fern',1,10),(22796,206,'Adult Joe Wenteworth',2,0),(22796,15852,'Rebecca Wenteworth',1,1),(22796,1021869,'Simon Birch',2,2),(22796,4787,'Joe Wenteworth',2,3),(22796,17485,'Ben Goodrich',2,4),(13682,12077,'Winnie the Pooh / Tigger (voice)',2,0),(13682,5247,'Piglet (voice)',2,1),(13682,90453,'Roo (voice)',2,2),(13682,60739,'Kanga (voice)',1,3),(13682,77482,'Rabbit (voice)',2,4),(13682,19540,'Eeyore (voice)',2,5),(13682,4154,'Mama Heffalump (voice)',1,6),(13682,77484,'Lumpy (voice)',2,7),(18357,9640,'Beary Barrington (voice)',2,0),(18357,5727,'Ted Bedderhead (voice)',2,1),(18357,82987,'Trixie (voice)',1,2),(18357,16433,'Big Al (voice)',2,3),(18357,18,'Fred Bedderhead (voice)',2,4),(18357,18271,'Tennessee O\'Neal (voice)',2,5),(18357,24362,'Henry (voice)',2,6),(18357,17401,'Zeb Zoober (voice)',2,7),(18357,4690,'Reed Thimple',2,8),(18357,537,'Norbert Barrington',2,9),(18357,15028,'Officer Hamm',2,10),(18357,22132,'Roadie',2,11),(18357,5727,'Officer Cheets',2,12),(18357,20752,'Rip Holland',2,13),(18357,82988,'Mrs. Barrington',1,14),(18357,1700177,'Waitress',1,15),(18357,116027,'Dexter Dex Barrington',2,16),(18357,15758,'Cha-Cha',1,17),(18357,155692,'Tom Tamina',2,18),(18357,1775795,'Tina Tamina',1,19),(18357,1775800,'Chef',0,20),(18357,1775801,'Benny Bogswaggle',0,21),(18357,189734,'Elderly Black Man',0,22),(18357,143331,'Store Manager',2,23),(18357,75923,'Mr. Slamboni',0,24),(18357,84495,'Long-Haired Dude',2,25),(18357,1775802,'Elderly Woman',0,26),(18357,1212836,'TV Reporter',0,27),(18357,1775803,'Cashier',0,28),(18357,1775809,'Fry Cook',0,29),(18357,1775810,'Grip',0,30),(18357,1775811,'Video Roadie',0,31),(15644,6614,'Bo Laramie',2,0),(15644,17346,'Abby Laramie',1,1),(15644,1117,'Detective Burton',2,2),(15644,24516,'Wendell Stokes',2,3),(15644,3197,'Rex Harper',2,4),(15644,2441,'Leonard Clark',2,5),(15644,2632,'Pizza Delivery Guy',2,6),(15644,2461,'Anger Management Therapy Patient (uncredited)',2,7),(15644,10297,'Matthew McConaughey (uncredited)',2,8),(15644,4937,'Vince Vaughn (uncredited)',2,9),(10642,21593,'Paul Tannek',2,0),(10642,8211,'Dora Diamond',1,1),(10642,6212,'Adam',2,2),(10642,1218218,'Chris',0,3),(10642,22125,'Noah',2,4),(10642,17141,'Edward Alcott',2,5),(10642,707,'Dad',2,6),(10642,66160,'Gena',1,7),(10642,53601,'Sal',2,8),(10642,1000241,'Annie',0,9),(10642,62715,'Victor',2,10),(10642,13023,'Homeless Woman',1,11),(10642,43120,'Another City Worker',2,12),(10642,3214,'Panty Hose Customer',2,13),(10642,118946,'Doctor',2,14),(10642,37043,'Photographer',2,15),(22074,17087,'Michael Moore',2,0),(22074,2155,'Herself',1,1),(22074,938880,'Himself',2,2),(22074,555311,'Himself',2,3),(22074,938881,'Himself',2,4),(22074,938882,'Herself',0,5),(22074,12900,'Himself',2,6),(22074,501362,'Herself',0,7),(22074,938883,'Himself',0,8),(13805,34202,'Will',2,0),(13805,20404,'Amy',1,1),(13805,74615,'Enchanted Princess / Amy Winehouse Look-A-Like / Jessica Simpson Look-A-Like',1,2),(13805,58957,'Juney / Hannah Montana',1,3),(13805,1114053,'Calvin',0,4),(13805,198150,'Wolf / Javier Bardem Look-A-Like / Police Officer / Hellboy / Batman / Beowulf / Prince Caspian',2,5),(13805,28639,'Beautiful Assassin',1,6),(13805,19754,'Indiana Jones',2,7),(13805,54593,'Prince',2,8),(13805,181685,'Underwear Model',2,9),(13805,1114054,'Dr. Phil Look-A-Like / Love Guru',0,10),(13805,47884,'Samantha',1,11),(13805,981262,'Male Carrie',2,12),(13805,212225,'Lisa',1,13),(13805,1074186,'Bruce Banner',2,14),(10710,7399,'Tim Dingman',2,0),(10710,70851,'Nick Vanderpark',2,1),(10710,3293,'Debbie Dingman',1,2),(10710,4690,'J-Man',2,3),(10710,56322,'Natalie Vanderpark',1,4),(10710,76414,'Lula Dingman',1,5),(10710,57191,'Michael Dingman',2,6),(10710,1778248,'Nellie Vanderpark',1,7),(10710,1213527,'Nathan Vanderpark',0,8),(10710,111214,'Eduardo',2,9),(10710,1744987,'Woman at Play',1,10),(10710,1778250,'Dimitriov',0,11),(10710,110931,'Cal',2,12),(10710,95795,'Les',2,13),(10710,1219576,'3M Worker',2,14),(10710,1469,'Mr. Parmenter',2,15),(10710,53778,'Bartender',2,16),(10710,150186,'Mable',1,17),(10710,154727,'Bosco',0,18),(10710,1778253,'Lester',0,19),(10710,1235959,'State Trooper',0,20),(10710,1778254,'Pete',0,21),(10710,147371,'Italian Minister',2,22),(10710,77587,'Translator',2,23),(10710,181133,'Oscar',2,24),(10710,181090,'Vanderpark Nanny',1,25),(10710,976231,'Young Kissing Man',2,26),(10710,156731,'Dr. Fernandez',1,27),(10710,164938,'Lab Assistant',1,28),(10710,154263,'Upscale Auctioneer',2,29),(10710,82585,'Downscale Auctioneer',2,30),(10710,1778256,'Girl #1 at Play (Bee)',0,31),(10710,1483726,'Girl #2 at Play (Butterfly)',0,32),(10710,1778257,'Girl #3 at Play (Flower)',0,33),(10710,1778258,'Girl #4 at Play (Rock)',0,34),(10710,1778259,'Boy #1 at Play (Duck)',0,35),(10710,4741,'Boy #2 at Play (Wolf)',2,36),(10710,1778260,'Boy #3 at Play (Worm)',0,37),(10710,1778261,'Campaign Emcee',0,38),(10710,1427707,'Pool Worker',0,39),(10710,79086,'Newscaster',2,40),(10710,1778262,'Teacher at Play',1,41),(15092,976,'Chev Chelios',2,0),(15092,20189,'Eve',1,1),(15092,20309,'Doc Miles',2,2),(15092,20190,'Venus',2,3),(15092,168974,'Dark Chocolate',0,4),(15092,20191,'Ricky Verona',0,5),(15092,117187,'Orlando',2,6),(15092,91387,'Don Kim',2,7),(15092,590820,'Johnny Vang',0,8),(15092,73127,'Chico',2,9),(15092,39126,'Ria',1,10),(15092,5365,'El Huron',2,11),(15092,141,'Poon Dong',2,12),(15092,17444,'Randy',2,13),(15092,47987,'Karen Chelios',1,14),(15092,116446,'Young Chev',2,15),(15092,111195,'Talk Show Host',2,16),(15092,11077,'Fish Halman',0,17),(15092,429401,'Chinese Doctor 1',2,18),(15092,1581943,'Nevada',1,19),(15092,1284345,'Pepper',0,20),(15092,132093,'Male Porn Star',0,21),(15092,54725,'Pornstar on Strike',1,22),(15092,1209705,'School Classmate',2,23),(15092,77870,'Doctor',2,24),(15092,1639187,'Teacher',2,25),(15092,108661,'Hollywood Park Guy',2,26),(11382,3036,'David Shayne',2,0),(11382,1902,'Helen Sinclair',1,1),(11382,7906,'Olive Neal',1,2),(11382,9046,'Cheech',2,3),(11382,18248,'Ellen',1,4),(11382,5251,'Julian Marx',2,5),(11382,3026,'Sheldon Flender',2,6),(11382,30364,'Eden Brent',0,7),(11382,60023,'Nick Valenti',2,8),(11382,388,'Warner Purcell',2,9),(11382,7420,'Sid Loomis',2,10),(15005,87431,'Hadassah / Esther',1,0),(15005,11390,'Samuel, the Prophet',2,1),(15005,10843,'King Xerxes',2,2),(15005,1381,'Prince Admantha',0,3),(15005,5004,'Prince Memucan',0,4),(15005,655,'Mordecai',2,5),(15005,9145,'Haman, the Agagite',2,6),(15005,8396,'Hegai, the Royal Eunuch',2,7),(15005,1077930,'Prince Tarshish',0,8),(15005,964980,'Queen Vashti',1,9),(15005,1077931,'Bigthan',0,10),(15005,181043,'Jesse',2,11),(15005,966629,'Hannah',0,12),(15005,1077932,'Sarah',1,13),(15005,1077933,'Harbona, the Eunuch',0,14),(15005,933391,'Prince Carshena',2,15),(15005,53107,'Prince Marsena',0,17),(15005,1246733,'King Saul (prologue)',0,18),(15070,10814,'Monroe Hutchen',2,0),(15070,10182,'George \'Iceman\' Chambers',2,1),(15070,2314,'Mendy Ripstein',2,2),(15070,12132,'A.J. Mercker',2,3),(15070,288,'Jesus \'Chuy\' Campos',2,4),(15070,181067,'Guard 1',2,5),(15070,15853,'Mingo Pace',2,6),(15070,26473,'James \'Ratbag\' Kroycek',2,7),(15070,87108,'Yank Lewis',2,8),(15070,33457,'Darlene Early',1,9),(15070,53401,'Al',2,10),(15070,120257,'Vinnie',2,11),(15070,24968,'Vern Van Zant',0,12),(15070,10480,'Warden Lipscom',2,13),(15070,942254,'Himself',2,14),(15070,94353,'Marvin Bonds',2,15),(15070,65164,'Gat Boyz Rapper 1',2,16),(15070,37008,'Skinhead',2,17),(15070,1219489,'Tawnee Rawlins',1,18),(15070,1404149,'Gat Boyz Rapper 2',0,19),(15070,1224314,'Gat Boyz Rapper 3',0,20),(12797,17835,'Bertram Pincus',2,0),(12797,17141,'Frank Herlihy',2,1),(12797,4939,'Gwen',1,2),(12797,20215,'Gwens Love Interest',2,3),(12797,77090,'Young Husband',0,4),(12797,77091,'Young Wife',0,5),(12797,77092,'Accident Bystander #1',0,6),(12797,77093,'Accident Bystander #2',2,7),(12797,77095,'Sneezy Lady',0,8),(12797,77096,'Upper East Side Lady',0,9),(12797,20644,'Dr. Prashar',2,10),(12797,41091,'Surgeon',1,11),(12797,64185,'Food Delivery Guy',0,12),(12797,143425,'Anesthesiologist',2,13),(12797,82104,'Assorted Ghost',1,14),(12797,77100,'Admitting Nurse',1,15),(12797,1225349,'Nurse',0,16),(12797,92572,'WWII Nurse',1,17),(12797,60143,'Day Doorman',0,18),(12797,77097,'Receptionist',0,19),(12797,77098,'Greenpeace Guy',0,20),(12797,77094,'Sneezy Cop',0,21),(12797,77099,'Resident',0,22),(12797,1237533,'Little Alex',2,23),(17134,56446,'Det. Danny Fisher',2,0),(17134,49735,'Miles Jackson',2,1),(17134,71128,'Molly Porter',1,2),(17134,2202,'Special Agent George Aiken',2,3),(17134,31137,'Det. Hank Carver',0,4),(17134,84754,'Special Agent Ray Santiago',2,5),(17134,54182,'Erica Kessen',1,6),(17134,84756,'Dave Fisher',2,7),(17134,84757,'Willie Dumaine',2,8),(17134,84759,'Anthony Deluso',2,9),(17134,84760,'Samuel',2,10),(17134,1781481,'FBI Agent Gator',2,11),(17134,999276,'FBI Agent Sheila',1,12),(17134,62784,'Technician',0,13),(17134,1044195,'Phil the Plumber',0,14),(17134,94428,'Cell Store Owner',1,15),(17134,1088044,'Battallion Commander',2,16),(17134,60881,'Peter Gerard',2,17),(17134,1781490,'Detective Chuck Jansen',0,18),(17134,97844,'Camouflaged Agent',0,19),(17134,1781494,'Streetcar Conductor',0,20),(17134,1156626,'Johnny Jenkins',0,21),(17134,1781503,'Sleeping Streetcar Passenger',0,22),(17134,1781504,'Streetcar Kid',0,23),(17134,1273237,'Elderly Man',0,24),(17134,93228,'BEP Employee',2,25),(17134,1781505,'Officer Phelps',0,26),(17134,1271773,'Ferry Patrolman',2,27),(17134,206027,'FBI Agent',0,28),(17134,86271,'Pedestrian',1,29),(17134,1383584,'Sharpshooter',0,30),(17134,62073,'Nurse',0,31),(17134,1781506,'Jesse Lou Mackie',0,32),(17134,1781507,'Medic',0,33),(17134,1374151,'Hot Tub Man / Hotel Employee',2,34),(17134,1264311,'Hot Tub Woman',0,35),(17134,1781510,'Shortie the Pug',0,36),(17134,1542616,'Additional Voices (voice)',0,37),(17134,168874,'Additional Voices (voice)',0,38),(17134,64948,'Additional Voices (voice)',1,39),(17134,56348,'Additional Voices (voice)',2,40),(17134,1781521,'Additional Voices (voice)',0,41),(17134,949895,'Additional Voices (voice)',0,42),(17134,30029,'Additional Voices (voice)',0,43),(17134,5211,'Additional Voices (voice)',2,44),(17134,1781522,'Additional Voices (voice)',0,45),(17134,230436,'Additional Voices (voice)',0,46),(17134,1449094,'Additional Voices (voice)',0,47),(17134,170862,'Additional Voices (voice)',0,48),(17134,1781525,'Additional Voices (voice)',0,49),(17134,1781526,'Additional Voices (voice)',0,50),(17134,1231272,'Additional Voices (voice)',2,51),(17134,156466,'Additional Voices (voice)',2,52),(17134,1781527,'Additional Voices (voice)',0,53),(17134,138897,'Additional Voices (voice)',2,54),(17134,954335,'Additional Voices (voice)',2,55),(17134,1182093,'Additional Voices (voice)',0,56),(17134,1781529,'Additional Voices (voice)',0,57),(17134,1201223,'Additional Voices (voice)',0,58),(17134,156136,'Additional Voices (voice)',2,59),(17134,1445768,'Additional Voices (voice)',0,60),(18885,11395,'Grandpa Mori Shintaro',2,0),(18885,8187,'Jeffrey \'Colt\' Douglas',2,1),(18885,148101,'Samuel \'Rocky\' Douglas Jr.',2,2),(18885,69924,'Michael \'Tum Tum\' Douglas',2,3),(18885,148102,'Miyo',0,4),(18885,61632,'Glam',2,5),(18885,80283,'Samuel Douglas Sr.',2,6),(18885,80284,'Jessica Shintaro-Douglas',1,7),(18885,116047,'Vinnie',2,8),(18885,154696,'Slam',2,9),(18885,85500,'Koga',0,10),(18885,130129,'Umpire',2,11),(18885,158804,'Nurse Hino',1,12),(18885,168938,'Darren the Bully',2,13),(18885,1200488,'Keith',0,14),(18885,186516,'Evan',0,15),(18885,108212,'Gerald',2,16),(18885,1200489,'Lisa DiMarino',0,17),(18885,1200490,'Night Club Manager',2,18),(18885,31534,'Announcer',2,19),(18885,985837,'Ticket Clerk',1,20),(18885,1200491,'First Base Umpire',0,21),(18885,943751,'Hot Dog Vendor',1,22),(18885,4603,'Mustangs Coach',2,23),(18885,62715,'Shuttle Driver',2,24),(18885,166963,'Nurse Shibuya',0,25),(18885,1200493,'Ishikawa',0,26),(18885,1200494,'Young Mori',0,27),(18885,1200495,'Young Koga',0,28),(18885,1200496,'Young Grand Master',0,29),(18885,1200497,'Ninja Master',0,30),(18885,1200498,'Miyo\'s Mother',0,31),(18885,1200499,'Lady in Limousine',0,32),(18885,1200500,'Chauffeur',0,33),(18885,553451,'Jail Guard',0,34),(18885,1200501,'Koga\'s Henchmen',0,35),(18885,1200502,'Koga\'s Henchmen',0,36),(18885,1200503,'Sumo Wrestlers',0,37),(18885,1200504,'Sumo Wrestlers',0,38),(18885,1200505,'Sumo Wrestlers',0,39),(18885,1200506,'Sumo Wrestlers',0,40),(18885,553427,'Mugger',0,41),(18885,150310,'Ninja Masters',0,42),(18885,1200507,'Ninja Masters',0,43),(18885,1200508,'Yakusas',0,44),(18885,1122581,'Yakusas',0,45),(18885,1200509,'Ninjas',0,46),(18885,1200510,'Ninjas',0,47),(18885,1200511,'Ninjas',0,48),(18885,1200512,'Ninjas',0,49),(10773,5309,'Mrs. Laura Henderson',1,0),(10773,382,'Vivian Van Damm',2,1),(10773,66700,'Bertie',2,2),(10773,13524,'Lord Cromer',2,3),(10773,17521,'Maureen',1,4),(10773,47729,'Lady Conway',1,5),(10773,3300,'Peggy',1,6),(10773,207384,'Vera',1,7),(10773,13014,'Gordon',2,8),(10773,55471,'Paul',2,9),(10773,113968,'Doris',1,10),(10773,115681,'Frances',1,11),(10773,8445,'Lord Cromer\'s Secretary',2,12),(10773,97416,'COmic',2,13),(10773,27649,'Harry',2,14),(10773,1225859,'Pilot',0,15),(10563,14408,'Oscar Novak',2,0),(10563,9206,'Amy Post',1,1),(10563,32597,'Charles Newman',2,2),(10563,17485,'Peter Steinberg',2,3),(10563,56040,'Kevin Cartwright',2,4),(10563,11885,'Strauss',2,5),(10563,12438,'Decker',2,6),(10563,44830,'Lenore',1,7),(10563,47757,'Olivia Newman',1,8),(10563,123532,'Rick',2,9),(10563,64715,'Zack',2,10),(10563,116774,'Bill',2,11),(10563,1176949,'Gallery Owner',2,12),(10563,1351508,'Edward Novak',0,13),(11835,4724,'Nick Hume',2,0),(11835,9828,'Billy Darley',2,1),(11835,11164,'Helen Hume',1,2),(11835,70643,'Lucas Hume',2,3),(11835,1230,'Bones Darley',2,4),(11835,38674,'Detective Wallis',1,5),(11835,1215023,'Brendan Hume',0,6),(11835,71467,'Joe Darley',2,7),(11835,39391,'Bodie',2,8),(11835,24202,'Heco',2,9),(11835,179851,'Baggy',2,10),(11835,1221121,'Jamie',0,11),(11835,179861,'Tommy',2,12),(11835,2128,'Spink',2,13),(26171,380,'Frank Goode',2,0),(26171,69597,'Rosie',1,1),(26171,3967,'Amy',1,2),(26171,6807,'Robert',2,3),(26171,6832,'Colleen',1,4),(26171,109144,'Jeff',2,5),(26171,22063,'Tom',2,6),(26171,122231,'Jilly',1,8),(26171,2839,'Mugger',2,9),(26171,101781,'Dr. Ed',2,10),(26171,5370,'David',0,11),(26171,963684,'Young David',2,12),(26171,1330527,'Young Amy',0,13),(26171,12042,'Young Robert',2,14),(26171,468492,'Jack',2,15),(26171,1178792,'Cab Rider #1',0,16),(31117,10127,'Bill Biscane / Kane',2,0),(31117,55093,'Stan Bobbins',2,1),(31117,25308,'Jean Bobbins',1,2),(31117,93379,'Kylie',1,3),(31117,2395,'Whoopi Goldberg',1,4),(31117,503,'Zack',2,5),(31117,60462,'Crowe',2,6),(31117,1582296,'Erik-Michael Estrada (O-Town) (as O\'Town)',0,7),(14396,5726,'Jake Rodgers',2,0),(14396,140,'Gina',1,1),(14396,37045,'Diane',1,2),(14396,18702,'Eric Hauck',2,3),(14396,540,'Shaw',2,4),(14396,63231,'Jacuzzi',0,5),(14396,11827,'Ronnie',2,6),(14396,27111,'Doctor Soames',2,7),(14396,158498,'Charlie',2,8),(14396,85922,'Crane',2,9),(14396,566944,'The Butler',0,10),(14396,80351,'Mini Bar Attendant',2,11),(14396,85550,'Dutch Dancer',2,12),(15673,54645,'Connie',1,0),(15673,3051,'Carla',1,1),(15673,12640,'Jeff',2,2),(15673,57093,'Robert / Peaches',2,3),(15673,12224,'Lee / N\'Cream',2,4),(15673,34457,'Stanley',2,5),(15673,95519,'Al',2,6),(15673,6066,'Mikey',2,7),(15673,31512,'Rudy',2,8),(15673,151432,'Tibor',2,9),(15673,8857,'Herself',1,10),(15673,63563,'Mrs. Morse',1,11),(15673,963962,'Man in Airport',2,12),(15673,1237729,'Hollywood Policeman',2,13),(24432,27974,'Doogal',0,0),(24432,11669,'Dylan',2,1),(24432,12219,'Zeebad',2,2),(24432,2395,'Ermintrude',1,3),(24432,3905,'Brian',2,4),(24432,19278,'Soldier Sam',2,5),(24432,5309,'Narrator',1,6),(24432,54812,'Train',2,7),(24432,12207,'Florence',1,8),(24432,1327,'Zebedee',2,9),(24432,19303,'Moose',2,10),(24432,17697,'Additional voices',2,11),(24432,229345,'Coral',1,12),(24432,61373,'Additional Voices',2,13),(13948,5620,'Michael Malone',2,0),(13948,7090,'General George S. Patton',2,1),(13948,7633,'Leslie Nielsen',2,2),(13948,85477,'Angel of Death',2,3),(13948,2055,'Aziz',2,4),(13948,5375,'Mohammed',2,5),(13948,65227,'Josh',2,6),(13948,10127,'President George Washington',2,7),(13948,4512,'Todd Grosslight',2,8),(13948,2778,'Judge Clarence Henderson',2,9),(13948,51965,'George Mulrooney',2,10),(13948,95777,'Himself',0,11),(13948,58563,'Rastus Malone',2,12),(13948,75341,'Slave',2,13),(13948,4443,'Lab Technician',2,14),(13948,113008,'Ahmed',2,15),(13948,93035,'Neville Chamberlain',2,16),(13948,170652,'Lab Tech 2',1,17),(13948,169725,'Celebrity 1',1,18),(13948,38406,'Herself',1,19),(13948,35548,'Himself',2,20),(13948,1411485,'Speaker 1940\'s',0,21),(13948,1250534,'Woman at Awards Party',0,22),(13948,999320,'Airport Security Guard 1',1,23),(13948,1225851,'Hottie',0,24),(13948,59750,'Lily',1,25),(13948,1403670,'It\'s That Michael Malone!',0,26),(13948,203801,'Rehearsal Actress',1,27),(13948,95042,'Political Aide',1,33),(13948,1240216,'I Gave up an Ass Lift for This?',0,34),(13948,1223103,'Entertainment Tonight Host',0,35),(13948,1229704,'Becca/Kaleigh',0,36),(13948,1467130,'Partygoer 2',0,37),(13948,118362,'Heather',1,38),(13948,26009,'Jane Wagstaffe',1,39),(13948,1446803,'Molly Duncan',0,40),(13948,79081,'Reporter 1',0,41),(13948,1467755,'Airport Passenger 1',0,42),(13948,209426,'Reporter 2',0,43),(13948,1468061,'Tiny Tina/Jenna',0,44),(13948,52394,'Voice of Reason',1,45),(13948,168925,'Parent',1,46),(13948,1381153,'Parent',0,47),(13948,1468244,'Columbia Student \'1968\'',1,48),(13948,1468298,'Columbia Student \'1968\'',1,49),(13948,996224,'Rehearsal Actor',2,50),(10929,1064,'Willard Stiles',2,0),(10929,8655,'Frank Martin',2,1),(10929,15007,'Cathryn',1,2),(10929,61185,'Henrietta Stiles',1,3),(10929,67519,'Ms. Leach',1,4),(10929,67520,'Mr. Garter',2,5),(14220,18324,'Peter',2,0),(14220,20818,'Fred',2,1),(14220,21007,'Cooker',2,2),(14220,56251,'Whitaker',2,3),(14220,71128,'Cheryl',1,4),(14220,20819,'Danny Gutierrez',2,5),(14220,64825,'Sky Pierson',2,6),(14220,418,'Gus Hayden',2,7),(14220,10671,'Bill Calhoun',2,8),(14220,21485,'Dick',0,9),(14220,15033,'Junior',2,10),(14220,60074,'Ed Lawson',2,11),(14220,7502,'Milas',2,12),(14220,62692,'TJ',2,14),(14220,105727,'Conservationist',2,15),(14220,1811221,'Jason',2,16),(12142,2224,'Edward Carnby',2,0),(12142,1234,'Aline Cedrac',1,1),(12142,10822,'Richard Burke',2,2),(12142,61167,'Sam Fischer',2,3),(12142,27122,'Prof. Lionel Hudgens',2,4),(12142,60649,'Agent Miles',2,5),(12142,32751,'Captain Chernick',2,6),(12142,60652,'John Dillon',2,7),(12142,58395,'Sister Clara',1,8),(12142,77620,'80\'s Sheriff',0,9),(12142,5354,'Deputy Adams',2,10),(12142,77621,'Young Edward',0,11),(12142,77622,'Krash',1,12),(12142,77623,'James Pinkerton',2,13),(12142,1368537,'Guard',2,15),(12142,52514,'Delivery Guy',2,16),(12142,172868,'Young Boy',2,17),(12142,1235591,'First Mate',2,18),(12142,87147,'Linda',1,19),(12142,84222,'Agent Barr',2,20),(12142,10875,'Agent Cheung',1,21),(12142,84876,'Agent Marko',2,22),(12142,64674,'Agent Turner',2,23),(12142,67978,'Agent Feenstra',1,24),(12142,32205,'Cabbie',2,25),(12142,1657590,'Sarah Fischer',1,26),(12142,98723,'Agent Yonek',2,27),(12142,172873,'Agent Richards',2,28),(12142,1397843,'Beat Cop',2,29),(23367,67599,'Sam',1,0),(23367,90033,'Charlotte Banks',1,1),(23367,5317,'Will Burton',2,2),(23367,14406,'Karen Burton',1,2),(23367,53368,'Ben Wheatly',2,3),(23367,4442,'Basher Martin',2,5),(23367,95356,'Bug',2,6),(23367,95357,'Omar',2,7),(23367,95358,'Irene Lerman (Cello)',0,8),(23367,95360,'Kim Lee (Keyboards)',0,9),(23367,95361,'Dylan Dyer (Glory Dogs Guitar)',0,10),(23367,95362,'Megan',0,11),(23367,95363,'Ms. Wittenberg',2,12),(23367,95364,'Kyra 17-1',0,13),(23367,95365,'Kid Talking About Miles',0,15),(23367,95366,'Rapping Boy #1',0,16),(23367,95367,'Rapping Boy #2',0,17),(23367,95368,'Slapping Girl',0,18),(23367,95370,'Rory',0,19),(23367,95376,'Glue Boy',0,20),(23367,95377,'Glory Dogs Bass',0,21),(23367,95378,'Glory Dogs Drummer',0,22),(23367,95379,'Glory Dogs Saxophone',0,23),(23367,95380,'The Burning Hotels Guitar / Vocals',0,24),(23367,95381,'The Burning Hotels Guitar / Vocals',0,25),(23367,95382,'The Burning Hotels Bass / Vocals',0,26),(23367,95383,'The Burning Hotels Drummer',0,27),(23367,94309,'Sa5m\'s Mom',1,28),(23367,95384,'New Art Teacher',0,29),(23367,95385,'Bandslam MC',0,30),(23367,95386,'Stage Manager',0,31),(23367,95387,'Bully at the Bus Stop',0,32),(23367,95388,'Scott Donnelly',0,33),(23367,20816,'1st Kid',0,34),(23367,95389,'2nd Kid',0,36),(23367,7487,'Himself',2,37),(23367,95390,'Hip Hop Group \'Zeale\'',0,38),(23367,95391,'Hip Hop Group \'Candice\'',0,39),(23367,95392,'Hip Hop Group \'DJ\'',0,40),(23367,95393,'ICGO Saxophone',0,40),(23367,95394,'ICGO Trombone',0,41),(23367,95395,'ICGO Trumpet',0,42),(23367,95396,'The Daze Guitar / Vocals',0,43),(23367,95397,'The Daze Bass',2,44),(23367,95398,'The Daze Drummer',0,45),(23367,95399,'Art Class Girl',1,46),(23367,18342,'Screaming Teacher',2,47),(23367,95400,'Dewey Kid',0,48),(23367,95401,'Rock-N-Roller',0,49),(23367,95403,'Charlotte\'s Aunt',0,50),(23367,95402,'Screaming Fan',0,51),(23367,95372,'Mr. Berry',0,52),(10740,2227,'Anna',1,0),(10740,52414,'Young Sean',2,1),(10740,6413,'Joseph',2,2),(10740,7570,'Eleanor',1,3),(10740,15675,'Laura',1,4),(10740,8256,'Clara',1,5),(10740,53,'Clifford',2,6),(10740,15854,'Mr. Conte',2,7),(10740,2617,'Mrs. Conte',1,8),(10740,3229,'Bob',2,9),(14582,84021,'Michael Dunne',2,0),(14582,31383,'Sarah Mann',1,1),(14582,81098,'David Mann',2,2),(14582,84022,'Cassie Walker',1,3),(14582,106965,'Colonel Ormand',2,4),(14582,6575,'Royster',2,5),(14582,1389677,'Skinner',0,6),(14582,1389678,'Peters',0,7),(14582,1389679,'Mr Harper',2,8),(14582,1098450,'Colonel McAndrew',0,9),(14582,117436,'MP',0,10),(14914,56262,'Ian Miellor',2,0),(14914,21278,'Gregory Lawson',2,1),(14914,16858,'Phyllis Kearns',1,2),(14914,17141,'Bob Kearns',2,3),(14914,61134,'Older Kathy',1,4),(14914,72864,'Charlie Defao',2,5),(14914,105727,'Dennis',2,6),(21755,3293,'Penelope Stamp',1,0),(21755,3490,'Bloom',2,1),(21755,103,'Stephen',2,2),(21755,18054,'Bang Bang',0,3),(21755,1923,'Curator',2,4),(21755,12150,'Diamond Dog',2,5),(21755,10743,'Narrator (voice)',2,6),(21755,89819,'Young Bloom',2,7),(21755,80576,'Young Stephen',0,8),(21755,22810,'Charleston',2,9),(21755,48312,'The Duke',2,10),(21755,34070,'Rose',1,11),(21755,60047,'Himself',2,12),(21755,69074,'Apple Cart Vendor',0,13),(21755,1049501,'Albino',0,14),(21755,1458761,'Young Girl',0,15),(21755,1458762,'Young Boy',0,16),(21755,32358,'Charleston\'s Wife',0,17),(21755,25723,'Chief of Police',0,18),(21755,1458763,'Snack Car Attendant',0,19),(21755,110980,'Oafish Foster Father',2,20),(21755,1045425,'Foster Dad',0,21),(21755,1043267,'Foster Mom',0,22),(21755,1458764,'Excited Boy',0,23),(21755,1458765,'Excited Boy',0,24),(14652,23670,'Fru00e9du00e9ric Auger',2,0),(14652,16927,'Jean-u00c9tienne Beaufort',2,1),(14652,6553,'Viviane Denvers',1,2),(14652,19163,'Camille',1,3),(14652,2245,'Raoul',2,4),(14652,9979,'Alex Winckler',2,5),(14652,9893,'Jacqueline de Lusse',1,6),(14652,27980,'Mme Arbesault',1,7),(14652,1416230,'L\'agent allemand',0,8),(16608,529,'Charlie Burns',2,0),(16608,5538,'Captain Morris Stanley',2,1),(16608,1639,'Martha Stanley',0,2),(16608,6413,'Arthur Burns',2,3),(16608,1371,'Eden Fletcher',2,4),(16608,5049,'Jellon Lamb',2,5),(16608,1093948,'Mike Burns',2,6),(16608,1284,'Brian O\'Leary',2,7),(16608,1297074,'Asian Prostitute',0,8),(16608,1297075,'Asian Prostitute',0,9),(16608,152537,'Mad Jack Bradshaw',0,10),(16608,1297078,'John Gordon',0,11),(16608,126200,'Sergeant Lawrence',0,12),(16608,53023,'Jacko',0,13),(16608,1014587,'Officer Dunn',0,14),(16608,191661,'Patrick Hopkins',2,15),(16608,1262385,'Tom Cox',0,17),(16608,128661,'Henry Clark',0,18),(16608,110402,'Officer Davenport',0,19),(16608,1322698,'Officer Matthews',0,20),(16608,107789,'Paul Broussard',0,21),(16608,38782,'Queenie',1,22),(16608,37289,'Samuel Stoat',2,23),(16608,97331,'Dr. Bantrey',2,24),(32316,14406,'Marci Feld',1,0),(32316,22675,'Dr. S',2,1),(32316,24318,'Ben Feld',2,2),(32316,13636,'Lauren Farb',1,3),(32316,11870,'Mary Ellen Spinkle',1,4),(13405,1244,'George Hogg',2,0),(13405,8329,'Lee Pearson',1,1),(13405,1619,'Chen Hansheng',2,2),(13405,1620,'Mrs. Wang',1,3),(19457,13240,'Leo Handler',2,0),(19457,73421,'Willie Gutierrez',2,1),(19457,6885,'Erica Soltz',1,2),(19457,3085,'Frank Olchin',2,3),(19457,9560,'Val Handler',1,4),(19457,6450,'Kitty Olchin',1,5),(19457,52708,'Raymond Price',0,7),(19457,20564,'Seymour Korman',2,8),(19457,2561,'Paul Lazarides',2,9),(19457,21708,'Manuel Sequiera',2,10),(19457,1225998,'Hector Gallardo',0,11),(19457,6565,'Albert Granada',2,12),(19457,1005071,'Bernard Soltz',2,13),(19457,20973,'Nathan Grodner',2,14),(19457,1129795,'Reporter',0,15),(19457,126683,'Arthur Mydanick',2,16),(29078,17276,'Frank Borghi',2,0),(29078,8210,'Walter Bahr',2,1),(29078,10961,'Stanley Mortensen',2,3),(29078,36055,'Charlie \'Gloves\' Columbo',2,4),(29078,54649,'Gino Pariani',2,5),(29078,52477,'Harry Keough',2,6),(29078,105762,'Joe Gaetjens',2,7),(10448,58319,'Noro',2,0),(10448,65344,'Make',2,1),(10448,65345,'Ramana',1,2),(10448,65346,'Ariki-mau',2,3),(10448,1495624,'Messenger',0,4),(10448,1495626,'Riro',0,5),(10448,1495627,'Heke',0,6),(10448,1226771,'Overseer',0,7),(10448,1495628,'Fisherman',0,8),(10448,1495630,'Old Woman',0,9),(10448,7250,'Tupa',2,10),(10448,15294,'Priest',2,11),(10448,7249,'Priest',2,12),(10448,1495631,'Short Ears',0,13),(10448,7248,'Short Ears',2,14),(13688,57607,'Ti Chow',2,0),(13688,109813,'Dicky Chow',0,1),(13688,74947,'Miss Yuen',0,2),(13688,545277,'Boss',2,3),(13688,1173215,'Mr. Cao',0,4),(13688,74946,'Johnny',0,5),(13688,1114832,'Storm Dragon',0,6),(13688,1136392,'P.E. Teacher',0,7),(13688,1114833,'Maggie',0,8),(13688,583878,'Johnny\'s Entourage',0,9),(10353,28781,'Jacquouille la Fripouille / Jacques-Henri Jacquard / Prosper le Purineur / Jacouillet',2,0),(10353,1003,'Comte Godefroy de Montmirail, dit Godefroy le Hardi',2,1),(10353,64913,'Ginette',1,2),(10353,24877,'Jean-Pierre Goulard',0,3),(10353,41877,'Fru00e9nu00e9gonde / Bu00e9atrice',1,4),(10353,73264,'Cora de Montmirail',1,5),(10353,77736,'Pu00e9tronille',1,6),(10353,1338974,'Ganelon',0,7),(10353,185343,'Duc Fulbert',0,8),(10353,1123091,'Brother Raoul',0,9),(10353,134744,'Eusaebe / Monsieur Ferdinand',0,10),(10353,578093,'Boniface',0,11),(10353,19075,'Fru00e8re Ponce',2,12),(10353,5444,'Le gu00e9rant du supermarchu00e9',2,13),(10353,24877,'Jean-Pierre',0,14),(10353,7283,'Le mu00e9decin',2,15),(10353,1338984,'Hilda',0,16),(10353,45447,'Maru00e9chal des Logis Gibon',2,17),(10353,145738,'Capitaine Batardet',0,18),(10353,34584,'Le mari de Gisu00e8le',2,19),(10353,35883,'Gisu00e8le',1,20),(10353,26401,'Madame Frangin',0,21),(10353,72332,'Mariette',1,22),(10353,35966,'L\'interne Beauvin',2,23),(10353,1514020,'Le chef des pompiers',0,24),(10353,1514021,'Pompier Renu00e9',0,25),(10353,20676,'Duc de Luigny',2,26),(10353,84440,'Philippine de Montmirail',1,27),(10353,585717,'Le pompiste',0,28),(10353,239421,'Jacqueline',1,29),(10353,239423,'Freddy',0,30),(10353,1132048,'La maman d\'Odette',1,31),(10353,18811,'Odette',0,32),(10353,185385,'Le mau00eetre d\'hu00f4tel',0,33),(10353,1200631,'Le postier',0,34),(10353,1155937,'La maman de Dany',0,35),(11458,1158,'Eli Wurman',2,0),(11458,326,'Victoria Gray',1,1),(11458,31070,'Cary Launer',2,2),(11458,4939,'Jilli Hopper',1,3),(11458,1289296,'Doorman at Party',0,4),(11458,31028,'Elliot Sharansky',2,5),(11458,5502,'The Reverend Lyle Blunt',2,6),(11458,26715,'Dr. Sandy Napier',2,7),(11458,4451,'Ross',2,8),(11458,1986,'Norris Volpe',2,9),(11458,151657,'Himself',2,10),(11458,1215492,'Herself',0,11),(11458,1778211,'Herself',0,12),(11458,58543,'Serge',2,13),(11458,1480047,'Himself',2,14),(11458,1771533,'Harry Gould',0,15),(14538,62410,'Luo Ping-An',2,0),(14538,83633,'Zhao Bao',2,1),(14538,21045,'Cao Ying',1,2),(14538,25246,'Zhao Zilong',2,4),(14538,69636,'Guan Yu',2,5),(14538,94972,'Liu Bei',0,6),(13250,517,'Tom Ryan',2,0),(13250,49,'Abby Randall',1,1),(13250,17276,'Neil Randall',2,2),(13250,78411,'Sophie Randall',0,3),(13250,63547,'Judy Ryan',1,4),(13250,59242,'Helen Schriver',1,5),(13250,42706,'Jerry Crane',2,6),(13250,78412,'Karl Granger',2,7),(13250,25383,'Diane',1,8),(13250,27110,'Dave Carver',2,9),(13250,540,'Det. McGill',2,10),(13250,53117,'Matt Ryan',2,11),(13250,168542,'Female Teller',1,12),(13250,169781,'French Waiter',0,13),(13250,155429,'Maitre D\'',2,14),(14202,819,'Walter Fane',2,0),(14202,40656,'Dorothy Townsend',0,1),(14202,3489,'Kitty Fane',1,2),(14202,96167,'Geoffrey Denison',0,3),(14202,23626,'Charlie Townsend',2,4),(14202,13014,'Waddington',2,5),(14202,10168,'Mother Superior',1,6),(14202,25655,'Leona',1,7),(14202,66717,'Colonel Yu',2,8),(14202,333422,'Sister St. Joseph',0,9),(14202,1128288,'Sister Maryse',0,11),(14202,1196986,'Mrs. Garstin',1,12),(12150,1158,'Frank Keller',2,0),(12150,6913,'Helen Cruger',1,1),(12150,1230,'Sherman',2,2),(12150,12132,'Terry',2,3),(12150,21282,'Frank Keller Sr.',2,4),(12150,28633,'Gruber',2,5),(12150,3137,'Serafino',2,6),(12150,34691,'Lieutenant',2,7),(12150,149466,'Murdered Man',2,8),(12150,2231,'Black Guy',2,9),(12150,159948,'Ernest Lee',2,10),(12150,106193,'Willie',0,11),(11247,5958,'Sam Montgomery',1,0),(11247,38334,'Fiona',1,1),(11247,62747,'Austin Ames',2,2),(11247,59283,'Carter Farrell',2,3),(11247,9788,'Rhonda',1,4),(11247,68769,'Shelby Cummings',1,5),(11247,7401,'Mrs. Wells',1,6),(11247,84613,'Brianna',1,7),(11247,1722548,'Gabriella',1,8),(11247,62595,'Eleanor',1,9),(11247,55259,'Bobby',2,10),(11247,11089,'Sam\'s Dad',2,11),(11247,114021,'Austin\'s Dad',2,12),(11247,59180,'Madison',1,13),(11247,53863,'Terry',2,14),(11247,80582,'David',2,15),(11247,81391,'Ryan',2,16),(11247,92855,'D.J.',1,17),(11247,1776449,'Caitlyn',1,18),(11247,1776450,'Young Sam',1,19),(11247,1776453,'Swim Coach',0,20),(11247,44792,'Coach',2,21),(11247,19151,'Mr. Farrell',2,22),(11247,112049,'Vernon',2,23),(11247,21722,'Mr. Rothman',2,24),(11247,1776454,'Young Gabriella',1,25),(11247,53889,'Young Brianna',1,26),(11247,1357697,'Chuck',0,27),(11247,1776455,'Bachelorette #1',1,28),(11247,92327,'Bachelorette #2',1,29),(11247,159971,'Beautiful Bachelorette',1,30),(11247,1776458,'Bachelorette',1,31),(11247,1223695,'District Attorney',2,32),(11247,1776499,'Rollerskating Waitress #1',1,33),(11247,1776500,'Rollerskating Waitress #2',1,34),(11247,1228631,'Girl at Carwash',1,35),(11247,1583282,'Locker Guy',0,36),(11247,63275,'Cheerleader / Dancer #1',1,37),(11247,1468244,'Cheerleader / Dancer #2',1,38),(11247,1776503,'Cheerleader / Dancer #3',0,39),(11247,1039613,'Cheerleader / Dancer #4',1,40),(11247,1776509,'Cheerleader / Dancer #5',1,41),(11247,1776510,'Cheerleader / Dancer #6',0,42),(11247,1776511,'Cheerleader / Dancer #7',1,43),(11247,1749223,'Fighting Frog Mascot',0,44),(11247,557791,'Halloween Dancer',0,45),(11247,1775925,'Hallwoeen Dancer',0,46),(11247,1776531,'Halloween Dancer',0,47),(11247,568656,'Halloween Dancer',1,48),(11247,1776532,'Halloween Dancer',1,49),(11247,1775884,'Halloween Dancer',0,50),(11247,1776533,'Halloween Dancer',0,51),(11247,1775892,'Halloween Dancer',0,52),(11247,1776534,'Halloween Dancer',0,53),(11247,1776535,'Halloween Dancer',1,54),(11247,1752319,'Halloween Dancer',1,55),(11247,1748182,'Dancer',1,56),(11247,1776540,'Dancer',1,57),(11247,1621842,'Waitress',1,58),(11247,1776543,'Wedding Photographer',0,59),(11247,1621835,'Waiter',0,60),(11247,63680,'Dancer',1,61),(11247,1776544,'Student in Bleachers',0,62),(11247,1776545,'Go-Go Dancer',1,63),(11247,1776546,'Young Carter Farrell',0,64),(11247,1453555,'Dad at Carwash',2,65),(11247,99932,'Kitty',1,66),(11377,118,'Stephen H. Price',2,0),(11377,10696,'Evelyn Stockard-Price',1,1),(11377,17637,'Eddie Baker',2,2),(11377,8212,'Donald W. Blackburn, M.D.',2,3),(11377,58317,'Watson Pritchett',2,4),(11377,17303,'Sara Wolfe',1,5),(11377,20751,'Melissa Margaret Marr',0,6),(11377,7268,'Carl Schecter',2,7),(11377,27993,'Dr. Richard Benjamin Vannacutt',2,8),(11377,69157,'Male Nurse',2,9),(11377,562314,'Twisted Nurse',0,10),(11377,98879,'Channel 3 Reporter',1,11),(11377,47297,'Channel 3 Cameraman',2,12),(11377,218907,'Price\'s Secretary',0,13),(11377,98871,'Girl on Wires',0,14),(26367,80602,'Madea',2,0),(26367,40036,'April',1,1),(26367,49706,'Sandio',2,2),(26367,84933,'Tanya',1,3),(26367,10676,'Wilma',1,4),(26367,31137,'Randy',0,5),(12090,18976,'Tom Leezak',2,0),(12090,328,'Sarah McNerney',1,1),(12090,71198,'Peter Prentiss',2,2),(12090,62123,'Kyle',2,3),(12090,83108,'Fred',2,4),(12090,1287167,'Wendy',1,5),(12090,34844,'Lauren',1,6),(12090,33533,'Mr. McNerney',2,7),(12090,60076,'Willie McNerney',2,8),(12090,1610301,'Paul McNerney',2,9),(16110,7447,'Mr. Conductor',2,0),(16110,8949,'Grandpa Burnett Stone',2,1),(16110,11717,'Lily Stone',1,2),(29427,18082,'David',2,0),(29427,8329,'Judy',1,1),(29427,29234,'Russell',2,2),(29427,31838,'Becca',1,3),(29427,103832,'Deardra Farnum',1,4),(29427,12549,'Bill Farnum',2,5),(29427,80378,'Nicholas Farnum',2,6),(29427,103833,'Mayor Hobbs',2,7),(29427,103834,'Pvt. Billy Babcock',2,8),(29427,12797,'Intelligence Officer',2,9),(29427,94304,'Ben Sandborn',2,10),(29427,98420,'Woman on Bike',1,11),(29427,992427,'Distraught Son',2,12),(29427,933182,'Infected Civilian',2,13),(29427,10000,'Travis Quinn',2,14),(29427,83605,'Rory Hamill',0,15),(29427,39127,'Peggy Hamill',1,16),(29427,74136,'',2,17),(29427,74136,'Curt Hammil',2,18),(29427,149641,'Kevin Miller',2,19),(29427,167781,'Nathan',0,20),(29427,60081,'Jesse',0,21),(29427,97598,'Red',0,22),(29427,1583346,'Town Pastor',2,23),(29427,77522,'Mortician Jim Finley',2,24),(29427,1381491,'Scotty McGregor',0,25),(29427,1456721,'Mrs. McGregor',1,26),(29427,41020,'Fire Chief Tom',2,27),(29427,1158065,'Site Coordinator',0,28),(29427,1502542,'Car Wash Lunatic',0,29),(29427,1668685,'Car Wash Lunatic',0,30),(29427,1668687,'Car Wash Lunatic',0,31),(29427,1668688,'Distraught Mom',0,32),(29427,1668690,'Snickering Boy',0,33),(29427,1368249,'Babbling Teen',0,34),(29427,1377992,'Distraught Mother',0,35),(29427,51463,'Distraught Woman #2',0,36),(29427,570775,'Distraught Son #2',2,37),(29427,41019,'Distraught Husband',2,38),(13523,62816,'Ian',2,0),(13523,58370,'Felicia',1,1),(13523,54729,'Lance',2,2),(13523,11006,'Rex',2,3),(13523,13922,'Ezekiel',2,4),(13523,52050,'Mary',1,5),(13523,74618,'Ms. Tasty',1,6),(13523,81197,'Randy',2,7),(13523,64135,'Andy',2,8),(13523,1216355,'Brandy',1,9),(13523,1462233,'Dental Receptionist',0,10),(25195,9273,'Anna Brady',1,0),(25195,1247,'Declan',2,1),(25195,36801,'Jeremy',2,2),(25195,12074,'Jack Brady',2,3),(25195,176188,'Carla',0,4),(25195,44930,'Frank',2,5),(25195,188468,'Donal',2,6),(25195,43138,'Priest',2,7),(25195,115146,'Bride',1,8),(25195,95102,'Libby',1,9),(25195,86442,'Jerome',2,10),(25195,1057048,'Fergus',2,11),(25195,24595,'Stefano',2,12),(25195,1212145,'Adele',1,13),(25195,1583206,'Sozzled Regular 2',2,14),(17277,16757,'Lucilla',1,0),(17277,10020,'Livius',2,1),(17277,12248,'Marcus Aurelius',2,2),(17277,290,'Commodus',2,4),(17277,14371,'Verulus',2,5),(17277,14502,'Ballomar',2,6),(17277,5004,'Sohamus',0,7),(17277,3754,'Cleander',2,8),(17277,39955,'Julianus',2,9),(17277,10027,'Senator',2,10),(17277,53815,'Polybius',2,11),(17277,89065,'Niger',2,12),(17277,90625,'Victorinus',2,13),(17277,31296,'Virgilianus',2,14),(17277,2091,'Timonides',2,15),(17277,1137472,'Helva',0,16),(17277,1039947,'Lentulus',0,17),(17277,133086,'Claudius',0,18),(17277,103469,'Marcellus',2,19),(17277,30705,'Cornelius',2,20),(17277,1140941,'',2,21),(17277,1185459,'',0,22),(17277,240215,'',1,23),(17277,1499009,'',0,24),(17277,44883,'',2,25),(17277,91971,'',2,26),(22479,10431,'Blondie O\'Hara',1,0),(22479,8436,'Carolyn Stilton',1,1),(22479,33162,'Seldom Seen',2,2),(22479,4776,'Henry Stilton',2,3),(22479,20212,'Johnny O\'Hara',2,4),(22479,884,'Johnny Flynn',2,5),(22479,31649,'Babe Flynn',1,6),(22479,209,'Nettie Bolt',1,7),(10065,10859,'George Lutz',2,0),(10065,27755,'Kathy Lutz',1,1),(10065,10135,'Billy Lutz',2,2),(10065,56734,'Chelsea Lutz',1,3),(10065,6860,'Michael Lutz',2,4),(10065,50347,'Lisa',1,5),(10065,4492,'Father Callaway',2,6),(10065,62728,'Jodie Defeo',1,7),(10065,62729,'Ronald Defeo',2,8),(10065,62732,'ER Doctor',2,9),(10065,62731,'Chief of Police',2,10),(10065,62730,'Realtor',1,11),(10065,59145,'Officer Greguski',2,12),(10065,62733,'Librarian',1,13),(10065,62734,'Stitch',2,14),(10065,62737,'Nurse Fuller',0,15),(10065,62736,'Grocery Cashier',0,16),(10065,62735,'Scary Leashed Indian',2,17),(11683,1284159,'Riley',2,0),(11683,5723,'Cholo',2,1),(11683,2778,'Kaufman',2,2),(11683,19976,'Charlie',2,3),(11683,18514,'Slack',1,4),(11683,61660,'Big Daddy',2,5),(11683,99181,'Pretty Boy',1,6),(11683,76528,'Foxy',2,7),(11683,99182,'Number 9',1,8),(11683,20196,'Butcher',2,9),(11683,81097,'Mike',2,10),(11683,99183,'Brubaker',2,11),(11683,43257,'Motown',1,12),(11683,12662,'Chihuahua',2,13),(11683,12978,'Styles',2,14),(11683,11108,'Photo Booth Zombie',2,15),(11683,11090,'Photo Booth Zombie',2,16),(11683,59287,'Bridgekeeper Zombie',2,17),(11683,11161,'Machete Zombie',2,18),(11683,6071,'Manolete',2,19),(11683,1460509,'Kissing Woman',0,20),(11683,40386,'Weapons Storage Guard',2,21),(11683,1730168,'Cheerleader Zombie',0,22),(11683,1216712,'Dead Teenage Girl',1,23),(11683,79405,'Number 9\'s Victim',0,24),(11683,5927,'Anchor',2,25),(11683,82647,'Mulligan',0,26),(11683,31581,'Fiddler\'s Green Promo Announcer',2,27),(11683,36816,'Arena Policeman',2,28),(11683,201074,'Steele',0,29),(11683,90498,'Brian',2,30),(11683,151975,'Barrett',2,31),(23082,17835,'Mark Bellison',2,0),(23082,9278,'Anna McDoogles',1,1),(23082,21007,'Frank',2,2),(23082,52849,'Greg',2,3),(23082,4175,'Anthony',2,4),(23082,58068,'Martha Bellison',1,5),(23082,2879,'Brad Kessler',2,6),(23082,56323,'Shelley',1,7),(23082,59156,'Blonde',1,8),(23082,31839,'Landlord',2,9),(23082,77344,'Wedding Overseer',2,10),(23082,127048,'News Reporter',0,11),(23082,22125,'Bob',2,12),(23082,41089,'Waiter #1',2,13),(23082,23532,'Doctor',2,14),(23082,13524,'Nathan Goldfrappe',2,15),(23082,1233,'Jim the Bartender',2,16),(23082,819,'Cop',2,17),(23082,452205,'Assistant',2,18),(23082,39189,'Man at the Door',2,19),(23082,74303,'Receptionist',1,20),(23082,934159,'Man #4',2,21),(23082,1592631,'Short Fat Brian',2,22),(10402,60949,'Deuce Bigalow',2,0),(10402,4520,'Det. Chuck Fowler',2,1),(10402,62842,'Tiberius Jefferson T.J. Hicks',2,2),(10402,33432,'Kate',1,3),(10402,18041,'Antoine Laconte',2,4),(10402,26009,'Claire',1,5),(10402,18262,'Bob Bigalow',2,6),(10402,49818,'Elaine Fowler',1,7),(10402,90149,'Fluisa',2,8),(10402,56322,'Ruth',1,9),(10402,954122,'Bergita',1,10),(10402,1238,'Tina',2,11),(10402,952333,'Carol',1,12),(10402,62065,'Allison',1,13),(10402,60959,'Sally',1,14),(10402,87332,'Neil',2,15),(21301,9778,'Calvin',2,0),(21301,5726,'Eddie',2,1),(21301,11868,'Jimmy',2,2),(21301,74688,'Gina\'s Niece',1,3),(21301,8177,'Ricky',2,4),(21301,15758,'Gina',1,5),(21301,230176,'Terri',0,6),(21301,11827,'Hustle Guy',2,7),(21301,77330,'Kenard',2,8),(21301,1631215,'Joyce',1,9),(21301,31647,'Loretta',1,10),(21301,154382,'Jennifer',1,11),(21301,216140,'Customer Dante',0,12),(21301,1691930,'Attractive Female',1,13),(21301,21505,'Alderman Brown',2,14),(21301,59847,'Dinka',0,15),(21301,31711,'Isaac',2,16),(21301,1226697,'Checkers Fred',0,17),(21301,98392,'Samir',2,18),(21301,9464,'Quentin Leroux',2,19),(10147,879,'Willie Soke',2,0),(10147,19754,'Marcus Skidmore',2,1),(10147,63992,'Thurman Merman \'The Kid',2,2),(10147,1897,'Gin',2,3),(10147,27772,'Bob Chipeska',2,4),(10147,16858,'Sue',1,5),(10147,15100,'Lois',1,6),(10147,6944,'Opal',1,7),(10147,9599,'Grandma',1,8),(10147,73456,'Milwaukee Mother',1,9),(10147,64344,'Milwaukee Security Guard',2,10),(10147,24357,'Milwaukee Mom with Photo',1,11),(10147,1402117,'Security Guard',2,12),(10147,59822,'Phoenix Security Guard',2,13),(10147,1982,'Hindustani Troublemaker',2,14),(10147,1398494,'Milwaukee Boy',0,15),(10147,1398496,'Milwaukee Bratty Boy',0,16),(10147,1398495,'Girl on Santa\'s Lap',0,17),(10147,1398497,'Milwaukee Bartender',0,18),(10625,49265,'Cady Heron',1,0),(10625,53714,'Regina George',1,1),(10625,51857,'Mr. Duvall',2,2),(10625,86267,'Cady\'s mom',1,3),(10625,56322,'Mrs. George',1,4),(10625,56323,'Ms. Norbury',1,5),(10625,22082,'Gretchen Wieners',1,6),(10625,51988,'Janis Ian',1,7),(10625,71070,'Karen Smith',1,8),(10625,76996,'Aaron Samuels',2,9),(10625,32598,'Damian',2,10),(10625,43776,'Cady\'s Dad',2,11),(10625,1212955,'Jason',0,12),(10625,1213130,'Kevin Gnapoor',0,13),(10625,142193,'Shane Oman',2,14),(10625,1226928,'Coach Carr',0,15),(10625,1688872,'Taylor Wedell',0,16),(10625,1688873,'Kylie George',0,17),(10625,1564501,'Michigan Girl',1,18),(10625,1239372,'Amber D\'Alessio',0,19),(10625,80021,'Bethany Byrd',1,20),(10625,174584,'Salesperson',1,21),(10625,203294,'Crying Girl',1,22),(10625,1564502,'Caroline Krafft',0,23),(10625,64308,'Wannabe (uncredited)',1,24),(10625,1447218,'Mr. George',0,25),(10625,1688874,'Joan the Secretary',1,26),(10625,1688875,'Trang Pak',0,27),(10625,1688876,'Jessica Lopez',0,28),(10625,1393538,'Emma Gerber',0,29),(10625,1688877,'Dawn Schweitzer',0,30),(10625,1688878,'Kristen Hadley',0,31),(10625,1688879,'Sun Jin Dinh',0,32),(10625,141217,'Glenn Coco',2,33),(10625,949051,'Tim Pak',2,34),(10625,1232767,'Lea Edwards',0,35),(10625,116638,'Kristen\'s boyfriend',0,36),(10625,63858,'Taylor\'s mom',1,37),(10934,2882,'Frances',1,0),(10934,25540,'Patti',1,1),(10934,30083,'Katherine',1,2),(10934,5412,'Marcello',2,3),(10934,26669,'Martini',2,4),(10934,32375,'Old Man with Flowers',0,5),(10934,115609,'Placido',2,6),(10934,27394,'Fiorella',1,7),(10934,1127849,'Nona Cardinale',0,8),(10934,61114,'Grace',1,9),(10934,149258,'Chiara',1,10),(10934,558517,'Pawel',0,11),(10934,52375,'Jerzy',2,12),(10934,1127850,'Zbignew',0,13),(10934,27279,'Nino',0,14),(10934,8776,'Signora Raguzzi',1,15),(10934,58651,'Head Mover',2,16),(10934,1609625,'Seat Mate',2,17),(10013,3391,'Peggy Sue',1,0),(10013,2963,'Charlie Bodell',2,1),(10013,62014,'Richard Norvik',2,2),(10013,2022,'Carol Heath',1,3),(10013,11148,'Maddy Nagle',1,4),(10013,206,'Walter Getz',2,5),(10013,30618,'Evelyn Kelcher',1,6),(10013,1769,'Nancy Kelcher',1,7),(10013,9994,'Beth Bodell',1,8),(10013,41516,'Elizabeth Alvorg',1,9),(10013,18666,'Jack Kelcher',2,10),(10013,18916,'Michael Fitzsimmons',2,11),(10013,9259,'Delores Dodge',1,12),(10013,5148,'Rosalie Testa',1,13),(10013,151232,'Arthur Nagle',2,14),(10013,13994,'Barney Alvorg',2,15),(10013,2881,'Terry',2,16),(10028,56731,'Honey Daniels',1,0),(10028,327,'Chaz',2,1),(10028,52847,'Gina',1,2),(10028,62122,'Benny',0,3),(10028,62123,'Michael Ellis',2,4),(10028,62124,'Raymond',0,5),(10028,62125,'Herself',1,6),(10028,62126,'Mr. Daniels',2,7),(10028,62127,'Mrs. Daniels',1,8),(10028,62128,'B.B.',2,9),(10028,62129,'Mrs. Strom',0,10),(10028,60042,'Marisol',1,12),(10028,62131,'Lenny',0,13),(10028,62133,'Letitia',0,14),(10028,62132,'Joey',0,15),(10028,62134,'Otis',0,16),(10028,62135,'Choreographer',1,17),(10028,62136,'Barber',0,18),(10028,62137,'Assistant Director',1,19),(10028,557794,'Katrina',1,20),(10028,1457035,'Himself',2,21),(10535,7633,'Dick Steele',2,0),(10535,37045,'Veronique Ukrinsky',1,1),(10535,1466,'The Director',2,2),(10535,4726,'Miss Cheevus',1,3),(10535,13473,'Norman Coleman',2,4),(10535,65562,'General Rancor',2,5),(10535,159485,'Victoria / Barbara Dahl',1,6),(10535,10680,'Desiree More',1,7),(10535,8294,'Agent Steve Bishop',2,8),(10535,42824,'Thug #1',2,9),(10535,15318,'Thug #2',2,10),(10535,1444575,'Skippy, Warrior on Cell Phone',0,11),(10535,37043,'Painter',2,12),(10535,71041,'Himself',0,13),(10535,158208,'Agency Tape Recorder (Voice)',2,14),(10535,16619,'Helicopter Pilot',2,15),(10535,7174,'Busdriver',2,16),(10535,119781,'Steele\'s Tag Team Member',0,17),(10535,16620,'Steele\'s Other Tag Team Member',2,18),(10535,23915,'Brian, Waiter in Restaurant',2,19),(10535,98078,'Helicopter Ticket Agent',1,20),(10535,55567,'Woman in Murphy Bed',1,21),(10535,7073,'Bus Patron with Oxygen Mask',2,22),(10535,42362,'Rancor Guard Who Gets Spit On',2,23),(10535,31365,'Rancor Guard at Intercom',2,24),(10535,64343,'Kabul',2,25),(10535,2368,'Professor Ukrinsky',2,26),(10535,15252,'McCluckey',2,27),(10535,22139,'Slice',0,28),(10535,51707,'Agent Clinton',2,29),(10535,73022,'Businessman',2,30),(10535,170874,'Fabio',2,31),(10535,87003,'Pastry Chef',2,32),(10535,2249,'Noggin',2,33),(10535,1213127,'Twin #1',0,34),(10535,1213128,'Twin #2',0,35),(10535,1575319,'Dancer',2,36),(10535,51977,'Heimlich, Rancor Terrorist',2,37),(10364,1903,'Captain John Yossarian, (Bombardier)',2,0),(10364,1936,'Colonel Cathcart (CO, 256th Squadron)',2,1),(10364,24318,'Major Danby (Flight Operations Officer)',2,2),(10364,64928,'Captain Nately',2,3),(10364,64929,'Dr. Doc Daneeka',2,4),(10364,7795,'Lt. Colonel Korn (XO / Roman policeman)',0,5),(10364,64930,'Major Major',2,6),(10364,7301,'Chaplain Capt. A.T. Tappman',2,7),(10364,33644,'Nurse Duckett',1,8),(10364,40,'Brigadier General Dreedle',2,9),(10364,10127,'1st Lt. Milo Minderbinder',2,10),(10364,8349,'1st Lt. Dobbs',2,11),(10364,12438,'Capt. Orr',2,12),(10364,28164,'Captain Aarfy Aardvark',2,13),(10364,14064,'First Sgt. Towser',2,14),(10364,6168,'Lt. Col. Moodus',2,15),(10364,14987,'Captain J.S. McWatt',2,16),(10364,3042,'Doctor',0,17),(10364,62590,'Doctor',2,18),(10364,40000,'Dreedle\'s WAC',1,19),(16991,19274,'Ronnie Barnhardt',2,0),(16991,1772,'Brandi',1,1),(16991,454,'Dennis',2,2),(16991,11477,'Detective Harrison',2,3),(16991,86624,'Nell',1,4),(16991,62862,'Caucasian Crackhead',2,5),(16991,86626,'Saddamn',2,6),(16991,1989,'Mom',1,7),(16991,1183546,'Mark',2,8),(16991,88124,'Charles',2,9),(16991,79419,'Angry Store Owner',0,10),(16991,1026789,'John Yuen',2,11),(16991,1104394,'Matt Yuen',2,12),(16991,963885,'Flasher',2,13),(16991,1026790,'Bruce',0,14),(16991,1026791,'D-Rock',0,15),(16991,1410029,'Female Reporter',0,16),(16991,10872,'Toast A Bun Manager',2,17),(16991,54716,'Girl Employee',1,18),(16991,54709,'Detective Nichols',2,19),(16991,202830,'Department Store Manager',2,20),(16991,79211,'Policeman',0,22),(16991,1054505,'Psychologist',0,23),(16991,1011304,'Young Mother',0,24),(25643,6383,'Burke',2,0),(25643,4491,'Eloise Chandler',1,1),(25643,20750,'Marty',1,2),(25643,8349,'Burke\'s Father-in-Law',2,3),(25643,116549,'Burke\'s Mother-in-Law',1,4),(25643,3911,'Walter',2,5),(25643,58873,'Lane',2,6),(25643,64154,'Jessica',1,7),(25643,4432,'Eloise\'s Mom',1,8),(25643,29234,'Tyler',2,9),(25643,2249,'Cab Driver',2,10),(25643,90131,'Unicom Executive',0,11),(25643,168540,'Unicom Executive',2,12),(25643,1219446,'Unicom Executive',2,13),(25643,583061,'Unicom CEO',2,14),(25643,203639,'Workshopper',1,15),(11904,984,'Sherlock Holmes',2,0),(11904,70881,'John Watson',2,1),(11904,31921,'Elizabeth Hardy',1,2),(11904,660,'Professor Rathe',2,3),(11904,87415,'Mrs. Dribb',1,4),(11904,98098,'Dudley\'s Friend',2,5),(11904,982402,'Dudley',2,6),(28665,38703,'Jenny Garrison',1,0),(28665,101519,'Denise Dupree',1,1),(28665,101521,'Alice Ellerton',1,2),(28665,52119,'Ms. Fran Rowan',1,3),(28665,101522,'Victor Taveras',2,4),(28665,206517,'Marco',0,5),(28665,1003061,'Dancer',1,6),(28665,133328,'Joy',0,7),(10569,1243,'Ray',2,0),(10569,65850,'Candy Salesperson',0,1),(10569,30364,'Frenchy',0,2),(10569,4688,'Denny',2,3),(10569,11482,'Tommy',2,4),(10569,16165,'Benny',2,5),(10569,41551,'Cookie Store Customer',2,6),(10569,67096,'Real Estate Agent',0,7),(10569,67098,'Cookie Store Customer',0,8),(10569,67097,'Dynamite Dealer',0,9),(10569,67099,'Cookie Store Customer',0,10),(10569,67100,'Cookie Store Customer',0,11),(10569,67102,'Cookie Store Customer',0,12),(10569,67101,'Cookie Store Customer',1,13),(10569,28004,'Cop',2,14),(10569,67103,'Cookie Store Customer',0,15),(10569,58251,'May',1,16),(10569,67104,'TV News Reporter',1,17),(10569,67105,'Himself',0,18),(10569,3291,'David',2,19),(10569,1089394,'Cookie Store Customer',2,20),(10560,65871,'Jody Sawyer',1,0),(10560,8691,'Eva Rodru00edguez',1,1),(10560,40980,'Maureen Cummings',1,2),(10560,8212,'Jonathan Reeves',2,3),(10560,128628,'Ensemble',1,4),(20483,37917,'Madeline Maddy Rose Phillips',1,0),(20483,67602,'Austin',2,1),(20483,41883,'Gus',2,2),(20483,3130,'Molly Phillips',1,3),(20483,8213,'Tom Phillips',2,4),(20483,3911,'Mr. Hartman',2,5),(20483,6474,'Ferrell',2,6),(20483,65334,'Brisbane',2,7),(20483,33532,'Brad',2,8),(20483,42200,'Flagler',2,9),(20483,538321,'Nuffaut',2,10),(20483,9047,'Sharon',1,12),(20483,85140,'Skip',2,13),(20483,86170,'Nurse',1,14),(20483,9300,'Brisbane\'s Assistant',1,15),(20483,86172,'Brisbane\'s Secretary',0,16),(20483,86173,'Max',0,17),(20483,86174,'Max',0,18),(20483,86175,'Blonde',1,19),(20483,62076,'Gate Guard',2,20),(20483,62100,'Detective',2,21),(20483,86176,'Reporter One',0,22),(20483,86177,'Reporter Two',0,23),(20483,86178,'Reporter Three',0,24),(20483,86179,'Reporter Four',2,25),(20483,86181,'Reporter Five',1,26),(20483,55374,'Kid Two',0,27),(20483,86187,'Enforcer',2,28),(20483,86188,'Kid #3',0,29),(20483,79397,'Mom',1,30),(20483,86191,'Racer',0,31),(20483,86192,'Mom 2',0,32),(20483,86193,'Boy',0,33),(20483,82988,'Doctor',1,34),(11457,8945,'George Monroe',2,0),(11457,5470,'Robin Kimball',1,1),(11457,17244,'Sam Monroe',2,2),(11457,20089,'Alyssa Beck',1,3),(11457,2453,'Colleen Beck',1,4),(11457,19211,'Josh',2,5),(11457,2154,'Officer Kurt Walker',2,6),(11457,78017,'Nurse',0,7),(11457,8213,'David Dokos',2,8),(19840,17265,'Beth Cooper',1,0),(19840,85236,'Denis Cooverman',2,1),(19840,98772,'Cammy',1,2),(19840,74935,'Treece',1,3),(19840,66536,'Rich Munsch',2,4),(19840,140114,'Valli Wooley',1,5),(19840,208679,'Victoria Smeltzer',1,6),(19840,81097,'Kevin',2,7),(19840,205053,'Dustin',2,8),(19840,71402,'Dr. Gleason',1,9),(19840,143329,'Patty Keck',1,10),(19840,129298,'Sean',2,11),(19840,77037,'Greg Saloga',2,12),(19840,2394,'Mr. C',2,13),(19840,65528,'Mrs. C',1,14),(19840,162672,'Coach Raupp',2,15),(19840,1507605,'Sullen Girl (Angelica)',1,16),(22327,39995,'Nick Twisp',2,0),(22327,58225,'Jerry',2,1),(22327,15033,'Paul Saunders',2,2),(22327,11477,'Lance Wescott',2,3),(22327,884,'George Twisp',2,4),(22327,71552,'Lacey',1,5),(22327,117669,'Sheeni Saunders',1,6),(22327,108916,'Taggarty',1,7),(22327,2681,'Lefty',0,8),(22327,440306,'Vijay Joshi',2,9),(22327,20753,'Mr. Ferguson',2,10),(22327,1286238,'Bernice Lynch',0,11),(22327,1319235,'Matron',0,12),(22327,588,'Mr. Saunders',2,13),(22327,5960,'Mrs. Saunders',1,14),(22327,71554,'Trent',2,15),(11644,8891,'Jack Terry',2,0),(11644,44038,'Sally Badina',1,1),(11644,12074,'Burke',2,2),(11644,11901,'Manny Karp',2,3),(11644,73513,'Sam',2,4),(11644,73514,'Donahue',2,5),(11644,73515,'Det. Mackey',2,6),(11644,13728,'Lawrence Henry',2,7),(11644,22107,'Hooker',1,8),(11644,12439,'Detective at Hospital',2,9),(11644,1117284,'Coed Lover',0,10),(11644,174653,'Coed Lover',2,11),(11644,197399,'Sue',0,12),(11644,1344729,'Girl Lover',0,13),(11644,1345867,'Boy Lover',0,14),(11644,1209900,'Train Passenger',2,15),(11644,1793542,'Dancing Coed',1,16),(22102,56881,'Phyllis Nefler',1,0),(22102,8977,'Freddy Nefler',2,1),(22102,31024,'Velda Plendor',1,2),(22102,27862,'Annie Herman',1,3),(22102,17832,'Chica Barnfell',1,4),(22102,93663,'Emily Coleman',1,5),(22102,91415,'Hannah Nefler',1,6),(22102,145747,'Lisa',1,7),(22102,170107,'Claire Sprantz',1,9),(22102,994110,'Bong Bong the Dictator',2,10),(22102,160308,'Tiffany Honigman',1,11),(22102,14414,'Himself',2,12),(18701,5658,'Jimmie Langton',2,0),(18701,516,'Julia Lambert',1,1),(18701,26257,'Archie Dexter',0,2),(18701,63311,'Tom Fennel',2,3),(18701,16940,'Michael Gosselyn',0,4),(18701,6238,'Evie',1,5),(18701,6199,'Dolly de Vries',1,6),(18701,232396,'Curtain Call Boy',2,7),(18701,8445,'Rupert',2,8),(18701,21089,'Lord Charles',2,10),(18701,90451,'Roger Gosselyn',2,11),(18701,29384,'Grace Dexter',1,12),(18701,66446,'Avice Crichton',1,13),(18701,3550,'Cynthia',0,14),(18701,18998,'Julia\'s Mother',1,15),(18701,47754,'Aunt Carrie',1,16),(18701,7868,'Walter Gibbs',2,17),(18701,112439,'Florence',1,18),(10068,2295,'John',2,0),(10068,326,'Elizabeth',1,1),(10068,60700,'Molly',1,2),(10068,8875,'Harvey',2,3),(10068,11870,'Thea',1,4),(10068,16215,'Sue',1,5),(10068,2374,'Farnsworth',2,6),(10068,1217752,'Sinclair - the Critic',0,7),(10068,163851,'Gallery Client',0,8),(10068,165458,'Bedding Saleswoman',0,9),(12246,13275,'Temudjin',2,0),(12246,73774,'Jamukha',2,1),(12246,73775,'Borte',0,2),(12246,73777,'Oelun',0,3),(12246,73776,'Esugei',0,4),(12246,86625,'Targutai',0,5),(12246,1207593,'Dai-Sechen',0,6),(12246,1207594,'Monk',0,7),(12246,1207595,'Boorchu',0,8),(12246,1207596,'Sorgan-Shira',0,9),(12246,1207597,'Altan',0,10),(12246,1207598,'Daritai',0,11),(12246,1207599,'Todoen',0,12),(12246,1207600,'Girkhai',0,13),(12246,1207601,'Chiledu',0,14),(12246,1207602,'Charkhu',0,15),(12246,1207603,'Tangut Garrison Chief',0,16),(12246,1207604,'Young Temudjin',0,17),(12246,1207605,'Young Bu00f6rte',0,18),(12246,1207606,'Young Jamukha',0,19),(12246,1207607,'Juchi',0,20),(12246,1207608,'Mungun',0,21),(12246,1207609,'Taichar',0,22),(12246,1207610,'Temulun',0,23),(12246,1207611,'Young Taichar',0,24),(12246,1207612,'Khasar',0,25),(12246,1207613,'Sochikhel',0,26),(13809,2983,'Archy',2,0),(13809,207,'Lenny Cole',2,1),(13809,20286,'Johnny Quid',2,2),(13809,17276,'One-Two',2,3),(13809,2524,'Handsome Bob',2,4),(13809,17605,'Mumbles',2,5),(13809,10841,'Uri Omovich',2,6),(13809,9030,'Stella',1,7),(13809,23776,'Cookie',2,8),(13809,59620,'June',1,9),(13809,12799,'Roman',2,10),(13809,16756,'Councillor',2,11),(13809,83356,'Rocker',2,12),(13809,43547,'Tank',2,13),(13809,76970,'Nurse',0,14),(13809,8171,'Mickey',2,15),(13809,6969,'Fred the Head',2,16),(27380,13473,'Ace Hunter',2,0),(27380,36409,'Dallas',0,1),(27380,1757,'Major Zara',1,2),(27380,14731,'Duke Guerera',2,5),(27380,9597,'Prof. Eggstrum',2,5),(27380,30125,'Gen. Edward Byrne-White',2,7),(27380,1176592,'Ivan',0,8),(27380,83610,'Zachary Taylor',0,9),(27380,66225,'Suki',0,10),(27380,103572,'Sixkiller',0,11),(27380,1605353,'Lopez',0,12),(27380,1465268,'Anton',0,13),(27380,16659,'Motorcycle',2,14),(10549,11181,'Prince Hamlet',2,0),(10549,937,'King Claudius',2,1),(10549,1666,'Gertrude',1,2),(10549,29859,'Polonius',2,3),(10549,204,'Ophelia',1,4),(10549,32357,'Horatio',2,5),(10549,17483,'Laertes',2,6),(10549,17328,'Fortinbras',2,7),(10549,2157,'Osric',2,8),(10549,16927,'Reynaldo',2,9),(10549,9191,'Rosencrantz',2,10),(10549,81598,'Guildenstern',2,11),(10549,3151,'Marcellus',2,12),(10549,43138,'Barnardo',2,13),(10549,56650,'Francisco',2,14),(10549,8318,'Ghost of Hamlet\'s Father',2,15),(10549,7904,'First Gravedigger',2,16),(10549,57461,'Second Gravedigger',2,17),(10549,49813,'Voltimand',0,18),(10549,41742,'Cornelius',2,19),(10549,10017,'Player King',2,20),(10549,18998,'Player Queen',1,21),(10549,4786,'English Ambassador',2,22),(10549,11857,'Priam',2,23),(10549,5309,'Hecuba',1,24),(10549,11859,'Old King Norway',2,25),(10549,202520,'Yorick',2,26),(10549,90546,'Young Lord',2,27),(10549,207549,'Second Player',1,28),(33870,112161,'Li Cunxin - adult',2,0),(33870,112162,'Li Cunxin - teenage',0,1),(33870,112163,'Li Cunxin - boy',0,2),(33870,6720,'Niang',1,3),(33870,21089,'Ben Stevenson',2,5),(33870,65871,'Elizabeth Mackey',1,6),(33870,6677,'Charles Foster',2,7),(33870,12536,'US Federal Judge',2,8),(33870,112165,'Mary McKendry',1,9),(33870,112166,'Lori',0,10),(33870,112168,'Bobby Cordner',2,11),(33870,144081,'Dilworth',2,12),(33870,71052,'',0,13),(10739,1243,'David Dobel',2,0),(10739,21593,'Jerry Falk',2,1),(10739,6886,'Amanda Chase',1,2),(10739,8893,'Paula Chase',1,3),(10739,518,'Harvey Wexler',2,4),(10739,11669,'Bob',2,5),(10739,1374770,'Pip\'s Comic',0,6),(10739,43479,'Dr. Phil Reed',2,7),(10739,5090,'Ray Polito',2,8),(10739,1232496,'Psychiatrist',0,9),(10739,57514,'Connie',1,10),(10739,26473,'Manager',2,11),(10739,159879,'Bill',2,12),(10739,20388,'Brooke',1,13),(10739,137386,'Herself',1,14),(10739,28005,'Movie Theater Patron',0,15),(10739,28022,'Hotel Desk Clerk',0,16),(10739,77644,'Emily',0,17),(10739,1571035,'Ralph',0,18),(10739,1571036,'Car Thug #1',0,19),(10739,1089394,'Car Thug #2',2,20),(10739,1300853,'Movie Patron (uncredited)',2,21),(10739,71813,'Ron Keller, Acting Teacher (uncredited)',2,22),(10017,6952,'Jake Kesey / The Wraith',2,0),(10017,11151,'Packard Walsh',2,1),(10017,6681,'Keri Johnson',1,2),(10017,1811,'Sheriff Loomis',2,3),(10017,545,'Billy Hankins',2,4),(10017,15661,'Rughead',2,5),(10017,102403,'Skank',2,6),(10017,987082,'Gutterboy',2,7),(10017,92822,'Oggie',2,8),(10017,117148,'Minty',2,9),(10017,1298539,'Waitress',0,10),(10017,131824,'Murphy',0,11),(10017,50724,'Redd',2,12),(10017,152974,'Stokes',0,13),(10017,1536858,'Teen at Falls',0,14),(11468,5576,'Tom Van Allen | Danny Parker',2,0),(11468,7132,'Pooh-Bear',2,1),(11468,6163,'Kujo',2,2),(11468,40481,'Quincy',2,3),(11468,6806,'Gus Morgan',2,4),(11468,57829,'Al Garcetti',2,5),(11468,2683,'Bobby',2,6),(11468,133,'Jimmy the Finn',2,7),(11468,13549,'Colette',1,8),(11468,54634,'Liz',1,9),(11468,14592,'Bubba',2,10),(11468,8655,'Verne Plummer',2,11),(11468,92857,'Nancy',1,12),(11468,28778,'Nancy Plummer',1,13),(11468,7470,'Bo',2,14),(11468,11160,'Little Bill',2,15),(11468,31715,'Teresa',1,16),(11468,16937,'Detective Bookman',2,17),(17436,879,'William',2,0),(17436,326,'Laura',1,1),(17436,2295,'Peter',2,2),(17436,1920,'Cheryl Laine',1,3),(17436,20132,'Graham',2,4),(17436,55085,'Christie',1,5),(17436,7026,'Roger',2,6),(17436,6591,'Les Price',2,7),(17436,6069,'Martin',2,8),(17436,17441,'Tim Price',2,9),(17436,76943,'Bryan Metro',2,10),(17436,51214,'Jack',2,11),(17436,51995,'Spaz',2,12),(17436,19280,'Bruce\'s Mother',1,13),(17436,95042,'Susan Sloan',1,14),(17436,85143,'Mary',1,15),(17436,59450,'Patty',1,16),(17436,55463,'Rachel',1,17),(17436,76850,'Nina Metro',1,18),(17436,1371240,'Miss Nebraska',0,19),(17436,1371246,'Red Carpet Woman',0,20),(17436,1371260,'The P.A.',0,21),(17436,1371392,'Party Girl',0,22),(31166,2299,'Kline',2,0),(31166,13550,'Hasford',2,2),(31166,12670,'Shitao',2,3),(31166,25002,'Su Dongpo',2,4),(31166,113388,'Lili',1,5),(31166,78869,'Meng Zi',2,6),(15670,80602,'Madea / Joe / Brian',2,0),(15670,15543,'Joshua Hardaway',2,1),(15670,84206,'Candace Candy Washington',1,2),(15670,2395,'Whoopi',1,3),(15670,84208,'Linda Davis',1,4),(15670,63522,'T.T.',1,5),(15670,19492,'Ellen',1,6),(15670,20491,'Donna',1,7),(15670,78739,'Mr. Brown',2,8),(15670,78738,'Cora Simmons',1,9),(15670,84209,'Chuck',2,10),(15670,1633323,'Dr. Phil',2,11),(15670,1536389,'Tanya',0,12),(15670,1790660,'TV Reporter',2,13),(10982,1813,'Red (voice)',1,0),(10982,515,'Granny (voice)',1,1),(10982,26485,'The Woodsman (voice)',2,2),(10982,9657,'The Wolf (voice)',2,3),(10982,18471,'Detective Bill Stork (voice)',2,4),(10982,28010,'Nicky Flippers (voice)',2,5),(10982,336,'Chief Grizzly (voice)',2,6),(10982,9046,'Woolworth (voice)',2,7),(10982,43120,'Boingo (voice)',2,8),(10982,61373,'Twitchy (voice)',2,9),(10982,427964,'Japeth the Goat (voice)',2,10),(10982,77089,'Raccoon Jerry (voice)',2,11),(10982,78798,'Tommy (voice)',2,12),(10982,61379,'Timmy (voice)',2,13),(10982,61372,'Glen (voice)',2,14),(31932,2876,'Jimmy',2,0),(31932,3085,'Marvin',2,1),(31932,11317,'Sophie',1,2),(31932,16927,'Emile',2,3),(31932,1640,'Joseph Kaspar',2,4),(31932,9827,'Sabrina',1,5),(31932,586101,'Robbie',0,6),(31932,90519,'Larry Luckman',2,7),(31932,1795278,'Dr Bopha',0,8),(11113,1932,'Eliza Doolittle',0,0),(11113,35321,'Professor Henry Higgins',0,1),(11113,12727,'Alfred P. Doolittle',0,2),(11113,15387,'Colonel Hugh Pickering',2,3),(11113,3366,'Mrs. Higgins',1,4),(11113,140914,'Freddy Eynsford-Hill',2,5),(11113,6609,'Zoltan Karpathy',2,6),(11113,89895,'Mrs. Pearce',1,7),(11113,95263,'Mrs. Eynsford- Hill',0,8),(11113,126656,'Butler',0,9),(21765,28640,'Mrs. Baker',1,0),(21765,19977,'Owen Baker',2,1),(21765,4756,'Hubble (voice)',2,2),(21765,49002,'Wilson (voice)',2,3),(21765,11159,'The Greater Dane\'s Henchman (voice)',2,4),(21765,328,'Nelly (voice)',1,5),(21765,13333,'The Greater Dane (voice)',1,6),(21765,1895,'Shep (voice)',2,7),(21765,34487,'Barbara Ann (voice)',1,8),(21765,58478,'Mr. Baker',2,9),(21765,1132183,'Frankie',0,10),(21765,945793,'Fred',2,11),(13778,60950,'Dickie Roberts',2,0),(13778,1980,'Grace Finney',1,1),(13778,14886,'George Finney',2,2),(13778,56153,'Sam Finney',2,3),(13778,59176,'Sally Finney',1,4),(13778,5621,'Referee',2,5),(13778,53601,'Commentator',2,6),(13778,66072,'Himself',2,7),(13778,66563,'Dickie\'s Corner Man',2,8),(13778,24967,'Cyndi',1,9),(13778,75308,'Himself',2,10),(13778,75309,'Emmanuel\'s Entourage',2,11),(13778,3952,'Emmanuel\'s Entourage',2,12),(13778,75310,'Guy in Car',0,13),(13778,2883,'Himself',2,14),(13778,75311,'Girl',0,15),(13778,70557,'Girl',1,16),(13778,22053,'Mr. Rollins',2,17),(13778,16165,'Sidney Wernick',2,18),(13778,75312,'Angry Driver',2,19),(13778,65913,'Alcoholic Speaker',0,20),(13778,74036,'Himself',2,21),(13778,75313,'Counselor',0,22),(13778,75314,'Lamaze Group Leader',1,23),(13778,3034,'Himself',2,24),(13778,75315,'Himself',2,25),(13778,19186,'Himself',2,26),(13778,32905,'Reiner\'s Secretary',1,27),(13778,3026,'Himself',2,28),(13778,49275,'Publisher',2,29),(13778,75316,'Publisher',0,30),(13778,75317,'Biker',2,31),(13778,75318,'Sad Eye Sadie',0,32),(13778,34457,'Strange Man',2,33),(13778,45863,'Peggy Roberts',1,34),(13778,14671,'Himself',2,35),(13778,75319,'Young Dickie',0,36),(13778,75320,'Ring Girl',0,37),(13778,3202,'Mrs. Gertrude',1,38),(13778,60163,'Passing Man with Camera',0,39),(13778,75321,'Map Seller',0,40),(13778,75322,'Bully',0,41),(13778,75323,'Bully',2,42),(13778,75324,'Bully',2,43),(13778,55090,'Boy in Crowd',2,44),(13778,75325,'Mr. Gertrude',2,45),(13778,75326,'Gertrude Kid',0,46),(13778,75327,'Boy',2,47),(13778,75328,'Boy',0,48),(13778,75329,'Boy',0,49),(13778,75330,'Barbie',1,50),(13778,26483,'Teacher at Microphone',1,51),(13778,75331,'Heather Bolan',1,52),(13778,5620,'Valet',2,54),(13778,75332,'Valet',0,55),(13778,75333,'News Correspondent',0,56),(13778,75334,'Herself',1,57),(13778,75335,'Reporter',0,58),(13778,75336,'Herself',1,59),(13778,75337,'Brittany',1,60),(13778,75338,'Janice',0,61),(13778,30051,'Himself',2,62),(13778,75339,'Himself',2,63),(13778,75340,'Himself',2,64),(13778,75341,'Himself',2,65),(13778,8894,'Himself',2,66),(13778,17444,'Himself',2,67),(13778,75342,'Himself',2,68),(13778,75343,'Herself',1,69),(13778,12097,'Himself',2,70),(13778,75344,'Himself',2,71),(13778,75345,'Himself',2,72),(13778,75346,'Herself',1,73),(13778,75347,'Himself',2,74),(13778,75348,'Himself',2,75),(13778,75349,'Herself',1,76),(13778,75350,'Himself',2,77),(13778,75351,'Himself',0,78),(13778,75352,'Himself',2,79),(13778,35686,'Himself',2,80),(13778,58477,'Himself',0,81),(13778,20819,'Himself',2,82),(13778,16763,'Himself',2,83),(13778,75353,'Himself',2,84),(13778,75354,'Himself',2,85),(13778,75355,'Herself',1,86),(13778,75356,'Himself',2,87),(13778,21862,'Herself',1,88),(13778,178926,'Maitre\' D',2,89),(13960,76126,'Rashad',0,0),(13960,94103,'Ant',2,1),(13960,66526,'Esquire',2,2),(13960,98772,'New New',1,3),(13960,76129,'Brooklyn',2,4),(13960,98775,'Marcus',2,5),(13960,84115,'Teddy',2,6),(13960,65827,'John Garnett',2,7),(13960,74610,'Gayle',1,8),(13960,1234262,'Veda',0,9),(13960,1568595,'Star',1,10),(13960,962185,'Tondie',1,11),(13960,1606734,'Thug',2,12),(13960,1819817,'Big Booty Judy',0,13),(26602,33260,'Ryan Dunne',2,0),(26602,10860,'Tenley Parrish',1,1),(26602,10430,'Sean Dunne',2,2),(26602,26457,'Billy Brubaker',2,3),(26602,6197,'John Schiffner',2,4),(26602,48012,'Mike Dunne',2,5),(26602,328,'Dede Mulligan',1,6),(26602,52374,'Rand Parrish',2,7),(26602,46772,'Miles Dalrymple',2,8),(10223,2053,'Hank Mitchell',2,0),(10223,2233,'Sarah Mitchell',1,1),(10223,879,'Jacob Mitchell',2,2),(10223,15011,'Lou Chambers',2,3),(10223,10486,'Carl Jenkins',2,4),(10223,21163,'Baxter',2,5),(10223,59206,'Nancy Chambers',1,6),(10223,54635,'Dwight Stevanson',0,7),(10223,1832086,'Tom Butler',2,8),(16028,73836,'Julia Lund',1,0),(16028,46772,'Paul Loomis',2,1),(16028,58019,'Sam Burnside',2,2),(16028,52776,'Terry Alba',1,3),(16028,17866,'Billy Parks',2,3),(16028,59242,'Mary Parks',1,4),(16028,12,'Young Billy',2,5),(16028,59311,'Troy',2,6),(16028,51937,'Darren',2,7),(16028,2321,'Young Julia',1,8),(16028,63791,'Dr. Booth',2,9),(16028,172843,'Professor Crowley',0,10),(16028,127810,'Professor Adkins',2,11),(16028,8338,'Sarah',1,12),(16028,158521,'Chinese Chef',2,13),(15639,15897,'Larry',2,0),(15639,120249,'Amy Butlin',1,1),(15639,25147,'Jack Dabbs',2,3),(15639,28638,'Donnie',2,4),(15639,54718,'Brenda',1,5),(15639,593,'Lily Micelli',1,6),(15639,154332,'Jane Whitley',1,7),(15639,200406,'Tad',2,8),(15639,1276225,'Debbie Goldstein',0,9),(16112,77156,'Elmo / Grouch Jailer',2,0),(16112,25503,'Huxley',2,3),(16112,27011,'Queen of Trash',1,4),(16112,120608,'Maria',1,5),(16112,90776,'Gordon',2,6),(16112,196825,'Grizzy / Pestie',1,8),(16112,64181,'Humongous Chicken',2,9),(16112,64185,'Bug',0,10),(16112,68455,'Count / Pestie / Grouch Mayor / Grouch Cop',2,11),(16112,173798,'Rosita',0,12),(16112,226789,'Telly / Pestie / Laundromad Guy',0,13),(16112,192632,'Baby Bear / Fat Blue',0,14),(16112,109887,'Big Bird / Oscar the Grouch',2,15),(16112,64180,'Ernie / Stuckweed',2,16),(16112,90777,'Gina',1,17),(16112,7908,'Bert / Grover / Cookie Monster (voice)',2,18),(16112,22556,'Ruthie',1,19),(16112,161147,'Luis',2,20),(16112,1217330,'Susan',0,21),(16112,1217328,'Bob',0,22),(16112,1572614,'Additional Muppet Performer (voice)',0,23),(16112,64182,'Additional Muppet Performer (voice)',2,24),(16112,1572627,'Additional Muppet Performer (voice)',0,25),(16112,1572634,'Additional Muppet Performer (voice)',0,26),(16112,1213631,'Additional Muppet Performer (voice)',0,27),(16112,1572642,'Additional Muppet Performer (voice)',0,28),(16112,1227760,'Additional Muppet Performer (voice)',0,29),(16112,1573049,'Additional Muppet Performer (voice)',0,30),(16112,1573061,'Additional Muppet Performer (voice)',0,31),(16112,1573062,'Additional Muppet Performer (voice)',0,32),(16112,1224515,'Additional Muppet Performer (voice)',0,33),(16112,1573070,'Additional Muppet Performer (voice)',0,34),(16112,1573073,'Additional Muppet Performer (voice)',0,35),(16112,65171,'Additional Muppet Performer (voice)',2,36),(16112,1573096,'Additional Muppet Performer (voice)',0,37),(16112,1573108,'Additional Muppet Performer (voice)',0,38),(16112,1573112,'Additional Muppet Performer (voice)',0,39),(16112,135467,'Big Bird / Ernie (assistant) (uncredited) / Additional Muppet Performer (voice)',0,41),(16112,1225507,'Additional Muppet Performer (voice)',0,42),(16112,164131,'Zoe / Pestie / Prairie Dawn (voice)',1,43),(16112,145446,'Additional Muppet Performer (voice)',2,44),(26390,1205,'Eddie Dugan',2,0),(26390,1896,'Tango',2,1),(26390,569,'Sal',2,2),(26390,10814,'Caz',2,3),(26390,7132,'Bobby \'Carlo\' Powers',2,4),(26390,6913,'Agent Smith',1,5),(26390,39390,'Red',2,6),(26390,145145,'Chantel',1,7),(26390,31713,'Ronny Rosario',2,8),(26390,883,'Lt. Bill Hobarts',2,9),(26390,3127,'Angela',1,11),(26390,19490,'Det. Patrick Leary',2,12),(26390,19497,'Det. George Montress',2,13),(26390,60488,'C-Rayz',2,14),(26390,130253,'Melvin Panton',2,15),(26390,210695,'E. Quinlan',2,16),(26390,91508,'Beamer',2,17),(26390,1117437,'K. Rock',0,18),(26390,1056523,'Vinny',2,19),(26390,74687,'Cynthia',1,20),(26390,57893,'Katherine',1,21),(27759,10017,'Maj. Matt Lewis',2,0),(27759,25787,'Baroness Natalie Ivanoff',1,1),(27759,14261,'Sir Arthur Robertson',2,2),(27759,21944,'Old Man (voice)',2,3),(27759,30126,'Dowager Empress Tzu-Hsi',1,4),(27759,14502,'Sgt. Harry',2,5),(27759,19463,'Father de Bearn',2,6),(27759,29655,'Gen. Jung-Lu',2,7),(27759,81463,'Prince Tuan',2,8),(27759,40620,'Baron Sergei Ivanoff',2,9),(27759,25333,'Julliard',2,10),(27759,2092,'Dr. Steinfeldt',2,11),(27759,115780,'Lady Sarah Robertson',1,12),(27759,14148,'Garibaldi',2,13),(27759,102026,'Maj. Bobrinski',2,14),(27759,178302,'Capt. Andy Marshall',0,15),(27759,1388758,'Teresa',0,16),(23049,54645,'Georgia Ianakopolis',1,0),(23049,3037,'Irv Gideon',2,1),(23049,89705,'Poupi Kakas',0,2),(23049,89706,'Nico',0,3),(23049,16846,'Big Al Sawchuck',2,4),(23049,32905,'Kim',1,5),(23049,6692,'Dr. Elizabeth Tullen',1,6),(23049,51755,'Mr. Stewart Tullen',2,7),(23049,56,'Caitlin',1,8),(23049,560275,'Lena',1,9),(23049,46856,'Lala Cruz',1,10),(23049,89708,'Marc',0,11),(23049,205267,'Gator',2,12),(23049,216855,'Ken',0,13),(23049,1112472,'Sue',0,14),(11411,20006,'Superman / Clark Kent',2,0),(11411,20011,'Lois Lane',1,1),(11411,193,'Lex Luthor',2,2),(11411,55278,'Perry White',2,3),(11411,1067,'Jimmy Olsen',2,4),(11411,69718,'Lenny',2,5),(11411,21520,'David Warfield',2,6),(11411,10447,'Lacy Warfield',1,7),(11411,1062160,'Nuclear Man',2,8),(11411,1458949,'Jeremy',0,9),(11411,663,'Harry Howler',2,10),(11411,388,'Jean Pierre Dubois',2,11),(11411,27823,'General Romoff',2,12),(11411,662,'Levon Hornsby',0,13),(11411,251,'U.S. President',2,14),(11411,25530,'Tall Marshall',0,15),(11411,33403,'Marshall #2',2,16),(11411,140148,'Russian General #2',2,17),(16988,210773,'Raya Green',1,0),(16988,80968,'Bishop',2,1),(16988,20196,'Mike Evens',2,2),(16988,957076,'Garvey',2,3),(16988,19961,'Tall Girl in Bathroom',1,4),(16988,1015568,'Manny',2,5),(16988,1457035,'Trey',2,6),(16988,1228290,'Selia',1,7),(24747,8767,'Bobby Jones',2,0),(24747,4174,'Mary Malone Jones',1,1),(24747,18325,'Walter Hagen',2,2),(24747,56890,'O.B. Keeler',2,3),(24747,18992,'Harry Vardon',2,4),(24747,29934,'Big Bob Jones',2,5),(24747,35517,'Clara Jones',1,6),(24747,55494,'Little Bobby (6 / 8)',0,7),(10629,112,'Veronica Guerin',1,0),(10629,43131,'John Gilligan',0,1),(10629,8785,'John Traynor',2,2),(10629,18345,'Bernie Guerin',1,3),(10629,111837,'Chris Mulligan',0,4),(10629,117108,'Graham Turley',2,5),(10629,946128,'Cathal Turley',2,6),(10629,38339,'Jimmy Guerin',2,7),(10629,188426,'Martin Cahill',0,8),(10629,228257,'Aengus Fanning',0,9),(10629,17778,'Anne Harris',1,10),(10629,42600,'Willie Kealy',2,11),(10629,1234611,'Tony Gregory',0,12),(10629,185437,'Geraldine Gilligan',0,13),(10629,185315,'Brian Meehan',2,14),(10629,1233819,'Eugene \'Dutchie\' Holland',2,15),(10629,93211,'Charles Bowden',2,16),(10629,1592216,'Gilligan Gang Member #1',2,17),(10629,102977,'Gilligan Gang Member #2',2,18),(10629,1592218,'Traynor\'s Girlfriend',0,19),(10629,149991,'Gerry Hutch',2,20),(10629,72466,'Tattooed Boy',2,21),(10629,33451,'Frances Cahill',1,22),(10629,1004707,'Tommy Mullen',0,23),(10629,63365,'Peter \'Fatso\' Mitchell',2,24),(10629,556445,'Terry Fagan',2,25),(10629,17019,'Timmy (14-year-old Junkie)',2,26),(10629,63362,'Jamey the Tout',0,27),(10800,5443,'Lian-Chu',2,0),(10800,41526,'Gwizdo',2,1),(10800,5444,'Le Seigneur Arnold',2,2),(10800,66872,'Gildas',0,3),(10800,965900,'Zou00e9',1,4),(10800,1444806,'Hector (voice)',0,5),(10800,1444807,'Mamular (voice)',0,6),(10800,31531,'Fat John (voice)',0,7),(10800,1442269,'Gildas (voice)',0,9),(10800,84495,'Gildas (voice)',2,10),(10800,39214,'Lord Arnold (voice)',2,11),(10800,1223084,'Zou00e9 (voice)',1,12),(10800,43125,'Gwizdo / Bat / Lensflair (voice)',2,13),(10800,2178,'Lian-Chu (voice)',2,14),(10800,1222041,'Hector (voice)',0,15),(25763,83037,'Tanner',2,0),(25763,1933,'Maj. Eugene Denton',2,1),(25763,24590,'Janice',1,2),(25763,1818,'Keegan',2,3),(25763,17183,'Billy',2,4),(25763,151447,'Lt. Tom Perry',2,5),(25763,13875,'Man / Guard',2,6),(25763,153393,'Mountain Man #2',0,7),(25763,160387,'Technician',2,8),(25763,78003,'Haskins',0,9),(25763,152584,'Colonel',0,10),(25763,91833,'Burning Man',0,11),(25763,564785,'Air Policeman',0,12),(25763,564786,'Gloria',0,13),(25763,166335,'Mountain Man',0,14),(25763,8608,'Gen. Landers',0,15),(25763,160122,'Mountain Man',2,16),(25763,1608817,'Musician',2,17),(18615,2227,'Diane Arbus',1,0),(18615,3223,'Lionel Sweeney',2,1),(18615,15232,'Allan Arbus',2,2),(18615,1166,'David Nemerov',2,3),(18615,13724,'Gertrude Nemerov',1,4),(18615,200989,'Grace Arbus',0,5),(18615,216794,'Sophie Arbus',0,6),(18615,151432,'Jack Henry',2,7),(18615,54124,'Tippa Henry',1,8),(18615,962206,'Althea',1,9),(18615,51390,'Allan\'s New Assistant',1,10),(18615,164228,'Dominatrix',0,11),(18615,171658,'Lois',0,12),(18615,58541,'Handsome Client',2,13),(18615,164522,'Fiona',0,14),(10673,6952,'Bud Fox',2,0),(10673,3392,'Gordon Gekko',2,1),(10673,8349,'Carl Fox',2,2),(10673,589,'Darien Taylor',1,3),(10673,11885,'Marvin',2,4),(10673,11066,'Lou Mannheim',2,5),(10673,586,'Kate Gekko',1,6),(10673,28641,'Sir Larry Wildman',2,7),(10673,13548,'Roger Barnes',2,8),(10673,118757,'Chuckie',2,9),(10673,15100,'Lady Broker',1,10),(10673,42694,'Carolyn',1,11),(10673,166598,'Dan',2,12),(10673,14852,'Lynch',2,13),(10673,3712,'Harry Salt',2,14),(10673,19469,'Natalie',1,15),(10673,569512,'Natalie\'s Assistant',1,16),(10673,4692,'Charlie',2,17),(10673,31007,'Dominick',2,18),(10673,569513,'Girl in Bed',1,19),(10673,171541,'Receptionist',1,20),(10673,538321,'Alex',2,21),(10673,925,'Stone Livingston',2,23),(10673,29916,'Woman at \'21\'',1,24),(10673,19335,'Dolores the Realtor',1,25),(10673,34535,'Muffie Livingston',1,26),(10673,33489,'Ollie',2,27),(10673,59168,'Susan',1,28),(10673,1446011,'Gina',1,29),(10673,1720884,'Maitre\'d \'21\'',2,30),(10673,1230802,'Banker at \'21\'',2,31),(10673,1720885,'Busboy at \'21\'',2,32),(10673,121278,'Hooker',1,33),(10673,1720886,'Broker in Locker Room',2,34),(10673,1720887,'Maitre\'d \'Le Cirque\'',2,35),(10673,83809,'Woman at \'Le Cirque\'',1,36),(10673,1720888,'Airline Mechanic',2,37),(10673,10450,'Reporter',2,38),(10673,1720889,'TV Business Analyst',2,39),(10673,1720890,'Butler',2,40),(10673,7046,'Candice Rogers',1,41),(10673,1720891,'Sam Ruspoli',2,42),(10673,1720892,'Houseboy',2,43),(10673,1720893,'Panos',2,44),(10673,96595,'Young Broker',2,45),(10673,1415876,'Paralegal',1,46),(10673,3210,'Rudy Gekko',2,48),(10673,1720896,'Nicole',1,49),(10673,1041787,'Janet',1,50),(10673,1720899,'Auctioneer',2,51),(10673,1720900,'Bidder at Auction',2,52),(10673,1720901,'Artist at Auction',2,53),(10673,1199276,'SEC Man',2,54),(10673,15413,'Cromwell',2,55),(10673,1720902,'Woman in Plane',1,56),(10673,1720903,'Duncan Wilmore',2,57),(10673,78518,'Toni Carpenter',1,58),(10673,1720904,'Young Lawyer',2,59),(10673,1720905,'Investment Banker',2,60),(10673,1720906,'Commercial Banker',2,61),(10673,26142,'Mrs. Fox',1,62),(10673,6326,'Postal Inspector',2,63),(10673,1720907,'U.S. Attorney',2,64),(10673,1720908,'Trader - New York Stock Exchange',2,65),(10673,1720909,'Trader - New York Stock Exchange',2,66),(10673,1720910,'Trader - New York Stock Exchange',2,67),(10673,1720911,'Trader - New York Stock Exchange',2,68),(10673,1720912,'Trader - Office',1,69),(10673,68210,'Trader - Office',2,70),(10673,1378739,'Trader - Office',2,71),(10673,1720913,'Trader - Office',1,72),(10673,1720914,'Trader - Office',2,73),(10673,1720915,'Trader - Office',2,74),(10673,1720916,'Trader - Office',2,75),(10673,199669,'Trader - Office',2,76),(10673,1720917,'Trader - Office',1,77),(10673,1720918,'Trader - Office',2,78),(10673,1152,'Trader - Office',2,79),(10673,1392535,'Trader - Office',2,80),(10673,79084,'Trader - Office',2,81),(10673,1720919,'Trader - Office',1,82),(10673,1720920,'Trader - Office',2,83),(10673,63342,'Elevator Person',2,84),(10673,1217685,'Elevator Person',1,85),(10673,166168,'Elevator Person',2,86),(10673,3711,'Elevator Person',1,87),(10673,2255,'Elevator Person',2,88),(10673,11893,'Evan Morrissey (uncredited)',2,89),(10673,1720922,'Stock Broker (uncredited)',2,90),(10673,1720923,'Herself (uncredited)',1,91),(10673,1720924,'Business Man (uncredited)',2,92),(10673,158453,'Health Club Attendant (uncredited)',2,93),(10673,1720925,'Chronicle Reporter (uncredited)',2,94),(10673,1720926,'Race Fan (uncredited)',1,95),(10673,1720927,'Stock Broker (uncredited)',2,96),(10760,29220,'Sydney White',1,0),(10760,60072,'Rachel Witchburn',1,1),(10760,16839,'Tyler Prince',2,2),(10760,15034,'Terrence Lubinecki',2,3),(10760,35550,'Gurkin',2,4),(10760,66536,'Lenny',2,5),(10760,66537,'Demetria Rosemead \'Dinky\' Hotchkiss',1,6),(10760,66538,'Jeremy',2,7),(10760,58507,'Spanky',2,8),(10760,55779,'Paul White',2,9),(10760,66540,'George',2,10),(10760,55092,'Katy',1,11),(10760,66539,'Christy',1,12),(10760,66541,'Embele',2,13),(10760,66542,'Professor Carleton',2,14),(10760,66543,'Young Sydney White',1,15),(10760,66547,'Goth Girl',0,16),(10760,66545,'Amy',0,18),(10760,66546,'Moose',0,19),(10760,41345,'Alicia',1,20),(10760,1371879,'Pin Me Sister',0,21),(10760,1297174,'Rushee',1,22),(11093,6161,'Kathy',1,0),(11093,2282,'Behrani',2,1),(11093,12260,'Lester',2,2),(11093,3713,'Connie Walsh',1,3),(11093,21165,'Carol Burdon',1,4),(11093,21041,'Nadi',1,5),(11093,206965,'Esmail',2,6),(11093,43778,'Soraya',1,7),(11093,36134,'Ali',0,8),(24226,3636,'Frank Galvin',2,0),(24226,44079,'Laura Fischer',1,1),(24226,5251,'Mickey Morrissey',2,2),(24226,2091,'Ed Concannon',2,3),(24226,47137,'Judge Hoyle',2,4),(24226,32225,'Kaitlin Costello',1,5),(24226,2651,'Bishop Brophy',2,6),(24226,20972,'Maureen Rooney',1,7),(24226,29021,'Sally Doneghy',1,8),(24226,51551,'Kevin Doneghy',2,9),(24226,66712,'Dr. Towler',2,10),(24226,51546,'Dr. Thompson',2,11),(24226,169133,'Dr. Gruber',2,12),(24226,20914,'Joseph Alito',2,13),(24226,23608,'Billy',2,14),(24226,62,'Courtroom Observer (uncredited)',2,15),(24226,2144,'Courtroom Observer (uncredited)',2,16),(14709,19210,'Jonathan \'Mox\' Moxon',2,0),(14709,20189,'Jules Harbor',1,1),(14709,10127,'Coach Bud Kilmer',2,2),(14709,8167,'Lance Harbor',2,3),(14709,77174,'Billy Bob',2,4),(14709,1894,'Charlie Tweeder',2,5),(14709,17303,'Darcy Sears',1,6),(14709,3205,'Joe Harbor',2,7),(14709,46919,'Sam Moxon',2,8),(14709,94547,'Kyle Moxon',2,9),(14709,111002,'Sheriff Bigelow',0,10),(14709,941625,'Wendell Brown',2,11),(14709,975230,'Miss Davis',1,12),(14709,88124,'Tommy Harbor',2,13),(13788,51992,'Casey Beldon',1,0),(13788,64,'Rabbi Sendak',2,1),(13788,22122,'Romy',1,2),(13788,55086,'Mark Hardigan',2,3),(13788,17605,'Arthur Wyndham',2,4),(13788,132213,'Barto',2,5),(13788,13724,'Sofi Kozma',1,6),(13788,66646,'Matty Newton',2,7),(13788,1736,'Gordon Beldon',2,8),(13788,17832,'Janet Beldon',1,9),(13788,164380,'Dr. Lester Caldwell',2,10),(13788,113563,'Mr. Shields',2,11),(13788,1018310,'Eli Walker',2,12),(10781,22123,'Chrissie',1,0),(10781,66741,'Dean',2,1),(10781,59263,'Bailey',1,2),(10781,66743,'Eric',2,3),(10781,8655,'Uncle Charlie Hewitt / Sheriff Hoyt',2,4),(10781,37027,'Sheriff Winston Hoyt',2,5),(10781,52366,'Thomas Hewitt (Leatherface)',2,6),(10781,956719,'Slaughterhouse Supervisor',2,7),(10781,6906,'Holden',2,8),(10781,42515,'Alex',1,9),(10781,132054,'Monty Hewitt',2,10),(10781,985344,'Luda Mae Hewitt',1,11),(13908,56159,'Pistachio Disguisey',2,0),(13908,1213786,'Devlin Bowman',2,1),(13908,18285,'Jennifer Baker',1,2),(13908,14833,'Grandfather Disguisey',2,3),(13908,9274,'Fabbrizio Disguisey',2,4),(13908,139759,'Barney Baker',0,5),(13908,3202,'Mother Disguisey',1,6),(13908,85759,'Sophia (as Maria Canals)',0,7),(13908,139760,'Texas Man',2,8),(13908,37008,'Henchman',2,9),(13908,139761,'Texas Wife',1,10),(13908,139763,'Trent',2,12),(13908,77330,'Kenan',2,13),(13908,1215262,'Rex',0,14),(13908,52052,'Jessica Simpson',1,15),(13908,1426658,'Group Dancer',1,16),(16161,8169,'Joseph Summers',2,0),(16161,40036,'Yvette',1,1),(16161,88183,'Sweetpea',2,2),(16161,10182,'Melvin \'Mel\'',2,3),(16161,19767,'Rodney',2,4),(16161,88186,'Juanita',1,5),(16161,93615,'Kim',1,6),(16161,1065869,'Do Dirty',0,7),(16161,66131,'Sharika',1,8),(16161,60561,'Patrice',1,9),(16161,6482,'Man Selling Bootleg Movies (uncredited)',2,10),(10956,60950,'Joe Dirt',2,0),(10956,35476,'Brandy',1,1),(10956,18326,'Zander Kelly',2,2),(10956,33527,'Kicking Wing',2,3),(10956,56824,'Jill',1,4),(10956,10430,'Joe\'s Dad',2,5),(10956,4690,'Clem',2,6),(10956,165867,'Robby',2,7),(10956,17190,'Little Joe Dirt',2,8),(10956,1910,'Joe\'s Mom',1,9),(10956,124668,'Joe\'s Little Sister',0,10),(10956,5621,'Security Guard',2,11),(10956,9832,'Bondi',2,12),(10956,2719,'Buffalo Bob',2,13),(10956,2165,'Charlene the Gator Farmer',1,14),(10956,10671,'Don, Brandy\'s Dad',2,15),(10956,58478,'Greasy Mechanic',2,16),(10956,18262,'Car Dealer',2,17),(13972,9599,'Maggie',1,0),(13972,76229,'Molly Haines',1,1),(13972,516,'Sylvia Fowler',1,2),(13972,8170,'Crystal Allen',1,3),(13972,23959,'Edie Cohen',1,4),(13972,9575,'Alex Fisher',1,5),(13972,73931,'Leah Miller',0,6),(13972,11850,'Catherine Frazier',1,7),(13972,4,'Bailey Smith',1,9),(13972,5578,'Tanya',1,10),(13972,5344,'Mary Haines',1,11),(13491,74927,'Arn Magnusson',0,0),(13491,55885,'Cecilia Algotsdotter',1,1),(13491,1640,'Birger Brosa',2,2),(13491,6283,'Magnus Folkesson',2,3),(13491,106656,'Sigrid',0,4),(13491,74928,'Eskil Magnusson',0,5),(13491,87723,'Bishop Bengt',2,6),(13491,6657,'Mother Rikissa',1,7),(13491,63764,'Knut Eriksson',2,8),(13491,4001,'Father Henry',2,9),(13491,20239,'Brother Guilbert',0,10),(13491,234741,'Emund Ulvbane',2,11),(13491,544707,'Helena',1,12),(13491,47177,'Erik Jedvardsson',2,13),(13491,76321,'Karl Sverkersson',0,14),(13491,123040,'Katarina Algotsdotter',0,15),(13491,79270,'Syster Leonore',1,16),(10571,33260,'Ryan Walker',2,0),(10571,4174,'Jennifer Burrows',1,1),(10571,21593,'Hunter / Steve',2,2),(10571,19275,'Amy',1,3),(10571,21595,'Betty',1,4),(10571,45922,'Young Ryan Walker',2,5),(10571,171841,'N.Y. Flight Attendant',0,6),(10571,114026,'Young Jennifer Burrows',1,7),(10571,1757847,'Homecoming King',0,8),(10571,157876,'Homecoming Knight',2,9),(10571,1773645,'Michael',0,10),(10571,1773646,'D.J. at Club',0,11),(10571,168014,'Girl in Bar',1,12),(10571,1773648,'Big Guy',0,13),(10571,77659,'Kirt',2,14),(10571,26851,'Megan',1,15),(10571,73700,'Frat Guy',0,16),(10571,27031,'Timmy',2,17),(10571,1224152,'Andi',1,18),(10571,1212921,'Noah',0,19),(10571,31841,'Paul',2,20),(10571,1188500,'Katie',1,21),(10571,78578,'Waitress',1,22),(10571,139747,'Guy in Diner',2,23),(10571,111656,'Girl in Diner',1,24),(10571,91843,'Shuttle Driver',2,25),(10571,28950,'Suttle Passenger',1,26),(10571,23975,'L.A. Flight Attendant',1,27),(10571,187670,'Businessman',0,28),(10571,1422457,'Saleswoman',1,29),(10571,62523,'Supermodel',1,30),(10571,115499,'Supermodel',1,31),(10571,1248824,'Supermodel',1,32),(10571,1301872,'Supermodel',1,33),(10571,27264,'Therapist',1,34),(10571,1773681,'Dancer',0,35),(10571,1228761,'Dancer',0,36),(10571,151386,'Dancer',0,37),(10571,1773683,'Dancer',1,38),(10571,1748621,'Dancer',0,39),(10571,1773684,'Dancer',1,40),(10571,1773685,'Dancer',0,41),(10571,1773686,'Dancer',1,42),(10571,1773687,'Dancer',1,43),(10571,1773688,'Dancer',1,44),(10571,1752203,'Dancer',0,45),(10571,14391,'Dancer',1,46),(10571,1561014,'Dancer',1,47),(10571,1773689,'Dancer',1,48),(10571,1773690,'Dancer',1,49),(10571,14390,'Dancer',1,50),(10571,1634331,'Dancer',0,51),(10571,1229700,'Dancer',1,52),(10571,84709,'Dancer',1,53),(10571,1007869,'Dancer',1,54),(10571,1773692,'Dancer',1,55),(10571,1749212,'Dancer',0,56),(10571,1773693,'Dancer',1,57),(10571,1752319,'Dancer',1,58),(10571,1773694,'Dancer',1,59),(10571,1773695,'Dancer',1,60),(10571,29216,'Dancer',0,61),(10571,179688,'Dancer',0,62),(10571,1773696,'Waiter',0,63),(10571,1773697,'Guy in Bar',0,64),(10571,1189234,'Girl in Bar',1,65),(10571,1085653,'Guy in Coffee Shop',0,66),(10571,1773698,'Guy at Golden Gate Bridge',0,67),(10571,1773699,'Student',0,68),(10571,1773700,'Student',0,69),(10571,1254189,'Homecoming Princess',1,70),(10571,1773701,'Homecoming Prince',0,71),(10571,1773702,'Girl in Diner',1,72),(10994,8291,'Astrid Magnussen',1,0),(10994,1160,'Ingrid Magnussen',1,1),(10994,6614,'Ray',2,2),(10994,32,'Starr',1,3),(10994,33457,'Miss Martinez',1,4),(10994,21722,'Paramedic',2,5),(10994,1130139,'Guard',2,6),(10994,343,'Niki',1,7),(10994,159325,'Julie',1,8),(10994,69502,'Reverend Daniels',2,9),(10994,11663,'Paul Trout',2,10),(10994,9188,'Barry Kolker',0,11),(10994,9137,'Claire Richards',1,12),(10994,55536,'Paramedic',1,13),(10994,84521,'Girl in Fight',1,14),(10994,1223194,'Teacher',0,15),(10994,168331,'Marlena',1,16),(10994,112600,'Davey Thomas',2,17),(10994,63679,'Rena Gruschenka',1,18),(10994,154991,'Bill Greenway',2,19),(10994,15044,'Ann Greenway',1,20),(10994,161903,'Swap Meet Mother',1,21),(10994,1886348,'Patty',1,22),(10994,1916,'Judge',2,23),(10994,13526,'Mark Richards',2,24),(10994,1113857,'Comic Book Store Clerk',0,25),(10994,11668,'Carolee',0,26),(10994,100276,'Patrick',0,27),(10994,27268,'Yvonne',1,28),(10994,149665,'Susan Valeris',1,29),(10994,154769,'Hannah',1,30),(10994,123686,'Bailiff',2,31),(10994,61404,'Owen',2,32),(10994,1116864,'Police Officer',0,33),(10994,1641374,'Dad at Induction Area',0,34),(19994,19537,'Jennifer Check',1,0),(19994,71070,'Anita Needy Lesnicky',1,1),(19994,27104,'Chip Dove',2,2),(19994,11702,'Nikolai Wolf',2,3),(19994,18999,'Mr. Wroblewski',2,4),(19994,59219,'Colin Gray',0,5),(19994,12110,'Toni Lesnicky',1,6),(19994,65528,'Mrs. Dove',1,7),(19994,33350,'Mrs. Check',1,8),(19994,85613,'Dirk',2,9),(19994,73457,'Officer Roman Duda',2,10),(19994,85614,'Officer Warzak',1,11),(19994,85616,'Ahmet from India',0,12),(19994,209723,'Goth Girl',1,13),(19994,46903,'Goth Girl #2',1,14),(19994,208146,'Priest',2,15),(19994,41432,'Nutritionist',1,16),(19994,52444,'Melody Lane Drinking Woman',1,17),(19994,2714,'Passing Motorist',2,18),(19994,223126,'Young Needy',1,20),(25166,518,'Chief Wyatt Rash',2,0),(25166,73931,'Mona Dearly',0,1),(25166,9206,'Ellen Rash',1,2),(25166,8944,'Rona Mace',1,3),(25166,1893,'Bobby Calzone',2,4),(25166,886,'Phil Dearly',2,5),(25166,55174,'Jeff Dearly',2,6),(25166,37822,'Lt. Feege Gruber',2,7),(25166,42335,'Lucinda',1,8),(25166,3801,'Clarence',2,9),(25166,23659,'Cubby the Funeral Director',2,10),(25166,85142,'Deputy Tony Carlucci',2,11),(25166,36189,'Deputy Jimmy D.',2,12),(25166,1236,'Murph Calzone',2,13),(25166,84606,'Father Tom Stowick',2,14),(25166,55536,'Shirley',1,15),(25166,197073,'Charm Motel Cashier',2,16),(30890,1243,'Joe, the Narrator',2,0),(30890,12021,'Sally White',0,1),(30890,8447,'Biff Baxter',2,2),(30890,16376,'Communist Neighbor',2,3),(30890,5010,'Crooner',2,4),(30890,13922,'Joe',2,5),(30890,56695,'Father',2,6),(30890,199,'Mother',1,7),(30890,1004,'Rocco',2,8),(30890,10555,'Silver Dollar Emcee',2,9),(30890,12900,'Masked Avenger',2,10),(30890,165818,'Latin Bandleader',2,11),(30890,1902,'Aunt Bea',1,12),(30890,199385,'Aunt Ceil',1,13),(30890,33489,'Uncle Abe',2,14),(30890,121019,'Radio singer',0,15),(30890,1161045,'Teacher in snowman scene',0,16),(30890,1161046,'Miss Gordon',0,17),(30890,1161047,'Rocco\'s mother',1,18),(30890,1161048,'Child singer',0,19),(30890,119864,'Mrs. Waldbaum',1,20),(30890,1161050,'Cousin Ruthie',0,21),(30890,3092,'New Year\'s Eve Singer',1,22),(23169,11288,'Tyler Hawkins',2,0),(23169,28660,'Ally Craig',1,1),(23169,517,'Charles Hawkins',2,2),(23169,5313,'Diane Hirsch',1,3),(23169,2955,'Neil Craig',2,4),(23169,1218228,'Caroline Hawkins',0,5),(23169,17495,'Helen Craig',1,6),(23169,24360,'Les Hirsch',2,7),(23169,965205,'Aidan Hall',2,8),(23169,20879,'Janine',1,9),(23169,1254435,'Samantha',1,10),(23169,1386512,'Leo',0,11),(23169,1216701,'Megan',1,12),(23169,968974,'Michael Hawkins',0,13),(23169,204679,'Miami Blonde',0,14),(23169,1539168,'Mugger',2,15),(23169,1188567,'Taunting Classmate',0,16),(17403,16855,'Halley Martin',1,0),(17403,42626,'Macon Forrester',2,1),(17403,19,'Lydia Martin',1,2),(17403,69399,'Scarlett Smith',1,3),(17403,19152,'Steve Beckwith',2,4),(17403,13026,'Grandma Halley',1,5),(17403,171795,'Ashley Martin',1,6),(17403,35517,'Marion Smith',1,7),(17403,60060,'Lewis Warsher',2,8),(17403,1212960,'Elizabeth Gunderson',1,9),(17403,1401312,'Donald Sherwood',0,10),(17403,55877,'Buck Warsher',2,11),(17403,26973,'Michael Sherwood',2,12),(17403,185178,'Lorna Queen',1,13),(12120,707,'Steven Mills',2,0),(12120,326,'Celeste Martin',1,1),(12120,16165,'Ron Mills',2,2),(12120,21595,'Jessie Mills',1,3),(12120,13922,'Fred Glass',2,4),(12120,6008,'Carl Sagan (voice)',2,5),(12120,3196,'Lexie',1,6),(12120,86136,'The Voice of the Bag (voice)',1,7),(12120,65598,'Council Chief',2,8),(12120,20626,'Lucas Budlong',2,9),(12120,1214023,'Grady',2,10),(18475,61658,'blin bling',2,0),(18475,51857,'LEROY',2,1),(18475,15899,'Lady Em',1,2),(18475,55265,'WES',2,3),(18475,230176,'Becky',0,4),(18475,150666,'(NA)',2,5),(18074,12052,'Liv',1,0),(18074,100,'Billy',2,1),(18074,49,'Suzi Loomis',1,2),(18074,13242,'Todd Woods',2,3),(18074,6861,'Reggie Kane',2,4),(18074,168702,'Ricky Dean',2,5),(18840,5469,'Todd Jackson',2,0),(18840,20162,'Countess Sofia Belinskya',1,1),(18840,9195,'Matsuda',0,2),(18840,29791,'Olga Belinskya',1,3),(18840,13333,'Princess Vera Belinskya',1,4),(18840,83665,'Grushenka',1,5),(18840,83666,'Katya',0,6),(18840,78018,'Samuel Feinstein',2,7),(18840,8937,'Prince Peter Belinskya',2,8),(18840,72095,'Crane',2,9),(18840,934059,'Maria',1,10),(18840,109436,'Kao',2,11),(18840,25656,'Walters',2,12),(18840,31648,'Ilya',2,13),(18840,133957,'Liu',2,14),(18840,1890374,'Fu',0,15),(18840,1890375,'Christina',0,16),(18840,1890376,'Columbine',0,17),(18840,1890377,'Harlequin',0,18),(18840,1356,'Antoine Jacquier',2,19),(12657,74036,'Mr. Hunkee',2,0),(12657,55638,'Nashawn',2,1),(12657,5384,'Muggsy',2,2),(12657,19767,'Captain Mack',2,3),(12657,73830,'Giselle',1,4),(12657,73831,'Gaeman',0,5),(12657,85931,'Johnny',2,6),(12657,60561,'Jamiqua',1,7),(12657,63522,'Blanca',1,8),(12657,56902,'Blind Man',2,9),(12657,31714,'Flight Attendant',1,10),(12657,1034453,'Herself',1,11),(12657,1660672,'Ticket Agent (Worldwide Air)',1,12),(12657,123686,'Boarding Agent',2,13),(12657,55637,'DJ',2,14),(12657,20373,'Heather Hunkee',1,15),(12657,183490,'Shaniece',0,16),(12657,78341,'Billy Hunkee',0,17),(12657,1294,'Barbara',1,18),(12657,114845,'Cherry',1,19),(12657,54043,'Flame',0,20),(12657,1223685,'Riggs',0,21),(12657,93615,'Tamika',1,22),(12657,1226210,'Judge Pong',0,23),(12657,154630,'Jury Foreman',2,24),(12657,1838153,'Reporter',0,25),(12657,180967,'Reporter',1,26),(12657,1538670,'Flight Attendant',0,27),(12657,1838154,'Flight Attendant',0,28),(12657,1838155,'Woman (Worldwire Air)',0,29),(12657,92589,'Jerome',2,30),(12657,53256,'Thug (Flight Attendant)',2,31),(12657,106703,'Rich Woman',1,32),(12410,110,'Halder',2,0),(12410,11355,'Maurice',2,1),(12410,2983,'Bouhler',2,2),(12410,978,'Freddie',2,3),(12410,66431,'',1,4),(34647,112741,'Oscar',2,0),(34647,59882,'Linda',1,1),(34647,112745,'Alex',2,2),(34647,545627,'Mario',0,4),(34647,112743,'Young Oscar',2,5),(34647,112744,'Bruno',0,5),(34647,112742,'Young Linda',1,6),(34647,89823,'Victor',2,7),(28178,1205,'Parker Wilson',2,0),(28178,11148,'Cate Wilson',1,1),(28178,1206,'Carl',2,2),(28178,11398,'Ken',2,3),(28178,20376,'Andy',1,4),(28178,18917,'Jasjeet',2,5),(28178,75620,'Mary Anne',1,6),(28178,557932,'Michael',0,7),(28178,1158532,'Heather',0,8),(28178,50588,'Harry Pinow',2,9),(28178,103296,'Mover',0,10),(28178,1103658,'Town Resident / Train Commuter (uncredited)',1,11),(28178,1500999,'Man Passing on the Sidewalk (uncredited)',0,12),(28178,111922,'Student (uncredited)',2,13),(28178,1360004,'Student (uncredited)',0,14),(28178,928638,'Commuter (uncredited)',0,15),(28178,1519595,'Awkward Reacting Boy (uncredited)',0,16),(28178,135431,'Commuter #2 (uncredited)',2,17),(16351,10917,'Arshile Gorky',2,0),(16351,10268,'Edward',0,1),(16351,290,'David',2,2),(16351,7708,'Ani',1,3),(16351,60089,'Raffi',2,4),(16351,8791,'Celia',1,5),(16351,13550,'Ali / Jevdet Bay',2,6),(16351,36171,'Philip',2,7),(16351,110550,'Tony',2,8),(16351,1233076,'Janet',0,9),(16351,1881244,'Customs Officer',0,10),(16351,1559344,'Young Gorky',2,11),(16351,1881246,'Gorky\'s Mother',0,12),(18777,11477,'Ford Cole',2,0),(18777,36424,'Luther Pinks',2,1),(18777,327,'Isaac Duperde',2,2),(18777,68276,'Nora Timmer',1,3),(18777,5294,'Ty Trippin',2,4),(12154,15112,'Peter Mitchell',2,0),(12154,26472,'Michael Kellam',2,1),(12154,12836,'Jack Holden',2,2),(12154,18331,'Sylvia Bennington',1,3),(12154,8985,'Rebecca',1,4),(12154,1222277,'Cherise',1,5),(12154,6541,'Det. Sgt. Melkowitz',2,6),(12154,1219901,'Gift Shop Clerk',2,7),(22556,227,'Brett Hanson',2,0),(22556,49,'May',1,1),(22556,37917,'Martine',1,2),(22556,37632,'Gordy',2,3),(22556,86275,'Warden Genaro',1,4),(33196,121148,'uae40ud718 (Kim Hwi)',2,1),(33196,85008,'ucd5cubbfcuc2dd (Choi Man-shik)',2,2),(33196,121149,'uc774uc720uc9c4 (Lee Yu-jin)',1,3),(33196,83220,'uac15uc5f0ud76c (Gang Yeon-heui)',1,4),(33196,1136467,'Helicopter Pilot',0,8),(33196,1136468,'Seung-hyeon',2,9),(33196,1136469,'Jun-ha',2,10),(33196,1136470,'Gong-ju',2,11),(33196,1299351,'Choi Hyeong-sik',2,14),(33196,235338,'uae40ud76cubbf8 (Hee-mee)',1,15),(33196,115904,'uc624ub3d9ucd98 (Dong-chun)',0,16),(33196,1080904,'uc5b5uc870 (Choi\'s Uncle)',0,18),(33196,123808,'',0,19),(10765,18892,'Pvt. Judy Benjamin - Judy Goodman',1,0),(10765,39015,'Capt. Doreen Lewis',1,1),(10765,23346,'Henri Alan Tremont',2,2),(10765,5255,'Col. Clay Thornbush',2,3),(10765,5960,'Pvt. Mary Lou Glass',1,4),(10765,5048,'1st Sgt. Jim Ballard',2,5),(10765,13,'Yale Goodman',2,6),(10765,122076,'Limo Passerby',0,7),(16769,5606,'Loretta Lynn',1,0),(16769,2176,'\'Mooney\' Lynn',2,1),(16769,76136,'Ted Webb',2,2),(16769,821,'Patsy Cline',1,3),(16769,590,'Lee Dollarhide',2,4),(16769,97787,'\'Clary\' Webb',0,5),(16769,97788,'Webb child',0,6),(16769,97789,'Webb child',0,7),(16769,97790,'Webb child',0,8),(16769,97791,'Webb child',0,9),(16769,97792,'Webb child',0,10),(16769,97793,'Loretta & Mooney\'s child',0,11),(16769,97794,'Loretta & Mooney\'s child',0,12),(16769,97795,'Loretta & Mooney\'s child',0,13),(16769,1422647,'Bobby Day',0,14),(16769,43992,'Charlie Dick',2,15),(16769,1244625,'Ernest Tubb',0,16),(16769,1642526,'Patsy Lynn',0,17),(16769,148856,'Washington Neighbor',0,18),(16769,1235040,'Roy Acuff (uncredited)',0,19),(16769,1227342,'Minnie Pearl (uncredited)',0,20),(33217,89819,'Greg Heffley',2,0),(33217,111922,'Rowley Jefferson',2,1),(33217,46074,'Susan Heffley',1,2),(33217,18324,'Frank Heffley',2,3),(33217,90498,'Rodrick Heffley',2,4),(33217,858704,'Manny Heffley',2,5),(33217,1769435,'Manny Heffley',2,6),(33217,56734,'Angie Steadman',1,7),(33217,111923,'Chirag Gupta',2,8),(33217,111921,'Fregley',2,9),(33217,84468,'Patty Farrell',0,10),(33217,59243,'Collin',2,11),(33217,111931,'Coach Malone',2,12),(33217,152863,'Mrs. Norton',1,13),(33217,42708,'Mr. Winsky',2,14),(33217,1366703,'Pete Hosey',2,15),(33217,33353,'Carter',2,16),(33217,111930,'Wade',2,17),(33217,111927,'Shelley',1,18),(33217,41429,'Marley',0,19),(33217,109205,'Bryce Anderson',0,20),(33217,58402,'Quentin',2,21),(33217,11830,'Quentin\'s Sidekick',2,22),(33217,111926,'Darren Walsh',2,23),(33217,64673,'Mrs. Flint',1,24),(33217,58395,'Mrs. Irvine',1,25),(33217,120794,'Vice Principal Roy',0,26),(33217,111925,'Archie Kelly',0,27),(33217,111928,'Arthur',0,28),(33217,111933,'Cheese Girl',0,29),(33217,146558,'Cheese Boy',0,30),(33217,85366,'Elderly Woman',1,31),(33217,1392949,'Granddaughter',0,32),(33217,111929,'Marty Porter',0,33),(33217,111935,'Preston',0,34),(33217,111924,'Rodney James',2,35),(33217,110475,'80s Breakdancer',2,36),(33217,111920,'80s Popular Girl',1,37),(11153,54812,'Clark Griswold',2,0),(11153,821,'Ellen Griswold',1,1),(11153,70089,'Aunt Edna',1,2),(11153,1811,'Cousin Eddie',2,3),(11153,1904,'Rusty Griswold',2,4),(11153,35109,'Cousin Catherine',1,5),(11153,7180,'Lasky, Guard at Walleyworld',2,6),(11153,1217003,'Audrey Griswold',1,7),(11153,115457,'Roy Walley',2,8),(11153,1535,'Kamp Komfort Clerk',2,9),(11153,408,'Motorcycle Cop',2,10),(11153,26510,'Car Salesman',2,11),(11153,1735,'Grover',2,12),(11153,942808,'The Girl in the Ferrari',1,13),(11153,13636,'Cousin Vicki',1,14),(11153,92557,'Cousin Dale',2,15),(11153,100230,'Mechanic',2,16),(11153,1233968,'Man Giving Directions',0,17),(11153,1587179,'Pimp',2,18),(11153,4942,'Assistant Mechanic',2,19),(11153,155626,'Wyatt Earp',2,20),(11153,16557,'Cowboy',0,21),(11153,19439,'Hotel clerk (uncredited)',2,22),(11153,1524,'Car salesman (voice) (uncredited)',2,23),(17202,80602,'Terry',2,0),(17202,4721,'Sheila',1,1),(17202,54421,'Patricia',1,2),(17202,64856,'Marcus',2,3),(17202,12977,'Gavin',2,4),(17202,15566,'Diane',1,5),(17202,55755,'Mike',2,6),(17202,74610,'Angela',1,7),(17202,1694511,'Keisha',1,8),(10053,38670,'Jill Johnson',1,0),(10053,55775,'Tiffany Madison',1,1),(10053,2478,'Stranger',2,2),(10053,49271,'Bobby',2,3),(10053,9048,'Ben Johnson',2,4),(10053,9128,'Dr. Mandrakis',2,5),(10053,59697,'Kelly Mandrakis',1,6),(10053,9276,'Detective Hines',2,7),(10053,62561,'Scarlet',1,8),(10053,62562,'Officer Burroughs',2,9),(10053,62563,'Will Mandrakis',2,10),(10053,62564,'Allison Mandrakis',1,11),(10053,62569,'Cody',0,12),(10053,62568,'Rosa',0,13),(10053,62570,'Parent',0,14),(10053,62565,'Officer Lewis',2,15),(10053,62566,'Boom Boom',2,16),(10053,62567,'Track Coach',1,17),(10053,62572,'Officer',2,18),(10053,62571,'Man Calling Dog',0,19),(11870,51391,'Jason Shepherd',2,0),(11870,13242,'Marty Wolf',2,1),(11870,29220,'Kaylee',1,2),(11870,19275,'Monty Kirkham',1,3),(11870,49002,'Frank Jackson',2,4),(11870,18589,'Vince',2,5),(11870,62649,'Marcus Duncan',2,6),(11870,1224374,'Harry Shepherd',0,7),(11870,126235,'Carol Shepherd',1,8),(11870,58369,'Janie Shepherd',1,9),(11870,87079,'Himself',2,10),(11870,1213573,'Bret Callaway',0,11),(11870,25540,'Ms. Phyllis Caldwell',1,12),(11870,1221679,'Astrid Barker',0,13),(11870,68842,'Dustin Wong',2,14),(11870,66131,'Penny',1,15),(11870,59401,'Joscelyn Davis',1,16),(11870,1214402,'The Masher',2,17),(11870,77330,'Party Goer',2,18),(11778,380,'Michael Vronsky',2,0),(11778,3096,'Stan',2,1),(11778,47879,'Steven Pushkov',2,2),(11778,4690,'Nikanor Nick Chevotarevich',2,3),(11778,5064,'Linda',1,4),(11778,10477,'John',2,5),(11778,80135,'Angela',1,6),(11778,133859,'Julien',0,7),(11778,87007,'Bridesmaid',1,8),(11778,1222806,'Linda\'s Father',0,9),(11778,4887,'Bandleader',2,10),(11778,1258752,'Cab Driver',0,11),(11778,67513,'Steven\'s Mother',1,12),(11778,123056,'Axel',0,13),(11778,133861,'Stan\'s Girl',0,14),(11778,133860,'Axel\'s Girl',1,15),(11778,134148,'Sergeant',0,16),(11778,1434628,'Wedding Man',0,17),(11778,1434629,'Sad Looking Girl',0,18),(11778,1434630,'Cold Old Man',0,19),(11778,1434631,'Bingo Caller',0,20),(11778,1434632,'Helen',0,21),(11778,1434671,'Red Head',0,22),(11778,1434672,'Girl Checker',0,23),(11778,1434673,'Stock Boy',0,24),(11778,1434674,'World War Veteran',0,25),(11778,1435119,'World War Veteran',0,26),(11778,1435120,'Priest',0,27),(11778,1435121,'Bar Patron',0,28),(11778,1435124,'Barman',0,29),(11778,1435133,'Doctor',0,30),(11778,1435135,'Nurse',0,31),(11778,1435136,'Bar Girl',0,32),(11778,1435138,'Chinese Referee',0,33),(11778,1435141,'Embassy Guard',0,34),(11778,1435144,'Sergeant',0,35),(11778,1435145,'Chinese Bodyguard',0,36),(11778,1435146,'Chinese Man',0,37),(11778,1435147,'NVA Officer',0,38),(11778,1435148,'V.C. Referee',0,39),(11778,1435149,'Chinese Boss',0,40),(11778,1435150,'Chinese Man At Door',0,41),(11778,1435153,'South Vietnamese Prisoner',0,42),(11778,1435154,'South Vietnamese Prisoner',0,43),(11778,1435155,'South Vietnamese Prisoner',0,44),(11778,1435156,'Woman In Village',0,45),(11778,1435159,'V.C. Guard',0,46),(11778,1435160,'V.C. Guard',0,47),(11778,1435161,'V.C. Guard',0,48),(11778,1435162,'V.C. Guard',0,49),(18736,5958,'Lizzie McGuire',1,0),(18736,143330,'David Gordon',2,1),(18736,82625,'Jo McGuire',1,2),(18736,62036,'Sam McGuire',2,3),(18736,9641,'Matt McGuire',2,4),(18736,24357,'Miss Ungermeyer',1,7),(18736,130936,'Paolo Valisari',2,8),(18736,58899,'Melina Bianco',1,10),(18736,143331,'Mr. Escobar',2,11),(18736,33339,'Giorgio',2,12),(18736,89551,'Dr. Comito',2,13),(18736,88082,'Cute Girl #1',0,17),(18736,67978,'Model #1',1,22),(18736,96555,'Model #2',2,23),(18736,143333,'Janitor',0,24),(18736,65811,'Parent #1',2,28),(18736,64672,'Parent #2',1,29),(18736,61264,'Parent #3',2,30),(18736,143334,'Small Child #2',0,32),(18736,77222,'Paparazzo #2',2,39),(18736,143335,'Background Dancer',0,41),(18736,143336,'Background Dancer',0,44),(18736,19034,'Police Officer',1,45),(18736,226385,'Florista #1',2,46),(15765,9780,'Anna Mae Bullock / Tina Turner',1,0),(15765,2975,'Ike Turner',2,1),(15765,100653,'Jackie',1,2),(15765,18346,'Young Anna Mae Bullock',1,3),(15765,80990,'Choir Mistress',1,4),(15765,19265,'Darlene',1,5),(15765,15899,'Zelma Bullock',1,6),(15765,8687,'Fross',2,7),(15765,1459,'Herself',1,8),(15765,8689,'El Paso Doctor',2,9),(15765,1218219,'Lorraine Taylor',0,10),(11397,69210,'Janey Briggs',1,0),(11397,16828,'Jake Wyler',2,1),(11397,56824,'Priscilla',1,2),(11397,29020,'Austin',2,3),(11397,18658,'Catherine Wyler',1,4),(11397,22082,'Amanda Becker',1,5),(11397,52365,'Areola',1,6),(11397,21625,'Flight Attendant',0,7),(11397,19664,'Kara Fratelli',1,8),(11397,36137,'Sara Fratelli',1,9),(11397,1080265,'Father O\'Flannagan',0,10),(11397,40981,'Slow Clapper',0,11),(11397,90719,'Cutie',1,12),(11397,1226913,'Preston\'s Mother',1,13),(11397,16619,'The Wise Janitor',2,14),(11397,35596,'Malik',2,15),(11397,37005,'Ricky Lipman',2,16),(11397,77174,'Reggie Ray',2,17),(11397,154038,'Mitch Briggs',2,18),(11397,53492,'Ox',0,19),(11397,99206,'Sandy Sue',1,20),(11397,58507,'Bruce',2,21),(11397,62845,'Sadie Agatha Johnson',1,22),(11397,21523,'The Coach',2,23),(11397,7675,'Richard Vernon',2,24),(11397,1811,'Mr. Briggs',2,25),(11397,67850,'Les',2,26),(11397,55115,'Actor',2,27),(11397,1773757,'Actress',1,28),(11397,58929,'Grandma Briggs',1,29),(11397,1773766,'Kid',0,30),(11397,144009,'Tour Guide',2,31),(11397,1773770,'Cheerleader in Front of School',0,32),(11397,1240066,'Cheerleader in Front of School',0,33),(11397,1752319,'Cheerleader in Front of School',1,34),(11397,1773776,'Cheerleader in Front of School',1,35),(11397,72986,'White Guy',2,36),(11397,74722,'White Guy',2,37),(11397,1773779,'White Girl',1,38),(11397,1216483,'Ashley',1,39),(11397,1773780,'Heather',1,40),(11397,14669,'Mr. Cornish',2,41),(11397,80224,'Dude',0,42),(11397,1228313,'Dude',0,43),(11397,81955,'Albino Folk Singer',1,44),(11397,1773781,'Hottie',1,45),(11397,1773787,'Naked Girl in Locker Room',1,46),(11397,87019,'Mr. Keller',2,47),(11397,1773788,'Dainty Girl',1,48),(11397,1171948,'Marty',0,49),(11397,90198,'Mr. Wyler',2,50),(11397,1328797,'Mrs. Wyler',1,51),(11397,1212244,'Panicked Student',0,52),(11397,56456,'Preston\'s Father',2,53),(11397,52937,'Preston Wasserstein',2,54),(11397,1773791,'Keg Guy',0,55),(11397,1215262,'Roadie',0,56),(11397,550247,'Naked Girl at Party',1,57),(11397,1517843,'Curious Guy',2,58),(11397,90609,'Uninterested Guy',2,59),(11397,1218308,'Football Announcer',0,60),(11397,1773793,'Cheerleader on Football Field',1,61),(11397,1773796,'Cheerleader on Football Field',1,62),(11397,203263,'Cheerleader on Football Field',1,63),(11397,235848,'North Compton Cheerleader',0,64),(11397,185773,'Trainer',2,65),(11397,1213137,'Fat Short Order Cook',0,66),(11397,1773848,'Dancer',1,67),(11397,1773850,'Dancer',0,68),(11397,1773689,'Dancer',1,69),(11397,29216,'Dancer',0,70),(11397,1744177,'Man in Line',0,71),(11397,1228788,'Woman in Line',1,72),(11397,1707350,'Security Guard',0,73),(11397,1773853,'Little Boy',0,74),(11397,1239773,'Molly',1,75),(11397,1773859,'Student',0,76),(11397,1217941,'Paramedic',0,77),(11397,78435,'Diner Cook',0,78),(11397,1609292,'Pom Pom Girl #3',1,79),(11397,1205131,'Locker Student',1,80),(11397,1773864,'Teen with Drink at Party',0,81),(11397,1773865,'DJ Arte',0,82),(11397,1773867,'Student',0,83),(11397,78501,'Slow Clapper\'s Instructor',1,84),(11397,1300857,'Art Student',1,85),(11397,10438,'Partygoer',2,86),(11397,133628,'Locker Room Girl',1,87),(11397,1773872,'Student',1,88),(11397,173990,'Party Girl',1,89),(11397,1773874,'Confused Student',0,90),(11397,1773875,'Slutty Girl-New Student',1,91),(11397,11868,'Black Guy at Party',2,92),(11397,1773877,'Student',1,93),(11397,1473327,'Marty\'s Buddy',0,94),(11397,1773887,'Flight Attendant',1,95),(11478,11866,'Lucas Luke McNamara',2,0),(11478,8167,'Caleb Mandrake',2,1),(11478,57686,'Will Beckford',2,2),(11478,57451,'Chloe Whitfield',1,3),(11478,4443,'Martin Lombard',2,4),(11478,2202,'Detective Sparrow',2,5),(11478,52267,'Ames Levritt',2,6),(11478,8977,'Litten Mandrake',2,7),(11478,554382,'Jason Pitcairn',0,8),(11478,63859,'Travis Wheeler',2,9),(11478,44208,'Dr. Rupert Whitney',2,10),(11478,219256,'McBride',2,11),(11478,199822,'Sullivan',0,12),(11478,554383,'J.J.',0,13),(11478,172915,'Hugh Mauberson',2,14),(11478,50463,'Coed',1,15),(11478,186373,'Chad MacIntosh',2,16),(13411,6213,'B-Rad',0,0),(13411,17637,'Sean',2,1),(13411,18471,'PJ',2,2),(13411,35705,'Shondra',1,3),(13411,56871,'Tom Gibbsons',2,4),(13411,31070,'Bill Gluckman',2,6),(13411,37995,'Bess Gluckman',1,7),(13411,4175,'Dr. Feldman',2,8),(13411,53493,'Hadji Amerislani',2,9),(13411,32907,'Mocha',2,10),(13411,89857,'Monster',0,11),(13411,17305,'Brett',2,12),(13411,88702,'Gary',2,13),(13411,93663,'Jen',1,14),(13411,59229,'Tec',2,15),(13411,150194,'Tec\'s Crew',2,16),(10564,524,'Novalee Nation',1,0),(10564,15852,'Lexie Coop',1,1),(10564,8893,'Thelma \'Sister\' Husband',1,2),(10564,3234,'Ruth Meyers',1,3),(10564,35,'Mama Lil',1,4),(10564,22063,'Forney Hull',2,5),(10564,52476,'Willy Jack Pickens',2,6),(10564,65827,'Moses Whitecotten',2,7),(10564,1117439,'Tim',0,8),(10564,1579449,'Nicki',1,9),(10564,950877,'Girl in Bathroom',1,10),(10564,102309,'Wal-Mart Clerk',1,12),(10564,1077910,'Hospital Receptionist',1,14),(10564,6897,'Cellmate',0,15),(10564,35652,'Religious Man',2,16),(10564,191277,'Troy',2,17),(10564,1471898,'Mary Elizabeth Hull',1,18),(10564,51732,'Officer Harry',2,19),(10564,141486,'Policeman #2',2,20),(10564,1744969,'Cake Supplier',1,21),(10564,1744975,'Rhonda',1,22),(10564,1744979,'Wal-Mart Assistant Manager',1,23),(10564,1744980,'Jolene',1,24),(10564,1219220,'Sheriff',0,25),(10564,71566,'Mr. Sprock',0,26),(10564,1744985,'Mrs. Ortiz',1,27),(10564,933358,'Reporter',0,28),(10564,129868,'Orderly',2,29),(10564,1744987,'Religious Woman',1,30),(10564,1744988,'Americus Nation',1,31),(10564,1737263,'Angela Ortiz',1,32),(10564,1744992,'Rosanna Ortiz',1,33),(10564,1744994,'Ray',0,34),(10564,206795,'Johnny DeSoto',0,35),(10564,1744995,'M.C. of Banquet',2,36),(10564,976690,'Jerry',2,37),(10564,109529,'Kitty',1,38),(10564,1744996,'Praline',1,39),(10564,88076,'Brownie',2,40),(10564,1744997,'Ernie',0,41),(10564,71565,'Delphia',1,42),(10564,115315,'Nurse',1,43),(10564,2845,'Co-Ed',1,44),(10564,1386304,'Bar Girl',1,45),(10564,1616053,'Girl in Bar / Girl on the Street',1,46),(10564,1439544,'Wal-Mart Girl',1,47),(10564,1261889,'Nightclub Customer / Pedestrian',0,48),(10564,1744998,'Photo Finalist',1,49),(10564,1744999,'Wedding Guest',1,50),(10564,1367428,'Reporter',0,51),(10564,1282173,'Truck Driver',0,52),(10564,1745009,'Young Brownie',0,53),(10564,232458,'Bar Room Fighter',0,54),(10564,1745011,'Lynne',1,55),(10564,1745016,'Walmart Customer',0,56),(10564,1745017,'Customer at Gas Station',0,57),(10564,1745018,'Miss Sequoyah',1,58),(10564,1571716,'Partygoer',0,59),(10564,1745019,'Wal-Mart Customer',0,60),(10564,111009,'Birthday Party Guest / Wedding Guest',1,61),(10564,61570,'Bass Player',0,62),(10564,139235,'Wal-Mart Employee',2,63),(10564,1745020,'Hospital Visitor',1,64),(10564,1745039,'Bar Patron',0,65),(10564,1745040,'Professor',0,66),(24150,21318,'Laurie Strode',1,0),(24150,21319,'Deborah Myers',1,1),(24150,9832,'Michael Myers',2,2),(24150,96047,'Young Michael',2,3),(24150,1370,'Sheriff Lee Brackett',2,4),(24150,56890,'Dr. Samuel Loomis',2,5),(24150,183073,'Harley David',1,6),(24150,21320,'Annie Brackett',1,7),(24150,86923,'Dr. Maple',1,8),(24150,35516,'Uncle Meat',2,9),(24150,11804,'Sherman Benny',2,10),(24150,76886,'Jazlean Benny',1,11),(24150,9312,'Deputy Neale',2,12),(24150,71041,'Weird Al Yankovic',0,13),(24150,27738,'David Newman',2,14),(24150,9996,'Becks',2,15),(24150,20011,'Barbara Collier',1,16),(24150,6944,'Nurse Daniels',1,17),(24150,210355,'Mya Rockwell',1,18),(24150,1104568,'Misty Dawn',1,19),(24150,62819,'Jane Salvador',0,20),(24150,212833,'Wendy Snow',1,21),(24150,112562,'Reporter',1,22),(24150,87108,'Coroner Hooks',2,23),(24150,3901,'Gary Scott',2,24),(24150,18262,'Buddy The Night Watchman',2,25),(24150,111693,'Bruce Cabot',2,26),(24150,63232,'Nancy McDonald',1,27),(24150,534,'Floyd',2,28),(24150,59673,'Howard / Uncle Seymour Coffins',0,29),(24150,43774,'Lou Martini',2,30),(24150,49815,'Chett Johns',2,31),(24150,34398,'Deputy Webb',2,32),(24150,233298,'Kyle Van Der Klok',2,33),(24150,1162029,'Deputy Gwynne',0,34),(24150,33501,'Deputy Fred King',2,35),(24150,130227,'Wolfie',2,36),(24150,1275650,'Captain Clegg',0,37),(24150,108700,'Winnie Gilmore',1,38),(18405,39520,'Krug',0,0),(18405,2234,'Morton',2,1),(18405,78150,'Giles',2,2),(18405,453,'Sadie',1,3),(18405,84497,'Francis',2,4),(18405,60072,'Mari Collingwood',1,5),(18405,2140,'Emma Collingwood',1,6),(18405,3417,'John Collingwood',2,7),(18405,54692,'Paige',1,8),(18405,4012,'Justin',2,9),(18405,1787843,'Maid',0,10),(11442,8944,'Laurie Strode',1,0),(11442,69614,'Michael Myers',2,1),(11442,6485,'Freddie Harris',2,2),(11442,69616,'Sara Moyer',1,3),(11442,51798,'Jen',1,4),(11442,21403,'Bill',2,5),(11442,77897,'Nora',1,6),(11442,11868,'Rudy',2,7),(11442,57136,'Myles Barton',0,8),(11442,159336,'Donna',1,9),(11442,7002,'Jim',2,10),(11442,177219,'Myles Barton',2,11),(11442,1672921,'Harold',2,12),(11442,80348,'Nurse Wells',1,13),(11442,175719,'Nurse Phillips',0,14),(11442,65811,'Franklin',2,15),(11442,61264,'Willie',2,16),(11442,105864,'Aron',0,17),(11442,62916,'Charley',0,18),(11442,1672954,'Officer',0,19),(11442,62824,'Officer',2,20),(11442,116834,'Letter Sweater Guy',0,21),(11442,58909,'Teen Girl #2',0,22),(11442,21430,'French Maid',1,23),(11442,39353,'Teen Party Guy',2,24),(11442,33341,'Professor',0,25),(11442,4095,'Bob Green',2,26),(11442,1672959,'Fireman',0,27),(11442,1500398,'Orderly',0,28),(11442,1672961,'Coroner',0,29),(14047,5292,'Melvin B. Tolson',2,0),(14047,77277,'Henry Lowe',2,1),(14047,2178,'Dr. James Farmer Sr.',2,2),(14047,77278,'James Farmer Jr.',2,3),(14047,55314,'Pearl Farmer',1,4),(14047,31135,'Hamilton Burgess',2,5),(14047,77279,'Ruth Tolson',1,6),(14047,11512,'Sheriff Dozier',2,7),(14047,1344365,'Helen Farmer',0,8),(14047,1392592,'Nathaniel Farmer',0,9),(14047,52885,'Deputy',2,10),(14047,94429,'Pig Owner',2,11),(14047,65171,'Pig Farmer',2,12),(14047,1224598,'Dunbar Reed',2,13),(14047,1229689,'Harland Osbourne',0,14),(14047,83271,'Harvard Debater #1',2,15),(14047,1392596,'Harvard Debater #2',0,16),(14047,1392597,'Harvard Dean',0,17),(14047,159948,'Wilson',2,18),(14047,1392598,'Paul Quinn Debater #1',0,19),(14047,936403,'Paul Quinn Debater #2',0,20),(14047,1392599,'Paul Quinn Debate Judge',0,21),(14047,1040679,'Oklahoma City College Debater #1',0,22),(14047,1392600,'Oklahoma City College Debater #2',0,23),(14047,218605,'Dr. Jennings',1,24),(14047,1392601,'Benita',1,25),(14047,143261,'Trudell',2,26),(14047,1392602,'Enormous Man',0,27),(14047,7277,'Samuel',2,28),(14047,60387,'Clementine',0,29),(14047,1392604,'William Taylor',2,30),(14047,129868,'Captain Wainwright',2,31),(14047,1392605,'Lila',0,32),(14047,1392606,'Joseph',2,33),(14047,1392607,'White Labor Organizer',0,34),(14047,37829,'White Sharecropper #1',2,35),(14047,1315735,'White Sharecropper #2',0,36),(14047,1392608,'Prairie View Professor',0,37),(14047,50589,'Security Guard',0,38),(14047,1355923,'Radio Announcer at Harvard Debate',0,39),(14047,1262963,'White Man at Lynching',0,40),(14047,1392610,'Juke Joint Musician #1',0,41),(14047,1046722,'Juke Joint Musician #2',2,42),(14047,1267795,'Juke Joint Musician #3',0,43),(14047,1046723,'Juke Joint Musician #4',1,44),(14047,1392612,'Fisk Professor',0,45),(14047,16460,'Howard Debater #1',2,46),(14047,59017,'Samantha Booke',1,47),(14047,1789941,'Enormous Man',0,48),(11132,49265,'Mary Elizabeth Cep',1,0),(11132,28472,'Stu',2,1),(11132,21104,'Karen',1,2),(11132,17486,'Ella',1,3),(11132,19537,'Carla',1,4),(11132,64306,'Robin',1,5),(11132,138947,'le contru00f4leur de billets',2,6),(11132,230783,'',0,7),(17127,4491,'Nina Borowski',1,0),(17127,22226,'George Hanson',2,1),(17127,17265,'Mermaid',1,2),(17127,21278,'Sidney Miller',2,3),(17127,19,'Constance Miller',1,4),(17127,59872,'Vince McBride',2,5),(17127,18324,'Frank Hanson',2,6),(17127,15788,'Rodney Fraser',0,7),(17127,16856,'Steve Casillo',2,8),(17127,6950,'Louis Crowley',2,9),(17127,91351,'Molly',1,10),(17127,68122,'Dr. Robert Joley',2,11),(17127,187565,'Wedding Singer',1,12),(17127,1701178,'Paul James',0,13),(17127,59882,'13-Year-Old Sally',1,14),(17880,8447,'Preacher',2,0),(17880,1285,'Opal',1,1),(17880,18249,'Gloria Dump',1,2),(17880,2639,'Miss Franny',1,3),(17880,66070,'Otis',2,4),(17880,84481,'Amanda Wilkenson',1,5),(17880,18050,'Sweety Pie Thomas',1,6),(17880,84482,'Stevie Dewberry',2,7),(17880,37088,'Dunlap Dewberry',2,8),(17880,84483,'Mr. Alfred',0,9),(17880,84484,'Mrs. Dewberry',0,10),(17880,20765,'Mrs. Detweller',1,11),(17880,16459,'Store Manager',2,12),(17880,16846,'Policeman',2,13),(17880,1073800,'Churchgoer 1',0,14),(14736,77196,'Kelvin',2,0),(14736,31031,'Young Monica',1,1),(14736,5411,'Monica Wright',1,2),(14736,4987,'Quincy McCall',2,3),(14736,1981,'Camille Wright',1,4),(14736,35705,'Lena Wright',1,5),(14736,150055,'Young Quincy',2,6),(14736,150057,'Jamal',0,7),(14736,150058,'Young Lena',0,8),(14736,9464,'Nathan Wright',2,9),(14736,88161,'Nona McCall',1,10),(14736,352,'Zeke McCall',2,11),(14736,150059,'Coach Hiserman',2,12),(14736,150060,'UCLA Coach',0,13),(14736,17773,'Shawnee',1,14),(14736,77897,'Kyra Kessler',1,15),(14736,150061,'Coach Davis',1,16),(14736,80758,'Jason',2,17),(14736,150062,'Sidra O\'Neal',1,18),(14736,32646,'Kerry',1,19),(23706,18277,'Sandra Horowitz',1,0),(23706,19159,'Hartman',2,1),(23706,51329,'Steve',2,2),(23706,83586,'Angus',2,3),(23706,132078,'Howard',2,4),(23706,35516,'Mr. Horowitz',2,5),(23706,65827,'Corbitt',2,6),(23706,5151,'Mrs. Horowitz',1,7),(23706,59450,'Elizabeth',1,8),(23706,22132,'Norm the Truck Driver',2,9),(23706,1578,'Soloman',2,10),(23706,967621,'Little Deaf Girl',1,11),(23706,185805,'Vasquez',0,12),(23706,115874,'Rescue Supervisor',0,13),(23706,157058,'Rescuer',2,14),(23706,6735,'Protestor Lydia',1,15),(23706,1569054,'CCN Meteorologist',1,16),(23706,11111,'Patient',1,17),(11531,4889,'Kim Diamond',1,0),(11531,52886,'Jeffrey Jeff Patterson',2,1),(11531,57514,'Erica Geerson',1,2),(11531,69748,'Tristen Ryler',1,3),(11531,69750,'Stephen Ryan Parker',2,4),(10413,15111,'Sam Gillen',2,0),(10413,2165,'Clydie Anderson',1,1),(10413,18793,'Mike \'Mookie\' Anderson',0,2),(10413,15854,'Mr. Dunston',2,3),(10413,65036,'Bree Anderson',1,4),(10413,1066171,'Sheriff Lonnie Cole',0,5),(10413,10682,'Billy',2,6),(10413,14324,'Franklin Hale',2,7),(10413,33017,'Bus Driver',2,8),(10413,7140,'Bus Guard',2,9),(10413,1785844,'Prisoner',0,10),(14012,74428,'Rob McLaughlin',2,0),(14012,49,'Nell McLaughlin',1,1),(14012,53807,'Male Prefect',2,2),(14012,8291,'Katherine Katy McLaughlin',1,3),(14012,133212,'Howard McLaughlin',2,4),(14012,72132,'Jack',2,5),(14012,424,'Gus',0,6),(14012,1216163,'Miranda Koop',1,7),(12212,41421,'Amy Mayfield',1,0),(12212,56045,'Travis Stark',2,1),(12212,18284,'Reese Wilson',1,2),(12212,7678,'Professor Solomon',2,3),(12212,18471,'Stan Washington',2,4),(12212,8170,'Vanessa Valdeon',1,5),(12212,51750,'Graham Manning',2,6),(12212,56675,'Toby Belcher',2,7),(12212,22126,'Sandra Petruzzi',1,8),(12212,58744,'Dirk Reynolds',2,9),(12212,23797,'Schorm Simon Jabuscko',2,10),(12212,199822,'P.A. Kevin',0,11),(12212,6857,'Lisa',1,12),(12212,211538,'Dr. Richard Fain',2,13),(12212,101803,'Dean Patterson',2,14),(12212,69575,'Geek in Plane',2,15),(12212,130936,'Rob',2,16),(12212,87167,'Libby',1,17),(12212,59967,'Brenda Bates',1,18),(13768,6279,'Winnie Foster',1,0),(13768,227,'Angus Tuck',2,1),(13768,5606,'Mae Tuck',1,2),(13768,23495,'Jesse Tuck',2,3),(13768,82519,'Miles Tuck',2,4),(13768,2282,'Man in the Yellow Suit',2,5),(13768,27563,'Mother Foster',1,6),(13768,8536,'Robert Foster',2,7),(18681,3061,'Stephen Wilson',2,0),(18681,15852,'Joanna Eris',1,1),(18681,29459,'Alex Leonard',2,2),(18681,108988,'Hilary',1,3),(18681,35341,'Dr. Brault',0,4),(18681,19143,'Gary',2,5),(18681,1673040,'Lucy Wilson',1,6),(18681,1673041,'Lucy Wilson',1,7),(18681,29462,'Mickey Argyle',0,8),(18681,124912,'Paul Hugo',2,9),(18681,58169,'Mr. Hugo Sr.',2,10),(18681,103877,'Hilary\'s Mother',1,11),(18681,180691,'Nathy',1,12),(18681,92263,'Toohey',2,13),(18681,1673063,'Salvo',1,14),(18681,110889,'Airport Guard',2,15),(18681,7014,'Fat Businessman',2,16),(18681,145601,'Bartender',2,17),(18681,77354,'Head Waitress',1,18),(18681,1504466,'Waiter',2,19),(18681,69168,'Young Joanna\'s Father',2,20),(18681,957146,'Tea Trolley Lady #1',1,21),(18681,52341,'Tea Trolley Lady #2',1,22),(18681,1673119,'Alaskan Federal Agent #1',2,23),(18681,29466,'Federal Agent #1',2,24),(12162,17604,'Sgt. William James',2,0),(12162,53650,'Sgt. JT Sanborn',2,1),(12162,49271,'Spc. Owen Eldridge',2,2),(12162,529,'Sgt. Matt Thompson',2,3),(12162,5469,'Mercenary Team Leader',2,4),(12162,52,'Col. Reed',2,5),(12162,19034,'Connie James',1,7),(12162,96438,'Beckham',2,8),(12162,122029,'Col. John Cambridge',2,9),(12162,966353,'Black Suit Man',2,10),(12162,1291852,'First Sergeant',0,11),(11495,18181,'Andrew \'Andy\' McGee',2,0),(11495,69597,'Charlene \'Charlie\' McGee',1,1),(11495,12517,'Doctor Joseph Wanless',2,2),(11495,58691,'Victoria \'Vicky\' Tomlinson McGee',1,3),(11495,8349,'Captain Hollister',2,4),(11495,862,'John Rainbird',2,5),(11495,40176,'Irv Manders',2,6),(11495,7071,'Norma Manders',1,7),(11495,6561,'Doctor Pynchot',2,8),(11495,84878,'Taxi Driver',2,9),(11495,52188,'Orville Jamieson',2,10),(11495,161503,'Bates',2,11),(11495,981613,'Mayo',2,12),(11495,14663,'Knowles',0,13),(11495,982374,'Steinowitz',2,15),(13166,36423,'Gord Brody',2,0),(13166,9626,'Jim Brody',2,1),(13166,56595,'Betty',2,2),(13166,52480,'Freddy Brody',2,3),(13166,16846,'Darren',2,4),(13166,1904,'Mr. Davidson',2,5),(13166,14415,'Julie Brody',1,6),(13166,80342,'Mr. Malloy',2,7),(13166,80343,'Andy Malloy',2,8),(13166,80344,'Farmer #1',2,9),(13166,80345,'Farmer #2',2,10),(13166,21092,'Pregnant Woman',1,11),(13166,80346,'Doctor',2,12),(13166,10874,'Security Guard - Studio',2,13),(13166,69597,'Davidson\'s Receptionist',1,14),(13166,63562,'Man #1 - Restaurant',2,15),(13166,10869,'Man #2 - Restaurant',2,16),(13166,80347,'Woman - Restaurant',0,17),(13166,11833,'Larry / Truck Driver',2,18),(13166,80348,'Psychiatrist / Social Worker',1,20),(13166,80349,'Cop with Social Worker',2,21),(13166,33049,'Morose Kid',2,22),(13166,2250,'Foreman',2,23),(13166,35806,'Shaquille',2,24),(13166,80351,'Security Guard',2,26),(13166,80352,'Pimply Manager',2,27),(13166,61265,'Cop at Fancy Restaurant',1,28),(13166,80353,'Local Field Reporter',2,29),(13166,80354,'Indian Woman #1',0,30),(13166,80355,'Indian Woman #2',0,31),(13166,80356,'Helicopter Pilot',0,32),(13166,80357,'Policeman (scenes deleted)',0,33),(13166,61161,'Locksmith',0,34),(13166,80358,'Spectator',0,35),(13166,80359,'Bank Manager',0,36),(13166,59196,'William',2,37),(13166,75467,'Ernie',2,39),(13166,80361,'Disgruntled restaurant patron',0,40),(13166,80362,'Pulp Mill Worker #1',2,41),(13166,80363,'Big Bear',0,42),(13166,537,'Uncle Neil',2,43),(13166,80364,'Pulp Mill Worker #2',2,44),(13166,19485,'Anchorman',2,45),(13166,43931,'Sandwich Customer',2,46),(13166,1627161,'Waiter',2,47),(15511,78297,'George / Sedgewick / Willory / Sir Frederick / Mr. Hibbing / Bob the Tomato / Pirate Spy / Pirate Philippe Pea',2,0),(15511,78298,'Elliot / Pirate Jean Claude Pea / Theater Foe / Pirate Spy Sidekick / Pirate with Dummy / Rock Monster Father',2,1),(15511,60272,'Robert the Terrible / The King',0,2),(15511,1016945,'Eloise',1,3),(15511,127387,'Alexander',2,4),(15511,113555,'Blind Man / One-Eyed Louie',2,5),(15511,562904,'Bernadette',0,6),(15511,592388,'Ellen',0,7),(15511,562903,'Madame Blueberry',0,8),(15511,1080267,'Caroline',0,9),(15511,110804,'Pirate Scooter Carrot',0,10),(15511,80678,'Jolly Joe / King\'s Ship Officer / Background Voices',0,11),(15511,1080268,'George Jr. / Rock Monster Boy',0,12),(15511,1080269,'Lucy / Rock Monster Girl',0,13),(15511,1080270,'Collin',0,14),(12211,38559,'Connor MacLeod',2,0),(12211,27422,'Jacob Kell',2,1),(12211,71900,'Duncan MacLeod',2,2),(12211,1341,'Jin Ke',2,3),(12211,9146,'Kate MacLeod / Faith',1,4),(12211,53515,'Heather MacLeod',1,5),(13816,37934,'Percival',2,0),(13816,52851,'Angel',1,2),(13816,18288,'Trumpy',2,3),(13816,62066,'Ace',2,4),(13816,74612,'Zora',1,5),(13816,18249,'Mother Hopkins',1,6),(13816,60560,'Taffy',1,7),(13816,26664,'Percy Senior',2,8),(13816,45245,'Rose',1,9),(13816,75633,'Young Rooster',2,10),(13816,75634,'The Real Angel Davenport',1,11),(13816,10182,'Spats',2,12),(13816,66526,'Monk',2,13),(13816,75635,'Bobo',2,14),(13816,75636,'Cliff',2,15),(13816,75637,'Sonny',0,16),(13816,75638,'Nathan',0,17),(13816,75639,'Young Percival',0,18),(13816,75640,'Auntie Belle',1,19),(13816,75641,'Rooster\'s Daughter',0,20),(13816,75642,'Rooster\'s Daughter',0,21),(13816,75643,'Rooster\'s Daughter',0,22),(13816,75644,'Rooster\'s Daughter',0,23),(13816,75645,'Fatts',0,24),(13816,98775,'Rooster',2,25),(22798,27578,'Bliss Cavendar',1,0),(22798,61178,'Pash',1,1),(22798,41091,'Maggie Mayhem',1,2),(22798,69597,'Smashley Simpson',1,3),(22798,92019,'Amber',1,4),(22798,1231874,'Oliver',0,5),(22798,20494,'Bloody Holly',1,6),(22798,3196,'Iron Maven',1,7),(22798,71552,'Eva Destruction',1,8),(22798,87444,'Corbi',1,9),(22798,4726,'Brooke Cavendar',1,10),(22798,11669,'Hot Tub Johnny Rocket',2,11),(22798,71555,'Razor',2,12),(22798,230176,'Rosa Sparks',0,13),(22798,11511,'Earl Cavendar',2,14),(22798,1107306,'Fight Attendants Coach',0,15),(22798,52863,'Birdman',2,16),(22798,1738267,'Cop #1',2,17),(22798,1695987,'Cop #2',2,18),(22798,935276,'Riley',0,19),(10743,12833,'Jake Vig',2,0),(10743,3293,'Lily',1,1),(10743,9779,'Travis',2,2),(10743,4483,'Winston King',2,3),(10743,1271,'Gunther Butan',2,4),(10743,5694,'Morgan Price',2,5),(10743,2221,'Lionel Dolby',2,6),(10743,3218,'Big Al',2,7),(10743,13242,'Gordo',2,8),(10743,12792,'Miles',2,9),(10743,10825,'Whitworth',2,10),(10743,40481,'Manzano',2,11),(10743,1878992,'Attractive Blonde',0,12),(10743,170240,'Car Salesman',2,13),(10743,8396,'Harlin',2,14),(10743,1008729,'Katie',1,15),(10743,1109920,'Nicole',1,16),(10743,1253106,'Michelle Strigo',0,17),(10743,953505,'Jester',0,18),(10743,75320,'Kitty',0,19),(10743,98158,'Club Dancer',1,20),(15237,8945,'Cole Porter',2,0),(15237,15852,'Linda Porter',1,1),(15237,378,'Gabriel',2,2),(15237,2449,'Gerald Murphy',2,3),(15237,78017,'Sarah Murphy',0,4),(15237,78018,'Monty Woolley',2,5),(15237,78019,'Louis B. Mayer',2,6),(15237,20056,'Irving Berlin',2,7),(15237,42627,'Edward Thomas',2,8),(15237,12209,'Ethel Merman',1,10),(15237,1154239,'Hotel Porter',2,11),(15237,1214810,'Diaghilev',0,12),(15237,80535,'',2,13),(15237,47990,'',2,14),(15237,131024,'',1,15),(15237,10750,'',1,16),(15237,193591,'',0,17),(15237,137386,'',1,18),(15237,1231755,'',0,19),(15237,974476,'',0,20),(15237,95791,'',1,21),(12257,69597,'Sally Jackson',1,0),(12257,11514,'Beatrice Lever',0,1),(12257,36422,'Dorian Montier',2,2),(12257,28410,'Angus Montier',2,3),(12257,10409,'Mrs. Jackson',0,4),(12257,5150,'Billy',2,5),(12257,15028,'Roy',2,6),(12257,8191,'Henry Lever',2,7),(13539,22290,'Samantha Cavanaugh',1,0),(13539,21594,'Kelvin Morse',2,1),(13539,2299,'Jasper Arnold',2,2),(13539,12132,'Malcolm Arnold',2,3),(13539,6907,'Betsy Arnold',1,4),(13539,21089,'Earl Cavanaugh',2,5),(13539,1734,'Jo Cavanaugh',1,6),(13539,55422,'Jennifer Cavanaugh',0,7),(14024,5958,'Teresa \'Terri\' Fletcher',1,0),(14024,78730,'Jay Corgan',2,1),(14024,18181,'Simon Fletcher',2,2),(14024,51455,'Engelbert Kiwi Wilson',2,3),(14024,12931,'Francis Fletcher',1,4),(14024,39556,'Denise Gilmore',1,5),(14024,27016,'Robin Childers',0,6),(14024,52852,'Sloane',1,7),(14024,50095,'Paul Fletcher',2,8),(14024,28412,'Nina Fletcher',1,9),(14024,38405,'Mr. Torvald',2,10),(14024,51547,'Mr. Gantry',2,11),(16222,58006,'Ashley Grant',1,0),(16222,81295,'Ryan Woodman',2,1),(16222,80109,'Maggie Carter',1,2),(16222,17051,'Chris Campbell',2,3),(16222,84497,'Floyd',2,5),(16222,3492,'Cosmo',2,6),(16222,11806,'Kate Woodman',1,7),(16222,31028,'P.E. Teacher',2,8),(16222,65561,'Harris',2,9),(16222,36811,'Chess Club Kid',2,10),(16222,28638,'Virgil Doolittle',2,11),(16222,108889,'Cop',2,12),(16222,22074,'Vanessa',1,13),(16222,30882,'Sloane',1,14),(16222,569925,'Shyla',0,15),(16222,134074,'Octopus Ride Operator',2,16),(16222,205150,'Toothless Carnie',0,17),(16222,130643,'Stu',2,18),(16222,156342,'Cosmo\'s Date',1,19),(16222,179510,'Danny',2,20),(18276,36422,'Delinko',2,0),(18276,33235,'Roy Eberhardt',2,1),(18276,60073,'Beatrice The Bear Leep',1,2),(18276,1462,'Curly',2,3),(18276,88076,'Mullet Fingers',2,4),(18276,9048,'Muckle',2,5),(18276,23504,'Mrs. Eberhardt',1,6),(18276,43776,'Mr. Eberhardt',2,7),(18276,22126,'Kimberly',1,8),(18276,9208,'Mayor Grandy',2,9),(10186,11678,'Robert \'Fish\' Fishman',2,0),(10186,54415,'Matt Gadman',2,1),(10186,18979,'Kim',1,2),(10186,54693,'Amelia',1,3),(10186,203772,'Curtis',2,4),(10186,60074,'Stan',2,5),(10186,43775,'Lisa',1,6),(10186,58224,'David Marshall',2,7),(10186,21200,'Lex',2,8),(10186,35516,'Gator',2,9),(10186,61110,'Kerr',2,10),(10186,51329,'Trash',2,11),(10186,205300,'Sticks',2,12),(10186,59842,'Billy',0,13),(10186,13636,'Carol',1,14),(10186,220922,'Violet',0,15),(10186,84075,'Kip',2,16),(10186,86626,'Aziz',2,17),(10186,1114481,'Erica',0,18),(10186,63858,'Amelia\'s Mom',1,19),(10186,66934,'Amelia\'s Dad',2,20),(10186,132712,'Moby Type Kid',2,21),(25704,6279,'Ryden Malby',1,0),(25704,70303,'Adam Davies',2,1),(25704,17289,'David Santiago',2,2),(25704,43775,'Carmella Malby',1,3),(25704,14837,'Grandma Maureen',0,4),(25704,2232,'Walter Malby',2,5),(25704,61110,'Guacanator Pitchman',2,6),(25704,41308,'Hunter Malby',2,7),(25704,95875,'Lloyd Hastings',2,8),(25704,300990,'Buckle-O-Bill',2,9),(25704,154826,'Jessica Bard',1,10),(25704,64342,'Funeral Director',2,11),(25704,167115,'Barbara Snaff',1,12),(25704,18999,'Roy Davies',2,13),(25704,1233996,'Chancellor',0,14),(25704,167081,'Woman at Graduation',0,15),(25704,75635,'Security Guard',2,16),(25704,2452,'Receptionist',1,17),(25704,1513982,'Interviewer',0,18),(25704,205984,'College Grad',2,19),(25704,212778,'College Friend #1',1,20),(25704,1340142,'College Friend #2',0,21),(25704,46773,'College Friend #3',1,22),(25704,69399,'Cute Funky Girl',1,23),(25704,60573,'Police Officer',2,24),(25704,114928,'Young Cop',2,25),(25704,113567,'Juanita',1,26),(25704,1599209,'Box Car Racer #1',0,27),(25704,1209705,'Box Car Racer #2',2,28),(25704,1599175,'Landlord',2,29),(25704,167756,'Basketball Player',2,30),(19265,16376,'Boris Yellnikoff',2,0),(19265,38940,'Melodie St. Ann Celestine',1,1),(19265,16328,'Boris\' Friend #1',2,2),(19265,21731,'Joe - Boris\' Friend #3',2,3),(19265,84421,'Boris\' Friend #2',2,4),(19265,84422,'Jessica',1,5),(19265,17487,'Perry',2,6),(19265,84423,'Leo Brockman',2,7),(19265,84424,'Perry\'s Friend',1,8),(19265,1276,'Marietta',1,9),(19265,73968,'Randy James',2,10),(19265,53573,'Morgenstern',2,11),(19265,42157,'John',2,12),(19265,60021,'Howard',2,13),(19265,14984,'Helena',1,14),(19265,79999,'Melodie Club Friend #3',0,15),(19265,36549,'Boy\'s Mother',1,16),(19265,1218277,'Chess Mother',1,17),(19265,1285414,'Chess Girl',0,18),(19265,1285539,'Cafe Waitress',0,19),(10075,51536,'Vivian',1,0),(10075,12791,'Aiden',2,1),(10075,1874,'Astrid',1,2),(10075,15533,'Gabriel',2,3),(10075,47703,'Rafe',2,4),(10075,62879,'Ulf',2,5),(10075,62882,'Willem',2,6),(10075,62883,'Constani',2,7),(10075,62880,'Gregor',2,8),(10075,62884,'Albu',0,9),(10075,30436,'Beatrice',1,10),(10075,62885,'Mrs. Bellagra',1,11),(10075,62886,'Pharmacist',0,12),(10075,62887,'Young Vivian',0,13),(10075,62888,'Young Vivian\'s Mother',0,14),(10075,62890,'Vivian\'s Sister',0,15),(10075,62889,'Young Vivian\'s Father',0,16),(10075,62891,'Vivian\'s Brother',0,17),(10075,62892,'Bartender',2,18),(10075,100995,'Finn',2,19),(13853,589,'Ayla',1,0),(13853,14699,'Iza',1,1),(13853,1736,'Creb',2,2),(13853,15419,'Broud',0,3),(13853,172725,'Brun',2,4),(13853,87003,'Goov',2,5),(13853,168627,'Grod',2,7),(13853,44711,'Middle Ayla',1,8),(13853,86343,'Narrated by (voice)',1,9),(31306,29369,'Lucille Vinson',1,0),(31306,52,'Dove Bullis',2,1),(31306,155,'Peter Joseph \'Peejoe\' Bullis',2,2),(31306,14702,'Earlene Bullis',1,3),(31306,7470,'Sheriff John Doggett',2,4),(31306,522,'Judge Louis Mead',2,5),(31306,31028,'Norman the Chauffeur',2,6),(31306,38571,'Nehemiah Jackson',2,7),(31306,9208,'Harry Hall',2,8),(31306,11315,'Sheriff Raymond',2,9),(31306,85142,'D.A. Mackie',2,10),(31306,118545,'Sondra',1,11),(31306,18251,'Sally',1,12),(31306,1484155,'Organizer',0,13),(10045,62439,'Leu00efto',2,0),(10045,21946,'Capt. Damien Tomaso',2,1),(10045,62441,'K2',0,2),(10045,62443,'Lola',0,3),(10045,62442,'Taha Bemamud',0,4),(10045,62445,'Corsini',0,5),(10045,62444,'Kru00fcger',0,6),(10045,62446,'Le colonel',0,7),(10045,62449,'Yoyo',0,8),(10045,62447,'Jamel',2,9),(10045,62453,'Tarik',0,10),(10045,1371180,'Samy',2,11),(10045,62455,'Gorille entru00e9e Marronniers',0,12),(10045,62452,'Le gros mercenaire',0,13),(10045,62449,'Yoyo (Para 1)',0,14),(10045,62450,'Para 2',0,15),(10045,62451,'Para 3',2,16),(10045,62458,'Le Chinois',0,17),(10045,62454,'Cerbu00e8re Taha',0,18),(10045,62457,'Garde 1',0,19),(10045,62456,'Garde 2',0,20),(10045,62448,'K2 boy 1',0,21),(10045,54807,'K2 boy',2,22),(10045,1885466,'K2 Boy',0,23),(10045,1885452,'Garde yu00e9ti',0,24),(11190,68515,'Andrey',2,0),(11190,68517,'Father',2,1),(11190,68518,'Mother',1,2),(11190,936818,'Ivan',0,3),(11190,936819,'Waitress',1,4),(11190,936820,'Hooligan',0,5),(11190,936821,'Devushka v zerkalakh',0,6),(11190,558290,'Grandmother',0,7),(11190,936823,'Zavodila',0,8),(11190,936824,'Man at Port',0,9),(16353,57207,'Tien',2,0),(16353,81039,'Rajasena Lord',0,1),(16353,49609,'Chernang',2,2),(16353,149861,'Pim',0,3),(23759,17288,'Centurion Quintus Dias',2,0),(23759,18182,'Etain',1,1),(23759,18616,'Bothos',2,2),(23759,15498,'Brick',2,3),(23759,17287,'General Titus Flavius Virilus',2,4),(23759,17606,'Arianne',1,5),(23759,4455,'Gorlacon',2,6),(23759,30710,'Thax',2,7),(23759,76242,'Macros',2,8),(23759,89821,'Leonidas',2,9),(23759,53240,'Tarak',2,10),(23759,652,'Governor Julius Agricola',0,11),(23759,60348,'Vortix',2,12),(23759,231199,'Aeron',0,13),(23759,10673,'Commander Gratus',2,14),(23759,231201,'Roman Officer Argos',2,15),(23759,111801,'Achivir',2,16),(23759,18067,'Druzilla',1,17),(23759,199055,'General Antoninus',2,18),(23759,147482,'General Tesio',2,19),(23759,27172,'General Cassius',2,20),(23759,8032,'Roman Guard',2,21),(24206,16644,'Waxman',2,0),(24206,27638,'Clegg',1,1),(24206,61671,'Klein',2,2),(24206,32887,'O\'Hara',2,3),(10185,51329,'Leon Kaufman',2,0),(10185,980,'Mahogany',2,1),(10185,15110,'Susan Hoff',1,2),(10185,57451,'Maya',1,3),(10185,45566,'Jurgis',2,4),(10185,11769,'Randle Cooper',2,5),(10185,31514,'Otto',2,6),(10185,157146,'Detective Lynn Hadley',1,7),(10185,1352093,'Leigh Cooper',0,8),(10185,2220,'Driver',2,9),(10185,78811,'Guardian Angel',2,10),(31668,14407,'O\'Rourke',2,0),(31668,1926,'Tony',2,1),(31668,2467,'Archie',2,2),(31668,33040,'Romy',1,3),(31668,67153,'Johnno',0,4),(31668,9126,'Aitken',2,5),(31668,1646,'General Landssdorf',2,6),(31668,4920,'Franz',2,7),(31668,38459,'Hauptsturmfu00fchrer',0,8),(13501,955,'Anna/Melodia',1,0),(13501,7060,'Gary Shaller',2,1),(13501,12052,'Dora Shaller',1,2),(13501,11108,'Paul',2,3),(13501,518,'Mel',2,4),(13501,93653,'Shawna',0,5),(13501,35128,'Karlheinz',0,6),(13501,5658,'Alan Weigert',2,7),(13501,1115,'Victor',2,8),(13501,93654,'Naresta',0,9),(15208,58016,'Elizabeth Bathory',1,0),(15208,10841,'Juraj Thurzo',2,1),(15208,37168,'Caravaggio',2,2),(15208,9831,'Nadasdy',2,3),(15208,22383,'King Mathias',2,4),(15208,30737,'Monk Petr',2,5),(15208,78000,'Darvulia',1,6),(15208,2539,'Lady Katarina',1,7),(15208,29945,'Countess Czobor',0,8),(15208,1642051,'Erika',1,9),(15208,1242809,'Pastor Ponicky',2,10),(15208,1528564,'Cyril',2,11),(15208,1681306,'Lucia',1,12),(15208,544297,'Miklu00f3s Zru00ednyi',2,13),(15208,1261327,'Gu00e1bor Bu00e1thory',0,14),(15208,10849,'Bethlen',0,15),(15208,1681308,'Dora',1,16),(15208,1059096,'Su00e1ra',0,17),(15208,1201606,'Ilona',1,18),(15208,1201605,'Beniczka',0,19),(15208,1283520,'Margita',0,20),(15208,586409,'Village Mayor',0,21),(15208,231246,'Royal Guard Commander',0,22),(15208,1681316,'Thurzo\'s Captain',2,23),(15208,24595,'Zsigmond Bu00e1thory',2,24),(15208,1681324,'Pu00e1lu00edfy',2,25),(15208,113360,'Cardinal Forgu00e1ch',2,26),(15208,33938,'Judge Sirmiensis',2,27),(15208,80325,'Zavodsky',2,28),(15208,1421783,'Anna',1,29),(15208,1440154,'Forenczy',2,30),(15208,1681356,'Tutor Imre Megyeri',2,31),(15208,1389502,'Landlady',1,32),(15208,566150,'Orsolya Nadasdy',1,33),(15208,1681367,'Count Druget',2,34),(15208,1681368,'Monk',2,35),(15208,53348,'Bald Hunchback',2,36),(15208,1681981,'Pu00e1l',2,38),(15208,1681972,'Cyril - 9 years',2,39),(15208,1681984,'Katalin - the baby',1,40),(15208,1688497,'Footman Istvu00e1n',2,41),(15208,1688503,'Batthu00e1nyi',2,42),(15208,1688507,'Anna -4 years',1,43),(20083,18897,'Steelhead',2,0),(20083,68704,'Inspector Kitano',2,1),(20083,64436,'Jie',2,2),(20083,76811,'Xiu Xiu',0,3),(20083,64439,'Lily',1,4),(20083,4989,'Toshinari Eguchi',2,5),(20083,82868,'Koichi Muranishi',0,6),(20083,1186988,'Nakajima',0,7),(20083,135131,'Hara Ooda',2,8),(20083,26756,'Taro Watagawa',2,9),(20083,25251,'Old Ghost',2,11),(20083,70690,'Little Tai',2,13),(20083,1174366,'Gao Jie',2,14),(20083,148884,'Hong Kong Boy',0,15),(20083,592329,'Uncle Tak',2,16),(12405,76788,'Jamal Malik',2,0),(12405,76792,'Latika',1,1),(12405,72118,'Prem Kumar',2,2),(12405,72119,'Adele',0,3),(12405,76789,'Sergeant Srinivas',2,4),(12405,76790,'Director',2,5),(12405,76793,'Police Inspector',2,6),(12405,76791,'Vision Mixer',0,7),(12405,1120194,'Youngest Jamal',0,8),(12405,85456,'Javed',0,9),(12405,1120195,'Jamal\'s mother',0,10),(12405,1403495,'Youngest Salim',0,11),(12405,1339482,'Teenage Latika',1,12),(12405,86884,'Newsreader',2,13),(12405,52771,'',0,14),(10998,3392,'Dan Gallagher',2,0),(10998,515,'Alex Forrest',1,1),(10998,10427,'Beth Gallagher',1,2),(10998,45865,'Ellen Gallagher',1,3),(10998,13636,'Babysitter',1,4),(10998,56266,'',2,5),(10998,52043,'',2,6),(10998,157459,'',0,7),(10998,2207,'',1,8),(10998,91372,'',1,9),(10998,9628,'',2,10),(10998,89461,'',2,11),(10998,118132,'',2,12),(10998,3711,'Secretary',1,13),(14435,49624,'Tom Hanniger',2,0),(14435,5915,'Sarah Palmer',1,1),(14435,43442,'Axel Palmer',2,2),(14435,76886,'Irene',1,3),(14435,39391,'Deputy Martin',2,4),(14435,11784,'Sheriff Jim Burke',2,5),(14435,17770,'Ben Foley',2,6),(14435,222141,'Megan',1,7),(14435,966102,'Deputy Ferris',1,8),(14435,1114306,'Rosa',0,9),(14435,6908,'Riggs',2,10),(14435,61117,'Frank the Trucker',2,11),(14435,170145,'Red',2,12),(14435,104046,'Officer Hinch',2,13),(14435,1114307,'Michael',0,14),(14435,1344290,'Harry Warden',0,15),(12227,10647,'Alex Larson',2,0),(12227,569,'Jack Conroy',2,1),(12227,5950,'Skunker',2,2),(12227,71763,'Belinda Casey',1,3),(12227,1736,'Beauty Smith',2,4),(12227,27737,'Luke',0,5),(12227,1136057,'Tinker',0,6),(12227,954857,'Grey Beaver',2,7),(12227,1136058,'Little Beaver',0,8),(12227,1136059,'Older Indian',0,9),(12227,1136060,'Sled Dog Prospector',0,10),(12227,140079,'Heather',1,11),(13824,28640,'Mary Katherine Gallagher',1,0),(13824,23659,'Sky Corrigan',2,1),(13824,55422,'Evian Carrie Graham',0,2),(13824,16846,'Eric Slater',2,3),(13824,36423,'Dylan Schmultz-Plutzker',2,4),(13824,5826,'Grandma',1,5),(13824,56867,'Father Ritley',2,6),(13824,44169,'Howard',2,7),(13824,11517,'Father John',2,8),(13824,183838,'Helen',1,9),(13824,52956,'Maria',1,10),(13824,130101,'Thomas',2,11),(13824,131009,'Autum',1,12),(13824,104151,'Summer',1,13),(13824,69575,'Owen',2,14),(13824,1239427,'Mr. Feinstein',0,15),(13824,18236,'Mrs. Corrigan',1,16),(13824,1234256,'Freaky Freddy',0,17),(13824,1362945,'Crucifix Nun',0,18),(13824,85760,'Moira McDaniels',0,19),(13824,126251,'Little Mary',0,21),(13824,150577,'Thornton Gallagher',2,24),(13824,1362948,'Sister Eileen',1,25),(13824,79402,'Sister Anne',0,26),(13824,168752,'Little Boy Slater',2,27),(13824,20196,'Weatherman',2,28),(13824,1362949,'Student (uncredited)',1,29),(13824,1362950,'Choral Singer (uncredited)',0,30),(13824,132658,'Bike Boy (uncredited)',0,31),(13824,1270742,'Tom, Whose Dad Is Dead (uncredited)',0,32),(13824,1217633,'Man in Pink Tutu (uncredited)',0,33),(15173,78297,'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)',2,0),(15173,78298,'Larry the Cucumber / Pirate Larry / Jean Claude Pea / Cockney Pea #1 / Self-Help Tape Voice / Jerry Gourd / Whooping BBQ Pea (voice)',2,1),(15173,80678,'Khalil (voice)',0,2),(15173,110801,'Junior Asparagus (voice)',1,3),(15173,42223,'Dad Asparagus (voice)',0,4),(15173,110802,'Laura Carrot (voice)',1,5),(15173,110803,'Annie (voice)',0,6),(15173,110804,'Scooter, Townsperson (voice)',0,7),(15173,98982,'City Official, Crazy Jopponian (voice)',0,8),(15173,110805,'Message from the Lord Choir (voice)',0,9),(15173,110806,'Message from the Lord Choir (voice)',0,10),(15173,110807,'Message from the Lord Choir (voice)',0,11),(15173,110808,'Message from the Lord Choir (voice)',0,12),(15173,110809,'Message from the Lord Choir (voice) (as Mike Harrison)',0,13),(15173,110810,'Message from the Lord Choir (voice)',0,14),(13950,9778,'Bucum',2,0),(13950,51944,'Reggie',2,1),(13950,2478,'Williamson',2,2),(13950,76093,'Ursula',1,3),(13950,8170,'Gina',1,4),(13950,40377,'Julian Ramose',2,5),(13950,25072,'Francesco',2,6),(12158,776,'Maximillian | Pauly | Guido',2,0),(12158,9780,'Detective Rita Veder',1,1),(12158,32486,'Detective Justice',2,2),(12158,66554,'Julius Jones',2,3),(12158,56902,'Silas Green',2,4),(12158,47458,'Dr. Zeko',2,5),(12158,593,'Capt. Dewey',1,6),(12158,6951,'Police Officer',2,7),(12158,172200,'Nikki',0,8),(11586,37366,'Regan MacNeil',1,0),(11586,5341,'Father Philip Lamont',2,1),(11586,7071,'Dr. Gene Tuskin',1,2),(11586,2201,'Father Lancaster Merrin',2,3),(11586,57921,'Sharon Spencer',1,4),(11586,4112,'The Cardinal',2,5),(11586,15152,'Older Kokumo',0,6),(11586,13726,'Edwards',2,7),(11586,1391481,'Liz',0,8),(11586,162381,'Spanish Girl',1,9),(11586,1228062,'Mrs. Phalor',0,10),(11586,1391495,'Deaf Girl',0,11),(11586,1391496,'Young Kokumo',0,12),(11586,1391498,'Young Monk',0,13),(11586,178139,'Abbot',2,14),(11586,129663,'Conductor',2,15),(11586,14739,'Accident Victim',2,16),(11586,1391510,'Taxi Driver',0,17),(11586,1391513,'Gary Tuskin',0,18),(11586,1747368,'Linda Tuskin',0,19),(11586,1392000,'',0,20),(11586,1392001,'',0,21),(11586,44161,'Man on the Plane',2,22),(11586,114509,'',2,23),(10008,55636,'John Bell',2,0),(10008,5606,'Lucy Bell',1,1),(10008,19655,'Richard Powell',2,2),(10008,17353,'James Johnston',2,3),(10008,13483,'Kathe Batts',0,3),(10008,649,'Elder #1',2,4),(10008,61937,'John Bell Jr.',2,5),(10008,7577,'Anky',1,6),(10008,61938,'Theny Thorn',1,7),(10008,61939,'Joshua Gardner',2,8),(10008,61940,'Chloe',0,9),(10008,61941,'Ethereal Girl',0,10),(10008,61943,'Richard Bell',0,11),(10008,61944,'Joel Bell',0,13),(10008,61945,'Joel Bell',2,14),(10008,61946,'Jane',0,15),(10008,61947,'Elizabeth Powell - Mother',1,16),(10008,61948,'David - Father',2,17),(10008,129050,'Betsy Bell / Entity Voice',1,18),(12403,63,'Cydney',1,0),(12403,18082,'Nick',2,1),(12403,18324,'Cliff',2,2),(12403,74568,'Kale',2,3),(12403,171522,'Chronic',2,4),(12403,31168,'Gina',1,5),(12403,6407,'Cleo',1,6),(12403,177164,'Debbie Mason / Clerk',1,7),(12403,46814,'Earth Momma',1,8),(12403,84757,'Supply Guy',2,9),(12403,1077764,'Helicopter Pilot',0,10),(12403,1611777,'Police shooter',0,11),(34563,2178,'Brad Boyd',2,0),(34563,59174,'Lucia Ramirez',1,1),(34563,87588,'Miguel Ramirez',2,2),(34563,9788,'Angela',1,3),(34563,112566,'Marcus Boyd',2,4),(34563,34488,'Sonia Ramirez',1,5),(34563,28779,'Momma Cecilia',1,6),(34563,106934,'Isabella Ramirez',0,7),(34563,17840,'T.J.',2,8),(34563,27855,'Ashley McPhee',1,9),(34563,200163,'Aunt Rosita',0,10),(34563,54800,'Diane Boyd',1,11),(34563,165905,'Wendell Boyd',2,12),(34563,53928,'Keisha Boyd',1,13),(34563,1782732,'Ardom Boyd',0,14),(34563,1070339,'Buddy Boyd',0,15),(34563,3979,'Father Paez',2,16),(34563,1782733,'Manny Ramirez',0,17),(34563,984152,'Maitre \'D',2,18),(34563,1782734,'Cory Boyd',0,19),(34563,58681,'Earlene',1,20),(34563,58623,'Sonny',2,21),(34563,53252,'Raymond Mata',2,22),(34563,1910,'Elaine',1,23),(34563,66623,'Sienna',1,24),(34563,180486,'Bridesmaid',1,25),(34563,232499,'Harry',2,26),(14557,16857,'Josh',2,0),(14557,19184,'Cooper',2,1),(14557,77028,'Rachel',1,2),(14557,58058,'Cliff',2,3),(14557,69803,'Buckley',2,4),(14557,77029,'Matt',2,5),(14557,21595,'Lucy',1,6),(14557,42743,'Kristin',1,7),(14557,77031,'Hank',2,9),(14557,77032,'Jerry',0,10),(14557,41088,'Kyle',2,11),(14557,1817,'Kelly',1,12),(14557,51215,'Pickle',2,13),(14557,77033,'Guidance Counselor',1,14),(14557,77030,'Zeke',2,15),(10368,38225,'Elsa Armistan',1,0),(10368,5309,'Arabella',1,1),(10368,23709,'Mary Wallace',1,2),(10368,10978,'Lady Hester Random',1,3),(10368,10437,'Georgie Rockwell',1,4),(10368,1232520,'Luca',0,5),(10368,192953,'Luca (Child)',2,6),(10368,148251,'Paolo',2,7),(10368,156294,'Vittorio Fanfanni',2,8),(10368,119352,'Benito Mussolini',0,9),(10368,1214973,'Wilfred Random, aka Miss Lucy',2,10),(10368,26284,'First Carabiniere',0,12),(10368,1427290,'American Dealer',0,13),(10368,1185610,'German Officer',2,14),(10368,128468,'Maurizio',0,15),(10368,25658,'Major Gibson',2,16),(10280,31512,'Billy Halleck',2,0),(10280,3266,'Richie Ginelli',2,1),(10280,5148,'Heidi Halleck',1,2),(10280,14884,'Tadzu Lempke',2,3),(10280,56152,'Gina Lempke',1,4),(10280,1118081,'Linda Halleck',1,5),(10280,1473,'Chief Duncan Hopley',2,6),(10280,3027,'Pharmacist',2,7),(10280,59162,'Detective Deevers',2,8),(10280,169128,'Kirk Penschley',2,9),(12637,66776,'Francine Evans',1,0),(12637,380,'Jimmy Doyle',2,1),(12637,4969,'Tony Harwell',2,2),(12637,73194,'Paul Wilson',2,3),(12637,102441,'Palm Club Owner',2,4),(12637,5960,'Bernice Bennett',1,5),(12637,1220746,'Doyle\'s Girl in Major Chord',0,6),(12637,11480,'Eddie Di Muzio',2,7),(12637,41262,'Gilbert',2,8),(34152,1981,'Carolyn Carmichael',1,0),(34152,18792,'Woody Carmichael',2,1),(34152,1737,'Tony Eyes / Jim',2,2),(34152,112037,'Troy',1,3),(34152,112038,'Clinton',2,4),(34152,46396,'Wendell',2,5),(34152,112039,'Joseph',0,6),(34152,112040,'Nate',2,7),(34152,10963,'Tommy La La',2,8),(34152,21353,'Vic',2,9),(34152,112041,'Jessica',0,10),(34152,5281,'Snuffy',2,11),(34152,72983,'Hector',2,12),(34152,112042,'Neighbour',2,13),(34152,78589,'Bodega Woman',2,14),(34152,1234850,'Cornell',0,15),(14434,2632,'Richard Cooper',2,0),(14434,11703,'Nikki Tru',1,1),(14434,9576,'Brenda Cooper',1,2),(14434,884,'George',2,3),(14434,52995,'Mr. Landis',2,4),(14434,93620,'Mary',1,5),(14434,93621,'Tracy',1,6),(14434,39390,'Teddy',2,7),(14434,61904,'Candy',1,8),(14434,210050,'Lisa',1,9),(11470,62596,'Jason Voorhees / Uber-Jason',2,0),(11470,69574,'Rowan',1,1),(11470,69575,'Tsunaron',2,2),(11470,69576,'Kay-Em 14',1,3),(11470,224,'Dr. Wimmer',2,4),(11470,180916,'Sgt. Marcus',2,5),(11470,23534,'Professor Lowe',2,6),(11470,44176,'Azrael',0,7),(11470,85926,'Janessa',1,8),(11470,61117,'Dallas',2,9),(11470,158391,'Adrienne',1,10),(10741,4173,'John Casey',2,0),(10741,69122,'Angela',1,1),(10741,18976,'Fisher',2,2),(10741,17628,'Susan Taylor',1,3),(10741,9994,'Samantha Stevens',1,4),(10741,10959,'Cooper',2,5),(10741,33162,'Nelson',2,6),(10741,52847,'Patricia',1,7),(10741,36811,'Dwayne',2,8),(10741,2880,'Tim Fallon',2,9),(10741,2975,'Edward Robinson',2,10),(10741,49265,'Diane',1,11),(10741,3905,'Paul Ebbers',2,12),(10741,3416,'Virginia Fallon',1,13),(10741,8349,'Jack Stevens',2,14),(10741,2224,'Daryl Timmons',2,15),(10741,4430,'Miriam Ebbers',1,16),(10741,109,'William Avary',2,17),(10741,11866,'Wade',2,18),(24940,2140,'Amanda Pierce',1,0),(24940,33260,'Jim Winston',2,1),(24940,92857,'Jade',1,2),(24940,29930,'Roxana',1,3),(24940,92859,'Candy',1,4),(24940,92861,'Holly',1,5),(24940,92866,'Lisa',1,6),(24940,4171,'Alfredo',2,7),(24940,236450,'10 Year-Old Amanda',0,8),(24940,58374,'Tommy',2,9),(24940,198270,'Tommy\'s Girlfriend',0,10),(24940,236451,'17 Year-Old Amanda',0,11),(24940,236452,'Charlie',0,12),(24940,172889,'Charlie\'s Date',0,13),(24940,63791,'Halloran / Strukov',2,14),(24940,172844,'Harold',2,15),(24940,168456,'Ellis',2,16),(24940,25414,'Party Girl',1,17),(24940,1201220,'Michael\'s Lover',1,18),(24940,1239283,'Polly',0,19),(18041,11866,'Beau Edson',2,0),(18041,11006,'Derrick Webb',2,1),(18041,11661,'Naomi Preston',1,2),(18041,17286,'Cathy Jones',1,3),(18041,4886,'Travis',2,4),(18041,10866,'Professor Goodwin',2,5),(18041,587,'Detective Curtis',2,6),(18041,121566,'Detective Kelly',1,7),(18041,56595,'Sheila',2,8),(28029,2882,'Pearl Kantrowitz',1,0),(28029,110,'Walker Jerome',2,1),(28029,23626,'Marty Kantrowitz',2,2),(28029,10690,'Alison Kantrowitz',1,3),(28029,41640,'Lillian Kantrowitz',1,4),(28029,126877,'Neil Leiberman',2,5),(28029,1401600,'Herb Fogler',0,6),(28029,1507100,'Daniel Kantrowitz',0,7),(28029,1507101,'Rhoda Leiberman',0,8),(28029,115592,'Eleanor Gelfand',1,9),(28029,216778,'Norma Fogler',1,10),(28029,179280,'Selma Levitsky (as Vicky Barkoff)',0,11),(28029,1229550,'Wendy Green',0,12),(28029,8987,'Myra Naidell',1,13),(28029,1223778,'Ross Epstein',0,14),(28029,1507105,'Carl Applebaum',0,15),(14033,13446,'Annabel',1,0),(14033,41555,'Cassie',1,1),(14033,8210,'Matt',2,2),(14033,1893,'Sean',2,3),(14033,15276,'Raven',1,4),(14033,36422,'Jude',2,5),(14033,554391,'Dr. Haverston',2,6),(14033,201389,'Hideous Dancer',2,7),(14033,173938,'Deathmask',2,8),(14033,145204,'Margaret',0,9),(14033,156435,'Ben',2,10),(14033,129228,'Cool Blond',1,11),(14033,554392,'Young Cop',0,12),(14033,182347,'Father McManus',0,13),(14033,554395,'ER Doctor',0,15),(14033,150061,'ER Nurse',1,16),(14033,76987,'Second Campus Cop',2,17),(14033,155689,'ER Doctor - Midtown',1,18),(14033,103868,'Campus Cop',0,19),(16899,10860,'Larita Whittaker',1,0),(16899,25130,'John Whittaker',2,1),(16899,5470,'Mrs. Whittaker',1,2),(16899,5472,'Mr. Whittaker',2,3),(16899,124828,'Hilda Whittaker',0,4),(16899,74158,'Marion Whittaker',1,5),(16899,7058,'Furber',2,6),(16899,144867,'Jackson',2,7),(16899,586764,'Warwick Holborough',0,9),(16899,115679,'Sarah Hurst',1,10),(16899,36666,'Lord Hurst',2,11),(16899,118037,'Phillip Hurst',0,12),(16899,1671734,'Davis',0,13),(16899,1536979,'Cook / Doris / Beatrice',0,14),(16005,504,'Fred Cheaver',2,0),(16005,53714,'Colee Dunn',1,1),(16005,454,'T.K. Poole',2,2),(16005,58356,'College Girl',1,3),(16005,58045,'Pat Cheaver',1,4),(16005,81197,'Scott Cheaver',2,5),(16005,159041,'Stan Tilson',2,6),(16005,120244,'Barbara Tilson',1,7),(16005,1189226,'Peter Tilson',0,8),(16005,11512,'Bob',2,9),(16005,1189227,'Bob\'s Wife',0,10),(16005,169337,'Janet',1,11),(23988,59263,'Nadine',1,0),(23988,7633,'Kay',2,1),(23988,81388,'Stan Helsing',2,2),(23988,77330,'Teddy',2,3),(23988,84270,'Screaming Woman',1,4),(23988,72099,'Fweddy',2,5),(23988,90717,'Bride',0,6),(23988,90718,'Bride of Dracula',0,7),(23988,90719,'Mia',1,8),(23988,90720,'Sexy Employee',1,9),(23988,90721,'Herself',0,10),(23988,90722,'Bride',0,11),(23988,90723,'Bathroom lady',2,12),(23988,90724,'Pleatherface',2,13),(23988,90725,'Guy #1',0,14),(23988,90726,'Pinhead',2,15),(23988,90727,'Employee #2',0,16),(23988,90728,'-',0,17),(23988,90729,'Busboy',2,18),(23988,90730,'Michael Jackson',0,19),(23988,90731,'Employee #1',2,20),(23988,90732,'Afroman',0,21),(23988,90733,'Michael Criers',2,22),(23988,90734,'The Robber',0,23),(23988,90735,'Hockey Boy / Kid #1',0,24),(23988,90737,'Teenager in movie store',0,25),(23988,90739,'Altar boy (uncredited)',0,26),(10712,1231,'Cathy Whitaker',1,0),(10712,6065,'Frank Whitaker',2,1),(10712,352,'Raymond Deagan',2,2),(10712,1276,'Eleanor Fine',1,3),(10712,19492,'Sybil',1,4),(10712,8986,'Dr. Bowman',2,5),(10712,33241,'Stan Fine',2,6),(10712,1989,'Mona Lauder',1,7),(10712,35515,'Elderly Woman',1,8),(10712,17194,'Tallman',2,9),(10876,118,'The Marquis de Sade',2,0),(10876,204,'Madeleine \'Maddy\' LeClerc',1,1),(10876,73421,'The Abbe du Coulmier',2,2),(10876,3895,'Dr. Royer-Collard',2,3),(10876,8226,'Madame LeClerc',1,4),(10876,8979,'Delbenu00e9',2,5),(10876,23496,'Simone',1,6),(10876,1230265,'Renee Pelagie',0,7),(10876,32203,'Prouix, the Architect',2,8),(10876,1402411,'Valcour',0,9),(10876,62106,'Cleante',0,10),(10876,62266,'Pitou',0,11),(10876,994,'Bouchon',2,12),(10876,42998,'Charlotte',1,13),(10876,79638,'Franval',2,14),(10876,5319,'Napoleon',2,15),(10876,1057876,'Michette',1,16),(25208,2231,'Romulus',2,0),(25208,10132,'Leppenraub',2,1),(25208,37042,'Moira',1,2),(25208,53923,'Lulu',1,3),(25208,42694,'Sheila',1,4),(25208,1904,'Bob',2,5),(10131,5139,'Freddy Krueger',2,0),(10131,63914,'Kristen Parker',1,1),(10131,63915,'Roland Kincaid',2,2),(10131,63916,'Joey Crusel',2,3),(10131,63917,'Alice Johnson',1,4),(10131,63918,'Rick Johnson',2,5),(10131,104275,'Dan Jordan',2,6),(10131,104276,'Debbie Stevens',1,7),(10131,104277,'Sheila Kopecky',0,8),(10131,87112,'Dennis Johnson',2,9),(10131,72157,'Elaine Parker',1,10),(10131,98944,'Pin Up Girl',1,11),(10131,15510,'Buddy in Locker Room',0,12),(10131,97619,'Soul from Freddy\'s Chest',1,13),(10131,62032,'Jock',2,14),(10131,553742,'Mrs. Crusel',0,16),(10131,164629,'Doctor',0,17),(10131,553743,'Coach',0,18),(10131,552162,'Alice (Girl in Freddy\'s house)',0,19),(10131,191521,'Buddy in Diner',0,20),(10131,553744,'Girl',0,21),(10131,170020,'Physics Teacher',0,22),(10131,175806,'Nurse',1,23),(10131,553745,'Friend in Mourning',0,24),(10131,553746,'Friend',0,25),(10131,170165,'Student',0,26),(10131,13663,'Lecturer (as L.E. Moko)',2,27),(10131,16938,'Student in Classroom (uncredited)',2,28),(10131,11408,'Paramedic',2,29),(11967,2880,'William H. \'Billy the Kid\' Bonney',2,0),(11967,2628,'Josiah Gordon \'Doc\' Scurlock',2,1),(11967,38560,'Jose Chavez y Chavez',2,2),(11967,6952,'Dick Brewer',2,3),(11967,20212,'Dirty Steve Stephens',2,4),(11967,1953,'Charles \'Charley\' Bowdre',2,5),(11967,28641,'John Tunstall',2,6),(11967,3785,'Lawrence G. Murphy',2,7),(11967,12646,'Alex McSween',2,8),(11967,1129541,'Susan McSween',1,9),(11967,148122,'J. McCloskey',2,10),(11967,196629,'Yen Sun',1,11),(11967,32791,'Buckshot Roberts',2,12),(11967,30560,'Patrick Floyd \'Pat\' Garrett',2,13),(11967,1547821,'Texas Joe Grant',0,14),(11967,52878,'Mallory',1,15),(11967,59302,'Justice Wilson',2,16),(11967,1235705,'Sheriff Brady',2,17),(11967,500,'[Cameo]',2,18),(10985,132078,'Dizzy Harrison / Gil Harris',2,0),(10985,13446,'Danielle',1,1),(10985,11664,'Nora',1,2),(10985,11059,'Bear Harrison',2,3),(10985,21804,'Kirk',2,4),(10985,7796,'Kiki Pierce',1,5),(10985,77993,'Glen',2,6),(10985,29685,'Mr. Undine',2,7),(10985,77299,'Coach',2,8),(10985,22132,'Clem',2,9),(10985,62842,'Luther',2,10),(10985,58707,'Courtney',1,11),(10985,77809,'Conner',2,12),(10985,16832,'Himself',2,13),(10985,18071,'Principal Zaylor',2,14),(10985,129122,'Charlie',2,15),(10985,1224043,'Rudy',0,16),(10985,9290,'Warden',2,17),(10985,28238,'Himself',2,19),(15489,54812,'Tom Brandston',2,0),(15489,1534,'Roger the Snowplowman',2,1),(15489,5376,'Laura Brandston',1,2),(15489,13604,'Mr. Zellweger',0,3),(15489,2230,'Tina',1,4),(15489,59192,'Claire Bonner',1,5),(15489,55779,'Chad Symmonz',2,6),(15489,70852,'Lane Leonard',1,7),(15489,4451,'Hal Brandston',2,8),(15489,62760,'Natalie Brandston',1,9),(15489,15760,'Wayne Alworth',2,10),(15489,59011,'Chet Felker',2,11),(15489,109144,'Principal Ken Weaver',2,12),(15489,1213527,'Randy Brandston',0,13),(15489,168788,'Bill Korn',2,14),(15489,33293,'Chuck Wheeler',0,15),(15489,391533,'Mona',1,16),(15489,27136,'Marla',1,17),(15489,43903,'Fawn',1,18),(15489,115857,'Paula',1,19),(15489,80348,'Radio Mother',1,20),(15250,18284,'Shirley Ann Ma\'Dere Whitfield',1,0),(15250,18792,'Joe Black',2,1),(15250,17605,'Quentin Junior Whitfield',2,2),(15250,9788,'Lisa Whitfield Moore',1,3),(15250,10964,'Malcolm Moore',2,4),(15250,98772,'Melanie \'Mel\' Whitfield',1,5),(15250,31136,'Michael Baby Whitfield',2,6),(22345,3391,'Elena Kinder',1,0),(22345,1062,'Heep',2,1),(22345,2109,'Robin',1,2),(22345,12688,'Dan',2,3),(22345,6844,'Lenny',2,4),(22345,64221,'Reporter',0,5),(11186,65683,'Andy Barclay',2,0),(11186,14464,'Joanne Simpson',1,1),(11186,26283,'Phil Simpson',2,2),(11186,39113,'Kyle',1,3),(11186,1370,'Chucky',2,4),(11186,6465,'Grace Poole',1,5),(11186,152647,'Sullivan',2,6),(11186,5151,'Miss Kettlewell',1,7),(11186,19974,'Mattson',2,8),(11186,66194,'Social Worker',2,9),(25462,2535,'Shantu00e9 Smith',1,0),(25462,9779,'Keith Fenton',2,1),(25462,18471,'Tony',2,2),(25462,17773,'Conny Spalding',1,3),(25462,52116,'Karen',1,4),(25462,59154,'Tracey Johnson',1,5),(25462,60561,'Diedre',1,6),(25462,93279,'Michael',2,7),(25462,103944,'Dwain',2,8),(25462,6719,'Bill Parker',2,9),(25462,38582,'Jason',2,10),(25462,154011,'Nita',1,11),(25462,1606734,'Tyrone',2,12),(25462,1212702,'Sexy Young Girl',1,13),(25462,79500,'Phil the Attorney',2,14),(25462,1034453,'Bobby the DJ',1,15),(25462,1606744,'Trent',2,16),(25462,1606746,'Patrick',2,17),(25462,1313192,'Cynthia',1,18),(25462,83108,'Eddie',2,19),(25462,66116,'Lying Man #1',2,20),(25462,27590,'Lying Man #2',2,21),(25462,62284,'Miller Girl #1',1,22),(25462,1610309,'Miller Girl #2',2,23),(25462,1610314,'Miller girl#3',1,24),(10691,205,'Nicole Oakley',1,0),(10691,19487,'Carlos Nuu00f1ez',2,1),(10691,52374,'Tom Oakley',2,2),(10691,67070,'Luis',0,3),(10691,121453,'Eddie',2,4),(10691,111081,'Victor',0,5),(10691,90448,'Hector',0,6),(10691,119666,'Mrs. Nuu00f1ez',1,7),(10691,5148,'Courtney Oakley',1,8),(10691,343,'Maddy',1,9),(10691,129124,'Coach Bauer',2,10),(10691,1607161,'Rosa',0,11),(10691,1607162,'Jimmy - The Pilot',0,12),(10691,1116374,'Morgan Oakley',0,13),(10691,1226611,'Lainie',1,14),(14577,77075,'Mitch Weaver',0,0),(14577,20788,'Sam McKenna',2,1),(14577,5251,'\'Pops\' McKenna',2,2),(14577,54826,'Kathy',1,3),(14577,7167,'Mr. Hamilton',2,4),(14577,4443,'Travis Cole',2,5),(14577,54812,'Dr. Farthing',2,6),(14577,58198,'Jimmy',2,7),(14577,75341,'Himself',2,8),(14577,5620,'Theatre Worker',2,9),(14577,11008,'Bearded Lady',1,10),(14577,66563,'Homeless Man',2,11),(14577,1232765,'Mitch (8 Years Old)',0,12),(14577,1567163,'Mitch (18 years old)',0,13),(14577,1567164,'Sam (8 years old)',0,14),(14577,124355,'Sam (16 years old)',0,15),(14577,1567163,'Mitch (16 years old)',0,16),(14577,54650,'Manetti',2,17),(14577,1423398,'Aldo',0,18),(14577,44155,'John Kirkpatrick',2,19),(14577,1239581,'Derek (10 years old)',0,20),(14577,941286,'Jason',2,21),(14577,1567167,'Charlene',0,22),(14577,63859,'Frat Guy',2,23),(14577,110186,'Veronica',1,24),(14577,30609,'Toni-Ann',1,25),(14577,1225384,'Homeless Guy at Apartment',0,26),(14577,1213341,'Doctor at Fat Clinic',0,27),(14577,28638,'Anton Phillips',2,28),(14577,1608046,'Middle-aged guy',2,29),(14577,1240334,'A.D.',0,30),(14577,115986,'Lin Young (Saigon Whore)',1,31),(14577,20196,'Creepy Harry',2,32),(14577,1567168,'Big Wet Man',0,33),(14577,1567169,'Lobby Henchman',0,34),(14577,63546,'Door Henchman',2,35),(14577,43279,'Unaffected Henchman',2,36),(14577,1441776,'Martin (Homeless Guy)',0,37),(14577,1567170,'Homeless Guy',0,38),(14577,79401,'Mrs. Murphy',0,39),(14577,1225381,'Policeman',0,40),(14577,27586,'Policeman',2,41),(14577,83024,'Gladys',1,42),(14577,1531420,'Ron',0,43),(14577,1591890,'Dini Petty',0,44),(14577,64899,'Mike Anscombe',0,45),(14577,1239516,'Foreman',0,46),(14577,81416,'Paul',2,47),(14577,1591891,'Jenkins\' Fantasy Girl',0,48),(14577,199851,'Huge Prisoner',0,49),(14577,181028,'Suit Guy',2,50),(14577,1591892,'Theater Worker',0,51),(14577,1591893,'Jenkins',0,52),(14577,1591894,'Gord Martineau',0,53),(14577,165596,'Opera Critic',2,54),(14577,1591895,'Oper Critic\'s Date',0,55),(14577,1591896,'Opera Lady',0,56),(14577,1591897,'Baritone Errante',0,57),(14577,105298,'Ring Announcer',2,58),(14577,75341,'Gary Coleman',2,59),(14577,195813,'Ken Norton',2,60),(14577,1591898,'Adult Jenny',0,61),(14577,65761,'Crossing Guard',0,62),(14577,180917,'Lowlife',0,63),(14577,180686,'Lowlife',2,64),(14577,17638,'Car Radio Thief',2,65),(14577,2715,'Aerobics Instructor',1,66),(14577,1591899,'Aerobics Instructor',0,67),(14577,112652,'Rock Guitarist',0,68),(14577,1591900,'Woman at Bar',1,69),(14577,135353,'John',2,70),(14577,1230,'Mayor Adrian Riggins',2,71),(14577,19292,'Satan',2,72),(11592,3391,'Beverly Sutphin',1,0),(11592,8975,'Eugene Sutphin',2,1),(11592,70233,'Misty Sutphin',1,2),(11592,26457,'Chip Sutphin',2,3),(11592,10826,'Carl\'s Date',1,4),(11592,161912,'Suzanne Somers',1,5),(11592,14670,'Joan Rivers',1,6),(11592,9292,'Dottie Hinkle',1,7),(11592,68494,'Scotty',2,8),(11592,80634,'Rosemary Ackerman',1,9),(11592,59161,'Mr. Stubbins',0,10),(11592,1387766,'Mr. Sterner',0,11),(11592,77242,'Juror #8',1,12),(11592,1387844,'Vendor',2,13),(11592,1355469,'Kid B',0,14),(11592,1387834,'Court Groupie A',1,15),(11592,77245,'Detective Pike',2,16),(11592,1340687,'Marvin Pickles',0,17),(11592,361969,'Detective Gracey',0,18),(11592,163956,'Birdie',0,19),(11592,1387761,'Carl',0,20),(11592,1387762,'Mrs. Sterner',0,21),(11592,1387807,'Howell Hawkins',0,22),(11592,1387808,'Father Boyce',0,23),(11592,1387811,'Mrs. Jenson',0,24),(11592,1387816,'Herbie Hebden',0,25),(11592,1387821,'Timothy Nazlerod',2,26),(11592,1387823,'Judge',0,27),(11592,1387824,'Lu-Ann Hodges',0,28),(11592,1387825,'Gus',0,29),(11592,1387826,'Sloppy',0,30),(11592,1387829,'Jury Forewoman',0,31),(11592,34540,'Rookie Cop',2,32),(11592,1387831,'Policewoman',0,33),(11592,1387832,'Press A',0,34),(11592,1387833,'Court TV Reporter',0,35),(11592,76495,'Court Groupie B',0,36),(11592,1387836,'Carl\'s Brother',0,37),(11592,10371,'Book Buyer',0,38),(11592,18632,'Mean Lady',0,39),(11592,1387841,'Police Officer',0,40),(11592,86817,'Flea Market Boy',0,41),(11592,1387874,'Flea Market Girl',0,42),(11592,75207,'Macho Man',2,43),(11592,1387876,'Dealer',0,44),(11592,1387879,'Baby\'s Mother',0,45),(11592,1387880,'Church Baby',0,46),(11592,58968,'Doorman',0,47),(11592,1387881,'Kid A',0,48),(11592,1387892,'Kid C',0,49),(11592,1387893,'Joe Flowers',0,50),(11592,959477,'Girl',0,51),(11592,1091371,'Burglar A',0,52),(11592,1387906,'Burglar B',0,53),(11592,1387916,'Mrs. Taplotter',1,54),(11592,1387917,'Reporter',0,55),(11592,1387936,'TV Serial Hag',0,56),(11592,1224618,'Lady C',1,57),(11592,1387945,'Press',0,58),(11592,1337085,'Kid',0,59),(11592,1387949,'Camel Lips',0,60),(11592,1387962,'Camel Lips',0,61),(11592,1300211,'Camel Lips',0,62),(11592,1300213,'Camel Lips',0,63),(11592,1300214,'Camel Lips',1,64),(11592,1387965,'Husband A',0,65),(11592,1387966,'Court Clerk',0,66),(16406,205,'Betsy Jobs',1,0),(16406,1812,'Arlene Lorenzo',1,1),(16406,23659,'Bob Woodward',2,2),(16406,6486,'President Richard M. Nixon',2,3),(16406,73499,'Carl Bernstein',2,4),(16406,8437,'Helen Lorenzo',1,5),(16406,21290,'Bob Haldeman',0,6),(16406,57690,'John Dean',2,7),(16406,6008,'G. Gordon Liddy',2,8),(16406,3712,'Henry Kissinger',2,9),(16406,86267,'Rose Mary Woods',1,10),(16406,54455,'Larry Jobs',2,11),(16406,18982,'Roderick',2,12),(16406,10859,'Chip',2,13),(16406,1269763,'Ben Bradlee',2,14),(19052,57108,'Lester Dewitt',0,0),(19052,27011,'Audrey McDonald',1,1),(19052,2178,'Officer Dante Jackson',2,2),(19052,5916,'Stephanie Williams',1,3),(19052,52037,'Zacharias \'Ziggy\' Malone',2,4),(19052,21624,'Zacharias \'Ziggy\' Malone',2,5),(19052,59568,'Rodney J. Templeton',2,6),(19052,3282,'Lynn Sabatini',1,7),(19052,5365,'Robert \'Rivers\' Tremont',2,8),(19052,114674,'Principal Allan Armstrong',2,9),(19052,149214,'Capt. Monroe',2,10),(13074,2231,'Champ',2,0),(13074,2299,'Erik Kenman Jr.',2,1),(13074,21278,'Ralph Metz',2,2),(13074,10742,'Andrea Flak',1,3),(13074,2208,'Joyce Kernan',1,4),(13074,234479,'Teddy Kernan',2,5),(13074,50347,'Polly',1,6),(13074,95519,'Marciano',2,7),(13074,80380,'Kristen Shaw',1,8),(28211,1231,'Catherine Stewart',1,0),(28211,3896,'David Stewart',2,1),(28211,71070,'Chloe Sweeney',1,2),(28211,41883,'Michael Stewart',2,3),(28211,91600,'Frank',2,4),(28211,19961,'Anna',1,5),(28211,125579,'Receptionist',0,6),(28211,12487,'Bimsy',1,7),(28211,63858,'Alicia',1,8),(28211,125581,'Trina',1,9),(28211,27004,'Miranda',1,10),(28211,125582,'Party Guest',1,11),(28211,1160260,'Waitress',1,12),(28211,1160261,'Waitress 2',0,13),(28211,1160262,'Bartender',2,14),(28211,1228319,'Eliza',1,15),(28211,64308,'Young Co-Ed',1,16),(28211,1565624,'Nurse',0,17),(28211,141217,'Student 1',2,18),(24227,60705,'Terry McCain',2,0),(24227,2714,'Devlin',2,1),(24227,15152,'Jake',0,2),(24227,4521,'Sal DiMarco',2,3),(24227,19384,'Frankie Hawkins',2,4),(24227,20562,'Fat Tommy',2,5),(24227,42558,'Anna Gilmour',1,6),(17043,559670,'Himself',0,0),(17043,559671,'Herself',0,1),(17043,45586,'Brozzie Drewitt',1,2),(17043,1371,'Sam Flynn',2,3),(17043,75122,'Robert Wheeler',2,4),(17043,144081,'Ron Buckwhiler',2,5),(17043,936397,'Vaughan Archer',0,6),(17043,57278,'Jo Buckley',1,7),(17043,75121,'Deputy Director Reynolds',2,8),(17043,61905,'Deputy Director Ansell',2,9),(17043,152490,'Anne Milking',0,10),(17043,203017,'CIA Agent',0,11),(17043,26059,'CIA Agent',2,12),(17043,190826,'Dr. Weinberger',0,13),(13435,15543,'Antwone Quenton \'Fish\' Fisher',2,0),(13435,77078,'Antwone Fisher Age 7',2,1),(13435,77079,'Antwone Fisher Age 14',0,2),(13435,5292,'Dr. Jerome Davenport',2,3),(13435,52847,'Cheryl Smolley',1,4),(13435,53918,'Berta Davenport',1,5),(13435,59847,'Pork Chop',0,6),(13435,16666,'Slim',2,7),(13435,954656,'Nadine',1,8),(13435,19492,'Eva May',1,9),(17187,8945,'William Hundert',2,0),(17187,46593,'Sedgewick Bell',2,1),(17187,6368,'Elizabeth',1,2),(17187,52602,'James Ellerby',2,3),(17187,52995,'Headmaster Woodbridge',2,4),(17187,17185,'Miss Johnston',1,5),(17187,44735,'Louis Masoudi',2,6),(17187,17142,'Martin Blythe',2,7),(17187,122551,'The Nun',1,8),(26688,20848,'Ellie',1,0),(26688,54499,'Cassidy',1,1),(26688,78324,'Claire',1,2),(26688,83285,'Jessica',1,3),(26688,96015,'Bra-Clad Sister',1,4),(26688,96016,'Danny',0,5),(26688,96017,'Trampoline Sister',0,6),(26688,96018,'Amazed Senior Guy',2,7),(26688,96019,'Over-It Sister',1,8),(26688,96020,'Thwarted Guy',0,9),(26688,79793,'Chugs',1,10),(26688,81015,'Megan',1,11),(26688,71467,'Garret',2,12),(26688,47628,'Andy',2,13),(26688,96021,'Mrs. Tappan',1,14),(26688,96022,'Nerdy Underclassman',0,15),(26688,4,'Mrs. Crenshaw',1,16),(26688,96023,'Maggie',1,17),(26688,34202,'Kyle',2,18),(26688,96024,'Mickey',2,19),(26688,96025,'Dr. Rosenberg',0,20),(26688,96027,'Already Drunk Sister',1,21),(26688,96028,'Senator Pitts',0,22),(26688,1261684,'Joanna',1,23),(26688,96029,'Riley',1,24),(26688,96031,'Slutty Sister',0,25),(26688,96032,'Hot Guy',0,26),(26688,84227,'Katie',1,27),(26688,96033,'Sea Pig',0,28),(26688,96034,'Nau00eeve Girl #1',0,29),(26688,96035,'Nau00eeve Girl #2',0,30),(26688,96036,'Stoned Dude',0,31),(26688,96037,'Ditzy Sister',0,32),(26688,96038,'Bucky',0,33),(26688,96039,'Wasted Guy',0,34),(26688,73410,'Christina',1,35),(26688,1620492,'Core Sorority Sister',1,36),(14574,77996,'Bruno Hoess',2,0),(14574,224188,'Shmuel',2,1),(14574,21657,'Elsa Hoess',1,2),(14574,11207,'Ralf Hoess',2,3),(14574,36669,'Lieutenant Kurt Kotler',2,4),(14574,54014,'Pavel',2,5),(14574,234072,'Gretel Hoess',0,6),(14574,93839,'Grandma Nathalie',1,7),(14574,961840,'Maria',1,8),(14574,77997,'Leon',2,9),(14574,1252551,'Palm Court Singer',0,10),(14574,20510,'Grandpa',2,11),(14574,14950,'Mr. Liszt',2,12),(14574,1728070,'Martin',0,13),(14574,77999,'Karl',0,14),(14574,1117339,'Berlin Cook',0,15),(14574,76475,'Lars',0,16),(14574,1296078,'Lieutenant Meinberg',0,17),(14574,1037718,'Schultz',0,18),(21612,4690,'Ray Tempio',2,0),(21612,2969,'Chez Tempio',2,1),(21612,18750,'Jean',1,2),(21612,6588,'Clara Tempio',1,3),(21612,22461,'Johnny',2,4),(21612,1121,'Gaspare',2,5),(21612,15370,'Helen',0,6),(21612,87707,'Sali',2,7),(21612,54041,'Ghouly',2,8),(21612,2561,'Julius',2,9),(21612,87708,'Ray Sr',0,10),(21612,87709,'Sentieri',0,11),(21612,17933,'Young Ray',2,12),(21612,87710,'Young Chez',0,13),(21612,87711,'Middle Chez',0,14),(21612,42715,'Bridgette',1,15),(23631,11160,'Machete',2,0),(23631,17647,'Luz',1,1),(23631,56731,'Sartana Rivera',1,2),(23631,380,'Senator John McLaughlin',2,3),(23631,49265,'April Booth',1,4),(23631,11159,'Padre Cortez',2,5),(23631,23880,'Rogelio Torrez',2,6),(23631,57675,'Julio',2,7),(23631,25129,'Von Jackson',0,8),(23631,20495,'Michael Booth',2,9),(23631,11161,'Osiris Amanpour',2,10),(23631,122416,'Tristana',0,11),(23631,53763,'Culebra Cruzado',2,12),(23631,1375113,'Jorge',0,13),(23631,825,'Doc Franklin',2,14),(23631,87312,'Edgar McGraw',0,15),(23631,968889,'Von\'s Henchman',2,16),(23631,74242,'Sniper',2,17),(23631,64189,'Reporter',1,18),(23631,1569849,'Doc Felix',0,19),(23631,567627,'Nurse Mona',1,20),(23631,1569850,'Nurse Lisa',0,21),(23631,1569851,'Nurse Fine',0,22),(23631,557299,'Chica (Naked Girl)',1,23),(23631,91264,'Chief',0,24),(23631,1325945,'Rico',2,25),(23631,1569852,'June',0,26),(23631,1467941,'Luis',0,27),(23631,529943,'Machete\'s Wife',0,28),(12144,44055,'Littlefoot',2,0),(12144,71447,'Cera',1,1),(12144,16216,'Ducky',1,2),(12144,40352,'Petrie',2,3),(12144,3798,'Narrator',2,4),(12144,4160,'Littlefoot\'s Mother',1,5),(12144,26044,'Grandfather',2,6),(12144,109761,'Daddy Topps',2,7),(11658,16962,'Lee Jin-Tae',0,25),(11658,70336,'Lee Jin-seok',2,26),(11658,70337,'Kim Young-Shin',1,27),(11658,70338,'Yong-Man',0,28),(11658,1405970,'Recruiting officer',0,29),(11658,1254059,'Lee Jin-Seok\'s grandaughter',0,30),(11658,64880,'North Korean commander',2,32),(11658,1432841,'Mother',1,33),(11658,86329,'Sergeant Huh',0,34),(11658,1257643,'Lee Jin-Seok (old)',2,35),(11658,1564078,'North Korean boy solider',0,36),(11658,63445,'Yong-Seok',2,37),(11658,77058,'Adviser',2,38),(11658,138505,'North Korean war prisoner',1,39),(11658,138531,'Anti-Communist Federation member',2,40),(11658,1137390,'Excavation team leader',0,41),(10136,776,'Chandler Jarrell',2,0),(10136,4391,'Sardo Numspa',2,1),(10136,42558,'Kee Nang',1,2),(10136,11395,'The Old Man',2,3),(10136,97695,'Tommy Tong',2,4),(10136,559312,'The Golden Child',1,5),(10136,20904,'Doctor Hong',2,6),(10136,5177,'Til',0,7),(10611,9778,'Calvin Palmer',2,0),(10611,18471,'J.D.',2,1),(10611,5726,'Eddie',2,2),(10611,11868,'Jimmy James',2,3),(10611,230176,'Terri Jones',0,4),(10611,11827,'Hustle Guy',2,5),(10611,31711,'Isaac Rosenberg',2,6),(10611,8177,'Ricky Nash',2,7),(10611,65827,'Lester Wallace',2,8),(10611,1631215,'Angry Woman',1,9),(10611,98298,'Billy',2,10),(10611,216140,'Customer Dante',0,11),(13335,68842,'Harold Lee',2,0),(13335,53493,'Kumar Patel',2,1),(13335,41686,'Neil Patrick Harris',2,2),(13335,52997,'Ron Fox',2,3),(13335,21675,'Deputy Frye',2,4),(13335,45566,'Dr. Jack Beecher',2,5),(13335,74409,'Colton Graham',2,6),(13335,22227,'Grand Wizard',2,7),(13335,81164,'Vanessa Fanning',1,8),(13335,1294,'Raylene',1,9),(13335,586269,'Tammi',0,10),(13335,1226531,'Raymus',0,11),(13335,21124,'Maria',1,12),(13335,208259,'Venus',0,13),(13335,105657,'Kenny',2,14),(13335,347335,'Terry Air Marshal',2,15),(13335,1471959,'Light-Skinned Black Security',2,16),(13335,1744702,'Jacuzzi Girl',1,17),(13335,1393519,'Terrorist (uncredited)',0,18),(10269,10400,'Yentl',0,0),(10269,25503,'Avigdor',2,1),(10269,27563,'Hadass',1,2),(10269,3160,'Reb \'Papa\' Mendel',2,3),(10269,21521,'Reb Alter Vishkower',0,4),(10269,6199,'Sarah',1,5),(10269,26685,'Yeshiva Student',2,6),(17130,111946,'Lucy Wagner',0,0),(17130,8691,'Kit',1,1),(17130,343,'Mimi',1,2),(17130,56675,'Ben',2,3),(17130,707,'Pete Wagner',2,4),(17130,15033,'Henry',2,5),(17130,94818,'Young Lucy Wagner',1,6),(17130,2109,'Caroline',1,7),(17130,1491922,'Talent Organizer',0,8),(11202,862,'Gen. George S. Patton Jr.',2,0),(11202,9857,'Gen. Omar N. Bradley',2,1),(11202,40551,'Capt. Chester B. Hansen',2,2),(11202,15650,'Brig. Gen. Hobart Carver',0,3),(11202,12431,'General Bradley\'s driver',2,4),(11202,1089965,'Moroccan minister',2,5),(11202,13733,'Lieutenant Colonel Henry Davenport',2,6),(11202,58495,'Captain Richard N. Jenson',2,7),(11202,32021,'Field Marshal Erwin Rommel',2,8),(11202,15186,'General Patton\'s driver',2,9),(11202,198025,'First Lieutenant Alexander Stiller',0,10),(11202,3342,'Sergeant William George Meeks',2,11),(11202,15625,'Colonel Gaston Bell',0,12),(11202,93949,'Lieutenant General Harry Buford',2,13),(11202,558445,'Air Vice-Marshal Sir Arthur Coningham',2,14),(11202,18964,'Colonel General Alfred Jodl',0,15),(11202,35826,'Captain Oskar Steiger',2,16),(11202,2267,'Field Marshal Sir Bernard Law Montgomery',2,17),(11202,160494,'Lieutenant Colonel Charles R. Codman',2,18),(11202,200911,'Air Chief Marshal Sir Arthur Tedder',2,19),(11202,13331,'General Sir Harold Alexander',2,20),(11202,2651,'Major General Walter Bedell Smith',2,21),(11202,183207,'Colonel John Welkin',2,22),(11202,141494,'Third Army chaplain',2,23),(11202,120676,'Clergyman',2,24),(11202,106726,'Correspondent',2,25),(11202,89065,'Major General Francis de Guingand',2,26),(11202,34130,'Major General Lucian K. Truscott',2,27),(11202,163280,'Soldier Who Gets Slapped',2,28),(11202,1089966,'Willy',2,29),(11202,87473,'Tank Captain',2,30),(11202,1047752,'British briefing officer',2,31),(11202,1022040,'Soldier (uncredited)',2,32),(11202,153085,'Lieutenant Young (uncredited)',2,33),(11202,43800,'Soldier (uncredited)',2,34),(11202,16417,'Voice (voice) (uncredited)',2,35),(11202,1089967,'Knustford Welcome Club Dignitary (uncredited)',1,36),(11202,32526,'Major Dorian von Haarenwege (uncredited)',2,37),(11202,1089968,'Cynical Wounded Soldier (uncredited)',2,38),(11202,589823,'Himself - Movietone News Narrator (voice) (uncredited)',2,39),(11202,116645,'American GI Cook (uncredited)',2,40),(11202,35958,'Officer Callagher (uncredited)',0,41),(13812,53828,'Angela Vidal',1,0),(13812,2202,'Scott Percival',2,1),(13812,19487,'Jake',2,2),(13812,51670,'George Fletcher',2,3),(13812,31132,'Danny Wilensky',2,4),(13812,65699,'James McCreedy',2,5),(13812,1118,'Yuri Ivanov',2,6),(13812,19974,'Lawrence',2,7),(13812,156739,'Bernard',2,8),(13812,37046,'Sadie',1,9),(13812,65760,'Kathy',1,10),(13812,125025,'Briana',1,11),(13812,81681,'Randy',2,13),(13812,1464826,'Nadif',0,14),(13812,17005,'Thin Infected Man',2,15),(13812,66560,'Hazmat Doctor',2,16),(19084,5726,'Nate Johnson / Uncle Earl',2,0),(19084,27011,'Dorothy Johnson',1,1),(19084,82587,'Mack Johnson',2,2),(19084,155783,'Jacqueline',1,3),(19084,58197,'D.J. Johnson',0,4),(19084,68609,'Nikki Johnson',1,5),(19084,159962,'Dancer',1,6),(19084,117642,'Navarro',2,7),(19084,21596,'Chrishelle Rene Boudreau',1,8),(19084,49551,'Glorietta Johnson',1,9),(19084,1216509,'Jill',0,10),(10437,3895,'Ebenezer Scrooge',2,0),(10437,65294,'Ghost of Christmas Present (performer)',0,1),(10437,65297,'Belle',0,3),(10437,65294,'Ghost of Christmas Yet to Come',0,4),(10437,1048575,'Young Scrooge (first)',0,5),(10437,64181,'The Great Gonzo as Charles Dickens / Robert Marley / Dr. Bunsen Honeydew / Betina Cratchit / Rat / Zoot',2,7),(10437,235418,'Additional Muppet Performer',0,8),(10437,1116866,'Additional Muppet Performer',0,9),(10437,291223,'Additional Muppet Performer',0,10),(10437,978,'Fred',2,11),(10437,62967,'Clara',0,12),(10437,1221466,'Ghost of Christmas Past (voice)',0,13),(10437,1771344,'Old Joe (voice)',0,14),(10437,115115,'Young Scrooge',0,15),(10437,1253291,'Young Scrooge',0,16),(10437,1290037,'Young Scrooge',0,17),(10437,5482,'Young Scrooge',2,18),(10437,1793169,'Boy #1',0,19),(10437,1803324,'Boy #2',0,20),(10220,1892,'Mike McDermott',2,0),(10220,1241,'Joey Knish',2,1),(10220,15370,'Jo',0,2),(10220,5725,'Maurice',2,3),(10220,819,'Lester \'Worm\' Murph',2,4),(10220,6949,'Teddy KGB',2,5),(10220,10696,'Petra',1,6),(10220,2641,'Abe Petrovsky',2,7),(10220,171476,'Irving',0,8),(10220,1392770,'Russian Thug',0,9),(10220,155549,'Kenny',2,10),(10220,130724,'Sy',0,11),(10220,1392772,'Tony',0,12),(10220,33489,'Zagosh',2,13),(10220,87131,'Savino',2,14),(10220,162508,'Henry Lin',0,15),(10220,1392773,'Russian Thug #2',0,16),(10220,37157,'Moogie',0,17),(10220,227986,'Professor Eisen',0,18),(10220,205575,'D.A. Shields',2,19),(10220,49835,'Judge Marinacci',2,20),(10220,49835,'Judge Kaplan',2,21),(10220,1392774,'Professor Green',0,22),(10220,1392775,'Roy',2,23),(10220,180435,'Dowling',0,24),(10220,127070,'Derald',0,25),(10220,1392776,'Prison Guard',0,26),(10220,1392777,'Property Guard',0,27),(10220,25972,'Barbara',1,28),(10220,92276,'Wagner',2,29),(10220,1392778,'Birch',0,30),(10220,1392780,'Steiny',0,31),(10220,61659,'Higgins',2,32),(10220,131007,'Griggs',2,33),(10220,100567,'Kelly',0,34),(10220,122268,'Roman',2,35),(10220,18313,'Grama',2,36),(10220,1392781,'Taj Dealer',0,37),(10220,66657,'Guberman',2,38),(10220,1392782,'Freddy Face',0,39),(10220,1392783,'Claude',0,40),(10220,1392784,'Judge McKinnon',0,41),(10220,1239073,'Johnny Chan',0,42),(10220,1392785,'Sherry',0,43),(10220,60121,'LaRossa',0,44),(10220,1392786,'Sunshine',0,45),(10220,20215,'Eisenberg',2,46),(10220,1392787,'Taki',0,47),(10220,177424,'Zizzo',2,48),(10220,171688,'Cronos',0,49),(10220,1237372,'Johnny Gold',0,50),(10220,6181,'Weitz',2,51),(10220,17487,'Bartender',2,52),(10220,61607,'Sean Frye',2,53),(10220,1186169,'Vitter',0,54),(10220,22821,'Osborne',2,55),(10220,1392788,'Bear',0,56),(10220,155547,'Detweiler',2,57),(10220,154649,'Cabbie',2,58),(31915,3094,'Maggie Verne',1,0),(31915,2962,'Dr. Robert Verne',2,1),(31915,23346,'John Hawks',2,2),(31915,15413,'Isley',2,3),(31915,136105,'Ramona Hawks',0,4),(31915,1008314,'M\'Rai',2,5),(31915,58494,'Pilot',2,6),(31915,58494,'Cellist',2,7),(31915,109761,'Father',2,8),(31915,198327,'Girl',1,9),(31915,1394109,'Boy',0,10),(31915,1338109,'Kelso',2,11),(11601,4724,'Tom Witzky',2,0),(11601,49824,'Maggie Witzky',1,1),(11601,7796,'Lisa Weil',1,2),(11601,14721,'Frank McCarthy',0,3),(11601,119521,'Harry Damon',2,4),(11601,19293,'Sheila McCarthy',1,5),(11601,69979,'Jake Witzky',0,6),(11601,1060579,'Bobby',0,7),(11601,191611,'Vanessa Damon',0,8),(11601,946311,'Lenny',2,9),(11601,41421,'Samantha Kozac',1,10),(11601,55546,'Debbie Kozac',1,11),(11354,11148,'Terry Ann Wolfmeyer',1,0),(11354,1269,'Denny Davies',2,1),(11354,21711,'Andy Wolfmeyer',1,2),(11354,41292,'Emily Wolfmeyer',1,3),(11354,3128,'Hadley Wolfmeyer',1,4),(11354,38940,'Lavender \'Popeye\' Wolfmeyer',1,5),(11354,24173,'Adam \'Shep\' Goodman',2,6),(11354,1780381,'Gordon Reiner',2,7),(11354,62880,'David Junior',2,8),(11354,53917,'Grey Wolfmeyer',2,9),(11354,1321560,'Darlene',1,10),(11354,162413,'Gina',1,11),(16241,8487,'Dr. Josef Mengele',2,0),(16241,3359,'Ezra Lieberman',2,1),(16241,2091,'Eduard Seibert',2,2),(16241,27932,'Esther Lieberman',1,3),(16241,93051,'Frieda Maloney',1,4),(16241,26472,'Barry Kohler',2,5),(16241,656,'Sidney Beynon',2,6),(16241,18998,'Mrs. Doring',1,7),(16241,82863,'Henry Wheelock',2,8),(16241,44261,'David Bennett',2,9),(16241,2310,'Professor Bruckner',2,10),(16241,32394,'Mrs. Curry',1,11),(16241,6610,'Mundt',0,12),(16241,14121,'Lofquist',2,13),(16241,3796,'Mr. Harrington',2,14),(16241,96177,'Nancy',1,15),(16241,3617,'Farnbach',2,16),(16241,1808342,'Jack Curry / Simon Harrington / Erich Doring / Bobby Wheelock',0,17),(14191,34847,'Claire Brown',1,0),(14191,57855,'Hailey Rogers',0,1),(14191,60072,'Aquamarine',1,2),(14191,94791,'Raymond',2,3),(14191,20373,'Cecilia Banks',1,4),(14191,79966,'Ginny Rogers',1,5),(14191,27752,'Leonard',2,6),(14191,94792,'Marjorie',1,7),(14191,94793,'Grandpa Bob',2,8),(14191,77561,'Grandma Maggie',1,9),(14191,75949,'Storm Banks',2,10),(14191,94795,'Bonnie',1,11),(14191,94796,'Patty',1,12),(14191,94797,'Beth-Ann',1,13),(14191,94798,'Theo',2,14),(14191,61918,'Nick',2,15),(14191,1115764,'Little Boy',0,16),(14191,1182814,'Beach Girl',1,17),(14191,1596812,'Vince',2,18),(14191,1664833,'Pool Guy',2,19),(14191,1618510,'Shop Assistant (uncredited)',1,20),(14191,15274,'Actress (uncredited)',1,21),(14191,91563,'Carnie (uncredited)',0,22),(26710,62842,'Lonnie',2,0),(26710,18471,'G',2,1),(26710,11486,'Dominic',2,2),(26710,5384,'No Good (Randall)',2,3),(26710,45245,'Rolonda',1,4),(26710,39126,'XiXi',1,5),(34549,15789,'Max Keeble',2,0),(34549,62760,'Megan',1,2),(34549,4496,'Lily Keeble',1,4),(34549,1211,'Principal Elliot T. Jindraike',2,5),(34549,15760,'Robe',2,6),(34549,149010,'Dobbs',2,7),(34549,51392,'Caption Writer',2,8),(34549,166944,'Worried Kid',2,9),(34549,77079,'Yearbook Photographer',0,10),(34549,156940,'Techie Kid',2,11),(34549,62761,'Bus Prankster',2,12),(34549,66527,'Runty Band Member',2,13),(34549,155937,'First Eighth Grader',2,14),(34549,151228,'Second Eighth Grader',2,15),(34549,143330,'Eighth Grader On Bike',2,16),(34549,1131549,'Eighth Grader In Gym',0,17),(34549,1131550,'Julius Klinghoffer',0,18),(34549,62122,'Himself',0,19),(34549,1131551,'Four Year Old Max',0,20),(34549,159483,'Six Year Old Troy',0,21),(34549,112086,'Food Fight Chess Player',2,22),(34549,981033,'Pudgy 7th Grader',0,23),(34549,179557,'Adorable 6 Yr. Old Girl',0,24),(34549,94983,'Pimply 7th Grader',0,25),(34549,1131552,'Kelly Lloyd',0,26),(34549,80352,'Troy McGinty',2,27),(34549,1423420,'Skater Wannabe',2,28),(28353,77896,'Drayton Jackson',2,0),(28353,154341,'Lisa',1,1),(28353,1897,'Buster',2,2),(28353,21215,'Nadine',1,3),(14976,1813,'Kym',1,0),(14976,14892,'Rachel',1,1),(14976,60898,'Walter',2,2),(14976,946221,'Rosa',0,3),(14976,58549,'Paul',2,4),(14976,63279,'Carol',1,5),(14976,26513,'Abby',1,6),(14976,120831,'Quick Stop Cashier',1,7),(14976,282835,'Kieran',2,8),(14976,94476,'Sidney',0,9),(14976,965129,'Violin Friend',0,10),(14976,1212135,'Singing Friend',0,11),(14976,1768631,'Emma',0,12),(14976,164094,'Angela Paylin',1,13),(14976,1520857,'Wedding Czar',2,14),(14976,1669954,'Bridesmaid',0,15),(14976,1465486,'12-Step Receptionist',0,16),(14976,51188,'12-Step Group Leader',2,17),(14976,1237385,'12-Step Reader',0,18),(14976,225378,'12-Step First-Timer',0,19),(14976,167564,'12-Step Meeting Member',0,20),(14976,1720917,'12-Step Meeting Member',1,21),(14976,1716737,'12-Step Meeting Member',0,22),(14976,1020057,'12-Step Meeting Member',1,23),(14976,77091,'Rachel\'s Stylist',0,24),(14976,552526,'Inspired Stylist',2,25),(14976,171375,'Andrew',0,26),(14976,1359560,'Wedding Valet',0,27),(14976,1212619,'Wedding Guest',2,28),(14976,102429,'Wedding Guest',2,29),(14976,1534627,'Wedding Guest',2,30),(14976,205797,'Wedding Guest',1,31),(14976,40103,'Wedding Guest',2,32),(14976,1698392,'Wedding Guest',1,33),(14976,1318900,'Wedding Guest',2,34),(11027,514,'Frank Chambers',2,0),(11027,4431,'Cora Papadakis',1,1),(11027,15765,'Nick Papadakis',2,2),(11027,4250,'Mr. Katz',2,3),(11027,5657,'Madge',1,4),(11027,15213,'Kennedy',2,5),(11027,124602,'Sackett',2,6),(11027,29754,'Motorcycle Cop',2,7),(11027,1407038,'Mortenson',0,8),(11027,156411,'Art Beeman',0,9),(11027,1062,'Salesman',2,10),(11027,41262,'Goebel',2,11),(11027,55960,'Ringmaster',0,12),(11027,124435,'Barlow',2,13),(11027,31705,'Ticket Clerk',2,14),(11027,1843371,'Granddaughter',0,15),(11027,87714,'Crapshooter',2,16),(11027,8954,'Crapshooter',2,17),(11027,591,'Crapshooter',2,18),(11027,1380009,'Shoeshine Man',2,19),(11027,172280,'Matron',1,20),(11027,167369,'Judge',0,21),(11027,77027,'Man from Home Town',2,22),(11027,182590,'Insurance Salesman',2,23),(11027,13243,'Twin Oaks Customer',2,24),(11027,117011,'Twin Oaks Customer',0,25),(11027,175066,'Twin Oaks Customer',1,26),(11027,122076,'Greek Mourner',0,27),(14299,3490,'Leonard Chess',2,0),(14299,2954,'Muddy Waters',2,1),(14299,14386,'Etta James',1,2),(14299,17773,'Geneva Wade',1,3),(14299,31132,'Little Walter',2,4),(14299,5726,'Willie Dixon',2,5),(14299,59192,'Revetta Chess',1,6),(14299,19299,'Howlin\' Wolf',2,7),(14299,4239,'Chuck Berry',2,8),(14299,1359054,'James Cotton',0,10),(14299,6067,'Mr. Feder',2,11),(14299,4886,'Chess Engineer',2,12),(14299,1001687,'Manager',0,13),(14299,1217957,'Jimmy Rogers',0,14),(14299,109563,'Girlfriend',1,15),(14299,164382,'Hubert Sumlin',0,16),(14299,93609,'Maid',0,17),(14299,1449249,'Pot Strong',0,18),(14299,172123,'Minnie Ripperton',0,19),(14299,118494,'Shelly Feder',1,20),(14299,79795,'Phil Chess',2,21),(14299,1237531,'Charles Waters',0,22),(14299,10866,'Alan Freed',2,23),(14299,16859,'Isabelle Allan',1,24),(14299,120253,'Lomax',2,25),(14299,1585133,'Blonde Girl',0,26),(14299,1036196,'Geneva\'s Teenage Son',2,27),(19419,77075,'Willard Fillmore',0,0),(19419,4169,'Rusty P. Hayes',2,1),(19419,518,'Grover Cleaver',2,2),(19419,36802,'Miss Crock',1,3),(19419,58663,'Detective Tom Dewey',2,4),(19419,83976,'Chip Oswald',2,5),(19419,7404,'Hillary',1,6),(12088,38559,'John Henry Brennick',2,0),(12088,2115,'Prison Director Poe',2,1),(12088,51641,'Karen B. Brennick',1,2),(12088,5365,'Nino Gomez',2,3),(12088,27993,'D-Day, the Computer Geek',2,4),(12088,104907,'Abraham',2,5),(12088,27736,'Stiggs',2,6),(12088,26491,'Maddox',2,7),(12088,37028,'Zed-10',1,8),(12088,1282301,'Claustrophobic Prisoner',0,9),(12088,1090466,'Karen\'s Cellmate',0,10),(12088,175999,'Border Guard',0,11),(12088,62748,'Bio Scanner Guard',0,12),(12088,62748,'Pregnant Woman',0,13),(12088,1282302,'Guard #1',0,14),(14799,11514,'Marilyn Hack',0,0),(14799,6008,'Victor Allan Miller',2,1),(14799,7489,'Callie Webb',1,2),(14799,1242215,'Brian Chubb',0,3),(14799,8265,'Corey Taft',2,4),(14799,217402,'Pam Campanella',1,5),(14799,26510,'Morley Orfkin',2,6),(14799,43775,'Cindy',1,7),(14799,20753,'Chuck',2,8),(14799,38334,'Whitney Taylor Brown',1,9),(14799,13524,'Jay Berman',2,10),(14799,120560,'Simon Whitset',2,11),(14799,42157,'Sandy Lane',2,12),(14799,12438,'Philip Koontz',2,13),(14799,21731,'Lane Iverson',2,14),(14799,78437,'Studio Gate Guard',0,15),(14799,53863,'Junior Agent',2,16),(14799,17835,'Martin Gibb',2,17),(14799,75463,'Hate It Film Critic',2,18),(14799,27530,'Love It Film Critic',2,19),(14799,46074,'Mary Pat Hooligan',1,20),(14799,21125,'Marketing Person',2,21),(14799,25540,'Marketing Person',1,22),(14799,15900,'Paper Badge Sergeant',2,23),(14799,17697,'Paper Badge Officer',2,24),(14799,1223703,'Whitney\'s Assistant',0,25),(14799,66580,'First PA',2,26),(14799,14886,'Talk Show Host',2,27),(31246,155488,'Kelly',1,0),(31246,1022712,'Justin',0,1),(31246,1223005,'Dancer',0,2),(31246,1231280,'Brandon',0,3),(31246,1213580,'Eddie',0,4),(31246,179688,'Carlos',0,5),(31246,149679,'Greg',0,6),(31246,1292849,'Luke',0,7),(31246,1230889,'Darren',0,8),(31246,168733,'Alexa',1,9),(31246,15563,'Kaya',1,11),(31246,213957,'Officer Cutler',1,12),(31246,945235,'Ashley',1,13),(31246,1775915,'Brianna',1,14),(31246,6908,'Mr. O\'Mara',2,15),(31246,945237,'Lizzie',1,16),(31246,1775916,'Vee Jay',0,17),(31246,1215574,'Vee Jay #2',0,18),(31246,1775917,'Motel Clerk',0,19),(31246,1233811,'Bracelet Girl',1,20),(31246,1775918,'Hot Girl',1,21),(31246,1503030,'Insulted Girl',1,22),(31246,1775919,'Volleyball Player',0,23),(31246,1775920,'Girl',1,24),(31246,1775921,'Bathroom Girl #2',1,25),(31246,1101431,'Dancer',1,26),(31246,1775922,'Dancer',1,27),(31246,101688,'Dancer',0,28),(31246,1752805,'Dancer',0,29),(31246,1775924,'Dancer',1,30),(31246,1775925,'Dancer',0,31),(31246,1093123,'Dancer',1,32),(31246,101687,'Dancer',1,33),(31246,1775926,'Dancer',0,34),(31246,996296,'Dancer',2,35),(31246,1775927,'Dancer',0,36),(31246,58368,'Dancer',2,37),(31246,59544,'Dancer',1,38),(31246,1775929,'Dancer',1,39),(31246,1336896,'Dancer',0,40),(31246,1775931,'Dancer',0,41),(31246,1725128,'Dancer',1,42),(31246,1229700,'Dancer',1,43),(31246,1775932,'Dancer',0,44),(31246,1775933,'Dancer',0,45),(31246,209049,'Dancer',2,46),(31246,1775934,'Dancer',0,47),(31246,1752319,'Dancer',1,48),(31246,1775935,'Dancer',2,49),(31246,29216,'Dancer',0,50),(31246,1775936,'Dancer',0,51),(31246,1775937,'Dancer',0,52),(10944,5344,'Frannie',1,0),(10944,103,'Detective Malloy',2,1),(10944,10431,'Pauline',1,2),(10944,67580,'Detective Rodriguez',2,3),(10944,67581,'Angela Sands',1,4),(10944,4724,'John Graham',2,5),(10362,73421,'Leonard',2,0),(10362,12052,'Michelle',1,1),(10362,6588,'Ruth',1,2),(10362,5025,'Sandra',1,3),(10362,562949,'Reuben Kraditor',0,4),(10362,13550,'Ronald Blatt',2,5),(10362,144582,'Michael Cohen',0,6),(10362,1660981,'Waiter',2,7),(10362,1758879,'Leonard\'s Ex-Fiancu00e9e',1,8),(10362,83726,'Bystander',0,9),(10362,163794,'Bystander #2',2,10),(10362,1617456,'Lady with Baby Carriage',1,11),(10362,1758884,'Another Bystander',0,12),(10362,1758885,'Some Kid',0,13),(10362,124877,'Carol Cohen',1,14),(10362,1758886,'David Cohen',0,15),(10362,93621,'Stephanie',1,16),(10362,979432,'Dayna',1,17),(10362,1758888,'Antonio',0,18),(10362,1758889,'Bouncer',0,19),(10362,1758890,'Maitre d\'',0,20),(10362,1758891,'DJ Juice',0,21),(10362,28046,'Receptionist',1,22),(10362,171754,'Nurse',0,23),(10362,1006136,'Jeweler',0,24),(10362,1758894,'Old Man',0,25),(10362,1758895,'New Year\'s Eve Partygoer #1',0,26),(10362,1758896,'New Year\'s Eve Partygoer #2',0,27),(10362,1741834,'New Year\'s Eve Partygoer #3',1,28),(10362,1758897,'Background Break Dancer',0,29),(10362,1758898,'Background Break Dancer',0,30),(10362,1116540,'Background Break Dancer',0,31),(10362,1189078,'Background Break Dancer',1,32),(10362,1758902,'Background Break Dancer',0,33),(10362,1758903,'Background Break Dancer',0,34),(10362,1758904,'Background Break Dancer',0,35),(10362,1758906,'Background Break Dancer',0,36),(10362,1758907,'Man Kissing Girl',0,37),(10362,1544551,'Ruth\'s Best Friend',1,38),(10362,115982,'Waitress',1,39),(10362,1179424,'Livery Driver',0,40),(10362,133442,'Rescue Worker',0,41),(10362,1639432,'Club Patron',0,42),(10362,1302821,'Upscale Opera Guest',2,43),(10362,1758909,'Uncle',0,44),(10362,1401102,'Cab Driver',0,45),(10362,1691380,'Ronald\'s Driver',0,46),(14778,3895,'Jack',2,0),(14778,14011,'Vic',2,1),(14778,15196,'Lenny',2,2),(14778,382,'Ray',2,3),(14778,15735,'Amy',1,4),(14778,5538,'Vince',2,5),(14778,30710,'Young Jack',2,6),(14778,235344,'Young Vic',0,7),(14778,1232094,'Young Lenny',0,8),(14778,1225863,'Young Ray',0,9),(14778,17521,'Young Amy',1,10),(14778,71770,'Young Vince',2,11),(14778,26131,'Bernie',2,12),(14778,26131,'June',2,13),(14778,136041,'Mandy',1,14),(10212,529,'Captain John Boyd',2,0),(10212,18023,'Colonel Ives / F.W. Colqhoun',2,1),(10212,15234,'Private Cleaves',2,3),(10212,4654,'Private Toffler',2,4),(10212,2203,'Private Reich',2,5),(10212,57093,'Knox',2,6),(10212,97058,'George',0,7),(10212,45397,'Lindus',2,8),(10212,56441,'Martha',1,9),(10212,4004,'Col. Hart',2,10),(10212,34691,'Gen. Slauson',2,11),(16857,46593,'Francis Doyle',2,0),(16857,18793,'Tim Sullivan',0,1),(16857,1038,'Sister Assumpta',1,2),(16857,7132,'Father Casey',2,3),(16857,20089,'Margie Flynn',1,4),(16857,177165,'Wade Scalisi',2,5),(16857,31535,'Mrs. Doyle',1,6),(15907,111176,'Xan',0,0),(15907,55152,'Peter',2,1),(15907,111177,'Thandi',1,2),(15907,111178,'Lucille',0,3),(15907,15250,'Kristin',1,4),(15907,111179,'Aunt Gwen',1,5),(15907,111180,'Coach Nagy',2,6),(15907,1503256,'Michael',0,7),(15907,19299,'Ripkuna',2,8),(13079,139,'Diana',1,0),(13079,38940,'Young Diana',1,1),(13079,56757,'Maureen',1,2),(13079,78119,'Emma McFee',1,3),(13079,16841,'Paul McFee',2,4),(13079,25072,'Marcus',2,5),(13079,77023,'Mr. McClood',2,6),(12479,62,'Dwayne Hoover',2,0),(12479,3926,'Kilgore Trout',0,1),(12479,1733,'Harry Le Sabre',2,2),(12479,10767,'Celia Hoover',1,3),(12479,21104,'Francine Pefko',1,4),(12479,526,'George \'Bunny\' Hoover',2,5),(12479,4987,'',2,6),(12479,887,'Monte Rapid',2,7),(12479,883,'Moe The Truck Driver',2,8),(12479,64856,'Howell',2,9),(12479,2138,'Bonnie MacMahon',1,10),(12479,61981,'Eli',2,11),(12479,14723,'Grace Le Sabre',1,12),(10133,18325,'Morgan Sullivan',2,0),(10133,140,'Rita Foster',1,1),(10133,44208,'Finster',2,2),(10133,53720,'Callaway',2,3),(10133,5892,'Virgil C. Dunn',2,4),(10133,5937,'Diane',1,5),(10133,201700,'Amy',1,6),(10133,27810,'Digicorp Technician #1',2,7),(10133,1009769,'Digicorp Technician #2',0,8),(10133,87575,'Pilot In Mensroom',2,9),(10133,955273,'Stewardess to Buffalo',1,10),(10133,20196,'Fred Garfield',2,11),(10133,197164,'Waiter Buffalo',2,12),(10133,193040,'Buffalo Speaker #1',2,13),(10133,55188,'Buffalo Speaker #2',0,14),(10133,38562,'Stewardess to Omaha',1,15),(10133,1054526,'Rita\'s Agent #1',0,16),(10133,1205721,'Rita\'s Agent #2',0,17),(10133,538687,'Speaker Omaha',2,18),(10133,200625,'Desk Clerk Boise',0,19),(10133,1205722,'Hotel Janitor Boise',2,20);
INSERT INTO `movie_cast` VALUES (10133,1165052,'Convention Waiter Boise',2,21),(10133,12489,'Speaker #1 Boise',0,22),(10133,214063,'Speaker #3 Boise',0,23),(10133,185177,'Man In White Coat Boise',2,24),(10133,82647,'Businessman Boise',0,25),(10133,198760,'Elderly Woman In Elevator',1,26),(10133,180873,'Gate 15 Clerk Boise',0,27),(10133,1205723,'Stewardess Boise',0,28),(10133,1205724,'Sunways Security Guard',0,29),(10133,166522,'Sunways Neuro Technician',2,30),(10133,180922,'Sunways Technician #1',0,31),(10133,115854,'Sunways Technician #2',2,32),(10133,68278,'Vault Security',2,33),(10133,1205725,'Pilot #2 In Washroom',0,34),(10133,1205726,'Digicorp Technician #2',0,35),(10133,1205727,'Digicorp Technician #3',0,36),(10133,1205728,'Jamison',0,37),(10133,1205729,'Tomas Street (uncredited)',0,38),(21345,20654,'Lu Jianxiong',2,0),(21345,74022,'Miss Jiang',1,1),(21345,92014,'Kadokawa',0,2),(21345,52907,'John Rabe',2,3),(21345,1335465,'Minnie Vautrin',0,4),(26466,27755,'Jess',1,0),(26466,96066,'Victor',2,1),(26466,62754,'Heather',1,2),(26466,77767,'Sally',1,3),(26466,76068,'Greg',2,4),(26466,993846,'Tommy',2,5),(26466,555945,'Downey',2,6),(26466,1485203,'Jack',0,7),(26466,1014587,'Driver',0,8),(13889,110310,'Professor Hyakken Uchida',0,0),(13889,34374,'Professor\'s Wife',0,1),(13889,96637,'Takayama',2,2),(13889,78348,'Amaki',0,3),(13889,19049,'Kiriyama',0,4),(13889,70132,'Sawamura',2,5),(13889,82969,'Dr. Kobayashi',0,6),(13889,1484347,'Rev. Kameyama',0,7),(13889,111691,'Takayama\'s son',2,8),(13889,110299,'Neighbor',0,9),(13889,135377,'Tada',0,10),(13889,1247296,'Ota',0,11),(13889,7456,'Old lady holding a cat',0,12),(13889,1117087,'Stationmaster',0,13),(13889,233693,'Man who bought the land',0,14),(13889,1484348,'Packhorse driver',0,15),(13889,1270596,'Murayama',0,16),(13889,552542,'Police',0,17),(13889,1484349,'Fishmonger\'s daughter',0,18),(13889,143901,'Landlord',0,19),(13889,1200399,'Kitamura',0,20),(18530,14887,'Robert Forrester',2,0),(18530,12041,'Jenny Thierolf',1,1),(18530,31383,'Nickie Grace',1,2),(18530,268743,'Greg Wyncoop',2,3),(18530,28870,'Mr. Jaffe',2,4),(18530,43257,'Elaine',1,5),(18530,1212960,'Sally Nielson',1,6),(18530,122151,'Lavigne Client',2,7),(18530,557311,'Jack Neilson',2,8),(18530,175206,'Robert\'s Lawyer',2,9),(18530,201811,'Mr. Kolbe',0,10),(18530,182944,'Nickie\'s Lawyer',1,11),(18530,1225652,'Susie Escham',0,12),(18530,1068995,'Bill',0,13),(18530,229,'Sam Rhodes',2,14),(18530,1017085,'Police Officer #1',2,15),(18530,557841,'Police Officer #2',2,16),(18530,87575,'Detective Anderson',2,17),(18530,82647,'Detective Lippenholtz',0,18),(18530,14902,'Mr. Wyncoop',2,19),(11887,29222,'Troy Bolton',2,0),(11887,67599,'Gabriella Montez',1,1),(11887,67600,'Sharpay Evans',1,2),(11887,67601,'Ryan Evans',2,3),(11887,67602,'Chad Danforth',2,4),(11887,180279,'Taylor McKessie',1,5),(11887,208956,'Donny Dion',2,6),(11887,77196,'Zeke Baylor',2,7),(11887,84952,'Kelsi Nielson',1,8),(11887,113868,'Jimmie Zara',2,9),(11887,200823,'Jason Cross',0,10),(11887,964908,'Martha Cox',1,11),(11887,19262,'Ms. Darbus',1,12),(11887,964823,'Tiara Gold',1,13),(11887,1386113,'Principal Dancer',1,14),(12094,9656,'Himself',2,0),(12094,56584,'Himself',2,1),(12094,56585,'Himself',2,2),(12094,56586,'Himself',2,3),(12094,110068,'Himself',2,4),(12094,86627,'Himself',2,5),(12094,78840,'Wee Man',2,6),(12094,76365,'Himself',2,7),(12094,220241,'Himself',2,8),(12094,117289,'Himself',2,9),(12094,117260,'Himself',2,10),(12094,117261,'Himself',2,11),(12094,117287,'Herself',1,12),(12094,164944,'Herself',1,13),(12094,5953,'Himself',2,14),(12094,10367,'Himself',2,15),(12094,16832,'Himself',2,16),(12094,1225764,'Himself',2,17),(12094,1850223,'Himself',2,18),(12094,56578,'Himself',2,19),(12094,117258,'Himself',2,20),(12094,1692535,'Himself',2,21),(12094,56580,'Himself',0,22),(12094,1692541,'Himself',2,23),(12094,61437,'Himself',2,24),(12094,1692536,'Himself',0,25),(12094,61441,'Himself',2,26),(12094,1211925,'Himself',2,27),(12094,1847262,'Himself',0,28),(12094,1713573,'Himself',0,29),(12094,17403,'Himself',2,30),(10377,4517,'Vincent \'Vinny\' Gambini',2,0),(10377,2877,'William \'Billy\' Gambini',2,1),(10377,3141,'Mona Lisa Vito',1,2),(10377,19505,'Stan Rothenstein',2,3),(10377,56266,'Judge Chamberlain Haller',2,4),(10377,14888,'Sheriff Farley',2,5),(10377,65019,'Jim Trotter III',2,6),(10377,6168,'John Gibbons',2,7),(10377,21082,'Ernie Crane',2,8),(10377,8986,'George Wilbur',2,9),(10377,8191,'J.T.',2,10),(10748,66441,'Annabelle Fritton',1,0),(10748,4757,'Camilla Fritton / Carnaby Fritton',2,1),(10748,59620,'Kelly Jones',1,2),(10748,5472,'Geoffrey Thwaites',2,3),(10748,17286,'Miss Dickinson',1,4),(10748,66431,'Beverly',1,5),(10748,59919,'Flash Harry',2,6),(10748,10731,'Miss Bagstock',1,7),(10748,36594,'Celia',1,8),(10748,66442,'Chelsea Parker',1,9),(10748,66444,'Chloe',1,10),(10748,66443,'Peaches',0,11),(10748,95712,'Andrea',1,12),(10748,1215741,'Taylor',0,13),(10748,53688,'Polly',1,14),(10748,118039,'Tara',1,15),(10748,118038,'Tania',1,16),(10748,66446,'Verity Thwaites',1,17),(10748,6973,'Miss Cleaver',1,18),(10748,9139,'Hausmutter',1,19),(10748,13014,'Schatzmeister',2,20),(10748,10916,'Miss Maupassant',1,21),(10748,11275,'Stephen Fry',2,22),(10748,11617,'JJ French',1,23),(10748,1428513,'Anoushka',0,24),(10748,1814901,'Saffron',0,25),(10748,27631,'Chairman of the National Gallery',2,26),(10748,216321,'School Band Member',1,27),(10748,582381,'School Band Member',0,28),(10748,118033,'School Band Member',1,29),(10748,1157690,'School Band Member',0,30),(10748,561257,'School Band Member',0,31),(10229,16855,'Jamie Sullivan',1,0),(10229,81295,'Landon Carter',2,1),(10229,9979,'Reverend Sullivan',2,2),(10229,589,'Cynthia Carter',1,3),(10229,37014,'Belinda',1,4),(10229,59671,'Dean',2,5),(10229,59882,'Tracie',1,7),(10229,1230911,'Clay Gephardt',0,8),(10229,1232540,'Eric',2,9),(10229,1223006,'Walker',0,10),(10229,7219,'Mr. Kelly',2,11),(10229,56112,'Dr. Carter',2,12),(10229,1749189,'Luis',0,13),(10229,1567465,'Ms. Garber',1,14),(10229,1230927,'Sally',1,15),(10229,1148729,'Eddie Zimmerhoff',0,16),(10229,1749190,'Security Guard',0,17),(10229,1202533,'Maitre\'d',0,18),(10229,1749191,'Church Lady',1,19),(10229,1749192,'Housekeeper',1,20),(10229,91836,'Policeman',0,21),(10229,29214,'School Play Dancer',1,22),(10229,20744,'Pianist',0,23),(10229,1749193,'Dean\'s Dad',0,24),(10229,1055184,'Restaurant Patron',1,25),(10229,1534853,'Do-Gooder',1,26),(10229,1098578,'High School Student',1,27),(10229,20739,'Medical Assistant',2,28),(10229,1479120,'High School Student',0,29),(10229,1534844,'Gangly Boy',0,30),(10229,52490,'Mr. Worth Carter',2,31),(22804,2144,'Jigsaw / John',2,0),(22804,36055,'Hoffman',2,1),(22804,22434,'Jill',1,2),(22804,6576,'Erickson',2,3),(22804,12978,'William',2,4),(22804,2138,'Amanda',1,5),(22804,59222,'Harold',2,6),(22804,268743,'Aaron',2,7),(22804,51037,'Agent Perez',1,8),(22804,1241157,'Simone',1,9),(22804,952336,'Pamela Jenkins',1,10),(22804,188600,'Eddie',2,11),(22804,1649211,'Allen',2,12),(22804,1649240,'Addy',1,13),(22804,54650,'Janitor',2,14),(22804,284032,'Debbie',1,15),(22804,205082,'Tara',1,16),(22804,90498,'Brent',2,17),(22804,66145,'Dave',2,18),(22804,55593,'Josh',2,19),(22804,207491,'Gena',1,20),(22804,139419,'Shelby',1,21),(22804,55572,'Emily',1,22),(22804,51041,'Cecil',2,23),(22804,1649256,'Sachi',1,24),(22804,727467,'Female Addict',1,25),(22804,1385369,'Male Addict',2,26),(22804,139619,'Female Officer',0,27),(22804,563644,'Irate Clinic Woman',2,28),(22804,1564635,'Security Guard',2,29),(22804,166457,'Clinic Nurse',1,30),(22804,106644,'Coroner',2,31),(22804,193040,'Newscaster',2,32),(22804,51042,'Corbett Denlon',1,33),(10156,14639,'Moses/Comicus/Torquemada/Jacques/King Louis XVI',2,0),(10156,6844,'Emperor Nero',2,1),(10156,29803,'Empress Nympho',1,2),(10156,13640,'Count de Monet',2,3),(10156,9599,'Madame Defarge',1,4),(10156,72680,'Swiftus',2,5),(10156,66804,'Josephus',2,6),(10156,43805,'Mademoiselle Rimbaud',1,7),(10156,27514,'Marcus Vindictus',2,8),(10156,8902,'Chief Caveman',2,9),(10156,71676,'Miriam',1,10),(10156,40,'Narrator',2,11),(10156,67674,'Prehistoric Man / Captain Mucus - The Roman Empire',0,12),(10156,175037,'Prehistoric Woman',0,13),(10156,108100,'Prehistoric Man',2,14),(10156,191765,'Prehistoric Man',0,15),(10156,165723,'Prehistoric Man',2,16),(10156,157507,'Prehistoric Man',2,17),(10156,152917,'Prehistoric Man / Disciple - The Roman Empire',0,18),(10156,140079,'Prehistoric Man',1,19),(10156,790,'Prehistoric Man',2,20),(10156,27517,'Court Spokesman - The Roman Empire',2,21),(10156,168211,'Soothsayer - The Roman Empire',2,22),(10156,43950,'Competence - The Roman Empire',1,23),(10156,47773,'Roman Officer - The Roman Empire',2,24),(10156,47845,'Stoned Soldier #1 - The Roman Empire',2,25),(10156,62590,'Stoned Soldier #2 - The Roman Empire',2,26),(10156,15212,'Leonardo DaVinci - The Roman Empire',2,27),(10156,1081856,'Caladonia - The Roman Empire',0,28),(10156,99939,'Chemist - The Roman Empire',2,29),(10156,119855,'Lt. Bob - The Roman Empire',2,30),(10156,13821,'Maitre \'D - The Roman Empire',2,31),(10156,31309,'Entrepreneur - The Roman Empire',2,32),(10156,45611,'Plumbing Salesman - The Roman Empire',2,33),(10156,8246,'Column Salesman - The Roman Empire',2,34),(10156,41749,'Small Liar - The Roman Empire',2,35),(10156,5049,'Jesus - The Roman Empire',2,36),(10156,1144012,'Queen - The French Revolution',1,37),(10156,15788,'Citizen Official - The French Revolution',0,38),(10156,79473,'Dole office clerk (uncredited)',1,39),(12837,501,'Lily Owens',1,0),(12837,15758,'August Boatwright',1,1),(12837,15565,'Rosaleen Daise',1,2),(12837,2598,'May Boatwright',1,3),(12837,72208,'June Boatwright',1,4),(12837,142374,'Violet',1,5),(12837,6162,'T. Ray Owens',2,6),(12837,53060,'Zach Taylor',2,7),(12837,35472,'Deborah Owens',1,8),(12837,112742,'Young Lily',1,9),(12837,77277,'Neil',2,10),(17708,58317,'Corky Romano',2,0),(17708,5025,'Agent Kate Russo',1,1),(17708,2314,'Francis A. \'Pops\' Romano',2,2),(17708,36602,'Paulie Romano',2,3),(17708,2969,'Peter Romano',2,4),(17708,10430,'Leo Corrigan',2,5),(17708,6487,'Howard Shuster',2,6),(17708,263229,'Agent Bob Cox',2,7),(17708,35701,'Agent Terrence Darnell',2,8),(17708,9289,'Angry Gunman',2,9),(17708,47774,'Tony',2,10),(17708,1219313,'Florence',1,11),(17708,1219226,'Agent Brick Davis',0,12),(17708,161783,'Dr. Kipper',2,13),(17708,160707,'Dale',2,14),(13937,12074,'Carter / Cain / Dr. Nix / Josh / Margo',2,0),(13937,12139,'Jenny',1,1),(13937,1159,'Jack Dante',2,2),(13937,36926,'Dr. Lynn Waldheim',1,3),(13937,2518,'Lt. Terri',2,4),(13937,19453,'Sgt, Cully',2,5),(13937,25306,'Sarah',1,6),(13937,31185,'Karen',0,7),(13937,175483,'Nan',1,8),(13937,79732,'Mack',2,9),(13937,1682271,'Amy',0,10),(13937,1682272,'Emma',0,11),(13937,1326007,'Coroner',0,12),(13937,1006368,'Saleslady',0,13),(13937,1682273,'Gardener',0,14),(13937,1682274,'Gardener',0,15),(13937,1682275,'Newscaster',0,16),(13937,1682277,'Peters',2,17),(13937,1682278,'Little Boy (Josh)',0,18),(13937,1682279,'Receptionist',0,19),(13937,1682280,'Weatherman',0,20),(13937,1181261,'Young Detective',0,21),(28932,16483,'Johnny Kovak',2,0),(28932,522,'Senator Madison',2,1),(28932,1039,'Max Graham',2,2),(28932,4778,'Anna Zarinkas',1,3),(28932,66811,'Abe Belkin',2,4),(28932,15183,'Babe Milano',2,6),(28932,14852,'Andrews',2,7),(28932,6197,'Frank Vasko',2,8),(28932,1735,'Lincoln Dombrowsky',2,9),(28932,13732,'Mike Monahan',2,10),(28932,15310,'Kevin Kovak',2,11),(28932,14888,'Hitman',2,12),(28932,100648,'Dave Roberts',2,13),(28932,27116,'Vince Doyle',2,14),(31909,8963,'Linda Magnusson',1,0),(31909,9892,'David Gardner',2,1),(31909,19207,'George Gardner',2,2),(31909,35159,'Ellen Gardner',1,3),(31909,14852,'Gen. Climet Wilson',2,4),(31909,4971,'Mark Weinstein',2,5),(31909,7071,'Mrs. McKeltch',1,6),(31909,155996,'Sgt. Maj. Rinaski',2,7),(31909,157169,'Captain Curtis',2,8),(31909,1546547,'Heather',1,9),(31909,1212743,'Officer Kenney',2,10),(31909,62846,'Mr. Cross',2,11),(31909,1193702,'Kevin',2,12),(31909,1888921,'Doug',0,13),(31909,77015,'Ed, Heather\'s Father',2,14),(31909,20117,'Corporal Walker',1,15),(31909,1504123,'Hollis',2,16),(31909,1888922,'Johnson',0,17),(31909,14854,'Old NASA Scientist',2,18),(31909,87751,'Police Chief',2,19),(31909,83978,'NASA Scientist',2,20),(31909,3211,'Squad Leader',2,21),(31909,1517894,'Marine Officer',0,22),(31909,99856,'Demolition Man',0,23),(31909,19753,'Drone',1,24),(31909,19754,'Drone',2,25),(31909,1430595,'Drone',2,26),(31909,1172386,'Young Marine / Drone',0,27),(14369,52474,'Rick Rambis',2,0),(14369,18589,'John Majors',2,1),(14369,58225,'Luke',2,2),(14369,72689,'Inga',1,3),(14369,28638,'Stumpy',2,4),(14369,1542,'Ted Muntz',2,5),(14369,17236,'Jenny',1,6),(14369,31383,'Anna',1,7),(14369,109686,'Anthony',2,8),(14369,100372,'Pig Pen',2,9),(14369,75465,'Papa Muntz',2,10),(16888,51857,'Leon Phelps',2,0),(16888,80987,'Julie Simmons',1,1),(16888,3799,'Lester',0,2),(16888,56902,'Scrap Iron',2,3),(16888,17414,'Candy',1,4),(16888,7400,'Barney',2,5),(16888,23659,'Lance DeLune',2,6),(16888,52628,'Cheryl',1,7),(16888,26510,'Bucky Kent',2,8),(16888,5922,'Frank',2,9),(16888,1543320,'Wrestler',0,10),(16888,236327,'Hal',2,11),(16888,58955,'Mail Man',2,12),(16888,59154,'Theresa',1,13),(16888,1231,'Audrey',1,14),(16888,19187,'Honey DeLune',1,15),(16888,27448,'Cyrus Cunningham',2,16),(16888,87575,'V.S.A. Member',2,17),(16888,113244,'V.S.A. Member',0,18),(16888,84730,'V.S.A. Member',2,19),(16888,117571,'Hugh Hefner',2,20),(16888,56867,'Mr. White',2,21),(16888,51382,'Phil Swanson',0,22),(10646,3035,'Michael Delaney jack',2,0),(10646,21596,'Officer Natalie Parker',1,1),(10646,28410,'Kyle Brenner',2,2),(10646,52117,'Steve',2,3),(10646,10939,'Officer Hurley',2,4),(10646,56824,'Tricia',1,5),(10646,28010,'Dr. Crawford',2,6),(10646,74086,'Carlos (uncredited)',2,7),(10646,501,'Little Girl in Park',1,8),(12149,2053,'Father Meiks',2,0),(12149,10297,'Adam Meiks',2,1),(12149,6280,'FBI-Agent Wesley Doyle',2,2),(12149,71467,'Young Fenton',2,3),(12149,65838,'Young Adam',2,4),(12149,8962,'Sheriff Smalls',2,5),(12149,1032173,'Fenton Meiks',0,6),(12149,1219574,'Agent Griffin Hull',0,7),(12149,53646,'Becky Meiks',0,8),(12149,154649,'Brad White',2,9),(12149,1212913,'Cynthia Harbridge',0,10),(12149,42296,'Operator',1,11),(12149,69503,'Teacher',1,12),(11184,3896,'Alfred Kinsey',2,0),(11184,350,'Clara McMillen',1,1),(11184,5577,'Wardell Pomeroy',2,2),(11184,133,'Clyde Martin',2,3),(11184,16327,'Paul Gebhard',2,4),(11184,12074,'Alfred Seguine Kinsey',2,5),(11184,13472,'Thurman Rice',2,6),(11184,52776,'Agnes Gebhard',1,7),(11184,19152,'Alan Gregg',2,8),(11184,86034,'Alice Martin',1,9),(11184,6573,'Kenneth Braun',2,10),(11184,13728,'Huntington Hartford',2,11),(11184,5047,'Sara Kinsey',1,12),(11184,52003,'Barbara Merkle',1,13),(11184,52996,'Martha Pomeroy',1,14),(11184,17485,'Herman Wells',2,15),(11184,432040,'Bruce Kinsey',2,16),(11184,17697,'Ben',2,17),(11184,1495342,'Student',2,18),(11184,150212,'Female Student #2',1,19),(20009,41088,'Sam Schechter',2,0),(20009,50398,'Dave Goodman',2,1),(20009,17881,'Ethan Dulles',2,2),(20009,5915,'Angela Patton',1,3),(20009,6941,'Cameron Diaz',1,4),(20009,18974,'Reanna',1,5),(20009,945734,'Jeff Davis',2,6),(20009,161932,'Head T.A. Philip',2,7),(20009,75318,'Bruna',0,8),(20009,16183,'Japanese Proctor',2,9),(20009,1589963,'Hot Twin #1',1,10),(20009,11150,'Girl at Trendy Club',1,11),(30973,290,'Narrator (voice)',2,0),(30973,31166,'Jesus Christ',2,1),(30973,107398,'John',2,2),(30973,10210,'Simon Peter',2,3),(30973,107399,'Pontius Pilate',0,4),(30973,99183,'Judas Iscariot',2,5),(30973,107400,'Virgin Mary',0,6),(30973,2968,'Leading Pharisee',0,7),(30973,32559,'John the Baptist',0,8),(30973,72708,'Mary Magdalene',1,9),(30973,107401,'Nicodemus',0,10),(30973,107403,'Samaritan Woman',1,11),(30973,107405,'Nathanael',0,12),(30973,107407,'Philip',0,13),(30973,105492,'Blind Man',2,14),(30973,10511,'Lame Man',0,15),(30973,107411,'Young Levite',0,16),(30973,107412,'Elderly Levite',0,17),(11109,11356,'Vera Drake',1,0),(11109,39658,'Susan',1,1),(11109,26863,'George',2,2),(11109,1665,'Reg',2,3),(11109,68046,'Nellie',1,4),(11109,72305,'Mrs. Wells',1,5),(11109,1670,'Sid',2,6),(11109,16273,'Mr. Wells',2,7),(11109,40477,'Sid\'s Customer',2,8),(11109,40311,'Frank',2,9),(11109,53367,'Lily',1,10),(11109,110872,'Kenny',2,11),(11109,29237,'Kenny',2,12),(11109,80366,'Jessie Barnes',1,13),(11109,17476,'Det. Inspector Webster',2,14),(11109,30328,'Det. Sergeant Vickers',2,15),(11109,388,'Judge',2,16),(11109,976738,'Ethel',0,17),(11109,1645,'Vera\'s Mother',1,18),(11109,47944,'Mr. Walsh',2,19),(11109,72307,'Mrs. Fowler',1,20),(11109,5421,'David',2,21),(11109,36668,'Very Young Woman',0,22),(11109,185464,'Mother of Seven',1,23),(11109,122589,'Sick Husband',2,24),(11109,42998,'Cynical Lady',1,25),(11109,78018,'Psychiatrist',2,26),(11109,6973,'Susan\'s Confidante',1,27),(11109,1239068,'Cynical Lady',0,28),(11109,151949,'Married Woman',1,29),(11109,90046,'Pamela Barnes',1,31),(11109,2964,'Private Doctor',2,32),(11109,37052,'Ivy',1,33),(11109,192838,'Prison Officer',1,35),(11109,72308,'Magistrate',2,36),(11109,43024,'Mr. Lewis',2,37),(11109,192944,'Police Constable',2,38),(11109,72311,'WPC Best',1,39),(11109,162489,'Ruffian',2,40),(11109,209994,'Joyce',0,41),(11109,26854,'Stan',2,42),(11109,75564,'Very Young Man',2,43),(11109,29237,'Ronny',2,44),(11109,1008518,'Child',0,45),(11109,1253259,'Child',0,46),(11109,1447221,'Child',0,47),(11109,1235293,'Dance Hall Girl',0,48),(11109,17075,'Peggy',0,49),(11109,1278123,'Nurse Willoughby',0,50),(11109,21679,'Jamaican Girl',0,51),(11109,298767,'Station Sergeant',0,53),(11109,94956,'Station Constable',2,54),(11109,1220347,'Magistrate\'s Clerk',0,55),(11109,1390502,'Prosecution Barrister',0,56),(11109,26121,'Defence Barrister',0,57),(11109,174700,'Prisoner',1,58),(11109,1246598,'Prisoner',0,59),(11109,1387292,'Court Reporter (uncredited)',2,60),(11109,1209055,'Policeman in Court (uncredited)',0,61),(11109,72318,'Nurse',2,62),(11109,1335336,'Sister Beecher',0,63),(11065,327,'Odin James',2,0),(11065,2299,'Hugo Goulding',2,1),(11065,40979,'Michael Cassio',2,2),(11065,12041,'Desi Brable',1,3),(11065,8349,'Coach Duke Goulding',2,4),(11065,96922,'Emily',0,5),(11065,20220,'Roger Calhoun',2,6),(11065,234948,'Assistant Coach',2,7),(11065,11512,'Dean Brable',2,8),(11065,1212118,'Brandy',0,9),(13888,63,'Lilli',1,2),(13888,69405,'Richard',2,3),(13888,115888,'Sarah Hargrave',1,4),(13888,115889,'Young Lilli',1,5),(13888,76239,'Young Richard',2,6),(13888,1230555,'Capt. Jacob Hilliard',0,8),(13888,1634950,'Infant Lilli',0,9),(13888,1634951,'Infant Richard',0,10),(13888,1230347,'Sylvia Hilliard',0,11),(13888,75716,'Quinlan',0,12),(13888,1231086,'Giddens',0,13),(13888,12367,'First Captain',2,14),(13888,82434,'Kearney',2,15),(13888,1429986,'Penfield',0,16),(13888,44843,'First Mate',2,17),(13994,4691,'Nick Murder',2,0),(13994,4038,'Kitty',1,1),(13994,204,'Tula',1,2),(13994,884,'Angelo',2,3),(13994,16855,'Baby',1,4),(13994,18248,'Constance',1,5),(13994,4690,'Cousin Bo',2,6),(13994,1926,'Gene Vincent',2,7),(13994,106791,'Rosebud',0,8),(13994,21127,'Fryburg',2,9),(13994,1241,'Male Dancer & Singer',2,10),(11917,2144,'John Kramer',2,0),(11917,36055,'Mark Hoffman',2,1),(11917,50020,'Agent Strahm',2,2),(11917,22434,'Jill',1,3),(11917,6576,'Dan Erickson',2,4),(11917,35551,'Brit',1,5),(11917,54793,'Charles',2,6),(11917,22122,'Luba',1,7),(11917,2138,'Amanda Young',1,8),(11917,231,'Mallick',2,9),(11917,139616,'Special Agent Cowan',1,10),(11917,51042,'Corbett Denlon',1,11),(14395,35742,'Dev Saran',2,0),(14395,35776,'Maya Talwar',1,1),(14395,35745,'Riya Saran',1,2),(14395,35793,'Rishi Talwar',0,3),(14395,35780,'Samarjit \'Sam\' Talwar',2,4),(14395,52971,'Guest Appearance',2,5),(14395,35777,'Kamaljeet Saran',1,6),(14395,87305,'Arjun Saran',0,7),(14395,55061,'Special Appearance in Rock n Roll Soniye Song',1,8),(14395,52263,'Jai',2,9),(14395,35736,'Guest Appearance',2,10),(24137,112,'Lady Gertrude Chiltern',1,0),(24137,6613,'Miss Mabel Chiltern',1,1),(24137,4757,'Lord Arthur Goring',2,2),(24137,1231,'Mrs. Laura Cheveley',1,3),(24137,18325,'Sir Robert Chiltern',2,4),(24137,386,'Phipps',2,5),(11056,10690,'Regina',1,0),(11056,5313,'Maria',1,1),(11056,20508,'Mark',2,2),(11056,3753,'Albert Rua',2,3),(11056,1602,'Carlos',2,4),(11056,1418163,'Paul',0,5),(11056,123212,'Villalobos',0,6),(13067,5344,'Sarah Hardwicke',1,0),(13067,37917,'Lucy Hardwicke',1,1),(13067,11702,'Carter Webb',2,2),(13067,10080,'Agnes Webb',1,3),(13067,3019,'Phyllis',1,4),(13067,2139,'Paige Hardwicke',1,5),(13067,3623,'Sofia Buu00f1uel',1,6),(13067,272773,'Teenage Girl',1,7),(13067,154955,'Teenage Girl',1,8),(13067,137424,'Teenage Girl',1,9),(13067,76533,'Avi Rosenberg',2,10),(13067,53117,'Eric Watts',2,11),(13067,1225895,'Gabe Foley',2,12),(13067,208143,'Tiffany',1,13),(13067,983583,'Tanya',1,14),(13067,117525,'Teenager',2,15),(13067,9048,'Nelson Hardwicke',2,16),(13067,1450759,'Nelson\'s Assistant',1,17),(13067,417,'Janey',1,18),(13067,58395,'Dr. Ida Rosen',1,19),(13067,1753432,'Howard Portchnik',0,20),(13067,1753433,'Party Girl',1,21),(13067,1753435,'Party Girl',1,22),(13067,1753436,'Shopper',1,23),(13067,1469207,'Passerby',0,24),(25379,112600,'Pete',2,0),(25379,54818,'Teresa Carlton',0,1),(25379,227,'Alan Osborne',2,2),(25379,17688,'Alejo',2,3),(25379,66934,'Presenter',2,4),(25379,1560822,'Jana',0,6),(14877,10127,'Jacob Samuelson',2,0),(14877,36810,'Emily Hudson',1,1),(14877,42626,'Jonathan Samuelson',2,2),(14877,12139,'Nancy Dunlap',1,3),(14877,21721,'Joseph Smith',2,4),(14877,28641,'Brigham Young',2,5),(14877,117431,'Captain Fancher',2,6),(14877,1583195,'Captain Baker',0,7),(14877,1538856,'Reverend Grant Hudson',0,8),(14877,129056,'Martha Hudson',1,9),(14877,86969,'Robert Humphries',2,10),(14877,9629,'John D. Lee',2,11),(14877,66741,'Micah Samuelson',2,12),(10890,1532,'John Winger',2,0),(10890,1524,'Russell Ziskey',2,1),(10890,8255,'Sgt. Hulka',2,2),(10890,15500,'Stella Hansen',1,3),(10890,586,'Louise Cooper',1,4),(10890,7180,'Dewey \'Ox\' Oxberger',2,5),(10890,14101,'Capt. Stillman',2,6),(10890,95140,'Stillman\'s Aid',0,7),(10890,4942,'Cruiser',2,8),(10890,119776,'Col. Glass',2,9),(10890,105361,'Anita',0,10),(10890,61671,'Psycho',2,11),(10890,777,'Elmo',2,12),(10890,4204,'Hector',0,13),(10890,154237,'Border Guard',2,14),(10890,2053,'Soldier',2,15),(10314,33260,'Zach Siler',2,0),(10314,38581,'Laney Boggs',1,1),(10314,26457,'Brock Hudson',2,2),(10314,8167,'Dean Sampson',2,3),(10314,58006,'Taylor Vaughan',1,4),(10314,10690,'Mackenzie Siler',1,5),(10314,20387,'Misty',1,6),(10314,18793,'Simon Boggs',0,7),(10314,7166,'Wayne Boggs',2,8),(10314,57553,'Alex',1,9),(10314,20220,'Jesse Jackson',2,10),(10314,57108,'Campus D.J.',0,11),(10314,17773,'Katie',1,12),(10314,122756,'Preston',0,13),(10314,15012,'Savannah',0,14),(10314,11863,'Cafeteria Girl',1,15),(10314,102313,'Chandler',1,16),(10314,21561,'',2,17),(10314,88161,'',1,18),(10314,19578,'',1,19),(10314,56574,'',2,20),(10314,26999,'',2,21),(10314,154295,'',2,22),(11804,2232,'Jonathan Rivers',2,0),(11804,54634,'Anna Rivers',1,1),(11804,13549,'Sarah Tate',1,2),(11804,3547,'Raymond Price',2,3),(11804,42710,'Mirabelle Keegan',0,4),(11804,83023,'Jane',1,5),(11804,65202,'Mike Rivers',2,6),(11804,64674,'Detective Smits',2,7),(11804,168455,'Police Woman',0,8),(11804,62916,'Minister',0,9),(11804,62914,'Susie Tomlinson',1,10),(11804,1182649,'Work Man',2,11),(11804,153849,'Mary Freeman',0,12),(11804,172843,'Business Man',0,13),(11804,137971,'Car Crash Woman',1,14),(11804,77222,'Young Father',2,15),(11804,1750715,'Doctor',0,16),(11804,172847,'Mark',2,17),(11804,75532,'TV Reporter',1,18),(11804,45428,'John\'s Secretary',1,19),(16781,80602,'Madea / Brian / Joe',2,0),(16781,56871,'Carlos',2,1),(16781,16217,'Victoria',1,2),(16781,80758,'Frankie',2,3),(16781,80759,'Vanessa',0,4),(16781,54424,'May',1,5),(16781,80760,'Lisa',1,6),(16781,15899,'Milay Jenay Lori',1,7),(16781,80761,'Donna',1,8),(16781,74688,'Nikki',1,9),(16781,67913,'Issac',2,10),(16781,18249,'Myrtle',1,11),(16781,75641,'Nima',0,12),(16781,80767,'Jonathan',0,13),(16781,80768,'Tre',0,14),(16781,80769,'Ruby',0,15),(16781,80611,'Aunt Sarah',1,16),(16781,80770,'Grover',2,17),(16781,80771,'Uncle Pete',0,18),(16781,37825,'Isaac Sr.',2,19),(16781,80772,'Stripper Policeman',0,20),(16781,80773,'Judge Ephriam',0,21),(16781,80774,'Bailiff #1',0,22),(16781,80775,'Kid #1',0,23),(16781,80776,'Carlos\' Woman Friend',1,24),(16781,80777,'Carlos\' Man Friend',0,25),(16781,80778,'Tyrequa',0,26),(16781,80779,'Hykeem',0,27),(16781,80780,'Miss Samuel',0,28),(16781,80781,'Poet / MC',0,29),(16781,80782,'Female at Reunion',0,30),(16781,80783,'Young Man at Reunion',0,31),(16781,80784,'Secretary',1,32),(16781,80785,'Man on the Bus',0,33),(16781,80786,'Singer / Reverend',0,34),(16781,80787,'Reverend',0,35),(16781,80831,'',0,36),(11873,3636,'Fast Eddie Felson',2,0),(11873,500,'Vincent Lauria',2,1),(11873,1161,'Carmen',1,2),(11873,4160,'Janelle',1,3),(11873,1241,'Julian',2,4),(11873,8854,'Orvis',2,5),(11873,947670,'Earl at Chalkies',2,6),(11873,1265392,'Kennedy',0,7),(11873,1178314,'Child World Customer #1',0,8),(11873,54887,'Diane at Bar',1,9),(11873,1277,'Lou in Child World',2,10),(11873,57597,'Guy in Crowd',2,11),(11873,1051092,'Child World Customer #2',1,12),(11873,1265393,'Referee #1',0,13),(11873,170941,'Two Brothers/Stranger Player',0,14),(11873,1265394,'Congratulating Spectator',0,15),(11873,1265395,'Chuck the Bartender',0,16),(11873,58535,'Player in Casino Bar',2,17),(11873,1265396,'Guy at Janelle\'s',0,18),(11873,1265397,'Congratulating Spectator',0,19),(11873,1264489,'Grady Seasons',0,20),(11873,1242130,'Julian\'s Friend in Green Room',0,21),(11873,1265398,'Dud',0,22),(11873,1265399,'Casino Bar Band Singer/Julian\'s Flirt',0,23),(11873,1264490,'Duke',0,24),(11873,1265400,'Congratulating Spectator',0,25),(11873,1265401,'Narrator - Resorts International',0,26),(11873,1039590,'Moselle\'s Opponent',0,27),(11873,992589,'Third Latin Guy',0,28),(11873,59399,'First Latin Guy',2,29),(11873,1265402,'Referee #2',0,30),(11873,1222016,'Eye Doctor',0,31),(11873,1265403,'Tom',0,32),(11873,13604,'Skinny Player on the Road',0,33),(11873,2989,'Guy Who Calls Dud',0,34),(11873,148306,'Second Latin Guy',0,35),(11873,1265404,'Bartender Who Bets',0,36),(11873,1265405,'Casino Bar Band Member',0,37),(11873,1006721,'High Roller #1',2,38),(11873,1265406,'Congratulating Spectator',0,39),(11873,1265407,'Waitress',0,40),(11873,1265408,'Chief Justice Tournament',0,41),(11873,1265409,'High Roller #2',0,42),(11873,1265410,'Casino Bar Band Member',0,43),(11873,112045,'Casino Clerk',0,44),(11873,2178,'Amos',2,45),(11873,1265411,'Casino Bar Band Member',0,46),(11873,4943,'Moselle',0,47),(11873,1265412,'Dog Walkby',0,48),(10414,2880,'Gordon Bombay',2,0),(10414,14324,'Hans',2,1),(10414,65019,'Coach Jack Reilly',2,2),(10414,65038,'Casey Conway',1,3),(10414,14792,'Mr. Gerald Ducksworth',2,4),(10414,11866,'Charlie Conway',2,5),(10414,147499,'Greg Goldberg',2,6),(10414,20220,'Fulton Reed',2,8),(10414,277101,'Tommy Duncan',2,9),(10414,22223,'Connie Moreau',1,10),(10414,1658382,'Philip Banks',2,11),(10414,181081,'Terry Hall',2,12),(17917,41236,'Fagin',2,0),(17917,129437,'Nancy',1,1),(17917,936,'Bill Sikes',2,2),(17917,125459,'Bumble',2,3),(17917,25638,'Oliver',2,4),(17917,140029,'The Artful Dodger',0,5),(17917,10021,'Magistrate',0,6),(17917,88894,'Mr. Brownlow',2,7),(17917,43798,'Mrs. Bumble',1,8),(17917,249,'Sowerberry',2,9),(17917,200323,'Mrs. Sowerberry',1,10),(17917,26258,'Noah Claypole',2,11),(17917,47398,'Mrs. Bedwin',1,12),(19405,158165,'',2,1),(19405,166818,'',2,2),(19405,129388,'Gretchen Grundler',0,3),(19405,55961,'Gus Griswald',2,4),(19405,21063,'Ashley Spinelli',1,5),(19405,12850,'Principal Peter Prickly',2,6),(19405,128621,'Michael \'Mikey\' Blumberg',2,7),(19405,78501,'Becky Detweiller',1,8),(19405,60741,'Miss Muriel P. Finste',0,9),(19405,16479,'',2,10),(10999,1100,'John Matrix',2,0),(10999,13312,'Cindy',1,1),(10999,6486,'Arius',2,2),(10999,26491,'Bennett',2,3),(10999,65508,'Major General Franklin Kirby',2,4),(10999,1737,'Sully',2,5),(10999,24967,'Jenny Matrix',1,6),(10999,1103,'Cooke',2,7),(10999,52188,'Lawson',2,8),(10999,1183969,'Leslie',0,9),(10999,105089,'Forrestal',0,10),(10999,156869,'Jackson',2,11),(10999,999672,'Harris',0,12),(10999,48136,'Diaz',2,13),(10999,1228048,'Western Flight Attendant',1,14),(10999,16474,'Cates',2,15),(10999,114696,'Girl in Bed at Motel',1,16),(10999,106730,'Vega',2,17),(10999,2053,'Intercept Officer',2,18),(10426,9778,'Craig',2,0),(10426,51944,'Day-Day / Old Man with Shotgun',2,1),(10426,56902,'Mr. Jones',2,2),(10426,65132,'Uncle Elroy',2,3),(10426,54800,'Mrs. Jones',1,4),(10426,58924,'Pinky',2,5),(10426,73830,'Donna',1,6),(10426,98902,'Mrs. Pearly',1,7),(10426,58926,'Money Mike',2,8),(10426,98904,'Santa Claus',0,9),(10426,53256,'Damon',2,10),(10426,2252,'Moly',2,11),(13938,77298,'Leroy Green',2,0),(13938,77299,'Sho\'nuff (Shogun of Harlem)',2,1),(13938,45481,'Laura Charles',1,2),(13938,4256,'Eddie Arkadian',2,3),(13938,41505,'Angela Viracco',1,4),(13938,170932,'Richie Green',0,5),(13938,5170,'Rock',2,6),(13938,74828,'Daddy Green',2,7),(13938,1293078,'Johnny Yu',0,8),(13938,58210,'Tai',2,9),(13938,3905,'J.J,',2,10),(10163,20495,'Jobe Smith',2,0),(10163,517,'Dr. Lawrence Angelo',2,1),(10163,64056,'Marnie Burke',1,2),(10163,15443,'Sebastian Timms',2,3),(10163,18071,'Terry McKeen',2,4),(10163,78690,'Father Francis McKeen',2,5),(10163,14329,'The Director',2,6),(10163,175960,'Caroline Angelo',1,7),(10163,31006,'Lieutenant Goodwin',2,8),(10163,58119,'Peter Parkette',2,9),(10163,104342,'Jake Simpson',2,10),(12182,39995,'Nick',2,0),(12182,52852,'Norah',1,1),(12182,54247,'Thom',2,2),(12182,4433,'Tris',1,3),(12182,71552,'Caroline',1,4),(12182,71553,'Hipster',1,5),(12182,71554,'Lethariot',2,6),(12182,449,'Tal',2,7),(12182,21660,'Dev',2,8),(12182,205854,'Gary',2,9),(12182,62861,'Homeless Man',2,10),(12182,52480,'Jesus',2,11),(12182,13936,'Janitor',2,12),(12182,68842,'Hype Man',2,13),(12182,18472,'Man at Port Authority',2,14),(12182,71551,'Drunk Girl in Yugo',1,15),(12182,62856,'Drunk Guy in Yugo',2,16),(12182,111446,'Bishop Allen',2,17),(12182,1528360,'Ukrainian Waitress',0,18),(12182,181339,'Drunk Kid',0,19),(12182,163866,'Switzerland',2,20),(12182,156591,'Homeless Caroline',0,21),(12182,1584998,'Hipster Dancer (uncredited)',1,22),(15301,13,'Car Driver (Prologue)',2,1),(15301,83810,'Bill Connor (Segment #1)',2,2),(15301,14101,'K.K.K. (Segment #1)',2,3),(15301,12074,'John Valentine (Segment #4)',2,4),(15301,707,'Passenger / Ambulance Driver (Prologue / Segment #4)',2,5),(15301,7077,'Mr. Bloom (Segment #2)',2,6),(15301,56933,'Jr. Stewardess (Segment #4)',0,7),(15301,49357,'Tim (Segment #3)',2,8),(15301,16523,'Narrator (voice) (uncredited)',2,9),(15301,13268,'Narrator (end of Segment #4) (voice) (archive footage) (uncredited)',2,10),(15301,8183,'Helen Foley (Segment #3)',1,11),(15301,102441,'Walter Paisley (Segment #3)',2,12),(15301,61704,'Vietnamese (segment Time Out)',2,13),(15301,1515930,'Mrs. Dempsey (segment Kick the Can)',0,14),(15301,11793,'Miss Cox (segment Kick the Can)',1,15),(15301,200,'Ethel (segment It\'s a Good Life)',1,16),(15301,108775,'Sara (segment It\'s a Good Life)',1,17),(15301,192204,'Little Girl (segment Nightmare at 20,000 Feet)',1,18),(15301,34597,'Uncle Walt (segment It\'s a Good Life)',2,19),(10135,723,'James Dalton',2,0),(10135,6473,'Dr. Elizabeth Clay',1,1),(10135,16431,'Wade Garrett',2,2),(10135,856,'Brad Wesley',2,3),(10135,63941,'Jimmy',2,4),(10135,63942,'Denise',1,5),(10135,60508,'Red Webster',2,6),(10135,79744,'Emmet',2,7),(10135,17770,'Tilghman',2,8),(10135,42746,'Pat McGurn',2,9),(10135,42335,'Carrie',1,10),(10135,106359,'Jack',2,11),(10135,129013,'Younger',2,12),(10135,113506,'Bandstand Bouncer',0,13),(10135,548663,'Party Girl',1,14),(10135,951198,'Cody',2,15),(10135,60292,'Steve',2,16),(10135,13661,'Karpis',2,17),(10135,557539,'Judy (as Sheila Caan)',1,18),(10135,65827,'Ernie Bass',2,19),(10135,11768,'Bandstand Babe',1,20),(10135,104916,'Party Girl',1,21),(10135,1681938,'Party Girl',1,22),(10135,13443,'Strip Joint Girl',1,23),(10135,103856,'Strip Joint Girl',0,24),(10135,99089,'Strip Joint Girl',1,25),(10135,1683081,'Strip Joint Girl',1,26),(10135,33016,'Morgan',2,27),(26352,35689,'Shame',2,0),(26352,17764,'Rothmiller',2,1),(26352,9575,'Peaches',1,2),(26352,53918,'Angela',1,3),(26352,36218,'Mendoza',2,4),(26352,95188,'Wayman',2,5),(26352,48136,'Luis',2,6),(26352,18914,'Captain Nunez',2,7),(26352,95189,'Diane',1,8),(26352,87332,'Bernard',2,9),(26352,27590,'Benny',2,10),(26352,88526,'Mendoza\'s Girl',1,11),(26352,31007,'Mob Boss',2,12),(26352,95190,'Chun Yung Fat',2,13),(26352,95191,'Chad',2,14),(26352,95192,'Hank',2,15),(26352,95193,'Skinhead Speaker',2,16),(26352,95195,'Mr. Gold',2,17),(26352,95196,'Hooker',0,18),(26352,95197,'The John',0,19),(26352,24966,'Lisa',1,20),(26352,92384,'Cop #1',0,21),(26352,95198,'Cop #2',0,22),(26352,95199,'Cop #3',0,23),(26352,95200,'Funeral Guest',1,24),(26352,95201,'Chad\'s Agent',1,25),(26352,95202,'Mailman at Post Office',0,26),(26352,95203,'Maitre\'d',0,27),(26352,95204,'Waitress',0,28),(26352,95205,'Customer #1',0,29),(26352,95206,'Customer #2',0,30),(26352,95207,'Female Lovemaker',0,31),(26352,95208,'Male Lovemaker',0,32),(26352,95209,'Heavy',0,33),(26352,95210,'Body Builder',0,34),(26352,95211,'Man in Bath',0,35),(26352,95212,'Young Police Officer',0,36),(26352,95213,'Hotel Thug',0,37),(26352,42250,'Exotic Dancer',1,38),(26352,95214,'Denise',0,39),(20616,17772,'Ben Cronin',2,0),(20616,21711,'Madison Bell',1,1),(20616,50346,'Amy Miller',1,2),(20616,20879,'Carla Cronin',1,3),(20616,50095,'Randy',2,4),(20616,59671,'Josh',2,5),(20616,6486,'Coach Simkins',2,6),(20616,95519,'Detective John Zabel',2,7),(20616,17184,'Aunt Gretchen Christopher',1,8),(20616,35768,'Christopher Dante',2,9),(20616,5973,'Jake\'s Nurse',1,10),(20616,95503,'Rene',0,11),(20616,2979,'Mr. Tillman',2,12),(20616,1217616,'Mrs. Egan',0,13),(20616,163687,'Janitor',0,14),(20616,132355,'Jock',2,15),(20616,1787735,'Big Man',0,16),(20616,50117,'ER Doctor',2,17),(20616,1184071,'ER Guard',0,18),(20616,1861181,'Petite Nurse',0,19),(20616,1861182,'Passenger Cop',0,20),(20616,1861183,'Police Officer',0,21),(20616,1861184,'Music Nerd',0,22),(20616,1861185,'Parking Garage Cop',0,23),(20616,1233794,'Party Guy',0,24),(20616,1861186,'Priest',0,25),(20616,1196006,'Jake Donnelly',0,26),(20616,578735,'Swim Team Member',0,27),(20616,1454077,'Student',0,28),(20616,10570,'Policeman',0,29),(20616,1861187,'Securty Guard',0,30),(20616,1861188,'Mother',0,31),(15037,33259,'Amanda',1,0),(15037,58019,'Preston',2,1),(15037,13389,'William',2,2),(15037,54470,'Denise',1,3),(15037,56857,'Mike',2,4),(15037,13922,'Kenny',2,5),(15037,56824,'Girlfriend #1',1,6),(15037,59154,'Girlfriend #2',1,7),(15037,63470,'Girlfriend #3',1,8),(15037,1314583,'Guitar Player',0,9),(15037,49002,'Drummer',2,10),(15037,1242281,'Bass Player',0,11),(15037,40279,'The Angel',1,12),(15037,78501,'Vicki',1,13),(15037,33654,'Walter',2,14),(15037,10131,'Earth Girl',1,15),(15037,1212123,'Girl',1,16),(15037,11826,'Girl Mike Hits On #1',1,17),(15037,20387,'Jana',1,18),(15037,41088,'Matt',2,19),(15037,11868,'Ben',2,20),(15037,6862,'T.J.',2,21),(11336,4690,'Johnny Smith',2,0),(11336,69054,'Sarah Bracknell',1,1),(11336,4139,'Sheriff George Bannerman',2,2),(11336,8349,'Greg Stillson',2,3),(11336,14503,'Dr. Sam Weizak',2,4),(11336,2516,'Roger Stuart',2,5),(11336,10559,'Henrietta Dodd',1,6),(11336,14902,'Frank Dodd',2,7),(11336,12643,'Ambulance Driver',2,8),(11336,252,'Herb Smith',2,10),(11336,61185,'Vera Smith',1,11),(11336,1081827,'Sonny Elliman',2,12),(11336,243939,'Alma Frechette',1,13),(11336,12483,'Dardis',2,14),(11336,43429,'Walt',2,15),(11336,103864,'Natalie',0,16),(11336,982406,'Truck Driver',2,18),(11336,133800,'Weizak\'s Mother',1,19),(11336,1351508,'Reporters',0,20),(11336,971538,'Teenage Boy with Camera',2,21),(10984,9205,'Paige Prescott',1,0),(10984,25934,'Adam Carr',2,1),(10984,6407,'Kate Davies',1,2),(10984,2205,'Dorothy Wheeler',1,3),(10984,22126,'Lily Voight',1,4),(10984,25541,'Shelley Fisher',1,5),(10984,41558,'Ruthie Walker',1,6),(10984,65808,'Detective Leon Vaughn',2,7),(10984,203511,'Campbell Morris',2,8),(10984,73589,'Max Raimi',2,9),(10984,63792,'Brian',2,10),(10984,106965,'Jason Marquette',2,11),(10984,168530,'Gary Taylor',2,12),(10984,175255,'Evan Wheeler',0,13),(10984,75532,'Kim Wheeler',1,14),(10984,158582,'Lance',0,15),(10984,105864,'Bookish Guy',0,16),(10984,33348,'Banker',2,17),(10984,42711,'Jock',2,18),(10984,168458,'Shy Guy',2,19),(10984,80352,'Tulga Gang Member #1',2,20),(22824,63,'Abbey',1,0),(22824,883,'Sheriff August',2,1),(22824,2603,'Awolowa Odusami',2,2),(22824,17199,'Tommy Fisher',0,3),(22824,91494,'Scott Stracinsky',2,4),(22824,13550,'Abel Campos',2,5),(22824,113235,'Deputy Ryan',0,6),(22824,113236,'Ashley Tyler',1,7),(22824,89827,'Ronnie Tyler',0,8),(22824,84068,'Theresa',0,9),(22824,113237,'Cindy Stracinski',1,10),(22824,113238,'Sarah Fisher',0,11),(22824,113239,'Timothy Fisher',0,12),(22824,113240,'Joe Fisher',0,13),(22824,113241,'Jessica',0,14),(22824,105692,'Will Tyler',2,15),(22824,1732807,'Ralph',2,16),(22824,1784986,'Dr. Abigail Tyler',0,17),(22824,66792,'Nome Resident',2,18),(22824,22016,'Nome Resident',0,19),(22824,1784988,'Nome Resident',1,20),(22824,62369,'Interviewer',0,21),(15983,51576,'Matt Hunter',2,0),(15983,97878,'Mikhail Rostov',2,1),(15983,105623,'McGuire',0,2),(15983,166204,'Nikko',0,3),(15983,73338,'Tomas',0,4),(15983,8692,'Cassidy',2,5),(15983,78719,'Johnston',2,6),(15983,1211982,'Harper',0,7),(15983,1275,'Mickey',2,8),(15983,8257,'Castillo',0,9),(15983,106769,'John Eagle',0,10),(15983,173827,'Flynn',2,11),(15983,119576,'Kurt',0,12),(15983,119054,'Adams',0,13),(15983,53024,'Koyo',2,14),(15983,1701402,'Terrorist with Tomas',0,15),(15983,321432,'Terrorist with Tomas',0,16),(15983,1434041,'Sick Old Man',2,17),(15983,26651,'Victor',0,18),(15983,1494154,'Carlos',0,19),(15983,111887,'Girlfriend',1,20),(15983,1497250,'Newscaster',0,21),(14544,36811,'Bernard',2,0),(14544,58197,'Xavier \'X\' Smith',0,1),(14544,8687,'Curtis Smith',2,2),(14544,22122,'Naomi Phillips',1,3),(14544,53336,'Junior',2,4),(14544,51944,'Byron',2,5),(14544,83141,'Troy',2,6),(14544,76667,'Sweetness',2,7),(14544,60038,'Boo',2,8),(14544,53184,'Naps',2,9),(14544,59017,'Tori',1,10),(14544,54495,'Mixed Mike',2,11),(14544,98087,'Vivian',1,12),(14544,17840,'Victor',2,13),(11545,17881,'Max Fischer',2,0),(11545,11616,'Rosemary Cross',1,1),(11545,1532,'Herman Blume',2,2),(11545,5950,'Bert Fischer',2,3),(11545,15252,'Dirk Calloway',2,4),(11545,1248,'Dr. Nelson Guggenheim',2,5),(11545,239981,'Margaret Yang',1,6),(11545,935,'Mrs. Calloway',1,7),(11545,36422,'Dr. Peter Flynn',2,8),(11545,71770,'Magnus Buchan',2,9),(11545,8690,'Mr. Littlejeans',2,10),(11545,6279,'Student',1,11),(11545,71555,'Coach Beck',2,12),(15648,5958,'Holly Hamilton',1,0),(15648,58691,'Jean Hamilton',1,1),(15648,38026,'Ben Cooper',2,2),(15648,87192,'Lenny Horton',2,3),(15648,78431,'Adam Forrest',2,4),(15648,52938,'Amy Pearl',1,5),(15648,86905,'Gloria',1,6),(15648,80597,'Dolores',1,7),(15648,147477,'Zoe Hamilton',1,8),(15648,95635,'Amber',1,9),(15648,1215451,'Lance',0,10),(15648,1811110,'Wedding Usher',0,11),(11891,70946,'Master Tang',0,1),(11891,70947,'Chew Fat Lip',2,2),(11891,4489,'The Chosen One',2,4),(11891,108074,'Whoa',1,5),(11891,945062,'Father',2,6),(11891,1466841,'Mother',0,7),(11891,26775,'Wimp Lo (archive footage)',2,8),(14729,141,'Cole Younger',2,0),(14729,30613,'Jim Younger',2,1),(14729,62036,'Bob Younger',2,2),(14729,408,'Jesse James',2,3),(14729,825,'Frank James',2,4),(14729,6065,'Ed Miller',2,5),(14729,1811,'Clell Miller',2,6),(14729,100618,'John Younger',2,7),(14729,4316,'George Arthur',2,8),(14729,13524,'Charlie Ford',2,9),(14729,36821,'Bob Ford',2,10),(14729,165371,'Annie Ralston',1,11),(14729,14068,'Mr. Reddick',2,12),(14729,14699,'Belle Starr',1,13),(14729,1736,'Sam Starr',2,14),(10090,42200,'Chief of Police',2,0),(10090,518,'District Attorney',2,1),(10090,59413,'Deputy Travis Junior',2,2),(10090,59784,'Deputy James Garcia',2,3),(10090,63232,'Deputy Cherisha Kimball',1,4),(10090,63231,'Deputy Raineesha Williams',0,6),(10090,63234,'Deputy Clementine Johnson',1,7),(10090,63235,'Deputy S. Jones',2,9),(10090,28638,'Sheriff of Aspen',2,10),(10090,63238,'Kevlar Guy',2,11),(10090,63236,'Miss Acapulco',0,12),(10090,10872,'Jeff Spoder',2,13),(10090,18271,'Glen the Desk Clerk',2,14),(10090,13101,'Captain Rogers, DHS',2,15),(10090,63240,'Persnickety Desk Worker',2,16),(10090,63220,'Deputy Trudy Wiegel',1,17),(10090,539,'Lieutenant Jim Dangle',2,18),(10090,21131,'Tattoo Shop Owner #2',2,19),(10090,138970,'Russian Model',0,20),(10090,1243167,'Drug Lord\'s First Hostage',2,21),(10090,5129,'Sir Terrence',2,22),(10090,22226,'Ethan the Drug Lord',2,23),(10090,77089,'Deaf Tattoo Artist',2,24),(10090,22224,'Ron of Ron\'s Tattoo',2,25),(10090,22215,'Paul',2,26),(10090,13924,'Spoder\'s Mom',1,27),(10090,18918,'Rick Smith, S.W.A.T.',2,28),(10090,88702,'Naked Armenian',2,29),(19905,12799,'Don Ready',2,0),(19905,10182,'Jibby Newsome',2,1),(19905,9274,'Ben Selleck',2,2),(19905,28638,'Brent Gage',2,3),(19905,17696,'Babs Merrick',1,4),(19905,27105,'Paxton Harding',2,5),(19905,39481,'Ivy Selleck',1,6),(19905,25147,'Wade Zooha',2,7),(19905,64342,'',2,8),(19905,83586,'',2,9),(19905,71403,'Peter Selleck',2,10),(19905,85199,'Stu Harding',2,11),(19905,16119,'Dick Lewiston',2,12),(19905,21047,'Blake',2,13),(19905,66524,'Heather',1,14),(19905,61980,'Tammy Selleck',1,15),(19905,23659,'McDermott',2,16),(19905,1332245,'Customer / Rioter (uncredited)',1,17),(17710,82528,'Arnold',2,0),(17710,35093,'Helga Geraldine Pataki',1,1),(17710,82529,'Gerald Martin Johanssen',0,2),(17710,198,'Grandpa \'Steely\' Phil / Nick Vermicelli',2,3),(17710,34983,'Grandma Gertie \'Pookie\' / Mayor Dixie / Red',1,4),(17710,7004,'Scheck',2,5),(17710,10431,'Bridget',1,6),(17710,1062,'Coroner',2,7),(27322,18291,'Darius Lovehall',2,0),(27322,9781,'Nina Mosley',1,1),(27322,21353,'Savon Garrison',2,2),(27322,77896,'Hollywood',2,4),(27322,55274,'Josie Nichols',1,5),(27322,1142326,'Tracey Powell',0,6),(14120,359229,'Mincayani',2,0),(14120,91302,'Nate Saint / Steve Saint / Narrator',2,1),(14120,162892,'Kimo',0,2),(14120,64148,'Young Steve Saint',2,3),(14120,1104568,'Barbara Youderian',1,4),(10050,205,'Kelly Woods',1,0),(10050,11107,'Berke Landers',2,1),(10050,41555,'Allison McAllister',1,2),(10050,3492,'Felix Woods',2,3),(10050,8691,'Maggie',1,4),(10050,12967,'Beverly Landers',1,5),(10050,18973,'Basin',1,6),(10050,42157,'Frank Landers',2,7),(10050,81295,'Bentley \'Striker\' Scrumfeld',2,8),(10050,62520,'Dennis Wallace',0,9),(10050,519,'Dr. Desmond Forrest Oates',2,10),(10050,28639,'Mistress Moira',1,11),(10050,35549,'Himself',2,12),(10050,62522,'Peter Wong',2,13),(10050,62521,'Herself',1,14),(10050,62523,'Dora Lynn Tisdale',1,15),(10050,62525,'Jessica',0,16),(10050,62527,'Chook',0,18),(10050,62526,'Grendan',0,19),(10050,44176,'Little Steve',0,20),(10490,205,'Amber Atkins',1,0),(10490,6913,'Annette Atkins',1,1),(10490,9205,'Rebecca Ann Becky Leeman',1,2),(10490,9273,'Leslie Miller',1,3),(10490,1796,'Gladys Leeman',1,4),(10490,19,'Loretta',1,5),(10490,328,'Lisa Swenson',1,6),(10490,5176,'Lester Leeman',2,7),(10490,13924,'Iris Clark',1,8),(10490,69399,'Mary Johanson',1,9),(10490,19208,'John Dough, Judge #1',2,10),(10490,39125,'Hank Vilmes',2,11),(10490,4496,'Colleen Douglas',1,12),(10490,26847,'Himself',2,13),(10490,120528,'Tina / Seiko Howard',1,14),(10490,539,'Documentarian (voice)',2,15),(10490,47505,'Mr. Howard',2,16),(10490,129464,'Mrs. Howard',1,17),(10490,1351408,'Pastor',2,18),(10029,15277,'Kyle Fisher',2,0),(10029,2221,'Charles Moore',2,1),(10029,6941,'Laura Garrety',1,2),(10029,2224,'Robert Boyd',2,3),(10029,12799,'Michael Berkow',2,4),(10029,11511,'Adam Berkow',2,5),(10029,10478,'Lois Berkow',1,6),(10029,62146,'Man',2,7),(10029,41275,'Suit',2,8),(10029,62148,'Timmy Berkow',2,9),(10029,62147,'Adam Berkow Jr.',0,10),(10029,62151,'Security Guard',2,11),(10029,591369,'Tina',0,12),(10029,62150,'Cop',2,13),(10029,6564,'Mr. Fisher',2,14),(10029,62154,'Doctor #1',0,15),(10029,62155,'Doctor #2',2,16),(10029,62153,'Cop at Hospital',2,17),(10029,62152,'Clerk',0,18),(10029,62156,'Doctor #3',0,19),(11507,62893,'Jake Scully',2,0),(11507,29369,'Holly Body',1,1),(11507,2518,'Sam Bouchard',2,2),(11507,39574,'Gloria Revelle',1,3),(11507,19752,'Det. Jim McLean',2,4),(11507,11901,'Rubin',2,5),(11507,104385,'Will',2,6),(11507,104386,'Kimberly Hess',0,7),(11507,27995,'Carol Scully',1,8),(11507,44823,'Sid Goldberg',2,9),(11507,104388,'Linda Shaw',1,10),(11507,104390,'Tina',0,12),(11507,18361,'TV Director',2,13),(11507,104392,'Girl #1 in Bathroom',0,14),(11507,104394,'Girl #2 in Bathroom',1,15),(11507,97621,'Girl #3 in Bathroom',1,16),(11507,100450,'Girl #2 in \'Holly Does Hollywood\'',1,17),(13160,52605,'Kate',1,0),(13160,21593,'Dan',2,1),(13160,25703,'Ashley',1,2),(13160,22226,'Henry',2,3),(13160,41662,'Chloe',1,4),(13160,17401,'Sculptor',2,5),(13160,938390,'Father Marks',0,6),(13160,63234,'Lona',1,7),(13160,58114,'Karen',1,8),(13160,167212,'Mary',1,9),(13160,1173002,'Bride',0,10),(13160,1173003,'Groom',0,11),(13160,63111,'Minister',2,12),(13160,21675,'Cab Driver',2,13),(13160,149665,'Angel',1,14),(13160,52494,'Don',2,15),(13160,1173004,'Tom',0,16),(13160,142609,'Rude Customer',2,17),(13160,84048,'Gym Employee',2,18),(13160,156330,'Hot Dog Vendor',0,19),(13160,56685,'Margaret\'s Owner',1,20),(13160,149447,'Mrs. Williams',1,21),(13160,1173006,'Sue',1,22),(13160,42747,'Brian',2,23),(13160,56358,'Helen',1,24),(13160,154799,'Bill',2,25),(13160,92611,'Airport Guard',0,27),(13160,57173,'Parrot / Announcer Voice',2,28),(24034,78729,'Spot Helperman / Scott Leadready II / Scott Manly-Manning (voice)',2,1),(24034,7090,'Dr. Ivan Krank (voice)',2,2),(24034,1225512,'Leonard Amadeus Helperman (voice)',0,3),(24034,15453,'Mrs. Mary Lou Moira Angela Darling Helperman (voice)',1,4),(24034,28010,'Mr. Jolly (voice)',2,5),(24034,26042,'Pretty Boy (voice)',2,6),(24034,5129,'Dennis (voice)',2,7),(24034,52119,'Adele (voice)',1,8),(24034,12900,'Principal Crosby Strickler (voice)',2,9),(24034,21105,'Barry Anger',2,10),(24034,61964,'Mrs. Boogin (voice)',1,12),(14283,96974,'Nicolo Bussotti (Cremona)',2,0),(14283,141715,'Anna Bussotti (Cremona)',1,1),(14283,141716,'Cesca (Cremona)',0,2),(14283,141717,'Apprentice (Cremona)',0,3),(14283,141718,'Boy (Cremona)',0,4),(14283,38898,'Georges Poussin (Vienna)',0,5),(14283,141719,'Assistant (Cremona)',0,6),(14283,141720,'Kaspar Weiss (Vienna)',0,7),(14283,2411,'Antoinette Pussin (Vienna)',1,8),(14283,134467,'Anton von Spielmann (Vienna)',2,9),(14283,23750,'Father Richter (Vienna)',2,10),(14283,141721,'Brother Christophe (Vienna)',2,11),(14283,141722,'Brother Gustav (Vienna)',0,12),(14283,48081,'Brother Michael (Vienna)',0,13),(14283,141723,'Brother Franz (Vienna)',0,14),(14283,141724,'Funeral Monk (Vienna)',0,15),(14283,141725,'Gypsy Violonist (Vienna)',0,16),(14283,141726,'Gypsy Violonist (Vienna)',0,17),(14283,141727,'Prince Mansfeld (Vienna)',0,18),(14283,141728,'Gypsy Violonist (Vienna)',0,19),(14283,973,'Frederick Pope (Oxford)',2,20),(14283,21245,'Victoria Byrd (Oxford)',1,21),(14283,141729,'Sara (Oxford)',0,22),(14283,39662,'Gypsy Father (Oxford)',0,23),(14283,21431,'Conductor (Oxford)',2,24),(14283,62937,'Manservant (Oxford) (as Stuart Ong)',2,25),(14283,26739,'Xiang Pei (Shanghai)',1,26),(14283,130867,'Chou Yuan (Shanghai) (as Zi Feng Liu)',0,27),(14283,134122,'Comrade Chan Gong (Shanghai)',0,28),(14283,141730,'Young Ming (Shanghai)',0,29),(14283,141731,'Guard (Shanghai) (as Zeng Wei Tan)',0,30),(14283,141732,'Senior Policeman (Shanghai)',0,31),(14283,141733,'Elderly Woman (Shanghai)',0,33),(14283,141734,'Deputy (Shanghai)',0,34),(14283,141735,'Young Xian Pei (Shanghai)',0,35),(14283,141736,'Pawnbroker (Shanghai)',0,36),(14283,2231,'Charles Morritz (Montru00e9al)',2,37),(14283,10132,'Auctioneer (Montru00e9al)',2,38),(14283,27812,'Mme. Leroux (Montru00e9al)',1,39),(14283,20173,'Evan Williams (Montru00e9al)',2,40),(14283,141738,'Mr. Ruselsky (Montru00e9al)',0,41),(14283,2320,'Nicolas Olsberg (Montru00e9al)',2,42),(14283,29466,'Older Ming (Montru00e9al)',2,43),(14283,25540,'Madame Ming (Montru00e9al)',1,44),(14283,141739,'Suzanne (Montru00e9al)',0,45),(14283,38526,'Customs Agent (Montru00e9al)',2,46),(14283,141740,'Hotel Concierge (Montru00e9al)',0,47),(14283,17422,'Cabby (Montru00e9al)',2,48),(14283,67905,'Secretary (Montru00e9al)',1,49),(14283,58012,'Handler (Montru00e9al)',2,50),(14283,141741,'Coat Attendant (Montru00e9al)',0,51),(14283,141742,'Registrar (Montru00e9al)',0,52),(14283,141743,'Ruselsky\'s Companion (Montru00e9al)',0,53),(14283,141744,'Autograph Seeker (Montru00e9al)',0,54),(14283,29468,'Stagehand (Montru00e9al)',2,55),(14283,141745,'Violinist (Oxford) (uncredited)',0,56),(14283,141746,'Security Guard (uncredited)',1,57),(14283,1016305,'Junior Policeman (Shanghai)',2,58),(13201,10822,'Leon',2,0),(13201,826,'Annie',1,1),(13201,51214,'Bobby',2,2),(13201,4886,'Marco',2,3),(13201,7268,'Freddie',2,4),(13201,70767,'Betsy',1,5),(13201,47774,'Father Aldo',2,6),(13201,51391,'Scooch',2,7),(13201,9296,'Jimmy Pockets',2,8),(13201,1226292,'Esther',0,9),(13201,2876,'Fritzy',2,10),(13201,102,'Wendy',1,11),(13201,17051,'Tino',2,13),(13201,26852,'Punchy',2,14),(13201,9656,'Vinnie Fish',2,15),(13201,59675,'Big Dom',2,16),(34043,77073,'Kevin Gibbons',2,0),(34043,54651,'Rod',2,1),(34043,59192,'Abbey',1,2),(34043,111713,'Randy Francis',2,4),(34043,111714,'Himself',2,5),(34043,59154,'Jackie',1,6),(34043,111402,'Mick Silver',2,7),(34043,13024,'Julie',1,8),(34043,99093,'Brady',2,9),(34043,21290,'Higgins',0,10),(34043,26042,'Nathan',2,11),(34043,44101,'Barret',2,12),(34043,111715,'Margie The Receptionist',1,13),(34043,34915,'Sam',1,14),(34043,60847,'Eric',0,15),(10388,28641,'Wilson',2,0),(10388,21818,'Elaine',1,1),(10388,40481,'Eduardo Roel',2,2),(10388,27860,'Jim Avery',2,3),(10388,29915,'Uncle John',2,4),(10388,18070,'Stacy the Hitman',2,5),(10388,8949,'Terry Valentine',2,6),(10388,91384,'Adhara',1,7),(10388,27755,'Jennifer \'Jenny\' Wilson',1,8),(10388,131725,'Warehouse Foreman',2,9),(10388,177623,'Tom Johannson',2,10),(10388,142161,'Rick (Valentine\'s Bodyguard)',0,11),(10388,556871,'Larry (Valentine\'s Bodyguard)',0,12),(10388,9279,'Lady on Plane',1,13),(25520,12214,'Lily Bart',1,0),(25520,707,'Augustus \'Gus\' Trenor',2,1),(25520,45453,'Mrs. Julia Peniston, Lily\'s Aunt',1,2),(25520,11067,'George Dorset',2,3),(25520,57829,'Sim Rosedale',2,4),(25520,350,'Bertha Dorset',1,5),(25520,57449,'Grace Julia Stepney',1,6),(25520,4513,'Mrs. Carry Fisher',1,7),(25520,7036,'Lawrence Selden',2,8),(25520,108579,'Judy Trenor',1,9),(25520,119415,'Percy Gryce',2,10),(25520,72311,'Evie Van Osburgh',1,11),(25520,97170,'Mrs. Haffen',1,12),(27342,16475,'Richard Malone',2,0),(27342,19153,'Charles Delaney',0,1),(27342,12521,'Hawkins',2,2),(27342,47882,'Jo Barlow',1,3),(27342,6914,'Paul Barlow',2,4),(27342,27964,'Jamie',1,5),(27342,83362,'Dan Bollard',2,6),(27342,3801,'Calvin Bollard',2,7),(13689,41464,'Dan Millman',2,0),(13689,1733,'Socrates',2,1),(13689,20189,'Joy',1,2),(13689,76001,'Coach Garrick',2,3),(13689,225,'Tommy',2,4),(13689,83141,'Trevor',2,5),(13689,51536,'Susye',1,6),(13689,1214865,'Kyle',2,7),(24664,22675,'Pierre Delacroix',2,0),(24664,80623,'Manray / Mantan',2,1),(24664,88059,'Womack / Sleep\'n Eat',2,2),(24664,9575,'Sloan Hopkins',1,3),(24664,4688,'Thomas Dunwitty',2,4),(24664,4239,'Mau Mau: Big Blak Afrika',2,5),(24664,163962,'Mona',0,6),(24664,98889,'Honeycutt',0,7),(24664,81149,'Junebug',2,8),(24664,8654,'Himself',2,9),(24664,23931,'Herself',1,10),(24664,33662,'Papo',2,11),(29076,18277,'Judy Tipp',1,0),(29076,3896,'Charles Mayeaux',2,1),(29076,17485,'Fulvio Nesstra',2,2),(29076,10963,'Fidel Vaillar',2,3),(29076,52422,'Estuvio Clavo',2,4),(29076,31028,'Elliott',2,5),(29076,1980,'Gloria Minetti Nesstra',1,6),(29076,56979,'Jason Cane',2,7),(29076,1319273,'SEC Agent Cohler',0,8),(29076,156875,'Myrna',1,9),(29076,85142,'Howard',2,10),(29076,12644,'Dexter Helvenshaw',2,11),(29076,105002,'Bennett',2,12),(29076,66653,'Jonathan',2,13),(29076,91030,'Dr. Jeff Bleckner',2,14),(29076,30369,'Elliott\'s Wife',1,15),(29339,56365,'Nicholas Nickleby',2,0),(29339,78729,'Vincent Crummles',2,1),(29339,388,'Mr. Wackford Squeers',2,2),(29339,290,'Ralph Nickleby',2,3),(29339,478,'Smike',2,4),(29339,1813,'Madeline Bray',1,5),(29339,10697,'Mr. Folair',2,6),(29339,9191,'Charles Cheeryble',2,7),(29339,6979,'Kate Nickleby',0,8),(29339,176191,'Mr. Nickleby',2,9),(29339,134699,'Mrs Nickleby',1,10),(29339,1364032,'Boy Nicholas Nickleby',0,11),(29339,14011,'Newman Noggs',2,12),(29339,6238,'Mrs. Squeers',1,13),(29339,11111,'Maid',1,14),(29339,9013,'John Browdie',2,15),(29339,9126,'Sir Mulberry Hawk',2,16),(29339,984,'Lord Verisopht',2,17),(29339,1252814,'Mr. Pluck',0,18),(29339,22,'Mrs. Crummies/Mr. Leadville',2,19),(29339,53999,'The Infant Phenomenon',1,20),(29339,5536,'Romeo in Play',0,21),(29339,209458,'Juliet in Play',1,22),(29339,26854,'Brooker',2,23),(29339,56101,'Ned Cheeryble',2,24),(29339,86044,'Frank Cheeryble',2,25),(29339,32990,'Miss Lacreevy',1,26),(29339,11180,'Nigel Bray',2,27),(29339,114252,'Young Mr. Bray',2,28),(29339,20243,'Doctor',2,29),(29339,174700,'Parent',1,30),(32740,78749,'Krishna Mehra / Krrish / Rohit Mehra',2,0),(32740,6497,'Dr. Siddhant Arya',2,1),(32740,77234,'Priya',1,2),(32740,109621,'Sonia Mehra',1,3),(32740,55066,'Vikram Sinha',2,4),(32740,110144,'Komal Singh',2,5),(32740,87304,'Boss of Priya and Honey',1,6),(32740,86023,'Bahadur',2,7),(32740,1235484,'Honey',0,8),(32740,1403596,'Kristian Li',0,9),(14195,29369,'Honey Whitlock',1,0),(14195,10822,'Cecil',2,1),(14195,3128,'Cherish',1,2),(14195,5090,'Lyle',2,3),(14195,37947,'Lewis',2,4),(14195,1579,'Raven',1,5),(14195,22133,'Rodney',2,6),(14195,9292,'Mrs. Sylvia Mallory',1,7),(14195,70233,'Libby',1,8),(14195,335,'Petie',2,9),(14195,58478,'Kevin',2,10),(15394,1233,'Dan Mahowny',2,0),(15394,6613,'Belinda',1,1),(15394,5049,'Victor Foss',2,2),(15394,7868,'Frank Perlin',2,3),(15394,25386,'Det. Ben Lock',2,4),(15394,74278,'Bernie',2,5),(15394,44169,'Dave Quinson',2,6),(15394,106711,'Doug',2,7),(15394,12482,'Dana Selkirk',1,8),(15394,1351508,'Bill Gooden',0,9),(15394,94833,'Psychologist',2,10),(15394,5923,'Parking Attendant',0,11),(15394,1472947,'Teller',0,12),(15394,1472948,'Teller',0,13),(15394,166529,'Briggs',2,14),(15394,180934,'Alex Retsnor',0,15),(15394,1436334,'Man in Ice Rink',0,16),(10071,21200,'John Solomon',2,0),(10071,62831,'Dean Solomon',2,1),(10071,41091,'Janine',1,2),(10071,8687,'James',2,3),(10071,18589,'Ed Solomon',2,4),(10071,46920,'Dr. Spencer',2,5),(10071,50463,'Tara',1,7),(10071,19278,'Recumbent Biker',2,8),(10071,51856,'Michelle',1,9),(10071,62832,'Young John Solomon',0,10),(10071,62834,'Dr. Wang',0,11),(10071,62837,'Ron',0,12),(10071,62833,'Dr. Wong',2,13),(10071,62836,'Video Store Clerk',2,14),(10071,62835,'Erica',0,15),(10071,34486,'Patricia',1,16),(10071,56685,'Grocery Shopper',1,17),(10071,62838,'Grocery Checker',0,18),(10071,62840,'Medical Delivery Guy',2,19),(12779,3125,'Amber Leighton',1,0),(12779,73475,'Giuseppe \'Guido\' Esposito',2,1),(12779,21089,'Anthony \'Tony\' Leighton',2,1),(12779,9281,'Debi',1,2),(12779,73476,'Todd',2,4),(12779,10478,'Marina',1,4),(13191,3036,'Brand Hauser',2,0),(13191,5958,'Yonica Babyyeah',1,1),(13191,3141,'Natalie Hegalhuzen',1,2),(13191,3234,'Marsha Dillon',1,3),(13191,707,'Mr. Vice President',2,4),(13191,66027,'Ooq-Mi-Fay Taqnufmini',2,5),(13191,2141,'Ooq-Yu-Fay Taqnufmini / Zubleh',2,6),(13191,559766,'Himself',0,7),(13191,93046,'GuideStar Voice (voice)',2,8),(13191,2282,'Walken / The Viceroy',2,9),(13191,559368,'Omar Sharif',2,10),(13191,559369,'Bhodi Bhundhang',0,11),(13191,105688,'Video Guy #1',0,12),(13191,105834,'Video Guy #2',2,13),(13191,84197,'Video Guy #3',2,14),(13191,559370,'Cameraman',0,15),(13191,22018,'German Businessman',2,16),(13191,90756,'Kid In Fallaf',0,17),(13191,559371,'Posse Guy',0,18),(13191,559372,'Sound Man',0,19),(13191,559373,'Tamerlane Guard #1',0,20),(13191,559374,'Thug',2,21),(13191,67246,'Director',2,22),(11770,57607,'Sing',2,0),(11770,70437,'Fung',2,1),(11770,544796,'Hung',0,2),(11770,77304,'Mui',1,3),(11770,956575,'Iron Head',0,4),(11770,1136808,'Iron Shirt',0,5),(11770,1265974,'Hooking Leg',0,6),(11770,1173223,'Empty Hands',0,7),(11770,545277,'Weight Vest',2,8),(11770,57831,'Dragon Twin',0,9),(11770,20652,'Dragon Twin',0,10),(11770,237235,'Manny',0,11),(11770,25246,'[Singing voice]',2,12),(12703,22461,'Bud Clay',2,0),(12703,2838,'Daisy',1,1),(12703,73952,'Lilly',1,2),(12703,73953,'Rose',0,3),(12703,73954,'Violet',0,4),(12703,73955,'Mrs. Lemon',0,5),(25350,10205,'Sandy Travis',1,0),(25350,4442,'Kyle Dwyer',2,1),(25350,46593,'Tim Travis',2,2),(25350,8447,'Ben Travis',2,3),(25350,1812,'Penny Travis',1,4),(25350,77013,'Marge Dwyer',1,5),(25350,65561,'Matt Travis',2,6),(25350,88597,'Vern',2,7),(25350,130719,'Dr. Montey',2,8),(10034,6613,'Shannon',1,0),(10034,1980,'Frances',1,1),(10034,2449,'Mason',2,2),(10034,41042,'Danny',2,3),(10034,5658,'Kerrigan',2,4),(10034,17123,'Ray',2,5),(10034,20999,'Tremaine',2,6),(10034,62258,'Tony',0,7),(10034,62259,'Barry',2,8),(10034,62260,'Receptionist',0,10),(10034,62262,'Doctor',2,11),(10034,62264,'Bloodied actor',0,12),(10034,62263,'Romantic actor',0,13),(10034,62266,'Suspect',0,14),(10034,39185,'McGill',2,15),(10034,5473,'Rogers',2,16),(10034,26860,'Director',2,17),(10034,62267,'Barman',0,18),(10034,24598,'Duty Sergeant',0,19),(10034,40078,'Paramedic',0,20),(20178,2157,'Lance Clayton',2,0),(20178,87669,'Claire',1,1),(20178,57675,'Kyle',2,2),(20178,25879,'Principal Anderson',2,3),(20178,67913,'Mike Lane',2,4),(20178,133072,'Dr. Pentola',0,5),(20178,102794,'Bonnie',1,6),(20178,210386,'Morgan',1,7),(20178,1118075,'Ginger',0,8),(20178,1118076,'Dan Spencer',0,9),(20178,966112,'Peter',0,10),(20178,1118077,'Andrew',0,11),(20178,1118078,'Jennifer',0,12),(20178,1118079,'Chris',0,13),(20178,1118080,'Metal Kid',2,14),(20178,31135,'Jason',2,15),(20178,966053,'Heather',1,16),(20178,95076,'Newsstand Vendor',2,17),(20178,1353224,'Nosy Neighbor',0,18),(20178,23620,'Nosy Neighbor',0,19),(20178,1353225,'Nosy Neighbor',0,20),(20178,1353226,'Mabel',0,21),(20178,18271,'Bert Green',2,23),(20178,1353227,'Dr. Dana',0,24),(20178,1001932,'Himself',0,25),(20178,1353228,'Bruce Hornsby\'s Mic Stand',0,26),(20178,17414,'Make-Up Woman',1,27),(20178,78798,'Jerry Klein',2,28),(18191,3905,'Edmond',2,0),(18191,3266,'Man in Bar',2,1),(18191,9205,'B-Girl',1,2),(18191,8211,'Whore',1,3),(18191,71913,'Prisoner',2,4),(18191,12041,'Glenna',1,5),(18191,97068,'Club Manager',2,6),(18191,39126,'Peep Show Girl',1,7),(18191,5578,'Matron',1,8),(18191,27993,'Desk Clerk',2,9),(18191,11794,'Fortune Teller',0,10),(18191,27267,'Wife',1,11),(18191,66606,'Pawn Shop Owner',2,12),(31007,37917,'Mallory',1,0),(31007,4691,'Doug Riley',2,1),(31007,6832,'Lois Riley',1,2),(31007,141762,'Jerry',2,3),(31007,12851,'Harriet',1,4),(31007,141763,'Tara',1,5),(31007,91670,'Vivian',1,6),(31007,101847,'Hamilton',2,7),(31007,141764,'Brenda',0,8),(31007,141765,'Sharon',0,9),(31007,93927,'Charlene',1,10),(31007,73424,'Danny',2,11),(31007,60875,'Ed',2,12),(31007,159461,'Randy',2,13),(11546,57351,'Eric Lassard',2,0),(11546,27237,'Thaddeus Harris',2,1),(11546,22252,'Debbie Callahan',1,2),(11546,14672,'Larvelle Jones',2,3),(11546,57353,'Eugene Tackleberry',2,4),(11546,2372,'Konstantine Konali',2,5),(11546,77293,'Cadet Kyle Connors',2,6),(11546,113,'Commandant Rakov',2,7),(11546,4174,'Katrina',1,8),(11546,1175597,'Little Russian Boy with Bike',0,9),(24663,12111,'Carlton Garrett',2,0),(24663,1229,'Kyle',2,1),(24663,51072,'Lucy',1,2),(24663,5048,'Amon',2,3),(24663,2453,'Katherine',1,4),(24663,1249508,'Himself',0,5),(24663,93793,'Peabody Desk Clerk',2,6),(24663,1617453,'Memphis Ticket Taker',2,7),(22805,139,'Eliza Welsh',1,0),(22805,6613,'Sheila',1,1),(22805,11085,'Avery Welch',2,2),(22805,114764,'Lucas Welch',0,3),(22805,114765,'Lucas Welch',0,4),(22805,80002,'Clara Welch',1,5),(22805,17488,'Edith',1,6),(22805,121953,'French Neighbor',1,7),(22805,58356,'Good Sharing Mom',1,8),(22805,1215072,'Lily',1,9),(22805,1102500,'Hester',1,10),(22805,1038,'Jodie Foster',1,11),(22805,1218277,'Alison Hooper',1,12),(25186,9778,'Russell Redds',2,0),(25186,51944,'Jellyroll',2,1),(25186,93339,'Young Jeezy',0,2),(25186,60486,'Mondo',2,3),(25186,17413,'John Glanville',2,4),(25186,76670,'Little JJ',2,5),(25186,2683,'Officer Ronnie Stixx',2,6),(25186,80615,'Momma',1,7),(25186,49551,'Ms. Ann',1,8),(25186,93340,'Loli',0,9),(25186,59154,'Regina',1,10),(25186,93341,'KK',0,11),(25186,1230868,'Michelle',1,12),(15017,52052,'Katie',1,0),(15017,36422,'Ben',2,1),(15017,38581,'Haley',1,2),(15017,14698,'Debra',1,3),(15017,43120,'Freddy',2,4),(15017,1211,'Richard Connelly',2,5),(15017,8261,'Pap Paw',2,6),(15017,14911,'Bolo Executive',1,7),(12245,109,'Martin',2,0),(12245,5049,'Arthur Seldom',2,1),(12245,101,'Lorna',1,2),(12245,13364,'Beth',1,3),(12245,20070,'Inspector Petersen',2,4),(12245,39659,'Yuri Podorov',0,5),(12245,2413,'Frank',2,6),(12245,8227,'Mrs. Eagleton',1,7),(12245,165424,'Scott',0,8),(12245,31493,'Kalman',0,9),(12245,1575424,'Newscaster',0,10),(12245,1240417,'Policeman',2,11),(16358,5587,'Daniel Collins',2,0),(16358,17772,'Ryan Carmichael',2,1),(16358,11664,'Kate Collins',1,2),(16358,21104,'Samantha',1,3),(16358,10696,'Judy Arnolds',1,4),(16358,11164,'Lucy Collins',1,5),(16358,15757,'Skip Collins',2,6),(16358,9626,'Edmund Collins',2,7),(16358,26513,'Alice Collins',1,8),(16358,6721,'Charlotte Collins',1,9),(16358,15423,'Aunt Lily',1,10),(16358,20405,'Video Store Clerk',2,11),(16358,9807,'Parson Banke',2,12),(17622,2282,'Fergus',2,0),(17622,38941,'Martin',2,1),(17622,7431,'Sean',2,2),(17622,16850,'Grace',1,3),(17622,84864,'Mikey',2,4),(17622,84865,'Ray',2,5),(17622,73288,'Robbie',2,6),(17622,37983,'Lara',0,7),(17622,1088195,'Kieran',0,8),(17622,1122013,'Mary',0,9),(17622,1122014,'Donovan',0,10),(17622,1028846,'Quinn',2,11),(17622,82149,'Frankie',0,12),(18516,4785,'Adam Stein',2,0),(18516,5293,'Commandat Klein',2,1),(18516,937,'Dr. Nathan Gross',2,3),(18516,8786,'Gina Grey',1,4),(18516,52684,'Rachel Shwester',1,5),(18516,1084,'Abe Wolfowitz',2,6),(18516,95541,'Gretchen Stein',1,7),(18516,98305,'Arthur',2,8),(18516,8797,'Ruth Edelson',1,9),(17577,9777,'Mack',2,0),(17577,5538,'Blakely',2,1),(17577,2372,'Wesley',2,2),(17577,343,'Doc',1,3),(17577,83458,'Yoshi',1,4),(17577,43232,'Dr. Elissa Cardell',2,6),(17577,2682,'Hammer',0,7),(17577,12714,'Nickels',2,8),(17577,9290,'Fulton',2,9),(17577,52474,'Hicks',2,10),(17577,1215684,'Click',0,11),(17577,101491,'Father Jacoby',2,12),(17577,27737,'Prof. Duncan',0,13),(17577,163439,'Sharon',1,14),(17577,1102966,'Crazy Woman',0,15),(14608,55751,'Naseem Khan',1,0),(14608,16756,'',2,1),(14608,9206,'Margaret Stilwell',1,2),(14608,65642,'Walter Hankins',2,3),(14608,76793,'Avtar Singh',2,4),(14608,195399,'Shanti Singh',1,5),(14608,205885,'Zakir Khan',2,6),(14608,59926,'Andrew Stilwell',2,7),(34417,8395,'Chester Milford',2,0),(34417,87765,'Pam',1,1),(34417,22125,'Kyle',2,2),(15067,20738,'Yoon Tae-goo, the Weird',2,0),(15067,25002,'Park Chang-yi, the Bad',2,1),(15067,17120,'Park Do-won, the Good',2,2),(15067,141541,'Byung-choon',0,3),(15067,88298,'Kim Pan-joo',0,4),(15067,126743,'Song-yi',1,5),(15067,141543,'Two Blades',0,6),(15067,1024395,'Bear',2,7),(15067,141545,'Doo-chao',0,8),(15067,141546,'Karemaru',0,9),(15067,141547,'Ghost Market',0,10),(15067,141548,'Chef',2,11),(15067,77188,'Messenger for Kim Pan-joo',2,12),(15067,573792,'Ghost Market Gang',2,13),(15067,42799,'Seo Jae-sik',2,15),(15067,1243892,'Man-gil',2,16),(16614,44735,'James Brennan',2,0),(16614,37917,'Em Lewin',1,1),(16614,41089,'Joel',2,2),(16614,41091,'Paulette',1,3),(16614,19278,'Bobby',2,4),(16614,10859,'Mike Connell',2,5),(16614,59237,'Lisa P.',1,6),(16614,129022,'Arlene',1,7),(16614,80661,'Eric',2,8),(16614,136030,'Brad',0,9),(16614,77023,'Mr. Brennan',2,10),(16614,130227,'Tommy Frigo',2,11),(16614,136032,'Velvet Touch Manager',0,12),(16614,136033,'Rich',0,13),(16614,136034,'Adult Contestant',0,14),(16614,61980,'Mrs. Brennan',1,15),(16614,1152008,'Pete O\'Malley',0,16),(10471,9778,'Craig Jones',2,0),(10471,51944,'Day-Day',2,1),(10471,57389,'Roach',2,2),(10471,56902,'Mr. Jones',2,3),(10471,65132,'Uncle Elroy',2,4),(10471,16429,'Joker',2,5),(10471,48071,'Lil Joker',2,6),(10471,90448,'Baby Joker',0,7),(10471,98899,'Karla',0,8),(10471,8396,'Debo',2,9),(10471,80597,'Suga',1,10),(10471,59401,'Mrs. Ho-Kym',1,11),(10471,59154,'D\'wana',1,12),(10471,65628,'Baby D\'',1,13),(10471,58924,'Pinky',2,14),(10471,86462,'Tyrone',0,15),(10471,4688,'Mailman with Tax Notice',2,16),(10306,4139,'Bruce Gardner',2,0),(10306,44038,'Patricia Wilson-Gardner',1,1),(10306,10086,'Carol Anne Freeling',1,2),(10306,6684,'Donna Gardner',1,3),(10306,64820,'Scott',2,4),(10306,10091,'Tangina Barrons',1,5),(10306,67179,'Dr. Seaton',0,6),(10306,156592,'Reverend Henry Kane',2,7),(11576,12147,'Capt. C. G. Culpepper',2,0),(11576,69951,'J. Russell Finch',2,1),(11576,8902,'Melville Crump, DDS',2,2),(11576,67393,'Benjy Benjamin',2,3),(11576,1937,'Ding \'Dingy\' Bell',0,4),(11576,6777,'Airport Firemen #1',2,5),(11576,89613,'Airport Firemen #2',2,6),(11576,105723,'Airport Firemen #3',2,7),(11576,109897,'Mrs. Marcus',1,8),(11576,19178,'Sylvester Marcus',2,9),(11576,40178,'Otto Meyer',2,10),(11576,29427,'J. Algernon Hawthorne',2,11),(11576,13593,'Lennie Pike',2,12),(11576,4098,'Monica Crump',1,13),(11576,29717,'Emeline Marcus-Finch',1,14),(11576,98571,'Second Cab Driver',0,15),(11576,2771,'Tyler Fitzgerald',2,16),(11576,104034,'Biplane Pilot',2,17),(11576,3156,'Union Official',0,18),(11576,105804,'Police Sergeant',2,19),(11576,34286,'Detective Outside Chinese Laundromat',2,20),(11576,127638,'Sylvester\'s Girlfriend',0,21),(11576,34497,'The Mayor',2,22),(11576,21510,'Police Chief Aloysius',2,23),(11576,14966,'Sheriff of Crockett County',2,24),(11576,127640,'Ginger Culpepper (voice)',1,25),(11576,2314,'Third Cab Driver',2,26),(11576,14064,'Detective at Grogan\'s Crash Site',2,27),(11576,127641,'Col. Wilberforce',2,28),(11576,110654,'Deputy Sheriff',2,29),(11576,127642,'Billie Sue Culpepper (voice)',1,30),(11576,89989,'First Cab Driver',2,31),(11576,34759,'Fire Chief',2,32),(11576,127643,'Irwin',2,33),(11576,2437,'Mr. Dinckler',2,34),(11576,27726,'Nervous Motorist',2,35),(11576,29579,'Airport Manager',2,36),(11576,84229,'Miner',2,37),(11576,8233,'Lt. Matthews',2,38),(11576,116679,'Reporter',2,39),(11576,34746,'Gertie - Switchboard Operator',1,40),(11576,1895,'Tower Controller at Rancho Conejo',2,41),(11576,127646,'Secretary Schwartz',1,42),(11576,19400,'Policeman Outside Irwin & Ray\'s Garage',2,43),(11576,34745,'Smiler Grogan',2,44),(11576,2492,'Man in Car in Desert (uncredited)',0,45),(11576,3663,'Driver Who Runs Over Hat (uncredited)',2,46),(11576,8635,'Jimmy the Crook',2,47),(11576,388960,'Driver run off highway',2,48),(11576,93664,'Air Traffic Controller',2,49),(11576,1237005,'Laundryman',0,50),(11576,89735,'Hardware Store Clerk',2,51),(11576,7332,'Ray',0,52),(11827,70615,'Hanover Fiste / Dr. Anrak (voice)',2,0),(11827,61185,'Katherine (voice)',1,1),(11827,59196,'Lawyer / General (voice)',2,2),(11827,1524,'Zeke (voice)',2,3),(11827,7180,'Desk Sergeant / Dan / Den / Robot (voice)',2,4),(11827,87461,'Grimaldi / Co-Pilot / Barbarian (voice)',2,5),(11827,1282665,'Girl (voice)',0,6),(11827,2557,'Harry Canyon (voice)',2,7),(11827,87462,'Girl / Satellite (voice)',1,8),(11827,108890,'Alien / Henchman (voice)',2,9),(11827,36172,'Rudnick (voice)',2,10),(11827,93644,'Whore / Queen (voice)',1,11),(11827,1010492,'Whore (voice)',1,12),(11827,26510,'Sternn / Male Reporter / Edsel (voice)',2,13),(11827,17580,'Prosecutor (voice)',2,14),(11827,59179,'Pilot / Barbarian (voice)',2,15),(11827,18260,'Norl / Taarak (voice)',2,16),(11827,58169,'Barbarian Leader (voice)',2,17),(11827,80165,'Gloria (voice)',1,18),(22820,11665,'Benjamin',2,0),(22820,6807,'Bronco / Brutus',2,1),(22820,20128,'Cletus',2,2),(22820,55936,'Ronald Chevalier',0,3),(22820,38334,'Judith',1,4),(22820,57410,'Lonnie Donaho',0,5),(22820,559880,'Vanaya / Venonka',1,6),(22820,928396,'Tabatha',1,7),(22820,206311,'Obnoxious Fan',2,8),(31174,1327,'Richard III',2,0),(31174,516,'Elizabeth',1,1),(31174,388,'The Duke of Buckingham',2,2),(31174,5470,'Lady Anne',1,3),(31174,42566,'James Tyrrell',2,4),(31174,10978,'Duchess of York',1,5),(31174,41043,'William Catesby',2,6),(31174,3223,'Earl Rivers',2,7),(31174,3545,'Lord Stanley',2,8),(31174,15788,'The Duke of Clarence',0,9),(31174,20070,'Lord Hastings',2,10),(31174,17287,'The Earl of Richmond',2,11),(31174,8937,'King Edward IV',2,12),(31174,27660,'Archbishop Thomas',2,13),(31174,104795,'Sir Richard Ratcliffe',2,14),(31174,20425,'Brackenbury',2,15),(31174,7027,'1st Subaltern',2,16),(31174,1271092,'Ballroom Dancer (uncredited)',2,17),(30497,27798,'Sally Hardesty',1,0),(30497,122454,'Jerry',0,1),(30497,122455,'Franklin Hardesty',2,2),(30497,122456,'Kirk',2,3),(30497,122457,'Pam',0,4),(30497,27803,'Hitchhiker',2,5),(30497,104014,'Old Man',2,6),(30497,27804,'Leatherface',2,7),(30497,104892,'Grandfather',2,8),(30497,1453740,'Window Washer',0,9),(30497,565191,'Bearded Man',0,10),(30497,1372356,'Storyteller',0,11),(30497,1453812,'Cowboy',0,12),(30497,1453813,'Cattle Truck Driver',0,13),(30497,1453814,'Drunk',0,14),(30497,1453815,'Pick Up Driver',0,15),(30497,14101,'Narrator (voice)',2,16),(27586,501,'Cherie Currie',1,0),(27586,37917,'Joan Jett',1,1),(27586,335,'Kim Fowley',2,2),(27586,98522,'Marie Currie',1,3),(27586,74687,'Sandy West',1,4),(27586,21318,'Lita Ford',1,5),(27586,61178,'Robin',1,6),(27586,51455,'Scottie',2,7),(27586,59261,'Tammy',1,8),(27586,39213,'Rodney Bingenheimer',2,9),(27586,68890,'Marie Harmon',1,10),(27586,16841,'Donald Currie',2,11),(27586,2839,'Derek',2,12),(27586,170804,'Grandma Oni',1,13),(27586,85421,'Wolfgang',2,14),(27586,98533,'Sandy West\'s Mom',1,15),(27586,61217,'Guitar Teacher',2,16),(27586,1214423,'Club Girl',0,17),(14811,10501,'Tevye',2,0),(14811,129550,'Golde',1,1),(14811,112253,'Motel',2,2),(14811,129551,'Yente',1,3),(14811,1075028,'Lazar Wolf',0,4),(14811,975522,'Tzeitel',1,5),(14811,161806,'Hodel',1,6),(14811,163645,'Chava',0,7),(14811,12988,'Perchik',2,8),(14811,105337,'Fyedka',2,9),(14811,258715,'Shprintze',1,10),(14811,948428,'Bielke',0,11),(14811,81975,'Mordcha',2,12),(14811,974329,'Rabbi',2,13),(14811,73210,'Constable',2,14),(14811,949253,'Avram',2,15),(14811,30676,'Nachum',2,16),(14811,72742,'Mendel',2,17),(14811,649,'Russian Official',2,18),(14811,185830,'Fruma Sarah',1,19),(14811,40163,'Grandma Tzeitel',0,20),(14811,1231662,'Fiddler',2,21),(14811,134667,'Berl',2,22),(14811,1601895,'Hone',0,23),(14811,117300,'Moishe',2,24),(14811,933564,'Rifka',0,25),(14811,1186440,'Ezekial',0,26),(14811,25808,'Sheftel',2,27),(14811,81024,'Sexton',2,28),(14811,98770,'Priest',0,29),(14811,134308,'Russian Dancer',0,30),(14811,130481,'Yussel (uncredited)',2,31),(14811,55908,'Leibesh (uncredited)',2,32),(14811,202402,'Russian (uncredited)',2,33),(14811,1135860,'Gnessi (uncredited)',0,34),(14811,1077929,'Bess (uncredited)',0,35),(14811,38068,'Isaac (uncredited)',0,36),(14811,52699,'One of Rabbi\'s students (uncredited)',2,37),(14811,1217114,'Previous Rabbi (uncredited)',0,38),(14811,982313,'Dancer (uncredited)',0,39),(14811,1214111,'(uncredited)',0,40),(16162,9781,'Jordan Armstrong',1,0),(16162,9779,'Lance Sullivan',2,1),(16162,6195,'Julian Murch',2,2),(16162,18288,'Quentin',2,2),(16162,5411,'Robin',1,3),(16162,17637,'Harper Stewart',2,4),(16162,35705,'Candy',1,5),(16162,32646,'Mia Morgan',1,6),(10585,2022,'Karen Barclay',1,0),(10585,14541,'Mike Norris',2,1),(10585,65683,'Andy Barclay',2,2),(10585,1370,'Charles Lee Ray/Chucky',2,3),(10585,8900,'Maggie Peterson',1,4),(10585,1471,'Chucky Stunt Double',2,5),(10472,33260,'Alfred \'Al\' Connelly',2,0),(10472,12041,'Imogen',1,1),(10472,11826,'Cyrus',1,2),(10472,52647,'Eddie Hicks',2,3),(10472,6212,'Monk Jablonski',2,4),(10472,18976,'Jim Morrison',2,5),(10472,5916,'Lana',1,6),(10472,31903,'Chef Ray',2,7),(10472,61880,'Judy Connelly',1,8),(10472,37014,'Lovestruck Woman',1,9),(10472,1189046,'Lovestruck Man',0,10),(11282,68842,'Harold Lee',2,0),(11282,53493,'Kumar Patel',2,1),(11282,21124,'Maria',1,2),(11282,41686,'Neil Patrick Harris',2,3),(11282,38582,'Goldstein',2,4),(11282,50463,'Liane',1,5),(11282,42297,'Clarissa',1,6),(11282,10867,'Cole',2,7),(11282,20753,'Dr. Willoughby',2,8),(11282,118814,'J.D.',2,9),(11282,198149,'Kenneth Park',2,10),(11282,18471,'Burger Shack Employee',2,11),(11282,58019,'Billy Carver',2,12),(11282,52480,'Rosenberg',2,13),(11282,10859,'Male Nurse',2,14),(11282,22227,'Freakshow',2,15),(14181,1771,'Seth Davis',2,0),(14181,12835,'Chris Varick',2,1),(14181,9781,'Abbie Halpert',1,2),(14181,16857,'Michael Brantley',2,3),(14181,880,'Jim Young',2,4),(14181,18070,'Greg Weinstein',2,5),(14181,1894,'Richie O\'Flaherty',2,6),(14181,12122,'Judge Marty Davis',2,7),(14181,6213,'Adam',0,8),(14181,55861,'Broker',2,9),(14181,6751,'Michelle',1,10),(14181,4451,'Kid',2,11),(14181,1218215,'Office Woman',1,12),(16428,134,'Quincy Watson',2,0),(16428,9779,'Evan',2,1),(16428,18285,'Rita Monroe',1,2),(16428,17773,'Nikki',1,3),(16428,12688,'Philip Gascon',2,4),(16428,117091,'Herself',0,5),(16428,6944,'Stylist',1,6),(10705,11181,'Henry V',2,0),(10705,937,'Chorus',2,1),(10705,8318,'Exeter',2,2),(10705,66250,'Bedford',2,3),(10705,13324,'French King',2,4),(10705,7056,'Katherine',1,5),(10705,5309,'Mistress Quickly',1,6),(10705,47493,'Duke Humphrey of Gloucester',2,9),(10705,138412,'Duke Edward of York',0,10),(10705,138413,'Archbishop of Canterbury',0,11),(10705,8224,'Bishop of Ely',2,12),(10705,138414,'Earl Richard of Cambridge',0,13),(10705,76218,'Lord Henry Scroop',0,14),(10705,47589,'Sir Thomas Grey',2,15),(10705,65,'Captain Fluellen',2,17),(10705,53917,'Gower',2,18),(10705,138411,'Williams',2,19),(10705,151797,'Jamy',2,20),(10705,1229305,'Westmoreland',2,21),(10705,1211850,'Sir Thomas Erpingham',2,22),(10705,26860,'Macmorris',2,23),(10705,1211929,'Bates',0,24),(10705,29859,'Lieutenant Bardolph',2,25),(10705,1923,'Sir John Falstaff',2,26),(10705,3894,'Robin the Luggage-Boy',2,27),(10705,8326,'Alice',1,28),(10705,17483,'Louis the Dauphin',2,29),(10705,186389,'Duke Charles of Orleans',2,30),(10705,20062,'Messenger',2,31),(10705,1220062,'Montjoy',0,32),(24621,41901,'Lorena',1,0),(24621,63522,'Cici',1,1),(24621,231014,'Patricia',1,2),(24621,72968,'Thomas Fuentes',0,3),(24621,92774,'Carmen',1,4),(24621,6862,'Victor',2,5),(24621,2051,'Maria',1,6),(24621,85931,'Rodrigo',2,7),(24621,543847,'Guy at festival',2,8),(14425,12799,'James \'Droz\' Andrews',2,0),(14425,27504,'Tom Lawrence',2,1),(14425,60950,'Rand McPherson',2,2),(14425,64999,'Katy',0,3),(14425,5601,'Samantha',1,4),(14425,15277,'Gutter',2,5),(14425,110141,'Mullaney',0,6),(14425,1852803,'Cecilia',0,7),(14425,156774,'Womynist #1',1,8),(14425,28410,'Mersh',2,9),(14425,121757,'Womynist #2',1,10),(14425,41232,'President Garcia-Thompson',1,11),(14425,1853272,'Dave #1',2,12),(14425,92843,'Dave #2',0,13),(14425,11154,'Raji',2,14),(14425,171181,'Deege',0,15),(14425,33339,'Pigman',2,16),(14425,131546,'Bantam Draper',2,17),(14425,44100,'Carter Prescott',2,18),(14425,130151,'Himself',2,19),(14425,1853280,'Kosmo',0,20),(14425,1853282,'The Giggler',0,21),(14425,137161,'Trustee #1',2,22),(14425,938430,'Trustee #2',2,23),(14425,1214418,'Moonbeam',0,24),(14425,171294,'Afrocentrist',2,25),(14425,1853284,'Computer Geek',2,26),(14425,1240202,'Gay Activist',0,27),(14425,137425,'Sanskrit Major',0,28),(14425,1853286,'Physics Major',1,29),(14425,79399,'Phys. Ed. Major',2,30),(14425,320003,'Jock #1',2,31),(14425,168758,'Jock #2',2,32),(14425,1503011,'Singer',0,33),(14425,1844300,'Folksinger',0,34),(14425,11011,'Bathroom Patron',2,35),(14624,16896,'Howard \'Red\' Stevens',2,0),(14624,74472,'Jason Stevens',2,1),(14624,17140,'Emily Rose',1,2),(14624,58114,'Alexia',1,3),(14624,8854,'Mr. Theophillis \'Ted\' Hamilton',2,4),(14624,16108,'Miss Hastings',1,5),(14624,29934,'Bill Stevens',2,6),(14624,1456341,'Patient',0,7),(14624,1589489,'Associate (uncredited)',2,8),(14624,133669,'Jack Stevens',2,9),(14624,83352,'Caitlin',1,10),(14624,186829,'Sarah Stevens',1,11),(14624,65749,'Ruth Stevens',1,12),(14624,65166,'Bill\'s Lawyer',2,13),(14624,102777,'Jack\'s Lawyer',2,14),(14624,6197,'Gus',2,15),(10179,64119,'Jason',2,0),(10179,18465,'Princess Karina',1,1),(10179,5146,'Roscoe',2,2),(10179,5657,'Maida',1,3),(10179,64120,'Killjoy',2,4),(10179,2372,'Zeno',2,5),(10179,8516,'Supreme Commander',2,6),(10179,119711,'Nanny',1,7),(10179,119712,'Zorn',2,8),(10179,119713,'Wendon',2,9),(10179,106052,'Count Paisley',0,10),(10179,119714,'Frog Lady',1,11),(10179,119715,'Fitzcairn / Prisoner',2,12),(10179,119716,'Lanky Nibs',0,13),(10179,58973,'Percy the Robot',0,14),(10179,119717,'Patch',2,15),(10179,11764,'Hymie',2,16),(10179,119718,'Old Karina',0,17),(10179,30299,'Elderly Jason',2,18),(10179,2201,'',2,19),(15568,1011102,'Johnny Bowen',2,0),(15568,77347,'Kyle Rhodes',2,1),(15568,58899,'Grace Bowen',1,2),(15568,90744,'Curt',2,3),(15568,90745,'Craig',0,4),(15568,90746,'Donny',0,5),(15568,20212,'Bryan Bowen',2,6),(15568,90747,'Mike Bowen',2,7),(15568,90748,'Daniel Bowen',0,8),(15568,1951,'Lindsay Bowen',1,9),(15568,66297,'Granddad',2,10),(15568,4735,'Coach Colasanti',2,11),(15568,90749,'Coach Owen Clark',2,12),(15568,131820,'Kate Dorset',1,13),(14057,12640,'Tom',2,0),(14057,1231,'Rebecca',1,1),(14057,8289,'Tobey',2,2),(14057,1579,'Elaine',1,3),(14057,21180,'Jasper Bernard',2,4),(14057,8170,'Faith Faison',1,5),(14057,6913,'Norah',1,6),(14057,52865,'Dr. Beekman',2,7),(14057,1225953,'Rand',2,8),(14057,1041542,'David',2,9),(14057,52776,'Pamela',1,10),(14057,84407,'Gordon',2,11),(14057,6474,'Dante',2,12),(12621,4581,'Dana Marschz',2,0),(12621,2229,'Brie Marschz',1,1),(12621,73127,'Octavio',2,2),(12621,53936,'Ivonne',1,3),(12621,66540,'Vitamin J',2,4),(12621,73128,'Rand Posin',2,5),(12621,73129,'Epiphany Sellars',1,6),(12621,73130,'Chuy',0,7),(12621,73131,'Yolanda',1,8),(12621,3041,'Principal Rocker',2,9),(12621,15234,'Gary',2,10),(12621,1951,'Elisabeth Shue',1,11),(12621,73132,'Mr. Marquez',2,12),(12621,73133,'Mrs. Marquez',1,13),(12621,73134,'Danny the Waiter',2,14),(27329,565525,'Queen Suriyothai',0,0),(27329,81039,'King Mahachakrepat',0,1),(27329,227708,'Lord Pirenthorathep',2,2),(27329,565526,'Lord Warawongsa',0,3),(27329,565527,'Lady Srisudachan',1,4),(27329,565528,'Lady Srichulalak',1,5),(29514,11782,'Jessica Valdemar',1,0),(29514,1037,'Roderick Usher',2,1),(29514,104045,'Dr. Robert Hoffman',2,2),(29514,5249,'Steven Pike',2,3),(29514,83665,'Annabel',1,4),(29514,104046,'Ernest Valdemar',2,5),(29514,22384,'Det. Legrand',2,6),(29514,10539,'Gloria Pym',1,7),(29514,1936,'Mr. Pym',2,8),(29514,12134,'Eleonora',1,9),(29514,92726,'Christian',2,10),(29514,102805,'Mr. Pratt',0,11),(29514,11784,'Det. Grogan',2,12),(29514,35551,'Betty',1,13),(29514,100507,'Nurse',1,14),(29514,54857,'Taxi Driver',0,15),(29514,104047,'Policeman',2,16),(29514,95428,'Young Policewoman',0,17),(29514,11161,'The Monomaniac',2,18),(29514,103835,'',2,19),(12454,55466,'Rory',2,0),(12454,9191,'Phil',2,1),(12454,53367,'Maureen',1,2),(12454,72305,'Penny',1,3),(12454,39658,'Samantha',1,4),(12454,72306,'Rachel',1,5),(12454,72309,'Cu00e9cile',1,6),(12454,72308,'Ron',2,7),(12454,1670,'Jason',2,8),(12454,72311,'Donna',1,9),(12454,72310,'Sid',2,10),(12454,72307,'Carol',1,11),(12454,3548,'Harold',2,12),(12454,72316,'Martha',1,13),(12454,72312,'Neville',2,14),(12454,72315,'Craig',2,15),(12454,72314,'Dinah',0,16),(12454,72317,'Ange',0,17),(12454,72313,'Dr. Simon Griffith',2,18),(12454,72318,'Michelle',2,19),(12454,976738,'Neurotic Woman',0,20),(12454,76944,'Party girl',1,21),(12454,122589,'Drunk',2,22),(12454,1221066,'Crash Driver',0,23),(12454,1222237,'Supervisor',1,24),(12454,1221056,'Silent Passenger',0,25),(12454,77638,'Man at Bar',0,26),(12454,145694,'Care Worker',1,27),(12454,29237,'Young Man',2,28),(15699,78564,'Kellyanne Williamson',1,0),(15699,38661,'Ashmol Williamson',2,1),(15699,77496,'Rex Williamson',2,2),(15699,28744,'Annie Williamson',1,3),(15699,75264,'Sid',2,4),(15699,78565,'Betsy',0,5),(15699,78566,'Vera Dunkley',1,6),(15699,78567,'Dan Dunkley',2,7),(17926,65561,'Euan Falcon',2,0),(17926,4,'Carrie',1,1),(17926,27855,'Josie',1,2),(17926,4441,'Brier Tucket',1,3),(17926,54815,'Luke Falcon',2,4),(17926,32203,'Mick Benson',2,5),(17926,148707,'Clea',0,6),(17926,26473,'Garrett Schweck',2,7),(17926,68495,'Michelle',1,8),(17926,27811,'Wick Treadway',2,9),(17926,1008729,'Christy',1,10),(17926,176312,'Cameron',2,11),(17926,1171859,'Jason From Acting Class',0,12),(17926,61833,'Brendan - Garrett\'s Assistant',2,13),(17926,200067,'Bat Guy',0,14),(25968,11863,'Veronika',1,0),(25968,11207,'Dr. Blake',2,1),(25968,17243,'Edward',2,2),(25968,21711,'Claire',1,3),(25968,6832,'Mari',1,4),(25968,94430,'Nurse White',1,5),(25968,94431,'Lecturer',0,6),(25968,10379,'Gabriel Durant',2,7),(25968,94432,'Nurse #1',2,8),(25968,52002,'Dr. Thompson',1,9),(25968,23378,'Mom',1,10),(25968,94434,'Old Fred',2,11),(25968,7241,'Nurse Josephine',1,12),(25968,92726,'Eric Grafton',2,13),(25968,94435,'Deluded Man Patient',0,14),(25968,94436,'Guy',2,15),(25968,94437,'Pro-Pundit',0,16),(25968,93752,'Old Fisherman',0,17),(25968,37151,'Nurse #2',2,18),(25968,94438,'Female Nurse #1',0,19),(25968,94439,'Work Colleague #3',0,20),(25968,94440,'Coffee Boy',0,21),(25968,94441,'Reporter',0,22),(25968,6171,'Dad',2,23),(25968,94442,'Anti-Pundit',0,24),(25968,94443,'Bartender',0,25),(25968,94444,'Veronika as 6 yr old',0,26),(25968,94445,'Superintendent',0,27),(25968,94446,'Work Colleague #2',0,28),(25968,94447,'Shouting Patient',0,29),(25968,94448,'Work Colleague #1',0,30),(25968,94449,'Parent #1 (uncredited)',0,31),(25968,94450,'Nurse (uncredited)',0,32),(11588,11864,'Simon Cable',2,0),(11588,98,'Clair',1,1),(11588,15555,'Anna',1,2),(11588,2692,'Peter',2,3),(11588,9029,'Doctor Newman',2,4),(11588,195575,'Nurse Clayton',1,5),(11588,231761,'l\'intrus',0,6),(11588,16480,'Doctor Truman',2,7),(11588,32747,'Mr. Travitt',2,8),(11588,1115,'Travis',2,9),(11588,1321560,'Female Resident',1,11),(11588,86467,'Morgue Orderly',2,12),(11588,231761,'Intruder',0,13),(11588,1321561,'5th Floor Nurse',0,14),(13483,17244,'Clay Beresford',2,0),(13483,56731,'Sam Lockwood',1,1),(13483,18288,'Dr. Jack Harper',2,2),(13483,5313,'Lilith Beresford',1,3),(13483,133046,'Brian the Orderly',0,4),(13483,4443,'Dr. Larry Lupin',2,5),(13483,8213,'Clayton Beresford Sr.',2,6),(13483,3229,'Dr. Jonathan Neyer',2,7),(13483,26473,'Dr. Puttnam',2,8),(13483,41547,'Penny Carver',1,9),(13483,35029,'Dracula',2,10),(13483,93639,'Officer Doherty',2,11),(13483,428440,'Dr. Neyer\'s Nurse',1,12),(13483,2966,'Young Clay',2,13),(13483,1674439,'Funeral Minister',2,14),(13483,1079042,'Mr. Waturi',2,15),(13483,1674492,'Asian Translator',1,16),(13483,1201220,'Pregnant Woman',1,17),(13483,81681,'Financial News Analyst',2,18),(13483,66599,'Financial News Analyst',2,19),(25196,1229,'Bad Blake',2,0),(25196,1579,'Jean Craddock',1,1),(25196,72466,'Tommy Sweet',2,2),(25196,3087,'Wayne',2,3),(25196,58535,'Jack Greene',2,4),(25196,19453,'Bill Wilson',2,5),(25196,939166,'Steven Reynolds',2,6),(25196,982297,'Bear',2,7),(25196,5151,'Jo Ann',1,8),(16323,73931,'Mary Rose Foster',0,0),(16323,27554,'Rudge Campbell',2,1),(16323,8351,'Huston Dyer',2,2),(16323,5048,'Billy Ray',2,3),(16323,18181,'Pfc. Mal',2,4),(16323,45863,'Mrs. Foster',1,5),(16323,41262,'',2,6),(16323,1739,'',2,7),(16323,85869,'',2,8),(16323,783,'',2,9),(16323,127738,'',2,10),(16323,16556,'',2,11),(16727,53493,'Gogol/Nikhil',2,0),(16727,55062,'Ashima Ganguli',1,1),(16727,76793,'Ashoke Ganguli',2,2),(16727,128707,'Sonali Ganguli',1,3),(16727,6857,'Maxine Ratliffe',1,4),(16727,20803,'Moushumi Mazoomdar',1,5),(16727,128708,'Ashoke\'s Mother',0,6),(16727,128709,'Ashima\'s Father',0,7),(16727,128710,'Ashima\'s Grandmother',0,8),(10696,66586,'Billie Frank',1,0),(10696,66587,'Julian Dice Black',0,1),(10696,18288,'Timothy Walker',2,2),(10696,31138,'Lillian Frank',0,3),(10696,58780,'Sylk',1,4),(10696,68430,'Roxanne',1,5),(10696,105881,'Louise',1,6),(10696,1001769,'Rafael',2,7),(10696,1035445,'Peter',2,8),(19644,85008,'Kang In-chan',2,0),(19644,83637,'Sergeant Jo',2,1),(19644,17121,'Commandant',2,2),(19644,83682,'Sang-pil',2,3),(19644,1004565,'Won-hee',0,5),(19644,109060,'Geun-jae',2,6),(19644,1320623,'Ji-Hwan',0,7),(19644,80655,'Chan-seok',2,8),(29963,37260,'Fanny Brawne',1,0),(29963,17064,'John Keats',2,1),(29963,15684,'Mr. Brown',2,2),(29963,17258,'Mrs. Brawne',1,3),(29963,1326413,'Toots',0,4),(29963,25663,'Samuel',2,5),(29963,36663,'Maria Dilke',1,6),(29963,110872,'Charles Dilke',2,7),(29963,17022,'Abigail',1,8),(29963,65445,'Reynolds',2,9),(29963,239877,'Reynolds sister',0,10),(29963,1337754,'Reynolds sister',0,11),(29963,55471,'Mr. Severn',2,12),(29963,28477,'Mr. Hunt',2,13),(29963,89823,'Tom Keats',2,14),(29963,20243,'shopkeeper',2,15),(29963,192838,'Mrs. Bentley',1,16),(29963,229634,'Mr. Haslam',2,17),(29963,383624,'Mr. Taylor',2,18),(26022,35742,'Rizwan Khan',2,0),(26022,55061,'Mandira Khan',1,1),(26022,35792,'Rizwan\'s brother',2,2),(26022,94567,'Rizwan\'s mother',0,3),(26022,52771,'Rizwan Khan (as a child)',0,4),(26022,94568,'Radha',0,5),(26022,53375,'Faisal Rahman',2,6),(26022,53105,'Raj',2,7),(26022,94570,'Barack Obama',2,8),(26022,208056,'French Reporter',0,9),(26022,166617,'Walmart Manager',2,10),(26022,1003161,'Young Reese Garrick (as Michael Arnold)',2,13),(26022,1490432,'Sarah Garrick',0,14),(20360,35070,'Arjun Ballu Singh',2,0),(20360,81869,'Jasmeet \'Jazz\' M. Malhotra',1,1),(20360,35791,'Manmohan Malhotra',2,2),(20360,85977,'Charles \'Charlie\' Brown',2,3),(20360,85714,'Imran \'Immi\' P. Khan',0,4),(20360,85978,'Parvez Khan',2,5),(20360,85979,'Susan',1,6),(20360,84957,'Bobby Bedi',2,7),(20360,150469,'Bebo M. Malhotra',0,8),(20360,150470,'Laila',1,9),(11620,82216,'Marcus Vinicius',2,0),(11620,20141,'Lygia',1,1),(11620,29655,'Petronius',2,2),(11620,14501,'Nero',2,3),(11620,101497,'Poppaea',1,4),(11620,10027,'Peter',2,5),(11620,135066,'Paul',2,6),(11620,24602,'Eunice',1,7),(11620,83468,'Ursus',2,8),(11620,85345,'Plautius',2,9),(11620,88895,'Pomponia',1,10),(11620,89064,'Tigellinus',2,11),(11620,31296,'Nerva',2,12),(11620,39001,'Acte',1,13),(11620,273906,'Miriam',0,14),(11620,16757,'Lygia\'s Slave (uncredited)',1,15),(11620,3635,'Christian Prisoner in Arena (uncredited)',1,16),(11620,18841,'Imperial Guard (uncredited)',2,17),(11620,12308,'Narrator',2,18),(11620,108172,'Guard',2,19),(11620,12006,'Hairdresser',2,20),(11620,102746,'Hasta - 2nd Praetorian',2,21),(11620,2265,'Young Christian Girl',1,22),(11620,39165,'Mounted Captain',2,23),(11620,87518,'Christ',2,24),(11620,930861,'Older Woman',0,25),(11620,1090000,'',0,26),(11620,17075,'',0,27),(11620,536760,'Nazarius',2,28),(11620,1597570,'Terpnos',0,29),(11620,130012,'Seneca',2,30),(11620,54038,'Phaon',2,31),(11620,123902,'Chilo',0,32),(11620,1419615,'Rufia',0,33),(11620,1082662,'Lucan',2,34),(11620,2576,'Anaxander',2,35),(11620,543681,'Galba',0,36),(11620,14147,'Parmenida',1,37),(11620,931423,'Christian Prisoner in Arena',0,38),(11620,1297581,'Fisherman',0,39),(11620,30163,'Fisherman',2,40),(11620,1287807,'Fisherman',0,41),(11620,1422112,'Fisherman',0,42),(11620,47690,'Senator',0,43),(11620,1296233,'Noble',0,44),(11620,1468193,'Officer',0,45),(11620,1266695,'Officer',0,46),(11620,99520,'Lydia Guard',0,47),(11620,105586,'Guard',0,48),(11620,1124231,'Legionnaire',2,49),(11620,126659,'Apostle',0,51),(11620,149020,'Apostle',0,52),(11620,1173152,'Apostle',0,53),(11620,1090894,'Apostle',0,54),(11620,588203,'Pedicurist',0,55),(11620,114422,'Headkeeper',0,56),(11620,132786,'Wine Bibber',0,57),(11620,1576475,'Man with Wine Cup',0,58),(11620,1471207,'Banquet Man',0,59),(11620,10542,'Slave',0,60),(11620,1127313,'White Slave Girl',0,61),(11620,1204933,'Young Unbaptized Woman',0,62),(11620,126562,'Steward',0,63),(11620,992778,'',1,64),(11620,94272,'',2,65),(11620,1177604,'',0,66),(11620,33820,'',0,67),(11620,149020,'',0,68),(11620,54941,'',1,69),(11620,50748,'',0,70),(11620,126559,'',0,71),(11620,1469574,'',0,72),(11620,1127395,'',0,73),(11620,1532140,'',0,74),(11620,110207,'',0,75),(11620,1808711,'Little Boy',0,76),(14353,57674,'Shilo Wallace',1,0),(14353,7004,'Rotti Largo',2,1),(14353,34257,'Nathan Wallace / Repo Man',2,2),(14353,76689,'Blind Mag',1,3),(14353,38406,'Amber Sweet',1,4),(14353,27737,'Luigi Largo',0,5),(14353,76693,'Pavi Largo',2,6),(14353,76686,'Graverobber',2,7),(14353,76696,'Marni Wallace',1,8),(14353,76697,'Jessica Adams',0,9),(14353,76698,'Rotti\'s Chauffeur',0,10),(14353,76700,'Sherrie Alviso',1,11),(14353,21730,'Guitar Player (uncredited)',1,12),(11818,70576,'Polat Alemdar',2,0),(11818,1954,'Sam William Marshall',2,1),(11818,70577,'Abdurrahman Halis Karuki',0,2),(11818,70578,'Memati Bas',2,3),(11818,109137,'Leyla',1,4),(11818,2048,'Doctor',2,5),(11176,55983,'Kermit the Frog / Rowlf / Dr. Teeth / Waldorf / Doc Hopper\'s Men / Link Hogthrob / Swedish Chef (voice)',2,0),(11176,7908,'Miss Piggy / Fozzie Bear / Animal / Sam the Eagle / Doc Hopper\'s Men / Marvin Suggs (uncredited) / Swedish Chef (hands) (uncredited) / Motorcycle Guy (uncredited) (voice)',2,1),(11176,68455,'Floyd Pepper / Robin the Frog / Crazy Harry / Lew Zealand / Camilla / Dr. Bunsen Honeydew (assistant) (uncredited) (voice)',2,2),(11176,68456,'Scooter / Statler / Janice / Sweetums / Beaker / Fozzie Bear (assistant) (voice)',2,3),(11176,64181,'The Great Gonzo / Dr. Bunsen Honeydew / Zoot / Doglion / Iraqian in El Sleezo Cafe / Pig (voice)',2,4),(11176,1466,'Doc Hopper',2,5),(11176,6168,'Max',2,6),(11176,101879,'Himself / Charlie McCarthy - (voice)',2,7),(11176,69951,'Mad Man Mooney',2,8),(11176,14639,'Professor Max Krassman',2,9),(11176,5563,'El Sleezo Cafe Owner',2,10),(11176,6844,'Bernie the Agent',2,11),(11176,827,'Beauty Contest Compere',2,12),(11176,82388,'Ice Cream Vendor',2,13),(11176,29803,'El Sleezo Patron',1,14),(11176,10556,'Myth',1,15),(11176,9599,'Miss Tracy',1,16),(11176,67773,'Insolent Waiter',2,17),(11176,9309,'Balloon Vendor',2,18),(11176,10169,'El Sleazo Tough',2,19),(11176,40,'Lew Lord',2,20),(11176,35040,'El Sleazo Pianist',2,21),(11176,1179590,'Snake Walker',0,22),(11176,1856726,'Sailor',0,23),(11176,1856727,'Bartender',0,24),(11176,92761,'Lumberjack',2,25),(11176,3042,'Gate Guard',0,26),(11176,107080,'One-Eyed Midget',2,27),(11176,68457,'El Sleezo Cafe Waiter',2,28),(11176,1478241,'Cowboy',0,29),(11176,4778,'Woman with Balloon',1,30),(11176,4610,'',2,31),(11176,510,'',2,32),(11217,56251,'Lars',2,0),(11217,52049,'Putman',2,1),(11217,56253,'Dave',2,2),(11217,56252,'Sam',2,3),(11217,68634,'Kellie',1,4),(11217,2053,'Coconut Pete',2,5),(11217,35476,'Jenny',1,6),(11217,20492,'Penelope',1,7),(11217,105648,'Manny',2,8),(11217,1058088,'Carlos',0,9),(15121,5823,'Maria',1,0),(15121,290,'Captain Von Trapp',2,1),(15121,7331,'The Baroness',1,2),(15121,29283,'Max Detweiler',2,3),(15121,77895,'Mother Abbess',1,4),(15121,1041410,'Liesl',0,5),(15121,92691,'Louisa',1,6),(15121,29095,'Friedrich',2,7),(15121,1243355,'Kurt',0,8),(15121,121640,'Brigitta',1,9),(15121,1198142,'Marta',0,10),(15121,1194314,'Gretl',0,11),(15121,88460,'Sister Margareta',1,12),(15121,198948,'Sister Berthe',0,13),(15121,71781,'Herr Zeller',2,14),(15121,1016770,'Rolfe',2,15),(15121,10926,'Frau Schmidt',1,16),(15121,1198144,'Franz',0,17),(15121,187678,'Sister Sophia',1,18),(15121,1198143,'Sister Bernice',0,19),(15121,21878,'Baroness Ebberfield',1,20),(14114,77801,'Elgin',2,0),(14114,77802,'David',2,1),(14114,235028,'Rico',0,3),(14114,235030,'Rashann',0,4),(14114,235031,'Vick',0,5),(14114,1216509,'Liyah',0,6),(10734,190,'Frank Morris',2,0),(10734,2463,'Warden',2,1),(10734,66288,'Chester Doc Dalton',2,2),(10734,14320,'Clarence Anglin',2,3),(10734,10430,'John Anglin',2,4),(10734,15534,'English',2,5),(10734,11519,'Charley Butts',2,6),(10734,66293,'Wolf',2,7),(10734,66294,'Litmus',2,8),(10734,66295,'Johnson',2,9),(10734,66296,'Wagner',2,10),(10734,153459,'Associate Warden',0,11),(10734,66302,'Cellblock Captain',2,12),(10734,66298,'Fight Guard',2,13),(10734,66297,'Mr. Zimmerman',2,14),(10734,4203,'Weston',2,15),(10734,66305,'Stone',0,16),(10734,66303,'Cranston',0,17),(10734,66300,'Exam Guard',0,18),(10734,66299,'Medical Technical Assistant',2,19),(10734,1171241,'Exam Guard',0,20),(10734,165364,'Lucy',1,21),(10734,161279,'Police Sgt.',0,22),(10734,1727473,'English\'s Daughter',0,23),(10734,66301,'Beck',2,24),(10734,179573,'Guard',2,25),(10734,1118943,'Guard',0,26),(10734,66304,'Bobs',2,27),(10734,91915,'Helicopter Pilot',0,28),(10734,179104,'Visitors\' Guard',0,29),(10734,1200729,'Guard',0,30),(10734,10380,'Guard',2,31),(10734,1522786,'Guard',0,32),(10734,56192,'Guard',2,33),(10734,159000,'Guard',0,34),(10734,1234927,'Guard',0,35),(10734,114512,'Guard',0,36),(10734,175871,'Guard',0,37),(10734,118240,'Guard',2,38),(10734,13660,'Guard',2,39),(10734,1212458,'Guard',0,40),(10734,1577043,'Inmate',1,41),(10734,2047,'Inmate',2,42),(10734,29382,'Inmate',2,43),(10734,89313,'Inmate',0,44),(28121,16217,'Brandi',1,1),(28121,78029,'Darnell',2,2),(28121,9788,'Mia',1,3),(28121,56950,'Ma Wright',1,4),(28121,93279,'Tee',2,5),(10885,11866,'Benjamin Shaw',2,0),(10885,19538,'Jane Shaw',1,1),(10885,67318,'Megumi Tanaka',1,2),(10885,62562,'Bruno',2,3),(10885,117116,'Yoko',1,4),(10885,74427,'Adam',2,5),(10885,78230,'Seiko',1,6),(10885,105830,'Ritsuo',2,7),(10885,237362,'Akiko',0,8),(10885,123857,'Murase',0,9),(10885,208294,'Natasha',1,10),(10885,37292,'Megan',1,11),(10885,1117056,'Wedding Photographer',0,12),(10885,1117057,'Police Officer',0,13),(10885,1117058,'Police Officer',0,14),(16471,54812,'Max Fielder',2,0),(16471,38160,'Darcy',1,1),(16471,12850,'Mark Winslow',2,2),(16471,5960,'Lorraine',1,3),(16471,80866,'Dorita',1,4),(16471,1535,'Brian Stills',2,5),(16471,128602,'Barry',2,6),(16471,128600,'Mobile Supervisor',2,7),(16471,101653,'Pete',2,8),(16471,128603,'Controller #1',0,9),(16471,128604,'Controller #2',0,10),(11971,11181,'Benedikt',2,0),(11971,29859,'Signor Leonato',2,1),(11971,2232,'Dogberry',2,2),(11971,2692,'Claudio',2,3),(11971,6384,'Don Juan',2,4),(11971,7056,'Beatrice',1,5),(11971,5292,'Don Pedro of Aragon',2,6),(11971,3967,'Hero',1,7),(11971,151797,'Friar Francis',2,8),(11971,8318,'Antonio',2,9),(11971,17787,'Ursula',1,10),(11971,11356,'Margaret',1,11),(11596,5141,'Herself / Nancy Thompson',1,0),(11596,5139,'Freddy Krueger / Himself',2,1),(11596,8186,'Dylan Porter',2,2),(11596,5140,'Himself',2,3),(11596,166594,'Chase Porter',2,4),(11596,12547,'Julie',1,5),(11596,11163,'Himself / Lt. Donald Thompson',2,6),(11596,161731,'Freddy\'s Hand Double',2,7),(11596,35521,'Charles \'Chuck\' Wilson',2,8),(11596,42708,'Terrance \'Terry\' Feinstein',2,9),(11596,35581,'Herself',1,10),(11596,553772,'Script Supervisor',1,11),(11596,553773,'Limo Driver',0,12),(11596,154883,'TV Studio P.A.',2,13),(11596,92568,'Himself',2,14),(11596,553774,'New Line Receptionist',0,15),(11596,13668,'Herself',1,16),(11596,13663,'Himself',2,17),(11596,553775,'Kim at New Line',0,18),(11596,172525,'Highway Patrolman',0,19),(11596,188198,'Highway Patrolwoman',0,20),(11596,204152,'Coroner',2,21),(11596,6951,'Morgue Attendant',2,22),(11596,168289,'Minister',0,23),(11596,13657,'Himself (as Nick Corri)',2,24),(11596,63914,'Herself',1,25),(11596,154905,'Graveyard Worker',0,26),(11596,553776,'Patrice Englund',0,27),(11596,7401,'Nurse with Pills',1,28),(11596,553777,'Newscaster',0,29),(11596,553778,'Counter Nurse',0,30),(11596,553779,'ICU Nurse',0,31),(11596,182556,'ICU Nurse',0,32),(11596,553780,'ICU Nurse',1,33),(11596,553781,'Junior Nurse with Needle',0,34),(11596,427,'Senior Nurse with Needle',1,35),(11596,553782,'Security Officer',0,36),(11596,553783,'Nurse Abbott',0,37),(11596,162747,'Nurse in Hospital Room with Heather (uncredited)',1,38),(11596,234423,'Hospital Intern (uncredited)',0,39),(11596,13656,'Christina \'Tina\' Grey (archive footage) (uncredited)',1,40),(11596,1212018,'Dr. Christine Heffner',0,41),(14429,78501,'Nicole Maris',1,0),(14429,1756,'Mr. Maris',2,1),(14429,5090,'Chase Hammond',2,2),(14429,40980,'Alicia DeGasario',1,3),(14429,17303,'Dulcie',1,4),(14429,77803,'Dee Vine',0,5),(14429,55194,'Mr. Rope',2,6),(14429,31712,'Mr. Hammond',2,7),(14429,70830,'Mrs. Harris',1,8),(14429,942055,'Ray Neelay',2,9),(14429,4451,'David Ednasi',2,10),(14429,171871,'Brad Seldon',0,11),(13751,74688,'Akeelah',1,0),(13751,2975,'Dr. Larabee',2,1),(13751,9780,'Tanya',1,2),(13751,87003,'Mr. Welch',2,3),(13751,109641,'Javier',2,4),(13751,1054837,'Dylan',2,5),(13751,1224048,'Georgia',1,6),(13751,59295,'Devon',2,7),(13751,155200,'Terrence',2,8),(13751,59180,'Kiana',1,9),(13751,202958,'Derrick-T',2,10),(13751,1408947,'Ms. Cross',1,11),(13751,21629,'Mr. Chiu',2,12),(13751,17858,'Steve',2,13),(13751,1649818,'Polly',1,14),(13751,1649821,'Roman',2,15),(13751,62893,'Ted Saunders',2,16),(13751,1597262,'District Judge',2,17),(13751,23975,'Regional Judge',1,18),(13751,1649824,'Herself',1,19),(13751,20820,'Regional Pronouncer',2,20),(13751,1649831,'Cheating Boy',2,21),(13751,1615107,'Cheating Boy\'s Mom',1,22),(13751,68672,'Akeelah\'s Father',2,23),(13751,25946,'Volunteer',1,24),(13751,1224996,'Reporter',1,25),(13751,121642,'Woman on TV',1,26),(13751,59232,'Korean Grocer',2,27),(13751,1649833,'Rajeev Subramonian',2,28),(14536,9137,'Lucy Hill',1,0),(14536,18688,'Ted Mitchell',2,1),(14536,18999,'Stu Kopenhafer',2,3),(14536,6751,'Blanche Gunderson',1,4),(14536,62250,'Lars Ulstead',0,5),(14536,4432,'Trudy Van Uuden',1,6),(14536,935909,'Bobbie Mitchell',0,7),(14536,1131842,'Joan',0,8),(14536,1131844,'Rob Deitmar',0,9),(14536,1116654,'Donald Arling',0,10),(14536,193551,'Harve Gunderson',2,11),(14536,966075,'Kimberley',1,12),(14536,940446,'Flo',1,13),(14536,80294,'Wallace Miller',0,14),(14536,185116,'Winnie',0,15),(14536,966077,'Billy Gunderson',2,16),(14536,205550,'Cathy',0,17),(14536,174940,'Kiki',1,18),(15049,142995,'David Bouchard',2,0),(15049,10132,'Martin Ward',2,1),(15049,77819,'Journaliste',0,2),(15049,1189603,'Tattoo Killer',0,3),(15049,1152768,'Stef',0,4),(15049,220788,'Harry Buttman',2,5),(15049,2681,'Jonathan Ward',0,6),(15049,79610,'Gabrielle',1,7),(15049,51040,'Iris Ward',1,8),(15049,32888,'Animateur radio de Montru00e9al',0,9),(15049,109619,'Suzie',1,10),(15049,224816,'Capt. Le Boeuf',2,11),(15049,105932,'Jeff',0,12),(15049,1212661,'Tom Berry',2,13),(22821,54789,'Connor MacManus',2,0),(22821,4886,'Murphy MacManus',2,1),(22821,9188,'Poppa Il Duce',0,2),(22821,5365,'Romeo',2,3),(22821,35551,'Eunice Bloom',1,4),(22821,8949,'The Roman',2,5),(22821,73035,'Rick',2,6),(22821,21624,'Concezio Yakavetta',2,7),(22821,54790,'Rocco',2,8),(22821,105776,'Detective Greenly',2,9),(22821,54792,'Detective Duffy',2,10),(22821,54791,'Detective Dolly',2,11),(22821,105777,'Doc',0,12),(22821,44103,'The Chief',2,13),(22821,105778,'Louie',0,14),(22821,1212955,'Crew Cut',0,15),(22821,60966,'Jimmy the Gofer',2,16),(22821,185165,'Uncle Cesar',2,17),(22821,200598,'Father McKinney',0,18),(22821,133335,'Irish Gun Dealer',2,19),(22821,193939,'Gorgeous George',2,20),(22821,1045822,'Father Sibeal',2,21),(22821,1423212,'Jacob McManus',0,22),(22821,54200,'Jo Jo Rhama',0,23),(22821,76973,'Lloyd',2,24),(22821,5918,'Roy',2,25),(22821,5293,'Paul Smecker (uncredited)',2,26),(22821,1042709,'Massage Therapist',0,27),(22821,1287890,'Officer Chaffey',0,28),(22821,1423219,'50\'s Mafioso',0,29),(22821,1423376,'50\'s Mafioso',0,30),(22821,180871,'50\'s Thug',0,31),(22821,1423386,'50\'s Thug',0,32),(22821,5927,'50\'s Thug',2,33),(22821,59198,'Giant',2,34),(22821,1423391,'Cab Driver',0,35),(22821,1233146,'Capo',2,36),(22821,1423398,'Capo',0,37),(22821,224309,'Capo',0,38),(22821,8356,'Capo',0,39),(22821,28242,'Capo',0,40),(22821,1396708,'Capo',0,41),(22821,1244111,'Dock Worker',0,42),(22821,1423450,'G-Man',2,43),(22821,1423451,'Hot Dog Vendor',0,44),(22821,1423453,'Mexican Seaman',0,45),(22821,1423454,'North Side Bruglione',0,46),(22821,1423458,'North Side Bruglione',0,47),(22821,216224,'North Side Bruglione',0,48),(22821,100464,'North Side Bruglione',2,49),(22821,1423459,'North Side Bruglione',0,50),(22821,59602,'North Side Bruglione',0,51),(22821,1423460,'Police Officer',0,52),(22821,1225378,'Patronazzi',0,53),(22821,1225378,'Pedestrian',0,54),(22821,1423473,'Pedestrian',0,55),(22821,1239425,'Reporter #1',0,56),(22821,1423474,'Reporter #2',0,57),(22821,1423475,'Prison Guard',0,58),(22821,1423476,'FBI Agent',0,59),(22821,1423477,'Thug in the Woods',0,60),(22821,1423478,'Street Interviewee',0,61),(22821,1423479,'Street Interviewee',0,62),(22821,1423480,'Street Interviewee',0,63),(22821,1423481,'Street Interviewee',0,64),(22821,1423482,'Street Interviewee',0,65),(10873,6949,'F. W. Murnau',2,0),(10873,5293,'Max Schreck',2,1),(10873,1646,'Albin Grau',2,2),(10873,2130,'Fritz Arno Wagner',2,3),(10873,2462,'Greta Schru00f6der',0,4),(10873,1926,'Gustav von Wangenhein',2,5),(10873,162587,'Henrik Galeen',0,6),(10873,554271,'Paul',0,7),(10873,20523,'Wolfgang Mu00fcller',2,8),(10873,554272,'Elke',0,9),(10873,554273,'Maria',0,10),(10873,554274,'Innkeeper',0,11),(10873,554275,'Innkeeper\'s Wife',0,12),(10873,549499,'Reporter 1',2,13),(10873,18956,'Reporter 2',0,14),(23570,14409,'Tom Thompson',2,0),(23570,12052,'Julie DeMarco',1,1),(23570,4688,'Brad Schorr',2,2),(23570,3051,'Cynthia',1,3),(23570,10556,'Tom\'s Mother',1,4),(23570,15424,'Scott',2,5),(23570,138240,'Lauren',1,6),(23570,78518,'Suzanne DeMarco',1,7),(23570,138242,'Aunt Lucille',1,8),(23570,1173,'Philip DeMarco',2,9),(23570,10767,'Ruth Abernathy',1,10),(23570,21359,'The Job Interviewer',2,11),(19489,134,'Michael',2,0),(19489,9781,'Rae',1,1),(19489,12852,'Pembry',2,2),(19489,53085,'Jack',2,3),(19489,28410,'Beaumont',2,4),(19489,41901,'Trina',1,5),(19489,9211,'Rodrigo',2,6),(19489,34490,'Mary',1,7),(19489,84730,'Sal',2,8),(19489,9291,'Biker',2,9),(19489,14415,'Gloria',1,10),(19489,62712,'Billy (SWAT Team Leader)',2,11),(19489,65400,'Sonny',0,12),(19489,157567,'Jose',2,13),(19489,165453,'Rusty',2,14),(19489,136482,'Alice',1,15),(19489,157616,'Howard',2,16),(19489,1212467,'Wilma',0,17),(19489,214108,'Clute',0,18),(19489,1233029,'Delinquent',0,19),(19489,1506264,'Reporter',0,20),(19489,87740,'Leon',2,21),(19489,1506265,'Cameraman',0,22),(19489,1506266,'Messenger',0,23),(19489,101259,'Pilot',1,24),(14629,955,'Isabella Oliveira',1,0),(14629,55824,'Toninho Oliveira',0,1),(14629,11365,'Cliff Lloyd',2,2),(14629,11077,'Alex Reeves',0,3),(14629,25023,'TV Director',1,4),(14629,86267,'Claudia Hunter',1,5),(14629,6195,'Monica Jones',2,6),(13154,16644,'Sgt. Chris Kenner',2,0),(13154,57700,'Johnny Murata',2,1),(13154,11398,'Funekei Yoshida',2,2),(13154,13445,'Minako Okeya',1,3),(13154,702,'Tanaka',2,5),(13154,129463,'Eddie',2,6),(13154,59184,'Detective Nelson',2,7),(13154,103593,'Angel Mueller',0,8),(13154,81570,'Muto',0,9),(13154,33500,'Mama Yamaguchi',1,10),(13154,158825,'Ito',2,11),(13154,157085,'Nonnie Russell - Coroner',1,12),(13154,105047,'Hagata, the Torturer',2,13),(13154,953728,'Sato',0,14),(26618,73421,'Clay Bidwell',2,0),(26618,4937,'Lester Long',2,1),(26618,21197,'Agent Dale Shelby',1,2),(26618,10000,'Earl',2,3),(26618,95789,'Amanda',1,4),(26618,58381,'Deputy Barney',2,5),(26618,58620,'Glen',2,6),(26618,1006135,'Gloria Collins',0,7),(26306,7499,'Steve Prefontaine',2,0),(26306,8655,'Bill Bowerman',2,1),(26306,18977,'Bill Dellinger',2,2),(26306,33654,'Pat Tyson',2,3),(26306,32225,'Elfriede Prefontaine',1,4),(26306,21412,'Nancy Alleman',1,5),(26306,18657,'Elaine Finley',1,6),(26963,96669,'Brendan (voice)',2,0),(26963,96673,'Aisling (voice)',0,1),(26963,2039,'Abbot Cellach (voice)',2,2),(26963,96671,'Aidan (voice)',2,3),(26963,96670,'Brother Tang / Leonardo (voice)',2,4),(26963,96674,'Brother Assoua (voice)',0,5),(26963,96672,'Adult Brendan (voice)',2,6),(26963,1795548,'Brother Square (voice)',0,7),(13072,7447,'Caesar',2,0),(13072,106814,'Young Michael',0,1),(13072,27974,'Young Bobby',0,2),(13072,106815,'Young Carmine',0,3),(13072,106816,'Priest',0,4),(13072,1894,'Carmine Mancuso',2,5),(13072,98953,'Bobby Canzoneri',2,6),(13072,33260,'Michael Turner',2,7),(13072,8211,'Ellen',1,8),(13072,18315,'Amy',1,9),(13072,1634913,'Angela',1,10),(30141,3223,'Dan Dark',2,0),(30141,32,'Nicola, Nina, Blonde',1,1),(30141,2461,'Dr. Gibbon',2,2),(30141,18325,'Mark Binney',2,3),(30141,3897,'Nurse Mills',1,4),(30141,3490,'First Hood',2,5),(30141,4253,'Second Hood',2,6),(30141,17832,'Betty Dark / Hooker',1,7),(30141,1981,'Chief of Staff',1,8),(30141,33457,'Nurse Nozhki',1,9),(30141,26292,'Young Dan Dark',2,10),(30141,3712,'Skin Specialist',2,11),(30141,142204,'Mr. Dark',2,12),(17044,2462,'Stella',0,0),(17044,3293,'Ag (Agapanthus)',1,1),(17044,58016,'Prue (Prudence)',1,2),(17044,6162,'Philip',2,3),(17044,978,'',2,4),(10288,9188,'Fido',0,0),(10288,530,'Helen Robinson',1,1),(10288,19152,'Bill Robinson',2,2),(10288,64753,'Timmy Robinson',2,3),(10288,15319,'Jonathan Bottoms',2,4),(10288,1462,'Mr. Theopolis',2,5),(10288,58800,'Tammy',1,6),(10288,203630,'Cindy Bottoms',1,7),(10288,1228306,'Roy Fraser',0,8),(10288,1113299,'Stan Fraser',0,9),(10288,64673,'Dee Dee Bottoms',1,10),(10288,42708,'Frank Murphy',2,11),(10288,125581,'Miss Mills',1,12),(10288,11831,'Mrs. Henderson',1,13),(10288,1396395,'Floyd',0,14),(12183,36422,'Wendell Baker',2,0),(12183,8170,'Doreen',1,1),(12183,16429,'Reyes Morales',2,2),(12183,887,'Neil King',2,3),(12183,10823,'L.R. Nasher',2,4),(12183,5048,'Skip Summers',2,5),(12183,5950,'Boyd Fullbright',2,6),(12183,62842,'McTeague',2,7),(12183,23659,'Dave',2,8),(12183,22621,'Irma',1,9),(12183,31715,'May',1,10),(12183,71562,'Bob Draper',2,11),(12183,71561,'Wanda King',1,12),(12183,71563,'Reverend Shackelton',2,13),(12183,71564,'Lucy',1,14),(12183,71565,'Marianne',1,15),(12183,71567,'Otto Brinker',0,16),(12183,71566,'Dr. Van Horn',0,17),(12183,71569,'Sonny Sr.',0,18),(12183,71568,'Federale Officer',0,19),(12183,83271,'Paper Boy',2,20),(12192,16501,'Ted Grey',2,0),(12192,24967,'Gwen Williamson',1,1),(12192,51381,'Jake Gallo',2,2),(12192,52394,'Juliette Bath',1,3),(12192,73589,'Griffin Cavenaugh',2,4),(12192,11077,'Dr. Quentin Morris',0,5),(12192,73590,'Catherine Ivy',0,6),(13197,11006,'Tommy',2,0),(13197,6197,'Agent Horvath',2,1),(13197,67524,'Agent Thornton',2,2),(13197,2778,'Matty Matello',2,3),(13197,1771,'Joey',2,4),(13197,84989,'Rocco',2,5),(13197,31007,'Sipio',2,6),(13197,18304,'Provenzano',2,7),(13197,18287,'Willy',2,8),(13197,6066,'Junior',2,9),(13197,51214,'Vincent',2,10),(13197,5576,'Murtha',2,11),(13197,15555,'Brandy',1,12),(10913,478,'Dick Dandelion',2,0),(10913,8984,'Krugsby',2,1),(10913,11665,'Freddie',2,2),(10913,67453,'Sebastian',2,3),(10913,17486,'Susan',1,4),(10913,26999,'Huey',2,5),(10913,4451,'Stevie',2,6),(10913,55272,'Clarabelle',1,7),(10425,8167,'Tim Kearney',2,0),(10425,2975,'Tad Gruzsa',2,1),(10425,59315,'Elizabeth',1,2),(10425,32224,'Bobby Z',2,3),(10425,2234,'Duke',2,4),(10425,65122,'Drug dealer',0,5),(10425,65121,'Security Guard',0,6),(10425,65123,'Surfer Girl',1,7),(10425,30613,'Johnson',2,8),(10425,78892,'Maddog',2,9),(10425,63213,'Party girl',1,10),(10425,22462,'Don Huertero',2,11),(10425,65126,'Felipe',0,12),(10425,65124,'Actor',0,13),(10425,65125,'Ashley',0,14),(10425,65127,'Monk\'s Boat Captain',2,15),(10425,973,'Brian Cervier',2,16),(10425,65129,'Prisoner',0,17),(10425,65130,'Server at party',0,18),(10425,65128,'Monk\'s bikini babe #2',0,19),(10425,22132,'Boom Boom',2,20),(10425,65131,'Aryan Brotherhood inmate',0,21),(10425,1636975,'Prisoner (uncredited)',2,22),(21512,585,'Sallow',2,0),(21512,6720,'Kidda',1,1),(21512,18792,'Mbulu',2,2),(21512,27570,'Big Cimber',1,3),(21512,7132,'Young Gar',2,4),(21512,138595,'Gandhi',0,5),(21512,152463,'Dog Boy',2,6),(21512,1112418,'Kidda\'s Father',0,8),(21512,1112419,'Samchin Head Elder',0,9),(21512,1112420,'Samchin Timekeeper',0,10),(21512,1112421,'Kidda\'s Mother',0,11),(21512,26060,'Lord Vlle',2,12),(21512,187073,'Gonzo',0,13),(29461,2535,'Maxine',1,0),(29461,9781,'Robin (Bird)',1,1),(29461,87118,'Miles',2,2),(29461,327,'Lem',2,3),(29461,23681,'Ahmad',2,4),(29461,103898,'Kenny',2,5),(29461,77279,'Faith',1,6),(29461,43853,'Mother Joe',1,7),(29461,27011,'Teri',1,8),(29461,1631215,'Nicole',1,9),(29461,1226697,'Reverend Williams',0,10),(29461,98622,'Simuel',0,11),(29461,1659414,'Kelly',0,12),(29461,1659415,'Uncle Pete',0,13),(33542,18897,'Keung',2,0),(33542,44917,'Elaine',0,1),(33542,10875,'Nancy',1,2),(33542,44922,'Uncle Bill',0,3),(33542,44919,'Tony',2,4),(33542,21264,'Angelo',2,5),(33542,44921,'Danny',0,6),(33542,1426138,'White Tiger',0,7),(33542,1235524,'Whitney',0,8),(24684,36662,'Jenny Mellor',1,0),(24684,11616,'Miss Stubbs',1,1),(24684,133,'David Goldman',2,2),(24684,658,'Jack Mellor',2,3),(24684,2617,'Majorie',1,4),(24684,55470,'Danny',2,5),(24684,10882,'Helen',1,6),(24684,39658,'Sarah Goldman',1,7),(24684,235837,'Hattie',1,8),(24684,568374,'Small Boy #1',0,9),(24684,1205266,'Small Boy #2',0,10),(24684,213394,'Graham',2,11),(24684,220290,'Tina',1,12),(24684,7056,'Headmistress',1,13),(24684,1205278,'Student',0,14),(24684,1205267,'Auctioneer',0,15),(24684,1205268,'Small Girl',0,17),(24684,59091,'Rachman',0,18),(24684,1205269,'Shakespeare Girl #1',0,19),(24684,1205270,'Shakespeare Girl #2',0,20),(24684,1205271,'Petrol Attendant',0,21),(24684,1205272,'Nightclub Singer',0,22),(24684,1205273,'Nightclub Band',0,23),(24684,177024,'Nightclub Band',0,24),(24684,1205274,'Nightclub Band',0,25),(24684,1205275,'Nightclub Band',0,26),(24684,1205276,'Nightclub Band',0,27),(24684,1205277,'Nightclub Band',0,28),(24684,1231952,'Latin Teacher',1,32),(11308,2879,'John Berry',2,0),(11308,1038,'Frannie Berry',1,1),(11308,32393,'Frank Berry',2,2),(11308,2222,'Mr. Win Berry',2,3),(11308,13922,'\'Egg\' Berry',2,4),(11308,2630,'Susie the Bear',1,5),(11308,20810,'Waitress',1,6),(11308,12900,'Freud',2,7),(11308,1383289,'Finnischer Doktor',0,8),(11022,12261,'Det. Sgt. Nick Tellis',2,0),(11022,11477,'Det. Lt. Henry Oak',2,1),(11022,8687,'Captain Cheevers',2,2),(11022,6485,'Darnell \'Big D Love\' Beery',2,3),(11022,67843,'Walter Dandridge',2,4),(11022,67844,'Jeanine Mueller',0,5),(11022,52703,'Freeman Franks',2,6),(11022,55569,'Kathryn Calvess',1,7),(11022,40543,'Octavio Ruiz',2,8),(11022,43257,'Audrey Tellis',1,9),(11022,1171755,'Eugene Deacon Sheps',2,10),(11022,99183,'Michael Calvess',2,11),(34341,84021,'Chris Cutter',2,0),(34341,27125,'Amy Foley',1,1),(34341,7633,'Gordon Cutter',2,2),(34341,30609,'Joanne',1,3),(34341,12978,'James Lennox',2,4),(34341,95635,'Julie Foley',1,5),(34341,5942,'Eva Foley',1,6),(34341,14889,'Brandon Foley',2,7),(34341,4572,'Neil Bucyk',2,8),(34341,15032,'Eddie Strombeck',2,9),(34341,5937,'Linda Bucyk',1,10),(34341,1049916,'Girl at Game',1,11),(15365,15897,'Deputy Larry Stalder',2,0),(15365,29930,'Madeleine',1,1),(15365,35597,'Connie',1,2),(15365,5050,'Ricardo Bodi',0,3),(15365,53,'Arthur Grimsley',2,4),(15365,21315,'Wilford Duvall',2,5),(15365,3266,'Dr. Rondog \'Doc\' Savage',2,6),(15365,35025,'Mark Bedell',0,7),(12569,23532,'Joel',2,0),(12569,18973,'Cindy',1,1),(12569,41091,'Suzie',1,2),(12569,880,'Dean',2,3),(12569,18999,'Brian',2,4),(12569,5365,'Step',2,5),(12569,53117,'Brad',2,6),(12569,28638,'Nathan',2,7),(12569,5151,'Mary',1,8),(12569,51990,'Rory',2,9),(12569,19024,'Hector',2,10),(12569,180527,'Gabriella',1,10),(12569,57756,'Joe Adler',2,12),(12569,31841,'Willie',2,13),(12569,1005829,'Victor',2,14),(12569,15011,'Phil',2,15),(12569,75316,'Guitar Salesman #1',0,16),(12569,216147,'Guitar Salesman #2',0,17),(12569,38709,'Guitar Customer',2,18),(12569,1673214,'Pawn Shop Guy',2,19),(12569,4734,'Joel\'s Secretary',1,20),(12569,21163,'Bar Patron (uncredited)',2,21),(12569,17403,'Jim (uncredited)',2,22),(12569,1673215,'Bar Patron (uncredited)',2,23),(12569,1451115,'Lawyer (uncredited)',1,24),(24356,1487,'Jack Fate',2,0),(24356,1229,'Tom Friend',2,1),(24356,955,'Pagan Lace',1,2),(24356,1230,'Uncle Sweetheart',2,3),(24356,4431,'Nina Veronica',1,4),(24356,36422,'Bobby Cupid',2,5),(24356,5576,'Animal Wrangler',2,6),(24356,9780,'Mistress',1,7),(24356,1159,'Edgar',2,8),(24356,17355,'Guard',2,9),(24356,6905,'Editor',1,10),(24356,228,'Oscar Vogel',2,11),(24356,11159,'Prospero',2,12),(24356,2969,'Crew Guy #2',2,13),(24356,1771,'Soldier',2,14),(24356,2295,'Edmund',2,15),(24356,21544,'President',0,16),(24356,2224,'Crew Guy #1',2,17),(24356,59369,'Ella the Fortune Teller',1,18),(24356,10430,'Drunk',2,19),(24356,21505,'Lucius',2,20),(14165,35747,'Rajveer \'RV\' Singh',2,0),(14165,35776,'Radhika \'Shona\' Rajveer Singh',1,1),(14165,1696266,'riya \'Princess\' Singh',0,2),(14165,1696266,'Priya \'Princess\' Singh',0,3),(14165,1696267,'Ranveer \'Champ\' Singh',0,4),(14165,575880,'Hariprasad \'Harry\' Dhirubhai Patel',0,5),(14165,55068,'Sasha',0,6),(14165,78951,'Shubho Shekhar Rai Banerjee',2,7),(14165,1056689,'Billy Bhatia',0,8),(14165,1211045,'Mrs. Panoya',0,9),(14165,1254578,'Nilesh',0,10),(25941,3895,'Harry Brown',2,0),(25941,1246,'D.I. Alice Frampton',1,1),(25941,20508,'S.I. Childs',2,2),(25941,59075,'Dean Saunders',0,3),(25941,15498,'Sid Rourke',2,4),(25941,16702,'Stretch',2,5),(25941,8397,'D.S. Terry Hicock',2,6),(25941,11180,'Leonard Attwell',2,7),(25941,449889,'Noel Winters',2,8),(25941,85065,'Marky',2,9),(25941,1148519,'Carl',2,10),(25941,1148520,'Kath Brown',1,11),(25941,440943,'Father Bracken',2,12),(25941,225610,'Kenny',2,13),(25941,146768,'Jean Winters',0,14),(25941,591346,'Troy Martindale',2,15),(25941,1188881,'Linda',0,16),(25941,1835481,'Nurse #1',0,17),(25941,107393,'Nurse #2',0,18),(25941,63080,'Stunt Neighbour',2,19),(25941,1835498,'Stunt Girlfriend',1,20),(25941,1138897,'Doctor',2,21),(25941,1221063,'Unconscious Girl',0,22),(25941,95721,'Female Gang Member',0,23),(25941,1835516,'Stunt Youth',0,24),(25941,1795844,'Stunt Rioter',0,25),(25941,1467124,'Stunt Police',0,26),(25941,1835518,'Stunt Police',2,27),(25941,29333,'Stunt Police',0,28),(25941,1835525,'Stunt Police',0,29),(25941,1835526,'Stunt Police',0,30),(25941,1233266,'Stunt Boy on bike',0,31),(25941,1835528,'Stunt Boy on bike',0,32),(25941,1835533,'Mother',0,33),(29064,27763,'Gillen Lane',2,0),(29064,13919,'Alexander Stone',2,1),(29064,69098,'Cassandra Barashe',1,2),(29064,11086,'Dominic',2,3),(29064,61151,'Prophet #1',2,4),(19913,24045,'Tom Hansen',2,0),(19913,11664,'Summer Finn',1,1),(19913,56734,'Rachel Hansen',1,2),(19913,5375,'McKenzie',2,3),(19913,5661,'Paul',2,4),(19913,9048,'Vance',2,5),(19913,56358,'Millie',1,6),(19913,96624,'Alison',1,7),(19913,96625,'Autumn - Girl at interview',1,8),(19913,133591,'Douche',2,9),(19913,6321,'Employee #1',2,10),(19913,111513,'New Secretary',1,11),(19913,18516,'Partygoer',1,12),(19913,1544863,'Millie\'s New Husband',0,13),(19913,58523,'Bus Driver',2,14),(19913,168925,'Dancer',1,15),(19913,1282303,'Dancer',0,16),(19913,1213913,'Minister',0,17),(19913,1561014,'Dancer',1,18),(19913,1564097,'Another Partygoer',0,19),(19913,23211,'Rhoda',0,20),(19913,1223695,'Usher',2,21),(19913,151386,'Dancer',0,22),(10727,66744,'Kyle Walsh',2,0),(10727,66745,'Caitlin Greene',1,1),(10727,38660,'Michael Greene',2,2),(10727,66746,'Larry Fleishman',2,3),(10727,38664,'Officer Matt Henry',2,4),(10727,70456,'Young Caitlin Greene',1,5),(10727,187494,'Dr. Peter Murphy',0,6),(10727,186939,'Dr. Travis',0,7),(10727,60004,'Nurse Lauren',1,8),(10727,187133,'Nurse Alexandra',0,9),(17908,51391,'Willie Morris',2,0),(17908,2882,'Ellen Morris',1,1),(17908,4724,'Jack Morris',2,2),(17908,36422,'Dink Jenkins',2,3),(17908,1375346,'Spectator',0,4),(17908,18688,'Narrator',2,5),(10803,13919,'Logan',2,0),(10803,12518,'Francis',2,1),(10803,14464,'Jessica',1,2),(10803,24368,'Box',2,3),(10803,28768,'Holly',1,4),(10803,14501,'Old Man',2,5),(10803,24808,'Doc',2,6),(10803,179204,'2nd Sanctuary Man',2,7),(10803,136872,'The Woman Runner',0,8),(10803,1217505,'Billy',2,9),(10803,166120,'Mary 2',0,10),(10803,101893,'Woman Customer',0,11),(10803,161724,'Sandman',2,12),(10803,39776,'Sanctuary Woman',1,13),(10803,33832,'Cub',2,14),(10803,197371,'Timid Girl',1,15),(10803,161764,'Sandman',2,16),(10803,61838,'Runner',2,17),(10803,1013882,'Cub',2,18),(10117,1101,'Sgt. Jericho \'Action\' Jackson',0,0),(10117,8977,'Peter Dellaplane',2,1),(10117,45481,'Sydney Ash',1,2),(10117,4430,'Patrice Dellaplane',1,3),(10117,1065,'Officer Kornblau',2,4),(10117,2055,'Tony Moretti',2,5),(10117,1103,'Capt. Earl Armbruster',2,6),(10117,14320,'Detective Kotterwell',2,7),(10117,44054,'Officer Lack',2,8),(10117,162900,'Albert Smith',2,9),(10117,23967,'Secretary',0,10),(10117,8658,'Frank Stringer',2,11),(10117,156869,'Gamble',2,12),(10117,1228808,'Thaw',0,13),(10117,7679,'Shaker',2,14),(10117,6580,'Marlin',0,15),(10117,156522,'Desk Sgt. #1',2,16),(10117,555084,'Desk Sgt. #2',2,17),(10117,61704,'Dellaplane\'s Chauffeur',2,18),(24977,23678,'Himself',2,0),(24977,1177525,'Himself',0,1),(24977,160042,'Himself',2,2),(24977,1532,'Himself',2,3),(24977,2975,'Narrator (voice)',2,4),(24977,1214267,'Himself',2,5),(24977,5281,'Himself',2,6),(24977,1533747,'Himself',0,7),(22314,4987,'Jeff Cole / J. Reid',2,0),(22314,36424,'Dwayne Gittens / God',2,1),(22314,9781,'Myra',1,2),(22314,2283,'Preston D\'Ambrosio',2,3),(22314,57686,'Breezy T.',2,4),(22314,4177,'Daniel Connelly',2,5),(22314,2230,'Det. Angela Wilson',1,6),(22314,106753,'Wesley',2,7),(22314,1737,'Rick Scott',2,8),(22314,91508,'Latique',2,9),(12573,72873,'Larry Gopnik',2,0),(12573,21125,'Uncle Arthur',2,1),(12573,105303,'Sy Ableman',2,2),(12573,105304,'Judith Gopnik',1,3),(12573,105305,'Danny Gopnik',2,4),(12573,105306,'Sarah Gopnik',1,5),(12573,55257,'Don Milgram',2,6),(12573,14669,'Rabbi Nachter',2,7),(12573,159454,'Mr. Brandt',2,8),(12573,1015643,'Mitch Brandt',2,9),(12573,965140,'Clive Park',2,10),(12573,1015644,'Danny\'s Reefer Buddy',2,11),(12573,1118717,'Mike Fagle',0,12),(12573,1118718,'Arlen Finkle',0,13),(12573,36546,'Rabbi Marshak',0,14),(12573,357551,'Mrs. Samsky',1,15),(12573,53863,'',2,16),(12573,171379,'Friend at the Picnic',1,17),(11342,6104,'Warlock',2,0),(11342,26456,'Kassandra',1,1),(11342,20766,'Giles Redferne',2,2),(11342,100552,'Channeler',1,3),(11342,191939,'Chas',0,4),(11342,1222806,'Mennonite',0,5),(11342,3711,'Pastor\'s Wife',1,9),(11342,1319273,'Pastor',0,10),(11342,40625,'Boy\'s Mother',1,11),(11342,155080,'Cabbie',2,12),(11342,11764,'Magistrate#1',2,13),(34653,5472,'George Falconer',2,0),(34653,1231,'Charley',1,1),(34653,3292,'Kenny Potter',2,2),(34653,1247,'Jim',2,3),(34653,1316023,'Carlos',2,4),(34653,142380,'Alva',1,5),(34653,35027,'Jennifer Strunk',1,6),(34653,417,'Mrs. Strunk',1,7),(34653,63540,'Mr. Strunk',2,8),(34653,162526,'Christopher Strunk',2,9),(34653,142381,'Tom Strunk',2,10),(34653,77803,'Blonde Secretary',0,11),(34653,78197,'Young Woman',1,12),(34653,72095,'Grant',2,13),(34653,65717,'Hank Ackerley',2,14),(34653,1544916,'Lois',0,15),(34653,145132,'Other Secretary #1',2,16),(34653,1544917,'Other Secretary #2',0,17),(34653,1565504,'Maria',0,18),(34653,1230899,'Doris',1,19),(34653,1255902,'Myron',0,20),(34653,1879749,'Cashier',0,21),(11051,5293,'Jesus',2,0),(11051,1037,'Judas',2,1),(11051,10767,'Mary Magdalene',1,2),(11051,7487,'Pontius Pilatus',2,3),(11051,5048,'Paulus',2,4),(11051,67937,'Zealot',2,5),(11051,55192,'Mary, Mother of Jesus',1,6),(11051,66288,'Aged Master',2,7),(11051,62014,'Jeroboam',2,8),(11051,96228,'Andrew, Apostle',2,9),(11051,10930,'Zebedee',2,10),(11051,2561,'Peter, Apostle',2,11),(11051,1061552,'John, Apostle',0,12),(11051,6394,'James, Apostle',2,13),(11051,80747,'',2,14),(14578,52647,'Tim Dunphy',2,0),(14578,20189,'Jane Weston',1,1),(14578,7447,'Old Man Dunphy',2,2),(14578,17866,'Drugs Delaney',2,3),(14578,28633,'Barney',2,4),(14578,66606,'Joey',2,5),(14578,164323,'Fran',2,6),(14578,32458,'Jack Wheeler',2,7),(14578,2701,'Dean Mort',2,8),(14578,177692,'Tim\'s mother',1,9),(14578,27773,'Mousy',2,10),(14578,1178222,'Irv',0,11),(15581,146598,'Valet',0,0),(15581,98775,'C-Note',2,1),(15581,109561,'Lady G',1,2),(15581,95353,'Himself',2,3),(15581,52940,'Wilson Cummings',2,4),(15581,62066,'Big Large',2,5),(15581,53256,'Tank',2,6),(15581,19754,'Big Willie Johnson',2,7),(15581,4004,'Cummings',2,8),(15581,51547,'Caddy Mack',2,9),(15581,59154,'Shannon Williams',1,10),(13006,585,'Harley Stone',2,0),(13006,2109,'Michelle',1,1),(13006,6451,'The Rat Catcher',2,2),(13006,110800,'Dick Durkin',2,3),(13006,2629,'Thrasher',2,4),(13006,4935,'Paulsen',2,5),(13006,113908,'Jay Jay',2,6),(13006,113909,'Robin',0,7),(13006,18360,'O\'Donnell',0,8),(13006,113910,'Foster',2,9),(13006,24241,'Tiffany',1,10),(13006,1600363,'Drunk',2,11),(13006,91662,'Forensic Expert',0,12),(13006,199942,'Nick \'The Barman\'',2,13),(13006,1600365,'The Killer',2,14),(13006,1600366,'The Killer',0,15),(13006,110838,'Rat Catcher\'s Assistant',0,16),(13006,1600367,'Little Girl',0,17),(13006,1600368,'Jogger',0,18),(13006,34550,'Policeman',2,19),(13006,63608,'Coroner\'s Assistant',2,20),(13006,1433590,'Nightclub Stripper',0,21),(16651,53761,'John H. Groberg',2,0),(16651,1813,'Jean Sabin',1,1),(16651,73889,'Feki',2,2),(16651,186450,'Lavania',1,3),(12400,5294,'Mike Terry',2,0),(12400,12898,'Chet Frank',2,1),(12400,8602,'Sondra Terry',1,2),(12400,20191,'Snowflake',0,3),(12400,74748,'Dylan Flynn',2,4),(12400,10743,'Marty Brown',2,5),(12400,3266,'Jerry Weiss',2,6),(12400,94864,'Joe Collins',2,7),(12400,1246,'Laura Black',1,8),(12400,19839,'Richard',2,9),(12400,27267,'Zena Frank',1,10),(12400,17289,'Bruno Silva',2,11),(12400,722,'Lucy Weiss',1,12),(12400,97068,'Eddie Bialy',2,13),(12400,94660,'Ricardo Silva',2,14),(12400,19208,'Lawyer',2,15),(12400,20958,'George (as Ray Mancini)',2,16),(12400,1224050,'Gini Collins',1,17),(12400,1291386,'Monica',1,18),(12400,113506,'Sammy',0,19),(12400,66668,'Knife Fighter on Set',0,20),(12400,543505,'Guayabera Shirt Man',2,21),(14112,17141,'Bob Crane',2,0),(14112,5293,'John Carpenter',2,1),(14112,12931,'Anne Crane',1,2),(14112,49,'Patricia Olson / Patrica Crane / Sigrid Valdis',1,3),(14112,5372,'Lenny',2,4),(14112,42157,'Mel Rosen',2,5),(14112,21731,'Video Executive',2,6),(14112,154903,'Richard Dawson',2,7),(14112,161310,'Edward H. Feldman',2,8),(14112,163962,'Cynthia Lynn',0,9),(14112,84421,'John Banner',2,10),(14112,943751,'Melissa / Mistress Victoria',1,11),(14112,29685,'Werner Klemperer',2,12),(14112,1219502,'Robert Clary',0,13),(14112,97899,'Interview Montage Girl #1',1,14),(12271,23459,'Edie Sedgwick',1,0),(12271,529,'Andy Warhol',2,1),(12271,17244,'Musician',2,2),(12271,8211,'Richie Berlin',1,3),(12271,11669,'Chuck Wein',2,4),(12271,72003,'Brigid Polk',1,5),(12271,17628,'Ingrid Superstar',1,6),(12271,54738,'Gerard Malanga',2,7),(12271,1122855,'Ondine',2,8),(12271,52647,'Syd Pepperman',2,9),(12271,5151,'Julia Warhol',1,10),(12271,37421,'Fuzzy Sedgwick',2,11),(12271,52995,'James Townsend',2,12),(12271,7796,'Diana Vreeland',1,13),(12271,161860,'Mort Silvers',2,14),(12271,13023,'Mrs. Whitley',1,15),(12271,1645414,'Gino',2,16),(12271,116433,'Priest',2,17),(12271,1446795,'Reporter At JFK Airport',1,18),(12271,73589,'Silver George',2,19),(12271,1161962,'Lou Reed',2,20),(12271,96076,'Nico',0,21),(12271,1645418,'John Cale',2,22),(12271,29933,'Wanda',1,23),(12271,1645421,'Aru',2,24),(12271,141764,'Alice Sedgwick',0,25),(12271,1228549,'Jack',2,26),(12271,101806,'Lexa Spence',1,27),(12271,1470874,'Factory Freak',2,28),(12271,226344,'Joey',2,29),(12271,1645425,'Young Edie Sedgwick',1,30),(12271,95741,'Himself',2,31),(12271,974721,'Waiter',0,32),(33676,500,'Woody',2,0),(33676,17183,'Dave',2,1),(33676,57082,'Spider',2,2),(33676,92557,'Wendell',2,3),(33676,56881,'Kathy',1,4),(33676,44686,'Sheriff',0,5),(33676,111214,'Chuey',2,6),(33676,112872,'Johnny Hotrocks',0,7),(33676,57598,'Taxi Driver #1',2,8),(33676,16427,'Taxi Driver #2',2,9),(33676,1625094,'Pablo',0,10),(33676,2717,'Marine',0,11),(33676,55262,'Lawyer',2,12),(33676,163597,'Larry',2,13),(33676,16525,'Border Patrolman',2,14),(25388,193,'Maj. William Sherman Foster',2,0),(25388,15140,'Marco Segrain',2,1),(25388,50,'Simone Picard',1,2),(25388,65,'El Krim',2,3),(25388,41224,'Ivan',0,4),(25388,2201,'Franu00e7ois Marneau',2,5),(25388,2407,'Sgt. Triand',2,6),(25388,15184,'Lt. Fontaine',2,7),(25388,35085,'Top Hat',0,8),(25388,1012628,'Fred Hastings',2,9),(25388,649,'Mean Corporal',2,10),(25388,67882,'Leon',2,11),(25388,32675,'Andre',0,12),(25388,659,'First German',2,13),(25388,1125467,'Second German',0,14),(25388,18767,'Minister',0,15),(25388,6610,'Col. Lamont',0,16),(11687,1003,'Godefroy de Papincourt',2,0),(11687,62531,'Fru00e9nu00e9gonde de Pouille / Bu00e9atrice de Montmirail',1,1),(11687,28781,'Jacquouille la Fripouille / Jacquard',2,2),(11687,64913,'Ginette la clocharde',1,3),(11687,24877,'Jean-Pierre',0,4),(11687,2412,'Fabienne Morlot',1,5),(11687,39193,'Edgar Bernay',2,6),(11687,38389,'Louis VI le Gros',2,7),(11687,45447,'Marechal des Logis Gibon',2,8),(11687,239421,'Jacqueline',1,9),(11687,34605,'Edouard Bernay',0,10),(11687,134744,'Wizard Eusebius / Monsieur Ferdinand',0,11),(11687,239422,'Priest',0,12),(11687,35966,'Intern Beauvin',2,13),(11687,239423,'Freddy',0,14),(30128,55547,'Tucker Max',2,0),(30128,17772,'Drew',2,1),(30128,100867,'Lara',1,2),(30128,10826,'Connie',1,3),(30128,22128,'Dan',2,4),(30128,77803,'Kristy',0,5),(30128,82988,'Mrs. Jorgens',1,6),(30128,108696,'Leslie',1,7),(30128,1879749,'Tucker\'s Mother',0,8),(31535,96010,'Edison',0,0),(31535,55277,'Natalie Stockwell',1,1),(31535,1211,'Bradford McMillan',2,2),(31535,5251,'Armand McMillan',2,3),(31535,588,'Freemont',2,4),(31535,10489,'Harlan Granger',2,5),(31535,37043,'Mr Withermeyer',2,6),(31535,21462,'Grace Kosik',1,7),(31535,1223828,'Toby McMillan Gate Guard',0,8),(24985,1283,'Dinah',1,0),(24985,11616,'Madeleine',1,1),(24985,6162,'Rickie',2,2),(24985,45453,'Mrs. Burkett',1,3),(24985,29527,'Jack',2,4),(24985,214019,'Anthony',0,5),(24985,3565,'Betty',0,6),(24985,176191,'Charles',2,7),(24985,1737982,'Bridie',0,8),(24985,91447,'Drysdale',2,9),(24985,1737976,'Landlady',0,10),(27004,48,'Pyke Kubic',2,0),(27004,74568,'Sam Phelan',2,1),(27004,96744,'Leslie Phelan',1,2),(27004,1625206,'Bahadurjit Tejeenderpeet Singh',2,3),(27004,5170,'Melvin Goldberg',2,4),(27004,91030,'Mr. Dale',2,5),(27004,11892,'Cole',0,6),(27004,36093,'Mom',1,7),(27004,2683,'Glenn the Plumber',2,8),(27004,946311,'Mr. Polski',2,9),(27004,36091,'Car Sales Manager',2,10),(27004,1596830,'Plumber\'s Wife',0,11),(15013,5168,'Harry Compton',2,0),(15013,1639,'Ruby Compton',0,1),(15013,477,'Gwen Traherne',1,2),(15013,3292,'Ralph Compton - 14 years',2,3),(15013,8436,'Lauren Compton',1,4),(15013,9139,'Lady Riva Hardwick',1,5),(15013,77680,'Ralph Compton - 11 years',0,6),(15013,5473,'Charles Bingham',2,7),(15013,6973,'June Broughton',1,8),(15013,77681,'Dr. Zim Mzimba',2,9),(15013,75564,'Vernon',2,10),(15013,77682,'Sir Giffard Hardwick',2,11),(15013,77683,'Dozen',0,12),(15013,77684,'Regina',0,13),(15013,77685,'Tobias',0,14),(15013,77686,'Taj',0,15),(15013,13101,'John Traherne',2,16),(15013,77687,'Monica',1,17),(15013,77688,'Father Ndlovu',0,18),(15013,77689,'Mr. Parker',0,19),(15013,77690,'Mrs. Malaga',0,20),(15013,77691,'Bunny',0,21),(13001,26048,'Cameron Mitchell',2,0),(13001,26087,'Samantha Carter',1,1),(13001,26088,'Teal\'c',2,2),(13001,26086,'Daniel Jackson',2,3),(13001,2222,'Hank Landry',2,4),(13001,26054,'Vala Mal Doran',1,5),(13001,54882,'Adria',1,6),(13001,40275,'Tomin',2,7),(13001,6104,'Doci',2,8),(13001,156590,'James Marrick',2,9),(13649,29222,'Troy Bolton',2,0),(13649,67599,'Gabriella Montez',1,1),(13649,67600,'Sharpay Evans',1,2),(13649,67601,'Ryan Evans',2,3),(13649,67602,'Chad Danforth',2,4),(13649,180279,'Taylor McKessie',1,5),(13649,1329572,'Boy At Pool',2,6),(13649,94146,'Jack Bolton',2,7),(13649,19262,'Ms. Darbus',1,8),(13649,77196,'Zeke Baylor',2,9),(13649,156689,'Mrs. Evans',1,10),(13649,233298,'Vance Evans',2,11),(13649,78003,'Mr. Fulton',0,12),(13649,200823,'Jason Cross',0,13),(13649,84952,'Kelsi Nielsen',1,14),(13649,964908,'Martha Cox',1,15),(13649,76594,'Herself',1,16),(13919,478,'Dean',2,0),(13919,38670,'Crystal',1,1),(13919,503,'Billy',2,2),(13919,515,'Carrie Johnson',1,3),(13919,76000,'Parent #1',1,4),(13919,28042,'Charlie Stiffle',2,5),(13919,58641,'Charlie Bratley',2,6),(13919,76001,'Mr Peck',2,7),(13919,58433,'Student #1',2,8),(13919,886,'Mr. Bill Stiffle',2,9),(13919,5469,'Mayor Michael Ebbs',2,10),(13919,76002,'Parent #2',2,11),(13919,6692,'Mrs. Parker',1,12),(13919,11512,'Officer Lou Bratley',2,13),(13919,76003,'Aide to Mayor Ebbs',1,14),(13919,34485,'Boutique Owner',1,15),(13919,11355,'Mr. Parker',2,16),(13919,19,'Allie Stiffle',1,17),(13919,76004,'Troy',0,18),(13919,37005,'Student #2',2,19),(13919,530,'Jerri Falls',1,20),(13919,76005,'Aide to Mayor Ebbs',0,21),(13919,17441,'Lee',2,22),(13919,76006,'Party Goer #1',1,23),(13919,76007,'Party Goer #2',0,24),(13919,76008,'Student #3',0,25),(13919,12931,'Terri Bratley',1,26),(13919,1287091,'Witness (uncredited)',1,27),(14576,56778,'Vernon',2,0),(14576,5168,'Charlie Miller',2,1),(14576,9030,'Tiffany',1,2),(14576,134,'Larry Jennings',2,3),(14576,40377,'Marlo',2,4),(14576,29369,'Eve',1,5),(14576,16483,'Dean \'The Dean\' Stevens',2,6),(14576,87073,'Jeff',2,7),(14576,106708,'Dealer (as Stacie Bourgeois)',0,8),(14576,98572,'Deck Switch Babe (as Erika Nann-Barranco)',1,9),(14576,12410,'Lieutenant Scarne',2,10),(14576,58414,'Dina',1,11),(14576,534,'Leipzig',2,12),(14576,11066,'The Professor',2,13),(14576,2391,'Jack Thornhill',2,14),(14576,5274,'Malini',0,15),(14576,34842,'Dr. Daley',2,16),(14576,544013,'Nate',2,17),(14576,7867,'Tony D.',2,18),(16620,38560,'Ritchie Valens',2,0),(16620,82220,'Donna Ludwig',1,1),(16620,7430,'Rosie Morales',1,2),(16620,2111,'Connie Valenzuela',1,3),(16620,65344,'Bob Morales',2,4),(16620,532,'Bob Keane',2,6),(16620,1234967,'Ted Quillin',0,7),(16620,183566,'Buddy Holly',0,8),(16620,106290,'Eddie Cochran',2,9),(16620,14850,'Lelo',0,10),(16620,1798529,'Jackie Wilson',0,11),(16620,1798530,'Curandero',0,12),(16620,1798531,'Chino',0,13),(16620,100260,'Mexican Ed',2,14),(16620,58651,'Rudy',2,15),(16620,36221,'Mr. Ludwig',2,16),(16620,1492742,'Mrs. Ludwig',1,17),(16620,1504116,'Alan Freed',0,18),(16620,91537,'Big Bopper',2,19),(16620,152701,'Bartender',2,20),(16620,1798539,'Vera',1,21),(16620,1798540,'Ernestine',1,22),(16620,1798545,'Connie Jr.',1,23),(16620,1798550,'Irma',1,24),(16620,1798552,'Garbage Man',0,25),(16620,31005,'Howard',2,26),(16620,1798553,'Sound Engineer',0,27),(16620,1798554,'Tommy Allsup',0,28),(16620,1798555,'Sharon Sheeley',1,29),(16620,95978,'Donna\'s Girlfriend',1,30),(16620,104382,'Rosalinda',1,31),(16620,1250679,'Mr. House',0,32),(16620,1798558,'Trucker',0,33),(16620,166606,'Mr. Caballero',2,34),(16620,1226361,'Girl at Party',1,35),(16620,1798563,'Baseball Announcer',0,36),(16620,1798564,'Student',0,37),(16620,1304289,'Student',1,38),(16620,1798572,'Student',1,39),(16620,1798573,'Student',0,40),(16620,1798574,'Tall Blonde Girl on Motorcycle',1,41),(16620,1134690,'Student',0,42),(16620,100549,'Dancer',1,43),(16620,43010,'Man at Party',0,44),(16620,1798575,'Dancer',0,45),(16620,1798576,'Student',0,46),(16620,1798578,'Elderly Lady at Party',1,47),(25113,21278,'Jack Burroughs',2,0),(25113,14837,'Kate Burroughs',0,1),(25113,41247,'Nick Callan',2,2),(25113,18365,'Anne Callan',1,3),(25113,13299,'Claudia Zimmer',1,4),(25113,726,'Danny Zimmer',2,5),(25113,29710,'Ginny Newley (Callan)',1,6),(11033,3895,'Doctor Robert Elliott',2,0),(11033,4301,'Kate Miller',1,1),(11033,44038,'Liz Blake',1,2),(11033,33054,'Peter Miller',0,3),(11033,11901,'Detective Marino',2,4),(11033,8875,'Dr. Levy',2,5),(11033,1081841,'Warren Lockman',0,6),(11033,949125,'Betty Luce',0,7),(11033,156453,'Cleveland Sam',2,8),(11033,1081842,'Cleaning Woman',0,9),(11033,51791,'Woman in Restaurant',1,10),(11033,99845,'Nurse',1,11),(11033,1081843,'Ted',0,12),(11033,1081844,'Man in Shower',0,13),(34723,109,'Huck Finn',2,0),(34723,24047,'Jim',2,1),(34723,1923,'The Duke',2,2),(34723,4765,'Pap Finn',2,3),(34723,2372,'Pap Finn',2,4),(34723,13314,'Widow Douglas',1,5),(34723,8256,'Mary Jane Wilks',1,6),(10514,65505,'Dr. Jeremy Stone',2,0),(10514,14831,'Dr. Charles Dutton',2,1),(10514,65508,'Dr. Mark Hall',2,2),(10514,39709,'Dr. Ruth Leavitt',1,3),(10514,157439,'Karen Anson',1,4),(10514,30987,'Jackson',2,5),(10514,33060,'Major Manchek',2,6),(10514,123722,'General Sparks',2,7),(10514,176446,'Dr. Robertson',2,8),(10514,118484,'Grimes',2,9),(10514,4976,'Senator from Vermont',2,10),(10514,1451901,'Lt. Shawn (Piedmont team)',2,11),(10514,1225959,'Sgt. Crane (Piedmont team)',2,12),(10514,159025,'Wildfire Computer Sgt. Burk',2,13),(10514,14067,'Lt. Comroe',2,14),(10514,45308,'Toby (technician)',2,15),(10514,86344,'Clara Dutton',1,16),(10514,31210,'Air Force Major',2,17),(10514,60196,'MP Capt. Morton',2,18),(10514,94202,'Cabinet Secretary (uncredited)',2,19),(10514,1661355,'Technician (uncredited)',1,20),(10514,1661356,'Allison Stone (uncredited)',0,21),(10496,38560,'Sheriff Emmett Kimsey',2,0),(10496,2133,'Dr. Sheila Casper',1,1),(10496,4029,'Dr. Alexander McCabe',2,2),(10496,12974,'Jimmy Sands',2,3),(10496,52930,'Dr. Tobe Hodge',2,4),(10496,932326,'Deputy Wesley Munn',0,5),(10496,1178360,'Mayor Amanda Branson',0,6),(10496,111198,'Dr. Swanbeck',2,7),(10496,1331430,'Emma',0,8),(10496,2141,'Major Reid',2,10),(10496,128404,'Chaswick',2,11),(10496,154657,'Sergeant James',2,12),(14631,164630,'Benjamin Steed',2,0),(14631,101396,'Mary Ann Steed',1,1),(14631,33337,'Joshua Steed',2,2),(14631,1049596,'Nathan Steed',2,3),(14631,161909,'Melissa Steed',1,4),(14631,1110450,'Becca Steed',0,5),(14631,74539,'Matthew Steed',2,6),(14631,1053019,'Jessica Roundy',1,7),(18923,72466,'Bobby Morrow (1982)',2,0),(18923,424,'Jonathan Glover (1982)',0,1),(18923,32,'Clare',1,2),(18923,5606,'Alice Glover',1,3),(18923,4442,'Carlton Morrow',2,4),(18923,1148729,'Bobby Morrow (1974)',0,5),(18923,77899,'Jonathan Glover (1974)',2,6),(18923,1224676,'Bobby Morrow (1967)',0,7),(18923,44248,'Burt Morrow',2,8),(26665,1640,'Tomas',2,0),(26665,17286,'Kaisa',1,1),(26665,10985,'Clive',2,2),(26665,44079,'Helen',1,3),(26665,21978,'Sara',1,4),(26665,95969,'Perkins',0,5),(26665,21344,'Emily',0,6),(26665,95970,'Blake',0,7),(26665,95971,'Huddleson',2,8),(26665,1785926,'Kaisa as a child',0,9),(28089,11107,'Will Montgomery',2,0),(28089,57755,'Tony Stone',2,1),(28089,20089,'Kelly',1,2),(28089,19299,'Stuart Dorsett',2,3),(28089,2206,'Olivia Pitterson',1,4),(28089,884,'Dale Martin',2,5),(28089,1102500,'Cashier',1,6),(28089,155077,'Kelly\'s Father',2,7),(28089,87070,'Alan',2,8),(28089,54124,'Mrs. Flanigan',1,9),(28089,1254627,'Claire',0,10),(28089,118374,'Recruiter Brown',2,11),(28089,2839,'Recruiter Olson',2,12),(28089,113230,'Dr. Grosso',2,13),(21641,3968,'Brian Clough',2,0),(21641,9191,'Peter Taylor',2,1),(21641,17782,'Don Revie',2,2),(21641,388,'Sam Longson',2,3),(21641,54,'Jimmy Gordon',2,4),(21641,1115,'Billy Bremner',2,5),(21641,7030,'Manny Cossins',2,6),(21641,124686,'Austin Mitchell',2,7),(21641,142947,'Colin Todd',0,8),(21641,16628,'John O\'Hare',2,9),(21641,219264,'Sam Bolton',0,10),(21641,1127817,'Keith Archer',0,11),(21641,73283,'Johnny Giles',2,12),(21641,110074,'Nigel Clough',0,13),(21641,1127818,'Simon Clough',0,14),(21641,202032,'Journalist',2,15),(21641,190386,'Barbara Clough',1,16),(21641,18280,'Dave Mackay',2,17),(21641,1228965,'Elizabeth Clough',1,18),(21641,570296,'Duncan McKenzie',2,19),(21641,208558,'Norman Hunter',0,20),(21641,1662521,'John McGovern',0,21),(21641,1270464,'Les Coker',0,22),(21641,25656,'FA Committee Chairman',2,23),(21641,141453,'Mike Bamber',0,24),(21641,1662522,'Lillian Taylor',0,25),(10925,62019,'Burt Wilson',2,0),(10925,14852,'Frank',2,1),(10925,41262,'Ernie Kaltenbrunner',2,2),(10925,64198,'Freddy',0,3),(10925,103011,'Chuck',2,4),(10925,97619,'Trash',1,5),(10925,106669,'Casey',1,6),(10925,74354,'Spider',2,7),(10925,536499,'Tina',1,8),(10925,93149,'Scuz',0,9),(10925,179625,'Suicide',2,10),(10925,97953,'Colonel Glover',2,11),(10925,153422,'Colonel\'s Wife',1,12),(10925,949636,'Paramedic #1',0,13),(10925,155907,'Paramedic #2',2,14),(16619,55636,'Calvin Jarrett',2,0),(16619,21277,'Beth Jarrett',1,1),(16619,6167,'Dr. Tyrone C. Berger',2,2),(16619,16327,'Conrad Jarrett',2,3),(16619,588,'Coach Salan',2,4),(16619,4513,'Jeannine Pratt',1,5),(16619,8900,'Karen',1,6),(16619,9632,'Lazenby',2,7),(16619,65568,'Ray Hanley',0,8),(16619,91369,'Sloan',2,9),(16619,91370,'Jordan \'Buck\' Jarrett',0,10),(16619,91371,'Ward',2,11),(16619,79736,'Audrey',1,12),(16619,91372,'Grandmother',1,13),(16619,91373,'Ruth',1,14),(16619,2059,'Stillman',2,15),(16619,91374,'Grandfather',0,16),(11977,54812,'Ty Webb',2,0),(11977,3198,'Al Czervik',2,1),(11977,71146,'Richter Elihu Smails',2,2),(11977,38085,'Danny Noonan',2,3),(11977,1532,'Carl Spackler',2,4),(11977,55203,'Maggie O\'Hooligan',0,5),(11977,167367,'Tony D\'Annunzio',2,6),(11977,2548,'Lacey Underall',0,7),(11977,940742,'Dr. Beeper',0,8),(11977,51310,'The Bishop',2,9),(11977,1578223,'Mrs. Noonan',1,10),(11977,12692,'Mr. Noonan',2,11),(11977,156587,'Grace',1,12),(11977,1535,'Lou Loomis',2,13),(11977,30864,'Motormouth',0,14),(11977,948264,'Angie D\'Annunzio',0,15),(11977,1578232,'Spaulding Smails',0,16),(11977,1238616,'Mrs. Smails',0,17),(11977,28023,'Drew Scott',0,18),(11977,1578253,'Gatsby',0,19),(11977,1578258,'Suki',0,20),(11977,90531,'Wally',1,21),(11977,1578276,'Richard Richards',0,22),(11977,1578280,'Smoke Porterhouse',0,23),(11977,170957,'Sandy McFiddish',0,24),(11977,1157197,'Joey D\'Annunzio',0,25),(11977,1578292,'Mr. Havercamp',0,26),(11977,1578293,'Mrs. Havercamp',0,27),(11977,1578294,'Noble Noyes',0,28),(11977,1578297,'Chuck Schick',0,29),(11977,1578298,'Pat Noonan',0,30),(11977,1578628,'Nancy Noonan',0,31),(11977,1578630,'Kathleen Noonan',0,32),(11977,1578636,'Ray (Old Caddy)',0,33),(11977,1578654,'Pre-deb',0,34),(11977,1578656,'Pre-deb',0,35),(11977,1578672,'Lifeguard',0,36),(11977,1578687,'Terry the Hippie',0,37),(11977,564316,'Angry Husband',0,38),(11977,124822,'Charlie the Cook',0,39),(11977,1578701,'Butler',2,40),(11977,1578704,'Lady on Boat',0,41),(11977,53553,'Old Crony',0,42),(11977,1578705,'Dennis Noonan',0,43),(11977,1578708,'Noonan Child',0,44),(11977,1578709,'Beeper\'s Girlfriend',0,45),(11977,1578712,'Mr. Wang',0,46),(11977,1578714,'Little Girl at Pool',0,47),(11977,1578716,'Woman at Pool',0,48),(11977,1578719,'Old Crony',0,49),(11977,1578722,'Bathing Suit Girl (uncredited)',0,50),(11977,55199,'Al Czervik\'s Dinner Guest (uncredited)',0,51),(11977,66107,'Caddy (uncredited)',0,52),(11977,955581,'Golf Pro (uncredited)',0,53),(11977,1578726,'Blonde Bombshell (uncredited)',0,54),(20322,9779,'Jackson Smith',2,0),(20322,85931,'Derrick West',2,1),(20322,77896,'Brian Palmer',2,2),(20322,50266,'Terry White',2,3),(20322,4996,'Cherie Smith',1,4),(20322,15899,'Louise Smith',1,5),(20322,59154,'Sheila West',1,6),(20322,17773,'Denise Johnson',1,7),(16158,4987,'Mike',2,0),(16158,55755,'Slim',2,1),(16158,17637,'Roland',2,2),(16158,74612,'Young Alicia',1,3),(16158,75601,'Young Mike',2,4),(16158,93535,'Young Slim',2,5),(16158,63561,'Young Roland',2,6),(16158,93538,'Stacey',2,7),(16158,59154,'Tanya',1,8),(16158,5411,'Alicia',1,9),(16158,105880,'Lisa',1,10),(10160,5139,'Freddy Krueger',2,0),(10160,63917,'Alice Johnson',1,1),(10160,42882,'Greta Gibson',1,2),(10160,64033,'Mrs. Jordan',1,3),(10160,64034,'Gurney Orderly',2,4),(10160,63046,'Yvonne',1,5),(10160,104275,'Dan Jordan',2,6),(10160,87112,'Dennis Johnson',2,7),(10160,119475,'Mark Gray',2,8),(10160,19484,'Mr. Jordan',2,9),(10160,72408,'Mr. Gray',2,10),(10160,189664,'Amanda Krueger',1,11),(10160,84163,'Jock',2,12),(10160,553750,'Merging Freddy',0,13),(10160,75034,'Delivery Doctor',2,14),(10160,72231,'Anne',1,15),(10160,553752,'Semi-Truck Driver',0,16),(10160,553753,'Girl in Locker',0,17),(10160,53591,'Dr. Moore',2,18),(10160,166298,'Jacob',2,19),(10160,553754,'Asylum Girl',0,20),(10160,193295,'Trendy Guest',0,21),(10160,553755,'Elm Street Kid',0,22),(10160,553756,'Orderly #1',0,23),(10160,553757,'Baby Jacob',0,24),(10160,197038,'Delivery Nurse',0,25),(10160,97955,'Coach Ostrow',2,26),(10160,553758,'Customer',0,27),(10160,71519,'Little Girl',1,28),(10160,553759,'Guest',0,29),(10160,102338,'Thirty-Something',0,30),(10160,37008,'Super Freddy',2,31),(10160,177966,'Racine Gibson',1,32),(10160,553760,'Cop',0,33),(10160,156146,'Trendy',2,34),(10160,102934,'Himself',0,35),(10160,553761,'Hot Seat Band Member',0,36),(10160,170468,'Hot Seat Band Member',2,37),(10160,167955,'Hot Seat Band Member',0,38),(10160,553762,'Dinner Guest (uncredited)',0,40),(10160,553763,'Asylum Inmate (uncredited)',0,41),(10160,553764,'Paramedic (uncredited)',0,42),(10160,1038546,'Hot Seat Band Member',0,43),(11452,10859,'Van Wilder',2,0),(11452,1234,'Gwen Pearson',1,1),(11452,21561,'Vance Wilder senior',2,2),(11452,53493,'Taj Mahal Badalandabad',2,3),(11452,53863,'Vernon',2,4),(11452,155801,'Hutch',2,5),(11452,35596,'Mini Cochran',2,6),(11452,5395,'Gordon',0,7),(11452,7675,'Professor McDoogle',2,8),(11452,203511,'Richard Bagg',2,9),(11452,1233672,'Jeannie',0,10),(11452,141446,'Casey',1,11),(11452,1042684,'Lindsey',1,12),(12163,2295,'Randy Ram Robinson',2,0),(12163,3141,'Cassidy',1,1),(12163,38940,'Stephanie',1,2),(12163,1173,'Lenny',2,3),(12163,176031,'Wayne',2,4),(12163,52860,'Scott Brumberg',2,5),(12163,1216224,'The Ayatollah',0,6),(12163,1982,'Medic',2,7),(12163,19490,'Nick Volpe',2,8),(12163,1056523,'Adam',2,9),(12163,122545,'JAPW Promoter Larry Cohen',2,10),(12163,83213,'Necro Butcher',0,11),(12163,1326471,'Jen',0,12),(12163,1122855,'Dr. Moayedizadeh',2,13),(12163,14548,'Admissions Desk Woman',1,14),(12163,129102,'Strip Club Best Man',2,15),(12163,176797,'Strip Club Bachelor',0,16),(12163,1616051,'Cheeques Bartender',1,17),(12163,1571784,'Big Chris',2,18),(12163,1507735,'Tanning Salon Owner',0,19),(12163,1352241,'The Legend Johnny Valiant',0,20),(12163,226502,'Ron \'The Truth\' Killings',2,21),(12163,1358081,'Romeo Roselli',0,22),(12163,103041,'Autograph Fan #1',2,23),(12163,1116091,'Autograph Fan #2',0,24),(12163,122239,'Hudson Acres Lady at Deli Counter',1,25),(12163,1179255,'German Potato Salad Lady at Deli Counter',0,26),(12163,59207,'Teamster at Deli Counter',0,27),(12163,1081122,'Annoyed Man at Deli Counter',0,28),(12163,1081123,'Annoyed Woman at Deli Counter',0,29),(12163,1389956,'Get a Room Lady',0,30),(12163,1515619,'WXW Announcer',2,31),(12163,155535,'WXW Referee',0,32),(12163,1354132,'CZW Announcer',0,33),(12163,1246393,'ROH Referee',0,34),(12163,1452410,'Wrestler',0,35),(12163,1093514,'Wrestler',0,36),(12163,1498649,'Wrestler',0,37),(12163,88630,'Wrestler',0,38),(12163,1498650,'Wrestler',0,39),(12163,1493517,'Wrestler',0,40),(12163,1518715,'Alyssa\'s Roommate (uncredited)',0,41),(12163,1343840,'Ring Girl (uncredited)',0,42),(12163,1182903,'Crazy Fan (uncredited)',0,43),(12163,1202712,'Fans at Table (uncredited)',2,44),(12163,1352247,'Fan at Convention (uncredited)',0,45),(12163,1344725,'Fan (uncredited)',0,46),(12163,117289,'Audience Member (uncredited)',2,47),(12163,98355,'Girl in Supermarket (uncredited)',0,48),(12163,1385160,'Wrestler (uncredited)',0,49),(12163,99904,'Wrestler (uncredited)',0,50),(12163,985036,'DJ (uncredited)',0,51),(12163,1635482,'Medic #2 (uncredited)',0,52),(12163,1586770,'Wrestling Fan (uncredited)',0,53),(12163,1290726,'Wrestling Fan (uncredited)',0,54),(12163,1307615,'Vendor (uncredited)',0,55),(12163,98959,'Dancer (uncredited)',0,56),(12163,1553379,'Strip Club Patron (uncredited)',0,57),(12163,1552938,'Deli Customer (uncredited)',2,58),(12163,1233796,'Sumo Wrestler (uncredited)',2,59),(12163,1837418,'',0,60),(12163,1885652,'',0,61),(12163,1885654,'',0,62),(12163,96041,'',0,63),(12163,1885655,'',0,64),(12163,1422356,'',2,65),(12163,1885656,'',0,66),(12163,1885657,'',0,67),(12163,1275400,'',0,68),(12163,1199362,'',0,69),(12163,1885662,'',0,70),(12163,1425151,'',0,71),(12163,1237838,'',0,72),(12163,1885670,'',0,73),(32275,39554,'Pearl Chavez',1,0),(32275,7664,'Jesse McCanles',2,1),(32275,8487,'Lewton \'Lewt\' MacCanles',2,2),(32275,17753,'Sen. Jackson McCanles',2,3),(32275,2435,'Scott Chavez',2,4),(32275,8828,'Laura Belle McCanles',1,5),(32275,19020,'The Sinkiller',2,6),(32275,30527,'Sam Pierce',2,7),(32275,30212,'Lem Smoot',2,8),(32275,114287,'Helen Langford',1,9),(32275,125483,'Mrs. Chavez',1,10),(32275,11500,'Vashti',1,11),(32275,127631,'Sid',2,12),(32275,4071,'Mr. Langford',2,13),(32275,12022,'The Lover',2,14),(13785,63791,'Dr. Chuck Nelken',2,0),(13785,7489,'Meg Swan',1,1),(13785,75463,'Hamilton Swan',2,2),(13785,11514,'Cookie Fleck',0,3),(13785,26510,'Gerry Fleck',2,4),(13785,12438,'Dr. Theodore W. Millbank, III',2,5),(13785,39125,'Fishin\' Hole Guy',2,6),(13785,75467,'Fishin\' Hole Guy',2,7),(13785,13524,'Harlan Pepper',2,8),(13785,21731,'Stefan Vanderhoof',2,9),(13785,8265,'Scott Donlan',2,10),(13785,1218926,'New York Butcher',0,11),(13785,20753,'Buck Laughlin',2,12),(13785,38334,'Sherri Ann Cabot',1,13),(13785,43775,'Christy Cummings',1,14),(13785,1211,'Max Berman',2,15),(13785,46074,'Winky\'s Party Guest',1,16),(13785,42157,'Hotel Manager',2,17),(14144,9777,'Charlie Hinton',2,0),(14144,59154,'Kim Hinton',1,1),(14144,61260,'Phil',2,2),(14144,58058,'Lance',2,3),(14144,16662,'Buck',2,4),(14144,1268971,'Jack',2,5),(10622,18897,'Jackie',2,0),(10622,66055,'Giancarlo',2,1),(10622,66056,'Miki',0,2),(10622,60464,'Diana',1,3),(10622,1426133,'Lakisha',0,4),(10622,1426135,'Romeo',0,5),(10622,150536,'Baggio',2,6),(10622,1426136,'Richard',0,7),(10622,1426137,'Grank, Demon Leader',2,8),(10622,1155485,'Victor',0,9),(10622,29478,'Sandy, Demon',1,10),(10622,62410,'Cyclist [cameo]',2,11),(10622,931174,'Ice Cream Vendor [cameo]',0,12),(10622,131835,'Cook Show Audience [cameo]',1,13),(10622,61792,'Giancarlo\'s Man',2,14),(13370,12438,'Jonathan Steinbloom',2,0),(13370,13524,'Alan Barrows',2,1),(13370,8265,'Terry Bohner',2,2),(13370,26510,'Mitch Cohen',2,3),(13370,43775,'Laurie Bohner',1,4),(13370,21731,'Jerry Palter',2,5),(13370,11514,'Mickey Crabbe',0,6),(13370,7489,'Sissy Knox',1,7),(13370,6008,'Mark Shubb',2,8),(13370,20753,'Mike LaFontaine',2,9),(13370,1211,'Wally Fenton',2,10),(13370,42157,'Lars Olfen',2,11),(13370,46074,'Steinbloom\'s Assistant',1,12),(13370,38334,'Amber Cole',1,13),(13370,15900,'George Menschell',2,14),(13370,27530,'Elliott Steinbloom',2,15),(13370,167212,'Naomi Steinbloom',1,16),(13370,8854,'Blues Musician',2,17),(13370,91030,'Deputy Mayor',2,18),(13370,1458993,'Lawrence E. Turpin',0,19),(11191,49425,'Kat Arujo',1,0),(11191,1204,'Daisy Arujo',1,1),(11191,3127,'Jojo',1,2),(11191,7132,'Bill',2,3),(11191,68527,'Tim Travers',2,4),(11191,68528,'Charles Gordon Windsor, Jr.',2,5),(11191,1892,'Steamer',2,6),(11191,1909,'Leona',1,7),(10215,12052,'Helen Quilley',1,0),(10215,10727,'James Hamilton',2,1),(10215,28743,'Gerry',2,2),(10215,10478,'Lydia',1,3),(10215,137925,'Anna',1,4),(10215,61540,'Russell',2,5),(10215,1256066,'Clive',0,6),(10215,58778,'Claudia',1,7),(10215,77165,'James\'s Mother',1,8),(10215,2449,'Paul',2,9),(10215,1827905,'Rachael',0,10),(10215,34720,'Steve',2,11),(10215,1827906,'Kind Cabbie',0,12),(10215,46427,'Man on Tube',0,13),(10215,1230252,'Cheeky Bloke',2,14),(10215,1235292,'Suspicious Girl',0,15),(10215,175919,'Defensive Bloke',2,16),(10215,1373537,'Receptionist',0,17),(10215,1529890,'Theatre Nurse',1,18),(10215,110422,'Consultant',2,19),(25066,15864,'Mr. Simms',2,0),(25066,21246,'Duke Metger',2,1),(25066,58563,'Carl',2,2),(25066,61153,'Strom',2,3),(25066,11804,'Billy',2,4),(25066,54423,'Stack',2,5),(25066,55270,'Martin Moorehouse',2,6),(25066,9289,'Newton',2,7),(25066,56183,'Eli',2,8),(25066,40377,'Rhodie',2,9),(25066,45245,'Sissy',1,10),(25066,141825,'Richard',2,11),(25066,43976,'Dr. Cushing',1,12),(25066,93538,'Ball',2,13),(25066,131118,'Clarence',2,14),(25066,101850,'Tattooed Man',2,15),(25066,1424350,'Bulldog',0,16),(25066,23681,'Walter',2,17),(25066,99090,'Cell orderly #1',2,18),(25066,1113754,'Cell orderly #2',0,19),(25066,54498,'Snoop',2,20),(25066,1403421,'Reporter #2',1,21),(25066,143161,'Reporter #3',0,22),(25066,158452,'Lil\' Deke',2,23),(25066,57777,'Top cop',2,24),(25066,33501,'Prison guard',2,25),(25066,139941,'Nurse Roland',0,26),(25066,154094,'Gangster #2',2,27),(25066,1850356,'Extra Devil Dancer',0,28),(25066,1850357,'Extra Devil Dancer',0,29),(11361,9221,'Loomis',2,0),(11361,21320,'Jamie',1,1),(11361,62589,'Rachel',1,2),(11361,42308,'Meeker',2,3),(11361,33299,'Michael Myers / Man In Black',0,4),(11361,1762957,'Billy Hill',0,5),(11361,1414791,'Samantha Thomas',0,6),(11361,1762960,'Mikey',0,7),(11361,1228823,'Spitz',2,8),(11361,1762963,'Tina Williams',0,9),(11361,161408,'Nurse Patsey',1,10),(11361,31006,'Deputy Charlie',2,11),(11361,1762965,'Deputy Nick Ross',0,12),(11361,160374,'Deputy Tom Farrah',2,13),(11361,157616,'Mountain Man',2,14),(11361,1107034,'Darlene Carruthers',1,15),(11361,1107848,'Dr. Max Hart',2,16),(11361,63484,'Eddy',0,17),(11361,59287,'Guy In Gas Station',2,18),(12509,228,'Jackson Pollock',2,0),(12509,4726,'Lee Krasner',1,1),(12509,19453,'Dan Miller',2,2),(12509,6161,'Ruth Kligman',1,3),(12509,4971,'Howard Putzel',2,4),(12509,11512,'Tony Smith',2,5),(12509,5576,'Willem DeKooning',2,6),(12509,72580,'Charles Pollock',2,7),(12509,16430,'Sande Pollock',2,8),(12509,163773,'Helen Frankenthaler',1,9),(12509,58531,'Arloie Pollock',1,10),(12509,87125,'Stella Pollock',1,11),(12509,145610,'Arloie\'s Baby',1,12),(12509,159869,'Reuben Kadish',2,13),(12509,23882,'Peggy Guggenheim',1,14),(12509,3199,'James Johnson Sweeney',0,15),(12509,42324,'May Rosenberg',1,16),(12509,60205,'Harold Rosenberg',2,17),(12509,1802700,'William Baziotes',0,18),(12509,1802701,'Franz Kline',0,19),(12509,4175,'Clem Greenberg',2,20),(12509,164093,'Barbara Kadish',1,21),(12509,1802703,'Kadish Child',1,22),(12509,1428151,'Dot Miller',1,23),(12509,1159841,'Alfonso Ossorio',0,24),(12509,1802705,'Ted Dragon',0,25),(12509,1607159,'Herbert Matter',2,26),(12509,1362876,'Mercedes Matter',1,27),(12509,1802707,'Young Redhead',1,28),(12509,60632,'Dorothy Seiberling',1,29),(12509,58643,'Martha Holmes',1,30),(12509,1802712,'Delivery Man',0,31),(12509,12932,'Betty Parsons',1,32),(12509,1006136,'William Wright',0,33),(12509,1336806,'Vita Peterson',1,34),(12509,1802716,'Jay Pollock',0,35),(12509,1389805,'Alma Pollock',1,36),(12509,56694,'Elizabeth Pollock',1,37),(12509,1802722,'Jeremy Pollock',1,38),(12509,52021,'Frank Pollock',2,39),(12509,1802723,'Marie Pollock',1,40),(12509,1802724,'Jonathan Pollock',0,41),(12509,1802725,'Karen Pollock',1,42),(12509,1802726,'Jason Pollock',0,43),(12509,1802727,'Jason Pollock',0,44),(12509,6701,'Hans Namuth',2,45),(12509,164077,'Edith Metzger',1,46),(12509,1100321,'Veterinarian',0,47),(12509,1802728,'News Broadcaster (voice)',0,48),(12509,1802730,'Newspaper Boy',0,49),(12509,1802731,'East Hampton Police Officer',0,50),(15256,880,'Bartender',2,0),(15256,1893,'Tom',2,1),(15256,4169,'Disco Cabbie',2,2),(15256,11661,'Cindy',1,3),(15256,21197,'Ellie',1,4),(15256,7621,'Lucy',1,5),(15256,12217,'Jack',2,6),(15256,74615,'Bridget',1,7),(15256,17495,'Monica',1,8),(15256,6886,'Val',1,9),(15256,22226,'Kevin',2,10),(28053,1271,'Vince Rizzo',2,0),(28053,25654,'Joyce Rizzo',1,1),(28053,54815,'Tony',2,2),(28053,58635,'Vivian Rizzo',1,3),(28053,132157,'Vincent Vinnie Rizzo, Jr.',2,4),(28053,1903,'Michael Malakov',2,5),(28053,1246,'Molly Charlesworth',1,6),(28053,95979,'Actor #5',0,7),(28053,1513815,'Denise',0,8),(28053,1513816,'Cheryl',1,9),(28053,55962,'Bruno',0,10),(13991,3272,'Kevin Brewer',2,0),(13991,77912,'Carter Scott',2,1),(13991,77913,'Ashley',0,2),(13991,77916,'Riley',0,3),(13991,77917,'Kevin\'s Mom',0,4),(13991,84076,'Teague',2,5),(13991,928594,'Morris',2,6),(13991,1560897,'Amy',0,7),(13991,203096,'Gina',0,8),(13991,78341,'Fletcher',0,9),(13991,1231373,'Heather',1,10),(13991,58754,'Kendall',1,11),(13991,1301653,'Bitchy Sorority Sister',0,12),(13991,1560892,'Tour Guide',0,13),(13991,214108,'Bearcat',0,14),(13991,84833,'Cooper',2,15),(13991,10987,'Verne Troyer',2,16),(13991,1560908,'Nitrous Guy',0,17),(13991,86271,'College Girl #1',1,18),(19556,84833,'Eugene Bell',2,0),(19556,84834,'Tucker Cleigh',2,1),(19556,16840,'Cindi Whitehall',1,2),(19556,64342,'Horsedick.MPEG',2,3),(19556,186310,'Candace',1,4),(19556,970104,'NGTV Reporter',1,5),(19556,61257,'Young Eugene',2,6),(19556,147382,'Vonka',1,7),(19556,143180,'Katja',1,8),(19556,205177,'Young Tucker',0,9),(19556,31309,'Hugh Hefner',2,10),(19556,1215979,'Nurse Juanita',1,11),(19556,63235,'Doctor',2,12),(19556,86204,'Fireman Rick',2,13),(19556,445926,'Bouncer #1',2,14),(19556,1223684,'Sheila',1,15),(19556,64236,'Principal',2,16),(19556,1586675,'Chevonne',1,17),(19556,1214290,'Crystal',1,18),(19556,169670,'Mr. Whitehall',2,19),(19556,194372,'Mrs. Whitehall',1,20),(19556,154837,'Fireman #4',2,21),(19556,1667644,'Sexy Girl #2',1,22),(16172,11863,'Amanda Shelton',1,0),(16172,54789,'Tom Bartlett',2,1),(16172,19152,'Jonathan Bendel',2,2),(16172,1276,'Lois McNally',1,3),(16172,37947,'Nolan Traynor',2,4),(16172,138000,'Gene O\'Reilly',0,5),(16172,52462,'Aunt Stella',1,6),(16172,53573,'Valderon',2,7),(16172,2956,'Chris',1,8),(16172,138769,'Francois',0,9),(16172,932214,'Gil Shapiro',0,10),(16172,171522,'Ramos',2,11),(16172,151207,'The Poet',2,12),(16172,1522002,'Mr. Mueller',0,13),(16172,17184,'Ruth',1,14),(13403,17114,'Hedwig',2,0),(13403,18273,'Yitzhak',1,1),(13403,21266,'Skszp',2,2),(13403,126684,'Jacek',2,3),(13403,2843,'Krzysztof',0,4),(13403,126686,'Schlatko',2,5),(13403,8263,'Phyllis Stein',1,6),(13403,10692,'Tommy Gnosis',2,7),(13403,5900,'Sgt. Luther Robinson',2,8),(13403,1860495,'Hansel - 6 Years Old',0,9),(13403,19958,'Hansel\'s Mom',1,10),(13403,14903,'Hansel\'s Dad',2,11),(13403,19766,'Kwahng-Yi',1,12),(15797,18702,'Louis Stevens',2,0),(15797,18071,'Kerrigan',2,1),(15797,31714,'Dianna',1,2),(15797,1181001,'Silverio',0,3),(15797,148635,'Cochran',2,4),(15797,59213,'Philippe',2,5),(15797,157609,'Orlando Aliveres',2,6),(15797,56985,'Welder',0,7),(13537,17244,'Stephen Glass',2,0),(13537,133,'Charles \'Chuck\' Lane',2,1),(13537,2838,'Caitlin Avey',1,2),(13537,5916,'Andy Fox',1,3),(13537,15091,'Amy Brand',1,4),(13537,5587,'Michael Kelly',2,5),(13537,18324,'Adam Penenberg',2,6),(13537,14103,'Lewis Estridge',2,7),(13537,86397,'David Bach',2,9),(13537,86397,'Aaron Bluth',2,10),(13537,7002,'Rob Gruen',2,11),(13537,59214,'Kambiz Foroohar',2,12),(13537,16544,'Marty Peretz',2,13),(13537,168241,'Ian\'s Mother',1,14),(13537,6692,'Mrs. Duke',1,15),(13537,175913,'Megan',1,16),(13537,1330755,'Journalist',1,17),(13537,87460,'Catarina Bannier',0,18),(20794,10486,'Mike',2,0),(20794,67773,'Frank Sangster',2,1),(20794,4784,'Jean Noble',1,2),(20794,71266,'Pat',1,3),(20794,86561,'Sally',0,4),(20794,1283,'Susan',1,5),(20794,86562,'Pharmacist Wayne Ponze',0,6),(20794,13550,'Harlan Sangster',2,7),(20794,86563,'\'Sunshine Lounge\' Bartender',2,8),(20794,1894,'Duane',2,9),(20794,86564,'Attractive Complaining Patient',0,10),(20794,86565,'Mrs. Langston',1,11),(20794,86566,'Gelding',2,12),(20794,86567,'Chinese Wife',0,13),(20794,86568,'Chinese Husband',0,14),(20794,86569,'Liquor Store Owner',0,15),(20794,86570,'Billy',0,16),(20794,86571,'\'Blue Sands\' Bartender',2,17),(20794,86572,'Detective Lily Pons',0,18),(20794,65827,'Detective Lunt',2,19),(20794,86573,'Motel Security Guard',2,20),(20794,86574,'Anchorwoman',0,21),(20794,62731,'Detective',2,22),(20794,86575,'Harris',0,23),(20794,86576,'Officer Peter Reilly',0,24),(20794,86577,'Officer Chuck Smith',0,25),(20794,86578,'Skinny Sheriff',0,26),(20794,86579,'Visiting Room Guard',0,27),(20794,36091,'Court Guard',2,28),(20794,86580,'Trooper Jarvis',0,29),(20794,86582,'Trooper Bunch',0,30),(20794,86583,'Storch',0,31),(20794,4724,'Actor Lance Phelps',2,32),(20794,86584,'Prisoner',0,33),(20794,86585,'Young Lover Kissing',0,34),(20794,86586,'Student',2,35),(20794,86588,'Sheriff',0,36),(31064,12041,'',1,0),(31064,8893,'',1,1),(31064,143017,'Nick Harris',2,2),(31064,31534,'Robert',2,3),(31064,1217281,'Mr. Fostwick',2,4),(13990,2282,'Dr. Squires',2,0),(13990,10696,'Kristin Squires',1,1),(13990,15760,'Luke Shapiro',2,2),(13990,52442,'Stephanie',1,3),(13990,67849,'Union',1,4),(13990,209,'Eleanor',1,5),(13990,5384,'Percy',2,6),(13990,54247,'Justin',2,7),(13990,140253,'Mrs. Shapiro',1,8),(13990,92811,'Mr. Shapiro',2,9),(13990,19889,'Grandpa Shapiro',2,10),(13990,11903,'Grandma Shapiro',1,11),(13990,1340888,'Bodyguard #1',0,12),(13990,203757,'Homeless Man',0,13),(13990,1340889,'Kid in Bar',0,14),(11583,738,'Edward Pierce',2,0),(11583,55636,'Robert Agar',2,1),(11583,57399,'Miriam',1,2),(11583,14820,'Edgar Trent',0,3),(11583,26858,'Fowler',0,4),(11583,135180,'Sharp',2,5),(11583,1821,'Burgess',2,6),(11583,1217868,'Clean Willy',0,7),(11583,115872,'Emily Trent',1,8),(11583,1250653,'Elizabeth Trent',0,9),(11583,33109,'Harranby',2,10),(11583,218186,'McPherson',2,11),(11583,90740,'Maggie',1,12),(11583,214149,'Connaught',2,13),(11583,40958,'Putnam',2,14),(11583,100787,'Burke',2,15),(11583,1398814,'Lewis',2,16),(11583,134690,'Trent\'s Butler',0,17),(11583,10029,'Judge',2,18),(11583,193595,'Prosecutor',2,19),(11583,14468,'Captain Jimmy',2,20),(11583,51316,'Rail Guard',2,21),(11583,139911,'Chaplain',0,22),(18602,2206,'Morvern Callar',1,0),(18602,217300,'Lanna Phimister',1,1),(18602,208693,'Tom Boddington',2,2),(18602,178614,'Susan',1,3),(18602,311811,'The Cat In The Hat',0,4),(18602,47703,'Hat\'s Mate',2,5),(18602,157831,'Couris Jean',0,6),(18602,195260,'Vanessa',0,7),(18602,40658,'Boy in Room 1022',0,8),(18602,3081,'Him',0,9),(27549,35350,'Dar',2,0),(27549,56152,'Jackie Trent',1,1),(27549,31364,'Lyranna',1,2),(27549,61153,'Arklon',2,3),(27549,1217749,'Bendowski',0,4),(27549,13392,'Wendel',2,5),(27549,80579,'Zavic',2,6),(27549,51547,'Lt. Coberly',2,7),(27549,1328640,'Troy Saunders',0,8),(27549,1232373,'Herbert Trent',2,9),(27549,7073,'Pilgrim #1',2,10),(27549,1766029,'Punker #1',0,11),(27549,42824,'Policeman #2',2,12),(27549,1849159,'Admiral Binns',0,13),(27549,1849161,'Soldier',0,14),(27549,1840745,'Gate Sentry',2,15),(27549,1214190,'Army Guard',0,16),(27549,14663,'Scientist #1',0,17),(27549,140077,'Driver',2,18),(27549,31528,'Punker #2',0,19),(27549,1720933,'Salesman',2,20),(27549,15831,'Sharak / Kodo / Podo / Ruh (voice)',2,21),(27549,30032,'Policeman #1',2,22),(10930,5442,'Franu00e7ois Vasseur',2,0),(10930,67532,'Michu00e8le Charpin-Vasseur',1,1),(10930,30720,'Aunt Line',0,2),(10930,6015,'Gu00e9rard Vasseur',2,3),(10930,136761,'Anne Charpin-Vasseur',1,4),(32395,517,'Allen Brewer',2,0),(32395,4038,'Grace Brewer',1,1),(32395,36662,'Rose',1,2),(32395,27428,'Bennett Brewer',2,3),(32395,27104,'Ryan Brewer',2,4),(32395,163650,'Priest',2,5),(32395,26930,'Lydia',1,6),(32395,77013,'Joyce',1,7),(32395,1157292,'Sean Brewer',0,8),(32395,2617,'Janis',1,9),(32395,28031,'Dr. Shamban',2,10),(32395,49971,'Joan',1,11),(32395,1157294,'Latent',0,12),(32395,131391,'Cheryl',0,13),(32395,37153,'Ashley',1,14),(32395,335,'Jordan Walker',2,15),(32395,58621,'Wyatt',2,16),(32395,1340889,'Geeky Student',0,17),(13827,10297,'Steve Addington',2,0),(13827,24048,'Eddie Zarno',2,1),(13827,8261,'Farmer Bob',2,2),(13827,57755,'Jack',2,3),(13827,54834,'Brillo Murphy',2,4),(13827,72985,'Lupe La Rosa',2,5),(13827,77700,'Johnny Doran',2,6),(13827,1763429,'Reality House Girl',1,7),(16564,80631,'Michiel van Beusekom',2,0),(16564,83355,'Erica van Beusekom',1,1),(16564,31387,'Uncle Ben',0,2),(16564,83356,'Jack',2,3),(16564,83357,'Johan van Beusekom',0,4),(16564,43716,'Lisa van Beusekom',0,5),(16564,968345,'Dirk',2,6),(16564,1125646,'Theo',0,7),(16564,12768,'Auer',0,8),(16564,211203,'Schafter',2,9),(16564,43646,'Bertus',2,10),(16564,211266,'Veerman',0,11),(16564,236904,'Duitse Soldaat Redding',0,12),(16564,1125647,'Duitse Soldaat 1',0,13),(16564,1125648,'Duitse Soldaat 2',0,14),(14351,53650,'Tech',2,0),(14351,59300,'Big Man',2,2),(14351,32486,'Kemp',2,3),(14351,76667,'Noah Cruise',2,4),(14351,76669,'Vaughn',2,5),(14351,76670,'Up',2,6),(14351,76671,'Jewelz',2,7),(14351,76672,'Eboni',1,8),(14351,31029,'Nikki',1,9),(14351,76673,'Aub',0,10),(14351,76674,'Uniformed Officer',2,11),(14351,76675,'Director',0,12),(14351,76676,'Shelli',0,13),(14351,76677,'Shirley',0,14),(14351,76678,'Stretch',0,15),(14351,76679,'Referee',0,16),(14351,76680,'Carl',0,17),(14351,76681,'Basketball Fan',0,18),(14351,76682,'Girl',0,19),(14351,76683,'Makeup Artist',0,20),(14351,76684,'Security Officer',0,21),(14351,76685,'2nd Assistant Director',0,22),(14351,76687,'Professor',1,23),(14351,76690,'Waitress',0,24),(14351,76691,'Look',0,25),(14351,76692,'Heart Attack',0,26),(14351,76694,'Clerk',0,27),(14351,76695,'Double A',0,28),(14351,76702,'Ma\'Dere',0,29),(14351,76703,'Angelo',0,30),(14351,76704,'Mall goer',0,31),(14351,302415,'Vanessa',1,32),(10664,34793,'u00c1ngela Vidal',1,0),(10664,54532,'Manu',0,1),(10664,111091,'Jennifer',0,2),(10664,111090,'Niu00f1a Medeiros',0,3),(10664,54520,'Rosso',2,4),(10664,54523,'Sra. Izquierdo',1,5),(10664,19824,'Mire',1,6),(10664,111092,'Martos',0,7),(10664,1367762,'Japanese Neighbor',1,8),(10664,1224566,'Dr. Owen',2,9),(10664,1065175,'Comisario',0,10),(10664,1363147,'Francotirador',0,11),(10664,54526,'Zombie',2,12),(16186,55314,'Helen',1,0),(16186,2202,'Charles',2,1),(16186,80602,'Madea / Brian / Joe',2,2),(16186,50266,'Orlando',2,5),(16186,208316,'Christina',0,7),(16186,1464838,'Doctor',0,8),(16186,1470068,'Brenda',0,9),(16186,39464,'Debrah',1,10),(16186,18249,'Myrtle',1,11),(16186,1062609,'Reverend Carter',2,12),(16186,114850,'Juror',2,13),(11901,190,'The Stranger',2,0),(11901,55192,'Sarah Belding',1,1),(11901,15659,'Callie Travers',1,2),(11901,14312,'Dave Drake',2,3),(11901,95597,'Morgan Allen',2,4),(11901,52463,'Mayor Jason Hobart',2,5),(11901,59641,'Lewis Belding',2,6),(11901,102426,'Mordecai',2,7),(11901,18071,'Stacey Bridges',2,8),(11901,199813,'Bill Borders',0,9),(11901,33544,'Sheriff Sam Shaw',2,10),(11901,106611,'Lutie Naylor',2,11),(11901,31210,'Asa Goodwin',2,12),(11901,13875,'Preacher',2,13),(11901,12296,'Bootmaker',2,14),(11889,5309,'Iris Murdoch',1,0),(11889,388,'John Bayley',2,1),(11889,204,'Young Iris Murdoch',1,2),(11889,19923,'Young John Bayley',2,3),(11889,1249,'Janet Stone',1,4),(11889,54447,'Young Maurice',2,5),(11889,35257,'Older Maurice',2,6),(11889,7058,'Dr. Gudgeon',2,7),(11889,18066,'Young Janet Stone',1,8),(11889,40665,'Postman',2,9),(11889,40656,'Emma Stone',0,10),(11889,994,'Taxi Driver',2,11),(11889,69465,'Maureen',1,12),(33155,114921,'Galaxina',1,0),(33155,41274,'Sgt. Thor',2,1),(33155,100624,'Capt. Cornelius Butt',2,2),(33155,87714,'Maurice',2,3),(33155,1709302,'Buzz',2,4),(33155,70947,'Sam Wo',2,5),(33155,1391057,'Ordric',0,6),(33155,1337122,'Ordric (voice)',0,7),(33155,97985,'Monster from Egg',2,8),(33155,200298,'Blue Girl',1,9),(33155,52615,'Winged Girl',1,10),(33155,44705,'Mime / Robot',1,11),(33155,103775,'Earthman',0,12),(27451,11863,'Cindy Bandolini',1,0),(27451,5090,'Alan Jensen',2,1),(27451,16484,'Chesney Cort',1,2),(27451,7036,'Teddy Carter',2,3),(27451,59967,'Kelly Morgan',1,4),(27451,12642,'Dr. Reese',2,5),(27451,3095,'Andrew Bandolini',2,6),(27451,1303875,'Marcus Blake',0,7),(27451,941693,'Russell',2,8),(27451,935294,'Mario',0,9),(27451,30609,'Juliet',1,10),(27451,23874,'Coach Preston',2,11),(13173,22226,'Jeff Reigert',2,0),(13173,11702,'Stephen Montgomery',2,1),(13173,65717,'Skydiving Guide Chris Knarl',2,2),(13173,1920,'Kelly La Fonda',1,3),(13173,77089,'Dr. Glenn Richie',2,4),(13173,87230,'\'Entertainment Beat\' Host George Reardon',1,5),(13173,21399,'Fielding Barnes',2,6),(13173,23626,'Ray Johnson',2,7),(13173,56731,'Liz Anne Blazer',1,8),(13173,64135,'Jake Johnson',2,9),(13173,539,'Scotty Pale',2,10),(13173,10696,'Gretchen Reigert',1,11),(13173,58224,'Tony Contiella',2,12),(13173,15009,'Jesus H. Christ',2,13),(13173,21127,'Marty McBride',2,14),(13173,52997,'Duane Rosenblum',2,15),(13173,21197,'Nuclear Powerplant Shift Supervisor Beth Soden',1,16),(13173,80591,'Hostess Rebecca Fornier',1,17),(13173,22224,'Prison Guard Jamberg Saivon',2,18),(13173,21131,'Paul Mardino',2,19),(13173,6212,'Prosecutor / Tour Guide Barge Michaelson',2,20),(13173,15370,'Gloria Jennings',0,21),(13173,50465,'Harlan Swallow',2,22),(13173,17485,'Marc Jacobson',2,23),(22908,14887,'Morell',2,0),(22908,70519,'Romeo Brass',2,1),(22908,990,'Joe Brass',2,2),(22908,148139,'Ladine Brass',1,3),(22908,148142,'Clifford',2,4),(22908,70520,'Male Nurse (credited as Shaun Fields)',2,5),(22908,382,'Steven Laws',2,6),(22908,148140,'Gavin \'Knocks\' Woolley',0,7),(22908,148134,'Darren',2,8),(22908,148132,'Dennis Wardrobe',0,9),(22908,148136,'Carol Brass',0,10),(22908,148135,'Sandra Woolley',1,11),(22908,148138,'Bill Woolley',2,12),(22908,148133,'School Pianist',0,13),(22908,148143,'Headmistress',0,14),(22908,148144,'Ambulance Man',0,15),(22908,148141,'Park Lad #1',0,16),(22908,148137,'Neighbour Lad #2',0,17),(22908,148145,'Neighbour Lad #1',0,18),(22908,148146,'Park Lad #2',0,19),(22908,81773,'Physiotherapist (uncredited)',2,20),(25248,108534,'Ralph Walker',2,0),(25248,55152,'Father George Hibbert',2,1),(25248,106712,'',2,2),(25248,13950,'',2,3),(25248,36810,'',1,4),(25248,132712,'Kid Collins',2,5),(16633,20006,'Richard Collier',2,0),(16633,10223,'Elise McKenna',1,1),(16633,290,'William Fawcett Robinson',2,2),(16633,7663,'Laura Roberts',1,3),(16633,26044,'Arthur Biehl',2,4),(16633,5254,'Dr. Gerald Finney',2,5),(16633,16200,'Older Elise',1,6),(16633,113704,'Arthur\'s Father',2,7),(16633,5687,'Genevieve',0,8),(16633,1712328,'Richard\'s Date',0,9),(16633,3905,'Critic (as W.H. Macy)',2,10),(16633,1712329,'Critic',0,11),(16633,1712330,'Penelope',0,12),(10072,5139,'Freddy Krueger',2,0),(10072,4687,'Kristen Parker',1,1),(10072,5141,'Nancy Thompson',1,2),(10072,11163,'Lt. Donald Thompson',2,3),(10072,62893,'Dr. Neil Gordon',2,4),(10072,2975,'Max',2,5),(10072,63915,'Roland Kincaid',2,6),(10072,63916,'Joey',2,7),(10072,56978,'Taryn White',1,8),(10072,3039,'Phillip',2,9),(10072,44816,'Will Stanton',2,10),(10072,174848,'Jennifer Caulfield',0,11),(10072,11793,'Dr. Elizabeth Simms',1,12),(10072,101013,'Lorenzo',0,13),(10072,72157,'Elaine Parker',1,14),(10072,552162,'Little Girl',0,15),(10072,553736,'Nurse #1',0,16),(10072,553737,'Nurse #2',1,17),(10072,87039,'Sister Mary Helena / Amanda Krueger',1,18),(10072,44715,'Herself',1,19),(10072,553738,'Marcie',0,20),(10072,10565,'Himself',2,21),(10072,194092,'Priest in Church',0,22),(10072,190793,'Priest in Cemetery',2,23),(10072,157612,'Dr. Carver',2,24),(10072,553739,'Neurosurgeon',0,25),(10072,553740,'Girl in Cemetery',0,26),(10072,553741,'Girl in Crowd',0,27),(29912,5341,'Marcellus Gallio',2,0),(29912,14500,'Diana',1,1),(29912,30290,'Demetrius',2,2),(29912,16097,'Caligula',2,3),(29912,16420,'Pontius Pilate',2,4),(29912,5795,'Abidor',2,5),(29912,12282,'Peter',0,6),(29912,29313,'Justus',0,7),(29912,10925,'Sen. Gallio',2,8),(29912,106625,'Miriam',1,9),(29912,12351,'Paulus',2,10),(29912,2925,'Emperor Tiberius',2,11),(29912,72717,'Junia',0,12),(29912,121323,'Spectator at Caligula\'s court',1,13),(29912,182231,'Lucia',0,14),(29912,16074,'Judas',2,15),(29912,2101,'Caleb, the wine merchant',0,16),(29912,952047,'Jonathan',2,17),(29912,82748,'Marius, the physician',0,18),(29912,81188,'Julia',1,19),(29912,3163,'Gracchus',2,20),(29912,29285,'Tiro',2,21),(29912,40623,'Bidder at slave auction',2,22),(29912,126658,'Marcipor (uncredited)',0,24),(11843,12446,'Jacques Clouseau',2,0),(11843,290,'Sir Charles Litton',2,1),(11843,14503,'Charles Dreyfus',2,2),(11843,18915,'Claudine',1,3),(11843,14955,'Col. Sharki',2,4),(11843,82549,'Gen. Wadafi',2,5),(11843,53819,'Chief of Lugash Police',2,6),(11843,95125,'Mac',2,7),(11843,14107,'Pepe',2,8),(11843,21609,'The Fat Man',2,9),(11843,47848,'Sgt. Franu00e7ois Chevalier',2,10),(11843,21944,'Cato Fong',2,11),(11284,5139,'Freddy Krueger',2,0),(11284,68848,'Maggie Burroughs',1,1),(11284,68849,'John Doe',2,2),(11284,68850,'Tracy',1,3),(11284,68851,'Carlos',2,4),(11284,33654,'Spencer',2,5),(11284,5050,'Doc',0,6),(11284,74036,'Childless Man',2,7),(11284,46393,'Childless Woman',1,8),(11284,1209,'Orphanage Woman',1,9),(11284,85,'Guy on TV',2,10),(11284,553765,'Little Maggie / Katherine Krueger',0,11),(11284,105708,'Kelly',0,12),(11284,171005,'Mrs. Burroughs',1,13),(11284,165659,'Woman in Plane',1,14),(11284,551937,'Stewardess',0,15),(11284,166609,'Loretta Krueger',0,16),(11284,3424,'Carlos\' Mother',1,17),(11284,9659,'Tracy\'s Father',2,18),(11284,42530,'Teen Freddy',0,19),(11284,553766,'Young Freddy',0,20),(11284,152286,'Spencer\'s Father',2,21),(11284,98555,'Springwood Teacher',2,22),(11284,553767,'Officer #1',0,23),(11284,149486,'Officer #2',1,24),(11284,13663,'Ticket Seller',2,25),(11284,170132,'Cop in Shelter',0,26),(11284,553768,'Security Guard',0,27),(11284,553769,'Angry Boy',0,28),(11284,553770,'Various (uncredited)',0,29),(11284,35824,'Freddy\'s Father (uncredited)',2,30),(11284,553771,'Freddy (uncredited)',0,31),(16096,78029,'Bilal',2,0),(16096,79321,'Play',2,1),(16096,79320,'Kid',2,2),(16096,10863,'Stab',2,3),(16096,141823,'Sidney',1,4),(16096,15758,'Zora',1,5),(16096,14065,'Prof. Sinclair',2,6),(16096,2395,'Professor',1,7),(16096,2124,'Sheila Landreaux',1,8),(24266,73489,'Jim Craig',2,0),(24266,75394,'Henry Craig',0,1),(24266,2090,'Harrison / Spur',2,2),(24266,91486,'Mountain Man',2,3),(24266,91487,'Man in Street',0,4),(24266,91488,'Banjo Paterson',0,5),(24266,76181,'Jessica Harrison',0,6),(24266,12536,'Clancy',2,7),(24266,45207,'Kane',2,8),(24266,91489,'Mrs. Bailey',0,9),(24266,3070,'Curly',2,10),(24266,91490,'Moss',0,11),(24266,44843,'Frew',2,12),(24266,91491,'Short Man',0,13),(24266,91492,'Rosemary Hume',0,14),(16508,171544,'Doug Funnie',2,0),(16508,196714,'Skeeter / Mr. Dink / Porkchop / Ned',2,1),(16508,115502,'Roger Klotz / Boomer / Larry / Mr. Chiminy',0,2),(16508,58521,'Patti Mayonnaise',1,3),(15660,6450,'Joan Crawford',1,0),(15660,2958,'Christina Crawford',1,1),(15660,44998,'Greg Savitt',2,2),(15660,79247,'Louis B. Mayer',2,3),(15660,150212,'Christina Crawford (child)',1,4),(15660,171600,'Alfred Steele',0,5),(15660,75027,'Ted Gelber',2,6),(15660,96283,'Barbara Bennett',1,7),(15660,11793,'Mrs. Chadwick',1,8),(15660,274915,'Captain',2,9),(15660,129665,'Jimmy',2,10),(15660,152587,'Connie',1,11),(15660,1168422,'Wedding Guest',0,12),(15660,3982,'Christopher Crawford (adult)',2,13),(19848,105880,'Diamond (as Lisa Raye)',1,0),(19848,1911,'Mr. Armstrong',2,1),(19848,77033,'Mrs. Armstrong',1,2),(19848,582888,'Ronnie',1,3),(19848,141603,'Tricks',1,5),(19848,1897,'Dollar Bill',2,6),(19848,83101,'L\'il Man',2,7),(19848,32646,'Ebony',1,8),(19848,134,'Blue',2,9),(19848,66131,'Tina',1,10),(19848,18288,'K.C.',2,11),(19848,9778,'Reggie',2,12),(19848,17840,'Brooklyn',2,13),(24973,14500,'Merit',1,0),(24973,30290,'Horemheb',2,1),(24973,20124,'Baketamon',1,2),(24973,14501,'Kaptah',2,3),(24973,26155,'Sinhue',2,4),(24973,20392,'Akhnaton',2,5),(24973,92930,'Nefer',1,6),(24973,7686,'Taia',1,7),(24973,10924,'Mekere',2,8),(24973,8516,'Grave Robber',2,9),(24973,81180,'Senmut',2,10),(24973,20099,'Thoth',2,11),(24973,1382707,'Queen Nefertiti',1,12),(24973,16074,'Hittite Commander (uncredited)',2,13),(24973,106102,'Hittite Officer (uncredited)',2,14),(24973,1747651,'Egyptian Female',0,15),(24973,38238,'Student in School of Life',2,16),(24973,1747652,'Princess',1,17),(24973,1671997,'Citizen',0,18),(24973,1747653,'Boy',0,19),(24973,976235,'Nubian Prince',2,20),(24973,1747654,'Tavern Waitress',1,21),(24973,1747655,'Palace Soldier',0,22),(24973,1421080,'Soldier',0,23),(24973,1747656,'Nubian Guard',0,24),(24973,89215,'Kipa',1,25),(24973,43836,'Patient',2,26),(24973,1135034,'Libyan Guard',0,27),(24973,96735,'Egyptian Dancer',1,28),(24973,1747657,'Boy',0,29),(24973,1152705,'Soldier',2,30),(24973,33820,'Hittite Officer',0,31),(24973,1747658,'Princess',1,32),(24973,1747659,'Boy',0,33),(24973,97999,'Man in Street (uncredited)',2,34),(24973,16762,'Princess',1,35),(24973,83912,'Officer',2,36),(24973,1747660,'Syrian at Nefer\'s',0,37),(24973,1507184,'Citizen',2,38),(24973,1747661,'Citizen',1,39),(24973,119486,'High Priest',0,40),(24973,4074,'Ship\'s Captain',2,41),(24973,111488,'Cadet',2,42),(24973,1747678,'Libyan Guard',0,43),(24973,94991,'Lady in Waiting',1,44),(24973,84229,'Foreman, House of Death',2,45),(24973,931194,'Priest',0,46),(24973,1155980,'Officer',0,47),(24973,1747680,'Nefer\'s Maid',1,48),(24973,1747681,'Sinuhe - Age 10',0,49),(24973,1462194,'Servant',0,50),(24973,106505,'Priest',0,51),(24973,1024978,'Egyptian Official',0,52),(24973,6008,'Boy',2,53),(24973,30515,'Soldier',0,54),(24973,1747682,'Nefer\'s Maid',1,55),(24973,1747686,'Nubian',0,56),(24973,553634,'Old Woman Near the House of Death',1,57),(24973,133459,'Governess',1,58),(21610,16483,'Det. Sgt. Deke DaSilva',2,0),(21610,585,'Wulfgar',2,1),(21610,3799,'Det. Sgt. Matthew Fox',0,2),(21610,57905,'Irene',1,3),(21610,1757,'Shakka Holland',1,4),(21610,13327,'Peter Hartman',2,5),(21610,70117,'Pam',0,6),(21610,16525,'Lt. Munafo',2,7),(21610,112962,'Commissioner',2,8),(21610,112963,'Sergeant',0,9),(21610,104279,'Girl at Party - London',0,10),(10283,62596,'Jason',2,0),(10283,64733,'Rennie Wickham',1,1),(10283,1196615,'Sean Robertson',0,2),(10283,64734,'Colleen Van Deusen',1,3),(10283,13401,'Charles McCulloch',2,4),(10283,116573,'Wayne Webber',2,5),(10283,51539,'Miles Wolfe',2,6),(10283,32749,'Deck Hand',2,7),(10283,543589,'Julius Gaw',2,8),(10283,160111,'J.J. Jarrett',1,9),(10283,11024,'Eva Watanabe',1,10),(10283,159614,'Tamara Mason',1,11),(10283,64730,'Jim Miller',0,13),(10283,64731,'Suzi Donaldson',1,14),(10283,61126,'Young Jason',0,15),(10283,151339,'Admiral Robertson',2,16),(10987,9221,'Dr. Sam Loomis',2,0),(10987,22226,'Tommy Doyle',2,1),(10987,67838,'Kara Strode',1,2),(10987,14312,'Dr. Terence Wynn',2,3),(10987,15655,'Debra Strode',1,4),(10987,1234009,'John Strode',2,5),(10987,139343,'Tim Strode',2,6),(10987,133456,'Beth',1,7),(10987,97719,'Barry Simms',0,8),(10987,1474974,'Jamie Lloyd',0,9),(10987,1109673,'Danny Strode',0,10),(10987,182515,'Mary',0,11),(10987,69129,'The Shape',2,12),(10987,1762900,'Mrs. Blankenship',0,13),(10987,95051,'Motorist',2,14),(10987,1762902,'Ballerina',0,15),(10987,1762904,'Nurse',0,16),(14745,58754,'Molly Hartley',1,0),(14745,4177,'Robert Hartley',2,1),(14745,60899,'Joseph Young',2,2),(14745,82663,'Leah',1,3),(14745,59217,'Alexis',1,4),(14745,82662,'Suzie Woods',1,5),(14745,65760,'Jane Hartley',1,6),(14745,42133,'Dr. Emerson',1,7),(14745,40039,'Mr. Draper',2,8),(14745,84698,'Laurel',1,9),(14745,77448,'Jock',2,10),(26748,2955,'Sam Deeds',2,0),(26748,10297,'Buddy Deeds',2,1),(26748,7430,'Pilar',1,2),(26748,10823,'Charlie Wade',2,3),(26748,3977,'Del',2,4),(26748,3910,'Bunny',1,5),(26748,158354,'Mikey',2,7),(26748,155575,'Celie',0,8),(26748,61010,'Priscilla Worth',1,9),(26748,30151,'Cody',2,10),(26748,977465,'Molly',0,11),(26748,157609,'Enrique',2,12),(26748,1163,'Mercedes Cruz',1,13),(26748,103835,'Young Hollis',2,14),(26748,1249882,'Chet',0,15),(26748,85170,'Otis',2,16),(26748,171075,'Athena',1,17),(26748,994259,'Anglo Father',2,18),(26748,37430,'Wesley Birdsong',2,19),(26748,235782,'Young Pilar',1,20),(26748,10224,'Hollis',2,21),(11357,9221,'Dr. Sam Loomis',2,0),(11357,62589,'Rachel Carruthers',1,1),(11357,21320,'Jamie Lloyd',1,2),(11357,69129,'Michael Myers',2,3),(11357,15993,'Dr. Hoffman',0,4),(11357,42308,'Sheriff Ben Meeker',2,5),(11357,69130,'Kelly Meeker',1,6),(11357,58000,'Brady',2,7),(11357,9295,'Earl',2,8),(11357,154073,'Rev. Jackson P. Sayer',2,9),(11357,84606,'Security Guard',2,10),(11357,146337,'Richard Carruthers',0,11),(11357,1107034,'Darlene Carruthers',1,12),(11357,1107162,'Woman Attendant',1,13),(11357,1099080,'Man Attendant',2,14),(11357,1107079,'Bucky - Power Worker',0,15),(11357,1762933,'Dr. Hoffman\'s Assistant',0,16),(11357,1762934,'Wade',0,17),(11357,7144,'Deputy Pierce',2,18),(11357,200803,'Deputy Logan',0,19),(11357,1195003,'Big Al',0,20),(11357,954790,'State Policeman',2,21),(11357,1762938,'Dead Penney\'s Gas Waitress',0,22),(11357,1762939,'Young Michael Myers',0,23),(24913,79741,'Muffy / Buffy St. John',0,0),(24913,1065,'Arch Cummings',2,1),(24913,25024,'Ferryman',2,2),(24913,56015,'Constable Potter / Uncle Frank',2,3),(24913,70556,'Rob Ferris',2,4),(24913,55575,'Nan Youngblood',1,5),(24913,91725,'Chaz Vyshinski',2,6),(24913,58710,'Kit Graham',1,7),(24913,81624,'Harvey \'Hal\' Edison',2,8),(24913,47744,'Clara',0,9),(24913,92820,'Nikki Beshears',1,10),(24913,92821,'Buck',2,11),(24913,92822,'Skip St. John',2,12),(13776,26472,'Edward \'Eddie\' Simmons',2,0),(13776,11511,'Laurence \'Shrevie\' Schreiber',2,1),(13776,2295,'Robert \'Boogie\' Sheftell',2,2),(13776,4724,'Timothy Fenwick Jr.',2,3),(13776,68122,'William \'Billy\' Howard',2,4),(13776,6913,'Beth Schreiber',1,5),(13776,781,'Modell',2,6),(13776,75194,'Barbara',1,7),(13776,56695,'Bagel',2,8),(13776,75195,'Mrs. Simmons',1,9),(13776,75196,'Carol Heathrow',1,10),(13776,75197,'Diane',0,11),(13776,73515,'Tank',2,12),(13776,75198,'David Frazer',2,13),(13776,75199,'Jane Chisholm',1,14),(13776,75200,'Methan',2,15),(13776,75201,'Howard Fenwick',2,16),(13776,75202,'First Stripper',0,17),(13776,75203,'Second Stripper',1,18),(13776,75204,'Elyse',1,19),(13776,1173,'Earl Mager',2,20),(13776,75205,'TV Customer',2,21),(13776,75206,'TV Director',2,22),(13776,75207,'Technical Director',2,23),(13776,75208,'Audio Man',2,24),(13776,75209,'Newscaster',2,25),(13776,75210,'Announcer',2,26),(13776,75211,'Billy Howard\'s Father',0,27),(13776,75212,'Eddie Simmons\' Father',0,28),(13776,75213,'Clothing Hustler',0,29),(13776,75214,'George',0,30),(13776,58816,'Knocko',0,31),(13776,75215,'Guy at Pool Hall',2,32),(13776,33473,'Soap Opera Man',0,33),(13776,75216,'Soap Opera Woman',0,34),(13776,75217,'Rabbi',0,35),(13776,75218,'Drunk at Wedding',0,36),(13776,75219,'Woman at Wedding',0,37),(13776,75220,'Waitress',0,38),(13776,75221,'Waitress',0,39),(13776,75222,'Bagel\'s Friend',0,40),(13776,75223,'Bagel\'s Friend',0,41),(13776,75224,'Man in Jail',0,42),(13776,75225,'Beautician',0,43),(13776,75226,'Salon Woman',0,44),(14854,51576,'J.J. McQuade',2,0),(14854,141,'Rawley Wilkes',2,1),(14854,10938,'Lola Richardson',1,2),(14854,543349,'Jackson',2,3),(14854,58799,'Sally McQuade',1,4),(14854,50880,'Kayo',2,5),(14854,8262,'Dakota',2,6),(14854,1107,'T. Tyler',2,7),(14854,940922,'Jefe',2,8),(14854,19434,'Molly',1,9),(14854,19751,'Falcon',0,10),(14854,590,'Snow',2,11),(14854,1862442,'Burnside',0,12),(14854,1862443,'Gas Station Attendant',0,13),(14854,1862444,'Colonel',0,14),(14854,1180621,'2nd Agent',0,15),(14854,1862445,'Intern',0,16),(14854,194401,'Redneck #1',2,17),(14854,1862446,'Beggar',0,18),(14854,1862447,'Sgt. Garcia',0,19),(14854,51572,'Punk',2,20),(14854,62596,'Goon',2,21),(14854,1862448,'Photographer #1',0,22),(13090,9273,'Rose Lorkowski',1,0),(13090,5081,'Norah Lorkowski',1,1),(13090,1903,'Joe Lorkowski',2,2),(13090,74151,'Oscar Lorkowski',2,3),(13090,18324,'Mac',2,4),(13090,25884,'Lynn',1,5),(13090,5365,'Winston',2,6),(13090,29020,'Randy',2,7),(13090,15900,'Sherm',2,8),(13090,4728,'Carl Swanson',2,9),(13090,158784,'Paula Datzman-Mead',1,10),(13090,80988,'Heather',1,11),(13090,1803311,'Mrs. Kim',0,12),(13090,235348,'Mrs. Davis',1,13),(13090,1803312,'Young Rose',0,14),(13090,1803313,'Young Norah',0,15),(13090,1654001,'Candy Store Girl',1,16),(13090,210157,'Girl\'s Mother',0,17),(13090,1006144,'Gun Shop Owner',2,18),(13090,1244933,'Above and Beyond Worker',2,19),(16441,35350,'Dar',2,0),(16441,10660,'Kiri',1,1),(16441,9626,'Maax',2,2),(16441,22384,'Seth',2,3),(16441,1073795,'Tal',0,4),(16441,558152,'King Zed',0,5),(16441,96913,'Young Dar\'s Father',2,6),(16441,66201,'Sacco',2,7),(16441,84164,'Young Dar',2,8),(16441,174857,'Witchwoman #1',1,9),(16441,165994,'Witchwoman #2',1,10),(16441,19257,'Witchwoman #3',1,11),(16441,161285,'Jun Leader',2,12),(16441,64371,'Zed\'s Wife',0,13),(16441,1073798,'Sacco\'s Daughter',0,14),(29996,14528,'Solomon',2,0),(29996,19534,'Sheba',1,1),(29996,3361,'Adonijah',2,2),(29996,117617,'Abishag',1,3),(29996,91617,'Pharaoh',2,4),(29996,15693,'Joab',2,5),(29996,10027,'David',2,6),(29996,19463,'Baltor',2,7),(29996,14822,'Ahab',0,8),(14834,9779,'Dave Johnson',2,0),(14834,40036,'Clarice Clark',1,1),(14834,21859,'Julie Sawyer',1,2),(14834,55638,'Tree',2,3),(14834,15899,'Mary \'Mama\' Clark',1,4),(14834,55541,'Brock Houseman',2,5),(14834,65829,'Darnell Gooden',2,6),(22649,47439,'Catherine Barkley',0,0),(22649,4068,'Lieutenant Frederic Henry',2,1),(22649,14563,'Major Rinaldi',2,2),(22649,48960,'Helen Ferguson',0,3),(22649,99347,'Priest',2,4),(22649,30159,'Head Nurse',0,5),(22649,81941,'Miss Van Campen',1,6),(22649,95757,'British Major',0,7),(22649,1016595,'Giulio - Hospital Porter (uncredited)',2,8),(20455,174462,'Kari / Young Kari (voice)',1,0),(20455,1189931,'Young Tai / Tai (voice)',0,1),(20455,168992,'Red Greymon (voice)',2,2),(20455,1189933,'',0,3),(20455,571562,'Computer Voice 1 / Poromon / Flamedramon / Raidramon / Magnamon (voice)',2,4),(20455,1212864,'Sora / Male Student (voice)',1,5),(20455,1213735,'Matt (voice)',2,6),(20455,79051,'Young T.K. / Little Girl 1 / Party Girl 1 / Little Kokomon (voice)',1,7),(20455,571564,'Koromon / Kuramon (voice)',1,8),(13193,20089,'Mary',1,0),(13193,16855,'Hilary Faye',1,1),(13193,11510,'Roland',2,2),(13193,11663,'Patrick',2,3),(13193,33656,'Tia',1,4),(13193,56757,'Cassandra',1,5),(13193,42993,'Pastor Skip',2,6),(13193,18248,'Lillian',1,7),(13193,64471,'Dean',2,8),(13193,43297,'Veronica',1,9),(13193,120582,'Herself',1,10),(13193,110525,'Mitch',2,11),(11042,38526,'Ru00e9my',2,0),(11042,24896,'Su00e9bastien',2,1),(11042,8791,'Nathalie',1,2),(11042,67905,'Louise',1,3),(11042,17388,'Diane',0,4),(11042,67906,'Dominique',1,5),(11042,83180,'Pierre',0,6),(11042,38529,'Claude',2,7),(11042,32511,'Gau00eblle',1,8),(11042,7008,'First Lover',0,9),(11042,38525,'Sister Constance Lazure',1,10),(11042,83184,'Ghislaine',1,11),(11042,90676,'Sylvaine',1,12),(11042,232740,'Nurse Suzanne',0,13),(11042,534894,'Nurse Carole',1,14),(11042,543221,'Duhamel',2,15),(11042,90678,'Second Lover',0,16),(11042,557282,'Maxime',0,17),(11042,1189604,'Olivier',0,18),(11042,38528,'Priest Raymond Leclerc',2,19),(11042,125837,'Dr. Dubu00e9',2,20),(11042,130928,'Mme. Joncas-Pelletier',0,21),(11042,127495,'Arielle',1,22),(11042,79617,'Security Guard',0,23),(11042,83182,'Alain Lussier',2,24),(11042,32890,'Vincent',2,25),(11042,1192785,'Student',0,26),(11042,56977,'Gilles Levac',2,27),(11042,583728,'Ju00e9ru00f4me',0,28),(11042,1330770,'Nurse',1,29),(11042,86616,'Cowboy',2,30),(11042,38516,'Unionist (uncredited)',2,31),(11042,134671,'(uncredited)',2,32),(11042,990378,'(uncredited)',1,33),(11042,997683,'(uncredited)',0,34),(11042,1504484,'(uncredited)',1,35),(11042,1662902,'(uncredited)',0,36),(11042,1297498,'(uncredited)',0,37),(11042,81468,'(uncredited)',1,38),(10786,738,'Robin Hood',2,0),(10786,1932,'Lady Marian',0,1),(10786,8606,'Sheriff of Nottingham',2,2),(10786,194,'Richard the Lionheart / King Richard',2,3),(10786,51812,'Little John',2,4),(10786,65,'King John',2,5),(10786,66786,'Friar Tuck',1,6),(10786,656,'Will Scarlet',2,8),(12484,43442,'Sean',2,0),(12484,72440,'Nick',2,1),(12484,59592,'Megan',1,2),(12484,51670,'Kit',2,3),(12484,1217813,'Cym',0,4),(12484,35548,'Pen',2,5),(12484,44831,'Ina Hamm',1,6),(12484,41504,'Teddy',1,7),(12484,937108,'Hoot',0,8),(12484,60460,'Mike',2,9),(12484,61556,'Oat\'s Diner Waitress',1,10),(17339,3,'Lieutenant Colonel Barnsby',2,0),(17339,8606,'Maj. Keith Mallory',2,1),(17339,10458,'Maritza Petrovich',1,2),(17339,9126,'Miller',2,3),(17339,22383,'Lescovar',2,4),(17339,1101,'Weaver',0,5),(17339,10460,'Drazak',0,6),(17339,39065,'Petrovitch',2,7),(17339,742,'Schroeder',2,8),(17339,81247,'Jensen',2,9),(17339,58475,'Reynolds',2,10),(17339,70417,'Sgt. Bauer',2,11),(17339,113900,'Marko',0,12),(11959,71041,'George Newman',0,0),(11959,30366,'Teri',1,1),(11959,50807,'Stanley Spadowski',2,2),(11959,11659,'Bob',2,3),(11959,53122,'Pamela Finklestein',1,4),(11959,34597,'R.J. Fletcher',2,5),(11959,92684,'Philo',2,6),(11959,12659,'Noodles MacIntosh',2,7),(11959,146798,'Raul Hernandez',2,8),(11959,216837,'Joe Earley',2,9),(14662,10871,'Vivian Abromowitz',1,0),(14662,1903,'Murray Samuel Abromowitz',2,1),(14662,3141,'Rita Abromowitz',1,2),(14662,116027,'Rickey Abromowitz',2,3),(14662,8211,'Rachel Hoffman',1,5),(14662,38582,'Ben Abromowitz',2,6),(14662,18472,'Eliot Arenson',2,7),(14662,13299,'Belle Abromowitz',1,8),(14662,1895,'Mickey',2,9),(14662,41232,'Doris',1,10),(14662,13299,'Belle',1,11),(15745,4937,'Ricky Slade',2,0),(15745,15277,'Bobby',2,1),(15745,16450,'Ruiz',2,2),(15745,10696,'Jessica',1,3),(15745,2314,'Max',2,4),(15745,62066,'Horrace',2,5),(15745,2482,'The Welshman',2,6),(15745,47774,'Jimmy',2,8),(15745,591368,'Wendy',0,9),(15745,2139,'Chloe',1,10),(15745,55265,'Bachelor',2,11),(15745,78299,'Best Man',0,12),(15745,18285,'Club Girl (uncredited)',1,13),(17431,6807,'Sam Bell',2,0),(17431,1979,'Robot Gerty (Voice)',2,1),(17431,115146,'Tess Bell',1,2),(17431,115147,'Little Eve',0,3),(17431,115149,'Nanny',0,4),(17431,115150,'Eve',1,5),(17431,30082,'Thompson',2,6),(17431,27110,'Technician',2,8),(17431,115151,'Sam Bell Clone',2,9),(17431,1488236,'Overmeyers',0,10),(21014,57675,'Benjamin Fiedler',2,0),(21014,9995,'Joanne Fiedler',1,1),(21014,12799,'Adam Fiedler',2,2),(21014,57854,'Casey Nudelman',1,3),(21014,86653,'Zachary Stein',2,4),(21014,32291,'Raylene Stein',1,5),(21014,1211,'Arnie Stein',2,6),(21014,45863,'Rose Fiedler',1,7),(21014,1201,'Irwin Fiedler',2,8),(21014,589,'Sandy / Sacred',1,9),(21014,52018,'Ashley Grunwald',1,10),(21014,17743,'Karen Sussman',1,11),(10217,65,'Mitchell Stephens',2,0),(10217,213388,'Zoe Stevens',0,1),(10217,98,'Nicole Burnell',1,2),(10217,64712,'Sam Burnel',2,3),(10217,58804,'Dolores Driscoll',1,4),(10217,19958,'Risa Walker',1,5),(10217,7868,'Wendell',2,6),(10217,139862,'Allison',1,7),(10217,21089,'Billy Ansel',2,8),(13996,4566,'Steven Spurrier',2,0),(13996,62064,'Bo Barrett',2,1),(13996,8984,'Jim Barrett',2,2),(13996,19538,'Sam Fulton',1,3),(13996,6862,'Gustavo Brambila',2,4),(13996,1117,'Maurice Cantavale',2,5),(13996,116443,'Shenky',0,6),(13996,59060,'Maitre d\'',0,7),(13996,13446,'Joe',1,8),(13996,176035,'Loan Officer',2,9),(13996,14741,'Pierre Tari',2,10),(13996,11367,'Professor Saunders',0,11),(16148,8984,'Daryl Zero',2,0),(16148,7399,'Steve Arlo',2,1),(16148,31070,'Gregory Stark',2,2),(16148,21165,'Gloria Sullivan',1,3),(16148,15276,'Jess',1,4),(16148,1638387,'Bill',2,5),(16148,79649,'Daisy',0,6),(16148,79651,'Kragan Vincent',0,7),(16148,79653,'Maid',1,8),(16148,79654,'Gerald Auerbach',0,9),(16148,79657,'Staffer #1',0,10),(16148,79659,'Staffer #2',0,11),(16148,79661,'Firefighter',0,12),(16148,79662,'Motel Clerk',0,13),(16148,79663,'Little Kid',0,14),(27585,2227,'Becca Corbett',1,0),(27585,6383,'Howie Corbett',2,1),(27585,1902,'Nat',1,2),(27585,996701,'Jason',2,3),(27585,16859,'Izzy',1,4),(27585,25540,'Gabby',1,5),(27585,4808,'Auggie',2,6),(27585,4602,'Rick',2,7),(27585,170977,'Kevin',2,8),(27585,27107,'Craig',2,9),(27585,171271,'Rhonda',1,10),(27585,23627,'Peg',1,11),(27585,87230,'Donna',1,12),(27585,203430,'Ana',0,13),(27585,1792518,'Sam',0,14),(27585,17642,'Reema',1,15),(27585,112475,'Debbie',1,16),(27585,2843,'Bob',0,17),(27585,1218191,'Gary',0,18),(27585,1792519,'Sammy',0,19),(27585,81378,'Lori',0,20),(27585,973998,'Lilly',1,21),(27585,1770683,'Danny',0,22),(27585,1023431,'Abby',0,23),(27585,1792520,'Mary',0,24),(27585,1792521,'Caden',0,25),(27585,1792522,'Jason\'s Mother',0,26),(27585,57823,'Librarian',1,27),(14474,7489,'Priscilla Chase',1,0),(14474,518,'Wayne the Pool Guy',2,1),(14474,22226,'Jack Chase',2,2),(14474,11617,'Kristen Taylor',1,3),(14474,66263,'Sherri',1,4),(14474,65827,'Coach Popovitch',2,5),(14474,69122,'Justine',1,6),(13685,36422,'Anthony Adams',2,0),(13685,887,'Dignan',2,1),(13685,74940,'Inez',1,2),(13685,71555,'Future Man',2,3),(13685,52797,'Bob Mapplethorpe',0,4),(13685,148593,'Bernice',0,5),(13685,3085,'Mr. Henry',2,6),(13685,42006,'Dr. Nichols',2,7),(13685,1117323,'Grace',0,8),(13685,1117324,'H. Clay Murchison',0,9),(13685,955807,'Stacy Sinclair',0,10),(13685,1117325,'Temple',0,11),(18442,101250,'Constance',1,1),(18442,52396,'Lilly',1,2),(18442,58907,'Roger',2,3),(18442,43928,'Alex',1,4),(18442,101251,'Gibby',2,5),(18442,101252,'Vikki Vickers',0,6),(18442,101253,'Bobby Johnson',2,7),(18442,101254,'Natasha',1,8),(18442,25849,'Detective Francis Kirk',0,9),(18442,44711,'Detective Amanda Watts',1,10),(18442,43265,'Luke',2,11),(11600,100700,'Angel Salazar',2,0),(11600,100701,'Lawyer McCoy',2,1),(11600,100703,'Master Sergeant Sweet',2,2),(11600,100705,'Soldier',0,3),(11600,100707,'Sergeant Jim Vasquez',2,4),(13849,1333,'David',2,0),(13849,34551,'Peter',2,1),(13849,106049,'Tracey',1,2),(13849,79885,'Andrew',0,3),(13849,1086858,'Bouncer',0,4),(13849,1086859,'Club Receptionist',0,5),(13849,89798,'Man in Suit',0,6),(13849,1086860,'Muk Li San',0,7),(13849,1086861,'Chun Yo Fu',0,8),(13849,1047358,'Steven',0,9),(13849,73040,'Villager with Dog',2,10),(13849,60348,'The Farmer',2,11),(13849,56471,'Farmer\'s Wife',1,12),(13849,73355,'Farmer\'s Daughter 1',1,13),(13849,1086862,'Farmer\'s Daughter 2',0,14),(14849,1218072,'George Lass',1,0),(14849,77353,'Roxy Harvey',1,1),(14849,68287,'Mason',2,2),(14849,41819,'Daisy Adair',1,3),(14849,74365,'Reggie Lass',1,4),(14849,189719,'Delores Herbig',0,5),(14849,65528,'Joy Lass',1,6),(14849,31166,'Cameron Kane',2,7),(14849,88619,'Jennifer Hardick',1,8),(14849,90466,'Melange Receptionist',0,9),(14849,1318889,'Millie',0,10),(14849,80024,'Amy',0,11),(14849,111920,'Jenny',1,12),(14849,1504486,'Tiffany',0,13),(14849,548204,'Tara\'s Mother',0,14),(14849,227058,'Thief',2,15),(12486,2231,'Narrator (voice)',2,0),(12486,26485,'They\'re all bitches Penguin (voice)',2,1),(12486,2395,'Helen (voice)',1,2),(12486,18979,'Melissa (voice)',1,3),(12486,21593,'Insecure Penguin (voice)',2,4),(12486,1206,'Penguin on Belly (voice)',2,5),(12486,59258,'Jimmy (voice)',2,6),(12486,57551,'Sidney (voice)',2,7),(12486,31837,'Online Penguin (voice)',2,8),(12486,60073,'I Need a Z-Pack Penguin (voice)',1,9),(19615,78887,'George',2,0),(19615,58691,'Pamela',1,1),(19615,84943,'Rachel',0,2),(19615,14722,'Beth',1,3),(19615,168380,'Kate',1,4),(19615,84944,'Young Willy',2,5),(19615,15251,'Michael',2,6),(19615,84945,'Alan',0,7),(19615,45041,'Vicki',1,8),(19615,84946,'Freddy',0,9),(19615,84947,'T.V. Commentator',0,10),(19615,41125,'Steve',2,11),(19615,84949,'Young George Barron',0,12),(19615,84948,'Ally',1,13),(19615,84950,'Mira',0,14),(19615,84951,'Rick',0,15),(19615,1934,'Margie',1,16),(19615,84952,'Ellie',1,17),(19615,84953,'Doctor',0,18),(19615,84954,'Linda',0,19),(19615,84955,'Willy',2,20),(19615,22821,'Tony',2,21),(11935,827,'Robert Caulfield',2,0),(11935,9274,'Col. Charles Brubaker',2,1),(11935,30585,'Kay Brubaker',1,2),(11935,8975,'Lt. Col. Peter Willis',2,3),(11935,12951,'Cmdr. John Walker',2,4),(11935,11066,'Dr. James Kelloway',2,5),(11935,8963,'Judy Drinkwater',1,6),(11935,10169,'Albain',2,7),(11935,1232,'Hollis Peaker',2,8),(11935,123632,'Walter Loughlin',2,9),(11935,160328,'Sharon Willis',1,10),(11935,65398,'Betty Walker',1,11),(11935,13729,'Elliot Whitter',2,12),(11935,65568,'Control Room Man',0,13),(11935,124131,'Capsule Communicator',2,14),(11935,135189,'F.B.I. Man Number 1',0,15),(12555,72791,'Jan Du00edte junior',0,0),(12555,72792,'Jan Du00edte senior',0,1),(12555,3932,'Lu00edza',1,2),(12555,72793,'Walden',0,3),(12555,72794,'Skrivu00e1nek',0,4),(12555,30743,'Professor',0,5),(12555,72795,'Brandejs',2,6),(12555,72797,'Karel',0,7),(12555,140438,'Hotelchef',2,8),(31175,5498,'Zinos Kazantsakis',0,0),(31175,5117,'Shayn Weiss',0,1),(31175,677,'Ilias Kazantsakis',2,2),(31175,7805,'Thomas Neumann',2,3),(31175,19998,'Anna Mondstein',1,4),(31175,53846,'Nadine Kruger',1,5),(31175,5123,'Sokrates',2,7),(31175,16782,'Nadines Grossmutter',1,8),(31175,5600,'Ziege',2,9),(31175,5124,'Milli',0,10),(31175,5119,'Frau Schuster vom Finanzamt',0,11),(31175,56604,'Assistant',2,12),(31175,5235,'Herr Meyer (Gesundheitsamt)',2,13),(31175,1646,'Herr Jung',2,14),(31175,1169263,'Kommissarin',0,15),(31175,1133520,'Lutz',2,16),(31175,1186434,'Lucia Faust',1,17),(31175,109085,'Knochenbrecher',0,18),(12498,879,'Karl Childers',2,0),(12498,20309,'Doyle Hargraves',2,1),(12498,22131,'Charles Bushman',0,2),(12498,27772,'Vaughan Cunningham',2,3),(12498,155,'Frank Wheatley',2,4),(12498,3087,'Karl\'s Father',2,5),(12498,71886,'Linda Wheatley',1,6),(12498,14848,'Jerry Woolridge',2,7),(12498,52881,'Melinda Brady',1,8),(12498,4429,'Frostee Cream Boy',0,9),(12498,1549384,'Terence',0,11),(12498,308843,'Bill Cox',2,12),(12498,15011,'Scooter',2,13),(12498,1695755,'Albert',0,14),(12498,1201770,'Morris',0,15),(12498,100230,'Monty Johnson',2,16),(12498,1584865,'Randy Horsefeathers',0,17),(11404,350,'Laura Marshall',1,0),(11404,10989,'Ben Marshall',2,1),(11404,477,'Evie Walton',1,2),(11404,32248,'Bryony',1,3),(11404,95023,'Peter',0,4),(11404,66442,'Sarah',1,5),(11404,32357,'Robert',2,6),(11404,14950,'Mr. Fincham',2,7),(11404,1229194,'Chandra',0,8),(11404,141355,'Emma Pagent',1,9),(11404,40478,'Tough Looking Man',0,10),(11404,1824595,'Waiter',0,11),(11404,80369,'Trendy Mum',1,12),(11404,1087561,'Policeman',2,13),(11404,1824609,'Old Man',0,14),(16337,2778,'Lieutenant \'Lefty\' Enright',2,0),(16337,86923,'Vanita \'Stretch\' Brock',1,1),(16337,104014,'Drayton Sawyer, the Cook',2,2),(16337,27737,'\'Chop-Top\' Sawyer',0,3),(16337,422214,'Leatherface \'Bubba\' Sawyer',2,4),(16337,589733,'Grandpa Sawyer',0,5),(16337,194120,'Patrolman',0,6),(16337,180566,'Detective',2,7),(16337,236486,'Cut-Rite Manager',0,8),(16337,2851,'L.G. McPeters',0,9),(16337,218098,'Sports Anchorman',0,10),(16337,10051,'Man in Hotel Corridor',2,11),(11577,5563,'Sheriff Pat Garrett',2,0),(11577,10823,'William H. Bonney (Billy the Kid)',2,1),(11577,58423,'Sheriff Kip McKinney',2,2),(11577,4069,'Mrs. Baker',1,3),(11577,14001,'Lemuel',2,4),(11577,40433,'Chisum',2,5),(11577,4765,'Governor Wallace',2,6),(11577,1487,'Alias',2,7),(11577,1107,'Ollinger',2,8),(11577,8962,'Eno',2,9),(11577,41269,'Poe',2,10),(11577,3174,'Holly',2,11),(11577,2454,'J.W. Bell',2,12),(11577,84919,'Maria',0,13),(11577,49353,'Lewellen Howland',2,14),(11577,4965,'Alamosa Bill Kermit',2,15),(11577,8259,'Paco',2,16),(11577,544591,'Ida Garrett',1,17),(11577,8496,'Pete Maxwell',2,19),(11577,8262,'Black Harris',2,20),(11577,14253,'Sheriff Colin Baker',2,21),(11577,1270,'Charlie Bowdre',2,22),(11577,5048,'Luke',2,23),(11577,80135,'Ruthie Lee',1,24),(11577,64065,'Tom O\'Folliard',2,25),(11577,89582,'Mr. Horrell',2,26),(11577,31321,'Silva',2,27),(11577,31266,'Mrs. Horrell',1,28),(11577,32786,'Norris',2,29),(11577,24324,'Denver',0,30),(11577,67064,'Rupert',2,31),(11577,3339,'Cody',2,32),(11577,1013613,'Beaver',2,33),(11577,6463,'Josh',0,34),(11577,6905,'Deputy (uncredited)',1,35),(11577,7767,'Will (uncredited)',0,36),(11577,553157,'(uncredited)',1,37),(10914,38581,'Chrissie',1,0),(10914,7002,'Ray Dokes',2,1),(10914,30613,'Pete Culpepper',2,2),(10914,52969,'Etta Parr',1,3),(10914,6804,'Jim Burns',2,4),(10914,8874,'Jackson Jones',2,5),(10822,1231,'Barbara Baekeland',1,0),(10822,8435,'Brooks Baekeland',2,1),(10822,37632,'Tony Baekeland',2,2),(10822,3623,'Blanca',1,3),(10822,12791,'Sam Green',2,4),(10822,77287,'Nini Daly',1,5),(10822,933278,'Aschwin Lippe',0,6),(10822,1034509,'Midge Vanden Heuvel',0,7),(10822,1322269,'Joost Vanden Heuvel',0,8),(10822,103119,'Simone Lippe',1,9),(10822,133525,'Carlos Duru00e1n',0,10),(10822,19907,'Pilar Duru00e1n',1,11),(10822,24496,'Jean Pierre Souvestre',2,12),(10822,50994,'Black Jake Martu00ednez',2,13),(10822,1289925,'Lorna Moffat',1,14),(10844,1372,'Nick Harvey',2,0),(10844,33310,'Julie-Anne Bryson',1,1),(10844,67121,'Garry Holden',0,2),(10844,67119,'David Gray',2,3),(10844,67120,'Helen Dickson',1,4),(10844,67122,'Paul Knox',0,5),(10844,67123,'Stu Guthrie',2,6),(10844,67124,'Chiquita Holden',0,7),(10844,67125,'Stacey Percy',0,8),(10844,67126,'Jimmy Dickson',0,9),(10844,67129,'Bank Manager',0,10),(10844,67128,'Dion Percy',0,11),(10844,67127,'Ross Percy',0,12),(10844,67130,'AOS / ATS Officer',0,13),(10844,11336,'Garry Holden\'s Mother',1,14),(10844,67131,'Brian Wilson',0,15),(10844,67134,'Rene Aarsen',0,16),(10844,67135,'Leo Wilson',0,17),(10844,67132,'Dorothy Crimp',0,18),(10844,67133,'Aleki Tali',0,19),(10844,29082,'Chris Cole',0,20),(10844,1086827,'Darren Buist',0,21),(10844,212730,'Darren Gibbs',2,22),(13342,2228,'Jeff Spicoli',2,0),(13342,10431,'Stacy Hamilton',1,1),(13342,777,'Brad Hamilton',2,2),(13342,16171,'Linda Barrett',1,3),(13342,118946,'Mark \'Rat\' Ratner',2,4),(13342,61217,'Mike Damone',2,5),(13342,4093,'Mr. Hand',2,6),(13342,9997,'Arnold',2,7),(13342,3418,'Mr. Vargas',2,8),(13342,13656,'Lisa',1,9),(13342,144304,'Ron Johnson',0,10),(13342,2178,'Charles Jefferson',2,11),(13342,83151,'Cindy',1,12),(13342,1652467,'Dennis Taylor',2,13),(13342,1232231,'Pat Bernardo',1,14),(13342,7036,'Stoner Bud',2,15),(13342,785,'Robber',2,16),(13342,2963,'Brad\'s Bud',2,17),(13342,1888068,'Curtis Spicoli',0,18),(13342,1527199,'Greg',2,19),(13342,11085,'Stoner Bud',2,20),(13342,142622,'Dina Phillips',1,21),(13342,769,'Dr. Miller',2,22),(13342,102709,'Desmond',0,23),(13342,22302,'Pirate King',2,24),(13342,37043,'Pizza Guy',2,25),(13342,1504128,'Perry\'s Pizza Waitress',0,26),(13342,63214,'Businessman',2,27),(13342,11656,'Beautiful Girl in Car',1,28),(13342,52144,'Mrs. Vargas',1,29),(13342,101662,'Playmate',1,30),(13342,1217468,'Playmate',1,31),(13342,119868,'Angry Twin',0,32),(13342,67569,'Angry Twin',0,33),(10339,8487,'Captain Ahab',2,0),(10339,5403,'Ishmael',2,1),(10339,29655,'Starbuck',2,2),(10339,11130,'Captain Boomer',2,3),(10339,19463,'Stubbs',2,4),(10339,8239,'The Manxman',2,5),(10339,91971,'Queequeg',2,6),(10339,90643,'Peleg',2,7),(10339,40,'Father Mapple',2,8),(10339,6593,'Barman',2,9),(27686,82170,'Margy Frake',1,0),(27686,13578,'Pat Gilbert',2,1),(27686,152713,'Wayne Frake',2,2),(27686,41748,'Emily Edwards',1,3),(27686,83474,'Abel Frake',2,4),(27686,20366,'Melissa Frake',1,5),(27686,14968,'Hippenstahl',2,6),(27686,74875,'McGee',0,7),(27686,94929,'Dave Miller',2,8),(27686,4073,'Barker',2,9),(27686,218828,'Eleanor',1,10),(27686,96716,'Tommy Thomas',0,11),(27686,33032,'Harry Ware',2,12),(17139,13514,'Dreverhaven',2,0),(17139,45754,'Katadreuffe',2,1),(17139,79448,'Joba',1,2),(17139,143010,'Lorna Te George',0,3),(12079,17881,'Ross',2,0),(12079,2295,'The Cook',2,1),(12079,328,'Nikki',1,2),(12079,5723,'Spider Mike',2,3),(12079,71335,'April Love',1,4),(12079,11663,'Frisbee',2,5),(12079,8211,'Cookie',1,6),(12079,21315,'The Man',2,7),(12079,84521,'Giggles',1,8),(12079,92866,'Escort',1,9),(12079,61852,'Angel',2,10),(12079,6281,'Amy',0,11),(12079,15760,'Fat Boy',2,12),(12079,102,'Neighbor',1,13),(12079,16476,'Dr. K',2,14),(12079,235434,'Pornclerk',0,15),(12079,53,'Mullet Cop',2,16),(12079,19578,'Moustache Cop',1,17),(12079,64809,'Doctor',2,18),(12079,814,'Emcee',2,19),(12079,1757534,'Bartender',0,20),(13807,66717,'Blaze',2,0),(13807,63584,'Tai',2,1),(13807,20519,'Boss Fay',2,2),(13807,72731,'Wo',0,3),(13807,64496,'Sergeant Chen (as Richie Jen)',2,4),(13807,12466,'Cat',0,5),(13807,78429,'Jin',1,6),(13807,25251,'Fat (as Lam Suet)',2,7),(13807,83820,'Boss Keung',2,8),(13807,72732,'Jeff',2,9),(13807,26778,'Hooker',0,10),(13807,1132614,'Uncle Fortune',0,11),(13807,63582,'Sergeant Shan',0,12),(13807,1132615,'Underground Doctor',0,13),(13807,237122,'Sergeant Shan\'s driver',0,14),(12093,77667,'Lilja',1,0),(12093,71219,'Wolodja',2,1),(12093,71220,'Lilja\'s mother',0,2),(12093,71221,'Aunt Anna',0,3),(12093,71222,'Natasha',0,4),(10970,14639,'Mel Funn',2,0),(10970,29802,'Marty Eggs',2,1),(10970,6844,'Dom Bell',2,2),(10970,8902,'Studio Chief',2,3),(10970,14833,'Engulf',2,4),(10970,72680,'Devour',2,5),(10970,40389,'Vilma Kaplan',1,6),(10970,80626,'Pregnant Lady',0,7),(10970,152711,'Newsvendor',0,8),(10970,13821,'Maitre d\'',2,9),(10970,88450,'Studio Gate Guard',2,10),(10970,70172,'Intensive Care Nurse',1,11),(10970,102198,'Studio Chief\'s Secretary',1,12),(10970,16475,'Himself',2,13),(10970,3085,'Himself',2,14),(10970,66776,'Herself',1,15),(10970,10774,'Herself',1,16),(10970,39690,'Himself',2,17),(10970,3636,'Himself',2,18),(17663,45446,'Anne Shirley',1,0),(17663,10559,'Marilla Cuthbert',1,1),(17663,5605,'Matthew Cuthbert',2,2),(17663,93643,'Rachel Lynde',1,3),(17663,93644,'Miss Muriel Stacy',1,4),(17663,93645,'Diana Barry',0,5),(17663,93646,'Gilbert Blythe',2,6),(17663,79400,'Aunt Josephine',1,7),(11826,5538,'Gary u201eGalu201c Dove',2,0),(11826,2282,'Don Logan',2,1),(11826,6972,'Teddy Bass',2,2),(11826,70633,'Deedee Dove',1,3),(11826,1292,'Harry',2,4),(11826,1213726,'Aitch',0,5),(11826,1225091,'Jackie',0,6),(11826,229243,'Enrique',0,7),(29920,92404,'Johan \'JW\' Westlund',2,0),(29920,1104462,'Jorge',2,1),(29920,125740,'Mrado',0,2),(29920,125741,'Sophie',0,3),(29920,125742,'Abdulkarim',2,4),(29920,3397,'Radovan',0,6),(29920,57012,'Mahmoud',2,7),(29920,1268611,'Nippe',0,8),(29920,125749,'Lovisa',0,9),(29920,639107,'Carlos',0,10),(29920,1754061,'Paola',0,11),(29920,1780644,'Fahdi',2,12),(26379,35780,'Auro',2,0),(26379,35793,'Amol Arte',0,1),(26379,35068,'Vidya Arte',1,2),(26379,85033,'Mr. Arte',2,3),(26379,96343,'Bum(Vidya\'s mother)',0,4),(26379,96346,'Pratik Katare',0,5),(26379,35743,'Narrator',1,6),(34069,64017,'Samuel Decker',2,0),(34069,114550,'Laura Portmann',0,1),(34069,5499,'Anna Lindbergh',1,2),(34069,54023,'Miyuki Yoshida',1,3),(34069,114548,'Claudio Vespucci',0,4),(34069,5234,'Igor Prokoff',2,5),(34069,32368,'Pierre Lacroix',2,6),(34069,114551,'Little Girl',0,7),(34069,114549,'Arianne Portmann',0,8),(34069,41205,'Klaus Bruckner',2,9),(10947,29222,'Troy Bolton',2,0),(10947,67599,'Gabriella Montez',1,1),(10947,67600,'Sharpay Evans',1,2),(10947,67601,'Ryan Evans',2,3),(10947,67602,'Chad Danforth',2,4),(10947,180279,'Taylor McKessie',1,5),(10947,94146,'Jack Bolton',2,6),(10947,19262,'Ms. Darbus',1,7),(10947,77196,'Zeke Baylor',2,8),(10947,84952,'Kelsi Nielsen',1,9),(10947,200823,'Jason Cross',0,10),(10947,56121,'Principal Matsui',0,11),(10947,964908,'Martha Cox',1,12),(10947,92619,'Troy Bolton (singing voice)',2,13),(11386,9029,'Fergus',2,0),(11386,228173,'Dil',2,1),(11386,8436,'Jude',1,2),(11386,2178,'Jody',2,3),(11386,42566,'Maguire',2,4),(11386,388,'Col',2,5),(11386,53916,'Dave',2,6),(11386,162398,'Deveroux',2,7),(11386,188478,'Tommy',2,8),(11386,1393548,'Tinker',0,9),(11386,1234613,'Eddie',0,10),(11386,1393549,'Bar Performer 1',0,13),(11386,1393550,'Bar Performer 2',0,14),(11386,111846,'Judge',2,15),(11386,1393551,'Security Man 1',0,16),(11386,1393552,'Security Man 2',0,17),(11386,1593857,'Franknum',0,18),(11386,156381,'Jane',1,19),(10246,64221,'Pee Wee',0,0),(10246,64222,'Billy',2,1),(10246,64223,'Tommy',0,2),(10246,64224,'Tim',0,3),(10246,86994,'Wendy',1,4),(10246,2109,'Honeywell',1,5),(10246,3010,'Meat',2,6),(10246,41256,'Ted Jarvis',2,7),(10246,62033,'Coach Warren',0,8),(10246,40168,'Cherry Forever',1,9),(10246,91842,'Balbricker',0,10),(10246,73234,'Sheriff Wallace',2,11),(10246,174653,'Micky',2,12),(10246,167367,'Brian Schwartz',2,13),(10246,32389,'Coach Brackett',2,14),(10246,45289,'Cavanaugh',0,15),(10246,105060,'Porky',0,16),(10246,4976,'Mr. Carter',2,17),(10246,1339191,'Coach Goodenough',0,18),(10246,187670,'Conklin',0,19),(10246,86313,'Frank',0,20),(10246,1750452,'Steve',0,21),(10246,105627,'Jackie',0,22),(10246,1765371,'Cop no. 1',0,23),(10246,1765372,'Cop no. 2',0,24),(10246,139360,'Bartender',0,25),(10246,242678,'Ted\'s Partner',0,26),(10246,1765373,'Bouncer no. 2',0,27),(10246,1765374,'Deputy no. 2',0,28),(10246,1476391,'Mrs. Morris',0,29),(10246,83096,'Mindy',1,30),(10246,1765375,'Stripper',0,31),(10246,1765376,'Miss Walker',0,32),(10246,1765377,'Waitress',0,33),(10246,1052226,'Mule Train Driver',0,34),(10246,1765378,'Deputy no. 1',0,35),(10246,1765379,'Bouncer no. 1',0,36),(10246,1765380,'Bouncer no. 3',0,37),(10246,1765381,'Ginny',0,38),(10246,1765383,'Girl in Shower',0,39),(10246,1765384,'Markin Highpockets',0,40),(10246,1192320,'Radio Announcer',0,41),(10246,163459,'Cheerleader (uncredited)',0,42),(10246,12701,'Piano Player at Porky\'s (uncredited)',2,43),(29426,99183,'Sarge Nicotine Crockett',2,0),(29426,6074,'Patrick O\'Flynn',0,1),(29426,168610,'Janet / Jane O\'Flynn',0,2),(29426,90498,'Boy',2,3),(29426,44103,'Seamus Muldoon',2,4),(29426,51037,'Tomboy',1,5),(29426,224309,'Francisco',0,6),(29426,2320,'James',2,7),(10331,97912,'Ben',2,0),(10331,97913,'Barbra',1,1),(10331,97914,'Harry Cooper',2,2),(10331,97915,'Helen Cooper',1,3),(10331,97916,'Tom',2,4),(10331,97917,'Judy',1,5),(10331,97918,'Karen Cooper',0,6),(10331,97919,'Newscaster / Zombie',0,7),(10331,97920,'Cemetery Zombie',0,8),(10331,97921,'Field Reporter',0,9),(10331,14999,'Washington Reporter',2,10),(10331,64833,'Johnny',2,11),(10331,64831,'Washington Military Reporter',2,12),(27191,97182,'Holly',1,0),(27191,35320,'The Great Sebastian',2,1),(27191,10017,'Brad Braden',2,2),(27191,83400,'Phyllis',1,3),(27191,77081,'Angel',1,4),(27191,51310,'FBI Agent Gregory',2,5),(27191,97657,'Klaus',2,6),(27191,6937,'Mr. Henderson',2,7),(27191,854,'Buttons',2,8),(27191,142439,'Himself',0,9),(27191,130494,'Birdie',1,10),(27191,34625,'Doctor',2,11),(27191,1158826,'Buttons\' mother',0,12),(27191,3346,'Sam\'s Wife (uncredited)',2,14),(27191,1158827,'Himself',0,15),(27191,1158828,'Himself (clown)',0,16),(27191,20144,'Spectator (uncredited)',1,17),(27191,78305,'Harry',2,18),(27191,2673,'Assistant Manager',0,19),(27191,15983,'Little Girl Spectator (uncredited)',1,20),(27191,50306,'Little Boy Spectator (uncredited)',2,21),(27191,1016571,'Canvas Man (uncredited)',2,22),(27191,589728,'Spectator (uncredited)',0,23),(27191,114402,'Spectator (uncredited)',0,24),(27191,130491,'Hopalong Cassidy (uncredited)',2,25),(27191,90369,'Dave (uncredited)',2,26),(27191,24937,'Spectator (uncredited)',2,27),(27191,8636,'Narrator (voice) (uncredited)',2,28),(27191,7210,'Spectator (uncredited)',1,29),(27191,82388,'Spectator (uncredited)',2,30),(27191,243805,'Noel (uncredited)',1,31),(27191,8254,'Midway Barker at End (uncredited)',2,32),(27191,88728,'Circus Barker (uncredited)',2,33),(13408,2041,'Sean',2,0),(13408,19767,'Dee Loc',2,1),(13408,65134,'Slim',2,2),(13408,93615,'Antoinette',1,3),(13408,75638,'Dewayne',0,4),(13408,325,'Chris',2,5),(13408,8396,'Bear',2,6),(13408,83108,'Jimmy',2,7),(13408,944140,'Vickey',1,8),(10744,3905,'Bernie Lootz',2,0),(10744,7447,'Shelly Kaplow',2,1),(10744,49,'Natalie Belisario',1,2),(10744,52647,'Mikey',2,3),(10744,7004,'Buddy Stafford',2,4),(10744,13241,'Charlene',1,5),(10744,17402,'Larry Sokolov',2,6),(10744,54651,'Johnny Cappella',2,7),(10744,28033,'Nicky Fingers Bonnatto',2,8),(10744,22132,'Highway Officer',2,9),(10744,13420,'Doris',1,10),(10744,97798,'Lou',2,11),(10744,13644,'Tony',2,12),(11536,11492,'Gay Langland',2,0),(11536,3149,'Roslyn Taber',1,1),(11536,12151,'Perce Howland',2,2),(11536,7684,'Isabelle Steers',1,3),(11536,3265,'Guido',2,4),(11536,98465,'Fletcher\'s grandfather',2,5),(11536,34597,'Raymond Taber',2,6),(11536,47504,'Church lady collecting money in bar',1,7),(11536,974922,'Old Cowboy (uncredited)',2,8),(11536,6593,'Extra in Blackjack Scene (uncredited)',2,9),(18713,77761,'Himself',2,0),(18713,83480,'Kamal',2,1),(18713,1903,'',2,2),(18713,21282,'',2,3),(18713,47774,'',2,4),(18713,1465971,'',0,5),(18713,11484,'',1,6),(18713,1005,'',2,7),(18713,12208,'Band Manager',2,8),(11013,13548,'E. Edward Grey',2,0),(11013,1579,'Lee Holloway',1,1),(11013,4654,'Peter',2,2),(11013,21818,'Joan Holloway',1,3),(11013,230,'Burt Holloway',2,4),(11013,21412,'Lee\'s Sister',1,5),(11013,5274,'Dr. Twardon',0,6),(11013,156689,'Tricia O\'Connor',1,7),(11013,90609,'Jonathan',2,8),(19153,51975,'Herself',1,0),(10132,10866,'Barry Champlain',2,0),(10132,13420,'Ellen',1,1),(10132,25834,'Laura',1,2),(10132,11885,'Stu',2,3),(10132,7447,'Dan',2,4),(10132,59872,'Dietz',2,5),(10132,3711,'Denise',1,6),(16448,13524,'Corky St. Clair',2,0),(16448,26510,'Dr. Allan Pearl',2,1),(16448,20753,'Ron Albertson',2,2),(16448,11514,'Sheila Albertson',0,3),(16448,75463,'Steve Stark',2,4),(16448,1211,'Glenn Welsch',2,5),(16448,7489,'Libby Mae Brown',1,6),(16448,12438,'Lloyd Miller',2,7),(16448,27530,'Phil Burgess',2,8),(16448,212,'UFO Expert',2,9),(16448,15900,'UFO Abductee',2,10),(16448,75465,'Clifford Wooley',2,11),(16448,35598,'Johnny Savage',0,12),(16448,1535,'Red Savage',2,13),(16448,41243,'Roy Loomis',2,14),(16448,167212,'Gwen Fabin-Blunt',1,15),(15122,67711,'Seth Winnick',2,0),(15122,20751,'Chelsea Turner',0,1),(15122,77896,'Larry Garnett',2,2),(15122,77897,'Holly Garnett',1,3),(15122,19187,'Rebecca Melini / Juliette',1,4),(15122,13023,'Monica Harris',1,5),(15122,25311,'Walter Drooz',2,6),(15122,29930,'Amber',1,7),(14517,23587,'Helena',1,0),(14517,8541,'Valentine',2,1),(14517,47632,'Morris Campbell / Prime Minister',2,2),(14517,18022,'Joanne Campbell / Queen of Light / Queen of Shadows',1,3),(14517,43626,'Aunt Nan',1,4),(14517,11275,'Librarian',2,5),(14517,53519,'Cops 1-4',2,6),(14517,162414,'Gryphon',2,7),(14517,1451291,'Mrs. Bagwell',0,8),(14517,1111675,'Sphinx',0,9),(14517,1232361,'Small Hairy',2,10),(14517,1216370,'Future Fruit Lady',0,11),(14517,1643191,'Circus band - band leader and soprano sax',0,12),(27551,98188,'Kutchek',2,0),(27551,98189,'Gore',2,1),(27551,97878,'Kadar',2,2),(27551,121769,'Kara',1,3),(27551,560311,'Canary',1,4),(27551,1144863,'China',1,5),(27551,7073,'Dirtmaster',2,6),(27551,33807,'Jacko',0,7),(27551,1167895,'Ibar',2,8),(27551,592457,'Allura',1,9),(27551,1766486,'Young Kutchek',0,10),(27551,1766487,'Young Gore',0,11),(27551,1766488,'Fat Woman',0,12),(27551,50745,'Ghedo - Strongman',0,13),(27551,1026047,'Kadar\'s Man',0,14),(27551,1766489,'Kadar\'s Man',0,15),(27551,51743,'Kadar\'s Man',0,16),(27551,101324,'Bluto',2,17),(27551,119370,'Rider',2,18),(27551,1766490,'Young Kara',0,19),(27551,51742,'Kadar\'s Woman',1,20),(27551,1582402,'Kadar\'s Man',0,21),(27551,32679,'Jacko\'s Man',2,22),(27551,1170395,'Bones',0,23),(27551,1766493,'Pin the Dwarf',0,24),(27551,4661,'Greyshaft',0,25),(14293,76546,'Brad',0,0),(14293,9046,'Joe',2,1),(14293,522,'Nick',2,2),(14293,19975,'Danny',2,3),(14293,91389,'Johnny',0,4),(14293,389,'Tara',1,5),(14293,4690,'Uncle Mike',2,6),(15059,6104,'Adult Nic',2,0),(15059,9825,'English / Italian Twin',0,1),(15059,71570,'Flash Man',2,2),(15059,16240,'Luca',0,3),(15059,9015,'Susan',1,4),(15059,18022,'Susan\'s Mother',1,5),(15059,1244,'Nic, aged 16',2,6),(15059,1369,'Susan\'s Father',2,7),(15059,25258,'Blind Woman',1,8),(15059,77833,'Nic, aged 5',0,9),(15059,77834,'Mixed Race Girl',0,10),(15059,77835,'Wangi',0,11),(15059,77836,'Old Colonial Man',0,12),(15059,77837,'Adam',0,13),(15059,77838,'Eve',0,14),(25719,5346,'Dylan',2,0),(25719,56778,'Jez',2,1),(25719,3967,'Georgie',1,2),(25719,185426,'Jez\'s Teacher',1,3),(25719,1380112,'Samuel',0,4),(25719,1380113,'Antonia',0,5),(25719,1380114,'Jez - Age 8',0,6),(25719,18021,'Dylan\'s Headmistress',1,7),(25719,55908,'IRS Man',2,8),(25719,1800505,'Dylan, aged 8',0,9),(25719,125039,'Mr Greenaway',2,10),(25719,127164,'Mrs Ross',1,11),(25719,1800506,'Bank Clerk',0,12),(25719,1452763,'Geoff',0,13),(25719,202032,'Mr Ray',2,14),(25719,183191,'Mrs Ray',1,15),(25719,1557582,'Golfer 1',0,16),(25719,1462416,'Golfer 2',0,17),(25719,44635,'Floss',1,18),(25719,1221042,'Mrs Stratton-Luce',0,19),(25719,63611,'Mr Stratton-Luce',2,20),(25719,55688,'Mrs Cummins',1,21),(25719,12982,'Mr Gilzean',2,22),(25719,109874,'Roger',0,23),(25719,118617,'Mr Collyns',2,24),(25719,185999,'Magistrate',2,25),(25719,1214091,'Vicar',0,26),(25719,2302,'Bruiser',2,27),(25719,70419,'Crematorium Vicar',0,29),(25719,122923,'Horse Owner',2,30),(25719,57146,'Panfield, Jockey',0,31),(25719,1616303,'Horse Trainer',0,32),(25719,1413924,'Weighing in Official',2,33),(25719,1220092,'The Hon. Mrs Wescot',0,34),(25719,213794,'Prince Ahmed',0,35),(25719,1516528,'Friend of Lady Georgina',0,36),(25719,141250,'Prison Governor',0,37),(25719,1222341,'Crematorium Cleaning Lady',1,38),(27723,54470,'Florence \'Chicklet\' Forrest',1,0),(27723,71675,'Starcat',2,1),(27723,9273,'Marvel Ann',1,2),(27723,103374,'Captain Monica Stark',2,3),(27723,13638,'Kanaka',2,4),(27723,35598,'Lars / Larry',0,5),(27723,45391,'Mrs. Ruth Forrest',1,6),(27723,33676,'Rhonda',1,7),(27723,37059,'Counterman',2,8),(27723,166995,'Provoloney',0,9),(27723,149551,'Yo Yo',2,10),(20468,24264,'Crawford Mackenzie',2,0),(20468,33533,'Stig',2,1),(20468,1980,'Monique',1,2),(20468,10825,'Eamonn',2,3),(20468,42133,'Betty Fuego',1,4),(20468,28238,'Himself',2,5),(20468,83349,'Himself',2,6),(20468,104791,'Herself',1,7),(20468,181465,'Himself',1,8),(20468,3713,'Candy',1,9),(20468,173065,'Dianne Abbott',0,10),(29122,102977,'Colm',2,0),(29122,31713,'George',2,1),(29122,58016,'Bronagh',1,2),(29122,69465,'Gerty',1,3),(29122,17026,'Mrs. O\'Neill',1,4),(29122,9188,'Scalper',0,6),(29122,102980,'Mr. Black',0,7),(29122,17019,'Mickey',2,8),(34941,11155,'Neal Cassady',2,0),(34941,6384,'Harry',2,1),(34941,4174,'Joan',1,2),(34941,15370,'Cherry Mary',0,3),(34941,3490,'Ben',2,4),(34941,42746,'Lewis',2,5),(34941,10380,'Jerry',2,6),(34941,19838,'Lizzy',1,7),(34941,5148,'Rosie Trickle',1,8),(34941,20189,'Jeananne',1,9),(34941,69399,'Vicky',1,10),(34941,9048,'Cop #1',2,11),(10981,5892,'Dave',2,0),(10981,5894,'Andrew',2,1),(10981,13950,'Man In Suit',2,2),(10981,8791,'Sara',1,3),(14902,10775,'John Adams',0,0),(14902,79247,'Dr. Benjamin Franklin',2,1),(14902,18328,'Thomas Jefferson',2,2),(14902,10401,'Martha Jefferson',1,3),(14902,1480276,'John Dickinson (PA)',0,4),(14902,53085,'Edward Rutledge (SC)',2,5),(14902,1230012,'Stephen Hopkins (RI)',0,6),(14902,1752517,'Congressional President John Hancock (MA)',0,7),(14902,1752518,'Richard Henry Lee (VA)',0,8),(14902,6841,'Caesar Rodney (DE)',2,9),(14902,980027,'Col. Thomas McKean (DE)',2,10),(22301,88581,'Monte Rutledge',2,0),(22301,87480,'Roy Rutledge',2,1),(22301,82315,'Helen',1,2),(22301,88582,'Karl Armstedt',2,3),(22301,2931,'Baron Von Kranz',2,4),(22301,88583,'Lt. von Bruen',0,5),(22301,88584,'Baldy Maloney',0,6),(22301,88585,'Capt. Redfield',0,7),(22301,9093,'Baroness Von Kranz',1,8),(20065,11826,'Patti Petalson',1,0),(20065,17178,'Brian Callahan',2,1),(20065,12833,'Michael Murphy',2,2),(20065,23959,'Kate Scott',1,3),(20065,1117,'Gilmore',2,4),(20065,1217568,'Silent Movie Actor',0,5),(20065,52996,'Sassy Party-Goer',1,6),(20065,1527995,'Scare-a Sara',1,7),(20065,53755,'Bernadette',1,8),(20065,14892,'Murph\'s Hamptons fling',1,9),(20065,159828,'Mr. Sabatini',2,10),(20065,1251352,'Singer / Songwriter',0,11),(20065,60200,'Bookstore Representative',0,12),(20065,10825,'Chazz Coleman',2,14),(20065,78789,'Michael\'s Agent',2,15),(20065,31514,'Monroe - Real estate agent',2,16),(20065,1527996,'Top Cat',0,17),(10774,6450,'Diana Christensen',1,0),(10774,8252,'Max Schumacher',2,1),(10774,29903,'Howard Beale',2,2),(10774,3087,'Frank Hackett',2,3),(10774,66712,'Nelson Chaney',2,4),(10774,13726,'Arthur Jensen',2,5),(10774,10083,'Louise Schumacher',1,6),(10774,51549,'Harry Hunter',2,7),(10774,46099,'Edward George Ruddy',2,8),(10774,66713,'Great Ahmed Kahn',2,9),(10774,1909,'Barbara Schlesinger',1,10),(10774,192660,'Walter C. Amundsen',2,11),(10774,554628,'Joe Donnelly',0,12),(10774,949374,'Mary Ann Gifford',1,13),(10774,156603,'Laureen Hobbs',1,14),(10774,81481,'Bill Herron',0,15),(10774,41350,'Merrill Grant',2,16),(10774,99036,'Giannini',2,17),(10774,65019,'Robert McDonough',2,18),(10774,1026534,'Caroline Schumacher',1,19),(10774,13938,'Willie Stein',2,20),(10774,2714,'Network Lawyer at Khan\'s Place (uncredited)',2,21),(10774,1230012,'Sam Haywood',0,22),(29715,10017,'Major Amos Charles Dundee',2,0),(29715,194,'Captain Benjamin Tyreen',2,1),(29715,94550,'Lieutenant Graham',2,2),(29715,5563,'Samuel Potts',2,3),(29715,24808,'Trooper Tim Ryan',2,4),(29715,12776,'Teresa Santiago',1,5),(29715,10254,'Sergeant Gomez',2,6),(29715,2112,'Aesop',2,7),(29715,8255,'O.W. Hadley',2,8),(29715,8258,'Sergeant Chillum',2,9),(29715,1107,'Reverend Dahlstrom',2,10),(29715,14253,'Wiley',2,11),(29715,12158,'Captain Waller',2,12),(29715,50303,'Sierra Charriba',2,13),(25209,97182,'Annie Oakley',1,0),(25209,39601,'Frank Butler',2,1),(25209,4343,'Col. Buffalo Bill Cody',2,2),(25209,30686,'Chief Sitting Bull',2,3),(25209,30211,'Pawnee Bill',2,4),(25209,4966,'Charlie Davenport',2,5),(29262,10055,'Dona Maria/u00c1urea/Maria',1,0),(29262,20548,'Vasco de Su00e1',2,1),(29262,87335,'u00c1urea/Maria',1,2),(29262,5659,'Massu (1910-1919)',2,3),(29262,559713,'Luiz (1942)',2,4),(29262,1477292,'Massu (1942)',2,5),(29262,1126875,'Luiz (1919)',2,6),(29262,992626,'Chico do Sal',0,7),(29262,1171895,'Pai de Massu',0,8),(29262,1154984,'Cientista',2,9),(34769,57755,'Arthur Poppington / Defendor',2,0),(34769,52852,'Kat',1,1),(34769,13550,'Chuck Dooney',2,2),(34769,25540,'Dr. Park',1,3),(34769,47640,'Roger Fairbanks',2,4),(34769,50217,'Paul Carter',2,5),(34769,34915,'Wendy Carter',1,6),(34769,52969,'Dominique Ball',1,7),(34769,52703,'Radovan Kristic',2,8),(34769,76528,'Biker Cliff',2,9),(34769,44153,'Grandpa Henry',2,10),(34769,79405,'Mr. Debrofkowitz',0,11),(34769,1212960,'Poppington',1,12),(34769,61134,'Olga',1,13),(34769,1242148,'Judge Wilson',2,14),(34769,209537,'Constable Mike',2,15),(10634,9778,'Craig Jones',2,0),(10634,66,'Smokey',2,1),(10634,9781,'Debbie',1,2),(10634,8396,'Deebo',2,3),(10634,56902,'Mr. Jones',2,4),(10634,54800,'Mrs. Jones',1,5),(10634,9788,'Dana Jones',1,6),(10634,45245,'Joi',1,7),(10634,62066,'Big Worm',2,8),(10634,65134,'Red',2,9),(10634,19754,'Mr. Parker',2,10),(10634,83101,'Ezal',2,11),(10634,1897,'Pastor Clever',2,12),(10634,22122,'Kid #2',1,13),(10634,74613,'China',1,14),(10634,37932,'Black Man at Store',2,15),(10634,97781,'Red\'s Father',0,16),(10634,61981,'Craps Player',2,17),(16288,12950,'Ray Spruce',2,0),(16288,83400,'Martha Spruce',1,1),(16288,10475,'Annie Lansing',1,2),(16288,11161,'The Creep',2,3),(16288,55270,'The Hitchhiker',2,4),(16288,92903,'Ben Whitemoon',0,5),(16288,7497,'Sam Whitemoon',2,6),(16288,103855,'Fatso Gribbens',0,7),(16288,1280,'Andy Cavanaugh',2,8),(16288,107368,'Randy',0,9),(16288,4498,'Deke',0,10),(16288,107369,'Laverne',0,11),(16288,107370,'Rachel',1,12),(16288,107371,'Annie\'s Lover',2,13),(16288,3027,'Truck Driver',2,14),(23330,4765,'Cable Hogue',2,0),(23330,7631,'Hildy',1,1),(23330,2076,'Joshua',2,2),(23330,14253,'Ben Fairchild',2,2),(23330,8262,'Taggart',2,3),(23330,8260,'Bowen',2,4),(23330,1107,'Quittner',2,5),(23330,89527,'Cushing',2,6),(23330,89582,'Clete',2,7),(23330,137389,'Jensen',0,8),(23330,161438,'Claudia',0,9),(23330,3641,'Powell',2,10),(23330,7210,'Mrs. Jensen',1,11),(18900,9287,'Perry Smith',2,0),(18900,6914,'Richard \'Dick\' Hickcock',2,1),(18900,24367,'Alvin Dewey',2,2),(18900,11033,'Jensen',2,3),(18900,119485,'Harold Nye',2,4),(18900,9596,'Mr. Hickock',2,5),(18900,95666,'Roy Church',2,6),(18900,3262,'Clarence Duntz',2,7),(18900,8233,'Tex Smith',2,8),(18900,70990,'Prosecutor',2,9),(18900,16558,'Herbert Clutter',2,10),(18900,87687,'Bonnie Clutter',0,11),(18900,90529,'Nancy Clutter',1,12),(18900,19026,'Kenyon Clutter',2,13),(18900,3641,'Good Samaritan',2,14),(18900,1568902,'Young Reporter',0,15),(27029,1932,'Sister Luke',0,0),(27029,29903,'Dr. Fortunati',2,1),(27029,3672,'Mother Mathilde',1,2),(27029,29313,'Dr. Van Der Mal',0,3),(27029,68642,'Sister Margharita',1,4),(27029,10083,'Mother Christophe',1,5),(27029,10559,'Dangerous hospital patient',1,6),(27029,45465,'Rev. Mother Emmanuel',0,7),(27029,7667,'Sister William',1,8),(27029,39001,'Sister Eleanor',1,9),(27029,7642,'Mother Didyma',1,10),(27029,8493,'Mother Marcella',1,11),(27029,30706,'Dr. Goovaerts',0,12),(27029,533115,'Kalulu',2,13),(27029,1234836,'Simone',0,14),(27029,38999,'Chaplain',2,15),(27029,93163,'Father Vermeuhlen',2,16),(27029,33120,'Sister Marie',1,17),(27029,131691,'Sister Augustine',0,18),(27029,132600,'Sister Aurelie',1,19),(27029,595819,'Louise',0,20),(27029,352124,'Illunga',2,21),(27029,1538451,'Lisa',0,22),(27029,599473,'Jeanette Milonet (uncredited)',1,23),(27029,1482567,'Pascin (uncredited)',0,24),(27029,40165,'Sister Bernard (uncredited)',0,25),(27029,173020,'Pierre (uncredited)',0,26),(27029,299082,'Murderer of Sister Aurelie (uncredited)',2,27),(27029,232893,'(uncredited)',0,28),(27029,72676,'(uncredited)',0,29),(27029,543334,'(uncredited)',0,30),(27029,27187,'(uncredited)',0,31),(27029,18337,'(uncredited)',0,32),(26268,3636,'Lew Harper',2,0),(26268,7570,'Mrs. Sampson',1,1),(26268,2750,'Betty Fraley',1,2),(26268,65505,'Albert Graves',2,3),(26268,7302,'Susan Harper',1,4),(26268,5790,'Miranda Sampson',1,5),(26268,9208,'Allan Taggert',2,6),(26268,5255,'Dwight Troy',2,7),(26268,7632,'Fay Estabrook',1,8),(26268,14833,'Sheriff',2,9),(26268,12298,'Puddler',2,10),(26268,8260,'Claude',2,11),(26268,109945,'Deputy',0,12),(26268,105571,'Mrs. Kronberg (as Jacqueline de Wit)',1,13),(26268,130346,'Felix',0,14),(11363,12833,'Mickey Fitzpatrick',2,0),(11363,69298,'Francis Fitzpatrick',2,1),(11363,6941,'Heather Davis',1,2),(11363,4491,'Renee Donati Fitzpatrick',1,3),(11363,4251,'Mr. Fitzpatrick',2,4),(11363,21398,'Hope',1,5),(11363,41087,'Connie',1,6),(11363,2956,'Molly',1,7),(25376,69310,'Benjamu00edn Espu00f3sito',2,0),(25376,93647,'Irene Menu00e9ndez Hastings',1,1),(25376,93648,'Ricardo Morales',2,2),(25376,93649,'Isidoro Gu00f3mez',0,3),(25376,93650,'Pablo Sandoval',2,4),(25376,968350,'Liliana Coloto',1,5),(25376,968351,'Chica Piropo',0,6),(25376,968353,'Pinche Mariano',0,7),(25376,1016570,'Juez Fortuna Lacalle',0,8),(25376,1331799,'Ordu00f3u00f1ez',0,9),(25376,1241396,'Romano',0,10),(25376,1331800,'Pinche Tino',0,11),(25376,1331810,'Alejandra Sandoval',0,12),(25376,1331801,'Bu00e1ez - Inspector',0,13),(25376,1331802,'Agente Cardozo',0,14),(25376,557717,'Molinari',0,15),(25376,46861,'Sicora',0,16),(25376,1331803,'Guardia Comisaru00eda',0,17),(25376,1331804,'Jacinto Cu00e1ceres',0,18),(25376,1331805,'Juan Robles',0,19),(25376,1331806,'Escribano Andretta',2,20),(25376,1331807,'Borracho 1',0,21),(25376,1331808,'Borracho 2',0,22),(25376,138760,'Capataz',0,23),(25376,1331811,'Madre Gu00f3mez',0,24),(25376,1331812,'Viejo Letrina',0,25),(25376,1331813,'Custodio Interrogatorio',0,26),(25376,1331814,'Madre Irene',0,27),(25376,1331815,'Guardia Civil Ministerio Bienestar Social',0,28),(25376,1331816,'Margarita',0,29),(25376,1331817,'Matu00f3n',0,30),(22007,2155,'Alex',1,0),(22007,35981,'Willey',2,1),(22007,96790,'Claire',1,2),(22007,78659,'Todd',2,3),(22007,58794,'Coach Harris',2,4),(10615,38334,'Ireenie',1,0),(10615,65919,'Pootie Tang',2,1),(10615,65920,'Trucky',2,2),(10615,38951,'Dirty Dee',2,3),(10615,14060,'Dick Lecter',2,4),(10615,27102,'Biggie Shorty',0,5),(10615,2632,'JB / Radio DJ / Pootie\'s Father',2,6),(10615,65921,'Lacey',2,7),(10615,65922,'Stacy',0,8),(10615,61409,'Anchor Woman',1,9),(10615,65923,'Frank',2,10),(10615,65925,'Shakey',0,11),(10615,65924,'Sheriff',0,12),(10615,65928,'Froggy',2,13),(10615,65926,'Singing Lady',0,14),(10615,65927,'Singing Lady',0,15),(10615,28637,'Record Executive',2,16),(10615,40462,'Record Executive\'s Daughter',1,17),(10615,65930,'Little Pootie',0,18),(10615,65929,'Solo Girl Singer',0,19),(14256,11664,'Reese Holden',1,0),(14256,23659,'Corbit',2,1),(14256,228,'Don Holden',2,2),(14256,23882,'Lori Lansky',1,3),(14256,23496,'Shelly',1,4),(14256,60118,'Leontes',2,5),(14256,77013,'Deirdre',1,6),(14256,204249,'Ruth',1,7),(14256,424,'Ray',0,8),(14256,58543,'Bartender',2,9),(14256,271352,'Mary',0,10),(14256,8350,'Brian',2,11),(14256,6165,'Dean',2,12),(14256,32905,'Female MC',1,13),(14256,87070,'Ben',2,14),(20055,27755,'Jamie',1,0),(20055,18041,'Voice / Alek',2,1),(20055,19225,'Kevin',2,2),(20055,2506,'Falco',1,3),(20055,1167915,'Michael (as Connor Levins)',0,4),(20055,102741,'Shuffle / Rathe',2,5),(20055,158390,'Young Henchman',2,7),(20055,1457264,'Officer Gene',0,8),(20055,10869,'Chase',2,9),(12535,14639,'Dr. Richard H. Thorndyke',2,0),(12535,29803,'Victoria Brisbane',1,1),(12535,9599,'Nurse Charlotte Diesel',1,2),(12535,13640,'Dr. Charles Montague',2,3),(12535,72680,'Brophy',2,4),(12535,27517,'Professor Lilloman',2,5),(12535,14671,'Dr. Philip Wentworth',2,6),(12535,62590,'The Desk Clerk',2,7),(12535,168211,'Cocker Spaniel',2,8),(12535,47845,'Zachary Cartwright',2,9),(12535,67674,'Killer',0,10),(12535,8246,'Bellboy',2,11),(12535,29364,'Customer',0,12),(13973,6807,'Victor Mancini',2,0),(13973,5657,'Ida J. Mancini',1,1),(13973,9015,'Paige Marshall',1,2),(13973,15376,'Denny',2,3),(13973,9048,'Lord High Charlie',2,4),(13973,11671,'Ursula',1,5),(13973,94098,'Cherry Daiquiri / Beth',1,6),(13973,51297,'Young Victor',2,7),(13973,59882,'Nico',1,8),(13973,91849,'Eva Muller',1,9),(13973,6748,'Phil',2,10),(13973,26716,'Internet Date / Gwen',1,11),(13973,98215,'Detective Ryan',2,12),(13973,55276,'Edwin',2,13),(13973,59172,'Edwin\'s Wife',1,14),(13973,19208,'Detective Foushee',2,15),(13973,17490,'Detective Palmer',2,16),(13973,17186,'Detective Dorfman',1,17),(13973,92558,'Sister Angela',0,18),(13973,11484,'Waitress',1,19),(13973,7468,'Passenger (uncredited)',0,20),(13973,36549,'Cute Teacher',1,21),(11129,42604,'Jip',2,0),(11129,41042,'Moff',2,1),(11129,68284,'Lulu',1,2),(11129,30316,'Koop',2,3),(11129,68286,'Nina',1,4),(11129,1412369,'Moff\'s Father',0,5),(11129,117352,'Reality (voice)',1,6),(11129,52890,'Andy',2,7),(11129,7062,'Felix',2,8),(13551,328,'Krista',1,0),(13551,3051,'Arden',1,1),(13551,9827,'Leah',1,2),(13551,16851,'Tarlow',2,3),(13551,17051,'Derek',2,4),(13551,52374,'Leah\'s Father',2,5),(13551,4726,'Melora',1,6),(13551,6721,'Arden\'s Mother',1,7),(13551,1771,'Rudy',2,8),(13551,2453,'Beverley, Leah\'s Mother',1,9),(13551,11703,'Rosetta',1,10),(13551,54782,'Ruth',1,14),(13551,12538,'Carl',2,15),(12586,16859,'Nina',1,0),(12586,7353,'Mother',1,1),(12586,72984,'Celia',1,2),(12586,59743,'Father',2,3),(12586,72983,'Manny',2,4),(12586,111631,'Bella',1,5),(12586,34540,'Angry Driver',2,6),(12586,50466,'David',2,7),(12586,72986,'Johannes',2,8),(12586,72985,'Eduardo',2,9),(12586,34066,'Frannie',1,10),(12586,72987,'Bodega Clerk',0,11),(12586,72990,'Veronica',1,12),(12586,72989,'Father on Beach',0,13),(12586,72988,'Pepito',2,14),(12586,19495,'Loochi',1,15),(12586,28025,'Homeless Man',0,16),(12586,72993,'Helen',0,17),(12586,72994,'Kevin',2,18),(12586,72992,'Pieter',0,19),(12586,72968,'Jose',0,20),(12586,118397,'Pedestrian',0,21),(11564,64457,'Andrew Norris',0,0),(11564,69889,'Diane Norris',0,1),(11564,44797,'Peter Stegman',0,2),(11564,521,'Arthur',2,3),(11564,7505,'Terry Corrigan',2,4),(11564,158489,'Drugstore',2,5),(11564,133799,'Barnyard',2,6),(11564,28246,'Patsy',1,7),(11564,1115101,'Fallon',0,8),(11564,36172,'Detective Stewiski',2,9),(11564,1104673,'Deneen',1,10),(11564,44153,'Principal Morganthau',2,11),(11564,944624,'Rejack',2,12),(11564,1115102,'Leroy',0,13),(11564,1115103,'Jimmy',0,14),(11697,4165,'Tom Doniphon',2,0),(11697,854,'Ransom Stoddard',2,1),(11697,7303,'Hallie Stoddard',1,2),(11697,18391,'Liberty Valance',2,3),(11697,8254,'Dutton Peabody',2,4),(11697,176543,'Doc Willoughby',2,5),(11697,8516,'Maj. Cassius Starbuckle',2,6),(11697,7520,'Nora Ericson',1,7),(11697,14966,'Marshal Link Appleyard',2,8),(11697,4119,'Peter Ericson',2,9),(11697,83149,'Jason Tully - Conductor',2,10),(11697,2098,'Maxwell Scott',2,11),(11697,4963,'Pompey',2,12),(11697,6462,'Amos Carruthers',2,13),(11697,8260,'Floyd',2,14),(11697,4078,'Reese',2,15),(11697,106506,'Handy Strong',2,16),(11697,8520,'Herbert Carruthers',2,17),(11697,98450,'Mayor Winder',2,19),(11697,117477,'Charlie Hasbrouck - Reporter for \'The Star\'',0,20),(11697,1077251,'Townsman (uncredited)',0,21),(11697,1600055,'Townsman (uncredited)',0,22),(11697,1467232,'Townsman (uncredited)',0,23),(11697,1208018,'Townsman (uncredited)',2,24),(11697,1600058,'Townsman (uncredited)',0,25),(11697,1421080,'Townsman (uncredited)',0,26),(11697,1543059,'Townsman (uncredited)',2,27),(11697,1469572,'Townsman (uncredited)',2,28),(11697,1547818,'Townsman (uncredited)',2,29),(11697,78894,'Townsman (uncredited)',2,30),(11697,170562,'Townsman (uncredited)',2,31),(11697,1317628,'Townsman (uncredited)',2,32),(11697,1600059,'Townsman (uncredited)',0,33),(11697,1333746,'Townsman (uncredited)',0,34),(11697,1244482,'Townsman (uncredited)',0,35),(11697,1422281,'Townsman (uncredited)',0,36),(11697,1289627,'Townsman (uncredited)',0,37),(11697,1547827,'Townsman (uncredited)',0,38),(11697,120178,'Townsman (uncredited)',2,39),(11697,975598,'Townsman (uncredited)',2,40),(11697,141070,'Townswoman (uncredited)',1,41),(11697,135394,'Townswoman (uncredited)',0,42),(11697,109777,'Townswoman (uncredited)',1,43),(11697,1196077,'Townswoman (uncredited)',1,44),(11697,976857,'Henchman (uncredited)',2,45),(11697,114232,'Henchman (uncredited)',0,46),(11697,50310,'Henchman (uncredited)',0,47),(11697,209585,'Henchman (uncredited)',2,48),(11697,27164,'Gambler (uncredited)',0,49),(11697,32434,'Gambler (uncredited)',2,50),(11697,1404180,'Musician (uncredited)',0,51),(11697,1600501,'Statehood Audience Member (uncredited)',0,52),(11697,34187,'Statehood Audience Member (uncredited)',2,53),(11697,1216356,'Statehood Audience Member (uncredited)',2,54),(11697,1507184,'Statehood Audience Member (uncredited)',2,55),(11697,1600506,'Statehood Audience Member (uncredited)',0,56),(11697,119542,'Statehood Audience Member (uncredited)',2,57),(11697,1581072,'Statehood Audience Member (uncredited)',2,58),(11697,1014834,'Statehood Audience Member (uncredited)',2,59),(11697,85778,'Statehood Audience Member (uncredited)',2,60),(11697,32573,'Statehood Audience Member (uncredited)',0,61),(11697,1364421,'Statehood Audience Member (uncredited)',2,62),(11697,121068,'Statehood Audience Member (uncredited)',0,63),(11697,1353645,'Statehood Council Member (uncredited)',0,64),(11697,1371322,'Statehood Council Member (uncredited)',0,65),(11697,114564,'Kaintuck (uncredited)',2,66),(11697,152706,'Cantina Bartender (uncredited)',0,67),(11697,975692,'Jack - Bartender (uncredited)',0,68),(11697,1543341,'Bartender (uncredited)',0,69),(11697,347770,'Buck Langhorn (uncredited)',2,70),(11697,1187947,'Shotgun (uncredited)',0,71),(11697,89938,'Clute Dumfries (uncredited)',0,72),(11697,1471682,'Barfly (uncredited)',2,73),(11697,138461,'Barfly (uncredited)',2,74),(11697,1264978,'Barfly (uncredited)',0,75),(11697,1600511,'Drummer (uncredited)',0,76),(11697,1064925,'Drummer (uncredited)',2,77),(11697,1041747,'Party Member at Convention (uncredited)',0,78),(11697,88460,'Mrs. Prescott - Widow in Stage Holdup (uncredited)',1,79),(11697,8245,'Highpockets (uncredited)',0,80),(11697,168043,'Cowboy on Pinto Pony (uncredited)',2,81),(11697,1003623,'Cowboy (uncredited)',0,82),(11697,190776,'Roughrider (uncredited)',2,83),(11697,12426,'Election Council President (uncredited)',0,84),(11697,1624551,'Townsman (uncredited)',2,85),(22051,12791,'Adam Raki',2,0),(22051,9827,'Beth Buchwald',1,1),(22051,8212,'Marty Buchwald',2,2),(22051,27563,'Rebecca Buchwald',1,3),(22051,13936,'Harlan',2,4),(22051,95975,'Sam Klieber',2,5),(22051,16181,'Lyra',1,6),(22051,61607,'Mr. Wardlow',2,7),(22051,142261,'Judge',2,8),(22051,142262,'Williams',0,9),(22051,60205,'Beranbaum',2,10),(22051,142263,'Michael',0,11),(22051,59543,'Carol',1,12),(22051,164099,'Jen',0,13),(22051,121757,'Robin',1,14),(22051,204880,'Bryan',2,15),(22051,203739,'Scottie',0,16),(22051,1634913,'Kelli',1,17),(22051,143236,'Rom',0,18),(22051,1634919,'Bruce',2,19),(22051,1634920,'Child',2,20),(22051,18282,'Teacher Assistant',1,21),(22051,1634923,'Cop',2,22),(22051,1367255,'Mr. Garland (Tour Leader)',2,23),(10070,9296,'Bozo',2,0),(10070,9290,'Coach',2,1),(10070,43778,'Heroine',1,2),(10070,52860,'Beer Guy',2,3),(10070,19302,'Edgy Cat',2,4),(10070,21858,'Tuffy',1,5),(10070,33430,'Honey Pie',1,6),(10070,62816,'Hot Wheels',2,7),(10070,62019,'Bartender',2,8),(10070,58115,'Hero',2,9),(10070,62817,'Vet',2,10),(10070,62818,'Drunk Girl',0,11),(10070,62819,'Harley Mom',0,12),(10070,62820,'Charlie',0,13),(10070,62821,'Cody',2,14),(10070,12543,'Grandma',1,16),(10070,11804,'Boss Man',2,17),(10070,62823,'Finger Girl',0,18),(10070,62824,'Mama Beast',2,19),(10070,23493,'Papa Beast',2,20),(23618,82587,'Himself',2,0),(23618,85931,'Himself',2,1),(23618,5726,'Himself',2,2),(23618,1897,'Himself',2,3),(10162,2481,'Jackie O\'Shea',2,0),(10162,1282,'Michael O\'Sullivan',2,1),(10162,58068,'Annie O\'Shea',1,2),(10162,42571,'Maggie O\'Toole',1,3),(10162,147054,'Jim Kelly',2,4),(10162,34715,'Pig Finn',2,5),(10162,1609635,'Narrator (voice)',0,6),(10162,52829,'Lotto Observer',0,7),(10162,1609636,'Mrs. Kennedy',0,8),(10162,1609637,'Maurice O\'Toole',0,9),(10162,58503,'Brendy O\'Toole',2,10),(10162,1609638,'Dennis Fitzgerald',0,11),(10162,101023,'Pat Mulligan',2,12),(10162,1609639,'Lizzy Quinn',0,13),(10162,1609640,'Kitty',0,14),(10162,1609641,'Father Patrick',0,15),(10162,188452,'Ned Devine',0,16),(10162,1609642,'Tom Toomey',0,17),(10162,1609643,'Rennie',0,18),(10162,1609644,'Dicey Riley',0,19),(10162,1609645,'The Whistler',0,20),(10162,1557582,'Father Mulligan',0,21),(10162,1609646,'Villager of Tullymore',0,22),(10162,1609647,'Villager of Tullymore',0,23),(10162,1609648,'Villager of Tullymore',0,24),(10162,1609649,'Villager of Tullymore',0,25),(10162,1609650,'Villager of Tullymore',0,26),(10162,1609651,'Villager of Tullymore',0,27),(10162,1609652,'Villager of Tullymore',0,28),(10162,1609653,'Villager of Tullymore',0,29),(10162,1609654,'Villager of Tullymore',0,30),(10162,1609655,'Villager of Tullymore',0,31),(10162,1609656,'Villager of Tullymore',0,32),(10162,1609657,'Villager of Tullymore',0,33),(10162,152491,'Villager of Tullymore',0,34),(10162,1609658,'Villager of Tullymore',0,35),(10162,1609659,'Villager of Tullymore',0,36),(10162,1609660,'Villager of Tullymore',0,37),(10162,1609661,'Villager of Tullymore',0,38),(10162,1609662,'Villager of Tullymore',0,39),(10162,1609663,'Villager of Tullymore',0,40),(10162,1609664,'Villager of Tullymore',0,41),(10162,1609665,'Villager of Tullymore',0,42),(10162,1609666,'Villager of Tullymore',0,43),(10162,1609667,'Villager of Tullymore',0,44),(10162,1609668,'Villager of Tullymore',0,45),(10162,1609669,'Villager of Tullymore',0,46),(10162,1609670,'Villager of Tullymore',0,47),(10162,1609671,'Villager of Tullymore',0,48),(10162,1609672,'Villager of Tullymore',0,49),(10162,1609673,'Villager of Tullymore',0,50),(10162,1609674,'Villager of Tullymore',0,51),(10162,1609675,'Villager of Tullymore',0,52),(10162,1609676,'Villager of Tullymore',0,53),(10162,1609677,'Villager of Tullymore',0,54),(10162,1609678,'Villager of Tullymore',0,55),(10014,5139,'Freddy Krueger',2,0),(10014,62018,'Jesse Walsh',0,1),(10014,55958,'Lisa Webber',1,2),(10014,52306,'Ron Grady',2,3),(10014,62019,'Ken Walsh',2,4),(10014,3382,'Cheryl Walsh',1,5),(10014,3041,'Coach Schneider',2,6),(10014,197303,'Mrs. Webber',0,7),(10014,58494,'Mr. Webber',2,8),(10014,156925,'Kerry',1,9),(10014,52146,'Biology Teacher',0,10),(10014,102716,'Angela Walsh',0,11),(10014,90198,'Mr. Grady',2,12),(10014,553731,'Mrs. Grady',0,13),(10014,158696,'Teacher',0,14),(10014,92841,'Girl on Bus',1,15),(10014,158739,'Girl on Bus',1,16),(10014,9276,'Policeman',2,17),(10014,113785,'Do-Gooder',2,18),(10014,553732,'Bar-B-Que Boy',0,19),(10014,101301,'Girlfriend',1,20),(10014,553733,'Patty',0,21),(10014,160356,'Victim',2,22),(10014,553734,'Spike',0,23),(10014,553735,'Victim (uncredited)',0,24),(10014,13663,'Bartender',2,25),(11257,10978,'Charlotte Bartlett',1,0),(11257,1283,'Lucy Honeychurch',1,1),(11257,656,'Mr. Emerson',2,2),(11257,6104,'George Emerson',2,3),(11257,4001,'The Reverend Mr Beebe',2,4),(11257,3568,'The Reverend Mr. Eager, Chaplain of the Anglican Church in Florence',2,5),(11257,5309,'Eleanor Lavish, a novelist',1,6),(11257,940412,'Miss Catharine Alan',1,7),(11257,108620,'The Cockney Signora',1,8),(11257,944610,'Miss Teresa Alan',1,9),(11257,11856,'Cecil Vyse',2,10),(11257,948582,'Mrs. Vyse, Cecil\'s mother',1,11),(11257,96408,'Mrs. Honeychurch',1,12),(11257,11278,'Freddy Honeychurch',2,13),(11257,44419,'Sir Harry Otway, a Landlord',0,14),(11257,534537,'Minnie Beebe',0,15),(11257,17479,'New Charlotte',1,16),(11257,105164,'New Lucy',1,17),(11257,1222036,'Mrs Butterworth',0,18),(11257,1858657,'Mr Floyd',0,19),(11257,1858658,'Miss Poole',0,20),(11257,1858659,'Santa Croce Guide',0,21),(11257,1858660,'Phaeton',0,22),(11257,567074,'Persephone',0,23),(11257,1495216,'Murdered Youth',2,24),(20337,78029,'himself',2,0),(20737,7431,'Josh Framm',2,0),(20737,20623,'Jackie Framm',1,1),(20737,2169,'Norm Snively',2,2),(20737,8854,'Arthur Chaney',2,3),(20737,32205,'Larry Willingham',2,4),(20737,86527,'Buck Willingham',2,5),(20737,4976,'Judge Cranfield',2,6),(20737,86528,'Principal Pepper',1,7),(10991,67830,'Ash Ketchum',1,0),(10991,67832,'Misty / Jessie / Wigglytuff',1,2),(10991,67833,'Brock / James / Squirtle',2,3),(10225,64198,'Tommy',0,0),(10225,64199,'Megan Garris',0,1),(10225,64200,'Sheriff Garris',0,2),(10225,64201,'Sissy',1,3),(10225,64202,'Cort',0,4),(10225,64203,'Jason',0,5),(10225,3417,'Darren',2,6),(10225,82956,'Nikki',1,7),(10225,156587,'Katie',1,8),(10225,22053,'Larry',2,9),(10225,75352,'Allen Hawes',2,10),(10225,1394114,'Paula Mott',0,11),(34086,4788,'Kathy',1,0),(34086,131785,'',2,1),(34086,19968,'Wrenchmuller',2,2),(34086,1491527,'Dumb Guy #1',2,3),(10285,62596,'Jason Voorhees / Security Guard #2 / Freddy Krueger\'s arm',2,0),(10285,64741,'Steven Freeman',2,1),(10285,64742,'Jessica Kimble',1,2),(10285,51579,'Creighton Duke',2,3),(10285,63544,'Robert Campbell',2,4),(10285,33850,'Diana Kimble',1,5),(10285,34407,'Joey B.',1,6),(10285,16662,'Coroner',2,7),(10285,30861,'Shelby',2,8),(10285,35090,'Sheriff Ed Landis',2,9),(10285,63942,'Agent Elizabeth Marcus',1,11),(10285,1341053,'Agent Abernathy',2,12),(29463,56871,'Russell Walker',2,0),(29463,103899,'Himself',0,1),(29463,103900,'Himself',2,2),(29463,103901,'Herself',1,3),(29463,103902,'Himself',0,4),(29463,36424,'Himself',2,5),(29463,22026,'Rick',2,6),(29463,92683,'The Fat Boys',2,7),(29463,92681,'The Fat Boys',2,8),(29463,92682,'The Fat Boys',2,9),(18065,49002,'Leo',2,0),(18065,51944,'Brody',2,1),(18065,65829,'Guch',2,2),(18065,41556,'Shavoo',2,3),(18065,4239,'Eric',2,4),(18065,98772,'Ivy',1,5),(22013,13784,'Elmer Gantry',2,0),(22013,14500,'Sister Sharon Falconer',1,1),(22013,11128,'Jim Lefferts',0,2),(22013,29313,'William L. Morgan',0,3),(22013,60158,'Lulu Bains',1,4),(22013,113653,'Sister Rachel',1,5),(22013,29719,'George F. Babbitt',2,6),(22013,53010,'Rev. John Pengilly',2,7),(22013,10609,'Rev. Philip Garrison',2,8),(22013,160541,'Pete',2,9),(22013,2644,'Reverend Planck',2,10),(22013,89834,'Police Captain Holt',2,11),(22013,165082,'Reverend Ulrich',2,12),(22013,88887,'Eddington',2,13),(30139,60561,'Jazmin Biltmore',1,0),(30139,105762,'Dr. Tunde Jonathan',2,1),(30139,73831,'Akibo',0,2),(30139,591785,'Mia',1,3),(30139,1667623,'Chubby Geek',2,4),(15582,23532,'Todd Howard',2,0),(15582,15655,'Professor Brooks',1,1),(15582,41230,'Dean Dunn',2,2),(15582,44818,'Chubby',2,3),(15582,78413,'Nicki',1,4),(15582,78414,'Gustavson',0,5),(15582,78415,'Stiles',2,6),(15582,78416,'Coach Finstock',0,7),(15582,14848,'Uncle Harold',2,8),(15582,1800080,'Lisa',1,9),(15582,1800081,'Emily',1,10),(15582,1776403,'Peter',0,11),(15582,1412253,'Pug',2,12),(15582,7210,'Admissions Lady',1,13),(15582,1800085,'Admissions Kid',0,14),(15582,1800086,'Referee',0,15),(15582,1720932,'Referee',2,16),(15582,1800087,'Referee',0,17),(15582,1056828,'Fight Announcer',0,18),(15582,124133,'Squirrely Assistant',2,19),(15582,1800088,'Professor Capps',0,20),(15582,1800089,'Female Professor',0,21),(15582,1800090,'Reporter',0,22),(15582,1800091,'Cadet',0,23),(15582,1800092,'Party Student',0,24),(15582,1800093,'Student',0,25),(15582,164077,'Biology Girl',1,26),(15582,586460,'History Student',1,27),(15582,1800098,'Student in Crowd',0,28),(15582,1800099,'Matronly Woman',1,29),(15582,1800100,'Science Student',0,30),(15582,1800102,'Cadet',0,31),(15582,1795556,'Dancer',0,32),(15582,1800103,'Boxing Fan',1,33),(15158,6474,'Mike',2,0),(15158,97939,'Reggie',2,1),(15158,79584,'The Tall Man',2,2),(15158,87127,'Liz',1,3),(15158,41978,'Alchemy',1,4),(15158,87128,'Father Meyers',2,5),(15158,1687700,'Grandma',0,6),(15158,87129,'Mortician',0,7),(15158,31714,'Jeri Reynolds',1,8),(15158,58240,'Young Mike',0,9),(15158,1414115,'Background Player',0,10),(15158,152995,'Background Player',2,11),(15158,12662,'Hooded Dwarf (uncredited)',2,12),(15158,1471,'Hooded Dwarf (uncredited)',2,13),(30309,59174,'Ana Garcia',1,0),(30309,28779,'Carmen Garcia',1,1),(30309,192506,'Estela Garcia',0,2),(30309,41798,'Mr. Guzman',2,3),(30309,1233673,'Jimmy',0,4),(30309,119666,'Pancha',1,5),(30309,146004,'Mrs. Glass',1,6),(10557,11851,'George Khan',2,0),(10557,8443,'Ella Khan',1,1),(10557,65864,'Nazir Khan',0,2),(10557,16756,'Tariq Khan',2,3),(10557,128645,'Meenah Khan',1,4),(10557,1492653,'',0,5),(10557,107709,'',2,6),(10557,174727,'',1,7),(10557,26201,'',2,8),(10557,73709,'',2,9),(10557,192927,'',1,10),(10557,1492654,'',0,11),(10557,1214095,'',2,12),(10557,218402,'',2,13),(10557,203176,'',0,14),(10557,1492655,'',0,15),(10557,480,'',2,16),(10557,218356,'',0,17),(10557,14759,'',2,18),(10557,1492656,'',0,19),(10557,117795,'Nazir\'s Bride (uncredited)',1,20),(23531,2956,'Mia',1,0),(23531,12792,'Brad',2,1),(23531,1222232,'Jonathan',0,2),(23531,1438101,'Zeke',0,3),(23531,1120876,'Eric',0,4),(23531,164397,'Liz',1,5),(23531,18354,'Marie',1,6),(23531,100519,'Bristol',0,7),(23531,158105,'\'Plan\' Girl',1,8),(28005,30430,'Maya',1,0),(28005,20275,'Tara',1,1),(28005,178622,'Jai Kumar',2,2),(28005,5471,'Raj Singh',2,3),(24126,6104,'Warlock',2,0),(24126,27504,'Kenny Travis',2,1),(24126,59449,'Samantha Ellison',1,2),(24126,36059,'Paula Dare',1,3),(24126,14328,'Will Travis',2,4),(24126,1107,'Franks',2,5),(24126,15414,'Ethan Larson',2,6),(24126,10194,'Ted Ellison',2,7),(24126,1176338,'Andy',0,8),(24126,174680,'Amanda Sloan',0,9),(24126,16170,'Douglas',2,10),(24126,148196,'Celine',1,11),(24126,147397,'Barker',2,12),(24126,26557,'One-Eyed Man',2,13),(24126,48965,'Dark Leader',2,14),(24126,54564,'Man in the Crowd',2,15),(24126,101905,'Model',1,16),(24126,112467,'Model',1,17),(13982,4517,'Tommy',2,0),(13982,56128,'Laurie Bennett',1,1),(13982,3267,'Dick Bennett',2,2),(13982,40403,'Annette Bennett',1,3),(13982,25990,'Charlie',2,4),(13982,60950,'Ernie',2,5),(13982,77581,'Fern',1,6),(13982,77585,'Rico',2,7),(13982,77586,'Benny',0,8),(13982,77587,'Paco',2,9),(13982,77588,'Big Sep',2,10),(13982,35715,'Head of Hugo',0,11),(13982,43461,'Head of Marty',2,12),(13982,77589,'Head of Jamal',2,13),(13982,77592,'Head of Little Joey',0,14),(13982,77594,'Head of Frank',0,15),(13982,77596,'Head of Isaiah',2,16),(13982,77597,'Head of Benito',0,17),(13982,3230,'Steve',2,18),(16642,1205,'Bill',2,0),(16642,69054,'Abbey',1,1),(16642,3011,'Linda',1,2),(16642,9880,'The farmer',2,3),(16642,2096,'The Farm Foreman',2,4),(16642,41406,'Mill Foreman',2,5),(16642,83411,'Harvest Hand',2,6),(17734,1241,'Walker',2,0),(17734,20387,'Beatrice',1,1),(17734,10297,'Troy',2,2),(17734,27563,'Patricia',1,3),(17734,1903,'Gene',2,4),(17734,361969,'Donald',0,5),(17734,96539,'Glenn',2,6),(17734,1528809,'Legal Assistant',0,7),(17734,1188489,'Owen',0,8),(17734,78597,'Chris Hammond',2,9),(18892,16850,'Courtney',1,0),(18892,35551,'Marcie Fox',1,1),(18892,59967,'Julie Freeman',1,1),(18892,10556,'Ms. Sherwood',1,3),(18892,2230,'Detective Vera Cruz',1,4),(18892,20750,'Fern',1,5),(18892,1030602,'Zack',0,6),(18892,149563,'Dane Sanders',2,7),(18892,4996,'Brenda',1,8),(18892,6281,'Liz',0,9),(18892,8894,'Marcie\'s Father',2,10),(18892,45415,'Mr. Purr',2,11),(18892,15500,'Mrs. Purr',1,12),(18892,9315,'The Stranger',2,13),(10683,209,'Joy Jordan',1,0),(10683,16165,'Andy Kornbluth',2,1),(10683,1233,'Allen',2,2),(10683,19152,'Bill Maplewood',2,3),(10683,1131554,'Johnny Grasso',0,4),(10683,171865,'Billy Maplewood',0,5),(10683,1131555,'Timmy Maplewood',0,6),(10683,6684,'Helen Jordan',1,7),(10683,65528,'Trish Maplewood',1,8),(10683,1393547,'Chloe Maplewood',0,9),(10683,19468,'Psychiatrist',2,10),(10683,9565,'Mona Jordan',1,11),(10683,856,'Lenny Jordan',2,12),(10683,20187,'Kristina',1,13),(10683,28033,'Detective Berman',2,14),(10683,28640,'Nancy',1,15),(10683,15440,'Vlad',2,16),(10683,196181,'Kay',1,17),(17995,62842,'Eddie Griffin',2,0),(17995,82581,'Father',2,1),(17995,82582,'Matthew Brent',0,2),(17995,125845,'Robert Noble',2,3),(11229,2628,'Bob Wolverton',2,0),(11229,368,'Vanessa Lutz',1,1),(11229,68672,'Detective Mike Breer',2,2),(11229,6486,'Detective Garnet Wallace',2,3),(11229,99,'Ramona Lutz',1,4),(11229,15110,'Mimi Wolverton',1,5),(11229,328,'Rhonda',1,6),(11229,71913,'Chopper',2,7),(11229,8695,'Flacco',2,8),(11229,10402,'Mesquita',1,9),(11229,42722,'Larry',2,10),(11229,167966,'Lady Cop',1,11),(11229,88525,'Cop at Truckstop',0,12),(11229,61111,'Sharon',1,13),(22488,88834,'Missie',1,0),(22488,86384,'Willie',2,1),(22488,938390,'Scottie',0,2),(22488,119807,'Henry',0,3),(22488,65529,'Miriam Red Hawk McClain',1,4),(24469,91643,'Mia Williams',1,0),(24469,17288,'Connor O\'Reily',2,1),(24469,8309,'Joanne',1,2),(24469,972306,'Tyler Williams',1,3),(24469,45051,'Billy',2,4),(24469,142289,'Billy\'s Brother',2,5),(24469,97505,'Billy\'s Brother',2,6),(24469,1528072,'Kelly',1,7),(24469,91645,'Keeley',0,8),(24469,91644,'Keeleys Dad',2,9),(24469,1319615,'Keira',0,10),(24469,1319616,'Tyler\'s Friend',0,11),(24469,1319617,'Tyler\'s Friend',0,12),(24469,1319618,'Tall Dancing Girl',0,13),(24469,1284197,'Dancing Girl',0,14),(24469,1319619,'Dancing Girl',0,15),(24469,1319620,'Dancing Girl',0,16),(24469,1579239,'Shouting Man',2,17),(24469,92684,'Van Man',2,18),(24469,1579240,'Club Man',0,19),(24469,1579241,'Club Woman',0,20),(24469,1579242,'Club DJ',0,21),(24469,1579243,'Podium Girl',0,22),(24469,1579244,'Audition Girl',1,23),(24469,1579245,'Audition Girl',1,24),(24469,1579246,'Audition Girl',1,25),(24469,1579247,'Audition Girl',1,26),(24469,1579248,'Audition Girl',1,27),(24469,1579249,'Audition Girl',1,28),(34099,12519,'Wanda Lovell',1,0),(34099,78229,'Holly Lovell',1,1),(34099,64306,'Angela',1,2),(34099,33343,'Jason Sloan',2,3),(34099,202893,'Grant',2,4),(34099,99181,'Zoe Moscatel',1,5),(34099,90130,'Tyler',2,6),(27404,15423,'Julianne',1,0),(27404,1213118,'Sam',0,1),(27404,1179247,'Harvey',0,2),(27404,102669,'Johnny Vince',2,3),(27404,1271493,'Anomalie',0,4),(27404,1271494,'Memento Guy',0,5),(27404,156978,'Spader',2,6),(27404,59755,'Lanky Man',2,7),(27404,57195,'Bald Genius',0,8),(27404,1168893,'Lola',0,9),(26039,18391,'Walker',2,0),(26039,4301,'Chris',1,1),(26039,4966,'Yost',2,2),(26039,26512,'Brewster',2,3),(26039,13399,'Frederick Carter',2,4),(26039,15650,'Stegman',0,5),(26039,17580,'Mal Reese',2,6),(26039,131274,'Lynne',1,7),(26039,65568,'Hired Gun',0,8),(26039,134823,'Waitress',1,9),(26039,134862,'Mrs. Carter',0,10),(26039,7210,'First Citizen',1,11),(26039,134863,'Carter\'s Man',0,12),(26039,7065,'Car Salesman',0,13),(26039,134864,'Girl Customer',0,14),(26039,5695,'1st Penthouse Lobby Guard',2,15),(26039,19546,'2nd Penthouse Lobby Guard',2,16),(26039,1750038,'Receptionist',0,17),(26039,150368,'Messenger',0,18),(26039,1476030,'Young Man in Apartment',0,19),(26039,1750039,'Young Man in Apartment',0,20),(26039,1750040,'Carter\'s Secretary',0,21),(26039,151669,'Reese\'s Guard',0,22),(26039,1214595,'Reese\'s Guard',0,23),(26039,1407179,'Dancer',0,24),(10226,17522,'Marie',1,0),(10226,64210,'Alexia',1,1),(10226,5444,'The Killer',2,2),(10226,64211,'Jimmy',2,3),(10226,1022032,'Alex\' Father',2,4),(10226,81134,'Alex\' Mother',0,5),(10226,1355124,'Tom',0,6),(10476,18288,'DJay',2,0),(10476,18471,'Key',2,1),(10476,343,'Nola',1,2),(10476,40036,'Shug',1,3),(10476,21215,'Yevette',1,4),(10476,132078,'Shelby',2,5),(10476,8171,'Skinny Black',2,6),(10476,45245,'Lexus',1,7),(10476,6542,'Arnel',2,8),(10476,69932,'Tigga',0,9),(10476,1560860,'Slobs',0,10),(10476,1560861,'Yellow Jacket',0,11),(10476,1560862,'Mickey',0,12),(10476,53264,'Harold',0,13),(10476,1560864,'Elroy',0,14),(10281,62596,'Jason Voorhees',2,0),(10281,64719,'Tina Shepard',1,1),(10281,64720,'Melissa',0,2),(10281,64721,'Nick',2,3),(10281,55267,'Dr. Crews',2,4),(10281,98078,'Robin',1,5),(10281,19548,'Mrs. Amanda Shepard',1,6),(10281,102576,'Mr. John Shepard',2,7),(10281,88523,'Sandra',1,8),(10281,81460,'Michael',2,9),(10281,100268,'Jane',0,10),(10281,22555,'Maddy',1,11),(10281,1659011,'Judy',0,12),(10281,83330,'Kate',0,13),(10281,572609,'Ben',0,14),(13025,81095,'Debra Moynihan',1,0),(13025,81096,'Jason Creed',2,1),(13025,81097,'Tony Ravello',2,2),(13025,63864,'Tracy Thurman',0,3),(13025,81098,'Eliot Stone',2,4),(13025,81099,'Andrew Maxwell',2,5),(13025,81100,'Ridley Wilmott',2,6),(13025,81101,'Gordo Thorsen',2,7),(13025,61134,'Mary Dexter',1,8),(13025,81102,'Brody',0,9),(21461,85881,'Murli Prasad Sharma',2,0),(21461,85889,'Circuit',2,1),(21461,123316,'Mahatma Gandhi',0,2),(21461,35068,'Jhanvi',1,3),(21461,85669,'Simran',1,4),(21461,53377,'Kkhurana',2,5),(21461,76789,'Batuk Maharaj',2,6),(21461,35793,'Sunny',0,7),(21461,35792,'Victor D\'Souza',2,8),(21461,123317,'Victor\'s father',0,9),(21461,123318,'Advocate',0,10),(21461,35779,'Lucky Singh',2,11),(17264,81544,'Alec Ramsey',2,0),(17264,1937,'Henry Dailey',0,1),(17264,8437,'Alec\'s Mother',1,2),(17264,87825,'Snoe',2,3),(17264,16166,'Alec\'s Father',2,4),(17264,2979,'Neville',2,5),(17264,150238,'Jake',2,6),(17264,14754,'Arab',2,7),(17264,1302098,'The Black Stallion',0,8),(16016,42095,'Per Jensen',0,0),(16016,89973,'Arne Skrydsbu00f8l',0,1),(16016,15087,'Jamil Ahmadinejad',0,2),(16016,1562,'Susanne Mortensen',1,3),(16016,1143305,'Alien diktator',2,4),(16016,93108,'Ib',0,5),(15875,4165,'Michael Patrick \'Guns\' Donovan',2,0),(15875,78896,'Ameilia Sarah Dedham',1,1),(15875,18391,'Thomas Aloysius \'Boats\' Gilhooley',2,2),(15875,4355,'Marquis Andre de Lage',2,3),(15875,84229,'Sgt. Monk Menkowicz',2,4),(15875,5251,'Dr. William Dedham',2,5),(15875,78897,'Lelani Dedham',1,6),(15875,78898,'Sarah \'Sally\' Dedham',0,7),(15875,78899,'Luki Dedham',2,8),(15875,83400,'Miss Lafleur',1,9),(15875,4121,'Father Cluzeot',2,10),(15875,81168,'Australian Navy Officer Sean O\'Brien',2,11),(15875,30512,'Boston Attorney Francis X. O\'Brien',2,12),(15875,1095793,'Mister Eu',0,13),(15875,1466406,'Child (uncredited)',0,14),(15875,8829,'Family Council Member (uncredited)',1,15),(15875,161766,'Naval Officer (uncredited)',2,16),(15875,4119,'Deckhand Who Cries \'Man Overboard\' (uncredited)',2,17),(15875,1397873,'Native Girl (uncredited)',0,18),(15875,30560,'Australian Navy Lieutenant (uncredited)',2,19),(11072,68091,'Sheriff Bart',2,0),(11072,3460,'Jim, aka The Waco Kid',2,1),(11072,13640,'Hedley Lamarr',2,2),(11072,14253,'Taggart',2,3),(11072,29803,'Lili Von Shtu00fcpp, the Teutonic Titwillow',1,4),(11072,14639,'Gov. William J. Le Petomane / Indian Chief',2,5),(11072,6844,'Buddy Bizarre',2,6),(11072,152711,'Rev. Johnson',0,7),(11072,9597,'Van Johnson',2,8),(11072,133952,'Lyle',2,9),(11072,12296,'Howard Johnson',2,10),(11072,73234,'Mongo',2,11),(11072,1232,'Olson Johnson',2,12),(11072,80626,'Harriett Johnson',0,13),(11072,151849,'Dr. Sam Johnson',2,14),(11072,981005,'Charlie',2,15),(11072,31208,'Gum Chewer',2,16),(11072,240728,'Himself',2,17),(11072,153618,'Cutthroat #1',2,18),(11072,101461,'Miss Stein',0,19),(11072,16556,'Gabby Johnson',2,20),(11072,75354,'Young Bart',2,21),(11072,25626,'Boris',2,22),(11072,10774,'Churchgoer',1,23),(11072,151606,'Man in Commissary Playing Hitler (uncredited)',2,24),(26371,42627,'Maurice Hall',2,0),(26371,3291,'Clive Durham',2,1),(26371,11278,'Alec Scudder',2,2),(26371,656,'Doctor Barry',2,3),(26371,4001,'Mr. Ducie',2,4),(26371,8226,'Mrs. Hall',1,5),(26371,8225,'Dean Cornwallis',2,6),(26371,33448,'Mrs. Durham',0,7),(26371,3930,'Anne Durham',1,8),(26371,2282,'Lasker-Jones',2,9),(26371,5473,'Hull',2,10),(26371,3568,'Simcox',2,11),(26371,95259,'Risley',2,12),(26371,206393,'Undergraduate',0,13),(26371,1214797,'Barmaid',0,14),(26371,1434017,'Featherstonaugh',2,15),(26371,105164,'Kitty Hall',1,16),(26371,30096,'Pippa Durham',1,18),(26371,12691,'Rev. Borenius',2,19),(26371,62106,'Archie',0,20),(26371,1173404,'Chapman',0,21),(26371,224283,'Young Maurice',2,22),(26371,948582,'Mrs. Sheepshanks',1,23),(26371,1642,'French colleague',2,24),(26371,1283,'Lady at Cricket Match',1,25),(26371,10700,'Gladys Olcott',1,26),(26371,133136,'Ada Hall',1,27),(14137,20788,'Artie DeVanzo',2,0),(14137,2877,'Maz',2,1),(14137,176628,'Dennis Mangenelli',2,2),(14137,157059,'Johnny Trinno',2,3),(14137,21131,'Dave',2,4),(14137,59405,'Tim',2,5),(14137,5950,'Dirt',2,6),(14137,122230,'Gina',0,7),(14137,121757,'Marilyn',1,8),(14137,27974,'Max',0,9),(14139,24977,'Hu00e9ctor',2,0),(14139,125286,'Clara',0,1),(14139,125287,'La chica del bosque',1,2),(14139,118303,'El Joven',2,3),(14139,1061778,'Hu00e9ctor Ocasional (as Ion Inciarte)',2,4),(14139,135838,'Clara (voice) (uncredited)',0,5),(14139,147898,'La Chica (voice) (uncredited)',1,6),(14139,135839,'Radio Announcer (voice) (uncredited)',0,7),(33106,128026,'Geng Hao',0,0),(33106,128027,'Li Fala',2,1),(33106,134793,'Geng Hao\'s coach',0,2),(33106,118711,'Da Cheng',0,3),(33106,128028,'Dong Hai',0,4),(33106,71052,'',0,5),(33106,1134974,'Policeman',0,6),(10676,11784,'Dr. Daniel \'Dan\' Challis',2,0),(10676,66199,'Ellie Grimbridge',1,1),(10676,6836,'Conal Cochran',2,2),(10676,66200,'Rafferty',2,3),(10676,66201,'Buddy Kupfer',2,4),(10676,140337,'Betty Kupfer',0,5),(10676,140338,'\'Little\' Buddy Kupfer Jr.',0,6),(10676,140339,'Marge Guttman',1,7),(10676,11787,'Linda Challis',1,8),(10676,97953,'Starker',2,9),(10676,140340,'Harry Grimbridge',0,10),(10676,140341,'Teddy',0,11),(10676,140342,'Walter Jones',0,12),(10676,103087,'Nurse Agnes',1,13),(10676,140343,'Sheriff',0,14),(10676,8944,'Curfew Announcer / Telephone Operator',1,15),(10676,14663,'Assassin',0,16),(10676,93151,'Willie Challis',2,17),(10676,114273,'Bella Challis',1,18),(10676,157660,'Secretary',1,19),(10676,11777,'Silver Shamrock Commercial Announcer (Voice)',2,20),(10676,1762891,'Red',0,21),(10676,2277,'Charlie',2,22),(24748,3636,'Hud Bannon',2,0),(24748,19550,'Homer Bannon',2,1),(24748,1934,'Alma Brown',1,2),(24748,30511,'Lon \'Lonnie\' Bannon',2,3),(24748,13786,'Mr. Burris',2,4),(24748,13787,'Jesse',0,5),(24748,8331,'Hermy',2,6),(24748,3014,'Jose',2,7),(24748,26358,'Joe Scanlon',0,8),(24748,94779,'Truman Peters',2,9),(24748,31353,'Mr. Thompson',0,10),(24748,116565,'Mr. Larker',2,11),(24748,1092234,'Mr. Kirby',0,12),(24748,215708,'Rodeo Announcer Frank',0,13),(24748,153706,'Charlie Tucker',2,14),(24748,151667,'Myra',1,15),(24748,89163,'Lily Peters',1,16),(25636,8289,'FH',2,0),(25636,5724,'Wayne',2,1),(25636,70851,'Georgie',2,2),(25636,2778,'Bill',2,3),(25636,18686,'Mira',1,4),(25636,2206,'Michelle',1,5),(25636,16860,'Black-Eyed Nurse',1,6),(25636,335,'Dundun',2,7),(25636,4451,'Jack Hotel',2,8),(19316,55253,'Wilhelmina \'Wil\' Pang',1,0),(19316,6720,'Hwei-Lan Gao - Ma',1,1),(19316,84462,'Vivian Shing',1,2),(19316,5377,'Jay - Neighbor',2,3),(19316,14984,'',1,4),(21074,87297,'Nazneen Ahmed',0,0),(21074,93290,'Chanu Ahmed',2,1),(21074,93291,'Karim',2,2),(21074,93292,'Rukshana \'Shahna\' Ahmed',0,3),(21074,93293,'Bibi Ahmed',0,4),(13007,74086,'Himself',2,0),(13007,74087,'Himself',0,1),(13007,74088,'Himself',0,2),(13007,74089,'Himself',2,3),(13007,191441,'Himself',0,4),(13007,554096,'Himself',0,5),(13007,554097,'Himself',0,6),(13007,554098,'Himself',0,7),(13007,554099,'Himself',0,8),(13007,554100,'Himself',0,9),(13007,554101,'Herself',0,10),(13007,554102,'Himself',0,11),(13007,554103,'Himself',0,12),(13007,554104,'Himself',0,13),(13007,208977,'Himself',0,14),(13007,132169,'Himself (archive footage)',0,15),(13518,74600,'Himself / narrator',2,0),(13518,191182,'Herself - Senator - California',1,1),(13518,158079,'Himself - Founder, Virgin Group',0,2),(13518,19011,'Himself - President of the United States',2,3),(13518,10750,'Herself - Musician / Environmental Activist',1,4),(13518,16376,'Himself - Actor / Comedian / Environmental Activist',2,5),(17334,57171,'Granger Woodruff',2,0),(17334,82695,'Charlie Hendricks',2,1),(17334,1211,'Kit Hawksin',2,2),(17334,562190,'Mike',0,3),(17334,1708694,'Ula',0,4),(17334,22121,'Emory Banks',1,5),(17334,1490521,'New York Waiter',0,6),(17334,145628,'Priya R. Sethi',1,7),(17334,110198,'Zia',1,8),(17334,85734,'Manju R. Sethi',0,9),(17334,1708695,'Govinda R. Sethi',0,10),(17334,150013,'Aunt Pimmi',1,11),(17334,1607558,'Priya\'s Aunt #2',0,12),(17334,6217,'Rajeev Sethi',2,13),(17334,113695,'Miss Prasad',0,14),(17334,1708696,'Aditya',0,15),(20764,10839,'Luz Martu00ednez',1,0),(20764,16429,'Rudy',2,1),(20764,91251,'Memo',2,2),(13569,46772,'Kevin Parson',2,0),(13569,42705,'Jennifer Peters',1,1),(13569,27737,'Slater',0,2),(13569,23648,'Balinda Parson',1,3),(13569,1657172,'Slater - young',2,4),(13569,235548,'Henry',2,5),(11798,70517,'Shaun',2,0),(11798,1115,'Combo',2,1),(11798,70518,'Cynth',0,2),(11798,70519,'\'Milky\'',2,3),(11798,148139,'Lol',1,4),(11798,225610,'Richard \'Woody\' Woodford',2,5),(11798,59076,'Meggy',2,6),(11798,225611,'Gadget',2,7),(11798,85065,'Pukey Nicholls',2,8),(11798,1252524,'Smell',1,9),(11798,203177,'Kes',0,10),(11798,126171,'Harvey',2,11),(11798,122999,'Banjo',2,12),(11798,990,'Lenny',2,13),(11798,1252520,'Trev',0,14),(11798,225612,'Kelly',1,15),(11798,203176,'Mr Sandhu',0,16),(11798,1252521,'Trudy',1,17),(17820,39601,'Gaylord Ravenal',2,0),(17820,82407,'Magnolia Hawks',1,1),(17820,25787,'Julie LaVerne',1,2),(17820,3156,'Cap\'n Andy Hawks',0,3),(17820,148669,'Ellie May Shipley',1,4),(17820,118222,'Frank Schultz',2,5),(17820,22091,'Steven Baker',2,6),(17820,11025,'Parthy Hawks',1,7),(17820,121323,'Racetrack spectator',1,8),(17820,9865,'Pete',0,9),(17820,1238069,'Joe',0,10),(17820,117112,'Chorus Girl (uncredited)',1,11),(17820,34437,'Cameo McQueen (uncredited)',0,12),(17820,8638,'Seamstress (uncredited)',1,13),(17820,29987,'Drunk (uncredited)',2,14),(17820,22093,'Sheriff Ike Vallon (uncredited)',2,15),(19933,16165,'The Radio (voice)',2,0),(19933,28168,'Lampy / Zeke (voice)',0,1),(19933,14104,'Air Conditioner / Hanging Lamp (voice)',2,2),(19933,56055,'Toaster (voice)',1,3),(19933,1498595,'Blanky / Young Rob (The Master) (voice)',0,4),(19933,150739,'Kirby (voice)',0,5),(19933,7911,'Elmo St. Peters (voice)',0,6),(19933,1243551,'Mish-Mash / Two-Face Sewing Machine (voice)',0,7),(19933,1498596,'Rob (The Master) (voice)',0,8),(19933,1498598,'Chris (voice)',0,9),(19933,13924,'Mother / Two-Face Sewing Machine (voice) (as Mindy Stern)',1,10),(19933,115032,'Plugsy (voice)',0,11),(14156,19148,'Holden',2,0),(14156,122442,'Kelly Reyes',0,1),(14156,57251,'Detective Adams',2,2),(14156,20580,'Matt Cooper',2,3),(14156,43943,'Detective Sandeval',2,4),(14156,94149,'Captain',0,5),(14156,109858,'Jen Crowe',1,6),(31163,107709,'Jimi Chopra',2,0),(31163,11852,'C. P. Chopra',2,1),(31163,107710,'Vanessa',1,2),(31163,107711,'Jack',0,3),(31163,35783,'Grandmother',1,4),(31163,62230,'Minaxi Patel',1,5),(31163,107712,'Simran',0,6),(31163,107713,'Asha Chopra',1,7),(31163,107714,'Ravi',0,8),(31163,107715,'Hanah',0,9),(31163,107716,'Marlene',0,10),(31163,53362,'Harish Patel',2,11),(31163,107717,'Priest',0,12),(31163,107718,'Mr. Shah',0,13),(31163,107719,'Auntie',0,14),(16205,5139,'Professor Gordon Crowley',2,0),(16205,80013,'Jack Brooks',2,1),(16205,10210,'Counselor Silverstein',2,2),(16205,4569,'Howard',2,3),(16205,80017,'Emmet',0,4),(16205,80018,'Eve',1,5),(16205,80019,'John',2,6),(16205,80020,'Kristy',0,7),(16205,80021,'Janice',1,8),(16205,80022,'Pat',0,9),(16205,80023,'Trevor',0,10),(16205,80024,'Suzy',0,11),(16205,80025,'Erica',0,12),(16205,80026,'Celia',0,13),(16205,80027,'Raymond',2,14),(16205,80028,'Slim',0,15),(16205,80029,'Omar',0,16),(16205,80030,'Student #1',0,17),(16205,80031,'Student #2',0,18),(16205,80032,'Young Howard',0,19),(16205,80033,'Young Jack Brooks',0,20),(16205,14890,'Cindy Brooks',1,21),(16205,1845219,'Charles Brooks',2,22),(16205,80034,'Gene Brooks',0,24),(16205,80035,'Cyclops',2,25),(16205,80036,'Waitress',1,26),(16205,80037,'Herb',0,27),(16205,80038,'Radio DJ',0,28),(16205,80039,'Gym Teacher',0,29),(16205,74499,'Janitor',2,30),(16205,80040,'Tall Student',0,31),(16205,80041,'Student',0,32),(16205,80042,'Yogalates Teacher',0,33),(16205,80043,'Yogalates Student',0,34),(16205,80044,'Yogalates Student',0,35),(16205,80045,'Yogalates Student',0,36),(16205,59801,'Man in Hardware Store',0,37),(16205,80046,'Waldo',0,38),(28165,99039,'The Toxic Avenger / Apocalypse Inc. Executive',0,0),(28165,103861,'The Toxic Avenger',0,1),(28165,1073042,'Claire',1,2),(28165,98330,'Apocalypse Inc. Chairman',0,3),(28165,136879,'Big Mac Bunko',0,4),(28165,1073196,'Announcer',2,5),(28165,98317,'Malfaire',0,6),(28165,1073040,'Mrs. Junko',1,7),(28165,1387708,'Masami',0,8),(28165,1200505,'Shu00f4chikuyama',0,9),(28165,1387709,'Psychiatrist',0,11),(28165,64856,'Apocalypse Inc. Executive',2,12),(28165,550612,'Food Critic',0,13),(28165,7466,'Lou Sipher',2,14),(28165,97825,'Apocalypse Inc. Executive',0,15),(28165,1708242,'Cigar Face',0,16),(28165,1708249,'Father O\'Reilly',0,17),(11561,1243,'Miles Monroe',2,0),(11561,3092,'Luna Schlosser',1,1),(11561,41269,'Erno Windt',2,2),(11561,69884,'Dr. Melik',1,3),(11561,30050,'Herald Cohen',2,4),(11561,104630,'Dr. Tryon',2,5),(11561,133774,'Dr. Nero',1,6),(11561,123722,'Dr. Dean',2,7),(11561,107304,'Jeb Hrmthmg',2,8),(11624,1243,'Victor / Fabrizio / The Fool / Sperm',2,0),(11624,8516,'Dr. Bernardo',2,1),(11624,23708,'Sam Musgrave',2,2),(11624,9565,'Gina',1,3),(11624,14371,'The King',2,4),(11624,40206,'The Operator',2,5),(11624,29791,'Queen',1,6),(11624,16475,'Switchboard',2,7),(11624,3460,'Dr. Doug Ross',2,8),(11624,1219290,'Jack Barry',0,9),(11624,121081,'Pamela Mason',0,11),(11624,151657,'Regis Philbin',2,12),(11624,164785,'Robert Q. Lewis',2,13),(11624,1214822,'Helen (as Heather Macrae)',0,14),(11624,106805,'George',2,15),(11624,140177,'Milos',0,16),(11624,1947,'Stomach Operator',2,17),(11624,213641,'Brain Control (as Oscar Beregi)',0,18),(11624,106052,'The Fool\'s Father',0,19),(11624,217394,'Sheriff',0,20),(11624,10225,'Sorcerer',2,21),(12207,18897,'Wong Fei-hung',2,0),(12207,44917,'Mrs. Wong',0,1),(12207,69636,'Wong Kei-ying',2,2),(12207,71655,'Tsang',0,3),(12207,26775,'Master Fu Wen-Chi',2,4),(12207,1610527,'Fun',0,5),(12207,1083956,'Tso',0,6),(12207,44922,'General rewarding Ying',0,7),(12207,25246,'Counter Intelligence Officer',2,8),(12207,70690,'John',2,9),(12207,148884,'Ho Sang',0,10),(12207,84876,'Henry',2,11),(12207,56804,'Mr. Chiu',0,13),(12207,227804,'Chiu\'s Wife',1,14),(12207,1356189,'Uncle Hing',0,15),(20862,33527,'',2,0),(20862,203677,'',0,1),(20862,65529,'',1,2),(20862,15439,'Arnold Joseph',2,3),(20862,7863,'Arlene Joseph',1,4),(20862,60918,'Young Victor Joseph',2,5),(20862,211568,'Young Thomas Builds-the-Fire',2,6),(20862,1185589,'Grandma Builds-the-Fire',0,7),(20862,237532,'Randy Peone',0,8),(20862,1236658,'Lucy',0,9),(20862,154647,'Junior Polatkin',2,10),(11023,38940,'Tracy Louise Freeland',1,0),(11023,59252,'Evie Zamora',1,1),(11023,67599,'Noel',1,2),(11023,18686,'Melanie \'Mel\' Freeland',1,3),(11023,55493,'Mason Freeland',2,4),(11023,23958,'Brady',2,5),(11023,1385661,'Rafa',0,6),(11023,1385662,'Medina',0,7),(11023,1385663,'Astrid',0,8),(11023,25836,'Birdie',0,9),(11023,1385664,'Kayla',0,10),(11023,1227095,'Yumi',1,11),(11023,65561,'Luke',2,12),(11023,1385665,'Businesswoman',0,14),(11023,154551,'Science Teacher',2,15),(11023,59014,'Rapper #2',2,16),(33667,8487,'Philip Schuyler Green',2,0),(33667,24815,'Kathy Lacy',1,1),(33667,81970,'Dave Goldman',2,2),(33667,10607,'Anne Dettrey',1,3),(33667,7641,'Mrs. Green',1,4),(33667,41255,'Elaine Wales',1,5),(33667,2755,'John Minify',2,6),(33667,2021,'Jane',1,7),(33667,923,'Tommy Green',2,8),(33667,85902,'Dr. Craigie',2,9),(33667,10024,'Professor Fred Lieberman',2,10),(33667,19110,'Third Woman (uncredited)',1,11),(33667,19400,'Mr. Calkins (uncredited)',2,12),(11194,68534,'Joe Simpson',2,0),(11194,68535,'Simon Yates',0,1),(11194,68536,'Himself',2,2),(11194,68537,'Richard Hawking',0,3),(11194,68538,'Himself',0,4),(11194,68539,'Himself',0,5),(15186,12640,'Bill',2,0),(15186,18070,'Hitler',2,1),(15186,2229,'Lee',1,2),(15186,1980,'Linda',1,3),(15186,11076,'Carl',2,4),(15186,1204,'Catherine',1,5),(15186,56871,'Nicholas',2,6),(15186,31717,'Tracy',1,7),(15186,56567,'Third Fired Employee',0,8),(15186,25540,'Fourth Fired Employee',1,9),(15186,65475,'Sam Osborne',2,10),(15186,60074,'Harvey, probably',2,11),(15186,15029,'Arty',2,12),(15186,7467,'Film Director',2,13),(15186,1884,'Himself',2,14),(15186,287,'Himself',2,15),(15186,28641,'Wilson/Himself',2,16),(17994,82580,'Brandon Sinclair',2,0),(17994,72055,'Linda Brewster',1,1),(17994,21484,'Jim Morar',2,2),(17994,42335,'Zarabeth',1,3),(17994,109761,'Lt. Dewhurst',2,4),(17994,98531,'Lloyd',0,5),(17994,163361,'Mrs. Moses',1,6),(17994,1383296,'Dr. Gelineau',0,7),(17994,106813,'Wanda',1,8),(17994,1383297,'Malfeitor',0,9),(17994,1383298,'Mike',0,10),(17994,1383299,'Chris',0,11),(17994,1383300,'Roger',0,12),(12901,55152,'Narrator (voice)',2,0),(12901,74053,'Gerald Burke',0,1),(12901,74054,'Ali Fadhil',0,2),(12901,74055,'Robert Hutchings',0,3),(14284,106843,'Himself',2,0),(14284,106840,'',2,1),(14284,595477,'',2,2),(14284,106839,'',2,3),(14284,1195357,'',0,4),(14284,1195359,'',0,5),(14284,846000,'',0,6),(14284,1195360,'',0,7),(14284,106844,'',0,9),(12228,2778,'Narrator (voice)',2,0),(12228,71766,'Himself',2,1),(12228,6449,'Himself (archive footage)',2,2),(12228,13716,'Himself',2,3),(22617,1004,'Louis Cropa',2,0),(22617,60205,'Gary Lieberman',2,1),(22617,89470,'Enrico Coventie',0,2),(22617,1187539,'Lucy Clemente',0,3),(22617,1187540,'Adrian',0,4),(22617,1187541,'Paolo',0,5),(22617,69298,'Carmen',2,6),(22617,1187542,'Detective Drury',0,7),(22617,114470,'Natalie Clemente',1,8),(22617,34543,'Marti Wellington',1,9),(10656,6553,'Hu00e9lu00e9na',1,0),(10656,38559,'Fred',2,1),(10656,1977,'Le fleuriste',2,2),(10656,24629,'Commissaire Gesbert',2,3),(10656,7037,'Roller skater',2,4),(10656,1003,'Drummer',2,5),(10656,28281,'Inspector Batman',2,6),(10656,2168,'The Station Master',2,7),(24363,2157,'Pappass',2,0),(24363,12640,'Tom Warshaw',2,1),(24363,21028,'Tommy',2,2),(24363,4939,'Mrs. Warshaw',1,3),(24363,1224565,'Reader',1,4),(24363,17488,'Mrs. Brevoort',1,5),(24363,4237,'Lady / Bernadette',1,6),(24363,8924,'Reverend Duncan',2,7),(24363,84617,'Melissa',1,8),(24363,1218160,'Simone',0,9),(24363,18270,'Superfly',2,10),(24363,77096,'Madam Chatquipet',0,11),(24363,1044,'Doorman',2,12),(24363,1214056,'Mrs. Loggia',1,13),(13121,76999,'Dawn O\'Keefe',1,0),(13121,74427,'Brad',2,1),(13121,6181,'Dr. Godfrey',2,2),(13121,77000,'Tobey',2,3),(13121,15799,'Bill',0,4),(13121,77001,'Kim',1,5),(13121,77002,'Ryan',2,6),(24746,103999,'Buddy',0,0),(24746,104000,'The Kid',0,1),(24746,104001,'Mother',0,2),(24746,81192,'Death',2,3),(24746,104002,'Psycho',0,4),(24746,104004,'Red Elvis',0,5),(24746,104005,'Red Elvis',0,6),(24746,104006,'Red Elvis',0,7),(24746,104007,'Mariachi',0,8),(24746,104008,'Red Elvis',0,9),(24746,104009,'Head Pin Pal',0,10),(24746,104010,'Pin Pal II',0,11),(24746,104011,'Pin Pal III',0,12),(24746,104012,'Cantina owner',0,13),(24746,104013,'Car Guy',0,14),(12109,71281,'Frankie Wilde',2,0),(12109,71282,'Sonja',0,1),(12109,30433,'Jack Stoddart',2,2),(12109,71283,'Penelope',1,3),(12109,1497784,'Himself',2,4),(12109,1216471,'Max',2,5),(12109,62972,'Brent',0,6),(12109,147967,'Alfonse',2,7),(12109,219367,'Blinky',0,8),(12109,1443606,'Himself',0,9),(12109,74090,'Himself',2,10),(27023,884,'John',2,0),(27023,71530,'Virgil',2,1),(27023,1462,'Ned',2,2),(27023,7404,'Jill',1,3),(27023,68842,'Smitty',2,4),(27023,59192,'Tasty D Lite',1,5),(22913,382,'Alan Darcy',2,0),(22913,89798,'Tim',0,1),(22913,235361,'Tim\'s Dad (Geoff)',2,2),(22913,30320,'Tim\'s Mother (Pat)',1,3),(22913,990,'Ronnie Marsh',2,4),(22913,148134,'Daz (as Darren Campbell)',2,5),(22913,193356,'Stuart',2,6),(22913,220766,'Gadget',0,7),(22913,1099338,'Meggy',0,8),(22913,148142,'Benny',2,9),(22913,55466,'Tonka',2,10),(22913,1099339,'Wesley Fagash',0,11),(22913,1066822,'\'Wolfman\' Knighty',0,12),(22913,1066821,'Woody (the Dog)',0,13),(22913,1066823,'Young Darcy',0,14),(20653,35747,'Romeo',2,0),(20653,37233,'Laila',1,1),(20653,86086,'Charlie Anna',2,2),(20653,85686,'Mini',1,3),(20653,55070,'Guru',2,4),(28260,89251,'Julie Walker',1,0),(28260,56439,'Curt Reynolds',2,1),(28260,2062,'Col. John Reynolds',2,2),(28260,31364,'Lt. Col. Sinclair',1,3),(28260,47759,'Col. Peck',2,4),(28260,16754,'Riverman',2,5),(28260,100260,'Santos',2,6),(28260,100261,'Mogo',0,7),(28260,100262,'Alicia',1,8),(28260,8666,'Felipe',0,9),(28260,16584,'Store Owner',2,10),(28260,100263,'Dr. Beers',1,11),(28260,64236,'Laboratory Technician',2,12),(28260,48965,'Dr. Hickox',2,13),(28260,93149,'Ballistics Technician',0,14),(28260,94664,'Base Captain',2,15),(28260,332714,'Cop #1',2,16),(13075,1579,'Sherry Swanson',1,0),(13075,96223,'Dorothy Washington',0,1),(13075,96224,'Desi',0,2),(13075,11160,'Dean Walker',2,3),(13075,15376,'Bobby Swanson',2,4),(13075,8350,'Bob Swanson Sr',2,5),(13075,4808,'Parole Officer Hernandez',2,6),(13075,106322,'Lynette Swanson',1,7),(13510,17521,'Jenny',1,0),(13510,17288,'Steve',2,1),(13510,85064,'Abi',0,2),(13510,85065,'Brett',2,3),(13510,85066,'Paige',0,4),(13510,85067,'Mark',2,5),(13510,70517,'Cooper',2,6),(13510,85068,'Harry',0,7),(13510,85070,'Tanya',0,8),(13510,1689038,'Ricky',2,9),(13510,85071,'Jon',2,10),(13510,85072,'Adam',2,11),(13510,75076,'Reece',2,12),(13510,85073,'Nat',1,13),(13510,85074,'Mel',0,14),(13510,2060,'Paul',0,15),(18238,55466,'Fletch',2,0),(18238,82806,'Jimmy',2,1),(18238,47654,'Vicar',2,2),(18238,57578,'Lotte',1,3),(18238,137325,'Eva',1,4),(18238,141492,'Carmilla',1,5),(18238,141533,'Judy',1,6),(18238,141534,'Anke',1,7),(18238,141535,'Trudi',1,8),(18238,85979,'Heidi',1,9),(18238,141536,'Rebecca',0,10),(18238,141538,'Ms Rossi',0,12),(18238,141539,'Steve',0,13),(18238,141540,'Blonde',0,14),(18238,141537,'Landlord',2,15),(22600,88969,'Josh Freidlander',0,0),(22600,82190,'Inspector Blakkie Swart',2,1),(22600,13098,'Lucky Kunene',2,2),(22600,1195288,'Nazareth',0,3),(22600,1195289,'Zakes Mbolelo',0,4),(22600,1195290,'Leah Friedlander (as Shelly Meskin)',0,5),(22600,1195291,'Tony Ngu',0,6),(22600,1113974,'Young Kunene',2,7),(22600,1195292,'Young Zakes',0,8),(22600,13094,'Lucas Sithole',2,9),(22600,1195293,'Loretta Dlamini',0,10),(22600,1195294,'Young Nomsa',0,11),(22600,1195295,'Young Bull',0,12),(22600,1195296,'Mama Kunene',0,13),(12612,7400,'Sean Veil',2,0),(12612,2468,'Detective Louis Emeric',2,1),(12612,3547,'Forensic Profiler Saul Seger',2,2),(12612,5414,'Detective Mountjoy',2,3),(34335,78501,'Kelley',1,0),(34335,8659,'Shooter',2,1),(34335,112284,'Sully',2,2),(34335,112285,'Coogan',2,3),(34335,112286,'Leon',2,4),(34335,112287,'Christian',0,5),(34335,6908,'Father Francis',2,6),(34335,112288,'Chan',1,7),(34335,52885,'Vincent Perez',2,8),(11302,1243,'Fielding Mellish',2,0),(11302,9565,'Nancy',1,1),(11302,68934,'General Emilio M. Vargas',0,2),(11302,68935,'Yolanda',0,3),(11302,941548,'Esposito',2,4),(11302,87743,'Luis',2,5),(11302,237034,'Diaz',2,6),(11302,66071,'Mrs. Mellish',1,7),(11302,1396841,'Dr. Mellish',0,8),(11302,1396842,'J. Edgar Hoover',0,9),(11302,32384,'Paul',2,10),(11302,124007,'Semple',2,11),(11302,1396843,'British Ambassador',0,12),(11302,16483,'Subway Thug (uncredited)',2,14),(11302,153575,'Himself',2,15),(11302,1473301,'',2,16),(20406,61852,'Trane',2,0),(20406,86039,'Juju',2,1),(20406,77351,'Ivan',2,2),(20406,25988,'Sergei',2,3),(20406,80967,'Dave',0,4),(20406,37205,'Yuri',2,5),(20406,47770,'Blitzer',2,6),(20406,86040,'McKern',2,7),(20406,86041,'Caridad',1,8),(20406,86042,'Driggs',2,9),(20406,17194,'Army Soldier',2,10),(18616,83351,'Alex',2,0),(18616,43232,'Allison',2,1),(18616,83352,'Maya',1,2),(18616,59284,'Binky',2,3),(18616,83353,'The Salesman',2,4),(18616,71673,'Deputy Harris McAllister',2,5),(18616,83354,'Young McAllister',2,6),(18616,74573,'Sheriff McAllister',2,7),(18808,131,'Pilot Kelson',2,0),(18808,11826,'Cassie',1,1),(18808,7499,'Jack Hayes',2,2),(18808,11885,'Johnny the Fox',2,3),(18808,12799,'Scawldy',2,4),(18808,154499,'Jilly Miranda',1,5),(18808,6576,'Burt Miranda',2,6),(18808,120244,'Lucy',1,7),(12602,6102,'Roger Mont Elise',2,0),(12602,113,'Count Frederic Regula',2,1),(12602,10073,'Baroness Lilian von Brabant',1,2),(12602,38124,'Anathol',2,3),(12602,46047,'Babette',1,4),(12602,98770,'Pater Fabian',0,5),(12602,26245,'Coachman',0,6),(17768,18861,'Pseudolus',2,0),(17768,40178,'Marcus Lycus',2,1),(17768,8635,'Erronius',2,2),(17768,19610,'Hero',2,3),(17768,64929,'Hysterium',2,4),(17768,84334,'Phillia',1,5),(17768,39741,'Hero',2,6),(17768,113700,'Captain Miles Gloriosus',0,7),(17768,3463,'Gladiator Instructor',2,8),(17768,30119,'Gatekeeper',2,9),(17768,8398,'Roman Chief Guard',2,10),(17768,53818,'High Priestess',1,11),(17768,129343,'Domina',1,12),(17768,74690,'Domina\'s Mother',1,13),(17768,40960,'Crassus',0,14),(17768,91258,'Tintinabula',1,15),(13516,17087,'Michael Moore',2,0),(13516,46590,'Himself',2,1),(13516,939070,'Himself',0,2),(13516,203696,'Himself',0,3),(13516,939072,'Herself',0,4),(13516,939073,'Himself',0,5),(13516,939074,'Himself',0,6),(13516,939075,'Himself',0,7),(13516,939076,'Himself',0,8),(13516,122287,'Himself',0,9),(13516,939077,'Himself',0,10),(13516,939078,'Himself',0,11),(13516,939079,'Himself',0,12),(13516,559376,'Himself',0,13),(13516,6957,'Himself',2,14),(13516,559378,'Himself',0,15),(13516,939080,'Himself',0,16),(13516,939081,'Himself',0,17),(13516,1490,'Herself',1,18),(13516,110,'Himself',2,19),(13516,939082,'Himself',0,20),(13516,939083,'Himself',0,21),(13516,939084,'Herself',0,22),(13516,939085,'Herself',0,23),(13516,176027,'Herself',2,24),(13516,78299,'Himself',0,25),(13516,46393,'Herself',1,26),(21309,1064,'Layne',2,0),(21309,6384,'Matt',2,1),(21309,3126,'Clarissa',1,2),(21309,43774,'Samson \'John\' Tollet',2,3),(21309,2778,'Feck',2,4),(21309,37043,'Checker',2,5),(21309,93151,'',2,6),(32235,4512,'Walter O\'Brien',2,0),(32235,1733,'Father Harlan',2,1),(32235,4174,'Mrs. Hadfield',1,2),(32235,589,'Flower Hercules',1,3),(32235,1096796,'Mayor',0,4),(32235,11107,'Cod',2,5),(32235,11085,'Happy',2,6),(32235,1036441,'Irwin',2,7),(32235,41886,'Willis O\'Brien',2,8),(32235,9979,'Eddie',2,9),(32235,9629,'Arnold',2,10),(32235,6677,'Mr. Hope',2,11),(26388,10859,'Paul Conroy',2,0),(26388,43323,'Jabir (voice)',2,1),(26388,559068,'Dan Brenner (voice)',2,2),(26388,537,'Alan Davenport (voice)',2,3),(26388,20767,'Linda Conroy (voice)',1,4),(26388,1040499,'Pamela Lutti (voice)',0,5),(26388,194641,'Maryanne Conroy / Donna Mitchell / Rebecca Browning (voice)',0,6),(26388,43902,'Special Agent Harris (voice)',2,7),(26388,149665,'911 Operator (voice)',1,8),(26388,152820,'State Department Rep. (voice)',0,9),(26388,1062208,'Shane Conroy (voice)',0,10),(26388,63232,'411 Female Operator (voice)',1,11),(26388,1120589,'411 Male Operator (voice)',0,12),(26388,41227,'CRT Operator (voice)',1,13),(26388,35172,'CRT Spokesman (voice)',2,14),(26388,1208113,'Nursing Home Nurse (voice)',0,15),(26388,1208127,'Kidnapper (voice)',0,16),(26388,1208128,'Kidnapper (voice)',0,17),(26388,1208129,'Additional Voice (voice)',0,18),(26388,1145676,'Additional Voice (voice)',0,19),(12838,84432,'Lucie',1,0),(12838,73394,'Pierre',2,1),(12838,191491,'Nicolas',0,2),(12838,191503,'Su00e9bastien',0,3),(12838,303434,'Baptiste',0,4),(12838,138814,'Agnu00e8s',1,5),(12838,1303831,'Paul',2,6),(12838,109473,'Damien',0,7),(12838,19776,'Vincent Sylvaire',2,8),(12838,1303832,'Le lieutenant',0,9),(12838,1303833,'M. Saunier',0,10),(12838,239118,'Romain le skinhead',0,11),(14048,81425,'Himself',0,0),(14048,81426,'Himself',0,1),(14048,81428,'Himself',0,2),(14048,81429,'Herself',0,3),(14048,81432,'Himself',2,4),(14048,81433,'Himself',0,5),(14048,81435,'Himself',0,6),(14048,81438,'Himself',0,7),(33511,27428,'John Lennon',2,0),(33511,37058,'Julia Lennon',1,1),(33511,5470,'Mimi Smith',1,2),(33511,59081,'George Toogood Smith',2,3),(33511,18616,'Bobby Dykins',2,4),(33511,25663,'Paul McCartney',2,5),(33511,233276,'Pete Shotton',2,6),(33511,82639,'Maria Kennedy',1,7),(33511,1235008,'Michael Fishwick',0,8),(33511,1798882,'Stan Parkes',0,9),(33511,1798879,'Rod Davis',0,10),(33511,3065,'Eric Griffiths',2,11),(33511,118166,'George Harrison',2,12),(33511,151952,'Alf Lennon',0,13),(33511,1798881,'Percy Phillips',0,14),(33511,1798885,'Colin Hanton',0,15),(33511,1798883,'Len',0,16),(33511,1798884,'Nigel',0,17),(33511,1798886,'Ivan',0,18),(33511,52888,'Popjoy',2,19),(33511,570323,'Corrine',1,20),(10894,32799,'May Dove Canady',1,0),(10894,23958,'Adam Stubbs',2,1),(10894,1772,'Polly',1,2),(10894,1582,'Blank',2,3),(10894,59090,'Ambrosia',1,4),(10894,34839,'Papa Canady',2,5),(10894,105000,'Mama Canady',1,6),(10894,1466186,'Young May',0,7),(10894,1466187,'Petey',0,8),(10894,34070,'Hoop',1,9),(10894,32363,'Chris, Adam\'s Roommate',2,10),(10894,82339,'Buckle',1,11),(10894,177722,'Lucille',1,12),(10894,1443797,'Diedre',1,13),(10894,6734,'Foreign Doctor',2,14),(10894,1466188,'Zombie',0,15),(10894,51534,'Guy Making Out in Elevator',2,16),(32579,36628,'Rosario',1,1),(32579,18460,'Carlos Reyes \'Carlitos\'',2,2),(32579,239574,'Enrique',0,3),(32579,59174,'Martha',1,4),(32579,23877,'Benita Reyes',0,6),(32579,36638,'Alicia',1,7),(32579,931984,'Paco',2,8),(32579,955272,'Reyna',1,9),(32579,66525,'David',2,13),(32579,1238412,'Oscar',0,14),(32579,243046,'Dou00f1a Carmen \'La Coyota\'',1,15),(24066,18324,'Wayne Wayne Wayne Jr.',2,0),(24066,3905,'Sheriff Chappy Dent',2,1),(24066,18325,'Harry Sawyer',2,2),(24066,18316,'Josephine \'Joe\' McClintock',1,3),(24066,2372,'Marshal Nalhober',2,4),(24066,7796,'Doreen Schaefer',1,5),(24066,22132,'Robert \'Bob\' Allen Maslow',2,6),(24066,49833,'Mrs. Bromley',1,7),(24066,15900,'The Judge',2,8),(25312,11148,'She',1,0),(25312,10917,'He',2,1),(25312,4783,'Anthony',2,2),(25312,1834,'Cleaner',1,3),(25312,23587,'Grace',1,4),(25312,93839,'Aunt',1,5),(25312,480,'Billy',2,6),(34106,30210,'Alice Sycamore',1,0),(34106,17753,'Grandpa Martin Vanderhof',2,1),(34106,854,'Tony Kirby',2,2),(34106,30211,'Anthony P. Kirby',2,3),(34106,39801,'Boris Kolenkhov',2,4),(34106,15008,'Essie Carmichael',1,5),(34106,20369,'Penny Sycamore',1,6),(34106,17756,'Paul Sycamore',0,7),(34106,14968,'Mr. Poppins',2,8),(34106,33278,'Mr. Ramsey',0,9),(34106,29601,'Mr. DePinna',0,10),(34106,6463,'Ed Carmichael',0,11),(34106,81941,'Mrs. Anthony P. Kirby',1,12),(34106,399224,'Rheba',1,13),(34106,98571,'Donald',0,14),(34106,89102,'John Blakely',2,15),(34106,133099,'Professor',2,16),(34106,2772,'Maggie O\'Neill',1,17),(34106,985275,'Schmidt',2,18),(34106,9090,'Mrs. Schmidt',0,19),(34106,29579,'Henderson',2,20),(34106,11502,'Judge',2,21),(34106,30530,'Henry - the Head Waiter (uncredited)',2,22),(34106,4303,'Mike - the Detective (uncredited)',2,23),(34106,14453,'Chief Detective (uncredited)',2,24),(34106,120734,'Plainclothes Policeman (uncredited)',2,25),(34106,141304,'Miss Jones - Blakely\'s Secretary (uncredited)',1,26),(34106,33034,'Blakely\'s Inquisitive Office Worker (uncredited)',2,27),(34106,1240252,'Bill - Plainclothes Policeman (uncredited)',0,28),(34106,125842,'Police Guard at Courtroom Entrance (uncredited)',2,29),(34106,30262,'Lord Melville (uncredited)',2,31),(34106,1181275,'Inmate Wearing Black Cap (uncredited)',0,32),(34106,14455,'Kirby\'s Dining Guest (uncredited)',2,33),(34106,975306,'Court Attendant (uncredited)',2,34),(34106,13969,'Kirby\'s Attorney (uncredited)',2,35),(34106,120708,'Board Member (uncredited)',2,36),(34106,179384,'Inmate (uncredited)',1,37),(34106,13361,'Kirby\'s Attorney (uncredited)',2,38),(34106,569144,'Restaurant Patron (uncredited)',2,39),(34106,1016691,'Guard (uncredited)',2,40),(34106,100945,'Policeman (uncredited)',2,41),(34106,13791,'Neighbor Helping with Move (uncredited)',2,42),(34106,2782,'Kirby\'s Secretary (uncredited)',2,43),(34106,1292673,'Bobby (uncredited)',0,44),(34106,34505,'Attorney to Kirby at Arraignment (uncredited)',2,45),(34106,1273898,'Reporter (uncredited)',0,46),(34106,34086,'Kirby\'s Office Aide (uncredited)',0,47),(34106,1018011,'Neighbor (uncredited)',2,48),(34106,1295853,'Neighbor (uncredited)',0,49),(34106,139183,'Neighbor (uncredited)',0,50),(34106,129544,'Neighbor (uncredited)',1,51),(34106,1271045,'Neighbor (uncredited)',0,52),(34106,1072363,'Neighbor (uncredited)',0,53),(34106,1108832,'Neighbor (uncredited)',1,54),(34106,89012,'Neighbor (uncredited)',0,55),(34106,1275116,'Neighbor (uncredited)',0,56),(34106,1064924,'Neighbor (uncredited)',0,57),(34106,1420624,'Neighbor (uncredited)',0,58),(34106,121306,'Neighbor (uncredited)',0,59),(34106,121308,'Neighbor (uncredited)',0,60),(34106,1197566,'Neighbor (uncredited)',0,61),(34106,1468089,'Neighbor (uncredited)',0,62),(34106,144012,'Neighbor (uncredited)',1,63),(34106,955388,'Neighbor (uncredited)',0,64),(34106,927616,'Neighbor (uncredited)',1,65),(34106,1467394,'Neighbor (uncredited)',0,66),(34106,103922,'Mary (uncredited)',0,67),(34106,1086622,'Taxi Driver (uncredited)',2,68),(34106,164809,'Restaurant Patron (uncredited)',2,69),(34106,34241,'Newsboy (uncredited)',2,70),(34106,1141147,'Child Dancer (uncredited)',1,71),(34106,589217,'Bill Hughes (uncredited)',2,72),(34106,30280,'Hammond (uncredited)',2,73),(34106,1195240,'Barber (uncredited)',0,74),(34106,153638,'Strongarm Man (uncredited)',2,75),(34106,946334,'Trustee (uncredited)',2,76),(34106,1199590,'Reporter (uncredited)',0,77),(34106,121122,'Reporter (uncredited)',2,78),(34106,121098,'Reporter (uncredited)',0,79),(34106,157335,'Reporter (uncredited)',2,80),(34106,145828,'Reporter (uncredited)',2,81),(34106,122979,'Expressman (uncredited)',2,82),(34106,141010,'Woman (uncredited)',1,83),(34106,1078453,'Woman (uncredited)',0,84),(34106,1112944,'Woman (uncredited)',0,85),(34106,1459371,'Woman (uncredited)',0,86),(34106,1198893,'Woman (uncredited)',0,87),(34106,145717,'Woman (uncredited)',0,88),(34106,145711,'Woman (uncredited)',1,89),(34106,1420903,'Man (uncredited)',0,90),(34106,240805,'Man (uncredited)',0,91),(34106,1204349,'Man (uncredited)',0,92),(34106,1422389,'Man (uncredited)',0,93),(34106,120437,'Man (uncredited)',2,94),(34106,137405,'Man (uncredited)',0,95),(34106,1109646,'Man (uncredited)',0,96),(34106,100800,'Man (uncredited)',0,97),(34106,113491,'Man (uncredited)',0,98),(34106,116307,'Man (uncredited)',0,99),(34106,1422194,'Man (uncredited)',0,100),(34106,1381975,'Man at Jail (uncredited)',0,101),(34106,1290486,'Man (uncredited)',0,102),(34106,1183712,'Child Dancer (uncredited)',0,103),(34106,34508,'Bank Manager (uncredited)',0,104),(34106,14420,'Police Sergeant (uncredited)',2,105),(34106,133100,'Worried Neighbor (uncredited)',2,106),(34106,3262,'Jailer (uncredited)',2,107),(34106,96722,'Kirby\'s Assistant (uncredited)',2,108),(34106,1421014,'Bank Clerk (uncredited)',0,109),(34106,148391,'Bank Clerk (uncredited)',0,110),(34106,932310,'Bank Guard (uncredited)',0,111),(34106,1420879,'Bank Clerk (uncredited)',0,112),(34106,1420542,'Bank Clerk (uncredited)',0,113),(34106,1433425,'Bank Clerk (uncredited)',0,114),(34106,1271351,'Child Dancer (uncredited)',0,115),(34106,1422296,'Child Dancer (uncredited)',0,116),(34106,34187,'Guard (uncredited)',2,117),(34106,1204352,'Ice Man (uncredited)',0,119),(34106,1439914,'Doorman (uncredited)',0,120),(34106,995920,'Office Manager (uncredited)',2,121),(34106,1186832,'Attorney to Kirby at Arraignment (uncredited)',0,122),(34106,96060,'Attorney to Kirby (uncredited)',2,123),(34106,47001,'Trustee (uncredited)',0,124),(34106,1092484,'Policeman in Park (uncredited)',2,125),(34106,1284767,'Diner (uncredited)',0,126),(34106,140817,'Matron (uncredited)',1,127),(34106,121066,'Bailiff (uncredited)',2,128),(34106,1221283,'Lady Melville (uncredited)',0,129),(34106,1318795,'Mrs. Leach (uncredited)',0,130),(34106,1434259,'Court Policeman (uncredited)',0,131),(34106,33362,'Mac (uncredited)',0,132),(34106,120446,'Drunk (uncredited)',0,133),(34106,33705,'Executive (uncredited)',2,134),(34106,1208035,'Court Bailiff (uncredited)',0,135),(34106,139182,'Kirby\'s Dining Guest (uncredited)',0,136),(34106,96724,'Strongarm Man (uncredited)',2,137),(34106,590550,'Governor Leach (uncredited)',2,138),(34106,30216,'Attorney to Kirby (uncredited)',2,139),(34106,30243,'Expressman (uncredited)',0,140),(34106,988794,'Kirby\'s Secretary (uncredited)',2,141),(34106,1472495,'Russian General in Jail (uncredited)',0,142),(11426,13784,'1st Sgt. Milton Warden',2,0),(11426,12151,'Pvt. Robert E. Lee \'Prew\' Prewitt',2,1),(11426,20141,'Karen Holmes',1,2),(11426,17752,'Alma \'Lorene\' Burke',1,3),(11426,4347,'Pvt. Angelo Maggio',2,4),(11426,2644,'Capt. Dana Holmes',2,5),(11426,3442,'Cpl. Leva',2,6),(11426,69026,'Pvt. Mazzioli',2,7),(11426,7502,'Sgt. James R. \'Fatso\' Judson',2,8),(11426,5251,'Cpl. Buckley',2,9),(11426,134613,'Sgt. Ike Galovitch',2,10),(11426,121082,'Sal Anderson',0,11),(11426,85996,'Sgt. Pete Karelsen',2,12),(11426,977392,'Treadwell',2,13),(11426,94994,'Mrs. Kipfer',1,14),(11426,4307,'Sgt. \'Baldy\' Dhom (uncredited)',2,15),(11426,11496,'Sergeant Maylon Stark (uncredited)',2,16),(13909,4165,'Capt. Nathan Cutting Brittles',2,0),(13909,30296,'Olivia Dandridge',1,1),(13909,103071,'Lt. Flint Cohill',2,2),(13909,8258,'Sgt. Tyree',2,3),(13909,4316,'2nd Lt. Ross Pennell',2,4),(13909,30495,'First Sergeant Quincannon',2,5),(13909,12969,'Abby Allshard (Old Iron Pants)',1,6),(13909,9087,'Maj. Mac Allshard',2,7),(13909,22603,'Dr. O\'Laughlin',2,8),(13909,82510,'Sgt. Hochbauer',2,9),(13909,113710,'Chief Pony That Walks',0,10),(13909,111827,'Sgt. Hench',2,11),(13909,1656990,'Chief Sky Eagle',0,12),(13909,14970,'Cpl. Mike Quayne',2,13),(13909,3247,'Chief Red Shirt',2,14),(13909,8496,'Gunrunner (uncredited)',2,15),(13909,30496,'Connelly - Fort Stark Suttlers Barman (uncredited)',2,16),(13909,190775,'Trooper Cliff (uncredited)',0,17),(13909,50308,'Bugler / Indian (uncredited)',2,18),(13909,20370,'Narrator (voice) (uncredited)',2,19),(13909,1349872,'Officer (uncredited)',0,20),(13909,1422281,'Officer (uncredited)',0,21),(13909,94897,'Trooper (uncredited)',2,22),(13909,100920,'Karl Rynders (uncredited)',2,23),(27455,62842,'Miles \'Foolish\' Waise',2,0),(27455,65164,'Quentin \'Fifty Dollah\' Waise',2,1),(27455,97778,'Desiree',0,2),(27455,11480,'Giovanni',2,3),(27455,97779,'Clarisse',1,4),(27455,783,'Numbers',2,5),(27455,57906,'El Dorado Ron',0,6),(27455,20761,'Paris',2,7),(27455,68751,'Odetta',1,8),(27455,97780,'Simone',1,9),(27455,5502,'Jimmy Beck',2,10),(27455,55632,'Alabama Brown',0,11),(27455,58924,'Everette Washington',2,12),(27455,83101,'Himself',2,13),(15976,82097,'Noam',0,0),(15976,312548,'Ashraf',0,1),(15976,583780,'Lulu',0,2),(15976,583781,'Yali',0,3),(15976,1700095,'Shaul',0,4),(15976,996262,'Rana',1,5),(15976,1528179,'Sharon',0,6),(15976,584178,'Golan',0,7),(25428,56595,'Jane',2,0),(25428,20750,'Samantha',1,1),(25428,92857,'Charlotte',1,2),(25428,15440,'Yehud',2,3),(25428,11866,'John',2,4),(25428,18070,'Goateed Man',2,5),(25428,11662,'Larry Hortense',2,6),(25428,679,'Mia Lang',1,7),(25428,1771,'Gray Evans',2,8),(25428,6886,'Shana',1,9),(25428,4937,'Stiev',2,10),(10758,41292,'Jenna',1,0),(10758,51797,'Dr. Pomatter',2,1),(10758,65562,'Old Joe',2,2),(10758,57854,'Becky',1,3),(10758,1898,'Ogie',2,4),(10758,23958,'Earl',2,5),(10758,66496,'Dawn',1,6),(10758,37027,'Cal',2,7),(10758,66497,'Francine Pomatter',1,8),(10758,66501,'Hospital Nurse',1,9),(10758,66499,'Nurse Norma',1,10),(10758,66502,'Minister',2,11),(10758,66498,'Exhausted Mother',0,12),(10758,66500,'Dr. Lily Mueller',1,13),(10758,66503,'Doctor\'s Assistant',0,14),(10758,1476,'Pregnant Woman #1',0,15),(10758,66504,'Pregnant Woman',0,16),(10758,66506,'Flower Girl',0,17),(10758,66505,'Obnoxious Toddler',0,18),(10758,66507,'Char',0,19),(11690,15111,'Frank Dux',2,0),(11690,58123,'Chong Li',2,1),(11690,695,'Senzo Tanaka',0,2),(11690,70591,'Captain Chen',2,3),(11690,70254,'Ray Jackson',2,4),(11690,70255,'Victor Lin',0,5),(11690,114809,'Janice Kent',1,6),(11690,10195,'Helmer',2,7),(11690,2178,'Rawlins',2,8),(10707,8447,'Bernard Berkman',2,0),(10707,350,'Joan Berkman',1,1),(10707,44735,'Walt Berkman',2,2),(10707,66257,'Frank Berkman',2,3),(10707,13021,'Ivan',2,4),(10707,10690,'Lili',1,5),(10707,1294153,'Carl',0,6),(10707,513378,'Graduate Student',1,7),(10707,109513,'Pretty Girl',1,8),(10707,928396,'Sophie Greenberg',1,9),(10707,1788144,'Graduate Student',0,10),(10707,1788145,'Graduate Student',0,11),(10707,1788146,'Graduate Student',0,12),(10707,1788147,'Graduate Student',0,13),(10707,1788148,'Graduate Student',0,14),(10707,1788149,'Graduate Student',0,15),(10707,1788150,'Graduate Student',0,16),(10707,1788151,'Graduate Student',0,17),(10707,1788152,'Graduate Student',0,18),(10707,1788153,'Graduate Student',0,19),(10707,1538829,'Graduate Student',0,20),(10707,1332423,'Man with Joan',0,21),(10707,962997,'Otto',2,22),(10707,1675802,'Lance',0,23),(10707,1570321,'Jeffrey',0,24),(10707,1788154,'Talent Show Judge',0,25),(10707,382960,'Talent Show Judge',2,26),(10707,1788155,'Talent Show Judge',0,27),(10707,1788156,'Talent Show Judge',0,28),(10707,46397,'Mrs. Greenberg',1,29),(10707,1788157,'Greta Greenberg',0,30),(10707,1788158,'Professor',0,31),(10707,1788159,'Student with Puppets',0,32),(10707,121939,'Mr. Simic',2,33),(10707,1788160,'Jeb Gelber',0,34),(10707,171472,'Ms. Lemon',0,35),(10707,1788161,'Hector',0,36),(10707,2131,'School Therapist',2,37),(10707,184040,'Nurse',1,38),(10707,1788162,'Valet',0,39),(10707,1745019,'Student',0,40),(15647,119368,'Jessica Stein',1,0),(15647,41640,'Judy Stein',1,1),(15647,574094,'Grandma Esther',0,2),(15647,574095,'Rabbi',0,3),(15647,65717,'Charles',2,4),(15647,83721,'Josh Myers',2,5),(15647,88961,'Larry',2,6),(15647,146391,'Peter',2,7),(15647,171811,'Rachel - Dan\'s Fiancu00e9e',1,8),(20156,21089,'Francis',2,0),(20156,18658,'Christina',1,1),(20156,13550,'Eric',2,2),(20156,20173,'Thomas',2,3),(20156,98,'Tracey Brown',1,4),(20156,7708,'Zoe',1,5),(20156,8536,'Harold',2,6),(20156,58805,'Inspector',2,7),(20156,123319,'Customs Officer',2,8),(20156,123320,'Man in Taxi',2,9),(20156,123323,'Scalper',2,10),(20156,61159,'Man at opera',2,11),(20156,123326,'Doorman',2,12),(20156,111817,'Man at Opera',2,13),(13820,5048,'Bud',2,0),(13820,2880,'Otto Maddox',2,1),(13820,3801,'Miller',2,2),(13820,65554,'Leila',1,3),(13820,58623,'Lite',2,4),(13820,104059,'Agent Rogersz',1,5),(13820,97701,'J. Frank Parnell',2,6),(13820,154713,'Oly',2,7),(13820,100062,'Lagarto',2,8),(13820,88031,'Napo',2,9),(13820,99404,'Kevin',0,10),(13820,58629,'Debbi',1,11),(13820,58622,'Duke',2,12),(13820,30488,'Archie',2,13),(13820,6780,'Marlene',1,14),(13820,47771,'Plettschner',2,15),(13820,1018001,'Reverend Larry',0,16),(18079,69310,'Marcos',2,0),(18079,119671,'Juan',2,1),(18079,96918,'Valu00e9ria',1,2),(18079,1372517,'Convenience Store Employee 2',0,3),(18079,113018,'Convenience Store Manager',0,4),(18079,1148662,'Aunt',0,5),(18079,122708,'Anu00edbal',2,6),(18079,138696,'Vidal Gandolfo',0,7),(18079,1059956,'Man on Cell Phone',2,8),(18079,101690,'Federico',2,9),(18079,74912,'Washington',2,10),(18079,944066,'D\' Agostino',2,11),(18079,1348332,'Berta',0,12),(18079,1313069,'Ramiro',0,13),(18079,638709,'Cu00e1rdenas',2,14),(18079,1084274,'Spanish Voice',0,15),(18079,1526989,'Castrito (uncredited)',0,16),(17113,11856,'Jack Slavin',2,0),(17113,38670,'Rose Slavin',1,1),(17113,2229,'Kathleen',1,2),(17113,153516,'Rodney',0,3),(17113,17142,'Thaddius',2,4),(17113,11662,'Gray',2,5),(17113,20089,'Red Berry',1,6),(17113,2222,'Marty Rance',2,7),(17113,62547,'Miriam Rance',1,8),(14054,3967,'Annie Marchand',1,0),(14054,6807,'Glenn Marchand',2,1),(14054,11665,'Arthur Parkinson',2,2),(14054,52442,'Lila Raybern',1,3),(14054,12110,'Barb Petite',1,4),(14054,2842,'Louise Parkinson',1,5),(14054,2171,'Don Parkinson',0,6),(14054,18070,'Nate Petite',2,7),(14054,4738,'Warren Hardesky',2,8),(14054,119232,'Mr. Chervenick',2,9),(10972,3064,'Gordon',2,0),(10972,16560,'Phil',2,1),(10972,46395,'Mike',2,2),(10972,6164,'Hank',1,3),(10972,2839,'Jeff',2,4),(10972,925,'Bill Griggs',2,5),(10972,31268,'Craig McManus',2,6),(10972,1265046,'Security Guard',0,7),(10972,188049,'Doctor',2,8),(13066,60074,'James Aaron',2,0),(13066,7404,'Beth',1,1),(13066,5149,'Stella Lewis',1,2),(13066,18050,'Penelope',1,3),(13066,26974,'Fake Daughter',0,4),(11908,59231,'Ben',2,0),(11908,70899,'Marybeth',1,1),(11908,35596,'Marcus',2,2),(11908,62596,'Victor Crowley',2,3),(11908,123149,'Misty',1,4),(11908,77993,'Shawn',2,5),(11908,155649,'Doug Shapiro',2,6),(11908,966742,'Jenna',1,7),(11908,18262,'Jim Permatteo',2,8),(11908,54044,'Shannon Permatteo',1,9),(11908,5139,'Sampson',2,10),(11908,26852,'Ainsley',2,11),(11908,19384,'Reverend Zombie',2,12),(11908,64722,'Jack Cracker',2,13),(11908,131822,'Young Victor Crowley',0,14),(30082,105668,'Laura',1,0),(30082,9626,'Alan James',2,1),(30082,16428,'Michael James (as Darren Burrows)',2,2),(30082,1140620,'Sam James',0,3),(30082,214496,'Cindy, Babysitter (as Liz Morton)',0,4),(30082,174254,'Aunt Betty',1,5),(30082,4734,'Celia',1,6),(23963,230,'Grant Mazzy',2,0),(23963,90682,'Sydney Briar',1,1),(23963,90683,'Laurel-Ann Drummond',1,2),(23963,44155,'Dr. Mendez',2,3),(23963,3720,'Ken Loney (voice)',2,4),(23963,145601,'Conversationalist',2,5),(23963,133327,'Nigel Healing',2,6),(23963,178076,'Nancy Freethy',0,7),(23963,90684,'Tony (Lawrence)',2,8),(23963,20196,'Jay (Osama)',2,9),(23963,1639993,'Maureen (Farraj)',0,10),(23963,1787027,'Colleen (Daud)',0,11),(23963,1617305,'Spooky Woman',0,12),(29406,11705,'Diane Ford',1,0),(29406,51797,'Runner',2,1),(29406,16484,'Jenny Bell',1,2),(29406,6860,'Peter',2,3),(29406,21027,'Plum',1,4),(29406,4589,'Leonard Bonner',2,5),(29406,78406,'Tommy',2,6),(29406,7679,'Trucker',2,7),(29406,65769,'Rick',2,8),(29406,86187,'Jonnie',2,9),(29406,27104,'Teenager #1',2,10),(29595,104310,'Himself - President & CEO of Wal-Mart (archive footage)',0,0),(29595,555214,'Himself - H&H Hardware Owner',0,1),(29595,555215,'Himself - Son of Don Hunter',0,2),(29595,555216,'Himself - Son of Jon Hunter',0,3),(29595,555217,'Himself - Son of Jon Hunter',0,4),(29595,555218,'Himself - H&H Hardware Employee',0,5),(29595,555219,'Himself - Owner of Middlefield Tire',0,6),(29595,555220,'Himself - Owner of Geauga Vision (as Dr. John Bruening)',0,7),(29595,555221,'Himself - H&H Hardware Employee',0,8),(29595,555222,'Himself - Wal-Mart Store Manager Trainer',0,9),(29595,555223,'Himself - Founder of Sprawl-Busters',0,10),(29595,555224,'Herself - Hearne, Texas Resident',0,11),(29595,555225,'Herself - Wal-Mart Employee',0,12),(29595,555226,'Herself - Wal-Mart Employee',0,13),(29595,555227,'Himself - Wal-Mart District Loss Prevention Manager',0,14),(29595,555228,'Himself - Wal-Mart Store Manager',0,15),(29595,555229,'Himself - Wal-Mart Employee',0,16),(29595,555230,'Himself - Wal-Mart Employee',0,17),(29595,555231,'Herself - Wal-Mart Employee',0,18),(29595,555232,'Himself - Wal-Mart Employee',0,19),(29595,555233,'Herself - Wal-Mart Inventory Specialist',0,20),(29595,555234,'Himself - Wal-Mart UFCW Union Rep',0,21),(29595,555235,'Himself - Wal-Mart Assistant Manager (voice)',0,22),(27845,884,'Tommy',2,0),(27845,2838,'Debbie',1,1),(27845,10556,'Connie',1,2),(27845,534,'Mike',2,3),(27845,223797,'Bill',2,4),(27845,57829,'Rob',2,5),(27845,54883,'Raymond',2,6),(27845,54887,'Theresa',1,7),(27845,6401,'Stan',2,8),(27845,2231,'Wendell',2,9),(27845,999736,'Kelly',1,10),(27845,1590957,'Little Girl',1,11),(27845,6395,'Marie',1,12),(25784,143432,'Ba Noi (Grandmother)',1,0),(25784,111185,'Long',2,1),(25784,143433,'Mai',0,2),(25784,143434,'Thanh',2,3),(25784,143435,'Nam',0,4),(25784,81194,'Phuong',1,5),(25784,143436,'Lai',0,6),(25784,1542133,'Miss Patty',0,7),(19187,6163,'Mordechai Jefferson Carver',2,0),(19187,20750,'Esther Bloomenbergensteinenthal',1,1),(19187,43120,'Damian Claus',2,2),(19187,16214,'Mohammed Ali Paula Abdul Rahim',2,3),(27588,58899,'Sandy Channing',1,0),(27588,88076,'Eli Channing',2,1),(27588,98271,'Hannah',1,2),(27588,98272,'Layla',1,3),(27588,98274,'Jake Mitchell',2,4),(27588,98275,'Angela Smith',1,5),(27588,98276,'T.J',2,6),(27588,98277,'Chad',2,7),(27588,98278,'Cecilia',0,8),(27588,98279,'Young Sandy',0,9),(27588,98280,'Young Eli',0,10),(27588,98281,'Young Hannah',0,11),(27588,98282,'Young Layla',0,12),(27588,98283,'Young Lex',0,13),(27588,98284,'Young Jake',0,14),(27588,98285,'Young Angela',1,15),(27588,98286,'Young Chad',2,16),(27588,42740,'Mr. Channing',2,17),(27588,93321,'Zack Mitchell',2,18),(27588,98287,'Mrs. Channing',1,19),(27588,98288,'Father Michael',2,20),(27588,98234,'Sister Dolores',1,21),(27588,98289,'Nikolai',0,22),(27588,98290,'Nurse Patton',0,23),(27588,98291,'Doctor Warren',0,24),(27588,98292,'Nurse Garcia',0,25),(27588,98293,'Deputy Buck',2,26),(27588,94149,'Maintenance Man',0,27),(27588,98294,'Bikini Model',0,28),(27588,98295,'Littlest Orphan Girl',0,29),(27588,98296,'Pale Boy',0,30),(27588,98297,'Orphan Girl',1,31),(27588,15988,'Foreman Pete',2,32),(27588,118362,'Lex Mitchell',1,33),(28580,7124,'Don Birnam',2,0),(28580,20391,'Helen St. James',1,1),(28580,101490,'Wick Birnam',2,2),(28580,79247,'Nat',2,3),(28580,79248,'Gloria',1,4),(28580,17759,'\'Bim\' Nolan',2,5),(28580,34469,'Mrs. Deveridge',1,6),(28580,98495,'Mrs. Foley',1,7),(28580,101493,'Mrs. Charles St. James',1,8),(28580,30240,'Opera Cloak Room Attendant',2,9),(28580,89586,'Charles St. James',2,10),(28580,12356,'Hospital patient who sees imaginary beetles',0,11),(28580,220927,'Alcoholic (uncredited)',2,13),(28580,85990,'Man from Albany (uncredited)',2,14),(28580,1143201,'Pianist at Harry & Joe\'s (uncredited)',0,15),(28580,130485,'(uncredited)',0,16),(28580,1492406,'Guard (uncredited)',0,17),(28580,103185,'Dave (uncredited)',0,18),(28580,1208020,'Man in Nightclub Washroom (uncredited)',2,19),(28580,991173,'Mrs. Wertheim\'s Assistant (uncredited)',0,20),(28580,1262288,'Cloakroom Attendant (uncredited)',0,21),(28580,1010448,'Mrs. Frink (uncredited)',1,22),(28580,975597,'Concert Attendee (uncredited)',2,23),(28580,96722,'Shopkeeper (uncredited)',2,24),(28580,1007719,'M. (uncredited)',1,25),(28580,935649,'Headwaiter (uncredited)',2,27),(28580,177937,'Smoking Man (uncredited)',2,28),(28580,1208030,'Male Nurse (uncredited)',0,29),(28580,1345833,'Nightclub Guest (uncredited)',0,30),(28580,128944,'Baby (uncredited)',0,31),(28580,97226,'Mr. Brophy (uncredited)',2,32),(28580,109724,'Doorman (uncredited)',0,33),(28580,111431,'Cloak Room Attendant (uncredited)',1,34),(28580,1209840,'Jewish Man (uncredited)',0,35),(28580,983505,'Hardware Man (uncredited)',2,36),(28580,100945,'Nurse (uncredited)',2,37),(28580,47001,'Drunk in Alcoholic Ward (uncredited)',0,38),(28580,105456,'Irishman (uncredited)',0,39),(28580,103753,'Liquor Store Proprietor (uncredited)',2,40),(28580,1060113,'Irishman (uncredited)',2,41),(28580,1179784,'Shaky and Sweaty Man (uncredited)',0,42),(28580,117681,'Fruit Clerk (uncredited)',0,43),(28580,129426,'George (uncredited)',0,44),(28580,975881,'Jewish Man (uncredited)',2,45),(28580,951965,'Guard (uncredited)',2,46),(28580,1268681,'Mattress Man (uncredited)',0,47),(28580,154178,'Woman in Bar (uncredited)',1,48),(28580,955691,'Drunk in Alcoholic Ward (uncredited)',2,49),(28580,955809,'Washroom Attendant at Harry & Joe\'s (uncredited)',2,50),(28580,34008,'Doctor (uncredited)',0,51),(28580,120178,'Mike (uncredited)',2,52),(28580,1271641,'Pawnbroker with Helen\'s Coat (uncredited)',0,53),(28580,120170,'Mrs. Wertheim (uncredited)',1,54),(28580,117770,'Waiter at Harry & Joe\'s Bar (uncredited)',2,55),(28580,96258,'Black Man Talking to Himself (uncredited)',2,56),(28580,1045763,'Drunk (uncredited)',0,57),(28580,1185019,'Woman Before Pawn Shop (uncredited)',1,58),(28580,135824,'Man with Bandaged Ear (uncredited)',2,59),(28580,1667613,'Nurse (uncredited)',0,60),(23730,11512,'George Cooper',2,0),(23730,11511,'A.J. \'The Reverend\' Shepherd',2,1),(23730,90519,'Captain Bosch',2,2),(23730,387,'Lauren Daniels',1,3),(23730,90528,'Flora Bosch',0,4),(23730,90529,'Francine the Landlady',1,5),(23730,90530,'Justin',0,6),(23730,51963,'Fuller',2,7),(23730,90531,'Officer Sanderson',1,8),(23730,5176,'Officer Crespi',2,9),(23730,149214,'Hays',2,10),(23730,8692,'Chief O\'Brien',2,11),(23730,1042,'Interrogation Cop',2,12),(23730,156591,'Mrs. Monroe',0,13),(23730,21757,'Murphy',2,14),(23730,13936,'Sgt. Parker',2,15),(23730,1230,'Cop in Diner',2,16),(23730,21105,'Cop in Diner',2,17),(19997,3149,'Rose Loomis',1,0),(19997,7664,'George Loomis',2,1),(19997,19216,'Polly Cutler',1,2),(19997,85409,'Ray Cutler',2,3),(19997,85410,'Inspector Starkey',2,4),(19997,38238,'Patrick',2,5),(19997,45582,'Mr. J.C. Kettering',2,6),(19997,19781,'Mrs. Kettering',1,7),(19997,40203,'Mr. Qua',2,8),(19997,34279,'Boatman',2,9),(19997,102002,'Mrs. McGrand',1,10),(19997,4316,'Taxi driver',2,11),(19997,33479,'Motorcycle Cop (uncredited)',2,12),(19997,151846,'Motorcycle Cop (uncredited)',2,13),(19997,1289815,'Young Man (uncredited)',0,14),(19997,537962,'Young Man (uncredited)',2,15),(19997,117696,'Customs Officer (uncredited)',2,16),(19997,132256,'Dancer (uncredited)',0,17),(19997,151598,'Carillon Tower Guide (uncredited)',0,18),(19997,83806,'Taxi Driver (uncredited)',0,19),(19997,82488,'Doctor (uncredited)',2,20),(19997,1208035,'Doctor (uncredited)',0,21),(19997,30501,'Sam (uncredited)',2,22),(19997,95943,'Detective (uncredited)',0,23),(19997,1534585,'Husband (uncredited)',0,24),(19997,148600,'Wife (uncredited)',0,25),(19997,1510525,'Guide (uncredited)',0,26),(14295,350,'Samantha Prescott',1,0),(14295,103,'Terry Prescott',2,1),(14295,4756,'Brian Everett',2,2),(14295,4602,'Bob Steegerson',2,3),(14295,28042,'Rudy Prescott',2,4),(14295,928396,'Amy',1,5),(14295,52475,'Mabel',1,6),(14295,6164,'Rudy (Kolinski) Sr.',1,7),(14295,12930,'Sheila',1,8),(14295,39388,'Rachel Louise Prescott',1,9),(14295,61607,'Sheriff Darryl',2,10),(14295,30711,'Ron',2,11),(14295,104039,'Nancy Everett',1,12),(14295,1516290,'Rudy Sr.\'s Girlfriend',0,13),(14295,121939,'Thomas Gerard Prescott',2,14),(14295,1257389,'Young Sammy Prescott',0,15),(14295,1516288,'Young Terry Prescott',0,16),(14295,133047,'Minister',1,17),(14295,169263,'Waitress',0,18),(14295,1516289,'Plumber',0,19),(14295,1516291,'Older Cop',0,20),(14295,1516292,'Young Cop',0,21),(11219,22600,'Capt. Albert Wiles',2,0),(11219,24367,'Sam Marlowe',2,1),(11219,4090,'Jennifer Rogers',1,2),(11219,12969,'Miss Ivy Gravely',1,3),(11219,68642,'Mrs. Wiggs',1,4),(11219,68643,'Arnie Rogers',2,5),(11219,19968,'Deputy Sheriff Calvin Wiggs',2,6),(11219,1229744,'The Millionaire',0,7),(11219,120459,'The Tramp',0,8),(11219,1544193,'Dr. Greenbow',0,9),(11219,1732463,'Harry Worp',0,10),(11219,1732464,'Ellis',0,11),(11219,1732465,'Art Critic from the Modern Museum',0,12),(11219,2636,'Man Walking Past Sam\'s Outdoor Exhibition',2,13),(20770,10871,'Megan',1,0),(20770,181575,'Jared',0,1),(20770,4971,'Peter',2,2),(20770,1812,'Kimberly',1,3),(20770,78589,'Mike',2,4),(20770,15091,'Hilary Vandermueller',1,5),(20770,55541,'Rock',2,6),(20770,20387,'Graham Eaton',1,7),(20770,14702,'Mary Brown',1,8),(20770,226344,'Joel Goldberg',2,9),(20770,77350,'Andre',2,10),(20770,13391,'Dolph',2,11),(20770,74573,'Mr. Eaton',2,13),(20770,1146,'Lipstick Lesbian',1,14),(20770,65561,'Clayton Dunn',2,15),(20770,15012,'Sinead Laurent',0,16),(20770,13591,'Larry Morgan-Gordon',2,17),(20770,1882320,'Jan',0,18),(20770,1214023,'Lloyd Morgan-Gordon',2,19),(20770,9292,'Nancy',1,20),(20770,1808148,'Joel\'s Father',0,21),(20770,111385,'Graham\'s Stepmom',1,22),(16433,9656,'Phil Kaufman',2,0),(16433,18979,'Barbara',1,1),(16433,16856,'Gram Parsons',2,2),(16433,6407,'Susie',1,3),(16433,5694,'Stanley Parsons',2,4),(16433,335,'Larry Oster-Berg',2,5),(15544,51935,'Male Voice (voice)',2,0),(15544,78341,'Mike',0,1),(15544,43946,'New Tabitha',1,2),(15544,39995,'Fred',2,3),(15544,51391,'Chuck',2,4),(15544,78342,'Stacy',1,5),(15544,26457,'Himself',2,6),(15544,13924,'Jane',1,7),(15544,6213,'Mateus',0,8),(15544,5621,'Mr. Matthews',2,9),(15544,78431,'Len',2,10),(13064,105158,'Mitchell Goosen',2,0),(13064,13922,'Wiley',2,1),(13064,95939,'Nikki',1,2),(13064,227199,'Jack',2,3),(13064,3202,'Aunt Irene',1,4),(13064,75325,'Uncle Louis',2,5),(13064,10402,'Gloria',1,6),(13064,16429,'Snake',2,7),(13064,90555,'Tony Banducci',0,8),(13064,227212,'Mark Banducci',0,9),(13064,155031,'Mr. Goosen',2,10),(13064,157637,'Mrs. Goosen',1,11),(13064,70851,'Augie',2,12),(12877,14887,'Richard',2,0),(12877,20284,'Sonny',2,1),(12877,20286,'Anthony',2,2),(12877,70518,'Jo',0,3),(12877,122994,'Big Al',2,4),(12877,122995,'Herbie',2,5),(12877,122996,'Tuff',0,6),(12877,122997,'Mark',0,7),(12877,122998,'Patti',1,8),(12877,122999,'Gypsy John',2,9),(12877,1221980,'Soz',0,10),(12877,70519,'Elvis',2,11),(29697,93913,'Angus Buchan',2,0),(29697,104686,'Jill Buchan',1,1),(29697,104687,'Simeon',0,2),(29697,86320,'Fergus Buchan',2,3),(29697,1306296,'',0,4),(27374,97585,'Alice Palmer',1,0),(27374,97586,'June Palmer',1,1),(27374,97587,'Russell Palmer',2,2),(27374,97588,'Mathew Palmer',0,3),(27374,97589,'Ray Kemeny',2,4),(27374,84967,'Marissa Toohey',1,5),(27374,97590,'Brett Toohey',2,6),(26815,85034,'Harpreet Singh Bedi',2,0),(26815,96330,'Chipta Gunda',0,1),(26815,96328,'Koena Shaikh',0,3),(26815,96329,'Ritu',0,4),(26815,86088,'P.S. Bedi',2,5),(26815,150476,'Nitin Rathore',0,6),(26815,1637729,'Chhotelal Mishra',2,7),(26815,1661343,'Aparna',1,8),(11298,10662,'Dr. George Waggner',2,0),(11298,17494,'Chris',2,1),(11298,65404,'R. William \'Bill\' Neill',2,2),(11298,16173,'Terry Fisher',1,3),(11298,34597,'Fred Francis',2,4),(11298,8516,'Erle Kenton',2,5),(11298,14253,'Sam Newfield',2,6),(11298,98610,'Marsha Quist',0,7),(11298,16180,'Eddie Quist',2,8),(11298,101780,'Donna',1,9),(11298,31005,'Charlie Barton',2,10),(11298,101781,'Jerry Warren',2,11),(11298,100614,'Lew Landers',2,12),(11298,101784,'Shantz',2,13),(11298,44762,'Bookstore Customer',2,14),(11298,27805,'Porn Store Patron',2,15),(11298,42171,'Gas Station Attendant',2,16),(11298,102445,'Morgue Attendant',2,17),(11298,102429,'Man in Phone Booth',2,18),(11298,103069,'Older Cop',2,19),(11298,102441,'Walter Paisley - Bookstore Owner',2,20),(11298,62001,'Karen White',1,21),(10092,47628,'Owen Matthews',2,0),(10092,51936,'Dodger',1,1),(10092,49623,'Tom',2,2),(10092,32362,'Rich Walker',2,3),(10092,63275,'Mercedes',1,4),(10092,63277,'Lewis',2,5),(10092,63278,'Randall',2,6),(10092,63280,'Graham',2,7),(10092,63279,'Headmaster Tinsley',1,9),(10092,63281,'Becky',0,10),(10092,58967,'Miss McNally',1,11),(10092,63285,'Game Player',0,12),(10092,63283,'Game Player',0,13),(10092,63286,'Custodian',2,14),(10092,63287,'Resident Advisor',0,15),(10092,63284,'Game Player',0,16),(10092,63282,'Game Player',0,17),(10092,63288,'Field Hockey Player',0,18),(10092,21163,'Mr. Matthews',2,19),(10092,94135,'Regina',1,20),(10643,66152,'Yuji Shinoda',2,0),(10643,66153,'Yuki Ichinose',1,1),(10643,66154,'Io Shinoda',0,2),(10643,66155,'Mitsuo Katagiri',2,3),(10643,73139,'Prof. Shiro Miyasaka',2,4),(10643,82972,'',2,5),(10643,80131,'',0,6),(10643,19048,'',0,7),(10643,1060569,'',0,8),(10643,1060570,'',0,9),(10643,1060571,'',0,10),(10643,1029276,'',0,11),(10643,50659,'Military Man',0,12),(10643,1060572,'',0,13),(10643,20333,'',2,14),(10643,1135826,'Gojira',0,15),(18712,4165,'Sgt John M Stryker',2,0),(18712,103071,'Pfc Peter Conway',2,1),(18712,34315,'Allison Bromley',1,2),(18712,41214,'Pfc Al Thomas',0,3),(18712,78794,'Pfc. Benny Regazzi',2,4),(18712,120265,'Pfc. Charlie Bass',2,5),(18712,10161,'Pfc. \'Handsome\' Dan Shipley',2,6),(18712,85940,'Cpl. Robert Dunne / Narrator',2,7),(18712,82349,'Mary',1,8),(18712,111419,'Pfc. Soames',2,9),(18712,30416,'Pfc. George Hellenpolis',2,10),(18712,58423,'Pfc. Frank Flynn',2,11),(18712,104628,'Pfc. Eddie Flynn',0,12),(18712,34421,'Pfc. Harris',2,13),(18712,15781,'Pvt. \'Sky\' Choynski',0,14),(18712,83621,'Capt. Joyce',0,15),(18712,14573,'Pvt. Mike McHugh',2,16),(18712,1730285,'Pvt. Sid Stein',0,17),(18712,49929,'Pvt. L.D. Fowler Jr.',2,18),(18712,1730286,'Colonel D. M. Shoup',0,19),(18712,1730287,'Lt. Col. H. P Crowe',0,20),(18712,1730288,'Captain Harold G. Schrier',0,21),(18712,1730289,'Pfc Rene A Gagnon',0,22),(18712,1730290,'Pfc Ira H. Hayes',0,23),(18712,1730291,'PM3c John H. Bradley',0,24),(18712,1211573,'Marine',0,25),(18712,46612,'Wounded Marine',2,26),(18712,1532472,'Marine',0,27),(18712,95724,'Marine',0,28),(18712,940179,'Tall Girl',1,29),(18712,136790,'USO Woman',1,30),(18712,111827,'Officer',2,31),(18712,40221,'Colonel in Staff Car',2,32),(18712,1482896,'Lt. Baker',0,33),(18712,108299,'Marine',0,34),(18712,120739,'Forrestal',2,35),(18712,67371,'Scared Marine',2,36),(18712,1420551,'Marine',0,37),(18712,1472596,'Marine',0,38),(18712,1417115,'Sailor',0,39),(18712,1184824,'Bartender',0,40),(18712,121127,'Waiter in Bar',0,41),(18712,1730292,'USO Woman',0,42),(18712,100076,'Marine',0,43),(18712,1234563,'Marine',0,44),(18712,34448,'Grenade Instructor',2,45),(18712,176475,'Marine',2,46),(18712,1554553,'Lt. Thompson',0,47),(18712,1730294,'USO Woman',0,48),(18570,83261,'Himself',0,0),(18570,54758,'Himself',2,1),(18570,1532950,'Himself - National Chicken Council',0,2),(18570,1532952,'Himself - Tyson Grower',2,3),(18570,1532954,'Herself - Perdue Grower',0,4),(10183,6832,'Ray Eddy',1,0),(10183,64136,'Lila Littlewolf',0,1),(10183,64135,'TJ',2,2),(10183,64132,'Bernie Littlewolf',2,3),(10183,64133,'Guy Versailles',0,4),(10183,64134,'Jimmy',2,5),(10183,72859,'Ricky',2,7),(10183,38085,'Trooper Finnerty',2,8),(10183,534,'Jacques Bruno',2,9),(32456,3223,'Blake Allen',2,0),(32456,3270,'Lou',1,1),(32456,69122,'Carla',1,2),(32456,37207,'Tommy',0,3),(32456,55254,'Carol',1,4),(13508,8349,'Narrator',2,0),(13508,2461,'Himself',2,1),(13508,31,'Himself',2,2),(22597,88961,'Patrick',2,0),(22597,18082,'Dennis',2,1),(22597,2844,'Howie',0,2),(22597,5367,'Benji',2,3),(22597,21721,'Cole',2,4),(22597,88962,'Larry',0,5),(22597,88963,'Female Shopper',0,6),(22597,88965,'Mickey',2,7),(22597,4251,'Jack',2,8),(22597,9781,'Leslie',1,9),(22597,1980,'Anne',1,10),(22597,15009,'Marshall',2,11),(22597,88966,'Taylor',0,12),(22597,83462,'Josephine',1,13),(22597,40979,'Kevin',2,14),(26791,114925,'Sheriff',2,0),(26791,143056,'Terry',0,1),(26791,11065,'Stu',2,2),(13132,15684,'Paul',2,0),(13132,11664,'Noel',1,1),(13132,62862,'Bust-Ass (as Danny R. McBride)',2,2),(13132,48530,'Bo',2,3),(13132,22248,'Mary-Margaret',0,4),(13132,74242,'Tip',2,5),(13132,1276,'Elvira',1,6),(13132,1102570,'Noel\'s other friend',1,7),(24424,132104,'Nasri',2,0),(24424,132105,'Ilham',0,1),(24424,132106,'Shata',0,2),(24424,132107,'Abu-Lias',0,3),(24424,132108,'Sido',0,4),(24424,132109,'Malek',0,5),(24424,91602,'Binj',0,6),(24424,132110,'Omar',0,7),(24424,132111,'Anan',0,8),(24424,132112,'Hadir',0,9),(24424,132113,'Dando Ben David',0,10),(24424,132114,'Dando\'s sister',0,11),(24424,132115,'Dando\'s mother',0,12),(24424,132116,'Dando\'s father',0,13),(13198,11663,'Zia',2,0),(13198,27855,'Mikal',1,1),(13198,74242,'Eugene',2,2),(13198,57451,'Desiree',1,3),(13198,21200,'Messiah',2,4),(13198,2887,'Kneller',0,5),(13198,16861,'Yan',2,6),(13198,534,'Mike',2,7),(13198,59671,'Jim',2,8),(13198,21132,'Erik',2,9),(13198,64148,'Kid Kostya',2,10),(13198,17039,'Cop',2,11),(13198,20376,'Rachel',1,12),(13198,139150,'Nina',1,13),(13198,31715,'Tania',1,14),(13198,1346110,'Nanuk',0,15),(13198,4736,'Kostya',2,16),(13198,1330895,'Gas Station Attendant',0,17),(13198,62595,'Eugene\'s Mother',1,18),(13198,1827518,'Pizza Delivery Guy',2,19),(21413,10959,'Kelly Ernswiler (as Shia La Beouf)',2,0),(21413,20220,'Bart Bowland',2,1),(21413,20189,'Tabby',1,2),(21413,177219,'Lance',2,3),(21413,8183,'Eve',1,4),(21413,50346,'Sarah',1,5),(21413,6573,'Abe',2,6),(21413,6719,'Harrison',2,7),(13362,206946,'Soldier - New York studio shoot reenactment',2,0),(13362,557885,'Himself - Torture Victim (as Moazzam Beg)',0,1),(13362,557886,'Himself - Captain',0,2),(13362,71797,'Narrator (voice)',2,3),(20296,72118,'Advocate Krishan Pundit',2,0),(20296,85730,'Rocker',2,1),(20296,85889,'Chip',2,2),(20296,85969,'Deva',2,3),(20296,76793,'Pipi',2,4),(20296,81982,'Monsoon Iyer',1,5),(20296,85715,'Simran Sim Chopra',1,6),(20296,47985,'Anna',1,7),(25983,78804,'Samantha',1,0),(25983,100552,'Mrs. Ulman',1,1),(25983,45400,'Megan',1,2),(25983,74133,'Victor Ulman',2,3),(25983,88549,'Heather',0,4),(25983,101787,'Random Guy',0,5),(25983,88548,'Nurse',1,6),(25983,119232,'Mr. Ulman',2,7),(25983,62001,'Landlady',1,8),(16155,6807,'Sam',2,0),(16155,18324,'Eddie',2,1),(16155,13242,'Veal Chop',2,2),(16155,103,'Frank',2,3),(16155,6181,'Mitchell',2,4),(16155,4250,'Big Fat Bernie Gayle',2,5),(16155,22127,'Hannah',1,6),(16155,7420,'Leo',2,7),(16155,22215,'Larry',2,8),(16155,17871,'Philip',2,9),(16155,191557,'Barber',2,10),(16155,155549,'Swoop',2,11),(16155,87230,'Sherry',1,12),(16155,1038661,'Ira',0,13),(16155,22970,'Leflore',2,14),(29015,20492,'Nightbird',1,0),(29015,2879,'The Weevil',2,1),(29015,6213,'Amok',0,2),(29015,19159,'The Strobe',2,3),(29015,15218,'Minute Man',2,4),(29015,15423,'Ms. Indestructible',1,5),(29015,51663,'Alien Orphan',2,6),(29015,20750,'Deadly Girl',1,7),(29015,59408,'Mr. Smart',2,8),(29015,41506,'Eight',0,9),(29015,51856,'College Girl',1,10),(18206,3492,'Doug',2,0),(18206,7351,'Amy (as Ana Claudia Talancon)',1,1),(18206,39481,'Jen',1,2),(18206,78662,'Matt (as Jonathan Trent)',2,3),(18206,43945,'Barrista',0,4),(18206,103033,'Cop (as Anthony Armatrading)',2,5),(13856,4688,'Les',2,0),(13856,15760,'Joey',2,2),(13856,21723,'Everett',2,3),(13856,1240,'Dr. Dobson',2,4),(13856,69399,'Maggie',1,5),(13856,31362,'Ted Exiler',2,6),(13856,75923,'Steve',0,7),(13856,43231,'Jonas Exiler',2,8),(19344,84513,'Annabelle',1,0),(19344,84514,'Simone Bradley',1,1),(19344,77346,'Colins',1,2),(19344,20847,'Kristen',1,3),(19344,1184767,'Cat Pegrum',0,4),(19344,84066,'Mother Immaculata',0,5),(19344,34597,'Father Harris',2,6),(19344,137264,'Michael',2,7),(19344,1184768,'Sister Claire',0,8),(19344,153884,'Lauren',1,9),(19344,928267,'Barry',2,10),(19344,37600,'Senator Tillman',1,11),(19344,1184769,'Senator\'s Aid',0,12),(19344,1184770,'Senator\'s Aid',0,13),(19344,230096,'Martha',0,14),(19344,108247,'Schoolgirl',1,15),(19344,1184771,'Gardener',0,16),(19344,1184772,'Singer',0,17),(19344,1184773,'Guitar',0,18),(19344,1184774,'Drums',0,19),(19344,1184775,'Bass',0,20),(19344,1184776,'Waiter',0,21),(19344,1184777,'Receptionist',0,22),(19344,5621,'Male Detective',2,23),(19344,1184778,'Female Detective',0,24),(18869,820,'Jimmy Wright',2,0),(18869,26293,'Judy',1,1),(18869,6573,'Uncle Rodney',2,2),(26673,84841,'Duffy',2,0),(26673,96023,'Adriana',1,1),(26673,205267,'Mac',2,2),(26673,27016,'Kelly',0,3),(26673,934359,'Chad',2,4),(26673,1031099,'Michela',1,5),(26673,1031100,'Stefano',0,6),(34592,115429,'Frida Abbas',1,0),(34592,115430,'Tom Hunt',2,1),(34592,115431,'Lance Murphy',2,2),(34592,115432,'Reverend Haggis',2,3),(34592,115433,'Joe Miller',2,4),(34592,115434,'Ali Abbas',0,5),(34592,115435,'Cheryl Banks',1,6),(34592,115436,'Mayor Burton',2,7),(34592,115437,'Brian Miller',0,8),(34592,45922,'Derek Blaine',2,9),(34592,115438,'Judy Miller',0,10),(34592,115439,'Mrs. Hunt',0,11),(34592,115440,'Lisa',1,12),(34592,115441,'Clive',0,13),(34592,115442,'Dr. Raimi',0,14),(34592,115627,'Mohammed Mustafa',2,15),(34592,1086856,'J.D.',2,16),(34592,1687467,'J.R.',2,17),(21283,76667,'Terence',2,0),(21283,87363,'Jennifer',1,1),(21283,18471,'Trevor',2,2),(29146,19153,'Charlie Gordon',0,0),(29146,29545,'Alice Kinian',1,1),(29146,31114,'Dr. Anna Straus',1,2),(29146,96055,'Dr. Richard Nemur',0,3),(29146,8493,'Mrs. Apple',1,4),(29146,14671,'Bert',2,5),(29146,1234847,'Gimpy',0,6),(29146,1212034,'Hank',0,7),(29731,104785,'Paul',2,0),(29731,66101,'Ted',2,1),(29731,104786,'Jake',2,2),(29731,70243,'Mona',1,3),(29731,27011,'Julie',1,4),(14014,76245,'Jerry Ferro',0,0),(14014,76246,'Oswaldo Sanchez',0,1),(14014,89498,'Robert Brown',0,2),(14014,75923,'Mike LeMat',0,3),(14014,89499,'Victor Padilla',0,4),(14014,89500,'Lindsay Pratt',1,5),(15708,28634,'Elder Aaron Davis',2,0),(15708,78595,'Christian Markelli',2,1),(15708,14061,'Lila Montagne',1,2),(15708,24045,'Elder Paul Ryder',2,3),(15708,78596,'Julie Taylor',1,4),(15708,5960,'Sister Gladys Davis',1,5),(15708,43902,'Keith Griffin',2,6),(15708,35468,'Traci Levine',1,7),(15708,65640,'Andrew',2,8),(15708,78597,'Elder Harmon',2,9),(15708,78598,'Elder Gilford',2,10),(14823,73355,'Joanne',1,0),(14823,32300,'Derek',2,1),(14823,55585,'Stuart Allen',2,2),(14823,85073,'Kelly',1,3),(14823,32808,'Duncan Allen',2,4),(14823,1220314,'Chum',0,5),(14823,1035069,'Tony',0,6),(14823,1035071,'Karen',0,7),(11446,33656,'Dawn Wiener',1,0),(11446,69482,'Lolita',1,1),(11446,69483,'Cookie',1,2),(11446,61904,'Cynthia',1,3),(11446,69484,'Chrissy',0,4),(11446,2839,'Brandon McCarthy',2,5),(11446,974425,'Missy Wiener',0,6),(11446,80541,'Mark Wiener',2,7),(11446,2131,'Barry',2,8),(11446,109102,'Kenny',0,9),(11446,76764,'Mr. Wiener',2,10),(11446,11867,'Steve Rodgers',2,11),(11446,171300,'Mary Ellen Moriarty',0,12),(11446,163671,'Mr. Edwards',2,13),(25461,59251,'Victor Vargas',2,0),(25461,93821,'\'Juicy\' Judy Gonzalez',1,1),(25461,53936,'Melonie',1,2),(25461,93822,'Grandma',0,3),(25461,93823,'Nino Vargas',0,4),(25461,93824,'Vicki de la Cruz',0,5),(25461,93825,'Harold',2,6),(25461,93826,'Carlos',0,7),(25461,93827,'Fat Donna',1,8),(25212,7166,'Walter Emerson',2,0),(25212,16327,'Marshall Thompson',2,1),(25212,33613,'Gayle Redford',1,2),(25212,16921,'Katie',1,3),(25212,1328,'Ralph',2,5),(25212,93344,'Gerald Irvin',2,6),(25212,91030,'Taylor Woods',2,7),(25212,2208,'Lizzie Woods',1,8),(25212,93345,'Agent Dexter',2,9),(25212,93346,'Agent Williams',2,10),(25212,93347,'Noah',0,11),(25212,93348,'Captain Coddington',2,12),(25212,93349,'Admiral Miller',0,13),(25212,93350,'Howard',0,14),(25212,51551,'Lancaster',2,15),(25212,93351,'George Carvelli',0,16),(25212,93352,'Martin Keller',2,17),(25212,93353,'Abu Hussein',0,18),(25212,93354,'Nick Marcario',0,19),(25212,80380,'Alexandra',1,20),(25212,62100,'Agent Hunter',2,21),(25212,13997,'Secretary of State Clift',1,22),(25212,107009,'Harvey',2,23),(26899,46593,'Duncan Mudge',2,0),(26899,4729,'Perry Foley (as Thomas Guiry)',2,1),(26899,28633,'Edgar Mudge',2,2),(26899,59254,'Brent',2,3),(26899,54834,'Travis',2,4),(26899,4442,'Scotty',2,5),(14451,76917,'Hanna',0,0),(14451,76919,'Roy',2,1),(14451,76920,'Martin',0,2),(14451,1287263,'Erlend',2,3),(14451,76922,'Liv',0,4),(14451,76924,'Vegard',2,5),(14451,76925,'Chris',1,6),(14451,71186,'The Wanderer',2,7),(14451,63769,'Sara',1,8),(14451,76926,'Herzog',0,9),(10105,426,'Private Shirl Kendrick',2,0),(10105,63493,'Medic Steven Gould',2,1),(10105,63494,'Flight Sergeant Oberon Winley',2,2),(10105,63492,'Corporal Nathan \'Deacon\' Greer',2,3),(10105,63498,'Rudi',0,4),(10105,63499,'Catherine',0,5),(10105,63500,'Sophie',0,6),(10105,63501,'Radio Announcer',0,7),(10105,63502,'Private McKinley',0,8),(10105,63508,'American Soldier #1',0,9),(10105,63507,'Weeping Soldier',0,10),(10105,63505,'German Soldier #1',0,11),(10105,63495,'German Soldier #2',2,12),(10105,63504,'German Officer #1',0,13),(10105,63503,'Injured One-Armed Soldier',0,14),(10105,63509,'Conversing German #1',0,15),(10105,63511,'Conversing German #3',0,16),(10105,63510,'Conversing German #2',0,17),(10105,63512,'Ghost Figure',0,18),(10105,1225911,'Gordon Gunderson',0,19),(13158,74337,'Master Shake (voice)',2,0),(13158,74338,'Frylock (voice)',2,1),(13158,74339,'Meatwad / Carl / Ignignokt / Video Game Voice (voice)',2,2),(13158,74340,'Oglethorpe (voice)',0,3),(13158,11357,'Chicken Bittle (voice)',2,4),(13158,61110,'Time Lincoln (voice)',2,5),(13158,58317,'Walter Melon (voice)',2,6),(13429,74440,'Tammi',1,0),(13429,74439,'Lisa',1,1),(13429,74442,'Kim',1,2),(13429,74438,'Sean',0,3),(13429,52891,'Bluey',2,4),(13429,47628,'Josh',2,5),(13429,74441,'Marcus',2,6),(22530,113745,'Sai',1,0),(22530,113746,'Royce',2,1),(22530,113747,'Eric',2,2),(22530,103337,'Kerra',1,3),(22530,113748,'Incubus',0,4),(22530,113749,'Renfield',0,5),(22530,94797,'Aaren',1,6),(22530,106977,'Lynn',1,7),(22530,98438,'Deanna',1,8),(22530,113750,'Candace',0,9),(14275,134119,'Himself',2,0),(14275,134120,'Himself',2,1),(14275,122449,'Narrator',2,2),(18734,17142,'Howie Blitzer',2,0),(18734,27545,'Marty Blitzer',2,1),(18734,1248,'Big John Harrigan',2,2),(18734,177219,'Gary',2,3),(18734,176594,'Kevin Cole',2,4),(18734,171969,'Brian',0,5),(18734,234840,'Scott',0,6),(18734,61607,'Elliot',2,7),(18734,17194,'Prison Guard',2,8),(26837,104481,'Angel (as Jules Ulrich)',0,0),(26837,51384,'Gabby',1,1),(26837,76667,'Carlos',2,2),(26837,58962,'Righteous',1,3),(26837,56457,'Rosie',1,4),(26837,104482,'Hector',2,5),(26837,104483,'Father Rivera',2,6),(11598,66225,'Loo (segment A Fistful of Yen)',0,0),(11598,1271190,'Dr. Klahn (segment A Fistful of Yen)',0,1),(11598,52615,'Cleopatra Schwartz (segment Cleopatra Schwartz)',1,2),(11598,55244,'Schwartz (segment Cleopatra Schwartz)',0,3),(11598,55617,'Housewife (segment Household Odors)',1,4),(11598,19138,'Himself (segment Headache Clinic)',2,5),(11598,4610,'TV Technician Thrown by Gorilla (segment A.M. Today)',2,6),(11598,1592804,'Guest #1 (segment Household Odors)',0,7),(11598,1371928,'Guest #2 (segment Household Odors)',0,8),(11598,1217248,'Guest #3 (segment Household Odors)',0,9),(11598,10167,'The Architect (segment That\'s Armageddon)',2,10),(11598,97964,'The Nurse (segment That\'s Armageddon)',1,11),(11598,55636,'The Clumsy Waiter (segment That\'s Armageddon)',2,12),(11598,19439,'Himself (segment United Appeal for the Dead)',2,13),(11598,16178,'Dino (segment A.M. Today) (as Richard A. Baker)',2,14),(11598,33853,'Crazed Clown (segment Catholic High School Girls in Trouble)',2,15),(11598,75342,'Wally (segment Courtroom)',2,16),(11598,1175001,'Rita Filagree (segment Courtroom)',0,17),(11598,10087,'Hornung (segment Courtroom)',2,18),(11598,1218751,'Taylor (segment Courtroom)',0,19),(11598,41699,'Woman in Shower (segment Catholic High School Girls in Trouble)',1,20),(11598,12987,'Man (segment His New Car) / Technician #2 (segment Eyewitness News) / Grunwald (segment Courtroom)',2,21),(26916,21315,'Rome',2,0),(26916,116431,'John / Jeremiah',2,1),(26916,36216,'Sam',1,2),(26916,185731,'Dan',2,3),(26916,825,'Tom',2,4),(14438,78041,'Caleb Holt',2,0),(14438,78042,'Catherine Holt',1,1),(14438,525139,'Michael Simmons',2,2),(14438,970275,'Wayne Floyd',2,3),(14438,107391,'Terrell Sanders',0,4),(14438,978717,'Eric Harmon',2,5),(14438,979804,'John Holt',2,6),(14438,1075030,'Cheryl Holt',0,7),(14438,1075031,'Gavin Keller',0,8),(14438,1075032,'Robin Cates',0,9),(14438,1075033,'Latasha Brown',0,10),(14438,1075034,'Deidra Harris',0,11),(14438,1075035,'Ashley Phillips',0,12),(14438,1075036,'Young Catherine\'s Mom',0,13),(14438,1075037,'Young Catherine',1,14),(23069,186336,'Mary',1,1),(23069,1152492,'Paul',0,2),(23069,1172555,'Cindy',0,3),(23069,35189,'Dr. Chapman',2,4),(23069,12283,'Lady with the Cat',1,5),(23069,94128,'Officer Tuttle',2,6),(23069,30512,'Bill',2,7),(23069,198415,'Riley',2,8),(23069,234297,'Henry',0,9),(23069,148603,'Linda',1,10),(30315,1748,'Dr. Robert \'Rack\' Hansen',2,0),(30315,99837,'Diane Ashley',1,1),(30315,4963,'Walter Colby',2,2),(30315,99900,'Emma Washburn',1,3),(30315,101761,'Sheriff Gene Smith',2,4),(30315,106054,'Linda Hansen',1,5),(30315,106055,'Birch Colby',1,6),(30315,106056,'Vern Johnson',2,7),(30315,106057,'Terry Hansen',1,8),(30315,94653,'Earl Forbes',2,9),(30315,156703,'Betty Johnson',1,10),(30315,100582,'Mayor Connors',0,11),(30315,1289815,'Clyde',0,12),(30315,165545,'The Baron',2,13),(30315,1784774,'Deputy',0,14),(30315,1784775,'Mildred',1,15),(30315,1702365,'Waitress',1,16),(30315,1784786,'Screaming Woman',1,17),(30315,1552841,'Screaming Woman',1,18),(14271,77763,'Himself',2,0),(14271,33016,'Himself',2,1),(14271,57342,'Himself',2,2),(14271,18918,'Himself',2,3),(14271,79027,'Himself',0,4),(14271,1104,'Himself',2,5),(14271,1528514,'Herself (uncredited)',1,6),(14271,57328,'Narrator',2,7),(14271,567264,'Stevie Richards',0,8),(14271,102210,'Raven',2,9),(14271,87919,'The Undertaker',2,10),(14271,1231207,'Himself',0,11),(14271,1227429,'Himself',0,12),(14271,1198936,'Droz',0,13),(14271,1198630,'D\'Lo Brown',0,14),(16653,1022885,'Jonathan Jordan',2,1),(16653,38710,'Cammie Giles',1,2),(16653,226615,'Eldon',0,3),(16653,1386457,'Hyrum',0,5),(16653,146339,'DeVerl',0,6),(16653,63494,'Dallen Martin',2,7),(14757,77274,'Osama',1,0),(14757,77275,'Espandi',2,1),(14757,77276,'Mother',1,2),(14757,1413842,'Mullah',0,3),(23655,184581,'David Turner',2,0),(23655,1224812,'Colin Turner',0,1),(23655,63155,'Harmony Stitts',1,2),(23655,34845,'Leyla Heydel',1,3),(23655,108438,'Ernie Townsend',2,4),(23655,19222,'Beth Anderson',1,5),(23655,1438692,'Anthony',0,6),(23655,1689294,'Guy Pritchkin',0,7),(23655,105581,'Cliff Rafferty',2,8),(23655,1689295,'Joe Torres',0,9),(23655,1689296,'Lisa Monroe',0,10),(23655,562679,'Aaron Lubiarz',0,11),(23655,77119,'Todd',2,12),(23655,108437,'Bill',0,13),(23655,144438,'Neil',2,14),(23655,1689293,'Monique',0,15),(23655,1689297,'Geo',0,16),(23655,17047,'Tobin',0,17),(23655,1689298,'DJ Snaz',0,18),(23655,1689299,'Shep',0,19),(23655,1689300,'Arty',0,20),(23655,19861,'Maggie McMullen',1,21),(23655,17039,'Sergeant Channahon',2,22),(23655,17045,'Map Point Betty',1,23),(33430,41886,'Blake Falls',2,0),(33430,41887,'Francis Falls',2,1),(33430,163642,'Penny',0,2),(33430,9629,'',2,3),(33430,5274,'',0,4),(33430,83187,'',2,5),(33430,21818,'',1,6),(12281,28042,'Sam Merric',2,0),(12281,41464,'Marty',2,2),(12281,4940,'Rocky Merric',2,3),(12281,15760,'George Tooney',2,4),(12281,23891,'Clyde',2,5),(12281,58899,'Millie',1,6),(12281,150109,'Kile',2,7),(30246,105880,'Francis Shepard',1,0),(30246,10824,'Nikki Barnes',1,1),(30246,32646,'Wet',1,2),(30246,58924,'Warden Alan Deese',2,3),(30246,4239,'Michael Meadows',2,4),(30246,105881,'Sabrina',1,5),(30246,83600,'Aisha',1,6),(13983,263229,'Breeze Loo',2,0),(13983,61697,'Cole Kim',2,1),(13983,53651,'Saraghina Rivas',1,2),(13983,151384,'Eloise Gazdag',1,3),(13983,8350,'Martey Kurtainbaum',2,4),(13983,71725,'Ronney Kurtainbaum',2,5),(13983,42545,'Peter Dowd',2,6),(13983,54712,'Raja',0,7),(13983,204509,'Tarrick Tyler',2,8),(13983,61632,'Troy Poon',2,9),(13983,17051,'Dean Silo',2,10),(13983,98285,'Additional Extra',1,11),(19844,19149,'Alex',1,0),(19844,1697208,'Larry',0,1),(21801,30614,'Roy Chutney',2,0),(21801,52,'Gideon \'Gid\' Ferguson',2,1),(21801,20387,'Skyla Sisco',1,2),(21801,9273,'Doreen',1,3),(21801,1006136,'Floyd aka Studebaker',0,4),(21801,117432,'Tracy Two Dogs',2,5),(21801,6473,'Evangeline Chutney',1,6),(21801,1183913,'Russ Colfax',0,7),(21801,945312,'Waylon Walks Along',0,8),(21801,1199748,'Lem Axelrod',0,9),(21801,1173474,'Gretchen Two Dogs',0,10),(21801,1199749,'Uncle Peyton',0,11),(21801,1199750,'Coach Motlow',0,12),(21801,1199751,'Devo',0,13),(21801,1199752,'Jute',0,14),(21801,210774,'Charlie',0,15),(30867,107173,'himself',0,0),(30867,64188,'himself',0,1),(30867,7487,'himself',2,2),(30867,107170,'himself',0,3),(30867,107171,'himself',0,4),(30867,982,'himself',0,6),(30867,419327,'Himself',0,7),(15239,78020,'The Toxic Avenger',0,0),(15239,555065,'Sara',0,1),(15239,555066,'Wanda',0,2),(15239,555067,'Julie',1,3),(15239,555068,'Slug',2,4),(15239,104593,'Bozo',2,5),(15239,555069,'Mayor Peter Belgoody',2,6),(15239,98329,'Melvin Junko',0,7),(15239,199664,'Officer O\'Clancy',0,8),(15239,555070,'Walter Harris',0,9),(15239,1708242,'Cigar Face',0,10),(15239,555071,'Knuckles',0,11),(15239,555072,'Nipples',0,12),(15239,32286,'Leroy',2,13),(15239,555073,'Frank',0,14),(15239,142162,'Rico',2,15),(15239,555074,'Mrs. Haskell',0,16),(15239,156240,'Fred',2,17),(15239,218520,'Johnny',0,18),(15239,555075,'Melvin\'s Mom',0,19),(15239,555076,'Tom Wrightson',0,20),(15239,555077,'Dr. Snodburger',0,21),(15239,555078,'The Toxic Avenger (voice)',0,22),(15239,555079,'Barbie',0,23),(15239,98330,'Bully',0,24),(15239,3141,'Health Club Girl',1,25),(15624,1283,'Woman',1,0),(15624,6383,'Man',2,1),(15624,78483,'Bartender at Wedding',2,2),(15624,49271,'Groom',2,3),(15624,52271,'Bride',1,4),(15624,34070,'Young Woman',1,5),(15624,59315,'Bridesmaid',1,6),(17287,81577,'Arbie',2,0),(17287,81578,'Wendy',1,1),(17287,81579,'Micki',1,2),(17287,84274,'General Lee Roy',0,3),(17287,84275,'Denny',0,4),(17287,84276,'Carl Jr.',0,5),(17287,98333,'Humus / ACB Dancer',0,6),(17287,98334,'Jose Paco Bell',0,7),(17287,97825,'Jared',0,8),(17287,78021,'Mature Arbie',2,9),(17287,35579,'Famous Actress Hit by Beer',1,10),(17287,84271,'The Invisible Man',2,11),(17287,98314,'Dance-off Zombie #1',0,12),(17287,112863,'The Peeper',0,13),(17287,42545,'Crazy Ron',2,14),(15389,78189,'Tom Townsend',0,0),(15389,78190,'Nick Smith',2,1),(15389,4944,'Charlie Black',2,2),(15389,1033159,'Audrey Rouget',0,3),(15389,171613,'Cynthia McLean',1,4),(15389,1033160,'Sally Fowler',0,5),(23827,90596,'Katie',1,0),(23827,90597,'Micah',2,1),(23827,90598,'The Psychic',2,2),(23827,967678,'Amber',1,3),(23827,967721,'Diane',1,4),(19204,101330,'Liza Merril',1,0),(19204,5570,'Dr. John McCabe',0,1),(19204,31780,'Emily',1,2),(19204,5568,'Schweick',0,3),(19204,18339,'Martha',1,4),(19204,52063,'Dr. Harris',0,5),(19204,84306,'Martin Avery',2,6),(19204,150826,'Mary-Ann',1,7),(19204,84304,'Joe the Plumber',2,8),(19204,84302,'Larry',2,9),(19204,84309,'Arthur',2,10),(19204,1422576,'Jill',1,11),(19204,29433,'Town Clerk (uncredited)',2,12),(19204,1189936,'Zombie at Hospital (uncredited)',2,13),(19204,53196,'Mob Member (uncredited)',2,14),(19204,50785,'Zombie (uncredited)',2,15),(18045,11884,'Samantha Goodman',1,0),(18045,237,'Harlan Pyne',2,1),(18045,51539,'David Goodman',2,2),(18045,82643,'Melody',1,3),(18045,44176,'Adrian',0,4),(18045,82644,'Dr. Lew Lanigan',2,5),(18045,82645,'Radiologist',2,6),(18045,82646,'Doctor',2,7),(18045,82647,'Donald Wegman',0,8),(11240,68718,'Omar',2,0),(11240,11856,'Johnny',2,1),(11240,693,'Papa',0,2),(11240,11852,'Nasser',2,3),(11240,68719,'Salim',2,4),(11240,541338,'Tania N. Ali',1,5),(11240,261927,'Cherry N. Ali',1,6),(11240,83909,'Rachel',1,7),(11240,26863,'Genghis',2,8),(11240,27323,'Squatter',2,10),(11240,1215909,'Bilquis',0,11),(11240,1780820,'Nasser\'s Elder Daughter',0,12),(11240,1780821,'Nasir\'s Younger Daughter',0,13),(11240,1459943,'Dick O\'Donnell',0,14),(11240,230924,'Englishman',2,15),(11240,1616311,'Zaki',0,16),(11240,994,'Moose',2,17),(11240,63006,'Poet',2,18),(11240,47876,'Gang Member #1',0,19),(11240,151456,'Gang Member #2',0,20),(11240,56101,'Telephone Man',2,21),(11240,119792,'Tariq',2,22),(11240,42644,'Dealer',0,23),(11240,65866,'Student',2,24),(11240,1705480,'Girl in Disco',0,25),(11240,1239887,'Kid #1',0,26),(11240,1780822,'Kid #2',0,27),(11240,157076,'Madame Butterfly Man',2,28),(11240,1780823,'Zaki\'s Wife',0,29),(11240,1780824,'Jamaican #1',0,30),(11240,1780825,'Jamaican #2',0,31),(10238,7569,'Agnes',1,0),(10238,8742,'Karin',1,1),(10238,67521,'Anna',0,2),(10238,11916,'Maria',1,3),(10238,38127,'David',2,4),(10238,4456,'Joakim',0,5),(10238,572207,'Fredrik',0,6),(10238,6648,'Narrator (voice)',2,7),(15800,1743,'Herself',1,0),(15800,91375,'Herself',1,1),(15800,1755,'Herself',0,2),(15800,1751,'Himself',2,3),(15800,1750,'Himself',0,4),(15800,1749,'Himself',2,5),(15800,2391,'Himself',2,6),(15800,2390,'Himself',2,7),(15800,1748,'Himself',2,8),(15800,1752,'Himself',0,9),(15800,3033,'Himself',2,10),(15800,1213786,'Himself',2,11),(14278,82841,'Himself',0,0),(14278,82842,'Himself',0,1),(14278,82843,'Himself',0,2),(14278,82844,'Himself',0,3),(14278,82845,'Himself',0,4),(25678,21259,'Sgt. Joe Armstrong',2,0),(25678,55271,'Sgt. Curtis Jackson',2,1),(25678,25944,'Sgt. Charlie McDonald',2,2),(25678,31261,'Leo \'The Lion\' Burke',2,3),(25678,93922,'Capt. \'Wild Bill\' Woodward',0,4),(25678,1120182,'Alicia Sanborn',0,5),(25678,176520,'Tojo Ken',0,6),(25678,230589,'Pat McCarthy',0,7),(25678,100893,'Tommy Taylor',2,8),(25678,928168,'Inspector Singh',0,9),(25678,1120183,'Sir Cloudsly Smith',0,10),(25678,1120184,'Toto',0,11),(25678,10133,'Shinyuki',2,12),(25678,1120185,'Professor Sanborne',0,13),(25678,1066714,'Vesuvius',0,14),(21525,54422,'Himself (archive footage)',2,0),(11980,4690,'Gabriel',2,0),(11980,13550,'Thomas Daggett',2,1),(11980,12519,'Katherine Henley',1,2),(11980,7036,'Simon',2,3),(11980,6163,'Jerry',2,4),(11980,110,'Lucifer',2,5),(11980,99,'Rachael',1,6),(11980,1206614,'Indian Healer',0,7),(11980,1525535,'Sandra',0,8),(11956,71776,'Chlou00e9',0,0),(11956,5445,'Djamel',2,1),(11956,64550,'Madame Renu00e9e',1,2),(11956,71777,'Michel',0,3),(11956,10917,'Carlos',2,4),(11956,73828,'la femme flic',0,5),(11956,20672,'le mec bourru00e9',2,6),(11956,17497,'le joueur de batterie',2,7),(11956,76827,'un mannequin',1,8),(11956,136438,'le militant onze de pique',2,9),(26518,95604,'Mark',2,0),(26518,77080,'Kurt',2,1),(26518,1186733,'Tanya',0,2),(26518,1111812,'Waitress',1,3),(26518,1111813,'Lawnmower',0,4),(26518,1284626,'Diner Patron',0,5),(26518,1284627,'Diner Patron',0,6),(26518,932632,'Weed Salesman',0,7),(26518,1284628,'Homeless Man',0,8),(26518,1284629,'Diner Patron',0,9),(13282,141,'Frankenstein',2,0),(13282,74351,'Annie Smith',1,1),(13282,16483,'Machine Gun Joe Viterbo',2,2),(13282,100552,'Calamity Jane',1,3),(13282,74352,'Matilda the Hun',1,4),(13282,56117,'Nero the Hero',2,5),(13282,100560,'Myra',1,6),(13282,16168,'Junior Bruce',2,7),(13282,40381,'Grace Pander',1,8),(13282,54941,'Thomasina Paine',1,9),(13282,100561,'Herman the German',2,10),(13282,100562,'Cleopatra',0,11),(13282,4610,'Mechanic',2,12),(13282,21819,'Toreador',2,13),(13282,101377,'Frankenstein\'s Doctor',2,14),(27420,29312,'Coach George Michaels',2,0),(27420,97749,'Tony',0,1),(27420,97746,'Anne Ramstead',0,2),(27420,97747,'Kevin Badger',0,3),(27420,97748,'Blondie',1,4),(27420,15993,'Principal Guglione',0,5),(27420,97619,'Dolores',1,6),(27420,97750,'Mr. Roberts',2,7),(27420,97751,'Sally',0,8),(27420,28413,'Insp. Halliday',2,9),(27420,8954,'Officer MacGregor',2,10),(27420,97752,'Doris',1,11),(27420,97753,'Paula Brentwood',1,12),(27420,97754,'Debra Darlin',0,13),(14290,77993,'Ben Manibag',2,0),(14290,162367,'Virgil Hu',0,1),(14290,61697,'Han',2,2),(14290,61997,'Stephanie Vandergosh',1,3),(14290,263229,'Daric Loo',2,4),(14290,68643,'Biology Teacher',2,5),(14290,68842,'Steve Choe',2,6),(14290,1053940,'Takashi',2,7),(14290,205215,'Kenny Vandergosh',0,8),(14290,97089,'Rachel',1,9),(29371,18657,'Randy Dean',1,0),(29371,82105,'Wendy',1,1),(29371,103680,'Rebecca Dean',0,2),(29371,74615,'Evie Roy',1,3),(29371,1384575,'Lena',0,4),(29371,1384576,'Frank',0,5),(29371,46814,'Regina',1,6),(29371,1384577,'Hayjay',0,8),(29371,1384578,'girl 1',0,9),(29371,1384579,'girl 2',0,10),(29371,1384580,'girl 3',0,11),(29371,10693,'Evelyn Roy',1,12),(29371,1384582,'a waitress',0,13),(29371,122243,'Ali, Wendy\'s husband',2,14),(29371,1384585,'old lady 1 at the motel',0,15),(29371,1384587,'',0,16),(29371,1384587,'old lady 2 at the motel',0,17),(32222,53493,'Ajay Pandya',2,0),(32222,109024,'Nina Shah',1,1),(32222,109025,'Krishnagopal Kris Reddy',0,2),(32222,1217619,'Jagjit Singh',0,3),(32222,1223718,'Salim Ali Khan',0,4),(32222,1187706,'Rakesh Patel',0,5),(32222,1229059,'Farah Saeed',0,6),(32222,1285403,'Gautam Rao',0,7),(32222,1069803,'Eric Berger',0,8),(32222,74960,'Chandu',0,9),(32222,109014,'Hemant',2,10),(32222,1171640,'Priya',0,11),(32222,1693024,'Mr. Reddy',0,12),(32222,1693025,'Mrs. Reddy',0,13),(32222,1693026,'Mrs. Saeed',0,14),(32222,106462,'Mr. Saeed',2,15),(32222,1046528,'Mr. Singh',0,16),(20520,86264,'Ernest',0,0),(20520,61697,'Sam',2,1),(20520,86265,'Ahma Chin',0,2),(20520,19859,'Christine',0,3),(20520,163911,'Katie (as Alexis Kapp Chang)',0,4),(20520,1014030,'Gung Gung',0,5),(20520,1083493,'Roy',0,6),(20520,1083494,'Jess',0,7),(20520,52481,'Walter',0,8),(20520,53065,'Gina',1,9),(20520,164111,'Hank',0,10),(20520,1083495,'Shakira',0,11),(20520,1083496,'Toby',0,12),(20520,1024505,'Jimmy',2,13),(20520,1083497,'Cheap Ass Naked Man',0,14),(12247,335,'Son Hayes',2,0),(12247,71887,'Annie Hayes',0,1),(12247,71888,'Stephen Hayes',0,2),(12247,71884,'Boy Hayes',0,3),(12247,71885,'Kid Hayes',0,4),(12247,71886,'Nicole',1,5),(12247,71893,'Paul',0,6),(12247,71892,'Melissa',0,7),(12247,71889,'Cleaman Hayes',2,8),(12247,71890,'Cheryl',0,9),(12247,71894,'Kevin',0,10),(12247,71891,'Carter',0,11),(12247,71895,'John Hayes',0,12),(12247,71896,'Mark Hayes',0,13),(12247,71897,'Shampoo',0,14),(29917,68307,'White',2,0),(29917,105235,'Dark',1,1),(29917,105236,'Guard',2,2),(29917,97576,'Chinese Girl',1,3),(29917,17337,'Blonde',1,4),(29917,105237,'Deaf',2,5),(29917,105238,'Black',0,6),(29917,92730,'Brunette',1,7),(29917,16756,'Brown',2,8),(29917,5414,'Invigilator',2,9),(24869,65802,'John',2,0),(24869,92744,'Liev',1,1),(24869,92745,'Emma',0,2),(24869,92746,'Jacob',0,3),(24869,92747,'Allel',0,4),(24869,92748,'Gabe',2,5),(24869,92749,'Sarah',0,6),(24869,92750,'Ron',0,7),(24869,92751,'Shelly',0,8),(24869,92752,'The Collector',0,9),(24869,92753,'Sadie',0,10),(24869,92754,'The Key Master Incubus',0,11),(34697,825,'Jess Tyler',2,0),(34697,21992,'Kady Tyler',1,1),(34697,40,'Judge Rauch',2,2),(34697,112884,'Mr. Gillespie',2,3),(34697,13997,'Mrs. Helen Gillespie',1,4),(34697,89043,'Belle Morgan',1,5),(34697,41218,'Wash Gillespie',2,6),(34697,18643,'Moke Blue',2,7),(34697,38761,'Rev. Rivers',2,8),(18533,2524,'Michael Peterson (Charles Bronson)',2,0),(18533,23776,'Paul Daniels',2,1),(18533,19775,'Phil',2,2),(18533,125718,'Irene',1,3),(18533,1117431,'Julie',0,4),(18533,190405,'Charlie\'s Mum',1,5),(18533,476761,'Charlie\'s Dad',0,6),(18533,1117432,'Webber',0,7),(18533,1105701,'Alison',0,8),(18533,106385,'Andy Love / Friendly Screw',0,10),(18533,79648,'Uncle Jack',2,11),(18533,1117433,'Workshop Supervisor',0,12),(18533,143181,'John White',2,13),(18533,1264495,'Jewellery Shop Assistant 1',0,14),(18533,1117430,'Hysterical Screw',0,15),(18533,8547,'Prison Governor',2,16),(10218,15277,'Mike Peters.',2,0),(10218,4937,'Trent Walker.',2,1),(10218,17402,'Rob',2,2),(10218,64715,'Sue',2,3),(10218,110141,'Charles',0,4),(10218,69122,'Lorraine',1,5),(10218,171233,'Christy',1,6),(10218,177114,'Lisa',1,7),(10218,35980,'Nikki',1,8),(10218,41690,'Girl with Cigar',1,9),(10218,171975,'Vegas Dealer',0,10),(10218,263618,'Vegas Waitress',1,11),(10218,59024,'$100 Gambler',0,12),(10218,567597,'$5 Winner',0,13),(10218,62787,'Skully',0,14),(10218,1281452,'Girl at Party',0,15),(10218,121757,'Peek-a-boo Girl',1,16),(10218,1281453,'Dresden Lounge Act',0,17),(10218,182307,'Derby Band',0,18),(10218,1281454,'$100 Gambler',0,19),(10218,1281455,'$100 Gambler',0,20),(10218,111680,'$5 Gambler',1,21),(10218,1281456,'Pit Boss',0,22),(10218,1281457,'Lounge Lizard',0,23),(10218,1281458,'Bartender',0,24),(10218,1281459,'Skully\'s Crew / Derby Dancer',0,25),(10218,1281460,'Skully\'s Crew',0,26),(10218,1134050,'Skully\'s Crew',2,27),(10218,209512,'Skully\'s Crew',2,28),(10218,1281461,'Pink Dot Guy',0,29),(10218,183439,'Party Mystery Guy',2,30),(10218,1281462,'Derby Lady',0,31),(10218,1281463,'Derby Lady',0,32),(10218,952336,'Dresden Lady',1,33),(10218,1281464,'Dresden Lady',0,34),(10218,1281465,'Diner Waitress',0,35),(10218,974423,'Derby Doorman',2,36),(10218,1115476,'Derby Doorman',2,37),(10218,1281466,'Diner Patron',0,38),(10218,1281467,'Diner Patron',0,39),(10218,1281468,'Diner Patron',0,40),(10218,181034,'Diner Patron',0,41),(10218,1281469,'Derby Dancer',0,42),(10218,1281470,'Derby Dancer',0,43),(10218,1281471,'Derby Dancer',0,44),(10218,169008,'Derby Dancer',2,45),(10218,1281472,'Derby Dancer',0,46),(10218,1281473,'Derby Dancer',0,47),(10218,1281474,'Derby Dancer',0,48),(10218,1281475,'Derby Dancer',0,49),(10218,1281476,'Derby Dancer',0,50),(10218,1281477,'Derby Dancer',0,51),(10218,1281478,'Derby Dancer',0,52),(10218,1281479,'Derby Dancer',0,53),(10218,1281480,'Derby Dancer',0,54),(10218,1281481,'Derby Dancer',0,55),(10218,1281482,'Derby Dancer',0,56),(10218,1281483,'Derby Dancer',0,57),(10218,1281484,'Derby Dancer',0,58),(10218,1281485,'Derby Dancer',0,59),(10218,1281486,'Derby Dancer',0,60),(14758,77775,'Woman',1,0),(14758,50095,'Man',2,1),(14758,59297,'Eric',2,2),(14758,41089,'Simon',2,3),(14758,4451,'Derek',2,4),(14758,74036,'Dad',2,5),(14758,77788,'Restaurant Patron',0,6),(14758,77789,'Elle',0,7),(14758,1466,'Charlie',2,8),(14758,38888,'Kissing Man',2,9),(14758,18997,'Kissing Woman',1,10),(14758,66525,'Jose',2,11),(14758,77777,'Coffee Shop Patron',2,12),(14758,77790,'Jared',0,13),(14758,77791,'Receptionist',0,14),(14758,77792,'Marge',0,15),(14758,77793,'Skate Clerk',0,16),(14758,77794,'Elisabeth',0,17),(14758,77795,'Katherine',1,18),(13363,56112,'John Oldman',2,0),(13363,19384,'Dan',2,1),(13363,21722,'Harry',2,2),(13363,76463,'Edith',1,3),(13363,76464,'Sandy',1,4),(13363,41504,'Linda Murphy',1,5),(13363,45415,'Art',2,6),(13363,18262,'Dr. Will Gruber',2,7),(13363,1321554,'Moving Man #1',0,8),(13363,1321555,'Moving Man #2',0,9),(13363,104668,'Officer',0,10),(25786,12021,'Grandmary Edwards',0,0),(25786,1285,'Samantha',1,1),(25786,94195,'Jenny O\'Malley',1,2),(25786,94196,'Nellie O\'Malley',0,3),(25786,65762,'Uncle Gard',2,4),(25786,54679,'Aunt Cornelia',1,5),(25786,132712,'Factory Boy',2,7),(21334,87388,'Ali\'s Father',0,0),(21334,87389,'Ali',0,1),(21334,110696,'Zahra',0,2),(27995,99358,'Nola Darling',0,0),(27995,99359,'Jamie Overstreet',2,1),(27995,99360,'Greer Childs',2,2),(27995,5281,'Mars Blackmon',2,3),(27995,99361,'Opal Gilstrap',1,4),(27995,13602,'Clorinda Bradford',1,5),(27995,3978,'Doctor Jamison',1,6),(28666,9657,'Richard Hudson',2,0),(28666,35370,'Used Car Dealer',2,1),(28666,938783,'Bill',0,2),(28666,196504,'Laura',0,3),(28666,938785,'Leo',0,4),(28666,938786,'Mother',1,5),(30979,107448,'Himself (as Dr. Simon Baron-Cohen)',0,0),(30979,107449,'Herself (as Dr. Temple Grandin)',0,1),(30979,107450,'Himself',0,2),(30979,107451,'Himself',0,3),(30979,107452,'Himself',0,4),(30979,107453,'Herself',0,5),(13187,124654,'Freida (voice)',1,0),(13187,148104,'Schroeder / Shermy (voice)',0,1),(13187,124652,'Violet (voice)',1,2),(13187,94011,'Snoopy (voice)',2,3),(13187,148105,'Patty (voice)',0,4),(13187,148106,'Pig-Pen (voice)',0,5),(13187,34665,'Charlie Brown (voice)',0,6),(13187,148107,'Lucy Van Pelt (voice)',1,7),(13187,124653,'Sally Brown (voice)',1,8),(13187,124651,'Linus Van Pelt (voice)',2,9),(18632,5892,'Patrick',2,0),(18632,73204,'Marilyn',1,1),(18632,26069,'Ryan / Colt / Detective Morse',2,2),(18632,26088,'Chris',2,3),(18632,26067,'Ratcha',1,4),(18632,141780,'Elise',1,5),(18632,141781,'Zero',2,6),(18925,83902,'Matt Prater',2,0),(18925,78040,'Grant Taylor',2,1),(18925,135798,'Brooke Taylor',1,2),(18925,135799,'JT Hawkins',0,3),(18925,135800,'Brady Owens',2,4),(34101,68750,'Bobby Taylor',2,0),(34101,111871,'Stevie Taylor',2,1),(34101,111872,'Bobby\'s Grandmother',0,2),(34101,44822,'Bobby\'s Mother',1,3),(34101,35689,'Donald',2,4),(34101,82340,'Lydia',1,5),(34101,56902,'Mr. Jones',2,6),(34101,111873,'Tiny',0,7),(34101,55271,'Hood #3',2,8),(34101,1587179,'Punk #1',2,9),(18841,65409,'Betty Armstrong',1,0),(18841,88838,'Kro-Bar',2,1),(18841,88839,'Lattis',1,2),(18841,1990,'Dr. Roger Fleming',0,3),(18841,88840,'Animala',1,4),(18841,88841,'Ranger Brad',2,6),(18841,88842,'The Farmer',2,7),(18841,88843,'The Mutant',0,8),(18841,88837,'Dr. Paul Armstrong',2,9),(13538,12214,'Alice',1,0),(13538,41042,'Adam',2,1),(13538,144292,'Jago',2,2),(13538,1242809,'Misha',2,3),(13538,192846,'Heffer',0,4),(13538,53916,'Jamie',2,5),(13538,55364,'Bill',2,6),(13538,1216606,'Young PA',1,7),(13538,1227648,'Sophie',0,8),(33468,16089,'Dr. Bill Cortner',0,0),(33468,110727,'Jan Compton',1,1),(33468,110736,'Nurse',1,2),(33468,110737,'Jeannie Reynolds',0,3),(33468,110738,'Monster',0,4),(33468,110729,'Doris Powell',1,6),(33468,110730,'Blonde Stripper',0,7),(33468,110731,'Brunet Stripper',1,8),(33468,30998,'Peggy Howard',0,9),(33468,110732,'Dr. Cortner',2,10),(33468,91487,'Beauty Contest M.C.',0,11),(33468,110733,'Photographer',2,12),(33468,110734,'Medical Assistant',0,13),(33468,110735,'Donna Williams',0,14),(33468,27842,'Kurt',0,15),(16388,86308,'Susan',1,0),(16388,21398,'Audrey',1,1),(16388,86309,'Mrs McMullen',0,2),(16388,86310,'Molly McMullen',1,3),(16388,12833,'Barry/Finbar McMullen',2,4),(16388,86311,'Marty',0,5),(16388,27739,'Leslie',1,6),(16388,69298,'Patrick McMullen',2,7),(16388,86312,'Ann',0,8),(16388,86313,'Jack McMullen',0,9),(20981,589130,'The Man',2,0),(20981,589131,'The Listener',0,1),(20981,550448,'Professor Angell',0,2),(20981,88340,'Henry Wilcox',0,3),(20981,589132,'Landlady',0,4),(20981,589133,'Bartender',0,5),(18292,1175784,'Nasia',0,0),(18292,1175785,'George',0,1),(18292,79427,'Vernon',0,2),(18292,1175786,'Buddy',0,3),(18292,1175787,'Sonya',0,4),(18292,15684,'Rico Rice',2,5),(18292,79419,'Damascus',0,6),(18292,73719,'Aunt Ruth',1,7),(18292,1175788,'Whitney',0,8),(18292,1175789,'Denise',0,9),(18292,1175790,'Euless',0,10),(18292,1175791,'Augie',0,11),(18292,1175792,'Rico\'s Father',0,12),(18292,1720476,'Baptist (as Henry A. Harris)',2,13),(13963,72861,'Himself',2,0),(13963,76134,'Himself',2,1),(13963,76136,'Himself',2,2),(13963,76135,'Himself',2,3),(13963,76137,'Himself',0,4),(13963,2585,'Himself',2,5),(13963,69669,'Himself',2,6),(13963,1487,'Himself',2,7),(13963,15425,'Himself',0,8),(13963,76138,'Herself',1,9),(13963,76139,'Herself',1,10),(13963,10594,'Himself',2,11),(13963,76140,'Himself',2,12),(13963,76141,'Himself',0,13),(13963,76142,'Himself',2,14),(13963,76143,'Himself',2,15),(13963,262701,'Herself',1,16),(13963,76145,'Himself',0,18),(13963,76146,'Himself',0,19),(13963,53396,'Himself',2,20),(13963,76147,'Himself',0,21),(13963,76148,'Himself',0,22),(13963,1032,'Himself',2,23),(13963,76149,'Himself',0,24),(13963,76151,'Himself',2,25),(13963,76150,'Himself',0,26),(13963,47663,'Himself',0,27),(13963,76152,'Himself',0,28),(13963,76153,'Himself',0,29),(13963,76154,'Himself',0,30),(33693,111739,'Marnie',0,0),(33693,146031,'Grady (tattoo artist)',0,1),(33693,146032,'Alex',2,2),(33693,146033,'Rachel',0,3),(33693,146034,'Dave',0,4),(33693,81068,'Wyatt',2,5),(33693,146035,'Gary (engineer)',0,6),(33693,146036,'Travis (engineering assoc.)',0,7),(33693,146037,'Laurie (engineer)',0,8),(33693,146038,'Susan',0,9),(33693,146039,'Jeff (party guest)',0,10),(33693,146040,'Lance (party guest)',0,11),(33693,146041,'Kimberly (temp boss)',0,12),(33693,111446,'Jed (roommate)',2,13),(33693,40864,'Mitchell',0,14),(14585,6383,'Chad',2,0),(14585,43372,'Christine',1,1),(14585,19208,'Howard',2,2),(14585,1390109,'Co-worker #1',0,3),(14585,1390110,'John',0,4),(14022,564,'Should Have Stayed at Bus Station',2,0),(14022,94675,'',2,1),(17345,78040,'Jay',2,0),(24055,45407,'Josh',2,0),(24055,221944,'Emily',1,1),(24055,931760,'Rhett',0,2),(13898,143272,'Nargess',0,0),(13898,143273,'Arezou (as Maryam Parvin Almani)',0,1),(13898,143274,'Mojgan - Prostitute',0,2),(13898,143275,'Elham - Nurse',0,3),(13898,143276,'Monir - Ticket Seller',0,4),(13898,143277,'Maedeh (as Maedeh Tahmasbi)',0,5),(13898,143278,'Parveneh',0,6),(14337,76624,'Aaron',2,0),(14337,76625,'Abe',2,1),(14337,110171,'Robert',0,2),(14337,110172,'Philip',0,3),(14337,110173,'Kara',0,4),(14337,1080287,'Metalshop Worker',0,5),(14337,1080288,'Man On Couch #1',0,6),(14337,1080289,'Man On Couch #2',0,7),(14337,1080290,'Hostess',0,8),(14337,1080291,'Rachel Granger',0,9),(14337,1080292,'Thomas Granger',0,10),(14337,1080293,'Laney',0,11),(14337,1080294,'Aaron\'s Co-worker',0,12),(14337,1080295,'Clean Room Technician',0,13),(14337,1080296,'Laboratory Technician',0,14),(14337,1080297,'Will',0,15),(14337,1080298,'Will\'s Cousin',0,16),(14337,203260,'Rachel\'s Date',2,17),(14337,1080299,'Translator',0,18),(25975,69597,'Herself',1,0),(25975,85563,'Himself',2,1),(25975,3034,'Himself',2,2),(25975,21315,'Himself',2,3),(25975,2171,'Himself',0,4),(25975,2231,'Himself',2,5),(25975,14407,'Himself',2,6),(25975,155007,'Himself',2,7),(206647,8784,'James Bond',2,0),(206647,27319,'Blofeld',2,1),(206647,121529,'Madeleine',1,2),(206647,5469,'M',2,3),(206647,28782,'Lucia',1,4),(206647,17064,'Q',2,5),(206647,2038,'Moneypenny',1,6),(206647,543530,'Hinx',2,7),(206647,125660,'C',2,8),(206647,139549,'Tanner',2,9),(206647,2244,'Mr. White',2,10),(206647,1381616,'Marco Sciarra',0,11),(206647,929937,'Estrella',1,12),(206647,87265,'Mexican Man in Lift',0,13),(206647,983710,'Mexican Woman in Lift',1,14),(206647,1385592,'Gallo',2,15),(206647,1545546,'Gallo\'s Accomplice',0,16),(206647,1545547,'Gallo\'s Accomplice',2,17),(206647,122556,'Q\'s Assistant',0,18),(206647,1599239,'Moneypenny\'s Boyfriend',2,19),(206647,1599241,'Blofeld\'s London Helicopter Pilot',2,20),(206647,230681,'SC019 Police Commander',2,21),(206647,30446,'SC019 Police Officer',2,22),(206647,48377,'Priest',2,23),(206647,578512,'Moreau',0,24),(206647,1093974,'Vogel',0,25),(206647,89624,'Abrika',2,26),(206647,1129783,'Blofeld\'s Right Hand Man',2,27),(206647,226388,'Lorenzo',0,28),(206647,1299312,'Francesco',2,29),(206647,124628,'Marco',2,30),(206647,1562103,'Palazzo Security',2,31),(206647,1474616,'Guerra',2,32),(206647,1247684,'Businessman',2,33),(206647,1599245,'Businessman',2,34),(206647,1599247,'Businessman',0,35),(206647,1599251,'Businessman',2,36),(206647,1599252,'Marshall',2,37),(206647,1599253,'Valerian',2,38),(206647,123548,'Fiat Driver',2,39),(206647,1599254,'Street Sweeper',2,40),(206647,1599255,'Chairman',2,41),(206647,1404403,'Head of Nation',0,42),(206647,74415,'Head of Nation',2,43),(206647,1599256,'Head of Nation',2,44),(206647,1599257,'Head of Nation',2,45),(206647,1599258,'Head of Nation',2,46),(206647,1599259,'Head of Nation',0,47),(206647,1599260,'Head of Nation',2,48),(206647,1477143,'Head of Nation',2,49),(206647,1599261,'Aide',2,50),(206647,1168129,'Aide',2,51),(206647,48393,'Clinic Barman',0,52),(206647,1437333,'Clinic Security Guard',2,53),(206647,1599262,'Clinic Security Guard',2,54),(206647,14637,'Cable Car Heavy',2,55),(206647,1599263,'Cable Car Heavy',2,56),(206647,1599264,'Syringe Heavy',2,57),(206647,1599265,'Snowboarder',1,58),(206647,1599266,'Snowboarder',2,59),(206647,1599267,'Snowboarder',0,60),(206647,1599268,'Snowboarder',2,61),(206647,1599269,'Snowboarder',2,62),(206647,1599270,'Snowboarder',1,63),(206647,1599271,'Snowboarder',1,64),(206647,1599272,'Snowboarder',2,65),(206647,1102369,'L\'Americain Manater',1,66),(206647,1372694,'Train Guard',2,67),(206647,1363060,'Train Waiter',2,68),(206647,1599275,'Train Barman',2,69),(206647,1599276,'Blofeld\'s Chauffeur',2,70),(206647,1599277,'Blofeld\'s Guard',0,71),(206647,229320,'Blofeld\'s Guard',2,72),(206647,1599278,'Blofeld\'s Butler',0,73),(206647,1599279,'Blofeld\'s Waiter',0,74),(206647,1436816,'Blofeld\'s Analyst',2,75),(206647,1599280,'Blofeld\'s Chief Analyst',2,76),(206647,5309,'M (uncredited)',1,77),(206647,1186597,'Clinic Patron (uncredited)',1,78),(206647,1654739,'Businessman (uncredited)',2,79),(206647,1682535,'Lair Staff (uncredited)',1,80),(206647,1682536,'Mexican Sprite (uncredited)',1,81),(206647,1725801,'Pilot David',2,82),(49026,3894,'Bruce Wayne / Batman',2,0),(49026,3895,'Alfred Pennyworth',2,1),(49026,64,'James Gordon',2,2),(49026,1813,'Selina Kyle / Catwoman',1,3),(49026,2524,'Bane',2,4),(49026,8293,'Miranda Tate',1,5),(49026,24045,'Blake',2,6),(49026,192,'Lucius Fox',2,7),(49026,2037,'Dr. Jonathan Crane / Scarecrow',2,8),(49026,36594,'Jen',1,9),(49026,3896,'Ra\'s Al Ghul',2,10),(49026,8654,'Deputy Commissioner Foley',2,11),(49026,16607,'Dr. Pavel',2,12),(49026,77335,'Daggett',2,13),(49026,21316,'The Mayor',2,14),(49026,928532,'Young Ra\'s Al Ghul',0,15),(49026,71010,'Prisoner',0,16),(49026,125025,'Young Talia Al Ghul',1,17),(49026,211521,'Mercenary Security #1',2,18),(49026,10582,'Captain Jones',2,19),(49026,224365,'Special Ops Sergeant',0,20),(49026,1334307,'Hooded Man #2',0,21),(49026,1334308,'Caterer',0,22),(49026,1334309,'Maid',1,23),(49026,1172491,'Maid',0,24),(49026,49735,'CIA Op',2,25),(49026,39659,'Stryver',0,26),(49026,16841,'Congressman',2,27),(49026,22075,'Ross',2,28),(49026,159879,'DWP Man',2,29),(49026,8191,'Fr. Reilly',2,30),(49026,1240417,'SWAT in Dive Bar',2,31),(49026,1218818,'SWAT in Alley',0,32),(49026,84754,'Cop in Manhole',2,33),(49026,1473276,'Sewer Thug #1',2,34),(49026,1364324,'Sewer Thug #2',2,35),(49026,1473749,'Mark',2,36),(49026,539,'Doctor',2,37),(49026,158484,'Yuppie',0,38),(49026,10689,'Allen',2,39),(49026,9632,'Exchange Security Chief',2,40),(49026,1205900,'Female Security Guard',0,41),(49026,1403768,'Paparazzi #1',2,42),(49026,1465242,'Paparazzi #2',2,43),(49026,141014,'Rich Twit',2,44),(49026,32363,'Officer Simon Jansen',2,45),(49026,21182,'Shoe Shine Man at GSE',2,46),(49026,83271,'Trader #1',2,47),(49026,535,'Trader #3',2,48),(49026,1226016,'Valet at Museum',2,49),(49026,15011,'Veteran Cop',2,50),(49026,70225,'Fredericks',2,51),(49026,24627,'2 Star Air Force General',2,52),(49026,142290,'Airport Cop',0,53),(49026,1377686,'Analyst #1',0,54),(49026,550549,'Analyst #2',2,55),(49026,21505,'Army Captain at Bridge',2,56),(49026,98804,'Cement Truck Driver',2,57),(49026,1386824,'CIA Analyst',0,58),(49026,31362,'Cop with Gordon',2,59),(49026,145313,'Blind Prisoner',2,60),(49026,53252,'Ex-Prisoner at River',2,61),(49026,24202,'Gangbanger',2,62),(49026,1301187,'Huge Inmate',0,63),(49026,204191,'Kid with Apple',2,64),(49026,40039,'Barsad',2,65),(49026,21416,'President',2,66),(49026,55411,'Skinny Prisoner',2,67),(49026,1244314,'Special Forces #2',2,68),(49026,1286878,'Mercenary at City Hall',0,69),(49026,6365,'Uniform',2,70),(49026,1417415,'Bomb Truck Driver',2,71),(49026,941,'Wayne\'s Lawyer',2,72),(49026,1225911,'Applied Sciences Tech #1',0,73),(49026,100891,'Applied Sciences Tech #2',2,74),(49026,20469,'Lawyer\'s Clerk',1,75),(49026,105832,'Greeter at Museum',1,76),(49026,1355615,'Valet at Wayne Enterprises',0,77),(49026,51930,'Warden at Blackgate',2,78),(49026,95577,'Waiter in Florence Cafu00e9',0,79),(49026,1010873,'Janitor at GSE',0,81),(49026,26088,'Mercenary Security #4',2,82),(49026,853194,'Board Member #2',2,83),(49026,171606,'Uniform #2',0,84),(49026,1406682,'Gotham City Police Officer (uncredited)',2,85),(49026,1167718,'Young Stock Broker (uncredited)',0,86),(49026,572221,'Gotham City Police Officer (uncredited)',1,87),(49026,1116933,'Former Upscaler (uncredited)',2,88),(49026,1524158,'Angry Mobster / Prisoner (uncredited)',0,89),(49026,139188,'Gotham Rogues Fan (uncredited)',0,90),(49026,1075845,'Mercenary (uncredited)',0,91),(49026,1283949,'Police Officer (uncredited)',0,92),(49026,1344943,'Gotham City Police Officer (uncredited)',0,93),(49026,1240191,'Gotham Rogues Coach (uncredited)',0,94),(49026,1359461,'Pentagon Navy Petty (uncredited)',0,95),(49026,1163300,'Reporter (uncredited)',1,96),(49026,93752,'Older Upscale Person (uncredited)',0,97),(49026,1343309,'Prisoner / Thug (uncredited)',0,98),(49026,1372419,'Stock Broker (uncredited)',0,99),(49026,1502323,'Thug (uncredited)',0,100),(49026,1509064,'Stockbroker in Snipers Scoop - Stock Exchange (uncredited)',2,101),(49026,1525392,'Prisoner (uncredited)',2,102),(49026,1365976,'Police Officer (uncredited)',0,103),(49026,1098036,'Gotham Police Officer / Fan (uncredited)',2,104),(49026,1354413,'Gordon\'s Cop #4 (uncredited)',0,105),(49026,123875,'Boom Operator News Crew (uncredited)',0,106),(49026,127060,'Gothamite (uncredited)',0,107),(49026,1388256,'Gotham Rogues Fan (uncredited)',0,108),(49026,1241239,'Stock Broker (uncredited)',0,109),(49026,1378466,'Thug (uncredited)',0,110),(49026,1264686,'Wall Street Broker (uncredited)',0,111),(49026,1169299,'Gotham City Police Officer (uncredited)',0,112),(49026,1269611,'Thug (uncredited)',2,113),(49026,1446471,'Gotham City Police Officer (uncredited)',0,114),(49026,1188950,'Prisoner (uncredited)',0,115),(49026,1383091,'Tourist (uncredited)',0,116),(49026,1480128,'Gotham Rogues Fan (uncredited)',0,117),(49026,1174970,'Gotham Rogues Fan (uncredited)',0,118),(49026,127063,'Gotham City Police Officer (uncredited)',0,119),(49026,1480130,'Gotham Rogues Fan (uncredited)',1,120),(49026,1505308,'Angry Mobster (uncredited)',0,121),(49026,1509148,'Wayne Enterprises Security (uncredited)',0,122),(49026,122339,'Mercenary (uncredited)',0,123),(49026,93778,'Gotham City Police Officer (uncredited)',0,124),(49026,1205749,'Prisoner / Thug (uncredited)',0,125),(49026,1480150,'Gotham City News Cameraman (uncredited)',0,126),(49026,20582,'Prison Guard (uncredited)',2,127),(49026,1298014,'Prisoner / Mob (uncredited)',0,128),(49026,1429650,'Gotham Stock Trader (uncredited)',0,129),(49026,1349600,'Gotham Rogues Player (uncredited)',0,130),(49026,1066138,'Gotham Police Officer (uncredited)',0,131),(49026,565508,'Thug (uncredited)',0,132),(49026,1513716,'Doris in Black (uncredited)',0,133),(49026,1215314,'Gotham Rogues Player (uncredited)',0,134),(49026,1452954,'Gotham Police Officer (uncredited)',2,135),(49026,1451618,'Thug (uncredited)',2,136),(49026,1085730,'Angry Thug (uncredited)',0,137),(49026,557202,'Hot Football Fan (uncredited)',0,138),(49026,54211,'Gotham Rogues Owner (uncredited)',0,139),(49026,1480223,'Thug (uncredited)',2,140),(49026,102516,'Prisoner (voice) (uncredited)',0,141),(49026,1205751,'Gotham City Press (uncredited)',0,142),(49026,1205623,'Gotham Rogues Fan (uncredited)',0,143),(49026,1521872,'Gotham City Police Officer (uncredited)',0,144),(49026,306870,'Mercenary Soldier (uncredited)',0,145),(49026,1205141,'Gotham Citizen (uncredited)',1,146),(49026,1343746,'Gotham City Police Officer (uncredited)',0,147),(49026,1454322,'Thug (uncredited)',2,148),(49026,1553053,'Gotham City Police Officer (uncredited)',2,149),(49026,1553307,'Football Fan (uncredited)',0,150),(49026,1553377,'Cop (uncredited)',0,151),(49026,1574936,'Football Fan (uncredited)',0,152),(49026,1576421,'Thug (uncredited)',0,153),(49026,1580574,'Prisoner (uncredited)',2,154),(49026,1583389,'Mercenary (uncredited)',0,155),(49026,1633514,'Court Room Thug (uncredited)',2,156),(49026,1673036,'Gothamite (uncredited)',2,157),(49026,1536670,'Thug #2 in Basement',2,158),(49529,60900,'John Carter',2,0),(49529,21044,'Dejah Thoris',1,1),(49529,2206,'Sola',1,2),(49529,5293,'Tars Tarkas',2,3),(49529,19159,'Tal Hajus',2,4),(49529,2983,'Matai Shang',2,5),(49529,8785,'Tardos Mors',2,6),(49529,17287,'Sab Than',2,7),(49529,17648,'Kantos Kan',2,8),(49529,17419,'Powell',2,9),(49529,6416,'Sarkoja',1,10),(49529,57675,'Edgar Rice Burroughs',2,11),(49529,89830,'Stayman #1 / Helm',2,12),(49529,205278,'Stayman #3',2,13),(49529,218345,'Lightmaster',1,14),(49529,1390394,'Thern #2',2,15),(49529,1518112,'Thern #1',0,16),(49529,1721985,'Pretty Woman in NYC Doorway',1,17),(49529,1721992,'Telegraph Clerk',2,18),(49529,118617,'Dalton',2,19),(49529,1722006,'Stable Boy',2,20),(49529,130129,'Dix the Storekeeper',2,21),(49529,65716,'Rowdy #1',2,22),(49529,1724736,'Rowdy #2',2,23),(49529,62082,'Stockade Guard',2,24),(49529,1367241,'Sarah Carter',1,25),(49529,1844319,'Apache #1 (as Joe Billingiere)',0,26),(38757,69899,'Flynn Rider (voice)',2,0),(38757,16855,'Rapunzel (voice)',1,1),(38757,2517,'Mother Gothel (voice)',1,2),(38757,2372,'Stabbington Brother (voice)',2,3),(38757,22132,'Captain of the Guard (voice)',2,4),(38757,4175,'Big Nose Thug (voice)',2,5),(38757,18,'Hook Hand Thug (voice)',2,6),(38757,1219029,'Short Thug (voice)',0,7),(38757,10460,'Vlad (voice)',0,8),(38757,1273208,'Young Rapunzel / Little Girl (voice)',0,9),(38757,121830,'Guard 1 / Thug 1 (voice)',2,10),(38757,76595,'Guard 2 / Thug 2 (voice)',2,11),(38757,61958,'Guard 3 (voice)',2,12),(99861,3223,'Tony Stark / Iron Man',2,0),(99861,74568,'Thor Odinson',2,1),(99861,103,'Bruce Banner / Hulk',2,2),(99861,16828,'Steve Rogers / Captain America',2,3),(99861,1245,'Natasha Romanoff / Black Widow',1,4),(99861,17604,'Clint Barton / Hawkeye',2,5),(99861,13548,'Ultron (voice)',2,6),(99861,2231,'Nick Fury',2,7),(99861,1896,'James Rhodes / War Machine',2,8),(99861,27428,'Pietro Maximoff / Quicksilver',2,9),(99861,550843,'Wanda Maximoff / Scarlet Witch',1,10),(99861,6162,'Jarvis (voice) / Vision',2,11),(99861,71189,'Maria Hill',1,12),(99861,53650,'Sam Wilson / The Falcon',2,13),(99861,39459,'Peggy Carter',1,14),(99861,17605,'Heimdall',2,15),(99861,1817,'Laura Barton',1,16),(99861,1640,'Erik Selvig',2,17),(99861,1401531,'Dr. Helen Cho',1,18),(99861,3491,'Strucker',2,19),(99861,1333,'Ulysses Klaue / Klaw',2,20),(99861,1146,'Madame B',1,21),(99861,7624,'Himself',2,22),(99861,7030,'Dr. List',2,23),(99861,1709130,'Fortress Soldier',0,24),(99861,1265796,'Strucker Mercenary',0,25),(99861,1196961,'Zrinka',1,26),(99861,1264233,'Costel',0,27),(99861,1760858,'Sokovian Acid Student',0,28),(99861,1760859,'Dr. Cho\'s Assistant',0,29),(99861,1760860,'Dr. Cho\'s Assistant',0,30),(99861,1504934,'Klaue\'s Mercenary',2,31),(99861,30086,'Ballet Instructor',2,32),(99861,1029031,'Johannesburg Cop',0,33),(99861,1171654,'Johannesburg Cop',0,34),(99861,1367843,'Johannesburg Driver',0,35),(99861,1760872,'Johannesburg Onlooker',0,36),(99861,1760864,'Johannesburg Onlooker',0,37),(99861,1760865,'Johannesburg Onlooker',0,38),(99861,1760866,'Johannesburg Onlooker',0,39),(99861,1760867,'Johannesburg Onlooker',0,40),(99861,1760868,'Johannesburg Onlooker',0,41),(99861,1760869,'Johannesburg Onlooker',0,42),(99861,1665609,'Johannesburg Elevator Passenger',0,43),(99861,1760871,'Johannesburg Elevator Passenger',0,44),(99861,1760879,'Cooper Barton',0,45),(99861,1405571,'Lila Barton',0,46),(99861,1405570,'Lila Barton',0,47),(99861,1583054,'World Hub Tech',0,48),(99861,1760881,'Korean Train Passenger',0,49),(99861,1760882,'Korean Train Passenger',0,50),(99861,1760884,'Korean Train Passenger',0,51),(99861,1590327,'Korean Train Passenger',2,52),(99861,1760886,'Korean Train Passenger',0,53),(99861,1760888,'Sokovian Family',0,54),(99861,1760890,'Sokovian Family',0,55),(99861,1756778,'Sokovian Family',0,56),(99861,1760891,'Sokovian Family',0,57),(99861,1760892,'Sokovian Woman',0,58),(99861,1760893,'Tub Family Child',0,59),(99861,6092,'Sokovian Driver',0,60),(99861,1760898,'Sokovian SUV Driver',0,61),(99861,1760899,'Sokovian SUV Passenger',0,62),(99861,1015829,'Sokovian Police Captain',0,63),(99861,43373,'Specialist Cameron Klein',2,64),(99861,62105,'Friday (voice)',1,65),(99861,1760900,'Nathaniel Pietro Barton',0,66),(99861,1394333,'Sokovian Citizen (uncredited)',1,67),(99861,16851,'Thanos (uncredited)',2,68),(99861,1480144,'Student (uncredited)',1,69),(99861,1429470,'Dr. Taryl Jenkins (uncredited)',0,70),(99861,1371439,'Asgardian God (uncredited)',0,71),(209112,880,'Bruce Wayne / Batman',2,0),(209112,73968,'Clark Kent / Superman',2,1),(209112,90633,'Diana Prince / Wonder Woman',1,2),(209112,9273,'Lois Lane',1,3),(209112,44735,'Lex Luthor',2,4),(209112,2882,'Martha Kent',1,5),(209112,16940,'Alfred Pennyworth',0,6),(209112,2975,'Perry White',2,7),(209112,18686,'Senator Finch',1,8),(209112,59233,'Wallace Keefe',2,9),(209112,208296,'Anatoli Knyazev',2,10),(209112,1156024,'Mercy Graves',1,11),(209112,20089,'Jenet Klyburn',1,12),(209112,1511243,'Young Bruce Wayne',2,13),(209112,62220,'Martha Wayne',1,14),(209112,87447,'Jack O\'Dwyer',2,15),(209112,56556,'Jimmy Olsen',2,16),(209112,1106260,'Wayne Industries Pilot',2,17),(209112,1190987,'Drone Pilot',0,18),(209112,1272969,'Jenny Jurwich',0,19),(209112,9464,'General Swanwick',2,20),(209112,1272970,'Major Carrie Farris',0,21),(209112,1622651,'Carmen',1,22),(209112,91403,'Glen Woodburn',0,23),(209112,1269,'Jonathan Kent',2,24),(209112,132157,'Barry Allen / The Flash',2,25),(209112,17178,'POTUS (voice)',2,26),(209112,335,'General Zod',2,27),(209112,70177,'Himself',2,28),(209112,1018992,'Himself',2,29),(209112,1236584,'Himself',2,30),(209112,550307,'Himself',2,31),(209112,12219,'Himself',2,32),(209112,1227867,'Herself',0,33),(209112,1696036,'Herself',1,34),(209112,1596937,'Herself',1,35),(209112,1514160,'Herself',1,36),(209112,1217309,'Himself',0,37),(209112,1696037,'Herself',1,38),(209112,17832,'A.I. Kelor (voice)',1,39),(209112,117642,'Arthur Curry / Aquaman',2,40),(209112,3977,'Silas Stone',2,41),(209112,1313559,'Victor Stone / Cyborg',2,42),(209112,1636956,'Pete Ross',2,43),(209112,1377087,'Lana Lang',0,44),(209112,47296,'Thomas Wayne',2,45),(209112,19300,'General Amajagh',2,46),(209112,1467216,'Metropolis Citizen',1,47),(209112,1691930,'Metropolis Citizen',1,48),(209112,1471446,'Metropolis Citizen',2,49),(209112,1691935,'Metropolis Citizen',2,50),(209112,1691940,'Metropolis Citizen',1,51),(209112,1691945,'Metropolis Citizen',1,52),(209112,1691946,'Metropolis Citizen',2,53),(209112,1691967,'Metropolis Citizen',2,54),(209112,1682540,'Metropolis Citizen',1,55),(209112,1691970,'Metropolis Citizen',1,56),(209112,1395056,'Teacher',1,57),(209112,1648751,'Sage',1,58),(209112,1691971,'Island Scientist',2,59),(209112,156405,'General Security Chief',2,60),(209112,134774,'Kahina Ziri',0,61),(209112,1561391,'Senator Barrows',2,62),(209112,1141368,'Officer Mazzuccheli',0,63),(209112,1561419,'Officer Rucka',2,64),(209112,74312,'Hostage Girl',1,65),(209112,1691981,'Hostage Girl',1,66),(209112,53066,'Cesar Santos',2,67),(209112,79086,'Himself',2,68),(209112,1494289,'Emmet Vale',2,69),(209112,1691982,'Metropolis Cop',2,70),(209112,1691983,'Metropolis Cop',2,71),(209112,1691986,'Hero\'s Park Tourist',2,72),(209112,1691987,'Reporter at Monument',2,73),(209112,1395050,'Air Force MP',0,74),(209112,1692027,'Underground Fight Patron',2,75),(209112,1692036,'Beautiful Woman',1,76),(209112,1214961,'Sports Announcer',2,77),(209112,1692048,'Sports Announcer',2,78),(209112,146413,'Party Photographer',2,79),(209112,1692050,'Party Doorman',2,80),(209112,165293,'LeBlanc',1,81),(209112,1695971,'Metropolis Governor',1,82),(209112,146412,'Colorado Woman',0,83),(209112,1695987,'Jail Guard',2,84),(209112,1695988,'Finch\'s Receptionist',1,85),(209112,1695990,'James Harmon - Museum Director',2,86),(209112,1695991,'Bunker Soldier',2,87),(209112,1289444,'Bunker Soldier',2,88),(209112,1695992,'US Park Officer',2,89),(209112,1561416,'Wayne Accountant',2,90),(209112,1696013,'Diner Waitress',1,91),(209112,1201979,'DC Protestor',2,92),(209112,1696018,'DC Protestor',1,93),(209112,1452211,'DC Protestor',0,94),(209112,1696019,'DC Protestor',1,95),(209112,853194,'Senator Purrington',2,96),(209112,1334323,'Convenience Store Robber',2,97),(209112,1685460,'Helicopter Pilot',2,98),(209112,1696038,'Flight Attendant',1,99),(209112,1545503,'Chairman of Joint Chiefs',0,100),(209112,1007391,'Vice Chairman of Joint Chiefs',2,101),(209112,1505007,'Signals Officer - Air Force',2,102),(209112,1696221,'Silo Officer',2,103),(209112,1390506,'Silo Officer',2,104),(209112,1696222,'Supermax Guard',2,105),(209112,1696223,'Prison Barber',2,106),(209112,1189226,'Father Leone',0,107),(209112,1696226,'Wagon Driver',0,108),(209112,1077782,'Creature Vocals (voice)',2,109),(209112,130081,'Kreatur (voice)',2,110),(209112,1696230,'Squatter Boy',2,111),(209112,1374130,'CIA Supervisor',2,112),(209112,104195,'Python Team Leader',2,113),(209112,1696231,'Gotham Desk Cop',2,114),(209112,1000800,'Gotham Desk Cop',1,115),(209112,1696234,'Inmate Thug',2,116),(209112,1696241,'Inmate Thug',2,117),(209112,1548735,'Nairomian Crying Woman',0,118),(209112,1147413,'Nairomian Crying Woman',1,119),(209112,1424325,'Nairomian Crying Woman',1,120),(209112,1696264,'Nairomian Crying Woman',1,121),(209112,1696251,'Nairomian Driver',2,122),(209112,1696236,'Gala Waiter',2,123),(209112,1696238,'Adriana Santos',1,124),(209112,162169,'Older Goat Herder',1,125),(209112,8666,'Older Goat Herder',0,126),(209112,1696268,'Young Goat Herder',0,127),(209112,1696262,'Rebel Translator',2,128),(209112,1393349,'Squatter Mother',1,129),(209112,76674,'Truck',2,130),(209112,639817,'Wayne Financial Employee',2,131),(209112,1561376,'Party Guest',0,132),(209112,1188194,'Daily Planet Reporter (uncredited)',1,133),(209112,1636801,'Wayne Enterprise Executive (uncredited)',1,134),(209112,1645569,'Football Player (uncredited)',2,135),(209112,74595,'Gotham Seaport Cop (uncredited)',2,136),(209112,87220,'Wayne Security (uncredited)',2,137),(209112,204261,'Russian Foreign Minister (uncredited)',0,138),(209112,1019098,'DC Paramedic (uncredited)',0,139),(209112,1062375,'Building Supervisor (uncredited)',2,140),(209112,1031686,'Chilean President (uncredited)',0,141),(209112,1574911,'First Class Lady (uncredited)',0,142),(209112,1597947,'Basketball Player (uncredited)',2,143),(209112,1675748,'Funeral Attender (uncredited)',2,144),(209112,1729054,'Police Officer (uncredited)',2,145),(209112,1729055,'GCU Football Player (uncredited)',2,146),(209112,87443,'Protester (uncredited)',0,147),(209112,1594986,'EMT (uncredited)',2,148),(209112,1283943,'Metropolis Survivor (uncredited)',0,149),(209112,99166,'Rusty - Metropolis Cop (uncredited)',0,150),(209112,1892479,'Protester (uncredited)',0,151),(57201,85,'Tonto',2,0),(57201,53807,'John Reid / The Lone Ranger',2,1),(57201,886,'Butch Cavendish',2,2),(57201,1283,'Red Harrington',1,3),(57201,18473,'Dan Reid',2,4),(57201,207,'Latham Cole',2,5),(57201,47720,'Rebecca Reid',1,6),(57201,12834,'Captain Jay Fuller',2,7),(57201,22063,'Barret',2,8),(57201,583040,'Will',2,9),(57201,71467,'Skinny',2,10),(57201,15374,'Collins',2,11),(57201,45051,'Frank',2,12),(57201,62752,'Ray',2,13),(57201,6951,'Stache',2,14),(57201,84225,'Red Knee',2,15),(57201,126829,'Chief Big Bear',0,16),(57201,1736738,'Soldier #1',2,17),(57201,1094319,'Soldier #3',2,18),(57201,1429470,'Saloon Guy (uncredited)',0,19),(57201,1382010,'Danny',0,20),(57201,1184011,'Wendell',2,21),(57201,76857,'Jesus',2,22),(57201,92949,'Fritz',2,23),(57201,1471922,'Blaine',0,24),(57201,1240490,'Clayton',2,25),(57201,208061,'Martin',2,26),(57201,21723,'Navarro',2,27),(57201,37027,'Hollis',2,28),(57201,17401,'Habberman',2,29),(57201,102567,'Shareholder',2,30),(57201,56267,'Shareholder',2,31),(57201,22250,'Engineer',2,32),(57201,59847,'Homer',0,33),(57201,128560,'Young Cavendish',2,34),(57201,1452636,'Young Cole',0,35),(57201,134171,'Telegraph Operator',0,36),(57201,1112414,'Preacher',0,37),(57201,51754,'Kai',1,38),(57201,114977,'Fat Lady',1,39),(57201,1760466,'Pilar',0,40),(57201,1760467,'Rosalie',0,41),(57201,1760468,'Dancer (Red\'s)',0,42),(57201,1760469,'Dancer (Red\'s)',0,43),(57201,1760470,'Dancer (Red\'s)',0,44),(57201,1459004,'Dancer (Red\'s)',0,45),(57201,1760471,'Dancer (Red\'s)',0,46),(57201,1760472,'Dancer (Red\'s)',0,47),(57201,1391129,'Pawing Drunk',2,48),(57201,1333907,'Mob Member',2,49),(57201,967071,'Mob Member',1,50),(57201,1178981,'Glenda',1,51),(57201,104915,'Stove Pipe',2,52),(57201,1105706,'Grizzled Soldier',0,53),(57201,307885,'Soldier #4',0,54),(57201,569548,'Farmer',2,55),(57201,1759932,'Band at Red\'s',2,56),(57201,1760474,'Band at Red\'s',0,57),(57201,1760475,'Band at Red\'s',0,58),(57201,1760476,'Band at Red\'s',0,59),(49521,73968,'Clark Kent / Kal-El',2,0),(49521,9273,'Lois Lane',1,1),(49521,335,'General Zod',2,2),(49521,1269,'Jonathan Kent',2,3),(49521,2882,'Martha Kent',1,4),(49521,934,'Jor-El',2,5),(49521,2975,'Perry White',2,6),(49521,43202,'Faora-Ul',1,7),(49521,22227,'Colonel Hardy',2,8),(49521,213049,'Lana Lang',1,9),(49521,77223,'Emerson',2,10),(49521,8786,'Lara Lor-Van',1,11),(49521,31028,'Dr. Emil Hamilton',2,12),(49521,236302,'Clark Kent at 13',2,13),(49521,50217,'Steve Lombard',2,14),(49521,17832,'Kelor (voice)',1,15),(49521,12371,'Tor-An',2,16),(49521,37698,'Jax-Ur',2,17),(49521,2320,'Lor-Em',2,18),(49521,11831,'Ro-Zar',1,19),(49521,1272968,'Car-Vex',1,20),(49521,1272969,'Jenny',0,21),(49521,1272970,'Major Carrie Farris',0,22),(49521,4095,'Major Laramore',2,23),(49521,27138,'Heraldson',2,24),(49521,172809,'Byrne',0,25),(49521,59312,'Officer Sekowsky',2,26),(49521,1272971,'Teenage Pete Ross',0,27),(49521,1025970,'Whitney Fordman',2,28),(49521,9464,'General Swanwick',2,29),(49521,1371141,'Student',0,30),(49521,1235591,'Bar Buddy',2,31),(49521,1615574,'Rubble Survivor (uncredited)',2,32),(41154,2888,'Agent J',2,0),(41154,2176,'Agent K',2,1),(41154,16851,'Young Agent K',2,2),(41154,72873,'Griffin',2,3),(41154,7056,'Agent O',1,4),(41154,55936,'Boris The Animal',0,5),(41154,151246,'Boris\'s Girlfriend',1,6),(41154,59860,'Young Agent O',1,7),(41154,19278,'Andy Warhol',2,8),(41154,87070,'Jeffrey Price',2,9),(41154,33533,'Agent X',2,10),(41154,91387,'Mr. Wu',2,11),(41154,1068400,'Colonel\'s Son',2,12),(41154,450,'Colonel',2,13),(41154,1506488,'Downtown Hipster',1,14),(41154,21200,'Agent AA',2,15),(41154,1671443,'Soldier (uncredited)',2,16),(41154,1152008,'MIB Tech #1 (uncredited)',0,17),(122917,7060,'Bilbo Baggins',2,0),(122917,1327,'Gandalf',2,1),(122917,30315,'Thorin Oakenshield',2,2),(122917,25136,'Balin',2,3),(122917,95047,'Dwalin',2,4),(122917,67123,'Bifur',2,5),(122917,34715,'Bofur',2,6),(122917,1193834,'Bombur',0,7),(122917,152566,'Fili',2,8),(122917,207558,'Kili',2,9),(122917,534336,'Oin',2,10),(122917,1193832,'Gloin',0,11),(122917,173451,'Nori',0,12),(122917,81877,'Dori',2,13),(122917,1193833,'Ori',0,14),(122917,114,'Legolas',2,15),(122917,19034,'Tauriel',1,16),(122917,72095,'Thranduil',2,17),(122917,112,'Galadriel',1,18),(122917,1331,'Elrond',2,19),(122917,113,'Saruman',2,20),(122917,65,'Old Bilbo',2,21),(122917,52398,'Beorn',2,22),(122917,80112,'Radagast',2,23),(122917,114019,'Bard',2,24),(122917,11275,'Master of Laketown',2,25),(122917,126667,'Bain',2,26),(122917,60349,'Alfrid',2,27),(122917,1359824,'Sigrid',1,28),(122917,1359823,'Tilda',0,29),(122917,41782,'Azog',2,30),(122917,205406,'Bolg',2,31),(122917,9188,'Dain',0,32),(122917,71580,'Smaug / Necromancer (voice)',2,33),(122917,986734,'Soury',2,34),(122917,15092,'Hilda Bianca',1,35),(122917,240024,'Percy',0,36),(122917,1440652,'Feren',0,37),(122917,127453,'Keeper of the Dungeons',0,38),(122917,1484140,'Ragash',2,39),(122917,1086829,'Olga',0,40),(122917,1356758,'Astrid',1,41),(57158,7060,'Bilbo Baggins',2,0),(57158,1327,'Gandalf',2,1),(57158,30315,'Thorin Oakenshield',2,2),(57158,25136,'Balin',2,3),(57158,95047,'Dwalin',2,4),(57158,67123,'Bifur',2,5),(57158,34715,'Bofur',2,6),(57158,1193834,'Bombur',0,7),(57158,152566,'Fili',2,8),(57158,207558,'Kili',2,9),(57158,71580,'Smaug / The Necromancer',2,10),(57158,72095,'Thranduil',2,11),(57158,114019,'Bard the Bowman',2,12),(57158,19034,'Tauriel',1,13),(57158,114,'Legolas',2,14),(57158,52398,'Beorn',2,16),(57158,41782,'Azog',2,17),(57158,11275,'The Master of Laketown',2,18),(57158,126667,'Bain',2,19),(57158,80112,'Radagast',2,20),(57158,236696,'Goblin',0,21),(57158,1193832,'Gloin',0,22),(57158,112,'Galadriel',1,23),(57158,58769,'Laketown Spy',2,24),(57158,173451,'Nori',0,25),(57158,15092,'Hilda Blanca',1,26),(57158,1359823,'Tilda',0,27),(57158,1359824,'Sigrid',1,28),(57158,81877,'Dori',2,29),(57158,534336,'Oin',2,30),(57158,1193833,'Ori',0,31),(57158,206532,'Narzug',2,32),(271110,16828,'Steve Rogers / Captain America',2,0),(271110,3223,'Tony Stark / Iron Man',2,1),(271110,1245,'Natasha Romanoff / Black Widow',1,2),(271110,60898,'Bucky Barnes / Winter Soldier',2,3),(271110,53650,'Sam Wilson / Falcon',2,4),(271110,1896,'Lieutenant James Rhodes / War Machine',2,5),(271110,17604,'Clint Barton / Hawkeye',2,6),(271110,172069,'T\'Challa / Black Panther',2,7),(271110,6162,'Vision',2,8),(271110,550843,'Wanda Maximoff / Scarlet Witch',1,9),(271110,22226,'Scott Lang / Ant-Man',2,10),(271110,84247,'Sharon Carter',1,11),(271110,1136406,'Peter Parker / Spider-Man',2,12),(271110,81685,'Brock Rumlow / Crossbones',2,13),(271110,227,'Secretary of State Thaddeus Ross',2,14),(271110,3872,'Zemo',2,15),(271110,21134,'Howard Stark',2,16),(271110,62105,'Friday (voice)',1,17),(271110,7060,'Everett K. Ross',2,18),(271110,3141,'May Parker',1,19),(271110,51878,'King T\'Chaka',2,20),(271110,15250,'Maria Stark',1,21),(271110,116969,'Karpov',2,22),(271110,139900,'Ayo',1,23),(271110,1981,'Miriam',1,24),(271110,161932,'M.I.T. Liaison',2,25),(271110,7624,'FedEx Driver',2,26),(271110,19272,'Dr. Broussard',2,27),(271110,150194,'Hero Merc #1',2,28),(271110,1502949,'MRI Tech',0,29),(271110,1779511,'Vicar',0,30),(271110,1779512,'Josef / Super Soldier #1',0,31),(271110,1779513,'Super Soldier #2',0,32),(271110,1582803,'Super Soldier #3',0,33),(271110,1566267,'Super Soldier #4',2,34),(271110,1779514,'Super Soldier #5',0,35),(271110,1483700,'Zemo\'s Wife (voice)',0,36),(271110,25135,'Attachu00e9',2,37),(271110,1327810,'Man at Kiosk',0,38),(271110,1779516,'GSG9 Task Force Gunner',0,39),(271110,1480044,'GSG9 Task Force Pilot',2,40),(271110,1779517,'German Innkeeper',0,41),(271110,1003792,'Raft Guard',2,42),(271110,1323073,'Barge Man #1',0,43),(271110,1779519,'Barge Man #2',0,44),(271110,114634,'Custodian',2,45),(271110,1779520,'Funeral Director',0,46),(271110,1779521,'Woman in Lobby #1',0,47),(271110,1779522,'Woman in Lobby #2',0,48),(271110,209125,'Delivery Truck Driver',0,49),(271110,1779523,'Choir',0,50),(271110,1779524,'Choir',0,51),(271110,1779525,'Choir',0,52),(271110,1779526,'Choir',0,53),(271110,1779527,'Choir',0,54),(271110,1779528,'Choir',0,55),(271110,1779529,'Choir',0,56),(271110,1779530,'Choir',0,57),(271110,1779531,'Choir',0,58),(271110,1779532,'Choir',0,59),(271110,1779533,'Choir',0,60),(271110,1779534,'Choir',0,61),(271110,1779535,'Choir',0,62),(271110,1779536,'Choir',0,63),(271110,1779537,'Choir',0,64),(271110,1779538,'Choir',0,65),(271110,1779539,'Choir',0,66),(271110,1779540,'Choir',0,67),(271110,1779541,'Choir',0,68),(271110,1779542,'Choir',0,69),(271110,1779543,'Choir',0,70),(271110,1779544,'Choir',0,71),(271110,1779545,'Choir',0,72),(271110,1779546,'Choir',0,73),(271110,1779547,'Choir',0,74),(271110,1779548,'Choir',0,75),(271110,1779549,'Choir',0,76),(271110,1779550,'Choir',0,77),(271110,1779551,'Choir',0,78),(271110,1779552,'Choir',0,79),(271110,1779554,'Choir',0,80),(271110,1779557,'Chinese Newscaster',0,81),(271110,1779562,'German Newscaster #1',0,82),(271110,1779563,'German Newscaster #2',0,83),(271110,570756,'News Reporter',0,84),(271110,1779564,'Busboy (Lagos)',0,85),(271110,1779565,'Waiter (Lagos)',0,86),(271110,1779567,'Secretary Ross\'s Aide',2,87),(271110,1375186,'Hero Merc #2',0,88),(271110,1779569,'Hero Merc #3',0,89),(271110,1569801,'Hero Merc #4',0,90),(271110,1779570,'Teenage Girl',0,91),(271110,232256,'UN Staffer Gibson',0,92),(271110,78430,'Stark\'s Assistant',1,93),(271110,1731337,'Nurse',0,94),(271110,1265796,'Cultural Attachu00e9',0,95),(271110,1779572,'Helicopter Pilot',0,96),(271110,91042,'Helicopter Pilot',0,97),(271110,1738113,'Helicopter Pilot',0,98),(271110,592495,'Auctioneer (uncredited)',0,99),(44833,60900,'Lieutenant Alex Hopper',2,0),(44833,28846,'Commander Stone Hopper',2,1),(44833,131519,'Petty Officer Cora \'Weps\' Raikes',1,2),(44833,131520,'Sam',1,3),(44833,13275,'Captain Yugi Nagata',2,4),(44833,3896,'Admiral Shane',2,5),(44833,1052162,'Lieutenant Colonel Mick Canales',2,6),(44833,184581,'Cal Zapata',2,7),(44833,88124,'Boatswain Mate Seaman Jimmy Ordy Ord',2,8),(44833,205406,'Chief Petty Officer Walter The Beast Lynch',2,9),(44833,98953,'Sampson JOOD Strodell',2,10),(44833,60875,'NASA Director',2,11),(44833,36602,'JPJ 2nd Gunner',2,12),(44833,23429,'Dr. Nogrady',2,13),(44833,987677,'Captain Browley',0,14),(44833,1331643,'Chief Engineer Hiroki',0,15),(44833,55205,'JPJ OOD',2,16),(44833,1044953,'JPJ Fireman',0,17),(44833,565508,'JPJ Scat',0,18),(44833,1337274,'Electronic Warfare Supervisor',0,19),(44833,1216133,'Chairman, Joint Chiefs of Staff',2,20),(44833,68180,'Air Force Chief of Staff',2,21),(44833,17838,'Watch Officer',2,23),(44833,12688,'Secretary of Defense',2,24),(44833,3218,'Bartender',2,25),(44833,1326245,'JPJ Sailor',0,26),(44833,210542,'CIC Watch Supervisor',0,27),(44833,66678,'CIC Gunner',0,28),(44833,928532,'Combat Systems Coordinator',0,29),(44833,1044956,'JPJ Port Gunner',0,30),(44833,29054,'British Newscaster',1,31),(44833,1367223,'Spanish Newscaster',0,32),(44833,937232,'Japanese Newscaster',0,33),(44833,1569054,'Jackie Johnson',1,34),(44833,1049830,'Cal\'s Female Colleague',1,35),(44833,1504579,'Old Salt',2,36),(44833,1504580,'JPJ XO Mullenaro',2,37),(44833,1504581,'JPJ Helmsman',2,38),(44833,1504582,'JPJ Starboard Gunner',2,39),(44833,1504583,'JPJ BMOW',0,40),(44833,84756,'Regent Sea Commander',2,41),(44833,204235,'Myoko XO',0,42),(44833,1685026,'JPJ Sailor',2,43),(44833,1685027,'Sampson OOD',2,44),(44833,989607,'Sampson XO',2,45),(44833,86536,'Marine Commandant',2,46),(135397,73457,'Owen Grady',2,0),(135397,18997,'Claire Dearing',1,1),(135397,76793,'Simon Masrani',2,2),(135397,7132,'Vic Hoskins',2,3),(135397,1108907,'Zach Mitchell',2,4),(135397,17181,'Gray Mitchell',2,5),(135397,543505,'Lowery Cruthers',2,6),(135397,78423,'Barry',2,7),(135397,14592,'Henry Wu',2,8),(135397,20750,'Karen Mitchell',1,9),(135397,591834,'Vivian',1,10),(135397,116278,'Hamada',2,11),(135397,150587,'Zara Young',1,12),(135397,170635,'Scott Mitchell',2,13),(135397,59297,'Paddock Supervisor',2,14),(135397,11669,'Jimmy Fallon',2,15),(135397,97446,'Hal Osterly',2,16),(135397,1809787,'Jim Drucker',0,17),(135397,1550012,'Erica Brand',0,18),(135397,930707,'Mr. DNA',2,19),(135397,568045,'Mosasaurus Announcer',0,20),(135397,866906,'Zach\'s Girlfriend',1,21),(135397,979412,'Gyrosphere Operator',2,22),(135397,1391129,'InGen Soldier',2,23),(135397,1522360,'Italian Mother',0,24),(135397,1682513,'Italian Girl',1,25),(135397,1682512,'Park Visitor (uncredited)',1,26),(135397,1637724,'Park Visitor (uncredited)',1,27),(37724,8784,'James Bond',2,0),(37724,5309,'M',1,1),(37724,3810,'Silva',2,2),(37724,5469,'Gareth Mallory / M',2,3),(37724,2038,'Eve',1,4),(37724,1030261,'Su00e9vu00e9rine',1,5),(37724,3926,'Kincade',0,6),(37724,17064,'Q',2,7),(37724,139549,'Bill Tanner',2,8),(37724,11045,'Patrice',2,9),(37724,15737,'Clair Dowar',1,10),(37724,118617,'Doctor Hall',2,11),(37724,206273,'Ronson',0,12),(37724,100242,'Vanessa',1,13),(37724,122556,'MI6 Technician',0,14),(37724,1024234,'Bond\'s Lover',1,15),(37724,1224993,'CNN News Anchor',0,16),(37724,92429,'Silva\'s Henchman',0,17),(37724,47944,'Commuter Husband',2,18),(37724,1399567,'Commuter Wife',0,19),(37724,1168075,'Vauxhall Bridge Police Guard',0,20),(37724,1062405,'Vauxhall Bridge Police Guard',0,21),(37724,1333452,'Shanghai Barman',0,22),(37724,1574323,'Floating Dragon Cashier',0,23),(68721,3223,'Tony Stark / Iron Man',2,0),(68721,12052,'Virginia Pepper Potts',1,1),(68721,1896,'Colonel James Rhodey Rhodes',2,2),(68721,529,'Aldrich Killian / The Mandarin',2,3),(68721,15556,'Maya Hansen',1,4),(68721,15277,'Happy Hogan',2,5),(68721,2282,'Trevor Slattery',2,6),(68721,18473,'Savin',2,7),(68721,121953,'Brandt',1,8),(68721,6162,'Jarvis (voice)',2,9),(68721,6573,'President Ellis',2,10),(68721,46814,'Mrs. Davis',1,11),(68721,17181,'Harley Keener',2,12),(68721,15860,'Vice President Rodriguez',2,13),(68721,77303,'Doctor Wu (as Wang Xueqi)',2,14),(68721,17857,'Ho Yinsen',2,15),(68721,1735538,'Annoying Conference Guy',0,16),(68721,1480047,'Himself',2,17),(68721,1735539,'Himself',0,18),(68721,1212282,'Herself',0,19),(68721,1234512,'Himself',2,20),(68721,74086,'Himself',2,21),(68721,14670,'Herself',1,22),(68721,1336882,'Himself',0,23),(68721,1171861,'Neptune\'s Net Girl',0,24),(68721,1171688,'Neptune\'s Net Boy',0,25),(68721,992507,'Taggert',2,26),(68721,1735541,'Happy\'s Nurse',0,27),(68721,1735542,'Hospital Nurse Reporter',0,28),(68721,574355,'Pushy Tabloid Reporter',0,29),(68721,1088938,'Helicopter Pilot #1',0,30),(68721,1230922,'Helicopter Pilot #2',0,31),(68721,1735543,'Reporter at House Wreckage',0,32),(68721,1265796,'Mandarin Studio Technician',0,33),(68721,1391612,'Mandarin Look-Out',2,34),(68721,49275,'Rose Hills Sherrif',2,35),(68721,1463664,'Rose Hill Deputy / Extremis Soldier',0,36),(68721,1735545,'Rose Hill Christmas Tree Shopper',0,37),(68721,1383576,'Junior Technician (as Sarah Burkharat)',0,38),(68721,430313,'Senior Technician',1,39),(68721,56979,'Satellite Technician (as Andy Lauer)',2,40),(68721,146329,'Technical Director',0,41),(68721,1314963,'Vice President\'s Analyst',0,42),(68721,38709,'Thomas Richards',2,43),(68721,51464,'President\'s Aide',0,44),(68721,113008,'Scared Insurgent',2,45),(68721,1735546,'Laughing Insurgent',0,46),(68721,1241324,'Pageant Emcee',0,47),(68721,37252,'Miss Elk Ridge',1,48),(68721,7624,'Pageant Judge',2,49),(68721,115974,'Gary the Cameraman',2,50),(68721,1735547,'Chad Davis',0,51),(68721,1215021,'Extremis Candidate',2,52),(68721,1735551,'Room Service Waiter / Extremis Soldier',0,53),(68721,54679,'Sweat Shop Agent',1,54),(68721,1735554,'Mandarin Guard',0,55),(68721,237347,'Mandarin Guard (as Juan Bofill)',0,56),(68721,1735558,'Mandarin Guard',0,57),(68721,1735559,'Mandarin Guard',0,58),(68721,1309902,'Mandarin Guard (as Paul O\'Connor)',2,59),(68721,1735560,'Mandarin Guard',0,60),(68721,1735561,'Sleepy Mandarin Girl',0,61),(68721,1228523,'Annoyed Mandarin Guard',2,62),(68721,1323717,'Mandarin Party Girl #1',1,63),(68721,1735562,'Mandarin Party Girl #2',0,64),(68721,1530091,'Tony\'s Guard',2,65),(68721,193946,'Ponytail Express',2,66),(68721,1735564,'Reluctant AIM Guard',0,67),(68721,1735565,'AIM Ping Pong Girl',0,68),(68721,1699796,'AIM Ping Pong Girl',0,69),(68721,1735566,'AIM Ping Pong Girl',0,70),(68721,154158,'Secret Service Agent',2,71),(68721,974169,'Vice President\'s Daughter',1,72),(68721,1735568,'Iron Patriot Fan #1',0,73),(68721,1392385,'Iron Patriot Fan #2',0,74),(68721,1339959,'Air Force One Officer',0,75),(68721,1154054,'Navy Op',2,76),(68721,57251,'Commander',2,77),(68721,113745,'Heather',1,78),(68721,1366,'Extremis Soldier',2,79),(68721,1735569,'Extremis Soldier',0,80),(68721,235778,'Extremis Soldier',0,81),(68721,1535095,'Extremis Soldier',2,82),(68721,216782,'Extremis Soldier',2,83),(68721,89714,'Extremis Soldier',0,84),(68721,1735572,'Extremis Soldier',0,85),(68721,1332241,'Extremis Soldier',2,86),(68721,1648160,'Extremis Soldier',2,87),(68721,1544395,'Extremis Soldier',2,88),(68721,1352976,'Extremis Soldier',0,89),(68721,1544394,'Extremis Soldier',1,90),(68721,149731,'Extremis Soldier',2,91),(68721,1735573,'Extremis Soldier',0,92),(68721,1221121,'Extremis Soldier',0,93),(68721,1080216,'Extremis Soldier',0,94),(68721,590821,'Extremis Soldier',0,95),(68721,1700563,'Extremis Soldier',0,96),(68721,1619994,'Extremis Soldier',0,97),(68721,1735574,'Extremis Soldier',0,98),(68721,1735575,'Extremis Soldier',0,99),(68721,1454104,'Extremis Soldier',0,100),(68721,180838,'Extremis Soldier',0,101),(68721,1622657,'Extremis Soldier',2,102),(68721,169265,'Juan (uncredited)',2,103),(68721,1429470,'White House Reporter (uncredited)',0,104),(68721,103,'Bruce Banner (uncredited)',2,105),(68721,445918,'Richie (uncredited)',2,106),(36668,6968,'Logan / Wolverine',2,0),(36668,4587,'Ororo Munroe / Storm',1,1),(36668,1327,'Eric Lehnsherr / Magneto',2,2),(36668,2387,'Charles Xavier / Professor X',2,3),(36668,10696,'Jean Grey / Phoenix',1,4),(36668,10690,'Marie D\'Ancanto / Rogue',1,5),(36668,7090,'Dr. Henry \'Hank\' McCoy / Beast',2,6),(36668,11023,'Bobby Drake / Iceman',2,7),(36668,11022,'John Allerdyce / Pyro',2,8),(36668,27578,'Katherine Kitty Pryde / Shadowcat',1,9),(36668,11008,'Raven Darkholme / Mystique',1,10),(36668,11006,'Scott Summers / Cyclops',2,11),(36668,980,'Cain Marko / Juggernaut',2,12),(36668,11107,'Warren Worthington III / Angel',2,13),(36668,84222,'Piotr Rasputin / Colossus',2,14),(36668,37046,'Callisto',1,15),(36668,52414,'Jimmy / Leech',2,16),(36668,2131,'Quentin Quire / Kid Omega',2,17),(36668,58115,'Jamie Madrox / Multiple Man',2,18),(36668,1199720,'Philippa Sontag / Arclight',0,19),(36668,73590,'Betsy Braddock / Psylocke',0,20),(36668,115857,'Jubilation Lee / Jubilee',1,21),(36668,941988,'Theresa Rourke Cassidy / Siryn',0,22),(36668,4776,'Warren Worthington II',2,23),(36668,21041,'Dr. Kavita Rao',1,24),(36668,14792,'The President',2,25),(36668,1103,'Trask',2,26),(36668,61555,'Young Jean Grey',1,27),(36668,4741,'Young Angel',2,28),(36668,7624,'Waterhose Man',2,29),(36668,59243,'Minivan Son #2',2,30),(36668,11616,'Moira McTaggert',1,31),(62211,7904,'Michael Mike Wazowski (voice)',2,0),(62211,1230,'James P. Sulley Sullivan (voice)',2,1),(62211,884,'Randall Boggs (voice)',2,2),(62211,15735,'Dean Hardscrabble (voice)',1,3),(62211,1271300,'Young Mike (voice)',0,4),(62211,21198,'Scott u201cSquishyu201d Squibbles (voice)',2,5),(62211,155649,'Don Carlton (voice)',2,6),(62211,52601,'Terri Perry (voice)',2,7),(62211,21290,'Terry Perry (voice)',0,8),(62211,95101,'Art (voice)',2,9),(62211,658,'Professor Knight (voice)',2,10),(62211,51383,'Brock Pearson (voice)',2,11),(62211,51797,'Johnny Worthington (voice)',2,12),(62211,119592,'Claire Wheeler (voice)',1,13),(62211,452205,'Chet Alexander (voice)',2,14),(62211,11806,'Ms. Squibbles (voice)',1,15),(62211,5149,'Karen Graves (voice)',1,16),(62211,17697,'u201cFrighteningu201d Frank McCay (voice)',2,17),(62211,19278,'Referee (voice)',2,18),(62211,482044,'Carrie Williams (voice)',1,19),(62211,10,'Roz (voice)',2,20),(62211,7907,'Yeti (voice)',2,21),(62211,7908,'Fungus (voice)',2,22),(62211,1340664,'Additional Children\'s Voices (voice)',1,23),(91314,13240,'Cade Yeager',2,0),(91314,2283,'Joshua',2,1),(91314,7090,'Harold Attinger',2,2),(91314,61186,'Tessa Yeager',1,3),(91314,1007683,'Shane',2,4),(91314,39389,'Savoy',2,5),(91314,3971,'Darcy',1,6),(91314,109432,'Su Yueming',1,7),(91314,51990,'Lucas Flannery',2,8),(91314,204100,'Gill Wembley',2,9),(91314,539,'Chief of Staff',2,10),(91314,1677237,'Joshua\'s assistant',2,11),(91314,1717278,'Joshua\'s Assistant',0,12),(91314,1087070,'Joshua\'s Assistant',0,13),(91314,937809,'Convertible Passenger',2,14),(91314,1837661,'KSI Executive',0,15),(91314,928594,'Motorist',2,16),(91314,19540,'Optimus Prime (voice)',2,17),(91314,15831,'Galvatron (voice)',2,18),(91314,1230,'Hound (voice)',2,19),(91314,3899,'Drift (voice)',2,20),(91314,2962,'Ratchet (voice)',2,21),(91314,31531,'Crosshairs (voice)',0,22),(91314,15860,'Scourge (voice)',2,23),(91314,19541,'Lockdown (voice)',2,24),(91314,117187,'Brains (voice)',2,25),(91314,27993,'Powerglide (voice)',2,26),(91314,6576,'Thrust (voice)',2,27),(91314,124112,'CIA Director',2,28),(91314,971234,'CIA Analyst',1,29),(91314,1039678,'Arctic Site Guard',2,30),(91314,1347386,'Arctic Site Foreman',0,31),(91314,592343,'Air Force Operator',0,32),(91314,1487978,'Wembley\'s Associate',0,33),(91314,18262,'Theater Landlord',2,34),(91314,1643621,'Cemetery Wind Team',2,35),(91314,1661677,'Joshua\'s Assistant',1,36),(91314,1744759,'Woman in Elevator',0,37),(91314,7574,'Realtor',1,38),(91314,111080,'Landlord\'s Grandson',2,39),(91314,64896,'Hong Kong Police Chief',0,40),(68728,17051,'Oz',2,0),(68728,18973,'Theodora',1,1),(68728,3293,'Evanora',1,2),(68728,1812,'Annie / Glinda',1,3),(68728,5367,'Frank / Finley',2,4),(68728,8854,'Master Tinker',2,5),(68728,125025,'Girl in Wheelchair / China Girl',1,6),(68728,19754,'Knuck',2,7),(68728,224723,'Winkie General',2,8),(68728,123725,'May',1,9),(68728,11357,'Winkie Gate Keeper',2,10),(68728,11769,'Skeptic in Audience',2,11),(68728,150673,'Strongman',0,12),(68728,99932,'Strong Man\'s Wife',1,13),(68728,1157664,'Firebreather',0,14),(68728,36095,'Front Gate Barker',2,15),(68728,1194944,'Wild West Barker',0,16),(68728,1271755,'Oz\'s Tent Barker',0,17),(68728,220557,'Concessioneer',1,18),(68728,1454303,'Girl in Wheelchair\'s Mother',1,19),(68728,1494289,'Girl in Wheelchair\'s Father',2,20),(68728,1018967,'Disgruntled Kansas Man',0,21),(68728,1032536,'Disgruntled Kansas Man',0,22),(68728,1735970,'Coochie Girl',0,23),(68728,1735971,'Clown',0,24),(68728,1004624,'Mr. Baum',0,25),(68728,1735972,'Quadling Greeter',1,26),(68728,1735973,'Quadling Man with Flowers',0,27),(68728,554395,'Quadling Mayor',0,28),(68728,19326,'Elder Tinker',0,29),(68728,1735974,'Quadling Woman with Broom',1,30),(68728,215162,'Quadling Farmer',0,31),(68728,1735975,'Quadling Blacksmith',0,33),(68728,1367929,'Quadling Baker',1,34),(68728,1735976,'Quadling Scarecrow Maker',0,35),(68728,11465,'Quadling Seamstress',1,36),(68728,11464,'Quadling Woman',1,37),(68728,11462,'Quadling Woman',1,38),(68728,1591329,'Quadling Child',0,39),(68728,1735977,'Quadling Child',1,40),(68728,1735978,'Quadling Child',0,41),(68728,1283945,'Quadling Child',0,42),(68728,1735979,'Quadling Bugle Boy',0,43),(68728,1735980,'Quadling Drummer Boy',0,44),(68728,1735981,'Singing & Dancing Munchkin',0,45),(68728,1735983,'Munchkin Carriage Driver',2,46),(68728,1735984,'Female Munchkin Rebel',0,47),(68728,1192831,'Emerald City Man',0,48),(68728,11766,'Emerald City Man',0,49),(68728,1735985,'Emerald City Boy',0,50),(68728,1735986,'Emerald City Citizen',0,51),(68728,11750,'Emerald City Citizen',0,52),(68728,87445,'Emerald City Citizen',1,53),(68728,1735988,'Emerald City Citizen',0,54),(68728,1395067,'Emerald City Citizen',1,55),(68728,1463346,'Emerald City Citizen',1,56),(68728,1446431,'Emerald City Citizen',0,57),(68728,1735989,'Emerald City Citizen',0,58),(68728,1735990,'Emerald City Citizen',0,59),(68728,1340674,'Emerald City Citizen',1,60),(68728,1735991,'Emerald City Citizen',0,61),(68728,1735993,'Emerald City Citizen',0,62),(68728,1735996,'Emerald City Citizen',0,63),(68728,1239388,'Emerald City Citizen',0,64),(68728,1735999,'Emerald City Citizen',0,65),(68728,1182345,'Dancing Munchkin',0,66),(68728,1285754,'Winkie Guard (uncredited)',0,67),(68728,1464485,'Kansas Girl (uncredited)',0,68),(68728,1736003,'Quadling Girl (uncredited)',1,69),(68728,1736004,'Winkie Guard (uncredited)',0,70),(68728,1364762,'Emerald City Man (uncredited)',0,71),(68728,1594124,'Emerald City Woman (uncredited)',1,72),(68728,1736005,'Emerald City Resident (uncredited)',0,73),(68728,1088597,'Quadling Man (uncredited)',0,74),(68728,1092687,'Mayor\'s Assistant (uncredited)',0,75),(68728,1471386,'Quadling #10 (uncredited)',0,76),(68728,1736006,'Emerald City Man Kevin (uncredited)',0,77),(68728,1736007,'Quadling Child (uncredited)',0,78),(68728,1736008,'Tinker (uncredited)',0,79),(68728,1571435,'Winkie (uncredited)',0,80),(68728,146414,'Tinker (uncredited)',0,81),(68728,1736418,'Quadling Man (uncredited)',0,82),(68728,1736419,'Emerald City Citizen (uncredited)',0,83),(68728,1736420,'Kansas Magic Show Patron (uncredited)',0,84),(68728,1736422,'Emerald City Resident (uncredited)',0,85),(68728,1558214,'Tinker (uncredited)',0,86),(68728,1736424,'Kansas Gentleman (uncredited)',0,87),(68728,1736425,'Quadling Carriage Driver (uncredited)',0,88),(68728,1736426,'Quadling Farmer (uncredited)',0,89),(68728,18231,'Winkie (uncredited)',0,90),(68728,1736427,'Emerald City Boy (uncredited)',0,91),(68728,1736428,'Emerald City Girl (uncredited)',0,92),(68728,1194878,'Theodora\'s Guard (uncredited)',0,93),(68728,1736429,'Emerald City Girl (uncredited)',0,94),(68728,1154494,'Winkie (uncredited)',2,95),(68728,20251,'Mayor of Emerald City (uncredited)',0,96),(68728,1736430,'Winkie (uncredited)',0,97),(68728,1207888,'Quadling Woman (uncredited)',1,98),(68728,1736431,'Emerald City Woman (uncredited)',1,99),(68728,1636759,'Tinker (uncredited)',0,100),(68728,1736432,'Emerald City Citizen (uncredited)',0,101),(68728,1382396,'Winkie (uncredited)',0,102),(68728,1736433,'Tinker (uncredited)',0,103),(68728,1736434,'Winkie (uncredited)',0,104),(68728,1736435,'Quadling Man (uncredited)',0,105),(68728,1736436,'Winkie (uncredited)',0,106),(68728,1736437,'Quadling Man (uncredited)',0,107),(68728,1736438,'Quadling Woman (uncredited)',1,108),(68728,1469377,'Kansas Man (uncredited)',0,109),(68728,1736496,'Winkie (uncredited)',0,110),(68728,1480067,'Lt. Tinker (uncredited)',2,111),(68728,1736497,'Happy Clown (uncredited)',0,112),(68728,1242060,'Tinker (uncredited)',0,113),(68728,240758,'Emerald City Resident (uncredited)',0,114),(68728,1014618,'Emerald City Man (uncredited)',0,115),(68728,1263199,'Roustabout / Quadling Chimney Sweeper (uncredited)',0,116),(68728,1736498,'Emerald City Man (uncredited)',0,117),(68728,1736500,'Quadling Woman (uncredited)',1,118),(68728,1736501,'Emerald City Resident (uncredited)',0,119),(68728,1736502,'Kansas Popcorn Girl (uncredited)',1,120),(68728,1736503,'Emerald City Citizen (uncredited)',1,121),(68728,1694864,'Emerald City Citizen (uncredited)',0,122),(68728,1736504,'Quadling (uncredited)',0,123),(68728,1736505,'Emerald City Resident (uncredited)',0,124),(68728,1736506,'Quadling Child (uncredited)',0,125),(68728,1484161,'Baker (uncredited)',0,126),(68728,1736507,'Quadling (uncredited)',0,127),(68728,1736509,'Quadling Woman (uncredited)',0,128),(68728,1561708,'Quadling Woman (uncredited)',1,129),(68728,1736511,'Emerald City Girl (uncredited)',0,130),(68728,933580,'Emerald City Resident (uncredited)',0,131),(68728,1736512,'Quadling Woman (uncredited)',0,132),(68728,1736515,'Quadling Woman (uncredited)',1,133),(68728,1736517,'Quadling (uncredited)',1,134),(68728,1736518,'Quadling (uncredited)',0,135),(68728,128973,'Quadling Man (uncredited)',0,136),(68728,1736520,'Winkie Soldier (uncredited)',0,137),(68728,935714,'Emerald City Resident (uncredited)',0,138),(68728,1736521,'Fisherman (uncredited)',0,139),(68728,1451618,'Emerald City Resident (uncredited)',2,140),(68728,1736522,'Tinker (uncredited)',0,141),(68728,1736523,'Tinker (uncredited)',0,142),(68728,1456724,'Quadling Townsperson #2 (uncredited)',1,143),(68728,1736524,'Emerald City Resident (uncredited)',0,144),(68728,1736525,'Roustabout (uncredited)',0,145),(68728,1736526,'Emerald City Citizen (uncredited)',0,146),(68728,1735577,'Quadling Angry Townswoman (uncredited)',1,147),(68728,1736528,'Emerald City Resident (uncredited)',0,148),(68728,1736529,'Winkie (uncredited)',0,149),(68728,53760,'Munchkin (uncredited)',2,150),(68728,1736530,'Quadling Child (uncredited)',0,151),(68728,1736532,'Quadling Farah (uncredited)',0,152),(68728,1736533,'Tinker (uncredited)',0,153),(68728,1586918,'Guard #1 (uncredited)',2,154),(68728,1736534,'Carriage Coachman (uncredited)',0,155),(68728,1519716,'Winkie (uncredited)',0,156),(68728,1736535,'Quadling Woman (uncredited)',1,157),(68728,1736537,'Kansas Boy (uncredited)',0,158),(68728,1736538,'Winkie (uncredited)',0,159),(102382,37625,'Peter Parker / Spider-Man',2,0),(102382,54693,'Gwen Stacy',1,1),(102382,134,'Max Dillon / Electro',2,2),(102382,122889,'Harry Osborn / Green Goblin',2,3),(102382,55152,'Richard Parker',2,4),(102382,6368,'Mary Parker',1,5),(102382,10132,'Donald Menken',2,6),(102382,13242,'Aleksei Sytsevich / The Rhino (Uncredited)',2,7),(102382,35,'Aunt May',1,8),(102382,558928,'Young Peter Parker',2,9),(102382,72855,'Felicia Hardy',1,10),(102382,20982,'Dr. Ashley Kafka',2,11),(102382,2955,'Norman Osborn',2,12),(102382,107770,'Allistar Smythe',2,13),(102382,5724,'Captain Stacy',2,14),(102382,156989,'Helen Stacy',2,15),(102382,1424715,'Philip Stacy',2,16),(102382,61263,'Howard Stacy',2,17),(102382,930322,'Simon Stacy',2,18),(102382,7624,'Graduation Guest',2,19),(102382,9289,'Gustav Fiers / The Gentleman',2,20),(102382,1093920,'Woman in Statue Of Liberty Costume',1,21),(102382,93053,'Dr. Jallings - Science Investigator',2,22),(102382,163731,'Man in Black Suit',2,23),(102382,190895,'Kari',1,24),(102382,171886,'Agent Berkley',2,25),(102382,8349,'Uncle Ben',2,26),(102382,1634923,'Swat Team Leader',2,27),(102382,1650216,'Jorge',2,28),(102382,963767,'G-5 Co-Pilot',2,29),(102382,1232538,'Gwen\'s Cabbie',0,30),(102382,1657458,'British Desk Attendant',1,31),(102382,1657460,'Principal Conway',2,32),(102382,176658,'Times Square Cop',2,33),(102382,115975,'Lead Officer',2,34),(102382,1224691,'Police Captain',2,35),(102382,94432,'Bodega Cashier',2,36),(102382,1492018,'Robber',2,37),(102382,281638,'Air Traffic Controller',2,38),(102382,1479737,'Dispatcher',1,39),(102382,1657469,'Dispatcher',2,40),(102382,928619,'Osborn Butler',2,41),(102382,205724,'Pilot',2,42),(102382,1454093,'Pilot',2,43),(102382,1657471,'Jorge\'s Mother',1,44),(102382,1480047,'NY1 News Anchor',2,45),(102382,1279414,'NY1 Reporter',1,46),(102382,4893,'Chinese Grandpa',2,47),(102382,1054326,'Armed Robber',2,48),(102382,1286873,'Armed Robber',0,49),(102382,1047655,'Ravencroft Guard',2,50),(102382,1364346,'Ravencroft Guard',2,51),(102382,1657529,'Bully',2,52),(102382,1455792,'Bully',2,53),(102382,1657525,'Bully',2,54),(102382,995205,'Bully',2,55),(102382,60119,'Doctor',2,56),(102382,1358468,'Doctor',2,57),(102382,73933,'OsCorp Department Head',2,58),(102382,132310,'Times Square Bystander',2,59),(102382,1266290,'Times Square Bystander',2,60),(102382,1333666,'Corporate Lawyer',2,61),(102382,1257860,'Graduation Parent (uncredited)',1,62),(102382,1657532,'Bully',2,63),(102382,1218185,'Pilot',2,64),(49013,887,'Lightning McQueen (voice)',2,0),(49013,15897,'Mater (voice)',2,1),(49013,3895,'Finn McMissile (voice)',2,2),(49013,1246,'Holley Shiftwell (voice)',1,3),(49013,1241,'Francesco Bernoulli (voice)',2,4),(49013,1926,'Sir Miles Axlerod (voice)',2,5),(49013,3491,'Professor Z (voice)',2,6),(49013,3266,'Grem (voice)',2,7),(49013,31514,'Acer (voice)',2,8),(49013,11357,'Rod Torque Redline (voice)',2,9),(49013,4252,'Luigi (voice)',2,10),(49013,942993,'Darrell Cartrip (voice)',2,11),(49013,15898,'Guido (voice)',2,12),(49013,188559,'Brent Mustangburger (voice)',0,13),(49013,11355,'Siddeley / Leland Turbo (voice)',2,15),(49013,571731,'David Hobbscap (voice)',0,16),(49013,25074,'Victor Hugo / Vladimir Trunkov / Ivan the Tow Truck (voice)',2,17),(49013,116317,'Fillmore / Combat Ship (voice)',0,18),(49013,15900,'Sarge (voice)',2,19),(49013,1117785,'Tomber (voice)',0,20),(49013,1224968,'Crabby (voice)',0,21),(49013,22383,'Uncle Topolino (voice)',2,22),(49013,13333,'The Queen / Mama Topolino (voice)',1,23),(49013,5149,'Sally Carrera (voice)',1,25),(49013,11159,'Ramone (voice)',2,26),(49013,15899,'Flo (voice)',1,27),(49013,15902,'Sheriff (voice)',0,28),(49013,381,'Lizzie (voice)',1,29),(49013,7907,'Mack (voice)',2,30),(49013,60074,'Otis (voice)',2,31),(49013,1117784,'Mel Dorado (voice)',0,32),(49013,216294,'Lewis Hamilton (voice)',2,33),(49013,34515,'Alexander Hugo (voice)',2,34),(49013,1360072,'J. Curby Gremlin (voice)',0,35),(49013,32532,'Tubbs Pacer (voice)',2,36),(49013,21125,'Van (voice)',2,37),(49013,3202,'Minny (voice)',1,38),(49013,1230799,'Mater\'s Computer (voice)',0,39),(49013,932719,'Jeff Gorvette (voice)',0,40),(49013,7879,'Additional Voices (voice)',2,41),(49013,1443765,'Frosty (voice)',2,42),(49013,938203,'Fernando Alonso (voice)',0,43),(49013,1443756,'Vitaly Petrov (voice)',0,44),(49013,1443755,'Flash (voice)',0,45),(49013,1443757,'Memo Rojas (voice)',0,46),(49013,1156310,'Jacques Villeneuve (voice)',2,47),(49013,1443760,'Sebastian Vettel (voice)',0,48),(44912,10859,'Hal Jordan / Green Lantern',2,0),(44912,59175,'Carol Ferris',1,1),(44912,133,'Hector Hammond',2,2),(44912,504,'Senator Hammond',2,3),(44912,2983,'Sinestro',2,4),(44912,7242,'Abin Sur',2,5),(44912,109942,'Carol Ferris at 11',1,6),(44912,4602,'Martin Jordan',2,7),(44912,27107,'Jack Jordan',2,8),(44912,147719,'Jim Jordan',0,9),(44912,147720,'Jason Jordan',2,10),(44912,60887,'Janice Jordan',1,11),(44912,9780,'Dr. Amanda Walker',1,12),(44912,55934,'Tom Kalmaku',2,13),(44912,61981,'Kilowog (voice)',2,14),(44912,118,'Tomar-Re (voice)',2,15),(44912,6574,'Parallax (voice)',2,16),(44912,1195675,'Four Star General Caven',0,17),(44912,117885,'Young Hal',2,18),(44912,223027,'Mom',0,19),(44912,81321,'Jessica Jordan',1,20),(44912,565498,'Party Guest #1',1,21),(44912,62735,'Tomar-Re (uncredited)',2,22),(168259,12835,'Dominic Toretto',2,0),(168259,8167,'Brian O\'Conner',2,1),(168259,18918,'Hobbs',2,2),(168259,17647,'Letty',1,3),(168259,8169,'Roman',2,4),(168259,8171,'Tej (as Chris \'Ludacris\' Bridges)',2,5),(168259,22123,'Mia',1,6),(168259,938,'Jakande',2,7),(168259,57207,'Kiet',2,8),(168259,997887,'Kara',0,9),(168259,1251069,'Ramsey',1,10),(168259,6856,'Mr. Nobody',2,11),(168259,976,'Deckard Shaw',2,12),(168259,61697,'Han',2,13),(168259,90633,'Gisele',1,14),(168259,155,'Sean Boswell',2,15),(168259,73269,'Elena',1,16),(168259,53252,'Hector',2,17),(168259,222906,'Sheppard',2,18),(168259,114019,'Owen Shaw',2,19),(168259,492791,'Safar',2,20),(168259,1880145,'Jack',0,21),(168259,1880146,'Jack',0,22),(168259,1533850,'Samantha Hobbs',1,23),(168259,1534800,'Letty Fan',2,24),(168259,1364893,'Female Racer',1,25),(168259,1161711,'Male Racer',0,26),(168259,1578220,'Race Starter',1,27),(168259,118593,'Hot Teacher',0,28),(168259,1880147,'Doctor',0,29),(168259,80619,'Priest',2,30),(168259,97844,'Merc Tech',0,31),(168259,1381712,'Weapons Tech',0,32),(168259,1880148,'Billionaire',0,33),(168259,1880149,'Dominican Priest',0,34),(168259,1440699,'Hana',0,35),(168259,1093707,'Merc Driver (as Ben Blankenship)',0,36),(168259,1880150,'DJ',0,37),(168259,224092,'DJ',0,38),(168259,54792,'Drone Tech',2,39),(168259,1128522,'Jasmine',1,40),(168259,1451616,'Mando',0,41),(168259,78804,'Advisor',1,42),(168259,1880151,'Field Reporter',0,43),(168259,1448173,'Cop',0,44),(168259,96321,'Leo (uncredited / archive)',2,45),(168259,116277,'Neela (uncredited / archive)',1,46),(168259,58197,'Twinkie (uncredited)',0,47),(168259,90634,'Santos (uncredited / archive)',0,48),(168259,1563213,'Race Wars Racer (uncredited)',0,49),(168259,1795034,'Brian O\'Conner (uncredited)',0,50),(168259,1480862,'Brian O\'Connor (uncredited)',2,51),(72190,287,'Gerry Lane',2,0),(72190,175826,'Karen Lane',1,1),(72190,1027850,'Rachel Lane',1,2),(72190,1186840,'Constance Lane',1,3),(72190,18473,'Captain Speke',2,4),(72190,78050,'Andrew Fassbach',2,5),(72190,7219,'Navy Captain Mullenaro',2,6),(72190,1180907,'Segen',0,7),(72190,119297,'Jurgen Warmbrunn',2,8),(72190,2607,'Thierry Umutoni',0,9),(72190,1180908,'Tomas',0,10),(72190,52,'Ex-CIA Agent',2,12),(72190,28657,'Parajumper',2,13),(72190,12982,'W.H.O. Doctor',2,14),(72190,677,'W.H.O. Doctor',2,15),(72190,17018,'W.H.O. Doctor',1,16),(72190,17839,'WHO Doctor',2,17),(72190,23440,'Russian Fighter',0,18),(72190,1221048,'Argus Sailor',2,19),(72190,19704,'Market Attacker',2,20),(72190,1694513,'Israeli Camp Refugee',1,21),(72190,1360156,'Camp Humphrey\'s Soldier',0,22),(127585,6968,'Logan / Wolverine',2,0),(127585,5530,'Charles Xavier / Professor X (Young)',2,1),(127585,17288,'Erik Lehnsherr / Magneto (Young)',2,2),(127585,72129,'Raven Darkholme / Mystique',1,3),(127585,4587,'Ororo Munroe / Storm',1,4),(127585,10690,'Marie D\'Ancanto / Rogue',1,5),(127585,27578,'Katherine Kitty Pryde / Shadowcat',1,6),(127585,22970,'Bolivar Trask',2,7),(127585,1327,'Erik Lehnsherr / Magneto (Old)',2,8),(127585,2387,'Charles Xavier / Professor X (Old)',2,9),(127585,3292,'Hank McCoy / Beast',2,10),(127585,7090,'Hank McCoy / Beast (older)',2,11),(127585,11023,'Bobby Drake / Iceman',2,12),(127585,78423,'Lucas Bishop',2,13),(127585,55089,'Peter Maximoff / Quicksilver',2,14),(127585,1056053,'William Stryker',2,15),(127585,84222,'Piotr Rasputin / Colossus',2,16),(127585,64439,'Clarice Ferguson / Blink',1,17),(127585,1010189,'Roberto da Costa / Sunspot',2,18),(127585,121868,'James Proudstar / Warpath',0,19),(127585,10696,'Jean Grey / Phoenix',1,20),(127585,11006,'Scott Summers / Cyclops',2,21),(127585,429,'Alex Summers / Havok',2,22),(127585,1284084,'Mortimer Toynbee / Toad',0,23),(127585,173658,'Congresman Davis',2,24),(127585,934847,'Congressman Parker',0,25),(127585,4250,'Senator Brickman',2,26),(127585,1322030,'Ink',0,27),(127585,7013,'President Richard Nixon',2,28),(127585,9032,'Man with a movie camera',2,29),(127585,1738056,'En Sabah Nur',0,30),(127585,1240748,'Groundskeeper',2,31),(127585,64674,'Pinstripe Mafioso',2,32),(127585,102852,'Col. Sanders',2,33),(127585,1691154,'Vietnam MP Guard',0,34),(127585,1519259,'Mutant Soldier',2,35),(127585,96594,'Quarantine Doctor',0,36),(127585,1674956,'Congressman McCarter',0,37),(127585,171955,'Trask Secretary',0,38),(127585,929943,'Ms. Maximoff',0,39),(127585,147892,'Pentagon Tour Guide',0,40),(127585,1207366,'Surveillance Guard',0,41),(127585,522169,'Surveillance Guard',2,42),(127585,131335,'Pentagon Cook',2,43),(127585,1320015,'Pentagon Elevator Guard',0,44),(127585,139622,'Armed Kitchen Guard',0,45),(127585,1300745,'General Nhuan',2,46),(127585,1671572,'Vietnamese Captain',2,47),(127585,141741,'General Petrov',0,48),(127585,29461,'Peace Summit Reporter',0,49),(127585,60906,'Nixon Aide',2,50),(127585,44237,'Secretary of Defense',2,51),(127585,7009,'US Army General',2,52),(127585,198540,'Desk Anchor',0,53),(127585,81418,'French Emergency Nurse',1,54),(127585,1691173,'French TV Reporter',2,55),(127585,198751,'Female Traveler',0,56),(127585,115596,'Blue Suit Traveler',0,57),(127585,56418,'Airport Backpacker',2,58),(127585,1251615,'Flight Attendant',0,59),(127585,1684713,'White House Reporter',2,60),(127585,1448201,'White House Ticket Man',2,61),(127585,105496,'Secret Service Agent',0,62),(127585,1148496,'Potomac River Cop',0,63),(127585,1784732,'Chinese Translator',0,64),(54138,62064,'James T. Kirk',2,0),(54138,17306,'Spock',2,1),(54138,8691,'Nyota Uhura',1,2),(54138,1372,'Dr. Leonard \'Bones\' McCoy',2,3),(54138,11108,'Montgomery \'Scotty\' Scott',2,4),(54138,68842,'Hikaru Sulu',2,5),(54138,71580,'Khan Noonien Singh',2,6),(54138,21028,'Pavel Chekov',2,7),(54138,21089,'Christopher Pike',2,8),(54138,27811,'Alexander Marcus',2,9),(54138,59860,'Carol Marcus',1,10),(54138,76242,'Thomas Harewood',2,11),(54138,180997,'Rima Harewood',1,12),(54138,13024,'Ensign Brackett',1,13),(54138,1192492,'Navigation Officer Darwin',1,14),(54138,58508,'Science Officer 0718',2,15),(54138,62093,'Klingon',2,16),(54138,224182,'Klingon',2,17),(54138,78494,'Captain Abbot',2,18),(54138,1295,'Keenser',2,19),(54138,74568,'George Kirk',2,20),(54138,1352682,'Doctor',0,21),(54138,1386113,'Girl',1,22),(54138,88706,'Girl',1,23),(54138,41421,'Winona Kirk',1,24),(54138,1749,'Spock Prime',2,25),(54138,1271733,'Madeline',0,26),(54138,1228940,'Ensign Froman',0,27),(54138,1051473,'Lead Nibiran',2,28),(54138,60946,'Lieutenant Chapin',2,29),(54138,178452,'Nibiran',2,30),(54138,1110406,'Lucille Harewood',0,31),(54138,154702,'Cupcake',2,32),(54138,1225974,'U.S.S. Enterprise Shuttle Ensign',0,33),(54138,62710,'Torpedo Security',2,34),(54138,119699,'Uniformed Mercenary',2,35),(54138,42317,'U.S.S. Vengeance Officer',2,36),(54138,1129806,'U.S.S. Vengeance Officer',0,37),(54138,19508,'U.S.S. Vengeance Bridge Officer',2,38),(54138,58330,'U.S.S. Vengeance Bridge Officer',2,39),(54138,162924,'U.S.S. Vengeance Ensign',2,40),(54138,5575,'Starfleet Admiral',2,41),(54138,1386122,'U.S.S. Enterprise Bridge Crew',0,42),(54138,204384,'U.S.S. Enterprise Bridge Crew',0,43),(54138,1386119,'Starfleet Admiral',0,44),(54138,1386120,'Starfleet Admiral',0,45),(54138,1278368,'Transport Officer',0,46),(54138,1386121,'U.S.S. Enterprise Bridge Crew',0,47),(54138,1386123,'U.S.S. Enterprise Bridge Crew',0,48),(54138,1386124,'U.S.S. Enterprise Bridge Crew',0,49),(54138,1386125,'U.S.S. Enterprise Bridge Crew',0,50),(54138,1386126,'U.S.S. Enterprise Bridge Crew',0,51),(54138,1386127,'Lady V',0,52),(54138,56448,'U.S.S. Enterprise Security',2,53),(54138,1160181,'U.S.S. Enterprise Red Shirt',2,54),(54138,5141,'Moto',1,55),(54138,1384191,'Bar Girl',0,56),(54138,182272,'San Francisco Woman',1,57),(54138,1386128,'U.S.S. Enterprise Nurse',0,58),(54138,1386129,'Shuttle Pilot',2,59),(54138,1386131,'San Francisco Bar Patron',0,60),(54138,1386130,'U.S.S. Enterprise Crew',0,61),(54138,1386132,'U.S.S. Vengeance Security',0,62),(54138,1386134,'San Francisco Resident',0,63),(54138,1275519,'San Francisco Resident',0,64),(54138,1386136,'San Francisco Resident',0,65),(54138,1275938,'San Francisco Resident',0,66),(54138,1386138,'Nibiru Child',0,67),(54138,1386140,'Nibiru Child',0,68),(54138,1386141,'Shaku',0,69),(54138,1386144,'Starfleet Ceremonial Guard',0,70),(54138,1386145,'Starfleet Ceremonial Guard',0,71),(54138,1386146,'Starfleet Ceremonial Guard',0,72),(54138,1386147,'Starfleet Ceremonial Guard',0,73),(54138,181879,'Starfleet Memorial Admiral',0,74),(54138,1275520,'Starfleet Memorial Admiral',0,75),(54138,1386148,'Additional Voices (voice)',2,76),(54138,78432,'Additional Voices (voice)',2,77),(54138,1277452,'Additional Voices (voice)',0,78),(54138,24362,'Additional Voices (voice)',2,79),(54138,164614,'Additional Voices (voice)',2,80),(54138,71536,'Additional Voices (voice)',2,81),(54138,60279,'Additional Voices (voice)',2,82),(54138,1141368,'Additional Voices (voice)',0,83),(54138,86170,'Additional Voices (voice)',1,84),(54138,19278,'Additional Voices (voice)',2,85),(54138,931939,'Ensign Spyke (uncredited)',2,86),(54138,1161711,'U.S.S. Enterprise Security (uncredited)',0,87),(54138,1039680,'NYU Nurse (uncredited)',0,88),(54138,1161712,'Bar Patron (uncredited)',2,89),(54138,1386149,'Additional Voices (voice)',0,90),(54138,135818,'Additional Voices (voice)',1,91),(54138,1386150,'Additional Voices (voice)',0,92),(54138,1235786,'Additional Voices (voice)',0,93),(54138,1386151,'Additional Voices (voice)',0,94),(54138,1386152,'Additional Voices (voice)',0,95),(54138,1386153,'Additional Voices (voice)',0,96),(54138,1386154,'Additional Voices (voice)',0,97),(81005,3292,'Jack',2,0),(81005,73357,'Princess Isabelle',1,1),(81005,3061,'Elmont',2,2),(81005,2283,'Roderick',2,3),(81005,6972,'King Brahmwell',2,4),(81005,1665,'Crawe',2,5),(81005,1125,'Wicke',2,6),(81005,11184,'Old Hamm',2,7),(81005,2440,'General Fallon',2,8),(81005,53916,'General Entin',2,9),(81005,202760,'Fye',0,10),(81005,27632,'Fumm',0,11),(81005,3072,'Jack\'s Dad',2,12),(81005,590936,'Horse Merchant',2,14),(81005,590937,'The kings Foot Soldier',0,15),(81005,590938,'Soothsayer',0,16),(81005,590939,'Jack\'s Mum',0,17),(81005,1714,'Foe',2,18),(81005,126042,'Tour Guide',0,19),(81005,33310,'The Queen',1,20),(81005,138161,'Badger',0,21),(81005,8399,'Uncle',2,22),(81005,25135,'Fee',2,23),(64682,6193,'Jay Gatsby',2,0),(64682,2219,'Nick Carraway',2,1),(64682,36662,'Daisy Buchanan',1,2),(64682,33192,'Tom Buchanan',2,3),(64682,1133349,'Jordan Baker',1,4),(64682,52848,'Myrtle Wilson',1,5),(64682,76512,'George Wilson',2,6),(64682,35780,'Meyer Wolfsheim',2,7),(64682,236851,'Teen Jay Gatsby',2,8),(64682,205474,'Catherine',1,9),(64682,45211,'Dan Cody',2,10),(64682,44838,'Herzog',2,11),(64682,77496,'Michaelis',2,12),(64682,38665,'Owl Eyes',2,13),(64682,1272936,'The Boss-Probity Trust',0,14),(64682,1272937,'Pammy',0,15),(64682,1272942,'Klipspringer',0,16),(64682,123884,'Mrs. McKee',0,17),(64682,1433766,'The Twins',0,18),(64682,1272938,'Barman',0,19),(64682,1272939,'Walter Chase',0,20),(64682,1272940,'Police Commissioner',0,21),(64682,1272941,'Trimalchio the Orchestra Leader',2,22),(64682,150536,'Benny McClenahan',2,23),(64682,1243767,'Newton Orchid',2,24),(64682,61342,'Clerk - Probity Trust',2,25),(64682,214545,'Clerk - Probity Trust',2,26),(64682,55901,'Languid Girl',0,27),(64682,61784,'Head Waiter - Speakeasy',0,28),(64682,1889000,'Clarinetist',0,29),(64682,1102453,'Extra (uncredited)',2,30),(68726,17605,'Stacker Pentecost',2,0),(68726,56365,'Raleigh Becket',2,1),(68726,95101,'Dr. Newton Geiszler',2,2),(68726,2372,'Hannibal Chau',2,3),(68726,39659,'Gottlieb',0,4),(68726,18054,'Mako Mori',0,5),(68726,94864,'Herc Hansen',2,6),(68726,112692,'Aleksis Kaidanovsky',2,7),(68726,1038379,'Chuck Hansen',2,8),(68726,118590,'Tommy T',2,9),(68726,15376,'Miles',2,10),(68726,5365,'Ops Tendo Choi',2,11),(68726,142193,'Yancy Becket',2,12),(68726,10847,'Wizened Man',2,13),(68726,1428550,'Raleigh and Yancy\'s Mom',0,14),(68726,1480855,'Hannibal Chau Thug',0,15),(68726,83423,'Lt. A. Kaidanovsky',1,16),(68726,5925,'Officer',2,17),(68726,559416,'Young Mako',0,18),(68726,86237,'Captain Merrit',2,19),(68726,1226806,'McTighe',0,20),(68726,100464,'1st Officer',2,21),(68726,1683877,'Gipsy Danger AI (voice)',0,22),(68726,4569,'Old Man on Beach',2,23),(68726,1255174,'Child',2,24),(68726,41465,'American UN Representative',2,25),(68726,1379395,'British UN Representative',2,26),(68726,46906,'Canadian UN Representative',2,27),(68726,224144,'Engineer',2,28),(68726,1683916,'Chinese Girl in Anti-Kaiju Refuge',0,29),(68726,1176955,'TV Reporter',0,30),(68726,1683922,'Raleigh and Yancy\'s Dad',2,31),(68726,59613,'Saltchuck Crew',2,32),(68726,1683931,'Saltchuck Crew',0,33),(68726,1517893,'Saltchuck Crew',0,34),(68726,59198,'Saltchuck Crew',2,35),(68726,1239394,'UN Representative',2,36),(68726,1683938,'UN Representative',0,38),(68726,1683941,'UN Representative',0,39),(68726,125579,'UN Representative',0,40),(68726,231140,'UN Representative',0,41),(68726,1003550,'Young Mako\'s Father',2,42),(68726,1683943,'Young Mako\'s Mother',0,43),(38356,10959,'Sam Witwicky',2,0),(38356,6949,'Bruce Brazos',2,1),(38356,83586,'Jerry Wang',2,2),(38356,3910,'National Intelligence Director',1,3),(38356,19536,'Lt. Colonel William Lennox',2,4),(38356,8169,'Robert Epps',2,5),(38356,1331,'Megatron (voice)',2,6),(38356,1749,'Sentinel Prime (voice)',2,7),(38356,1241,'Simmons',2,8),(38356,236048,'Carly',1,9),(38356,18352,'Dylan',2,10),(38356,21088,'Dutch',2,11),(38356,19540,'Optimus Prime (voice)',2,12),(38356,12797,'General Morshower',2,13),(38356,81178,'Starscream (voice)',2,14),(38356,2962,'Ratchet (voice)',2,15),(38356,1736,'Sideswipe (voice)',2,16),(38356,15831,'Shockwave / Soundwave / Barricade (voice)',2,17),(38356,84495,'Ironhide (voice)',2,18),(38356,78798,'Wheelie (voice)',2,19),(38356,117187,'Brains (voice)',2,20),(38356,60602,'Roadbuster/Amp (voice)',2,21),(38356,206334,'Accuretta Executive',2,22),(38356,31531,'Leadfoot/Target (voice)',0,23),(38356,24305,'Judy Witwicki',1,24),(38356,14721,'Ron Witwicki',0,25),(38356,87957,'Laserbeak (voice)',2,26),(38356,14102,'Que / Wheeljack (voice)',2,27),(38356,1318952,'Mailroom Worker',0,28),(38356,1517868,'Accuretta Worker',1,29),(38356,1585120,'NEST Technician (uncredited)',2,30),(38356,95875,'Mailroom Worker',2,31),(38356,58925,'Eddie',2,32),(38356,106843,'Buzz Aldrin',2,33),(38356,95777,'Bill O\'Reilly',0,34),(38356,19541,'Military Drone Operator',2,35),(38356,11886,'Dino (voice)',2,36),(38356,15831,'Shockwave / Soundwave (voice)',2,37),(38356,1465852,'Mailroom Worker',0,38),(105864,963134,'Arlo (voice)',0,0),(105864,1476748,'Spot (voice)',0,1),(105864,2954,'Poppa (voice)',2,2),(105864,3910,'Momma (voice)',1,3),(105864,1540680,'Young Libby (voice)',0,4),(105864,1540681,'Young Buck (voice)',0,5),(105864,1540682,'Young Arlo (voice)',0,6),(105864,1348591,'Buck (voice)',2,7),(105864,21198,'Forrest Woodbush (voice)',2,8),(105864,18324,'Thunderclap (voice)',2,9),(105864,1540683,'Downpour (voice)',0,10),(105864,1406885,'Coldfront (voice)',0,11),(105864,60460,'Nash (voice)',2,12),(105864,10690,'Ramsey (voice)',1,13),(105864,16431,'Butch (voice)',2,14),(105864,87176,'Bubbha (voice)',0,15),(105864,1434508,'Lurleane (voice)',0,16),(105864,204445,'Pervis (voice)',0,17),(105864,7907,'Earl (voice)',2,18),(62177,9015,'Mu00e9rida (voice)',1,0),(62177,477,'The Witch (voice)',1,1),(62177,9188,'King Fergus (voice)',0,2),(62177,7056,'Queen Elinor (voice)',1,3),(62177,9013,'Lord MacGuffin / Young MacGuffin (voice)',2,4),(62177,24264,'Lord Macintosh (voice)',2,5),(62177,1923,'Lord Dingwall (voice)',2,6),(62177,1113604,'Young Merida (voice)',0,7),(62177,1102427,'Young Macintosh (voice)',0,8),(62177,137262,'The Crow (voice)',2,9),(62177,1333216,'Wee Dingwall (voice)',0,10),(62177,9152,'Martin (voice)',2,11),(62177,7907,'Gordon (voice)',2,12),(62177,1052100,'Maudie (voice)',0,13),(62177,1438685,'Maudie (voice)',0,14),(188927,62064,'James T. Kirk',2,0),(188927,17306,'Spock',2,1),(188927,1372,'Dr. Leonard \'Bones\' McCoy',2,2),(188927,11108,'Montgomery \'Scotty\' Scott',2,3),(188927,8691,'Nyota Uhura',1,4),(188927,68842,'Hikaru Sulu',2,5),(188927,21028,'Pavel Chekov',2,6),(188927,568657,'Jaylah',1,7),(188927,17605,'Krall',2,8),(188927,592496,'Manas/Anderson Le',2,9),(188927,1095524,'Kalara',1,10),(188927,1590377,'Kalara (voice)',1,11),(188927,1295,'Keenser',2,12),(188927,1006731,'Ensign Syl',0,13),(188927,21041,'Commodore Paris',1,14),(188927,17305,'Commander Finnegan',2,15),(188927,205179,'Fi\'Ja',2,16),(188927,936415,'Zavanko',2,17),(188927,119758,'Tyvanna',1,18),(188927,65779,'Ben',0,19),(188927,85505,'Wadjet',2,20),(188927,74242,'Teenaxi Leader (voice)',2,21),(188927,1686562,'Starfleet Official',0,22),(188927,1397812,'Orion Girl',0,23),(188927,1502989,'Night Watch Captain',0,24),(188927,936932,'Injured Red Shirt',2,25),(188927,1641530,'USSE Bridge Crew',0,26),(188927,1366510,'Hider',0,27),(188927,140182,'Blue Shirt',0,28),(188927,1225951,'Blue Shirt',0,29),(188927,1516834,'Control Tower Technician',1,30),(188927,939589,'Control Tower Technician',2,31),(188927,1051473,'Control Tower Technician',2,32),(76757,18973,'Jupiter Jones',1,0),(76757,38673,'Caine Wise',2,1),(76757,48,'Stinger Apini',2,2),(76757,37632,'Balem Abrasax',2,3),(76757,230680,'Titus Abrasax',2,4),(76757,89822,'Kalique Abrasax',1,5),(76757,1216606,'Famulus',1,6),(76757,109319,'Diomika Tsing',1,7),(76757,47625,'Gemma Chatterjee',0,8),(76757,1360221,'Nesh',0,9),(76757,178622,'Phylo Percadium',2,10),(76757,1238461,'Greeghan',0,11),(76757,33394,'Aleksa',1,12),(76757,1394352,'Aunt Nino',0,13),(76757,971049,'Ibis',2,14),(76757,21688,'Razo',1,15),(76757,280,'Seal and Signet Minister',2,16),(76757,556356,'Katharine Dunlevy',1,17),(76757,19655,'Maximilian Jones',2,18),(76757,1223149,'Tskalikin',0,19),(76757,25451,'Falque',0,20),(76757,1394330,'Abrasax Alien',1,21),(76757,93111,'Vladie',2,22),(76757,11276,'Malidictes',2,23),(76757,1084851,'Kiza',1,24),(76757,1394331,'Sargon / Greegan',2,25),(76757,3555,'Vasilliy Bolodnikov',2,26),(76757,1369057,'Debutante',0,27),(76757,1052603,'Royal guard',2,28),(76757,1394333,'Test subject',1,29),(76757,114252,'Chicanery Night',2,30),(76757,1388891,'Commonwealth',2,31),(76757,1368433,'Plinth',0,32),(76757,1347128,'Titus Handmaiden',0,33),(76757,1089920,'Trigger',0,34),(76757,1394335,'Peacock Hybrid',1,35),(76757,1394337,'Synth',0,36),(76757,1394339,'Shiro Miku',0,37),(76757,1394344,'Zoe',0,38),(76757,1383511,'Shawn',0,39),(76757,1394342,'Aegis Crew',0,40),(76757,1394341,'Cyber Beauty',0,41),(76757,1394345,'Pedistrian',0,42),(76757,1394346,'Handmaiden',0,43),(76757,1394347,'Servant',2,44),(76757,1278780,'Droid',0,45),(76757,1394343,'Servant',0,46),(76757,1394348,'Robot Servant',0,47),(76757,1394350,'Dante Rothemere',2,48),(76757,1394351,'Lime Orism',0,49),(76757,1218685,'Droid',0,50),(76757,1379944,'Kalique Gene Tech',0,51),(76757,1394354,'Walker Dunlevy',0,52),(76757,1394355,'Zeno',0,53),(76757,1347063,'Gynaecological Nurse',0,54),(76757,1394356,'Russian Refugee',0,55),(76757,1394357,'Test subject',0,56),(76757,1394358,'Royal Guard',0,57),(76757,1356007,'Bureaucrat',0,58),(76757,91932,'Pilot',2,59),(76757,14470,'Doctor',2,60),(76757,1394359,'Chicago Pedestrian (uncredited)',0,61),(76757,1298706,'Chicago Pedestrian (uncredited)',0,62),(76757,1394360,'Chicago Pedestrian (uncredited)',0,63),(76757,1394361,'Kalique Coder (uncredited)',0,64),(76757,1632611,'Bureaucrat',0,65),(258489,28846,'John Clayton / Tarzan',2,0),(258489,234352,'Jane Porter',1,1),(258489,27319,'Captain Leon Rom',2,2),(258489,2231,'George Washington Williams',2,3),(258489,938,'Chief Mbonga',2,4),(258489,388,'Prime Minister',2,5),(258489,1026019,'Captain Kerchover',2,6),(258489,1029045,'Muviro',0,7),(258489,21343,'Captain Moulle',2,8),(258489,1795843,'Wasimbu',0,9),(258489,57461,'Mr. Frum',2,10),(258489,1388917,'Kwete',0,11),(258489,1795844,'Kolo',0,12),(258489,1665609,'Kanam',0,13),(258489,1795845,'Kimanga',0,14),(258489,1659946,'Kasai',2,15),(258489,1500875,'Kulonga',2,16),(258489,1795846,'Kerchak',0,17),(258489,1503072,'Eshe',1,18),(258489,219737,'Akut',0,19),(258489,1502431,'Kala',1,20),(258489,1192006,'Young Tarzan',0,21),(258489,231674,'John Clayton II',2,22),(258489,139654,'Alice Clayton',1,23),(258489,1795847,'Lord Stanhope',0,24),(258489,94021,'Lord Knutsford',2,25),(258489,1504934,'Mbolongo Warrior',2,26),(258489,1641528,'Kuba Villager',0,27),(258489,1641527,'Kuba woman',0,28),(258489,60416,'Force Publique',0,29),(258489,1641529,'Carriage Passenger',0,30),(258489,1563429,'Carriage Rider',0,31),(258489,1635843,'Belgian Conscript',0,32),(258489,1363049,'Mercenary',2,33),(246655,5530,'Professor Charles Xavier',2,0),(246655,17288,'Erik Lehnsherr / Magneto',2,1),(246655,72129,'Raven Darkholme / Mystique',1,2),(246655,3292,'Hank McCoy / Beast',2,3),(246655,25072,'En Sabah Nur / Apocalypse',2,4),(246655,9827,'Moira MacTaggert',1,5),(246655,55089,'Peter Maximoff / Quicksilver',2,6),(246655,1056053,'Col. William Stryker',2,7),(246655,1001657,'Jean Grey / Phoenix',1,8),(246655,1034681,'Scott Summers / Cyclops',2,9),(246655,429,'Alex Summers / Havok',2,10),(246655,113505,'Kurt Wagner / Nightcrawler',2,11),(246655,1452045,'Warren Worthington III / Angel',0,12),(246655,1253199,'Ororo Munroe / Storm',1,13),(246655,1452046,'Jubilation Lee / Jubilee',1,14),(246655,81364,'Elizabeth \'Betsy\' Braddock / Psylocke',1,15),(246655,1623329,'Horseman - Pestilence',0,16),(246655,1547887,'Horseman - Famine',1,17),(246655,102744,'Horseman - Death',1,18),(246655,1366510,'Horseman - War',0,19),(246655,1796383,'Lead Conspiracy Guard',0,20),(246655,1547888,'Conspirator Guard',0,21),(246655,1796384,'Conspirator Guard',0,22),(246655,1493134,'High Priest',0,23),(246655,1796387,'Old Apocalypse',0,24),(246655,12851,'Scott\'s Teacher',1,25),(246655,1381295,'School Jock',2,26),(246655,1433019,'School Cheerleader',0,27),(246655,1264152,'Fight Announcer',0,28),(246655,1796388,'Defeated Blob',0,29),(246655,1796389,'Electric Panel Guard',0,30),(246655,1389492,'Mr. Summers',0,31),(246655,99181,'Mrs. Summers',1,32),(246655,1796390,'Falafel Shop Owner',0,33),(246655,96592,'Clan Akkaba Leader',0,34),(246655,1796391,'Clan Akkaba Disciple',0,35),(246655,1796392,'Clan Akkaba Disciple',0,36),(246655,1447280,'Magda',0,37),(246655,1796393,'Nina',0,38),(246655,1796394,'Cairo Shoe Shop Vendor',0,39),(246655,1796395,'Milosz',0,40),(246655,1796396,'Polish Worker',0,41),(246655,1796397,'Lead Polish Inspector',2,42),(246655,1239510,'Jakob',0,43),(246655,1796398,'Polish Police Archer',0,44),(246655,1796399,'Threatening Cairo Vendor',0,45),(246655,1337607,'Egyptian Street Vendor',0,46),(246655,1796400,'Egyptian Street Vendor',0,47),(246655,18818,'Caliban',2,48),(246655,1796401,'CNN Reporter',0,49),(246655,929943,'Ms. Maximoff',0,50),(246655,1796402,'News Anchor',0,51),(246655,7624,'Himself',2,52),(246655,554456,'Herself',0,53),(246655,32031,'Pentagon General Hastings',2,54),(246655,55378,'Pentagon General Radford',2,55),(246655,43263,'Pentagon General Fields',2,56),(246655,180683,'Defense Secretary Weisberg',0,57),(246655,1015896,'Military Official Brown',2,58),(246655,83029,'Military Submarine Official',2,59),(246655,51389,'Air Force Official',2,60),(246655,1796406,'Foyer Student',0,61),(246655,1796408,'Fish Bowl Girl',0,62),(246655,1747113,'Kissing Girl',1,63),(246655,1796414,'Kissing Guy',0,64),(246655,1294171,'Computer Guy',0,65),(246655,1796415,'Darts Guy',0,66),(246655,1796416,'Tab Girl',0,67),(246655,1796417,'Pizza Dog',0,68),(246655,1796418,'Student in Drapes',0,69),(246655,1796419,'Student in Drapes',0,70),(246655,1796420,'Student in Drapes',0,71),(246655,1470370,'Student in Drapes',2,72),(246655,1796421,'Student in Drapes',0,73),(246655,1796422,'Table Surfing Student',0,74),(246655,1796423,'Table Surfing Student',0,75),(246655,1569228,'Alkali Soldier',2,76),(246655,180996,'Alkali Guard',2,77),(246655,1796425,'Alkali Communications Officer',0,78),(246655,9039,'Confused Tech',2,79),(246655,1796431,'Kenyan Teacher',0,80),(246655,6752,'Pentagon Scientist',2,81),(246655,1015987,'Fishing Boat Captain',2,82),(246655,1676049,'Finsherman',2,83),(246655,1796432,'Finsherman',0,84),(246655,1193060,'Harbor Master',0,85),(246655,1099770,'Harbor Employee',2,86),(246655,1796433,'Russian Submarine Sailors',0,87),(246655,1796434,'Russian Submarine Sailor',0,88),(246655,1796435,'US Weapons Technician',0,89),(246655,1796436,'US Weapons Technician',0,90),(246655,1604604,'Mystery Man',0,91),(246655,1327614,'Salesperson (uncredited)',0,92),(246655,198540,'Pentagon Tech (uncredited)',0,93),(246655,6968,'Logan (uncredited)',2,94),(44826,2282,'Georges Mu00e9liu00e8s',2,0),(44826,6730,'The Station Inspector',2,1),(44826,77996,'Hugo Cabret',2,2),(44826,56734,'Isabelle',1,3),(44826,5538,'Uncle Claude',2,4),(44826,1246,'Lisette',1,5),(44826,113,'Monsieur Labisse',2,6),(44826,15737,'Mama Jeanne',1,7),(44826,72873,'Rene Rabard',2,8),(44826,47468,'Madame Emilie',1,9),(44826,10983,'Monsieur Frick',2,10),(44826,9642,'Hugo\'s Father',2,11),(44826,39185,'Policeman',2,12),(44826,234983,'Young Tabard',2,13),(44826,1714,'Theatre Manager',2,14),(44826,1080628,'Camera Technician',2,15),(44826,1202683,'Train Engineer',0,16),(44826,234981,'Julien Carette',2,17),(44826,1052258,'Arabian Knight',0,18),(44826,1413264,'Salvador Dali',0,19),(44826,1363049,'Talent scout (uncredited)',2,20),(44826,1359461,'Railway Porteur 71 (uncredited)',0,21),(44826,1507591,'Policeman (uncredited)',0,22),(44826,1362403,'Theater Guest (uncredited)',0,23),(44826,1394384,'Worker (uncredited)',0,24),(44826,10692,'Projectionist (uncredited)',2,25),(44826,1032,'Photographer (uncredited)',2,26),(44826,938234,'Party Guest (uncredited)',0,27),(297761,2888,'Floyd Lawton / Deadshot',2,0),(297761,234352,'Harleen Quinzel / Harley Quinn',1,1),(297761,92404,'Rick Flag',2,2),(297761,19492,'Amanda Waller',1,3),(297761,7499,'The Joker',2,4),(297761,224181,'George \'Digger\' Harkness / Boomerang',2,5),(297761,19487,'Chato Santana / El Diablo',2,6),(297761,31164,'Waylon Jones / Killer Croc',2,7),(297761,1289968,'June Moone / Enchantress',1,8),(297761,1461608,'Tatsu Yamashiro / Katana',1,9),(297761,33527,'Christopher Weiss / Slipknot',2,10),(297761,198150,'Keith Griggs',2,11),(297761,928572,'Lieutenant GQ Edwards',2,12),(297761,4238,'Monster T',0,13),(297761,35029,'Dexter Tolliver',2,14),(297761,83968,'Jonny Frost',2,15),(297761,84217,'Gomez - Seal Team A',2,16),(297761,932158,'Grace Santana',1,17),(297761,130081,'Angelo',2,18),(297761,1456151,'Zoe Lawton',0,19),(297761,1727020,'Dr. Van Criss',0,20),(297761,90725,'Gerard Davis / Incubus',0,21),(297761,190900,'Admiral Olsen',2,22),(297761,62679,'Admiral Burns',2,23),(297761,1138844,'Sergeant Ames Bravo 14',0,24),(297761,880,'Bruce Wayne / Batman (uncredited)',2,25),(297761,132157,'Barry Alan / The Flash (Uncredited)',2,26),(297761,1488192,'Missing Hand Guard',2,27),(297761,965219,'T-Shirt Vendor',0,28),(297761,1072798,'U.S. Marshal',0,29),(297761,51041,'Mafia Snitch',2,30),(297761,1212929,'Panda Man',0,31),(297761,1727014,'Psych Patient',0,32),(297761,237,'Chairman',2,33),(297761,1727015,'Navy One-Star Admiral',0,34),(297761,1727016,'Air Force Two-Star General',0,35),(297761,136959,'Army One-Star General',2,36),(297761,1727017,'National Security Council',2,37),(297761,1396920,'National Security Council',0,38),(297761,1480961,'National Security Council',2,39),(297761,1232769,'National Security Council',1,40),(297761,1520526,'National Security Council',0,41),(297761,1727018,'Hot Girl Patron',0,42),(297761,1260782,'Casino Boss',2,43),(297761,1486835,'Cop At Rail Terminal',0,44),(297761,1482610,'Doctor At Rail Terminal',2,45),(297761,168771,'Gate Guard',2,46),(297761,1727022,'Dr. Van Criss\' Wife',1,47),(297761,1345133,'Kowalski - Seal Team A',0,48),(297761,1727023,'Grey - Seal Team Member',0,49),(297761,1727024,'Seal Team A #1 Member',0,50),(297761,41561,'Yakuza Boss',2,51),(297761,107411,'Technician',0,52),(297761,1727025,'Technician 2',1,53),(297761,1727027,'Diablo\'s Daughter',1,54),(297761,1727028,'Diablo\'s Son',0,55),(297761,1545155,'Supermodel (uncredited)',1,56),(297761,1545157,'Navy SEAL (uncredited)',0,57),(297761,1545156,'Hispanic Woman (uncredited)',1,58),(297761,1698765,'U.S. Marshal',0,59),(297761,1754320,'Bystander',0,60),(297761,1754321,'Dancer',1,61),(297761,1754322,'Bystander',0,62),(297761,1754331,'Air Force General Williams',0,63),(297761,1754333,'Injured Civilian',1,64),(297761,1754334,'Wounded Civilian',0,65),(297761,1754335,'US Ranger',0,66),(297761,1567040,'Ranger',0,67),(297761,1754336,'Marine',0,68),(297761,1754337,'Van Criss Employee',0,69),(297761,1754338,'MP Soldier',0,70),(297761,1754339,'Club Goer',0,71),(297761,1355150,'Distressed Civilian',0,72),(297761,1306573,'Car Passenger',0,73),(297761,1754340,'US Marshal',0,74),(297761,1574936,'Firefighter',0,75),(297761,1754342,'Tatiana - Russian Girl',1,76),(297761,1379639,'Navy SEAL Combat Medic - Bravo Team',0,77),(297761,1716602,'US Marshal',0,78),(297761,1656699,'Operations Tech',0,79),(297761,1736435,'Secret Service Agent',0,80),(297761,1754346,'Secret Service Agent',0,81),(297761,1543542,'Navy SEAL Howard',0,82),(297761,493769,'SWAT Officer',0,83),(297761,559644,'LAPD Sergeant',0,84),(297761,1754347,'Fighter Pilot',0,85),(297761,1754348,'Bystander',1,86),(297761,87577,'FEMA Official',2,87),(297761,1754349,'US Marshal / Military Escort',0,88),(297761,1337623,'Hispanic Man',2,89),(297761,1513916,'Prisoner',0,90),(297761,1754350,'Bystander',0,91),(297761,1754351,'Lieutenant Colonel Doctor',1,92),(297761,1366350,'Arkham Guard Stewart',0,93),(297761,1754352,'EA Dancer',1,94),(297761,1754353,'Marine',0,95),(297761,1754354,'Hispanic Man',0,96),(297761,1553096,'Agent Bartoni',0,97),(297761,1284410,'Naughty Waitress',0,98),(297761,1600910,'Admiral\'s Staff',0,99),(297761,1543547,'Blackwater',0,100),(297761,1540119,'Gotham Police',2,101),(297761,166518,'Anvil',2,102),(297761,1754358,'Executive Assistant',0,103),(297761,1622765,'EA Dancer',1,104),(297761,1754361,'Firefighter',0,105),(297761,1240327,'Cop Photographer',0,106),(297761,1754364,'Military Guard',0,107),(297761,1754365,'US Ranger',0,108),(297761,62711,'Big Ugly Navy SEAL',2,109),(297761,1747278,'S.W.A.T. Officer',0,110),(297761,1376110,'American Hostage',0,111),(297761,1754366,'Military Officer',0,112),(297761,1754368,'Special Forces Escort',0,113),(297761,1754370,'Arresting Officer',0,114),(297761,1754371,'Graham - SEAL Team A',0,115),(297761,1651271,'Club Patron / Naughty Waitress',1,116),(297761,1369078,'Janes - Navy SEAL',0,117),(297761,1632662,'Navy SEAL Clark',0,118),(297761,1619926,'Club Patron',1,119),(297761,1754375,'EA Dancer',0,120),(297761,1563912,'Firefighter',0,121),(297761,1754377,'Helicopter Pilot',0,122),(297761,1744067,'Club Patron',0,123),(297761,1379566,'Bystander',0,124),(297761,1754379,'US Army Ranger',0,125),(297761,1754380,'Club Patron',0,126),(297761,1754383,'FBI Agent Max Bidwell',0,127),(137113,500,'Maj. William Bill Cage',2,0),(137113,5081,'Sgt. Rita Vrataski',1,1),(137113,2039,'General Brigham',2,2),(137113,2053,'Msg. Farell',2,3),(137113,119224,'Skinner',0,4),(137113,147255,'Kimmel',2,5),(137113,93111,'Griff',2,6),(137113,1363086,'Ford',2,7),(137113,125740,'Kuntz',0,8),(137113,115679,'Nance',1,9),(137113,1095404,'Takeda',0,10),(137113,67205,'Cruel Sergeant',0,11),(137113,1284,'Dr. Carter',2,12),(137113,213083,'Karen Lord',1,13),(137113,1258664,'Julie',0,14),(137113,17352,'Dr. Whittle',1,15),(137113,12799,'Col. Walter Marx',2,16),(137113,1211881,'Secretary - Iris',1,17),(137113,1504930,'Infirmary Nurse',0,18),(137113,1504931,'Young Soldier',0,19),(137113,1132153,'Dog Soldier 1',2,20),(137113,1504932,'Dog Soldier 2',0,21),(137113,1504933,'Dog Soldier 3',0,22),(137113,1504934,'Dog Soldier 4',2,23),(137113,1227322,'Bar Maid',0,24),(137113,219762,'Old Man',0,25),(137113,1504935,'Drunk',0,26),(137113,122345,'Drop Ship Pilot',0,27),(137113,1504936,'Old Man 2',0,28),(137113,1222021,'Old Man 3',0,29),(137113,1504937,'Military Spokesperson 1',0,30),(137113,36901,'Military Spokesperson 2',2,31),(137113,113361,'Sky News Anchor',0,32),(137113,590162,'BBC News Anchor',0,33),(137113,1237218,'CNN News Anchor',0,34),(137113,1504938,'Channel 2 News Anchor',0,35),(137113,1048574,'UDF Commercial (voice)',0,36),(137113,1738236,'Sergeant Battey (uncredited)',0,37),(137113,531772,'J Squad Soldier (uncredited)',2,38),(137113,1295992,'Soldier (uncredited)',0,39),(150540,56322,'Joy (voice)',1,0),(150540,169200,'Sadness (voice)',1,1),(150540,21125,'Bing Bong (voice)',2,2),(150540,19278,'Fear (voice)',2,3),(150540,59258,'Anger (voice)',2,4),(150540,125167,'Disgust (voice)',1,5),(150540,1371894,'Riley (voice)',0,6),(150540,2882,'Mom (voice)',1,7),(150540,6677,'Dad (voice)',2,8),(150540,196502,'Forgetter Paula (voice)',1,9),(150540,452205,'Forgetter Bobby (voice)',2,10),(150540,1226294,'Dream Director // Mom\'s Anger // Additional Voices (voice)',0,11),(150540,64181,'Subconscious Guard Frank (voice)',2,12),(150540,7908,'Subconscious Guard Dave (voice)',2,13),(150540,84496,'Jangles (voice)',0,14),(150540,1237,'Mind Worker Cop Jake (voice)',2,15),(150540,7907,'Fritz (voice)',2,16),(150540,59784,'Helicopter Pilot / Additional Voices (voice)',2,17),(150540,1531657,'Clown\'s Joy (voice)',0,18),(150540,80591,'Cool Girl\'s Emotions (voice)',1,19),(150540,24358,'Additional Voices (voice)',1,20),(150540,19547,'Additional Voices (voice)',2,21),(150540,1565450,'Additional Voices (voice)',0,22),(150540,1565451,'Additional Voices (voice)',0,23),(150540,1565452,'Additional Voices (voice)',0,24),(150540,167295,'Additional Voices (voice)',0,25),(150540,1565453,'Additional Voices (voice)',0,26),(150540,1565455,'Additional Voices (voice)',0,27),(150540,1236458,'Additional Voices (voice)',2,28),(150540,12890,'Additional Voices (voice)',2,29),(150540,143346,'Additional Voices (voice)',0,30),(150540,1260745,'Additional Voices (voice)',2,31),(150540,7905,'Additional Voices (voice)',1,32),(150540,1565456,'Additional Voices (voice)',0,33),(150540,1141501,'Additional Voices (voice)',2,34),(150540,969332,'Additional Voices (voice)',2,35),(150540,1565457,'Additional Voices (voice)',0,36),(150540,1565458,'Additional Voices (voice)',0,37),(150540,1565459,'Additional Voices (voice)',0,38),(150540,1504904,'Additional Voices (voice)',0,39),(150540,1565460,'Additional Voices (voice)',1,40),(150540,1565461,'Additional Voices (voice)',0,41),(150540,72754,'Additional Voices (voice)',0,42),(150540,1443472,'Additional Voices (voice)',0,43),(150540,87819,'Additional Voices (voice)',1,44),(150540,214701,'Additional Voices (voice)',0,45),(150540,1565465,'Additional Voices (voice)',0,46),(150540,111466,'Additional Voices (voice)',0,47),(150540,35159,'Additional Voices (voice)',1,49),(150540,7998,'Additional Voices (voice)',0,50),(150540,1226294,'Additional Voices (voice)',0,51),(150540,1565467,'Additional Voices (voice)',0,52),(150540,61969,'Additional Voices (voice)',2,53),(150540,1565470,'Additional Voices (voice)',0,54),(150540,939345,'Additional Voices (voice)',0,55),(150540,1406892,'Additional Voices (voice)',0,56),(150540,1008380,'Additional Voices (voice)',0,57),(150540,1098034,'Additional Voices (voice)',0,58),(150540,1565480,'Additional Voices (voice)',0,59),(150540,78317,'Additional Voices (voice) (uncredited)',2,60),(150540,117081,'Additional Voices (voice) (uncredited)',1,61),(150540,84495,'Additional Voices (voice) (uncredited)',2,62),(150540,52699,'Additional Voices (voice) (uncredited)',2,63),(150540,84493,'Additional Voices (voice) (uncredited)',0,64),(150540,157626,'Additional Voices (voice) (uncredited)',2,65),(278927,1414734,'Mowgli',2,0),(278927,1532,'Baloo (voice)',2,1),(278927,2282,'Bagheera (voice)',2,2),(278927,17605,'Shere Khan (voice)',2,3),(278927,1245,'Kaa (voice)',1,4),(278927,4690,'King Louie (voice)',2,5),(278927,1267329,'Raksha (voice)',1,6),(278927,4808,'Akela (voice)',2,7),(278927,52865,'Ikki (voice)',2,8),(278927,15277,'Pygmy Hog (voice)',2,9),(278927,7623,'Giant Squirrel (voice)',2,10),(278927,82417,'Rocky the Rhino (voice)',2,11),(278927,1662561,'Gray (voice)',1,12),(278927,1259762,'Young Wolf #1 (voice)',2,13),(278927,1662562,'Young Wolf #2 (voice)',2,14),(278927,1662563,'Young Wolf #3 (voice)',0,15),(278927,1523670,'Young Wolf #4 (voice)',0,16),(278927,1662564,'Young Wolf #5 (voice)',0,17),(278927,1662565,'Young Wolf #6 (voice)',0,18),(278927,1662566,'Young Wolf #7 (voice)',0,19),(278927,1662567,'Raquel the Rhino (voice)',0,20),(278927,1440178,'Infant Mowgli\'s Father',2,21),(278927,1662568,'Infant Mowgli',0,22),(278927,1378628,'Neelgai Deer (voice)',0,23),(278927,1662569,'Animal Voices (voice)',2,24),(278927,97956,'Animal Voices (voice)',2,25),(278927,23680,'Animal Voices (voice)',2,26),(278927,1769351,'Animal Voices (voice)',2,28),(278927,10846,'Shere Kahn (mo-cap) (uncredited)',2,29),(278927,1519186,'King Louie',0,43),(58595,37917,'Snow White',1,0),(58595,6885,'Queen Ravenna',1,1),(58595,74568,'The Huntsman',2,2),(58595,237455,'William',2,3),(58595,6972,'Beith',2,4),(58595,5538,'Gort',2,5),(58595,11109,'Nion',2,6),(58595,13014,'Coll',2,7),(58595,1665,'Duir',2,8),(58595,382,'Muir',2,9),(58595,55585,'Finn',2,10),(58595,32300,'Quert',2,11),(58595,63364,'Gus',2,12),(58595,9831,'Duke Hammond',2,13),(58595,2050,'King Magnus',2,14),(58595,1088912,'Queen Eleanor',1,15),(58595,1088913,'Mirror Man',2,16),(58595,53688,'Greta',1,17),(58595,18067,'Anna',1,18),(58595,1279512,'Lily',1,19),(58595,1055230,'Young Snow White',1,20),(58595,1279513,'Young William',0,21),(58595,142388,'Young Ravenna',0,22),(58595,66791,'Ravenna\'s mother',1,23),(58595,1279514,'Young Finn',0,24),(58595,65303,'Thomas',2,25),(58595,221985,'Iain',2,26),(58595,60348,'Broch',2,27),(58595,183151,'Black Knight General',2,29),(58595,109833,'Black Knight',2,30),(58595,115683,'Guard on Duty',0,31),(58595,29406,'Aldan',2,32),(58595,214794,'Duke\'s Commander',2,33),(58595,1279515,'Soldier',0,34),(58595,1035907,'Emaciated Peasant (uncredited)',2,35),(58595,1488236,'Percy',0,36),(102651,11701,'Maleficent',1,0),(102651,18050,'Princess Aurora',1,1),(102651,82191,'Stefan',2,2),(102651,32987,'Diaval',2,3),(102651,36594,'Thistletwit',1,4),(102651,11356,'Knotgrass',1,5),(102651,72305,'Flittle',1,6),(102651,1017347,'Prince Phillip',2,7),(102651,1355733,'Young Maleficent',0,8),(102651,8436,'Queen Ulla',1,9),(102651,1833,'Shepherd',2,10),(102651,116606,'Young Stefan',2,11),(102651,26258,'King Henry',2,12),(102651,1258225,'Princess Leila',1,13),(102651,989325,'Teen Maleficent',1,14),(102651,195286,'Princess Leila\'s Handmaiden',0,15),(102651,1502461,'Teen Stefan',0,16),(102651,1252814,'Advisor to King Henry',0,17),(102651,65451,'Advisor to King Henry',2,18),(102651,230697,'Nobleman',2,19),(102651,140525,'Nobleman',0,20),(102651,1502462,'Nobleman',0,21),(102651,115622,'Nobleman',0,22),(102651,96281,'Military Nobleman',2,23),(102651,185003,'General',2,24),(102651,139811,'General',0,25),(102651,1238441,'Servant in Wing Room',0,26),(102651,145071,'Soldier in Wood',0,27),(102651,1502463,'Aurora (5 yrs.)',0,28),(102651,1462923,'Aurora (8 yrs.)',1,29),(102651,550549,'Captain',2,30),(102651,1001523,'Farmer',0,31),(102651,568393,'Guard (voice)',0,32),(102651,1312266,'Servant',0,33),(102651,75065,'King Henry\'s Captain',2,34),(102651,1102427,'Overseer',0,35),(102651,91023,'Fairies / Creatures (voice)',1,36),(102651,47627,'Narrator (voice)',1,37),(102651,1218685,'Blue Suit Performer (uncredited)',0,38),(102651,1363049,'King Henry Soldier (uncredited)',2,39),(102651,1502464,'Stefans Guard (uncredited)',0,40),(102651,1174490,'Palace Guard (uncredited)',1,41),(102651,1502465,'Courtier (uncredited)',0,42),(102651,1430707,'King Henry\'s General (uncredited)',0,43),(102651,1502466,'Young Man (uncredited)',0,44),(102651,1502467,'Stefan\'s Guard (uncredited)',0,45),(102651,186605,'Curse Voice, Fairies, Creatures (uncredited)',1,46),(102651,1502468,'Court Jester (uncredited)',2,47),(102651,1502469,'Stefan\'s Soldier / Henry\'s Soldier (uncredited)',0,48),(102651,1502470,'Dancer (uncredited)',1,49),(102651,1502471,'Courtier (uncredited)',0,50),(102651,1502472,'Blue Suit Performer (uncredited)',0,51),(102651,1394404,'King Henry\'s Solider (uncredited)',0,52),(102651,1502473,'Courtier (uncredited)',0,53),(102651,1502474,'Courtier (uncredited)',0,54),(102651,1347128,'Pixie Reader (uncredited)',0,55),(102651,1375518,'Soldier / Courtier (uncredited)',0,56),(102651,1075104,'Stefan\'s Soldier (uncredited)',0,57),(102651,1502475,'King Henry\'s Soldier (uncredited)',0,58),(102651,1502476,'Dancer (uncredited)',0,59),(102651,1242871,'Girl (uncredited)',0,60),(102651,1502477,'Blue Suit Performer (uncredited)',0,61),(102651,1378466,'Courtier (uncredited)',0,62),(102651,1394405,'Servant (uncredited)',0,63),(102651,1207207,'Palace Guard (uncredited)',0,64),(102651,1502478,'Courtier (uncredited)',0,65),(102651,1502479,'King Stefan\'s Army (uncredited)',0,66),(102651,1502480,'Courtier (uncredited)',0,67),(102651,1278780,'Blue Suit Performer (uncredited)',0,68),(102651,1278771,'Blue Suit Performer (uncredited)',0,69),(102651,1279742,'King Henry\'s Soldier (uncredited)',0,70),(102651,1462424,'Stefan\'s Page (uncredited)',0,71),(102651,1502481,'King Stefans Guard (uncredited)',0,72),(102651,1394408,'Palace Guard (uncredited)',0,73),(102651,1394409,'Stefan\'s General (uncredited)',0,74),(102651,1502482,'Soldier / Courtier (uncredited)',0,75),(102651,1481440,'Screen Combat, Soldier (uncredited)',0,76),(102651,1438979,'Stefan Guard (uncredited)',0,77),(102651,1502483,'Young Man (uncredited)',0,78),(102651,1394377,'Courtier (uncredited)',0,79),(102651,1371439,'Special action soldier (uncredited)',0,80),(102651,590936,'Courtier at Christening (uncredited)',2,81),(119450,1333,'Caesar',2,0),(119450,76512,'Malcolm',2,1),(119450,64,'Dreyfus',2,2),(119450,41292,'Ellie',1,3),(119450,20286,'Koba',2,4),(119450,113505,'Alexander',2,5),(119450,55861,'Carver',2,6),(119450,20750,'Cornelia',1,7),(119450,236696,'Rocket',0,8),(119450,58395,'Maurice',1,9),(119450,576041,'Ash',0,10),(119450,557930,'Blue Eyes',2,11),(119450,107939,'Werner',2,12),(119450,12798,'Kemp',2,13),(119450,39213,'Finney',2,14),(119450,93177,'Grey',2,15),(119450,4992,'Terry',2,16),(119450,114000,'McVeigh',2,17),(119450,231857,'Foster',0,18),(119450,1172813,'Stoned',0,20),(119450,1172814,'Rationer',2,21),(119450,156625,'Manone',2,22),(119450,1130809,'Man 2',0,23),(119450,1393532,'Luca',2,24),(119450,29933,'Woman',1,25),(119450,1273239,'Officer',0,26),(119450,1123871,'Driver',0,27),(119450,129868,'Sniper',2,28),(119450,1388316,'Recruit',0,29),(119450,20582,'Cannon-Gunner',2,30),(119450,43010,'Old Man',0,31),(119450,60877,'Old Woman',1,32),(119450,1173099,'Gun-Clinching Man',2,33),(79698,2299,'James Stewart / Jay Fennel',2,0),(79698,76850,'Clara Coldstream',1,1),(79698,66442,'Laura Fennel',1,2),(79698,587823,'Dolly',0,3),(79698,85035,'Tulaja Naik',1,4),(79698,79003,'Udaji',2,5),(79698,587822,'Sonubai',1,6),(79698,30576,'Governor of Bombay',2,7),(79698,55578,'York',0,8),(79698,53676,'Raoji',2,9),(79698,11851,'',2,10),(79698,693,'',0,11),(79698,1386458,'The Assassin',2,12),(79698,1172316,'Allie',0,13),(79698,1112872,'Charles Stewart',2,14),(79698,1532766,'Jamnabai',0,15),(79698,1510862,'Nurse Smith',1,16),(79698,1014587,'Mostyn',0,17),(79698,1684358,'Desai',0,18),(64686,6384,'Kai',2,0),(64686,9195,'Kuranosuke u00d4ishi',0,1),(64686,58593,'Mika',1,2),(64686,13275,'Lord Kira',2,3),(64686,136191,'Lord Asano',2,4),(64686,18054,'Witch',0,5),(64686,1253541,'Chikara',0,6),(64686,1095404,'Yasuno',0,7),(64686,1278788,'Hazama',0,8),(64686,1278789,'Basho',0,9),(64686,550560,'Horibe',2,10),(64686,1184036,'Hara',0,11),(64686,11398,'Shogun Tsunayoshi',2,12),(64686,1380499,'Shogun\'s Adjutant',2,13),(64686,31387,'Kapitan',0,14),(64686,60602,'Narrator',2,15),(64686,1628196,'Riku',1,16),(64686,9192,'Tengu Lord',2,17),(64686,112831,'Kira\'s Spy',0,18),(64686,1168128,'Mika\'s Handmaiden',1,19),(64686,2249,'Drunk Official',2,20),(64686,1168129,'Guard',2,21),(64686,1522260,'Lead Soldier',2,22),(64686,1394331,'Lovecraftian Samurai',2,23),(100402,16828,'Steve Rogers / Captain America',2,0),(100402,2231,'Nick Fury',2,1),(100402,1245,'Natasha Romanoff / Black Widow',1,2),(100402,4135,'Alexander Pierce',2,3),(100402,60898,'Bucky Barnes / Winter Soldier',2,4),(100402,53650,'Sam Wilson / Falcon',2,5),(100402,71189,'Maria Hill',1,6),(100402,81685,'Brock Rumlow',2,7),(100402,1018947,'Jasper Sitwell',2,8),(100402,84247,'Kate / Agent 13',1,9),(100402,39459,'Peggy Carter',1,10),(100402,13014,'Dr. Arnim Zola',2,11),(100402,7624,'Smithsonian Guard',2,12),(100402,208296,'Jack Rollins',2,13),(100402,14464,'Councilwoman Hawley',1,14),(100402,156739,'Councilman Singh',2,15),(100402,52760,'Councilman Rockwell',2,16),(100402,101015,'Councilman Yen',2,17),(100402,52865,'Senator Stern',2,18),(100402,74750,'Georges Batroc',2,19),(100402,7041,'French Pirate #1',2,20),(100402,949852,'French Pirate #2',2,21),(100402,186573,'Engine Pirate',2,22),(100402,208096,'French Radio Pirate',2,23),(100402,1751768,'Skinny Steve',0,24),(100402,43373,'Launch Tech #1',2,25),(100402,1751772,'Launch Tech #2',0,26),(100402,19272,'Dr. Fine (as Gozie Agbo)',2,27),(100402,5551,'SHIELD Interrogator #1',2,28),(100402,5552,'SHIELD Interrogator #2',2,29),(100402,60846,'Scientist #1',2,30),(100402,139744,'Scientist #2',2,31),(100402,119590,'Apple Employee',2,32),(100402,205179,'Com Tech #1',2,33),(100402,1751774,'Com Tech #2',0,34),(100402,15268,'Renata (as Branka Katic)',0,35),(100402,1751775,'Garcia',0,36),(100402,117190,'Charlie XO',2,37),(100402,1216156,'Charlie Weapons Tech',0,38),(100402,179012,'SHIELD Tech',1,39),(100402,98429,'Lead SHIELD Pilot',2,40),(100402,1392838,'Senior SHIELD Agent',0,41),(100402,3493,'SHIELD Agent',2,42),(100402,1448939,'Strike SGT. #1',0,43),(100402,1751780,'Strike SGT. #2',0,44),(100402,1483700,'Strike Agent',0,45),(100402,1751783,'Strike Agent',0,46),(100402,1751784,'Strike Agent',0,47),(100402,18300,'Strike Agent',2,48),(100402,1672052,'25th Floor Strike Agent',0,49),(100402,63544,'Scudder',2,50),(100402,88098,'Human Resources Executive',2,51),(100402,164040,'Doctor',1,52),(100402,964848,'Lead EMT',2,53),(100402,146411,'CIA Instructor',2,54),(100402,1751787,'Capitol Hill Police',0,55),(100402,1751788,'Capitol Hill Police',2,56),(100402,1751789,'FBI Agent',0,57),(100402,1751790,'FBI Agent',0,58),(100402,1751791,'Committee Member',0,59),(100402,1751792,'Little Boy in the Smithsonian',0,60),(100402,35172,'Fury Car Voice (voice)',2,61),(100402,1196879,'SHIELD Computer (voice)',1,62),(100402,33,'The Smithsonian Narrator (voice)',2,63),(100402,1034648,'SHIELD Agent (uncredited)',2,64),(100402,7030,'Dr. List (uncredited)',2,65),(100402,3491,'Baron Wolfgang von Strucker (uncredited)',2,66),(100402,550843,'Wanda Maximoff (uncredited)',1,67),(100402,1636801,'Museum Visitor (uncredited)',1,68),(100402,27428,'Pietro Maximoff (uncredited)',2,69),(158852,52018,'Casey Newton',1,0),(158852,1461,'Frank Walker',2,1),(158852,1055230,'Athena',1,2),(158852,965224,'Young Frank Walker',2,3),(158852,41419,'David Nix',2,4),(158852,17696,'Ursula',1,5),(158852,298410,'Hugo',2,6),(158852,74428,'Eddie Newton',2,7),(158852,4445,'Frank\'s Dad',2,8),(158852,992427,'Nate Newton',2,9),(158852,140182,'Dave Clark',0,10),(158852,20750,'Jenny Newton',1,11),(158852,565222,'Bus Driver',2,12),(158852,15347,'Small World Operator',2,13),(158852,1235560,'Skyscraper Foreman',0,14),(158852,1358561,'Young Casey Newton',0,15),(158852,56750,'History Teacher',1,16),(158852,53324,'Science Teacher',2,17),(158852,26069,'English Teacher',2,18),(158852,1502983,'Beefy Cop',0,19),(158852,26089,'Jail Desk Jockey',2,20),(158852,1502986,'Jail Punk',0,21),(158852,1502987,'Jetpack Dexter',0,22),(158852,1368783,'Jetpack Buddy',0,23),(158852,1334653,'Jetpack Buddy',2,24),(158852,1502988,'Monorail Mother',0,25),(158852,1502989,'Young Astronaut',0,26),(158852,1366824,'Astronaut\'s Father',0,27),(158852,1502990,'Astronaut\'s Mother',0,28),(158852,994754,'Pickup Driver',2,29),(158852,85922,'Police Captain',2,30),(158852,1467737,'Deputy',0,31),(158852,1655618,'Deputy',2,32),(158852,102742,'Eiffel Tower Guard #1',2,33),(158852,1502991,'Eiffel Tower Guard #2',2,34),(158852,1070634,'Pierre Clark',0,35),(158852,206654,'Jensen',0,36),(158852,60652,'Tough Guard',2,37),(158852,1428779,'Young British Recruiter',0,38),(158852,1502992,'Guitar Player',0,39),(158852,1412193,'GM Plant Worker',0,40),(158852,1502993,'Haitian Woman',0,41),(158852,1052900,'Thick Glasses (uncredited)',0,42),(158852,1502994,'DQ Patron (uncredited)',0,43),(158852,1502995,'Hero Bus Patron (uncredited)',0,44),(158852,1502950,'World\'s Fair Patron (uncredited)',0,45),(158852,1193924,'Dave Clark #7 (uncredited)',0,46),(158852,1502996,'Guest (uncredited)',0,47),(158852,1502997,'Pedestrian (uncredited)',0,48),(158852,1502998,'Gentleman - 1964 World Fair (uncredited)',2,49),(158852,1591185,'World\'s Fair Lady (uncredited)',1,50),(158852,1651940,'Pewdiepie (Uncredited)',2,51),(177572,66580,'Baymax (voice)',2,0),(177572,515510,'Hiro Hamada (voice)',2,1),(177572,82093,'Tadashi Hamada (voice)',2,2),(177572,51990,'Fred (voice)',2,3),(177572,78324,'GoGo Tomago (voice)',1,4),(177572,87822,'Wasabi (voice)',2,5),(177572,589162,'Honey Lemon (voice)',1,6),(177572,2505,'Professor Robert Callaghan (voice)',2,7),(177572,21088,'Alistair Krei (voice)',2,8),(177572,52792,'Aunt Cass (voice)',1,9),(177572,21132,'General (voice)',2,10),(177572,108253,'Abigail (voice)',1,11),(177572,287341,'Newscaster (voice)',2,12),(177572,7884,'Desk Sergeant (voice)',2,13),(177572,1340669,'Yama (voice)',0,14),(177572,81178,'Yokai (voice)',2,15),(177572,54698,'Additional Voices (voice)',1,16),(177572,193254,'Heathcliff (voice)',2,17),(177572,60272,'Additional Voice (voice)',0,18),(177572,36821,'Additional Voice (voice)',2,19),(177572,186605,'Additional Voice (voice)',1,20),(177572,61958,'Additional Voice (voice)',2,21),(177572,127387,'Additional Voice (voice)',2,22),(177572,1225886,'Additional Voice (voice)',0,23),(177572,1252466,'Additional Voice (voice)',0,24),(177572,7624,'Fred\'s Dad (voice)',2,25),(177572,158124,'Additional Voice (voice)',2,26),(177572,15831,'Mochi (voice) (uncredited)',2,27),(177572,60232,'Additional Voice (voice)',2,28),(177572,176035,'Additional Voice (voice)',2,29),(177572,1502447,'Ringleader (voice)',0,30),(177572,1114051,'Additional Voice (voice)',0,31),(177572,56612,'Additional Voice (voice)',0,33),(177572,1502448,'Additional Voice (voice)',0,34),(177572,950773,'Additional Voice (voice)',0,35),(177572,1502449,'Additional Voice (voice)',0,36),(177572,173428,'Additional Voice (voice)',1,37),(177572,1077829,'Additional Voice (voice)',0,38),(177572,1502450,'Additional Voice (voice)',0,39),(177572,1502451,'Additional Voice (voice)',0,40),(177572,1502452,'Additional Voice (voice)',0,41),(177572,1371667,'Additional Voice (voice)',0,42),(177572,1296646,'Additional Voice (voice)',0,43),(177572,1447307,'Additional Voice (voice)',0,44),(177572,1502453,'Male Technician #1 (voice) (uncredited)',2,45),(177572,1196879,'Additional Voice (voice)',1,46),(82690,4764,'Wreck-It Ralph (voice)',2,0),(82690,7404,'Vanellope von Schweetz (voice)',1,1),(82690,58737,'Fix-It Felix (voice)',2,2),(82690,43775,'Sergeant Calhoun (voice)',1,3),(82690,21088,'King Candy (voice)',2,4),(82690,125167,'Taffyta Muttonfudge (voice)',1,5),(82690,21131,'Markowski (voice)',2,6),(82690,18977,'Mr. Litwak (voice)',2,7),(82690,352,'General Hologram (voice)',2,8),(82690,76245,'Wynnchel (voice)',0,9),(82690,52117,'Duncan (voice)',2,10),(82690,165787,'Sour Bill / Zangief (voice)',2,11),(82690,3202,'Mary (voice)',1,12),(82690,84495,'Don (voice)',2,13),(82690,46074,'Deanna (voice)',1,14),(82690,73128,'Roy (voice)',2,15),(82690,108253,'Candlehead (voice)',1,16),(82690,95002,'Rancis Fluggerbutter (voice)',2,17),(82690,1447307,'Jubileena Bing Bing (voice)',0,18),(82690,1461416,'Crumbelina Di Caramello (voice)',0,19),(82690,567562,'Surge Protector (voice)',2,20),(82690,106490,'Moppet Girl (voice)',0,21),(82690,31531,'Beard Papa (voice)',0,22),(82690,1223658,'Gene / Zombie (voice)',2,23),(82690,1461363,'Cyborg (voice)',0,24),(82690,126363,'Saitine (voice)',2,25),(82690,1340663,'Sugar Rush Announcer / Turtle (voice)',0,26),(82690,1232689,'Kohut (voice)',2,27),(82690,61958,'Brad (voice)',2,28),(82690,34521,'Tapper (voice)',2,29),(82690,75038,'Sonic the Hedgehog (voice)',2,30),(82690,571225,'Ryu (voice)',2,31),(82690,237163,'Ken Masters (voice)',0,32),(82690,1173048,'M. Bison (voice)',0,33),(82690,137194,'Clyde (voice)',0,34),(82690,137198,'Yuni Verse (voice)',0,35),(82690,1340664,'Additional Voices (voice)',1,36),(82690,210877,'Additional Voices (voice)',1,37),(82690,78317,'Additional Voices (voice)',2,38),(82690,87176,'Additional Voices (voice)',0,39),(82690,1457476,'Additional Voices (voice)',0,40),(82690,1114051,'Additional Voices (voice)',0,41),(82690,60232,'Additional Voices (voice)',2,42),(82690,12077,'Additional Voices (voice)',2,43),(82690,73016,'Additional Voices (voice)',1,44),(82690,186605,'Additional Voices (voice)',1,45),(82690,91023,'Additional Voices (voice)',1,46),(82690,146186,'Additional Voices (voice)',2,47),(82690,1341141,'Additional Voices (voice)',2,48),(82690,1096415,'Additional Voices (voice)',0,49),(82690,81667,'Additional Voices (voice)',1,50),(82690,1340676,'Additional Voices (voice)',0,51),(82690,1610452,'Additional Voices (voice)',0,52),(82690,1214800,'Additional Voices (voice)',0,53),(82690,111466,'Additional Voices (voice)',0,54),(82690,113916,'Additional Voices (voice)',2,55),(82690,35159,'Additional Voices (voice)',1,56),(82690,174563,'Additional Voices (voice)',2,57),(82690,1296646,'Additional Voices (voice)',0,58),(82690,204505,'Additional Voices (voice)',2,59),(82690,1340685,'Additional Voices (voice)',0,60),(82690,60739,'Additional Voices (voice)',1,61),(82690,111467,'Additional Voices (voice)',1,62),(82690,60279,'Additional Voices (voice)',2,63),(82690,1464361,'Additional Voices (voice)',0,64),(82690,15274,'Additional Voices (voice)',1,65),(47933,96066,'Jake Morrison',2,0),(47933,4785,'David Levinson',2,1),(47933,8984,'President Whitmore',2,2),(47933,1094091,'Patricia Whitmore',1,3),(47933,6068,'President Lanford',1,4),(47933,886,'General Adams',2,5),(47933,2535,'Jasmine',1,6),(47933,4273,'Dr. Catherine Marceaux',1,7),(47933,1213786,'Dr. Brakish Okun',2,8),(47933,6167,'Julius Levinson',2,9),(47933,117437,'Secretary of Defense',0,10),(47933,125025,'Sam',1,11),(47933,1255069,'Dylan Hiller',0,12),(47933,101015,'Commander Jiang Lao',2,13),(47933,150899,'Rain Lao',1,14),(47933,931264,'Lin Tang',1,15),(47933,76916,'Officer Ryan Collins',2,16),(47933,1446466,'Bobby',0,17),(47933,81683,'Agent Matthew Travis',2,18),(47933,1172108,'Daisy',1,19),(47933,61703,'Yeong',2,20),(47933,995358,'Secret Service Agent',0,21),(47933,73609,'Floyd Rosenberg',2,22),(47933,1278725,'Charlie Miller',2,23),(47933,80019,'Lt. Ritter',2,24),(47933,1162,'General Grey',2,25),(47933,58758,'Dikembe',2,26),(47933,128560,'Jeffrey Fineman',2,27),(47933,1172430,'Dr. Isaacs',2,28),(47933,1397784,'Felix',0,29),(47933,1194214,'Radar Officer',2,30),(47933,1458290,'Aide 2',0,31),(47933,1548735,'Comms Officer',0,32),(47933,1529185,'Parisian Office Worker',0,33),(47933,1527955,'Military Brass',0,34),(47933,1046665,'Armand',0,35),(47933,1264845,'Tech Officer',1,36),(47933,1371849,'Flight Officer',2,37),(47933,78414,'Captain McQuaide',0,38),(47933,967071,'Nurse',1,39),(47933,1706605,'DC Hospital Nurse',0,40),(47933,1574845,'Road Rage / Confrontation Driver',0,41),(47933,1287802,'Kevin',2,42),(47933,1574846,'Officer',0,43),(47933,1474171,'Ping Li',0,44),(47933,143647,'Jaques',2,45),(47933,43596,'Prison Tech',0,46),(47933,1706583,'Prison Tech',2,47),(47933,1706604,'Salt Flat Tech',0,48),(47933,1555648,'Camper Henry',2,49),(47933,1706602,'Camper Marcus',0,50),(47933,18231,'African Guard',0,51),(47933,1451123,'Young Man',0,52),(47933,1404646,'Local Reporter',1,53),(47933,1706609,'Local Reporter',2,54),(47933,1546075,'Young Mother (uncredited)',0,55),(47933,1639911,'Background (uncredited)',1,56),(47933,1527954,'Flight Officer (uncredited)',0,57),(47933,1548734,'ESD Tech (uncredited)',0,58),(47933,1333907,'Marine (uncredited)',2,59),(47933,1706589,'Scientist (uncredited)',0,60),(47933,1574844,'Pilot P. Goodman (uncredited)',1,61),(47933,1755293,'Tug Pilot (uncredited)',2,62),(47933,1821402,'Voice of Sphere',0,63),(47933,1126417,'Bordeaux',0,64),(47933,122234,'Chinese President',0,65),(47933,79210,'French President',0,66),(118340,73457,'Peter Quill / Star-Lord',2,0),(118340,8691,'Gamora',1,1),(118340,543530,'Drax the Destroyer',2,2),(118340,12835,'Groot (voice)',2,3),(118340,51329,'Rocket Raccoon (voice)',2,4),(118340,72095,'Ronan the Accuser',2,5),(118340,12132,'Yondu Udonta',2,6),(118340,543261,'Nebula',1,7),(118340,938,'Korath',2,8),(118340,4764,'Corpsman Dey',2,9),(118340,515,'Nova Prime',1,10),(118340,1121,'The Collector',2,11),(118340,1148455,'Young Quill',2,12),(118340,16851,'Thanos',2,13),(118340,51663,'Kraglin / On Set Rocket',2,14),(118340,1214673,'The Other',2,15),(118340,82639,'Carina',1,16),(118340,11115,'Denarian Saal',2,17),(118340,2518,'Grandpa',2,18),(118340,209578,'Meredith Quill',0,19),(118340,1133011,'Bereet',0,20),(118340,8399,'The Broker',2,21),(118340,1363394,'Nova Prime\'s Assistant',1,22),(118340,1312266,'Pit Boss',0,23),(118340,1111204,'Head Riot Guard',0,24),(118340,1211540,'Moloka Dar',0,25),(118340,95051,'Horuz',2,26),(118340,25451,'Mean Guard',0,27),(118340,1405553,'Cosmo the Space Dog',0,28),(118340,15218,'Maskless Sakaaran',2,29),(118340,7624,'Xandarian Ladies\' Man',2,30),(118340,85096,'Knowhere Dispatcher',2,31),(118340,1229414,'Nova Centurion',1,32),(118340,78021,'Prisoner (uncredited)',2,33),(118340,51797,'Monstrous Inmate (voice)',2,34),(118340,16848,'Ravager Navigator (voice)',2,35),(118340,15221,'Ravager Pilot (uncredited)',2,36),(118340,13922,'Howard the Duck (voice) (uncredited)',2,37),(118340,1405259,'On Set Groot',0,38),(118340,1405269,'Meredith\'s Mother',0,39),(118340,1405309,'Meredith\'s Brother',0,40),(118340,1405311,'Meredith\'s Best Friend',0,41),(118340,1405317,'Dr. Fitzgibbon',0,42),(118340,1237281,'Horuz\' Mate',0,43),(118340,1202683,'Sacrificed Nova Corpsman',0,44),(118340,1186515,'Pretty Xandarian',1,45),(118340,1211966,'Nova Arresting Pilot',2,46),(118340,72440,'Corpsman Dey\'s Partner',2,47),(118340,1132153,'\'Drop the Leg\' Guard',2,48),(118340,941,'Kree Ambassador',2,49),(118340,1405441,'Angry Guard',0,50),(118340,1405444,'Sad Woman with Horns',1,51),(118340,1234991,'Mottled Prisoner',0,52),(118340,1405453,'Burly Prisoner',0,53),(118340,91494,'Watchtower Guard',2,54),(118340,25679,'One Legged Prisoner',0,55),(118340,56617,'Rifle Guard',0,56),(118340,59286,'Tortured Pink Girl',1,57),(118340,1405537,'Lady of the Boot of Jemiah',0,58),(118340,1405538,'Lady of the Boot of Jemiah',0,59),(118340,1405540,'Lady of the Boot of Jemiah',0,60),(118340,1394341,'Lady of the Boot of Jemiah',0,61),(118340,1405552,'Lady of the Boot of Jemiah',0,62),(118340,1405554,'Sad Krylorian Girl',0,63),(118340,1227575,'One-Eyed Ravager',0,64),(118340,202032,'Ravager Pilot',2,65),(118340,222906,'Nova Starblaster Pilot',2,66),(118340,92615,'Alien Nova Pilot',2,67),(118340,1405566,'Maskless Sakaaran',0,68),(118340,1405567,'Corpsman Dey\'s Wife',0,69),(118340,1405570,'Corpsman Dey\'s Daughter',0,70),(118340,1405571,'Corpsman Dey\'s Daughter',0,71),(118340,1362815,'Goth Ravager',0,72),(118340,1283880,'Crying Xandarian Citizen',0,73),(118340,1502373,'Ravager (uncredited)',0,74),(118340,1502374,'Traveller (uncredited)',0,75),(118340,1388891,'Kyln Prisoner (uncredited)',2,76),(118340,1502375,'Prisoner (uncredited)',0,77),(118340,1873059,'Peter Quill\'s Aunt (uncredited)',0,78),(118340,1744089,'Xandar Resident (uncredited)',1,79),(157336,10297,'Joseph Cooper',2,0),(157336,83002,'Murph Cooper',1,1),(157336,1813,'Dr. Amelia Brand',1,2),(157336,3895,'Professor John Brand',2,3),(157336,1893,'Tom Cooper',2,4),(157336,851784,'Young Murph Cooper',1,5),(157336,1190668,'Young Tom Cooper',2,6),(157336,58549,'TARS (voice)',2,7),(157336,1892,'Dr. Mann',2,8),(157336,9560,'Old Murph Cooper',1,9),(157336,12074,'Donald',2,10),(157336,8210,'Dr. Doyle',2,11),(157336,17052,'Getty',2,12),(157336,35013,'Principal',2,13),(157336,55411,'Dr. Romilly',2,14),(157336,21416,'NASA Board Member',2,15),(157336,40039,'CASE (voice)',2,16),(157336,86624,'Ms. Kelly',1,17),(157336,32202,'Lois Cooper',1,18),(157336,535,'Crew Chief',2,19),(157336,171901,'Nurse Practitioner',0,20),(157336,212689,'Doctor',2,21),(157336,78050,'Administrator',2,22),(157336,31649,'Nurse',1,23),(157336,1452481,'Coop',2,24),(157336,100650,'Boots',2,25),(157336,167720,'Smith',2,26),(157336,1505363,'Girl on Truck',1,27),(157336,1452865,'NASA Employee (uncredited)',2,28),(157336,1503849,'NASA Scientist (uncredited)',1,29),(157336,1573547,'Scientist (uncredited)',2,30),(157336,97447,'NASA Inspector (uncredited)',2,31),(157336,1360008,'Astronaut (uncredited)',2,32),(157336,1699056,'Popcorn Seller (uncredited)',2,33),(157336,1663832,'Construction Boss (uncredited)',2,34),(157336,1699057,'NASA Scientist (uncredited)',2,35),(315011,1098600,'Rando Yaguchi : Deputy Chief Cabinet Secretary',2,0),(315011,588403,'Hideki Akasaka : Special Advisor to the Prime Minister(National Security)',2,1),(315011,224664,'Kayoko Ann Patterson : US special envoy',1,2),(315011,120690,'Yuseuke Shimura : Secretary of Rando',2,3),(315011,1502395,'Syuichi Izumi : Policy Research Council Vice Chairman',0,4),(315011,130654,'Hiromi Ogashira : Ministry of the Environment Nature / Wildlife Division Deputy Director',1,5),(315011,87662,'Ryu Yasuda : Ministry of Education, Culture, Sports, Science and Technology, Research / Promotion Bureau Director',2,6),(315011,13256,'Fumiya Mori : Ministry of Health, Labour and Welfare / Research and Development Division Director',0,7),(315011,58608,'Kunio Hazama : Jouhoku University Associate professor',2,8),(315011,1405926,'Tachikawa : Agency for Natural Resources and Energy / Electricity and Gas Industry Department Director',2,9),(315011,1404981,'Tatsuya Negisi : Nuclear Regulatory Agency / Monitoring information Division Director',2,10),(315011,137029,'Seiji Ookouchi : Prime minister',0,11),(315011,80864,'Reiko Hanamori : Minister of Defense',1,12),(315011,13283,'Ryuta Azuma : Chief Cabinet Secretary',2,13),(315011,85939,'Yusuke Satomi : Minister of Agriculture, Forestry and Fisheries',0,14),(315011,58609,'Sekiguchi : Minister of Education, Culture, Sports, Science and Technology',0,15),(315011,52713,'Yanagihara : Minister of land, infrastructure and transportation',2,16),(315011,556796,'Kouno : Minister of Internal Affairs and Communications',2,17),(315011,135200,'Kanai : Minister of State for Special Missions',0,18),(315011,20335,'Kooriyama : Deputy Chief Cabinet Secretary for Crisis Management',0,19),(315011,2541,'Masao Zaizen : JSDF Chief of Staff, Joint Staff Office',2,20),(315011,58665,'Yajima : JSDF Vice Chief of Staff, Joint Staff Office',0,21),(315011,1015727,'JSDF Eastern Army Chief of Staff',2,22),(315011,120434,'Saigo : Operation TaBa Combat leader',0,23),(315011,115700,'1st. tank squadron captain',2,24),(315011,1684104,'2nd. tank squadron captain',2,25),(315011,120351,'Kozuka : Governor of Tokyo',2,26),(315011,127224,'Katayama : Minister for Foreign Affairs ad interim',0,27),(315011,20327,'Tahara : Ministry of Internal Affairs and Communications / Disaster Management Division',2,28),(315011,1095922,'Kazekoshi : Executive Secretary to the Prime Minister',0,29),(315011,146785,'Sawaguchi : Police Agency Commissioner General\'s Secretariat',2,30),(315011,58615,'National Police Agency Criminal Investigation Bureau Director-General',0,31),(315011,1431222,'National Police Agency in charge of crisis management officer',2,32),(315011,1637675,'Fire and Disaster Management Agency in charge of crisis management officer',2,33),(315011,84725,'Firefighters of Tokyo Fire Department',0,34),(315011,123862,'Prime Minister\'s Office staff',0,35),(315011,58613,'Hayafune : Free Journalist',2,36),(315011,1096815,'Journalist',0,37),(315011,1078683,'Journalist',2,38),(315011,1041467,'Evacuees',2,39),(315011,1029275,'Evacuees Aqua tunnel',1,40),(315011,1077301,'Biology professor',2,41),(315011,99245,'Ancient biologist',2,42),(315011,1057942,'Marine biologist',2,43),(315011,77921,'Bus Driver',2,44),(315011,85309,'Dr.Goro Maki',2,45),(315011,149405,'Godzilla',0,46),(315011,150296,'',1,47),(315011,1698019,'',0,48),(49051,1327,'Gandalf',2,0),(49051,7060,'Bilbo',2,1),(49051,30315,'Thorin',2,2),(49051,1333,'Gollum',2,3),(49051,112,'Galadriel',1,4),(49051,113,'Saruman',2,5),(49051,80112,'Radagast',2,6),(49051,65,'Older Bilbo',2,7),(49051,109,'Frodo',2,8),(49051,1331,'Elrond',2,9),(49051,72095,'Thranduil',2,10),(49051,127453,'Bolg',0,11),(49051,105584,'Lindir',2,12),(49051,207558,'Kili',2,13),(49051,34715,'Bofur',2,14),(49051,95047,'Dwalin',2,15),(49051,22,'Great Goblin',2,16),(49051,25136,'Balin',2,17),(49051,218563,'King Thror',2,18),(49051,81877,'Dori',2,19),(49051,534336,'Oin',2,20),(49051,67123,'Bifur/Tom Troll',2,21),(49051,126667,'Bain',2,22),(49051,71580,'Necromancer',2,23),(49051,152566,'Fili',2,24),(49051,41782,'Azog',2,25),(49051,173451,'Nori',0,26),(49051,1193833,'Ori',0,27),(49051,1193834,'Bombur',0,28),(49051,235025,'Goblin (uncredited)',2,29),(49538,5530,'Charles Xavier / Professor X',2,0),(49538,17288,'Erik Lehnsherr / Magneto',2,1),(49538,72129,'Raven Darkholme / Mystique',1,2),(49538,4724,'Sebastian Shaw / Black Bishop',2,3),(49538,9827,'Moira MacTaggert',1,4),(49538,3292,'Hank McCoy / Beast',2,5),(49538,31717,'Emma Frost / White Queen',1,6),(49538,973,'Azazel',2,7),(49538,429,'Alex Summers / Havok',2,8),(49538,572541,'Sean Cassidy / Banshee',2,9),(49538,37153,'Angel Salvadore / Tempest',1,10),(49538,17485,'Man in Black Suit',2,11),(49538,39391,'Armando Muu00f1oz / Darwin',2,12),(49538,1030252,'Janos Quested / Riptide',2,13),(49538,13525,'CIA Director McCone',2,14),(49538,1118,'Russian General',2,15),(49538,12797,'Colonel Hendry',2,16),(49538,11086,'Captain',2,17),(49538,74227,'Young Raven (10 yrs)',1,18),(49538,456008,'Charles Xavier (12 Years)',2,19),(49538,1211881,'Mrs. Xavier',1,20),(49538,81260,'Young Erik',0,21),(49538,1007,'William Stryker',2,22),(49538,20471,'Levene',2,23),(49538,1736,'US General',2,24),(49538,6719,'Secretary of State',2,25),(49538,72440,'Communications Officer',2,26),(49538,6968,'Logan / Wolverine (Uncredited)',2,27),(49538,11008,'Mystique - older',1,28),(49538,1610301,'Soviet NCO',2,29),(49538,1394331,'Russian General\'s Bodyguard',2,30),(49538,17199,'Chief Warden',0,31),(49538,82809,'Co-Ed',1,32),(49538,1658940,'Edie Lensherr',0,33),(49538,2220,'Man In Black Suit Agent',2,34),(49538,36631,'Man In Black Suit Agent',2,35),(49538,188758,'Aral Sea Captain',2,36),(49538,1465954,'Mr. Lensherr (Erik\'s Dad)',0,37),(49538,9140,'Swiss Bank Manager',2,38),(49538,1088,'1st German / Pig Farmer',2,39),(49538,20021,'2nd German / Tailor',2,40),(131634,72129,'Katniss Everdeen',1,0),(131634,27972,'Peeta Mellark',2,1),(131634,96066,'Gale Hawthorne',2,2),(131634,57755,'Haymitch Abernathy',2,3),(131634,9281,'Effie Trinket',1,4),(131634,1231,'President Alma Coin',1,5),(131634,1233,'Plutarch Heavensbee',2,6),(131634,2954,'Beetee',2,7),(131634,2283,'Caesar Flickerman',2,8),(131634,55636,'President Snow',2,9),(131634,530025,'Primrose Everdeen',1,10),(131634,237455,'Finnick Odair',2,11),(131634,20089,'Johanna Mason',1,12),(131634,932967,'Boggs',2,13),(131634,51682,'Castor',2,14),(131634,58502,'Cressida',1,15),(131634,20220,'Pollux',2,16),(131634,94103,'Messalla',2,17),(131634,1366702,'Commander Paylor',1,18),(131634,47533,'Mrs. Everdeen',1,19),(131634,1085158,'Annie Cresta',1,20),(131634,165242,'Enobaria',1,21),(131634,1011904,'Commander Lyme',1,22),(131634,17343,'Antonius',2,23),(131634,167862,'Homes',2,24),(131634,1317693,'Tigris',1,25),(131634,20275,'Egeria',1,26),(131634,1329572,'District 13 Civilian',2,27),(131634,41820,'Lieutenant Jackson',1,28),(131634,1334173,'Rebel Sniper',2,29),(131634,1328185,'Injured Career',0,30),(131634,13014,'Claudius Templesmith',2,31),(131634,141762,'Mitchell',2,32),(131634,1249175,'D4 Officiant',2,33),(131634,558899,'Commander of D5',0,34),(131634,10691,'Doctor Aurelius',1,35),(131634,158045,'Katniss\'s Father',0,36),(131634,932107,'Leeg #1',0,37),(131634,932103,'Leeg #2',0,38),(131634,1511922,'Girl in Lemon Yellow Coat',0,39),(131634,1786255,'Rebel Nurse',0,40),(131634,1645312,'Capitol Girl',0,41),(131634,1006139,'Greenhouse Guard #1',0,42),(131634,1786259,'Everdeen Child #1',0,43),(131634,1786260,'Everdeen Child #2',0,44),(131634,1580574,'District 7 Rebel (uncredited)',2,45),(131634,1669941,'Capitol Citizen (uncredited)',1,46),(131634,147642,'District 13 Citizen (uncredited)',0,47),(131634,1383491,'District 13 Citizen (uncredited)',1,48),(131634,1669940,'District 8 Hospital Patient (uncredited)',1,49),(131634,1560335,'District 8 (uncredited)',1,50),(241259,85,'Mad Hatter',2,0),(241259,76070,'Alice Kingsleigh',1,1),(241259,1813,'White Queen',1,2),(241259,1283,'Red Queen',1,3),(241259,4566,'Blue Caterpillar (voice)',2,4),(241259,3968,'White Rabbit (voice)',2,5),(241259,6730,'Time',2,6),(241259,125660,'Addison Bennett',2,7),(241259,13014,'Wilkins (uncredited)',2,8),(241259,7026,'Zanik Hightopp',2,9),(241259,9191,'Bayard (voice)',2,10),(241259,25438,'James Harcourt',2,11),(241259,11275,'Cheshire Cat (voice)',2,12),(241259,30083,'Helen Kingsleigh',1,13),(241259,26209,'Tweedledee / Tweedledum',2,14),(241259,1653293,'Pimlick Hightopp',2,15),(241259,30315,'King Oleron',2,16),(241259,1538417,'Young Mirana',1,17),(241259,1374336,'Young Iracebeth',1,18),(241259,11855,'Lady Ascot',1,19),(241259,29237,'Hamish',2,20),(241259,40942,'Mallykun (voice)',1,21),(241259,6975,'Nobody (voice)',1,22),(241259,56103,'Queen Elsemere',1,23),(241259,1307014,'Tyva Hightopp',1,24),(241259,992504,'Bumalig Hightopp',1,25),(241259,47468,'Aunt Imogene (uncredited)',1,26),(241259,34900,'Thackery (voice)',2,27),(241259,3968,'McTwisp (voice)',2,28),(241259,135467,'Wilkins (voice)',0,29),(241259,1742620,'Chess King (voice)',0,30),(241259,19513,'Humpty Dumpty (voice)',2,31),(241259,1742624,'Young Hatter',0,32),(241259,144291,'Alexandra',1,33),(241259,1427990,'Bim Hightopp',0,34),(241259,1742628,'Young Bim Hightopp',0,35),(241259,1705493,'Poomally Hightopp',0,36),(241259,1742629,'Paloo Hightopp',1,37),(241259,1413421,'Boatswain',0,38),(241259,1626984,'First Mate',0,39),(241259,1742630,'Helmsman',0,40),(241259,1742631,'Witzender',1,41),(241259,1742632,'Delivery Frog (voice)',0,42),(241259,1220073,'Gentleman Fish (voice)',0,43),(241259,390184,'Board Member',2,44),(241259,85970,'Footman',2,45),(241259,14493,'Driver',2,46),(241259,1742633,'Dancer',1,47),(241259,1742635,'Dancer',0,48),(241259,76901,'Dancer',1,49),(241259,1742636,'Dancer',1,50),(241259,1742637,'Dancer',1,51),(241259,1742640,'Dancer',1,52),(241259,1742643,'Dancer',0,53),(241259,1742644,'Dancer',0,54),(241259,1742645,'Dancer',1,55),(241259,1502470,'Dancer',1,56),(241259,1212713,'Dancer',0,57),(241259,1742654,'Dancer',1,58),(241259,1742655,'Dancer',0,59),(241259,1742656,'Dancer',0,60),(241259,487836,'Dancer',2,61),(241259,1742657,'Dancer',0,62),(241259,1742658,'Dancer',0,63),(241259,1742659,'Dancer',0,64),(241259,1742660,'Dancer',0,65),(241259,1742661,'Dancer',1,66),(241259,1502374,'Ascot Male',0,67),(241259,1264233,'Second Mate Tom',0,68),(241259,1363049,'Sailor',2,69),(241259,1379283,'Lord Ascot\'s Maid',1,70),(241259,234621,'Witzender / Vendor',2,71),(241259,1742683,'Blue Man',0,72),(241259,571437,'Goat',0,73),(241259,1742684,'Lady Ascot\'s Maid',1,74),(241259,1742685,'Hong Kong Citizen',0,75),(241259,47468,'Aunt Imogene',1,76),(241259,1742688,'Tick-Tock (voice)',1,77),(241259,1654739,'Royal Guard',2,78),(241259,1742692,'Ship\'s Porter',0,79),(241259,1742694,'Unicorn',2,80),(241259,1742695,'Townsboy',0,81),(241259,571225,'Young Bayard (voice)',2,82),(241259,1075104,'The Hour',0,83),(241259,1742699,'Royal Guard',0,84),(241259,1742701,'Stevedore',0,85),(241259,1742702,'Maid',1,86),(241259,1742704,'Gentleman',0,87),(241259,1742705,'Coronation Aristocrat',1,88),(241259,1742998,'Townsboy',0,89),(241259,1742999,'Royal Guard',0,90),(241259,1566183,'Brilliam Hinkle',0,91),(241259,157954,'Fisherman',0,92),(241259,1687937,'Asylum Patient',1,93),(241259,1371439,'Townsman',0,94),(241259,1743005,'Ascot Male',0,95),(241259,590936,'European Gent in Rickshaw',2,96),(241259,1394397,'Townswoman',1,97),(68735,52851,'Garona Halforcen',1,0),(68735,77700,'Anduin Lothar',2,1),(68735,11107,'Medivh',2,2),(68735,1038379,'Orgrim Doomhammer',2,3),(68735,55470,'King Llane Wrynn',2,4),(68735,20286,'Durotan',2,5),(68735,224167,'Khadgar',2,6),(68735,64436,'Gul\'dan',2,7),(68735,6574,'Blackhand',2,8),(68735,17018,'Lady Taria Wrynn',1,9),(68735,540,'Moroes',2,11),(68735,77164,'Karos',2,12),(68735,1382451,'Callan',0,13),(68735,111930,'Squire',2,14),(68735,63566,'King Magni',2,15),(68735,1510489,'Young Varian Wrynn',2,16),(68735,37698,'Delegate from Lordaeron',2,17),(68735,236696,'Grommash Hellscream',0,18),(68735,106952,'Draka',1,19),(68735,515,'Alodi',1,20),(68735,172873,'Varis / Caged Frostwolf',2,21),(68735,1233165,'Compound Guard',2,22),(68735,1679287,'Draenei Mother',1,23),(68735,290112,'Aloman',1,24),(68735,208296,'Warrior',2,25),(68735,1679290,'Officer #1',2,26),(68735,1127280,'Officer #2',2,27),(68735,103283,'Officer #3',0,28),(68735,172800,'Westfall Woman',1,29),(68735,102742,'Footman',2,30),(68735,1417044,'Gate Guard',0,31),(68735,37698,'Lordaerian Delegate',2,32),(68735,1508117,'Elf Delegate',2,33),(68735,1504484,'Kul Tiran Delegate',1,34),(68735,85505,'Clansmen',2,35),(68735,28871,'Finden',2,36),(68735,158587,'Archmage',1,37),(68735,1233167,'Prison Mage #1',2,38),(68735,61167,'Prison Mage #2',2,39),(68735,1512660,'Warrior',2,40),(68735,72045,'Prison Soldier',2,41),(68735,1679314,'Dwarf Messenger',2,42),(68735,203294,'Indecisive Woman (uncredited)',1,44),(68735,119811,'Tower Guard (uncredited)',2,45),(68735,1615574,'Knight (uncredited)',2,46),(68735,111930,'Squire (uncredited)',2,47),(68735,1368268,'Human Villager (uncredited)',2,48),(87101,1100,'The Terminator',2,0),(87101,76512,'John Connor',2,1),(87101,1223786,'Sarah Connor',1,2),(87101,224181,'Kyle Reese',2,3),(87101,18999,'Detective O\'Brien',2,4),(87101,1030512,'Danny Dyson',2,5),(87101,136532,'Alex',2,6),(87101,24047,'Miles Dyson',2,7),(87101,25002,'T-1000',2,8),(87101,55596,'Lieutenant Matias',2,9),(87101,65345,'Detective Cheung',1,10),(87101,1023458,'Young O\'Brien',2,11),(87101,37937,'Detective Harding',2,12),(87101,59739,'Detective Timmons',2,13),(87101,1451160,'Agent Janssen',0,14),(87101,76021,'Agent Burke',2,15),(87101,1394617,'Refugee / Terminator',0,16),(87101,1181558,'Skynet - 18 yrs old',0,17),(87101,37825,'Perry',2,18),(87101,565501,'Mariam',1,19),(87101,1049830,'Lt. Whitley',1,20),(87101,304845,'Kyle\'s Dad',2,21),(87101,100567,'Kyle\'s Mom',0,22),(87101,1576250,'Young Sarah',1,23),(87101,177403,'Security Guard #1',2,24),(87101,1576251,'Security Guard #2',2,25),(87101,60077,'Eric Thompson',2,26),(87101,1411679,'Lead Cop',2,27),(87101,203390,'Uniform Cop',2,28),(87101,1358087,'Guardian - Young / Terminator T-800',2,29),(87101,60881,'Garber',2,30),(87101,1810485,'Garbage Man',2,31),(109445,40462,'Anna (voice)',1,0),(109445,19394,'Elsa (voice)',1,1),(109445,221611,'Kristoff (voice)',0,2),(109445,54415,'Olaf (voice)',2,3),(109445,1188241,'Hans (voice)',2,4),(109445,21088,'Duke (voice)',2,5),(109445,8785,'Pabbie / Grandpa (voice)',2,6),(109445,70238,'Oaken (voice)',2,7),(109445,16842,'Kai (voice)',2,8),(109445,1297610,'Bulda (voice)',0,9),(109445,3202,'Gerda (voice)',1,10),(109445,74573,'Bishop (voice)',2,11),(109445,34521,'King (voice)',2,12),(109445,1207489,'Young Anna (voice)',0,13),(109445,1207488,'Young Elsa (voice)',0,14),(109445,1340660,'Teen Elsa (voice)',0,15),(109445,1340664,'Additional Voices (voice)',1,19),(109445,1340665,'Additional Voices (voice)',0,20),(109445,1340667,'Additional Voices (voice)',0,21),(109445,87176,'Additional Voices (voice)',0,22),(109445,1340669,'Additional Voices (voice)',0,23),(109445,1340671,'Additional Voices (voice)',0,25),(109445,1340673,'Additional Voices (voice)',2,27),(109445,1340674,'Additional Voices (voice)',1,28),(109445,186605,'Additional Voices (voice)',1,29),(109445,146186,'Additional Voices (voice)',2,30),(109445,59051,'Additional Voices (voice)',0,31),(109445,950773,'Additional Voices (voice)',0,32),(109445,36821,'Additional Voices (voice)',2,33),(109445,173428,'Additional Voices (voice)',1,34),(109445,39214,'Additional Voices (voice)',2,35),(109445,1340676,'Additional Voices (voice)',0,36),(109445,1340677,'Additional Voices (voice)',0,37),(109445,1120694,'Additional Voices (voice)',1,38),(109445,1207490,'Additional Voices (voice)',0,39),(109445,1340678,'Additional Voices (voice)',0,40),(109445,108253,'Additional Voices (voice)',1,41),(109445,111466,'Additional Voices (voice)',0,42),(109445,1077828,'Additional Voices (voice)',0,43),(109445,113916,'Additional Voices (voice)',2,44),(109445,1340680,'Additional Voices (voice)',0,45),(109445,174563,'Additional Voices (voice)',2,46),(109445,76461,'Additional Voices (voice)',1,47),(109445,1340682,'Additional Voices (voice)',0,48),(109445,1223658,'Additional Voices (voice)',2,49),(109445,59060,'Additional Voices (voice)',0,50),(109445,1296646,'Additional Voices (voice)',0,51),(109445,1340684,'Additional Voices (voice)',2,52),(109445,1340685,'Additional Voices (voice)',0,53),(109445,1009221,'Additional Voices (voice)',1,54),(109445,131365,'Additional Voices (voice)',2,55),(109445,60279,'Additional Voices (voice)',2,56),(109445,120831,'Additional Voices (voice)',1,57),(109445,113818,'Additional Voices (voice)',1,58),(109445,1248379,'Young Kristoff / Additional Voices (voice)',0,59),(109445,1196879,'Additional Voices (voice)',1,60),(76338,74568,'Thor',2,0),(76338,524,'Jane Foster',1,1),(76338,91606,'Loki',2,2),(76338,4173,'Odin',2,3),(76338,2040,'Malekith',2,4),(76338,59817,'Sif',1,5),(76338,69899,'Fandral',2,6),(76338,56614,'Volstagg',2,7),(76338,13275,'Hogun',2,8),(76338,17605,'Heimdall',2,9),(76338,14343,'Frigga',1,10),(76338,31164,'Algrim / Kurse',2,11),(76338,52852,'Darcy Lewis',1,12),(76338,1640,'Erik Selvig',2,13),(76338,2506,'Eir',1,14),(76338,19901,'Tyr',2,15),(76338,1270111,'Ian Boothby',0,16),(76338,1381866,'John',0,17),(76338,1743768,'Navid',0,18),(76338,1743769,'Maddie',0,19),(76338,1743770,'Volstagg\'s Wife',0,20),(76338,1743771,'Volstagg\'s Child #1',0,21),(76338,1743772,'Volstagg\'s Child #2',0,22),(76338,1743773,'Volstagg\'s Child #3',0,23),(76338,1132749,'Desk Officer',2,24),(76338,1269487,'Stonehenge TV News Reporter',0,25),(76338,1743774,'Sad Child',0,26),(76338,1266313,'Student',0,27),(76338,1743775,'Woman on Platform',0,28),(76338,1743776,'Wench #1',0,29),(76338,40477,'Richard',2,30),(76338,206724,'Police Officer #1',2,31),(76338,1414711,'Police Officer #2',2,32),(76338,3901,'Einherjar Lieutenant',2,33),(76338,7624,'Himself',2,34),(76338,1743778,'Himself',0,35),(76338,1224188,'Einherjar Guard',0,36),(76338,66441,'Nurse',1,37),(76338,87115,'Asylum Patient',2,38),(76338,2220,'Bor (uncredited)',2,39),(76338,1121,'The Collector (uncredited)',2,40),(76338,16828,'Loki as Captain America (uncredited)',2,41),(76338,82639,'Carina (uncredited)',1,42),(76341,2524,'Max Rockatansky',2,0),(76341,6885,'Imperator Furiosa',1,1),(76341,3292,'Nux',2,2),(76341,26060,'Immortan Joe',2,3),(76341,1056053,'Slit',2,4),(76341,24898,'Rictus Erectus',2,5),(76341,37153,'Toast the Knowing',1,6),(76341,236048,'The Splendid Angharad',1,7),(76341,98522,'Capable',1,8),(76341,1036288,'The Dag',1,9),(76341,1278500,'Cheedo the Fragile',1,10),(76341,102603,'The People Eater',2,11),(76341,44838,'The Bullet Farmer',2,12),(76341,1272941,'The Doof Warrior',2,13),(76341,59117,'The Organic Mechanic',2,14),(76341,1475853,'Miss Giddy',1,15),(76341,1232126,'The Valkyrie',1,16),(76341,82437,'Keeper of the Seeds',1,17),(76341,217828,'The Vuvalini',1,18),(76341,75540,'The Vuvalini',1,19),(76341,1229667,'The Vuvalini',1,20),(76341,1734171,'The Vuvalini',0,21),(76341,1734172,'The Vuvalini',0,22),(76341,1734173,'The Ace',0,23),(76341,1734174,'Corpus Colossus',0,24),(76341,1456888,'Glory the Child',1,25),(76341,1734175,'Morsov',0,26),(76341,1492293,'The Rock Rider Chief / The Winchman',2,27),(76341,66055,'The Prime Imperator',2,28),(76341,1734177,'Imperator',0,29),(76341,1265157,'Imperator',2,30),(76341,1734178,'Chanting War Boy / Red Flare Warrior',2,31),(76341,1734179,'Blood \'Shed\' War Boy',0,32),(76341,1554064,'War Rig War Boy',2,33),(76341,1734180,'Milking Mother',0,34),(76341,1734181,'Ripsaw Imperator / The Breakman',0,35),(76341,1734182,'Ripsaw Driver',0,36),(76341,223692,'Polecat Lookout',2,37),(76341,1734183,'Black Mask',0,38),(76341,144677,'The Accusing Dead',2,39),(76341,1734184,'The Accusing Dead',0,40),(76341,1734185,'The Wretched',0,41),(76341,1734186,'The Wretched',0,42),(76341,1734187,'War Pups',0,43),(76341,1734188,'War Pup',0,44),(76341,1734187,'War Pup',0,45),(76341,1734189,'War Pup',0,46),(76341,1734190,'War Pup',0,47),(76341,1734191,'War Pup',0,48),(76341,1734192,'War Pup',0,49),(76341,1734193,'War Pup',0,50),(76341,1734194,'Drummer',0,51),(76341,1734195,'Drummer',0,52),(76341,1734196,'Drummer',0,53),(76341,1734197,'Drummer',0,54),(76341,1734198,'Drummer',0,55),(76341,1734199,'Drummer',0,56),(76341,1734200,'Drummer',0,57),(76341,1445417,'The Many Voices (voice)',2,58),(76341,1394433,'The Wretched (uncredited)',2,59),(57165,65731,'Perseus',2,0),(57165,3896,'Zeus',2,1),(57165,5469,'Hades',2,2),(57165,25616,'Ares',2,3),(57165,20286,'Argenor',2,4),(57165,10882,'Andromeda',1,5),(57165,2440,'Hephaestus',2,6),(57165,6413,'Poseidon',2,7),(57165,126667,'Helius',2,8),(57165,1016168,'Korrina',1,9),(57165,1432104,'Mantius',2,10),(57165,1774319,'Apollo',0,11),(57165,1774320,'Athena',0,12),(57165,1252495,'Elite Guard No. 1',0,13),(57165,110525,'Elite Guard No. 2',2,14),(57165,11281,'Clea',1,15),(57165,25451,'Minotaur',0,16),(57165,11177,'Cyclops',0,17),(62213,85,'Barnabas Collins',2,0),(62213,1160,'Elizabeth Collins Stoddard',1,1),(62213,1283,'Dr. Julia Hoffman',1,2),(62213,17183,'Willie Loomis',2,3),(62213,9012,'Roger Collins',2,4),(62213,10912,'Angelique Bouchard',1,5),(62213,234982,'Victoria Winters',1,6),(62213,56734,'Carolyn Stoddard',1,7),(62213,234983,'David Collins',2,8),(62213,1803326,'Mrs. Johnson',0,9),(62213,113,'Clarney',2,10),(62213,35824,'Alice Cooper',2,11),(62213,39683,'Joshua Collins',2,12),(62213,1096866,'Naomi Collins',0,13),(62213,1055230,'Young Angelique',1,14),(62213,1803327,'Young Victoria',0,15),(62213,10207,'Sheriff',0,16),(62213,1699133,'Captain Rubberpants',0,17),(62213,211897,'David\'s Mother',0,18),(62213,10657,'Board Member #1',2,19),(62213,1184168,'Board Member #2',0,20),(62213,29697,'Hard Hat #1',2,21),(62213,1151957,'Hippie Chick #1',1,22),(62213,213395,'Hippie Chick #2',1,23),(62213,219763,'Coat Check Girl',0,24),(177677,500,'Ethan Hunt',2,0),(177677,933238,'Ilsa Faust',1,1),(177677,11108,'Benji Dunn',2,2),(177677,17604,'William Brandt',2,3),(177677,10182,'Luther Stickell',2,4),(177677,16702,'Lane',2,5),(177677,16358,'Atlee',0,6),(177677,41894,'Lauren',0,7),(177677,2441,'Prime Minister',2,8),(177677,92429,'Janik Vinter',0,9),(177677,7447,'Alan Hunley',2,10),(177677,1502365,'A400M Pilot',0,11),(177677,1361888,'A400M Pilot',0,12),(177677,1196960,'A400M Crewman',2,13),(177677,1345419,'Record Shop Girl',1,14),(177677,1404403,'Chairman',0,15),(177677,1529474,'Senator',2,16),(177677,24247,'Senator',0,17),(177677,1502366,'Senator',0,18),(177677,1192564,'Senator',0,19),(177677,1529490,'Janik\'s Sentry',2,20),(177677,1529494,'Janik\'s Sentry',0,21),(177677,934049,'IMF Operator',2,22),(177677,1464090,'Officer Assassin',2,23),(177677,40738,'Flautist Assassin',0,24),(177677,1529495,'Opera Lighting Technician',1,25),(177677,1430505,'Opera Lighting Technician',0,26),(177677,1562079,'Calu00e1f',0,27),(177677,78434,'Turandot',1,28),(177677,1562080,'The Mandarin',0,29),(177677,1562081,'Altoum',0,30),(177677,1562082,'Ping',0,31),(177677,1562083,'Pang',0,32),(177677,1562084,'Pong',0,33),(177677,1562085,'Conductor',2,34),(177677,1562086,'Opera Stage Manager',1,35),(177677,1562087,'Opera Director',0,36),(177677,1562088,'Opera Staff',0,37),(177677,1274600,'Opera Security',0,38),(177677,1562089,'Opera Security',0,39),(177677,1562090,'Opera Police',0,40),(177677,1562091,'Opera Police',0,41),(177677,36097,'Opera Police',2,42),(177677,1400211,'Opera Police',0,43),(177677,1562092,'Chancellor',0,44),(177677,1562093,'Chancellor\'s Wife',0,45),(177677,85828,'Chancellor\'s Security Aide',0,46),(177677,1562095,'Chancellor\'s Security Aide',0,47),(177677,1562096,'Saif',0,48),(177677,1562097,'Lane Bodyguard',0,49),(177677,1562098,'CIA Agent',0,50),(177677,1562099,'CIA Agent',0,51),(177677,1504937,'Drone Technician',0,52),(177677,1562102,'Drone Technician',0,53),(177677,1385097,'Masked Syndicate Man',0,54),(177677,1562103,'Power Plant Guards',2,55),(177677,1562104,'Power Plant Guards',0,56),(177677,1363060,'Power Plant Guards',2,57),(177677,1483038,'Power Plant Security',0,58),(177677,1562105,'Power Plant Security',0,59),(177677,1562106,'Control Lab Technician',0,60),(177677,1336360,'Control Lab Technician',0,61),(177677,1562107,'Control Lab Technician',0,62),(177677,1562108,'Control Lab Technician',0,63),(177677,1188778,'Lead Biker',0,64),(177677,1388917,'CIA Jet Agent',0,65),(177677,1303330,'CIA Jet Agent',0,66),(177677,1562110,'Prime Minister\'s Wife',0,67),(177677,199139,'Prime Minister\'s Bodyguard',0,68),(177677,77837,'Prime Minister\'s Bodyguard',0,69),(177677,1562111,'Auctioneer',0,70),(177677,1363049,'CIA Agent (uncredited)',2,71),(177677,1322312,'CIA Agent (uncredited)',0,72),(177677,1316592,'Villain (uncredited)',2,73),(177677,1671024,'Stewardess (uncredited)',1,74),(49444,70851,'Po (voice)',2,0),(49444,11701,'Tigress (voice)',1,1),(49444,4483,'Shifu (voice)',2,2),(49444,64,'Lord Shen (voice)',2,3),(49444,18897,'Monkey (voice)',2,4),(49444,140,'Viper (voice)',1,5),(49444,19274,'Mantis (voice)',2,6),(49444,212,'Crane (voice)',2,7),(49444,1620,'The Soothsayer (voice)',1,8),(49444,20904,'Mr. Ping (voice)',2,9),(49444,62862,'Wolf Boss (voice)',2,10),(49444,352,'Master Storming Ox (voice)',2,11),(49444,15111,'Master Croc (voice)',2,12),(49444,8536,'Master Thundering Rhino (voice)',2,13),(49444,346,'Gorilla Guard 1 (voice) (as Michael Patrick Bell)',0,14),(49444,1453780,'Antelope Driver (voice)',0,15),(49444,1453781,'Happy Bunny (voice)',0,16),(49444,1453782,'Wolf Soldier 4 (voice)',0,17),(49444,1453784,'Pig Fan / Bunny (voice)',0,18),(49444,1453786,'Mop Bunny (voice)',0,19),(49444,1453790,'Wolf Soldier 1 (voice)',0,20),(49444,38668,'Bunny Fan (voice) (as Alexandra Jourden)',0,21),(49444,1448984,'Musician Pig / Awesome Pig (voice)',0,22),(49444,1453793,'Baby Po (voice)',0,23),(49444,47773,'Musician Bunny (voice)',2,24),(49444,1232325,'Stain Pig / Wolf Soldier 2 (voice)',0,25),(49444,1448987,'Dumpling Bunny (voice)',0,26),(49444,65726,'Wolf Soldier 3 (voice)',2,27),(49444,60279,'Panda Dad / Gorilla Guard 2 (voice)',2,28),(49444,15100,'Market Sheep (voice)',1,29),(49444,156342,'Pig Mother (voice)',1,30),(49444,12080,'Boar (voice)',2,31),(117251,38673,'Cale',2,0),(117251,134,'President James Sawyer',2,1),(117251,125025,'Emily',1,2),(117251,1579,'Finnerty',1,3),(117251,28633,'Raphelson',2,4),(117251,4512,'Walker',2,5),(117251,73609,'Donnie the Guide',2,6),(117251,22125,'Tyler',2,7),(117251,4776,'Vice President Hammond',2,8),(117251,58168,'Melanie',1,9),(117251,129101,'General Caulfield',2,10),(117251,13525,'Agent Kellerman',2,11),(117251,4177,'Agent Hope',2,12),(117251,31514,'Wallace',2,13),(117251,76512,'Stenz',2,14),(117251,114000,'Killick',2,15),(117251,31647,'Alison Sawyer',1,16),(117251,118643,'Motts',2,17),(117251,96591,'Mulcahy',2,18),(117251,166688,'Jenna',1,19),(117251,190098,'Roger Skinner',0,20),(50321,13922,'Milo (voice)',2,0),(50321,3234,'Mom (voice)',1,1),(50321,58873,'Gribble (voice)',2,2),(50321,33654,'Alien (voice)',2,3),(50321,78197,'Ki (voice)',1,4),(50321,16857,'Milo\'s Dad (voice)',2,5),(50321,13924,'Supervisor (voice)',1,6),(50321,42286,'Martian (voice)',1,7),(50321,963134,'Martian Hatchling (voice)',0,8),(50321,984263,'Martian Hatchling (voice)',2,9),(50321,492081,'Martian Hatchling (voice)',2,10),(50321,1108010,'Milo (voice) (as Seth Dusky)',0,11),(266647,1313583,'Peter Pan',2,0),(266647,9828,'James Hook',2,1),(266647,6968,'Blackbeard',2,2),(266647,108916,'Tiger Lily',1,3),(266647,71070,'Mary',1,4),(266647,43547,'Bishop',2,5),(266647,37759,'Mother Barnabas',1,6),(266647,81840,'Sam Smiegel',2,7),(266647,1289968,'Mermaid',1,8),(266647,71281,'Mutti Voosht',2,9),(266647,1252934,'Commander',0,10),(266647,1523921,'Nibs',2,11),(266647,1097451,'Kwahu',0,12),(266647,1301823,'Chief',0,13),(266647,75076,'Steps',2,14),(266647,1526130,'Murray',0,15),(266647,1334638,'Dobkin',2,16),(266647,1214513,'Lofty',0,17),(266647,210061,'Robbins',0,18),(82703,15232,'Mr. Peabody (voice)',2,0),(82703,558928,'Sherman (voice)',2,1),(82703,42160,'Penny Peterson (voice)',1,2),(82703,19,'Ms. Grunion (voice)',1,3),(82703,475512,'Paula Peterson',1,4),(82703,58769,'Paul Peterson (voice)',2,5),(82703,537,'Principal Purdy (voice)',2,6),(82703,111923,'Mason (voice)',2,7),(82703,212184,'Carl (voice)',2,8),(82703,20804,'French Peasant (voice)',2,9),(82703,2283,'Leonardo da Vinci (voice)',2,10),(82703,1054484,'Marie Antoinette / Egyptian Woman (voice)',0,11),(82703,41087,'Patty Peterson (voice)',1,12),(82703,25703,'Mona Lisa (voice)',1,13),(82703,12071,'Robespierre (voice)',0,14),(82703,35349,'Teacher (voice)',1,15),(82703,352,'Judge (voice)',2,16),(82703,225863,'King Tut (voice)',0,17),(82703,78311,'Ay (voice)',2,18),(82703,1227701,'WABAC Machine (voice)',0,19),(82703,9657,'Agamemnon (voice)',2,20),(82703,18864,'Odysseus (voice)',2,21),(82703,14639,'Albert Einstein (voice)',2,22),(82703,1504903,'Kid (voice)',0,23),(82703,1454441,'Baby Sherman (voice)',0,24),(82703,118489,'French Peasant / Taxi Driver / Spartacus (voice)',2,25),(82703,193045,'French Peasant (voice)',1,26),(82703,36821,'French Peasant (voice)',2,27),(82703,539,'Italian Peasant #2 (voice)',2,28),(82703,18898,'Creepy Boy (voice)',2,29),(82703,1214171,'Ajax (voice)',0,30),(82703,84495,'Abraham Lincoln / George Washington / Bill Clinton / Isaac Newton / New York City Cop (voice)',2,31),(82703,1340664,'Additional Voices (voice)',1,32),(82703,84080,'Additional Voices (voice)',2,33),(82703,84086,'Additional Voices (voice)',1,34),(82703,217777,'Additional Voices (voice)',0,35),(82703,1340665,'Additional Voices (voice)',0,36),(82703,1207488,'Additional Voices (voice)',0,37),(82703,992381,'Additional Voices (voice)',2,38),(82703,64447,'Additional Voices (voice)',2,39),(82703,60232,'Additional Voices (voice)',2,40),(82703,5211,'Additional Voices (voice)',2,41),(82703,84494,'Additional Voices (voice)',0,42),(82703,950773,'Additional Voices (voice)',0,43),(82703,15373,'Additional Voices (voice)',2,44),(82703,1504904,'Additional Voices (voice)',0,45),(82703,106800,'Additional Voices (voice)',1,46),(82703,64450,'Additional Voices (voice)',0,47),(82703,113916,'Additional Voices (voice)',2,48),(82703,963134,'Additional Voices (voice)',0,49),(82703,59413,'Egyptian Spectator / Italian Peasant #1 (voice)',2,50),(80321,7399,'Alex (voice)',2,0),(80321,6730,'King Julien XIII (voice)',2,1),(80321,14409,'Melman (voice)',2,2),(80321,3910,'Captain Chantel DuBois (voice)',1,3),(80321,2632,'Marty (voice)',2,4),(80321,9575,'Gloria (voice)',1,5),(80321,31531,'Rico (voice)',0,6),(80321,5726,'Maurice (voice)',2,7),(80321,83002,'Gia (voice)',1,8),(80321,17419,'Vitaly (voice)',2,9),(80321,519,'Stefano (voice)',2,10),(80321,3627,'Carmen (voice)',1,11),(36669,517,'James Bond',2,0),(36669,4587,'Jinx Johnson',1,1),(36669,10882,'Miranda Frost',1,2),(36669,10883,'Zao',2,3),(36669,10881,'Gustav Graves',2,4),(36669,8930,'Q',0,5),(36669,1365,'Mr. Kil',0,6),(36669,147,'Damian Falco',2,7),(36669,10884,'Colonel Moon',2,8),(36669,5309,'M',1,9),(36669,10885,'General Moon',0,10),(36669,263,'Raoul',2,11),(36669,115876,'Vlad',2,12),(36669,5414,'Charles Robinson',2,13),(36669,10699,'Miss Moneypenny',1,14),(36669,3125,'Verity',1,15),(36669,86050,'Peaceful',0,16),(36669,24496,'Dr. Alvarez',2,17),(36669,57143,'Van Bierke',2,18),(36669,1257821,'General Li',2,19),(36669,1231943,'Air Hostess',0,20),(43074,55536,'Abby Yates',1,0),(43074,41091,'Erin Gilbert',1,1),(43074,1240487,'Jillian Holtzmann',1,2),(43074,168452,'Patty Tolan',1,3),(43074,74568,'Kevin Smith',2,4),(43074,1267216,'Rowan North',0,5),(43074,4391,'Harold Fillmore',2,6),(43074,39390,'Agent Hawkins',2,7),(43074,1093919,'Jennifer Lynch',0,8),(43074,1271,'Mayor Bradley',2,9),(43074,59841,'Agent Rorke',2,10),(43074,42157,'Ed Mulgrave',2,11),(43074,1215931,'Dean Jones',0,12),(43074,178926,'Jonathan the Theater Manager',2,13),(43074,1109702,'Benny',2,14),(43074,464993,'Tour Guide Garrett',2,15),(43074,127048,'Graffiti Artist',0,16),(43074,18271,'Officer Stevenson',2,17),(43074,1106222,'Rental Agent',1,18),(43074,1231211,'Waitress',1,19),(43074,1219121,'Waitress',0,20),(43074,1231188,'Electrocuted Ghost',0,21),(43074,54720,'Flasher Ghost',2,22),(43074,1637555,'Lead Singer / Voice of Slimer',0,23),(43074,1532,'Martin Heiss',2,24),(43074,707,'Cabbie',2,25),(43074,8874,'Uncle Bill',2,26),(43074,10205,'Rebecca Gorin',1,27),(43074,8873,'Desk Clerk',1,28),(43074,12208,'Famous Rock Star',2,29),(43074,111875,'Himself',2,30),(43074,1686558,'Fox 5 News Anchor',0,32),(43074,1243729,'Fox 5 News Anchor',0,33),(43074,1686559,'Metal Head',0,34),(43074,1429453,'Basement Cop',2,35),(43074,1454946,'Subway Rat Woman',1,36),(43074,1217650,'Gertrude Aldridge Ghost',0,37),(43074,1480047,'NY1 News Anchor #1',2,38),(43074,1370567,'Bass Guitarist',0,39),(43074,1772805,'Reporter Outside Theater',0,40),(43074,305993,'Flashed Man',2,41),(43074,1255901,'Flashed Woman',0,42),(43074,110743,'Police Officer',0,43),(43074,1534447,'Lady Slimer (voice)',0,44),(43074,1286525,'Higgins Student',0,45),(43074,1717724,'Higgins Student',0,46),(43074,1640435,'Fernando the Janitor',0,47),(43074,1462917,'Ely the Drummer',0,48),(43074,1772809,'Rock Guitarist',0,49),(43074,1772810,'Rock Guitarist',0,50),(43074,10572,'Keyboardist',2,51),(43074,1772812,'Lightboard Operator',0,52),(43074,1772813,'NY1 News Anchor #2',0,53),(43074,1772814,'Police Officer',0,54),(43074,1772816,'Baba Booey Shouter',0,55),(43074,20,'Phyllis Adler',1,56),(43074,1542697,'Ghost Prostitute / College Student (uncredited)',0,57),(43074,1053275,'Restaurant Patron (uncredited)',1,58),(43074,94622,'Frank (uncredited)',2,59),(43074,1745921,'Aldridge Mansion Tourist (uncredited)',0,60),(43074,1475121,'Pedestrian (uncredited)',1,61),(43074,1772818,'AA News Reporter (uncredited)',0,62),(43074,1772819,'Concert Goer (uncredited)',0,63),(43074,1772820,'Coffeeshop Patron / Concert Goer (uncredited)',0,64),(43074,1772822,'NYC Pedestrian (uncredited)',0,65),(43074,1772824,'Concert Goer (uncredited)',0,66),(43074,174727,'Mrs. Potter (uncredited)',1,67),(43074,1772826,'Concert Goer (uncredited)',0,68),(43074,1602952,'Guitar Technician (uncredited)',0,69),(43074,1438372,'Woman in Subway (uncredited)',0,70),(43074,1572024,'Community College Student (uncredited)',0,71),(43074,1772829,'1950s Ghost (uncredited)',0,72),(43074,1542698,'Double for Gertrude Aldridge Ghost & Bess Rous',1,73),(43074,1542698,'Show Girl Ghost/Double for Gertrude Aldridge Ghost & Bess Rous',1,74),(43074,1542698,'Show Girl Ghost (uncredited)/Double for Gertrude Aldridge Ghost & Bess Rous',1,75),(140300,70851,'Po (voice)',2,0),(140300,17419,'Li (voice)',2,1),(140300,4483,'Shifu (voice)',2,2),(140300,11701,'Tigress (voice)',1,3),(140300,18999,'Kai (voice)',2,4),(140300,18897,'Monkey (voice)',2,5),(140300,19274,'Mantis (voice)',2,6),(140300,140,'Viper (voice)',1,7),(140300,212,'Crane (voice)',2,8),(140300,11661,'Mei Mei (voice)',1,9),(140300,20904,'Mr. Ping (voice)',2,10),(140300,9462,'Oogway (voice)',2,11),(140300,1382741,'Bao (voice)',0,12),(140300,1453793,'Lei Lei (voice)',0,13),(140300,4201,'Big Fun / Hom-Lee (voice)',2,14),(140300,1257847,'Grandma Panda (voice)',0,15),(140300,111875,'Sum (voice)',2,16),(140300,1491641,'Dim (voice)',0,17),(140300,60279,'Master Bear (voice)',2,18),(140300,1571792,'Yoo (voice)',0,19),(140300,1571793,'Female Palace Goose (voice)',0,20),(140300,1448984,'Master Chicken (voice)',0,21),(140300,971877,'Farmer Goose / Farmer Rabbit (voice)',0,22),(140300,1215502,'Ming (voice)',0,23),(140300,1453786,'Mrs. Chow (voice)',0,24),(140300,1571794,'Ku Ku (voice)',0,25),(140300,1242871,'Meng Meng (voice)',0,26),(140300,1242866,'Shuai Shuai (voice)',0,27),(140300,15111,'Master Croc (voice)',2,28),(140300,1571795,'Mi (voice)',0,29),(140300,1571796,'Peony (voice)',0,30),(140300,1453790,'Dumpling Record Pig (voice)',0,31),(140300,1453784,'Cheering Bunny (voice)',0,32),(140300,1571797,'Panda Villager Kid (voice)',0,33),(56292,500,'Ethan Hunt',2,0),(56292,17604,'Brandt',2,1),(56292,11108,'Benji Dunn',2,2),(56292,52851,'Jane Carter',1,3),(56292,72118,'Brij Nath',2,4),(56292,142636,'Trevor Hanaway',2,5),(56292,10182,'Luther Stickell',2,6),(56292,508582,'Bogdan',0,7),(56292,6079,'Leonid Lisenker',0,8),(56292,92428,'Wistrom',2,9),(56292,6283,'Kurt Hendricks',2,10),(56292,121529,'Sabine Moreau',1,11),(56292,11705,'Julia Meade',1,12),(56292,207,'IMF Secretary',2,13),(56292,173079,'Julia\'s Friend',1,14),(56292,64674,'Kremlin Subcellar Hallway Guard',2,15),(81188,62064,'Jack Frost (voice)',2,0),(81188,7447,'North (voice)',2,1),(81188,9642,'Pitch (voice)',2,2),(81188,52848,'Tooth (voice)',1,3),(81188,6968,'E. Aster Bunnymund (voice)',2,4),(81188,234479,'Jamie (voice)',2,5),(81188,87056,'Caleb (voice)',2,6),(81188,1271684,'Claude (voice)',2,7),(81188,1364655,'Sophie Bennett (voice)',0,8),(81188,1364656,'Jamie\'s Mom / Jack\'s Mother (voice)',0,9),(81188,114446,'Monty (voice)',0,10),(81188,1364657,'Pippa / Jack\'s Sister (voice)',0,11),(81188,1364658,'Cupcake (voice)',0,12),(81188,1364660,'Burgess Pedestrian (voice)',0,14),(81188,936667,'Burgess Dog Walker',2,15),(81188,936667,'Burgess Dog Walker (voice)',2,16),(147441,3894,'Moses',2,0),(147441,33192,'Ramses II',2,1),(147441,1241,'Sethos I',2,2),(147441,84497,'Joshua',2,3),(147441,77335,'Viceroy Hegep',2,4),(147441,77122,'Su00e9fora',0,5),(147441,10205,'Tuja',1,6),(147441,2282,'Nun',2,7),(147441,765,'Bithia',1,8),(147441,1264233,'Malak',0,9),(147441,1125,'Expert',2,10),(147441,30430,'High Priestess',1,11),(147441,229932,'Nefertari',1,12),(147441,70577,'Ramses\' Grand Vizier',0,13),(147441,47615,'Miriam',1,14),(147441,234907,'Commander Khyan',0,15),(147441,104040,'Aaron',2,16),(147441,91662,'Ramses\' Scribe',0,17),(147441,1440869,'Gershom',0,19),(147441,1440871,'Stonework Guard',0,20),(147441,228968,'Abiram',2,21),(147441,743,'Jethro',2,22),(147441,1432104,'Egyptian Soldier 4',2,23),(147441,145310,'Viceroy Hegep\'s Aide',2,24),(82702,449,'Hiccup (voice)',2,0),(82702,17276,'Stoick the Vast (voice)',2,1),(82702,41091,'Ruffnut (voice)',1,2),(82702,21007,'Snotlout (voice)',2,3),(82702,112,'Valka (voice)',1,4),(82702,938,'Drago Bludvist (voice)',2,5),(82702,239019,'Eret, Son of Eret (voice)',2,6),(82702,54691,'Fishlegs (voice)',2,7),(82702,51990,'Tuffnut (voice)',2,8),(82702,59174,'Astrid (voice)',1,9),(82702,24264,'Gobber (voice)',2,10),(82702,138620,'Hoark the Haggard (voice)',0,11),(82702,138619,'Starkard (voice)',0,12),(82702,83407,'Ug (voice)',2,13),(82702,35981,'Teeny (voice)',2,14),(82702,1234388,'No-Name (voice)',0,15),(82702,42267,'Toothless (voice)',0,16),(205584,1017347,'Bek',2,0),(205584,12795,'Horus',2,1),(205584,17276,'Set',2,2),(205584,1278500,'Zaya',1,3),(205584,78147,'Hathor',1,4),(205584,172069,'Thoth',2,5),(205584,118,'Ra',2,6),(205584,1036288,'Anat',1,7),(205584,29092,'Osiris',2,8),(205584,105838,'Nephthys',1,9),(205584,61784,'Anubis',0,10),(205584,57830,'Isis',1,11),(205584,936397,'Sphinx',0,12),(205584,17328,'Urshu',2,13),(205584,27752,'Head Judge',2,14),(205584,1535060,'Anat',0,15),(205584,1527210,'Mnevis',2,16),(205584,1244796,'Young Maidservant',0,17),(205584,1535047,'Urshu Guard',0,18),(205584,75893,'Sharifa',1,19),(205584,1535048,'Set Guard',0,20),(205584,6799,'High Priest (voice)',0,21),(205584,1535049,'Priest',0,22),(205584,1535050,'Musician',0,23),(205584,1535051,'Priest',0,24),(205584,1535052,'Fussy Older Maidservant',0,25),(205584,1535053,'Young Human Soldier',0,26),(205584,1535054,'Heliopolis survivor',0,27),(205584,1535055,'NobleMan',0,28),(205584,1272938,'Drummer',0,29),(205584,1535056,'Mortal',0,30),(205584,1535057,'Mortal Atmos',0,31),(205584,1535058,'Priest / MC',2,32),(205584,1535059,'Young Maidservant #2',0,33),(205584,1535061,'Wealthy Servant',0,34),(205584,1535062,'Mortal Man 1',0,35),(205584,1535063,'Mortal (uncredited)',0,36),(205584,1535064,'Soldier (uncredited)',0,37),(205584,1535065,'Army Warrior (uncredited)',0,38),(205584,1535066,'Soldier (uncredited)',0,39),(205584,1535067,'Survivor (uncredited)',0,40),(72559,18918,'Marvin Hinton / Roadblock',2,0),(72559,51976,'Dashiell Faireborn / Flint',2,1),(72559,88995,'Jaye Burnett / Lady Jaye',1,2),(72559,62,'Joe Colton',2,3),(72559,11007,'Snake Eyes',2,4),(72559,38673,'Conrad Hauser / Duke',2,5),(72559,25002,'Tommy Arashikage / Storm Shadow',2,6),(72559,78147,'Kim Arashikage / Jinx',1,7),(72559,56614,'Firefly',2,8),(72559,972356,'Rexford Lewis / Cobra Commander',2,9),(72559,378,'U.S. President',2,10),(72559,150,'Blind Master',2,11),(72559,16743,'Zartan',2,12),(72559,141762,'Chief of Staff',2,13),(72559,11827,'Stoop',2,14),(72559,1271445,'Chief Advisor',0,15),(72559,1576251,'Greeter',2,16),(72559,1110284,'First Son',2,17),(72559,1632933,'German Prison Guard (uncredited)',2,18),(72559,4787,'Mouse',2,19),(36643,517,'James Bond',2,0),(36643,1957,'Elektra King',1,1),(36643,18023,'Renard',2,2),(36643,9205,'Dr. Christmas Jones',1,3),(36643,1923,'Valentin Zukovsky',2,4),(36643,9906,'Q',2,5),(36643,8930,'R',0,6),(36643,10777,'Cigar Girl',1,7),(36643,10699,'Miss Moneypenny',1,8),(36643,10648,'Bill Tanner',2,9),(36643,5414,'Charles Robinson',2,10),(36643,10779,'Sir Robert King',2,11),(36643,10780,'Dr. Molly Warmflash',1,12),(36643,5309,'M',1,13),(36643,4455,'Davidov',2,14),(36643,5234,'Colonel Akakievich',2,15),(36643,8979,'Lachaise',2,16),(36643,41379,'Foreman',2,17),(36643,102761,'Dr. Arkov',0,18),(36643,132988,'Helicopter pilot',2,19),(50620,37917,'Isabella \'Bella\' Swan',1,0),(50620,11288,'Edward Cullen',2,1),(50620,84214,'Jacob Black',2,2),(50620,56857,'Carlisle Cullen',2,3),(50620,53755,'Esme Cullen',1,4),(50620,45827,'Alice Cullen',1,5),(50620,84215,'Jasper Hale',2,6),(50620,34502,'Emmett Cullen',2,7),(50620,59252,'Rosalie Hale',1,8),(50620,21029,'Charlie Swan',2,9),(50620,501,'Jane Volturi',1,10),(50620,83356,'Caius Volturi',2,11),(50620,11825,'Irina Denali',1,12),(50620,851784,'Renesmee Cullen',1,13),(50620,3968,'Aro Volturi',2,14),(50620,52414,'Alec Volturi',2,15),(50620,84219,'Sam Uley',2,16),(50620,57578,'Tanya Denali',1,17),(50620,32887,'Marcus Volturi',2,18),(50620,87310,'Leah Clearwater',1,19),(50620,121868,'Seth Clearwater',0,20),(50620,106949,'Sasha Denali',1,21),(50620,122029,'Eleazar Denali',2,22),(50620,84222,'Felix Volturi',2,23),(50620,183820,'Stefan',0,24),(50620,72095,'Garrett',2,25),(50620,17838,'Benjamin',2,26),(50620,208944,'Kate Denali',1,27),(50620,29234,'Alistair',2,28),(50620,85143,'Tia',1,29),(50620,1181426,'Charlotte',0,30),(50620,80352,'Vladimir',2,31),(50620,1655017,'Quil Ateara',2,32),(50620,123812,'Santiago Volturi',0,33),(50620,84221,'Demetri Volturi',0,34),(50620,1677390,'Vasilii Denali',0,35),(50620,6859,'Carmen Denali',0,36),(50620,17859,'J. Jenks',2,37),(50620,41309,'Amun',2,38),(50620,1218115,'Kebi',0,39),(50620,101061,'Zafrina',0,40),(50620,92783,'Senna',1,41),(50620,76022,'Liam',0,42),(50620,44238,'Siobhan',1,43),(50620,1158415,'Maggie',0,44),(50620,105831,'Mary',1,45),(50620,1266844,'Peter',0,46),(50620,1677391,'Henri',0,47),(50620,1677392,'Yvette',0,48),(50620,97552,'Toshiro',0,49),(50620,173866,'Sue Clearwater',1,50),(50620,1677393,'Nahuel',0,51),(50620,1416619,'Huilen',0,52),(50620,1212192,'Randall',0,53),(50620,1714286,'Sulpicia Volturi',0,54),(50620,521961,'Athenodora Volturi',1,55),(65759,109,'Mumble (voice)',2,0),(65759,2157,'Ramon / Lovelace (voice)',2,1),(65759,77271,'Gloria (voice)',1,2),(65759,15274,'Erik (voice)',1,3),(65759,59783,'Lombardo (voice)',2,4),(65759,4992,'Raul (voice)',2,5),(65759,63522,'Carmen (voice)',1,6),(65759,4238,'Seymour (voice)',0,7),(65759,1331,'Noah the Elder (voice)',2,8),(65759,287,'Will the Krill (voice)',2,9),(65759,1892,'Bill the Krill (voice)',2,10),(65759,59784,'Nestor (voice)',2,11),(65759,59782,'Rinaldo (voice)',2,12),(65759,1340664,'Erik (voice)',1,13),(65759,1335308,'Atticus (voice)',2,14),(65759,1445416,'Bo (voice)',0,15),(65759,45586,'Miss Viola (voice)',1,16),(65759,5587,'The Mighty Sven (voice)',2,17),(65759,44838,'Bryan the Beachmaster (voice)',2,18),(65759,1445417,'Wayne the Challenger / Francesco / Eggbert / Leopard Seal (voice)',2,19),(65759,1445418,'Weaner Pup (voice)',0,20),(65759,1445419,'Weaner Pup (voice)',0,21),(65759,57829,'The Alpha Skua (voice)',2,22),(65759,52699,'Brokebeak (voice)',2,23),(65759,1026727,'Adelie Chica (voice)',0,31),(65759,1415835,'Bollywood Indian Penguin (voice)',0,55),(267935,1425420,'Sophie',1,0),(267935,40900,'The BFG',2,1),(267935,15556,'Mary',1,2),(267935,55936,'Fleshlumpeater',0,3),(267935,19278,'Bloodbottler',2,4),(267935,1249,'The Queen',1,5),(267935,143307,'Matron',0,6),(267935,198615,'General #1',2,7),(267935,40009,'General #2',2,8),(267935,1497865,'General #3',0,9),(267935,28847,'Mr. Tibbs',2,10),(267935,105864,'Danish Father',0,11),(267935,1182657,'Footman #1',2,12),(267935,23429,'Manhugger / Lout #1',2,13),(267935,61187,'Bonecruncher / Lout #2',2,14),(267935,1476033,'Meatdripper / Lout #3',2,15),(267935,1577027,'The BFG',2,16),(267935,110902,'Maidmasher / Cook',2,17),(267935,63566,'Butcher Boy / Danish Driver',2,18),(267935,58804,'Cook',1,19),(267935,1709466,'Orphan Girl #1 / Sophie Understudy',1,20),(267935,1622128,'Orphan Girl #2',0,21),(267935,1359461,'Palace Guardsman',0,22),(281957,6193,'Hugh Glass',2,0),(281957,2524,'John Fitzgerald',2,1),(281957,93491,'Jim Bridger',2,2),(281957,93210,'Captain Andrew Henry',2,3),(281957,220448,'Anderson',2,4),(281957,1126405,'Johnnie',2,5),(281957,7742,'Murphy',2,6),(281957,526,'Jones',2,7),(281957,32205,'Fryman',2,8),(281957,1099848,'Stubby Bill',0,9),(281957,77315,'Dave Chapman',2,10),(281957,1554188,'Hugh Glass\' Wife',1,11),(281957,1388529,'Gordon in Shack',0,12),(281957,1558276,'Trapper Hatchet in Back',0,13),(281957,1560185,'Hawk',0,14),(281957,117428,'Elk Dog',0,15),(281957,1839463,'Hikuc',0,16),(281957,982065,'French Trapper #1',2,17),(281957,123926,'French-canadian man',2,18),(77950,10859,'Turbo (voice)',2,0),(77950,13242,'Chet (voice)',2,1),(77950,454,'Tito (voice)',2,2),(77950,2231,'Whiplash (voice)',2,3),(77950,40481,'Angelo (voice)',2,4),(77950,19278,'Guy Gagnu00e9 (voice)',2,5),(77950,19767,'Smoove Move (voice)',2,6),(77950,52792,'Burn (voice)',1,7),(77950,222121,'Skid Mark (voice)',2,8),(77950,28633,'Bobby (voice)',2,9),(77950,83586,'Kim-Ly (voice)',2,10),(77950,17647,'Paz (voice)',1,11),(44896,85,'Rango (voice)',2,0),(44896,52848,'Beans (Voice)',1,1),(44896,13726,'Tortoise John (voice)',2,2),(44896,2440,'Rattlesnake Jake (voice)',2,3),(44896,658,'Roadkill (Voice)',2,4),(44896,17140,'Priscilla (Voice)',1,5),(44896,26054,'Angelique (voice)',1,6),(44896,18082,'The Spirit of the West (voice)',2,7),(44896,5538,'Bad Bill (voice)',2,8),(44896,17401,'Doc / Merrimack / Mr. Snuggles (voice)',2,9),(44896,5048,'Balthazar (voice)',2,10),(44896,11764,'Ambrose (voice)',2,11),(44896,84225,'Wounded Bird (voice)',2,12),(44896,146439,'Waffles / Gordy / Papa Joad / Cousin Murt / Curlie / Knife Attacker / Rodent Kid (voice)',2,13),(44896,21485,'Buford (voice)',0,14),(44896,15318,'Sod Buster (voice)',2,15),(44896,5151,'Bonnie (voice)',1,16),(270946,18864,'Skipper (voice)',2,0),(270946,12098,'Kowalski (voice)',2,1),(270946,12097,'Private (voice)',2,2),(270946,12080,'Rico (voice)',2,3),(270946,6949,'Dave (voice)',2,4),(270946,71580,'Classified (voice)',2,5),(270946,83586,'Short Fuse (voice)',2,6),(270946,1257563,'Eva (voice)',0,7),(270946,53,'Corporal (voice)',2,8),(270946,28637,'Mort (voice)',2,9),(270946,62389,'King Julien',2,10),(270946,6818,'Documentary Filmmaker (voice)',2,11),(270946,1521078,'Cricket (voice)',0,12),(270946,973651,'New York Reporter (voice)',0,13),(270946,1448984,'Pilot / Aquarium Employee (voice)',0,14),(270946,1340664,'Girl at Zoo (voice)',1,15),(102899,22226,'Scott Lang / Ant-Man',2,0),(102899,3392,'Dr. Hank Pym',2,1),(102899,19034,'Hope van Dyne',1,2),(102899,74541,'Darren Cross / Yellowjacket',2,3),(102899,21127,'Paxton',2,4),(102899,454,'Luis',2,5),(102899,76126,'Dave',0,6),(102899,53650,'Sam Wilson / Falcon',2,7),(102899,65829,'Gale',2,8),(102899,20750,'Maggie Lang',1,9),(102899,1360010,'Cassie Lang',0,10),(102899,83854,'Kurt',2,11),(102899,42993,'Mitchell Carson',2,12),(102899,39459,'Peggy Carter',1,13),(102899,21134,'Howard Stark',2,14),(102899,83187,'Car Driver',2,15),(102899,1224999,'Dale',0,16),(102899,1220103,'Hydra Buyer',0,17),(102899,141762,'Frank',2,18),(102899,51302,'Buyer',2,19),(102899,26495,'Buyer',1,20),(102899,1224311,'Young Pym',0,21),(102899,1156046,'Janet van Dyne / The Wasp',0,22),(102899,1181556,'Spanish Woman',0,23),(102899,1502943,'Young Daughter',0,24),(102899,1502944,'Raver',0,25),(102899,1382011,'Raver',0,26),(102899,1502945,'Raver',2,27),(102899,1502946,'Raver',0,28),(102899,112546,'Pool BBQ Dad',0,29),(102899,971519,'Pool BBQ Mom',1,30),(102899,1502947,'Pool BBQ Kid',2,31),(102899,1502948,'Pool BBQ Kid',0,32),(102899,78885,'Pym Tech Gate Guard',0,33),(102899,558899,'Pym Tech Security Guard',0,34),(102899,1187061,'PYM Tech Security Guard',0,35),(102899,1502949,'EMT',0,36),(102899,210842,'Gorgeous Blonde',0,37),(102899,52483,'Superior Officer',2,38),(102899,1060081,'Ice Cream Store Customer',2,39),(102899,1502950,'Ernesto',0,40),(102899,1502951,'Carlos',0,41),(102899,1502952,'Emily',0,42),(102899,1502953,'Peachy',0,43),(102899,1209727,'Cop on Speaker',2,44),(102899,1363395,'Alpha Guard',0,45),(102899,186573,'Beta Guard',2,46),(102899,1502954,'Vault Guard',0,47),(102899,1502955,'Vault Guard',0,48),(102899,1502956,'Armed Guard',0,49),(102899,1502957,'Armed Guard',0,50),(102899,1291797,'Armed Guard',0,51),(102899,1463672,'Armed Guard',0,52),(102899,1502958,'Armed Guard',0,53),(102899,210312,'Lab Guard',2,54),(102899,1445583,'Lab Guard',0,55),(102899,237163,'Lab Guard',0,56),(102899,1545551,'Lab Guard',0,57),(102899,1502963,'Lab Tech',0,58),(102899,549524,'Ignacio',0,59),(102899,1267375,'Writer',1,60),(102899,7624,'Bartender',2,61),(102899,78798,'Hideous Rabbit (voice)',2,62),(102899,81687,'Helicopter Pilot',2,63),(102899,1348580,'Helicopter Pilot',0,64),(101299,72129,'Katniss Everdeen',1,0),(101299,27972,'Peeta Mellark',2,1),(101299,96066,'Gale Hawthorne',2,2),(101299,57755,'Haymitch Abernathy',2,3),(101299,9281,'Effie Trinket',1,4),(101299,77069,'Cinna',2,5),(101299,1233,'Plutarch Heavensbee',2,6),(101299,2954,'Beetee',2,7),(101299,2283,'Caeser Flickerman',2,8),(101299,55636,'President Snow',2,9),(101299,13014,'Claudius Templesmith',2,10),(101299,530025,'Primrose Everdeen',1,11),(101299,237455,'Finnick Odair',2,12),(101299,8792,'Mags',1,13),(101299,20089,'Johanna Mason',1,14),(101299,99,'Wiress',1,15),(101299,1030513,'Marvel',2,16),(101299,1382356,'Ripper',1,17),(101299,427,'Greasy Sae',1,18),(101299,47533,'Katniss\' Mother',1,19),(101299,1090027,'Octavia',1,20),(101299,197350,'Flavius',2,21),(101299,37825,'District 11 Mayor',2,22),(101299,1292489,'Rue\'s Aunt',0,23),(101299,1546955,'Thresh\'s Grandmother',1,24),(101299,80770,'Old Man',2,25),(101299,1546956,'Flower Girl',0,26),(101299,1383509,'Snow\'s Granddaughter',0,27),(101299,41019,'Cray',2,28),(101299,117437,'Commander Thread',0,29),(101299,196843,'Old Lady',1,30),(101299,1243337,'Presidential Guard',0,31),(101299,64295,'Gloss',2,32),(101299,1086221,'Cashmere',0,33),(101299,165242,'Enobaria',1,34),(101299,1337049,'Female Morphling',0,35),(101299,1085158,'Annie Cresta',1,36),(101299,1444823,'District 5 Male Tribute',0,37),(101299,41020,'Chaff',2,38),(101299,1086222,'Brutus',2,39),(101299,80616,'Seeder',1,40),(101299,990136,'Hovercraft Peacekeeper',2,41),(101299,1165616,'Cecelia',1,42),(101299,1236043,'Woof',2,43),(101299,1456721,'Disctrict 9 Female Tribute',1,44),(101299,9452,'Disctrict 9 Male Tribute',0,45),(101299,1271445,'Operator #1',0,46),(101299,1416333,'Operator #2',0,47),(101299,1669953,'Capitol Aristocrat (uncredited)',1,48),(101299,1279699,'Capital Aristocrat (uncredited)',2,49),(101299,1502253,'Trainer (uncredited)',0,50),(101299,1768845,'District II Citizen (uncredited)',1,51),(228161,5374,'Oh (voice)',2,0),(228161,131519,'Gratuity \'Tip\' Tucci (voice)',1,1),(228161,67773,'Capitain Smek (voice)',2,2),(228161,16866,'Lucy Tucci (voice)',1,3),(228161,191202,'Kyle (voice)',2,4),(228161,146391,'Gorg Commander / Father (voice)',2,5),(228161,1364660,'Boov Announcer (voice)',0,6),(228161,1448984,'Boov (voice)',0,7),(228161,146391,'Boov (voice)',2,8),(228161,1490591,'Boov (voice)',0,9),(228161,60741,'Boov (voice)',0,10),(417859,3131,'Puss in Boots (voice)',2,0),(417859,3136,'Kitty Softpaws (voice)',1,1),(417859,58225,'Humpty Dumpty (voice)',2,2),(417859,879,'Jack (voice)',2,3),(417859,12110,'Jill (voice)',1,4),(417859,10828,'Comandante / Hombre del bigote (voice)',2,5),(417859,92326,'Imelda (voice)',1,6),(417859,64151,'Andy Beanstalk (voice)',2,7),(417859,936666,'Bounty Hunter (voice)',2,8),(417859,936667,'Luis (voice)',2,9),(417859,936668,'Bartender / Mean Boy / Wagon Driver / Hotel Owner / Rodrigo (voice)',2,10),(417859,12080,'Raoul / Soldier (voice)',2,11),(417859,18864,'Bar Thief (voice)',2,12),(417859,179702,'Giuseppe (voice)',2,13),(417859,936669,'Crazy Woman / Mean Girl / Milk Lady / Little Boy (voice)',1,14),(417859,1542277,'Ohhh Cat (voice)',0,15),(417859,12098,'Little Boy Blue / Friar Miller / Prison Guard / Manuel / Rafael (voice)',2,16),(417859,936672,'Estella Maria (voice)',0,17),(417859,936674,'Ivana / Charo (voice)',0,18),(417859,1784358,'Soldier (voice) (uncredited)',0,19),(417859,1744998,'Various Cats (voice) (uncredited)',1,20),(417859,1445775,'Various (voice) (uncredited)',0,21),(417859,1228821,'Additional Voices (voice) (uncredited)',0,22),(417859,212184,'Additional Voices (voice) (uncredited)',2,23),(417859,191186,'Various Cats (voice) (uncredited)',0,24),(86834,934,'Noah',2,0),(86834,6161,'Naameh',1,1),(86834,10990,'Ila',1,2),(86834,33235,'Ham',2,3),(86834,4173,'Methuselah',2,4),(86834,5538,'Tubal Cain',2,5),(86834,79072,'Og',2,6),(86834,1274232,'Eve',0,7),(86834,230680,'Shem',2,8),(86834,20982,'Lamech',2,9),(86834,234479,'Young Noah',2,10),(86834,183538,'Poacher Leader',0,11),(86834,506085,'Sami',1,12),(86834,1173,'Magog (voice)',2,13),(86834,1733,'Samyaza (voice)',2,14),(86834,52869,'Na\'el',1,15),(86834,168877,'Young Tubal Cain',2,16),(86834,1580674,'Laughing Poacher',2,17),(82700,120724,'Kitai Raige',2,0),(82700,2888,'Cypher Raige',2,1),(82700,2598,'Faia Raige',1,2),(82700,37153,'Senshi Raige',1,3),(82700,12797,'Commander Velan',2,4),(82700,62879,'Hesper Navigator',2,5),(82700,142193,'Veteran Ranger',2,6),(82700,62562,'Private McQuarrie',2,7),(82700,94798,'Running Cadet',2,8),(82700,1272929,'Nine Year Old Kitai',0,9),(82700,1272930,'Three Year Old Kitai',2,10),(82700,1172862,'Female Ranger',0,11),(82700,571418,'Security Chief',2,12),(82700,55472,'Hesper Pilot',2,13),(82700,1649198,'Flirting Cadet',2,14),(82700,77517,'Rayna (uncredited)',1,15),(82700,49921,'Ranger Instructor (uncredited)',2,16),(82700,1343242,'Park Ranger (uncredited)',1,17),(82700,727467,'Psychiatrist (uncredited)',1,18),(181533,7399,'Larry Daley',2,0),(181533,17838,'Ahkmenrah',2,1),(181533,221581,'Tilly',1,2),(181533,2157,'Theodore Roosevelt',2,3),(181533,887,'Jedediah Smith',2,4),(181533,61303,'Cecil',2,5),(181533,46074,'Madeline Phelps',1,6),(181533,2282,'Merenkahre',2,7),(181533,17835,'Dr. McPhee',2,8),(181533,1937,'Gus',0,9),(181533,221018,'Sir Lancelot',2,10),(181533,61263,'Nick Daley',2,11),(181533,17841,'Sacajawea',1,12),(181533,8854,'Reginald',2,13),(181533,43458,'Robert Fredericks',2,14),(181533,4581,'Octavius',2,15),(181533,17837,'Attila the Hun',2,16),(181533,8263,'Rose (Archivist)',1,17),(181533,59860,'Herself',1,18),(181533,6968,'Himself',2,19),(181533,1428580,'Dexter',0,20),(181533,87816,'Shepseheret',1,21),(181533,1683958,'Augustus Caesar (uncredited)',2,23),(181533,18,'Easter Island Head (voice)',2,24),(181533,1728454,'New York Reporter (voice)',0,25),(181533,40009,'Archibald Stanley',2,26),(38055,23659,'Megamind (voice)',2,0),(38055,287,'Metro Man (voice)',2,1),(38055,56323,'Roxanne Ritchi (voice)',1,2),(38055,21007,'Titan (voice)',2,3),(38055,212,'Minion (voice)',2,4),(38055,7399,'Bernard (voice)',2,5),(38055,15009,'Megaminds\'s Father (voice)',2,6),(38055,936672,'Megamind\'s Mother (voice)',0,7),(38055,18864,'Lord Scott / Prison Guard (voice)',2,8),(38055,1364656,'Lady Scott (voice)',0,9),(38055,18999,'Warden (voice)',2,10),(38055,1454400,'Schoolchild (voice)',0,11),(38055,1077795,'Schoolchild (voice)',0,12),(38055,1454420,'Prisoner (voice)',0,13),(38055,12097,'Prison Guard (voice)',2,14),(38055,64151,'Father in Crowd (voice)',2,15),(38055,1454441,'Crying Baby (voice)',0,16),(38055,15033,'Minions (voice)',2,17),(38055,19278,'Bob Prickles (voice)',2,18),(38055,56322,'Linda Prickles (voice)',1,19),(38055,52997,'Random Citizen (voice)',2,20),(38055,102336,'Newscaster (voice)',2,21),(38055,1448984,'Mayor (voice)',0,22),(49524,1229,'Roy Pulsipher',2,0),(49524,10859,'Nick Walker',2,1),(49524,4724,'Bobby Hayes',2,2),(49524,121953,'Julia',1,3),(49524,18248,'Proctor',1,4),(49524,209197,'Roy\'s Avatar',1,5),(49524,17343,'Nawlicki',2,6),(49524,20904,'Nick\'s Avatar / Jerry Chen',2,7),(49524,87192,'Elliot',2,8),(49524,11516,'Pulaski',2,9),(49524,1186622,'Goth Chick',0,10),(49524,92877,'Female TV Reporter',1,11),(49524,118590,'Murphy',2,12),(49524,112266,'Office Girl',1,13),(49524,1592996,'Detective in Locker Room',2,14),(49524,1592999,'R.I.P.D. Evidence Clerk',1,15),(49524,1593000,'R.I.P.D. Evidence Clerk',2,16),(49524,188049,'Proctor\'s Avatar',2,17),(49524,84849,'Nick\'s New Avatar',1,18),(49524,1593004,'Clerk in VCR Repair Shop',2,19),(49524,1558766,'Executive',2,20),(49524,1593005,'Executive',2,21),(49524,1291696,'Jersey Deado',2,22),(49524,1452764,'Multi-Armed Deado',2,23),(49524,1263937,'Driving Deado',0,24),(49524,1183867,'Female Cop',0,25),(49524,9466,'Male Cop',2,26),(49524,58510,'Newscaster in Helicopter',2,27),(49524,1373307,'R.I.P.D. \'70s Cop',0,28),(49524,1593121,'R.I.P.D. Cop',2,29),(49524,1579759,'Deado #8 (uncredited)',2,30),(49524,1259597,'Driver (uncredited)',1,31),(49524,1593122,'Red Sox Fan (uncredited)',1,32),(49524,1674426,'1970\'s Detective',2,33),(49524,1198454,'Cop #7 (uncredited)',2,34),(131631,72129,'Katniss Everdeen',1,0),(131631,27972,'Peeta Mellark',2,1),(131631,96066,'Gale Hawthorne',2,2),(131631,57755,'Haymitch Abernathy',2,3),(131631,55636,'President Snow',2,4),(131631,1233,'Plutarch Heavensbee',2,5),(131631,1231,'President Alma Coin',1,6),(131631,530025,'Primrose Everdeen',1,7),(131631,237455,'Finnick Odair',2,8),(131631,9281,'Effie Trinket',1,9),(131631,932967,'Boggs',2,10),(131631,20089,'Johanna Mason',1,11),(131631,2954,'Beetee',2,12),(131631,47533,'Katniss\' Mother',1,13),(131631,2283,'Caesar Flickerman',2,14),(131631,58502,'Cressida',1,15),(131631,94103,'Messalla',2,16),(131631,20220,'Pollux',2,17),(131631,51682,'Castor',2,18),(131631,20275,'Egeria',1,19),(131631,1085158,'Annie Cresta',1,20),(131631,1366702,'Commander Paylor',1,21),(131631,17343,'Antonius',2,22),(131631,1435440,'D8 Another Patient',1,23),(131631,1435442,'D8 Female Patient',1,24),(131631,13028,'D8 Male Patient',2,25),(131631,582892,'D8 Old Woman',0,26),(131631,1383546,'Eddy',0,27),(131631,1383509,'Snow\'s Granddaughter',0,28),(131631,1435432,'District 13 Engineer',0,29),(131631,52483,'D13 Systems Operator',2,30),(131631,155077,'D13 Systems Operator #2',2,31),(131631,1669939,'D13 Systems Operator #3',1,32),(131631,1383482,'District 13 Citizen',1,33),(131631,1383552,'District 13 Citizen',2,34),(131631,1375356,'Snow\'s Stylist #1',0,35),(131631,1785980,'Orderly',0,36),(131631,1542923,'Rescue Hovercraft Pilot',1,37),(131631,1785995,'Pilot',0,38),(131631,1383549,'President Snow\'s Security (uncredited)',0,39),(131631,1568703,'Stair Runner District 13 (uncredited)',1,40),(131631,1669940,'District 8 Hospital Patient (uncredited)',1,41),(131631,1163715,'District 13 Citizen (uncredited)',0,42),(131631,1669941,'District 13 (uncredited)',1,43),(131631,1669949,'District 13 Citizen (uncredited)',1,44),(131631,1669953,'District 13 Citizen (uncredited)',1,45),(131631,1383491,'District 13 Citizen (uncredited)',1,46),(131631,1786007,'District 13 Citizen (uncredited)',0,47),(131631,1528216,'District 5 Rebel (uncredited)',2,48),(131631,1785996,'Peacekeeper (uncredited)',0,49),(131631,1383478,'Peacekeeper (uncredited)',0,50),(131631,1383548,'Peacekeeper (uncredited)',0,51),(131631,1383551,'Beetee\'s Technician (uncredited)',0,52),(131631,1812341,'District 8 Rebel (uncredited)',0,53),(172385,44735,'Blu (voice)',2,0),(172385,1813,'Jewel (voice)',1,1),(172385,41087,'Linda (voice)',1,2),(172385,134,'Nico (voice)',2,3),(172385,1271,'Eduardo (voice)',2,4),(172385,969218,'Roberto (voice)',2,5),(172385,55936,'Nigel (voice)',0,6),(172385,17289,'Tulio (voice)',2,7),(172385,60255,'Fernando (voice)',2,8),(172385,561869,'Bia (voice)',1,9),(172385,992427,'Tiago (voice)',2,10),(172385,13299,'Aunt Mimi (voice)',1,11),(172385,52775,'Gabi (voice)',1,12),(172385,56903,'Luiz (voice)',2,13),(172385,82092,'Pedro (voice)',2,14),(172385,41798,'Rafael (voice)',2,15),(172385,1335646,'Carla (voice)',1,16),(172385,1335647,'Eva (voice)',0,17),(172385,1178792,'Old Bird (voice)',0,18),(172385,118752,'Newscaster (voice)',1,19),(172385,1005852,'Dr. Monae (voice)',1,20),(36658,2387,'Charles Xavier / Professor X',2,0),(36658,6968,'Logan / Wolverine',2,1),(36658,1327,'Eric Lensherr / Magneto',2,2),(36658,4587,'Ororo Munroe / Storm',1,3),(36658,10696,'Jean Grey / Phoenix',1,4),(36658,11006,'Scott Summers / Cyclops',2,5),(36658,11008,'Raven Darkholme / Mystique',1,6),(36658,1248,'William Stryker',2,7),(36658,10697,'Kurt Wagner / Nightcrawler',2,8),(36658,52374,'Senator Kelly',2,9),(36658,11024,'Yuriko Oyama / Lady Deathstrike',1,10),(36658,10690,'Marie D\'Ancanto / Rogue',1,11),(36658,11023,'Bobby Drake / Iceman',2,12),(36658,11022,'John Allerdyce / Pyro',2,13),(36658,64470,'Katherine Kitty Pryde / Shadowcat',1,14),(36658,115857,'Jubilee',1,15),(36658,172793,'Artie',0,16),(36658,941988,'Theresa Cassidy / Siryn',0,17),(36658,174037,'Jason 143',0,18),(36658,232596,'Douglas Ramsey / Cypher',2,20),(36658,84222,'Piotr Rasputin / Colossus',2,21),(36658,11012,'Surgeon',2,22),(36658,11013,'Surgeon',2,23),(36658,9032,'Prison Security Officer (uncredited)',2,24),(36658,115858,'President McKenna',2,25),(36658,33053,'White House Tour Guide',1,26),(36658,80353,'News Reporter',2,27),(36658,77222,'Stryker Soldier #1',2,28),(36658,25877,'Oval Office Agent Cartwright',2,29),(36658,82819,'Captured X-Kid',2,30),(36658,33355,'Dr. Hank McCoy',2,31),(51497,12835,'Dominic Toretto',2,0),(51497,8167,'Brian O\'Conner',2,1),(51497,22123,'Mia Toretto',1,2),(51497,8169,'Roman Pearce',2,3),(51497,8171,'Tej Parker',2,4),(51497,31841,'Vince',2,5),(51497,61697,'Han Seoul-Oh',2,6),(51497,90633,'Gisele Yashar',1,7),(51497,96321,'Tego Leo',2,8),(51497,90634,'Rico Santos',0,9),(51497,22462,'Hernan Reyes',2,10),(51497,18918,'Luke Hobbs',2,11),(51497,73269,'Elena Neves',1,12),(51497,124304,'Zizi',2,13),(51497,216782,'Wilkes (as Fernando F. Chien)',2,14),(51497,165284,'Fusco',2,15),(51497,21051,'Chato',2,16),(51497,86204,'Macroy',2,17),(51497,1014572,'Chief of Police Alemeida',2,18),(51497,1093706,'Rosa',0,19),(51497,80242,'Capa',0,20),(51497,60653,'Berto',0,21),(51497,147207,'Lanzo (as Corey Eubanks)',2,22),(51497,37149,'Diogo (as Luis DaSilva)',2,23),(51497,979307,'Cash House Door Guard',2,24),(51497,170653,'Evidence Technician',2,25),(51497,1093707,'Lead DEA Agent (as Ben Blankenship)',0,26),(51497,1077794,'Conductor',0,27),(51497,1093708,'Croupier',0,28),(51497,1093709,'Field Reporter',0,29),(51497,986813,'Field Reporter',1,30),(51497,79086,'News Anchor',2,31),(51497,156131,'News Anchor',1,32),(51497,1093710,'News Anchor',0,33),(51497,8170,'Monica Fuentes (uncredited)',1,34),(51497,17647,'Letty Ortiz (uncredited)',1,35),(58574,3223,'Sherlock Holmes',2,0),(58574,9642,'Dr. John Watson',2,1),(58574,15440,'Professor James Moriarty',2,2),(58574,87722,'Madam Simza Heron',1,3),(58574,17521,'Mary Morstan',1,4),(58574,11855,'Mrs. Hudson',1,5),(58574,1665,'Inspector Lestrade',2,6),(58574,11275,'Mycroft Holmes',2,7),(58574,84865,'Clarky',2,8),(58574,54807,'Tamas',2,9),(58574,220448,'Colonel Sebastian Moran',2,10),(58574,659,'Doctor Hoffmanstahl',2,11),(58574,71584,'Auctioneer',0,13),(58574,1053673,'Carruthers',2,14),(58574,1097455,'Shush Club Maitre D\'',0,15),(58574,1086530,'Shush Club Maitre D\'',1,16),(58574,1097456,'Businessman',0,17),(58574,1075103,'Hashisheen',0,18),(58574,1097457,'Cock Fight Referee',0,19),(58574,105510,'University Student',2,20),(58574,53714,'Irene Adler',1,21),(58574,83813,'Claude Ravache',2,22),(58574,1280233,'Rene Heron',2,23),(58574,40664,'Ballroom Photographer',0,24),(58574,19901,'Captain Tanner',2,25),(49040,17604,'Aaron Cross',2,0),(49040,3293,'Dr. Marta Shearing',1,1),(49040,819,'Byer',2,2),(49040,349,'Ezra Kramer',2,3),(49040,825,'Turso',2,4),(49040,11148,'Pamela Landy',1,5),(49040,2517,'Dita Mandy',1,6),(49040,3926,'Dr. Albert Hirsch',0,7),(49040,87070,'Arthur Ingram',2,8),(49040,25072,'#3',2,9),(49040,74541,'Vendel',2,10),(49040,11064,'Noah Vosen',2,11),(49040,20582,'Larry Hooper',2,12),(49040,118937,'Ward',2,13),(49040,1030256,'Candent Woman #2',0,14),(49040,113308,'LARX #3',2,15),(49040,17199,'Ray Wills',0,16),(49040,1077345,'Outcome #4',1,17),(49040,126713,'Dr. Connie Dowd',1,18),(49040,74245,'Mackie',2,19),(49040,156729,'Mrs. Yun',1,20),(49040,1089770,'Outcome #6',0,21),(49040,6752,'Dr. Donald Foite',2,22),(49040,1156086,'boatman',0,23),(49040,1348735,'Philippine Pharmacist',0,24),(49040,1355389,'Landlady',0,25),(49040,1389117,'TV Mom',0,26),(49040,278923,'Citrus Samaritan',2,27),(49040,625924,'Joseph',2,28),(49040,1454098,'TSA Guard',0,29),(49040,78520,'C-Team',0,30),(87827,933160,'Pi Patel (16 / 17 Years)',2,0),(87827,76793,'Pi Patel (Adult)',2,1),(87827,935504,'Pi Patel (11 / 12 Years)',2,2),(87827,1133846,'Pi Patel (5 Years)',2,3),(87827,227849,'Santosh Patel',2,4),(87827,55062,'Gita Patel',1,5),(87827,1377778,'Ravi Patel (7 Years)',0,6),(87827,1133848,'Ravi Patel ( 13/ 14 years)',2,7),(87827,1133849,'Ravi Patel (18/19 years)',2,8),(87827,28847,'Writer',2,9),(87827,16927,'Cook',2,10),(87827,77155,'Older Insurance Investigator',2,11),(87827,121702,'Younger Insurance Investigator',2,12),(87827,40541,'Priest',1,13),(87827,1271647,'Anandi',0,14),(87827,1271648,'Mamaji',0,15),(87827,1271649,'Dance Master',0,16),(87827,1271650,'Science Teacher',0,17),(87827,1271651,'Indian History Teacher',0,18),(87827,1271652,'Librarian',0,19),(87827,966327,'Buddhist Sailor',0,20),(324668,1892,'Jason Bourne',2,0),(324668,227454,'Heather Lee',1,1),(324668,2176,'Robert Dewey',2,2),(324668,1925,'Asset',2,3),(324668,12041,'Nicky Parsons',1,4),(324668,53240,'Aaron Kalloor',2,5),(324668,5377,'Craig Jeffers',2,6),(324668,1475960,'Director NI Edwin Russell',0,7),(324668,121718,'Malcolm Smith',2,8),(324668,19895,'Christian Dassault',0,9),(324668,79991,'Baumen',2,10),(324668,1658928,'Greek Van Driver',0,11),(324668,1658929,'Hacker',1,12),(324668,1770306,'Lead Hub Tech',0,13),(324668,1658930,'Cyber Hub Tech',1,14),(324668,1658931,'Athens Alpha Agent',0,15),(324668,2518,'Richard Webb',2,16),(324668,1752852,'Hub Tech',0,17),(324668,1188325,'Hub Tech',1,18),(324668,1322309,'Hub Tech',0,19),(324668,1752858,'Hub Tech',0,20),(324668,1394374,'Athens Bravo Agent',0,21),(324668,1752864,'Athens Bravo Agent',0,22),(324668,53963,'Government Lawyer',2,23),(324668,1623272,'London Alpha Agent',2,24),(324668,1356646,'London Bravo Agent',0,25),(324668,1752865,'Immigration Officer',0,26),(324668,1752866,'CIA Security Detail',0,27),(324668,1752867,'CIA Security Detail',0,28),(324668,1752868,'CIA Security Detail',0,29),(324668,1752869,'CIA Security Detail',0,30),(324668,1752871,'Las Vegas Event Organizer',0,31),(324668,1752872,'Las Vegas Hotel Receptionist',1,32),(324668,1752876,'Kalloor\'s Aria Security',0,33),(324668,1752877,'Loading Dock Security',0,34),(324668,1083451,'Bradley Samuels',0,35),(324668,1752879,'Dewey\'s CIA Agent',0,36),(324668,158484,'Senior Agent Collier',0,37),(324668,1752881,'Las Vegas Police',0,38),(324668,1517714,'Las Vegas Police',0,39),(324668,1752882,'Las Vegas Vendor',0,40),(324668,1752883,'Las Vegas Security Guard',0,41),(324668,1752884,'Conventioneer (uncredited)',0,42),(324668,1752885,'ExoCon Conventioneer (uncredited)',0,43),(324668,1752886,'ExoCon Conventioneer (uncredited)',0,44),(324668,1752887,'ExoCon Photographer / Conventioneer (uncredited)',0,45),(324668,1388891,'Japanese Hacker (uncredited)',2,46),(324668,1387728,'Tattoo (uncredited)',1,47),(324668,1752888,'Office Worker (uncredited)',0,48),(324668,1363049,'Conference Attendee (uncredited)',2,49),(324668,1743566,'Las Vegas Squatter (uncredited)',0,50),(324668,1752890,'Commuter (uncredited)',0,51),(324668,1735668,'CIA Agent (uncredited)',0,52),(324668,1743573,'City Worker (uncredited)',1,53),(324668,1743574,'CIA Agent (uncredited)',0,54),(324668,1748749,'Hotel Chef (uncredited)',0,55),(324668,1611966,'High Roller / Driver (uncredited)',0,56),(324668,1752894,'Cyber Technician (uncredited)',0,57),(324668,1752895,'Black Tie Guest (uncredited)',0,58),(324668,1752896,'Entourage (uncredited)',0,59),(324668,1752898,'Traveler (uncredited)',0,60),(324668,1752899,'Student (uncredited)',0,61),(324668,1752900,'ExoCon Conventioneer (uncredited)',0,62),(324668,1752902,'Conventioneer (uncredited)',1,63),(324668,1648194,'High Roller / Conventioneer (uncredited)',1,64),(324668,1508562,'Cyber Technician (uncredited)',0,65),(324668,1752903,'Casino Patron (uncredited)',1,66),(324668,1752904,'ExoCon Vendor / Conventioneer (uncredited)',1,67),(324668,1752905,'ExoCon Conventioneer (uncredited)',0,68),(324668,1379281,'City Worker (uncredited)',0,69),(324668,1752907,'CIA Hub Agent (uncredited)',0,70),(324668,1752908,'Police Officer (uncredited)',0,71),(324668,1752909,'Casino Patron (uncredited)',1,72),(324668,1743551,'ExoCon Conventioneer / Pedestrian (uncredited)',0,73),(324668,1554518,'Greek Demostrator (uncredited)',0,74),(324668,1359461,'City Worker (uncredited)',0,75),(324668,1752911,'Casino Patron / Pedestrian (uncredited)',1,76),(324668,1752914,'Amanda (Kalloor\'s Aide) (uncredited)',1,77),(324668,1752917,'ExoCon Conventioneer (uncredited)',1,78),(324668,1752921,'Bus Passenger (uncredited)',1,79),(324668,1752922,'Media Photographer (uncredited)',0,80),(324668,1502467,'Security gaurd (uncredited)',0,81),(324668,1262694,'Cab Driver (uncredited)',0,82),(324668,1743582,'Squatter / Cyberhub Hacker (uncredited)',0,83),(324668,1509622,'Las Vegas Cab Driver (uncredited)',2,84),(324668,1540283,'Business Woman (uncredited)',1,85),(324668,1752924,'Tourist (uncredited)',0,86),(324668,1752925,'Casino Guest & Black Tie (uncredited)',0,87),(324668,1588173,'Bare Knuckle Fight Spectator (uncredited)',0,88),(324668,1752927,'Conventioneer (uncredited)',0,89),(324668,1721609,'Tourist (uncredited)',0,90),(324668,1592480,'Bare Knuckle Fight Spectator (uncredited)',0,91),(324668,1634012,'Dream Staff (uncredited)',0,92),(324668,1752931,'Deep Dream Staff (uncredited)',0,93),(324668,1752932,'Officer Jones (uncredited)',1,94),(324668,1186597,'CIA Agent (uncredited)',1,95),(324668,1752934,'Airplane Passenger (uncredited)',0,96),(324668,1251820,'Restaurant Patron (uncredited)',0,97),(324668,1752935,'ExoCon Conventioneer (uncredited)',1,98),(324668,1503083,'Driver (uncredited)',0,99),(324668,1634030,'Jogger (uncredited)',2,100),(324668,1752941,'Flight Attendant (uncredited)',0,101),(324668,1651394,'Buinessman (uncredited)',0,102),(324668,1379282,'Businesswoman (uncredited)',1,103),(324668,1752944,'Casino Guest (uncredited)',0,104),(324668,1737052,'Conventioneer (uncredited)',0,105),(324668,1495694,'Business Woman (uncredited)',1,107),(324668,1752946,'ExoCon Conventioneer (uncredited)',1,108),(324668,1651390,'City Worker (uncredited)',0,109),(324668,1375518,'Cyberhub Tech (uncredited)',0,110),(324668,1752947,'Conventioneer (uncredited)',0,111),(324668,1461317,'Jogger (uncredited)',1,112),(324668,1682526,'Boy (uncredited)',2,113),(324668,1650200,'DC Pedestrian (uncredited)',0,114),(324668,1752951,'Athens Spectator (uncredited)',0,115),(324668,1502441,'City Worker (uncredited)',1,116),(324668,1752952,'Bare Knuckle Fight Spectator (uncredited)',0,117),(324668,1743613,'Slot Machine Player (uncredited)',0,118),(324668,1735653,'Pedestrian / Cafu00e9 Customer (uncredited)',1,119),(324668,1735664,'Businessman (uncredited)',0,120),(324668,1752953,'Las Vegas Squatter (uncredited)',0,121),(324668,1752954,'CFO\'s Personal Assistant (uncredited)',0,122),(324668,1752956,'Greek Protester (uncredited)',1,123),(324668,1752959,'Cyber Hub technician (uncredited)',0,124),(324668,1752961,'CIA Agent (uncredited)',0,125),(324668,1752962,'Conventioneer / Dishwasher (uncredited)',0,126),(324668,1545371,'SWAT Leader (uncredited)',0,127),(324668,1752963,'Casino Patron (uncredited)',1,128),(324668,1752964,'Greek Protester (uncredited)',0,129),(324668,1555943,'City Worker (uncredited)',0,130),(324668,1752966,'Drone Operator (uncredited)',0,131),(324668,1752967,'Bare Knuckle Fight Spectator (uncredited)',0,132),(324668,1752968,'Boxing Spectator (uncredited)',0,133),(324668,1752969,'Exocon Attendee (uncredited)',2,134),(324668,1752971,'Press Member (uncredited)',1,135),(324668,1737059,'Casino Slots Changer (uncredited)',0,136),(324668,1752972,'Executive Assistant (Deep Dream) (uncredited)',1,137),(324668,1654736,'Greek Protestant (uncredited)',2,138),(324668,1577789,'Conference attendee (uncredited)',0,139),(324668,1752974,'ExoCon Conventioneer (uncredited)',0,140),(324668,1665308,'Casino Patron (uncredited)',0,141),(324668,1752975,'ExoCon Philanthropist (uncredited)',0,142),(324668,1752976,'Constitution Avenue businessman (uncredited)',0,143),(324668,1737061,'Casino Guest (uncredited)',0,144),(324668,1752977,'Conventioneer (uncredited)',1,145),(324668,1735657,'Paramedic (uncredited)',0,146),(324668,221433,'Athens Bravo Agent (uncredited)',0,147),(324668,1651374,'Entourage (uncredited)',0,148),(324668,1622606,'Conventioneer (uncredited)',1,149),(324668,1401842,'Pedestrian (uncredited)',1,150),(324668,1752984,'Restaurant Patron (uncredited)',0,151),(324668,1752985,'Hacker (uncredited)',0,152),(324668,1744090,'Businessman / City Worker (uncredited)',0,153),(324668,202930,'Cop 2 (uncredited)',2,154),(324668,1752986,'Casino Patron (uncredited)',0,155),(324668,1752987,'Sign Language Interpreter (uncredited)',0,156),(324668,1735658,'Passerby (uncredited)',0,157),(324668,1752988,'Conventioneer (uncredited)',0,158),(324668,1744094,'Tourist (uncredited)',1,159),(324668,1744095,'CIA Agent (uncredited)',1,160),(324668,1752989,'ExoCon Conventioneer (uncredited)',0,161),(324668,1752990,'Casino Patron (uncredited)',0,162),(324668,1713832,'Businessman (uncredited)',2,163),(324668,1737066,'Casino Guest (uncredited)',1,164),(324668,1752991,'Reporter / Rioter (uncredited)',0,165),(324668,1465273,'Exocon Conventioneer (uncredited)',1,166),(324668,1262695,'Police Officer (uncredited)',0,168),(324668,1514130,'Office Interior (uncredited)',0,169),(324668,1752995,'Casino Patron (uncredited)',0,170),(324668,1752996,'Convention Attendee (uncredited)',0,171),(324668,1752997,'CIA Worker (uncredited)',0,172),(324668,1752998,'Las Vegas Showgirl (uncredited)',0,173),(324668,1744101,'City Worker (uncredited)',0,174),(324668,1521962,'Goon (uncredited)',0,175),(324668,1265874,'Black Tie Guest (uncredited)',1,176),(324668,1611970,'ExoCon Conventioneer (uncredited)',0,177),(324668,1613246,'ExoCon Attendee (uncredited)',1,178),(324668,1753007,'ExoCon Conventioneer (uncredited)',0,179),(324668,1753008,'Hacker (uncredited)',0,180),(324668,1753011,'ExoCon Conventioneer (uncredited)',0,181),(324668,1753012,'Conventioneer (uncredited)',1,182),(324668,1753014,'Conference Attendee (uncredited)',1,183),(324668,1735671,'Fight Spectator (uncredited)',0,184),(324668,1753017,'Bus Passenger / Pedestrian (uncredited)',0,185),(324668,1657609,'Police Officer (uncredited)',0,186),(324668,1753019,'Tech Convention Participant (uncredited)',0,187),(324668,1753020,'Businesswoman (uncredited)',1,188),(324668,1753086,'Bare Knuckle Fight Punter (uncredited)',0,189),(324668,1753398,'Police Officer (uncredited)',0,190),(324668,1744116,'Casino Patron / Athens Protester (uncredited)',0,191),(324668,1753400,'Conventioneer (uncredited)',1,193),(324668,1753413,'Doctor (uncredited)',0,194),(324668,1753414,'ExoCon Goon (uncredited)',0,195),(324668,1394383,'CIA Agent (uncredited)',1,196),(324668,1548035,'Bare Knuckle Fight Punter (uncredited)',0,197),(324668,1753418,'CIA Agent (uncredited)',0,198),(324668,1431085,'Casino Guest (uncredited)',0,199),(324668,1744122,'Athenian Passerby (uncredited)',1,200),(324668,1753420,'Deep Dream Staff (uncredited)',0,201),(324668,1753421,'Casino Patron (uncredited)',0,202),(324668,1753422,'Cocktail Waitress (uncredited)',1,203),(324668,1634011,'DC Diner (uncredited)',1,204),(324668,1634022,'Secret Service (uncredited)',0,205),(324668,1753429,'Tech Convention Participant (uncredited)',0,206),(324668,1753430,'Deep Dream Staff (uncredited)',0,207),(324668,1753431,'Clean Cut Man (uncredited)',0,208),(324668,147642,'Malaysian Tourist (uncredited)',0,209),(324668,1826668,'Deep Dream Staff (uncredited)',0,210),(70981,87722,'Dr. Elizabeth Shaw',1,0),(70981,17288,'David',2,1),(70981,529,'Peter Weyland',2,2),(70981,17605,'Janek',2,3),(70981,130253,'Charlie Holloway',2,4),(70981,6885,'Meredith Vickers',1,5),(70981,564941,'Young Shaw',1,6),(70981,16702,'Fifield',2,7),(70981,28847,'Millburn',2,8),(70981,71083,'Ford',1,9),(70981,228968,'Chance',2,10),(70981,30082,'Ravel',2,11),(70981,17178,'Shaw\'s Father',2,12),(70981,946696,'Last Engineer',2,13),(70981,1074615,'Mercenary 1',2,14),(70981,1074616,'Mercenary 2',2,15),(70981,1838468,'Mercenary 3',2,17),(70981,1074618,'Mercenary 4',2,18),(70981,938419,'Ghost Engineer',2,19),(70981,1272932,'Linguist Teacher',2,20),(70981,58787,'Shaw\'s Mother',1,21),(70981,1390394,'Mechanic',2,22),(70981,130081,'Ship Computer Voice (voice)',2,23),(70981,1272933,'Greeting Message Violinist',0,24),(70981,1390388,'Ship Computer Voice (voice)',0,25),(70981,1831995,'Sacrifice Engineer',0,26),(68724,1892,'Max',2,0),(68724,1038,'Delacourt',1,1),(68724,82191,'Kruger',2,3),(68724,8602,'Frey',1,4),(68724,8688,'Julio',2,5),(68724,52583,'Spider',2,6),(68724,886,'John Carlyle',2,7),(68724,57452,'President Patel',2,8),(68724,20191,'Sandro',0,9),(68724,206928,'Young Max',2,10),(68724,1029029,'Drake',0,11),(68724,204420,'Crowe',0,12),(68724,1272862,'Matilda',0,13),(68724,33348,'Manuel',2,14),(68724,205053,'Rico',2,15),(68724,26086,'CCB Agent',2,16),(68724,43903,'CCB Agent',1,17),(68724,67978,'CCB Agent',1,18),(68724,11677,'Technician',2,19),(68724,198615,'Dr. Faizel',2,20),(68724,28110,'CCB Agent',1,21),(68724,551476,'Pablo',2,22),(68724,10680,'(uncredited)',1,23),(68724,1366708,'Crew member (uncredited)',1,24),(97020,92404,'RoboCop',2,0),(97020,64,'Norton',2,1),(97020,2232,'Raymond Sellars',2,2),(97020,37260,'Ellen Murphy',1,3),(97020,17183,'Maddox',2,4),(97020,39390,'Jack Lewis',2,5),(97020,49971,'Liz Kline',1,6),(97020,449,'Pope',2,7),(97020,17352,'Karen Dean',1,8),(97020,2231,'Pat Novak',2,9),(97020,56457,'Kim',1,10),(97020,113526,'Mayor Durant',2,11),(97020,1154244,'David Murphy',0,12),(97020,190961,'Antoine Vallon',2,13),(97020,74278,'Andre Daniels',2,14),(97020,1096272,'AC Freeman',0,15),(42888,368,'Lisa Jorgenson',1,0),(42888,22226,'George',2,1),(42888,887,'Manny',2,2),(42888,514,'Charles',2,3),(42888,17696,'Annie',1,4),(42888,150972,'Coach Sally',1,5),(42888,73707,'Terry',1,6),(42888,4252,'Psychiatrist',2,7),(42888,95975,'Ron',2,8),(42888,37157,'Al',0,9),(42888,167565,'George\'s Lawyer',2,10),(42888,17941,'Bullpen Pitcher',2,11),(42888,28002,'Doorman',2,12),(42888,970219,'Riva',1,13),(42888,14329,'Softball Coach',2,14),(42888,61111,'Subpoena Woman',1,15),(37834,500,'Roy Miller',2,0),(37834,6941,'June Havens',1,1),(37834,133,'Fitzgerald',2,2),(37834,19492,'CIA Director Isabel George',1,3),(37834,31384,'Antonio Quintana',2,4),(37834,17142,'Simon Feck',2,5),(37834,11825,'April Havens',1,6),(37834,46772,'Rodney',2,7),(37834,1989,'Molly Knight',1,8),(37834,3211,'Frank Knight',2,9),(37834,118643,'Bernhard',2,10),(37834,42200,'Braces',2,11),(37834,1588955,'Danny',2,12),(37834,90633,'Naomi',1,13),(37834,1186003,'Wilmer',2,14),(37834,1533031,'Eduardo',0,15),(37834,187973,'Allison',0,16),(37834,118645,'Fireman Paul',0,17),(37834,1338317,'Train Cook',0,18),(75612,500,'Jack Harper',2,0),(75612,192,'Malcolm Beech',2,1),(75612,18182,'Julia Rusakova Harper',1,2),(75612,127558,'Victoria Olsen',1,3),(75612,12795,'Sykes',2,4),(75612,6832,'Sally',1,5),(75612,20494,'Kara',1,6),(75612,1171690,'Julia\'s Child',0,7),(75612,1171689,'Julia\'s Child',0,8),(75612,1198939,'Grow Hall Survivor',0,9),(75612,1158069,'NASA Ground Control',0,10),(75612,139188,'Survivor',0,11),(75612,139189,'Tourist',0,12),(75612,1343401,'Survivor',0,13),(75612,1590549,'Alien (uncredited)',1,14),(76170,6968,'Logan / Wolverine',2,0),(76170,9195,'Shingen',0,1),(76170,10696,'Jean Grey / Phoenix',1,2),(76170,10884,'Harada',2,3),(76170,1156024,'Mariko Yashida',1,4),(76170,1179243,'Yukio',1,5),(76170,94064,'Madame Hydra / Viper',0,6),(76170,74540,'Yashida',2,7),(76170,116278,'Noburo Mori',2,8),(76170,2387,'Charles Xavier / Professor X',2,9),(76170,1327,'Erik Lehnsherr / Magneto',2,10),(76170,1155715,'Young Yashida',0,11),(76170,1205489,'Pock-Face',0,12),(76170,582605,'Aya',1,13),(76170,109750,'Red Beard',0,14),(76170,1320015,'Bar Man (Red Beard\'s Friend)',0,15),(76170,1320017,'Yukon Bar Patron',0,16),(76170,1685383,'Buddhist Priest',0,17),(76170,1561288,'Fruit Cart Vendor',0,18),(76170,132639,'Yukon Bar Patron',2,19),(76170,107489,'Dying Yakuza',2,20),(76170,1394433,'Yashida Security Guard',2,21),(49519,2963,'Grug Crood (voice)',2,0),(49519,54693,'Eep Crood (voice)',1,1),(49519,10859,'Guy (voice)',2,2),(49519,2229,'Ugga Crood (voice)',1,3),(49519,9599,'Gran Crood (voice)',1,4),(49519,54729,'Thunk Crood (voice)',2,5),(49519,66193,'Belt (voice)',2,6),(49519,42267,'Sandy Crood (voice)',0,7),(290595,74568,'The Huntsman',2,0),(290595,6885,'Ravenna',1,1),(290595,5081,'Freya',1,2),(290595,83002,'Sara',1,3),(290595,11109,'Nion',2,4),(290595,110080,'Mrs. Bromwyn',1,5),(290595,47632,'Gryff',2,6),(290595,237020,'Doreena',1,7),(290595,237455,'William',2,8),(290595,228866,'Duke of Blackwood',2,9),(290595,1282054,'Pippa',1,10),(290595,563559,'Leifr',2,11),(290595,1278497,'Bar Wench',0,12),(290595,1577027,'Voice and Music',2,13),(290595,3896,'Narrator',2,14),(290595,1479869,'Tull',0,15),(290595,1665602,'Young Eric',0,16),(290595,1665603,'Young Sara',0,17),(290595,1665604,'Young Tull',2,18),(290595,1538417,'Young Pippa',1,19),(290595,60279,'Mirror Man',2,20),(290595,202032,'Barkeep',2,21),(290595,121606,'King',2,22),(290595,72313,'Nobleman',2,23),(290595,1619648,'Lead Soldier',2,24),(290595,1347128,'Freya\'s Lady in Waiting',0,25),(290595,1502431,'Eric\'s Mother',1,26),(290595,1662778,'Huntsman Lookout',2,27),(290595,1626685,'Servant',2,28),(290595,1256622,'Huntsman Guard',2,29),(290595,1665609,'Huntsman #1',0,30),(290595,1665610,'Huntsman #2',0,31),(290595,1665611,'Huntsman #3',2,32),(290595,1665612,'Huntsman #4',2,33),(290595,1682524,'Snow White Soldier',2,34),(290595,1682525,'Soldier',2,35),(290595,1324655,'Soldier',2,36),(290595,1682527,'Woman on Cart',1,37),(290595,1682526,'Child',2,38),(290595,1682528,'Child',2,39),(290595,1585960,'Huntswomen (uncredited)',1,40),(290595,1654739,'Huntsman Instructor (uncredited)',2,41),(98566,19537,'April O\'Neil',1,0),(98566,21200,'Vernon Fenwick',2,1),(98566,886,'Eric Sacks',2,2),(98566,64295,'Raphael',2,3),(98566,80352,'Michelangelo',2,4),(98566,1163622,'Leonardo',0,5),(98566,9656,'Leonardo (voice)',2,6),(98566,15034,'Donatello',2,7),(98566,13645,'Master Splinter',2,8),(98566,4252,'Splinter (voice)',2,9),(98566,173212,'Shredder',0,10),(98566,2395,'Bernadette Thompson',1,11),(98566,177525,'Karai',0,12),(98566,1240486,'Taylor',1,13),(98566,118756,'Councilman',2,14),(98566,51300,'Dojo Ninja',2,15),(98566,1394686,'Young April O\'Neil',1,16),(98566,1213573,'McNaughton',0,17),(98566,143328,'Dr. Baxter Stockman',2,18),(98566,1232623,'Dr. O\'Neil',2,19),(98566,1232607,'Subway Hostage',0,20),(98566,1412782,'Sacks Bodyguard',0,21),(98566,1412784,'Himself',0,22),(98566,1412785,'Reporter',0,23),(98566,1233909,'Reporter',0,24),(98566,17194,'Mr. Rivetti',2,25),(98566,1412789,'News Anchor',0,26),(98566,1215973,'News Anchor',1,27),(49047,18277,'Dr. Ryan Stone',1,0),(49047,1461,'Matt Kowalski',2,1),(49047,228,'Mission Control (voice)',2,2),(49047,1223440,'Aningaaq (voice)',0,3),(49047,58587,'Shariff (voice)',2,4),(49047,1223442,'Explorer Captain (voice)',0,5),(49047,1027852,'Space Station Captain (voice)',0,6),(308531,19537,'April O\'Neil',1,0),(308531,76110,'Casey Jones',2,1),(308531,21200,'Vernon Fenwick',2,2),(308531,350,'Chief Vincent',1,3),(308531,1163622,'Leonardo',0,4),(308531,64295,'Raphael',2,5),(308531,80352,'Michelangelo',2,6),(308531,15034,'Donatello',2,7),(308531,80602,'Baxter Stockman',2,8),(308531,116278,'Shredder',2,9),(308531,54043,'Bebop',0,10),(308531,237746,'Rocksteady',2,11),(308531,4252,'Splinter (voice)',2,12),(308531,18,'Krang (voice)',2,13),(308531,207606,'Vernon\'s Girlfriend',0,14),(308531,1098756,'Karai',0,15),(308531,1056117,'Splinter (motion capture)',2,16),(308531,1346327,'Hostess',1,17),(308531,1094130,'Attractive Detective',0,18),(308531,1447326,'Jade',0,19),(308531,1675381,'School Girl',0,20),(308531,2256,'Deputy Warden Hamlett',2,21),(308531,1498656,'Matt Barnes',0,22),(308531,496175,'Carmelo Anthony',2,23),(308531,68763,'Bartender',2,24),(166424,996701,'Reed Richards / Mr. Fantastic',2,0),(166424,51072,'Sue Storm / The Invisible Woman',1,1),(166424,135651,'Johnny Storm / The Human Torch',2,2),(166424,478,'Ben Grimm / The Thing',2,3),(166424,20286,'Victor Domashev / Doctor Doom',2,4),(166424,38951,'Dr. Franklin Storm',2,5),(166424,1462,'Harvey Elder',2,6),(166424,1529004,'Quarterback Speech School Kid',0,7),(166424,198,'Mr. Kenny',2,8),(166424,1529010,'Young Reed',0,9),(166424,1502947,'Teasing School Kid',2,10),(166424,1529012,'Young Ben',0,11),(166424,1421688,'Jimmy Grimm',0,12),(166424,1213088,'Mrs. Grimm',1,13),(166424,132856,'Mr. Richards',2,14),(166424,78888,'Mrs. Richards',0,15),(166424,31528,'Science Fair Judge #1',0,16),(166424,1529017,'Science Fair Judge #2',0,17),(166424,1451392,'Reed\'s Scientist',0,18),(166424,555658,'Military Tech',0,19),(166424,1287005,'Quantum Gate Scientist',0,20),(166424,172734,'Pentagon General',2,21),(166424,1360013,'Lawyer',1,22),(166424,1445249,'Delta Force Soldier #2',0,23),(166424,1445248,'Baxter Student',0,24),(166424,101847,'DC Senior Official (Area 57)',2,25),(166424,41129,'Emergency Announcer (Area 57)',1,26),(166424,1271445,'Ben Scientist #1 (uncredited)',0,27),(254128,18918,'Ray Gaines',2,0),(254128,109513,'Blake Gaines',1,1),(254128,17832,'Emma Gaines',1,2),(254128,65524,'Daniel Reddick',2,3),(254128,128645,'Serena Johnson',1,4),(254128,13242,'Dr. Lawrence Hayes',2,5),(254128,1190654,'Ben Taylor',0,6),(254128,1050248,'Ollie Taylor',2,7),(254128,211800,'Joby O\'Leary',2,8),(254128,12207,'Susan Riddick',1,9),(254128,10884,'Dr Kim Park',2,10),(254128,98306,'Natalie',0,11),(254128,1494506,'Larissa',0,12),(254128,176762,'Marcus',2,13),(254128,1295289,'Phoebe',0,14),(254128,98215,'Harrison',2,15),(254128,1196960,'Alexi',2,16),(254128,1633566,'Elgin',2,17),(254128,76850,'Kim Swann',1,18),(254128,1633568,'Jenny Swann',1,19),(254128,61344,'Margie',1,20),(254128,1633572,'Mallory',1,21),(254128,1023661,'Herb',2,22),(254128,61342,'Dylan',2,23),(254128,1634434,'Preppy',2,24),(254128,1633571,'Glasses',1,25),(254128,1634440,'Ponytail',1,26),(254128,1053198,'Stoner',2,27),(254128,1338429,'Refugee',0,28),(254128,1634461,'Refugee Camp Reporter',1,29),(254128,1634481,'Daniel Reddick\'s Assistant',2,30),(254128,123540,'Riddick Building Security Guard',0,31),(254128,121160,'Daniel Riddick\'s Driver',2,32),(254128,1634526,'Riddick Female Assistant',1,33),(254128,1634565,'Female Flight Attendant',1,34),(254128,1634567,'Man in Parking Garage',2,35),(254128,1093707,'Looter',0,36),(254128,222336,'Pedestrian',0,37),(254128,1422991,'Disaster Resident (uncredited)',1,38),(254128,1291780,'EMT Responder (uncredited)',0,39),(254128,1576336,'Business Man Survivor (uncredited)',0,40),(254128,1576436,'Survivor (uncredited)',1,41),(254128,1576451,'Reddick Architect (uncredited)',1,42),(254128,1576463,'Scared Pedestrian (uncredited)',1,43),(254128,158567,'D . Park (uncredited)',2,44),(262500,94185,'Beatrice Tris Prior',1,0),(262500,587020,'Tobias Four Eaton',2,1),(262500,204,'Jeanine Matthews',1,2),(262500,1159982,'Caleb Prior',2,3),(262500,996701,'Peter Hayes',2,4),(262500,3489,'Evelyn Johnson-Eaton',1,5),(262500,21045,'Tori Wu',1,6),(262500,224181,'Eric Coulter',2,7),(262500,37153,'Christina',1,8),(262500,56614,'Marcus Eaton',2,9),(262500,6944,'Johanna Reyes',1,10),(262500,1325961,'Marlene',1,11),(262500,973667,'Lynn',1,12),(262500,18307,'Jack Kang',2,13),(262500,327,'Max',2,14),(262500,1173230,'Will',2,15),(262500,3417,'Andrew Prior',2,16),(262500,15852,'Natalie Prior',1,17),(262500,1251875,'Uriah Pedrad',2,18),(262500,1259762,'Hector',2,19),(262500,928575,'Edgar',0,20),(262500,1532415,'Amity Citizen (uncredited)',1,21),(262500,1669949,'Amity Girl (uncredited)',1,22),(262500,1628107,'Candor Girl (uncredited)',1,23),(38745,70851,'Lemuel Gulliver',2,0),(38745,2956,'Darcy Silverman',1,1),(38745,5081,'Princess Mary',1,2),(38745,41088,'Horatio',2,3),(38745,40477,'General Edward',2,4),(38745,9188,'King Theodore',0,5),(38745,47646,'Queen Isabel',1,6),(38745,55466,'Jinks',2,7),(38745,289628,'King Leopold',0,8),(38745,89823,'Prince August',2,9),(38745,40687,'Nigel Travel Writer',2,10),(38745,117654,'Foreman',2,11),(38745,25095,'Blefuscian Captain',2,12),(38745,28477,'Lilliputian Scientist',2,13),(38745,21131,'Butt-Crack Man',2,14),(38745,487836,'Dancer',2,15),(40805,19274,'Britt Reid / Green Hornet',2,0),(40805,17380,'Kato',2,1),(40805,27319,'Chudnofsky',2,2),(40805,6941,'Lenore Case',1,3),(40805,820,'Tupper',2,4),(40805,207,'James Reid',2,5),(40805,587,'Michael Axford',2,6),(40805,124644,'Anna Lee',1,7),(40805,124645,'Chili',2,8),(40805,35172,'Politician',2,9),(40805,156415,'Police Officer',2,10),(40805,17051,'Danny Crystal Cleer',2,11),(40805,1680739,'Chauffeur',2,12),(53182,38664,'Themistocles',2,0),(53182,10912,'Artemisia',1,1),(53182,17286,'Queen Gorgo',1,2),(53182,208296,'Scylias',2,3),(53182,1371,'Dillios',2,4),(53182,17289,'Xerxes',2,5),(53182,85065,'Calisto',2,6),(53182,17290,'Ephialtes',2,7),(53182,766,'General Bandari',2,8),(53182,17291,'Daxos',2,9),(53182,37168,'Aesyklos',2,10),(53182,68278,'Persian Emissary',2,12),(53182,1261071,'General Artaphernes',2,13),(53182,153946,'Senator',2,14),(53182,211593,'Senator',2,15),(53182,36060,'Senator',2,16),(53182,1394772,'Senator',2,17),(53182,177099,'Senator',2,18),(53182,109833,'Greek Ambassador',2,19),(53182,41316,'King Darius',2,21),(53182,214581,'Butcher',2,22),(53182,570010,'Greek Citizen',0,23),(53182,1402460,'Persian Officer',2,24),(53182,1440871,'General Kashani',0,25),(53182,1102427,'Decapitated Greek marine',0,26),(53182,966753,'8 Year Old Artemisia',1,27),(53182,1622651,'13 Year Old Artemisia',1,28),(53182,156274,'Lascivious Greek',2,29),(53182,117654,'Old Statesman',2,30),(53182,214794,'Small Ambassador',2,31),(53182,190908,'Naval Commander',2,32),(53182,1622654,'Theban Commander',2,33),(53182,142290,'Greek Commander',0,34),(53182,1264793,'Persian General',2,35),(53182,1431948,'Persian General',0,36),(53182,1600895,'Persian Commander',2,37),(53182,67247,'Blacksmith',2,38),(53182,1622657,'Artemesia\'s Father (uncredited)',2,39),(53182,1251373,'Athenian Woman (uncredited)',1,40),(53182,1622671,'Spartan Warrior (uncredited)',2,41),(53182,1574987,'Spartan Warrior (uncredited)',2,42),(53182,559374,'Spartan Warrior (uncredited)',2,43),(41513,5587,'Gargamel',2,0),(41513,41686,'Patrick Winslow',2,1),(41513,34195,'Grace Winslow',1,2),(41513,63522,'Odile Anjelou',1,3),(41513,1218645,'Henri',0,4),(41513,13593,'Papa Smurf (voice)',2,5),(41513,111455,'Smurfette (voice)',0,6),(41513,61110,'Brainy Smurf (voice)',2,7),(41513,10697,'Gutsy Smurf (voice)',2,8),(41513,21028,'Clumsy Smurf (voice)',2,9),(41513,41798,'Grouchy Smurf (voice)',2,10),(41513,1789275,'Odile\'s Mother',0,11),(41513,14670,'',1,12),(41513,1194432,'',1,13),(41513,219917,'',2,14),(41513,1789276,'',0,15),(41513,1060045,'',2,16),(41513,60736,'Handy Smurf (voice)',2,17),(41513,5129,'Jokey Smurf (voice)',2,18),(41513,96228,'Hefty Smurf (voice)',2,19),(41513,84292,'Vanity Smurf (voice)',2,20),(41513,77330,'Greedy Smurf (voice)',2,21),(41513,107770,'Baker Smurf (voice)',2,22),(41513,12223,'Farmer Smurf (voice)',2,23),(41513,31365,'Crazy Smurf (Voice)',2,24),(41513,71535,'Narrator Smurf (voice)',2,25),(41513,1215462,'Chef Smurf (voice)',0,26),(41513,15831,'Azrael (voice)',2,27),(41513,1634923,'Bluetooth Businessman',2,28),(262504,94185,'Beatrice Tris Prior',1,0),(262504,587020,'Tobias Four Eaton',2,1),(262504,37153,'Christina',1,2),(262504,996701,'Peter Hayes',2,3),(262504,3489,'Evelyn Johnson-Eaton',1,4),(262504,1159982,'Caleb Prior',2,5),(262504,8447,'David',2,6),(262504,6944,'Johanna Reyes',1,7),(262504,1251875,'Uriah Pedrad',2,8),(262504,18307,'Jack Kang',2,9),(262504,21045,'Tori Wu',1,10),(262504,137905,'Matthew',2,11),(262504,928575,'Edgar',0,12),(262504,1133012,'Nita',0,13),(262504,1330888,'Romit',0,14),(262504,56614,'Marcus Eaton',2,15),(262504,327,'Max',2,16),(262504,1581190,'Hollis',2,17),(262504,15852,'Natalie Prior',1,18),(262504,3982,'Phillip',2,19),(262504,1382739,'Regina',0,20),(262504,27267,'Sarah',1,21),(262504,1649536,'Jasper',0,22),(262504,1649537,'Eulis',0,23),(262504,1649538,'Laura',0,24),(262504,155965,'Zoe',1,25),(262504,1649535,'Tom',0,26),(262504,47627,'Edith Prior',1,27),(262504,1266214,'Anna',0,28),(262504,1334173,'Fringe Father',2,29),(262504,1084211,'Fringe Parent',1,30),(262504,84756,'Factionless Guard',2,31),(262504,1480643,'Crush Girl #2',1,32),(262504,997303,'Groupie Babe #1',1,33),(39254,6968,'Charlie Kenton',2,0),(39254,234479,'Max Kenton',2,1),(39254,19034,'Bailey Tallet',1,2),(39254,53650,'Finn',2,3),(39254,79072,'Ricky',2,4),(39254,15250,'Aunt Debra',1,5),(39254,8986,'Marvin',2,6),(39254,19860,'Tak Mashido',2,7),(39254,111206,'Farra Lemkova',1,8),(39254,53176,'Kingpin',2,9),(39254,1126350,'Big Sister',0,10),(39254,1126351,'Little Sister',0,11),(39254,1126352,'Littlest Sister',0,12),(39254,187983,'Bill Panner',2,13),(39254,1358647,'Large Texan Man',0,14),(39254,1738396,'San Leandro Gentleman #1',0,15),(39254,87057,'San Leandro Gentleman #2',0,16),(39254,59690,'ESPN Boxing Commentator',2,17),(39254,31549,'ESPN Boxing Commentator',2,18),(39254,1738286,'Starblaze Arena Reporter',0,19),(39254,1738397,'Starblaze Arena Reporter',0,20),(39254,1561695,'Virgin America Spectrum Ring Announcer',0,21),(39254,1738398,'Virgin America Spectrum Ref',0,22),(39254,1738399,'WRB Promoter',0,23),(39254,1738400,'Twin Cities Corner Tech',0,24),(39254,76704,'Twin Cities Controller',0,25),(39254,64873,'Bing Arena Announcer',0,26),(39254,201202,'Bing Arena Ref',0,27),(39254,133284,'Older Gentleman',0,28),(39254,150673,'Blacktop Controller',0,29),(39254,1375358,'Underground Promoter',2,30),(39254,1320015,'Robot Promoter',0,31),(39254,91443,'Atom Performance Capture',0,32),(39254,1018967,'Sergei Lemkova',0,33),(39254,1288733,'Robot Handler / Fight Fan (uncredited)',1,34),(39254,1288735,'Pretty Girl (uncredited)',1,35),(39254,1123015,'Fight Fan (uncredited)',0,36),(39254,1738401,'Russian / Boxing Fan (uncredited)',0,37),(39254,1364762,'Paparazzi (uncredited)',0,38),(39254,1292641,'Upscale Fight Fan (uncredited)',1,39),(39254,1738402,'Rodeo Cowboy (uncredited)',0,40),(39254,1738403,'Fight Fan (uncredited)',1,41),(39254,1727460,'Bar Patron (uncredited)',0,42),(39254,1738409,'VIP Fight Fan (uncredited)',0,43),(39254,1738410,'Funny Security Guard (uncredited)',0,44),(39254,1738411,'Fair Goer (uncredited)',0,45),(39254,59674,'Ricky\'s Henchman (uncredited)',2,46),(39254,1736008,'Fight Fan (uncredited)',0,47),(39254,1675748,'Upscale Boxing Fan (uncredited)',2,48),(39254,1738412,'Fight Fan (uncredited)',1,49),(39254,1738414,'Rodeo Cowboy (uncredited)',0,50),(39254,1738415,'Crash Palace Fight Fan (uncredited)',0,51),(39254,1738416,'Bailey\'s Dad (uncredited)',0,52),(39254,1738417,'Axelrod Handler (uncredited)',0,53),(39254,146414,'Kingpin\'s Henchman (uncredited)',0,54),(39254,1736420,'Twin Cities Fight Fan (uncredited)',0,55),(39254,1103629,'Rodeo Fan (uncredited)',2,56),(39254,1736422,'Photographer (uncredited)',0,57),(39254,1738418,'Twin Cities Upscale Fight Fan (uncredited)',0,58),(39254,1738419,'Metro Fan - Big Rock / Zoo (uncredited)',1,59),(39254,1207248,'Panoramic Fight Fan (uncredited)',1,60),(39254,1738420,'Gang Member (uncredited)',1,61),(39254,1738379,'Drunkard (uncredited)',0,62),(39254,1738421,'Axelrod Controller (uncredited)',0,63),(39254,489697,'Ringside VIP - New York (uncredited)',0,64),(39254,1738422,'Ringside Security Guard (uncredited)',0,65),(39254,1755953,'Herself (uncredited)',0,66),(39254,1738423,'Fight Fan (uncredited)',0,67),(39254,1739244,'ESPN Commentator (uncredited)',0,68),(39254,1739245,'Rodeo Vendor (uncredited)',0,69),(39254,1739246,'Girl at Fair (uncredited)',1,70),(39254,1739247,'Vendor at Rodeo (uncredited)',0,71),(39254,1636759,'Rabid Fight Fan (uncredited)',0,72),(39254,1736432,'Robot Handler (uncredited)',0,73),(39254,1739248,'Texas Fairgoer (uncredited)',0,74),(39254,1739249,'Townsperson (uncredited)',0,75),(39254,1739250,'Fight Fan (uncredited)',0,76),(39254,1736433,'Fight Fan (uncredited)',0,77),(39254,1739251,'Fight Fan (uncredited)',1,78),(39254,1739253,'Vendor (uncredited)',1,79),(39254,1739257,'Fight Fan (uncredited)',0,80),(39254,1739258,'Crash Palace Fan (uncredited)',0,81),(39254,1739259,'Fight Fan (uncredited)',1,82),(39254,1316592,'Starblaze Arena Reporter (uncredited)',2,83),(39254,1728469,'Photographer (uncredited)',0,84),(39254,1739265,'Upper Class Upscale Fight Fan (uncredited)',0,85),(39254,1739267,'ESPN Box (uncredited)',0,86),(39254,1469377,'Fight Fan (uncredited)',0,87),(39254,1740121,'Bar Date (uncredited)',0,88),(39254,1265825,'Fight Fan (uncredited)',1,89),(39254,1739271,'Rodeo Cowboy (uncredited)',0,90),(39254,1739272,'Upscale Fight Fan (uncredited)',1,91),(39254,1739273,'Fight Fan (uncredited)',0,92),(39254,1288656,'Bull Fight Attendee (uncredited)',1,93),(39254,1739275,'Zoo Fight Fan (uncredited)',0,94),(39254,1739276,'Rich Man (uncredited)',2,95),(39254,1739277,'Fight Fan (uncredited)',1,96),(39254,1739280,'Japenese Reporter #1 (uncredited)',0,97),(39254,1739281,'Zoo Fight Fan / Spectrum Roadie (uncredited)',0,98),(39254,1739282,'Girl at Fair (uncredited)',1,99),(39254,1739394,'Photographer (uncredited)',0,100),(39254,1649258,'Boxing Fan (uncredited)',0,101),(39254,1739395,'Fight Fan (uncredited)',1,102),(39254,1263199,'Zeus Robot Handler #1 (uncredited)',0,103),(39254,1736500,'Waitress (uncredited)',1,104),(39254,1736501,'Fight Fan (uncredited)',0,105),(39254,1738384,'Photographer (uncredited)',0,106),(39254,1736502,'Female Livestock Judge (uncredited)',1,107),(39254,1739396,'Upper Class Fight Fan (uncredited)',0,108),(39254,1739397,'Ring Security Guard (uncredited)',0,109),(39254,1739398,'Fight Fan (uncredited)',0,110),(39254,146418,'Fight Fan (uncredited)',0,111),(39254,1738226,'Fight Fan (uncredited)',0,112),(39254,1739399,'Usher (uncredited)',1,113),(39254,1739410,'Writer #1 (uncredited)',0,114),(39254,1739414,'Fight Fan / Fair Goer (uncredited)',1,115),(39254,1739418,'Fight Fan (uncredited)',0,116),(39254,1739419,'Fight Fan (uncredited)',0,117),(39254,1738229,'Fight Fan (uncredited)',1,118),(39254,1739420,'Boxing Fan (uncredited)',0,119),(39254,1739421,'Vendor (uncredited)',0,120),(39254,1738386,'Cowboy / Upscale Fan (uncredited)',0,121),(39254,1122991,'Lead Security Guard (uncredited)',0,122),(39254,1739422,'Farrah\'s Body Guard (uncredited)',0,123),(39254,1739423,'Laughing Zoo Fight Fan (uncredited)',0,124),(39254,1739424,'Fight Fan (uncredited)',1,125),(39254,1739425,'Ring Security (uncredited)',0,126),(39254,1135613,'Vendor (uncredited)',1,127),(39254,1450380,'Farra\'s Body Guard (uncredited)',0,128),(39254,1739427,'Western Bar Patron (uncredited)',2,129),(39254,1561416,'Starblaze Security Guard (uncredited)',2,130),(39254,1739428,'Big Brother (uncredited)',0,131),(39254,1739429,'Crash Palace Fight Fan (uncredited)',0,132),(39254,1739431,'Fight Fan (uncredited)',1,133),(39254,1736512,'Kingpin\'s Girlfriend (uncredited)',0,134),(39254,1736515,'Upscale Fight Fan (uncredited)',1,135),(39254,1106260,'Helicopter Pilot (uncredited)',2,136),(39254,146423,'Boxing Fan (uncredited)',0,137),(39254,1739797,'Fight Fan (uncredited)',0,138),(39254,1460674,'Fight Fan (uncredited)',0,139),(39254,935714,'Fair Goer / Fight Fan Panaramic / Fight Fan Metro / Fight Fan Zoo (uncredited)',0,140),(39254,1739798,'Boxing Fan (uncredited)',0,141),(39254,930729,'Cliff (uncredited)',0,142),(39254,1738389,'Cat Woman (uncredited)',1,143),(39254,30488,'Judge (uncredited)',2,144),(39254,1739800,'Fair Goer (uncredited)',0,145),(39254,1739802,'Lieutenant - Kingpin (uncredited)',0,146),(39254,1338035,'Fight Crowd Member (uncredited)',0,147),(39254,1739803,'Fight Fan / Robot Roadie (uncredited)',0,148),(39254,1739804,'Upper Class Fight Fan (uncredited)',0,149),(39254,1739805,'Fight Fan (uncredited)',0,150),(39254,435837,'Robot Handler (uncredited)',2,151),(39254,1736524,'Fight Fan (uncredited)',0,152),(39254,1739806,'Japanese Reporter #2 (uncredited)',0,153),(39254,1736525,'Fair Goer (uncredited)',0,154),(39254,1739807,'Fight Fan (uncredited)',0,155),(39254,1739808,'Tak\'s Girl (uncredited)',1,156),(39254,1738317,'Cowboy at Rodeo / Robot Fight Fan (uncredited)',0,157),(39254,1739809,'Salvage Yard Security Guard (uncredited)',0,158),(39254,1738363,'Twin Cities Fight Fan (uncredited)',1,159),(39254,1739810,'Fight Fan (uncredited)',0,160),(39254,1739811,'Usher (uncredited)',0,161),(39254,1739812,'Fair Goer (uncredited)',0,162),(39254,1739813,'Cowgirl (uncredited)',1,163),(39254,1738242,'Fight Fan (uncredited)',0,164),(39254,1739814,'Fight Fan (uncredited)',0,165),(39254,1739815,'Fight Fan (uncredited)',0,166),(39254,1739816,'Pretty Girl (uncredited)',1,167),(39254,1292648,'Zoo Fight Fan (uncredited)',0,168),(39254,1739817,'Vendor (uncredited)',0,169),(39254,1737866,'Ricky\'s Girl (uncredited)',1,170),(39254,1739818,'Photographer (uncredited)',0,171),(77931,5587,'Gargamel',2,0),(77931,41686,'Patrick Winslow',2,1),(77931,2039,'Victor Doyle',2,2),(77931,34195,'Grace Winslow',1,3),(77931,13593,'Papa Smurf (voice)',2,4),(77931,111455,'Smurfette (voice)',0,5),(77931,6886,'Vexy (voice)',1,6),(77931,65920,'Hackus (voice)',2,7),(77931,21028,'Clumsy Smurf (voice)',2,8),(77931,41798,'Grouchy Smurf (voice)',2,9),(77931,84292,'Vanity Smurf (voice)',2,10),(77931,1277188,'Blue Winslow',2,11),(77931,127130,'Nancy O\'Dell',1,12),(77931,61110,'Brainy Smurf (voice)',2,13),(77931,10697,'Gutsy Smurf (voice)',2,14),(77931,19185,'Social Smurf (voice)',2,15),(77931,78303,'Passive-Aggressive Smurf (voice)',0,16),(77931,15831,'Azrael (voice)',2,17),(77931,71535,'Narrator Smurf (voice)',2,18),(77931,5129,'Jokey Smurf (voice)',2,19),(77931,107770,'Baker Smurf (voice)',2,20),(77931,35806,'Smooth Smurf (voice)',2,21),(77931,127963,'Clueless Smurf (voice)',2,22),(77931,60736,'Handy Smurf (voice)',2,23),(77931,96228,'Hefty Smurf (voice)',2,24),(77931,21402,'Panicky Smurf (voice)',2,25),(77931,12223,'Farmer Smurf (voice)',2,26),(77931,77330,'Greedy Smurf (voice)',2,27),(77931,31365,'Crazy Smurf (voice)',2,28),(77931,1768897,'Party Planner Smurf (voice)',0,29),(77931,978906,'Mother with Camera',1,30),(77931,1597842,'New York Taxi Driver',2,31),(80274,77996,'Ender Wiggin',2,0),(80274,3,'Colonel Hyrum Graff',2,1),(80274,130640,'Petra Arkanian',1,2),(80274,17140,'Valentine Wiggin',1,3),(80274,2282,'Mazer Rackham',2,4),(80274,19492,'Major Gwen Anderson',1,5),(80274,204191,'Bean',2,6),(80274,1266195,'Alai',0,7),(80274,57412,'Bonzo Madrid',0,8),(80274,994016,'Dink Meeker',2,9),(80274,284628,'Peter Wiggin',2,10),(80274,84409,'Bernard',0,11),(80274,43547,'Sergeant Dap',2,12),(80274,155077,'John Wiggin',2,13),(80274,106949,'Theresa Wiggin',1,14),(80274,1115122,'Fly Molo',0,15),(80274,1116011,'Lieutenant Soto',0,16),(80274,1116145,'Admiral Chjamrajnagar',0,17),(80274,84756,'Young Mazer Rackham',2,18),(80274,1344361,'Salamander (uncredited)',0,19),(286217,1892,'Mark Watney',2,0),(286217,83002,'Melissa Lewis',1,1),(286217,41091,'Annie Montrose',1,2),(286217,8447,'Teddy Sanders',2,3),(286217,454,'Rick Martinez',2,4),(286217,48,'Mitch Henderson',2,5),(286217,51072,'Beth Johanssen',1,6),(286217,60898,'Chris Beck',2,7),(286217,76547,'Alex Vogel',2,8),(286217,5294,'Venkat Kapoor',2,9),(286217,30082,'Bruce Ng',2,10),(286217,1110405,'Mindy Park',1,11),(286217,119589,'Rich Purnell',2,12),(286217,1509615,'Tim Grimes',2,13),(286217,1076049,'Zhu Tao',1,14),(286217,612216,'Guo Ming',2,16),(286217,91494,'Mike Watkins',2,17),(286217,28477,'Brendan Hatch',2,18),(286217,1414711,'Jack',2,19),(286217,240724,'Ryoko',1,20),(286217,1554488,'U.S. President',2,21),(286217,1554489,'Chinese Flight Director',0,22),(286217,1554490,'Wen Jiang',0,23),(286217,25730,'Timer Controller',2,24),(286217,82363,'Launch Control',1,25),(286217,1297390,'Guidance',0,26),(286217,1509614,'Reporter 2',1,27),(286217,1378657,'Blair',1,28),(286217,1509613,'Reporter 1',1,29),(286217,1394333,'Police Woman',1,30),(286217,1509617,'Nasa Staff Member',2,31),(286217,1509616,'Pathfinder developer',2,32),(286217,55585,'NASA psychologist',2,33),(286217,25445,'Satcon',0,34),(286217,1720669,'Launcher Interface',0,35),(286217,1102409,'Capcom',0,36),(286217,146123,'Telemetry',2,37),(286217,1508585,'Comms',0,38),(286217,1676636,'NASA Break Room Worker',0,39),(286217,1691280,'Vincent\'s Secretary',0,40),(286217,1720670,'CNN Reporter',0,41),(286217,1720671,'Robert Lewis',0,42),(286217,1390710,'Vogel\'s Wife',1,43),(286217,1439028,'Marissa Martinez',0,44),(286217,110508,'Chinese Translator',0,45),(286217,25440,'JPL Store Man',2,46),(286217,1700678,'JPL White Room Worker',0,47),(286217,1418518,'JPL Pathfinder Team',0,48),(286217,1365662,'JPL Pathfinder Team',2,49),(286217,1720680,'JPL Pathfinder Team',0,50),(286217,1720681,'JPL Pathfinder Team',0,51),(36557,8784,'James Bond',2,0),(36557,10912,'Vesper Lynd',1,1),(36557,1019,'Le Chiffre',2,2),(36557,5309,'M',1,3),(36557,2954,'Felix Leiter',2,4),(36557,3753,'Renu00e9 Mathis',2,5),(36557,10916,'Solange Dimitrios',1,6),(36557,10917,'Alex Dimitrios',2,7),(36557,4812,'Steven Obanno',2,8),(36557,2244,'Mr. White',2,9),(36557,29930,'Valenka',1,10),(36557,10920,'Villiers',2,11),(36557,76339,'Carlos',2,12),(36557,94955,'Mollaka',0,13),(36557,40660,'Dryden',2,14),(36557,49487,'Adolph Gettler',2,15),(36557,1088,'Mendel',2,16),(36557,1214517,'Carter',2,17),(36557,1070749,'Fisher',0,18),(36557,213596,'Kratt',0,19),(36557,1156342,'Leo',2,20),(36557,125039,'Stockbroker',2,21),(36557,2627,'Infante',2,22),(36557,27398,'Tomelli',2,23),(36557,10075,'Madame Wu',1,24),(36557,70874,'Kaminofsky',2,25),(36557,15199,'Gru00e4fin von Wallenstein',1,26),(36557,1435015,'Gallardo',2,27),(36557,1503867,'Fukutu',2,28),(36557,1503868,'Dealer',2,29),(36557,64014,'Tournament Director',2,30),(36557,47625,'Ocean Club Receptionist',0,31),(36557,10923,'Schultz',2,32),(36557,1503869,'Card Players',0,33),(36557,1503870,'Card Players',0,34),(36557,1503871,'Card Players',0,35),(36557,147729,'Dealer',0,36),(36557,25753,'Tall Man',0,37),(36557,58781,'Hot Room Doctors',0,38),(36557,235169,'Hot Room Doctors',0,39),(36557,156379,'Hot Room Technicians',0,40),(36557,1503872,'Hot Room Technicians',0,41),(36557,1503873,'MI6 Technician',0,42),(36557,1244700,'Police Commander',0,43),(36557,1070855,'Airport Policemen',0,44),(36557,1503874,'Airport Policemen',0,45),(36557,1230749,'Arresting Officer',2,47),(36557,1395428,'Pilot',0,48),(36557,59038,'French News Reporter',0,49),(36557,1503875,'Shop Assistant',0,50),(36557,18183,'Obanno\'s Lieutenant',2,51),(36557,1503876,'Obanno\'s Liaison',0,52),(36557,69678,'Chief of Police',2,53),(36557,1503877,'Police Chief\'s Girlfriends',0,54),(36557,1503878,'Police Chief\'s Girlfriends',0,55),(36557,25723,'Croatian General',0,56),(36557,108461,'Nambutu Embassy Official',0,57),(36557,1503880,'Bartender',0,58),(36557,10709,'Treasury Bureaucrat',0,59),(36557,207606,'Tennis Girls',0,60),(36557,1503881,'Tennis Girls',0,61),(36557,1503882,'Hotel Splendide Clerk',0,62),(36557,1118362,'Cola Kid',0,63),(36557,1503883,'Barman',0,64),(36557,138197,'Waitress',0,65),(36557,128085,'Disapproving Man',0,66),(36557,1233647,'Venice Hotel Concierge',0,67),(36557,1503884,'Hotel Splendide Limo Driver',0,68),(36557,1503885,'Hermitage Waiter',0,69),(36557,1363049,'Airport Staff (uncredited)',2,70),(36557,158079,'Man at Airport Security (uncredited)',0,72),(36557,10702,'Airport Worker (uncredited)',2,73),(36557,1093967,'Woman in Casino (uncredited)',0,74),(36557,11354,'MI6 Agent (uncredited)',0,75),(36557,214477,'Croupier (uncredited)',0,76),(36557,1496358,'Dossier Girl (uncredited)',0,77),(36557,1091236,'Barmen & Driver (uncredited)',0,78),(36557,993093,'Young Woman in Casino (uncredited)',1,79),(36557,172859,'Airport Driver, Miami (uncredited)',2,80),(36955,1100,'Harry Tasker',2,0),(36955,8944,'Helen Tasker',1,1),(36955,74036,'Albert Gibson',2,2),(36955,2053,'Simon',2,3),(36955,13445,'Juno Skinner',1,4),(36955,10672,'Salim Abu Aziz',2,5),(36955,13446,'Dana Tasker',1,6),(36955,31511,'Faisil',2,7),(36955,10017,'Spencer Trilby',2,8),(36955,116907,'Jamal Khaled',2,9),(39451,380,'Jack Byrnes',2,0),(39451,7399,'Greg Focker',2,1),(39451,887,'Kevin Rawley',2,2),(39451,4483,'Bernie Focker',2,3),(39451,10400,'Rozalin Focker',0,4),(39451,10399,'Pam Byrnes-Focker',1,5),(39451,10401,'Dina Byrnes',1,6),(39451,56731,'Andi Garcia',1,7),(39451,1037,'Randy Weir',2,8),(39451,4784,'Prudence',1,9),(39451,145374,'Henry Focker',2,10),(39451,80002,'Samantha Focker',1,11),(39451,62715,'Party Parent',2,12),(39451,9630,'Gustavo',0,13),(39451,291263,'EMT',2,14),(39451,111206,'Svetlana',1,15),(39451,1009503,'Dr. Patel',2,16),(39451,1580574,'Spanish Square Patron (uncredited)',2,17),(68718,134,'Django',2,0),(68718,27319,'Dr. King Schultz',2,1),(68718,6193,'Calvin Candie',2,2),(68718,11703,'Broomhilda von Shaft',1,3),(68718,2231,'Stephen',2,4),(68718,27740,'Billy Crash',2,5),(68718,27770,'Leonide Moguy',2,6),(68718,1736,'Butch Pooch / Ace Speck',2,7),(68718,1067187,'Mr. Stonesipher',2,8),(68718,1133063,'Cora',0,9),(68718,1037108,'Sheba',1,10),(68718,565498,'Lara Lee Candie-Fitzwilly',1,11),(68718,5377,'D\'Artagnan',2,12),(68718,19300,'Rodney',2,13),(68718,1291797,'Big Fred\'s Opponent',0,14),(68718,1129647,'Big Fred',2,15),(68718,1291798,'Betina',0,16),(68718,25129,'Big Daddy',0,17),(68718,22383,'Amerigo Vessepi',2,18),(68718,785,'Dicky Speck',2,19),(68718,114293,'U.S. Marshall Gill Tatum',2,20),(68718,69494,'Sheriff Bill Sharp',2,21),(68718,6725,'Son of a Gunfighter',2,22),(68718,20354,'Daughter of a Son of a Gunfighter',1,23),(68718,6905,'Old Man Carrucan',1,24),(68718,22132,'Big John Brittle',2,25),(68718,156653,'Lil Raj Brittle',2,26),(68718,139993,'Ellis Brittle',2,27),(68718,21007,'Bag Head #2',2,28),(68718,47859,'Sheriff Gus (Snowy Snow)',2,29),(68718,20494,'Tracker',1,30),(68718,2234,'Tracker',2,31),(68718,62036,'Tracker',2,32),(68718,1206190,'Tracker',0,33),(68718,72739,'Tracker',2,34),(68718,87312,'Tracker',0,35),(68718,11161,'Tracker',2,36),(68718,2536,'The LeQuint Dickey Mining Co. Employee',2,37),(68718,45210,'The Le Quint Dickey Mining Co. Employee',2,38),(68718,138,'The LeQuint Dickey Mining Co. Employee',2,39),(68718,239107,'Roy',2,40),(68718,1198202,'Pudgy Ralph',0,41),(68718,1291961,'Big Sid',0,42),(68718,1200963,'Slave on Chain Gang',0,43),(68718,148693,'Franklin',2,44),(68718,95979,'Daughtrey Saloon Girl',0,45),(68718,5150,'Saloon Keeper Pete',2,46),(68718,756648,'Daughtrey Bitty',0,47),(68718,562669,'Daughtrey Saloon Girl',0,48),(68718,1116951,'Daughtrey Rifleman',2,49),(68718,547,'Daughtrey Woman',1,50),(68718,1551615,'Grace Bennett',0,51),(68718,1446043,'Little Jody',0,52),(68718,1173099,'Willard',2,53),(68718,1044195,'Randy',0,54),(68718,60874,'Tennessee Redfish',2,55),(68718,129868,'O.D.',2,56),(68718,16937,'Tennessee Harry',2,57),(68718,58744,'Smitty Bacall',2,58),(68718,1291965,'',0,59),(68718,2141,'Wilson',2,60),(68718,1291968,'Mr. Eigglesworth',0,61),(68718,1424334,'Coco',1,62),(68718,231857,'',0,63),(68718,59844,'Chicken Charlie',2,64),(68718,3493,'Baghead',2,65),(68718,183519,'Tommy Gilles',0,66),(68718,1204219,'Hoot Peters',0,67),(68718,52885,'Overseer Johnny Jerome',2,68),(68718,1292475,'Baghead',0,69),(68718,65121,'Banjo',0,70),(68718,1493736,'',0,72),(68718,74931,'Tatum',2,73),(68718,21484,'Dollar Bill',2,74),(68718,36041,'Jinglebells Cody',2,75),(68718,1551617,'',0,76),(68718,1292476,'House Servant',0,77),(68718,1292477,'Carl / House Servant',0,78),(68718,1551618,'',0,79),(68718,16459,'',2,80),(68718,1516962,'Beard Man (uncredited)',2,81),(68718,1292478,'House Servant (uncredited)',0,82),(68718,187946,'House Slave (uncredited)',0,83),(68718,75491,'House Slave (uncredited)',0,84),(68718,1292479,'Cleopatra Pony (uncredited)',0,85),(68718,1292483,'Pony (uncredited)',0,86),(68718,1292489,'Pony (uncredited)',0,87),(68718,1292493,'Pony (uncredited)',0,88),(68718,1170892,'Mandingo Overseer (uncredited)',0,89),(68718,1292485,'Overseer (uncredited)',0,90),(68718,1292491,'Overseer (uncredited)',0,91),(68718,1601433,'Overseer (uncredited)',0,92),(68718,1292480,'Daughtrey Rifleman (uncredited)',2,93),(68718,1512188,'Slave Master (uncredited)',2,94),(68718,1292495,'Slave Master (uncredited)',0,95),(68718,1037373,'Slave Overseer (uncredited)',0,96),(68718,1292481,'Crazy Sadie (uncredited)',0,97),(68718,1292482,'Plantation Owner (uncredited)',0,98),(68718,1292486,'Samson (uncredited)',0,99),(68718,1292487,'Cowboy (uncredited)',0,100),(68718,1292488,'Bennet Plantation Slave Water Boy (uncredited)',0,101),(68718,68180,'Bob Gibbs (uncredited)',2,102),(68718,1292492,'Goat Farmer (uncredited)',0,103),(68718,1601439,'Towns person (uncredited)',0,104),(68718,1292490,'Town Woman (uncredited)',0,105),(68718,1292494,'Mule Wrangler (uncredited)',0,106),(68718,1292496,'Cleo Master (uncredited)',0,107),(68718,1011212,'Cleo Club Patron / Polly Wolly Singer (uncredited)',2,108),(68718,1589685,'Chinese Boy (uncredited)',0,109),(68718,1601441,'Dr. Brown (uncredited)',0,110),(68718,1485552,'Candyland House Servant (uncredited)',0,111),(68718,1265833,'Woman with Rifle (uncredited)',0,112),(68718,1547309,'Gabby the Banker (uncredited)',0,113),(68718,64136,'Minnie (uncredited)',0,114),(68718,112286,'Joshua',2,115),(76163,16483,'Barney Ross',2,0),(76163,976,'Lee Christmas',2,1),(76163,16644,'Gunnar Jensen',2,2),(76163,62,'Church',2,3),(76163,1100,'Trench',2,4),(76163,15111,'Vilain',2,5),(76163,51576,'Booker',2,6),(76163,78110,'Hector',2,7),(76163,96066,'Billy',2,8),(76163,1336,'Yin Yang',2,9),(76163,74748,'Toll Road',2,10),(76163,53256,'Hale Caesar',2,11),(76163,126502,'Lacy',1,12),(76163,934869,'Billy\'s Wife',1,13),(76163,27084,'Maggie',0,14),(76163,46128,'Pilar',1,15),(76163,67246,'Bojan',2,16),(116711,27972,'Nod (voice)',2,0),(116711,71070,'Mary Katherine (M.K.) (voice)',1,1),(116711,72466,'Ronin (voice)',2,2),(116711,58224,'Bomba (voice)',2,3),(116711,86626,'Mub (voice)',2,4),(116711,14386,'Queen Tara (voice)',1,5),(116711,52860,'Taxi Driver (voice)',2,6),(116711,37935,'Nim Galuu (voice)',2,7),(116711,1009740,'Bufo (voice)',2,8),(116711,521564,'Dagda (voice)',0,9),(116711,27319,'Mandrake (voice)',2,10),(116711,31531,'Pinecone Jinn (voice)',0,11),(116711,1273228,'Dandelion Jinn (voice)',0,13),(116711,1273229,'Fruit Fly (Old) (voice)',0,14),(116711,31006,'Thistle Jinn (voice)',2,15),(116711,1252801,'Marigold Girl (voice)',1,16),(116711,1178792,'(voice)',0,17),(116711,964851,'Race Announcer / Additional Voices (voice)',2,18),(116711,1214603,'Bufo\'s Goon (voice)',0,19),(116711,1552816,'Thistle Lady (voice)',0,20),(116711,95691,'Berry Lady (voice)',0,21),(116711,448526,'Biker Dude (voice)',2,22),(116711,1185985,'Fruit Fly (Young) (voice)',0,23),(116711,1410479,'Jinn Mom (voice)',0,24),(116711,973667,'Roller Derby Girl (voice)',1,25),(37710,85,'Frank Tupelo',2,0),(37710,11701,'Elise Clifton-Ward',1,1),(37710,6162,'Inspector John Acheson',2,2),(37710,10669,'Chief Inspector Jones',2,3),(37710,782,'Reginald Shaw',2,4),(37710,17328,'The Englishman',2,5),(37710,69036,'Colonnello Lombardi',2,6),(37710,44646,'Sergente Cerato',2,7),(37710,124622,'Tenente Narduzzi',0,8),(37710,229667,'Tenente Tommassini',0,9),(37710,5412,'Conte Filippo Gaggia',2,10),(37710,222569,'Capitaine Courson',0,11),(37710,79031,'Brigadier Ricuort',2,12),(37710,225479,'Brigadier Marion',2,13),(37710,40939,'Brigadier Rousseau',2,14),(37710,24542,'Brigadier Cavillan',2,15),(37710,4392,'Cafe Waiter Jean-Michel',0,16),(37710,1136365,'Cafe Head Waiter Ju00e9ru00f4me',0,17),(37710,500339,'Courier Achmed Tchebali',0,18),(37710,52761,'Virginsky',2,19),(37710,1179681,'Lebyadkin',2,20),(37710,1452351,'Liputin',2,21),(37710,1196960,'Fedka',2,22),(37710,28345,'Shigalyov',2,23),(37710,88474,'Hotel Concierge Alessio',2,24),(37710,1626325,'Hotel Bell Boy Luca',0,25),(37710,931543,'Hotel Waiter Guido',0,26),(37710,141114,'Waiter Antonio',2,27),(37710,120646,'Brigadiere Mele',2,28),(37710,1220123,'Senior Technician Mountain',2,29),(37710,55364,'Junior Technician Pinnock',2,30),(37710,94958,'Jones\' Assistant Whitfield',2,31),(37710,14149,'Arturo the Tailor',2,32),(37710,103147,'Gala Coordinator Dalla Pietu00e0',0,33),(37710,120322,'Interpreter Coppa',2,34),(37710,1626331,'Elise\'s Driver Stefano',0,35),(37710,1626334,'Elise\'s Driver Mauro',0,36),(37710,27401,'Sniper Chief Giordani',2,37),(37710,942,'Jail Bird Lunt',2,38),(37710,381663,'Brigadier Kaiser',2,39),(37710,1754992,'Dancer at Gala',0,42),(37710,1496182,'Dancer at Gala',0,43),(37710,555712,'Dancer at Gala',0,49),(37710,1755034,'Dancer at Gala',0,50),(37710,1755035,'Dancer at Gala',0,51),(37710,1266861,'Woman in the Cafe (uncredited)',0,52),(106646,6193,'Jordan Belfort',2,0),(106646,21007,'Donnie Azoff',2,1),(106646,234352,'Naomi Lapaglia',1,2),(106646,3497,'Agent Patrick Denham',2,3),(106646,3026,'Max Belfort',2,4),(106646,10297,'Mark Hanna',2,5),(106646,19498,'Brad Bodnick',2,6),(106646,41561,'Chester Ming',2,7),(106646,1211946,'Nicky Koskoff (\'Rugrat\')',2,8),(106646,1332746,'Robbie Feinberg (\'Pinhead\')',0,9),(106646,1332747,'Alden Kupferberg (\'Sea Otter\')',0,10),(106646,15277,'Manny Riskin',2,11),(106646,204392,'Teresa Petrillo',1,12),(106646,34901,'Aunt Emma',1,13),(106646,134235,'Steve Madden',2,14),(106646,824,'Toby Welch',2,15),(106646,56024,'Jean-Jacques Handali',2,16),(106646,4003,'Leah Belfort',1,17),(106646,74242,'Captain Ted Beecham',2,18),(106646,549981,'Chantalle',1,19),(106646,1211946,'Rugrat',2,20),(106646,131119,'Bo Dietl',2,21),(106646,191278,'Nicholas the Butler',2,22),(106646,133451,'Janet',1,23),(106646,1223718,'Kalil',0,24),(106646,204651,'Kimmie Belzer',1,25),(106646,63296,'Lucas Solomon',2,26),(106646,77264,'Rochelle Applebaum',1,27),(106646,79991,'Jerry Fogel',2,28),(106646,1886,'Agent Hughes',0,29),(106646,78017,'Aliyah Farran',0,30),(106646,1152008,'Rothschild Broker #1',0,31),(106646,5953,'Dwayne',2,32),(106646,1451797,'Hildy Azoff',0,33),(106646,111678,'Stratton Broker in a Bowtie',2,34),(106646,52995,'Stratton Oakmont Commercial (voice)',2,35),(106646,948199,'Auckland Straight Line Host',0,36),(106646,172175,'Honorary Samantha Stogel',0,37),(106646,2256,'Nolan Drager (Jordan\'s Lawyer)',2,38),(106646,93620,'Waitress',1,39),(106646,512749,'Zip (Lude Buying Teenager #1)',2,40),(106646,1262740,'Pam',0,41),(106646,208659,'Heidi',0,42),(106646,964421,'Blair Hollingsworth',2,43),(106646,1232531,'SEC Attorney #1',2,44),(106646,152864,'SEC Attorney #2',0,45),(106646,1505848,'SEC Attorney #3',0,46),(106646,995514,'Barry Kleinman',2,47),(106646,1552937,'Straight Line Testimonial #1',0,48),(106646,1361813,'Rothschild Broker #2',0,49),(106646,94436,'Rothschild Broker #3',2,50),(106646,1155969,'Rothschild Broker #4',0,51),(106646,194087,'Rothschild Broker #8',0,52),(106646,1422571,'Investor\'s Center Broker #1',2,53),(106646,131946,'Investor\'s Center Broker #2',2,54),(106646,111116,'Stratton Broker #1',2,55),(106646,1028245,'Stratton Broker #2',0,56),(106646,83223,'Stratton Broker #3',2,57),(106646,169044,'Stratton Broker #4',0,58),(106646,1109617,'Stratton Broker #5',0,59),(106646,1318648,'Stratton Broker #6',0,60),(106646,1201134,'Young Broker',0,61),(106646,65729,'Another Broker',2,62),(106646,108919,'Party Broker #1',2,63),(106646,1544546,'Donnie\'s Assistant',0,64),(106646,130735,'Maitre d\' Hector',0,65),(106646,1365447,'Broker in Men\'s Room',0,66),(106646,1340884,'Honorary Raymond Samitz',0,67),(106646,1552938,'Swiss Customs Officer #1',2,68),(106646,155142,'Swiss Customs Officer #2',0,69),(106646,1433451,'Cop #1',2,70),(106646,1455760,'Cop #2',0,71),(106646,74961,'Police Officer #2',0,72),(106646,1371296,'Brookville Police Officer #2',2,73),(106646,1392605,'Wedding Singer #1',0,74),(106646,1105311,'Cristy',1,75),(106646,41314,'Hostess on The Naomi',1,76),(106646,1306572,'Skylar Belfort (4 Years Old)',0,77),(106646,1506479,'Lude Buying Teenager #2',0,78),(106646,77002,'Job Applicant #1',2,79),(106646,1541904,'Abby',0,80),(106646,205808,'FBI Agent #1',1,81),(106646,60119,'FBI Agent #2',2,82),(106646,1231495,'Prison Guard',0,83),(106646,1224374,'Inmate Playing Tennis #2',0,84),(106646,1184209,'Rao\'s Patron #1',0,85),(106646,1513512,'Rao\'s Patron #2',0,86),(106646,17930,'Rao\'s Patron #3',0,87),(106646,19869,'Audience Member #1',2,88),(106646,1366776,'Audience Member #3',2,89),(106646,1218273,'Audience Member #4',0,90),(106646,171701,'Audience Member #5',2,91),(106646,1184094,'Rocco #1',0,92),(106646,139188,'Wedding Guest (uncredited)',0,93),(106646,1274514,'Wedding Guest (uncredited)',0,94),(106646,1521875,'Wedding Guest (uncredited)',0,95),(106646,1553053,'Kacandes Diner Man (uncredited)',2,96),(106646,1386320,'Italian Coastguard (uncredited)',0,97),(106646,1075845,'Broker (uncredited)',0,98),(106646,1270890,'Broker (uncredited)',0,99),(106646,1267274,'Stratton Broker (uncredited)',0,100),(106646,1410805,'Stratton Broker (uncredited)',2,101),(106646,64516,'Stratton Broker (uncredited)',0,102),(106646,1511832,'Stratton Broker (uncredited)',0,103),(106646,1432383,'Stratton Broker (uncredited)',0,104),(106646,1264251,'Stratton Broker (uncredited)',0,105),(106646,1540279,'Upper Eastside Pedestrian (uncredited)',2,106),(106646,1172866,'Wolfpack #4 (uncredited)',0,107),(106646,973888,'Wolfpack #1 (uncredited)',2,108),(106646,1547515,'Young Stratton Inc. Broker (uncredited)',0,109),(106646,1454319,'Broker Applicant (uncredited)',0,110),(106646,1496862,'Audience Member (uncredited)',0,111),(106646,1553306,'Court Officer / Broker (uncredited)',0,112),(106646,1473960,'Pool Party Guest (uncredited)',1,113),(106646,1454320,'Nicky Koskoff\'s Escort (uncredited)',0,114),(106646,1553307,'Tai Chi Inmate (uncredited)',0,115),(106646,1553308,'Swiss Airline Passenger (uncredited)',1,116),(106646,130843,'Rao\'s Pedestrian (uncredited)',0,117),(106646,217437,'Kimmie Belzer\'s Desk Mate (uncredited)',2,118),(106646,1449157,'Singer',0,119),(106646,1387659,'Brantley (uncredited)',0,120),(106646,1446471,'Marina Sightseer (uncredited)',0,121),(106646,1544839,'Irritated Plane Passinger (uncredited)',2,122),(106646,1553377,'Party Goer (uncredited)',0,123),(106646,219447,'Miami Busboy (uncredited)',2,124),(106646,1503335,'Masseuse to Donnie Azoff (uncredited)',1,125),(106646,1360008,'Court Room Attendant (uncredited)',2,126),(106646,1553378,'Stratton Applicant (uncredited)',0,127),(106646,1066138,'Seminar Guest (uncredited)',0,128),(106646,1385066,'Strattonite (uncredited)',0,129),(106646,1358083,'Stripper (uncredited)',0,130),(106646,1200655,'Convention Attendee (uncredited)',0,131),(106646,1257564,'Courtroom Observer (uncredited)',0,132),(106646,1419121,'Kent - Broker (uncredited)',0,133),(106646,1483273,'Stock Broker (uncredited)',0,134),(106646,1553379,'1st Class Swiss Airline Passenger (uncredited)',0,135),(106646,1371769,'Call Girl (uncredited)',1,136),(106646,1192821,'Banker (uncredited)',0,137),(106646,98206,'Rudy (uncredited)',0,138),(106646,1586759,'Conference Attendee (uncredited)',2,139),(83542,31,'Dr. Henry Goose / Hotel Manager / Isaac Sachs / Dermot Hoggins / Cavendish Look-a-Like Actor / Zachry',2,0),(83542,4587,'Native Woman / Jocasta Ayrs / Luisa Rey / Indian Party Guest / Ovid / Meronym',1,1),(83542,388,'Captain Molyneux / Vyvyan Ayrs / Timothy Cavendish / Korean Musician / Prescient 2',2,2),(83542,1331,'Haskell Moore / Tadeusz Kesselring / Bill Smoke / Nurse Noakes / Boardman Mephi / Old Georgie',2,3),(83542,38941,'Adam Ewing / Poor Hotel Guest / Megan\'s Dad / Highlander / Hae-Joo Chang / Adam / Zachry Brother-in-Law',2,4),(83542,21688,'Tilda / Megan\'s Mom / Mexican Woman / Sonmi-451 / Sonmi-351 / Sonmi Prostitute',1,5),(83542,17064,'Cabin Boy / Robert Frobisher / Store Clerk / Georgette / Tribesman',2,6),(83542,65827,'Kupaka / Joe Napier / An-kor Apis / Prescient',2,7),(83542,19655,'Young Rufus Sixsmith / Old Rufus Sixsmith / Nurse James / Archivist',2,8),(83542,71057,'Talbot / Hotel Manager / Yoona-939 / Rose',1,9),(83542,55411,'Autua / Lester Rey / Duophsyte',2,10),(83542,4038,'Madame Horrox / Older Ursula / Yusouf Suleiman / Abbess',1,11),(83542,3291,'Rev. Giles Horrox / Hotel Heavy / Lloyd Hooks / Denholme Cavendish / Seer Rhee / Kona Chief',2,12),(83542,64160,'Old Salty Dog / Mr. Meeks / Prescient 1',2,13),(83542,49056,'Mr. Boerhaave / Guard / Leary the Healer',2,14),(83542,1077356,'Megan Sixsmith / 12th Star Clone',0,15),(83542,1118058,'Young Cavendish',0,16),(83542,1336199,'Javier Gomez / Jonas / Zachry\'s Older Nephew',2,17),(83542,108620,'Veronica',1,18),(83542,1323238,'Little Girl with Orison at Papa Song\'s / Catkin / Zachry Relative',0,19),(83542,10744,'Groundsman Withers',0,20),(83542,972117,'Miro',1,21),(83542,122648,'Haskell Moore\'s Dinner Guest / Mozza Hoggins',0,22),(83542,1084849,'Haskell Moore\'s Dinner Guest / Jarvis Hoggins',0,23),(83542,1336202,'Haskell Moore\'s Dinner Guest / Eddie Hoggins',0,24),(83542,56100,'Haskell Moore\'s Dinner Guest / Musician / Felix Finch / Lascivious Businessman',2,25),(83542,65448,'Haskell Moore\'s Dinner Guest / Nurse Judd / Aide in Slaughtership',1,26),(83542,176191,'Mr. Hotchkiss',2,27),(83542,987260,'Secretary',2,28),(83542,1434242,'Mr. Roderick',2,29),(41216,15577,'Gylfie (voice)',1,0),(41216,37260,'Otulissa (voice)',1,1),(41216,33449,'Marella (voice)',1,2),(41216,33192,'Metalbeak (voice)',2,3),(41216,28745,'Barran (voice)',1,4),(41216,133212,'Kludd (voice)',2,5),(41216,57829,'Twilight (voice)',2,6),(41216,15735,'Nyra (voice)',1,7),(41216,4783,'Allomere (voice)',2,8),(41216,12206,'Boron (voice)',2,9),(41216,1077326,'Eglantine (voice)',0,10),(41216,79713,'Strix Struma (voice)',0,11),(41216,23,'Bubo (voice)',2,12),(41216,6199,'Mrs. Plithiver (voice)',1,13),(41216,150536,'Echidna (voice)',2,14),(41216,118,'Ezylryb (voice)',2,15),(41216,59117,'Jutt (voice)',2,16),(41216,38941,'Soren (voice)',2,17),(41216,1331,'Noctus / Grimble (voice)',2,18),(41216,1371,'Digger (voice)',2,19),(41216,2128,'Jatt (voice)',2,20),(41216,1077327,'Pete (voice)',0,21),(184315,18918,'Hercules',2,0),(184315,6972,'Amphiarus',2,1),(184315,5049,'Cotys',2,2),(184315,17328,'Autolycus',2,3),(184315,76547,'Tydeus',2,4),(184315,87879,'Atalanta',1,5),(184315,54810,'Iolaus',0,6),(184315,12763,'King Eurystheus',2,7),(184315,559195,'Rhesus',2,8),(184315,3064,'Sitacles',2,9),(184315,933238,'Ergenia',1,10),(184315,1264233,'Arius',0,11),(184315,29234,'Phineas',2,12),(184315,1231106,'Stephanos',0,13),(184315,61589,'Demetrius',0,14),(184315,544078,'Megara',1,15),(184315,112692,'l\'exu00e9cuteur',2,16),(184315,946696,'le chef des guerriers Bessi',2,17),(184315,1378158,'Antimache',0,18),(184315,1358318,'Vixen',0,20),(184315,8399,'Gryza',2,21),(184315,1378160,'Lieutenant Markos',0,22),(184315,25446,'les gardes Cotys',0,23),(184315,25445,'les gardes Cotys',0,24),(184315,87594,'Nicolaus',0,25),(184315,1392665,'Alcmene',0,26),(138103,16483,'Barney Ross',2,0),(138103,976,'Lee Christmas',2,1),(138103,3,'Max Drummer',2,2),(138103,1100,'Trench',2,3),(138103,2461,'Conrad Stonebanks',2,4),(138103,10814,'Doc',2,5),(138103,74748,'Toll Road',2,6),(138103,16644,'Gunnar Jensen',2,7),(138103,53256,'Hale Caesar',2,8),(138103,7090,'Bonaparte',2,9),(138103,83271,'Thorn',2,10),(138103,3131,'Galgo',2,11),(138103,1347239,'Mars',0,12),(138103,997887,'Luna',0,13),(138103,34502,'John Smilee',2,14),(138103,1336,'Yin Yang',2,15),(138103,1409017,'Krug',0,16),(138103,2055,'Vata',2,17),(138103,1409123,'Local Cop #1',0,18),(138103,1409132,'Local Cop #2',0,19),(138103,90116,'Warden',0,20),(138103,1350263,'Head Bodyguard',0,21),(138103,559369,'Tech Guy',0,22),(138103,131101,'Colonel',2,23),(138103,1409157,'Somali Drug Warlord',0,24),(138103,1317159,'Conrad\'s Wife',1,25),(138103,22018,'Art Broker',2,26),(138103,206024,'Camilla',0,27),(138103,1409178,'Cyclops',0,28),(138103,101615,'Fight Watcher',2,29),(138103,1409187,'Conrad\'s Henchman',0,30),(257088,25616,'Bodhi',2,0),(257088,972356,'Johnny Utah',2,1),(257088,20374,'Samsara Dietz',1,2),(257088,18792,'FBI Instructor',2,3),(257088,5538,'Angelo Pappas',2,4),(257088,559195,'Chowder',2,5),(257088,6474,'FBI Agent',2,6),(257088,170231,'FBI Director Chapman',0,7),(257088,213596,'Roach',0,8),(257088,1104462,'Grommet',2,9),(257088,54024,'Pascal Al Fariq',2,10),(257088,1538780,'Young Johnny Utah',2,11),(257088,147638,'FBI Head',1,12),(257088,41883,'Jeff',2,13),(205775,74568,'Owen Chase',2,0),(205775,239996,'George Pollard',2,1),(205775,2037,'Matthew Joy',2,2),(205775,2039,'Old Thomas Nickerson',2,3),(205775,17064,'Herman Melville',2,4),(205775,20057,'Mrs. Nickerson',1,5),(205775,1136406,'Young Thomas Nickerson',2,6),(205775,220448,'Thomas Chappel',2,7),(205775,964834,'Owen Coffin',2,8),(205775,119783,'Benjamin Lawrence',2,9),(205775,1543010,'Barzallai Ray',0,10),(205775,1155724,'Ramsdell',0,11),(205775,1388917,'Richard Peterson',0,12),(205775,86045,'William Bond',2,13),(205775,1833,'Isaac Cole',2,14),(205775,1583579,'Sheppard',0,15),(205775,115679,'Peggy',1,16),(205775,26121,'Pollard Senior',0,17),(205775,20425,'Paul Macy',2,18),(205775,19903,'Benjamin Fuller',2,19),(205775,31384,'Spanish Captain',2,20),(205775,1374337,'Nantucket Townswoman',0,21),(205775,1462426,'Customs Officer',0,22),(205775,1543009,'Nantucket Townswoman',0,23),(205775,1371439,'Nantucket Passenger',0,24),(205775,1233266,'John Sanborn',0,25),(227973,1393177,'Charlie Brown (voice)',2,1),(227973,94011,'Snoopy / Woodstock (voice--archive)',2,2),(227973,1393179,'Pepperment Patty (voice)',0,4),(227973,1393178,'Lucy van Pelt (voice)',1,5),(227973,1393180,'Violet Grey (voice)',1,6),(227973,1256036,'Little red-haired girl (voice)',1,7),(227973,1271300,'Schroeder (voice)',0,8),(227973,1393181,'Linus (voice)',0,9),(227973,1393182,'Sally Brown (voice)',0,10),(227973,1393183,'Pig-Pen (voice)',0,11),(227973,1393184,'Franklin Armstrong (voice)',0,12),(227973,1393185,'Marcie (voice)',0,13),(227973,1393186,'Patty (voice)',0,14),(227973,1393187,'Shermy (voice)',0,15),(76758,3894,'John Miller',2,0),(76758,1006864,'Yu Mo',0,1),(76758,1031246,'Major Li',0,2),(76758,126851,'Shujuan Meng',0,3),(76758,550626,'Lt. Kato',0,4),(76758,46624,'Colonel Hasegawa',2,5),(76758,145093,'Chinese Soldier',0,6),(76758,15684,'Terry',2,7),(77953,23659,'Cam Brady',2,0),(77953,58225,'Marty Huggins',2,1),(77953,32597,'Tim Wattley',2,2),(77953,58224,'Mitch Wilson',2,3),(77953,461542,'Mitzi Huggins',0,4),(77953,582950,'Moderator Carl Terry',0,5),(77953,582952,'Dylan/Clay Huggins',2,6),(77953,12074,'Glen Motch',2,7),(77953,707,'Wade Motch',2,8),(77953,1248,'Raymond',2,9),(77953,232416,'Becky',1,10),(77953,189230,'Tripp',2,11),(77953,111678,'Travis',2,12),(77953,1055739,'Wes Talager',0,13),(77953,157865,'Mrs. Yao',1,14),(77953,169337,'Rose Brady',1,15),(77953,214695,'Shana',0,16),(77953,1003061,'Dancer',1,17),(77953,1211946,'Rick',2,18),(77953,1451161,'Reporter Gary',2,19),(77953,1816403,'Campaign Supporter (uncredited)',1,20),(37786,520,'Carrie Bradshaw',1,0),(37786,38025,'Charlotte York',1,1),(37786,38024,'Miranda Hobbes',1,2),(37786,2109,'Samantha Jones',1,3),(37786,38026,'Mr. Big',2,4),(37786,27552,'Steve Brady',2,5),(37786,3212,'Harry Goldenblatt',2,6),(37786,58355,'Lily York Goldenblatt',0,7),(37786,118514,'Lily York Goldenblatt',0,8),(37786,57551,'Anthony Marantino',2,9),(37786,1542,'Stanford Blatch',2,10),(37786,118515,'Nicky',0,11),(37786,66776,'Herself',1,12),(37786,118516,'Band Leader',0,13),(37786,59860,'Erin',1,14),(37786,32224,'Jerry \'Smith\' Jerrod',2,15),(37786,21942,'Rikard Spirit',2,16),(37786,8792,'Magda',1,17),(37786,142788,'',0,18),(37786,129014,'Mahmud',0,19),(37786,38405,'Aidan Shaw',2,20),(37786,965678,'Annesha',0,21),(37786,1221134,'Patience',0,22),(37786,1417527,'VIP Party Patron',0,23),(37786,1218645,'Himself',0,24),(37786,955,'Carmen Garcu00eda Carriu00f3n',1,25),(37786,76594,'Herself',1,26),(37786,41379,'Mr. Safir, Hotel Manager',2,27),(37786,63914,'Herself',1,28),(37786,145113,'Reginald',0,29),(37786,222141,'Allie',1,30),(37786,210818,'Kevin',0,31),(57800,5723,'Sid (voice)',2,0),(57800,15757,'Manny (voice)',2,1),(57800,5713,'Scrat (voice)',2,2),(57800,5724,'Diego (voice)',2,3),(57800,57599,'Crash (voice)',2,4),(57800,16866,'Shira (voice)',1,5),(57800,15758,'Ellie (voice)',1,6),(57800,22970,'Captain Gutt (voice)',2,7),(57800,11109,'Flynn (voice)',2,8),(57800,54415,'Louis (voice)',2,9),(57800,968660,'Steffie (voice)',1,10),(57800,221606,'Katie (voice)',1,11),(57800,27102,'Granny (voice)',0,12),(57800,21088,'Milton / Hunky Siren (voice)',2,13),(57800,221581,'Raz (voice)',1,14),(57800,86626,'Squint (voice)',2,15),(57800,166772,'Eunice (voice)',1,16),(57800,1315615,'Creature Siren (voice)',0,17),(57800,1178792,'Additional Voices',0,18),(57800,74688,'Peaches',1,19),(57800,87055,'Scratte',1,20),(57800,15760,'Eddie',2,21),(57800,197315,'Ethan',2,22),(57800,4275,'Silas',2,23),(57800,208099,'Gupta',2,24),(57800,1335112,'Additional Voices (voice)',2,25),(57800,1687265,'Additional Voices (voice)',1,26),(57800,1072572,'Female Siren (voice)',1,28),(57800,1214603,'Dumb Mammoth / Various (voice)',0,29),(57800,1506865,'Marshall (voice)',0,30),(57800,136221,'Beaver (voice)',0,31),(57800,40138,'Panicked Start (voice)',0,32),(57800,11108,'Buck (voice)',2,33),(57800,1229498,'Meghan (voice)',0,34),(57800,77887,'Uncle Fungus (voice)',2,35),(57800,2387,'Ariscratle (voice)',2,36),(57800,1178796,'Additional Voices (voice)',0,37),(150689,1016168,'Cinderella',1,0),(150689,112,'Lady Tremaine',1,1),(150689,512991,'Prince Kit Charming',2,2),(150689,1283,'Fairy Godmother',1,3),(150689,1640,'Grand Duke',2,4),(150689,302165,'Anastasia Tremaine',1,5),(150689,43547,'Captain',2,6),(150689,21343,'Cinderella\'s Father',2,7),(150689,39459,'Cinderella\'s Mother',1,8),(150689,7025,'Baron',2,9),(150689,47632,'Master Phineus',2,10),(150689,1267123,'Chief Guard Cassius',0,11),(150689,1312524,'Princess Mei Mei',0,12),(150689,229320,'Prince\'s Retinue Member',2,13),(150689,1019865,'Trooper',0,14),(150689,1394375,'Palace Official',2,15),(150689,1394379,'Halberdier',2,16),(150689,118036,'Slipper Lady',1,17),(150689,1394348,'Princess Valentina (uncredited)',0,18),(150689,1129886,'Fencer',0,19),(150689,1207207,'Ball Dancer (uncredited)',0,20),(150689,1394384,'Ball Guest (uncredited)',0,21),(150689,1394397,'Wealthy Maiden (uncredited)',1,22),(150689,1307212,'Ball Guest (uncredited)',0,23),(150689,1394406,'Gentleman (uncredited)',0,24),(150689,1394383,'Townsperson / Courtier / Ball Guest (uncredited)',1,25),(150689,937,'The King',2,26),(150689,1186087,'Drizella Tremaine',1,27),(150689,126042,'Royal Crier',0,28),(150689,1394403,'Ball Guest (uncredited)',1,29),(150689,209631,'Royal Crier\'s Assistant',0,30),(150689,62106,'King\'s Doctor',0,31),(150689,1394374,'Palace Guard (uncredited)',0,32),(150689,1206334,'Ballroom Palace Guard',2,33),(150689,1394373,'Cinderella (10 years)',0,34),(150689,1503070,'Princess Chelina of Zaragosa',0,35),(150689,1394387,'Goose Coachman',0,36),(150689,1503071,'Lizard Footman',0,37),(150689,1503072,'Slipper Lady',1,38),(150689,1503073,'Slipper Lady',0,39),(150689,1231177,'Slipper Lady',0,40),(150689,56101,'Lord Veneering',2,41),(150689,1503074,'Cook',0,42),(150689,1825405,'Farmer',0,43),(150689,1503075,'Gardener',0,44),(150689,1503076,'Maid',0,45),(150689,1278530,'Stable Boy',0,46),(150689,1503077,'Prince\'s Retinue Member',0,47),(150689,1503078,'Prince\'s Retinue Member',0,48),(150689,1467174,'Ball Guest',0,49),(150689,1503079,'Fencer (as Gregory Lockett)',0,50),(150689,1394385,'Visiting Dignitary (uncredited)',0,51),(150689,1394381,'Townsperson / Ball Guest (uncredited)',0,52),(150689,1394388,'Latin Noblewoman (uncredited)',0,53),(150689,1502465,'Ball Guest (uncredited)',0,54),(150689,1394392,'Ball Dancer (uncredited)',0,55),(150689,1394382,'Townsperson / Onion Seller (uncredited)',0,56),(150689,1503080,'Townsperson (uncredited)',0,57),(150689,1394396,'Townsperson (uncredited)',0,58),(150689,1394395,'Princess Sasia of Arabia (uncredited)',0,59),(150689,1394380,'Courtier Guest (uncredited)',0,60),(150689,1394401,'Palace Footman (uncredited)',0,61),(150689,1394393,'Nobleman (uncredited)',0,62),(150689,1394376,'Ball Guest (uncredited)',0,63),(150689,1503081,'Ball Guest (uncredited)',0,64),(150689,1394405,'Palace Guard (uncredited)',0,65),(150689,1394399,'Palace Footman (uncredited)',0,66),(150689,1394400,'Hopeful Maiden (uncredited)',0,67),(150689,1394408,'Palace Guard (uncredited)',0,68),(150689,1394409,'Townsperson / Tavern Drinker (uncredited)',0,69),(150689,1151517,'Market Trader (uncredited)',0,70),(150689,1394386,'Nicolas Golding (uncredited)',0,71),(150689,1502482,'Fisherman (uncredited)',0,72),(150689,1394377,'Footman (uncredited)',0,73),(150689,1394398,'Slipper Maiden / Townsperson (uncredited)',0,74),(150689,1394391,'Palace Guard (uncredited)',0,75),(150689,1503082,'Prince\'s Retinue Member',0,76),(150689,1503083,'Townsperson (uncredited)',0,77),(68737,1229,'Master Gregory',2,0),(68737,1231,'Mother Malkin',1,1),(68737,25130,'Tom Ward',2,2),(68737,227454,'Alice Deane',1,3),(68737,239019,'Billy Bradley',2,4),(68737,938,'Radu',2,5),(68737,11616,'Mam Ward',1,6),(68737,43202,'Bony Lizzie',1,7),(68737,58319,'Urag',2,8),(68737,155282,'Rogue Knight',2,9),(68737,2250,'Old Guard',2,10),(68737,1300745,'Fisherman',2,11),(68737,1392937,'Member of Mob',0,12),(68737,27124,'Prelate',2,13),(68737,1328755,'Leader Soldier',0,14),(68737,53720,'Malcom Ward',2,15),(68737,1061054,'Tomb Robber',0,16),(68737,1356538,'Strix',2,17),(68737,583052,'Soldier',2,18),(68737,1366510,'Grave Robber',0,19),(68737,58902,'Virahadra',2,20),(68737,2277,'Grave-robber',2,21),(68737,1366661,'Simon Ward',0,22),(68737,584543,'Cate Ward',0,23),(68737,1392949,'Little Girl',0,25),(68737,1368501,'Innkeeper',0,26),(68737,1392950,'Young Guard',2,27),(68737,219303,'Stray Dog',1,28),(68737,1392952,'Jack Ward',0,29),(68737,1392953,'Head Counselor',0,30),(68737,1392954,'Priest\'s Wife',0,31),(68737,1259945,'Mongolian',0,32),(68737,1392956,'Noblewoman',0,33),(68737,1392957,'Soldier',0,34),(68737,61168,'Timeless Hag',1,35),(157353,85,'Dr. Will Caster',2,0),(157353,6162,'Max Waters',2,1),(157353,15556,'Evelyn Caster',1,2),(157353,51072,'Bree',1,3),(157353,192,'Joseph Tagger',2,4),(157353,2037,'Agent Donald Buchanan',2,5),(157353,6614,'Colonel Stevens',2,6),(157353,5365,'Martin',2,7),(157353,118643,'Bob',2,8),(157353,1144931,'MIT Programmer',1,9),(157353,74302,'Joel Edmund',2,10),(157353,40039,'Paul',2,11),(157353,53969,'Roger',2,12),(157353,216782,'Heng',2,13),(157353,1357076,'Chiu',2,14),(157353,3982,'Dr. Thomas Casey',2,15),(157353,526,'James Thomas',2,16),(157353,17421,'Dr. Strauss',2,17),(157353,1505457,'Meth Head #1',2,18),(157353,1194214,'Meth Head #2',2,19),(157353,1673616,'Red Hooded Teenager',2,20),(157353,68108,'Tech Conference Coordinator',2,21),(157353,999817,'Groupie',1,22),(157353,1673618,'RIFT Hacker',2,23),(157353,1631125,'Reporter',1,24),(157353,1673619,'BDC Greeter',1,25),(157353,1535146,'BDC Servant',1,26),(157353,1301633,'FBI Agent',2,27),(157353,85419,'FBI Agent',2,28),(157353,208061,'Solar Field Worker',2,29),(157353,228139,'Will In Hybrid',2,30),(157353,1673624,'Will In Hybrid',2,31),(157353,1488513,'Special Forces on Roof',2,32),(157353,1331264,'Medical Lab Tech',2,33),(157353,1673637,'RIFT Surgeon',2,34),(157353,8553,'Miserable Student',2,35),(157353,1371850,'Hybrid Townsman (uncredited)',2,36),(157353,1302504,'Nurse (uncredited)',1,37),(157353,1673648,'Tech Conference Attendee (uncredited)',1,38),(157353,1673649,'Townswoman (uncredited)',1,39),(157353,1673650,'Berkeley Student (uncredited)',2,40),(61791,17051,'Will Rodman',2,0),(61791,76792,'Caroline Aranha',1,1),(61791,12074,'Charles Rodman',2,2),(61791,1248,'John Landon',2,3),(61791,10993,'Dodge Landon',2,4),(61791,1333,'Caesar',2,5),(61791,35013,'Steven Jacobs',2,6),(61791,51383,'Robert Franklin',2,7),(61791,111195,'Rodney',2,8),(61791,42711,'John Hamil',2,9),(61791,5892,'Douglas Hunsiker',2,10),(61791,70175,'Irena',1,11),(61791,228890,'Donnie Thompson',2,12),(61791,1865693,'Todd Hunsiker',0,13),(61791,1565027,'Alice Hunsiker',0,14),(61791,1832997,'Teenage Alice Hunsiker',0,15),(61791,62716,'Dottie',0,16),(61791,1865694,'Linda',0,17),(61791,58395,'Maurice / Court Clerk',1,18),(61791,236696,'Rocket / Bright Eyes',0,19),(61791,6645,'Buck',2,20),(61791,189696,'Koda',0,21),(61791,1164341,'Cornelia',0,22),(61791,14050,'Alpha',2,23),(61791,103285,'Party Girl #1',1,24),(61791,208678,'Party Girl #2',1,25),(61791,198615,'SFPD #2',2,26),(61791,1128861,'Scared Girl in Stairway (uncredited)',1,27),(47964,62,'John McClane',2,0),(47964,224181,'Jack McClane',2,1),(47964,8197,'Komorov',2,2),(47964,17628,'Lucy McClane',1,3),(47964,80998,'Irina',1,4),(47964,230400,'Alik',2,5),(47964,6614,'Collins',2,6),(47964,17341,'Murphy',2,7),(47964,1150430,'Chagarin',0,8),(47964,130903,'Anton',0,9),(47964,64413,'Russian Mafia Member',0,10),(47964,456735,'Prosecutor',2,11),(47964,52762,'Taxi driver',2,12),(47964,25382,'Reporter',1,13),(47964,212778,'Lucas',1,14),(47964,125684,'Russian Mafia Member',0,15),(47964,235317,'Russian Mafia Member',0,16),(47964,1047710,'Mako',2,17),(47964,1009511,'Colonel',2,18),(47964,1059926,'(uncredited)',0,19),(44048,5292,'Frank Barnes',2,0),(44048,62064,'Will',2,1),(44048,5916,'Connie',1,2),(44048,824,'Dewey',2,3),(44048,18472,'Inspector Werner',2,4),(44048,4728,'Bunny',2,5),(44048,37027,'Ned',2,6),(44048,51990,'Gilleece',2,7),(44048,26974,'Darcy',0,8),(44048,37204,'Judd Stewart',2,9),(44048,142204,'Janeway',2,10),(44048,130108,'Nicole',1,11),(44048,142205,'Maya',1,12),(44048,142206,'Michael Colson',2,13),(44048,170145,'Clark',2,14),(44048,970534,'Ryan Scott',2,15),(44048,63640,'Baker',2,16),(44048,115804,'Hoffman',2,17),(44048,1465967,'Galvin\'s Assistant',0,18),(44048,1128450,'Captain Allen',2,19),(116745,7399,'Walter Mitty',2,0),(116745,41091,'Cheryl Melhoff',1,1),(116745,10872,'Todd Maher',2,2),(116745,4090,'Edna Mitty',1,3),(116745,36801,'Ted Hendricks',2,4),(116745,17696,'Odessa Mitty',1,5),(116745,2228,'Sean O\'Connell',2,6),(116745,28419,'Gary Mannheim',0,7),(116745,185705,'Cab Driver',0,8),(116745,961834,'Ted\'s Toner Box Associate',2,9),(116745,78404,'Walter\'s Dad',2,10),(116745,94432,'Hernando',2,11),(116745,1406450,'Tim Naughton',0,12),(65754,8784,'Mikael Blomkvist',2,0),(65754,108916,'Lisbeth Salander',1,1),(65754,290,'Henrik Vanger',2,2),(65754,5725,'Dragan Armansky',2,3),(65754,1640,'Martin Vanger',2,4),(65754,32,'Erika Berger',1,5),(65754,782,'Dirch Frode',2,6),(65754,20810,'Anita Vanger',1,7),(65754,6368,'Annika Blomkvist Giannini',1,8),(65754,11855,'Cecilia Vanger',1,9),(65754,78147,'Miriam Wu',1,10),(65754,6104,'Young Henrik Vanger',2,11),(65754,255653,'Hans-Erik Wennerstru00f6m',0,12),(65754,11040,'Young Harald Vanger',0,13),(65754,93236,'Young Gustaf Morell',2,14),(65754,52760,'Detective Isaksson',2,15),(65754,31387,'Nils Bjurman',0,16),(65754,20425,'Detective Inspector Gustaf Morell',2,17),(65754,111786,'Holger Palmgren',0,18),(65754,147255,'Plague',2,19),(65754,6661,'Isabella Vanger',1,20),(65754,144310,'Harald',0,21),(65754,1003086,'Pernilla',1,22),(65754,592421,'Anna',0,23),(65754,1196074,'Young Anna',0,24),(65754,73087,'Young Isabella',1,25),(65754,1153819,'Young Martin',0,26),(65754,126363,'Birger',2,27),(65754,1269595,'Young Frode',0,28),(65754,1137324,'Nilsson',0,29),(65754,76328,'Doctor',0,30),(65754,1167005,'Tech at MacJesus',0,31),(65754,833900,'Photo Editor',1,32),(65754,66147,'Liv',1,33),(65754,108111,'TV Newscaster',0,34),(65754,110800,'Greger',2,35),(65754,1215396,'Nurse',0,36),(65754,74387,'Hardware Clerk',2,37),(65754,79265,'Mildred',0,38),(65754,94022,'Tech Clerk',2,39),(65754,1034967,'Lindgren',0,40),(65754,29237,'Trinity',2,41),(65754,132184,'Junkie',0,42),(65754,931605,'Wennerstru00f6m\'s Lawyer',0,43),(65754,87194,'Barbados TV Reporter',1,44),(65754,1029217,'Zurich TV Reporter',0,45),(65754,202875,'Spain TV Reporter',1,46),(65754,92404,'Christer Malm',2,47),(65754,1298382,'Book of Death Victim',0,48),(65754,128404,'Udevalla Detective',2,49),(65754,1400276,'Murder Victim (uncredited)',0,50),(65754,1011900,'Hospital Visitor (uncredited)',2,51),(65754,1178149,'Lars (uncredited)',0,52),(65754,108588,'Karlstad Police Officer (uncredited)',2,53),(65754,101037,'Hanzel (uncredited)',2,54),(65754,1349942,'Flight Attendant (uncredited)',0,55),(65754,1393425,'Abused woman (uncredited)',0,56),(65754,1548649,'Harem Girl (uncredited)',0,57),(65754,1611278,'Lawyer',0,58),(271969,54738,'Judah Ben-Hur',2,0),(271969,20286,'Messala Severus',2,1),(271969,17289,'Ju00e9sus Christ',2,2),(271969,142213,'Esther',1,3),(271969,8786,'Naomi Ben-Hur',1,4),(271969,90060,'Pontius Pilate',2,5),(271969,515628,'Tirzah Ben-Hur',1,6),(271969,192,'Sheik Ilderim',2,7),(271969,935235,'Druses',0,8),(271969,57412,'Gestas',0,9),(271969,2467,'Quintus Arius',2,10),(271969,117640,'Simonides',2,11),(271969,1111433,'Peter',0,12),(271969,1198663,'Marcus Decimus',2,13),(271969,1562107,'Jacob',0,14),(271969,94255,'Kadeem',2,15),(271969,1434942,'Elijah',0,16),(271969,1397757,'Avigail',0,17),(271969,84706,'Flores',0,18),(258509,11662,'Dave',2,2),(258509,15033,'Alvin (voice)',2,4),(258509,98285,'Ashley Grey',1,6),(258509,5661,'Simon (voice)',2,7),(258509,49915,'Theodore (voice)',2,8),(258509,53862,'Eleanor (voice)',1,9),(258509,70696,'Samantha',1,10),(258509,1772,'Jeanette (voice)',1,11),(258509,18979,'Brittany (voice)',1,12),(258509,54722,'Hotel Babysitter',1,13),(258509,25147,'Agent Suggs',2,14),(258509,1456705,'First Class Flight Attendant',0,15),(258509,1390021,'Second Record Executive',0,17),(258509,1181263,'Large Cowboy',2,18),(258509,1046665,'Wyatt the Pizza Guy',0,19),(258509,1552637,'Miles',0,20),(258509,202958,'Barry',2,21),(258509,1559688,'Party Cop #1',0,22),(258509,1278911,'Party Cop #2',0,23),(258509,1559689,'Kid',2,24),(258509,1559690,'Paparazzi #1',0,25),(258509,1370998,'Paparazzi #2',0,26),(258509,38334,'Ms. Price',1,27),(258509,1332680,'TSA Officer',1,28),(258509,1559691,'Cab Coordinator',0,29),(258509,75318,'Party Planner',0,30),(258509,1471841,'Man Behind Mask',0,31),(257344,19292,'Sam Brenner',2,0),(257344,11705,'Violet Van Patten',1,1),(257344,22970,'Eddie Plant',2,2),(257344,54415,'Ludlow Lamonsoff',2,3),(257344,32895,'President Will Cooper',2,4),(257344,78030,'Lady Lisa',1,5),(257344,48,'Corporal Hill (SAS Officer)',2,6),(257344,13636,'Carolyn Cooper',1,7),(257344,1248,'Admiral Porter',2,8),(257344,570775,'Matty',2,9),(257344,707,'1982 Championship MC',2,10),(257344,60959,'President\'s Assistant Jennifer',1,11),(257344,166029,'White House Reporter #1',2,12),(257344,53684,'White House Reporter #2',2,13),(257344,1496755,'13-year-old Brenner',0,14),(257344,98394,'Sergeant Dylan Cohan',2,15),(257344,53647,'Mickey Lamonsoff',1,16),(257344,538687,'Professor Iwatani',2,17),(257344,17867,'Michael the Robot',0,18),(257344,56728,'Defense Secretary',2,19),(257344,60961,'White House Junior Aide Jared',0,20),(257344,67520,'Navy Secretary',2,21),(257344,1219489,'White House Press Secretary',1,22),(257344,92777,'CIA Chief',2,23),(257344,1214573,'Serena Willams',0,24),(257344,1218610,'Martha Stewart',1,25),(257344,20818,'Abusive Citizen',2,26),(257344,32907,'Pac-Man Victim',2,27),(257344,1024492,'Seal',0,28),(257344,1260011,'Boy on London Street',2,29),(257344,1202534,'Lemonadie Sadie',0,30),(257344,1522344,'Cyber Chick #1',0,31),(257344,1522345,'Cyber Chick #2',1,32),(257344,1129795,'New Reporter',0,33),(257344,166489,'NY Police Commissioner',2,34),(257344,1123418,'Colonel Devereux',0,35),(257344,1271681,'Sweet Scout Girl',0,36),(257344,1683830,'Arcader Choir Girl',0,37),(257344,1627370,'Soccer Player',2,38),(257344,1683831,'Classroom Scout Girl',0,39),(257344,1683833,'Classroom Scout Girl',0,40),(257344,1683834,'Classroom Scout Girl',0,41),(257344,58477,'White House Gate Guard',0,42),(257344,1683836,'Electric Dream Factory Repairman',0,43),(257344,1683838,'13-Year Old Cooper',0,44),(257344,1683839,'13-Year Old Eddie',0,45),(257344,1683840,'8-Year Old Ludlow',0,46),(257344,1673617,'Old Woman in London Apartment',0,47),(257344,1252850,'Indian Teenage Boy',0,48),(257344,1683842,'Indian Teenage Girl',0,49),(257344,1683843,'Seal',2,50),(257344,1084758,'Seal',2,51),(257344,1683845,'Seal',0,52),(257344,1683847,'Fighter Pilot',2,53),(257344,76112,'DARPA Scientist',0,54),(257344,1683850,'TV News Anchor',1,55),(257344,1683851,'Secret Service Man',0,56),(257344,168625,'Secret Service Man',0,57),(257344,1683856,'Abusive Citizen',0,58),(257344,1481021,'Abusive Citizen',0,59),(257344,1683857,'Abusive Citizen',0,60),(257344,1461424,'Sergeant Cohan\'s Mother',0,61),(257344,1683858,'Arcade Employee',0,62),(257344,1683859,'DC Valet',0,63),(257344,1683860,'Warden',0,64),(257344,1683862,'Press Person',0,65),(257344,181408,'Daryl Hall',0,66),(257344,1332369,'John Oates',0,67),(257344,40009,'Max Headroom (voice)',2,68),(257344,23679,'Additional Character Voice (voice)',2,69),(257344,1302231,'Additional Character Voice (voice)',0,70),(257344,1639966,'Lab Technician',0,71),(76285,33235,'Percy Jackson',2,0),(76285,109513,'Annabeth Chase',1,1),(76285,60077,'Tyson',2,2),(76285,207401,'Clarisse La Rue',1,3),(76285,53336,'Grover Underwood',2,4),(76285,105727,'Luke Castellan',2,5),(76285,130769,'Chris Rodriguez',2,6),(76285,1257753,'Thalia Grace',0,7),(76285,34257,'Chiron',2,8),(76285,2283,'Mr. D / Dionysus',2,9),(76285,51797,'Hermes',2,10),(76285,51300,'Cyclops',2,11),(76285,112692,'Polyphemus / Laistrygonian',2,12),(76285,2372,'Polyphemus (voice)',2,13),(76285,1272881,'Tereus',0,14),(76285,1272883,'Young Annabeth',1,15),(76285,1272884,'Young Grover',0,16),(76285,1272885,'Young Luke',0,17),(76285,116416,'Young Thalia',1,18),(76285,111513,'Gray Sister #2',1,19),(76285,1294,'Gray Sister #3',1,20),(76285,6944,'Martha (voice)',1,21),(291805,44735,'J. Daniel Atlas',2,0),(291805,57755,'Merritt McKinney',2,1),(291805,103,'Dylan Rhodes',2,2),(291805,54697,'Jack Wilder',2,3),(291805,192,'Thaddeus Bradley',2,4),(291805,3895,'Arthur Tressler',2,5),(291805,51988,'Lula',1,6),(291805,10980,'Walter',2,7),(291805,17380,'Li',2,8),(291805,513677,'Allen Scott-Frank',2,9),(291805,5411,'Natalie Austin',1,10),(291805,84227,'Zoey Taylor',1,11),(291805,1394335,'Magician Assistant',1,12),(291805,37204,'Agent Cowan',2,13),(291805,10075,'Bu Bu',1,14),(291805,1173231,'Owen Case',2,15),(291805,1363049,'80s Pedestrian',2,16),(291805,1626067,'Green Umbrella Girl',1,17),(291805,1379281,'FBI Agent',0,18),(291805,1547894,'New Year\'s Eve Reveller',1,19),(291805,40687,'Lionel Shrike',2,20),(291805,1360202,'Agent 2 UK',1,21),(291805,1743032,'Young Dylan',0,22),(291805,1646788,'Chase McKinney',0,23),(291805,1743493,'Hannes Pike',0,24),(291805,1639121,'Lab Tech',0,25),(291805,1743494,'Head Security Guard',0,26),(291805,1507487,'Case Advisor',0,27),(291805,1743495,'Agent Dore',0,28),(291805,1665010,'Agent UK',2,29),(291805,114017,'Prison Guard 2 (US)',0,30),(291805,1225592,'Eye (voice)',2,31),(291805,1743497,'Chef',0,32),(291805,1071127,'Tressler Assitant',1,33),(291805,1743498,'Prison Guard US',0,34),(291805,1743499,'Octa Guard',0,35),(291805,1743500,'Octa Guard',0,36),(291805,213929,'Bo Walsh',0,37),(291805,1743501,'Disappearing Lady 1',1,39),(291805,1743502,'Disappearing Lady 2',1,40),(291805,1172388,'Jack Stooge 1A',0,41),(291805,1743503,'Jack Stooge 1B',0,42),(291805,1743504,'Jack Stooge 2A',0,43),(291805,1743505,'Jack Stooge 2B',0,44),(291805,1743506,'Science Lab Guard',0,45),(291805,1743508,'Science Lab Guard 2',0,46),(291805,1743509,'Case Assistant',1,47),(291805,1003061,'Casino Dancer',1,48),(291805,1426658,'Casino Dancer',1,49),(291805,1743515,'Casino Dancer',2,50),(291805,1148762,'Casino Dancer',0,51),(291805,1743518,'Street Drummer',0,52),(291805,588556,'Herself',0,53),(291805,1663441,'Student (uncredited)',0,54),(291805,1388891,'Walter\'s Guard (uncredited)',2,55),(291805,1743520,'New Years Eve reveller (uncredited)',1,56),(291805,1743566,'Horseman Fan (uncredited)',0,57),(291805,1663439,'New Year\'s Eve Reveller (uncredited)',0,58),(291805,1504807,'Business Guest (uncredited)',0,59),(291805,1496276,'Party Girl (uncredited)',1,60),(291805,1735668,'Crowd (uncredited)',0,61),(291805,1379283,'Kezia Campbell (uncredited)',1,62),(291805,1743573,'Audience Member (uncredited)',1,63),(291805,1743574,'Cameraman with Film Crew (uncredited)',0,64),(291805,1359426,'Party Goer (uncredited)',0,65),(291805,1743575,'New Years Eve Crowd (uncredited)',1,66),(291805,1743576,'Demonstrator (uncredited)',0,67),(291805,1743577,'Spectator (uncredited)',0,68),(291805,1743578,'Spectator (uncredited)',0,69),(291805,1743579,'New Year\'s Eve Guest (uncredited)',1,70),(291805,1742685,'Macau Bazaar Passerby (uncredited)',0,71),(291805,1743580,'New Year\'s Eve Reveller (uncredited)',0,72),(291805,1502439,'New Year\'s Eve Reveller (uncredited)',0,73),(291805,1147918,'New Year\'s Eve Reveller (uncredited)',1,74),(291805,1743581,'Eye Magician (uncredited)',0,75),(291805,1743582,'OCTA Show Spectator (uncredited)',0,76),(291805,1743583,'New Year\'s Eve Crowd Member (uncredited)',0,77),(291805,1743585,'Pedestrian #1 (uncredited)',0,79),(291805,1743587,'FBI Agent (uncredited)',0,80),(291805,1743588,'NYE Party Boy (uncredited)',0,81),(291805,1743589,'FBI Agent (uncredited)',0,82),(291805,1394403,'Girl (uncredited)',1,83),(291805,1743590,'TV Lead Camera Crew Member (uncredited)',0,84),(291805,1743591,'New Years Eve Reveller (uncredited)',1,85),(291805,1743593,'Stage Crew (uncredited)',0,86),(291805,1495607,'New Year\'s Eve Reveller (uncredited)',1,87),(291805,1379282,'Student (uncredited)',1,88),(291805,1565074,'Shrike TV Crew (uncredited)',0,89),(291805,1743594,'Tressler\'s Assistant (uncredited)',1,90),(291805,578690,'New York State Police Officer (uncredited)',0,91),(291805,1147920,'OCTA Staff Manager (uncredited)',0,92),(291805,1674664,'Photographer (uncredited)',1,93),(291805,1502441,'New Year\'s Eve Reveller (uncredited)',1,94),(291805,1651393,'New Year\'s Eve Reveller (uncredited)',0,95),(291805,1743613,'Audience Member (uncredited)',0,96),(291805,1735653,'New Year\'s Eve Reveller (uncredited)',1,97),(291805,1743615,'TV Camera Man / Stage Crew (uncredited)',0,98),(291805,1743616,'Hannes Attractive Woman (uncredited)',1,99),(291805,1744070,'Special Guest Official (uncredited)',1,100),(291805,1555943,'Spectator in the Woods (uncredited)',0,101),(291805,1663430,'Guest at Tech Show (uncredited)',0,102),(291805,1744071,'New Year\'s Eve Pedestrian (uncredited)',1,103),(291805,1744072,'New Year\'s Eve Reveller (uncredited)',1,104),(291805,1744073,'Macau VIP Guest (uncredited)',1,105),(291805,1744075,'Goth Girl (uncredited)',1,106),(291805,1322312,'VIP Guest (uncredited)',0,107),(291805,1744076,'Goth Girl (uncredited)',1,108),(291805,1744078,'Walter\'s Guard (uncredited)',0,109),(291805,1744079,'VIP Guest (uncredited)',1,110),(291805,1744082,'Tech Crowd (uncredited)',0,111),(291805,1744085,'Police Officer (uncredited)',1,112),(291805,1744087,'Macau Gangster (uncredited)',0,113),(291805,1462431,'New Yorker (uncredited)',1,114),(291805,1744089,'OCTA Vip Guest, Daughter (uncredited)',1,115),(291805,1744090,'New Year\'s Eve Reveller (uncredited)',0,116),(291805,1744091,'New York State Cop (uncredited)',0,117),(291805,1363053,'Chinese Lady (uncredited)',1,118),(291805,1744094,'Audience Member (uncredited)',1,119),(291805,1744095,'NYE Party Goer (uncredited)',1,120),(291805,1744097,'Market Customer (uncredited)',0,121),(291805,1744098,'New Year\'s Eve Reveller (uncredited)',0,122),(291805,1522262,'Chinese Gang Member (uncredited)',2,123),(291805,1509637,'New Year\'s Eve Reveller (uncredited)',1,124),(291805,1744101,'Metropolitan Police (uncredited)',0,125),(291805,1744103,'Prison Guard (uncredited)',0,126),(291805,1744105,'Inspired Onlooker (uncredited)',0,127),(291805,1744106,'New Year\'s Eve Reveller (uncredited)',1,128),(291805,1394361,'Macau Guest (uncredited)',0,129),(291805,1744109,'Girl (uncredited)',1,130),(291805,1744116,'New Year\'s Eve Reveller (uncredited)',0,131),(291805,1744117,'New Year\'s Eve Reveller (uncredited)',0,132),(291805,1485460,'American Bar Drinker (uncredited)',0,133),(291805,1744120,'Uniformed Police Officer (uncredited)',1,134),(291805,1744122,'New Year\'s Eve Reveller (uncredited)',1,135),(291805,1744124,'New Year\'s Eve crowd (uncredited)',0,136),(291805,1371439,'Computer Technician (uncredited)',0,137),(291805,1739873,'80s Flashback Audience (uncredited)',1,138),(291805,1744125,'New Year\'s Eve Reveller (uncredited)',0,139),(291805,1264641,'Tech Crowd (uncredited)',1,140),(291805,1651386,'New Year\'s Eve Reveller (uncredited)',0,141),(291805,1663424,'New Year\'s Eve Reveller (uncredited)',1,142),(46195,44735,'Blu (voice)',2,0),(46195,1813,'Jewel (voice)',1,1),(46195,41087,'Linda (voice)',1,2),(46195,43775,'Alice/Goose (voice)',1,4),(46195,82092,'Pedro (voice)',2,5),(46195,27102,'Chloe/Goose (voice)',0,6),(46195,41798,'Rafael (voice)',2,6),(46195,134,'Nico (voice)',2,8),(46195,17289,'Tulio (voice)',2,9),(46195,55936,'Nigel (voice)',0,10),(46195,60255,'Fernando (voice)',2,11),(46195,56903,'Luiz (voice)',2,12),(46195,62067,'Marcel (voice)',2,13),(49852,18050,'Mary',1,0),(49852,78729,'Uncle Albert',2,1),(49852,1241,'The Rat King',2,2),(49852,47468,'The Rat Queen / Frau Eva',1,3),(49852,142389,'The Prince / Nicholas Charles',2,4),(49852,52931,'Max',0,5),(49852,20766,'Father',2,6),(49852,567787,'Mother / The Snow Fairy',1,7),(49852,1323612,'Gnomad',2,8),(49852,1834,'The Nutcracker (voice)',1,9),(49852,1815738,'Dr. Freud',0,10),(49852,143548,'Dr. Freud\'s Niece',1,11),(52451,63,'M\'lady De Winter',1,0),(52451,114,'Duke of Buckingham',2,1),(52451,33235,'D\'Artagnan',2,2),(52451,56614,'Porthos',2,3),(52451,15576,'Athos',2,4),(52451,114019,'Aramis',2,5),(52451,1019,'Rochefort',2,6),(52451,27319,'Cardinal Richelieu',2,7),(52451,1014931,'King Louis XIII of France',2,8),(52451,1014932,'Constance',1,9),(52451,36594,'Queen Anne',1,10),(52451,1844,'Cagliostro',2,11),(52451,55466,'Planchet',2,12),(52451,974,'D\'Artagnan\'s Father',2,13),(52451,114034,'Venetian Nobleman',0,14),(76492,19292,'Dracula (voice)',2,0),(76492,884,'Wayne (voice)',2,1),(76492,60950,'Griffin - The Invisible Man (voice)',2,2),(76492,32895,'Frank / Frankenstein (voice)',2,3),(76492,77948,'Mavis (voice)',1,4),(76492,62861,'Jonathan (voice)',2,5),(76492,53122,'Eunice (voice)',1,6),(76492,28640,'Wanda (voice)',1,7),(76492,458843,'Murray the Mummy (voice)',2,8),(76492,16165,'Quasimodo (voice)',2,9),(76492,37034,'Dracula (German voice)',2,10),(76492,25409,'Jonathan (German voice)',2,11),(76492,25401,'Mavis (German voice)',1,12),(76492,1202534,'Winnie / Young Mavis (voice)',0,13),(76492,60959,'Martha (voice)',1,14),(76492,1230389,'Pilot (voice)',0,15),(76492,51382,'Fly (voice)',0,16),(76492,53684,'Fake Dracula / Marty (voice)',2,17),(76492,71403,'Skeleton Husband (voice)',2,18),(76492,1529934,'Zombie / Hydra (voice)',0,19),(76492,1237236,'Hairy Monster / Hydra (voice)',0,20),(76492,1526129,'Gremlin Man / Hydra (voice)',0,21),(76492,1218308,'Shrunken Head / Hydra (voice)',0,22),(76492,587698,'Foreman (voice)',0,23),(59961,5292,'Tobin Frost',2,0),(59961,10859,'Matt Weston',2,1),(59961,21657,'Catherine Linklater',1,2),(59961,92404,'Keller',2,3),(59961,2039,'David Barlow',2,4),(59961,9880,'Harlan Whitford',2,5),(59961,453272,'Ana Moreau',1,6),(59961,15498,'Alec Wade',2,7),(59961,57012,'Vargas',2,8),(59961,936402,'CIA Analyst',0,9),(59961,936403,'CIA Analyst',0,10),(59961,936404,'CIA Analyst',0,11),(59961,10580,'CIA Analyst',1,12),(59961,418,'Daniel Kiefe',2,13),(59961,2049,'Carlos Villar',2,14),(59961,55205,'Marine Guard',2,15),(59961,37769,'Hostess',0,16),(59108,7399,'Josh Kovacs',2,0),(59108,776,'Slide',2,1),(59108,1893,'Charlie Gibbs',2,2),(59108,21278,'Arthur Shaw',2,3),(59108,4756,'Mr. Fitzhugh',2,4),(59108,4939,'Special Agent Claire Denham',1,5),(59108,6167,'Mr. Simon',2,6),(59108,109560,'Odessa Montero',1,7),(59108,196179,'Lester',2,8),(59108,454,'Enrique Devu2019Reaux',2,9),(59108,971329,'Miss Iovenko',1,10),(59108,14548,'Rose',1,11),(59108,116714,'Manuel',0,12),(59108,28101,'Special Agent Danszk',2,13),(59108,115975,'Special Agent Huggins',2,14),(59108,159828,'Marty Klein, Esq.',2,15),(59108,6752,'Director Mazin',2,16),(59108,59874,'Judge Ramos',2,17),(59108,4893,'Kwan',2,18),(59108,1129795,'NASDAQ / News Reporter',0,19),(59108,1129796,'Radio Host (voice)',0,20),(59108,974317,'Mr. Hightower\'s Mistress',1,21),(59108,130782,'Sasha',1,22),(59108,1671410,'Rita',1,23),(59108,1566756,'Maid',0,24),(59108,1671572,'Huang',2,25),(59108,1566757,'Huang\'s Wife',0,26),(59108,1671557,'Huang\'s Son',2,27),(59108,1430902,'Kid in Lobby',0,28),(59108,1671390,'Kid in Lobby',2,29),(59108,1671404,'Kid in Lobby',2,30),(59108,1460305,'Victoria\'s Secret Saleswoman',0,31),(59108,1671574,'Swarovski Jewelry Salesman',2,32),(59108,972079,'Modell\'s Sneaker Salesman',2,33),(59108,1671416,'Tower Security',2,34),(59108,1334324,'Tower Security Officer',0,35),(59108,1671422,'Tower Security Officer',2,36),(59108,1671427,'Tower Security Officer',2,37),(59108,1558743,'Doorman',0,38),(59108,1116907,'Radioman',2,39),(59108,18795,'Court House Guard',2,40),(59108,2256,'Parade Cop',2,41),(59108,1570353,'Arresting Special Agent',2,42),(59108,1671443,'Arresting Special Agent',2,43),(59108,1671456,'Arresting Special Agent',2,44),(59108,100703,'Shaw\'s Prison Guard',2,45),(59108,1671499,'Shaw\'s Prison Guard',2,46),(59108,1065863,'Delivery Man',2,47),(59108,1671554,'Mr. Newhouse\'s Wife',1,48),(59108,1671573,'TV News Reporter',1,49),(59108,101615,'Riker\'s Prison Guard',2,50),(59108,1671575,'Josh\'s Prison Guard',2,51),(59108,1671576,'Student (uncredited)',1,52),(59108,1499805,'Tower Guest (uncredited)',1,53),(59108,1205623,'Neir\'s Bar Waitress (uncredited)',0,54),(157350,94185,'Beatrice Tris Prior',1,0),(157350,587020,'Tobias Four Eaton',2,1),(157350,204,'Jeanine Matthews',1,2),(157350,996701,'Peter Hayes',2,3),(157350,56614,'Marcus Eaton',2,4),(157350,21045,'Tori Wu',1,5),(157350,37153,'Christina',1,6),(157350,1159982,'Caleb Prior',2,7),(157350,224181,'Eric Coulter',2,8),(157350,15852,'Natalie Prior',1,9),(157350,3417,'Andrew Prior',2,10),(157350,327,'Max',2,11),(157350,1173230,'Will',2,12),(157350,1193606,'Al',0,13),(157350,1352383,'Molly Atwood',0,15),(157350,1456341,'Sam Robertson',0,16),(157350,1329572,'Dauntless',2,17),(157350,132221,'Erudite Teacher',0,18),(157350,1557161,'Dauntless Patrol #4',0,19),(157350,1394359,'Crying Abnegation (uncredited)',0,20),(157350,1570273,'Abnegation Child (uncredited)',0,21),(51052,5530,'Arthur (voice)',2,0),(51052,41419,'Steve Claus (voice)',2,1),(51052,2440,'Grandsanta (voice)',2,2),(51052,388,'Santa (voice)',2,3),(51052,11356,'Mrs. Santa (voice)',1,4),(51052,55398,'Bryony (voice)',1,5),(51052,92574,'Peter (voice)',2,6),(51052,350,'North Pole Computer (voice)',1,7),(51052,52605,'Chief De Silva (voice)',1,8),(51052,224878,'Gwen (voice)',1,9),(51052,383,'Ernie Clicker (voice)',2,10),(51052,17287,'Lead Elf #1 (voice)',2,11),(51052,3234,'Lead Elf #2 (voice)',1,12),(51052,145997,'Lead Elf #3 (voice)',2,13),(51052,1923,'Lead Elf #4 (voice)',2,14),(51052,82666,'Lead Elf #5 (voice)',2,15),(51052,34902,'Lead Elf #6 (voice)',1,16),(51052,1048868,'Lead Elf #7 (voice)',2,17),(51052,1333,'Lead Elf #8 (voice)',2,18),(51052,6732,'Elf (voice)',2,19),(51052,94751,'Elf (voice)',2,20),(51052,39185,'Elf (voice)',2,21),(51052,115787,'Elf (voice)',0,22),(51052,33399,'Elf (voice)',0,23),(51052,98106,'Elf (voice)',2,24),(51052,12095,'Elf (voice)',2,25),(51052,1213320,'Elf (voice)',0,26),(51052,37050,'Elf (voice)',1,27),(51052,208113,'Elf (voice)',0,28),(51052,1723939,'Elf (voice)',0,29),(51052,1454715,'Elf (voice)',0,30),(51052,1046494,'Elf (voice)',0,31),(51052,1457505,'Elf (voice)',0,32),(51052,1222074,'Elf (voice)',0,33),(51052,199085,'Elf (voice)',1,34),(51052,1723941,'French Boy (voice)',0,39),(51052,1723940,'Pedro (voice)',0,40),(51052,131512,'Idaho Man (voice)',0,41),(51052,109383,'Reporter (voice)',2,42),(51052,1723942,'Reporter (voice)',0,43),(51052,61113,'N.O.R.A.D (voice)',2,44),(51052,2065,'General (voice)',2,45),(51052,135420,'General (voice)',1,46),(51052,1233367,'UNFITA OPS (voice)',0,47),(51052,1836,'UNFITA OPS (voice)',0,48),(51052,101034,'UNFITA OPS (voice)',2,49),(51052,120931,'Additional Voices',1,50),(51052,89706,'Additional Voices',0,51),(62764,1204,'Evil Queen',1,0),(62764,112561,'Snow White',1,1),(62764,53807,'Prince Andrew Alcott',2,2),(62764,78729,'Brighton',2,3),(62764,4030,'Butcher',2,4),(62764,54476,'Napoleon',0,5),(62764,154785,'Half Pint',2,6),(62764,60958,'Grub',2,7),(62764,13645,'Grimm',2,8),(62764,1060474,'Wolf',2,9),(62764,1091866,'Chuckles',0,10),(62764,589652,'Charles Renbock',2,11),(62764,51544,'Baker Margaret',1,12),(62764,4250,'Baron',2,13),(62764,48,'King',2,14),(62764,1060475,'Caroline',1,15),(62764,115596,'Noble #1',0,16),(62764,207881,'Noble #2',2,17),(62764,1091867,'Noble #3',0,18),(62764,58170,'Noble #4',1,19),(62764,1015448,'Servant',0,20),(62764,1091868,'Townswoman / Old Lady',0,21),(62764,96594,'Town Magistrate',0,22),(62764,1225492,'Townsman',0,23),(62764,1091869,'Child',0,24),(62764,550522,'Villager',0,25),(62764,15109,'Mirror Queen',1,26),(62764,108534,'Servant #2',2,27),(62764,1037341,'Lord Waverly',0,28),(62764,1091874,'Magical Cottage Queen',0,29),(62764,1091875,'Door Guard #1',0,30),(62764,36821,'Door Guard #2',2,31),(62764,15831,'Mannequins / Beast (voice)',2,32),(49049,1372,'Judge Dredd',2,0),(49049,52442,'Anderson',1,1),(49049,17286,'Ma-Ma',1,2),(49049,65829,'Kay',2,3),(49049,82193,'Zwirner',2,4),(49049,93210,'Clan Techie',2,5),(49049,195575,'Chief Judge',1,6),(49049,58758,'Paramedic TJ',2,7),(49049,37093,'Judge Lex',2,8),(49049,107550,'Caleb',2,9),(49049,1134987,'Japhet',0,10),(49049,230822,'Driver',2,11),(49049,137463,'Big Joe',2,12),(49049,200002,'Cathy',0,13),(49049,209193,'Judge Chan',2,14),(39691,11006,'Diggs (voice)',2,0),(39691,1733,'Butch (voice)',2,1),(39691,18979,'Catherine (voice)',1,2),(39691,73931,'Kitty Galore (voice)',0,3),(39691,64917,'Jackie (voice)',1,4),(39691,58926,'Seamus (voice)',2,5),(39691,41686,'Lou (voice)',2,6),(39691,52601,'Mr. Tinkles (voice)',2,7),(39691,12900,'Calico (voice)',2,8),(39691,10222,'Tab Lazenby (voice)',2,9),(39691,532,'Peek (voice)',2,10),(39691,61981,'Sam (voice)',2,11),(39691,5577,'Shane',2,12),(39691,58737,'Chuck',2,13),(39691,61110,'Freidrich',2,14),(39691,934289,'Little Girl',1,15),(39691,55259,'Crazy Carlito (voice)',2,16),(39691,18999,'Gruff K-9 (voice)',2,17),(70160,72129,'Katniss Everdeen',1,0),(70160,27972,'Peeta Mellark',2,1),(70160,96066,'Gale Hawthorne',2,2),(70160,57755,'Haymitch Abernathy',2,3),(70160,9281,'Effie Trinket',1,4),(70160,77069,'Cinna',2,5),(70160,2283,'Caesar Flickerman',2,6),(70160,55636,'President Snow',2,7),(70160,8210,'Seneca Crane',2,8),(70160,13014,'Claudius Templesmith',2,9),(70160,23498,'Cato',2,10),(70160,77517,'Clove',1,11),(70160,561869,'Rue',1,12),(70160,530025,'Primrose Everdeen',1,13),(70160,427,'Hob Vendor',1,14),(70160,47533,'Katniss\' Mother',1,15),(70160,51456,'Registration Woman',1,16),(70160,1539949,'Peeta\'s Mother',0,17),(70160,83602,'Peacekeeper #1',0,18),(70160,1088938,'Peacekeeper #2',0,19),(70160,990136,'Peacekeeper #3',2,20),(70160,197350,'Flavius',2,21),(70160,1090027,'Octavia',1,22),(70160,1471589,'Portia',0,23),(70160,1030512,'Thresh',2,24),(70160,207401,'Glimmer',1,25),(70160,1030513,'Marvel',2,26),(70160,1529411,'Fox Face',0,27),(70160,1348957,'Tribute Boy District 3',2,28),(70160,1446018,'Tribute Girl District 3',0,29),(70160,1539950,'Tribute Boy District 4',0,30),(70160,1286617,'Tribute Girl District 8',1,31),(70160,1131606,'Tribute Girl District 9',0,32),(70160,1785178,'Tribute Boy District 9',0,33),(70160,1539952,'Tribute Girl District 10',0,34),(70160,1367298,'Avox Girl',0,35),(70160,935721,'Atala',0,36),(70160,158045,'Katniss\' Father',0,37),(70160,155862,'Venia',1,38),(70160,1785189,'Hovercraft Tech',1,39),(70160,80619,'Game Center Tech #1',2,40),(70160,142374,'Game Center Tech #2',1,41),(70160,1042243,'Game Center Tech #3',0,42),(70160,1698179,'Game Center Tech',2,43),(70160,1084211,'Martha (uncredited)',1,44),(70160,1435432,'Coal Miner (uncredited)',0,45),(70160,1785235,'Capitol Citizen (uncredited)',0,46),(70160,1785242,'District 12 Citizen (uncredited)',0,47),(45243,51329,'Phil Wenneck',2,0),(45243,27105,'Stu Price',2,1),(45243,58225,'Alan Garner',2,2),(45243,21180,'Doug Billings',2,3),(45243,83586,'Mr. Chow',2,4),(45243,13242,'Kingsley',2,5),(45243,80757,'Himself',2,6),(45243,4175,'Sid Garner',2,7),(45243,543138,'Teddy',2,8),(45243,78324,'Lauren',1,9),(45243,83585,'Tracy',1,10),(45243,61182,'Stephanie',1,11),(45243,543139,'Monk',2,12),(45243,116421,'Fohn',2,13),(45243,543140,'Kimmy',0,14),(45243,11151,'Tattoo Joe',2,15),(45243,153621,'Linda Garner',1,16),(45243,78320,'Samir',2,17),(45243,142373,'Kingsley Guy',0,18),(45243,1716,'Vladi',0,19),(45243,67206,'Nikolai',2,20),(45243,1256326,'Joi',0,21),(45243,1428580,'Drug Dealing Monkey',0,22),(45243,1358973,'Kingsley Guy #2',2,23),(146216,62,'Frank Moses',2,0),(146216,1922,'Katja',1,1),(146216,4173,'Bailey',2,2),(146216,15735,'Victoria',1,3),(146216,6949,'Marvin Boggs',2,4),(146216,18248,'Sarah Ross',1,5),(146216,11207,'The Frog',2,6),(146216,2203,'Jack Horton',2,7),(146216,25002,'Han Cho Bai',2,8),(146216,1186597,'Londoner',1,9),(146216,531772,'Security Detail Soldier',2,10),(146216,570010,'Revolutionary Guard',0,11),(146216,102853,'Funeral Director',2,12),(146216,17356,'Davis',2,13),(146216,1248,'Ivan',2,14),(146216,11276,'Director Philips',2,15),(146216,1504934,'Commando',2,17),(146216,59039,'Wade',2,18),(146216,1426167,'Tourist (action scenes)',0,19),(146216,1684455,'Han\'s Father',0,20),(146216,29470,'Blackwell',0,21),(146216,1015568,'Vance',2,22),(146216,219506,'Al Sau00efd',0,23),(146216,67212,'Security Officer',2,24),(146216,27650,'Iranian Ambassador',2,25),(146216,1684513,'Russian Police Officer',0,26),(146216,229557,'Young FBI Agent',2,27),(146216,1315418,'Kremlin Guard',2,28),(146216,1169007,'MI6 Intelligence Officer',2,29),(146216,1189478,'Serena',0,30),(146216,1402411,'Orderly #1',0,31),(146216,1684519,'Orderly #2',0,32),(146216,1182596,'Iranian Clerk',0,33),(146216,782,'Cobb',2,34),(146216,58169,'General McKennon',2,35),(146216,81508,'Russian Officer',2,36),(146216,1229334,'Creepy Young Man',0,37),(146216,191747,'Snyder',0,38),(146216,1248826,'Kelly',0,39),(146216,1448201,'Marine',2,40),(146216,1563887,'Boddington Receptionist',0,41),(146216,1611250,'Young Guard',0,42),(146216,216785,'MI6 Chief Security Officer',0,43),(146216,1052209,'Russian Lead Officer',2,44),(146216,1511954,'Kremlin Security Officer',2,45),(146216,1009512,'Senior MI6 Man',0,46),(146216,1684546,'Weeping Woman',0,47),(146216,1433017,'Waitress',0,48),(146216,1465954,'Russian Scientist',0,49),(146216,1529085,'Banker',0,50),(146216,1684549,'Guy',0,51),(146216,1684550,'Costco Man',0,52),(146216,1332482,'Waiter',0,53),(146216,1427286,'Revolutionary Guard Captain',0,54),(146216,1684551,'Russian Officer #2',0,55),(146216,1264776,'Russian Officer #3',0,56),(146216,1590341,'Security Officer #2',0,57),(146216,1396602,'Helicopter Pilot',0,58),(146216,1684556,'Boddington Security',0,59),(146216,1684557,'Iranian General',0,60),(146216,145310,'Arman',2,61),(55301,11662,'David Seville',2,0),(55301,212,'Ian',2,1),(55301,213001,'Zoe',1,2),(55301,170635,'Captain Correlli',2,3),(55301,15033,'Alvin (voice)',2,4),(55301,5661,'Simon (voice)',2,5),(55301,49915,'Theodore (voice)',2,6),(55301,18979,'Brittany (voice)',1,7),(55301,56322,'Eleanor (voice)',1,8),(55301,1772,'Jeanette (voice)',1,9),(55301,21088,'Simone (voice)',2,10),(109418,19292,'Lenny Feder',2,0),(109418,32895,'Eric Lamonsoff',2,1),(109418,2632,'Kurt McKenzie',2,2),(109418,60950,'Marcus Higgins',2,3),(109418,3136,'Roxanne Chase-Feder',1,4),(109418,52792,'Deanne McKenzie',1,5),(109418,49,'Sally Lamonsoff',1,6),(109418,1046149,'Becky Feder',1,8),(109418,1046150,'Duffy',2,9),(109418,884,'Wiley',2,10),(109418,32907,'Nick',2,11),(109418,1219901,'Dickie Bailey',2,12),(109418,51857,'Malcom',2,13),(109418,16165,'Squats Fitness Janitor',2,14),(109418,35806,'Officer Fluzoo',2,15),(109418,23498,'Braden',2,16),(109418,52697,'Mrs. Lamonsoff',1,17),(109418,20819,'Officer Dante',2,18),(109418,62692,'Kyle',2,19),(109418,20818,'Hippie Teacher',2,20),(109418,77120,'Tommy Cavanugh',2,21),(109418,16501,'Frat Boy Milo',2,22),(109418,496591,'Greg Feder',2,23),(109418,1271668,'Keithie Feder',0,24),(109418,969510,'Donna Lamonsoff',1,25),(109418,1271669,'Bean Lamonsoff',0,26),(109418,1271670,'Bean Lamonsoff',0,27),(109418,587035,'Andre McKenzie',2,28),(109418,80613,'Charlotte Mackenzie',1,29),(109418,1271671,'Ronnie Mackenzie',0,30),(109418,60252,'Penny',1,31),(109418,1232807,'Mary Fluzoo',0,32),(109418,1271677,'Hot Dance Teacher',1,33),(109418,166029,'Gym Teacher',2,34),(109418,142377,'Mama Ronzoni',1,35),(109418,934243,'Nancy Arbuckle',1,36),(109418,88737,'Kmart Employee',2,37),(109418,197133,'Kmart Mother',0,38),(109418,58477,'Robideaux',0,39),(109418,60959,'Jackie Tardio',1,40),(109418,1202534,'Sadie Tardio',0,41),(109418,1271681,'Sunny Tardio',0,42),(109418,145881,'The Great Renaldo',2,43),(109418,1143597,'Coach Romey',2,44),(109418,207005,'Principal Tardio',0,45),(109418,963297,'Muzby',2,46),(109418,1271684,'Bumpty',2,47),(109418,62861,'Male Cheerleader',2,48),(109418,62863,'Male Cheerleader',2,49),(109418,452205,'Male Cheerleader',2,50),(109418,62854,'Male Cheerleader',2,51),(109418,1118911,'Ginger',1,52),(109418,84214,'Frat Boy Andy',2,53),(109418,1053422,'Cooper',2,54),(109418,60961,'Frat Boy',0,55),(50546,19292,'Danny Maccabee',2,0),(50546,4491,'Katherine Murphy',1,1),(50546,2227,'Devlin Adams',1,2),(50546,32907,'Eddie Simms',2,3),(50546,131520,'Palmer Dodge',1,4),(50546,54479,'Maggie Murphy',1,5),(50546,971299,'Michael Murphy',2,6),(50546,66070,'Ian Maxtone Jones',2,7),(50546,32905,'Kirsten Brant',1,8),(50546,58478,'Adon',2,9),(50546,20818,'Soul Patch',2,10),(50546,166029,'Tanner Patrick',2,11),(50546,96625,'Joanna Damon',1,12),(50546,60959,'Veruca',1,13),(50546,54717,'Patricia',0,14),(50546,65921,'Henderson',2,15),(50546,298410,'Ernesto',2,16),(50546,88038,'Lisa Hammond',1,17),(50546,127907,'Christine',1,18),(50546,1202534,'Hawaiian Family at Rope Bridge',0,19),(50546,1377246,'Teenage Girl at Dive Restaurant',1,20),(228150,287,'Don \'Wardaddy\' Collier',2,0),(228150,10959,'Boyd \'Bible\' Swan',2,1),(228150,33235,'Norman Ellison',2,2),(228150,454,'Trini \'Gordo\' Garcia',2,3),(228150,19498,'Grady \'Coon-Ass\' Travis',2,4),(228150,83968,'Sergeant Binkowski',2,5),(228150,15376,'Sergeant Davis',2,6),(228150,1345133,'Sergeant Peterson',0,7),(228150,109438,'Lt. Parker',2,8),(228150,11355,'Captain Waggoner',2,9),(228150,20699,'Irma',1,10),(228150,572648,'Emma',1,11),(228150,928572,'Sergeant Miles',2,12),(228150,1333845,'Hilda Meier',1,13),(228150,3551,'Medic #2',0,14),(228150,1184960,'Company Messenger',2,15),(228150,1430505,'SS Lieutenant',0,16),(228150,1533995,'SS Officer',2,17),(228150,1412094,'SS Medic (uncredited)',0,18),(228150,1449329,'Young Tanker',2,19),(41515,707,'Yogi Bear (voice)',2,0),(41515,12111,'Boo-Boo Bear (voice)',2,1),(41515,1772,'Rachel',1,2),(41515,59216,'Ranger Smith',2,3),(41515,15286,'Cindy Bear (voice)',1,4),(41515,51990,'Ranger Jones',2,5),(41515,127048,'Chief of Staff',0,6),(41515,95875,'Mayor Brown',2,7),(41515,66578,'Mayor\'s Tailor',2,10),(41515,46398,'Dirty Shopper',2,11),(41515,54484,'Elderly Purse Lady',0,13),(41515,235025,'Purse Snatcher',2,14),(41515,139912,'Security Guard',0,15),(41515,98216,'Security Guard',0,16),(38317,32895,'Griffin Keyes',2,0),(38317,5916,'Kate',1,1),(38317,16483,'Lion (voice)',2,2),(38317,1733,'Bernie The Gorilla',2,3),(38317,15277,'Bear (voice)',2,4),(38317,19292,'Monkey (voice)',2,5),(38317,41039,'Elephant (voice)',2,6),(38317,38832,'Fashiondesigner',2,7),(38317,83586,'Venom',2,8),(38317,2680,'Shane',2,9),(38317,57451,'Stephanie',1,10),(38317,105648,'Dave',2,11),(38317,38225,'Janet the Lioness (voice)',1,12),(38317,91609,'Gale',2,13),(38317,62066,'Bruce the Bear (voice)',2,14),(38317,52792,'Mollie the Giraffe (voice)',1,15),(38317,89402,'Sebastian the Wolf (voice)',2,16),(38317,1431853,'Robin',1,17),(38317,1428580,'Donald the Monkey',0,18),(38317,32897,'Manny',2,19),(38317,60959,'Camarera de TGIF',1,20),(38317,1588593,'Zoo Visitor / Father with Baby in Sling (uncredited)',0,21),(161795,8435,'Sean',2,0),(161795,990400,'Dana Howard',0,1),(161795,13333,'Skelly',1,2),(161795,222894,'Alex',0,3),(161795,1222446,'Claire',1,4),(161795,649,'Konstantine',2,5),(161795,1218306,'Dana\'s Father',0,6),(161795,140167,'John Stoner',2,7),(161795,135885,'Woman in Cafe',0,8),(161795,8227,'Fern Stoner',1,9),(161795,10653,'Skelly\'s Mother',1,10),(159824,19292,'Dracula (voice)',2,0),(159824,62861,'Jonathan (voice)',2,1),(159824,77948,'Mavis (voice)',1,2),(159824,32895,'Frank / Frankenstein (voice)',2,3),(159824,884,'Wayne (voice)',2,4),(159824,60950,'Griffin (voice)',2,5),(159824,298410,'Murray (voice)',2,6),(159824,1523670,'Dennis (voice)',0,7),(159824,53122,'Eunice (voice)',1,8),(159824,28640,'Wanda (voice)',1,9),(159824,52119,'Linda (voice)',1,10),(159824,17039,'Mike (voice)',2,11),(159824,56159,'Dana (voice)',2,12),(159824,71403,'Bela (voice)',2,13),(159824,14639,'Vlad (voice)',2,14),(159824,1526129,'Blobby (voice)',0,15),(159824,58317,'Kakie (voice)',2,16),(159824,1202534,'Winnie (voice)',0,17),(159824,1271681,'Baby Dennis (voice)',0,18),(159824,16165,'The Phantom of the Opera (voice)',2,19),(159824,53684,'Marty (voice)',2,20),(159824,1340664,'Additional Voices (voice)',1,21),(49948,67773,'Himself - Introductory Host',2,0),(49948,166002,'Himself - Host',2,1),(49948,13301,'Himself - Host',2,2),(49948,73931,'Herself - Host',0,3),(49948,15152,'Himself - Host',0,4),(49948,37221,'Himself - Host',2,5),(49948,74296,'Himself - Host',0,6),(49948,1248678,'Himself - Host',2,7),(49948,14730,'Herself - Host',1,8),(49948,78076,'Mickey Mouse (voice)',2,9),(49948,34478,'Donald Duck (voice)',2,10),(49948,6035,'Daisy Duck (voice)',1,11),(330770,1440182,'Nicolas',0,1),(330770,544666,'Stella',1,2),(330770,59627,'La mu00e8re',1,3),(330770,1616030,'Victor',0,4),(330770,1616031,'Franck',0,5),(330770,1616032,'The fourth boy',0,6),(330770,1263126,'The Doctor',0,7),(77951,142389,'Ricky (voice)',2,0),(77951,15033,'Patchi (voice)',2,1),(77951,1372,'Uncle Zack (voice)',2,2),(77951,1265629,'Jade (voice)',1,3),(77951,5723,'Alex (voice)',2,4),(77951,203048,'Scowler (voice)',2,5),(77951,109046,'Juniper (voice)',1,6),(77951,190611,'Radio Announcer (voice)',0,7),(77951,1274156,'Dinosaur ID Card(voice)',0,8),(77951,1009221,'Dinosaur ID Card (voice)',1,10),(77951,969251,'Dinosaur ID Card (voice)',1,11),(77951,1223084,'Dinosaur ID Card (voice)',1,12),(274854,12835,'Kaulder',2,0),(274854,1223793,'Chloe',1,1),(274854,109,'Dolan 37th',2,2),(274854,110902,'Belial',2,3),(274854,7241,'Glaeser',1,4),(274854,587207,'Witch Queen',1,5),(274854,3895,'Dolan 36th',2,6),(274854,225610,'Ellic',2,7),(274854,4812,'Max Schlesinger',2,8),(274854,1643212,'Elizabeth',1,9),(274854,92614,'Danique',1,10),(274854,211596,'Sonia',1,11),(274854,1252871,'Bronwyn',1,12),(274854,1224238,'Miranda',1,13),(274854,1378129,'Armani',0,14),(274854,1378130,'Little Girl',0,15),(274854,102466,'Wall Street Witch',0,16),(274854,90031,'Bodyguard #4',0,17),(274854,1124950,'Council Member #1',0,18),(274854,991960,'Council Member #2',0,19),(274854,1643217,'Council Member #3',2,20),(274854,1378128,'Fatima',1,21),(36970,517,'Narrator (voice: English version)',2,0),(36970,20030,'Narrator (voice: French version)',2,1),(36970,72494,'Narrator (voice: Japanese version)',0,2),(36970,120019,'Narrator (voice: Italian version)',0,3),(36970,35382,'Narrator (voice: German version)',2,4),(36970,230181,'Himself',0,5),(36970,230182,'Narrator',0,6),(36970,7372,'Narrator (voice: Spanish version)',2,7),(76649,239019,'Milo',2,0),(76649,530,'Aurelia',1,1),(76649,70456,'Cassia',1,2),(76649,31164,'Atticus',2,3),(76649,51989,'Ariadne',1,4),(76649,15440,'Severus',2,5),(76649,86237,'Graecus',2,6),(76649,2628,'Corvus',2,7),(76649,156590,'Bellator',2,8),(76649,1224669,'The Weasel',0,9),(76649,1294155,'Milo\'s Mother',0,10),(76649,6071,'Proculus',2,11),(76649,92234,'Boss Slaver',2,12),(76649,1510489,'Young Milo',2,13),(76649,1207359,'Biggest Thracian',0,14),(76649,1510490,'Cassia\'s Carriage Driver',0,15),(76649,1510491,'Milo\'s Father',0,16),(76649,1228278,'Felix',2,17),(76649,1510492,'African Gladiator',2,18),(76649,117998,'Flashback Centurion',0,19),(76649,201700,'Rich Wife #1',1,20),(76649,180691,'Rich Wife #2',1,21),(76649,1123418,'Ship\'s Captain',0,22),(76649,1510493,'Harbor Child',0,23),(76649,1510494,'Harbor Mother',0,24),(76649,1510495,'Harbor Boy',0,25),(76649,1510496,'Gladiator (uncredited)',0,26),(76649,101208,'Celtic Woman (uncredited)',1,27),(76649,1510497,'Proclaimer (uncredited)',0,28),(76649,1510498,'Roman Boy (uncredited)',0,29),(76649,1510499,'Gladiator (uncredited)',0,30),(76649,1510500,'Roman Citizen (uncredited)',0,31),(76649,1510501,'Roman Archer (uncredited)',0,32),(76649,1510502,'Slaver (uncredited)',2,33),(76649,207818,'Celtic Gladiator (uncredited)',0,35),(76649,1482636,'Soldier (uncredited)',0,36),(293644,1178792,'Top Cat / Choo Choo / Brain (voice)',0,1),(293644,1430438,'Granny Dibble / Counter Person / Statue (voice)',0,2),(293644,1178794,'Officer Dibble (voice)',2,3),(293644,1352628,'Mr. Big (voice)',0,4),(293644,1218767,'Panther (voice)',0,5),(293644,87176,'Chief Thumbton (voice)',0,6),(72545,18918,'Hank',2,0),(72545,27972,'Sean',2,2),(72545,38025,'Liz',1,3),(72545,67599,'Kailani',1,4),(72545,40481,'Gabato',2,5),(72545,3895,'Alexander',2,6),(72545,118593,'Jessica',0,7),(72545,223021,'Cop',2,8),(72545,106730,'Tour Guide',2,9),(72545,1424580,'Hockey Player',0,10),(109451,19278,'Flint Lockwood (voice)',2,0),(109451,1772,'Sam Sparks (voice)',1,1),(109451,3085,'Tim Lockwood (voice)',2,2),(109451,62831,'Chester V (voice)',2,3),(109451,62861,'Baby Brent (voice)',2,4),(109451,4589,'Manny (voice)',2,5),(109451,41686,'Steve (voice)',2,6),(109451,53256,'Earl Devereaux (voice)',2,7),(109451,109869,'Barb (voice)',0,8),(109451,12095,'Barry/ Dill Pickle (voice)',2,9),(109451,587697,'Sentinel Louise (voice)',0,10),(109451,1046494,'Sentinel Peter / Labcoat Jenny (voice)',0,11),(109451,1597629,'Fintly McCallahan / Idea Pants Guy (voice)',0,12),(109451,87056,'Cal Devereaux (voice)',2,13),(109451,173428,'Young Flint (voice)',1,15),(71880,19292,'Jack / Jill',2,0),(71880,3897,'Erin',1,1),(71880,1158,'Al Pacino',2,2),(71880,239574,'Felipe',0,3),(71880,51857,'Ted',2,4),(71880,32907,'Todd',2,5),(71880,20818,'Joel Farley',2,6),(71880,935700,'Sofia Sadelstein',1,7),(71880,56159,'Crazy puppeteer',2,8),(71880,60950,'Monica',2,9),(71880,77075,'Funbucket',0,10),(71880,10847,'Eduardo',2,11),(71880,935701,'Gary Sadelstein',2,12),(71880,1106959,'The Price Is Right Showcase Girl',0,13),(71880,1434041,'Bathroom Attendant',2,14),(71880,1202534,'Little Girl on Ship',0,15),(71880,1386113,'Documentary Twin',1,16),(71880,88706,'Documentary Twin',1,17),(71880,477074,'Angry Moviegoer #1',0,18),(71880,85,'Johnny Depp',2,19),(71880,215157,'John McEnroe',0,20),(309809,1229,'The Aviator (voice)',2,0),(309809,53714,'The Mother (voice)',1,1),(309809,22226,'Mr. Prince (voice)',2,2),(309809,8293,'The Rose (voice)',1,3),(309809,17051,'The Fox (voice)',2,4),(309809,1121,'The Snake (voice)',2,5),(309809,17835,'The Conceited Man (voice)',2,6),(309809,4971,'The King (voice)',2,7),(309809,13242,'The Academy Teacher (voice)',2,8),(309809,1397911,'The Little Prince (voice)',0,9),(309809,13,'The Businessman (voice)',2,10),(309809,851784,'The Little Girl (voice)',1,11),(309809,19866,'Mr. Prince (voice)',2,12),(309809,1925,'The Fox (voice)',2,13),(309809,18177,'The Aviator (voice)',2,14),(309809,56226,'The Mother (voice)',1,15),(309809,6554,'The Snake (voice)',2,16),(309809,93532,'The Conceited Man (voice)',2,17),(309809,5443,'The Businessman (voice)',2,18),(309809,41878,'The Policeman (voice)',2,19),(328111,52849,'Max (voice)',2,0),(328111,156962,'Duke (voice)',2,1),(328111,55638,'Snowball (voice)',2,2),(328111,213001,'Gidget (voice)',1,3),(328111,25703,'Chloe (voice)',1,4),(328111,452205,'Mel (voice)',2,5),(328111,13,'Tiberius (voice)',2,6),(328111,475512,'Katie (voice)',1,7),(328111,500427,'Buddy (voice)',0,8),(328111,56159,'Pops (voice)',2,9),(328111,4581,'Ozone / Reginald (voice)',2,10),(328111,15762,'Additional Voices (voice)',1,11),(328111,124748,'Norman (voice)',0,12),(328111,73476,'Tattoo (voice)',2,13),(328111,145184,'Maria (voice)',1,14),(328111,545087,'Fernando (voice)',2,15),(328111,1662455,'Molly (voice)',1,16),(328111,78317,'Additional Voices (voice)',2,17),(328111,61983,'Additional Voices (voice)',2,18),(328111,12077,'Additional Voices (voice)',2,19),(328111,111466,'Additional Voices (voice)',0,20),(328111,1386148,'Additional Voices (voice)',2,21),(328111,35159,'Additional Voices (voice)',1,22),(328111,84213,'Additional Voices (voice)',2,23),(328111,157626,'Additional Voices (voice)',2,24),(328111,84495,'Additional Voices (voice)',2,25),(328111,8063,'Additional Voices (voice)',2,26),(328111,31365,'Additional Voices (voice)',2,27),(328111,52699,'Additional Voices (voice)',2,28),(328111,86007,'Additional Voices (voice)',0,29),(328111,1662456,'Additional Voices (voice)',0,30),(93456,4495,'Gru (voice)',2,0),(93456,41091,'Lucy (voice)',1,1),(93456,4589,'Eduardo/ El Macho (voice)',2,2),(93456,17743,'Margo (voice)',1,3),(93456,59919,'Dr. Nefario (voice)',2,4),(93456,83586,'Floyd (voice)',2,5),(93456,4581,'Silas (voice)',2,6),(93456,998571,'Agnes (voice)',0,7),(93456,124750,'Edith (voice)',1,8),(93456,57412,'Antonio (voice)',0,9),(93456,476163,'Jillian (voice)',1,10),(93456,109869,'Shannon (voice)',0,11),(93456,124747,'Kevin the Minion / Bob the Minion / Stuart the Minion / Additional Minions / Evil Minions (voice)',2,12),(93456,124748,'Additional Minions / Evil Minions / Italian Waiter (voice)',0,13),(93456,303870,'Arctic Lab Guards (voice)',0,14),(93456,503103,'Flight Attendant (voice)',1,15),(93456,1340664,'Additional Voices (voice)',1,16),(93456,24358,'Additional Voices (voice)',1,17),(93456,19545,'Additional Voices (voice)',2,18),(93456,1207488,'Additional Voices (voice)',0,19),(93456,1444269,'Additional Voices (voice)',0,20),(93456,167295,'Additional Voices (voice)',0,21),(93456,73016,'Additional Voices (voice)',1,22),(93456,84495,'Additional Voices (voice)',2,23),(93456,52699,'Additional Voices (voice)',2,24),(93456,111466,'Additional Voices (voice)',0,25),(93456,84493,'Additional Voices (voice)',0,26),(93456,1444270,'Additional Voices (voice)',0,27),(93456,91776,'Additional Voices (voice)',2,28),(93456,35159,'Additional Voices (voice)',1,29),(93456,157626,'Additional Voices (voice)',2,30),(93456,1438315,'Additional Voices (voice)',0,31),(93456,1009221,'Additional Voices (voice)',1,32),(93456,1444271,'Additional Voices (voice)',0,34),(93456,1444272,'Additional Voices (voice) (as Claira Titman)',0,35),(93456,86007,'Additional Voices (voice) (as James Kevin Ward)',0,36),(93456,60741,'Additional Voices (voice)',0,37),(93456,1258896,'Little Girl #2 (voice) (uncredited)',1,38),(93456,214701,'Additional Voices (uncredited)',0,39),(36657,2387,'Charles Xavier / Professor X',2,0),(36657,6968,'Logan / Wolverine',2,1),(36657,1327,'Eric Lensherr / Magneto',2,2),(36657,4587,'Ororo Munroe / Storm',1,3),(36657,10696,'Jean Grey / Phoenix',1,4),(36657,11006,'Scott Summers / Cyclops',2,5),(36657,10690,'Marie D\'Ancanto / Rogue',1,6),(36657,11008,'Raven Darkholme / Mystique',1,7),(36657,11007,'Mortimer Toynbee / Toad',2,8),(36657,9832,'Victor Creed / Sabretooth',2,9),(36657,52374,'Senator Kelly',2,10),(36657,115854,'Henry Gyrich',2,11),(36657,115855,'Magneto\'s Mother',0,12),(36657,115856,'Magneto\'s Father',2,13),(36657,81097,'Rogue\'s Boyfriend',2,14),(36657,7624,'Hot Dog Vendor',2,15),(36657,11023,'Bobby Drake / Iceman',2,16),(36657,233,'Katherine Kitty Pryde / Shadowcat',1,17),(36657,1446555,'John Allerdyce / Pyro',0,18),(75656,44735,'J. Daniel Atlas',2,0),(75656,103,'Dylan Rhodes',2,1),(75656,57755,'Merritt McKinney',2,2),(75656,19119,'Alma Dray',1,3),(75656,52848,'Henley Reeves',1,4),(75656,54697,'Jack Wilder',2,5),(75656,3895,'Arthur Tressler',2,6),(75656,192,'Thaddeus Bradley',2,7),(75656,50217,'Agent Fuller',2,8),(75656,4238,'Evans',0,9),(75656,37204,'Cowan',2,10),(75656,24895,'Etienne Forcier',2,11),(75656,1178995,'Hermia',0,12),(75656,147056,'Jasmine Trassler',1,13),(75656,94427,'Atlas Groupie',1,14),(75656,13550,'Lionel Shrike',2,15),(75656,586270,'Josepha Hickey',0,16),(75656,84227,'Paris Bank Manager',1,17),(38365,19292,'Lenny Feder',2,0),(38365,3136,'Roxanne Chase-Feder',1,1),(38365,49,'Sally Lamonsoff',1,2),(38365,884,'Wiley',2,3),(38365,52792,'Deanne McKenzie',1,4),(38365,32895,'Eric Lamonsoff',2,5),(38365,60949,'Rob Hilliard',2,6),(38365,2632,'Kurt McKenzie',2,7),(38365,78324,'Amber Hilliard',1,8),(38365,60950,'Marcus Higgins',2,9),(38365,142377,'Mama Ronzoni',1,10),(38365,53281,'Rita',1,11),(38365,1219901,'Dickie Bailey',2,12),(38365,51857,'Malcolm',2,13),(38365,101565,'Jasmine Hilliard',1,14),(38365,166029,'Norby The Ride Guy',2,15),(38365,1202534,'Tardio\'s Daughter',0,16),(38365,60959,'Tardio\'s Wife',1,17),(38365,207005,'Tardio',0,18),(38365,1046149,'Becky Feder',1,19),(37821,25541,'Jen Kornfeldt',1,0),(37821,18976,'Spencer Aimes',2,1),(37821,15112,'Mr. Kornfeldt',2,2),(37821,11514,'Mrs. Kornfeldt',0,3),(37821,24357,'Mrs. Baily',1,4),(37821,26723,'Vivian',1,5),(37821,71403,'Henry',2,6),(37821,60633,'Mac Bailey',2,7),(37821,80742,'Holbrook',2,8),(37821,118590,'Pete Denham',2,9),(37821,4494,'Olivia',1,10),(37821,63232,'Jackie Vallero',1,11),(37821,83872,'Kristen',1,12),(37821,118591,'European Model',0,13),(37821,93528,'Amanda',0,14),(37821,42160,'Sadie',1,15),(37821,118592,'Flavie - Head flight attendant',0,16),(37821,118593,'Pretty Girl',0,17),(37821,118594,'Model',1,18),(37821,118595,'Dougie Vollero',0,19),(37821,59060,'Pilot',0,20),(37821,118597,'European model',0,21),(37821,118598,'Guard',0,22),(37821,57108,'Kevin the Manager',0,23),(37821,118599,'Milo',0,24),(37821,64101,'Model chris',0,25),(37821,1567589,'Don Nootbar',0,26),(37821,1567592,'Mildred',0,27),(37821,1567607,'Jean Paul',0,28),(37821,118592,'Stewardess',0,29),(37821,1567612,'Jaspar Leveneux',0,30),(37821,1236019,'Eurocreep',0,31),(37821,1567654,'Neighbor / Party Guest (uncredited)',0,33),(37821,1702437,'European Model',0,34),(203801,73968,'Napoleon Solo',2,0),(203801,53807,'Illya Kuryakin',2,1),(203801,227454,'Gaby Teller',1,2),(203801,1133349,'Victoria Vinciguerra',1,3),(203801,90325,'Alexander',0,4),(203801,41965,'Uncle Rudi',2,5),(203801,3291,'Waverly',2,6),(203801,15440,'Sanders',2,7),(203801,7803,'Udo',2,8),(203801,1255887,'Oleg',0,9),(203801,1529406,'Captain Smith',0,10),(203801,1278426,'Desk Clerk',1,11),(203801,1529408,'Assistant',0,12),(203801,1529443,'Fishing Captain',0,13),(203801,1529445,'Man 2',0,14),(203801,85828,'Guard (Checkpoint)',0,15),(203801,1242987,'Jones',0,16),(203801,186391,'Harbourmaster',2,17),(203801,1473937,'Mechanic',0,18),(203801,231988,'Man 1',0,19),(203801,8770,'Night Manager',0,20),(203801,1529450,'Security Guard',0,21),(203801,1351952,'Countess Allegra',0,22),(203801,59538,'Projectionist',2,23),(203801,1529458,'Italian Guard',0,24),(203801,1150466,'Victoria\'s Assistant',0,25),(203801,1434942,'Count Lippi',0,26),(37958,2295,'King Hyperion',2,0),(37958,34502,'Poseidon',2,1),(37958,103554,'Athena',1,2),(37958,73968,'Theseus',2,3),(37958,114019,'Zeus',2,4),(37958,5049,'Old Zeus',2,5),(37958,76792,'Phaedra',1,6),(37958,10822,'Stavros',2,7),(37958,112692,'Minotaur',2,8),(37958,99183,'Dareios',2,9),(37958,79505,'Lysander',2,10),(37958,43265,'Apollo',2,11),(37958,43292,'Heracles',2,12),(37958,96591,'Icarus',2,13),(37958,80019,'Captain of the Archers',2,14),(37958,119248,'Aries',2,15),(37958,450366,'Young Theseus',2,16),(37958,119250,'High Priestess',0,18),(37958,119251,'Acamus',0,19),(37958,115595,'Holy Man',2,20),(37958,119252,'Young Lysander',0,21),(37958,105496,'Beast Master',0,22),(37958,1287220,'Heraklion',0,23),(37958,231517,'High Priestess #4',0,24),(37958,229561,'Kerkyon (Guard)',2,25),(37958,1066472,'Hoplite Soldier #2',2,26),(211672,18277,'Scarlet Overkill (voice)',1,0),(211672,65717,'Herb Overkill (voice)',2,1),(211672,2232,'Walter Nelson (voice)',2,2),(211672,19,'Madge Nelson (voice)',1,3),(211672,4581,'Professor Flux / Tower Guard (voice)',2,4),(211672,12094,'Reine Elizabeth II (voice)',1,5),(211672,118,'Narrator (voice)',2,6),(211672,4495,'Gru (voice)',2,7),(211672,124747,'Stuart, Kevin and Bob (voices)',2,8),(211672,59450,'Tina (voice)',1,9),(211672,73476,'VNC Announcer / Walter Jr. (voice)',2,10),(211672,9195,'Sumo (voice)',0,11),(211672,1265060,'Fabrice (voice)',0,12),(211672,1526863,'Royal Advisor (voice)',0,13),(211672,192922,'News Reporter (voice)',0,14),(211672,8023,'Additional Voices (voice)',0,15),(211672,1340664,'Additional Voices (voice)',1,16),(153518,58224,'Red (voice)',2,0),(153518,54415,'Chuck (voice)',2,1),(153518,62862,'Bomb (voice)',2,2),(153518,52792,'Matilda (voice)',1,3),(153518,19278,'Leonard (voice)',2,4),(153518,22970,'Mighty Eagle (voice)',2,5),(153518,2228,'Terence (voice)',2,6),(153518,298410,'Judge Peckinpah (voice)',2,7),(153518,1240487,'Stella / Eva the Birthday Mom (voice)',1,8),(153518,25147,'Ross / Cyrus / Mime (voice)',2,9),(153518,500427,'Edward the Birthday Dad (voice)',0,10),(153518,198150,'Tiny (voice)',2,11),(153518,1394997,'Photog (voice)',2,12),(153518,1332495,'Bubbles (voice)',2,13),(153518,1332494,'Hal (voice)',2,14),(153518,1226302,'Helen the Lunch Mom / Yoga Instructor (voice)',1,15),(153518,973651,'Chef Pig / Phillip (voice)',0,16),(153518,292445,'Earl Pig (voice)',2,17),(153518,1529997,'Willow (voice)',1,18),(153518,591835,'Betty Bird (voice)',1,19),(153518,1172108,'Ella Bird (voice)',1,20),(153518,1340664,'Timothy the Birthday Bird (voice)',1,21),(153518,5375,'Day Care Teacher (voice)',2,22),(153518,24357,'Sophie Bird / Peggy Bird (voice)',1,23),(153518,558928,'Bobby Bird (voice)',2,24),(153518,52701,'Foreman Pig (voice)',0,25),(153518,1032886,'Greg Blue (voice)',2,26),(153518,60279,'Monty Pig (voice)',2,27),(153518,52860,'Bill Beakins (voice)',2,28),(153518,1075037,'Olive Blue / Monica the Crossing Guard (voice)',1,29),(153518,1451616,'Early Bird (voice)',0,30),(153518,1374727,'Shirley the Old Lady Bird (voice)',1,31),(228165,78798,'SpongeBob / Gary / Agreeable Mob Member / Waffle (voice)',2,0),(228165,34398,'Patrick / Male Fish / Eager Customer (voice)',2,1),(228165,70615,'Doctor / Squidward / Angry Mob Member #2 / Doughnut / Squidasaurus Rex (voice)',2,2),(228165,6574,'Mr.Krabs (voice)',2,3),(228165,78799,'Sandy (voice)',1,4),(228165,3131,'Burger Beard',2,6),(228165,89599,'Seagull (voice)',0,7),(228165,83414,'Seagull (voice)',2,8),(228165,42362,'Seagull (voice)',2,9),(228165,43125,'Seagull (voice)',2,10),(228165,24362,'Seagull (voice)',2,11),(228165,111467,'Seagull (voice)',1,12),(228165,34985,'Seagull (voice)',1,13),(228165,23679,'Seagull (voice)',2,14),(228165,59784,'Seagull / Dead Parrot (voice)',2,15),(228165,19508,'Seagull / Dead Parrot / Pigeon Cabbie (voice)',2,16),(228165,217174,'Kyle / Helpful Angry Mob Member (voice)',0,17),(228165,17414,'Karen (the Computer Wife) / Haroldu2019s Wife / Ice Cream Cone #2 (voice)',1,18),(228165,23680,'Sandals / Customer #1 / Fish on Bubble / Perch Perkins / Angry Fish / Maple Syrup Jar / Waffle / Ice Cream Cone #1 / Furballs / Giant Cute Kitty / Rainbow / Spotlight Guard / Angry Guard #1 / Tough Mob Member (voice)',2,19),(228165,48163,'Computer Voice / Shocked Mob Member (voice)',1,20),(228165,80634,'Mrs. Puff (voice)',1,21),(228165,122805,'Customer #2 (voice)',2,22),(228165,1065,'Angry Customer #1 (voice)',2,23),(228165,453,'Popsicle (voice)',1,24),(228165,132354,'Popsicle (voice)',1,25),(228165,1488236,'Bubbles (voice)',0,26),(228165,1381855,'Boy on the Beach',0,27),(228165,1456704,'Sandcastle Girl',0,28),(228165,1360421,'Kicking Boy',0,29),(228165,524503,'Mikey',2,30),(228165,1456705,'Tanning Woman',0,31),(228165,933509,'Woman with Stroller',1,32),(228165,1456706,'Young Woman Customer',1,33),(228165,1190891,'Customer',0,34),(228165,1456708,'Customer',0,35),(228165,1456709,'Older Boy Customer',0,36),(228165,1456710,'Boy Customer #2',0,37),(228165,1456711,'Young Boy with Cone',0,38),(228165,1456712,'Surfer Girl with Cone',0,39),(228165,1248289,'Woman on Sidewalk #1',0,40),(228165,138035,'Amy',0,41),(228165,159452,'Nut Vendor Customer',2,42),(228165,1456713,'Mother with Cone',1,43),(228165,1456714,'Young Girl with Cone',0,44),(228165,171896,'Nut Vendor',0,45),(228165,1395039,'Woman on Sidewalk',0,46),(228165,1456715,'Young Father',0,47),(228165,1456716,'Little Boy on Lifeguard Chair',0,48),(228165,1456717,'Food Truck Patron',0,49),(228165,1456718,'Man Eating Krabby Patty',0,50),(228165,1456719,'ND Beach Goer',1,51),(228165,1456720,'ND Beach Goer',0,52),(228165,1456721,'ND Beach Goer',1,53),(228165,1456722,'ND Beach Goer',0,54),(228165,1456723,'ND Beach Goer',0,55),(228165,1456724,'Beach Goer',1,56),(228165,1456725,'Surfer Dude (voice)',0,57),(228165,1456726,'Surfer Dude',0,58),(228165,70651,'Baby in Stroller (voice)',2,59),(228165,24358,'Pearl (voice)',1,60),(228165,188229,'Plankton / Plankton Robot / News Anchor Fish / Mob Member (voice)',2,61),(117263,17276,'Mike Banning',2,0),(117263,6383,'President Benjamin Asher',2,1),(117263,9780,'Lynne Jacobs',1,2),(117263,192,'Speaker Trumbull',2,3),(117263,8329,'Leah',1,4),(117263,10883,'Kang',2,5),(117263,32597,'Forbes',2,6),(117263,965819,'Connor',2,7),(117263,62645,'Jones',2,8),(117263,120251,'Mary Jane',1,9),(117263,6832,'Secretary of Defense Ruth McMillan',1,10),(117263,6614,'Roma',2,11),(117263,92058,'Vice President Charlie Rodriguez',0,12),(117263,5694,'General Edward Clegg',2,13),(117263,15852,'Margaret Asher',1,14),(117263,1116011,'Dr. Guildes',0,15),(117263,1116009,'Davis',0,16),(117263,1044954,'Yu',2,17),(117263,1024143,'Lim',1,18),(117263,164102,'Lee Tae-Woo',2,19),(117263,144279,'Korean Sniper',1,20),(117263,33836,'Ray Monroe',0,21),(44943,6383,'Michael Nantz',2,0),(44943,72985,'William Martinez',2,1),(44943,149484,'Cpl. Lee Imlay',2,2),(44943,74302,'Cpl. Jason Lockett',2,3),(44943,83968,'Peter Kerns',2,4),(44943,150664,'Cpl. Nick Stavrou',0,5),(44943,31133,'Kevin Harris',2,6),(44943,58330,'Steven Mottola',2,7),(44943,18354,'Michelle',1,8),(44943,80352,'Pfc. Shaun Lenihan',2,9),(44943,208096,'Corpsman Jibril Adukwu',2,10),(44943,145539,'Hector Rincon',0,11),(44943,454,'Joe Rincon',2,12),(44943,17647,'Elena Santos',1,13),(44943,125025,'Kirsten',1,14),(44943,55091,'LCpl. Richard Guerrero',0,15),(44943,66741,'LCpl. Corey Simmons',2,16),(44943,429,'Cpl. Scott Grayston',2,17),(44943,1088041,'Cpl. Richard Oswald',0,18),(44943,213049,'Amy',1,19),(44943,141762,'1st Sgt. John Roy',2,20),(44943,41020,'Company Captain',2,21),(44943,52483,'Lt. Col. K.N. Ritchie',2,22),(44943,108696,'Amanda',1,23),(44943,86271,'Cherise',1,24),(44943,450660,'Jessy',1,26),(44943,60875,'Psychiatrist',2,27),(44943,1091772,'Reporter on TV',0,28),(44943,200406,'Reporter on TV',2,29),(44943,1153536,'Chris',0,30),(44943,1205869,'Flower Shop Employee',0,31),(44943,1205870,'Command Hangar Marine',0,32),(44943,989249,'Adukwu\'s Sister',1,33),(44943,443219,'Reporter on Beach',1,34),(44943,1205880,'Sgt. Major',0,35),(44943,1205881,'Beach Goer (uncredited)',0,36),(44943,1205883,'Emergency Medical Tech. (uncredited)',0,37),(44943,1110282,'Beach Girl 1 (uncredited)',1,38),(44943,1045389,'Marine (uncredited)',2,39),(44943,1205884,'Firefighter (uncredited)',0,40),(44943,1205885,'Marine (uncredited)',0,41),(44943,1205886,'Marine (uncredited)',0,42),(44943,1205887,'Dead Civilian (uncredited)',0,43),(44943,1205888,'Marine (uncredited)',0,44),(44943,1205889,'Dead Civilian (uncredited)',0,45),(44943,1037370,'Citizen / Dead Citizen (uncredited)',0,46),(44943,1114412,'Marine (uncredited)',2,47),(44943,1205894,'U.S. Marine (uncredited)',0,48),(44943,1205895,'LAPD Officer Boggs (uncredited)',0,49),(44943,118755,'Steve Johinson (uncredited)',0,50),(44943,1205900,'Marine Crew Chief (uncredited)',0,51),(44943,1205901,'Doctor Running Away (uncredited)',0,52),(44943,9568,'Crew Chief (uncredited)',2,53),(44943,205011,'Shelly (uncredited)',1,54),(44943,1205902,'Civilian (uncredited)',2,55),(44943,1205903,'Civilian (uncredited)',0,56),(44943,1205904,'Gary (uncredited)',0,57),(44943,1205905,'Extra (uncredited)',0,58),(44943,1205906,'Beach Dude (uncredited)',0,59),(44943,167109,'Sergeant Major (uncredited)',2,60),(44943,1205907,'Dead Civilian (uncredited)',0,61),(44943,1188048,'Kathy Martinez',1,62),(57212,91606,'Capt. James Nicholls',2,0),(57212,71580,'Maj. Jamie Stewart',2,1),(57212,20286,'Geordie Soldier',2,2),(57212,1639,'Rose Narracott',0,3),(57212,225692,'Albert Narracott',2,4),(57212,11207,'Lyons',2,6),(57212,3064,'Ted Narracott',2,7),(57212,5847,'Pvt. Gu00fcnther Schru00f6der',0,8),(57212,15086,'Friedrich',2,9),(57212,1665,'Sgt. Fry',2,11),(57212,1389549,'Emilie',0,12),(57212,1252495,'Andrew Easton',0,14),(57212,589652,'David Lyons',2,15),(57212,65054,'Brandt',2,16),(57212,6969,'Sgt. Sam Perkins',2,17),(57212,1229255,'Sgt. Martin',2,18),(57212,1389553,'Sgt. Maj. Singh',0,19),(57212,36666,'Maj. Tompkins',2,20),(57212,1225859,'Lt.Waverley',0,21),(57212,15498,'Army Doctor',2,23),(57212,8206,'Soldier',0,24),(57212,550554,'German Officer at Farm',2,25),(57212,5444,'French Auctioneer',2,26),(57212,1339195,'German Trench Soldier',2,27),(57212,44637,'Senior German Officer',2,28),(57212,71589,'German Officer',2,30),(57212,21748,'German Artillery Officer',0,31),(57212,553003,'German Artillery Soldier',2,32),(57212,147634,'German Officer on Bridge',2,33),(57212,1643968,'Junior German Officer',2,34),(57212,5473,'Trench Captain',2,35),(57212,1228094,'Narracott\'s Neighbor',0,36),(152760,1892,'James Granger',2,0),(152760,112,'Claire Simone',1,1),(152760,1461,'Frank Stokes',2,2),(152760,1532,'Richard Campbell',2,3),(152760,1230,'Walter Garfield',2,4),(152760,19923,'Donald Jeffries',2,5),(152760,56024,'Jean Claude Clermont',2,6),(152760,12438,'Preston Savitz',2,7),(152760,1050916,'Colonel Wegner',2,8),(152760,89821,'Sam Epstein',2,9),(152760,5646,'Viktor Stahl',2,10),(152760,84197,'Commander Elya',2,11),(152760,563559,'Colonel Langton',2,12),(152760,1330044,'Captain Harpen',2,13),(152760,54274,'Rene Armand',2,14),(152760,48392,'Hermann Goering',2,15),(152760,31511,'Doctor',2,16),(152760,38486,'Dentist',2,17),(152760,2949,'Emile',2,18),(152760,235807,'Aachen Vicar',0,19),(152760,6087,'Stahl\'s Wife',0,20),(152760,1248741,'Major Piper',0,21),(49017,114019,'Dracula / Vlad Tepes',2,0),(49017,190895,'Mirena / Mina Murray',1,1),(49017,55470,'Mehmed II',2,2),(49017,1050248,'Ingeras',2,3),(49017,4391,'Master Vampire',2,4),(49017,1330044,'Dimitru',2,5),(49017,84865,'Cazan',2,6),(49017,2050,'Captain Petru',2,7),(49017,20523,'Simion',2,8),(49017,62307,'Shkelgim',2,9),(49017,1211873,'Hamza Bey',2,10),(49017,27649,'General Omer',2,11),(49017,1065016,'Bright Eyes',0,12),(49017,489961,'Acemi',0,13),(49017,1334010,'Governess',1,14),(49017,1352394,'The Village Elder',0,15),(49017,71281,'Brother Lucian',2,16),(49017,1868959,'Mirena\'s Handmaiden',0,17),(49017,1150466,'Handmaiden (uncredited)',0,18),(49017,1488465,'Nicolae',0,19),(49017,1322236,'Andrei',2,20),(49017,89830,'General Ismail',2,21),(49017,1268984,'Turkish General',2,22),(44564,32895,'Nick Brannen',2,1),(44564,4937,'Ronny Valentine',2,1),(44564,1920,'Geneva Brannen',1,2),(44564,6161,'Beth',1,2),(44564,15758,'Dana',1,4),(44564,66441,'Concept Car Spokesmodel',1,5),(44564,38673,'Zip',2,6),(44564,10486,'Thomas Fern',2,7),(44564,43599,'Shoot the Puck Girl',1,8),(44564,143714,'Jackie',1,9),(44564,143715,'Cousin Betty',1,10),(44564,1394359,'Young Chrysler Employee / Package Delivery Man / Dodge Stratus Guy / ... (uncredited)',0,11),(44564,568405,'B & V Worker',1,12),(44564,26930,'Diane Popovich',1,13),(44564,1782439,'Felix',0,14),(44564,22250,'Burt',2,15),(44564,15661,'Herbert Trimpy',2,16),(44564,1651130,'Saul',2,17),(44564,1062823,'Dr. Rosenstone',0,18),(44564,3273,'Sue',1,19),(44564,135715,'Cousin James',2,20),(44564,1226519,'Charles',2,21),(44564,1395525,'B & V Worker',0,22),(44564,1445659,'B & V Worker',0,23),(44564,1782440,'Medic at Gardens',0,24),(44564,1334139,'Poissonier',0,25),(44564,1782443,'Restaurant Server',1,26),(44564,1782444,'Restaurant Server',1,27),(44564,1782445,'Restaurant Patron',1,28),(44564,1782446,'Waitress',1,29),(44564,1782447,'Vietnamese Parlor Owner',0,30),(44564,35520,'Vietnamese Parlor Worker',1,31),(44564,3909,'Camera Clerk',2,32),(44564,1782448,'Store Clerk',1,33),(44564,1313093,'Bank Customer',0,34),(44564,1032886,'Bank Customer',2,35),(44564,1492970,'Bank Customer',0,36),(44564,1226311,'Gilbert',0,37),(44564,59025,'Mom',1,38),(44564,1782449,'Son',0,39),(44564,1782450,'El Train Patron',0,40),(44564,1782451,'Diane\'s Son',0,41),(44564,1782452,'Skae Rat',0,42),(44564,1782453,'Skate Rat',0,43),(44564,1782454,'Skate Rat',0,44),(44564,1782455,'Receptionist',0,45),(44564,1782456,'Shoot the Puck Announcer',0,46),(44564,1782458,'Shoot the Puck Guy',0,47),(44564,8419,'Disgruntled Fan',0,48),(44564,1197336,'Concession Stand Customer',2,49),(44564,1782459,'Concession Stand Customer',0,50),(44564,1782460,'Juan',0,51),(44564,1782461,'Chrysler Board Member',0,52),(44564,1782462,'Blackhawks Fan',1,53),(44564,1782463,'Car Show Attendee',0,54),(44564,1230655,'Weiner Circle Worker',0,55),(44564,1782464,'Chinatown Pedestrian',0,56),(44564,1782465,'Gambler',0,57),(44564,1782466,'Blackhawks Fan',0,58),(44564,1782467,'Bar Patron',0,59),(44564,1782468,'Waitress / Pedestrian',1,60),(44564,1782469,'Restaurant Patron',2,61),(44564,1782470,'Blackhawks Fan',0,62),(44564,489697,'Palm Garden Docent',0,63),(44564,1782471,'Gambler',0,64),(44564,1782472,'Chrysler Auto Show Girl',0,65),(44564,1782473,'Blackhawks Fan',0,66),(44564,1679800,'Blackhawks Fan',1,67),(44564,1782452,'Skate Rat',0,68),(44564,1782474,'Pedestrian',0,69),(44564,1782475,'Businesswoman in Chrysler Lobby',0,70),(44564,1782476,'Auto Show Spokesmodel',1,71),(44564,505400,'Auto Executive / Blackhawks Fan',0,72),(44564,1782477,'Anniversary Party Family Member',0,73),(44564,1491386,'Gambler',0,74),(44564,1463674,'Ice Security',0,75),(44564,1782478,'Blackhawks Ice Crew Girl',1,76),(44564,1246221,'Jeep Auto Representative',1,77),(44564,1782479,'Bar / Auto Show Patron',1,78),(44564,1782480,'Auto Parts Dealer',0,79),(44564,1260067,'Pedestrian',1,80),(44564,1782481,'Bar Patron',0,81),(44564,1782483,'Bar Patron',0,82),(44564,1782484,'Businessman in Lobby',0,83),(44564,1739420,'Back Room Poker Player',0,84),(44564,1782486,'Auto Show Attendee',0,85),(44564,1739427,'Blackhawks Fan',2,86),(44564,1782487,'Pedestrian / Restaurant Patron',0,87),(44564,1782488,'Art Student',1,88),(44564,1782489,'Gardens Student',0,89),(44564,1782490,'Weiner Circle Customer',0,90),(44564,1782491,'Bar Patron',0,91),(44564,1782492,'Bank Customer',0,92),(44564,1197358,'Chrysler Executive',0,93),(44564,1782493,'Blackhawks Fan',0,94),(44564,1782495,'Pedestrian',1,95),(44564,1782498,'Blackhawks Fan',1,96),(44564,1782502,'Blackhawks Fan',0,97),(44564,568607,'Chrysler Employee',0,98),(44564,1391780,'El Train Rider',0,99),(44564,1782503,'Chrysler Executive',1,100),(44564,1782507,'Uncle',0,101),(44564,1782508,'Auto Show Attendee',1,102),(44564,1782510,'Chrysler Review Board Member',0,103),(44564,1782511,'Chrysler Executive',0,104),(44564,1782513,'B & V Worker',0,105),(44564,1782514,'Auto Show Attendee / Blackhawks Fan / Little Chinatown Pedestrian',0,106),(44564,1782517,'Businesswoman',1,107),(44564,1782520,'Blackhawks Fan',0,108),(44564,1782521,'Auto Executive',0,109),(52520,3967,'Selene',1,0),(52520,9029,'Dr. Jacob Lane',2,1),(52520,8177,'Detective Sebastian',2,2),(52520,587020,'David',2,3),(52520,221116,'Eve',0,4),(52520,4391,'Thomas',2,5),(52520,65345,'Lida',1,6),(52520,115177,'British newscaster',1,7),(52520,208069,'Kolb (Officer)',2,8),(52520,211958,'Waterfront Cop',2,9),(52520,60721,'Leader of the Troop',2,10),(52520,582923,'Lestroy',0,11),(52520,928199,'Jack Fletcher',0,12),(52520,12371,'Lycan 1',2,13),(52520,85505,'Lycan 2',2,14),(52520,118459,'Announcing Guard',2,15),(52520,75532,'Surgical Nurse',1,16),(52520,168540,'Scientist',2,17),(52520,1219446,'Old City Cop #1',2,18),(52520,1475089,'Old City Cop #2',2,19),(52520,557840,'Quint Lane',2,20),(52520,173006,'Medical Supervisor',2,21),(52520,208677,'Desk Guard',0,22),(52520,52030,'Olivia',0,23),(52520,939457,'Med Tech',2,24),(52520,43612,'Security Guard #1',2,25),(52520,8210,'Antigen Scientist (uncredited)',2,26),(52520,100,'Michael (archive footage) (uncredited)',2,27),(52520,115177,'BBC Announcer (uncredited)',1,28),(52520,1608628,'Cadillac Driver (uncredited)',2,29),(52520,1608629,'Antigen Surgeon (uncredited)',2,30),(80585,143240,'Sherrie Christian',1,0),(80585,935201,'Drew Boley',2,1),(80585,500,'Stacee Jaxx',2,2),(80585,7447,'Dennis Dupree',2,3),(80585,59919,'Lonny Barnett',2,4),(80585,50463,'Constance Sack',1,5),(80585,13242,'Paul Gill',2,6),(80585,17419,'Mayor Mike Whitmore',2,7),(80585,1922,'Patricia Whitmore',1,8),(80585,1064157,'Beth',1,9),(80585,1064158,'Bartender Jimmy',0,10),(80585,162849,'Doug Flintlock',2,11),(80585,84933,'Justice',1,12),(80585,62831,'Mitch Miley',2,13),(80585,16847,'Stefano',2,14),(80585,1559224,'Random Guy',0,15),(80585,1753569,'Crook',0,16),(80585,1753571,'Rocker Thief',0,17),(80585,1719379,'Mayor\'s Secretary',1,18),(80585,1753573,'Chico',0,19),(80585,151121,'Tour Manager - Stacee',0,20),(80585,135352,'Stacee\'s Bodyguard',2,21),(80585,56448,'Stacee\'s Bodyguard',2,22),(80585,1753574,'Stacee Groupie',1,23),(80585,970084,'Stacee Groupie',1,24),(80585,1753575,'Stacee Groupie',1,25),(80585,1235140,'Stacee Groupie',1,26),(80585,29214,'Church Horse Mother',1,27),(80585,17641,'Protest Mother #1',1,28),(80585,1290618,'Protest Mother #2',1,29),(80585,90595,'Drew\'s Band',0,30),(80585,1753582,'Drew\'s Band',0,31),(80585,1753583,'Drew\'s Band',0,32),(80585,53200,'Drew\'s Band',2,33),(80585,931218,'Waitress #1',1,34),(80585,1531141,'Waitress #2',1,35),(80585,1753585,'Waitress #3',0,36),(80585,1753586,'Arsenal Band',0,37),(80585,1753587,'Arsenal Band',0,38),(80585,1357033,'Store Manager',0,39),(80585,1753588,'Motel Manager',0,40),(80585,1355838,'Slutty Girl',1,41),(80585,1753590,'Destiny',1,42),(80585,1462288,'Record Executive',0,43),(80585,1218601,'Record Executive',0,44),(80585,100643,'Clothes Stylist',1,45),(80585,1753593,'Z-Guyeezz #1 - Donny',0,46),(80585,1753594,'Z-Guyeezz #2 - Joey',0,47),(80585,1753595,'Z-Guyeezz #3 - Kevy',0,48),(80585,148993,'Louise / Assistant #2',1,49),(80585,1753598,'Sinnamon',1,50),(80585,51990,'Rolling Stone Receptionist',2,51),(80585,1753601,'Kissing Girl',1,52),(80585,1753603,'Female Fan',1,53),(80585,1753605,'Dancer - Protesting Mother',1,54),(80585,1753607,'Dancer - Protesting Mother',1,55),(80585,1748116,'Dancer - Protesting Mother',1,56),(80585,1753609,'Dancer - Protesting Mother',1,57),(80585,1753611,'Dancer - Protesting Mother',1,58),(80585,1753615,'Dancer - Protesting Mother',1,59),(80585,1093168,'Dancer - Protesting Mother',1,60),(80585,1753622,'Dancer - Protesting Mother',1,61),(80585,1753623,'Dancer - Protesting Mother',1,62),(80585,1753629,'Dancer - Protesting Mother',1,63),(80585,1753631,'Dancer - Bourbon Worker',1,64),(80585,1753634,'Dancer - Bourbon Worker',0,65),(80585,1753636,'Dancer - Bourbon Worker',0,66),(80585,1753637,'Dancer - Bourbon Patron',1,67),(80585,1753638,'Dancer - Bourbon Patron',0,68),(80585,1753639,'Dancer - Bourbon Patron',1,69),(80585,1753640,'Dancer - Bourbon Patron',0,70),(80585,1753641,'Dancer - Bourbon Patron',1,71),(80585,1753642,'Dancer - Bourbon Patron',1,72),(80585,1537855,'Dancer - Bourbon Patron',0,73),(80585,1753643,'Dancer - Bourbon Patron',1,74),(80585,1753644,'Dancer - Bourbon Patron',1,75),(80585,1753645,'Dancer - Bourbon Patron',1,76),(80585,1753646,'Dancer - Bourbon Patron',1,77),(80585,1753647,'Dancer - Bourbon Patron',0,78),(80585,1753648,'Dancer - Bourbon Patron',0,79),(80585,1753649,'Dancer - Venus Gentleman\'s Club',1,80),(80585,1720349,'Dancer - Venus Gentleman\'s Club',2,81),(80585,1753690,'Dancer - Venus Gentleman\'s Club',0,82),(80585,1753693,'Dancer - Venus Gentleman\'s Club',0,83),(80585,1753694,'Dancer - Venus Gentleman\'s Club',1,84),(80585,1753696,'Dancer - Venus Gentleman\'s Club',1,85),(80585,1050312,'Dancer - Venus Gentleman\'s Club',0,86),(80585,1753697,'Dancer - Venus Gentleman\'s Club',1,87),(80585,1753698,'Dancer - Venus Gentleman\'s Club',1,88),(80585,1753699,'Dancer - Venus Gentleman\'s Club',1,89),(80585,1753700,'Dancer - Venus Gentleman\'s Club',1,90),(80585,1748180,'Dancer - Venus Gentleman\'s Club',0,91),(80585,1753701,'Dancer - Venus Gentleman\'s Club',0,92),(80585,1753702,'Dancer - Venus Gentleman\'s Club',1,93),(80585,1753704,'Dancer - Venus Gentleman\'s Club',1,94),(80585,1437499,'Dancer - Venus Gentleman\'s Club',0,95),(80585,1753706,'Dancer - Venus Gentleman\'s Club',0,96),(80585,1028668,'Dancer - Venus Gentleman\'s Club',2,97),(80585,1753708,'Dancer - Venus Gentleman\'s Club',1,98),(80585,582838,'Dancer - Venus Gentleman\'s Club',0,99),(80585,1753709,'Dancer - Venus Gentleman\'s Club',0,100),(80585,1753711,'Dancer - Venus Gentleman\'s Club',1,101),(80585,1741326,'Dancer - Venus Gentleman\'s Club',1,102),(80585,1754070,'Dancer - Venus Gentleman\'s Club',0,103),(80585,1754071,'Dancer - Venus Gentleman\'s Club',1,104),(80585,1754072,'Dancer - Venus Gentleman\'s Club',0,105),(80585,1048212,'Dancer - Venus Gentleman\'s Club',2,106),(80585,1754073,'Dancer - Venus Gentleman\'s Club',1,107),(80585,1748185,'Dancer - Venus Gentleman\'s Club',0,108),(80585,1449378,'Dancer - Venus Gentleman\'s Club',1,109),(80585,1754076,'Dancer - Venus Gentleman\'s Club',1,110),(80585,219537,'Dancer - Venus Gentleman\'s Club',0,111),(80585,1754079,'Dancer - Venus Gentleman\'s Club',0,112),(80585,1754081,'Burgundy Room Rocker',0,113),(80585,1754082,'News Reporter',1,114),(80585,1754087,'Groupie',1,115),(80585,1681798,'Bourbon Room Rocker',0,116),(80585,1540632,'Game Concession Hawker',0,117),(80585,1754091,'Bandana Rocker',0,118),(80585,1754093,'Singing Bus Passenger',0,119),(80585,1754094,'Lady at the Park',0,120),(80585,1754096,'Protestor Mom',1,121),(80585,1754097,'Rocker',0,122),(80585,1252245,'Amusement Park Guest',1,123),(80585,1737034,'Homeless Man',0,124),(80585,1018743,'Band Member',0,125),(80585,1604990,'Venus Room Dancer',1,126),(80585,1754100,'Tranny',0,127),(80585,1754102,'Rocker',0,128),(80585,1537742,'Protestor / Pedestrian',1,129),(80585,1754106,'Rocker',1,130),(80585,1737038,'The Bourbon Room Rocker / Dancer',1,131),(80585,1754107,'Rocker Chick',1,132),(80585,1754124,'Punk Girl',1,133),(80585,1737039,'Rocker',0,134),(80585,1614418,'Waitress',1,135),(80585,1754132,'Arsenal Roadie',0,136),(80585,1754134,'Rocker',0,137),(80585,1754136,'Businessman',0,138),(80585,1754137,'Security Guard',0,139),(80585,1434566,'Stoned Rocker',0,140),(80585,1456706,'Rocker Chick',1,141),(80585,1737042,'Rocker',0,142),(80585,1754139,'Venice Beach Rockstar',0,143),(80585,1754140,'Rocker Babe',1,144),(80585,1754141,'Roller Skater',1,145),(80585,1742488,'Arsenal Rock Fan',1,146),(80585,1754144,'Automobile Driver',0,147),(80585,1754145,'Rocker',0,148),(80585,1754146,'Barricade Pedestrian',0,149),(80585,1590539,'Singing Bus Passenger',2,150),(80585,1754147,'Arsenal Roadie',0,151),(80585,1754148,'Front Row Concert Attendee',0,152),(80585,1754149,'Roadie',0,153),(80585,1754150,'Rocker',1,154),(80585,1754151,'Front Row Concert Attendee',0,155),(80585,932093,'Dancer',1,156),(80585,1367010,'Protestor',0,157),(80585,1754161,'Rocker',0,158),(80585,1252244,'Rocker',0,159),(80585,1754162,'Phonebooth Rocker',1,160),(80585,1019545,'Dancer',2,161),(80585,1536505,'Singing Bus Passenger',1,162),(80585,1754172,'Rocker Chick',1,163),(80585,1754176,'Bourbon Room Rocker',0,164),(80585,1754177,'Rocker',1,165),(80585,1754178,'Protestor',0,166),(80585,1754179,'Driver',0,167),(80585,1754180,'Sexy Rock Girl Pedestrian',1,168),(80585,1737060,'Conservative Protester',0,169),(80585,1027142,'Doorman',0,170),(80585,1754183,'Dancer',1,171),(80585,1754189,'Stacee Jaxx Fan',1,172),(80585,1154191,'Concession Operator',2,174),(80585,1754194,'Rock Fan at Bar',0,175),(80585,1754195,'Fan',1,176),(80585,1205746,'Rocker 303',1,177),(80585,1630255,'Stoned Surfer Rocker',0,178),(80585,1388355,'Record Executive',0,179),(80585,1754196,'Protest Mom',1,180),(80585,1754197,'Man in Street',0,181),(80585,1346258,'Stoned Dude',0,182),(80585,961388,'Rocker Guy',2,183),(80585,1754198,'Stacee\'s Fan',1,184),(80585,1754200,'Fan',1,185),(80585,1754202,'Video Vixen',1,186),(80585,1754203,'Bourbon Room Roadie / Venice Beach Lead Guitar',0,187),(80585,1754204,'Rocker',1,188),(80585,1754205,'Rocking Cool Dude',0,189),(80585,1754206,'Midwestern Mom',1,190),(80585,1754220,'Rocker',1,191),(80585,1262695,'Mayor\'s Assistant',0,192),(80585,1754221,'Arsenal Rock Fan',1,193),(80585,1754222,'Guy in Crowd',2,194),(80585,1754225,'Rocker',1,195),(80585,1754228,'Arsenal Fan',1,196),(80585,1467893,'Singing Bus Passenger',0,197),(80585,1685824,'Staircase Dancer',1,198),(80585,1754241,'Narrator (voice)',1,199),(80585,1754244,'Rocker',1,200),(80585,1754252,'Arsenal Groupie',0,201),(80585,1754253,'Gas Station Customer',0,202),(80585,1754254,'Campaign Supporter',1,203),(80585,1754271,'Rocker',0,204),(80585,1754272,'Driver',0,205),(80585,1754273,'Dancer',1,206),(80585,1754274,'Dancer',1,207),(80585,1754280,'Arsenal Fan',0,208),(80585,1657468,'Comedian',0,209),(80585,1754281,'Rocker',1,210),(80585,1754282,'Arsenal Fan',1,211),(80585,1754288,'Rocker',0,212),(80585,1754289,'Rocker',0,213),(80585,1581205,'Sunset Strip Dude / Cafe Patron',0,214),(80585,1225956,'Girl in Crowd',1,215),(80585,1754293,'Rocker',1,216),(80585,1754294,'Bus Passenger',0,217),(80585,1754295,'Dancer',0,218),(80585,1754296,'Rocker',1,219),(80585,1256257,'Popcorn Woman',1,220),(80585,1754299,'Street Rocker',1,221),(80585,1754300,'Record Store Customer / Rocker / Bouncer / Taxi Driver',0,222),(80585,1292730,'Rocker',1,223),(80585,1752945,'Grauman\'s Theater Tourist (uncredited)',2,224),(49021,976,'Danny',2,0),(49021,2296,'Spike',2,1),(49021,380,'Hunter',2,2),(49021,10862,'Davies',2,3),(49021,63312,'Anne',1,4),(49021,144081,'Meier',2,5),(49021,77335,'Martin',2,6),(49021,31164,'Agent',2,7),(49021,267790,'M16 Man',0,8),(49021,123879,'Pennock',2,9),(49021,75122,'Harris',2,10),(49021,56450,'Bakhait',2,11),(49021,85354,'Commander B',2,12),(49021,42393,'Colonel Fitz',2,13),(49021,369078,'Campbell',0,14),(49021,1387586,'Harris\' Girlfriend',0,15),(49021,1200415,'Dutchy',2,16),(49021,1418813,'Finn',0,17),(59981,128206,'Dorothy (voice)',1,0),(59981,707,'Scarecrow (voice)',2,1),(59981,2387,'Tugg (voice)',2,2),(59981,12791,'Marshall Mallow (voice)',2,3),(59981,26485,'The Cowardly Lion (voice)',2,4),(59981,17485,'Wiser the Owl (voice)',2,5),(59981,7090,'The Tin Man (voice)',2,6),(59981,78798,'Munchkin Suitor (voice)',2,7),(59981,8318,'Judge Jawbreaker (voice)',2,8),(59981,146748,'China Princess (voice)',1,9),(59981,519,'The Jester (voice)',2,10),(59981,40389,'Glinda (voice)',1,11),(201088,74568,'Nicholas Hathaway',2,0),(201088,134184,'Chen Dawai',0,1),(201088,38280,'Chen Lien',0,2),(201088,19492,'Carol Barrett',1,3),(201088,7497,'Mark Jessup',2,4),(201088,63585,'Alex Trang',2,5),(201088,13939,'Elias Kassar',2,6),(201088,120826,'Jeff Robichaud',0,7),(201088,40543,'Henry Pollack',2,8),(201088,31387,'Sadak',0,9),(201088,1353945,'Tech',0,10),(201088,63238,'Sort Guard',2,11),(201088,7428,'Assistant Warden Jeffries',0,12),(201088,59293,'Shum',2,13),(201088,1324452,'Daniels',2,14),(201088,1182725,'Alonzo Reyes',0,15),(201088,49275,'Gary Baker',2,16),(201088,15338,'Rich Donahue',2,17),(201088,1211862,'Keith Yan',2,19),(107846,16483,'Ray Breslin',2,0),(107846,1100,'Emil Rottmayer',2,1),(107846,8767,'Willard Hobbes',2,2),(107846,980,'Drake',2,3),(107846,62644,'Hush',2,4),(107846,7132,'Lester Clark',2,5),(107846,98215,'Roag',2,6),(107846,4783,'Dr. Kyrie',2,7),(107846,575674,'Babcock',2,8),(107846,1042684,'Receptionist',1,9),(107846,578736,'Captain Baradah',2,10),(107846,147056,'Jessica Miller',1,11),(107846,39388,'Abigail Ross',1,12),(107846,57452,'Javed',2,13),(107846,1181295,'Gabriel',0,14),(107846,1181296,'Console Guard #1',0,15),(107846,565508,'Babylon Guard',0,16),(107846,1381389,'Pilot',0,17),(107846,40684,'Second Lieutenant',2,18),(107846,56448,'Prisoner Beaten By Breslin',2,19),(107846,1381388,'Skinhead Prisoner',0,20),(107846,1358061,'Voice (voice)',0,21),(107846,20582,'Prisoner Beaten By Breslin',2,22),(107846,1158069,'Inmate / Moroccan Cop',0,23),(107846,186922,'State Trooper',0,24),(107846,6110,'Brims',2,25),(107846,1042685,'Tourist',0,26),(107846,1503890,'Front Gate Guard',0,27),(107846,1463687,'Screaming Prisoner',2,28),(107846,1503891,'Rottmayer Stand-In',0,29),(107846,1503892,'Console Guard #2',0,30),(107846,237345,'Sleek Moroccan',0,31),(107846,1268072,'Prison Guard',2,32),(107846,1503893,'Weightlifter Prisoner',0,33),(107846,1391332,'Prisoner',0,34),(107846,1134660,'Babylon Prisoner',0,35),(188207,34502,'Hercules',2,0),(188207,934219,'Sotiris',2,1),(188207,1165384,'Hebe',1,2),(188207,78110,'King Amphitryon',2,3),(188207,228969,'Queen Alcmene',1,4),(188207,165441,'Iphicles',0,5),(188207,60805,'Creon',2,6),(188207,1118,'Chiron',2,7),(188207,51670,'Tarak',2,8),(188207,214019,'Agamemnon',0,9),(188207,26258,'Lucius',2,10),(188207,206024,'Saphirra',0,11),(188207,1350263,'King Galenus / Champion #1',0,12),(188207,94702,'King Tallas',2,13),(188207,1108570,'Half Face / Champion',2,14),(188207,25451,'Humbaba',0,15),(188207,105688,'Battalion Commander',0,16),(188207,61861,'Battalion Commander',0,17),(188207,16938,'Officer Linus (uncredited)',2,18),(214756,13240,'John',2,0),(214756,52139,'Ted (voice)',2,1),(214756,71070,'Samantha Jackson',1,2),(214756,207150,'Tami-Lynn',1,3),(214756,1771,'Donny',2,4),(214756,192,'Patrick Meighan',2,5),(214756,33321,'Himself',2,6),(214756,9657,'Guy',2,7),(214756,2391,'Rick',2,8),(214756,17200,'Frank',2,9),(214756,21134,'Shep Wild',2,10),(214756,999320,'Joy',1,11),(214756,3911,'Tom Jessup',2,12),(214756,85170,'Judge',2,13),(214756,3896,'Customer',2,14),(214756,352,'Fertility Doctor',2,15),(214756,2387,'Narrator (voice)',2,16),(214756,1223657,'Himself',0,17),(214756,14991,'Jay Leno',2,18),(214756,78303,'Jimmy Kimmel',0,19),(214756,1240487,'Kate McKinnon',1,20),(214756,452205,'Bobby Moynihan',2,21),(214756,1213573,'Taran Killam',0,22),(214756,103545,'Dr. Ed Danzer',0,23),(214756,78789,'Karl Jackson',2,24),(214756,170835,'Comic',2,25),(214756,74070,'Adoption Agent',1,26),(214756,1358986,'Female Nurse',1,27),(214756,130782,'Allison',1,28),(214756,1228941,'Blind Guy',0,29),(214756,1384708,'Waitress',1,30),(214756,523952,'Borg',2,31),(214756,1224543,'NYC Doctor',2,32),(214756,1593121,'Jury Foreman',2,33),(214756,84792,'Pundit',2,34),(214756,1376001,'Comic Con Booth Girl (uncredited)',1,35),(214756,928638,'Bar Patron (uncredited)',0,36),(214756,1583786,'Baroness Girl (uncredited)',1,37),(214756,1586843,'Ted\'s Court Gallery (uncredited)',2,38),(214756,1593122,'Wedding Guest (uncredited)',1,39),(214756,19444,'Todd Kidder',0,40),(214756,1224996,'Boston Newscaster',1,41),(214756,1360002,'Boston Neighbor',0,42),(214756,1220564,'Wedding Singer',0,43),(214756,1759594,'NYC Nurse',0,44),(214756,570785,'Obi-Wan',2,45),(214756,60286,'Stormtrooper',2,46),(214756,154937,'Juror',0,47),(214756,1370953,'Juror',2,48),(214756,1360004,'Receptionist',0,49),(214756,1502955,'Cyclist',0,50),(214756,1743022,'Jogger',0,51),(214756,203207,'Pundit',0,52),(214756,1217619,'Pundit',0,53),(214756,98410,'Pundit',1,54),(214756,1598859,'Pundit',2,55),(214756,1224494,'Pundit',0,56),(214756,87131,'Cop (Boston PD)',2,57),(214756,1360005,'Cop (Boston PD)',0,58),(214756,81668,'Meighan Assistant',0,59),(214756,131849,'Reporter',1,60),(214756,1759612,'Comic Con Fan',0,61),(214756,130836,'Police Dispatcher',2,62),(214756,1759618,'Diner Waitress',0,63),(214756,1759621,'Bachelor Party Guest',0,64),(214756,15762,'Ted Toy (voice)',1,65),(214756,148120,'Tiffany',0,66),(214756,1759630,'Bailiff',0,67),(214756,82287,'Pundit',0,68),(214756,1230194,'Pundit',0,69),(214756,1464845,'Nerd (Wedgie)',0,70),(214756,1077806,'Hellboy',2,71),(214756,1759634,'Vendor',0,72),(214756,1759635,'Film Executive',0,73),(214756,1224526,'Wedding Announcer',0,74),(214756,1759636,'Cake Girl',0,75),(214756,1759637,'Comic Con Attendee',0,76),(214756,1759638,'Courthouse Spectator (uncredited)',0,77),(214756,1757043,'Wedding Guest (uncredited)',0,78),(214756,1516957,'Booth Girl (uncredited)',0,79),(214756,1745921,'Well Wisher (uncredited)',0,80),(214756,1759659,'Flash Girl (uncredited)',0,81),(214756,1264229,'Ted Supporter (uncredited)',1,82),(214756,1759661,'My Little Pony Booth Girl (uncredited)',0,83),(214756,1759665,'Comic Con Attendee (uncredited)',0,84),(214756,1569519,'Piano / Ginger Girl (uncredited)',0,85),(214756,1759666,'Comic Con Attendee (uncredited)',0,86),(214756,1482685,'Comic Con Attendee (uncredited)',0,87),(214756,1759667,'Comic Con Attendee (uncredited)',0,88),(214756,1759668,'Courtroom Observer (uncredited)',0,89),(214756,1759669,'Wedding Guest (uncredited)',0,90),(214756,1553308,'Reporter (uncredited)',1,91),(214756,1759670,'Comic Con Attendee (uncredited)',0,92),(214756,1759672,'Comic Con Attendee (uncredited)',0,93),(214756,1759674,'Comic Con Booth Girl (uncredited)',0,94),(214756,1759676,'Ginger Girl (uncredited)',0,95),(214756,1759678,'Fairy at Comic Con (uncredited)',0,96),(214756,1570734,'Wedding Guest (uncredited)',0,97),(214756,1759681,'Booth Girl (uncredited)',0,98),(214756,1759682,'Hot Comic Con Girl (uncredited)',0,99),(214756,1759683,'Fox Booth Girl (uncredited)',0,100),(214756,1759684,'Kissing Couple (uncredited)',0,101),(214756,1759685,'Scat Pack Girl #2 (uncredited)',0,102),(214756,1759686,'Ginger Girl (uncredited)',0,103),(214756,1516760,'Piano / Ginger Girl (uncredited)',0,104),(48988,887,'Rick Mills',2,0),(48988,58224,'Fred Searing',2,1),(48988,51856,'Maggie Mills',1,2),(48988,18979,'Grace Searing',1,3),(48988,212833,'Leigh',1,4),(48988,39189,'Gary',2,5),(48988,79497,'Rick Coleman',2,6),(48988,109513,'Paige',1,7),(48988,168326,'Britney',1,8),(48988,28633,'Coakley',2,9),(48988,166772,'Dr. Lucille Lucy Gilbert',1,10),(48988,42199,'Officer #1',2,11),(48988,200109,'Asian Husband',0,12),(300673,62064,'Bernie Webber',2,0),(300673,1893,'Ray Sybert',2,1),(300673,11107,'Richard Livesey',2,2),(300673,8783,'Daniel Cluff',2,3),(300673,302165,'Miriam Webber',1,4),(300673,40543,'Wallace Quirey',2,5),(300673,59219,'Andy Fitzgerald',0,6),(300673,37154,'Ervin Maske',2,7),(300673,95047,'Frank Fauteux',2,8),(300673,53259,'D.A. Brown',2,9),(300673,1078613,'Mel Gouthro',0,10),(300673,40039,'Tchuda Southerland',2,11),(300673,21132,'George \'Tiny\' Myers',2,12),(300673,1251875,'Eldon Hanan',2,13),(300673,993774,'Bea Hansen',1,14),(300673,13138,'Donald Bangs',0,15),(300673,1232599,'Carl Nickerson',0,16),(300673,1750078,'Domingo Garcia',0,17),(300673,1168858,'John Stello',2,18),(300673,1750079,'Dave Ryder',0,19),(300673,1732326,'Catherine Paine',0,20),(300673,928638,'Fisherman at Bar',0,21),(38778,4495,'Barry',2,0),(38778,22226,'Tim Wagner',2,1),(38778,121953,'Julie',1,2),(38778,55936,'Kieran Vollard',0,3),(38778,58225,'Therman',2,5),(38778,66446,'Darla',1,6),(38778,21089,'Lance Fender',2,7),(38778,80536,'Mu00fceller',2,8),(38778,17402,'Caldwell',2,9),(38778,109869,'Susana',0,11),(38778,71402,'Robin',1,13),(38778,79082,'Henderson',2,15),(38778,31737,'Birgit',1,16),(38778,40477,'Marco',2,17),(38778,76982,'Lewis the Ventriloquist',2,18),(38778,6944,'Madame Nora',1,19),(38778,52801,'Vincenzo',2,20),(38778,1539,'Chuck',2,21),(38778,230852,'Catherine',1,22),(38778,227477,'Christina - Bird Girl',1,23),(72331,239996,'Abraham Lincoln',2,0),(72331,55470,'Henry Sturgess',2,1),(72331,53650,'Will Johnson',2,2),(72331,17628,'Mary Todd Lincoln',1,3),(72331,17328,'Adam',2,4),(72331,60205,'Jefferson Davis',2,5),(72331,20982,'Jack Barts',2,6),(72331,565500,'Gabrielle',0,7),(72331,22125,'Joshua Speed',2,8),(72331,565501,'Henry\'s Wife',1,9),(72331,565503,'Willie Lincoln',0,10),(72331,565504,'Jeb Nolan',2,11),(72331,565505,'Rev. Charles Dresser',0,12),(72331,565506,'Nancy Lincoln\'s Doctor',0,13),(72331,565507,'Edward\'s Dancer #16',0,14),(72331,565508,'Congress Man',0,15),(72331,21088,'Stephen A. Douglas',2,16),(72331,136348,'Nancy Hanks Lincoln',1,17),(72331,147721,'Vadoma',1,18),(72331,62072,'Harriet Tubman',1,19),(72331,565498,'Vadoma Maid',1,20),(72331,119783,'Thomas Lincoln',2,21),(72331,1271772,'Young Abraham Lincoln',2,22),(72331,221087,'Young Will',2,23),(72331,1271773,'RR Pastor',2,24),(72331,1566267,'Will\'s Brother',2,25),(72331,112285,'Pharmacist',2,26),(72331,60884,'Angry Resident',2,27),(72331,52409,'Bull Run Private',2,28),(72331,60874,'Captain Slash',2,29),(72331,1631577,'Typographer',2,30),(72331,550317,'Dancer',1,31),(72331,1289978,'Dancer',0,32),(72331,1631578,'Dancer',1,33),(72331,1631582,'Dancer',1,34),(72331,1566252,'Prostitute',0,35),(136797,84497,'Tobey Marshall',2,0),(136797,55470,'Dino Brewster',2,1),(136797,17606,'Julia Maddon',1,2),(136797,17838,'Finn',2,3),(136797,72985,'Joe Peck',2,4),(136797,127281,'Little Pete Coleman',2,5),(136797,118545,'Anita Coleman',1,6),(136797,2232,'Monarch Maddon',2,7),(136797,484359,'Benny Jackson',2,8),(136797,1262082,'Leigh Dennis',0,9),(136797,1292730,'Jeny B',1,10),(136797,18461,'Officer Lejeune',2,11),(136797,1292731,'San Fran Girl',0,13),(136797,1292732,'Investor\'s Wife',0,14),(136797,53330,'Investor',2,15),(136797,1116011,'News Producer',0,16),(136797,155077,'Bill Ingram',2,17),(136797,1519904,'Flyin\' Hawaiian',0,18),(136797,4327,'Right Seater',0,19),(136797,984363,'\'DJ\' Joseph',2,20),(136797,75636,'Jimmy MacIntosh',2,21),(136797,41020,'Detective #1',2,22),(136797,20562,'Detective #2',2,23),(136797,1615196,'Preacher',2,24),(136797,1032522,'Female EMT',1,25),(136797,1391129,'Big Al',2,26),(136797,8432,'Detroit Cop',2,27),(136797,1463686,'English Paul',0,28),(136797,1714886,'The Gooch',0,29),(136797,1714914,'Texas Mike',0,30),(136797,1714915,'Johnny V',0,31),(136797,179851,'CHP',2,32),(136797,565504,'60 Year Old Man',2,33),(136797,1416332,'News Anchor',0,34),(136797,196843,'Older Smaller Woman',1,35),(136797,1714916,'CHP Pilot',0,36),(136797,1714917,'Teenage Waitress',0,37),(136797,63426,'Detroit Cop',2,38),(136797,1460680,'CHP',2,39),(136797,4609,'CHP',0,40),(136797,1530091,'CHP',2,41),(136797,194654,'CHP',2,42),(136797,43010,'Valet',0,43),(136797,1714921,'Jacki',0,44),(136797,1714922,'Girl at the Bar',0,45),(136797,1714923,'Drive-In Fan',0,46),(72976,11856,'Abraham Lincoln',2,0),(72976,35,'Mary Todd Lincoln',1,1),(72976,11064,'William Seward',2,2),(72976,24045,'Robert Lincoln',2,3),(72976,13548,'WN Bilbo',2,4),(72976,11066,'Preston Blair',2,5),(72976,2176,'Thaddeus Stevens',2,6),(72976,72095,'Fernando Wood',2,7),(72976,17183,'Alexander Stephens',2,8),(72976,15440,'Ulysses S. Grant',2,9),(72976,14888,'Edwin Stanton',2,10),(72976,27740,'Wells A. Hutchins',2,11),(72976,1462,'Richard Schell',2,12),(72976,151432,'Alexander Coffroth',2,13),(72976,1023139,'Samuel Beckwith',2,14),(72976,16861,'Robert Latham',2,15),(72976,33528,'John Hay',2,16),(72976,19489,'George Pendleton',2,17),(72976,234983,'Tad Lincoln',2,18),(72976,21369,'Elizabeth Keckley',1,19),(72976,239271,'John Nicolay',2,20),(72976,72873,'George Yeaman',2,21),(72976,82167,'James Ashley',0,22),(72976,57093,'Asa Vintner Litton',2,23),(72976,27740,'Clay Hawkins',2,24),(72976,37204,'William Hutton',2,25),(72976,91671,'Private Harold Green',2,26),(72976,526,'First White Soldier',2,27),(72976,122889,'Second White Soldier',2,28),(72976,121718,'Mr.Jolly',2,29),(72976,126713,'Mrs. Jolly',1,30),(72976,24305,'Elizabeth Blair Lee',1,31),(72976,941524,'Montgomery Blair',2,32),(72976,31282,'James Speed',2,34),(72976,197009,'William Fessenden',0,35),(72976,43364,'John Usher',2,36),(72976,1470,'Senator Bluff Wade',2,37),(72976,7576,'Schuyler Colfax',2,38),(72976,1271708,'David Homer Bates',0,39),(72976,1271709,'Senator Charles Sumner',0,40),(72976,1271710,'Willie Lincoln',0,41),(72976,21142,'Judge John A. Campbell',2,42),(72976,1271712,'Gustavus Fox',0,43),(72976,1269695,'Senator R.M.T. Hunter',0,44),(72976,1271713,'Aaron Haddam',0,45),(72976,1271714,'August Benjamin',0,46),(72976,176315,'Arthur Bentleigh',0,47),(72976,1271715,'Marguerite',0,48),(72976,1271716,'Nehemiah Cleary',0,49),(72976,1271717,'John Ellis',0,50),(72976,107406,'Walter Appleton',0,51),(72976,21082,'Josiah S. \'Beanpole\' Burton',2,52),(72976,1189423,'Walter H. Washburn',0,53),(72976,1271718,'Myer Strauss',0,54),(72976,1271719,'Joseph Marstern',0,55),(72976,157961,'Chilton A. Elliot',2,56),(72976,1271720,'Daniel G. Stuart',0,57),(72976,1271721,'Howard Guillefoyle',0,58),(72976,1271722,'John F. McKenzie',0,59),(72976,1271723,'Andrew E. Finck',0,60),(72976,1271724,'John A. Casson',0,61),(72976,1271725,'Avon Hanready',0,62),(72976,1271726,'Rufus Warren',0,63),(72976,153946,'General Robert E. Lee',2,64),(72976,3978,'Lydia Smith',1,65),(72976,1050565,'Dr. Joseph K. Barnes',2,66),(72976,169839,'Gideon Welles',2,67),(72976,1343249,'Union Soldier',0,68),(72976,1650163,'Charles Benjamin',0,69),(72976,35013,'Corporal Ira Clark',2,70),(72976,196179,'William Slade',2,71),(82695,6968,'Jean Valjean',2,0),(82695,934,'Javert',2,1),(82695,1813,'Fantine',1,2),(82695,71070,'Cosette',1,3),(82695,6730,'Thu00e9nardier',2,4),(82695,1283,'Madame Thu00e9nardier',1,5),(82695,37632,'Marius Pontmercy',2,6),(82695,143425,'Enjolras',2,7),(82695,145116,'u00c9ponine Thu00e9nardier',0,8),(82695,1133684,'Gavroche',2,9),(82695,1278483,'Convict 1',0,10),(82695,43554,'Convict 2',2,11),(82695,1278484,'Convict 3',0,12),(82695,1278485,'Convict 4',0,13),(82695,1278486,'Convict 5',0,14),(82695,44930,'Overseer',2,15),(82695,1222025,'Mairie Officer',2,16),(82695,1123,'Innkeeper',0,17),(82695,117313,'Bishop',2,18),(82695,1090138,'Jailer',0,19),(82695,191752,'Madame Baptistine',0,21),(82695,1184005,'Madame Magloire',0,22),(82695,192922,'Constable 1',0,23),(82695,123501,'Constable 2',0,24),(82695,1233034,'Fauchelevent',0,25),(82695,56098,'Foreman',2,26),(82695,178630,'Factory Woman 1',0,27),(82695,1278487,'Factory Woman 2',1,28),(82695,1229438,'Factory Woman 3',1,29),(82695,1278488,'Factory Woman 4',0,30),(82695,1278489,'Factory Woman 5',0,31),(82695,1278490,'Factory Woman 6',0,32),(82695,1278491,'Factory Woman 7',0,33),(82695,1278492,'Factory Woman 8',0,34),(82695,1278493,'Factory Woman 9',0,35),(82695,132988,'Factory Onlooker',2,36),(82695,216425,'Bamatabois',0,37),(82695,1010912,'Brevet',2,38),(82695,176191,'Cochepaille',2,39),(82695,986101,'Bamatabois\' Valet',2,40),(82695,1278494,'Hair Crone',0,41),(82695,1220071,'Pimp',0,42),(82695,1278495,'Sailor 1',0,43),(82695,1091582,'Sailor 2',0,44),(82695,1278496,'Sailor 3',0,45),(82695,40311,'Toothman',2,46),(82695,132992,'Whore 1',0,47),(82695,1278497,'Whore 2',0,48),(82695,219763,'Whore 3',0,49),(82695,1278498,'Head Whore',0,50),(82695,1278499,'Client',0,51),(82695,17259,'Pawn Broker',2,52),(82695,32807,'Organ Grinder',0,53),(82695,193340,'Magistrate',2,54),(82695,138412,'Champmathieu',0,55),(82695,210169,'Nursing Sister',0,56),(82695,95716,'Babet',0,57),(82695,1278501,'Brujon',0,58),(82695,30086,'Claquesous',2,59),(82695,73528,'Montparnasse',2,60),(82695,1145979,'Young Cosette',1,61),(82695,1145984,'Young u00c9ponine',1,62),(82695,231700,'Customer 1',0,63),(82695,1278503,'Customer 2',0,64),(82695,1278504,'Baby',0,65),(82695,1232658,'Tall Customer',0,66),(82695,211413,'Portly Customer',0,67),(82695,1278510,'Handsome Soldier 1',0,68),(82695,1278511,'Handsome Soldier 2',0,69),(82695,27655,'Father Christmas 1',0,70),(82695,1220052,'Father Christmas 2',0,71),(82695,1278512,'Inn Whore 1',0,72),(82695,1278513,'Inn Whore 2',0,73),(82695,138158,'Mother Whore',0,74),(82695,3568,'Gillenormand',2,75),(82695,1278517,'Citizen',2,76),(82695,1278518,'Citizen',2,77),(82695,1278519,'Gavroche\'s Urchin',0,78),(82695,1278522,'Gavroche\'s Urchin',0,79),(82695,1278523,'Gavroche\'s Urchin',0,80),(82695,1278524,'Gavroche\'s Urchin',0,81),(82695,1278525,'Beggar 1',0,82),(82695,990509,'Beggar 2',0,83),(82695,1278526,'Beggar 3',0,84),(82695,1278527,'Beggar 4',0,85),(82695,156356,'Duc De Raguse',2,86),(82695,231673,'Combeferre',0,87),(82695,1278528,'Courfeyrac',0,88),(82695,1278529,'Feuilly',0,89),(82695,1256160,'Grantaire',2,90),(82695,1206337,'Joly',0,91),(82695,1278530,'Lesgles',0,92),(82695,231666,'Prouvaire',2,93),(82695,1278531,'Bahorel',0,94),(82695,1278532,'Madame Hucheloup',0,95),(82695,231674,'Army Officer',2,96),(82695,1028366,'Turning Woman 1',0,97),(82695,195415,'Turning Woman 2',0,98),(82695,231664,'Turning Woman 3',0,99),(82695,231677,'Turning Woman 4',0,100),(82695,1278535,'Turning Woman 5',0,101),(82695,1172316,'Turning Woman 6',0,102),(82695,1278536,'Turning Woman 7',0,103),(82695,1159508,'Turning Woman 8',1,104),(82695,183180,'Majordomo',2,105),(82695,1278132,'Father Mabeuf',0,106),(82695,970737,'Cafu00e9 Barmaid',1,107),(82695,19903,'Ensemble At The End of the Day',2,108),(82695,1182570,'Ensemble At The End of the Day',0,109),(82695,1278543,'Ensemble At The End of the Day',0,110),(82695,1278544,'Ensemble At The End of the Day',0,111),(82695,160950,'Ensemble At The End of the Day',0,112),(82695,1278545,'Ensemble At The End of the Day',0,113),(82695,1278546,'Ensemble At The End of the Day',0,114),(82695,1278547,'Ensemble At The End of the Day',0,115),(82695,1278548,'Ensemble Factory Women',0,116),(82695,244600,'Ensemble Factory Women',1,117),(82695,1278549,'Ensemble Factory Women',0,118),(82695,1278550,'Ensemble Factory Women',0,119),(82695,1052255,'Ensemble Factory Women',1,120),(82695,1278551,'Ensemble Factory Women',0,121),(82695,231693,'Ensemble Factory Women',0,122),(82695,105440,'Ensemble Factory Women',0,123),(82695,1278552,'Ensemble Factory Women',0,124),(82695,209984,'Ensemble Factory Women',0,125),(82695,1278553,'Ensemble Lovely Ladies',0,126),(82695,1278554,'Ensemble Lovely Ladies',1,127),(82695,1278555,'Ensemble Lovely Ladies',0,128),(82695,1278556,'Ensemble Lovely Ladies',0,129),(82695,1278557,'Ensemble Lovely Ladies',0,130),(82695,1278558,'Ensemble Lovely Ladies',0,131),(82695,1278559,'Ensemble Lovely Ladies',0,132),(82695,1278560,'Ensemble Lovely Ladies',0,133),(82695,1278561,'Ensemble Lovely Ladies',0,134),(82695,1278562,'Ensemble Lovely Ladies',0,135),(82695,1278563,'Ensemble Lovely Ladies',0,136),(82695,1278564,'Ensemble Lovely Ladies',0,137),(82695,1278565,'Ensemble Lovely Ladies',0,138),(82695,1278566,'Ensemble Lovely Ladies',0,139),(82695,1278567,'Ensemble Lovely Ladies',0,140),(82695,1278568,'Ensemble Lovely Ladies',0,141),(82695,1278569,'Ensemble Lovely Ladies / Ensemble Wedding Dancers',0,142),(82695,1278573,'Ensemble Lovely Ladies',0,143),(82695,1278574,'Ensemble Lovely Ladies',0,144),(82695,1278575,'Ensemble Lovely Ladies',0,145),(82695,1278576,'Ensemble Master of the House',0,146),(82695,1278577,'Ensemble Master of the House',0,147),(82695,1278578,'Ensemble Master of the House',0,148),(82695,1278579,'Ensemble Master of the House',0,149),(82695,223044,'Ensemble Master of the House',0,150),(82695,1261131,'Ensemble Master of the House',0,151),(82695,195286,'Ensemble Master of the House',0,152),(82695,1278580,'Ensemble Master of the House',0,153),(82695,1266585,'Ensemble Master of the House',2,154),(82695,206726,'Ensemble Master of the House',2,155),(82695,1278581,'Ensemble Master of the House',0,156),(82695,1028408,'Ensemble Master of the House',0,157),(82695,1278582,'Ensemble Master of the House',0,158),(82695,87099,'Ensemble Master of the House',0,159),(82695,192923,'Ensemble Master of the House',0,160),(82695,985962,'Ensemble Master of the House',0,161),(82695,117323,'Ensemble Master of the House',0,162),(82695,1278583,'Ensemble Master of the House',0,163),(82695,1278584,'Ensemble Paris Beggars',0,164),(82695,202759,'Ensemble Paris Beggars',0,165),(82695,1278585,'Ensemble Paris Beggars',0,166),(82695,1278586,'Ensemble Paris Beggars',0,167),(82695,1278587,'Ensemble Paris Beggars',0,168),(82695,1278588,'Ensemble Paris Beggars',0,169),(82695,1222373,'Ensemble Paris Beggars',0,170),(82695,1278589,'Ensemble Paris Beggars',0,171),(82695,1278590,'Ensemble Paris Beggars',0,172),(82695,1278591,'Ensemble Paris Beggars',0,173),(82695,515313,'Ensemble Students',0,174),(82695,1278593,'Ensemble Students',0,175),(82695,1278594,'Ensemble Students',0,176),(82695,1278595,'Ensemble Students',0,177),(82695,231686,'Ensemble Students',0,178),(82695,1278596,'Ensemble Students',0,179),(82695,231688,'Ensemble Students',0,180),(82695,1278597,'Ensemble Students',0,181),(82695,1151069,'Ensemble Students',2,182),(82695,1278601,'Ensemble Students',0,183),(82695,1278602,'Ensemble Students',0,184),(82695,1278604,'Ensemble Students',0,185),(82695,1278605,'Ensemble Students',0,186),(82695,1278606,'Ensemble Students',0,187),(82695,1278607,'Ensemble Turning Women',0,188),(82695,989411,'Ensemble Turning Women',0,189),(82695,1278608,'Ensemble Turning Women',0,190),(82695,1278609,'Ensemble Turning Women',0,191),(82695,1278610,'Ensemble Turning Women',0,192),(82695,1278611,'Ensemble Turning Women',0,193),(82695,1278612,'Ensemble Wedding Dancers',0,194),(82695,1278613,'Ensemble Wedding Dancers',0,195),(82695,1278614,'Ensemble Wedding Dancers',0,196),(82695,1278615,'Ensemble Wedding Dancers',0,197),(82695,1278616,'Ensemble Wedding Dancers',0,198),(82695,1278617,'Ensemble Wedding Dancers',0,199),(82695,1278618,'Ensemble Wedding Dancers',0,200),(82695,1278619,'Ensemble Wedding Dancers',0,201),(82695,231680,'Ensemble Wedding Dancers',0,202),(82695,1278620,'Ensemble Wedding Dancers',0,203),(82695,1278621,'Ensemble Wedding Dancers',0,204),(82695,1278622,'Ensemble Wedding Dancers',0,205),(82695,1278623,'Ensemble Wedding Dancers',0,206),(82695,1278624,'Ensemble Wedding Dancers',0,207),(82695,1278625,'Ensemble Wedding Dancers',0,208),(41733,3223,'Peter Highman',2,0),(41733,58225,'Ethan Tremblay',2,1),(41733,11705,'Sarah Highman',1,2),(41733,134,'Darryl',2,3),(41733,3196,'Heidi',1,4),(41733,62862,'Lonnie',2,5),(41733,150,'Airport Screener',2,6),(41733,59841,'TSA Agent',2,7),(41733,142373,'Limo Driver',0,8),(41733,1288866,'Patrick',0,9),(41733,1288867,'Alex',0,10),(41733,57130,'Barry',2,11),(41733,1241324,'Carl',0,12),(41733,142375,'Flight Attendant',0,13),(41733,142374,'Airport X-Ray',1,14),(41733,298410,'New Father',2,15),(41733,1733288,'Border Guard',2,16),(41733,6952,'Charlie Harper',2,17),(227306,85065,'Louis Zamperini',2,0),(227306,93210,'Russel Allen \'Phil\' Phillips',2,1),(227306,9828,'John Fitzgerald',2,2),(227306,1391420,'Mutsuhiro \'The Bird\' Watanabe',2,3),(227306,168877,'Francis \'Mac\' McNamara',2,4),(227306,224181,'Hugh \'Cup\' Cuppernell',2,5),(227306,1394424,'Louise Zamperini',0,6),(227306,20588,'Anthony Zamperini',2,7),(227306,37154,'Frank A. Tinker',2,8),(227306,103351,'Miller',2,9),(227306,1394446,'Lt. William Harris',0,10),(227306,1374534,'Blackie',0,11),(227306,1394425,'Young Louis',0,12),(227306,1056523,'Young Pete',2,13),(227306,558466,'Pete Zamperini',2,14),(227306,1394429,'Cliff',2,15),(227306,1174927,'Harry Brooks',0,16),(227306,1394448,'Clarence Douglas',0,17),(227306,1394447,'Lambert',2,18),(227306,1394431,'Green Hornet Engineer',0,19),(227306,970534,'Glassman',2,20),(227306,1394444,'Mitchell',0,21),(227306,212730,'Stanley Pillsbury',2,22),(227306,1394420,'Virginia',0,23),(227306,98306,'Cynthia Applewhite',0,24),(227306,1394423,'Boy(s) (voice)',0,25),(227306,1394426,'Sylvia Zamperini',0,27),(227306,1394427,'Jimmy',0,28),(227306,1394428,'Marine at Airbase',0,29),(227306,1213640,'Berlin Olympics Radio Announcer (voice)',2,30),(227306,1394430,'Young Sylvia',0,31),(227306,75748,'Radio Tokyo Man',0,32),(227306,1394432,'Omori guard',0,33),(227306,1394433,'Naoetsu Guard 1',2,34),(227306,1394434,'Japanese Athlete',0,35),(227306,1110812,'James',0,36),(227306,1205489,'Japanese Translator',0,37),(227306,1394435,'British p.o.w',0,38),(227306,1059787,'Corporal Kono',0,39),(227306,1394437,'SS Guard',0,40),(227306,1394438,'Torch Bearer',0,41),(227306,1394439,'American POW',0,42),(227306,1394440,'Boy',0,43),(227306,1394442,'Spike Runner',0,44),(227306,1394443,'American POW',0,45),(227306,117020,'Bully',2,46),(227306,1179405,'Radio Tokyo Man',0,47),(227306,1381319,'Omori Guard',0,48),(227306,1394450,'Kwajalein Guard',0,49),(227306,1394451,'Naoetsu Guard 2',0,50),(227306,1361564,'Man in Stadium',0,51),(227306,1394452,'British POW Officer',0,52),(227306,1328711,'US Officer p.o.w',0,53),(227306,1394454,'Kwajalein Guard',0,54),(227306,1394455,'American P.O.W.',0,55),(227306,1394456,'British POW Officer',0,56),(227306,1394457,'U.S. Officer P.O.W.',0,57),(227306,1394458,'Omori Guard',0,58),(227306,1394459,'US Officer P.O.W',0,59),(227306,1394460,'British POW',0,60),(227306,1394461,'American P.O.W',0,61),(227306,1394462,'Church Attendee',0,62),(227306,1394463,'Australian P.O.W',0,63),(227306,1394464,'British Soldier',0,64),(227306,1394465,'Olympic Race Starter',0,65),(227306,1394466,'Virginia',0,66),(227306,1394467,'Australian POW',0,67),(227306,1394468,'American P.O.W',0,68),(227306,1394469,'British POW',0,69),(227306,1394470,'American POW',0,70),(227306,1394471,'Infirmary p.o.w',0,71),(227306,1394472,'Infirmary POW',0,72),(227306,1394473,'British POW (uncredited)',0,73),(227306,1394474,'US Enlisted POW (uncredited)',0,74),(227306,1394475,'British P.O.W. (uncredited)',0,75),(227306,1394476,'Soldier (uncredited)',0,76),(227306,1394477,'Olympic spectator / Japanese Olympic team member (uncredited)',0,77),(227306,1394478,'American POW (uncredited)',0,78),(227306,1194035,'Berlin Olympics Spectator (uncredited)',2,79),(76493,6730,'Aladeen / Efawadh',2,0),(76493,173810,'Omar',2,1),(76493,20644,'Doctor',2,2),(76493,19537,'Herself',1,3),(76493,1772,'Zoey',1,4),(76493,4764,'Clayton',2,5),(76493,571570,'Aladeen\'s Mother',0,6),(76493,81840,'Maroush',2,7),(76493,2282,'Tamir',2,8),(76493,999817,'Nurse Svetlana',1,9),(76493,111683,'Nadal',0,10),(76493,17696,'Pregnant Woman',1,11),(76493,1223718,'Patient',0,12),(76493,1264686,'Japanese Olympic Runner',0,13),(76493,212290,'Pregnant woman\'s husband',2,14),(196867,1055235,'Annie Beckett',1,0),(196867,134,'William Will Stacks',2,1),(196867,9827,'Grace Farell',1,2),(196867,6941,'Miss Hannigan',1,3),(196867,21127,'Guy',2,4),(196867,31164,'Nash',2,5),(196867,22821,'Lou',2,6),(196867,1357266,'Pepper',0,7),(196867,1533987,'Tessie',0,8),(196867,1028458,'Mia',1,9),(196867,1533988,'Isabella',0,10),(196867,26718,'Annie\'s Dad',2,11),(196867,10580,'Annie\'s Mom',1,12),(196867,113373,'Social Services Inspector',2,13),(196867,204651,'Mrs. Kovacevic',1,14),(196867,159828,'Harold Gray',2,15),(196867,521,'Himself',2,16),(196867,1377052,'YaYa L\'Occitane',1,17),(196867,943751,'Woman on Street',1,18),(196867,18973,'Andrea Alvin',1,19),(196867,18976,'Simon Goodspeed',2,20),(196867,131519,'Moon Goddess',1,21),(196867,1276,'Focus Group Woman',1,22),(196867,1733614,'Animal Care & Control Volunteer',0,23),(196867,452205,'Guy In Bar',2,24),(196867,1480047,'NY1 Reporter',2,25),(196867,1598856,'Reporter',0,26),(196867,1889720,'Ms. Giannetti',1,27),(196867,1889723,'Pickle Stevens',2,28),(196867,41549,'Cleve Sweetzer',2,29),(196867,1590770,'Mary Gillen',1,30),(196867,1458116,'Fish Goddess',0,31),(196867,155549,'Waiter at Domani',2,32),(196867,100703,'Stacks Mobile Reporter',2,33),(196867,979216,'Teacher',2,34),(196867,1468597,'Red Haired Annie',1,35),(196867,1473231,'Auditioning \'Dad\'',0,36),(196867,1476142,'Auditioning \'Mom\'',0,37),(196867,1672562,'Domani Reporter',0,38),(196867,1889728,'Grace\'s Assistant',0,39),(256591,2888,'Nicky',2,1),(256591,234352,'Jess Barrett',1,2),(256591,17289,'Garriga',2,3),(256591,39545,'McEwen',2,4),(256591,29512,'Ownes',2,5),(256591,94432,'Farhad',2,6),(256591,14592,'Liyuan',2,7),(256591,1218149,'Horst',2,8),(256591,1440537,'Gordon',0,9),(256591,76021,'Gareth',2,10),(256591,94427,'Janice',1,11),(256591,1319345,'Drunken Stranger',0,12),(256591,154784,'Jared',2,13),(256591,1440538,'Liyuanu0092s Bodyguard',0,14),(256591,172734,'Card Player / Football Coach',2,15),(256591,529943,'BA Reporter',0,16),(256591,1503756,'Mark #1',2,17),(256591,1632735,'Mark #2',2,18),(256591,140538,'Marcello',2,19),(256591,1632873,'Jenny',1,20),(256591,1632896,'Pretty Woman',1,21),(256591,1632903,'Bartender',2,22),(256591,1445107,'Massive Security Guard',2,23),(256591,1441997,'Blonde Bartender',1,24),(256591,567742,'Saleswoman',1,25),(256591,1632919,'Apollonia',1,26),(256591,1632923,'Naked Woman',1,27),(256591,1457266,'Bartender',2,28),(256591,932104,'Bald Guy',2,29),(256591,231857,'Bruiser',0,30),(256591,1632933,'Lead Official',2,31),(256591,1632934,'Tech',2,32),(256591,1346503,'Team Argentina Head Engineer',2,33),(256591,1088038,'Tourist Thief',0,34),(256591,62784,'Passing Thief',0,35),(256591,1393522,'Another Thief',1,36),(256591,1096595,'Another Thief',2,37),(59962,368,'Lauren',1,0),(59962,62064,'FDR Foster',2,1),(59962,2524,'Tuck',2,2),(59962,43286,'Britta',1,3),(59962,9780,'Collins',1,4),(59962,1048580,'Ken',0,5),(59962,232525,'Steve',2,6),(59962,21430,'Xenia',1,7),(59962,1844,'Heinrich',2,8),(59962,151254,'Trish',1,9),(59962,1154244,'Joe',0,10),(59962,123725,'Katie',1,11),(59962,18998,'Nana Foster',1,12),(59962,59179,'Grandpa Foster',2,13),(59962,84338,'Jonas',0,14),(59962,213001,'Emily',1,15),(59962,58399,'Kelly',1,16),(59962,62836,'Valet',2,17),(59962,64674,'Ivan',2,18),(59962,211907,'Agent Bothwick',0,19),(59962,205560,'Agent Boyles',0,20),(59962,228890,'Agent Dickerman',2,21),(59962,60601,'Agent Downing',2,22),(59962,221581,'Fake Family Member',1,23),(59962,1224673,'Korean Leader',2,24),(59962,1048580,'Ken (Sushi Chef)',0,25),(59962,60723,'Sushi Chef',2,26),(59962,1581104,'Hong Kong Beauty',1,27),(59962,107810,'Karate Dad',2,28),(59962,1581106,'Karate Kid',2,29),(59962,172883,'Smart Consumer Receptionist \'Ella\'',0,30),(59962,1581107,'Smart Consumer Employee',2,31),(59962,139618,'Boy with Glasses',0,32),(59962,1128861,'Sweater Set Girl',1,33),(59962,1408200,'Choreographer',2,34),(59962,1566370,'Dancer',0,35),(59962,1288837,'Dancer',1,36),(59962,1581108,'Dancer',1,37),(59962,1294968,'Russian Dancer (uncredited)',1,38),(59962,1581103,'Model (uncredited)',1,39),(59962,211685,'Ex-Girlfriend (uncredited)',1,40),(59962,1581110,'Dancer',2,41),(36648,10814,'Blade',2,0),(36648,10823,'Whistler',2,1),(36648,10862,'Drake',2,2),(36648,10860,'Abigail Whistler',1,3),(36648,10859,'Hannibal King',2,4),(36648,7489,'Danica Talos',1,5),(36648,143382,'Chief Martin Vreede',2,6),(36648,8265,'Dr. Edgar Vance',2,7),(36648,540,'Asher Talos',2,8),(36648,115788,'Jarko Grimwood',0,9),(36648,1052900,'Wolfe',0,10),(36648,10875,'Virago',1,11),(36648,276478,'Wilson Hale',2,12),(36648,1736,'Ray Cumberland',2,13),(36648,10871,'Sommerfield',1,14),(36648,1052901,'Zoe',0,15),(36648,10872,'Hedges',2,16),(36648,10866,'Bentley Tittle',2,17),(36648,1218928,'Goth Vixen Wannabe',1,18),(36648,60536,'Stone',2,19),(71679,63,'Alice',1,0),(71679,7055,'Jill Valentine',1,1),(71679,17647,'Rain Ocampo',1,2),(71679,90455,'Becky',1,3),(71679,109432,'Ada Wong',1,4),(71679,80758,'Luther West',2,5),(71679,101017,'Leon S. Kennedy',2,6),(71679,222910,'Sergei',2,7),(71679,79072,'Barry Burton',2,8),(71679,1095911,'Tony',2,9),(71679,18041,'Todd / Carlos',2,10),(71679,5414,'James \'One\' Shade',2,11),(71679,81097,'Albert Wesker',2,12),(71679,223126,'The Red Queen',1,13),(71679,1815573,'Japanese Businessman',0,14),(71679,104521,'J Pop Girl',0,15),(71679,969189,'The Axe Men',2,16),(71679,57192,'K-Mart (archive footage)',1,17),(71679,195535,'Dr. Green (archive footage)',0,18),(71679,232174,'Ms. Black (archive footage)',0,19),(71679,7059,'Dr. Lisa Addison (archive footage)',1,20),(71679,65345,'Terri Morales (archive footage)',1,21),(71679,68224,'Medic (archive footage)',1,22),(71679,3491,'Major Tom Caine (archive footage)',2,23),(71679,17303,'Claire Redfield (archive footage)',1,24),(71679,3972,'Chris Redfield (archive footage)',2,25),(100241,6383,'Adam',2,0),(100241,63312,'Terra',1,1),(100241,2440,'Naberius',2,2),(100241,224181,'Gideon',2,3),(100241,502,'Leonore',1,4),(100241,145245,'Keziah',1,5),(100241,3952,'Dekar',2,6),(100241,144081,'Dr. Frankenstein',2,7),(100241,145246,'Barachel',2,8),(100241,145248,'Levi',2,9),(100241,75174,'Zuriel',2,10),(100241,187494,'Helek',0,11),(100241,27752,'Molokai',2,12),(100241,1386458,'Ophir',2,13),(100241,121160,'Jannes',2,14),(100241,61784,'Rekem',0,15),(100241,1418813,'Train Station Cleaner',0,16),(100241,15340,'Carl Avery',2,17),(100241,1519995,'Elizabeth Frankenstein',1,18),(100241,1406989,'Sargon',0,19),(100241,1872770,'Igal',0,20),(100241,1291814,'Procula',0,21),(253412,76512,'Rob Hall',2,0),(253412,131,'Scott Fischer',2,1),(253412,16851,'Beck Weathers',2,2),(253412,16861,'Doug Hansen',2,3),(253412,65731,'Guy Cotter',2,4),(253412,32,'Peach Weathers',1,5),(253412,116,'Jan Arnold',1,6),(253412,85977,'Ed Viesturs',2,7),(253412,1639,'Helen Wilton',0,8),(253412,1137824,'Meg Weathers',1,9),(253412,50217,'Jon Krakauer',2,10),(253412,26291,'Andy \'Harold\' Harris',2,11),(253412,1133349,'Caroline Mackenzie',1,12),(253412,43034,'Neal Beidleman',2,13),(253412,556356,'Sandy Hill Pittman',1,14),(253412,205659,'Yasuko Namba',1,15),(253412,59259,'Lou Kasischke',2,16),(253412,1212871,'Michael Groom',0,17),(253412,55584,'Anatoli Boukreev',2,18),(253412,1514180,'Ang Dorjee',0,19),(253412,1183138,'Lene Gammelgaard',1,20),(253412,1514181,'Lopsang',0,21),(253412,1514182,'Charlotte Fox',0,22),(253412,1514183,'Tim Madsen',0,23),(253412,1384499,'Klev Schoening',0,24),(253412,1229187,'John Taske',0,25),(253412,17354,'Frank Fischbeck',2,26),(253412,25657,'Ian Woodall',2,27),(253412,238166,'Bub Weathers',0,28),(253412,20471,'Stuart Hutchison',2,29),(253412,211586,'Makalu Gau',2,30),(253412,150669,'David Breashears',2,31),(253412,71072,'Janie',1,32),(253412,77244,'Linda',0,33),(253412,1514184,'Colonel Madan',0,34),(253412,1452671,'Co-Pilot',0,35),(300168,18897,'Huo Han',2,0),(300168,3036,'Lucius',2,1),(300168,3490,'Tiberius',2,2),(300168,138010,'The Queen',1,3),(300168,87841,'',2,4),(300168,17991,'Roman Soldier',0,5),(300168,1298706,'Roman Soldier',0,6),(300168,1358975,'Huo An General',2,7),(300168,1110537,'Han Soldier',0,8),(300168,77318,'',2,9),(300168,1358974,'Shou Xia',0,10),(300168,1102423,'General Doramis',2,11),(300168,1379939,'La Reine Perse',0,12),(300168,1379940,'General Statius',0,13),(300168,1379940,'General Sertor',0,14),(300168,1379941,'General Statius',0,15),(300168,1379942,'Roman Captain',0,16),(300168,1379943,'Roman Soldier',0,17),(300168,1379944,'Scar Face Centurion',0,18),(300168,1379945,'Lucius\' deputy Paullus',0,19),(300168,1355273,'Roman General',0,20),(300168,1379946,'Roman General',0,21),(300168,1102422,'Roman Soldier',0,22),(300168,222881,'Deputy Gaius',0,23),(300168,1276625,'Patrick',0,24),(300168,1379948,'Kroraina',0,25),(300168,576170,'Roman Soldier',0,26),(300168,1171057,'Roman Soldier',0,27),(300168,1379949,'Roman Soldier',0,28),(300168,1379950,'Ruthless Roman Soldier',0,29),(300168,1379951,'Roman Soldier',0,30),(300168,1379952,'Roman Soldier',0,31),(300168,1379953,'Roman Soldier',0,32),(300168,1379954,'Eugene',0,33),(300168,1379955,'Roman Soldier',0,34),(300168,113789,'Cold Moon',0,35),(300168,1365908,'Cougar',2,36),(273248,2231,'Major Marquis Warren',2,0),(273248,6856,'John \'The Hangman\' Ruth',2,1),(273248,10431,'Daisy Domergue',1,2),(273248,27740,'Sheriff Chris Mannix',2,3),(273248,76961,'Bob',2,4),(273248,3129,'Oswaldo Mobray',2,5),(273248,147,'Joe Gage',2,6),(273248,6905,'General Sandy Smithers',1,7),(273248,87312,'O.B Jackson',0,8),(273248,1133063,'Minnie',0,9),(273248,20494,'Six-Horse Judy',1,10),(273248,47859,'Ed',2,11),(273248,1194944,'Sweet Dave',0,12),(273248,1198202,'Charly',0,13),(273248,183519,'Chester Charles Smithers',0,14),(273248,1485552,'Gemma',0,15),(273248,38673,'Jody',2,16),(273248,138,'Narrator (uncredited)',2,18),(50359,59919,'Easter Bunny (voice)',2,0),(50359,11006,'Fred',2,1),(50359,53862,'Samantha O\'Hare',1,2),(50359,5587,'Carlos / Phil (voice)',2,3),(50359,20,'Bonnie O\'Hare',1,4),(50359,21163,'Henry O\'Hare',2,5),(50359,41419,'E.B.\'s Dad (voice)',2,6),(50359,211937,'Alex O\'Hare',1,7),(50359,28238,'Himself',2,8),(50359,151254,'Mrs. Beck',1,9),(50359,523952,'Cody',2,10),(210577,880,'Nick Dunne',2,0),(210577,10882,'Amy Dunne',1,1),(210577,1308445,'Margo Dunne',1,2),(210577,41686,'Desi Collins',2,3),(210577,80602,'Tanner Bolt',2,4),(210577,21165,'Detective Rhonda Boney',1,5),(210577,11663,'Detective Jim Gilpin',2,6),(210577,1294,'Ellen Abbott',1,7),(210577,1186505,'Andie Fitzgerald',1,8),(210577,83872,'Noelle Hawthorne',1,9),(210577,1345418,'Greta',1,10),(210577,467645,'Jeff',2,11),(210577,15412,'Rand Elliott',2,12),(210577,52878,'Marybeth Elliott',1,13),(210577,59233,'Tommy O\'Hara',2,14),(210577,6068,'Sharon Schieber',1,15),(210577,149334,'Shawna Kelly',1,16),(210577,166897,'Police Officer',2,17),(210577,1438995,'Bill Dunne',0,18),(210577,79079,'Donnelly',2,19),(210577,1439007,'Walter',0,20),(210577,549831,'Kelly Capitono',0,21),(210577,1367129,'Maureen Dunne',0,22),(210577,1439192,'Jason',0,23),(210577,1439207,'Lauren Nevens',0,24),(210577,1192412,'FBI',0,25),(210577,1235973,'Mustached Man',2,26),(210577,1439089,'Above-It-All Journalist',0,27),(210577,1439098,'Nervous Intern',0,28),(210577,1439105,'Security Guard',0,29),(210577,118592,'Fashionista',0,30),(210577,1439112,'Female Officer',0,31),(210577,162828,'Doctor',2,32),(210577,1439125,'Earnest Girl',0,33),(210577,1439141,'Friend 1',0,34),(210577,1439150,'Friend 2',0,35),(210577,1439155,'Guard',0,36),(210577,1439167,'Tweaker Teen 1',0,37),(210577,1439180,'Tweaker Teen 2',0,38),(210577,969294,'Airport Traveler',2,39),(210577,1439204,'Producer',0,40),(210577,1439213,'Reporter',2,41),(210577,1439208,'Reporter One',0,42),(210577,1406682,'Casino Patron (uncredited)',2,43),(210577,1400270,'Airport Passenger (uncredited)',1,44),(210577,1502378,'Casino Customer (uncredited)',0,45),(210577,1048963,'Press Reporter (uncredited)',2,46),(210577,1436357,'Limo Driver (uncredited)',0,47),(210577,1564312,'Needs a Fix (uncredited)',0,48),(210577,139191,'Black Jack Dealer (uncredited)',0,49),(210577,1331193,'Waitress (uncredited)',0,50),(210577,1554512,'Flight Attendant (uncredited)',1,51),(210577,93242,'Reporter (uncredited)',1,52),(210577,1454084,'CSI Photographer (uncredited)',2,53),(210577,1080064,'High roll dealer (uncredited)',0,54),(210577,1283330,'Sharon\'s Assistant (uncredited)',0,55),(210577,1583389,'Coffee Cop (uncredited)',0,56),(210577,1505171,'Hostess (uncredited)',0,57),(210577,1583390,'Truck Stop Cook (uncredited)',0,58),(210577,1411659,'Dealer (uncredited)',0,59),(210577,1419130,'Amish Musician (uncredited)',0,60),(210577,239758,'Bartender (uncredited)',0,61),(210577,1439921,'Pedestrian (uncredited)',0,62),(210577,1349942,'Gate Agent (uncredited)',0,63),(210577,74510,'Bike Messenger (uncredited)',0,64),(210577,1302210,'Williamsburg Musician (uncredited)',0,65),(210577,1256257,'Police Station Woman (uncredited)',1,66),(210577,1590738,'Makeup (uncredited)',1,67),(210577,1745193,'Press Reporter (uncredited)',0,68),(210577,1661085,'Kissing Girl (uncredited)',0,69),(210577,1709744,'Librarian (uncredited)',0,70),(210577,1816403,'Police Administrator (uncredited)',1,71),(37165,206,'Truman Burbank',2,0),(37165,350,'Meryl Burbank / Hannah Gill',1,1),(37165,11315,'Marlon',2,2),(37165,11317,'Lauren / Sylvia',1,3),(37165,228,'Christof',2,4),(37165,11318,'Truman\'s Mother',1,5),(37165,6579,'Truman\'s Father',2,6),(37165,116898,'Young Truman',2,7),(37165,11321,'Vivien',1,8),(37165,116899,'Ron',2,9),(37165,116900,'Don',0,10),(37165,116901,'Spencer',0,11),(37165,23119,'Lawrence',2,12),(37165,1912,'Bar Waitress',1,13),(37165,1048405,'Bar Waitress',0,14),(37165,13242,'Control Room Director',2,15),(37165,6008,'Mike Michaelson',2,16),(37165,58929,'Senior Citizen',1,17),(37165,1551,'Keyboard Artist',2,18),(37165,154644,'Chloe',1,19),(37165,1357694,'Bartender',2,20),(37165,4492,'Network Executive',2,21),(37165,16542,'Network Executive',2,22),(37165,18359,'Man in Bathtub',2,23),(37165,88950,'Garage Attendant',2,24),(136400,5292,'Robert \'Bobby\' Trench',2,0),(136400,13240,'Michael \'Stig\' Stigman',2,1),(136400,52851,'Deb',1,2),(136400,2053,'Earl',2,3),(136400,10430,'Admiral Tuwey',2,4),(136400,11006,'Quince',2,5),(136400,587,'Papi Greco',2,6),(136400,31512,'Jessup',2,7),(136400,1105706,'Mini',0,8),(136400,75330,'Ms. Young',1,9),(136400,1502244,'Daisie',0,10),(136400,931947,'Patsy (Dr. Ken\'s Assistant)',0,11),(136400,1038511,'Waitress Maggie',1,12),(136400,61568,'Rudy (Papi\'s Men)',0,13),(136400,52801,'Dr. Ken',2,14),(136400,1358061,'Thick',0,15),(136400,186922,'Lean',0,16),(136400,1566766,'Gina Corrales',1,17),(136400,1289977,'Chief Lucas',0,18),(136400,1409504,'Ferret Nose Julio',0,19),(136400,84756,'Teemo',2,20),(136400,16459,'Officer Dave',2,21),(136400,1183801,'Officer Phil',2,22),(136400,52885,'Chief of Police',2,23),(136400,1458990,'Bank Manager',2,24),(136400,555652,'Scared Woman',1,25),(136400,1757581,'Bank Guard',0,26),(136400,1049735,'Lead Agent (FBI Man)',0,27),(136400,1260529,'Roughneck (Papi\'s Men)',2,28),(136400,1849414,'Javier (Papi\'s Son)',0,29),(136400,143261,'Hard Case Border Patrol',2,30),(136400,36135,'Border Guard',2,31),(136400,86536,'Uniformed Border Agent',2,32),(136400,304845,'Navy Firefighter',2,33),(136400,1849416,'Lead MP (Shore Patrol)',0,34),(136400,179887,'Skinny Immigrant',2,35),(136400,1849417,'Doorman',0,36),(136400,1410501,'Tommy Boy',0,37),(136400,1849418,'Slim Jay',0,38),(136400,1172814,'Tim Corrales',2,39),(136400,1474965,'Waitress Marjorie',0,40),(136400,1849419,'Roughneck #2',0,41),(136400,1759634,'Roughneck #3',0,42),(136400,944326,'Roughneck #4',2,43),(294254,527393,'Thomas',2,0),(294254,115150,'Teresa Agnes',1,1),(294254,25663,'Newt',2,2),(294254,4808,'Jorge',2,3),(294254,49735,'Janson',2,4),(294254,12834,'Vince',2,5),(294254,3127,'Mary Cooper',1,6),(294254,1276,'Ava Paige',1,7),(294254,1310760,'Minho',2,8),(294254,1036196,'Frypan',2,9),(294254,1171570,'Aris Jones',2,10),(294254,1251069,'Harriet',1,11),(294254,968006,'Sonya',1,12),(294254,1151637,'Thomas\' Mother',1,13),(294254,973667,'Brenda',1,14),(294254,1112417,'Joe',0,15),(294254,78890,'Scavenger Guard (Jim)',0,16),(294254,53971,'Ponytail',0,17),(294254,1415436,'Jack',0,18),(294254,21088,'Blondie',2,19),(294254,108036,'David',0,20),(294254,1576251,'Carl (Masked Man)',2,21),(294254,1488513,'M3 Soldier',2,22),(294254,1673619,'Abigail (uncredited)',1,23),(294254,1340889,'Winston',0,24),(294254,1446097,'Dr. Crawford',0,25),(294254,1719996,'Barkley',0,26),(294254,79211,'Soldier',0,27),(294254,1719998,'Young Thomas',0,28),(294254,1207564,'Riley',0,29),(294254,1094319,'Harold (Soldier)',2,30),(294254,307885,'Aide',0,31),(294254,1720434,'Med Tech',0,32),(294254,1574846,'Surveillance Room Attendant',0,33),(294254,1670754,'Nurse',0,34),(294254,1505457,'Rebel Sentry',2,35),(294254,223395,'Doctor',0,36),(38167,1204,'Elizabeth Gilbert',1,0),(38167,17051,'David',2,1),(38167,3810,'Felipe',2,2),(38167,8289,'Steven',2,3),(38167,28633,'Richard',2,4),(38167,19492,'Delia Shiraz',1,5),(38167,1461222,'Nyomo',0,6),(38167,1461223,'Ketut Liyer',0,7),(38167,1461232,'Andre',0,8),(38167,87192,'Andy Shiraz',2,9),(38167,77264,'Bookstore Girl',1,10),(38167,15109,'Woman in Play',1,12),(38167,142192,'Play Walk-Out',2,13),(38167,1456290,'The Guru',1,14),(38167,1456290,'',1,15),(38167,1456290,'NYU Student Boyfriend',1,16),(38167,1461233,'NYU Student Girlfriend',0,17),(38167,193141,'Laundromat Gal',1,18),(38167,67737,'Sofi',1,19),(39514,62,'Frank Moses',2,0),(39514,6949,'Marvin Boggs',2,1),(39514,15735,'Victoria',1,2),(39514,18248,'Sarah',1,3),(39514,1372,'William Cooper',2,4),(39514,3037,'Alexander Dunning',2,5),(39514,1736,'Gabriel Loeb',2,6),(39514,192,'Joe Matheson',2,7),(39514,1248,'Ivan Simanov',2,8),(39514,7502,'Henry',2,9),(39514,20402,'VP Stanton',2,10),(39514,95635,'Michelle Cooper',1,11),(39514,52702,'Burbacher',2,12),(39514,126257,'Agent',2,13),(39514,63858,'Fundraiser Greeter',1,14),(39514,156511,'Mrs. Chan',1,15),(39514,84227,'Nurse',1,16),(39514,57881,'Woman Neighbor',1,17),(39514,286987,'Security Woman',1,18),(39514,158459,'Hanged Man',2,19),(39514,27267,'Cynthia Wilkes',1,20),(39514,62072,'Marna',1,21),(39514,1585571,'Paramedic',2,22),(39514,1333065,'Endercott',2,23),(39514,1381389,'Cop at Intersection',0,24),(39514,112285,'Retirement Home Assassin',2,25),(39514,141762,'Retirement Home Detective',2,26),(39514,1538457,'Wilkes\' Secretary',1,27),(39514,199811,'Security Chief',2,28),(75780,500,'Jack Reacher',2,0),(75780,10882,'Helen Rodin',1,1),(75780,28633,'Alex Rodin',2,2),(75780,35013,'Emerson',2,3),(75780,6818,'Zec Chelovek',2,4),(75780,224181,'Charlie',2,5),(75780,1132335,'Vlad',0,6),(75780,82631,'James Barr',2,7),(75780,53259,'Linsky',2,8),(75780,203630,'Sandy',1,9),(75780,1056053,'Jeb Oliver',2,10),(75780,3087,'Martin Cash',2,11),(75780,162849,'Rob Farrior',2,12),(75780,2695,'Gary',2,13),(75780,1286869,'Punk',0,14),(75780,155042,'Chrissie Farrior',1,15),(75780,165293,'Nancy Holt',1,16),(75780,1286870,'Rita Coronado',0,17),(75780,219679,'Darren Sawyer',0,18),(75780,1272959,'Mrs. Sawyer',0,19),(75780,208762,'Mr. Archer',2,20),(75780,1124950,'Mr. Holt',0,21),(75780,1272961,'Little Girl',0,22),(75780,1799,'Eyewitness',2,23),(75780,1055739,'Wesley',0,24),(75780,1272962,'Secretary',0,25),(75780,928356,'Night Manager',0,26),(75780,1286871,'Man on Bus',0,27),(75780,1098033,'Woman on Bus',0,28),(75780,131422,'Zec\'s Thug',0,29),(75780,1286873,'Zec\'s Thug',0,30),(75780,1272901,'Zec\'s Thug',0,31),(75780,1056052,'Desk Sergeant',0,32),(75780,1219514,'Man with Ballcap',0,33),(75780,18475,'Mindy',1,34),(75780,558923,'Goodwill Cashier',0,35),(75780,167110,'Pawn Shop Cashier',0,36),(75780,1286875,'Diner Waitress',0,37),(75780,1286876,'Jeb\'s Mom',0,38),(75780,1286877,'Sportsbar Waitress',0,39),(75780,1023800,'Construction Foreman',2,40),(75780,27687,'SWAT Guy',0,41),(75780,1286878,'SWAT Guy',0,42),(75780,1286879,'Cop',2,43),(75780,211964,'Cop',0,44),(75780,157081,'Oline Archer',1,45),(75780,1272960,'Marcos Coronado',0,46),(39538,1892,'Mitch Emhoff',2,0),(39538,12052,'Beth Emhoff',1,1),(39538,204,'Dr. Erin Mears',1,2),(39538,9642,'Alan Krumwiede',2,3),(39538,8293,'Dr. Leonora Orantes',1,4),(39538,2975,'Dr. Ellis Cheever',2,5),(39538,17419,'Rear Admiral Lyle Haggerty',2,6),(39538,5411,'Aubrey Cheever',1,7),(39538,49971,'Dr. Ally Hextall',1,8),(39538,1106973,'Irina',0,9),(39538,1107177,'Jory Emhoff',1,10),(39538,15029,'Dennis French',2,11),(39538,84075,'Dr. David Eisenberg',2,12),(39538,1624949,'Minnesota Health',2,13),(39538,1394359,'Lieutenant Commander Williams (uncredited)',0,14),(39538,1570276,'Siphon woman (uncredited)',0,15),(39538,827,'Dr. Ian Sussman',2,16),(39538,1396335,'Clark Morrow',2,17),(77174,113505,'Norman Babcock (voice)',2,0),(77174,558925,'Neil Downe (voice)',2,1),(77174,8338,'Aggie Prenderghast (voice)',1,2),(77174,84223,'Courtney Babcock (voice)',1,3),(77174,1893,'Mitch Downe (voice)',2,4),(77174,41087,'Sandra Babcock (voice)',1,5),(77174,60074,'Perry Babcock (voice)',2,6),(77174,54691,'Alvin (voice)',2,7),(77174,1230,'Mr. Prenderghast (voice)',2,8),(77174,36802,'Grandma Babcock (voice)',1,9),(77174,1369,'Judge Hopkins (voice)',2,10),(77174,24357,'Mrs. Henscher (voice)',1,11),(77174,92087,'Sheriff Hooper (voice)',1,12),(77174,204131,'Pug (voice)',2,13),(77174,113916,'Deputy Dwayne, Rapper G (voice)',2,14),(77174,1714288,'Salma (voice)',0,15),(77174,42160,'Blithe Hollow Kid (voice)',1,16),(77174,105659,'Female Tourist (voice)',1,17),(77174,17641,'Blithe Hollow Townspers (voice)',1,18),(77174,60272,'Townspeople (voice)',0,19),(77174,1229811,'Townspeople (voice)',0,20),(137094,62064,'Jack Ryan',2,0),(137094,116,'Cathy Muller',1,1),(137094,1269,'William Harper',2,2),(137094,11181,'Viktor Cherevin',2,3),(137094,12766,'Constantin',0,4),(137094,1196960,'Aleksandr Borovsky',2,5),(137094,21193,'Dimitri Lemkov',2,6),(137094,521001,'Katya',0,7),(137094,43547,'Embee',2,8),(137094,10132,'Rob Behringer',2,9),(137094,97576,'Amy Chan',1,10),(137094,1106755,'Customer',0,11),(137094,1202317,'Cherevin\'s Bodyguard',2,12),(137094,1106757,'Waiter',0,13),(137094,1106759,'Restaurant Diner',0,14),(137094,1106760,'VIP Business Man',0,15),(137094,79124,'FBI Lead Agent',1,16),(137094,19839,'Dixon Lewis',2,17),(137094,54014,'Sergey Dostal',2,18),(137094,1327764,'UN Announcer',0,19),(137094,1327765,'Mr. Borovsky',0,20),(137094,1085742,'Mrs. Borovsky',0,21),(137094,1129795,'Mary',0,22),(137094,1225974,'Teddy Hefferman',0,23),(137094,1052209,'Cherevin\'s Bodyguard',2,24),(137094,97436,'Cherevin\'s Bodyguard',2,25),(137094,1778221,'Cherevin\'s Guest Driver',0,26),(137094,1480047,'Anchor',2,27),(137094,122556,'Student',0,28),(274479,72129,'Joy Mangano',1,0),(274479,51329,'Neil Walker',2,1),(274479,380,'Rudy',2,2),(274479,1026947,'Jackie',1,3),(274479,25616,'Tony Miranne',2,4),(274479,126932,'Peggy',1,5),(274479,12519,'Carrie',1,6),(274479,6588,'Trudy',1,7),(274479,6587,'Mimi',1,8),(274479,105762,'Toussaint',2,9),(274479,93015,'Cindy',1,10),(274479,1330999,'Young Peggy',1,11),(274479,42557,'Roderick',0,12),(274479,50234,'Priscilla',1,13),(274479,1542696,'Banquet Guest',1,14),(274479,1542697,'Dancer',0,15),(274479,1542698,'High School Party Goer',1,16),(274479,972492,'Young Joy',1,17),(274479,194477,'Danica',1,18),(274479,1221558,'Clarinda',1,19),(274479,173065,'Joan Rivers',0,20),(274479,1602952,'Candace',0,21),(274479,215890,'Ridge',2,22),(274479,18328,'Mop Executive',2,23),(274479,1658337,'Tony\'s Father',0,24),(274479,1223750,'Sharon',1,25),(274479,1658338,'Young Jackie',0,26),(274479,1496292,'Cristy 5 Years Old',0,27),(274479,1496293,'Cristy 5 Years Old',0,28),(274479,1658341,'Tommy 3 Years Old',0,29),(274479,1658348,'Tommy 3 Years Old',0,30),(274479,1168858,'Bartholomew',2,31),(274479,1774093,'Susan',0,32),(274479,1401606,'Angry Airline Customer',0,33),(274479,1658352,'Andre',0,34),(274479,1658353,'Divorce Mediator',0,35),(274479,130741,'Latin Priest',2,36),(274479,1230891,'Charlie',2,37),(274479,999737,'Parking Lot Woman',0,38),(274479,1371551,'Parking Lot Woman',1,39),(274479,1464956,'Parking Lot Woman',1,40),(274479,1774101,'Angela',0,41),(274479,1102317,'Angela\'s Brother',0,42),(274479,1774100,'Angela\'s Brother',0,43),(274479,1080882,'Marv Brickman',2,44),(274479,1271784,'Patsy',0,45),(274479,1355923,'Boardroom Rep',0,46),(274479,84436,'Boardroom Rep',0,47),(274479,50588,'Todd',2,48),(274479,58535,'Rifle Man',2,49),(274479,131849,'Sarina Kimball',1,50),(274479,13023,'Lori',1,51),(274479,1774105,'Eerie Fabri-Pac Guy',2,52),(274479,1511961,'Gregory',0,53),(274479,164004,'Gerhardt',0,54),(274479,171631,'Ray Cagney',0,55),(274479,73194,'Rudy\'s Attorney',2,56),(274479,1774084,'Young Memphis Woman',1,57),(274479,1774087,'Teen Cristy',0,58),(274479,1774091,'Dallas Man',0,59),(274479,1774094,'Airline Customer Service Clerk',0,60),(274479,1774096,'Tino',0,61),(274479,1852511,'Teen Tommy',0,62),(274479,1745909,'Police Officer',0,63),(274479,1360003,'Wedding Guest (uncredited)',0,64),(274479,1774109,'Banquet Guest (uncredited)',0,65),(274479,1542699,'Staten Island Girl (uncredited)',0,66),(267860,17276,'Mike Banning',2,0),(267860,6383,'President Benjamin Asher',2,1),(267860,192,'Vice President Alan Trumbull',2,2),(267860,9780,'Lynne Jacobs',1,3),(267860,6832,'Secretary of Defense Ruth McMillan',1,4),(267860,5694,'General Edward Clegg',2,5),(267860,342100,'Amal Mansoor',0,6),(267860,33836,'NSA Deputy Director Ray Monroe',0,7),(267860,8329,'Leah Banning',1,8),(267860,17183,'Deputy Chief Mason',2,9),(267860,115679,'MI6 Jacquelin Marshall',1,10),(267860,146358,'Sultan Mansoor',0,11),(267860,5414,'Chief Hazard',2,12),(267860,16607,'Aamir Barkawi',2,13),(267860,1322312,'Secret Service',0,14),(267860,94431,'Kamran Barkawi',0,15),(267860,89624,'Raza Mansoor',2,16),(267860,30085,'Agent Voight',0,17),(267860,108579,'Home Secretary Rose Kenter',1,18),(267860,1225859,'MI5 Intel John Lancaster',0,19),(267860,26780,'Doris',1,20),(267860,17291,'Agent Bronson',2,21),(267860,29697,'Canadian Prime Minister Robert Bowman',2,22),(267860,191140,'Bowman\'s Wife',1,23),(267860,78333,'Viviana Gusto',0,24),(267860,94857,'Jacques Mainard',0,25),(267860,1069504,'Pradhan',2,26),(267860,71072,'German Chancellor Agnes Bruckner',1,28),(267860,1412369,'Fire Dept. Head',0,29),(170687,2282,'Archibald Snatcher (voice)',2,0),(170687,239020,'Eggs (voice)',2,1),(170687,18050,'Winnie Portley-Rind (voice)',1,2),(170687,23680,'Fish / Wheels / Bucket (voice)',2,3),(170687,3051,'Lady Cynthia Portley-Rind (voice)',1,5),(170687,15440,'Lord Portley-Rind (voice)',2,6),(170687,11109,'Mr. Trout (voice)',2,7),(170687,98103,'Mr. Pickles (voice)',2,8),(170687,56903,'Mr. Gristle (voice)',2,9),(170687,11108,'Herbert Trubshaw (voice)',2,10),(170687,52698,'Oil Can / Knickers (voice)',1,12),(170687,34737,'Fragile / Sweets (voice)',2,13),(170687,60279,'Clocks / Specs (voice)',2,14),(170687,1521075,'Baby Eggs (voice)',0,15),(170687,34521,'Sir Langsdale (voice)',2,16),(170687,58528,'Sir Broderick / Male Workman 1 / Male Workman 2 (voice)',2,17),(170687,58511,'Boulanger / Male Aristocrat (voice)',2,18),(170687,1504905,'Female Aristocrat (voice)',0,19),(137106,73457,'Emmet Brickowski (voice)',2,0),(137106,23659,'Lord Business / President Business / The Man Upstairs (voice)',2,1),(137106,9281,'Wyldstyle / Lucy (voice)',1,2),(137106,21200,'Batman / Bruce Wayne (voice)',2,3),(137106,17039,'Metal Beard (voice)',2,4),(137106,88029,'Unikitty (voice)',1,5),(137106,95101,'Benny (voice)',2,6),(137106,3896,'Bad Cop / Good Cop / Pa Cop (voice)',2,7),(137106,192,'Vitruvius (voice)',2,8),(137106,38673,'Superman (voice)',2,9),(137106,21007,'Green Lantern (voice)',2,10),(137106,71189,'Wonder Woman (voice)',1,11),(137106,1340685,'Finn',0,12),(137106,6,'C-3PO (voice)',2,13),(137106,3799,'Lando (voice)',0,14),(137106,143346,'Han Solo (voice)',0,15),(137106,35806,'Shaq (voice)',2,16),(137106,62831,'Abraham Lincoln (voice)',2,17),(137106,54697,'Wally (voice)',2,18),(137106,543505,'Barry (voice)',2,19),(137106,298410,'Foreman Jim (voice)',2,20),(137106,144816,'Larry the Barista / Additional Voices (voice)',0,21),(137106,62863,'Shakespeare / Additional Voices (voice)',2,22),(137106,155267,'TV Presenter (voice)',2,23),(137106,1370749,'Blake / Additional Voices (voice)',0,24),(137106,970287,'Octan Robot / Additional Voices (voice)',2,25),(137106,1370751,'Mom (voice)',0,26),(137106,1370753,'Gandalf / Additional Voices (voice)',0,27),(137106,1370755,'Lord Business\' Assistant (voice)',0,28),(137106,1370756,'Duplo (voice)',0,29),(137106,1370757,'Surfer Dave / Additional Voices (voice)',0,30),(137106,1370758,'Robot Foreman (voice)',0,31),(137106,1370759,'Joe (voice)',0,32),(137106,587697,'Gail / Ma Cop (voice)',0,33),(137106,1370760,'Voice of Computer (voice)',0,34),(82682,16851,'John O\'Mara',2,0),(82682,30614,'Sgt. Jerry Wooters',2,1),(82682,1733,'Bill Parker',2,2),(82682,54693,'Grace Faraday',1,3),(82682,2228,'Mickey Cohen',2,4),(82682,1771,'Conway Keeler',2,5),(82682,928532,'Darryl Gates',0,6),(82682,81685,'Jimmy reagan',2,7),(82682,53650,'Coleman Harris',2,8),(82682,418,'Max Kennard',2,9),(82682,454,'Navidad Ramirez',2,10),(82682,175826,'Connie O\'Mara',1,11),(82682,38664,'',2,12),(82682,7497,'Karl Lockwood',2,13),(82682,51930,'Rourke',2,14),(82682,1170659,'Mitch Racine',2,15),(82682,75330,'Milk Skinned Blonde',1,16),(82682,200448,'Detective Sgt. Will Hendricks',0,17),(82682,1215837,'Bruiser',0,18),(82682,63238,'Jimmy \'Bockscar\' Knox',2,19),(82682,20582,'Mike \'The Flea\'',2,20),(82682,51303,'Giovanni Vacarezza',2,21),(82682,202930,'Lorenzo Molinari',2,22),(82682,108247,'Patty',1,23),(82682,1273230,'Max Solomon',0,24),(82682,10489,'Lt. Quincannon',2,25),(82682,333,'Neddy Herbert',2,26),(82682,53198,'Johnny Stomp',2,27),(82682,31711,'Wrevock',2,28),(82682,148992,'Pete',2,29),(82682,103833,'Judge Carter',2,30),(82682,155825,'Elmer Jackson',2,31),(82682,21675,'Sheriff Biscailuz',2,32),(82682,1008085,'Carmen Miranda',1,33),(82682,51300,'Bridge Goon',2,34),(82682,1323612,'Grimes',2,35),(82682,1364232,'Dancer',0,36),(82682,1412125,'City Hall Reporter',0,37),(82682,4253,'Dragna',2,38),(82682,1418031,'Edgar Beaumont',2,39),(87825,190,'Gus',2,0),(87825,9273,'Mickey Lobel',1,1),(87825,12111,'Johnny Flanagan',2,2),(87825,1230,'Pete Klein',2,3),(87825,26457,'Phillip Sanderson',2,4),(87825,935497,'Bo Gentry',0,5),(87825,418,'Vince',2,6),(87825,21523,'Max',2,7),(87825,10486,'Smitty',2,8),(87825,50117,'Greg',2,9),(87825,130227,'Danny',2,10),(87825,928572,'Billy Clark',2,11),(87825,1127807,'Rigo Sanchez',2,12),(87825,4029,'Watson',2,13),(87825,77023,'Schwartz',2,14),(87825,14669,'Rosenbloom',2,15),(87825,1181555,'Todd',0,16),(87825,1181556,'Grace Sanchez',0,17),(87825,52483,'Rick',2,18),(87825,1181562,'Lucious',2,19),(87825,1181557,'Pitcher',2,20),(87825,1181558,'Wilson',0,21),(87825,1181559,'Bo\'s Father',2,22),(87825,128207,'Diner Waitress',1,23),(87825,94854,'Red Sox GM',2,24),(87825,587508,'Young Mickey',1,25),(87825,1181564,'Carlos Sanchez',2,26),(87825,1181565,'Nurse',2,27),(87825,101013,'Manager',0,28),(87825,1181566,'Swannanoa Manager',2,29),(87825,223020,'Secretary',1,30),(87825,1181570,'Jimmy',0,31),(87825,180649,'Rock',2,32),(87825,1347461,'Law Receptionist',0,33),(87825,1088939,'Umpire',0,34),(87825,1394530,'Musician',2,35),(87825,146020,'Matt Nelson',2,36),(87825,970752,'Drunk Fan',2,37),(87825,1656213,'Grizzly Player #1',2,38),(87825,1673161,'Grizzly Player #2',0,39),(87825,1675483,'Himself',2,40),(87825,145320,'Assistant',0,41),(87825,1675471,'Baseball Fan',1,42),(87825,1383491,'Baseball Fan (uncredited)',1,43),(87825,1675476,'News Reporter (uncredited)',1,44),(87825,1377994,'Carol (uncredited)',1,45),(38321,6162,'Priest',2,0),(38321,1372,'Black Hat',2,1),(38321,55086,'Hicks',2,2),(38321,21045,'Priestess',1,3),(38321,112561,'Lucy Pace',1,4),(38321,32203,'Owen Pace',2,5),(38321,6714,'Shannon Pace',1,6),(38321,1370,'Salesman',2,7),(38321,290,'Monsignor Orelas',2,8),(38321,52760,'Monsignor Chamberlain',2,9),(38321,149776,'Woman',1,10),(137321,72466,'Peter Lake',2,0),(137321,567269,'Beverly Penn',1,1),(137321,934,'Pearly Soames',2,2),(137321,227,'Isaac Penn',2,3),(137321,6161,'Virginia Gamely',1,4),(137321,2888,'Judge',2,5),(137321,6804,'Humpstone John',2,6),(137321,66743,'Young Man',2,7),(137321,79072,'Cesar Tan',2,8),(137321,2639,'Willa (Adult)',1,9),(137321,18472,'Romeo Tan',2,10),(137321,205257,'Mrs. Lake',1,11),(137321,168877,'Gabriel',2,12),(137321,1654649,'Ballroom Dancer',0,13),(137321,1240648,'Ellis Isle Doctor',0,14),(137321,77093,'Ellis Isle Official',2,15),(137321,147472,'Dingy Worthington',2,16),(137321,1367015,'Optometrist',0,17),(137321,1698872,'Cecil Mature',0,18),(137321,1698873,'Young Willa',0,19),(137321,1656059,'Oyster Boy',2,20),(137321,35091,'Carriage Driver',2,21),(137321,1397945,'Governess',1,22),(137321,1593166,'Butler',0,23),(137321,1437547,'Gravesman',0,24),(137321,1648751,'Abby',1,25),(137321,1358986,'Girl in Bed',1,26),(137321,42194,'Librarian',1,27),(137321,145113,'Custodian',0,28),(137321,187538,'Receptionist',0,29),(137321,2843,'Gwathmi',0,30),(137321,1001804,'Grand Central Short Tail',2,31),(137321,1795363,'Ballroom Dancer',2,32),(123553,112561,'Clary Fray',1,0),(123553,83356,'Jace Wayland',2,1),(123553,7431,'Alec Lightwood',2,2),(123553,1075355,'Isabelle Lightwood',0,3),(123553,118616,'Simon Lewis',2,4),(123553,17286,'Jocelyn Fray',1,5),(123553,15440,'Hodge Starkweather',2,6),(123553,207558,'Luke Garroway',2,7),(123553,1192915,'Magnus Bane',0,8),(123553,112692,'Blackwell',2,9),(123553,79072,'Pangborn',2,10),(123553,30485,'Dorothea',1,11),(123553,1244,'Valentine',2,12),(123553,207558,'Luke',2,13),(123553,224723,'Brother Jeremiah',2,14),(123553,58655,'Alaric',2,15),(123553,209769,'Lambert',2,17),(123553,1366361,'Eric',0,18),(123553,25409,'The Vampire Leader',2,19),(123553,138947,'Bouncer',2,20),(123553,1684840,'Magnus\' Brother',0,21),(123553,1187553,'Vampire Henchman',2,22),(210860,85,'Charles Mortdecai',2,0),(210860,12052,'Johanna Mortdecai',1,1),(210860,3061,'Inspektor Alistair Martland',2,2),(210860,6162,'Jock Strapp',2,3),(210860,81364,'Georgina Krampf',1,4),(210860,4785,'Krampf',2,5),(210860,75130,'Emil Strago',2,6),(210860,8445,'Sir Graham Archer',2,7),(210860,4455,'Romanov',2,8),(210860,1196960,'Dmitri',2,9),(210860,545195,'Maurice',2,10),(210860,1619468,'Farmer',2,11),(210860,138860,'Bikini Babe',0,12),(210860,237746,'Himself',2,13),(381902,21908,'The Monkey King',2,0),(381902,643,'Lady White',1,1),(381902,936431,'Little Monk',2,2),(381902,131513,'Zhu Bajie',2,3),(381902,237032,'Sha Wujing',0,4),(381902,72730,'Goddess of Mercy Guanyin',1,5),(381902,1133067,'Cloud Hercynian King',2,6),(381902,27074,'Basilisk',0,7),(381902,1611657,'Bat demon',0,8),(381902,1611658,'Porcupine demon',0,9),(381902,1764717,'evil spirit Pig',0,10),(293660,10859,'Wade Wilson / Deadpool',2,0),(293660,54882,'Vanessa Carlysle / Copycat',1,1),(293660,1047649,'Francis Freeman / Ajax',2,2),(293660,51990,'Jack Weasel Hammer',2,3),(293660,78452,'Christina / Angel Dust',1,4),(293660,122750,'Blind Al',1,5),(293660,1492326,'Ellie Phimister / Negasonic Teenage Warhead',1,6),(293660,1109702,'Dopinder',2,7),(293660,15032,'The Recruiter',2,8),(293660,80507,'Piotr Rasputin / Colossus (voice)',2,9),(293660,215887,'Buck',2,10),(293660,1717,'Boothe',2,11),(293660,27588,'Warlord',0,12),(293660,1417031,'Jeremy (Pizza Guy)',0,13),(293660,62915,'Gavin Merchant',0,14),(293660,1493223,'Meghan Orlovsky',1,15),(293660,1683933,'Teen Girl #1',1,16),(293660,1676741,'Teen Girl #2',0,17),(293660,1683942,'Arcade Ticket Taker',2,18),(293660,177885,'Oncologist',1,19),(293660,1376110,'David Cunningham',0,20),(293660,1723676,'Chinatown Merchant',0,21),(293660,1602420,'Whisper Girlfriend',1,22),(293660,1442429,'Whisper Boyfriend',2,23),(293660,60614,'Pool Hall Goon',2,24),(293660,1683952,'Fight Club Boss',2,25),(293660,1380498,'Garbage Truck Driver',2,26),(293660,1127280,'Super Soldier #1',2,27),(293660,83445,'Super Soldier #2',2,28),(293660,7624,'Strip Club DJ',2,29),(293660,51940,'No5 Orange Manager',2,30),(293660,1683953,'Strip Club Worker',1,31),(293660,106951,'Flight Deck Guard',2,32),(293660,184842,'Bob',2,33),(293660,1604990,'Stripclub Pole Performer (uncredited)',1,35),(293660,1683954,'Guadalajaran Nurse (uncredited)',1,36),(293660,104458,'Stripper (uncredited)',1,37),(293660,1554158,'Strip Club Spectator (uncredited)',2,38),(293660,1683956,'Strip Club Patron (uncredited)',2,39),(293660,1683957,'Fight Club Spectator (uncredited)',2,40),(293660,1683958,'Colossus (Facial Performance) (uncredited)',2,41),(293660,87209,'Elderly Man (uncredited)',2,42),(293660,1683960,'Soldier (uncredited)',2,43),(293660,1683961,'Ten Year Old Boy (uncredited)',2,44),(293660,1451618,'Thug (uncredited)',2,45),(293660,1475531,'Guadalajaran Mother (uncredited)',1,46),(293660,1285612,'Biker (uncredited)',2,47),(190859,51329,'Chris Kyle',2,0),(190859,23459,'Taya Renae Kyle',1,1),(190859,59219,'Goat - Winston',0,2),(190859,1530518,'Young Chris Kyle',0,3),(190859,163139,'Wayne Kyle',2,4),(190859,169334,'Debbie Kyle',1,5),(190859,1530524,'Young Jeff Kyle',0,6),(190859,549063,'Pastor',0,7),(190859,1259732,'Bully',0,8),(190859,17194,'Lt. Col. Jones',2,9),(190859,39213,'Jeff Kyle',2,10),(190859,71519,'Sarah',1,11),(190859,1231514,'Navy Recruiter',0,12),(190859,83859,'Instructor Rolle',2,13),(190859,52946,'Tony',2,14),(190859,1502954,'Dauber',0,15),(190859,94791,'Biggles',2,16),(190859,74302,'D / Dandridge',2,17),(190859,188311,'Squirrel / Case',2,18),(190859,208406,'Dapper Navy Man',2,19),(190859,135429,'PO Kaman',2,20),(190859,56680,'Marc Lee',2,21),(190859,1230897,'Mustafa',2,22),(190859,963450,'Jag Officer #1',2,23),(190859,27031,'Colonel Gronski',2,24),(190859,207396,'Capt. Gillespie',2,25),(190859,1216129,'Thompson',2,26),(190859,103330,'Sheikh Al-Obeidi',2,27),(190859,1106196,'Terp #1',0,28),(190859,119520,'DIA Agent Snead',2,29),(190859,186573,'Contractor',2,30),(190859,107561,'The Butcher',2,31),(190859,97950,'Dr. Hallerman',1,32),(190859,65727,'Navy Seal Lt. Martin',0,33),(190859,117824,'Terp #2',2,34),(190859,109669,'Messianic Tribal Leader',0,35),(190859,1519605,'PFC Alvarez',2,36),(190859,221611,'Young Vet-Mads',0,37),(190859,1237184,'Receptionist',0,38),(190859,1530545,'Marc Lee\'s Mom',1,39),(190859,1205880,'Funeral Detail OIC',0,40),(190859,61527,'Ranger One',2,41),(190859,1331135,'MRAP Gunner',2,42),(190859,558928,'Colton',2,43),(190859,35172,'VA Doctor',2,44),(190859,1514937,'Veteran #2',2,45),(190859,1378820,'Veteran at Truck',0,46),(190859,1392838,'Marine Sniper (uncredited)',0,47),(190859,1392837,'Carjacker #2 (uncredited)',0,48),(190859,1564445,'Drinking Buddy (uncredited)',0,49),(190859,1530530,'Cowboy',0,50),(190859,1530532,'Instructor #2',0,51),(190859,127588,'1st Marine #2',0,52),(190859,1530533,'1st Marine #1',0,53),(190859,1530536,'Marine Viper #4',0,54),(190859,1530537,'JAG Officer #2',0,55),(190859,1488797,'Sanchez',0,56),(190859,1530540,'Omar',0,57),(190859,1530541,'Son',0,58),(190859,1526814,'Father',0,59),(190859,1530542,'Angry Neighbor',0,60),(190859,1530543,'Young Colton',0,61),(190859,142362,'Navy Doctor',0,62),(190859,1530544,'Chaplain',0,63),(190859,1530546,'Marc Lee\'s Wife',0,64),(190859,1530547,'Firing Party NCO',0,65),(190859,1530549,'Navy Nurse',0,66),(190859,1530550,'Marine Gate Guard #1',0,67),(190859,1530551,'Marine Gate Guard #2',0,68),(190859,1530552,'Marine Gate Guard #3',0,69),(190859,1530553,'Delta Sniper',0,70),(190859,992389,'Recon Sniper',2,71),(190859,1530555,'Recon Gunner',2,72),(190859,1530556,'Navy Dispatch Officer',0,73),(190859,1530557,'Cobra Pilot',0,74),(190859,1116802,'Colton\'s Friend',0,75),(190859,1530558,'McKenna',0,76),(190859,84502,'Boy\'s Mom',0,77),(190859,1530561,'Wynn\'s Friend',0,78),(190859,1530563,'Wynn',0,79),(190859,1530564,'Veteran #1',0,80),(257445,70851,'R.L. Stine',2,1),(257445,112476,'Zach Cooper',0,2),(257445,1121786,'Hannah',1,3),(257445,39388,'Gale',1,4),(257445,1226302,'Lorraine',1,5),(257445,456066,'Champ',2,6),(257445,77089,'Coach Carr',2,7),(257445,934243,'Taylor',1,8),(257445,466505,'Foreman',2,10),(257445,1181329,'Officer Stevens',2,11),(257445,1268728,'Officer Brooks',0,12),(257445,1181295,'Davidson',0,13),(257445,1109702,'Mr. Rooney',2,14),(257445,41020,'Mayor',2,15),(257445,1386535,'Monster',0,16),(257445,1278911,'Principal Garrison',0,17),(257445,1376561,'Seth',0,18),(257445,201757,'Hallway Player',0,19),(257445,1526085,'Monster',0,20),(257445,1502870,'Will Blake',2,21),(257445,1526086,'Monster',0,22),(257445,1526087,'Monster',0,23),(257445,1383552,'Clown',2,24),(257445,1526090,'Monster',0,25),(257445,1383537,'Professor Shock',0,26),(257445,1526091,'Monster',0,27),(257445,1526092,'Monster',0,28),(257445,1526095,'Monster',0,29),(257445,1526096,'Monster',0,30),(257445,1526097,'Monster',0,31),(257445,1526099,'Monster',0,32),(257445,1526103,'Monster',0,33),(257445,1526105,'Monster',0,34),(257445,1526106,'Creep #1',0,35),(257445,1526107,'Monster',0,36),(257445,1526108,'Ghoul',0,37),(257445,1502277,'Creep #2',0,38),(257445,1526109,'Ghoul',0,39),(257445,1526110,'Cronby',0,40),(257445,1526112,'Madame Doom',0,41),(257445,1526113,'Captain Long Ben One-Leg',0,42),(257445,1526114,'Ghoul',0,43),(257445,1526115,'Monster',0,44),(257445,1526116,'Ghoul',0,45),(257445,1526117,'Monster',0,46),(257445,1526118,'Ghoul',0,47),(257445,1523924,'Dumb Jock',0,48),(257445,1762388,'Screaming Girl',0,49),(257445,1762417,'Girl #1 (uncredited)',0,50),(257445,58733,'Cyclist (uncredited)',2,51),(257445,1757725,'Gym Teacher (uncredited)',0,52),(257445,1762418,'Highschool Student (uncredited)',0,53),(257445,1762419,'Student #1 (uncredited)',0,54),(257445,1273199,'Anna (uncredited)',1,55),(347969,19292,'Tommy aka White Knife',2,0),(347969,84214,'Lil\' Pete',2,1),(347969,884,'Doc Griffin',2,2),(347969,53256,'Chico',2,3),(347969,11160,'Cicero',2,4),(347969,60950,'General Custer',2,5),(347969,1037,'Smiley',2,6),(347969,1733,'Frank Stockburn',2,7),(347969,60949,'Ramon',2,8),(347969,36422,'Danny',2,9),(347969,62831,'Will Patch',2,10),(347969,18324,'Clem',2,11),(347969,1215525,'Herm',2,12),(347969,1241,'Abner Doubleday',2,13),(347969,51382,'Bank Manager',0,14),(347969,32907,'Nelly Patch',2,15),(347969,77075,'Dirty Cowboy',0,16),(347969,66555,'Susannah',1,17),(347969,60961,'Babyface Patch',0,18),(347969,16165,'Ezekiel Grant',2,19),(347969,5621,'Roscoe',2,20),(347969,564348,'Lavall Patch',0,21),(347969,21485,'Gulch Sheriff',0,22),(347969,292445,'Wyatt Earp',2,23),(347969,17338,'Mark Twain',2,24),(347969,87310,'Smoking Fox',1,25),(347969,166029,'Abraham Lincoln',2,26),(347969,1447670,'Nugget Prostitute',1,27),(347969,1260554,'Woman in Bank',1,28),(347969,126829,'Screaming Eagle',0,29),(347969,1527952,'Sexy Bar Girl',0,30),(347969,1365516,'(passed out) Gambler',2,31),(347969,1527953,'Sheriff\'s Wife',1,32),(347969,307885,'Performer #1',0,33),(347969,963297,'Nugget Bouncer #1',2,34),(347969,1527954,'Betty Dunson',0,35),(347969,1527955,'Town Cowboy',0,36),(347969,1527956,'Saloon Girl',0,37),(347969,1204226,'Citizen of Rattler\'s Gulch',2,38),(347969,1527957,'Rattlers Gulch Man',0,39),(347969,1527958,'Balcksmith',0,40),(347969,1405605,'School Girl',1,41),(347969,1527959,'Towns boy',2,42),(347969,1527960,'Ciciro\'s Gang',0,43),(347969,1527961,'Guard',0,44),(347969,1451588,'Gambling Cowboy-Wheel of Fortune',0,45),(347969,1153698,'Sober Bar Patron',2,46),(347969,1116699,'Guard',0,47),(347969,1527963,'Saloon Girl',1,48),(347969,1527965,'Young Tommy',0,49),(347969,1527964,'Citizen of Rattler\'s Gulch',0,50),(347969,1278705,'Angry Townsman',0,51),(347969,1527966,'Nugget Prostitute',0,52),(347969,1278711,'Soiled Dove Saloon Girl',0,53),(347969,1099854,'Short worker',0,54),(347969,1527967,'Young Cicero',0,55),(347969,1527968,'Dancing Drunk',0,56),(347969,1527969,'Sheriff\'s Deputy',0,57),(347969,1527970,'Theater Patron',0,58),(347969,1527972,'Citizen of Roscoe Plains (uncredited)',0,59),(347969,1527973,'Cowboy (uncredited)',0,60),(347969,1267041,'Cowboy (uncredited)',0,61),(347969,1527974,'Cowboy / Townsman (uncredited)',0,62),(347969,1527976,'Roscoe \'Doc\' / Gulch Gambler (uncredited)',0,63),(347969,1527975,'Villager (uncredited)',0,64),(347969,1410055,'Townsman (uncredited)',0,65),(347969,1527977,'Townsman',0,66),(347969,1527978,'Cheering Cowboy (uncredited)',0,67),(116741,887,'Nick Campbell',2,0),(116741,4937,'Billy McMahon',2,1),(116741,9827,'Dana Simms',1,2),(116741,2978,'Graham Hawtrey',2,3),(116741,20644,'Roger Chetty',2,4),(116741,1180979,'Lyle Spaulding',0,5),(116741,527393,'Stuart Twombly',2,6),(116741,109046,'Neha Patel',1,7),(116741,1180980,'Yo-Yo Santos',0,8),(116741,54415,'Andrew \'Headphones\' Anderson',2,9),(116741,130782,'Marielena Gutierrez',1,10),(116741,71403,'Randy',2,11),(116741,934159,'Sid',2,12),(116741,210172,'Zach',2,13),(116741,54043,'Bob Williams',0,14),(116741,168829,'Sal',2,15),(116741,99206,'Megan',1,16),(116741,963547,'Eleanor',0,17),(116741,107770,'Male Interviewer',2,18),(116741,1377994,'Female Interviewer',1,19),(116741,1439334,'Jeanie',0,20),(116741,1502241,'Lorraine',0,21),(116741,23659,'Kevin',2,22),(116741,1230,'Sammy Boscoe',2,23),(116741,196843,'Female Customer',1,24),(116741,1502207,'Snitch',0,25),(116741,146020,'Club Douche',2,26),(116741,1126350,'Library Teen',0,27),(116741,1126352,'Library Little Girl',0,28),(116741,1502239,'Waitress with Pappy',1,29),(116741,1502237,'Not Professor X',0,30),(116741,1502242,'Yo-Yo\'s Dad',0,31),(116741,1502244,'Dry Cleaner Girl',0,32),(116741,1502246,'Waitress Jennifer',0,33),(116741,1502247,'Bouncer #1 (as Jody Smith)',0,34),(116741,1502248,'Exotic Dancer #3',0,35),(116741,1502249,'Chinese Waiter',0,36),(116741,1502252,'College Student (uncredited)',0,37),(116741,1502253,'Googler (uncredited)',0,38),(116741,1502254,'Strip Club Patron (uncredited)',0,39),(116741,1502255,'Cosplay Bartender (uncredited)',0,40),(116741,1502256,'Arcade Patron (uncredited)',0,41),(116741,1502257,'Restaurant Patron (uncredited)',0,42),(116741,1502258,'Billy\'s Dad (uncredited)',0,43),(116741,1502260,'Marty (uncredited)',0,44),(116741,1502261,'Elektra Cosplayer (uncredited)',0,45),(116741,1502262,'Little League Parent (uncredited)',0,46),(116741,1502263,'Chinatown Pedestrian (uncredited)',0,47),(116741,1502264,'Retirement Community Cargiver (uncredited)',0,48),(116741,1502265,'Douchebag Friend (uncredited)',0,49),(116741,1502266,'Chinatown Pedestrian (uncredited)',0,50),(116741,1502267,'Restaurant Patron (uncredited)',0,51),(116741,1502268,'Bartender (uncredited)',0,52),(116741,1502269,'Google Employee (uncredited)',0,53),(116741,1502270,'Waitress (uncredited)',0,54),(116741,1502271,'Chinatown Traveler (uncredited)',0,55),(116741,1502272,'Arcade Patron (uncredited)',0,56),(116741,1502273,'Noogler (uncredited)',0,57),(116741,1502274,'Googler (uncredited)',0,58),(116741,1502275,'8 Year Old Nick (uncredited)',0,59),(116741,1502276,'Model (uncredited)',0,60),(116741,1502277,'Googler (uncredited)',0,61),(116741,1502278,'Tiki bar patron (uncredited)',0,62),(116741,1502279,'Google Leader (uncredited)',0,63),(116741,1502280,'Link (uncredited)',0,64),(116741,1502281,'Pizza Patron (uncredited)',2,65),(116741,1502282,'Googler (uncredited)',0,66),(116741,1502283,'Googler (uncredited)',0,67),(116741,1502284,'Bruce Lee Cosplayer / Noogler (uncredited)',0,68),(116741,1502285,'Arcade Patron (uncredited)',0,69),(116741,1502286,'Googler (uncredited)',0,70),(116741,1502288,'Newgooler (uncredited)',0,71),(116741,1502289,'Patron (uncredited)',0,72),(116741,1502290,'Google Leader (uncredited)',0,73),(116741,1502291,'Shuffleboard Oldtimer Guy (uncredited)',0,74),(116741,1502292,'Bar Patron (uncredited)',0,75),(116741,1502293,'Noogler (uncredited)',0,76),(116741,1502294,'Volleyball Player (uncredited)',0,77),(116741,1502295,'Air Hockey Girl (uncredited)',0,78),(116741,1502296,'Noogler (uncredited)',0,79),(116741,1502297,'Grease Monkey (uncredited)',0,80),(116741,1502298,'Restaurant Guest (uncredited)',0,81),(116741,1502299,'Noogler (uncredited)',0,82),(116741,1502300,'Google Intern (uncredited)',0,83),(116741,1502301,'Noogler (uncredited)',0,84),(116741,1502302,'Eve (uncredited)',0,85),(116741,1502303,'Cole (uncredited)',0,86),(116741,1502304,'Library Kid (uncredited)',0,87),(116741,1502305,'Noogler (uncredited)',0,88),(116741,1502306,'Card Player (uncredited)',0,89),(116741,1502307,'Google Employee (uncredited)',0,90),(116741,1502311,'Arcade Patron (uncredited)',0,91),(116741,1502312,'Frankie',0,92),(116741,1502313,'Noogler (uncredited)',0,93),(116741,1502314,'Valet (uncredited)',0,94),(116741,1502315,'Tiki Bar Patron (uncredited)',0,95),(116741,1502318,'Little League Coach',0,96),(116741,1126351,'Library Tween',0,97),(116741,995454,'Google Barista',2,98),(116741,1158832,'Exotic Dancer #1',1,99),(116741,220013,'Exotic Dancer #2',1,100),(116741,1228652,'Yo-Yo\'s Mom',0,101),(116741,1502319,'Rose',0,102),(116741,80832,'Bouncer #2',0,103),(116741,928338,'Sergey Brin (uncredited)',0,104),(116741,1386322,'Douchebag Friend (uncredited)',2,105),(116741,1246912,'Upscale Dining Couple (uncredited)',0,106),(116741,1019100,'Computer Guy (uncredited)',0,107),(116741,1369342,'Chinatown Pedestrian (uncredited)',1,108),(116741,1422991,'Restaurant Patron (uncredited)',1,109),(116741,1360011,'Street Walker (uncredited)',0,110),(116741,1194945,'Retiree (uncredited)',0,111),(116741,1116804,'Umpire (uncredited)',0,112),(116741,928577,'Chinatown Pedestrian (uncredited)',0,113),(116741,1472411,'Jeggins (uncredited)',0,114),(116741,1468779,'Wa Zao (uncredited)',0,115),(116741,1779803,'Bell Hop (uncredited)',2,116),(35791,63,'Alice',1,0),(35791,3972,'Chris Redfield',2,1),(35791,17303,'Claire Redfield',1,2),(35791,8335,'Bennett',2,3),(35791,114760,'Crystal',1,4),(35791,81097,'Albert Wesker',2,5),(35791,78994,'Angel',2,6),(35791,80758,'Luther West',2,7),(35791,7055,'Jill Valentine',1,8),(35791,57192,'K-Mart',1,11),(35791,970017,'Kim Yong',2,12),(35791,969189,'Axeman',2,13),(35791,1310668,'Sniper',0,14),(35791,1310669,'Sniper',0,15),(35791,65808,'Wendell',2,16),(72431,17419,'Colonel William Mortamus',2,0),(72431,35013,'Joe \'Lightning\' Little',2,1),(72431,9777,'Major Emanuelle Stance',2,2),(72431,221019,'Sofia',1,3),(72431,18288,'Col. A.J. Bullard',2,4),(72431,74957,'Antwan \'Coffee\' Coleman',2,5),(72431,1038379,'Chester',2,6),(72431,6906,'Colonel Jack Tomlinson',2,7),(72431,141770,'Lt. David Long',2,8),(72431,135651,'Maurice Wilson',2,9),(72431,5384,'Sticks',2,10),(72431,29512,'Lieutenant General Luntz',2,11),(72431,17353,'Brigadier General Hauser',2,12),(72431,73947,'Commanding General Westlake',2,13),(72431,1286552,'Bomber Navigator',0,14),(72431,1254614,'Declan \'Winky\' Hall',0,15),(87428,19292,'Donny Berger',2,0),(87428,4038,'Mary McGarricle',1,1),(87428,56757,'Ms. McGarricle',1,2),(87428,85825,'Jamie Martin',1,3),(87428,62861,'Todd Peterson',2,4),(87428,166029,'Randall Morgan',2,5),(87428,3085,'Father McNally',2,6),(87428,17338,'Vanilla Ice',2,7),(87428,75340,'Todd Bridges',2,8),(87428,62831,'Phil',2,9),(87428,32905,'Phil\'s Wife',1,10),(87428,16501,'Chad',2,11),(87428,21485,'Gerald',0,12),(87428,82988,'Helen',1,13),(87428,84920,'Steve Spirou',2,14),(87428,131722,'Brie',1,15),(87428,170804,'Grandma Delores',1,16),(87428,32907,'Kenny',2,17),(87428,6735,'Champale',1,18),(87428,86267,'Mrs. Ravensdale',1,19),(87428,1218506,'Young Donny',0,20),(87428,1202531,'Bridesmaid',1,21),(87428,203233,'Bridesmaid',1,22),(87428,967540,'Bridesmaid',1,23),(87428,1661677,'Bridesmaid',1,24),(87428,1202534,'Lemonade Stand Kid',0,25),(87428,1271681,'Lemonade Stand Kid',0,26),(87428,1219901,'Strip Club DJ',2,27),(71676,2963,'Johnny Blaze / Ghost Rider',2,0),(71676,8785,'Roarke / The Devil',2,1),(71676,44649,'Nadya',1,2),(71676,567332,'Danny',2,3),(71676,73589,'Ray Carrigan / Blackout',2,4),(71676,38559,'Methodius',2,5),(71676,17605,'Moreau',2,6),(71676,34257,'Benedict',2,7),(71676,25451,'Grannik',0,8),(71676,12210,'Terrokov',2,9),(71676,9831,'Toma Nikasevic',2,10),(109424,31,'Captain Richard Phillips',2,0),(109424,2229,'Andrea Phillips',1,1),(109424,94864,'SEAL Commander',2,2),(109424,15824,'John Cronan',2,3),(109424,75604,'Captain Frank Castellano',2,4),(109424,17199,'Ken Quinn',0,5),(109424,37204,'Mike Perry',2,6),(109424,37154,'Dan Phillips',2,7),(109424,87070,'Shane Murphy',2,8),(109424,1261694,'Muse',0,9),(109424,1266858,'Najee',0,10),(109424,1266859,'Bilal',0,11),(109424,1266862,'Elmi',0,12),(109424,58475,'Maersk Alabama Crew',2,13),(109424,203541,'Maersk Alabama Crew',0,14),(109424,1323776,'Maersk Alabama Crew',0,15),(109424,1334464,'Pirate Leader',0,16),(35056,56323,'Claire Foster',1,0),(35056,4495,'Phil Foster',2,1),(35056,13240,'Holbrooke',2,2),(35056,40036,'Detective Arroyo',1,3),(35056,22125,'Armstrong',2,4),(35056,886,'DA Frank Crenshaw',2,5),(35056,85825,'Katy',1,6),(35056,41091,'Haley Sullivan',1,7),(35056,17051,'Taste',2,8),(35056,18973,'Whippit',1,9),(35056,103,'Brad Sullivan',2,10),(35056,81364,'Claw Hostess',1,11),(35056,4238,'Collins',0,12),(35056,90633,'Natanya',1,13),(35056,19498,'Young Man',2,14),(35056,1375338,'Wendy',0,15),(35056,65920,'Cabbie',2,16),(35056,109708,'Detective Walsh',0,17),(35056,576511,'Oliver Foster',0,18),(35056,1248380,'Charlotte Foster',0,19),(35056,208519,'Claw Maitre D\'',0,20),(35056,1429456,'Peppermint Hippo Doorman',0,21),(35056,82092,'Will.I.Am',2,22),(35056,61182,'House-Hunting Woman',1,23),(35056,71552,'Young Woman',1,24),(35056,1207248,'Exotic Dancer #1',1,25),(35056,1559595,'Exotic Dancer #2',0,26),(35056,98818,'Book Club Member',1,27),(35056,203801,'Claw Hottie',1,28),(156022,5292,'Robert McCall',2,0),(156022,20982,'Teddy',2,1),(156022,56734,'Teri',1,2),(156022,35029,'Masters',2,3),(156022,58754,'Mandy',1,4),(156022,8984,'Brian Plummer',2,5),(156022,6832,'Susan Plummer',1,6),(156022,1224149,'Slavi',2,7),(156022,1399659,'Ralphie',0,8),(156022,20563,'Tevi',2,9),(156022,19898,'Vladimir Pushkin',0,10),(156022,41020,'Lead Investigator',2,11),(156022,151278,'Pederson',2,12),(156022,1399660,'Remar',0,13),(156022,1371550,'Jenny',0,14),(156022,1195813,'Gangster',0,15),(156022,141432,'Marcus',2,16),(156022,101088,'Marat',2,17),(156022,1419121,'Andri',0,18),(156022,1419122,'Detective Gilly',2,19),(156022,4733,'Detective Harris',2,20),(156022,1435189,'Jay',0,21),(156022,1435196,'HM Brian',0,22),(156022,1435747,'Little John Looney',0,23),(156022,133068,'Thief',2,25),(156022,1435802,'Ralphie\'s Mom',0,26),(156022,1435805,'Agent Mosley',0,27),(156022,21798,'P&E Worker',2,28),(156022,51666,'Homeowner',0,29),(156022,1360002,'Laborer',0,30),(156022,1435827,'Reporter',0,31),(156022,1435832,'Bank Officer',0,32),(156022,1105706,'Teddy\'s Guy',0,33),(156022,955406,'Teddy\'s Guy',2,34),(156022,1278777,'Teddy\'s Guy',0,35),(156022,1205742,'Teddy\'s Guy',2,36),(156022,1366,'Teddy\'s Guy',2,37),(156022,118598,'Teddy\'s Guy',0,38),(58224,206,'Tom Popper',2,0),(58224,17832,'Amanda',1,1),(58224,62564,'Janie Popper',1,2),(58224,14730,'Mrs. Van Gundy',1,3),(58224,82639,'Pippi',1,4),(58224,9048,'Nat Jones',2,5),(58224,4175,'Mr. Gremmins',2,6),(58224,38582,'Kent',2,7),(58224,4492,'Franklin',2,8),(58224,119807,'Rick',0,9),(58224,68186,'Reader',2,10),(58224,171948,'Yates',0,11),(58224,968851,'Tommy\'s Mom',1,12),(58224,206928,'Billy',2,13),(58224,1256097,'Young Tommy Popper #1',2,14),(58224,1237533,'Young Tommy Popper #2',2,15),(58224,1500899,'Pulse Lounge Beautiful Girl',1,16),(175574,887,'Reggie (voice)',2,0),(175574,57755,'Jake (voice)',2,1),(175574,56322,'Jenny (voice)',1,2),(175574,1752,'S.T.E.V.E. (voice)',0,3),(175574,17782,'Myles Standish (voice)',2,4),(175574,65827,'Chief Broadbeak (Voice)',2,5),(175574,58873,'Governor William Bradford (voice)',2,6),(175574,174727,'Female Pilgrim (voice)',1,7),(175574,8029,'President of the United States/Ranger/Leatherbeak/Hazmats (voice)',2,8),(175574,141775,'President\'s Daughter (voice)',1,9),(175574,59784,'Amos (voice)',2,10),(175574,189230,'Gus (Voice)',2,11),(175574,1245879,'Cold Turkey (Voice)',0,12),(175574,1277229,'Danny (voice)',0,13),(175574,62067,'Narrator/Alejandro (voice)',2,14),(175574,50880,'Chief Massasoit (voice)',2,15),(175574,20503,'Pizza Dude (voice)',2,16),(116149,2227,'Millicent',1,0),(116149,12982,'Mr. Curry',2,1),(116149,17064,'Paddington (voice)',2,2),(116149,5658,'Uncle Pastuzo (voice)',2,3),(116149,11356,'Aunt Lucy (voice)',1,4),(116149,39658,'Mrs. Mary Brown',1,5),(116149,477,'Mrs. Bird',1,6),(116149,19923,'Mr. Brown',2,7),(116149,388,'Mr. Gruber',2,8),(116149,26209,'Taxi Driver',2,9),(116149,23776,'Andre the Thief',2,10),(116149,1304662,'Jonathan Brown',0,11),(116149,1371439,'Servant',0,12),(116149,1365437,'Policeman',0,13),(116149,114253,'Security Guard',2,14),(116149,1304661,'Judy Brown',0,15),(116149,1010912,'Montgomery Clyde',2,16),(116149,1502431,'Agatha Clyde',1,17),(116149,1278504,'Young Millicent',0,18),(116149,10746,'Head Geographer',2,19),(116149,1247601,'Stenographer',0,20),(116149,1243426,'Kindly Gentleman',0,21),(116149,1255296,'Tony',0,22),(116149,2959,'Grant',2,23),(116149,94740,'Underground Ticket Inspector',0,24),(116149,71584,'Dog Owner',0,25),(116149,1286190,'Master Gruber',0,26),(116149,105440,'Master Gruber\'s Aunt',0,27),(116149,1221004,'Class Teacher',1,28),(116149,1502432,'Pupil',0,29),(116149,591993,'Trader',2,30),(116149,219367,'Paddington Station Security Guard',0,31),(116149,1473776,'Paddington Station Security Guard',2,32),(116149,182327,'Geographers\' Guild Receptionist',1,33),(116149,234120,'Geographer (Present Day)',2,34),(116149,1284192,'Geographer (Present Day)',0,35),(116149,1237930,'Geographer (Present Day)',0,36),(116149,1502433,'Buckingham Palace Sentry',0,37),(116149,1502434,'Morgan Clyde',0,38),(116149,206724,'Desk Sergeant',2,39),(116149,1502435,'Marjorie Clyde',0,40),(116149,231229,'Second Geographer',0,41),(116149,1219235,'Third Geographer',0,42),(116149,162429,'Fourth Geographer',0,43),(116149,1231421,'Fifth Geographer',2,44),(116149,204100,'Sixth Geographer',2,45),(116149,62973,'Natural History Museum Security Guard',0,46),(116149,1401914,'Judge',0,47),(116149,1502436,'Petting Zoo Keeper',0,48),(116149,1502437,'Additional Voices (voice) (uncredited)',0,49),(116149,234621,'Commuter #1 (uncredited)',2,50),(116149,1374158,'Commuter #2 (uncredited)',1,51),(116149,1502438,'Security Guard (uncredited)',0,52),(116149,1502439,'Police Officer (uncredited)',0,53),(116149,1502440,'Commuter #3 (uncredited)',0,54),(116149,1379268,'Station Blocker (uncredited)',0,55),(116149,1502441,'Hungarian immigrant (uncredited)',1,56),(116149,1347131,'Immigrant (uncredited)',0,57),(116149,1502442,'Portobello Market shopper (uncredited)',0,58),(116149,598841,'Trader (uncredited)',0,59),(116149,1394406,'Commuter #4 (uncredited)',0,60),(116149,1295992,'Commuter #5 (uncredited)',0,61),(116149,1502443,'Docker (uncredited)',0,62),(116149,122999,'Angel (uncredited)',2,63),(116149,1502444,'Market Stall Owner (uncredited)',0,64),(116149,1502445,'Commuter #7 (uncredited)',0,65),(116149,1502446,'Commuter #8 (uncredited)',0,66),(116149,1297114,'Additional Voices (voice) (uncredited)',0,67),(80035,7399,'Evan',2,0),(80035,4937,'Bob',2,1),(80035,21007,'Franklin',2,2),(80035,98103,'Jamarcus',2,3),(80035,14892,'Abby',1,4),(80035,62831,'Sergeant Bressman',2,5),(80035,59675,'Chucho',2,6),(80035,17005,'Hero Alien',2,7),(80035,990393,'Chelsea',1,8),(80035,85139,'Jason',0,9),(80035,8655,'Manfred',2,10),(80035,1060081,'Punk Kid',2,11),(80035,62863,'Casual Wanker #2',2,12),(80035,1046354,'Kyle',0,13),(80035,450951,'Mandy',1,14),(80035,8289,'Neighbor',2,15),(80035,62861,'Casual Wanker #1',2,16),(80035,1785189,'Paul\'s Guest #2',1,18),(80035,170432,'Olivia (uncredited)',2,19),(72197,3291,'Pirate Captain (voice)',2,0),(72197,2039,'The Pirate with Gout (voice)',2,1),(72197,12799,'Black Bellamy (voice)',2,2),(72197,8318,'The Pirate King (voice)',2,3),(72197,3136,'Cutlass Liz (voice)',1,4),(72197,11356,'Queen Victoria (voice)',1,5),(72197,20049,'Charles Darwin (voice)',2,8),(72197,53519,'Peg Leg Hastings (voice)',2,9),(72197,7060,'The Pirate with a Scarf (voice)',2,10),(72197,55469,'The Albino Pirate (voice)',0,11),(72197,21028,'The Albino Pirate (voice)',2,12),(72197,111875,'The Pirate Who Likes Sunsets and Kittens (voice)',2,13),(72197,2065,'Scarlett Morgan (voice)',2,14),(145220,17835,'Dominic Badguy',2,0),(145220,15232,'Jean Pierre Napoleon',2,1),(145220,56323,'Nadya',1,2),(145220,64180,'Kermit the Frog / Foo Foo / Statler / Beaker / Lips / Rizzo the Rat / Link Hogthrob / The Newsman (voice)',2,3),(145220,97185,'Miss Piggy / Fozzie Bear / Animal / Sam Eagle (voice)',2,4),(145220,64181,'Gonzo / Dr. Bunsen Honeydew / Zoot / Beauregard / Waldorf (voice)',2,5),(145220,64182,'Pepe the King Prawn / Rowlf the Dog / Dr. Teeth / The Swedish Chef / Bobo the Bear / Big Mean Carl / Baby Boss / Carlo Flamingo / Leprechaun Security Guard (voice)',2,6),(145220,135467,'Constantine / Floyd Pepper / Sweetums / Pops / Robin / Lew Zealand / Crazy Harry / 80\'s Robot / Camilla / Uncle Deadly (voice)',0,7),(145220,360193,'Walter / Manolo Flamingo (voice)',2,8),(145220,91606,'The Great Escapo',2,9),(145220,3136,'Herself',1,10),(145220,11477,'Big Papa',2,11),(145220,997569,'Berliner #1',0,12),(145220,1147918,'German Lady in the Audience',1,13),(145220,1147919,'Joe',0,14),(145220,1147920,'Commuter',0,15),(145220,192632,'Scooter / Janice / Miss Poogy / Bobby Benson / Wayne (voice)',0,16),(145220,1138597,'Spanish Train Porter',0,17),(145220,1147921,'German Audience Member',0,18),(145220,1106760,'Audience Member',0,19),(145220,11160,'Danny Trejo',2,20),(145220,2283,'Ivan the Guard',2,21),(145220,55936,'Prison King',0,22),(145220,58225,'Hobo Joe',2,23),(145220,2441,'Theater Manager',2,24),(145220,13014,'Prado Museum Guard #2',2,25),(145220,8924,'Beefeater Vicar',2,26),(145220,5530,'UPS Guy',2,27),(145220,56734,'Newspaper Girl',1,28),(145220,8436,'Berliner at Window',1,29),(145220,36592,'Ballet Dancer',1,30),(145220,1844,'German Cop',2,31),(145220,55469,'Delivery Man',0,32),(145220,27319,'Himself',2,33),(145220,27319,'Christopher Waltz',2,34),(145220,19923,'Irish Journalist',2,35),(145220,1711,'Prado Museum Guard #1',2,36),(145220,138986,'Himself',2,37),(145220,1504910,'Announcer',0,38),(145220,16450,'Himself',2,39),(145220,52997,'First AD',2,40),(145220,237405,'Herself',1,42),(145220,117470,'Maximum Security Prisoner',2,43),(145220,973385,'Young Florist',2,44),(145220,1315418,'Other Guard',2,45),(145220,1504912,'Berliner #3',0,46),(145220,1082302,'Prisoner One',0,47),(145220,57108,'The Usher',0,48),(145220,1228891,'Annie Sue / UK Muppet Performer (voice)',0,49),(145220,1401233,'UK Muppet Performer (voice)',2,50),(145220,102757,'UK Muppet Performer (voice)',0,51),(145220,1504913,'UK Muppet Performer (voice)',0,52),(145220,1504914,'UK Muppet Performer (voice)',0,53),(145220,65294,'UK Additional Muppet Performer (voice)',0,54),(145220,1504915,'UK Additional Muppet Performer (voice)',0,55),(145220,1504916,'UK Additional Muppet Performer (voice)',0,56),(145220,1504917,'UK Additional Muppet Performer (voice)',0,57),(145220,1504918,'UK Additional Muppet Performer (voice)',1,58),(145220,946673,'LA Muppet Performer (voice)',2,59),(145220,16303,'',1,60),(145220,11115,'Gulag Guard (uncredited)',2,61),(145220,974,'',2,62),(145220,85176,'',1,63),(145220,123846,'',1,64),(145220,93219,'',2,65),(145220,51331,'',2,66),(42297,38225,'Tess',1,0),(42297,53397,'Alice Ali Rose',1,1),(42297,58115,'Marcus Gerber',2,2),(42297,55086,'Jack Miller',2,3),(42297,143240,'Georgia',1,4),(42297,10697,'Alexis',2,5),(42297,8212,'Vince Scali',2,6),(42297,40462,'Nikki',1,7),(42297,2283,'Sean',2,8),(42297,141687,'Natalie',1,9),(42297,114674,'Harold Saint',2,10),(42297,83231,'Mark DJ',2,11),(42297,143242,'Dave',0,12),(42297,143243,'Coco',1,13),(42297,143244,'Scarlett',1,14),(42297,1290589,'Bartender',0,15),(42297,159913,'Dancer',1,16),(42297,970084,'Jesse',1,17),(42297,1583823,'Anna',1,18),(42297,108213,'Loretta',1,19),(42297,9274,'Mr. Anderson',2,20),(42297,91537,'Dwight',2,21),(42297,17641,'Preacher',1,22),(42297,1555119,'Ali\'s Hotel Manager',2,23),(42297,57428,'Greg',2,24),(42297,153916,'Marla',1,25),(42297,1186023,'Loft Assistant',1,26),(42297,1031099,'Brittany',1,27),(42297,1583844,'Ditsy Waitress',1,28),(42297,101971,'Curler Woman at Grundy Bus Stop',1,29),(42297,1583849,'Curler Woman\'s Friend',1,30),(42297,78662,'Damon / Bumper Band Member',2,31),(42297,212647,'James / Bumper Band Member',2,32),(36586,10814,'Blade',2,0),(36586,10823,'Whistler',2,1),(36586,2372,'Reinhardt',2,2),(36586,10839,'Nyssa',1,3),(36586,4886,'Scud',2,4),(36586,3491,'Damaskinos',2,5),(36586,10843,'Nomak',2,6),(36586,31841,'Chupa',2,7),(36586,115787,'Asad',0,8),(36586,1341,'Snowman',2,9),(36586,10841,'Kounen',2,10),(36586,10845,'Verlaine',0,11),(36586,2220,'Priest',2,12),(36586,10846,'Lighthammer',2,13),(36586,10847,'Rush',2,14),(36586,1080216,'Jigsaw',0,15),(36586,10849,'Golem',0,16),(36586,24605,'Blood Bank Doctor / Reaper',2,17),(36586,100085,'Blood Bank Guard / Reaper',0,18),(36586,183729,'Blood Bank Nurse',1,19),(36586,66268,'Drug Dealer',0,20),(36586,1280636,'Blood Bank Guard',0,21),(36586,1576113,'Vampire with Exposed Spine',0,22),(36586,1576156,'Reaper',0,23),(36586,1576158,'Reaper',0,24),(36586,1576432,'Reaper',0,25),(36586,1576454,'Reaper',0,26),(36586,1176836,'Reaper',0,27),(36586,1577534,'Reaper',0,28),(36586,1577535,'Reaper',0,29),(36586,1577576,'Reaper',0,30),(36586,1577590,'Reaper',0,31),(36586,1577597,'Reaper',0,32),(36586,1577618,'Reaper',0,33),(36586,1577640,'Reaper',0,34),(36586,1054327,'St. Cloud',0,35),(36586,1577649,'Choad',0,36),(36586,1577651,'Little G',0,37),(36586,1577656,'Tea Bag',0,38),(36586,205164,'Man in London Porno Shop',2,39),(36586,1577657,'Young Blade',0,40),(36586,1404539,'Moscow Vampire (uncredited)',0,41),(36586,545501,'Prostitute (uncredited)',0,42),(36586,1202772,'Paramedic (uncredited)',0,43),(36586,1277933,'Moscow Vampire Attacking Blade (uncredited)',0,44),(36586,1550701,'Bandaged Reaper (uncredited)',0,45),(36586,1113443,'Moscow Vampire Attacking Blade (uncredited)',0,46),(36586,1125428,'Moscow Vampire Attacking Blade (uncredited)',2,47),(70074,16483,'James Bonomo',2,0),(70074,61697,'Taylor Kwon',2,1),(70074,164945,'Lisa',1,2),(70074,31164,'Robert Nkomo Morel',2,3),(70074,117642,'Keegan',2,4),(70074,2224,'Marcus Baptiste',2,5),(70074,288,'Louis Blanchard',2,6),(70074,7497,'Hank Greely',2,7),(70074,12792,'Ronnie Earl',2,8),(70074,235492,'Lola',1,9),(70074,550471,'Waitress',0,10),(70074,1083165,'Kim',2,11),(70074,1133063,'Deputy Coroner',0,13),(70074,60881,'Baby Jack Lemoyne',2,14),(70074,230995,'Newscaster',1,15),(70074,946356,'Masseuse',1,16),(70074,565501,'Belle',1,17),(70074,1031463,'Lee',0,18),(70074,16460,'Detective Towne',2,19),(261023,85,'James \'Whitey\' Bulger',2,0),(261023,33192,'John Connolly',2,1),(261023,71580,'Billy Bulger',2,2),(261023,118545,'Lindsey Cyr',1,3),(261023,4724,'FBI Agent Charles McGuire',2,4),(261023,133,'Brian Halloran',2,5),(261023,88124,'Kevin Weeks',2,6),(261023,35029,'John Morris',2,7),(261023,36801,'FBI Agent Robert Fitzpatrick',2,8),(261023,74541,'Fred Wyshak',2,9),(261023,86034,'Marianne Connolly',1,10),(261023,6951,'John Martorano',2,11),(261023,121718,'John Callahan',2,12),(261023,36594,'Deborah Hussey',1,13),(261023,1511935,'Mickey Maloney',0,14),(261023,1126405,'John McIntyre',2,15),(261023,8549,'Tommy King',2,16),(261023,188049,'DEA Agent Eric Olsen (Interrogator)',2,17),(261023,951993,'Mom Bulger',0,18),(261023,999737,'Mary Bulger',0,19),(261023,68846,'Douglas Cyr',2,20),(261023,133068,'Buddy Leonard',2,21),(261023,141449,'Jeremiah O\'Sullivan',2,22),(261023,1511937,'Joe Cahill',0,24),(261023,8899,'Mrs. Cody',1,25),(261023,1511938,'Roger Wheeler',0,26),(261023,141448,'State Captain',0,27),(261023,51792,'Stephen Flemmi',2,28),(261023,785,'Agent Scott Gariola',2,29),(261023,239271,'Josh Bond',2,30),(261023,95982,'McGuire\'s Secretary',1,31),(261023,1063947,'Young Boy',0,32),(261023,1431488,'Anna Bjornsdottir',0,33),(261023,1171094,'Sr. FBI Official (voice)',0,34),(261023,187812,'Officer Flynn',2,35),(261023,1389296,'Irish Nationalist',0,36),(261023,1745901,'FBI Wire Tech',2,37),(261023,1745903,'Joey, Big Italian',0,38),(261023,1745904,'Gennaro Angiulo',0,39),(261023,202930,'Charlie McTiernan',2,40),(261023,1745905,'Charlie\'s Friend',2,41),(261023,61329,'Charlie\'s Friend',0,42),(261023,50588,'Agent James',2,43),(261023,1745906,'Dick Lehr',0,44),(261023,1730738,'Gerard O\'Neill',0,45),(261023,1108851,'Prisoner',0,46),(261023,1745907,'FBI Agent',2,47),(261023,58333,'Father Mackey',2,48),(261023,1745908,'Michael Donahue',2,49),(261023,1745909,'DEA Agent',0,50),(261023,1745910,'Nurse',0,51),(261023,1745911,'Drug Dealer',0,52),(261023,1745912,'Drug Dealer',0,53),(261023,1745913,'Drug Dealer',2,54),(261023,1499803,'Crook',0,55),(261023,1745914,'Barman',0,56),(261023,1745915,'Boot Shop Owner',0,57),(261023,1745916,'World Jai Alai Chairman',0,58),(261023,1745917,'Porthole Bartender',0,59),(261023,1745918,'Porthole Customer',0,60),(261023,1168858,'DEA Agent Dan Doherty',2,61),(261023,1745919,'Little Mary Bulger',0,62),(261023,1745920,'Kathleen Bulger',0,63),(261023,1745921,'Parade Spectator / Pancake Breakfast Patron (uncredited)',0,64),(261023,1643248,'Floor Dancer (uncredited)',1,65),(285923,6856,'Stuntman Mike (segment Death Proof)',2,1),(285923,20494,'Herself (segment Death Proof)',1,2),(285923,5916,'Abernathy (segment Death Proof)',1,3),(285923,20491,'Butterfly (segment Death Proof)',1,4),(285923,20493,'Jungle Julia (segment Death Proof)',1,5),(285923,10580,'Kim (segment Death Proof)',1,6),(285923,16850,'Pam (segment Death Proof) / Cherry (segment Planet Terror)',1,7),(285923,20492,'Shanna (segment Death Proof) / Judy (segment Thanksgiving)',1,8),(285923,17628,'Lee Montgomery (segment Death Proof)',1,9),(285923,138,'Warren (segment Death Proof) / Rapist #1 (segment Planet Terror)',2,10),(285923,2536,'Earl McGraw (segments Death Proof / Planet Terror)',2,11),(285923,6862,'Wray (segment Planet Terror)',2,12),(285923,16851,'Block (segment Planet Terror)',2,13),(285923,20495,'JT (segment Planet Terror)',2,14),(285923,2712,'Sheriff Hague (segment Planet Terror)',2,15),(285923,20499,'Tony (segment Planet Terror)',0,16),(285923,62,'Muldoon (segment Planet Terror)',2,17),(285923,5471,'Abby (segment Planet Terror)',2,18),(285923,21319,'Eva Krupp (segment Werewolf Women of the SS)',1,19),(285923,29541,'Gretchen Krupp (segment Werewolf Women of the SS)',1,20),(285923,27737,'Dr. Heinrich von Strasser (segment Werewolf Women of the SS)',0,21),(285923,1646,'Franz Hess (segment Werewolf Women of the SS)',2,22),(285923,27736,'Lt. Boorman (segment Werewolf Women of the SS)',2,23),(285923,11159,'Padre (segment Planet Terror)',2,24),(285923,6407,'Dr. Dakota Block (McGraw) (segment Death Proof) / Dakota (segment Planet Terror)',1,25),(285923,11161,'Deputy Tolo (segment Planet Terror)',2,26),(285923,11160,'Machete (segment Planet Terror)',2,27),(285923,64103,'Featured Woman (segment Don\'t) (uncredited)',1,28),(285923,57578,'Featured Woman (segment Don\'t) (uncredited)',1,29),(285923,2963,'Fu Manchu (segment Werewolf Women of the SS) (uncredited)',2,30),(285923,102896,'Werewolf Woman (segment Werewolf Women of the SS) (uncredited)',1,31),(285923,11108,'Bearded Cannibal (segment Don\'t) (uncredited)',2,32),(39437,13309,'Sethe',1,0),(39437,2047,'Paul D Garner',2,1),(39437,9030,'Beloved',1,2),(39437,64908,'Younger Sethe',0,5),(39437,8354,'Stamp Paid',2,6),(39437,43853,'Ella',1,7),(39437,55314,'Denver',1,8),(39437,32774,'Baby Suggs, aka Grandma Baby',1,9),(39437,1770964,'Grace',0,10),(97630,83002,'Maya',1,0),(97630,76512,'Dan',2,1),(97630,2983,'George',2,2),(97630,33192,'Patrick - Squadron Team Leader',2,3),(97630,73457,'Justin - DEVGRU',2,4),(97630,3497,'Joseph Bradley',2,5),(97630,25616,'Larry from Ground Branch',2,6),(97630,45407,'Steve',2,7),(97630,78110,'John',2,8),(97630,49971,'Jessica',1,9),(97630,1061516,'Osama Bin Laden',0,10),(97630,89626,'Ammar',2,11),(97630,6195,'Jack',2,12),(97630,239271,'Thomas',2,13),(97630,1140088,'J.J.',0,14),(97630,4691,'C.I.A. Director',2,15),(97630,8435,'National Security Advisor',2,16),(97630,207304,'Deputy National Security Advisor',0,17),(97630,255430,'Assistant to National Security Advisor',2,18),(97630,182287,'Jeremy',2,19),(97630,1140091,'Deputy Director of C.I.A.',0,20),(97630,210271,'Jared - DEVGRU',2,21),(97630,208296,'Saber - DEVGRU',2,22),(97630,1140092,'Henry - DEVGRU',0,23),(97630,1140093,'Phil - DEVGRU',0,24),(97630,75131,'Nate - DEVGRU EOD',0,25),(97630,450,'Mike - DEVGRU',2,26),(97630,1215663,'Debbie',0,27),(97630,81685,'Squadron Commanding Officer',2,28),(97630,57012,'Hakim',2,29),(97630,115737,'Detainee on Monitor',2,30),(49520,59315,'Sabrina McArdle',1,0),(49520,10859,'Mitch Planko',2,1),(49520,23532,'Dave Lockwood',2,2),(49520,41087,'Jamie Lockwood',1,3),(49520,83352,'Tatiana',1,4),(49520,1903,'Mitch\'s Dad',2,5),(49520,1000822,'Kinkabe Lawyer',2,6),(49520,21142,'Flemming Steel',2,8),(49520,173739,'Ted Norton',2,9),(49520,945062,'Ken Kinkabe',2,10),(49520,123065,'Cara Lockwood',0,11),(49520,14886,'Valtan',2,12),(49520,1224311,'Blow-Dried Goon',0,13),(49520,1046200,'Sophia',0,14),(49520,1068811,'Parks Foreman',2,15),(49520,102335,'Mona',1,16),(49520,1168702,'Babysitter',1,17),(49520,1503756,'Boom Operator',2,18),(49520,152355,'Carla Nelson',1,19),(38050,1892,'David Norris',2,0),(38050,5081,'Elise Sellas',1,1),(38050,21134,'Richardson',2,2),(38050,53650,'Harry Mitchell',2,3),(38050,156675,'Robyn, Campaign Aide',1,4),(38050,83222,'Adrian Troussant, Elise\'s Fiancu00e9',2,5),(38050,28641,'Thompson',2,6),(38050,50217,'Charlie Traynor',2,7),(38050,1124488,'Suburban Mom',0,8),(38050,1124489,'Suburban Mom',0,9),(38050,1232567,'Suburban Neighbor',1,10),(38050,1302816,'Suburban Neighbor',0,11),(38050,943010,'Himself',0,12),(38050,12219,'Jon Stewart',2,13),(38050,1302820,'Political Consultant',0,14),(38050,1302821,'Political Consultant',2,15),(38050,1302822,'Reporter',0,16),(38050,1302823,'U.S. Coast Guard Officer',0,17),(38050,1170657,'Senior Campaign Aide',1,18),(38050,1426658,'Lauren, Elise\'s Best Friend',1,19),(72105,13240,'John Bennett',2,0),(72105,18973,'Lori Collins',1,1),(72105,52139,'Ted (voice)',2,2),(72105,74949,'Rex',2,3),(72105,1771,'Donny',2,4),(72105,9657,'Guy',2,5),(72105,59841,'Thomas',2,6),(72105,207150,'Tami-Lynn',1,7),(72105,1204318,'Robert',0,8),(72105,17200,'Frank',2,9),(72105,2387,'Narrator',2,10),(72105,43286,'Tanya',1,11),(72105,1063947,'Young John',0,12),(72105,24357,'John\'s Mom',1,13),(72105,55463,'Tracy',1,14),(72105,15762,'Bellybutton',1,15),(72105,20472,'Herself',0,16),(72105,33321,'Himself',2,17),(72105,17041,'Asian Man \'Ming\'',2,18),(72105,130836,'Alix',2,19),(72105,1181314,'Gina',0,20),(72105,114602,'Michelle',1,21),(72105,1204326,'Greenbaum Kid',0,22),(72105,4139,'Himself',2,23),(72105,1204327,'Heavenly',0,24),(72105,1204328,'Cherene',0,25),(72105,999772,'Angelique',1,26),(72105,1204329,'Sauvignon Blanc',0,27),(72105,10859,'Jared (uncredited)',2,28),(72105,12836,'Ted Danson (uncredited)',2,29),(72105,60286,'John\'s Dad',2,30),(72105,1502852,'Kid #1 / Young Ted\'s Voice',0,31),(72105,1502853,'Kid #2',0,32),(72105,1502854,'Kid #3',0,33),(72105,1502855,'Waitress',0,34),(72105,1502856,'Guy at Table #1',0,35),(72105,1502857,'Guy #1',0,36),(72105,944326,'Partygoer (Ted\'s Buddy)',2,37),(72105,1502858,'Girl at Party',0,38),(72105,180182,'Teenage John',0,39),(72105,1502859,'Plymouth PR Worker',0,40),(72105,1502860,'Club Girl',0,41),(72105,1502861,'Ellen',0,42),(72105,1502862,'Crazy Guy',0,43),(72105,99354,'Waiter',2,44),(72105,1502863,'Newscaster',0,45),(72105,1502864,'Female Newscaster',0,46),(72105,1507448,'Party Guest',0,47),(72105,1259597,'Concert Attendee (uncredited)',1,48),(72105,1593122,'Club Patron (uncredited)',1,49),(109443,23659,'Ron Burgundy',2,0),(109443,4495,'Brick Tamland',2,1),(109443,22226,'Brian Fantana',2,2),(109443,18979,'Veronica Corningstone',1,3),(109443,28638,'Champ Kind',2,4),(109443,11006,'Jack Lime',2,5),(109443,41091,'Chani Lastnamu00e9',1,6),(109443,22122,'Linda Jackson',1,7),(109443,19152,'Freddie Shapp',2,8),(109443,56323,'Entertainment Tonight Reporter',1,9),(109443,205,'El Trousias Maiden of the Clouds',1,10),(109443,3896,'History Channel Host',2,11),(109443,4937,'Wes Mantooth',2,12),(109443,8293,'CBS News Anchor',1,13),(109443,3,'Mack Tannen',2,14),(109443,2888,'ESPN Reporter',2,15),(109443,6730,'BBC News Anchor',2,16),(109443,206,'CBC News Anchor',2,17),(109443,56322,'Entertainment Tonight Host',1,18),(109443,4720,'MTV Host',2,19),(109443,20753,'Ed Harken',2,20),(109443,4764,'ghost of General Thomas J. Stonewall Jackson',2,21),(109443,83873,'Chani\'s Boss',0,22),(109443,1068811,'GNN Director',2,23),(109443,204352,'Narrator',0,24),(109443,1570798,'GNN Assistant (uncredited)',0,25),(109443,1636959,'Sea World Tourist (uncredited)',2,26),(37686,518627,'Joe Lamb',2,0),(37686,18050,'Alice Dainard',1,1),(37686,518628,'Charles Kaznyk',2,2),(37686,3497,'Jackson Lamb',2,3),(37686,456066,'Cary McCarthy',2,4),(37686,12260,'Louis Dainard',2,5),(37686,222122,'Martin Read',2,6),(37686,21089,'Cooper',2,7),(37686,11315,'Nelec',2,8),(37686,113926,'Jen Kaznyk',1,9),(37686,23533,'Preston',2,10),(37686,156689,'Mrs. Kaznyk',1,11),(37686,88950,'Mr. Kaznyk',2,12),(37686,484293,'Peg Kaznyk',1,13),(37686,114674,'Dr. Woodward',2,14),(37686,55755,'Overmyer',2,15),(37686,1115118,'Mr. McCandless',2,16),(37686,147056,'Elizabeth Lamb',1,17),(37686,13024,'Lydia Connors - Ch 14 News Anchor',1,18),(37686,59451,'Donny',2,19),(37686,29934,'Sheriff Pruitt',2,20),(37686,46814,'Edie',1,21),(37686,1078613,'Breen',0,22),(37686,104046,'Mr. Harkin',2,23),(187017,21007,'Schmidt',2,0),(187017,38673,'Jenko',2,1),(187017,54697,'Eric Molson',2,2),(187017,9778,'Captain Dickson',2,3),(187017,17039,'Deputy Chief Hardy',2,4),(187017,53,'Big Meat',2,5),(187017,71403,'Mr. Walters',2,6),(187017,986808,'Benji',0,7),(187017,87295,'Dennis Booker',2,8),(187017,1187106,'Maya',1,9),(187017,1226302,'Brandi',1,10),(187017,1304335,'Rooster',0,11),(187017,1910,'Annie Schmidt',1,12),(187017,141762,'David Schmidt',2,13),(187017,141956,'Dr. Murphy',0,14),(187017,18300,'Scarface',2,15),(187017,996700,'Zack',0,16),(187017,1060081,'Delroy',2,17),(187017,1772,'Anna (30 Jump Street: Flight Academy)',1,18),(187017,19278,'Culinary School Villain',2,19),(187017,10872,'MC State Professor',2,20),(187017,19274,'Morton Schmidt',2,21),(187017,15758,'Mrs. Dickinson',1,22),(187017,61632,'Vietnamese Jesus',2,23),(187017,1594173,'',2,24),(302699,18918,'Bob Stone',2,0),(302699,55638,'Calvin Joyner',2,1),(302699,39388,'Pamela Harris',1,2),(302699,84497,'Phil',2,3),(302699,101060,'Maggie',1,4),(302699,78433,'Steve',2,5),(302699,1419122,'Agent Nick Cooper',2,6),(302699,55615,'Waitress',1,7),(302699,3491,'The Buyer',2,8),(302699,23532,'Trevor',2,9),(302699,55536,'Darla (uncredited)',1,10),(302699,466505,'Jared the Airport Security Guard',2,11),(302699,1358087,'Agent Wally (uncredited)',2,14),(302699,133067,'Thugged Out',2,15),(302699,202930,'Agent Lio',2,16),(302699,27031,'Agent Stan Mitchell',2,17),(302699,1674440,'Bar Patron (uncredited)',2,18),(302699,1360008,'School Teacher (uncredited)',2,19),(302699,132639,'Larry',2,20),(302699,57633,'Handsome Pants-Catcher',0,21),(302699,1729076,'Trevor - 17 Years Old',2,22),(302699,1517535,'Larry (voice) (uncredited)',2,23),(302699,1754478,'Young Robbie',0,24),(302699,1754479,'Lady MC',1,25),(302699,1754480,'Big Bro',0,26),(302699,1754481,'Ethan',0,27),(302699,58741,'Principal Kent',2,28),(302699,1454295,'Randy\'s Husband',0,29),(302699,1285756,'Flunkie',0,30),(302699,1754482,'Flunkie #2',0,31),(302699,1754483,'Driver',0,32),(302699,1754484,'Beautiful Restaurant Woman',0,33),(302699,1754485,'Dashing Restaurant Man',0,34),(302699,1754491,'High School Student (uncredited)',0,35),(302699,1754496,'Reunion Guest (uncredited)',0,36),(302699,1542699,'High School Student (uncredited)',0,37),(302699,1754501,'High School Student (uncredited)',0,38),(274167,23659,'Brad Whitaker',2,0),(274167,13240,'Dusty Mayron',2,1),(274167,1817,'Sara Whitaker',1,2),(274167,19159,'Leo Holt',2,3),(274167,1512021,'Megan Mayron',1,4),(274167,1552636,'Dylan Mayron',2,5),(274167,21127,'Dr. Emilio Francisco',2,6),(274167,500427,'Griff',0,7),(274167,56446,'Roger',2,8),(274167,207606,'Karen Mayron',0,9),(274167,1363621,'Adrianna',1,10),(274167,109708,'Jerry',0,11),(274167,1219121,'Doris',0,12),(274167,1094385,'Marco',2,13),(274167,59843,'The Whip',2,14),(274167,1049830,'Angry Mom',1,15),(274167,81197,'Dental Hygienist',2,16),(274167,1617444,'4th Grade Bully Girl',1,17),(274167,62784,'Instigator Dad',0,18),(274167,1436978,'Panda Singer #1',2,19),(274167,1617453,'Panda Singer #2',2,20),(224141,5064,'Witch',1,0),(224141,5081,'Baker\'s Wife',1,1),(224141,55466,'Baker',2,2),(224141,84223,'Cinderella',1,3),(224141,62064,'Cinderella\'s Prince',2,4),(224141,30364,'Jack\'s Mother',0,5),(224141,11870,'Stepmother',1,6),(224141,85,'Big Bad Wolf',2,7),(224141,1127625,'Little Red Riding Hood',1,8),(224141,1133684,'Jack',2,9),(224141,141034,'Rapunzel\'s Prince',2,10),(224141,1218238,'Rapunzel',0,11),(224141,16859,'Florinda',1,12),(224141,66446,'Lucinda',1,13),(224141,47468,'Giant',1,14),(224141,57461,'Baker\'s Father',2,15),(224141,1198448,'Cinderella\'s Mother',1,16),(224141,55688,'Granny',1,17),(224141,193020,'Steward',0,18),(74465,1892,'Benjamin Mee',2,0),(74465,1245,'Kelly Foster',1,1),(74465,19159,'Duncan Mee',2,2),(74465,74539,'Dylan Mee',2,3),(74465,1046348,'Rosie Mee',1,4),(74465,2464,'Peter MacCready',2,5),(74465,18050,'Lily Miska',1,6),(74465,11663,'Robin Jones',2,7),(74465,8265,'Walter Ferris',2,8),(74465,121953,'Katherine Mee',1,9),(74465,54708,'Rhonda',1,10),(74465,90719,'Shea Seger',1,11),(74465,1428580,'Crystal the Capuchin',0,12),(74465,523952,'Nathan',2,13),(74465,58461,'Principal',2,14),(50646,4495,'Cal Weaver',2,0),(50646,1231,'Emily Weaver',1,1),(50646,30614,'Jacob Palmer',2,2),(50646,54693,'Hannah Weaver',1,3),(50646,3141,'Kate Tafferty',1,4),(50646,4724,'David Lindhagen',2,5),(50646,124644,'Jessica Riley',1,6),(50646,51297,'Robbie Weaver',2,7),(50646,125025,'Molly Weaver',1,8),(50646,79024,'Claire Riley',1,10),(50646,3911,'Bernie Riley',2,11),(50646,51998,'Liz',1,13),(50646,117470,'Richard',2,14),(50646,202952,'Tiffany',1,15),(50646,78430,'Madison',1,16),(50646,128629,'Amy Johnson',1,17),(50646,1225901,'Eric',0,18),(50646,1558966,'Waitress for Cal and Kate',0,19),(50646,1036681,'Taylor',1,20),(50646,210829,'Jordyn',0,21),(50646,1301653,'Megan',0,22),(50646,1031099,'Stephanie',1,23),(50646,1558981,'Heather',0,24),(50646,63661,'Lisa',1,25),(50646,1558982,'Olivia',0,26),(50646,111206,'Danielle',1,28),(50646,1636959,'Student (uncredited)',2,29),(50646,1844707,'Actress (voices)',1,30),(60308,287,'Billy Beane',2,0),(60308,21007,'Peter Brand',2,1),(60308,1233,'Art Howe',2,2),(60308,32,'Sharon',1,3),(60308,73457,'Scott Hatteberg',2,4),(60308,55205,'David Justice',2,5),(60308,84685,'Ron Washington',2,6),(60308,181067,'Grady Fuson',2,7),(60308,16859,'Elizabeth Hatteberg',1,8),(60308,10489,'John Poloni',2,9),(60308,61216,'Pittaro',2,10),(60308,12538,'Matt Keough',2,11),(60308,12797,'Ron Hopkins',2,12),(60308,178466,'Chad Bradford',2,13),(60308,938701,'Jeremy Giambi',2,14),(60308,120890,'Ed Wade',2,15),(60308,31508,'Mark Shapiro',2,16),(60308,220064,'Casey Beane',1,17),(60308,3229,'John Henry',2,18),(60308,1146390,'Young Billy',0,19),(60308,170376,'Billy\'s Dad',2,20),(60308,167519,'Billy\'s Mom',0,21),(60308,33500,'Suzanne',1,22),(60308,1146391,'Mike Magnante',0,23),(60308,119710,'Ricardo Rincon',0,24),(60308,1146392,'Carlos Peu00f1a',0,25),(60308,5953,'Alu00e1n',2,26),(60308,61085,'Reporter',2,27),(60308,123476,'Himself',2,28),(60308,152306,'Voos',0,29),(60308,160042,'Sports Announcer (voice)',2,30),(60308,1214234,'Sports Announcer (voice)',2,31),(60308,146186,'Call-In Radio Host (voice)',2,32),(60308,1323240,'Young Jongewaard',0,33),(60308,1323565,'Sabatini',0,34),(60308,118755,'Coach Parker',0,35),(60308,1532612,'John',0,36),(60308,1114053,'Jermaine Dye',0,37),(60308,963274,'Jim Mercir',0,38),(60308,1503017,'Shapiro\'s Assistant',0,39),(60308,1094471,'Clubhouse Reporter',2,40),(60308,1025909,'PR Guy',2,41),(60308,19444,'Umpire - 1984',0,42),(60308,1213599,'Flight Attendant',1,43),(60308,1190618,'Indians\' Scout (uncredited)',0,44),(60308,1018804,'A\'s Fan (uncredited)',1,45),(60308,1278365,'A\'s Fan (uncredited)',0,46),(60308,1574936,'A\'s Fan (uncredited)',0,47),(60308,1198726,'A\'s Fan (uncredited)',0,48),(60308,1502274,'A\'s Fan (uncredited)',0,49),(60308,1576483,'A\'s Fan (uncredited)',0,50),(60308,1086300,'A\'s Assistant (uncredited)',0,51),(60308,1626920,'A\'s Trainer (uncredited)',2,52),(60308,1487350,'Fan (uncredited)',0,53),(60308,1439921,'Baseball Fan (uncredited)',0,54),(60308,1502257,'Stadium Cameraman (uncredited)',0,55),(60308,1578283,'Jorge Posada (uncredited)',2,56),(60308,1590223,'Flight attendant (uncredited)',1,57),(60308,1588440,'Larry Sutton (uncredited)',2,58),(60308,1375146,'John Maybry (uncredited)',0,59),(60308,1371559,'Hawaiian Pilot (uncredited)',0,60),(60308,1300075,'Airline Pilot (uncredited)',0,61),(60308,122255,'TSA Employee (uncredited)',0,62),(60308,1265833,'Lady at Bar Mitzvah (uncredited)',0,63),(60308,131758,'Little League Player (uncredited)',0,64),(60308,2208,'Tara',1,65),(60308,191883,'Reporter',1,66),(225574,3896,'Bill Marks',2,0),(225574,1231,'Jen Summers',1,1),(225574,59233,'Tom Bowen',2,2),(225574,70904,'Nancy',1,3),(225574,77277,'Zack White',2,4),(225574,74541,'Austin',2,5),(225574,1267329,'Gwen',1,6),(225574,142294,'Kyle Rice',2,7),(225574,3900,'David McMillan',2,8),(225574,74242,'Agent Marenick',2,9),(225574,41309,'Dr. Fahim Nasir',2,10),(225574,56675,'Jack Hammond',2,11),(225574,1009160,'Becca',1,12),(225574,1154054,'Travis Mitchell',2,13),(225574,171886,'Charles Wheeler',2,14),(225574,963117,'Iris Marianne',0,15),(225574,1332493,'Herve Philbert',0,16),(225574,17866,'David Norton',2,17),(225574,1336187,'Emily Norton',0,18),(225574,164396,'Older Women',1,19),(225574,1310853,'Steward',0,20),(225574,1530095,'German Father',0,21),(225574,1530096,'German Son',0,22),(225574,1530097,'Michael Tate',2,23),(225574,1480047,'NY1 Anchor',2,24),(225574,1129795,'NY1 Reporter',0,25),(225574,1447346,'Tilkynna 3 Reporter',0,26),(225574,1530098,'Pundit',0,27),(60304,17604,'Hansel',2,0),(60304,59620,'Gretel',1,1),(60304,10696,'Muriel',1,2),(60304,93564,'Mina',1,3),(60304,51300,'Edward',2,4),(60304,53,'Berringer',2,5),(60304,1142720,'Ben',2,6),(60304,87879,'Horned Witch',1,7),(60304,20494,'Tall Witch',1,8),(60304,908548,'Red Haired Witch',1,9),(60304,102744,'Candy Witch',1,10),(60304,1142724,'Desert Witch',1,11),(60304,47647,'Tracker Jonathan',0,12),(60304,1173431,'Father',0,13),(60304,1192096,'Adrianna',0,14),(60304,147636,'Young Hansel',0,15),(60304,1272984,'Young Gretel',0,16),(60304,1272985,'Deputy',0,17),(60304,550554,'Deputy',2,18),(60304,76920,'Gamekeeper',0,19),(60304,1287263,'Tracker William',2,20),(60304,76919,'Mute Tracker',2,21),(60304,65054,'Bu00fcrgermeister Englemann',2,22),(46529,61363,'John Smith / Number Four',2,0),(46529,18082,'Henri Smith',2,1),(46529,20374,'Number Six / Maren Elizabeth',1,2),(46529,141687,'Sarah Hart',1,3),(46529,236851,'Sam Goode',2,4),(46529,105727,'Mark James',2,5),(46529,79072,'Mogadorian Commander',2,6),(46529,27492,'Mr. Simms',2,7),(46529,211860,'Kevin',0,8),(46529,204679,'Nicole',0,9),(46529,170145,'Sherriff James',2,10),(46529,237162,'Number 3',0,11),(46529,237163,'Number 3\'s Guardian',0,12),(46529,237174,'Receptionist',0,13),(46529,1990,'Frank',0,14),(46529,237178,'Bret',0,15),(46529,1205735,'Girl on Street',0,16),(46529,60287,'Sam\'s Stepdad',2,17),(46529,114608,'Mr. Berhman',0,18),(46529,1205736,'Physics Teacher',0,19),(46529,162828,'Sarah\'s Dad',2,20),(46529,45041,'Sarah\'s Mom',1,21),(46529,1205737,'Sarah\'s Brother',0,22),(46529,27553,'Demented Farmer',2,23),(46529,117525,'Drew',2,24),(46529,1205738,'Kern',0,25),(46529,1205739,'Teen At Party',0,26),(46529,1205740,'MOG Warrior',0,27),(46529,183933,'MOG Warrior',0,28),(46529,1205741,'MOG Warrior',0,29),(46529,1205742,'MOG Warrior',2,30),(46529,550900,'MOG Warrior',0,31),(46529,37010,'MOG Warrior',2,32),(46529,1205743,'MOG Warrior',0,33),(46529,558925,'Tuck (uncredited)',2,34),(46529,650,'Sam\'s Mom (scenes deleted) (uncredited)',1,35),(46529,1205744,'Girl in Car (uncredited)',0,36),(46529,45446,'Supermarket Cashier (uncredited)',1,37),(46529,1205745,'Cheerleader / Party Guest (uncredited)',0,38),(46529,1187502,'High School Student (uncredited)',0,39),(46529,127060,'Carnival Patron (uncredited)',0,40),(46529,1205746,'Friend (uncredited)',1,41),(46529,1205747,'Sheriff Deputy (uncredited)',0,42),(46529,1205748,'Student / Party Boy (uncredited)',0,43),(46529,1205749,'Neighbor (uncredited)',0,44),(46529,106147,'News Reporter (uncredited)',1,45),(46529,1205750,'Girl in Classroom (uncredited)',0,46),(46529,1205751,'Carnival Patron (uncredited)',0,47),(46529,1205752,'Teen #1 (uncredited)',0,48),(300671,18473,'Tyrone \'Rone\' Woods',2,0),(300671,17697,'Jack Silva',2,1),(300671,94864,'Mark \'Oz\' Geist',2,2),(300671,59254,'Kris \'Tanto\' Paronto',2,3),(300671,10881,'Glen \'Bub\' Doherty',2,4),(300671,154784,'John \'Tig\' Tiegen',2,5),(300671,28414,'Chris Stevens',2,6),(300671,62562,'Dave \'Boon\' Benton',2,7),(300671,37645,'Sona Jillani',1,8),(300671,234934,'Brit Vayner',2,9),(300671,82167,'Bob',0,10),(300671,559566,'Amahl',2,11),(300671,206757,'DS Scott Wickland',2,12),(300671,202892,'DS Agent Dave Ubben',2,13),(300671,84298,'Sean Smith',0,14),(300671,931771,'DS Alec',0,15),(300671,205772,'Becky Silva',0,16),(300671,1485708,'Emily Silva',1,17),(300671,1651362,'Beverly Silva',0,18),(300671,1195183,'Azaan',2,19),(300671,1493722,'CIA Agent',1,20),(300671,1493723,'Actress',1,21),(300671,1493724,'Chief\'s Assistant',1,22),(300671,1493725,'Viper',2,23),(300671,1493726,'Delta 1',2,24),(300671,1436354,'Delta Operator',0,25),(300671,1759548,'Defence Attachu00e9',0,26),(300671,1759549,'CIA Annex Cook',0,27),(300671,1759550,'CIA Agent',0,28),(300671,1513916,'DS Vincent',0,29),(300671,570207,'DS Wesley',0,30),(300671,121546,'Fahreed',2,31),(300671,1749000,'Hesham',0,32),(228326,8688,'Manolo (voice)',2,0),(228326,38673,'Joaquin (voice)',2,1),(228326,8691,'Maria (voice)',1,2),(228326,18979,'Mary Beth (voice)',1,3),(228326,239574,'Chato (voice)',0,4),(228326,11159,'Pancho Rodriguez (voice)',2,5),(228326,86498,'Pepe Rodriguez (voice)',2,6),(228326,2372,'Xibalba (voice)',2,7),(228326,36628,'La Muerte (voice)',1,8),(228326,57409,'Carmen Su00e1nchez (voice)',1,9),(228326,933835,'Adelita / Nina (voice)',1,10),(228326,1422233,'Chakal (voice)',0,12),(228326,9778,'Candle Maker (voice)',2,13),(228326,1210,'Carlos Sanchez (voice)',2,14),(228326,11160,'Skeleton Luis (voice)',2,15),(228326,59784,'General Posada / Dali / Chuy (voice)',2,16),(228326,1468611,'Young Manolo (voice)',0,17),(228326,1468612,'Young Joaquin',0,18),(228326,1436912,'Young Maria (voice)',0,19),(228326,77886,'Skeleton Jorge (voice)',2,20),(228326,15761,'Grandmother (voice) (as Grey Griffin)',1,21),(228326,1162472,'Goth Kid / Orphan',2,23),(228326,30488,'Land of the Remembered Captain (voice)',2,24),(228326,1506865,'Goya / Dali (voice)',0,25),(228326,1506866,'Pablo Rodriguez (voice)',0,26),(228326,1506867,'Sanjay',0,27),(228326,1265056,'Skeleton Carmelo (voice)',0,28),(228326,1830528,'',1,29),(71552,21593,'Jim Levenstein',2,0),(71552,21595,'Michelle Flaherty-Levenstein',1,1),(71552,57599,'Steve Stifler',2,2),(71552,21594,'Chris \'Oz\' Ostreicher',2,3),(71552,21403,'Kevin Myers',2,4),(71552,1234,'Victoria \'Vicky\' Lathum',1,5),(71552,8211,'Heather',1,6),(71552,52480,'Paul Finch',2,7),(71552,68842,'John',2,8),(71552,38334,'Stifler\'s Mom',1,9),(71552,26510,'Jim\'s Father',2,10),(71552,10871,'Jessica',1,11),(71552,37046,'Selena',1,12),(71552,74618,'Mia',1,13),(71552,496731,'Kara',1,14),(71552,21596,'Nadia',1,15),(71552,26999,'Chuck Sherman',2,16),(71552,88507,'Justin',2,17),(71552,41686,'Celebrity Dance-Off Host',2,18),(71552,54586,'Jim\'s Mother',1,19),(71552,28412,'Finch\'s Mother',1,20),(71552,1684351,'Kyle',0,21),(216282,30315,'Gary Morris',2,0),(216282,86468,'Allison',1,1),(216282,59841,'Pete',2,2),(216282,212913,'Trey',2,3),(216282,1129464,'Kaitlyn',1,4),(216282,65838,'Jacob',2,5),(216282,54850,'Donk',2,6),(216282,1360027,'Todd White',0,7),(216282,75566,'Donnie',2,8),(216282,78432,'Daryl',2,9),(216282,92508,'Lucas',0,10),(216282,1226531,'Reevis',0,11),(216282,42317,'Principal Thomas Walker',2,12),(216282,1394781,'Chester',0,13),(216282,1394785,'Studious Male',0,14),(216282,1394788,'Linda',1,15),(216282,1394794,'Grace',0,16),(216282,1394795,'Ms. McGee',1,17),(216282,83401,'Road Worker',0,18),(216282,1395039,'Teacher (Mrs. Blasky)',0,19),(216282,1395045,'Cheerleader',1,20),(216282,1395050,'Volunteer Fireman',0,21),(216282,1395054,'Billy',0,22),(216282,1395056,'Marcia',1,23),(216282,1228464,'Himself',0,24),(216282,1395060,'Himself',0,25),(216282,1395063,'Weather Anchor',0,26),(216282,1395064,'News Anchor',0,27),(216282,1395066,'Preacher',0,28),(216282,1395067,'Crying Woman',1,29),(216282,1395068,'David Brody',0,30),(216282,1395069,'Jenny',1,31),(216282,204261,'Fireman',0,32),(216282,1283942,'Sister of Graduate',1,33),(216282,6107,'Sheila O\'Neil',1,34),(216282,1123015,'Teacher',0,35),(216282,1364762,'Friend / Family',0,36),(216282,1658051,'Graduating High School Student',1,37),(216282,1718798,'Nerd',0,38),(216282,1793221,'Teacher',0,39),(216282,1736008,'Townsperson',0,40),(216282,1764385,'Road Worker',0,41),(216282,1738415,'Cell Phone Guy',0,42),(216282,146414,'Tornado Survivor',0,43),(216282,1292628,'Brother of Graduate',0,44),(216282,1793224,'Tornado Survivor',1,45),(216282,1759786,'Graduation Parent',1,46),(216282,1793226,'Parent / Rescued Townsperson',1,47),(216282,1114803,'Teacher / Fire Chief',2,48),(216282,1283941,'Townsperson',0,49),(216282,1793227,'Student',0,50),(216282,1283946,'Tornado Survivor',1,51),(216282,1739855,'Tornado Survivor',0,52),(216282,1739245,'Townsperson',0,53),(216282,1291142,'Townsperson',1,54),(216282,1736433,'Teacher',0,55),(216282,1793228,'High School Student',1,56),(216282,1736437,'High School Student',0,57),(216282,150665,'Townsperson',0,58),(216282,1739267,'Student',0,59),(216282,1390508,'Bus Passenger',0,60),(216282,1793229,'Graduating High School Student',1,61),(216282,1793262,'Townsperson',0,62),(216282,1740123,'Sister of Graduate',1,63),(216282,1649258,'Teacher',0,64),(216282,1793263,'Parent of Graduate',1,65),(216282,1793264,'High School Student',1,66),(216282,1793265,'Graduation Attendee / Rescued Tonwsperson',1,67),(216282,935715,'Friend',0,68),(216282,1738227,'Parent',1,69),(216282,1758052,'Graduating Student',0,70),(216282,1793269,'Graduation Attendee',0,71),(216282,1793270,'High School Student',1,72),(216282,1793274,'Parent of Graduate',0,73),(216282,1738386,'Teacher',0,74),(216282,1793278,'Graduating Student',0,75),(216282,1758056,'Townsperson',1,76),(216282,1793284,'High School Student',1,77),(216282,1469369,'Graduation Attendee',1,78),(216282,1747278,'Townsperson',0,79),(216282,146423,'Parent / Townsperson',0,80),(216282,935714,'Graduation Attendee',0,81),(216282,1793290,'Townsperson',0,82),(216282,1793291,'High School Student',0,83),(216282,1793292,'Teacher',0,84),(216282,1793294,'Townsperson',1,85),(216282,1793296,'Student',0,86),(216282,1736524,'High School Student',0,87),(216282,1083168,'Tornado Survivor',1,88),(216282,1793298,'High School Student',1,89),(216282,1739812,'Townsperson',0,90),(216282,1793302,'High School Student',0,91),(216282,1793303,'Parent',0,92),(216282,1793306,'Injured Parent',0,93),(216282,1739816,'High School Student',1,94),(216282,1793310,'Parent',1,95),(216282,1791726,'Farmer',0,96),(216282,1883861,'Stunts',0,97),(205587,3087,'Judge Joseph \'Joe\' Palmer',2,0),(205587,3223,'Henry \'Hank\' Palmer',2,1),(205587,21657,'Samantha \'Sam\' Powell',1,2),(205587,7132,'Glen Palmer',2,3),(205587,239271,'Dale Palmer',2,4),(205587,879,'Dwight Dickham',2,5),(205587,81217,'Lisa Palmer',1,6),(205587,38582,'Mike Kattan',2,7),(205587,1272862,'Lauren Palmer',0,8),(205587,18328,'Judge Warren',2,9),(205587,85825,'Carla Powell',1,10),(205587,9296,'Deputy Hanson',2,11),(205587,6465,'Mrs. Blackwell',1,12),(205587,51298,'C.P. Kennedy',2,13),(205587,81681,'Doc Morris',2,14),(205587,1348957,'Eric Palmer',2,15),(38579,887,'Marmaduke (voice)',2,0),(38579,54693,'Mazie (voice)',1,1),(38579,41798,'Carlos (voice)',2,2),(38579,54691,'Giuseppe (voice)',2,3),(38579,4581,'Raisin (voice)',2,4),(38579,20497,'Jezebel (voice)',1,5),(38579,2628,'Bosco (voice)',2,6),(38579,87822,'Thunder (voice)',2,7),(38579,9562,'Lightning (voice)',2,8),(38579,16431,'Chupadogra (voice)',2,9),(38579,72095,'Phil Winslow',2,10),(38579,20750,'Debbie Winslow',1,11),(38579,1252312,'Barbara Winslow',1,12),(38579,965819,'Brian Winslow',2,13),(38579,3905,'Don Twombly',2,14),(38579,80536,'Anton Harrison',2,15),(38579,1413795,'Bodie',0,16),(38579,120794,'Drama Trainer',0,17),(44603,1892,'George Lonegan',2,0),(44603,18997,'Melanie',1,1),(44603,142365,'Markus/Jason',2,2),(44603,83813,'Didier',2,3),(44603,142359,'Island Hotel Clerk',0,4),(44603,142360,'Stall Owner',0,5),(44603,142361,'Island Girl',0,6),(44603,142362,'Rescuer',0,7),(44603,142363,'Rescuer',0,8),(44603,8397,'Photographer',2,9),(44603,142364,'Markus/Jason',2,10),(44603,8442,'Jackie',1,11),(44603,78334,'Social Worker',1,12),(44603,17522,'Marie Lelay',1,13),(44603,12217,'Billy',2,14),(44603,21125,'Christos',2,15),(44603,1377840,'Marcus\' Teacher',0,16),(44603,1363086,'Teenager',2,17),(44603,174745,'Foster Mother',0,18),(44603,82712,'Foster Father',2,19),(44603,1246784,'College Receptionist',2,20),(44603,40670,'Nigel',0,21),(44603,4573,'Mrs. Joyce',1,22),(44603,937,'Derek Jacobi',2,23),(44603,1326234,'Bearded Author',0,24),(44603,25282,'Dr. Rousseau',1,25),(72710,36592,'Melanie Stryder / Wanda',1,0),(72710,9824,'The Seeker / Lacey',1,1),(72710,105727,'Ian O\'Shea',2,2),(72710,227,'Jeb Stryder',2,3),(72710,3713,'Maggie Stryder',1,4),(72710,232396,'Jared Howe',2,5),(72710,77334,'Jamie Stryder',2,6),(72710,467645,'Kyle O\'Shea',2,7),(72710,936403,'Seeker Reed',0,8),(72710,70456,'Wanda',1,9),(72710,35198,'Soul Fleur',1,10),(72710,1273231,'Soul Anshu',0,11),(72710,1273232,'Soul Winters',0,12),(72710,1273233,'Soul Lake',0,13),(72710,1273234,'Soul Nafisa',0,14),(72710,1181296,'Seeker Song',0,15),(72710,1273235,'Seeker Sands',0,16),(72710,1273236,'Seeker Wolfe',0,17),(72710,92058,'Seeker Waverley',0,18),(72710,16460,'Healer Fords',2,19),(72710,129868,'Trevor Stryder',2,20),(72710,1273237,'Soul Raines',0,21),(72710,1273238,'Seeker Pavo',0,22),(72710,1273239,'Brandt',0,23),(72710,42317,'Doc',2,24),(72710,176491,'Wes',0,25),(72710,1123886,'Lily',0,26),(72710,1112417,'Seeker Hawke',0,27),(72710,79211,'Seeker Summers',0,29),(72710,1273240,'Soul Pearle',0,30),(72710,946356,'Healer Skye',1,31),(72710,1049735,'Seeker Nova',0,32),(72710,558466,'Seeker Burns',2,33),(72710,71913,'Nate',2,34),(72710,1369033,'Seeker Dawn',0,35),(72710,1566669,'Seeker Zephyr',0,36),(316152,10297,'Newton Knight',2,1),(316152,1216606,'Rachel',1,2),(316152,932967,'Moses Washington',2,3),(316152,41292,'Serena Knight',1,4),(316152,1171570,'Daniel',2,5),(316152,144160,'Sumrall',2,6),(316152,1126405,'Lieutenant Barbour',2,7),(316152,1078610,'Miss Ellie',0,8),(316152,68180,'Prosecuting Attorney',2,9),(316152,1173099,'Jasper',2,10),(316152,141762,'Amos Deason',2,11),(316152,60875,'Quitman',2,12),(316152,1377677,'Injured Soldier',0,13),(316152,1440568,'Confederate Color Guard',0,14),(316152,1371236,'Freedman 1',0,15),(316152,570775,'Matthew Yates',2,16),(316152,1049830,'Mary',1,17),(316152,1215663,'Annie',0,18),(316152,1514475,'Confederate Soldier',0,19),(316152,1344349,'Junie Lee',0,20),(316152,1327175,'Polling Station Clerk',2,21),(316152,1542730,'Schoolgirl',0,22),(316152,112285,'Chester',2,23),(316152,94428,'Mrs. Deason',1,24),(316152,31528,'Col. Robert Lowry',0,25),(316152,206624,'Farmer 1',2,26),(316152,1542731,'Town Folk',0,27),(316152,1410428,'Sergeant',0,28),(316152,52885,'Third Man',2,29),(316152,931104,'Stillman Coleman',0,30),(316152,196843,'Aunt Sally',1,31),(316152,1295668,'Col. McLemore',2,32),(316152,93182,'Old Man',0,33),(316152,1212192,'Lt. Barbour',0,34),(316152,1498700,'First Man',2,35),(316152,1411644,'Edward James - Cotton Field Worker',0,36),(316152,1502947,'Boy at Alice Hotel',2,37),(316152,58942,'Farmer 2',2,38),(241554,3896,'Jimmy Conlon',2,0),(241554,228,'Shawn Maguire',2,1),(241554,92404,'Mike Conlon',2,2),(241554,467645,'Danny Maguire',2,3),(241554,14888,'Pat Mullen',2,4),(241554,589162,'Gabrielle',1,5),(241554,7132,'Detective Harding',2,6),(241554,2207,'Margaret Conlon',1,7),(241554,4238,'Mr. Price',0,8),(241554,1078613,'Kenan Boyle',0,9),(241554,23627,'Shawn\'s Wife',1,10),(241554,225629,'Brendan',0,11),(241554,104482,'Detective Jose Flores',2,12),(241554,230400,'Victor Grezda',2,13),(241554,1495238,'Samir',0,14),(241554,7497,'Frank',2,15),(241554,57997,'Colston',2,16),(241554,206398,'Tommy',2,17),(38319,62862,'Thadeous',2,0),(38319,17051,'Fabious',2,1),(38319,524,'Isabel',1,2),(38319,11664,'Belladonna',1,3),(38319,15009,'Leezar',2,4),(38319,13014,'Julie',2,5),(38319,20186,'Boremont',2,6),(38319,205725,'Courtney',2,7),(38319,114253,'Manious the Bold',2,8),(38319,58758,'Thundarian',2,9),(38319,4391,'King Tallious',2,10),(38319,82142,'Royal Advisor',0,11),(38319,17479,'Mother',1,12),(38319,37440,'Mother',1,13),(38319,189320,'Mother',0,14),(38319,61981,'The Giant Troll',2,15),(38319,1121198,'Maiden',1,16),(38319,1121199,'Marteetee',0,17),(38319,63474,'Narrator / Soul of the Maze',2,18),(38319,1121200,'Forest Woman',0,19),(38319,1121201,'Forest Woman',0,20),(38319,1121202,'Forest Woman',0,21),(38319,1121203,'Regina',0,22),(38319,12359,'Minotaur',2,23),(38319,1121204,'Daronius the Swift',0,24),(38319,1121205,'Handmaiden',0,25),(38319,7031,'Warlock',2,26),(69668,8784,'Will Atenton',2,0),(69668,3489,'Ann Patterson',1,1),(69668,3293,'Libby Atenton',1,2),(69668,20982,'Jack Patterson',2,3),(69668,13550,'Boyce',2,4),(69668,967376,'Trish',1,5),(69668,973135,'Dee Dee',1,6),(69668,1001947,'Chloe Patterson',0,7),(69668,13724,'Dr. Greeley',1,8),(69668,56618,'Dr. Medlin',1,9),(69668,71821,'Heather Keeler',0,10),(69668,190895,'Cindi',1,11),(69668,20814,'Artie',2,12),(69668,5922,'Officer Nelson',2,14),(69668,1228293,'Capt. Conklin',0,15),(69668,5921,'Tommy',2,16),(69668,34917,'Sadie',1,17),(69668,23534,'Tony Ferguson',2,18),(69668,1877716,'Young Author',1,19),(69668,86237,'Martin',2,20),(38363,3489,'Valerie Plame',1,0),(38363,2228,'Joseph Wilson',2,1),(38363,15232,'Fred',2,2),(38363,31649,'Diana',1,3),(38363,14888,'Jim Pavitt',2,4),(38363,86884,'Hafiz',2,5),(38363,14984,'Sue',1,6),(38363,52020,'Steve',2,7),(38363,80278,'Lisa',0,8),(38363,17867,'Jeff',0,9),(38363,142189,'Trevor Wilson',0,10),(38363,50402,'CIA Tour Leader',2,11),(38363,1074512,'Samantha Wilson',1,12),(38363,50217,'Jack',2,13),(38363,11315,'Bill',2,14),(38363,62562,'Dave',2,15),(38363,1348213,'Right Wing Reporter',0,16),(38363,1879749,'Cathie Martin',0,17),(109491,71375,'Ethan Wate',2,0),(109491,587823,'Lena Duchannes',0,1),(109491,16940,'Macon Ravenwood',0,2),(109491,19492,'Amma Treadeau',1,3),(109491,4730,'Ridley Duchaness',1,4),(109491,1142720,'Wesley Link Lincoln',2,5),(109491,7056,'Mrs. Lincoln / Sarafine Duchannes',1,6),(109491,20300,'Emmaline Duchannes',1,7),(109491,452,'Delphine Duchannes',1,8),(109491,1059597,'Emily Asher',1,9),(109491,1074676,'Savannah Snow',0,10),(109491,993774,'Genevieve Duchannes',1,11),(109491,59219,'Larkin Ravenwood',0,12),(109491,3201,'Mr. Lee',2,13),(109491,1495340,'Mrs. Hester',1,14),(109491,1495342,'Reverend Stephens',2,15),(109491,101847,'Mayor Snow',2,16),(109491,1485328,'Principal Herbert',1,17),(109491,979103,'Ethan Carter Wate',2,18),(109491,1354257,'Mrs. Asher',0,19),(109491,1393332,'Mrs. Snow',1,20),(109491,1495343,'Union Captain',2,21),(109491,1495344,'Union Soldier',2,22),(109491,1495345,'Train Teen',2,23),(109491,1347310,'Isobel Duchannes (uncredited)',1,24),(109491,1049795,'Katherine Duchannes (uncredited)',1,25),(109491,1393522,'Althea Duchannes (uncredited)',1,26),(109491,555652,'Juliette Duchannes (uncredited)',1,27),(109491,84227,'Justine Duchannes (uncredited)',1,28),(109491,565501,'Charlotte Duchannes (uncredited)',1,29),(109491,1198988,'Duchanness (uncredited)',1,30),(109491,1682509,'Billy (uncredited)',2,31),(109491,129868,'Mitchell Wate (uncredited)',2,32),(109491,946356,'Lila Wate (uncredited)',1,33),(109491,1682510,'Leopard Lady (uncredited)',1,34),(109491,1205902,'Suttler (uncredited)',2,35),(109491,1682511,'Castor (uncredited)',2,36),(109491,1485332,'Caster (uncredited)',1,37),(109491,1682512,'Town Resident (uncredited)',1,38),(109491,1045389,'Caster Shades (uncredited)',2,39),(109491,565503,'Little Ninja (uncredited)',0,40),(109491,186922,'Deputy Sheriff (uncredited)',0,41),(109491,1682514,'Townsfolk (uncredited)',2,42),(109491,1682515,'Confederate Soldier (uncredited)',2,43),(109491,1292482,'Spectator (uncredited)',0,44),(109491,1438305,'Gatlin Dad (uncredited)',2,45),(109491,1011212,'Town Resident (uncredited)',2,46),(329833,7399,'Derek Zoolander',2,0),(329833,887,'Hansel',2,1),(329833,23659,'Mugatu',2,2),(329833,955,'Montana Grosso',1,3),(329833,41091,'Alexanya Atoz',1,4),(329833,61110,'VIP',2,5),(329833,1180698,'Don Atari',2,6),(329833,63,'Katinka',1,7),(329833,15286,'Matilda Jeffries',1,8),(329833,15009,'Evil DJ',2,9),(329833,203809,'Todd',0,10),(329833,1493218,'Derek Jr.',0,11),(329833,1954,'',2,12),(329833,1406450,'Agent Flippo',0,13),(329833,982,'',0,14),(329833,71580,'All',2,15),(329833,1180696,'Geoff Mille',2,16),(329833,26042,'Maury Ballstein',2,17),(329833,81364,'\'Old and Lame\' Show Attendee',1,18),(329833,4720,'',2,19),(329833,150810,'Himself',2,20),(329833,1255247,'Hot Shepherdess',1,21),(329833,212225,'Kim Kardashian',1,22),(329833,226001,'Latex BDSM',1,23),(329833,77069,'Lenny Kravitz',2,24),(329833,85138,'Demi Lovato',1,25),(329833,2628,'',2,26),(329833,111455,'',0,27),(329833,6949,'Chazz Spencer',2,28),(329833,85757,'',0,29),(329833,77069,'',2,30),(329833,89815,'',0,31),(329833,56367,'',1,32),(329833,550307,'',2,33),(329833,533007,'',1,34),(329833,216294,'\'Old and Lame\' Show Attendee',2,35),(329833,930058,'',0,36),(329833,77068,'',0,37),(329833,1372421,'',0,38),(329833,4038,'Susan Sarandon',1,39),(329833,28846,'Adam',2,40),(329833,471898,'Warden',2,41),(329833,8261,'Himself',2,42),(329833,110014,'Seductress',1,43),(329833,43120,'Don Atari\'s Posse',2,44),(329833,1521445,'A$AP Rocky',0,45),(329833,1431087,'Natalka',0,46),(329833,590424,'\'Old and Lame\' Show Attendee',1,47),(329833,1224964,'Hairdresser',0,48),(329833,1358636,'\'Old and Lame\' Show DJ',0,49),(329833,1053305,'',0,50),(329833,1397086,'Eve',1,51),(329833,1686427,'',0,52),(329833,1572253,'',0,53),(329833,166658,'',1,54),(329833,1686428,'',0,55),(329833,1220599,'',0,56),(329833,118752,'',1,57),(329833,1104733,'',0,58),(329833,1395060,'',0,59),(329833,141525,'',2,60),(329833,43120,'',2,61),(329833,26046,'Mom Tourist',1,62),(329833,1578406,'Girl Tourist',1,63),(329833,1548295,'Police Officer',0,64),(329833,1758921,'4 Year Old Derek Jr.',0,65),(329833,1758923,'Nubian Princess',0,66),(329833,74540,'Wise Village Man',2,67),(329833,1254271,'Maori Warrior',0,68),(329833,1758926,'Sumo Wrestler',0,69),(329833,491911,'Chimney Sweep',0,70),(329833,1758927,'Hot Milkmaid',1,71),(329833,1758928,'Elfin Huntress',1,72),(329833,1758930,'Paparazzo',0,73),(329833,81510,'Paparazzo',0,74),(329833,1758932,'Don Atari\'s Posse',0,75),(329833,1758933,'Don Atari\'s Posse',0,76),(329833,1758934,'Don Atari\'s Posse',0,77),(329833,1758935,'Don Atari\'s Posse',0,78),(329833,1758936,'Don Atari\'s Posse',0,79),(329833,1758937,'Don Atari\'s Posse',0,80),(329833,1758938,'Don Atari\'s Posse',0,81),(329833,1758939,'Don Atari\'s Posse',0,82),(329833,1758940,'Don Atari\'s Posse',0,83),(329833,1758941,'Don Atari\'s Posse',0,84),(329833,1758943,'\'Old and Lame\' Show Attendee',0,85),(329833,1758945,'\'Old and Lame\' Show Attendee',0,86),(329833,85757,'\'Old and Lame\' Show Attendee',0,87),(329833,1758946,'\'Old and Lame\' Show Attendee',1,88),(329833,1366924,'\'Old and Lame Show\' Attendee',1,89),(329833,95022,'\'Old and Lame\' Show Attendee',1,90),(329833,1498184,'\'Old and Lame\' Show Attendee',1,91),(329833,142213,'\'Old and Lame\' Show Attendee',1,92),(329833,1758958,'Alexanya\'s Bodyguard',0,93),(329833,1758959,'Alexanya\'s Bodyguard',0,94),(329833,1514083,'Alexanya\'s Publicist',1,95),(329833,1758961,'Fabrizio',0,96),(329833,1758962,'Sexy Twin',1,97),(329833,1758963,'Sexy Twin',1,98),(329833,1758964,'Mysterious Snake Woman',1,99),(329833,110902,'Hasidic Man',2,100),(329833,1758965,'Circus Strong Man',0,101),(329833,1142305,'Babushka',1,102),(329833,1758976,'Former Male Model Prison Guard',0,103),(329833,1758977,'Former Male Model Prison Guard',0,104),(329833,1758982,'Fashionista',1,105),(329833,1758990,'Fashion Designer',0,106),(329833,1526122,'Fashion Media',2,107),(329833,1204167,'Gondolier',0,108),(329833,1758992,'Fashion Photographer',0,109),(329833,1634622,'Fashionista',1,110),(329833,1758994,'Model',1,111),(329833,1748085,'Model',1,112),(329833,172178,'British Newscaster',0,113),(329833,1689868,'Waiter',0,114),(329833,1759003,'Priest at Shop Window',0,115),(329833,1465304,'Fashionista',1,116),(329833,1759007,'Fashion Media',0,117),(329833,1265868,'Fashionista',0,118),(329833,1457224,'Fashion Editor',1,119),(329833,1759008,'Fashion Show Attendee',0,120),(329833,1680898,'Gleek',0,121),(329833,1759009,'Fashion Model',1,122),(329833,1176558,'Hipster Salesperson',1,123),(47327,2963,'Milton',2,0),(47327,55085,'Piper',1,1),(47327,886,'Accountant',2,2),(47327,21029,'Jonah King',2,3),(47327,52,'Webster',2,4),(47327,59450,'Norma Jean',1,5),(47327,82622,'Candy',1,6),(47327,85178,'Mona',1,7),(47327,61117,'Frank',2,8),(47327,10489,'Fat Lou',2,9),(47327,11784,'Cap',2,10),(47327,550117,'American Indian Mother',0,11),(47327,112286,'Rookie',2,12),(47327,138611,'Guy with Camera Phone',0,13),(47327,1391321,'Latino Busboy',0,14),(47327,6908,'Sarge',2,15),(47327,3201,'Roy',2,16),(47327,204833,'Uniformed Officer',0,17),(47327,1391322,'Babysitter',0,18),(47327,1253910,'Trooper #1',0,19),(47327,1391323,'Trooper #2',0,20),(47327,138613,'Teen #1',2,21),(47327,1391324,'Teen #2',0,22),(47327,1363398,'TV Male News Reporter #1',0,23),(47327,1391325,'TV Female News Reporter #2',0,24),(47327,1391326,'Milton\'s Daughter (Older)',0,25),(47327,90041,'Fucking Driver',2,26),(47327,84760,'Fucking Middle',2,27),(47327,141762,'Fucking Passenger',2,28),(47327,1391327,'Cultist with Iron Pipe',0,29),(47327,1132300,'Cultist with Sickle',2,30),(47327,1391328,'Cultist with Machete',0,31),(47327,1271752,'Cultist with Hatchet',0,32),(47327,23285,'Cowboy with Cattle Prod',2,33),(47327,200402,'Cultist with Sledge',2,34),(47327,1170659,'Man in Leather Jacket',2,35),(47327,557448,'Man with Wig',0,36),(47327,1391329,'Burly Dude',0,37),(47327,20582,'Tattooed Guy',2,38),(47327,1391330,'Business Woman',0,39),(47327,24969,'Thin Old Man',2,40),(47327,1167492,'Lady in Leopard Skin',1,41),(47327,1391331,'Truck Driving Woman',0,42),(47327,1391332,'Bar Patron',0,43),(47327,1391333,'American Indian Dad',0,44),(47327,1391334,'Laughing Cowgirl',0,45),(47327,1391335,'Resturant Patron',0,46),(47327,1391337,'Bar Patron',0,47),(47327,1391338,'Restaurant Patron',0,48),(47327,1133579,'Milton\'s Daughter - Younger',0,49),(47327,1391339,'Highway Patrol',0,50),(96724,116,'Anna Karenina',1,0),(96724,9642,'Alexei Karenin',2,1),(96724,27428,'Alexei Vronsky',2,2),(96724,9015,'Dolly Oblonskaya',1,3),(96724,15576,'Stiva Oblonsky',2,4),(96724,93210,'Kostya Levin',2,5),(96724,47720,'Betsy Tverskaya',1,6),(96724,227454,'Kitty Shcherbatskaya',1,7),(96724,11616,'Countess Vronskaya',1,8),(96724,1639,'Lidia Ivanovna',0,9),(96724,70904,'Princess Myagkaya',1,10),(96724,147041,'Alexander Vronsky',0,11),(96724,1289968,'Princess Sorokina',1,12),(96724,1252934,'Princess Merkalova',0,13),(96724,302165,'The Baroness',1,14),(96724,586286,'Varya Vronskaya',1,15),(96724,137905,'Makhotin',2,16),(96724,237020,'Countess Nordston',1,17),(96724,73287,'Nikolai Levin',0,18),(96724,87297,'Masha Nikolaevna',0,19),(96724,997569,'Prince Tverskoy',0,20),(96724,19123,'Princess Shcherbatsky',1,21),(96724,36666,'Prince Alexander Shcherbatsky',2,22),(96724,83814,'Theodore Katavasov',2,23),(96724,224192,'Yashvin',0,24),(96724,513677,'Burisov',2,25),(96724,214019,'Vasily Lukich',0,26),(96724,1135127,'Serhoza Karenin',2,27),(96724,1347005,'Aruhan',0,28),(96724,1561789,'Annushka',0,29),(96724,1390505,'Yegorushka Korsunsky',0,30),(96724,1428460,'Petritsky',2,31),(96724,86048,'Agafia Mikhailovna',0,32),(96724,1795832,'Mlle. Roland',0,33),(96724,29412,'Matvey',0,34),(96724,1470867,'Mikhail Slyudin',0,35),(96724,1235855,'Camerdiner Kapitonich',0,36),(96724,1795833,'Tuskevitch',0,37),(96724,1242809,'Colonel Demin',2,38),(96724,1411355,'Stremov',0,39),(96724,81269,'Boris',2,40),(96724,1795827,'Grisha Oblonsky',0,41),(96724,1795828,'Lili Oblonsky',0,42),(96724,1795829,'Masha Oblonsky',0,43),(96724,1795830,'Tanya Oblonsky',0,44),(96724,1795831,'Vasya Oblonsky',0,45),(96724,1795834,'Princess Sorokina Senior',0,46),(96724,203575,'Opera House Husband',0,47),(96724,1834,'Opera House Wife',1,48),(96724,1563431,'Doorkeeper',0,49),(96724,206726,'Stationmaster',2,50),(96724,1010135,'Austrian Prince',2,51),(96724,148139,'Girl Harvesting (uncredited)',1,52),(96724,1536116,'Gallery Guest (uncredited)',0,53),(198184,82191,'Chappie',2,0),(198184,76788,'Deon Wilson',2,1),(198184,985041,'Ninja',0,2),(198184,985040,'Yo-Landi',1,3),(198184,20191,'Yankie (Amerika)',0,4),(198184,6968,'Vincent Moore',2,5),(198184,10205,'Michelle Bradley',1,6),(198184,1029029,'Hippo',0,7),(198184,1467496,'Pitbull',2,8),(198184,1217309,'Anderson Cooper',0,9),(198184,1484650,'Police Chief',0,10),(198184,82193,'Tetravaal Lead Mechanic',2,11),(198184,146751,'CNN Reporter',2,12),(198184,198615,'Journalist',2,13),(198184,158473,'Professor',0,14),(198184,82190,'The Procurement Officer',2,15),(198184,1198931,'King',0,16),(198184,1502368,'Gang Member',0,17),(198184,1502369,'Gang Member',0,18),(198184,1502370,'Gang Member',0,19),(198184,1502371,'Gang Member',0,20),(198184,1502372,'Gang Member',0,21),(198184,1503821,'Mercedes Benz Driver',0,22),(198184,1503822,'BMW Driver',0,23),(198184,1503823,'Nissan Driver',0,24),(198184,1503824,'Field Reporter',0,25),(198184,1503825,'Field Reporter',0,26),(198184,1503826,'Police Officer',0,27),(198184,203421,'Police Officer',2,28),(198184,52283,'Police Robot (voice)',2,29),(198184,1503827,'Hippo\'s Thug',0,30),(198184,1503828,'Tetravaal Mechanic',0,31),(198184,205184,'Armored Truck Guard',0,32),(198184,1503829,'VSN News Desk Reporter',0,33),(198184,1503830,'VSN News Desk Reporter',0,34),(198184,574092,'Gun Store Owner',2,35),(198184,1155544,'Tetravaal Office Assistant',0,36),(198184,1503831,'Special Forces Soldier',0,37),(198184,548491,'Merc',2,38),(198184,1503832,'Merc',0,39),(198184,116972,'Tech (uncredited)',2,40),(198184,137971,'Psychologist (uncredited)',1,41),(198184,1448802,'Office Worker (uncredited)',0,42),(198184,1459819,'Police Officer (uncredited)',0,43),(198184,110476,'Hacker (uncredited)',0,44),(53953,58058,'Peter Campbell',2,0),(53953,54634,'Darcy Wagner',1,1),(53953,33355,'Cole',2,2),(53953,35800,'Emma',1,4),(53953,58908,'Star Roberts',0,5),(53953,83424,'Chuck',2,6),(53953,169469,'Bobby Boulet',2,7),(53953,72099,'Henry',2,8),(53953,103286,'Cherise',1,9),(53953,58395,'Elizabeth Craven',1,10),(53953,1085583,'Austin Carter',0,11),(53953,15500,'Mrs. MacDonald',1,12),(53953,200753,'Tooth Fairy',0,13),(53953,570282,'Tooth Fairy',0,14),(53953,1112033,'Pamela Wagner',1,15),(181283,2524,'Leo Demidov',2,0),(181283,64,'General Mikhail Nesterov',2,1),(181283,87722,'Raisa Demidov',1,2),(181283,92404,'Vasili',2,3),(181283,14887,'Vladimir Malevich',2,4),(181283,76512,'Anatoly Brodsky',2,5),(181283,185460,'Tortoise',2,6),(181283,1925,'Major Kuzmin',2,7),(181283,57012,'Alexei Andreyev',2,8),(181283,1018,'Ivan Sukov',2,9),(181283,4391,'Major Grachev',2,10),(181283,1279513,'Young Leo Demidov',0,11),(181283,1454546,'Photographer',0,12),(181283,105562,'Nina Andreyeva',1,13),(181283,138201,'Fyodor',0,14),(181283,1403486,'Mara',1,15),(181283,54948,'Zina Gubinova',1,16),(181283,175154,'Semyon Okun',2,17),(181283,1250809,'Doctor Boris Zarubin',2,18),(181283,47615,'',1,19),(181283,43554,'',2,20),(181283,55585,'',2,21),(181283,78329,'',1,22),(181283,63362,'',0,23),(260346,3896,'Bryan Mills',2,0),(260346,2178,'Inspector Frank Dotzler',2,1),(260346,11825,'Kim Mills',1,2),(260346,10696,'Lenore Mills - St. John',1,3),(260346,15336,'Stuart St. John',2,4),(260346,55585,'Oleg Malankov',2,5),(260346,1280,'Garcia',2,6),(260346,52476,'Smith',2,7),(260346,2221,'Sam',2,8),(260346,37204,'Bernie (Harris)',2,9),(260346,9629,'(Mark) Casey',2,10),(260346,928575,'Jimy',0,11),(260346,167720,'Clarence',2,12),(260346,167755,'Claire',0,13),(260346,67206,'Maxim',2,14),(260346,86397,'Phillips',2,15),(260346,154917,'Detective Johnson',2,16),(260346,118753,'Cop Utility Room',2,17),(260346,1452539,'Maxim Partner',2,18),(260346,112562,'NSA Woman',1,19),(260346,157059,'Cop Brooks',2,20),(260346,97844,'Cop Crime Scene',0,21),(260346,195989,'Cop Crime Scene',2,22),(260346,156625,'Cop Crime Scene',2,23),(260346,1243792,'Cop Debriefing Room',1,24),(260346,1631114,'Cop Technician Surveillance Van',2,25),(260346,1091423,'Cop Lenore House',2,26),(260346,1631125,'Reporter Crime Scene',1,27),(260346,1631126,'Pastor Lenore Funeral',2,28),(260346,156274,'Bodyguard Many',2,29),(260346,1631129,'Bagel Clerk',1,30),(260346,1631135,'Steward Gulfstream',2,31),(260346,1245367,'Pilot Private Jet',2,32),(260346,1424380,'USC Girl',1,33),(260346,1631155,'USC Girl',1,34),(260346,94427,'USC Girl',1,35),(260346,80619,'USC Professor',2,36),(260346,1382745,'Clerk Convenience Store',2,37),(260346,1631176,'Clerk Gas Station',2,38),(260346,1631177,'Clerk Toy Store',2,39),(260346,1410768,'Impound Technician',2,40),(260346,1631180,'Waitress Rancho Cafe',1,41),(260346,1631181,'Customer Rancho Cafe',2,42),(260346,1631182,'Waitress Restaurant',1,43),(260346,17421,'Mike',2,44),(260346,19118,'Malankov Guard Security Station #1',0,45),(260346,1862578,'Malankov Guard Security Station #2',0,46),(260346,148459,'Malankov Guard Elevator Penthouse #1',0,47),(260346,1643334,'Malankov Guard Elevator Penthouse #2',0,48),(260346,1618853,'Malankov Guard Elevator Penthouse #3',0,49),(260346,94066,'Malankov Guard Elevator Garage #1',0,50),(260346,1674913,'Malankov Guard Elevator Garage #2',2,51),(260346,1862604,'Controller Airport',0,52),(260346,1625078,'Detective (uncredited)',2,53),(260346,1631175,'Kim\'s Friend (uncredited)',1,54),(260346,1631125,'Reporter, Crime Scene',1,55),(325789,17419,'Robert Mazur',2,0),(325789,9824,'Kathy Ertz',1,1),(325789,5723,'Emir Abreu',2,2),(325789,1670,'Frankie',2,3),(325789,4589,'Roberto Alcaino',2,4),(325789,39388,'Bonni Tischler',1,5),(325789,3623,'Gloria Alcaino',1,6),(325789,225610,'Dominic',2,7),(325789,1394384,'Banker',0,8),(325789,10672,'Akbar Bilgrami',2,9),(325789,1654655,'The Informant',2,10),(325789,11355,'Mark Jackowski',2,11),(325789,29240,'Steve Cook',2,12),(325789,3019,'Aunt Vicky',1,13),(325789,5419,'Amjad Awan',0,14),(325789,49965,'Ian Howard',2,15),(325789,60650,'Barry Seal',2,16),(325789,102221,'Gonzalo Mora Jr.',2,17),(325789,40664,'Rudy Ambrecht',0,18),(325789,1123,'Joe',0,19),(325789,1765428,'Farhana Awan',0,20),(113464,3359,'Gen. Douglas MacArthur',2,0),(113464,14061,'Barbara Hallsworth',1,1),(113464,856,'Maj. Frank Hallsworth',2,2),(113464,7450,'Saito-San',2,3),(113464,6487,'Sgt. Augustus Henderson',2,4),(113464,51377,'David Feld',2,5),(113464,1411869,'Park',2,6),(113464,4961,'Turkish Brigadier',2,7),(113464,1227454,'Longfellow',0,8),(113464,37794,'Marguerite',1,9),(113464,1429143,'Jean MacArthur',0,10),(113464,1006368,'Lim',0,11),(113464,123057,'Mila',1,12),(113464,47759,'Gen. Almond',2,13),(82675,3896,'Bryan Mills',2,0),(82675,11825,'Kim',1,1),(82675,10696,'Lenore',1,2),(82675,1118,'Murad',2,3),(82675,56680,'Jamie',2,4),(82675,9629,'Casey',2,5),(82675,2221,'Sam',2,6),(82675,61962,'Bernie',2,7),(82675,743,'Inspector Durmaz',2,8),(82675,238393,'Suko',2,9),(82675,65826,'Car Wash Attendant',2,10),(82675,1274434,'Cheikh\'s Aide',2,11),(82675,49278,'Jean-Claude',2,12),(82675,1439926,'Mirko',2,13),(82675,1631072,'Cheikh',0,14),(82675,59752,'Border Guard',0,15),(82675,145504,'Reception Clerk',2,16),(82675,6735,'Driving Instructor',1,17),(82675,1373113,'Newsreader',2,18),(82675,1631078,'Waitress',1,19),(82675,1863741,'Waiter',0,20),(82675,212756,'Hotel Driver',2,21),(82675,1863761,'Hotel Duty Officer',0,22),(82675,1863763,'Maid Lockers',1,23),(82675,1863765,'Barber',0,24),(82675,118512,'Jean-Claude\'s Driver',0,25),(82675,1863768,'Jean-Claude\'s Concierge',0,26),(82675,1173483,'Hammam Attendant',0,27),(82675,145316,'Albanian Intelligence Officer',2,28),(82675,1863771,'Taxi Driver Kim',0,29),(82675,1863772,'Hammam Cop',0,30),(88751,18269,'Trevor Anderson',2,0),(88751,27972,'Sean Anderson',2,1),(88751,70785,'Hannah u00c1sgeirsson',1,2),(88751,62856,'Professor Alan Kitzens',2,3),(88751,70786,'Max Anderson',0,4),(88751,110887,'Elizabeth',1,5),(88751,60910,'Old Man',2,6),(88751,110888,'Leonard',2,7),(88751,70787,'Gum-Chewing Girl',1,8),(88751,110889,'Sigurbju00f6rn u00c1sgeirsson',2,9),(146233,6968,'Keller Dover',2,0),(146233,131,'Detective Loki',2,1),(146233,17142,'Alex Jones',2,2),(146233,49,'Grace Dover',1,3),(146233,6832,'Holly Jones',1,4),(146233,19492,'Nancy Birch',1,5),(146233,18288,'Franklin Birch',2,6),(146233,112476,'Ralph Dover',0,7),(146233,1208406,'Eliza Birch',1,8),(146233,1470,'Captain Richard O\'Malley',2,9),(146233,83854,'Bob Taylor',2,10),(146233,41247,'Father Patrick Dunn',2,11),(146233,427,'Mrs. Milland',1,12),(146233,1224251,'Anna Dover',0,13),(146233,1371108,'Joy Birch',1,14),(146233,935722,'Officer Carter',0,15),(146233,1088938,'Officer Wedge',0,16),(146233,52490,'Forensics Guy',2,17),(146233,1071346,'Check Out Girl',1,18),(146233,156874,'Detective Chemelinski',0,19),(146233,1689933,'Desk Sergeant',0,20),(146233,1407899,'Police Clerk',1,21),(146233,1388694,'Roger',0,22),(146233,1658615,'Sex Offender',2,23),(146233,1689980,'Sex Offender',0,24),(146233,1689981,'Sex Offender',0,25),(146233,1689982,'Chinese Waitress',1,26),(146233,1689983,'Police Station Reporter',0,27),(146233,1689984,'Police Station Reporter',0,28),(146233,1689985,'Woman at Vigil',0,29),(146233,1567589,'Newscaster',0,30),(146233,1377068,'Woman Motorist',0,31),(146233,206027,'Cop in Hospital',0,32),(146233,1078610,'Nurse',0,33),(64328,9273,'Mary',1,0),(64328,41088,'Gary',2,1),(64328,5081,'Miss Piggy\'s Receptionist',1,2),(64328,17697,'John Krasinski',2,3),(64328,58225,'Hobo Joe',2,4),(64328,70851,'Himself',2,5),(64328,5374,'Human Walter',2,6),(64328,1937,'Smalltown Resident',0,7),(64328,41686,'Neil Patrick Harris',2,8),(64328,2955,'Tex Richman',2,9),(64328,83586,'\'Punch Teacher\' Host',2,10),(64328,1903,'Tour Guide',2,11),(64328,135467,'Sgt. Floyd Pepper / Camilla / Sweetums / 80\'s Robot / Lew Zealand / Uncle Deadly / Roowlf / Crazy Harry (voice)',0,12),(64328,192632,'Scooter / Janice / Miss Poogy / Wayne (voice)',0,13),(64328,80591,'Veronica Martin',1,14),(64328,77948,'Selena Gomez',1,15),(64328,64180,'Kermit / Beaker / Statler / Rizzo / Link Hogthrob / The Newsman (voice)',2,16),(64328,533061,'Animool',2,17),(64328,97185,'Miss Piggy / Fozzie Bear / Animal / Sam Eagle / Marvin Suggs (voice)',2,18),(64328,64181,'Gonzo / Dr. Bunsen Honeydew / Zoot / Beauregard / Waldorf / Kermit Moopet (voice)',2,19),(64328,1030312,'Laughing Kid',0,20),(64328,7404,'Greeter',1,21),(64328,1214063,'Postman',0,22),(64328,64182,'Swedish Chef / Rowlf / Dr. Teeth / Pepe The Prawn / Bobo / Foozie Bear / Whatnot Farmer / Muppet Gary (voice)',2,23),(64328,360193,'Walter (voice)',2,24),(64328,8854,'Grandfather',2,25),(64328,109869,'Moderator',0,26),(64328,77887,'TV Executive',2,27),(64328,165214,'Elderly Asian Man',2,28),(64328,209417,'Elderly Asian Woman',0,29),(64328,119589,'Junior CDE Executive',2,30),(64328,395517,'TV Executive',1,31),(64328,1231705,'Reporter One',0,32),(64328,1193098,'Reporter Two',0,33),(64328,133593,'TV Executive',0,34),(64328,1504920,'\'Punch Teacher\' Kid',0,35),(64328,1504921,'Gary Age 6',0,36),(64328,1504922,'Gary Age 9',0,37),(64328,1302468,'Gary Age 13',2,38),(64328,1504923,'Laughing Kid',0,39),(64328,1303010,'Mel\'s Drive-In Waitress',1,40),(64328,60093,'',2,41),(64328,1002483,'Smalltown Resident',1,42),(64328,2395,'',1,43),(64328,6167,'',2,44),(64328,206737,'',2,45),(64328,1856730,'',0,46),(36647,10814,'Blade',2,0),(36647,10822,'Deacon Frost',2,1),(36647,10823,'Whistler',2,2),(36647,10824,'Karen',1,3),(36647,10825,'Quinn',2,4),(36647,1646,'Dragonetti',2,5),(36647,66147,'Mercury',1,6),(36647,10826,'Racquel',1,7),(36647,10827,'Krieger',2,8),(36647,40275,'Curtis Webb',2,9),(36647,5411,'Vanessa',1,10),(36647,115786,'Pearl',0,11),(36647,957026,'Nurse',1,12),(36647,161917,'Senior Resident',1,13),(36647,149407,'Resident',1,14),(36647,42191,'Heatseeking Dennis',2,15),(36647,217472,'Creepy Morgue Guy',2,16),(36647,104054,'Pallantine',0,17),(36647,143208,'Japanese Doorman',2,18),(36647,1080221,'Kam',0,19),(36647,165282,'Paramedic',0,20),(36647,1202772,'Paramedic',0,21),(36647,106488,'Pragmatic Policeman',0,22),(36647,42557,'Blood Club Bouncer',0,23),(36647,1202773,'Martial Arts Kid',0,24),(36647,1189043,'Lyle Conway',0,25),(36647,1202774,'Menacing Stud',0,26),(36647,3226,'Vampire Underling',2,27),(36647,1202775,'Frost\'s Goon',0,28),(36647,1202776,'Frost\'s Goon',0,29),(36647,1202777,'Von Esper',0,30),(36647,31841,'Crease',2,31),(36647,205164,'Pleading Goon',2,32),(36647,1202778,'Party Girl',0,33),(36647,1202779,'Slavic Vampire Lord',0,34),(36647,116402,'Russian Woman',1,35),(36647,27037,'Russian Vampire',2,36),(36647,1202780,'Cardboard cut-out in Subway',0,37),(36647,964544,'Vampire Victim',0,38),(36647,1176140,'Blood Bath Vampire',0,39),(36647,169628,'Henchman (uncredited)',2,40),(36647,1202781,'Blood Club (uncredited)',0,41),(36647,10808,'Vampire (uncredited)',2,42),(36647,105047,'Vampire (uncredited)',2,43),(36647,181758,'Vampire Lord (uncredited)',0,44),(36647,1202782,'Woman in Elevator (uncredited)',0,45),(36647,1202783,'Woman in Elevator (uncredited)',0,46),(36647,1221560,'Vampire at rave (uncredited)',0,47),(232672,69597,'Lauren',1,0),(232672,19292,'Jim',2,1),(232672,63234,'Jen',1,2),(232672,98285,'Hilary',1,3),(232672,53256,'Nickens',2,4),(232672,74949,'Mark',2,5),(232672,591834,'Tracy',1,6),(232672,58478,'Eddy',2,7),(232672,1274510,'Lou',1,9),(232672,1028454,'Espn',1,10),(232672,118593,'Bubbles',0,11),(232672,953505,'Mfana',0,12),(232672,1274511,'Tyler',0,13),(232672,1428393,'Brendan',0,14),(232672,1428394,'Jake',0,15),(232672,1428395,'Ginger',1,16),(232672,35806,'Doug',2,17),(232672,166029,'Dick',2,18),(232672,19578,'Georgina',1,19),(232672,62595,'Pharmacy Cashier',1,20),(232672,20818,'220 Tom',2,21),(232672,60961,'Cute Teenage Boy',0,22),(232672,1202534,'Little League Announcer',0,23),(232672,60959,'Hollywood Stepmom',1,24),(232672,1398012,'Closet Client',0,25),(232672,1271681,'Wall Street Stepdaughter',0,26),(232672,1570863,'Little League Annoucer\'s Grandma',0,27),(232672,1221086,'Southern Stepmom',0,28),(232672,56728,'Basketball Dad',2,29),(232672,1570873,'Massage Instructor',0,30),(232672,1683830,'Dick\'s Kid',0,31),(82525,59175,'Ophelia O Sage',1,0),(82525,60900,'Chon',2,1),(82525,27428,'Ben',2,2),(82525,1121,'Lado',2,3),(82525,3136,'Elena',1,4),(82525,8891,'Dennis',2,5),(82525,76961,'Alex',2,6),(82525,46593,'Spin',2,7),(82525,6859,'Dolores',0,8),(82525,112129,'Esteban',2,9),(82525,76857,'El Azul',2,10),(82525,145184,'Magda',1,11),(82525,180306,'Jaime',2,12),(82525,591835,'Claire',1,13),(82525,1233560,'Matt / Magda\'s Boyfriend',0,14),(38153,6952,'Bobby Bishop',2,0),(38153,55636,'Jacob Conrad',2,1),(38153,2713,'Amanda Givens',1,2),(38153,32747,'The Agent',2,3),(38153,32897,'Grasso',2,4),(38153,15253,'Toyanbee',2,5),(38153,6609,'Prof. Yuri Pochenko',2,6),(38153,6354,'General Blackburn',2,7),(38153,7675,'Blythe',2,8),(38153,12646,'Frank Ridell',2,9),(38153,8975,'The President',2,10),(38153,856,'Vicepresident Saxon',2,11),(38153,11626,'Page',2,12),(38153,131120,'Murphy',2,13),(38153,39568,'Janet',0,14),(58233,10730,'Johnny English',2,0),(58233,17287,'Simon Ambrose',2,1),(58233,12214,'Pamela Thornton (aka. Pegasus: Head of MI7)',1,2),(58233,10882,'Kate Sumner',1,3),(58233,206919,'Colin Tucker',2,4),(58233,41043,'Patch Quartermain',2,5),(58233,55467,'Prime Minister',2,6),(58233,1218994,'Royce (Voice)',0,7),(58233,31028,'Titus Fisher',2,8),(58233,2479,'Derek',2,9),(58233,749,'Shirley',1,10),(58233,1736076,'Margaret',0,11),(58233,1186694,'Agent One',0,12),(58233,550312,'Agent Two',0,13),(58233,472632,'Barbara',1,14),(58233,39659,'Slater',0,15),(58233,9192,'Ting Wang',2,16),(58233,221857,'Technician',0,17),(58233,1228239,'Killer Cleaner',0,18),(58233,30434,'Tucker\'s Mum',0,19),(58233,30082,'Chi Han Ly',2,20),(58233,3494,'Xiang Ping',2,21),(58233,6696,'Karlenko',2,22),(58233,1132646,'Izzie',0,23),(58233,1215739,'Foreign Secretary',2,24),(58233,1441566,'Michael Tembe',2,25),(58233,1508112,'President Chambal',0,26),(58233,512079,'Madeleine',1,27),(58233,209579,'Receptionist',1,28),(58233,1457604,'Receptionist',0,29),(58233,1578207,'Receptionist',0,30),(58233,1258227,'Waitress',1,31),(116977,6952,'Dex Dogtective',2,0),(116977,76669,'Daredevil Dan',2,1),(116977,5958,'Sunshine Goodness',1,2),(116977,52605,'Lady X',1,3),(116977,1062,'Mr. Clipboard',2,4),(116977,53929,'Sweet Cakes',1,5),(116977,58317,'Polar Penguin',2,6),(116977,4031,'Hairy Hold',2,7),(116977,4030,'General X / Kaptain Krispy',2,8),(116977,32598,'Twinkleton',2,9),(116977,7420,'Fat Cat Burglar',2,11),(116977,1211,'Vlad Chocool',2,12),(116977,68812,'Mr. Leonard',2,13),(116977,11870,'Hedda Shopper',1,14),(116977,9599,'Brand X Lunch Lady',1,16),(116977,3202,'Mrs. Butterworth',1,17),(116977,1214713,'Toddler\'s Mom',0,18),(116977,1178792,'Hairles Hamster Henchman (voice)',0,19),(116977,154106,'Hairless Hamster Henchman (voice)',0,20),(116977,26042,'General X',2,21),(116977,43518,'Cheasel T. Weasel',2,22),(68734,880,'Tony Mendez',2,0),(68734,17419,'Jack O\'Donnell',2,1),(68734,1903,'Lester Siegel',2,2),(68734,1230,'John Chambers',2,3),(68734,8536,'Ken Taylor',2,4),(68734,15455,'Bob Anders',2,5),(68734,20387,'Cora Lijek',1,6),(68734,59233,'Joe Stafford',2,7),(68734,51792,'Lee Schatz',2,8),(68734,61510,'Mark Lijek',0,9),(68734,58356,'Kathy Stafford',1,10),(68734,3497,'Hamilton Jordan',2,11),(68734,61659,'Malinov',2,12),(68734,6752,'Robert Pender',2,13),(68734,39389,'Bates',2,14),(68734,21125,'Max Klein',2,15),(68734,221809,'Christine Mendez',1,17),(68734,87957,'Adam Engell',2,18),(68734,4029,'Cyrus Vance',2,19),(68734,156729,'Pat Taylor',1,20),(68734,167862,'Reza Borhani',2,21),(68734,220573,'Sahar',0,22),(68734,62567,'Elizabeth Ann Swift',1,23),(68734,970534,'Sgt. Sickmann',2,24),(68734,1212192,'Alan B. Golacinski',0,25),(68734,79079,'William J. Daugherty',2,26),(68734,1272989,'Sgt. William Gallegos',0,27),(68734,1222215,'Thomas L. Ahern',0,28),(68734,1272990,'Fred Kupke',0,29),(68734,155030,'Malick',2,30),(68734,159720,'Peter Genco',2,31),(68734,207736,'Brice',2,32),(68734,157119,'Hal Saunders',2,33),(68734,62146,'Landon Butler',2,34),(68734,76625,'Jon Titterton',2,35),(68734,58621,'Lamont',2,36),(68734,150672,'Rossi',2,37),(68734,1272991,'Tehran Mary',0,38),(68734,998350,'Ian Mendez',2,39),(68734,75344,'David Marmor',2,40),(68734,1272992,'Ali Khalkhali',0,41),(68734,1272993,'Moradi',0,42),(68734,108699,'The Minotaur',2,43),(68734,2536,'Jack Kirby',2,44),(68734,1288785,'Immigration Officer',0,45),(68734,965673,'Immigration Officer',2,46),(68734,1219226,'Col. Charles W. Scott',0,47),(68734,1115997,'Swissair Flight Attendant',0,48),(68734,1214974,'Evil Villain',2,49),(68734,176227,'OSS Officer Nicholls',2,50),(68734,1402460,'Azizi Checkpoint #3',2,51),(68734,1503003,'Student with Poster',0,52),(68734,1503004,'Marine #1',0,53),(68734,1503005,'Marine #2',0,54),(68734,1503006,'Lady with Radio',0,55),(68734,1503007,'Tear Gas Student',0,56),(68734,11675,'First A.D.',0,57),(68734,1378128,'British Airways Flight Attendant',1,58),(68734,11782,'Nina / Serksi the Gallactic Witch',1,59),(68734,1684616,'Deputy Minister of Islamic Guidance',0,60),(68734,1358567,'Smokehouse Patron (uncredited)',2,61),(228066,5530,'Victor Von Frankenstein',2,0),(228066,10980,'Igor',2,1),(228066,567269,'Lorelei',1,2),(228066,125660,'Roderick Turpin',2,3),(228066,4391,'Frankenstein',2,4),(228066,1244469,'Sexy Society Girl',0,5),(228066,34546,'Dettweiler',2,6),(228066,1014931,'Finnegan',2,7),(228066,1371041,'Alistair',2,8),(228066,1670,'Barnaby',2,9),(228066,25451,'Nathaniel / Prometheus 2',0,10),(228066,1125601,'Prometheus 1',0,11),(228066,583815,'Mrs. Winthrop',1,12),(228066,56100,'Chief Inspector',2,13),(228066,75076,'Rafferty',2,14),(228066,383624,'Dr. Clive',2,15),(37233,500,'Mitch McDeere',2,0),(37233,10478,'Abby McDeere',1,1),(37233,193,'Avery Tolar',2,2),(37233,18686,'Tammy Hemphill',1,3),(37233,228,'Wayne Tarrance',2,4),(37233,11066,'Oliver Lambert',2,5),(37233,89141,'Royce McKnight',2,6),(37233,11064,'Ray McDeere',2,7),(37233,11067,'Lamar Quinn',2,8),(37233,11065,'William Devasher',2,9),(37233,62647,'Thomas Abanks',2,10),(37233,2048,'Eddie Lomax',2,11),(37233,21521,'F. Denton Voyles',0,12),(37233,452,'Nina Huff',1,13),(37233,7004,'Tommy Morolto',2,14),(37233,60023,'Joey Morolto',2,15),(37233,1888,'Sonny Capps',2,16),(37233,2144,'The Nordic Man',2,17),(37233,14329,'The Squat Man',2,18),(37233,12932,'Kay Quinn',1,19),(37233,42171,'Lawyer Recruiter',2,20),(37233,97314,'Nathan Locke',2,21),(37950,29222,'Charlie St. Cloud',2,0),(37950,58370,'Tess Carroll',1,1),(37950,49918,'Sam St. Cloud',2,2),(37950,3309,'Alistair Wooley',2,3),(37950,10825,'Tink Weatherbee',2,4),(37950,326,'Louise St. Cloud',1,5),(37950,11477,'Florio Ferrente',2,6),(37950,54697,'Sully',2,7),(37950,52291,'Cindy',1,8),(37950,119219,'Rachel',1,9),(37950,210348,'Connors',2,10),(37950,59242,'Carla Ferrente',1,11),(37950,11828,'Ben Carroll',2,12),(37950,21214,'Grace Carroll',1,13),(37950,1533024,'Latham',2,14),(37950,966625,'Green',2,15),(37950,1596259,'Julie',1,16),(37950,82791,'Girl in Toy Store',1,17),(37950,87736,'Girl in Toy Store',1,18),(37950,1511137,'Girl in Toy Store',1,19),(37950,112645,'Photographer',1,20),(37950,190900,'Principal',2,21),(37950,1369058,'Hoddy Snow',2,22),(37950,1203953,'Reverend Polk',2,23),(37950,1459145,'Ambulance Driver',2,24),(64688,38673,'Jenko',2,0),(64688,21007,'Schmidt',2,1),(64688,60073,'Molly Tracey',1,2),(64688,54697,'Eric Molson',2,3),(64688,475512,'Ms. Griggs',1,4),(64688,9778,'Capt. Dickson',2,5),(64688,17039,'Captain',2,6),(64688,71403,'Mr. Walters',2,7),(64688,543505,'Principal Dadier',2,9),(64688,168581,'Officer Judy Hoffs',1,10),(64688,1060081,'Delroy',2,11),(64688,1910,'Annie Schmidt',1,12),(64688,141762,'David Schmidt',2,13),(64688,118545,'Fugazy',1,14),(64688,27104,'Billiam Willingham',2,15),(64688,1088040,'VW Bug Driver',0,16),(64688,82791,'Burns',1,17),(64688,85,'Officer Tom Hanson (uncredited)',2,18),(64688,118463,'Officer Doug Penhall (uncredited)',2,19),(136795,18277,'Sarah Ashburn',1,0),(136795,55536,'Shannon Mullins',1,1),(136795,76961,'Hale',2,2),(136795,4688,'Jason Mullins',2,3),(136795,1213573,'Adam',0,4),(136795,9562,'Levy',2,5),(136795,170635,'Robin',2,6),(136795,109708,'Mark Mullins',0,7),(136795,54720,'Wayne',2,8),(136795,58184,'Mrs. Mullins',1,9),(136795,1186010,'Rojas',0,10),(136795,1183546,'Craig',2,11),(136795,1065,'Captain Woods',2,12),(136795,25147,'The John',2,13),(136795,112261,'Peter Mullins',2,14),(136795,8897,'Mr. Mullins',2,15),(136795,127048,'Michael Mullins',0,16),(136795,464993,'Paramedic',2,17),(136795,1219121,'Beth',0,18),(136795,1231211,'Gina',1,19),(136795,1106222,'ER Nurse',1,20),(136795,928638,'Bar Patron (uncredited)',0,21),(136795,95102,'Tatiana',1,22),(87826,3136,'Bella Flores',1,0),(87826,32895,'Scott Voss',2,1),(87826,31903,'Marty',2,2),(87826,91609,'Joe Rogan',2,3),(87826,22075,'Mr. De La Cruz',2,4),(87826,19974,'Principal Becher',2,5),(87826,89402,'Niko',2,6),(87826,232500,'Malia De La Cruz',1,7),(87826,935500,'Jacob',0,8),(87826,57370,'Disoriented Gym Patron',2,9),(87826,1507448,'Ring Girl',0,10),(87826,1395904,'Molie Streb',1,11),(87826,1588955,'Male Receptionist (uncredited)',2,12),(87826,1811221,'High School Student',2,13),(49730,71070,'Valerie',1,0),(49730,64,'Father Soloman',2,1),(49730,21029,'Cesaire',2,2),(49730,79795,'Peter',2,3),(49730,232396,'Henry',2,4),(49730,1666,'Grandmother',1,5),(49730,526,'Father August',2,6),(49730,12519,'Suzette',1,7),(49730,941988,'Roxanne',0,8),(49730,164114,'The Reeve',2,9),(49730,33348,'Captain',2,10),(49730,11830,'Claude',2,11),(49730,189719,'Madame Lazar',0,12),(49730,26086,'Adrien Lazar',2,13),(49730,1038625,'Prudence',1,14),(49730,223126,'Young Valerie',1,15),(49730,1576977,'Young Peter',0,16),(49730,202156,'Rose',0,17),(49730,56749,'Tavern Owner',2,18),(49730,210348,'Captain\'s Brother',2,19),(49730,1791247,'Marguerite',0,20),(49730,1475092,'Woodcutter',0,21),(54054,25541,'Stephanie Plum',1,0),(54054,183812,'Joseph Morelli',2,1),(54054,10582,'Ranger',2,2),(54054,5723,'Jimmy Alpha',2,3),(54054,109561,'Lula',1,4),(54054,8857,'Grandma Mazur',1,5),(54054,52801,'Vinnie Plum',2,6),(54054,1039871,'William Earling',0,7),(54054,10386,'Mrs. Plum',1,8),(54054,74538,'Eddie Gazarra',2,9),(54054,149775,'Bernie Kuntz',2,10),(54054,26473,'Morty Beyers',2,11),(54054,51733,'Connie',1,12),(54054,114588,'Jackie',1,13),(54054,24200,'John Cho',2,14),(54054,24291,'Mary Lou',1,15),(54054,1187500,'Police Woman',1,16),(228967,17051,'Dave Skylark',2,0),(228967,19274,'Aaron Rapaport',2,1),(228967,51988,'Agent Lacey',1,2),(228967,79082,'Kim Jong-un',2,3),(228967,583051,'Sook',0,4),(228967,1181329,'Malcolm',2,5),(228967,141774,'Agent Botwin',0,6),(228967,1400266,'Officer Koh',2,7),(228967,1406556,'Officer Yu',0,8),(228967,119810,'Cole',0,9),(228967,1406557,'Jackie',0,10),(228967,1274528,'Janet',0,11),(228967,521563,'Jake',2,12),(228967,62833,'General Jong',2,13),(228967,1406558,'Two-Fingered Man',0,14),(228967,550224,'Paparazzi',0,15),(228967,201067,'Presidential Guard',0,16),(228967,325,'Eminem (uncredited)',2,17),(228967,222121,'Publicist',2,18),(228967,2879,'Rob Lowe (uncredited)',2,19),(228967,1228374,'Train Passenger',2,20),(228967,1718817,'Train Passenger',0,21),(228967,1718818,'Train Passenger',0,22),(228967,1718819,'Korean Girl',0,23),(228967,158374,'News Anchor',2,24),(228967,385220,'Cab Driver',2,25),(228967,1052684,'Joe',2,26),(228967,1661365,'Alice',1,27),(228967,1091772,'News Anchor',0,28),(228967,1223194,'News Anchor',0,29),(228967,22053,'Israeli Prime Minister (uncredited)',2,30),(228967,1263449,'Surprise Partygoer (uncredited)',2,31),(228967,110610,'Palestinian President (uncredited)',2,32),(228967,24045,'Joseph Gordon-Levitt (uncredited)',2,33),(228967,105830,'Secretary of Communication (uncredited)',2,34),(228967,74086,'Bill Maher (uncredited)',2,35),(228967,62856,'Seth Meyers (uncredited)',2,36),(228967,54693,'Emma Stone (uncredited)',1,37),(46528,7517,'Lynne',1,0),(46528,16962,'Yang',0,1),(46528,118,'Ron',2,2),(46528,6413,'Colonel',2,3),(46528,69636,'Saddest Flute',2,4),(46528,19754,'Eight-Ball',2,5),(46528,1128842,'Baby April',0,6),(46528,166703,'Baptiste',0,7),(46528,1128843,'Craig',0,8),(46528,221147,'Geyser',0,9),(46528,1128844,'Esmerelda',0,10),(46528,173451,'Jacques',0,11),(46528,54494,'Lofty',2,12),(280391,2408,'Edouard (voice)',2,1),(280391,82302,'Ian (voice)',0,2),(280391,1254992,'Lucie (voice)',0,3),(280391,1045532,'Vladimir / Sergey (voice)',0,4),(280391,62535,'Simeon (voice)',0,5),(280391,20675,'Vania',0,6),(280391,112767,'Vania (voice)',0,7),(280391,1500005,'La sorciu00e8re',0,8),(280391,1328019,'La sorciu00e8re (voice)',0,9),(280391,458904,'Marcel (voice)',2,10),(280391,1500007,'Gudule (voice)',0,11),(280391,112769,'Myrtille (voice)',0,12),(280391,1500008,'Fleura / Victoire (voice)',0,13),(280391,1500009,'Diego (voice)',0,14),(280391,1500011,'Hubert (voice)',0,15),(280391,1500036,'Mamacita (voice)',0,16),(280391,1500038,'Le Portugais pru00e9historique (voice)',0,17),(49527,65731,'Nick Cassidy',2,0),(49527,9281,'Lydia Mercer',1,1),(49527,478,'Joey Cassidy',2,2),(49527,228,'David Englander',2,3),(49527,12833,'Jack Dougherty',2,4),(49527,26467,'Suzie Morales',1,5),(49527,53650,'Mike Ackerman',2,6),(49527,6573,'Valet',2,7),(49527,589162,'Angie',1,8),(49527,970631,'Janice Ackerman',0,9),(49527,52475,'Psychiatrist',1,10),(49527,1289296,'Investor',0,11),(49527,101165,'Police Technician',2,12),(49527,1085462,'Manager',1,13),(49527,1618184,'Screaming Woman',1,14),(49527,4891,'Father Leo',2,15),(49527,2256,'Prison Guard',2,16),(49527,1217553,'Desk Sergeant',2,17),(49527,1767923,'Cop - Bullhorn',0,18),(49527,1767924,'Cop - Room',0,19),(49527,39389,'Dante Marcus',2,20),(49527,1528809,'Police Technician',0,21),(49527,1311449,'Cameraman',0,22),(49527,1214054,'ESU',0,23),(49527,1299570,'Bearded Guy',0,24),(49527,1466173,'CSI Tech',0,25),(49527,81678,'Englander\'s Assistant',1,26),(49527,123557,'Ted Henry',2,27),(49527,122239,'Angry Traffic Woman',1,28),(49527,1215617,'Nestor',0,29),(49527,1454093,'Brooklyn Cop',2,30),(49527,176692,'Brooklyn Cop',0,31),(49527,1232497,'Investor',1,32),(49527,1104451,'Lady',1,33),(49527,1455760,'Cop',0,34),(49527,2257,'Lutz',2,35),(49527,1767927,'Cop',1,36),(49527,28033,'Construction Worker',2,37),(49527,157059,'Detective',2,38),(49527,1456660,'Detective',0,39),(49527,5302,'Older Orthodox Man',0,40),(49527,944717,'Gordon Evans',2,41),(49527,1455783,'Tactical Leader',2,42),(49527,25686,'Correction Officer',2,43),(49527,1653331,'NYPD Officer',2,44),(49527,115978,'Police Sergeant',2,45),(49527,1767932,'Construction Worker',0,46),(49527,1461314,'Pedestrian',1,47),(49527,82285,'Brooklyn Cop',0,48),(49527,1767936,'News Photographer',0,49),(49527,1435249,'Pedestrian',0,50),(49527,1535321,'Pedestrian',0,51),(49527,1767939,'Photographer',0,52),(49527,1767940,'New York Police Officer',0,53),(49527,1454082,'Inmate',0,54),(49527,1290726,'Inmate',0,55),(73937,887,'Kenny Bostick',2,0),(73937,67773,'Stu Preissler',2,1),(73937,70851,'Brad Harris',2,2),(73937,80591,'Ellie',1,3),(73937,5374,'Crane',2,4),(73937,5657,'Annie Auklet',1,5),(73937,1462,'Fuchs',2,6),(73937,7166,'Jim Gittelson',2,7),(73937,10882,'Jessica Bostick',1,8),(73937,74949,'Barry Loomis',2,9),(73937,1902,'Brenda Harris',1,10),(73937,18471,'Bill Clemont',2,11),(73937,6197,'Raymond Harris',2,12),(73937,35515,'Old Lady',1,13),(73937,58902,'Prasad',2,14),(73937,98818,'Vicki',1,15),(73937,172833,'Vicki\'s Fiancu00e9e',2,16),(73937,62909,'Tony',2,17),(168672,3894,'Irving Rosenfeld',2,0),(168672,51329,'Richie DiMaso',2,1),(168672,9273,'Sydney Prosser',1,2),(168672,17604,'Carmine Polito',2,3),(168672,72129,'Rosalyn Rosenfeld',1,4),(168672,52849,'Stoddard Thorsen',2,5),(168672,54738,'Pete Musane',2,6),(168672,454,'Paco Hernandez',2,7),(168672,74242,'Carl Elway',2,8),(168672,4941,'Anthony Amado',2,9),(168672,126932,'Dolly Polito',1,10),(168672,58535,'Alfonse Simone',2,11),(168672,5419,'Irv\'s Sheik Plant',0,12),(168672,239111,'Dominic Polito',0,13),(168672,1710602,'Francis Polito',2,14),(168672,94432,'Julius',2,15),(168672,2516,'Senator Horton Mitchell',2,16),(168672,13023,'Brenda',1,17),(168672,1808040,'Agent Schmidt',0,18),(168672,1656520,'Agent Stock',0,19),(168672,1746132,'Young Irv',0,20),(168672,131849,'Cosmo Interview Girl',1,21),(168672,1800065,'Photographer',0,22),(168672,1808041,'Helen',0,23),(168672,92614,'Cosmo Girl',1,24),(168672,999737,'Abbie Abrams',0,25),(168672,1673016,'Street Thug #1',2,26),(168672,380,'Victor Tellegio',2,27),(168672,928638,'Art Patron (uncredited)',0,28),(168672,1855615,'Danny Rosenfeld (as Dante Corbo)',0,29),(168672,1855616,'Danny Rosenfeld (as Santino Corbo)',0,30),(240832,1245,'Lucy Miller',1,0),(240832,192,'Professor Samuel Norman',2,1),(240832,64880,'Mr. Jang',2,2),(240832,2960,'Pierre Del Rio',2,3),(240832,7031,'The Limey',2,4),(240832,90060,'Richard',2,5),(240832,124644,'Caroline',1,6),(240832,1367830,'Jii',0,7),(240832,1367831,'German Mule',2,8),(240832,109335,'Italian Mule',2,9),(240832,1464571,'French Mule',2,10),(240832,586371,'Professor',2,11),(240832,1426308,'Professor',0,12),(240832,1426347,'Professor',0,13),(240832,6024,'Professor',0,14),(240832,1426348,'Drug Addict',0,15),(240832,1318456,'Airport Doctor',0,16),(240832,24769,'Airport Nurse',0,17),(240832,226021,'Cabin Manager',0,18),(240832,1426355,'Flight Attendant',1,19),(240832,1366325,'Business Man Plane',0,20),(240832,139168,'Customs Officer',0,21),(240832,94066,'Cop Daniel',0,22),(240832,1426365,'Cop Robert',0,23),(240832,61623,'Cop Sergeant',0,24),(240832,1426372,'Cop',0,25),(240832,226023,'Cop',0,26),(240832,1118743,'Student',0,27),(240832,1426644,'Student',2,28),(240832,1426373,'Student',0,29),(240832,1426645,'Student',0,30),(240832,1138749,'Marco Brezzi',0,31),(240832,1416230,'Berlin Custom Officer',0,32),(240832,1086249,'Chinese Doctor',0,33),(240832,1426877,'Taipei Surgeon',0,34),(240832,1587631,'Jang\'s Lieutenant',0,35),(240832,1587629,'Jang\'s Lieutenant',0,36),(240832,1426883,'Jang\'s Man',0,37),(240832,1426888,'Jang\'s Man',0,38),(240832,1426879,'Jang\'s Man',0,39),(240832,1426893,'Jang\'s Man',0,40),(240832,1426895,'Jang\'s Man',0,41),(240832,1426897,'Mahjong Room Man',0,42),(240832,1426899,'Prehistoric Lucy',0,43),(240832,1426900,'Prehistoric Man',0,44),(240832,1426915,'The Receptionist',0,45),(240832,1123732,'Regent Hotel Concierge #1',2,46),(240832,543138,'Regent Hotel Concierge #2',2,47),(240832,1426905,'Lucy\'s Driver',0,48),(240832,1426906,'Warehouse Man Driver',0,49),(240832,1164329,'Lucy\'s Mother (voice)',0,50),(240832,1426914,'Phone Voice Royal Suite (voice)',0,51),(240832,1426916,'Fakir',0,52),(240832,1196388,'American Native Indian',0,53),(240832,1426917,'American Native Indian',0,54),(240832,1426918,'American Native Indian',0,55),(240832,1587633,'American Native Indian',0,56),(240832,1426919,'American Native Indian',0,57),(240832,1426920,'Rubik\'s Cube Boy',0,58),(216015,118545,'Anastasia Steele',1,0),(216015,1254583,'Christian Grey',2,1),(216015,49971,'Carla Wilks',1,2),(216015,222130,'Kate Kavanagh',1,3),(216015,59251,'Jose Rodriguez',2,4),(216015,56680,'Elliot Grey',2,5),(216015,4726,'Dr. Grace Trevelyan-Grey',1,6),(216015,1089873,'Mia Grey',1,7),(216015,94864,'Jason Taylor',2,8),(216015,540,'Ray Steele',2,9),(216015,41436,'Carrick Grey',2,10),(216015,79149,'Bob Adams',2,11),(216015,1482050,'Olivia',1,12),(216015,80018,'Andrea',1,13),(216015,1411603,'Martina',1,14),(216015,1381295,'Paul Clayton',2,15),(216015,1615574,'Elevator Businessman (uncredited)',2,16),(193756,13240,'Marcus Luttrell',2,0),(193756,60900,'Mike Murphy',2,1),(193756,46593,'Danny Dietz',2,2),(193756,11107,'Matt \'Axe\' Axelson',2,3),(193756,123102,'Shah',0,4),(193756,762,'Gulab',2,5),(193756,8783,'Lt. Cmdr. Erik S. Kristensen',2,6),(193756,23498,'Shane Patton',2,7),(193756,1278776,'James Suh',0,8),(193756,1278777,'Healy',0,9),(193756,98953,'Hasslert',2,10),(193756,1283040,'Crew Chief',0,11),(193756,108532,'Peter Musselman',0,12),(193756,1283041,'Chinook Pilot No. 1',0,13),(193756,1283042,'Chinook Pilot No. 2',0,14),(193756,1042362,'Chinook Co-Pilot',2,15),(193756,108037,'Communication SEAL',2,16),(193756,1283043,'SEAL Lieutenant',0,17),(193756,1283044,'CJSOTF Commander',0,18),(193756,1283045,'CJSOTF Marine',0,19),(193756,168834,'Bagram Comms Guy',0,20),(193756,1283046,'50 Cal Gunner',0,21),(193756,1094319,'Army Intel Guy',2,22),(193756,1283047,'Lt. Edwards',0,23),(193756,1230897,'Taraq',2,24),(193756,1283048,'Goat Boy',0,25),(193756,944151,'Teenage Goat Boy',2,26),(193756,1283049,'Goat Man',0,27),(193756,935701,'Gulab\'s Young Son',2,28),(193756,1283050,'TOC Sr. Air Officer',0,29),(193756,1283051,'TOC SEAL',0,30),(193756,1283052,'Doctor',0,31),(193756,1283053,'JAG',0,32),(193756,1283054,'Communication SEAL Perry',0,33),(193756,944326,'Penzi',2,34),(193756,1283055,'Captain Jacoby',0,35),(193756,1283056,'Captain Lovas',0,36),(193756,1283057,'Lt. Andrews',0,37),(193756,1283058,'Wallace',0,38),(193756,1283059,'\'EOD\' Paul',0,39),(193756,1283060,'Zabi',0,40),(193756,1283061,'Hocker',0,41),(193756,1283062,'Village Elder',0,42),(193756,1283063,'Angry Villager',0,43),(193756,1283064,'PJ No. 1',0,44),(193756,1283065,'PJ No. 2',0,45),(193756,77109,'SEAL Captain Kenney (uncredited)',2,46),(259693,17178,'Ed Warren',2,0),(259693,21657,'Lorraine Warren',1,1),(259693,1330999,'Janet Hodgson',1,2),(259693,1518,'Peggy Hodgson',1,3),(259693,1554519,'Margaret Hodgson',0,4),(259693,1554515,'Billy Hodgson',0,5),(259693,1554514,'Johnny Hodgson',0,6),(259693,16358,'Maurice Grosse',0,7),(259693,33394,'Peggy Nottingham',1,8),(259693,163545,'Vic Nottingham',2,9),(259693,679,'Anita Gregory',1,10),(259693,1328063,'Bill Wilkins',0,11),(259693,80619,'Father Gordon',2,12),(259693,1850290,'Graham Morris',0,13),(259693,1324452,'Harry Whitmark',2,14),(259693,1186840,'Judy Warren',1,15),(259693,1850291,'Kent Allen',0,16),(259693,1850293,'Constable Heeps',0,17),(259693,1850294,'Constable Peterson',0,18),(259693,1850295,'Stephen Kaplan',0,19),(259693,1850296,'Camilla',0,20),(259693,1210558,'Mrs. More',0,21),(259693,979807,'Drew Thomas',2,22),(259693,1850297,'Peter',0,23),(259693,1554520,'Louise Defeo',0,24),(259693,130081,'Bill Wilkins (voice)',2,25),(259693,87287,'Demon Nun',1,26),(259693,111090,'Crooked Man',0,27),(259693,73417,'Demon',2,28),(259693,1554512,'Woman Walking Dog',1,29),(37799,44735,'Mark Zuckerberg',2,0),(37799,37625,'Eduardo Saverin',2,1),(37799,12111,'Sean Parker',2,2),(37799,53807,'Cameron Winklevoss / Tyler Winklevoss',2,3),(37799,2978,'Divya Narendra',2,4),(37799,108916,'Erica Albright',1,5),(37799,88123,'Christy Lee',1,6),(37799,80591,'Marylin Delpy',1,7),(37799,20211,'Sy',2,8),(37799,56930,'Gage',2,9),(37799,968542,'Gretchen',0,10),(37799,113526,'Larry Summers',2,11),(37799,4787,'Dustin Moskovitz',2,12),(37799,17421,'Peter Thiel',2,13),(37799,135852,'Chris Hughes',0,14),(37799,118545,'Amelia Ritter',1,15),(37799,118544,'Alice Cantwel',1,16),(37799,135851,'Billy Olsen',0,17),(37799,75344,'Mr. Cox',2,18),(37799,25113,'KC',1,19),(37799,1324452,'Vikram',2,20),(37799,585673,'Tori',1,21),(37799,212218,'Bob',2,22),(37799,123587,'Reggie',2,23),(37799,1446823,'Anne',0,24),(37799,1011107,'Sharon',1,25),(37799,203216,'Howard Winklevoss',0,26),(37799,170376,'Prince Albert',2,27),(37799,93035,'Mr. Kenwright',2,28),(37799,42317,'Maurice',2,29),(37799,1069630,'Ashleigh',1,30),(37799,170321,'Mackey',2,31),(37799,118546,'Gretchen\'s Associate',0,32),(37799,210334,'Beautiful Woman',0,33),(37799,230060,'Stoned Girl',1,34),(37799,1225911,'Facebook Lawyer',0,35),(37799,61256,'B.U. Guy in Bra',2,36),(37799,115406,'Phoenix Club President',2,37),(37799,1457056,'Phoenix Club Pledge',0,38),(37799,135853,'Phoenix Member Playing Facemash',0,39),(37799,1534711,'Student Playing Facemash',0,40),(37799,1534712,'Student Playing Facemash',0,41),(37799,1432597,'Student Playing Facemash',0,42),(37799,54698,'Erica\'s Roommate',1,43),(37799,1500116,'Student in Communications Office',0,44),(37799,168800,'Court Reporter',1,45),(37799,928532,'Tyler Winklevoss',0,46),(37799,97857,'Ad Board Chairwoman',1,47),(37799,89708,'CS Lab Professor',0,48),(37799,1439098,'Phoenix Club Hazer',0,49),(37799,90859,'KC\'s Friend',0,50),(37799,156523,'Larry Summers\' Secretary',0,51),(37799,13520,'Ad Executive',2,52),(37799,992282,'Intern Eric',2,53),(37799,1424524,'Intern Ian',0,54),(37799,1495439,'Prince Albert\'s Aide',0,55),(37799,1223682,'Bank Teller',0,56),(37799,1373392,'Peter Thiel\'s Assistant',0,57),(37799,1235973,'Facebook Lawyer',2,58),(37799,168897,'Sorority Girl',1,59),(37799,78342,'Sorority Girl',1,60),(37799,572541,'Fraternity Guy',2,61),(37799,220056,'Policeman',0,62),(37799,76037,'Policeman',2,63),(37799,1535475,'Student (uncredited)',0,64),(37799,168872,'Student (uncredited)',2,65),(37799,1505370,'Student Playing Facemash (uncredited)',0,66),(37799,1535487,'Bob (uncredited)',0,67),(37799,1535488,'Harvard Student (uncredited)',0,68),(37799,1457537,'Harvard Student (uncredited)',0,69),(37799,1075815,'Harvard Student (uncredited)',0,70),(37799,1535489,'Harvard Student (uncredited)',0,71),(37799,1535490,'Harvard Student (uncredited)',0,72),(37799,587221,'Party Girl (uncredited)',0,73),(37799,1475368,'Party Girl (uncredited)',0,74),(37799,1415309,'B.U. Guy in Bra #2 (uncredited)',0,75),(37799,1278367,'Mr. Edwards (uncredited)',0,76),(37799,1446877,'Waiter (uncredited)',0,77),(37799,989187,'Waiter (uncredited)',2,78),(37799,1480058,'Luther (uncredited)',2,79),(37799,973,'Regatta Spectator (uncredited)',2,80),(37799,1535492,'Pedestrian (uncredited)',0,81),(37799,1448129,'MIT Student (uncredited)',0,82),(37799,1460913,'Popular Harvard Student (uncredited)',0,83),(37799,49305,'Sorority Girl (uncredited)',0,84),(37799,928116,'Dancer (uncredited)',1,85),(37799,1505365,'Dancer (uncredited)',0,86),(37799,1418493,'Go-Go Dancer (uncredited)',0,87),(37799,1173855,'Harvard Note-Passer (uncredited)',0,88),(37799,1262237,'Final Club Girl (uncredited)',0,89),(37799,1058848,'Final Club Girl (uncredited)',1,90),(37799,1535510,'Romantic Girlfriend (uncredited)',0,91),(37799,206036,'Club Waitress (uncredited)',0,92),(37799,1354417,'Dorm Room Guy #2 (uncredited)',0,93),(37799,1378735,'Ruby Skye Waitress (uncredited)',1,94),(37799,1018821,'Club 66 Girl (uncredited)',0,95),(37799,69503,'Art History Professor (uncredited)',1,96),(37799,1309431,'Club-Goer (uncredited)',1,97),(37799,1656064,'Bobby\'s Friend',2,98),(257091,23659,'James',2,0),(257091,55638,'Darnell Lewis',2,1),(257091,88029,'Alissa',1,2),(257091,8977,'Martin',2,3),(257091,76126,'Russell',0,4),(257091,1478382,'Rita',1,5),(257091,1459830,'Cecelio',2,6),(257091,1141877,'Makayla',0,7),(257091,85142,'Gayle Burns',2,8),(257091,85930,'John Mayer',2,9),(257091,231857,'Big Mike',0,10),(257091,1427711,'Jaoa',0,11),(257091,1183546,'Leo',2,12),(257091,19974,'Peter Penny',2,13),(257091,1451394,'Alissa\'s Friend',0,14),(257091,1260038,'Jojo',0,15),(257091,1347310,'Alissa\'s Friend',1,16),(257091,550319,'Rosa',1,17),(257091,1682512,'Client (uncredited)',1,18),(257091,1173099,'Spider',2,19),(257091,1123886,'Groupie',0,20),(257091,159461,'Judge',2,21),(257091,59841,'Bathroom Stall Man',2,22),(257091,1088040,'Alissa\'s Friend',0,23),(257091,131423,'Big Guy #3 (uncredited)',0,24),(257091,177403,'FBI Agent',2,25),(257091,1381388,'Skinhead',0,26),(257091,1436978,'Cross Dresser',2,27),(257091,1690473,'Trader',2,28),(257091,1676832,'Rico',2,29),(257091,11669,'Jimmy Fallon',2,30),(109410,172069,'Jackie Robinson',2,0),(109410,164205,'Harold Parrott',2,1),(109410,3,'Branch Rickey',2,2),(109410,87243,'Rachel Isum',1,3),(109410,22227,'Leo Durocher',2,4),(109410,11885,'Red Barber',2,5),(109410,57136,'Dixie Walker',0,6),(109410,169476,'Laraine Day',1,7),(109410,16841,'Clay Hopper',2,8),(109410,19227,'Kirby Higbe',2,9),(109410,155,'Pee Wee Reese',2,10),(109410,459980,'Wendell Smith',2,11),(109410,21088,'Ben Chapman',2,12),(109410,184581,'Ralph Branca',2,13),(109410,25544,'Mr. Brock',2,14),(109410,150664,'Joe Garagiola',0,15),(109410,1107298,'Alice',1,16),(109410,1383482,'Baseball Fan',1,17),(109410,18271,'Clyde Sukeforth',2,18),(109410,116579,'Burt Shotton',2,19),(109410,62597,'Happy Chandler',2,20),(109410,16506,'Max',2,21),(100042,206,'Lloyd Christmas',2,0),(100042,8447,'Harry Dunne',2,1),(100042,176497,'Penny',1,2),(100042,3391,'Fraida',1,3),(100042,77547,'Billy',2,4),(100042,8332,'Adele',1,5),(100042,58512,'Dr. Pinchelow',2,6),(100042,71403,'Travis / Captain Lippincott',2,7),(100042,27530,'Dr. Meldman',2,8),(100042,128207,'Ms. Sourpuss',1,9),(100042,1383478,'Man at Gas Station',0,10),(100042,51699,'Dr. Walcott',1,11),(100042,43231,'Emergency Room Doctor',2,12),(100042,1215759,'Gordy',0,13),(100042,1383480,'Gus',0,14),(100042,204419,'Tom',2,15),(100042,1092419,'Professor Garabedian',2,16),(100042,979412,'Inventor No. 1',2,17),(100042,1532,'Ice Pick',2,18),(100042,116433,'Mr. Stainer',2,19),(100042,1382356,'Mrs. Steiner',1,20),(100042,1224127,'Asylum Nurse No. 1',0,21),(100042,1383481,'Conference Attendee',0,22),(100042,1383482,'Young Inventor',1,23),(100042,1383483,'Hospital Visitor',0,24),(100042,1383484,'Conference Patron',0,25),(100042,1383486,'Patron',0,26),(100042,1383487,'Orderly',0,27),(100042,60009,'Prom Singer',0,28),(100042,1383490,'Street Patron',2,29),(100042,1383491,'Upscale Guest',1,30),(100042,1383493,'Computer Convention Attendee',0,31),(100042,1285499,'Waitress',0,32),(100042,1383495,'Ken Philanthropist',0,33),(100042,1383496,'Officer Stone',0,34),(100042,1383498,'Electronic Convention Attendee',0,35),(100042,1383499,'Mariachi Trumpet Player',0,36),(100042,1383501,'Waiter',0,37),(100042,1383502,'KEN Convention Employee',0,38),(100042,1383504,'Audience Member',0,39),(100042,1383505,'KEN Audience Member',0,40),(100042,1383507,'KEN Convention Employee',0,41),(100042,1383509,'Fanny at Age 13',0,42),(100042,1383511,'Store Clerk',0,43),(100042,1383512,'Fanny at Age 5',0,44),(100042,1383514,'Club-Goer',0,45),(100042,1020027,'Young Fraida',1,46),(100042,1235997,'Dr. Dilbeck',0,47),(100042,1309646,'EMT',0,48),(100042,1383515,'Prom Attendee',0,49),(100042,1383516,'Young Harry',0,50),(100042,1383517,'Conference Patron',0,51),(100042,1383518,'Club Patron',0,52),(100042,1383519,'KEN Vendor',0,53),(100042,1383520,'Gas Station Patron',0,54),(100042,1383521,'KEN Convention Attendee',0,55),(100042,1383522,'Doctor',2,56),(100042,1383523,'Knitting Lady on porch',0,57),(100042,1383524,'Security Guard',0,58),(100042,1383525,'Audience Member',0,59),(100042,1383526,'Chaperone',0,60),(100042,1383527,'Receptionist',1,61),(100042,1383528,'Pedestrian',0,62),(100042,1383529,'Park Patron',0,63),(100042,1383530,'Prom Attendee',0,64),(100042,1383531,'Convention Center Nerd',0,65),(100042,1383532,'Convention Official',0,66),(100042,1383533,'KEN Converence Attendee',0,67),(100042,1383533,'KEN Conference Attendee',0,68),(100042,1383534,'KEN Convention Employee',1,69),(100042,1383535,'Inventor No. 2',0,70),(100042,1204292,'Hospital Visitor',2,71),(100042,1383536,'Hospital Visitor',1,72),(100042,1383537,'Mental patient',0,73),(100042,1383538,'KEN Con Scientist',0,74),(100042,1383539,'Hospital Visitor',0,75),(100042,1383540,'Audience Member',0,76),(100042,1383541,'Scientist',0,77),(100042,1383542,'Neighbor',0,78),(100042,1309641,'Street Patron',0,79),(100042,1386858,'Harry\'s Trailer Park Wife',0,80),(100042,1224543,'KEN Conference Attendee',2,81),(257211,380,'Ben Whittaker',2,0),(257211,1813,'Jules Ostin',1,1),(257211,14343,'Fiona',1,2),(257211,521563,'Matt',2,3),(257211,1561685,'Paige',1,4),(257211,990369,'Cameron',2,5),(257211,212604,'Jason',2,6),(257211,130535,'Davis',2,7),(257211,1561688,'Lewis',2,8),(257211,1368787,'Becky',1,9),(257211,232006,'Justin',2,10),(257211,113223,'Patty',1,11),(257211,1989,'Doris',1,12),(257211,1363367,'Mike',2,14),(257211,5960,'Jules\'s Mom',1,15),(257211,1242306,'Jane',1,16),(257211,69483,'Emily',1,17),(257211,1370752,'ATF Interviewer #1',1,18),(257211,1551382,'ATF Interviewer #2',1,19),(257211,1422977,'ATF Receptionist',1,20),(257211,1417738,'ATF Creative Team',1,21),(257211,208160,'Mia',1,22),(257211,93015,'Hotel Manager',1,23),(257211,88948,'Miles',2,24),(257211,1625687,'Kindergarten Teacher (uncredited)',1,25),(323675,55638,'Ben Barber',2,0),(323675,9778,'James Payton',2,1),(323675,81364,'Maya',1,2),(323675,110742,'Angela Payton',1,3),(323675,83586,'AJ',2,4),(323675,8169,'Mayfield',2,5),(323675,65196,'Tasha',1,6),(323675,4589,'Antonio Pope',2,7),(323675,83271,'Troy',2,8),(323675,109561,'Cori',1,10),(323675,929511,'Amir',2,11),(323675,14888,'Lt. Brooks',2,13),(323675,1126417,'Alonso',0,14),(323675,115874,'Captain Hernandez',0,15),(323675,97844,'Port Commissioner Nuu00f1ez',0,16),(323675,1377385,'Shayla',1,17),(323675,162849,'Port Commissioner Griffin',2,18),(323675,1318798,'Assface',2,19),(323675,53330,'The Hitter / Gates',2,20),(323675,1769768,'Bikini Shop Customer',0,21),(323675,1769769,'Bikini Shop Customer',0,22),(323675,1648749,'Troy\'s #2',0,23),(323675,1349052,'Troy\'s #3',0,24),(323675,1769773,'Party Door Guard',0,25),(323675,1767214,'Party Security Guard',0,26),(323675,237345,'Little Havana Dad',0,27),(323675,118367,'El Republico Security',0,28),(323675,1604964,'Hostess',0,29),(323675,1659263,'Club Girl',0,30),(323675,174837,'Preacher',1,31),(323675,1077805,'Server',0,32),(323675,1325939,'Doorman',0,33),(323675,1502670,'Dancer',0,34),(323675,1386325,'Guard',0,35),(323675,1769802,'Guard',0,36),(323675,1769803,'Guard',0,37),(323675,24969,'Driver',2,38),(323675,1769804,'Bikini Salesgirl',0,39),(323675,1399126,'Latina Girl',1,40),(323675,1769805,'Drunk Woman',0,41),(323675,1690514,'Guard',0,42),(323675,1769807,'Party Waitress',0,43),(323675,1156259,'Little Havana Man',0,44),(323675,1769808,'Little Havana Girl on Swing',0,45),(323675,1381988,'Child',0,46),(323675,1769809,'Dancer',0,47),(323675,1769810,'Guard',0,48),(323675,1282418,'Hostess #2 (uncredited)',1,49),(323675,1461926,'Party Guest (uncredited)',0,50),(323675,1737033,'Bikini Model (uncredited)',1,51),(323675,1769811,'Bikini Girl (uncredited)',0,52),(323675,1628107,'Pope\'s Girl (uncredited)',1,53),(323675,1460211,'Beach Goer (uncredited)',1,54),(323675,1769814,'Bikini Girl (uncredited)',0,55),(323675,1754140,'Bikini Beach Girl (uncredited)',1,56),(323675,1754141,'Businesswoman (uncredited)',1,57),(323675,1591185,'Miami Babe (uncredited)',1,58),(323675,1769816,'Bikini Customer (uncredited)',0,59),(323675,559644,'Girl with Lowrider (uncredited)',0,60),(323675,1769817,'Jukebox Girl (uncredited)',0,61),(323675,1762653,'Santeria Dancer (uncredited)',0,62),(323675,1494526,'Bartender (uncredited)',0,63),(323675,145553,'Party Girl (uncredited)',1,64),(323675,1769820,'Reporter (uncredited)',0,65),(323675,1769821,'Extra (uncredited)',0,66),(323675,1769822,'Cherry Red, Hot Club Girl (uncredited)',0,67),(323675,224100,'Lemon Pepper (uncredited)',2,68),(323675,1427009,'Shopping Girl / Beach Goer (uncredited)',0,69),(323675,76126,'Tony David (uncredited)',0,70),(323675,1737094,'Bikini Model (uncredited)',1,71),(323675,968922,'Himself (uncredited)',2,72),(323675,1769823,'VIP Club Flirt (uncredited)',0,73),(193610,6941,'Carly Whitten',1,0),(193610,41087,'Kate King',1,1),(193610,974317,'Amber',1,2),(193610,25129,'Frank',0,3),(193610,12795,'Mark King',2,4),(193610,210271,'Phil',2,5),(193610,968660,'Lydia',1,6),(193610,1031261,'Cece',1,7),(193610,76526,'Nick',2,8),(193610,1577501,'Busboy',2,9),(193610,979216,'Fernando',2,10),(193610,208659,'Waitress',0,11),(193610,1577503,'Raven-Haired Beauty',1,12),(193610,1319530,'Receptionist',1,13),(193610,1577506,'Woman at Deli',1,14),(193610,158155,'Hot Girl',1,15),(296098,31,'James B. Donovan',2,0),(296098,40900,'Rudolf Abel',2,1),(296098,39388,'Mary Donovan',1,2),(296098,21278,'Thomas Watters Jr.',2,3),(296098,8197,'Wolfgang Vogel',2,4),(296098,970216,'Francis Gary Powers',2,5),(296098,141034,'Doug Forrester',2,6),(296098,1371012,'Reporter',0,7),(296098,91453,'Chief Justice Earl Warren',2,8),(296098,79991,'William Tompkins',2,9),(296098,205128,'Man in Courtroom',2,10),(296098,167080,'Gentleman on Subway #2',2,11),(296098,1066138,'NYPD',0,12),(296098,1083807,'Courthouse Reporter #1',0,13),(296098,17817,'Soviet Main Interrogator',2,14),(296098,968746,'NYPD Lieutenant James',2,15),(296098,1475960,'Hoffman',0,16),(296098,88124,'Joe Murphy',2,17),(296098,17941,'Agent Blasco',2,18),(296098,933271,'Carol Donovan',1,19),(296098,1393177,'Roger Donovan',2,20),(296098,1576820,'Peggy Donovan',1,21),(296098,33241,'Agent Williams',2,22),(296098,19489,'Allen Dulles',2,23),(296098,34544,'Bates',2,24),(296098,28345,'Soviet Judge - Powers\' Trial',2,25),(296098,1526122,'Reporter',2,26),(296098,1526123,'FBI Agent',2,27),(296098,3934,'Harald Ott',2,28),(296098,115876,'Ivan Schischkin',2,29),(296098,28432,'Ott\'s Secretary',2,30),(296098,171701,'Agent Gamber',2,31),(296098,1544395,'FBI Agent #1',2,32),(296098,77093,'FBI Agent #2',2,33),(296098,43364,'Judge Byers',2,34),(296098,1472780,'Police Officer - Brooklyn Courthouse',2,35),(296098,1000883,'Lynn Goodnough',2,36),(296098,1320502,'Lie Detector Test Administrator',0,37),(296098,169676,'Agent Somner',2,38),(296098,1422662,'U2 Pilot',2,39),(296098,1576851,'Bailiff',2,40),(296098,1576857,'Teacher',1,41),(296098,77264,'Classroom Teacher',1,42),(296098,1422571,'Marty',2,43),(296098,1218217,'Partner at Watters Law Firm',2,44),(296098,1188239,'Frederic Pryor',0,45),(296098,149126,'Family #1 at Berlin Wall Construction',1,46),(296098,34353,'Katje',1,47),(296098,61016,'Pinker',2,48),(296098,1405915,'Older Lady on Subway',1,49),(296098,209503,'Receptionist',1,50),(296098,1600084,'Classroom Boy #1',0,51),(296098,1602044,'Classroom Girl #1',0,52),(296098,928909,'Classroom Girl #2',1,53),(296098,1465283,'Agent Faye',2,54),(296098,48393,'Soviet Translator',0,55),(296098,51651,'East German Officer (uncredited)',0,56),(296098,1309014,'Cab Driver (uncredited)',2,57),(296098,176777,'Courthouse Reporter',0,58),(296098,146367,'Angry NYPD Cop',0,59),(296098,1446471,'Lunch Box Neighbor (uncredited)',0,60),(296098,1509064,'Courtroom Reporter (uncredited)',2,61),(296098,1086352,'East German Youth',2,62),(296098,1202712,'Neighbor (uncredited)',2,63),(296098,1695767,'Justice Lafayette Black (uncredited)',2,64),(296098,45953,'Cousin Drews',2,65),(50348,10297,'Mickey Haller',2,0),(50348,3141,'Maggie McPherson',1,1),(50348,11864,'Louis Roulet',2,2),(50348,3905,'Frank Levin',2,3),(50348,6164,'Ted Minton',1,4),(50348,5723,'Val Valenzuela',2,5),(50348,454,'Jesus Martinez',2,6),(50348,4029,'Cecil Dobbs',2,7),(50348,3713,'Mary Windsor',1,8),(50348,17419,'Detective Lankford',2,9),(50348,85477,'Eddie Vogel',2,10),(50348,65141,'Earl',2,11),(50348,59237,'Reggie Campo',1,12),(50348,4441,'Lorna',1,13),(50348,74242,'DJ Corliss',2,14),(50348,122231,'Gloria',1,15),(50348,60650,'Detective Kurlen',2,16),(50348,122237,'Heidi Sobel',1,17),(50348,207628,'Hayley Haller',0,18),(50348,650356,'Leslie Faire',1,19),(50348,1614471,'Officer Maxwell',2,20),(48138,3896,'Dr. Martin Harris',2,0),(48138,9824,'Gina',1,1),(48138,31717,'Elizabeth Harris',1,2),(48138,18992,'Martin B.',2,3),(48138,2310,'Ernst Ju00fcrgen',2,4),(48138,8924,'Rodney Cole',2,5),(48138,8197,'Professor Leo Bressler',2,6),(48138,228881,'Smith',0,7),(48138,3933,'Jones',0,8),(48138,65054,'Herr Strauss',2,9),(48138,107561,'Prince Shada',2,10),(48138,109383,'Biko',2,11),(48138,38459,'Dr. Farge',0,12),(48138,7161,'Nurse Gretchen Erfurt',1,13),(48138,971357,'Laurel Bressler',1,14),(48138,20615,'Turkish Taxi Driver',2,15),(48138,971358,'Lily Bressler',1,16),(48138,38622,'Airport Taxi Driver',2,17),(227159,23532,'Nick Hendricks',2,0),(227159,58224,'Kurt Buckman',2,1),(227159,95101,'Dale Arbus',2,2),(227159,4491,'Dr. Julia Harris, D.D.S.',1,3),(227159,1979,'Dave Harken',2,4),(227159,134,'Dean MF Jones',2,5),(227159,62064,'Rex Hanson',2,6),(227159,27319,'Bert Hanson',2,7),(227159,783,'Detective Hatcher',2,8),(227159,41662,'Stacy Arbus',1,9),(227159,298410,'Mike',2,10),(227159,107791,'Rachel',1,11),(227159,61113,'Skip',2,12),(227159,1429453,'Producer',2,13),(227159,132312,'Candy',0,14),(227159,180527,'Lupe',1,15),(227159,1429456,'Ray',0,16),(227159,111684,'Roz',1,17),(227159,1816403,'Hockey Fan (uncredited)',1,18),(68179,18269,'Scorch Supernova (Voice)',2,0),(68179,52997,'Gary Supernova (voice)',2,1),(68179,17835,'Mr Bing (Voice)',2,2),(68179,56731,'Lena (Voice)',1,3),(68179,520,'Kira Supernova (Voice)',1,4),(68179,95102,'Gabby Babblebrook',1,5),(68179,41345,'Alien',1,6),(68179,170185,'Ralph',2,7),(68179,63522,'Gabby (Voice)',1,9),(68179,18324,'Hawk (Voice)',2,10),(68179,64342,'Doc (Voice)',2,11),(68179,43775,'Io (Voice)',1,12),(68179,576511,'Kip Supernova (voice)',0,13),(68179,51382,'Hammer (voice)',0,14),(68179,1748,'General Shanker (voice)',2,15),(68179,78317,'3D Movie Guy (voice)',2,16),(68179,41798,'Thurman (voice)',2,17),(71864,9278,'Cindy Green',1,0),(71864,33192,'Jim Green',2,1),(71864,17402,'Franklin Crudstaff',2,2),(71864,14892,'Brenda Best',1,3),(71864,1107800,'Timothy Green',2,4),(71864,1108054,'Dash Best',0,5),(71864,1108057,'Billy CrudStaff',0,7),(71864,1108059,'Bobby Crudstaff',0,8),(71864,1121786,'Joni Jerome',1,9),(71864,21041,'Evette Onat',1,10),(71864,52,'James Green, Sr.',2,11),(71864,588,'Uncle Bub',2,12),(71864,2207,'Aunt Mel',1,13),(71864,1902,'Ms. Bernice Crudstaff',1,14),(71864,8986,'Joseph Crudstaff',2,16),(71864,4238,'Coach Cal',0,17),(71864,1179651,'Reggie',2,18),(71864,1544037,'Little Boy in Elevator',0,19),(71864,83874,'Doug Wert',2,20),(71864,51456,'Doctor Lesley Hunt',1,21),(71864,935721,'Mother at Doctor\'s Office',0,22),(71864,1541155,'Nurse',1,23),(71864,1034526,'Rod Best',2,24),(209451,4690,'Angelo u201cGypu201d DeCarlo',2,0),(209451,85924,'Tommy Devito',2,1),(209451,526727,'Francine Valli',1,2),(209451,65395,'Stosh',2,3),(209451,9996,'Engneer',2,4),(209451,17920,'Mary Rinaldi',1,5),(209451,1274513,'Waitress',1,6),(209451,27107,'Bob Crewe',2,7),(209451,97188,'Vito',0,8),(209451,75344,'Accountant',2,9),(209451,1260031,'Party Girl',0,10),(209451,112879,'Donnie',0,11),(209451,1274514,'Producer\'s Wife',0,12),(209451,1218154,'Frank Valli',0,13),(209451,1192928,'Bob Gaudio',2,14),(209451,1066732,'Nick Massi',0,15),(209451,1378648,'Nick DeVito',0,16),(209451,1058023,'Joey',0,17),(209451,64344,'Our Sons Owner',2,18),(209451,1227898,'Billy Dixon',2,19),(209451,1378650,'Francine (age 7)',0,20),(209451,1122245,'Angela',0,21),(209451,1378651,'Mary Delgado',0,22),(209451,966750,'Lorraine',1,23),(209451,131125,'Barry Belson',2,24),(209451,1378656,'Joe Long',0,25),(209451,1378661,'Ed Sullivan',0,26),(209451,1378662,'Johnny',0,27),(209451,1378663,'Bubble-Head #2',0,28),(209451,154816,'Officer Mike',2,29),(209451,191435,'Art Loving Woman',1,30),(209451,1378664,'Officer Stanley',0,31),(209451,1378667,'Angel #2',0,32),(209451,159720,'Engineer #2',2,33),(209451,1378683,'Jazz Singer',1,34),(209451,1378685,'Rockabilly Singer',0,35),(209451,167139,'Publisher #3',2,36),(209451,82581,'Priest',2,37),(209451,1214866,'Bubble-Head #1',0,38),(209451,181398,'New Season #4',0,39),(209451,1141000,'Backup Musician #2',2,40),(209451,1378718,'Nick\'s Date',0,41),(209451,1378731,'Biker Inmate',0,42),(209451,108753,'Angel #1',1,43),(209451,1378735,'Waitress',1,44),(209451,54714,'Knuckles',2,45),(209451,1378737,'Bad-News Boyfriend',0,46),(209451,1378738,'Guy at the Bar',0,47),(209451,1378739,'Norm Waxman',2,48),(209451,1235980,'Detective #1',0,49),(209451,1378740,'Angel #3',0,50),(209451,1378775,'Country Singer',0,51),(209451,1378776,'Coat Check Girl',0,52),(209451,1296721,'Crewe Bartender',0,53),(209451,1276803,'Journalist',0,54),(209451,1346430,'Frankie\'s Father',0,55),(209451,105013,'Holiday Inn Clerk',2,56),(209451,189785,'Publisher #1',2,57),(209451,1378789,'Backup Musician #1',0,58),(209451,1378792,'Publisher #2',0,59),(209451,180424,'Attractive Woman',0,60),(209451,1214843,'Angry Woman',0,61),(209451,1378806,'Scantily Clad Woman',1,62),(209451,1378815,'Charles Calello',0,63),(209451,1378816,'New Seasons #3',0,64),(209451,1378817,'Antonia Valli',0,65),(209451,1378818,'Stage Manager',0,66),(209451,1378820,'Hank Majewski',0,67),(209451,1378823,'Jazz-Cat',0,68),(209451,1735359,'Francine (age 4)',0,69),(209451,61079,'Nun',1,70),(39513,19274,'Paul (voice)',2,0),(39513,11108,'Graeme Willy',2,1),(39513,11109,'Clive Gollings',2,2),(39513,23532,'Special Agent Lorenzo Zoil',2,3),(39513,41091,'Ruth Buggs',1,4),(39513,19278,'Haggard',2,5),(39513,10401,'Tara Walton',1,6),(39513,21131,'O\'Reilly',2,7),(39513,3911,'Moses Buggs',2,8),(39513,43775,'Pat Stevenson',1,9),(39513,28638,'Gus',2,10),(39513,88124,'Jake',2,11),(39513,10205,'Tara',1,12),(39513,4175,'Adam Shadowchild',2,13),(39513,488,'Himself',2,14),(39513,223176,'Adam Shadowchild Fan',0,15),(39513,129713,'Young Tara',1,16),(82687,19274,'Andy Brewster',2,0),(82687,10400,'Joyce Brewster',0,1),(82687,63312,'Jessica',1,2),(82687,3492,'Rob',2,3),(82687,36801,'Andrew Margolis Jr.',2,4),(82687,205179,'Sanjay',2,5),(82687,11074,'',1,6),(82687,83872,'Amanda',1,7),(82687,16841,'Ben',2,8),(82687,46814,'Tammy',1,9),(82687,56556,'Fake Andy',2,10),(82687,149829,'',2,11),(82687,233298,'Bob Ferguson',2,12),(82687,71552,'Joyce Margolis',1,13),(82687,4496,'Amy',1,14),(82687,6199,'Anita',1,15),(41446,15234,'Sheriff Dwight \'Dewey\' Riley',2,0),(41446,9206,'Sidney Prescott',1,1),(41446,14405,'Gale Weathers-Riley',1,2),(41446,34847,'Jill Roberts',1,3),(41446,17265,'Kirby Reed',1,4),(41446,18471,'Detective Perkins',2,5),(41446,11702,'Detective Hoss',2,6),(41446,28042,'Charlie Walker',2,7),(41446,1581,'Kate Roberts',1,8),(41446,6407,'Judy Hicks',1,9),(41446,88029,'Rebecca Walters',1,10),(41446,127127,'Olivia Morris',1,11),(41446,127128,'Trevor Sheldon',2,12),(41446,2681,'Robbie Mercer',0,13),(41446,10690,'Rachel',1,14),(41446,40462,'Chloe',1,15),(41446,205307,'Sherrie',1,16),(41446,88619,'Trudie',1,17),(41446,52018,'Marnie Cooper',1,18),(41446,145836,'Jenny Randall',1,19),(41446,51957,'The Voice (voice)',0,20),(41446,127130,'TV Host',1,21),(41446,127129,'Film Geek',0,22),(41446,127131,'Cocky Student',0,23),(225886,6941,'Annie',1,0),(225886,41088,'Jay',2,1),(225886,52997,'Robby',2,2),(225886,475512,'Tess',1,3),(225886,2879,'Hank',2,4),(225886,105648,'Max',2,5),(225886,9279,'Linda',1,6),(225886,1306572,'Nell',0,7),(225886,1373304,'Howard',0,8),(225886,1373306,'Clive',0,9),(225886,169198,'Walt',2,10),(225886,1306652,'Marta',0,11),(225886,79082,'Edward',2,12),(225886,70851,'YouPorn Owner',2,13),(225886,1373307,'Piper Bros. Executive',0,14),(225886,151278,'Charlie Newhouse (Radio DJ)',2,15),(225886,68276,'Catalina',1,16),(225886,1384191,'Rosie',0,17),(225886,1384197,'Beth',0,18),(225886,466505,'Punit',2,19),(225886,1214638,'Kia',0,20),(225886,1384234,'Bodyguard',0,21),(225886,205231,'Principal Rodriguez',0,22),(225886,1384236,'Helper',0,23),(225886,88971,'Mailman',2,24),(225886,1384237,'Doctor',0,25),(225886,1384239,'Parent',0,26),(225886,1825230,'Graduation Guest',0,27),(55779,131820,'Molly',1,0),(55779,37059,'Sam',2,1),(55779,1223185,'Peter Friedkin',2,2),(55779,223124,'Candice Hooper',1,3),(55779,103389,'Olivia Castle',1,4),(55779,1211946,'Isaac',2,5),(55779,78432,'Nathan',2,6),(55779,28638,'Dennis',2,7),(55779,24047,'Agent Block',2,8),(55779,19384,'Bludworth',2,9),(55779,27127,'Roy',2,10),(188161,52139,'Albert Stark',2,0),(188161,6885,'Anna',1,1),(188161,3896,'Clinch',2,2),(188161,71070,'Louise',1,3),(188161,41686,'Foy',2,4),(188161,1771,'Edward',2,5),(188161,7404,'Ruth',1,6),(188161,1112414,'George Stark',0,7),(188161,15853,'Cochise',2,8),(188161,2454,'Old Prospector',2,9),(188161,333,'Lewis',2,10),(188161,583845,'Ben',2,11),(188161,16937,'Sheriff / Narrator',2,12),(188161,12549,'Charlie Blanche',2,13),(188161,24357,'Millie',1,14),(188161,60286,'Dan',2,15),(188161,103833,'Pastor Wilson',2,16),(188161,78789,'Doctor Harper',2,17),(188161,169893,'Marcus Thornton',2,18),(188161,19190,'Snake Oil Salesman',2,19),(188161,1062,'Doc Brown (Uncredited)',2,20),(188161,15832,'Abraham Lincoln',2,21),(188161,3061,'Cowboy at Fair',2,22),(188161,8265,'Dandy #1',2,23),(188161,1224543,'Dandy #2',2,24),(188161,210154,'Vendor',2,25),(188161,1092893,'Cowboay Ardy',2,26),(188161,570785,'Guy at Fair',2,27),(188161,1112417,'Other Apache',0,28),(188161,1244933,'Angry Cowboy',2,29),(188161,78602,'Elsie Stark',0,30),(188161,1367771,'Cowboy at Table',0,31),(188161,85419,'Pastor\'s Son',2,32),(188161,1542939,'Dirty Cowboy',0,33),(188161,1542940,'6 year old Albert',0,34),(188161,1542941,'Photographer',0,35),(188161,1542942,'Teacher',0,36),(188161,1105706,'Cowboy #1',0,37),(188161,1240490,'Ruth\'s Cowboy Client',2,38),(188161,1195834,'Other Cowboy',0,39),(188161,80378,'12 Year Old Albert',2,40),(188161,175570,'Female Passenger',1,41),(188161,134,'Django (uncredited)',2,42),(188161,10859,'Random Cowboy (uncredited)',2,43),(64685,929136,'Oskar Schell',2,0),(64685,31,'Thomas Schell',2,1),(64685,18277,'Linda Schell',1,2),(64685,2201,'The Renter',2,3),(64685,1230,'Stan the Doorman',2,4),(64685,19492,'Abby Black',1,5),(64685,2954,'William Black',2,6),(64685,937681,'Oskar\'s Grandmother',1,7),(64685,91756,'Hazelle Black',0,8),(64685,94432,'Hector Black',2,9),(64685,196179,'Walt the Locksmith',2,10),(64685,928297,'Minister',2,11),(64685,171567,'Homeless Man',2,12),(64685,928929,'Deli Waiter',2,13),(64685,928930,'Schoolboy',2,14),(64685,1292449,'Boris Black',0,15),(64685,56685,'Astrid Black',1,16),(64685,1209879,'Aurelia Black',1,17),(64685,204651,'Elaine Black',1,18),(64685,1232487,'Malachi Black',0,19),(64685,1601831,'Locksmith Customer',1,20),(38357,53714,'Becky Fuller',1,0),(38357,3,'Mike Pomeroy',2,1),(38357,17178,'Adam Bennett',2,2),(38357,4785,'Jerry Barnes',2,3),(38357,3092,'Colleen Peck',1,3),(38357,62644,'Himself',2,4),(38357,120244,'Day Break Producer #3',1,5),(38357,111945,'First Date',2,6),(38357,143235,'Anna',0,7),(38357,143236,'Sam',0,8),(38357,143237,'Louanne',1,9),(38357,143238,'Ralph',0,10),(38357,143239,'Channel 9 Director',0,11),(38357,55276,'Oscar',2,12),(38357,38160,'Becky\'s Mom',1,13),(38357,15232,'Paul McVee',2,14),(62835,8691,'Cataleya Restrepo',1,0),(62835,7248,'Emilio',2,1),(62835,68287,'Richard',2,2),(62835,15424,'Danny Delanay',2,3),(62835,1120,'Special Agent Ross',2,4),(62835,561869,'Cataleya Restrepo (Age10)',1,5),(62835,95047,'Head Marshall Warren',2,6),(62835,58647,'Fabio',2,7),(62835,182272,'Alicia',1,8),(62835,104982,'Mama',0,9),(62835,31384,'Marco',2,10),(62835,54807,'Genarro Rizzo',2,11),(62835,94864,'Agent Robert Williams',2,12),(62835,185296,'Sergeant Bill Attwood',0,13),(62835,1023670,'Don Luis',0,14),(62835,17072,'William Woodgard',0,15),(62835,1023671,'Pepe',0,16),(62835,16500,'SWAT',0,17),(80278,3489,'Maria Bennett',1,0),(80278,3061,'Henry Bennett',2,1),(80278,1136406,'Lucas Bennett',2,2),(80278,1304662,'Thomas Bennett',0,3),(80278,1207881,'Simon Bennett',0,4),(80278,587930,'Simone',0,5),(80278,147446,'Karl Schweber',2,6),(80278,400,'Old Woman',1,7),(80278,1026231,'Caregiver',0,8),(80278,1467497,'Red Cross Nurse',0,9),(80278,1176194,'Daniel',0,10),(80278,1467498,'Daniel\'s Father',0,11),(80278,1467499,'Old Thai Man',0,12),(80278,1467500,'Young Thai Man',0,13),(80278,135722,'Mr. Benstrom',2,14),(80278,132988,'Oliver Tudpole',2,15),(80278,63758,'Norwegian Patient',1,16),(78698,69597,'Rachel Kramer',1,0),(78698,17697,'Adam Carlson',2,1),(78698,40462,'Jill Jerard',1,2),(78698,5025,'Kelly Meyers',1,3),(78698,20212,'Colonel Scott Boyer',2,4),(78698,12836,'J. W. McGraw',2,5),(78698,1907,'Ruth McGraw',1,6),(78698,1462,'Pat Lafaytette',2,7),(78698,17401,'Governor Haskell',2,8),(78698,8265,'Wes Handrick',2,9),(78698,27545,'Chief of Staff',2,10),(78698,95875,'Don Davis',2,11),(78698,1632937,'Frank',2,12),(78698,1632938,'Don Carr',2,13),(78698,1600463,'Stu',2,14),(78698,71403,'Dean Glowacki',2,15),(78698,6474,'Karl Hootkin',2,16),(78698,1096595,'Barrow Street Reporter',2,17),(78698,80507,'Yuri',2,18),(78698,6696,'Dimitri',2,19),(78698,74242,'SAR Pilot Conrad',2,20),(78698,492716,'Herself',1,21),(78698,33241,'Porter Beckford',2,22),(78698,1678190,'Roy',2,23),(78698,1633393,'Nathan',2,24),(78698,1633398,'Malik',2,25),(78698,1633401,'Dana',1,26),(78698,1633404,'Shayna Dobler',1,27),(78698,1633405,'Minneapolis Reporter',1,28),(78698,24360,'General Stanton',2,29),(78698,1633437,'Prudhoe Bay Reporter',2,30),(78698,79987,'News Producer',2,31),(78698,1633441,'News Producer',2,32),(78698,1470055,'News Producer',2,33),(78698,1503929,'Chairman of the Joint Chiefs of Staff',2,34),(78698,1678189,'Greenpeace Volunteer',1,35),(78698,91371,'President Reagan',2,36),(78698,1768560,'Rich',0,37),(56715,1003,'Thibault',2,0),(56715,18979,'Rosalind / Julia',1,1),(56715,28781,'Andre',2,2),(56715,11154,'Hunter',2,3),(56715,1234,'Angelique',1,4),(56715,20751,'Amber',0,5),(56715,103833,'Byron',2,6),(56715,56890,'Wizard',2,7),(56715,95741,'Dr. Brady',2,8),(56715,58079,'Queen',1,9),(56715,1597394,'Thibault\'s Sister',1,10),(56715,1598573,'Thibault\'s Sister #2',0,11),(56715,1379424,'Monk',2,12),(72358,776,'Jack McCall',2,0),(72358,19,'Samantha Davis',1,1),(72358,7248,'Dr. Sinja',2,2),(72358,54729,'Aaron Wiseberger',2,3),(72358,11703,'Caroline McCall',1,4),(72358,1014850,'Tyler McCall',0,5),(72358,177838,'Woman in Starbucks',1,6),(72358,58950,'Construction Worker',2,7),(72358,1014851,'Starbucks Customer',0,8),(72358,1014852,'Starbucks Customer',0,9),(72358,1014853,'Starbucks Customer',0,10),(72358,1014854,'Starbucks Customer',0,11),(72358,199625,'Shrink',0,12),(72358,205213,'Young Female Agent',1,13),(72358,53176,'Valet',2,14),(72358,1450793,'Male Agent',0,15),(72358,1301653,'Young Student',0,16),(72358,15532,'Annie McCall',1,17),(72358,58737,'Starbucks\' Barista',2,19),(72358,56902,'Blind Man',2,20),(72358,59847,'Orderly',0,21),(72358,1709976,'Mary',0,22),(72358,4275,'Christian Leger de la Touffe',2,23),(72358,1349483,'Hostess',1,24),(72358,42200,'Robert Gilmore',2,25),(72358,107408,'Gil Reed',2,26),(72358,1219899,'Waiter',2,27),(72358,35521,'Kid Space Teacher',2,28),(72358,20754,'Overly Enthused Dad',2,29),(72358,1815847,'Kid Space Mom',0,30),(72358,58741,'Don Parker',2,31),(72358,1005913,'Hotel Employee',1,32),(72358,1451587,'Rotund Man',0,33),(72358,1380058,'Tony',0,34),(72358,60944,'Ira',2,35),(72358,1724086,'Katie',0,36),(72358,1815855,'Waitress',0,37),(72358,12923,'Nun',1,38),(72358,206926,'10 Year Old Girl',1,39),(72358,1237531,'Young Jack',0,40),(72358,79586,'Young Annie',0,41),(72358,58927,'Man on Pier',2,42),(72358,98186,'Woman on Pier',1,43),(72358,1252466,'Steven',0,44),(266396,2228,'Terrier',2,0),(266396,69489,'Annie',1,1),(266396,3810,'Felix',2,2),(266396,5538,'Stanley',2,3),(266396,40900,'Terrance Cox',2,4),(266396,17605,'Barnes',2,5),(266396,11263,'Reiniger',0,6),(266396,1474704,'Reed',0,7),(266396,1474705,'Bryson',0,8),(266396,1474706,'Eugene',0,9),(266396,1489013,'Ruth',0,10),(266396,28513,'Camille',0,11),(266396,1257573,'Procurement Chief (NGO)',0,12),(266396,1149354,'Female Aid Worker',0,13),(266396,110615,'Doctor (UCL)',0,14),(266396,1755609,'Restaurant Hostess',0,15),(266396,1361968,'Shooter',0,16),(266396,1755614,'Company Man',0,17),(266396,1363147,'Company Man',0,18),(266396,1639606,'Nurse',0,19),(266396,1289925,'Cox\'s Secretary',1,20),(266396,109158,'Man in Bar',0,21),(266396,1755833,'Medical Chief (NGO)',0,22),(266396,1755834,'North American Aid Worker (NGO)',0,23),(266396,25272,'Security Chief (NGO)',0,24),(266396,1665266,'Felix\'s Assistant',0,25),(266396,1417539,'Passerby (uncredited)',0,26),(266396,1374158,'Passerby (uncredited)',1,27),(110415,16828,'Curtis Everett',2,0),(110415,20738,'Namgoong Minsu',2,1),(110415,228,'Minister Wilford',2,2),(110415,5049,'Gilliam',2,3),(110415,3063,'Minister Mason',1,4),(110415,478,'Edgar',2,5),(110415,6944,'Tanya',1,6),(110415,1125,'Andrew',2,7),(110415,21689,'Yona',0,8),(110415,17486,'Teacher',1,9),(110415,220232,'Grey',2,10),(110415,39959,'Franco The Elder',2,11),(110415,1049409,'Franco The Younger',0,12),(110415,1087079,'Claude',0,13),(110415,4025,'Fuyu',2,14),(110415,171538,'Painter',2,15),(110415,1505325,'Tim',0,16),(110415,138988,'Paul',2,17),(110415,18818,'Egg-Head',2,18),(110415,37760,'News Reporter',2,19),(110415,25670,'Gerald',2,20),(110415,1505326,'Doris',0,21),(110415,1394090,'Soldier 1',0,22),(110415,1505327,'Soldier 2',0,23),(110415,1505328,'Female Officer',0,24),(110415,1505329,'Ylfa',0,25),(110415,1505330,'Boy',0,26),(110415,1505331,'Young Wilford',0,27),(110415,1505332,'Magdalena',0,28),(110415,1505334,'Sergio',0,29),(110415,1470798,'Andy',0,30),(110415,1505336,'Chan',0,31),(110415,1505337,'Soldier A',0,32),(110415,137334,'Soldier B',0,33),(110415,1505338,'Old Man',0,34),(110415,1505339,'Dark Voice',0,35),(110415,1425317,'Giant',0,36),(110415,1505340,'Plan Tender 1',0,37),(110415,1505341,'Plan Tender 2',0,38),(110415,1505342,'Voice Actor',0,39),(110415,1505344,'Voice Actor (voice)',0,40),(110415,77993,'Voice Actor (voice)',2,41),(110415,1505345,'Voice Actor (voice)',0,42),(110415,1505346,'Korean Translator Voice (voice)',0,43),(110415,1505342,'Voice Actor (voice)',0,44),(77459,65007,'Lucille (voice)',1,0),(77459,66841,'Francu0153ur (voice)',2,1),(77459,51100,'Raoul (voice)',0,2),(77459,33161,'Le pru00e9fet Maynott (voice)',0,3),(77459,4390,'Maud (voice)',1,4),(77459,54292,'Madame Carlotta (voice)',1,5),(77459,77928,'Albert (voice)',2,6),(77459,1820910,'Emile (voice)',0,7),(77459,1091885,'Pu00e2tu00e9 / Narrator (voice)',0,8),(256040,237045,'Shivudu / Baahubali',2,0),(256040,215910,'Bhallaladeva',2,1),(256040,85721,'Avanthika',1,2),(256040,88167,'Devasena',1,3),(256040,141701,'Sivagami',1,4),(256040,130111,'Bijjaladeva',2,5),(256040,581895,'Kattappa',2,6),(256040,389604,'Aslam Khan',0,7),(256040,1291761,'Bhadra',2,8),(256040,565890,'Swamiji',0,9),(256040,1486367,'Kalakeya War Lord',0,10),(256040,467845,'Sanga',1,11),(256040,1488788,'Bhallaladeva\'s Soldier',0,12),(256040,1606105,'',0,13),(256040,147021,'Spirit Seller',2,14),(256040,1781711,'Brother of Kalakeya',2,15),(62214,49918,'Victor Frankenstein (voice)',2,0),(62214,11514,'Mrs. Frankenstein / Weird Girl / Gym Teacher (voice)',0,1),(62214,519,'Mr. Frankenstein / Mr. Burgemeister / Nassor (voice)',2,2),(62214,2641,'Mr. Rzykruski (voice)',2,3),(62214,66646,'Edgar E Gore (voice)',2,4),(62214,1920,'Elsa Van Helsing (voice)',1,5),(62214,111922,'Bob (voice)',2,6),(62214,58330,'Toshiaki (voice)',2,7),(62214,1909,'Bob\'s Mom (voice)',1,8),(62214,78798,'New Holland Townsfolk (voice)',2,9),(64807,380,'Billy \'The Kid\' McDonnen',2,0),(64807,16483,'Henry \'Razor\' Sharp',2,1),(64807,1903,'Lightning',2,2),(64807,19498,'B.J. Rose',2,3),(64807,55638,'Dante Slate, Jr.',2,4),(64807,326,'Sally Rose',1,5),(64807,36424,'Frankie Brite',2,6),(64807,990136,'Car Salesman',2,7),(64807,1134443,'Carla',1,8),(64807,1116011,'Kenji',0,9),(64807,76021,'ER Doctor',2,10),(64807,27530,'Video Game Producer',2,11),(64807,1158067,'Trey',2,12),(64807,1158068,'Nora',0,13),(64807,1158069,'Bar Thug',0,14),(64807,156874,'Dr. Camare',0,15),(64807,1451161,'Waiter with Telephone',2,16),(44865,1337,'Ip Man',2,0),(44865,1339,'Gong Ruomei/Gong Er',1,1),(44865,74421,'Zhang Yongcheng',1,2),(44865,1622,'Yi Xian Tian/Razor',2,3),(44865,131514,'Ding Lianshan',0,6),(44865,116637,'Iron Shoes',2,7),(44865,18899,'Chan Wah-shun (Chen Huashun)',0,9),(44865,1297520,'Master Gong Yutian',0,10),(44865,1183808,'Ma San',2,12),(44865,144860,'',0,13),(44865,83631,'Mr. Hung (as Jinjiang Xu)',2,14),(44865,1696843,'Shorty (as Chiu Yee Tsang)',0,16),(44865,1233207,'Uncle Deng',0,17),(44865,62421,'Master Yong',2,18),(55787,11288,'Jacob Jankowski',2,0),(55787,368,'Marlena Rosenbluth',1,1),(55787,27319,'August Rosenbluth',2,2),(55787,223518,'Jacob\'s Daughter',0,3),(55787,11066,'Old Jacob',2,4),(55787,3901,'Grady',2,5),(55787,15684,'Charlie',2,6),(55787,36221,'Mr. Hyde',2,7),(55787,109794,'Big Top Band',0,8),(55787,14950,'Camel',2,9),(55787,154785,'Kinko / Walter',2,10),(55787,1424828,'Catherine Hale',1,11),(55787,15070,'Earl',2,12),(55787,1340108,'Russ',0,13),(55787,1465852,'Wade',0,14),(55787,84709,'Coochie Girl (Nell)',1,15),(55787,1568613,'Showgirl',0,16),(55787,1289505,'Showgirl',0,17),(55787,1568614,'Showgirl',0,18),(55787,1337696,'Speakeasy Socialite (uncredited)',0,19),(257932,530,'Elena (voice)',1,1),(257932,67601,'Gerrant (voice)',2,3),(257932,78139,'Liya and Kasarana (voice)',1,4),(257932,77293,'Lambert (voice)',2,5),(257932,1496415,'Terram (voice)',0,6),(257932,1192144,'Bat (voice)',2,7),(257932,1496419,'Elena (voice) CN',0,8),(257932,1496423,'Gerrant (voice) CN',0,9),(257932,144973,'Argenta (voice)',0,10),(256961,32895,'Paul Blart',2,0),(256961,78436,'Maya Blart',1,1),(256961,72968,'Eduardo Furtillo',0,2),(256961,59296,'Divina Martinez',1,3),(256961,2203,'Vincent Sofel',2,4),(256961,95136,'Lane',2,5),(256961,21356,'Robinson',2,6),(256961,32897,'Nick Manero',2,7),(256961,183490,'Donna Ericone',0,8),(256961,179508,'Saul Gundermutt',2,9),(256961,86267,'Mrs. Gundermutt',1,10),(256961,174906,'Khan Mubi',2,11),(256961,1431853,'Kira',1,12),(256961,440306,'Pahud',2,13),(256961,129661,'Muhrtelle',2,14),(256961,28778,'Mom',1,15),(256961,1431855,'Gino Chizetti',2,16),(256961,1431857,'Bikini Babe',1,17),(256961,1431858,'Mini Ace Frehley',0,18),(256961,60961,'Jared',0,19),(256961,60959,'Attractive Lady',1,20),(256961,89402,'Henk',2,21),(256961,1389564,'Craps Dealer',2,22),(256961,1155875,'Ramos',2,23),(256961,1056226,'Nadia',1,24),(256961,1111328,'Carlos',2,25),(256961,135353,'Scott',2,26),(256961,1465297,'Heath',2,27),(256961,1505306,'Elderly Maid',0,28),(256961,1742896,'Pianist',2,29),(256961,50773,'Mindy',1,30),(256961,1742897,'Himself',2,31),(256961,1742900,'Herself',0,32),(256961,1395904,'Mall Mom',1,33),(256961,1700684,'Andy',2,34),(256961,1742901,'Police Officer',2,35),(256961,1587940,'Segway Employee',0,36),(256961,100107,'Casino Waitress',1,37),(256961,185694,'VIP Receptionist',0,38),(256961,1627370,'Gambler #2',2,39),(256961,207072,'Mini Peter Criss',0,40),(256961,1107818,'Lorenzo',2,41),(256961,1743021,'Lady in Casino',0,42),(256961,1743022,'Vincent\'s Team',0,43),(256961,1743023,'Vincent\'s Team',0,44),(256961,1743024,'Le Ru00eave Performer',0,45),(256961,1743025,'Le Ru00eave Performer',1,46),(256961,1743031,'UCLA Student',1,47),(256961,1737033,'Street Dancer',1,48),(256961,1484779,'Mall Shopper',1,49),(256961,1455788,'Bentley Passenger',0,50),(87421,12835,'Riddick',2,0),(87421,1372,'Lord Vaako',2,1),(87421,51798,'Dahl',1,2),(87421,31384,'Santana',2,3),(87421,71913,'Moss',2,4),(87421,82819,'Luna',2,5),(87421,172915,'Nunez',2,6),(87421,224227,'Santana\'s Prisoner',0,7),(87421,105496,'Rubio',0,8),(87421,543530,'Diaz',2,9),(87421,123879,'Boss Johns',2,10),(87421,102852,'Krone',2,11),(87421,17688,'Lockspur',2,12),(87421,21291,'Vargas',2,13),(87421,105499,'Falco',2,14),(87421,1346327,'Consort',1,15),(68722,73421,'Freddie Quell',2,0),(68722,1233,'Lancaster Dodd',2,1),(68722,9273,'Peggy Dodd',1,2),(68722,4784,'Helen',1,3),(68722,88124,'Val Dodd',2,4),(68722,75330,'Elizabeth Dodd',1,5),(68722,17838,'Clark',2,6),(68722,219666,'Doris Solstad',1,7),(68722,18916,'Bill White',2,8),(68722,125026,'Mildred Drummond',1,9),(68722,79196,'Mrs. Solstad',1,10),(68722,157583,'Margaret O\'Brien',1,11),(68722,230060,'Martha the Salesgirl',1,12),(68722,1149893,'Winn Manchester',0,13),(68722,60021,'John More',2,14),(68722,1149894,'Rorschach Doctor',0,15),(68722,1149895,'V.A. Doctor / Interview',0,16),(68722,1149896,'Frank',0,17),(68722,158664,'Chi Chi Crawford',1,18),(68722,1226302,'Susan Gregory',1,19),(68722,81096,'Wayne Gregory',2,20),(68722,1355100,'Norman Conrad',0,21),(68722,1242110,'Cliff Boyd',0,22),(68722,1099823,'Michelle Mortimer',0,23),(68722,100263,'Beatrice Campbell',1,24),(68722,71885,'James Sullivan',0,25),(68722,37204,'Philadeelphia Police',2,26),(68722,1865065,'Judge',0,27),(299687,56734,'Cassiopeia Cassie Sullivan',1,0),(299687,1108907,'Ben Zombie Parish',2,1),(299687,1167375,'Evan Walker',2,2),(299687,1094091,'Marika Ringer Kimura',1,3),(299687,1379122,'Sammy Nugget Sullivan',2,4),(299687,23626,'Lieutenant Colonel Alexander Vosch',2,5),(299687,49,'Sergeant Reznik',1,6),(299687,74537,'Lisa Sullivan',1,7),(299687,17402,'Oliver Sullivan',2,8),(299687,1379123,'Allison / Teacup',1,9),(299687,1291350,'Dumbo',2,10),(299687,1487329,'Kenny / Oompa',2,11),(299687,1628095,'Tank',2,12),(299687,1381981,'Flintstone',2,13),(299687,587035,'Poundcake',2,14),(299687,1628061,'Lizbeth Morgan',1,15),(299687,1168702,'Julia',1,16),(299687,1371097,'Jeremy',2,17),(299687,2257,'Hutchfield',2,18),(299687,1628087,'Ms. Paulson',1,19),(299687,143261,'Major Bob',2,20),(299687,1480027,'Wounded Man with Crucifix',2,21),(299687,1327175,'Soccer Coach',2,22),(299687,1628085,'TV News Anchor',2,23),(299687,41020,'White House Spokesman',2,24),(299687,1445680,'Private Parker',0,25),(299687,1317541,'Bullhorn Soldier',2,26),(299687,1021528,'Confused Man',2,27),(299687,1032522,'Exam Room Tech',1,28),(299687,1098577,'Sniper in Woods',2,29),(299687,1205900,'Helicopter Soldier',0,30),(299687,1230922,'Situation Room Soldier',0,31),(299687,1381406,'Tech Soldier',0,32),(299687,1628106,'Captured Teen (uncredited)',1,33),(299687,1628107,'Cheerleader (uncredited)',1,34),(312221,135651,'Adonis Johnson',2,0),(312221,16483,'Rocky Balboa',2,1),(312221,95047,'Tommy Holiday',2,2),(312221,62561,'Bianca',1,3),(312221,119598,'Mary Anne Creed',1,4),(312221,131423,'Flores',0,5),(312221,99166,'James',0,6),(312221,1537624,'\'Pretty\' Ricky Conlan',0,7),(312221,13939,'Pete Sporino',2,8),(312221,1277581,'Stitch',0,9),(312221,1537626,'Amir',0,10),(312221,65829,'Tony \'Little Duke\' Burton',2,11),(312221,1537627,'Leo \'The Lion\' Sporino',0,12),(312221,1657314,'Conlan\'s Cut Man',0,13),(312221,1657315,'Dr. Kathari',0,14),(312221,23626,'HBO 24/7 Narrator (voice)',2,15),(312221,1746871,'Danny \'Stuntman\' Wheeler',2,16),(312221,1746873,'Padman',0,17),(312221,127070,'James',0,18),(312221,1343828,'Sporino Cut Man',0,19),(312221,1614447,'Lady Cop',1,20),(312221,1746875,'Himself',2,21),(312221,1575991,'Larry',0,22),(312221,1746876,'Reporter #1',0,23),(312221,1746877,'Reporter #2',0,24),(312221,16486,'Press Conference Moderator',0,25),(312221,1272973,'City Jail Cop',0,26),(312221,1378544,'Flores\' Trainer',2,27),(312221,1214974,'Conlan\'s Buddy',2,28),(312221,1746878,'Tijuana Fight Promoter',0,29),(312221,1746879,'Kev',0,30),(312221,1206146,'Welterweight #1',0,31),(312221,1096679,'Welterweight #2',2,32),(312221,1746880,'Referee #1 (Tijuana)',0,33),(312221,1746881,'Referee #2 (Blue Horizon)',0,34),(312221,1746882,'Referee #3 (Liverpool)',0,35),(312221,101615,'Mickey\'s Gym Doorman',2,36),(312221,1746883,'Leo Trainer #2',0,37),(312221,1664462,'Ringside Doctor',2,38),(312221,1746884,'Nurse Kathy',1,39),(312221,1746886,'Young Dirt Bike Rider',0,40),(312221,1746887,'Himself',0,41),(312221,1218769,'Himself',0,42),(312221,1746888,'Himself',2,43),(312221,66072,'Himself',2,44),(312221,556033,'Himself',0,45),(312221,1215636,'Himself',0,46),(312221,1746889,'Herself',0,47),(312221,1421229,'Young Adonis',0,48),(312221,1746931,'Thomas',0,49),(312221,1746932,'Staff Member #1',0,50),(312221,232749,'Staff Member #2',0,51),(312221,1386322,'Staff Member #3',2,52),(312221,1746933,'Staff Member #4',0,53),(312221,557505,'Social Worker',1,54),(312221,1746935,'Max\'s Cashier',0,55),(312221,1746936,'Max\'s Cook',0,56),(312221,1746937,'Max\'s Cook',0,57),(312221,928158,'Bianca\'s Band',2,58),(312221,1746938,'Bianca\'s Band',0,59),(312221,1746959,'Dirt Bike Rider',0,60),(312221,1711690,'Dirt Bike Rider',0,61),(312221,1746960,'Dirt Bike Rider',2,62),(312221,1746961,'Dirt Bike Rider',0,63),(312221,1746962,'Dirt Bike Rider',0,64),(312221,75636,'Dirt Bike Rider',2,65),(312221,1590589,'Security Guard',2,66),(312221,1179268,'Security Guard',0,67),(312221,1746963,'Concert Security',0,68),(312221,1746964,'Fire Breather',0,69),(312221,1746965,'Ring Girl',0,70),(312221,1530879,'Ricky\'s Friend',0,71),(312221,1746969,'Ring Girl',0,72),(312221,1657695,'Boxing Spectator',0,73),(76494,6941,'Jules Baxter',1,0),(76494,16866,'Holly',1,1),(76494,9281,'Wendy Cooper',1,2),(76494,84223,'Rosie Brennan',1,3),(76494,131520,'Skyler Cooper',1,4),(76494,155209,'Evan Webber',2,5),(76494,17289,'Alex',2,6),(76494,170820,'Gary Cooper',2,7),(76494,6065,'Ramsey Cooper',2,8),(76494,60899,'Marco',2,9),(76494,2632,'Vic',2,10),(76494,80595,'Gabe',2,11),(76494,539,'Craig',2,12),(76494,203086,'Patel',2,13),(76494,221581,'Janice',1,14),(76494,20580,'Davis',2,15),(76494,63234,'Kara',1,16),(76494,98628,'Social Worker',1,17),(76494,589162,'Courtney',1,18),(76494,52119,'Herself',1,19),(76494,1427681,'Molly',1,20),(76494,216321,'Herself',1,21),(76494,1212446,'Himself',0,22),(76494,557830,'Himself',0,23),(76494,968922,'Himself',2,24),(76494,1224518,'Herself',0,25),(76494,928235,'J. J.',0,26),(76494,1214389,'Hutch Davidson',0,27),(76494,1084211,'Convention Attendee',1,28),(76494,1785189,'Hotel Doctor',1,29),(96721,3872,'Niki Lauda',2,0),(96721,74568,'James Hunt',2,1),(96721,59315,'Suzy Miller',1,2),(96721,5644,'Marlene Lauda',1,3),(96721,58502,'Gemma',1,4),(96721,28478,'Lord Hesketh',0,5),(96721,52639,'Harald Ertl',2,6),(96721,17839,'Clay Regazzoni',2,7),(96721,10779,'Louis Stanley',2,8),(96721,21345,'Alastair Caldwell',2,9),(96721,56100,'Stirling Moss',2,10),(96721,7031,'Anthony \'Bubbles\' Horsley',2,11),(96721,23608,'Teddy Mayer',2,12),(96721,1294711,'Harvey \'Doc\' Postlethwaite',0,13),(96721,1294712,'Luca Di Montezemolo',0,14),(96721,43019,'John Hogan',2,15),(96721,26669,'Lauda\'s Mechanic',2,16),(96721,30328,'McLaren Mechanic',2,17),(96721,1833,'BRM Mechanic',2,18),(96721,1205278,'Guy Edwards',0,19),(96721,1426167,'German Press Officer',0,20),(96721,1523067,'press cameraman (uncredited)',0,21),(96721,35438,'German GP Marshall',2,22),(96721,1693317,'Enzo Ferrari (as Augusto Dall\'ara)',0,23),(96721,994133,'Awards Presenter',0,24),(259694,118545,'Alice Kepley',1,0),(259694,221581,'Robin',1,1),(259694,88029,'Lucy',1,2),(259694,85139,'Josh',0,3),(259694,87822,'David',2,4),(259694,521563,'Tom',2,5),(259694,496470,'Ken',2,6),(259694,111683,'George',0,7),(259694,41087,'Meg',1,8),(259694,1530879,'Dancer',0,11),(259694,971388,'Actor',2,12),(259694,63914,'Actress',1,13),(259694,968350,'Camille',1,14),(259694,1352662,'Bachelorette Tiffany',1,15),(259694,1226277,'Paul',0,16),(259694,155422,'Michelle',1,17),(259694,1719586,'Robin\'s Date',0,18),(259694,1784330,'David\'s Wife',0,19),(259694,1734930,'Phoebe',0,20),(259694,1260041,'Lucy\'s Date',0,21),(259694,208664,'Woman Giving Birth',1,22),(62837,192,'Dr. McCarthy',2,0),(62837,15852,'Lorraine Nelson',1,1),(62837,18688,'Dr. Clay Haskett',2,2),(62837,18052,'Sawyer Nelson',2,3),(62837,10823,'Reed Haskett',2,4),(62837,1472,'Mr. Doyle',2,5),(62837,36926,'Gloria Forrest',1,6),(62837,972951,'Hazel Haskett',1,7),(62837,1108135,'Bully #1',0,8),(62837,1108137,'Bully #2',0,9),(62837,970216,'Kyle Connellan',2,10),(62837,108247,'Phoebe',1,11),(62837,1357035,'Kat',0,12),(62837,576474,'Rebecca',1,13),(62837,1454296,'Brittany',0,14),(62837,1205174,'Max Connellan',2,15),(62837,1408750,'Alyce Connellan',0,16),(62837,1447863,'Donovan Peck',0,17),(138832,58224,'David Clark',2,0),(138832,4491,'Rose O\'Reilly',1,1),(138832,93491,'Kenny Rossmore',2,2),(138832,34847,'Casey Mathis',1,3),(138832,27105,'Brad Gurdlinger',2,4),(138832,17039,'Donny Fitzgerald',2,5),(138832,539,'Rick Nathanson',2,6),(138832,17696,'Edie Fitzgerald',1,7),(138832,96349,'Melissa Fitzgerald',1,8),(138832,25089,'Pablo Chacon',2,9),(138832,92617,'One-Eye',0,10),(138832,40481,'Mexican Cop',2,11),(138832,81197,'Scottie P.',2,13),(138832,77089,'Todd - Strip Club Owner',2,14),(138832,211539,'Kymberly',1,15),(138832,208316,'Hospital Nurse',0,16),(138832,1068811,'Dan Johnson',2,17),(36670,738,'James Bond',2,0),(36670,326,'Domino Petachi',1,1),(36670,10647,'Maximilian Largo',2,2),(36670,9126,'M',2,3),(36670,10938,'Fatima Blush',1,4),(36670,2201,'Ernst Stavro Blofeld',2,5),(36670,10939,'Felix Leiter',2,6),(36670,8224,'Q \'Algy\' Algernon',2,7),(36670,115872,'Miss Moneypenny',1,8),(36670,10730,'Nigel Small-Fawcett',2,9),(36670,12660,'Jack Petachi',2,10),(36670,32556,'Elliott',2,11),(36670,11841,'Italian Minister',2,12),(36670,51813,'Patricia Fearing',1,13),(36670,29307,'Doctor at Shrublands',2,14),(36670,95099,'Lady in Bahamas',1,15),(36670,10942,'Lippe',2,16),(36670,152283,'Kovacs',2,17),(36670,1862722,'Nicole',0,18),(36670,44700,'Lord Ambrose',2,19),(36670,99366,'General Miller',0,20),(36670,1303797,'Kurt',0,21),(36670,19338,'French Minister',1,22),(36670,1841545,'Italian Minister',0,23),(36670,55911,'Captain Pederson',0,24),(36670,131083,'Culpepper',0,25),(36670,10984,'Shrublands Porter',0,26),(36670,1862723,'Nurse at Shrublands',0,27),(36670,115284,'Cook at Shrublands',1,28),(36670,24710,'Number 5',0,29),(36670,140448,'Casino Bouncer',0,30),(36670,1760679,'Masseuse',0,31),(36670,199061,'Auctioneer',0,32),(36670,1225728,'Receptionist at Health Spa',0,33),(36670,557337,'Communications Officer',2,34),(36670,47808,'USAF Swadley General (uncredited)',0,35),(36670,97168,'SPECTRE Agent (uncredited)',0,36),(227735,192,'Dr. Cameron McCarthy',2,0),(227735,15852,'Lorraine Nelson',1,1),(227735,18052,'Sawyer Nelson',2,2),(227735,972951,'Hazel Haskett',1,3),(227735,18688,'Dr. Clay Haskett',2,4),(227735,10823,'Reed Hasket',2,5),(227735,1008234,'Herself',1,6),(227735,970216,'Kyle Connellan',2,8),(227735,108247,'Phoebe',1,9),(227735,1357034,'Julia',1,10),(227735,576474,'Rebecca',1,11),(227735,115874,'Dr. Aslan',0,12),(227735,1357035,'Kat',0,13),(227735,94854,'Phillip J Hordern',2,14),(227735,1270,'George Hughes',2,15),(227735,1408713,'Susie',0,16),(227735,10480,'Dennis',2,17),(227735,78885,'Pat',0,18),(227735,1318797,'Toddler',1,19),(227735,1408730,'Mandy',0,20),(227735,200406,'Mel Prince',2,21),(227735,1381725,'News Reporter',0,22),(227735,1408750,'Alyce Connelan',0,23),(227735,1408783,'Nurse\'s Aide',0,24),(227735,1408786,'Tourist Woman',0,25),(227735,158097,'Board Member',2,26),(227735,1408789,'Clearwater Marine Volunteer',0,27),(227735,1408791,'Jennifer Kidd',0,28),(227735,1408798,'Mandy and Troy\'s Mom',0,29),(227735,1408801,'Steve',0,30),(227735,1408803,'Troy',0,31),(227735,1408805,'Clearwater Marine Volunteer',0,32),(227735,1339945,'Volunteer',0,33),(227735,1408810,'Print Reporter',0,34),(227735,1408877,'Board Member',0,35),(227735,16469,'Jeanett',1,36),(227735,1408884,'Tourist',0,37),(227735,1408887,'Volunteer #2',0,38),(227735,1408889,'Aquarium Visitor',0,39),(227735,1408892,'Cma staff',0,40),(227735,1408893,'Josh',0,41),(227735,1408898,'Tourist',0,42),(227735,1408901,'The School Bus Driver',0,43),(227735,1408903,'Beach Girl',0,44),(227735,1408906,'Aquarium Guest',0,45),(227735,1408908,'CMA Intern',0,46),(227735,1408913,'Beach girl',1,47),(227735,1408918,'News Reporter',0,48),(227735,1408920,'CMA Volunteer',0,49),(227735,1408921,'Tourist',0,50),(227735,1408922,'Hospital Visitor',0,51),(227735,1408923,'Aquarium Worker',0,52),(227735,1408924,'CMA SCUBA Diver',0,53),(227735,1408926,'Female Tourist',0,54),(227735,1408931,'Facility / Tourist',0,55),(227735,1408935,'Tourist',0,56),(227735,1408941,'Surprised Girl',0,57),(227735,1408942,'CMA Staff Member',0,58),(227735,1408943,'Skipping Girl #2',0,59),(227735,1408944,'Tourist #4',0,60),(227735,1408945,'Skipping Girl #1',0,61),(227735,1408946,'Tourist',0,62),(222936,51329,'Brian Gilcrest',2,0),(222936,54693,'Captain Allison Ng',1,1),(222936,53714,'Tracy Woodside',1,2),(222936,1532,'Carson Welch',2,3),(222936,17697,'John Woody Woodside',2,4),(222936,62862,'Colonel Fingers Lacy',2,5),(222936,7447,'General Dixon',2,6),(222936,121718,'Bob Largent',2,7),(222936,1274508,'Mitchell',2,8),(222936,1457461,'Grace',1,9),(222936,87070,'Roy',2,10),(222936,39391,'Lt. Colonel Curtis',2,11),(222936,1828910,'Himself',0,12),(222936,126713,'Launch Announcer',1,13),(222936,29930,'Carson Biographer',1,14),(222936,1377292,'Military Wife Angela',1,15),(222936,1281758,'Global One Volunteer',1,16),(48171,4173,'Father Lucas',2,0),(48171,235767,'Michael Kovak',2,1),(48171,8602,'Angeline',1,2),(48171,13014,'Father Matthew',2,3),(48171,8785,'Father Xavier',2,4),(48171,585,'Istvan Kovak',2,5),(48171,144079,'Rosaria',1,6),(48171,10777,'Aunt Andria',1,7),(48171,971200,'Francesca',1,8),(48171,124681,'Vincenzo',0,9),(48171,59238,'Eddie',2,10),(48171,971202,'Young Michael',2,12),(75531,73931,'Jacqueline Susann',0,0),(75531,78729,'Irving Mansfield',2,1),(75531,8893,'Florence Maybelle',1,2),(75531,11076,'Michael Hastings',2,3),(75531,8930,'Henry Marcus',0,4),(75531,14101,'Maury Manning',2,5),(75531,2956,'Debbie',1,6),(75531,56567,'Bambi Madison',0,7),(365222,1341,'Ip Man',2,0),(365222,117760,'Cheung Wing-Sing',1,1),(365222,1183808,'Cheung Tin-chi',2,2),(365222,80374,'Ma King-Sang',2,3),(365222,932680,'Miss Wong',0,4),(365222,65966,'Detective Po',2,5),(365222,1202564,'Tsui Lik',0,6),(365222,227782,'Tin Ngo-San',0,7),(365222,80757,'Frank',2,8),(365222,1173223,'Bruce Lee',0,10),(365222,1317523,'Newspaper reporter',0,11),(365222,240155,'Master Law',2,12),(365222,118352,'Principal',0,13),(365222,1164789,'Master Lee',0,14),(365222,1089434,'Master Tam',0,15),(365222,1620918,'Master Chan',0,16),(45054,23458,'Josemaru00eda',2,0),(45054,15336,'Robert',2,1),(45054,8210,'Manolo',2,2),(45054,17289,'Oriol',2,3),(45054,31384,'Don Jose',2,4),(45054,937,'Honorio',2,5),(45054,24976,'Dona',1,6),(45054,400,'Abileyza',1,7),(45054,4391,'Solono',2,8),(45054,53688,'Aline',1,9),(45054,18182,'Ildiko',1,10),(45054,229932,'Leila',1,11),(45054,50994,'Pedro',2,12),(45054,440879,'Ortiz',2,13),(51540,4491,'Dr. Julia Harris',1,0),(51540,23532,'Nick Hendricks',2,1),(51540,95101,'Dale Arbus',2,2),(51540,58224,'Kurt Buckman',2,3),(51540,72466,'Bobby Pellitt',2,4),(51540,134,'Motherfucker Jones',2,5),(51540,55636,'Jack Pellit',2,6),(51540,41662,'Stacey',1,7),(51540,52935,'Carter',2,8),(51540,1979,'Dave Harken',2,9),(51540,31171,'Rhonda Harken',1,10),(51540,1216701,'Jamie',1,11),(51540,76112,'Thomas, Head of Security',0,12),(51540,133593,'Mr. Anderton',0,13),(51540,191897,'Kurt\'s Co-Worker',1,14),(51540,154096,'Kurt\'s Co-Worker',2,15),(51540,66523,'Kurt\'s Co-Worker',2,16),(51540,75344,'Kurt\'s Co-Worker',2,17),(51540,968697,'Margie Emerman',1,19),(51540,1211946,'Kenny Sommerfeld',2,20),(44264,1229,'Rooster Cogburn',2,0),(44264,1892,'LaBoeuf',2,1),(44264,16851,'Tom Chaney',2,2),(44264,12834,'Lucky Ned Pepper',2,3),(44264,130640,'Mattie Ross',1,4),(44264,93210,'Moon (The Kid)',2,5),(44264,1124106,'Harold Parmalee',0,6),(44264,240869,'Bear Man',0,7),(44264,177157,'Yarnell',2,8),(44264,61260,'Emmett Quincy',2,9),(44264,50402,'Repentant Condemned Man',2,10),(44264,43364,'Col. Stonehill',2,11),(44264,126713,'40-Year-Old Mattie',1,12),(44264,1751926,'40-Year-Old Mattie',0,13),(44264,169920,'Sheriff',2,14),(44264,240872,'Judge Parker',0,15),(44264,240871,'Cole Younger',0,16),(44264,9274,'Frank James',2,17),(44264,54856,'Undertaker',2,18),(44264,18999,'J. Noble Daggett (voice)',2,19),(44264,52882,'Boarding House Landlady',1,20),(44264,240870,'Mr. Lee',2,21),(44264,177905,'Cross-examining Lawyer',2,22),(44264,181297,'First Lawyer',0,23),(44264,240873,'Stableboy',0,24),(44264,11788,'Ferryman',0,25),(44264,32287,'Unrepentant Condemned Man',2,26),(44264,154778,'Condemned Indian',2,27),(44264,240874,'Woman at Hanging',0,28),(44264,240875,'Indian Youth at Bagby\'s',0,29),(44264,240876,'Indian Youth at Bagby\'s',0,30),(109431,23532,'Sandy Patterson',2,0),(109431,55536,'Diana',1,1),(109431,15277,'Harold Cornish',2,2),(109431,2956,'Trish Patterson',1,3),(109431,76126,'Julian',0,4),(109431,589162,'Marisol',1,5),(109431,9779,'Detective Reilly',2,6),(109431,68842,'Daniel Casey',2,7),(109431,418,'Skiptracer',2,8),(109431,156962,'Big Chuck',2,9),(109431,783,'Paul',2,10),(109431,1046348,'Jessie Patterson',1,11),(109431,973223,'Bartender',2,12),(109431,1046352,'Franny Patterson',0,13),(109431,1096595,'Alec',2,14),(109431,1221605,'Party Guy',0,15),(109431,1546658,'Party Guy',0,16),(109431,141433,'Party Guy\'s Buddy',2,17),(109431,74124,'Tequila Guy',2,18),(109431,1381712,'Winter Park Cop',0,19),(109431,1329760,'Winter Park Cop',0,20),(109431,1546659,'Booking Officer',0,21),(109431,1431508,'Secretary at Prominence Denver',0,22),(109431,1546660,'Cosmetics Girl',0,23),(109431,1546661,'Cosmetics Girl',0,24),(109431,1381630,'Electronics Store Employee',0,25),(109431,1546662,'Jewelry Store Salesperson',0,26),(109431,232749,'Cop Giving Traffic Ticket',0,28),(109431,1546663,'New Catalyst Receptionist',0,29),(109431,1377992,'Arlene in the Lady\'s Choice Salon',0,30),(109431,170820,'Tony / Motel Desk Clerk',2,31),(109431,81578,'Counter Girl',1,32),(109431,1546664,'Witness on the Highway',0,33),(109431,1546665,'Traffic Cop',0,34),(109431,152864,'Bus Station Attendant Carl',0,35),(109431,1546666,'Used Car Salesman',0,36),(109431,168875,'Prominence Security Guard',2,37),(109431,475512,'Flo',1,38),(271718,440414,'Amy Townsend',1,0),(271718,19278,'Dr. Aaron Conners',2,1),(271718,60073,'Kim Townsend',1,2),(271718,1219901,'Gordon Townsend',2,3),(271718,503103,'Nikki',1,4),(271718,3063,'Dianna',1,5),(271718,107379,'LeBron James',0,6),(271718,113373,'Tom',2,7),(271718,56446,'Steven',2,8),(271718,65923,'Noam',2,9),(271718,2698,'Norman',2,10),(271718,132157,'Donald',2,11),(271718,10980,'The Dogwalker',2,12),(271718,3141,'The Dog Owner',1,13),(271718,59842,'Schultz',0,14),(271718,79082,'Bryson',2,15),(271718,1490112,'Allister',2,16),(271718,1427948,'Dr. Conner\'s Patient',2,17),(271718,51857,'Tim',2,18),(271718,1243167,'Kyle',2,19),(271718,1490113,'Himself',2,20),(271718,4756,'Himself',2,21),(271718,179512,'Himself',2,22),(271718,168452,'Angry Subway Patron',1,23),(271718,5384,'Temembe',2,24),(271718,1552301,'S\'nuff Receptionist',1,25),(271718,426216,'Staten Island Oli',2,26),(271718,552243,'Lisa',0,27),(271718,1486957,'Kat',1,28),(271718,46986,'Chris Evert',1,29),(271718,1584938,'Woman on Bench with One-Hitter',1,30),(271718,1553053,'Gordon\'s Friend (uncredited)',2,31),(271718,169452,'Benefit Guest (uncredited)',1,32),(271718,1601493,'Wendy',1,33),(39486,2882,'Penny Chenery',1,0),(39486,6949,'Lucien Laurin',2,1),(39486,349,'Chris Chenery',2,2),(39486,21043,'Jack Tweedy',2,3),(39486,17874,'Bull Hancock',0,4),(39486,452,'Miss Ham',1,5),(39486,81697,'Eddie Sweat',2,6),(39486,2505,'Ogden Phipps',2,7),(39486,969166,'Ronnie Turcotte',2,8),(39486,168679,'E.V. Benjamin',0,9),(39486,159109,'Robert Kleburg',2,10),(39486,86938,'John Galbreath',2,11),(39486,14331,'Pancho Martin',2,12),(39486,1316784,'Laffit Pincay',0,13),(39486,16666,'Bill Nack',2,14),(39486,116514,'Andy Beyer',2,15),(39486,207997,'Seth Hancock',2,16),(39486,450951,'Sarah Tweedy',1,17),(39486,113926,'Kate Tweedy',1,18),(39486,1112040,'Chris Tweedy',0,19),(39486,1386138,'John Tweedy',0,20),(39486,19152,'Hollis Chenery',2,21),(39486,95047,'Earl Jansen',2,22),(39486,1545508,'Dr. Manuel Gilman',0,23),(39486,1115731,'Pastor',0,24),(39486,1018982,'Penny, age 6',1,25),(50544,12111,'Dylan Harper',2,0),(50544,18973,'Jamie Rellis',1,1),(50544,1276,'Lorna',1,2),(50544,57755,'Tommy Bollinger',2,3),(50544,147710,'Sammy - Sam the Magnificent',2,4),(50544,127963,'Himself',2,5),(50544,40279,'Annie Harper',1,6),(50544,23821,'Parker',2,7),(50544,28633,'Mr. Harper',2,8),(50544,17273,'Darin Arturo Morena',2,9),(50544,62861,'Quincy',2,10),(50544,54693,'Kayla',1,11),(50544,109046,'Hostess',1,12),(50544,154826,'Female Co-Worker',1,13),(50544,41549,'Driver',2,14),(50544,43483,'Flight Attendant',1,15),(325133,19274,'Mac Radner',2,0),(325133,9827,'Kelly Radner',1,1),(325133,29222,'Teddy Sanders',2,2),(325133,56734,'Shelby',1,3),(325133,1253355,'Beth',1,4),(325133,54697,'Pete Regazolli',2,5),(325133,198150,'Jimmy Blevins',2,6),(325133,54708,'Paula Faldt',1,7),(325133,54691,'Scoonie Schofield',2,8),(325133,1496393,'Nora',0,9),(325133,962547,'Maranda',1,10),(325133,1625558,'Christine',1,11),(325133,1400880,'Garf',2,12),(325133,14406,'Carol Gladstone',1,13),(325133,1542758,'Darren',0,14),(325133,77948,'Madison',1,15),(325133,500427,'Officer Watkins',0,16),(325133,7090,'Shelby\'s Dad',2,17),(325133,54728,'Bill Wazakowski',2,18),(325133,973651,'Oliver Studebaker',0,19),(325133,1325731,'Jessica Baiers',1,20),(325133,1429453,'Eric Baiers',2,21),(325133,448309,'Wendy the Realtor',1,22),(325133,1581096,'Stella Radner',1,23),(325133,1581097,'Stella Radner',1,24),(325133,1180698,'R.A.',2,25),(325133,144216,'Sorority Girl',1,26),(325133,1568703,'Tailgater',1,28),(325133,1568704,'Phi Lambda Sorority Sister',0,29),(325133,1568705,'Kappa Nu Sorority Sister',0,30),(140823,7056,'P.L. Travers',1,0),(140823,31,'Walt Disney',2,1),(140823,13242,'Ralph',2,2),(140823,72466,'Travers Robert Goff',2,3),(140823,47720,'Margaret Goff',1,4),(140823,17881,'Richard Sherman',2,5),(140823,11367,'Don DaGradi',0,6),(140823,1278755,'Ginty',0,7),(140823,107770,'Robert Sherman',2,8),(140823,1907,'Tommie',1,9),(140823,1278758,'Biddy',0,10),(140823,1212273,'Dolly',1,12),(140823,78962,'Mr. Belhatchett',2,13),(140823,3052,'Aunt Ellie',1,14),(140823,20523,'Diarmuid Russell',2,15),(140823,1585263,'Flight Attendant',1,16),(140823,1235414,'Doctor',2,17),(140823,1504950,'Woman with Infant',1,18),(89492,22226,'Pete',2,0),(89492,41087,'Debbie',1,1),(89492,41088,'Jason',2,2),(89492,41090,'Sadie',1,3),(89492,19537,'Desi',1,4),(89492,139135,'Cat',1,5),(89492,55536,'Catherine',1,6),(89492,93285,'Jodi',1,7),(89492,12074,'Oliver',2,8),(89492,53684,'CAt',2,9),(89492,13,'Larry',2,10),(89492,40477,'Ronnie',2,11),(89492,174514,'Barb',1,12),(89492,95866,'Billie Joe Armstrong',2,13),(89492,963429,'Charlotte',1,14),(89492,22224,'Accountant',2,15),(89492,986808,'Flirty Hockey Player',0,16),(89492,305993,'Charlotte\'s Teacher',2,17),(89492,53400,'Dr. Pellegrino',2,18),(89492,1558642,'Wendy',0,19),(89492,1144176,'Graham Parker',0,20),(89492,1449120,'School Playdate Parent',0,21),(89492,76539,'Room Service Waiter',2,22),(89492,1242819,'E.R. Nurse',1,23),(89492,1513736,'Disturbed Restaurant Patron (uncredited)',1,24),(89492,1677900,'BBQ Guest (uncredited)',1,25),(49530,12111,'Will Salas',2,0),(49530,71070,'Sylvia Weis',1,1),(49530,2037,'Timekeeper Raymond Leon',2,2),(49530,59315,'Rachel Salas',1,3),(49530,61363,'Fortis',2,4),(49530,16478,'Borel',2,5),(49530,66743,'Henry Hamilton',2,6),(49530,52646,'Philippe Weis',2,7),(49530,60033,'Greta',1,8),(49530,60901,'Timekeeper Kors',2,9),(49530,234982,'Michele Weis',1,12),(49530,1011100,'Maya',0,14),(49530,1011107,'Kara',1,15),(49530,135786,'Ulysse',2,16),(49530,1416557,'Nardin',0,17),(49530,1011102,'Webb',2,18),(49530,205114,'Bell',2,19),(49530,1011104,'Pasha',1,20),(49530,1572100,'Citizen',0,21),(49530,1011105,'Sagita',0,22),(49530,52957,'Victa',2,23),(49530,1011103,'Pierre',2,24),(49530,936308,'Jasmine',1,25),(49530,1324452,'Ross',2,26),(49530,1011106,'Louis',2,27),(49530,1448885,'Timekeeper Dent',2,28),(49022,11661,'Darcy',1,0),(49022,417,'Rachel',1,1),(49022,17697,'Ethan',2,2),(49022,83225,'Dex',2,3),(49022,122888,'Claire',1,4),(49022,81388,'Marcus',2,5),(49022,44712,'Bridget Thaler',1,6),(49022,99709,'Bridal Consultant',0,7),(49022,1257865,'June',0,8),(49022,1519037,'Salesgirl',0,9),(49022,1371392,'Hamptons Club Girl (uncredited)',0,10),(49022,130843,'London Pedestrian (uncredited)',0,11),(49022,1254435,'Young Darcy (uncredited)',1,12),(88794,6193,'J. Edgar Hoover',2,0),(88794,52419,'Robert Irwin',2,1),(88794,25879,'Mitchell Palmer',2,2),(88794,53807,'Clyde Tolson',2,4),(88794,3489,'Helen Gandy',1,5),(88794,5309,'Anna Marie Hoover',1,6),(88794,113231,'Dwight Eisenhower',2,7),(88794,481337,'Palmer\'s Daughter',1,8),(88794,1023139,'Walter Lyle',2,9),(88794,21662,'Agent Smith',2,10),(88794,14984,'Emma Goldman',1,11),(88794,6164,'Charles Lindbergh',1,12),(88794,20212,'Colonel Schwarzkopf',2,13),(88794,81681,'Albert Osborne',2,14),(88794,1063,'Lela Rogers',1,15),(88794,1258702,'Edgar\'s Niece',1,16),(88794,65871,'Anita Colby',1,17),(88794,155457,'Roosevelt\'s Secretary',1,18),(88794,112742,'Shirley Temple',1,19),(94348,80602,'Dr. Alex Cross',2,0),(94348,50347,'Monica Ashe',1,1),(94348,1003,'Leon Mercier',2,2),(94348,28657,'Picasso',2,3),(94348,4808,'Daramus Holiday',2,4),(94348,12833,'Tommy Kane',2,5),(94348,18249,'Nana Mama',1,6),(94348,11885,'Richard Brookwell',2,7),(94348,9186,'Vincent Dardis',2,8),(94348,37158,'Maria Cross',1,9),(94348,83458,'Fan Yau',1,10),(94348,1215401,'Hans Friedlich',2,11),(336004,47296,'Vaughn',2,0),(336004,380,'The Pope',2,1),(336004,7517,'Sydney',1,2),(336004,543530,'Cox',2,3),(336004,78452,'Kris',1,4),(336004,19184,'Marconi',2,5),(336004,61962,'Bernie',2,6),(336004,9779,'Dog',2,7),(336004,141518,'Cristal',1,8),(336004,109109,'Julie',1,9),(336004,125338,'Rebecca',1,10),(336004,1042684,'Pauline',1,11),(336004,1267285,'Isabel',0,12),(336004,1116011,'Lin Tao',0,13),(336004,101847,'Captain Michaels',2,14),(336004,74513,'Dante (as Stephen Cyrus Sepher)',2,15),(336004,1388479,'Steve',0,16),(336004,1411758,'Tom',0,17),(336004,1508566,'Eric',0,18),(336004,1277219,'Tagger',0,19),(336004,1717264,'Virginia',0,20),(336004,1717265,'Riley',0,21),(336004,1467026,'Mickey',0,22),(336004,1651995,'Joseph - Little Boy',0,23),(336004,1717266,'Captain Jerry',0,24),(336004,1717267,'Sergeant Thomas Forbes',0,25),(336004,1717268,'Anchorman',0,26),(336004,52885,'Jono',2,27),(336004,1717270,'Police Dispatcher',0,28),(336004,1269707,'Doctor',2,29),(336004,82944,'Mandy',0,30),(336004,1046665,'Grant',0,31),(336004,1717271,'Heather',0,32),(336004,1717272,'Dave',0,33),(336004,969630,'Waitress (as Alexis Sterling)',1,34),(336004,1717274,'Tim - Sketch Artist',0,35),(336004,88030,'Additional Voices (voice)',2,36),(35019,7056,'Nanny McPhee',1,0),(35019,77996,'Norman Green',2,1),(35019,5469,'Lord Gray',2,2),(35019,1579,'Isabel Green',1,3),(35019,10978,'Agatha Rose Doherty',1,4),(35019,7026,'Phil Green',2,5),(35019,1670,'Blenkinsop',2,6),(35019,24265,'Farmer MacReadie',2,7),(35019,3061,'Rory Green',2,8),(35019,81269,'Cyril Gray',2,9),(35019,1548525,'Vincent Green',0,10),(35019,937684,'Megsie Green',0,11),(35019,1222241,'Miss Turvey',0,12),(35019,36668,'Mis Topsey',0,13),(35019,72310,'Mr. Docherty',2,14),(35019,6640,'Lieutenant Addis',2,15),(35019,2066,'Enemy Pilot',0,16),(321741,2888,'Dr. Bennet Omalu',2,0),(321741,7447,'Dr. Julian Bailes',2,1),(321741,13,'Dr. Cyril Wecht',2,2),(321741,1216606,'Prema Mutiso',1,3),(321741,52,'Mike Webster',2,4),(321741,3229,'Dr. Joseph Maroon',2,5),(321741,87192,'Daniel Sullivan',2,6),(321741,1665,'Dr. Steven DeKosky',2,7),(321741,57686,'Christopher Jones',2,8),(321741,31164,'Dave Duerson',2,9),(321741,32203,'Dr. Ron Hamilton',2,10),(321741,55755,'Andre Waters',2,11),(321741,781,'Dr. Elliot Pellman',2,12),(321741,36422,'Roger Goodell',2,13),(321741,92617,'Justin Strzelczyk',0,14),(321741,74577,'Keana Strzelczyk',1,15),(321741,58733,'Defense Attorney',2,16),(321741,1098033,'Gracie',0,17),(321741,1624696,'FBI Agent',0,18),(321741,68180,'FBI Agent',2,19),(321741,29051,'Waters\' Mother',1,20),(321741,228701,'Mrs. Scott',0,21),(321741,1286878,'Graveyard Tech',0,22),(321741,7497,'Angry Neurologist',2,23),(321741,1629921,'Hospital Security Guard',2,24),(321741,1367292,'Assistant',0,25),(321741,1378130,'Strzelczyk\'s Daughter',0,26),(321741,1286879,'Young Reporter',2,27),(321741,1039680,'Rachel Green',0,28),(321741,152902,'Deputy Mayor',2,29),(321741,61323,'Paul Tagliabue',2,30),(321741,48535,'Father D\'Amico',0,31),(321741,1483783,'College Coach',0,32),(321741,1766582,'High School Coach',0,33),(321741,1766583,'TV Reporter (Webster Site)',0,34),(321741,1766585,'TV Reporter (Interview)',0,35),(321741,1158120,'ER Doctor',0,36),(321741,1766586,'Tech',2,37),(321741,1271781,'Tech',0,38),(321741,173251,'Colleen Bailes',1,39),(321741,1766587,'Strzelczyk\'s Son',0,40),(321741,1354413,'Paramedic',0,41),(321741,1766589,'Contractor',0,42),(321741,1766591,'Security Guard',0,43),(321741,1766592,'NFL Employee',0,44),(321741,1766593,'Piano Player',0,45),(321741,1766594,'Lodi Morgue Tech',0,46),(321741,1766595,'Cantor',0,47),(321741,207069,'Reporter at Westin',2,48),(321741,1766597,'Altar Server (uncredited)',0,49),(321741,153946,'Crockett (uncredited)',2,50),(321741,1641616,'Attorney (uncredited)',0,51),(321741,1766610,'Strzelczyk\'s Teen Daughter (uncredited)',0,52),(321741,1746136,'Business Woman (uncredited)',0,53),(321741,1543874,'Louisville Football Coach (uncredited)',2,54),(321741,1636767,'Doctor (uncredited)',0,55),(321741,1594986,'Doctor (uncredited)',2,56),(321741,1766618,'NFL Mourner (uncredited)',0,57),(321741,1636795,'Football Coach (uncredited)',0,58),(321741,92748,'Amobi Okoye (uncredited)',2,59),(321741,1563263,'Corpse (uncredited)',0,60),(321741,127060,'Limo Driver - West Palm Beach Florida (uncredited)',0,61),(321741,1766631,'NFL Football Player (uncredited)',0,62),(321741,127063,'Pittsburgh Police Officer (uncredited)',0,63),(321741,1766634,'Young Webster (uncredited)',0,64),(321741,122257,'Mr. Scott (uncredited)',0,65),(321741,1480130,'NFL Lawyer (uncredited)',1,66),(321741,1766635,'NFL Lawyer (uncredited)',0,67),(321741,1673034,'NFL Owner (uncredited)',2,68),(321741,1604109,'Business Woman (uncredited)',0,69),(321741,1636801,'NFL Attorney (uncredited)',1,70),(321741,1766648,'Receptionist (uncredited)',0,71),(59965,84214,'Nathan Harper',2,0),(59965,112561,'Karen Murphy',1,1),(59965,658,'Frank Burton',2,2),(59965,11355,'Kevin Harper',2,3),(59965,49,'Mara Harper',1,4),(59965,6283,'Nikola Kozlow',2,5),(59965,10205,'Dr. Geraldine \'Geri\' Bennett',1,6),(59965,20212,'Martin Price',2,7),(59965,126932,'Lorna Price',1,8),(59965,171941,'Sandra Burns',1,9),(59965,1266052,'Alek',2,10),(59965,77278,'Gilly',2,11),(59965,1011103,'Jake',2,12),(59965,12371,'Gregory',2,13),(59965,967197,'Billy',2,14),(59965,10379,'Tom Shealy',2,15),(59965,40377,'Mr. Miles',2,16),(59965,1432982,'Mrs. Murphy',0,17),(59965,1432979,'Riah',0,18),(59965,132217,'CIA Man',2,19),(59965,572038,'Thermal',0,20),(59965,1430509,'Driver',2,21),(59965,1432984,'Kozlow\'s Tech',2,22),(59965,1669570,'Nurse',1,23),(59965,27031,'Red Flannel',2,24),(59965,1286879,'Cop',2,25),(59965,1279375,'Girl',1,26),(59965,109667,'Sweater',2,27),(59965,1669797,'Helicopter Pilot',2,28),(59965,991960,'Short Sleeves',0,29),(59965,1432980,'Game Announcer',0,30),(59965,1432981,'Hot Dog Vendor',0,31),(59965,1480130,'Woman in ER Waiting Room (uncredited)',1,32),(59965,572076,'Teacher (uncredited)',1,33),(98357,13240,'Billy Taggart',2,0),(98357,934,'Nicholas Hostetler',2,1),(98357,1922,'Cathleen Hostetler',1,2),(98357,2954,'Carl Fairbanks',2,3),(98357,12834,'Jack Valliant',2,4),(98357,203096,'Katy Bradshaw',0,5),(98357,76511,'Natalie Barrow',1,6),(98357,87118,'Tony Jansen',2,7),(98357,3497,'Paul Andrews',2,8),(98357,5296,'Todd Lancaster',2,9),(98357,2171,'Sam Lancaster',0,10),(98357,1141737,'Valerie',0,11),(98357,586270,'Secretary',0,12),(98357,1273242,'Mikey Tavarez',0,13),(98357,120253,'Judge',2,14),(98357,946356,'Prosecutor',1,15),(98357,31467,'Mr. Davies',2,16),(98357,17194,'Murdock',2,17),(98357,20746,'Ryan Blake',2,18),(98357,118595,'Mitch Rappaport',0,19),(98357,1042684,'Mitch Rapapport\'s Wife',1,20),(98357,1129795,'Reporter at City Hall',0,21),(49526,24045,'Wilee',2,0),(49526,335,'Bobby Monday',2,1),(49526,37046,'Vanessa',1,2),(49526,78324,'Mima',1,3),(49526,1132104,'Manny',0,4),(49526,20644,'Raj',2,5),(49526,204339,'Bike Cop',0,6),(49526,1417527,'Office Worker',0,7),(49526,143425,'Kyle',2,8),(49526,543726,'Phoebe',1,9),(268920,368,'Cooper',1,0),(268920,63522,'Daniella',1,1),(268920,72994,'Dixon',2,2),(268920,3911,'Captain Emmett',2,3),(268920,55755,'Det Jackson',2,4),(268920,1360013,'Dealer',1,5),(268920,1038379,'Randy',2,6),(268920,85484,'Hauser',2,7),(268920,113373,'Steve',2,8),(268920,1181296,'Rookie',0,9),(268920,1212271,'Cooper Teen',1,10),(268920,85484,'Detective Hauser',2,11),(268920,1559700,'Woman Shopper',1,12),(268920,1559701,'Marisol',1,13),(268920,1559702,'Cooper Girl',0,14),(268920,1288833,'Casino Guest (uncredited)',0,15),(268920,155540,'Jesus',2,16),(268920,1381148,'Angel',0,17),(268920,76857,'Vicente Cortez',2,18),(268920,84407,'Red',2,19),(268920,1983,'Felipe Riva',2,20),(268920,60875,'Wayne',2,21),(268920,1754422,'Teresa Cortez',1,22),(268920,16460,'Lou',2,23),(268920,1754423,'DJ',0,24),(268920,1044195,'Pudgy Guy',0,25),(268920,1754424,'State Trooper',0,26),(268920,1377678,'News Reporter',1,27),(268920,1754425,'News Reporter',0,28),(268920,1544406,'Catering Supervisor',1,29),(268920,1754426,'Guy in Bar',0,30),(268920,29214,'Dispatch Operator',1,31),(268920,1392647,'Bodyguard',0,32),(268920,60877,'Brenda',1,33),(268920,1687032,'Busrider',1,34),(268920,1754427,'Damas Dancer #1',0,35),(268920,1754428,'Damas Dancer #2',1,36),(268920,1754429,'Damas Dancer #3',1,37),(268920,1754431,'Damas Dancer #4',1,38),(268920,1542882,'Damas Dancer #4',1,39),(268920,29216,'Choreographer',0,40),(268920,1754441,'Drunk Santa',0,41),(268920,1754442,'Prostitute',0,42),(268920,1415436,'Cooper\'s Prom Date',0,43),(268920,1680188,'Bouncer',2,44),(268920,1754443,'Angry Mom',1,45),(268920,1749825,'Special Agent',0,46),(268920,1749826,'Special Agent',0,47),(268920,1158069,'Older Native American Man',0,48),(268920,1560336,'Quincineara Guest',0,49),(268920,1749827,'Trucker',0,50),(268920,1749828,'Waitress',1,51),(268920,1754444,'Trick or Treater',0,52),(268920,1466630,'Casino Patron',0,53),(268920,1754445,'Dama',1,54),(268920,1754446,'Officer Gannon',0,55),(268920,1514479,'Federal Officer',2,56),(268920,1749829,'Federal Office Worker',0,57),(268920,1288832,'Jaywalker',1,58),(268920,1687922,'Bus Passenger',0,59),(268920,1754447,'Bachelorette',1,60),(268920,1209709,'Teenage Girl',1,61),(268920,1159596,'Texan Driver',1,62),(268920,1754452,'State Trooper',0,63),(268920,1754453,'Police Officer',0,64),(268920,1578720,'Courthouse Mob Protester',0,65),(268920,1754454,'Payphone Passerby',1,66),(268920,1754455,'Casino Patron',1,67),(268920,1517477,'Line Cook',0,68),(268920,1754456,'Casino Cocktail Waitress',1,69),(268920,1754457,'Prom Goer',0,70),(268920,1659999,'Quinceau00f1era Guest',1,71),(268920,1286436,'Casino Patron',1,72),(268920,1755068,'Pedestrian',0,73),(268920,1755069,'Casino Patron / Roadblock Driver',0,74),(268920,1755070,'Head Cook',0,75),(268920,1755071,'Chamberlain',0,76),(268920,1755073,'Dama',1,77),(268920,1288831,'Five and Dime Patron',0,78),(268920,1755074,'Quinceanera Patron',0,79),(268920,1445249,'State Trooper',0,80),(268920,932189,'Party Guest',0,81),(268920,1755075,'Halloween Princess',0,82),(268920,1711523,'Waitress',1,83),(268920,1601439,'Driver',0,84),(268920,1755076,'Sam',0,85),(268920,1755077,'Bus Passenger',0,86),(268920,1413402,'Driver / Wedding Guest',0,87),(268920,1718441,'Pedestrian',0,88),(268920,1438305,'Detective',2,89),(268920,193946,'Bar Patron #2',2,90),(268920,1011212,'Bar Patron',2,91),(268920,1454299,'Driver',0,92),(268920,1755078,'Quinceau00f1era Guest / Cocktail Waitress',1,93),(268920,1604991,'Chef',0,94),(268920,1755079,'Cortez Gang',0,95),(268920,1755080,'Quincenera Guest',0,96),(268920,1755081,'Teenage Boy',0,97),(268920,1371231,'Sheriff Deputy / Pedestrian with Car',0,98),(268920,1609624,'News Reporter',1,99),(268920,1718445,'State Trooper',0,100),(268920,1682013,'Horny Teenage Cashier',0,101),(268920,1747278,'Police Officer',0,102),(268920,1718665,'Police Officer',0,103),(268920,1755083,'Prisoner',0,104),(268920,1755084,'Biker / Bar Patron / Cop',0,105),(268920,1493736,'Police Officer',0,106),(268920,1755085,'Cortez Gang',0,107),(268920,1755086,'Federal Agent',0,108),(268920,1466628,'Casino Patron',0,109),(268920,1384815,'Attorney',1,110),(268920,1755087,'Sofia\'s Friend',1,111),(268920,1755088,'Quinceau00f1era Guest',1,112),(268920,1755089,'Cortez Gang',0,113),(119283,976,'Parker',2,0),(119283,16866,'Leslie',1,1),(119283,1733,'Hurley',2,2),(119283,19654,'Melander',2,3),(119283,5365,'Ross',2,4),(119283,1366,'Ernesto',2,5),(119283,33712,'Norte',2,6),(119283,17859,'Carlson',2,7),(119283,105838,'Claire',1,8),(119283,9452,'Kroll',0,9),(119283,5699,'Ascension',1,10),(119283,21127,'Jake Fernandez',2,11),(119283,60884,'James',2,12),(119283,150669,'August Hardwicke',2,13),(119283,231857,'Jack',0,14),(119283,62784,'Ohio State Fair Security Guard Ben',0,15),(119283,1821681,'Ohio State Fair Accounts Manager',0,16),(119283,1821685,'Ohio State Fair Mother',1,17),(119283,62787,'Oliver',0,18),(119283,3206,'Bobby Hardwicke',2,19),(119283,1578707,'Bonnie',1,20),(119283,1031261,'Amber',1,21),(119283,141765,'Jen Hurley',0,22),(119283,12552,'Hospital Patient Quinn',0,23),(119283,157404,'Danzinger',2,24),(119283,1456715,'Norte\'s Office Bad Guy #1',0,25),(119283,1442535,'Norte\'s Office Bad Guy #2',2,26),(119283,92503,'Norte\'s Office Bad Guy #3',2,27),(119283,60117,'Assistant to Mrs. Fritz',2,28),(119283,167244,'Phyllis Summers',0,29),(119283,574380,'Bouncer',2,30),(35169,18269,'Dan Sanders',2,0),(35169,83586,'Neal Lyman',2,1),(35169,15110,'Tammy Sanders',1,2),(35169,113867,'Felder',1,3),(35169,71403,'Riggs',2,4),(35169,113868,'Tyler Sanders',2,5),(35169,110930,'Amber',1,6),(35169,17488,'Mrs. Martin',1,7),(35169,115981,'Frank',0,8),(35169,1370567,'Cheese',0,9),(35169,543256,'Gus',2,10),(35169,135855,'Hank',2,11),(35169,287341,'Drill Sergeant',2,12),(35169,1218277,'Principal Baker',1,13),(35169,18271,'Wilson',2,14),(35169,76525,'Mr. Gupta',2,15),(118957,138010,'Tina',1,0),(118957,145247,'Jaimie',1,1),(118957,20402,'Doyle',2,2),(118957,109438,'Josh',2,3),(118957,210275,'Heather',1,4),(118957,558466,'Ryan',2,5),(118957,94798,'Kyle',2,6),(118957,144286,'Naomi',1,7),(118957,1239123,'Steven',2,8),(118957,990513,'Rory',2,9),(118957,109546,'Lockie',2,10),(118957,3062,'Kirby',2,11),(118957,272408,'Colins',2,12),(118957,1211862,'Jessup',2,13),(118957,169901,'Todd',2,14),(118957,1828715,'Lifeguard',0,15),(118957,62744,'Oceania Store Owner',0,16),(37498,15111,'Marcus Ray',2,0),(37498,51359,'Karen Lee',1,1),(37498,7004,'Harry Johanson',2,2),(37498,60949,'Tommy Hendricks',2,3),(37498,26782,'Bear',2,4),(37498,954000,'Chip',0,5),(144336,1100,'John \'Breacher\' Wharton',2,0),(144336,65731,'James \'Monster\' Murray',2,1),(144336,175826,'Lizzy Murray',1,2),(144336,20580,'Joe \'Grinder\' Phillips',2,3),(144336,6195,'Jackson',2,4),(144336,142636,'Eddie \'Neck\' Jordan',2,5),(144336,18288,'Julius \'Sugar\' Edmonds',2,6),(144336,11616,'Investigator Caroline Brentwood',1,7),(144336,94864,'Tom \'Pyro\' Roberts',2,8),(144336,1345133,'Bryce \'Tripod\' McNeely',0,9),(144336,1345134,'\'Smoke\' Jennings',0,10),(144336,48530,'Sapo',2,11),(144336,1691470,'Dubai Money Launderer',2,12),(144336,42993,'Floyd Demel',2,13),(144336,53249,'ASAC Phelps',0,14),(144336,1711678,'DEA Sniper',0,15),(144336,86938,'Stan Morris (DEA Interrogator)',2,16),(144336,68180,'Lou Cantrell (DEA Interrogator)',2,17),(144336,1355461,'DEA Agent',0,18),(144336,1230922,'DEA Agent',0,19),(144336,1373047,'DEA Agent',0,20),(144336,31711,'Agent Spolcheck',2,21),(144336,1683086,'Stripclub Waitress',0,22),(144336,1711690,'Stripclub Bouncer',0,23),(144336,1138844,'Captain Walther',0,24),(144336,969413,'Deputy Hayes',2,25),(144336,112546,'Deputy Richards',0,26),(144336,1711693,'Coroner',0,27),(144336,1383527,'Coroner\'s Assistant',1,28),(144336,1382739,'Forensic Technician',0,29),(144336,1711695,'General Counsel',0,30),(144336,1711696,'Mexican Federal Shooter',0,31),(144336,112562,'Karen Wharton',1,32),(144336,145323,'Jacob Wharton',0,33),(144336,1711699,'Apartment Hitman',0,34),(144336,18300,'Apartment Hitman',2,35),(144336,1711763,'Apartment Hitman',0,36),(144336,1711764,'Apartment Hitman',0,37),(144336,76796,'Apartment Hitman',0,38),(144336,1635196,'Apartment Hitman',2,39),(144336,1711856,'Latina Hostage',0,40),(144336,1711858,'Redneck',0,41),(144336,1711863,'Redneck',0,42),(144336,1711870,'Brujo',2,43),(144336,155965,'APD Officer',1,44),(144336,1378150,'Hostage in Monte Carlo',1,45),(144336,1711879,'Car Crash Driver',0,46),(144336,1711881,'Cop',0,47),(144336,584028,'Mexican Commandante',0,48),(144336,1711884,'Brujo\'s Bar Girl',0,49),(144336,1083536,'Pretty Bar Girl',1,50),(144336,4606,'Sicario',2,51),(144336,1711885,'Brujo\'s Female Sicario',0,52),(144336,945491,'Brujo\'s Sicario',2,53),(144336,1311388,'Brujo\'s Sicario',0,54),(144336,1711886,'Brujo\'s Sicario',0,55),(144336,1371007,'Brujo\'s Sicario',0,56),(285783,24045,'Philippe Petit',2,0),(285783,2282,'Papa Rudy',2,1),(285783,1021684,'Annie Allix',1,2),(285783,222121,'Albert',2,3),(285783,18473,'J.P.',2,4),(285783,78311,'Barry Greenhouse',2,5),(285783,7013,'Guy Tozolli',2,6),(285783,54193,'Officer Genco',2,7),(285783,40939,'Jean-Louis',2,8),(285783,207881,'Man with Plaid Sports Coat',2,9),(285783,101208,'Parisian Flower Child',1,10),(285783,1347948,'David',2,11),(285783,44169,'Officer Daley',2,12),(285783,60907,'Texas Tourist',2,13),(285783,119706,'Earbud Guy',0,14),(285783,1540235,'Clemenza',0,15),(285783,1721359,'Outdoor Cafu00e9 Man',0,16),(285783,1721360,'Outdoor Cafu00e9 Woman (as Emilie Leclerc)',0,17),(285783,92259,'American Tourist',0,18),(285783,1142295,'Woman in Chalk Circle',0,19),(285783,1721361,'Boy in Chalk Circle',0,20),(285783,1721365,'Gendarme',0,21),(285783,1721366,'Gendarme',0,22),(285783,1721371,'Young Girl with Candy',0,23),(285783,59616,'Dental Office Receptionist',1,24),(285783,85161,'Dental Patient',0,25),(285783,1106050,'Dental Patient',1,26),(285783,949759,'Dental Patient',0,27),(285783,1721372,'Boy Petit',0,28),(285783,1721373,'Circus High Wire Performer',0,29),(285783,104730,'Petit\'s Father',2,30),(285783,955902,'Petit\'s Mother',1,31),(285783,1261373,'Texan Tourist Woman',0,32),(285783,1589908,'Fisherman',0,33),(285783,1721376,'Fisherman',0,34),(285783,1721381,'Fisherman',0,35),(285783,1721382,'Fisherman',0,36),(285783,1721384,'Portly Photographer (as Vlado Stokanic)',0,37),(285783,1674923,'Notre Dame Police Officer',2,38),(285783,1099770,'Notre Dame Police Officer',2,39),(285783,1351481,'WTC Construction Worker (as Guido Grasso)',0,40),(285783,439097,'Jeff / Jean-Franu00e7ois',0,41),(285783,1709467,'US Customs Agent',2,42),(285783,1721394,'WTC Architect',0,43),(285783,43613,'Port Authority Officer',0,44),(285783,1721396,'WTC Lobby Guard',0,45),(285783,1684745,'WTC Visitor\'s Concierge',1,46),(285783,1148496,'Officer Foley',0,47),(285783,1240748,'Dock Foreman',2,48),(285783,1721408,'Elevator Operator',0,49),(285783,1721409,'WTC Rooftop Guard',0,50),(285783,1721410,'Mysterious Visitor',0,51),(285783,1442592,'Sgt. O\'Donnell',2,52),(285783,198540,'Officer Tessio',0,53),(285783,1489193,'Officer Washington (as Darrell Izeard)',0,54),(285783,131338,'Officer Hagan',2,55),(285783,1548174,'Bearded Man',0,56),(285783,1721413,'Officer Sollozzo',0,57),(285783,1721415,'Engineer Cop',0,58),(285783,1676049,'Construction Worker with Blow Torch',2,59),(285783,198650,'Officer Cicci',0,60),(285783,1390355,'News Reporter',0,61),(285783,1433017,'News Reporter',0,62),(285783,1548178,'News Reporter',0,63),(285783,1721426,'News Reporter',0,64),(49478,2464,'Komodo',2,1),(49478,533016,'Ryan Jeffers',2,2),(49478,6407,'Elysia',1,3),(49478,995587,'Master Chung (as Chao-Li Chi)',2,4),(45958,3810,'Uxbal',2,0),(45958,137919,'Marambra',0,1),(45958,137920,'Ana',1,2),(45958,137921,'Mateo',0,3),(45958,87015,'Tito',2,4),(45958,559826,'Ekweme',0,5),(45958,559827,'Ige',0,6),(45958,72483,'Hai',0,7),(45958,1115666,'Liwei',2,8),(45958,1115667,'Samuel',0,9),(45958,1115668,'Li',0,10),(45958,1115669,'Chino Obeso',0,11),(45958,1115670,'Barman Bar Hai',0,12),(45958,1115671,'Chino Bodega',0,13),(45958,1115672,'Jung',0,14),(45958,1331724,'Padre Hai',0,15),(45958,1331725,'Madre Hai',0,16),(45958,34053,'Bea',0,17),(45958,102221,'Zanc',2,18),(45958,24977,'Mendoza',2,19),(45958,993998,'Muchacho',2,20),(45958,119972,'Hombre de Luto',0,21),(45958,1331726,'Niu00f1o Muerto',0,22),(45958,1331727,'Seu00f1ora Funeral',0,23),(45958,1331728,'Mujer Grande',0,24),(45958,592709,'Mu00e9dico',0,25),(45958,15593,'Enfermera',1,26),(45958,1331729,'Cirujano 1',0,27),(45958,1331730,'Cirujano 2',0,28),(45958,1331731,'Cirujano 3',0,29),(45958,1331732,'Vieja',0,30),(45958,1331733,'Secretaria Fincas',0,31),(45958,1012151,'Hombre Semidesnudo',0,32),(45958,1331734,'Empleado Cementerio 1',0,33),(45958,1331735,'Empleado Cementerio 2',0,34),(45958,116082,'Buru00f3crata',2,35),(45958,1331736,'Mesera',0,36),(45958,1331737,'Alcalde',0,37),(45958,1331738,'Chica Joven 2',0,38),(45958,1331739,'Presentadora Informativos',0,39),(45958,1331740,'Reportera Informativos',0,40),(45958,1331741,'Bailarinas Stripper Bar',0,41),(45958,1331742,'Bailarinas Stripper Bar',0,42),(45958,1331743,'Bailarinas Stripper Bar',0,43),(45958,1331745,'Bailarinas Stripper Bar',0,45),(45958,1171710,'Bailarinas Stripper Bar',1,46),(45958,1331746,'Bailarinas Stripper Bar',0,47),(45958,1331747,'Mosso d\'Esquadra Antidisturbio (uncredited)',0,48),(45958,1110505,'(uncredited)',2,49),(45958,1331748,'Plau00f1idera (uncredited)',0,50),(45958,1331749,'Mosso d\'Esquadra (uncredited)',0,51),(45958,229324,'Bailarinas Stripper Bar',0,52),(310706,2975,'Jack',2,0),(310706,1372,'Earl Pike',2,1),(310706,29221,'Sardoonah',1,2),(310706,38674,'Casey Spandau',1,3),(310706,821,'Valeriana Schick',1,4),(310706,94103,'Gary Vermillion',2,5),(310706,10822,'Nicky',2,6),(310706,22252,'Bet Tannen',1,7),(310706,8854,'Frank Vermillion',2,8),(198663,527393,'Thomas',2,0),(198663,1310760,'Minho',2,1),(198663,115150,'Teresa Agnes',1,2),(198663,78062,'Alby',2,3),(198663,1389339,'Chuck',2,4),(198663,25663,'Newt',2,5),(198663,93491,'Gally',2,6),(198663,1036196,'Frypan',2,7),(198663,969045,'Ben',2,8),(198663,970561,'Zart',0,9),(198663,1340889,'Winston',0,10),(198663,512316,'Jeff',0,11),(198663,1395491,'Clint',0,12),(198663,1276,'Ava Paige',1,13),(198663,79025,'Masked Man',2,14),(198663,1415403,'Glader',0,15),(198663,1415405,'Glader',0,16),(198663,1415406,'Glader',0,17),(198663,1415408,'Glader',0,18),(198663,1415410,'Glader',0,19),(198663,1415412,'Glader',0,20),(198663,1415413,'Glader',0,21),(198663,1415416,'Glader',0,22),(198663,1415417,'Glader',0,23),(198663,1415418,'Glader',0,24),(198663,1415421,'Glader',0,25),(198663,1415423,'Glader',0,26),(198663,1415424,'Glader',0,27),(198663,1415426,'Glader',0,28),(198663,1415428,'Glader',0,29),(198663,1415429,'Glader',0,30),(198663,1415431,'Glader',0,31),(198663,1415436,'Glader',0,32),(198663,1415437,'Glader',0,33),(198663,1415442,'Glader',0,34),(198663,1415443,'Glader',0,35),(198663,1415446,'Glader',0,36),(239573,4937,'Dan Trunkman',2,0),(239573,54697,'Mike Pancake',2,1),(239573,11006,'Jim Spinch',2,2),(239573,83873,'Susan Trunkman',0,3),(239573,23459,'Chuck Portnoy',1,4),(239573,11109,'Bill Whimlsley',2,5),(239573,207,'Timothy McWinters',2,6),(239573,933578,'Bess',1,7),(239573,1371550,'Farm Goer',0,8),(239573,1360003,'Business woman',0,9),(239573,1371551,'Enterprise Rep',1,10),(239573,43115,'Armand',2,11),(239573,1371552,'Businessman',0,12),(239573,1371553,'Student',0,13),(239573,50185,'Pedestrian',0,14),(239573,1725868,'Hostel Kid',2,15),(127493,2963,'Will Montgomery',2,0),(127493,50463,'Riley Simms',1,1),(127493,6164,'Cab Driver',1,2),(127493,506085,'Alison',1,3),(127493,6413,'Tim Harlend',2,4),(127493,136530,'Fletcher',0,5),(127493,1084799,'Tourist',0,6),(127493,191260,'Pete',2,7),(127493,16460,'Matthews',2,8),(127493,22132,'Hoyt',2,9),(127493,1286019,'Kiosk Girl',0,10),(127493,1286020,'Frightened Girl in Car',0,11),(127493,1338215,'FBI Agent (uncredited)',0,12),(228205,928572,'Luke Collins',2,1),(228205,52018,'Sophia Danko',1,2),(228205,12139,'Kate Collins',1,3),(228205,129104,'Marcia',1,4),(228205,54738,'Young Ira',2,5),(228205,566331,'Young Ruth',1,6),(228205,21278,'Ira Levinson',2,7),(228205,155965,'Andrea McDonald',1,8),(228205,1433592,'Mrs. Pfeffer',0,9),(228205,1445675,'Ira\'s Mother',0,10),(228205,1481636,'Luiz',0,11),(228205,1074187,'Larry Till',0,12),(228205,1156046,'Rodeo Girl / Dancer',0,13),(228205,1549537,'Nurse Wilson',0,14),(228205,1549538,'Joe Parks',0,15),(228205,1374151,'David Stein',2,16),(228205,1549539,'Country Band Member',0,17),(228205,1549540,'Country Band Member',0,18),(228205,84792,'Auctioneer',2,19),(77875,17276,'George',2,0),(77875,10860,'Stacie',1,1),(77875,139,'Patti',1,2),(77875,1922,'Denise',1,3),(77875,154182,'Param',2,4),(77875,33836,'Coach Jacob',0,5),(77875,6065,'Carl',2,6),(77875,20750,'Barb',1,7),(77875,524503,'Lewis',2,8),(77875,119807,'Matt',0,9),(77875,727467,'Connie',1,10),(77875,1649387,'Ally',1,11),(77875,1110284,'Billy',2,12),(77875,1649388,'Griffin',2,13),(77875,1360087,'Hunter',0,14),(77875,1649391,'Samantha',1,15),(77875,1133600,'Dawn',1,16),(77875,95475,'Chip Johnston',2,17),(77875,550319,'Lupe',1,18),(77875,1471865,'Mom',1,19),(77875,1477895,'Mom',1,20),(192136,17605,'Nelson Mandela',2,0),(192136,2038,'Winnie Madikizela',1,1),(192136,2606,'Walter Sisulu',2,2),(192136,996636,'Ahmed Kathrada',0,3),(192136,2607,'Govan Mbeki',0,4),(192136,82190,'Chief Warder',2,5),(192136,74627,'James Gregory',2,6),(192136,1125917,'Zindzi Mandela',0,7),(192136,13093,'Evelyn Mase',1,8),(192136,1041697,'Kobie Coetzee',2,9),(192136,229640,'Elias Motsoaledi',0,10),(192136,1208133,'Raymond Mhlaba',0,11),(192136,2619,'Andrew Miageni',0,12),(192136,1384871,'Colonel Badenhorst',0,13),(192136,231649,'President de Klerk',0,14),(202575,571564,'Thunder / Dylan',1,0),(202575,45603,'Chihuahua',2,1),(202575,64445,'Carla',0,2),(202575,130081,'Jack / Carlo',2,3),(202575,1232172,'Maggie',0,4),(202575,571332,'Lawrence',0,5),(202575,1248445,'Daniel',0,6),(202575,1482959,'Izzy',0,7),(202575,1482960,'Hospital children',0,8),(202575,1482961,'Hospital children',0,9),(202575,1482962,'Hospital children',0,10),(202575,1482965,'Hospital children',0,11),(202575,1324161,'Nurse Baxter',0,12),(202575,86007,'Reggie',0,13),(202575,89042,'Audrey',1,14),(202575,1485397,'Lasondra',0,15),(202575,149684,'Mr. Eames',2,16),(202575,15761,'Mrs. Eames',1,17),(202575,571225,'Mark Matthews',2,18),(202575,147887,'Mike Matthews',2,19),(202575,1500969,'Old Lady',0,20),(202575,15831,'Cat sounds (archive footage; uncredited)',2,21),(71469,46593,'Sean',2,0),(71469,19538,'Anne',1,1),(71469,52442,'Natalie',1,2),(71469,92404,'Skyler',2,3),(71469,2978,'Ben',2,4),(71469,1030490,'Vika',0,5),(71469,18283,'Sergei',2,6),(71469,29839,'Matvei',2,7),(71469,1030491,'Sasha',0,8),(71469,1030492,'Boris',0,9),(71469,101423,'Yuri',0,10),(71469,1030493,'Tess',0,11),(71469,80997,'Anton Batkin',2,12),(71469,1030494,'Bartender No. 1',0,13),(71469,237570,'Bartender No. 2',0,14),(85446,479656,'Emily',1,0),(85446,932091,'Sean',2,1),(85446,110743,'Jason',0,2),(85446,222141,'Claire',1,3),(85446,932093,'Dancer',1,4),(85446,217055,'Penelope',1,5),(85446,932095,'Dancer',1,6),(85446,180789,'Tripp',2,7),(85446,932097,'Mob Dancer',0,8),(85446,54503,'Moose',2,9),(85446,8212,'Mr Anderson',2,10),(85446,1430895,'Mob Dancer',1,11),(72387,976,'Luke Wright',2,0),(72387,14541,'Mayor Tremello',2,1),(72387,20904,'Han Jiao',2,2),(72387,565675,'Mei',1,3),(72387,31512,'Captain Wolf',2,4),(72387,56675,'Alex Rosen',2,5),(72387,22075,'Quan Chang',2,6),(72387,82631,'Vassily Docheski',2,7),(72387,52761,'Chemyakin',2,8),(72387,1557632,'Eve',0,9),(72387,159850,'Detective Reddick',2,10),(72387,163976,'Detective Benoit',0,11),(72387,170240,'Detective Kolfax',2,12),(72387,1668397,'Irate Homeless Man',2,13),(72387,79651,'Inspecteur Lasky',0,14),(50647,22226,'George',2,0),(50647,4491,'Linda',1,1),(50647,15009,'Seth',2,2),(50647,50463,'Eva',1,3),(50647,54470,'Almond',1,4),(50647,21131,'Wayne Davidson',2,5),(50647,21278,'Carvin',2,6),(50647,17696,'Karen',1,7),(50647,77089,'Rick Gergenblatt',2,8),(50647,291263,'Rodney Wilson',2,9),(50647,63220,'Kathy',1,10),(50647,113224,'Marissa',1,11),(50647,128207,'Beverly',1,12),(50647,200237,'Deena Schuster',1,13),(50647,176031,'Sherm',2,14),(50647,113223,'Shari',1,15),(50647,22214,'Himself',2,16),(50647,22215,'Himself',2,17),(50647,22224,'Himself',2,18),(50647,1475102,'Marcy',0,19),(50647,298410,'Marcyu2019s Flunkie',2,20),(50647,282835,'Jim Stansel',2,21),(50647,11477,'Himself',2,22),(50647,53607,'Manfreddie',2,23),(50647,1041480,'Paco',2,24),(50647,117891,'Dale',0,25),(50647,1256260,'Grisham',0,26),(50647,1056523,'Tanner',2,27),(50647,1492804,'Protester',0,28),(50647,1358567,'Jerry Beaver',2,29),(50647,1797614,'Stephanie Davis',0,30),(55721,41091,'Annie',1,0),(55721,9827,'Helen',1,1),(55721,52792,'Lillian',1,2),(55721,63234,'Rita',1,3),(55721,475512,'Becca',1,4),(55721,55536,'Megan',1,5),(55721,40477,'Officer Rhodes',2,6),(55721,65717,'Ted',2,7),(55721,200237,'Whitney',1,8),(55721,305993,'Jewelry Store Couple',2,9),(55721,117775,'Jewelry Store Couple',1,10),(55721,75463,'Don Cholodecki',2,11),(55721,89462,'Kahlua',1,12),(55721,54696,'Oscar the Security Guard',2,13),(55721,221581,'Brynn',1,14),(55721,26209,'Gil',2,15),(55721,20362,'Annie\'s Mom',1,16),(55721,570559,'Kevin',0,17),(55721,53256,'Boot Camp Instructor',2,18),(55721,1186394,'Carnie Wilson',1,19),(55721,1186421,'Wendy Wilson',0,20),(55721,1186422,'Chynna Philips',0,21),(55721,1192944,'',0,22),(55721,1169063,'Jewelry Store Girl',1,23),(55721,1219590,'Flight Attendant Steve',0,24),(55721,1388181,'Flight Attendant Claire',0,25),(55721,1057653,'Pete',0,26),(109414,17051,'James Franco',2,0),(109414,21007,'Jonah Hill',2,1),(109414,19274,'Seth Rogen',2,2),(109414,449,'Jay Baruchel',2,3),(109414,62862,'Danny McBride',2,4),(109414,64342,'Craig Robinson',2,5),(109414,39995,'Michael Cera',2,6),(109414,10990,'Emma Watson',1,7),(109414,125167,'Mindy Kaling',1,8),(109414,38582,'David Krumholtz',2,9),(109414,54691,'Christopher Mintz-Plasse',2,10),(109414,131519,'Rihanna',1,11),(109414,41089,'Martin Starr',2,12),(109414,22226,'Paul Rudd',2,13),(109414,38673,'Channing Tatum',2,14),(109414,55638,'Kevin Hart',2,15),(109414,86626,'Aziz Ansari',2,16),(109414,41088,'Jason Segel',2,17),(109414,82602,'Backstreet Boys',2,18),(109414,154013,'Backstreet Boys',2,19),(109414,82603,'Backstreet Boys',2,20),(109414,82604,'Backstreet Boys',2,21),(109414,82601,'Backstreet Boys',2,22),(109414,1444726,'Daughter in Store',1,23),(109414,60881,'Father in Store',2,24),(109414,1272905,'LA Hipster / Driver (uncredited)',0,25),(109414,54728,'Headless Man',2,26),(87567,380,'Don Griffin',2,0),(87567,3092,'Ellie Griffin',1,1),(87567,25541,'Lyla Griffin',1,2),(87567,71070,'Missy O\'Connor',1,3),(87567,17052,'Jared Griffin',2,4),(87567,4038,'Bebe McBride',1,5),(87567,2157,'Father Monaghan',2,6),(87567,25130,'Alejandro Griffin',2,7),(87567,85178,'Kim',1,8),(87567,1215836,'Andrew',0,9),(87567,4003,'Muffin',1,10),(87567,33533,'Barry',2,11),(87567,5973,'Madonna',1,12),(87567,1077805,'Nuria',0,13),(87567,995197,'Jane',1,14),(87567,1359007,'Maitre D\'',0,15),(87567,1410221,'Waitress',1,16),(87567,1662136,'Waiting Father',0,17),(87567,60567,'Mother',0,18),(87567,106193,'Worker',0,19),(87567,1220768,'Kevin',0,20),(87567,122239,'Elderly Wife',1,21),(87567,111679,'Elderly Husband',2,22),(87567,1827505,'Wedding Guest',0,23),(38322,78029,'Malcolm / Big Momma',2,0),(38322,53336,'Trent / Charmaine',2,1),(38322,117669,'Jasmine Lee',1,2),(38322,42743,'Dance Instructor',1,3),(38322,62066,'Kurtis Kool',2,4),(38322,38333,'Headmistress',1,5),(38322,123703,'GGSA Showcase Audience Member',2,6),(38322,62646,'Rembrandt',2,7),(38322,51989,'Haley',1,8),(38322,211474,'Isabelle',1,9),(38322,73890,'Mia',1,10),(38322,1215365,'Vlad',2,11),(38322,1699407,'Dmitri',2,12),(38322,2220,'Chirkoff',2,13),(38322,1346703,'Scratch',2,14),(38322,1869029,'Delante',2,15),(38322,1869030,'TJ',2,16),(38322,83586,'Mailman',2,17),(38322,7133,'Canetti',2,18),(38322,51751,'Mall Mother',1,19),(38322,109561,'Beverly Townsend',1,20),(38322,1212539,'Cafeteria Girl #1',1,21),(38322,1869031,'Cafeteria Girl #2',1,22),(38322,1321099,'Cafeteria Girl - Another Girl',1,23),(38322,1800833,'Art Teacher',1,24),(38322,1869033,'Drama Queen #1',1,25),(38322,1187060,'Drama Queen #2',1,26),(38322,1869034,'Quad Student',1,27),(38322,590183,'Crawford',2,28),(38322,1869035,'FBI Agent',2,29),(38322,1869036,'Diva #1',1,30),(38322,1869037,'Diva #2',1,31),(38322,1869038,'Art Patron',2,32),(38322,1869039,'Audience Spectator',1,33),(38322,1869040,'Cafeteria Dancer',1,34),(38322,1445683,'FBI Agent',2,35),(38322,1869041,'Mall Patron',2,36),(38322,1869042,'Art Student',1,37),(38322,222290,'Parent',2,38),(38322,1869043,'FBI Agent',2,39),(38322,1663964,'Art Student',1,40),(38322,1869044,'Lug Head',2,41),(38322,1869045,'Audience Spectator',2,42),(38322,1869046,'Theatre Patron',2,43),(38322,1677587,'Trent Friend',2,44),(38322,1869047,'Parent',2,45),(38322,1869049,'Student',1,46),(38322,1869050,'',2,47),(38322,1869051,'',2,48),(38322,1869052,'Parent',2,49),(38322,1869053,'Student',1,50),(38322,1869054,'Core Student',1,51),(38322,1485908,'Cafeteria Dancer',1,52),(38322,1502281,'Russian Mobster',2,53),(38322,1267374,'Girls School Dancer',1,54),(38322,1869057,'High School Student',1,55),(38322,1869058,'Student Dancer',1,56),(38322,1506243,'Student',1,57),(38322,1711548,'Football Player',2,58),(38322,1326322,'Dancer',1,59),(38322,933182,'Lug Head',2,60),(38322,1869060,'Audience Member',2,61),(38322,1869061,'Art student',1,62),(38322,1869062,'Russian',2,63),(38322,1869063,'Audience Member',2,64),(38322,1090695,'H.S. Arts Student',1,65),(38322,1714162,'Dancer',1,66),(45612,131,'Colter Stevens',2,0),(45612,11705,'Christina Warren',1,1),(45612,21657,'Colleen Goodwin',1,2),(45612,82417,'Max Denoff',2,3),(45612,83874,'Derek Frost',2,4),(45612,2954,'Dr. Rutledge',2,5),(45612,59214,'Hazmi',2,6),(45612,522169,'George Troxel',2,7),(45612,572609,'Gold Watch Executive',0,8),(45612,179421,'Conductor',2,9),(45612,298091,'Nurse',1,10),(45612,51389,'Lab Technician',2,11),(45612,230595,'Coffee Mug Lady',2,12),(45612,1445748,'Minister Sudoku',0,13),(45612,131335,'College Student',2,14),(45612,450628,'Soda Can Guy',2,15),(45612,308540,'Office Manager',0,16),(45612,1569822,'Secretary',0,17),(45612,80019,'Aviator Glasses Guy',2,18),(45612,75201,'CNN Anchor',2,19),(45612,108302,'Lock Tech',0,20),(45612,218619,'M.P.',0,21),(45612,1321651,'Aide',0,22),(45612,1480144,'Medic (uncredited)',1,23),(157841,1043693,'T.S. Spivet',2,0),(157841,1283,'Dr. Clair',1,1),(157841,351,'G.H. Jibsen',1,2),(157841,540,'Father',2,3),(157841,51042,'Gracie',1,4),(157841,139618,'Layton',0,5),(157841,1212661,'Roy',2,6),(157841,112692,'Giant Hobo',2,7),(157841,2413,'Two Clouds',2,8),(157841,2320,'Ricky',2,9),(157841,1225492,'Lecturer',0,10),(157841,1045822,'Lecturer',2,11),(157841,7014,'The vigilant',2,12),(157841,1091868,'Marge',0,13),(157841,1240748,'Policeman',2,14),(157841,86488,'Cathy',0,15),(157841,29468,'Smithsonian President',2,16),(157841,216778,'Judy',1,17),(157841,1125991,'Jibsen\'s Secretary',0,18),(157841,1435838,'Little Boy',2,19),(157841,216785,'Towncar Driver',0,20),(157841,1302345,'Reception Waitress',0,21),(157841,1035856,'Reception Waitress',1,22),(157841,1446472,'Smithsonian\'s Receptionist',0,23),(157841,190098,'Reception Guest',0,24),(157841,103877,'Reception Guest',1,25),(157841,141746,'Reception Guest',1,26),(157841,1752153,'Reception Guest',1,27),(157841,1778416,'Lady at train station',0,28),(157841,1778417,'Waiter',0,29),(157841,1321651,'Photographer',0,30),(157841,1486763,'Perpetual motion machine presenter',2,31),(157841,1207366,'Airport Officer',0,32),(157841,1486773,'Smithsonian Scientist\'s Date',0,33),(157841,1272477,'Figuration',0,34),(124459,4495,'Burt Wonderstone',2,0),(124459,206,'Steve Gray',2,1),(124459,884,'Anton Marvelton',2,2),(124459,59315,'Jane',1,3),(124459,4691,'Doug Munny',2,4),(124459,1903,'Rance Holloway',2,5),(124459,12217,'Rick the Implausible',2,6),(124459,94098,'Miranda',1,7),(124459,18,'Dom',2,8),(124459,189761,'Himself',2,9),(124459,1219313,'Grace',1,10),(124459,18072,'Lucius Belvedere',2,11),(124459,937232,'Japanese Girl',0,12),(124459,235346,'Sleazy Man (uncredited)',0,13),(124459,1520454,'Young Boy',2,14),(38073,69597,'Erin Rankin Langford',1,0),(38073,15033,'Garrett Scully',2,1),(38073,95101,'Dan Grant',2,2),(38073,58224,'Box Saunders',2,3),(38073,18979,'Corrine Berlin',1,4),(38073,17402,'Will Broderick',2,5),(38073,118752,'Brandy',1,6),(38073,17442,'Brianna Jutsum',1,7),(38073,551020,'Damon',2,8),(38073,84407,'Phil Berlin',2,9),(38073,83873,'Karen Surgeoner',0,10),(38073,71403,'Ron Surgeoner',2,11),(38073,80592,'Harper',1,12),(38073,58541,'Hugh O\'Keefe',2,13),(38073,85825,'Amy',1,14),(38073,1188195,'Maya',0,15),(38073,113373,'Toby',2,16),(38073,1816960,'Zach',0,17),(38073,1506822,'Zander',0,18),(38073,1217582,'Zeff',0,19),(38073,1370986,'Terry',0,20),(38073,180768,'Sandy',1,21),(38073,62042,'Carmen',1,22),(38073,109869,'Female Bartender',0,23),(38073,130719,'Professor',2,24),(38073,133046,'Douchebag',0,25),(302156,1269,'Jericho Stewart',2,0),(302156,64,'Quaker Wells',2,1),(302156,2176,'Dr. Franks',2,2),(302156,10859,'Bill Pope',2,3),(302156,31384,'Xavier Heimdahl',2,4),(302156,90633,'Jill Pope',1,5),(302156,10692,'Jan Stroop - The Dutchman',2,6),(302156,17341,'Esteban Ruiza',2,7),(302156,59860,'Marta Lynch',1,8),(302156,43202,'Elsa Mueller',1,9),(302156,78110,'Pete Greensleeves',2,10),(302156,1664752,'Emma Pope',0,11),(302156,1393524,'CIA Agent Pfeffer',0,12),(302156,1664773,'CIA Agent #2',0,13),(302156,1664776,'CIA Tech',0,14),(302156,1047370,'Extraction Team Leader',0,15),(302156,5414,'Warden',2,16),(302156,55578,'SSBN Captain',0,17),(302156,1479869,'SSBN Fire & Control',0,18),(302156,1114855,'Luggage Shop Saleswoman',0,19),(302156,206847,'Black Cab Driver',2,20),(302156,1664955,'CIA Officer Laundry Team',0,21),(302156,1344715,'Higgs',0,22),(302156,1321622,'Navy Officer',1,23),(302156,53917,'Lewis Deane',2,24),(302156,1192779,'Kebab Clerk',2,25),(302156,1665007,'Radio Man Fred Bosh',0,26),(302156,1743763,'Pawnbroker',0,27),(302156,1650554,'Franu00e7oise',1,28),(302156,984422,'James Osborne',2,29),(302156,1665008,'Pedestrian',0,30),(302156,1245461,'Librarian',1,31),(302156,1394379,'Library Patron',2,32),(302156,1052209,'Russian Sentry',2,33),(302156,1665009,'Mrs. Franks',0,34),(302156,1665010,'Heimdahl\'s Guard',2,35),(302156,125719,'Air Force Technician',2,36),(302156,27659,'Roderick Armstrong',2,37),(302156,1665011,'Bobby',1,38),(302156,15323,'Professor Callowell',0,39),(302156,1665012,'Researcher',0,40),(302156,1665021,'Akhmadov',0,41),(302156,1170763,'Kebab Cook',0,42),(302156,62968,'Pharmacist',0,43),(302156,1665022,'Very Attractive Nurse',0,44),(302156,1665023,'Indian Woman',0,45),(302156,1743764,'Redhead Girl',0,46),(302156,57340,'News Anchor',2,47),(302156,1665024,'Female News Anchor',0,48),(302156,1220147,'Himself',2,49),(302156,1743765,'Kebab Hooligan #1',0,50),(302156,1214974,'Kebab Hooligan #2',2,51),(302156,1261376,'MI-5 Officer',2,52),(302156,96463,'CIA Tech #2',0,53),(302156,1743766,'Young Kid',0,54),(302156,1010922,'Heimdahl\'s Man',2,55),(302156,11285,'Fisherman / Father',0,57),(302156,1317159,'Shoo shoo (uncredited)',1,58),(302156,1568707,'CIA Laundry Team (uncredited)',2,59),(302156,1385061,'Cafe Customer (uncredited)',2,60),(302156,1385060,'MI-5 Agent (uncredited)',1,61),(302156,1371439,'Action Man on Bus (uncredited)',0,62),(87502,5292,'Whip Whitaker',2,1),(87502,1896,'Hugh Lang',2,2),(87502,21089,'Charlie Anderson',2,3),(87502,17521,'Nicole',1,4),(87502,1230,'Harling Mays',2,5),(87502,49271,'Ken Evans',2,6),(87502,65196,'Katerina Marquez',1,7),(87502,42694,'Margaret Thomason',1,8),(87502,6832,'Ellen Block',1,9),(87502,31647,'Deana',1,10),(87502,208956,'Will Whitaker Jr.',2,11),(87502,1986,'Avington Carr',2,12),(87502,18473,'Man in Hallway',2,13),(87502,146025,'Peach Tree Employee',1,14),(87502,1201512,'Son on Plane',0,15),(87502,1705792,'Field Reporter',2,16),(87502,1371098,'Derek Hogue',0,17),(87502,1220147,'',2,18),(120467,5469,'M. Gustave',2,0),(120467,1291350,'Zero Moustafa',2,1),(120467,1164,'Mr. Moustafa',2,2),(120467,8789,'Serge',2,3),(120467,3490,'Dmitri',2,4),(120467,5293,'Jopling',2,5),(120467,4785,'Kovacs',2,6),(120467,1037,'Ludwig',2,7),(120467,9642,'Young Writer',2,8),(120467,1532,'M. Ivan',2,9),(120467,819,'Henckels',2,10),(120467,36592,'Agatha',1,11),(120467,17881,'M. Jean',2,12),(120467,121529,'Clotilde',1,13),(120467,3063,'Madame D.',1,14),(120467,207,'Author',2,15),(120467,887,'M. Chuck',2,16),(120467,4795,'Pinky',2,17),(120467,12438,'M. Martin',2,18),(120467,26473,'M. Robin',2,19),(120467,486,'M. Georges',2,20),(120467,5301,'M. Dino',2,21),(120467,19511,'Mr. Mosher',2,22),(120467,38459,'Wolf',0,23),(120467,1052284,'Gunther',2,24),(120467,1064525,'Anatole',0,25),(120467,56604,'Ernst',2,26),(120467,22612,'Grande Dame',1,27),(120467,1309014,'Herr Mendl',2,28),(120467,145467,'Laetizia',0,29),(120467,1191623,'Usherette',0,30),(120467,40565,'Prison Guard',2,31),(120467,48737,'Monk',0,32),(120467,2315,'Monk',2,33),(120467,76340,'Serge\'s Sister',1,34),(120467,58544,'Lieutenant',2,35),(120467,45663,'Head Waiter (1968)',0,36),(120467,902,'Franz',2,37),(120467,1401235,'Taxi Driver',0,38),(120467,935728,'Marguerite',0,39),(120467,1008395,'Carolina',0,40),(120467,1400465,'Old Man',0,41),(120467,1018480,'Distant Relation',2,42),(120467,543327,'Lutz Police Militia',0,43),(120467,1558266,'Parcel Inspector',0,44),(120467,5761,'Snitch',2,45),(120467,1105079,'Pump Attendant',2,46),(120467,1451569,'Monk',0,47),(120467,1196724,'Monk',2,48),(120467,1142686,'Otto',0,49),(120467,71589,'Soldier',2,50),(120467,62560,'Soldier',0,51),(120467,1558270,'Soldier',0,52),(120467,1398478,'Zig-Zag',0,53),(120467,1714563,'Student',0,54),(120467,1714564,'Author\'s Grandson',0,55),(120467,1714565,'Alpine Hiker',0,56),(120467,1714577,'Composer',0,57),(120467,1714578,'Businessman',0,58),(120467,1714579,'Actor',0,59),(120467,1714580,'Nun',0,60),(120467,1714581,'Bather',0,61),(120467,1714582,'Schoolteacher',0,62),(120467,1714584,'Widow',0,63),(120467,1657614,'Igor',0,64),(120467,1714586,'Chauffeur',0,65),(120467,1714587,'Crippled Shoeshine Boy',0,66),(120467,1332416,'Herr Schneider',0,67),(120467,1714590,'Frau Liebling',0,68),(120467,1714592,'Grande Dame',0,69),(120467,1714593,'Grande Dame',0,70),(120467,1714594,'Grande Dame',0,71),(120467,1714595,'Grande Dame',0,72),(120467,1714596,'Herr Becker',0,73),(120467,1714597,'Young Man',0,74),(120467,1714600,'Lutz Police Militia',0,75),(120467,1714608,'Giant Convict',0,76),(120467,1714611,'Lobby Boy',0,77),(120467,1714612,'Lobby Boy',0,78),(120467,1714613,'Lobby Boy',0,79),(120467,1714614,'Lobby Boy',0,80),(120467,1714615,'Lobby Boy',0,81),(120467,1714616,'Cook',0,82),(120467,1714618,'Soldier',0,83),(120467,1714619,'Judge',0,84),(120467,1714620,'\'Boy with Apple\' (model)',0,85),(120467,1714621,'Footman (1932)',0,86),(120467,1714622,'Footman (1932)',0,87),(120467,1714623,'Housekeeper (1932)',0,88),(120467,1714624,'Doorman (1932)',0,89),(120467,1714625,'Doorman (1932)',0,90),(120467,1714626,'Front Desk (1932)',0,91),(120467,1714628,'Front Desk (1932)',0,92),(120467,1714631,'Front Desk (1932)',0,93),(120467,1714632,'Chef (1932)',0,94),(120467,1714633,'Head Waiter (1932)',0,95),(120467,1714634,'Second Waiter (1932)',0,96),(120467,1714637,'Front Desk (1968)',0,97),(120467,1714638,'Second Waiter (1968)',0,98),(296099,27105,'Rusty Griswold',2,0),(296099,18979,'Debbie Griswold',1,1),(296099,61263,'James Griswold',2,2),(296099,1286744,'Kevin Griswold',2,3),(296099,74568,'Stone Crandall',2,4),(296099,41087,'Audrey Griswold',1,5),(296099,54812,'Clark Griswold',2,6),(296099,821,'Ellen Griswold',1,7),(296099,95101,'Chad',2,8),(296099,1190034,'Adena',1,9),(296099,17402,'Ethan',2,10),(296099,4886,'Trucker',2,11),(296099,206399,'Heather',1,12),(296099,298410,'Jack Peterson',2,13),(296099,35705,'Nancy Peterson',1,14),(296099,1371878,'Man on the Monument',0,15),(296099,1371879,'Chelsea',0,16),(296099,1371880,'Gas Station Clerk',0,17),(296099,208519,'Colorado Cop',0,18),(296099,132856,'Utah Cop',2,19),(296099,95102,'Arizona Cop',1,20),(296099,454,'New Mexico Cop',2,21),(296099,3492,'Jake',2,22),(296099,1503922,'Sheila Peterson',0,23),(296099,1503923,'Gary Peterson',0,24),(296099,1503924,'Ferrari Girl',0,25),(296099,15412,'Harry Co-Pilot',2,26),(296099,1503925,'Mom on Plane',0,27),(296099,1155553,'Boy on Plane',0,28),(296099,1503926,'Brooke',0,29),(296099,76916,'Terry',2,30),(296099,1343531,'Shuttle Driver',0,31),(296099,1503927,'Husky Lady at Monument',0,32),(296099,1503928,'Women at Monument',0,33),(296099,1503929,'Furious Husband',2,34),(296099,1495724,'Furious Wife',0,35),(296099,1158065,'Male Guest',0,36),(296099,1503930,'Female Guest',0,37),(296099,1068811,'Male Guest #2',2,38),(296099,52935,'Ride Operator',2,40),(296099,1292731,'Boobs',0,41),(296099,1503931,'Hawaiian',0,42),(296099,1503932,'Reporter',0,43),(296099,1503933,'Young James (age 7 / 9)',0,44),(296099,1628107,'Festival Dancer (uncredited)',1,45),(72570,53714,'Paige Collins',1,0),(72570,38673,'Leo Collins',2,1),(72570,4783,'Bill Thornton',2,2),(72570,100,'Jeremy',2,3),(72570,4431,'Rita Thornton',1,4),(72570,213315,'Kyle',2,5),(72570,88930,'Lizbet',1,6),(72570,1235237,'Ryan',0,8),(72570,19957,'Dr. Fishman',1,10),(72570,1140109,'Josh',2,11),(72570,51389,'Jim',2,12),(72570,80184,'Sonia',1,13),(72570,1866605,'Carrie',0,14),(72570,986445,'Shana',1,15),(132363,2178,'Cecil Gaines',2,0),(132363,53258,'Earl Gaines',2,1),(132363,548375,'Cecil Gaines (8)',2,2),(132363,1199000,'Abraham',0,3),(132363,66586,'Hattie Pearl',1,4),(132363,61363,'Thomas Westfall',2,5),(132363,13333,'Annabeth Westfall',1,6),(132363,1198999,'Cecil Gaines (15)',0,7),(132363,15864,'Maynard',2,8),(132363,1190851,'Mr. Jenkins',0,9),(132363,168942,'R.D. Warner',2,10),(132363,13309,'Gloria Gaines',1,11),(132363,3036,'Richard Nixon',2,12),(132363,2157,'Dwight Eisenhower',2,13),(132363,11006,'John F. Kennedy',2,14),(132363,4566,'Ronald Reagan',2,15),(132363,96625,'Jackie Kennedy',1,16),(132363,23626,'Lyndon B. Johnson',2,17),(132363,210695,'Rev. James Lawson',2,18),(132363,77069,'James Holloway',2,19),(132363,9777,'Carter Wilson',2,20),(132363,18288,'Howard',2,21),(132363,6352,'Nancy Reagan',1,22),(132363,35013,'Louis Gaines',2,23),(132363,60033,'Carol Hammie',1,24),(132363,936403,'Admiral Rochon',0,25),(132363,109568,'Senator Kassebaum',0,26),(132363,1407751,'Senator Robertson',0,27),(82654,3292,'R',2,0),(82654,20374,'Julie Grigio',1,1),(82654,124644,'Nora Greene',1,2),(82654,52997,'M / Marcus',2,3),(82654,54697,'Perry Kelvin',2,4),(82654,6949,'Colonel Grigio',2,5),(82654,74302,'Kevin',2,6),(82654,982065,'Perry\'s Dad',2,7),(82654,1172760,'Soldier #1',0,8),(82654,1676049,'Soldier #2',2,9),(82654,1676052,'Soldier #3',2,10),(82654,1676060,'Soldier #4',2,11),(82654,101221,'Janitor',0,12),(82654,1195616,'TSA Zombie',0,13),(82654,231517,'Athletic Woman',0,14),(82654,164860,'Laughing Girl',1,15),(82654,1141258,'Stadium Soldier',2,16),(82654,102742,'Hunting Zombie',2,17),(82654,1359659,'Boy at Airport',2,18),(82654,1548738,'Sunset Corpse',2,19),(82654,1676050,'Airport Corpse',2,20),(82654,1272480,'Plague Corpse',2,21),(82654,522169,'Baseball Corpse',2,22),(82654,1612617,'Female Corpse on Tarmac',1,23),(82654,119707,'Berg',2,24),(82654,1676064,'Perry (11 years old)',2,25),(82654,1548179,'Woman',1,26),(82654,1504467,'Emily',1,27),(82654,115596,'Zombie Patient',0,28),(82654,229561,'Corpse Attacking Julie (uncredited)',2,29),(82654,1091868,'Dr. Burke (uncredited)',0,30),(82654,1147107,'Human Survivor (uncredited)',1,31),(82654,1547887,'Hunting Zombie (uncredited)',1,32),(82654,102742,'Hunting Zombie (uncredited)',2,33),(82654,141746,'Zombie (uncredited)',1,34),(82654,1676101,'Zombie (uncredited)',1,35),(59967,24045,'Joe',2,0),(59967,62,'Old Joe',2,1),(59967,5081,'Sara',1,2),(59967,17142,'Seth',2,3),(59967,48312,'Kid Blue',2,4),(59967,15555,'Suzie',1,5),(59967,8447,'Abe',2,6),(59967,992427,'Cid',2,7),(59967,78879,'Old Joe\'s Wife',1,8),(59967,10580,'Beatrix',1,9),(59967,565504,'Old Seth',2,10),(59967,39520,'Jesse',0,11),(59967,84760,'Dale',2,12),(59967,62076,'Zach',2,13),(59967,231857,'Gat Man',0,14),(59967,183099,'Gat Man',2,15),(59967,1132300,'Gat Man',2,16),(59967,1170659,'Looper',2,17),(59967,1088041,'Looper',0,18),(59967,1132301,'Looper',2,19),(59967,111693,'Tye',2,20),(59967,56448,'Tall Gat Man',2,21),(59967,52885,'Bodega Owner',2,22),(59967,60875,'Apt Super',2,23),(59967,1271661,'Daniel',2,24),(59967,1174106,'Farm Vagrant',2,25),(59967,578736,'Old Dale',2,26),(59967,1193431,'Seth Vagrant',2,27),(59967,1256260,'Beggar Kid',0,28),(59967,1588735,'Big Craig',0,29),(59967,62100,'Parking Attendant',2,30),(59967,1104568,'Neighbor Girl',1,31),(59967,1690695,'Pedestrian',1,32),(59967,1485331,'Waitress',1,33),(82696,5064,'Kay',1,0),(82696,4495,'Dr. Bernie Feld',2,1),(82696,2176,'Arnold Soames',2,2),(82696,5376,'Eileen, Kay\'s Friend',1,3),(82696,164094,'Molly, Their Daughter',1,4),(82696,224183,'Brad, Their Son',2,5),(82696,17640,'Dana, Doctor Feld\'s Wife',1,6),(82696,512749,'Danny, The Bookstore Clerk',2,7),(82696,172156,'Mark, Their Son-in-Law',0,8),(82696,928636,'Beach goer wedding scene',0,9),(82696,928637,'Lee, The Unhappy Wife',0,10),(82696,928638,'Driver',0,11),(82696,1951,'Karen, The Bartender',1,12),(82696,928638,'Driver (uncredited)',0,13),(82696,196181,'Ann',1,14),(59436,887,'Gil',2,0),(59436,53714,'Inez',1,1),(59436,29685,'John',2,2),(59436,91495,'Helen',1,3),(59436,3968,'Paul',2,4),(59436,971329,'Carol',1,5),(59436,91606,'F. Scott Fitzgerald',2,6),(59436,937039,'Museum Guide',1,7),(59436,28005,'Man at Wine Tasting',0,8),(59436,96376,'1920\'s Partygoer',2,9),(59436,219708,'1920\'s Partygoer',1,10),(59436,7284,'1920\'s Partygoer',0,11),(59436,1151450,'Cole Porter',0,12),(59436,17486,'Zelda Fitzgerald',1,13),(59436,585668,'Josu00e9phine Baker',0,14),(59436,74541,'Ernest Hemingway',2,15),(59436,144957,'Juan Belmonte',0,16),(59436,115686,'Antiques Dealer',2,17),(59436,1151451,'Alice B. Toklas',0,18),(59436,8534,'Gertrude Stein',1,19),(59436,85016,'Pablo Picasso',2,20),(59436,8293,'Adriana',1,21),(59436,121529,'Gabrielle',1,22),(59436,1151449,'Djuna Barnes',0,23),(59436,3490,'Salvador Dalu00ed',2,24),(59436,1151452,'Man Ray',0,25),(59436,260836,'Luis Buu00f1uel',2,26),(59436,1151455,'Du00e9tective Duluc',0,27),(59436,51100,'Detective Tisserant',0,28),(59436,180906,'T.S. Eliot',0,29),(59436,234022,'Hotel Doctor',2,30),(59436,1151453,'Henri Matisse',0,31),(59436,51105,'Leo Stein',0,32),(59436,32515,'Belle u00c9poque Couple',2,33),(59436,81418,'Belle u00c9poque Couple',1,34),(59436,220582,'Maxim\'s Hostess',0,35),(59436,1151456,'Henri de Toulouse-Lautrec',0,36),(59436,49278,'Paul Gauguin',2,37),(59436,1151454,'Edgar Degas',0,38),(59436,15481,'Versailles Royalty',1,39),(59436,20082,'Versailles Royalty',2,40),(59436,239118,'1920\'s Partygoer',0,41),(59436,28022,'Guest at Maxims (uncredited)',0,42),(227783,21200,'Surly (voice)',2,0),(227783,25541,'Andie (voice)',1,1),(227783,18269,'Grayson (voice)',2,2),(227783,3896,'Raccoon (voice)',2,3),(227783,32747,'King (voice)',2,4),(227783,190895,'Lana (voice)',1,5),(227783,52792,'Precious (voice)',1,6),(227783,76982,'Mole (voice)',2,7),(227783,86498,'Jimmy (voice)',2,8),(227783,70445,'Lucky (voice)',0,9),(227783,86237,'Johnny (voice)',2,10),(227783,105808,'Girl Scout (voice)',0,11),(227783,118814,'Redline/ Buddy',2,12),(227783,933922,'Fingers (voice)',0,13),(227783,1212302,'Jamie (voice)',0,14),(227783,1475305,'Rat / Armoured Guard (voice)',0,15),(227783,124315,'Police Officer / Misc. Animals (voice)',2,16),(227783,21294,'Pigeon (voice)',1,17),(227783,1504901,'Special Cast',2,18),(36593,7633,'Lt. Frank Drebin',2,0),(36593,12949,'Jane Spencer',1,1),(36593,12950,'Ed Hocken',2,2),(36593,12951,'Nordberg',2,3),(36593,10430,'Rocco',2,4),(36593,7210,'Muriel',1,5),(36593,115654,'Tanya',1,6),(36593,24293,'Dr. Roberts',1,7),(36593,11915,'Carjacker',2,8),(36593,95061,'Corridor Guard',2,9),(36593,15152,'Himself',0,10),(36593,21992,'Pia Zadora',1,11),(36593,13420,'Louise',1,12),(36593,13422,'Papshmir',2,13),(36593,1319670,'Defense Attorney',0,14),(36593,5177,'Big Hairy Con',0,15),(36593,125110,'Ann B. Davis',1,16),(36593,97752,'Vanna White',1,17),(36593,71041,'\'Weird Al\' Yankovic',0,18),(36593,1224933,'Mary Lou Retton',0,19),(36593,12987,'Teleprompter Guy',2,20),(36593,80116,'Dominatrix',1,21),(36593,75343,'Florence Henderson',1,22),(36593,64445,'Mourner',0,23),(36593,19144,'Shannen Doherty',1,24),(36593,14990,'Morgan Fairchild',1,25),(36593,827,'Elliott Gould',2,26),(36593,10447,'Mariel Hemingway',1,27),(36593,15152,'James Earl Jones',0,28),(36593,21462,'Raquel Welch',1,29),(36593,1190129,'Oscar Guest in Birdcage Skirt',0,30),(37056,71070,'Sophie Hall',1,0),(37056,1312315,'Charlie Wyman',2,1),(37056,258,'Victor',2,2),(37056,13333,'Claire Smith-Wyman',1,3),(37056,22383,'Lorenzo Bartolini',2,4),(37056,116691,'Lorraine',1,5),(37056,116692,'Viticoltore',0,6),(37056,119172,'Isabella',1,7),(37056,7543,'Francesca',0,8),(37056,44104,'Maria',1,9),(37056,76344,'Farm House Lorenzo',2,10),(37056,21181,'Count Lorenzo',2,11),(37056,206409,'Donatella',0,12),(37056,67175,'Angelina',0,13),(37056,1240058,'Patricia',1,14),(37056,1087330,'Lorenzo - Father',0,15),(37056,17485,'New Yorker Magazine Editor (Uncredited)',2,16),(76489,52601,'Larry',2,0),(76489,39125,'Curly',2,1),(76489,1217648,'Moe',2,2),(76489,43775,'Mother Superior',1,3),(76489,63522,'Lydia',1,4),(76489,15565,'Sister Rosemary',1,5),(76489,14886,'Mac',2,6),(76489,1756,'Mr. Harter',2,7),(76489,16376,'Sister Mary-Mengele',2,8),(76489,63494,'Teddy',2,9),(76489,1020027,'Mrs. Harter',1,10),(76489,974317,'Sister Bernice',1,11),(76489,1223750,'Sister Ricarda',1,12),(76489,1535,'Monsignor Ratliffe',2,13),(76489,122962,'The Situation',2,14),(76489,224173,'Snooki',0,15),(76489,1358093,'JWoww',0,16),(76489,1447040,'Ronnie',0,17),(76489,1447036,'Sammi',0,18),(76489,1324608,'Officer Armstrong',0,19),(76489,61263,'Young Moe',2,20),(76489,1795107,'Young Larry',2,21),(76489,111922,'Young Curly',2,22),(76489,1795111,'Murph',1,23),(76489,558928,'Peezer',2,24),(76489,1795112,'Young Teddy',0,25),(76489,1237603,'Moe\'s Hip Executive',2,26),(76489,1580198,'Camera Man',2,27),(273481,5081,'Kate Macer',1,0),(273481,1121,'Alejandro',2,1),(273481,16851,'Matt',2,2),(273481,8536,'Jennings',2,3),(273481,19498,'Ted',2,4),(273481,206919,'Reggie Wayne',2,5),(273481,52886,'Steve Forsing',2,6),(273481,17688,'Rafael',2,7),(273481,36634,'Fausto Alarcon',2,8),(273481,167145,'Phil Coopers',0,9),(273481,1529184,'Manuel Diaz',2,10),(273481,1018947,'Silvio',2,11),(273481,1240490,'Burnett',2,12),(273481,61568,'Guillermo',0,13),(273481,1554976,'Silvio\'s Wife',0,14),(273481,1554977,'Eliseo',0,15),(273481,85419,'Charlie',2,16),(273481,1260554,'Pretty Blonde',1,17),(273481,1094319,'Operator',2,18),(273481,1151637,'Jacinta',1,19),(273481,58510,'Chandler News Reporter',2,20),(273481,1488513,'Delta',2,21),(273481,1006144,'US Marshal',2,22),(273481,106746,'Bank Manager',0,23),(273481,92754,'SWAT Officer',0,24),(273481,307885,'Coroner (Phoenix)',0,25),(273481,42201,'Phoenix Cop',0,26),(273481,1283043,'Air Force MP',0,27),(273481,133950,'Jessie Garza',2,28),(273481,1494546,'Treasury Agent',0,29),(273481,1617613,'News Anchor',2,30),(273481,10962,'Migrant #1',2,31),(273481,1794930,'Migrant #2',0,32),(273481,1794931,'Migrant #3',0,33),(273481,1794932,'Migrant #4',0,34),(273481,1794928,'Migrant #5',2,35),(273481,1794927,'Migrant #6',0,36),(273481,1670759,'Migrant #7',0,37),(273481,1794933,'Homeland Security Officer',0,38),(273481,1505502,'Immigrant Woman (uncredited)',0,39),(273481,1670765,'Immigrant (uncredited)',0,40),(307081,131,'Billy \'The Great\' Hope',2,0),(307081,53714,'Maureen Hope',1,1),(307081,2178,'Titus \'Tick\' Wills',2,2),(307081,1423519,'Leila Hope',1,3),(307081,62644,'Jordan Mains',2,4),(307081,1070339,'Hoppy',0,5),(307081,2038,'Angela Rivera',1,6),(307081,1347239,'Ramone',0,7),(307081,1078613,'Jon Jon',0,8),(307081,1561575,'Miguel \'Magic\' Escobar',0,9),(307081,72988,'Mikey',2,10),(307081,1502320,'Eli Frost',0,11),(307081,1502321,'Gabe',0,12),(307081,1502322,'Keith \'Buzzsaw\' Brady',0,13),(307081,44578,'Gloria',0,14),(307081,1348164,'Hector Escobar',0,15),(307081,1271784,'Judge Kayle',0,16),(307081,1502323,'Nick',0,17),(307081,1502324,'Referee',0,18),(307081,231396,'Jimmy Lennon Jr.',0,19),(307081,152780,'Stuart Korman',2,20),(307081,928905,'Alice',0,21),(307081,1089873,'Maria Escobar',1,22),(307081,1746888,'Himself',2,23),(293863,59175,'Adaline Bowman',1,0),(293863,91520,'Ellis Jones',2,1),(293863,3,'William Jones',2,2),(293863,9560,'Flemming',1,3),(293863,1907,'Kathy Jones',1,4),(293863,58370,'Kiki',1,5),(293863,20188,'Regan',1,6),(293863,144852,'Tony',2,7),(293863,65808,'Cab Driver',2,8),(293863,87816,'Cora',1,9),(293863,60719,'Kenneth',2,10),(293863,1357354,'Clarence James Prescott',2,11),(293863,1459142,'Flemming (Age 5)',0,12),(293863,1459143,'Flemming (Age 20)',0,13),(293863,1459144,'Miriam',0,14),(293863,1457250,'1950s Policeman',0,15),(293863,1176581,'1950s FBI Agent',2,16),(293863,1366661,'1940s Officer #1',0,17),(293863,1459145,'1940s Officer #2',2,18),(293863,152820,'Dale Davenport',0,19),(293863,1261371,'New Year\'s Eve Stranger',2,20),(293863,70176,'Hotel Doorman',0,21),(293863,61187,'Boat Tunnel Guide',2,22),(293863,43431,'Financial Advisor',2,23),(293863,77315,'1950s Financial Advisor',2,24),(293863,1110009,'Veterinarian',2,25),(293863,1638387,'Narrator',2,26),(293863,207939,'Ellis Apartment Super',2,27),(293863,1207282,'Young William Jones',2,28),(293863,1459147,'1960s Hippie Photographer',0,29),(293863,41746,'Good Samaritan',2,30),(293863,1381542,'Paramedic #1',0,31),(293863,1239253,'Paramedic #2',0,32),(293863,1459148,'E.R. Doctor',0,33),(293863,1187262,'1960s Cab Driver',0,34),(41233,138009,'Luke',2,0),(41233,54503,'Moose',2,1),(41233,1338420,'Julien',0,2),(41233,138010,'Natalie',1,3),(41233,58965,'Camille',1,4),(41233,138011,'Jacob',2,5),(41233,138012,'Anala',1,6),(41233,110743,'Jason',0,7),(41233,1397768,'The Santiago Twins',2,8),(41233,1397762,'The Santiago Twins',2,9),(41233,1398472,'Carlos',0,10),(41233,568652,'Kid Darkness',0,11),(41233,1398477,'The Ticks',0,12),(41233,1398521,'The Ticks',0,13),(41233,1148759,'The Ticks',0,14),(41233,1341648,'Vladd',2,15),(41233,1398544,'B.',0,16),(41233,1398550,'Radius',0,17),(41233,1093497,'Legz',0,18),(41233,1398554,'Mohawk',0,19),(41233,1046144,'Spinz',2,20),(41233,1398593,'Stix',0,21),(41233,568659,'Bend',0,22),(41233,1398614,'Wave',0,23),(41233,1189078,'Jenny Kido',1,24),(41233,1341649,'Hair',0,26),(41233,1148762,'Monster',0,27),(41233,1398617,'Smiles',0,28),(41233,1398618,'Fly',0,29),(41233,1398619,'Arcade Rats',0,30),(41233,1398621,'Arcade Rats',0,31),(41233,1398623,'Arcade Rats',0,32),(41233,1398626,'Arcade Rats',0,33),(41233,1290629,'House of Samurai',0,34),(41233,1398124,'House of Samurai',0,35),(41233,559646,'House of Samurai',0,36),(41233,1071483,'House of Samurai',0,37),(41233,1398741,'House of Samurai',0,38),(41233,1398742,'House of Samurai',0,39),(41233,1398825,'House of Samurai',0,40),(41233,1398826,'House of Samurai',0,41),(41233,1398827,'House of Samurai',0,42),(41233,1398828,'The House of Samurais',0,43),(41233,1290640,'House of Samurai',0,44),(41233,1398829,'House of Samurai',0,45),(41233,1398830,'House of Samurai',1,46),(41233,1398831,'House of Samurai',0,47),(41233,1398832,'House of Samurai',0,48),(41233,1398833,'NYU Tour Guide',0,50),(41233,59262,'Punk Kid',2,51),(41233,1398835,'Emo Skater',0,52),(41233,1398836,'Balloon Vendor',0,53),(41233,204339,'Police Officer',0,54),(41233,14103,'NYU Professor',2,55),(41233,1398837,'Silence D. Class',0,56),(41233,1398838,'Kristin',0,57),(41233,209596,'Jenny',0,58),(41233,29215,'Red Hook Announcer',0,59),(41233,230163,'Gwai Announcer',0,60),(41233,1398851,'Walter',0,61),(41233,1344380,'Door Person',0,62),(41233,88755,'Natalie\'s Mom',1,63),(41233,979342,'Ice Cream Girl',0,64),(41233,1260146,'Ice Cream Man',0,65),(41233,1400904,'Woman Watering Plants',0,66),(41233,60015,'Scooter boy',0,67),(41233,1400907,'Diner Customer',0,68),(41233,1400908,'Mrs. Kido',0,69),(41233,1333696,'Mr. Kido',0,70),(41233,1096823,'World Jam Announcer',0,71),(41233,54515,'World Jam Judge',0,72),(41233,1400927,'World Jam Judge',0,73),(41233,1400978,'World Jam Judge',0,74),(41233,61323,'NYU Dean',2,75),(41233,1400979,'Mover Dancer',0,76),(41233,1400980,'Mover Dancer',0,77),(41233,1401031,'Club Dancer',0,78),(41233,1401040,'House of Red Hook',0,79),(41233,1401048,'House of Red Hook',0,80),(41233,1401053,'House of Red Hook',0,81),(41233,1401057,'House of Red Hook',0,82),(41233,54516,'House of Red Hook',0,83),(41233,1401068,'House of Red Hook',0,84),(41233,1398070,'House of Red Hook',0,85),(41233,1401073,'House of Red Hook',0,86),(41233,1343738,'Arcade Player',0,87),(41233,1401076,'World Jam Dancer',0,88),(41233,1401077,'Dancer',0,89),(41233,1099849,'House of Gwai',0,90),(41233,1349554,'Anton',2,91),(41233,98214,'Hip Hop Girl',0,92),(41233,1401078,'Preppy Kid',0,93),(41233,1401079,'Mimi',0,94),(41233,1401080,'Grand Central Passenger',0,95),(41233,1290608,'Tango Dancer',0,96),(41233,1401081,'House of Gwai',0,97),(41233,1401084,'House of Germany',0,98),(41233,1401089,'Backround',0,99),(41233,1401090,'Dance Battle Spectator',0,100),(41233,1401091,'Bill',0,101),(41233,1401092,'Tango Dancer',0,102),(41233,1401093,'Engineering Student',0,103),(41233,11074,'Moose\'s Mom',1,104),(41233,1401094,'College Freshman',0,105),(41233,54504,'Missy',0,106),(41233,1401095,'World Jam Exhibition Dacner',0,107),(41233,1401096,'House of Gwai',0,108),(41233,1401099,'Dance Battle Spectator',0,109),(41233,1401100,'Hipster',0,110),(41233,1401102,'Hot Dog Vendor',0,111),(41233,1401103,'Tango Dancer',0,112),(41233,1401104,'Tango Dancer',0,113),(41233,232499,'Cable',2,114),(50456,36592,'Hanna Heller',1,0),(50456,8783,'Erik Heller',2,1),(50456,1080195,'Johanna Zadeck',1,2),(50456,112,'Marissa Wiegler',1,3),(50456,2441,'Isaacs',2,4),(50456,550549,'Lewis',2,5),(50456,550550,'Walt',2,6),(50456,29617,'Bob',2,7),(50456,550551,'Head of Ops',0,8),(50456,203575,'Burton',0,9),(50456,550552,'Sophie',1,10),(50456,11616,'Rachel',1,11),(50456,973,'Sebastian',2,12),(50456,70904,'False Marissa',1,13),(50456,550554,'Titch',2,14),(50456,223477,'Razor',2,15),(50456,49056,'Knepfler',2,16),(50456,550553,'Miles',2,17),(59861,31,'Larry Crowne',2,0),(59861,1204,'Mercedes Tainot',1,1),(59861,17419,'Dean Tainot',2,2),(59861,5726,'Lamar',2,3),(59861,2230,'Frances',1,4),(59861,40036,'B\'Ella',1,5),(59861,1752,'Dr. Matsutani',0,6),(59861,54645,'Map Genie',1,7),(59861,204588,'Samantha',0,8),(59861,98292,'Alvarez',0,9),(59861,17838,'Steve Dibiasi',2,10),(59861,18975,'Dell Gordo',2,11),(59861,1216606,'Talia',1,12),(59861,504787,'Natalie Calimeris',1,13),(59861,85759,'Lala Pinedo',0,14),(59861,12931,'Wilma Q. Gammelgaard',1,15),(59861,79082,'Trainee Wong',2,16),(133805,56734,'Carrie White',1,0),(133805,1231,'Margaret White',1,1),(133805,20750,'Miss Desjardin',1,2),(133805,558466,'Billy Nolan',2,4),(133805,117669,'Chris Hargensen',1,5),(133805,1014932,'Sue Snell',1,5),(133805,1066079,'Jackie Talbott',2,6),(133805,14889,'Freddy \'Beak\' Holt',2,7),(133805,1159982,'Tommy Ross',2,8),(133805,1213299,'Eleanor Snell',1,9),(133805,95635,'Estelle Parsons',1,10),(133805,186500,'Miss Helen Finch',1,11),(133805,147478,'George',2,12),(133805,8689,'Principal Morton',2,13),(133805,220922,'Heather',0,14),(133805,964415,'Tina',1,15),(133805,1292474,'Nicki',0,16),(133805,1251994,'Kenny',2,17),(133805,37981,'Dr. Dean L. McDuffy',2,18),(109421,9642,'Jonathan Banks',2,0),(109421,108916,'Emily Taylor',1,1),(109421,1922,'Dr. Victoria Siebert',1,2),(109421,38673,'Martin Taylor',2,3),(109421,5025,'Dierdre Banks',1,4),(109421,43366,'Mrs. Taylor',1,5),(109421,114470,'Eileen Spicer',1,6),(109421,82167,'Carl Millbank',0,7),(109421,47281,'Kayla Millbank',1,8),(109421,39171,'Tracey Sutton',1,9),(109421,1005939,'Augustin',2,10),(109421,1271790,'Joan',0,11),(109421,1271791,'Ezra Banks',0,12),(109421,21709,'Jeffrey Childs',2,13),(109421,1789193,'Dr. Peter Joubert',0,14),(109421,1367974,'Zach',0,15),(109421,979216,'NYPD Officer Beahan',2,16),(109421,103373,'Prison Desk Guard',0,17),(109421,164094,'Upset Visitor',1,18),(109421,104482,'Police Officer at the Hospital',2,19),(109421,1318221,'Nurse',0,20),(109421,65421,'Pharmacist',1,21),(109421,54246,'Banks\' Partner #1',2,22),(109421,995514,'Assistant District Attorney',2,23),(109421,1045969,'Transporting Officer Kevin',0,24),(109421,1046157,'Emily\'s Attorney',1,25),(109421,11516,'Banks Patient #3',2,26),(109421,75620,'Judge',1,27),(109421,27260,'Banks Partner',1,28),(51162,12077,'Winnie the Pooh / Tigger (voice)',2,0),(51162,81082,'Piglet (voice)',2,1),(51162,7918,'Eeyore (voice)',2,3),(51162,24264,'Owl (voice)',2,4),(51162,78798,'Rabbit (voice)',2,5),(51162,227444,'Kanga (Voice)',0,6),(51162,227445,'Roo (voice)',2,7),(51162,227446,'Christopher Robin (voice)',0,8),(51162,184176,'Backson (voice)',2,9),(51162,8930,'Narrator (voice)',0,10),(239566,172069,'James Brown',2,0),(239566,81697,'Bobby Byrd',2,1),(239566,707,'Ben Bart',2,2),(239566,19492,'Susie Brown',1,3),(239566,1120,'Joe Brown',2,4),(239566,105303,'Syd Nathan',2,5),(239566,4721,'DeeDee Brown',1,7),(239566,6944,'Aunt Honey',1,8),(239566,212768,'Mick Jagger',2,9),(239566,110742,'Yvonne Fair',1,10),(239566,97446,'Corporal Dooley',2,11),(239566,62784,'Pool Cleaner',0,12),(239566,52885,'Warden',2,13),(239566,64342,'Maceo Parker',2,14),(239566,427978,'Little Richard',2,15),(239566,1036174,'Nafloyd Scott',2,16),(239566,31532,'Ralph Bass',2,17),(239566,53923,'Vicki Anderson',1,18),(239566,237061,'Pee Wee Ellis',0,19),(239566,15564,'Baby Roy',2,20),(239566,98818,'Penelope White',1,22),(239566,1426677,'Gertrude Sanders',0,23),(239566,156405,'Grandpa Byrd',2,24),(239566,19,'Kathy',1,25),(239566,21179,'Richard',2,26),(239566,129868,'Seminar Presenter',2,27),(239566,1457001,'Mavis',0,28),(239566,1457015,'Shirley Buell',0,29),(239566,168942,'Insurance Salesman',2,30),(239566,999605,'Reporter',0,31),(239566,1457021,'Black Infantryman',0,32),(239566,1347294,'Black Infantryman',0,33),(239566,207090,'Pilot',0,34),(239566,1374151,'Soldier',2,35),(239566,1457248,'Little James Brown',0,36),(239566,1457249,'Little James Brown',0,37),(239566,970192,'Reno Reporter',1,38),(239566,1347321,'Bobby Bennett',0,39),(239566,1457261,'Lynched Man',0,40),(239566,1457266,'Frankie Avalon',2,41),(239566,1383480,'Big Junior',0,42),(239566,108188,'Daddy Grace',2,43),(239566,20582,'1949 Cop',2,44),(239566,1457272,'Big Kid',0,46),(239566,1457273,'Mrs. Byrd',0,47),(239566,1457275,'Sarah Byrd',0,48),(239566,228702,'Announcer',2,49),(239566,1407731,'Diner Waitress',0,50),(239566,1457277,'Velma Brown',0,51),(239566,1457280,'Female in Audience',0,52),(239566,1457281,'Susie\'s Soldier',0,53),(239566,1457282,'JB Chauffeur',0,54),(239566,1457283,'Alan Leeds',0,55),(239566,1457285,'Minder',0,56),(239566,1457286,'Teddy Brown',0,57),(239566,1457287,'Little Christmas Boy',0,58),(239566,1457288,'Little Christmas Girl',0,59),(239566,1457289,'Jimmy Nolen',0,60),(239566,58733,'Mayor White',2,61),(239566,1457290,'Bootsy',0,62),(239566,1457291,'Catfish',0,63),(239566,1457292,'Chicken',0,64),(239566,1691429,'1949 Cop',2,65),(53113,5064,'Kate Gulden',1,0),(53113,9137,'Ellen Gulden',1,1),(53113,227,'George Gulden',2,2),(53113,16857,'Brian Gulden',2,3),(53113,16858,'Jules',1,4),(53113,86034,'College Student',1,5),(53113,1041923,'Brian',0,6),(184346,8783,'Ralph Sarchie',2,0),(184346,25616,'Mendoza',2,1),(184346,81364,'Jen',1,2),(184346,74949,'Butler',2,3),(184346,16702,'Santino',2,4),(184346,587438,'Jimmy',2,5),(184346,26718,'Gordon',2,6),(184346,205128,'Nadler',2,7),(184346,1883866,'Christina',1,8),(184346,171939,'Serafina',0,10),(184346,1375162,'Lt. Griggs',2,11),(184346,1246812,'Claudia',0,12),(184346,101165,'Salvatore',2,13),(184346,1375170,'Jane Crenna',0,14),(184346,1198328,'The Other Guy',0,15),(184346,1375175,'Patrol Cop',0,16),(184346,75601,'Cop',2,17),(184346,1298706,'Patient',0,18),(184346,206398,'Cop',2,19),(184346,145132,'Lucinda',2,20),(184346,59280,'Mental Patient',0,21),(184346,63111,'Physician',2,22),(184346,1237356,'Zookeeper',0,23),(184346,79997,'Officer',0,24),(184346,1375185,'Soccer Referee',0,25),(184346,1375186,'Insurgent Leader',0,26),(184346,1375187,'Mental Patient',0,27),(184346,1375188,'Cop',0,28),(184346,1375189,'Treasury Service Officer',0,29),(184346,1375190,'Desk Sergeant',0,30),(184346,1375191,'Mental Patient',0,31),(48340,65524,'Carl Hurley',2,0),(48340,12206,'Frank McGuire',2,1),(48340,144286,'Victoria Elaine',1,2),(48340,3062,'Crazy George',2,4),(48340,144287,'Judes',1,5),(48340,59118,'J.D.',2,6),(48340,1291814,'Liz',0,7),(48340,948767,'Luko',0,8),(48340,1227235,'Dex',0,9),(48340,140265,'Jim Sergeant',0,10),(48340,559996,'Chopper Pilot',0,11),(48340,971257,'Kastom Shaman',0,12),(48340,55899,'Josh',0,13),(72207,41088,'Tom Solomon',2,0),(72207,5081,'Violet Barnes',1,1),(72207,73457,'Alex Eilhauer',2,2),(72207,88029,'Suzie Barnes',1,3),(72207,7026,'Winton Childs',2,4),(72207,67837,'Sylvia Dickerson-Barnes',1,5),(72207,120560,'George Barnes',2,6),(72207,19839,'Pete Solomon',2,7),(72207,91495,'Carol Solomon',1,8),(72207,125167,'Vaneetha',1,9),(72207,55638,'Doug',2,10),(72207,20405,'Tarquin',2,11),(72207,51382,'Bill',0,12),(72207,1375338,'Chef Sally',0,13),(72207,58952,'Gideon',2,14),(72207,118545,'Audrey',1,15),(72207,79082,'Ming',2,16),(72207,1141410,'Margaret',1,17),(72207,42000,'Grandma Katherine',0,18),(72207,43115,'Grandpa Baba',2,19),(72207,1080265,'Grandpa Harold',0,20),(72207,1561705,'Grandma Leonora',0,21),(72207,1745404,'Vanessa Barnes-Eilhauer',0,22),(72207,1745405,'Randy',0,23),(72207,1477296,'Professor Walch',0,24),(72207,1745406,'Professor Delbanco',0,25),(72207,1745407,'Little Violet',0,26),(72207,1561416,'Used Car Lot Guy',2,27),(43539,934,'John Brennan',2,0),(43539,9281,'Lara',1,1),(43539,6197,'George Brennan',2,2),(43539,150,'Mouss',2,3),(43539,84261,'Erit',1,4),(43539,59315,'Nicole',1,5),(43539,37203,'Detective Quinn',2,6),(43539,142213,'Elaine',1,7),(43539,142215,'Mike',2,8),(43539,17181,'Luke',2,9),(43539,3896,'Damon',2,10),(43539,17243,'David',2,11),(43539,1120,'Lieutenant Nabulsi',2,12),(43539,85812,'Mick Brennan',2,13),(43539,17185,'Grace Brennan',1,14),(43539,1182673,'Jenna',1,15),(43539,1192492,'Detective Collero',1,16),(43539,1629778,'Elizabeth Gesas',1,17),(43539,11511,'Meyer Fisk',2,18),(43539,1455802,'Duty Nurse',1,19),(43539,60117,'Dr. Becsey',2,20),(43539,1629885,'Julie',1,21),(43539,18472,'Alex',2,22),(43539,170145,'Alex\'s Thug Buddy',2,23),(43539,1629908,'Lyla',1,24),(43539,5296,'Harv',2,25),(43539,1560348,'Eugenie',1,26),(43539,18305,'Hospital Security Guard',2,27),(43539,1187500,'Female Guard',1,28),(43539,1236033,'Female Guard',1,29),(43539,76022,'Security Gaurd',0,30),(43539,1629779,'Junkie',1,31),(43539,1331795,'Sergeant Harris',2,32),(43539,1629920,'Phone Operator',1,33),(43539,95022,'Dr. Byrdie Lifson',1,34),(43539,1629921,'Male Nurse',2,35),(43539,122282,'Prison Guard',2,36),(43539,22014,'Hospital Nurse',1,37),(43539,76022,'Hospital Guard',0,38),(43539,1629923,'Brenda',1,39),(43539,576160,'Airline Clerk',1,40),(43539,1128450,'Airport Security Chief',2,41),(43347,131,'Jamie Randall',2,0),(43347,1813,'Maggie Murdock',1,1),(43347,17485,'Bruce Winston',2,2),(43347,5587,'Dr. Stan Knight',2,4),(43347,16856,'Trey Hannigan',2,6),(43347,20750,'Cindy',1,7),(43347,18364,'James Randall',2,8),(43347,20362,'Nancy Randall',1,9),(43347,59697,'Gina',1,10),(43347,26723,'Lisa',1,10),(43347,1984,'Gail',1,11),(43347,54246,'California Man',2,11),(43347,59750,'Christy',1,12),(43347,143256,'Dr. Helen Randall',0,13),(43347,54415,'Josh Randall',2,14),(43347,587701,'Pfizer Trainee #3',0,15),(43347,76687,'PET Scan Doctor',1,16),(43347,1039871,'Man with Walker',0,17),(43347,1187500,'Nurse Janice',1,18),(43347,1011106,'Ned',2,19),(43347,104046,'Sam',2,20),(37707,3490,'Clive',2,0),(37707,98,'Elsa',1,1),(37707,118357,'Dren',1,2),(37707,5892,'Barlow',2,3),(37707,88931,'Yang Dren',1,4),(37707,118358,'Elsa / PD',0,5),(37707,81801,'Gavin',0,6),(37707,1232769,'Melinda Finch',1,7),(58151,21028,'Charley Brewster',2,0),(58151,72466,'Jerry Dandrige',2,1),(58151,3051,'Jane Brewster',1,2),(58151,54691,'Ed Thompson',2,3),(58151,20049,'Peter Vincent',2,4),(58151,17606,'Amy Petersen',1,5),(58151,168993,'Doris',1,6),(58151,54697,'Mark',2,7),(58151,133814,'Adam',2,8),(58151,14541,'Jay Dee',2,9),(58151,965807,'Ginger',1,10),(58151,1224298,'Newscaster #1',0,11),(58151,98879,'Victoria',1,12),(58151,519735,'Bee',1,13),(58151,1668313,'Doctor',2,14),(58151,1279810,'Club Girl (uncredited)',1,15),(76640,1100,'Sheriff Ray Owens',2,0),(76640,2178,'Agent John Bannister',2,1),(76640,17289,'Frank Martinez',2,2),(76640,9656,'Lewis Dinkum',2,3),(76640,59817,'Sarah Torrance',1,4),(76640,40481,'Mike Figuerola',2,5),(76640,53,'Burrell',2,6),(76640,589162,'Agent Ellen Richards',1,7),(76640,70303,'Jerry Bailey',2,8),(76640,43464,'Agent Mitchell',2,9),(76640,82093,'Phil Hayes',2,10),(76640,17093,'Gabriel Cortez',2,11),(76640,1144930,'Christie',1,12),(76640,5048,'Mr. Parson',2,13),(76640,1144931,'Agent Devers',1,14),(76640,200465,'Magnet Girl',0,15),(76640,968889,'Man in Orange Suit',2,16),(76640,1033495,'Mayor',0,17),(57089,17265,'Red Riding Hood (voice)',1,0),(57089,19278,'Hansel (voice)',2,1),(57089,3234,'Verushka the Witch (voice)',1,2),(57089,9657,'The Big Bad Wolf (voice)',2,3),(57089,515,'Granny (voice)',1,4),(57089,28010,'Nicky Flippers (voice)',2,5),(57089,56322,'Gretel (voice)',1,6),(57089,61373,'Twitchy (voice)',2,7),(57089,519,'Kirk the Woodsman (voice)',2,8),(57089,18,'The Giant (voice)',2,9),(57089,43120,'Boingo the Bunny (voice)',2,10),(57089,58563,'Moss the Troll (voice)',2,11),(57089,11159,'Mad Hog (voice)',2,12),(57089,63208,'Stone (voice)',2,13),(57089,31549,'Wood / Ernesto (voice)',2,14),(46829,13242,'Barney Panofsky',2,0),(46829,4483,'Izzy Panofsky',2,1),(46829,10882,'Miriam Grant-Panofsky',1,2),(46829,6613,'The 2nd Mrs. P',1,3),(46829,58168,'Clara \'Chambers\' Charnofsky',1,4),(46829,127495,'Solange',1,5),(46829,13633,'Detective O\'Hearne',2,6),(46829,208539,'Kate Panofsky',1,7),(46829,100,'Boogie',2,8),(46829,175913,'Girl at Cafe',1,9),(146238,880,'Ivan Block',2,0),(146238,59620,'Rebecca Shafran',1,1),(146238,12111,'Richie Furst',2,2),(146238,53650,'Shavers',2,3),(146238,82167,'Professor Hornstein',0,4),(146238,11512,'Harry Furst',2,5),(146238,6183,'Billy \'Pet\' Petricoff',2,6),(146238,225694,'Andrew Cronin',2,7),(146238,996296,'Wilson',2,8),(146238,75604,'Delegate Herrera',2,9),(146238,200446,'Esteban',2,10),(146238,3218,'Archie',2,11),(146238,1983,'Sergeant Barrancas',2,12),(146238,1097967,'Shecky',2,13),(146238,222121,'Craig',2,14),(146238,1030512,'Lionel',2,15),(146238,1611780,'Masseuse',1,16),(146238,1614471,'Agent Poole',2,17),(146238,1376110,'Shooter',0,18),(102362,72466,'Victor',2,0),(102362,87722,'Beatrice',1,1),(102362,18288,'Alphonse',2,2),(102362,55470,'Darcy',2,3),(102362,17882,'Valentine Louzon',1,4),(102362,37149,'Terry',2,5),(102362,565426,'Kilroy',0,6),(102362,2682,'Luco',0,7),(102362,61329,'Goff',0,8),(102362,206398,'Charles',2,9),(102362,1272973,'Blotto',0,10),(102362,1272974,'Lance',0,11),(102362,1085150,'Roland',0,12),(102362,1045964,'Paul',0,13),(102362,37156,'Ilir',0,14),(102362,1164,'Gregor',2,15),(102362,80001,'Harry',0,16),(102362,1167280,'Harry\'s Girl',1,17),(102362,1272975,'Alex',0,18),(102362,1272976,'Alex\'s Girl',0,19),(102362,1272977,'Doctor',0,20),(102362,1530423,'Nurse',0,21),(102362,585780,'FedEx Guy',0,22),(102362,1272978,'Anka',0,23),(102362,1272979,'Delphine',0,24),(102362,1530440,'Latin Man',0,25),(102362,1272980,'Matilde',0,26),(102362,1187,'Andras',2,27),(102362,203757,'Derelict',0,28),(102362,23346,'Lon Gordon',2,29),(102362,155134,'Florence',1,30),(102362,1272981,'Peter',0,31),(102362,1179646,'Carl',0,32),(102362,226112,'Toilet Guy',0,33),(102362,118941,'Jeep Driver',1,34),(102362,1106629,'NYPD Officer Daniels',0,35),(76349,18897,'Huang Xing / Huang Keqiang',2,0),(76349,109432,'Xu Zonghan',1,1),(76349,6720,'Longyu',1,3),(76349,64435,'Zhang Zhenwu',2,4),(76349,1173005,'General Yuan Shikai',1,5),(76349,15170,'General Li Yuanhong',2,6),(76349,1106514,'Lin JueMin',2,7),(76349,998494,'Qiu Jin',0,8),(76349,57054,'Sun Yat-sen',0,9),(76349,1050324,'Wang Jingwei',2,10),(76349,130597,'Xiong Bingkun',2,11),(76349,1338063,'Situ Meitang',2,12),(76349,131343,'Chen Yiying',1,13),(76349,1223149,'John Newell Jordan',0,14),(76349,1379954,'Mr. Thompson',0,15),(76349,1069645,'Zai Feng',2,16),(76349,1006594,'Tang Manrou',1,17),(76349,1127729,'Yi Xin',2,18),(76349,1614307,'Tang Shaoyi',2,19),(76349,1184600,'Tang Weiyong',0,20),(76349,1614347,'Song Jiaoren',2,21),(76349,1275552,'Yuan\'s Concubine',1,22),(265208,976,'Nick Wild',2,0),(265208,11665,'Cyrus Kinnick',2,1),(265208,16501,'Danny DeMarco',2,2),(265208,58635,'Holly',1,3),(265208,8256,'Roxy',1,4),(265208,63522,'D.D.',1,5),(265208,7133,'Osgood',2,6),(265208,1206,'Pinky',2,7),(265208,15250,'Cassandra',1,8),(265208,2283,'Baby',2,9),(265208,225479,'Benny',2,10),(265208,20582,'Pit Boss',2,11),(265208,76543,'Tiel',2,12),(265208,92617,'Kinlaw',0,13),(265208,75620,'Millicent',1,14),(265208,52904,'Julian Reeves',0,15),(265208,1450383,'Cocktail Waitress',0,16),(265208,1386325,'Frank',0,17),(265208,1455749,'Tony',0,18),(265208,94428,'First Doctor',1,19),(265208,570706,'HotShot Dealer',0,20),(265208,120251,'Marie',1,21),(265208,98175,'Mean Dealer',0,22),(265208,1285499,'Sexy Santa Annie',0,23),(265208,84756,'Orderly',2,24),(45610,17276,'Sam Childers',2,0),(45610,11705,'Lynn',1,1),(45610,1907,'Daisy',1,2),(45610,133284,'Gun Shop Owner',0,3),(45610,64873,'Bill Wallace',0,4),(45610,133286,'Shannon Wallace',0,5),(45610,335,'Donnie',2,6),(45610,1053669,'Paige #1',0,7),(45610,62564,'Paige #2',1,8),(45610,1539987,'Paige\'s Friend',0,9),(45610,87466,'Deng',0,10),(45610,1386161,'Betty',0,11),(45610,1125218,'Billy / Contractor',0,12),(45610,1125219,'Pastor Krause',0,13),(45610,127129,'Teenage Boy',0,14),(45610,1738306,'Biker Chick',1,15),(45610,1771556,'Bartender',1,16),(45610,1062375,'Shaved Head',2,17),(45610,163515,'Bank Manager',2,18),(45610,1844619,'Employment Woman',0,19),(45610,1738282,'Mechanic',0,20),(45610,60081,'Ben Hobbes / Biker',0,21),(45610,1262132,'Crackhead',0,22),(45610,133284,'Pawn Shop Owner',0,23),(45610,1437111,'Prison Clerk',0,24),(45610,205184,'LRA Commander',0,25),(45610,1282129,'LRA Commander',0,26),(45610,1844638,'Anthony',0,27),(45610,1844643,'Riverbed Child',0,28),(45610,203421,'Dan',2,29),(45610,13092,'Administrator',2,30),(45610,590269,'Rose',0,31),(45610,77109,'American Businessman (uncredited)',2,32),(50135,5649,'Charles',2,16),(50135,59335,'Erdmu00e4nnchen',2,17),(50135,32586,'Lu00f6we',2,18),(50135,16815,'Elefant',2,19),(50135,16814,'Hotelmanager',2,20),(50135,1557544,'Billys Frau',0,21),(50135,32866,'Erdmu00e4nnchen 1',0,22),(271331,3129,'Sepp Blatter',2,1),(271331,4783,'Joao Havelange',2,2),(271331,3491,'Horst Dassler',2,3),(271331,16927,'Jules Rimet',2,4),(271331,1075355,'Annette Rimet',0,5),(271331,11068,'Linda',1,6),(271331,26473,'Carl Hirschmann',2,7),(271331,44446,'Vize',0,8),(271331,1649191,'Soldat',2,9),(215211,2227,'Grace Kelly',1,0),(215211,16501,'Rupert Allan',2,1),(215211,3627,'Maria Callas',1,2),(215211,3129,'Prince Rainier III',2,3),(215211,7489,'Madge Tivey-Faucon',1,4),(215211,8924,'Father Francis Tucker',2,5),(215211,937,'Count Fernando D\'Aillieres',2,6),(215211,10988,'Princess Antoinette',1,7),(215211,20243,'Alfred Hitchcock',2,8),(215211,32357,'Jean-Charles Rey',2,9),(215211,71450,'Aristotle Onassis',2,10),(215211,49278,'Emile Pelletier',2,11),(215211,1202599,'Grace Kelly\'s dresser',0,12),(215211,77191,'Countess Baciocchi',1,13),(215211,35085,'Charles de Gaulle',0,14),(215211,1256710,'Phyllis Blum',0,15),(215211,38529,'M. Delavenne',2,16),(215211,1420366,'Mr. Su00e9curitu00e9 Palais',0,17),(215211,94857,'Robert McNamara',0,18),(215211,35359,'Denard',2,19),(215211,1152669,'Homme u00e9mission TV',0,20),(215211,1242621,'Ministre',0,21),(215211,130559,'Producteur Hollywood',0,22),(215211,582861,'Lieutenant franu00e7ais CRS',0,23),(215211,143001,'Femme du marchu00e9',0,24),(215211,1469853,'Rainier Minister',0,25),(367961,1608016,'Savva (voice)',0,0),(367961,23440,'Anga (voice)',0,1),(367961,235916,'Polubaron Fafl (voice)',0,2),(367961,80999,'Elza (voice)',2,3),(367961,569541,'Pusik (voice)',0,4),(367961,81000,'Moran (voice)',2,5),(367961,733796,'Mama Zho Zi (voice)',0,6),(367961,1341809,'Shaman Shi-Sha / Rasskazchik (voice)',2,7),(367961,581282,'Mama Savvy (voice)',0,8),(367961,1867514,'Komar (voice)',0,9),(367961,107824,'\'Odnoglazyy\' - \'Terminator\' - \'Torpeda\' (voice)',2,10),(367961,1867515,'Ryzhiy Um (voice)',0,11),(367961,238518,'Nanti (voice)',0,12),(367961,125871,'Shantagar (voice)',2,13),(367961,86860,'\'Artist\' - \'Shpana\' (voice)',0,14),(223702,19274,'Frank / Sergeant Pepper (voice)',2,0),(223702,41091,'Brenda (voice)',1,1),(223702,21007,'Carl (voice)',2,2),(223702,19278,'Firewater / Tequila / El Guaco (voice)',2,3),(223702,39995,'Barry (voice)',2,4),(223702,17051,'Druggie (voice)',2,5),(223702,62862,'Honey Mustard (voice)',2,6),(223702,64342,'Grits (voice)',2,7),(223702,22226,'Darren (voice)',2,8),(223702,208519,'Douche (voice)',0,9),(223702,38582,'Lavash (voice)',2,10),(223702,819,'Sammy Bagel Jr. (voice)',2,11),(223702,3136,'Teresa Taco (voice)',1,12),(223702,521563,'Troy (voice)',2,13),(223702,1447323,'Gum / Twink / Krinkler\'s Chips / Pizza (voice)',0,14),(223702,1281758,'Baby Carrot / Cookies (voice)',1,15),(223702,12080,'Toilet Paper / Sauerkraut / Catcall Sausage / Grape #1 / Beer Can / Pop Bottle (voice)',2,16),(223702,45924,'Apple / Tickilish Licorice / Relish / Bag of Dog Food (voice)',2,17),(223702,61133,'Chunk Munchers Cereal / Light Bulb / Indian Chutney (voice)',2,18),(223702,1622600,'Plum #2 / Beer Keg / Fat Guy / Fit Man (voice)',0,19),(223702,1240645,'Pislitz Chips / Juice Box / Jamaican Rum (voice)',0,20),(223702,1544803,'Diner Waitress',0,21),(223702,54716,'Camille Toh / Tampon (voice)',1,22),(223702,106776,'Old Pork Sausage / Refried Beans / Sandwich / Pop Tart / Licorice Rope (voice)',0,23),(223702,142587,'Potato / Noodle Soup (voice)',2,24),(223702,89547,'Italian Tomato / Lettuce (voice)',0,25),(223702,16846,'Ketchup / Drug Dealer / Baba Ganoush (voice)',2,26),(223702,63797,'Mariachi Salsa / Gefilte Fish (voice)',2,27),(223702,963429,'Berry Good Candies / Grape #3 / Coconut Milk (voice)',1,28),(223702,74362,'Queso (voice)',2,29),(223702,1599433,'Beet (voice)',0,30),(223702,85432,'Popped Cherry Mixer / Plum #1 / Loretta Bun / Frozen Fruitz (voice)',1,31),(223702,74370,'Sally Bun / Ice Cream / Watermelon / Female Shopper #1 (voice)',1,32),(223702,74358,'Roberta Bun / Grape #2 / Female Shopper #2 (voice)',1,33),(254470,84223,'Beca Mitchell',1,0),(254470,221581,'Fat Amy',1,1),(254470,130640,'Emily Junk',1,2),(254470,29221,'Chloe Beale',1,3),(254470,73128,'Jesse Swanson',2,4),(254470,212604,'Bumper Allen',2,5),(254470,18980,'Katherine Junk',1,6),(254470,221098,'Aubrey Posen',1,7),(254470,1107296,'Benji Applebaum',2,8),(254470,999790,'Stacie Conrad',1,9),(254470,1107297,'Lilly Onakurama',1,10),(254470,1072572,'Cynthia-Rose Adams',1,11),(254470,1160310,'Flo Fuentes',0,12),(254470,90514,'Kommissar',1,13),(254470,1471841,'Pieter Kru00e4mer',0,14),(254470,1107298,'Jessica',1,15),(254470,1107299,'Ashley',1,16),(254470,77344,'Tone Hangers',2,17),(254470,185805,'Tone Hangers',0,18),(254470,21131,'Tone Hangers',2,19),(254470,223879,'Tone Hangers',2,20),(254470,8265,'John Smith',2,21),(254470,9281,'Gail Abernathy-McKadden-Feinberger',1,22),(254470,19767,'Himself',2,23),(254470,212,'Riff Off Host',2,24),(254470,298410,'Beca\'s Boss',2,25),(254470,176491,'Dax',0,26),(254470,1542816,'NFL Player / Green Bay Packer',0,27),(254470,1542818,'NFL Player / Green Bay Packer',0,28),(254470,1542819,'NFL Player / Green Bay Packer',0,29),(254470,1542820,'NFL Player / Green Bay Packer',0,30),(254470,1542821,'NFL Player / Green Bay Packer',0,31),(254470,1542822,'NFL Player / Green Bay Packer',0,32),(254470,557804,'Barden University Dean',2,33),(254470,1085709,'Barden University Secretary',1,34),(254470,210355,'Barden University Orientation Announcer',1,35),(254470,1336393,'Residual Heat Intern',0,36),(254470,208664,'Newscaster Connie',1,37),(254470,118752,'Today Show Host',1,38),(254470,1508943,'The Lead Host',0,39),(254470,1542825,'New Station Anchor Lisa Richards',0,40),(254470,1542826,'Outrage 24/7 Newscaster Todd Derek',0,41),(254470,1213859,'Morning Joe Host',0,42),(254470,1238770,'Morning Joe Host',0,43),(254470,78303,'Jimmy Kimmel Live Host',0,44),(254470,12929,'The View Host',0,45),(254470,1542829,'The View Host',0,46),(254470,4810,'The View Host',1,47),(254470,217371,'The Voice Judge',2,48),(254470,53397,'The Voice Judge',1,49),(254470,558267,'The Voice Judge',2,50),(254470,292445,'The Voice Judge',2,51),(254470,1347331,'Treblemakers',0,52),(254470,1438287,'Treblemakers',0,53),(254470,1542830,'Treblemakers',0,54),(254470,1415405,'Treblemakers',0,55),(254470,1542831,'Treblemakers',0,56),(254470,1542832,'Treblemakers',0,57),(254470,1542833,'Treblemakers',2,58),(254470,1542834,'Das Sound Machine',0,59),(254470,582123,'Das Sound Machine',0,60),(254470,1542835,'Das Sound Machine',0,61),(254470,1542836,'Das Sound Machine',0,62),(254470,1542837,'Das Sound Machine',0,63),(254470,1290596,'Das Sound Machine',0,64),(254470,1347328,'Das Sound Machine',0,65),(254470,1290651,'Das Sound Machine',0,66),(254470,1542841,'Das Sound Machine',0,67),(254470,1542842,'Das Sound Machine',1,68),(254470,1542843,'Das Sound Machine',0,69),(254470,1542844,'Das Sound Machine',0,70),(254470,1542845,'Das Sound Machine',0,71),(254470,1542846,'Das Sound Machine',0,72),(254470,1542847,'Das Sound Machine',0,73),(254470,1542848,'Das Sound Machine',0,74),(254470,1542849,'Pentatonix',0,75),(254470,1542850,'Pentatonix',0,76),(254470,1542851,'Pentatonix',0,77),(254470,1542852,'Pentatonix',0,78),(254470,1542853,'Pentatonix',1,79),(254470,1542855,'The Filharmonic',0,80),(254470,1542856,'The Filharmonic',0,81),(254470,1542857,'The Filharmonic',0,82),(254470,1542858,'The Filharmonic',0,83),(254470,1542859,'The Filharmonic',0,84),(254470,1542861,'The Filharmonic',0,85),(254470,1542864,'Penn Masala',0,86),(254470,1542866,'Penn Masala',0,87),(254470,1542868,'Penn Masala',0,88),(254470,1542870,'Penn Masala',0,89),(254470,1542871,'Penn Masala',0,90),(254470,1542872,'Penn Masala',0,91),(254470,1542873,'Penn Masala',0,92),(254470,1542874,'Penn Masala',0,93),(254470,1542875,'Penn Masala',0,94),(254470,1542876,'Penn Masala',0,95),(254470,1542877,'Penn Masala',0,96),(254470,1542878,'The Cantasticos',0,97),(254470,1542879,'The Cantasticos',0,98),(254470,1542880,'The Cantasticos',0,99),(254470,1542881,'The Cantasticos',0,100),(254470,1542882,'The Cantasticos',1,101),(254470,1542884,'The Cantasticos',1,102),(254470,1542885,'The Cantasticos',0,103),(254470,1542886,'The Cantasticos',0,104),(254470,1347321,'The Singboks',0,105),(254470,1542898,'The Singboks',0,106),(254470,1542899,'The Singboks',0,107),(254470,1290591,'The Singboks',0,108),(254470,1542900,'The Singboks',0,109),(254470,1542901,'The Singboks',0,110),(254470,1518168,'The Singboks',0,111),(254470,1542902,'The Singboks',0,112),(254470,1542903,'The Singboks',1,113),(254470,1542904,'The Singboks',0,114),(254470,1215522,'Former Bella',0,115),(254470,588972,'Former Bella',0,116),(254470,1326322,'Former Bella',1,117),(254470,1431508,'French Commentator',0,118),(254470,1390021,'Spanish Commentator',0,119),(254470,1450380,'Russian Commentator',0,120),(254470,1347364,'German Commentator',0,121),(323676,55536,'Michelle Darnell',1,1),(323676,22970,'Renault',2,2),(323676,40462,'Claire',1,3),(323676,8534,'Ida Marquette',1,4),(323676,109869,'Scout Leader Sandy',0,5),(323676,1093919,'Dana Dandridge',0,6),(323676,452,'Sister Aluminata',1,7),(323676,51383,'Mike',2,8),(323676,1254635,'Moisa',0,9),(323676,933578,'Rachel',1,10),(323676,174514,'Helen',1,11),(323676,1181329,'Stephan',2,12),(277216,1371398,'Ice Cube',0,0),(277216,1154054,'Dr. Dre',2,1),(277216,1115984,'Eazy-E',0,2),(277216,55091,'Dj Yella',0,3),(277216,83860,'MC Ren',0,4),(277216,1503716,'The D.O.C',0,5),(277216,1371397,'Suge Knight',0,6),(277216,1503717,'Tomica',0,7),(277216,1253199,'Kim',1,8),(277216,13242,'Jerry Heller',2,9),(277216,1113461,'Nicole',1,10),(277216,1442955,'Tyree',2,11),(277216,1503718,'Young Warren G.',0,12),(277216,1503719,'Warren G.',0,13),(277216,1200864,'Snoop Dogg',2,14),(277216,1503720,'Jinx',0,15),(277216,1371399,'Lavetta',0,16),(277216,154798,'Verna Griffin',0,17),(277216,1305249,'Doris Jackson',0,18),(277216,156532,'Hosea Jackson',2,19),(277216,8694,'Lonzo Williams',0,20),(277216,965205,'Bryan Turner',2,21),(277216,1503721,'Chuck D',0,22),(277216,167720,'Journalist #1',2,23),(277216,111451,'Journalist #2',2,24),(277216,117087,'Journalist #3',0,25),(277216,156064,'Journalist #4',1,26),(277216,37932,'Greg Mack',2,27),(277216,141432,'Al',2,28),(277216,202892,'Rock',2,29),(277216,1503722,'Michael \'Compton Menace\' Taylor',0,30),(277216,1152019,'Kid #1',0,31),(277216,1503723,'Kid #2',0,32),(277216,1451543,'Block Dude #1',2,33),(277216,149010,'Block Dude #2',2,34),(277216,198827,'LAPD Crash Cop #1',2,35),(277216,944478,'LAPD Crash Cop #2',0,36),(277216,1503724,'LAPD Cop',0,37),(277216,1050090,'Uniform Cop #1',2,38),(277216,1504757,'Uniform Cop #2',2,39),(277216,1503730,'Doo To\'s Security Guard',0,40),(277216,1503731,'Officer',0,41),(277216,1437557,'HBO Rapper #1',0,42),(277216,1153792,'HBO Rapper #2',0,43),(277216,64057,'Capitol Records Executive',2,44),(277216,1503732,'Torrance Cop #1',0,45),(277216,63029,'Torrance Cop #2',0,46),(277216,179543,'Officer Rauch',2,47),(277216,1503733,'Big Dude',0,48),(277216,1503734,'Felicia',0,49),(277216,1503735,'Tour Bus Driver',0,50),(277216,1504758,'Joe Louis Police',0,51),(277216,1504759,'Jimmy Iovine',2,52),(277216,62146,'CNN Journalist',2,53),(277216,1504760,'Tupac',0,54),(277216,1504761,'Chillin\' Cop',0,55),(277216,1371400,'Pool Party Girl',0,56),(277216,1790820,'Hostess',1,57),(277216,1215657,'Pastor',2,58),(277216,1709053,'Club Goer (uncredited)',1,59),(315664,5064,'Florence Foster Jenkins',1,0),(315664,3291,'St. Clair Bayfield',2,1),(315664,933238,'Kathleen',1,2),(315664,53863,'Cosme McMoon',2,3),(315664,971329,'Agnes Stark',1,4),(315664,1206334,'Donaghy',2,5),(315664,26717,'Carlo Edwards',2,6),(315664,1186597,'Friend of Florence',1,7),(315664,26860,'Doctor',2,8),(315664,28478,'Earl Wilson',0,9),(315664,107405,'Edgar Booth Cunningham Jr',0,10),(315664,78018,'John Totten',2,11),(315664,20282,'Arturo Toscanini',2,12),(315664,25074,'Phineas Stark',2,13),(315664,119893,'Cole Porter',2,14),(315664,1430323,'Baroness Le Feyre',0,15),(315664,1196986,'Mrs. James O\'Flaherty',1,16),(315664,1679369,'Augustus Corbin',2,17),(315664,42601,'Kitty',0,18),(315664,201335,'Mrs Vanderbilt',0,19),(318846,3894,'Michael Burry',2,0),(318846,4495,'Mark Baum',2,1),(318846,30614,'Jared Vennett',2,2),(318846,287,'Ben Rickert',2,3),(318846,6832,'Georgia Hale',1,4),(318846,184581,'Porter Collins',2,5),(318846,37154,'Charlie Geller',2,6),(318846,28847,'Danny Moses',2,7),(318846,239271,'Vinny Daniel',2,8),(318846,168877,'Jamie Shipley',2,9),(318846,3141,'Cynthia Baum',1,10),(318846,72638,'Lawrence Fields',2,11),(318846,57748,'Mr. Chau',2,12),(318846,467633,'Kathy Tao',1,13),(318846,543261,'Evie',1,14),(318846,1213603,'Mortgage Broker',2,15),(318846,141034,'Mortgage Broker',2,16),(318846,1651953,'Lewis Ranieri',2,17),(318846,1651954,'Fund Manager',2,18),(318846,175630,'Lewis Bond Trader',2,19),(318846,1651955,'Lewis Bond Trader',0,20),(318846,1651956,'Exotic Dancer',0,21),(318846,1374151,'Analyst',2,22),(318846,132434,'Coach',2,23),(318846,555658,'Michael Burry\'s Mom',0,24),(318846,203390,'Michael Burry\'s Dad',2,25),(318846,1465051,'Young Michael Burry',0,26),(318846,1215982,'Paul Baum',2,27),(318846,1585264,'Therapy Businessman',2,28),(318846,1567208,'Therapy Businessman',2,29),(318846,1485328,'Therapist',1,30),(318846,1146911,'Burry\'s Analyst',2,31),(318846,1651958,'Lawrence Fields\' Assistant',0,32),(318846,1579181,'Goldman Sachs Sales Rep (Lucy)',1,33),(318846,1651959,'Rabbi',2,34),(318846,1158068,'Mark Baum\'s Mom',0,35),(318846,1417415,'Man Stealing Cab',2,36),(318846,1651960,'Goldman Sachs Quant (Deeb)',0,37),(318846,1526220,'Deutsche Sales Rep',2,38),(318846,1374150,'Deutsche Sales Rep',2,39),(318846,1629633,'Trader at Night Club',2,40),(318846,1087271,'Jared\'s Assistant (Chris)',0,41),(318846,1651961,'Ted Jiang',2,42),(318846,1223677,'Himself',2,43),(318846,1651962,'Banker at Goldman Sachs',0,44),(318846,1493414,'B of A Lobby Security',1,45),(318846,1392647,'Tattooed Renter',0,46),(318846,1651963,'Tattooed Man\'s Son',0,47),(318846,1436978,'Burry\'s Assistant',2,48),(318846,31528,'Martin Blaine',0,49),(318846,59172,'Real Estate Agent',1,50),(318846,62784,'Real Estate Agent',0,51),(318846,1651964,'Florida Strip Club Dancer',1,52),(318846,1651965,'Noah',0,53),(318846,63110,'Rich Bear Rep (Matt)',2,54),(318846,1651966,'Second Bear Rep',2,55),(318846,154917,'Option One CEO',2,56),(318846,16460,'Merrill Lynch Rep',2,57),(318846,1651967,'Doug from Goldman Sachs',2,58),(318846,159461,'Montage Lehman Rep',2,59),(318846,1651968,'Montage Goldman Sachs Rep',0,60),(318846,1651970,'Himself',0,61),(318846,1651971,'Woman in Glasses',0,62),(318846,1651972,'Businessman at Casino',0,63),(318846,159300,'Guy in Game Jersey',2,64),(318846,141765,'Woman at Casino',0,65),(318846,1380008,'Fields\' Lawyer',0,66),(318846,1242199,'Casey',0,67),(318846,1393517,'Front Point Receptionist',1,68),(318846,1651974,'Angry Guy on the Phone',0,69),(318846,1651977,'Diner Waitress',1,70),(318846,1651979,'Spin Class Instructor',0,71),(318846,1561557,'Pub Goer',0,72),(318846,1651981,'Pub Goer',0,73),(318846,94428,'Deutsche Auditorium Host',1,74),(318846,120253,'Bruce Miller',2,75),(318846,1651985,'Banker in Deutsche Auditorium',0,76),(318846,1275933,'Lehman Executive',0,77),(318846,565505,'Seminar Leader',0,78),(318846,1651988,'35 to 1 Guy',0,79),(318846,1651990,'Cab Driver',0,80),(318846,1651991,'Banker 1979',0,81),(318846,1651992,'News Reporter',0,82),(318846,1651993,'Lehman Employee',0,83),(318846,1651994,'Michael Burry\'s Wife',0,84),(318846,1651995,'Nicolas Burry',0,85),(318846,77948,'Herself',1,86),(318846,234352,'Herself',1,87),(318846,1745991,'Noah',2,88),(318846,1746010,'Clothing Boutique Clerk',0,89),(318846,1560335,'Swimmer',1,90),(318846,231855,'Woman at Party',1,91),(318846,19011,'Himself (archive footage)',2,92);
INSERT INTO `movie_cast` VALUES (318846,1746014,'Casino Patron / Pool Party goer',0,93),(318846,1697155,'Club Dancer',0,94),(318846,1737691,'Bank of America Executive',1,95),(318846,1737691,'Front Point Receptionist',1,96),(318846,1737063,'Banking Professional',1,97),(318846,54422,'Himself (archive footage)',2,98),(318846,16663,'Barclays Bank Professional',1,99),(318846,19767,'Himself (archive footage)',2,100),(318846,111946,'Herself (archive footage)',0,101),(318846,558267,'Himself (archive footage)',2,102),(192577,46364,'Captain Harlock (voice)',2,0),(192577,133168,'Yama (voice)',0,1),(192577,84028,'Miime (voice)',1,2),(192577,146785,'Yattaran (voice)',2,3),(192577,1184807,'Tori-san (voice)',0,4),(192577,9706,'Isora (voice)',2,5),(192577,9711,'Nami (voice)',1,6),(192577,82508,'Roujin (voice)',0,7),(192577,85285,'Soukan (voice)',2,8),(192577,186341,'Kei (voice)',1,9),(137093,380,'Paddy',2,0),(137093,192,'Archie',2,1),(137093,3392,'Billy',2,2),(137093,8945,'Sam',2,3),(137093,2453,'Diana',1,4),(137093,98953,'Dean',2,5),(137093,71530,'Lonnie',2,6),(137093,45566,'Maurice',2,7),(137093,20747,'Miriam',1,8),(137093,8177,'Ezra',2,9),(137093,131934,'Lisa',1,10),(137093,93224,'Maid of Honor',1,11),(137093,1277225,'Danny the Greaser',0,12),(137093,1046200,'Bachelorette',0,13),(137093,1320732,'Security Guard',0,14),(137093,67579,'Floor Manager',2,15),(137093,62644,'50 Cent',2,16),(112949,143240,'Katie Feldman',1,0),(112949,19536,'Alex Wheatley',2,1),(112949,71189,'Jo',1,2),(112949,76941,'Kevin Tierney',2,3),(112949,65423,'Lieutenant Robinson',2,4),(112949,1158532,'Ivan\'s Waitress',0,5),(112949,524503,'Josh',2,6),(112949,1797637,'Lexie',0,7),(112949,1041480,'Jr. Detective Ramirez',2,8),(112949,20164,'Maddie',0,9),(112949,61099,'Mrs. Feldman',0,10),(112949,1797639,'Mr. Feldman',2,11),(112949,65171,'Bus Station Worker',2,12),(112949,1788835,'Bus Station Clerk',0,13),(112949,1281322,'Bus Boy',0,14),(112949,1244435,'Pushy Bus Woman',0,15),(112949,1470965,'Impatient Bus Customer',0,16),(112949,118595,'Police Chief Mulligan',0,17),(112949,1215021,'Police Officer Bass',2,18),(112949,1262396,'Boston Neighbor',2,19),(112949,1797638,'Female Boston Neighbor',1,20),(62206,44735,'Nick',2,0),(62206,62862,'Dwayne',2,1),(62206,86626,'Chet',2,2),(62206,69616,'Juicy',1,3),(62206,32907,'Travis',2,4),(62206,454,'Chango',2,5),(62206,10430,'The Major',2,6),(62206,207985,'Kate',1,7),(62206,224197,'Pizza Boss',2,8),(62206,1579636,'Chet\'s Date',1,9),(62206,1622139,'Sandra',1,10),(62206,100537,'Bank Manager',2,11),(62206,1237293,'Mom',1,12),(62206,1622141,'Family Dollar Cashier',1,13),(62206,105714,'Random Local',2,14),(218778,4495,'Ben Cooper',2,0),(218778,9278,'Kelly Cooper',1,1),(218778,1198286,'Alexander Cooper',2,2),(218778,112476,'Anthony Cooper',0,3),(218778,220064,'Emily Cooper',1,4),(218778,38334,'Ms. Suggs',1,5),(218778,52119,'Nina',1,6),(218778,98285,'Celia',1,7),(218778,1223084,'Audrey Gibson',1,8),(218778,1186940,'Becky Gibson',1,9),(218778,39659,'Mr. Brand',0,10),(218778,1581096,'Trevor Cooper',1,11),(218778,1581097,'Trevor Cooper',1,12),(218778,1594741,'Paul Dumphy',2,13),(218778,1203524,'Elliot Gibson',0,14),(218778,42165,'Mrs. Gibson',1,15),(218778,110141,'Mr. Rogue',0,16),(218778,105831,'Steph',1,17),(218778,1009885,'Yoga Instructor',1,18),(218778,1223718,'Mr. Cellars',0,19),(218778,59297,'Mr. Tanucci',2,20),(218778,1666044,'Receptionist Abby',1,21),(218778,1498201,'High School Teacher',1,22),(218778,119589,'Greg',2,23),(218778,1194140,'Logan',2,24),(218778,1576429,'Video Game Exec Yoshi',2,25),(218778,66525,'Dwayne',2,26),(218778,201841,'Jimmy',0,27),(218778,112049,'Tux Shop Employee',2,28),(218778,1096930,'Heather',1,29),(218778,54720,'Security Guard',2,30),(218778,1254620,'Nagamaki Host',0,31),(218778,205030,'Pregnant Sheila',1,32),(218778,61303,'Himself',2,33),(218778,1223718,'Mr Cellars',0,34),(192102,1269,'Ethan Renner',2,0),(192102,55085,'Vivi Delay',1,1),(192102,130640,'Zooey Renner',1,2),(192102,935,'Christine Renner',1,3),(192102,18818,'The Albino',2,4),(192102,49487,'The Wolf',2,5),(192102,585700,'Mitat Yilmaz',0,6),(192102,145161,'Guido',0,7),(192102,566080,'Hugh',2,8),(192102,25078,'Jules',2,9),(192102,1530933,'Abbate',0,10),(192102,1333450,'Sumia',0,11),(192102,1033668,'Louis',0,12),(192102,118512,'Jacques',0,13),(192102,1530934,'JPG Salesman',0,14),(192102,1493331,'Handsome Banker',2,15),(58431,1016168,'Elizabeth Bennet',1,0),(58431,32987,'Fitzwilliam Darcy',2,1),(58431,54738,'George Wickham',2,2),(58431,234982,'Jane Bennet',1,3),(58431,230680,'Charles Bingley',2,4),(58431,136532,'Parson Collins',2,5),(58431,1325961,'Kitty Bennet',1,6),(58431,4391,'Mr. Bennet',2,7),(58431,17286,'Lady Catherine de Bourgh',1,8),(58431,1155473,'Caroline Bingley',0,9),(58431,112824,'Charlotte Lucas',1,10),(58431,1345419,'Cassandra Featherstone',1,11),(58431,9144,'Mrs. Bennet',1,12),(58431,178614,'Mrs. Featherstone',1,13),(58431,1508785,'Lydia Bennet',1,14),(58431,1325532,'Wilhelm',2,15),(58431,1460120,'Mary Bennet',1,16),(58431,1547893,'Annabelle Netherfield',0,17),(58431,1547894,'Spact Zombie',1,18),(58431,1221047,'Aunt Phillips',1,19),(58431,1321628,'Georgina',0,20),(58431,53351,'Dowager',1,21),(59859,27428,'Dave Lizewski / Kick-Ass',2,0),(59859,56734,'Mindy Macready / Hit-Girl',1,1),(59859,54691,'Chris D\'Amico / The Motherfucker',2,2),(59859,54729,'Marty Eisenberg / Battle Guy',2,3),(59859,206,'Colonel Stars and Stripes',2,4),(59859,51936,'Night Bitch',1,5),(59859,49002,'Doctor Gravity',2,6),(59859,978,'Tommy\'s Dad',2,7),(59859,229606,'Tommy\'s Mum',1,8),(59859,9779,'Detective Marcus Williams',2,9),(59859,984658,'Brooke',1,10),(59859,1199002,'Mrs. Zane',1,11),(59859,3309,'Todd / Ass Kicker',2,12),(59859,1272888,'News Reporter',0,13),(59859,27492,'Mr. Lizewski',2,14),(59859,116882,'Katie Deauxma',1,15),(59859,20759,'Angie D\'Amico',1,16),(59859,5723,'Javier',2,17),(59859,589652,'Insect Man',2,18),(59859,989325,'Dolce',1,19),(59859,206919,'Black Death',2,20),(59859,1560011,'Goth Kid',2,21),(254473,8167,'Damien Collier',2,0),(254473,62439,'Lino',2,1),(254473,150,'Tremaine',2,2),(254473,112692,'Yeti',2,3),(254473,54793,'George the Greek',2,4),(254473,1287272,'Mayor\'s Assistant',0,5),(254473,7039,'Mayor',2,6),(254473,207881,'Big Cecil',2,7),(254473,113613,'Lola',1,8),(254473,231517,'Rayzah',0,9),(254473,1063927,'Peter',2,10),(254473,129419,'Major Reno',0,11),(63574,15758,'Vi Rose Hill',1,0),(63574,67274,'G.G. Sparrow',1,1),(63574,74688,'Olivia Palmer',1,2),(63574,1188558,'Randy Garrity',2,3),(63574,24047,'Pastor Dale',2,4),(63574,10823,'Bernard Sparrow',2,5),(63574,1036196,'Walter Hill',2,6),(63574,19392,'Marcus Hill',2,7),(63574,587506,'Our Lady of Perpetual Tears Choir Master',0,8),(63574,1770959,'Earla Hugues, Choregraph',0,9),(63574,1785189,'\'Mighty High\' Choir Member',1,10),(61891,83356,'Young Earl of Oxford',2,0),(61891,7026,'Edward de Vere',2,1),(61891,11207,'William Cecil',2,2),(61891,20810,'Princess Elizabeth Tudor',1,3),(61891,13333,'Queen Elizabeth I',1,4),(61891,229634,'Ben Jonson',2,5),(61891,28847,'William Shakespeare',2,6),(61891,114252,'Robert Cecil',2,7),(61891,109438,'Earl of Southampton',2,8),(61891,589650,'Earl of Essex',2,9),(61891,92094,'Francesco',2,11),(61891,589651,'Christopher Marlowe',2,12),(61891,589652,'Thomas Dekker',2,13),(61891,147255,'Thomas Nashe',2,14),(61891,30086,'Captain Richard Pole',2,15),(61891,937,'Prologue',2,16),(61891,178634,'Spencer',2,17),(61891,1441181,'John Heminge',2,18),(61891,40900,'Condell',2,19),(61891,83005,'Pope',2,20),(61891,63362,'Interrogator',0,21),(61891,49486,'Philip Henslowe',2,22),(61891,1255827,'Richard Burbage',2,23),(61891,1080195,'Bessie Vavasour',1,24),(61891,15456,'Anne De Vere',1,25),(61891,39988,'Bridget De Vere',1,26),(61891,1240496,'Young Anne De Vere',1,27),(61891,1663807,'Boy Earl of Oxford',2,28),(61891,1663809,'Boy Robert Cecil',2,29),(61891,1663812,'Boy Earl of Southampton',2,30),(61891,120833,'Archbishop',2,31),(61891,987260,'Footman',2,32),(61891,14637,'John De Vere',2,33),(61891,1663818,'King James I',2,34),(61891,26102,'Cecil\'s Spy Servant',2,35),(61891,1663821,'Monsieur Beaulieu',2,36),(61891,1663825,'Buxom Lady',1,37),(61891,1663826,'Essex General',2,38),(61891,553005,'Lady-in-Waiting',1,39),(61891,1663828,'Lady-in-Waiting',1,40),(61891,1184324,'Selling Maid',1,41),(61891,46987,'Groundling',2,42),(61891,111759,'Usher',2,43),(61891,513677,'Bear Baiter',2,44),(61891,48847,'Oxford\'s Servant',0,45),(61891,225910,'Oxford\'s Doctor',2,46),(61891,566703,'Stage Manager (New York)',0,47),(61891,1664257,'Dwarf / Puck',2,48),(61891,544007,'Quince',2,49),(61891,1339195,'Bottom',2,50),(61891,1150071,'Titania',2,51),(61891,111757,'Child Oberon',2,52),(61891,44464,'Pole\'s Commander',0,53),(61891,938506,'Stage Player: Shakespeare Company',2,54),(61891,1664259,'Stage Player: Shakespeare Company',2,55),(61891,1520241,'Stage Player: Shakespeare Company',2,56),(61891,1664600,'Stage Player: Shakespeare Company',2,57),(61891,1664601,'Stage Player: Shakespeare Company',2,58),(61891,1664602,'Stage Player: Shakespeare Company',2,59),(61891,1664604,'Stage Player: Shakespeare Company',2,60),(61891,1664639,'Stage Player: Shakespeare Company',2,61),(61891,1148517,'Stage Player: Shakespeare Company',2,62),(61891,1664640,'Dancer',1,63),(61891,1664642,'Dancer',1,64),(61891,1329774,'Dancer',2,65),(61891,1624049,'Dancer',1,66),(61891,1664653,'Dancer',1,67),(61891,1664657,'Dancer',2,68),(61891,1664660,'Dancer',1,69),(61891,1664674,'Dancer',1,70),(61891,1664676,'Dancer',2,71),(61891,1664682,'Dancer',1,72),(61891,1664689,'Dancer',1,73),(61891,1512804,'Dancer',2,74),(61891,1664698,'Dancer',2,75),(61891,1664700,'Dancer',2,76),(61891,1664701,'Dancer',2,77),(61891,53500,'First Lady to King James I (uncredited)',1,78),(42807,10297,'Willis Newton',2,0),(42807,22108,'Joe Newton',2,1),(42807,569,'Jess Newton',2,2),(42807,7132,'Dock Newton',2,3),(42807,2859,'Mia Newton',1,4),(42807,544190,'Orphan Singer',0,5),(42807,25654,'Louise Brown',1,6),(42807,544191,'Orphan Singer',0,7),(42807,20309,'Brentwood Glasscock',2,8),(42807,71659,'Slim',2,9),(42807,544192,'Orphan Fiddler',0,10),(42807,544193,'Lewis',0,11),(42807,37027,'Waiter',2,12),(42807,544194,'Farmer Williams',0,13),(42807,544195,'Bank Teller',0,14),(42807,1885589,'Frank Hamer',2,15),(56288,56731,'Marissa Cortez Wilson',1,0),(56288,583040,'Cecil Wilson',2,1),(56288,1257205,'Rebecca Wilson',1,2),(56288,74949,'Wilber Wilson',2,3),(56288,12799,'Timekeeper',2,4),(56288,57674,'Carmen Cortez',1,5),(56288,57675,'Juni Cortez',2,6),(56288,17835,'Argonaut',2,7),(56288,11160,'Machete',2,8),(56288,3131,'Gregorio Cortrez',2,9),(56288,1569851,'Agent Fine',0,10),(303858,1461,'Lee Gates',2,0),(303858,1204,'Patty Fenn',1,1),(303858,85065,'Kyle Budwell',2,2),(303858,147056,'Diane Lester',1,3),(303858,17287,'Walt Camby',2,4),(303858,37157,'Lenny',0,5),(303858,4808,'Captain Marcus Powell',2,6),(303858,61510,'Ron Sprecher',0,7),(303858,1046141,'Bree',0,8),(303858,71815,'Molly',1,9),(303858,4445,'Lt. Nelson',2,10),(303858,118937,'James Goodloe',2,11),(303858,1210610,'Arlene',1,12),(303858,54247,'Won Joon',2,13),(303858,1226596,'Dave',0,14),(303858,1260481,'Amy',1,15),(303858,1314544,'Himself',0,16),(303858,1675294,'Tech Sam',0,17),(303858,1675295,'Technical Director Jim',2,18),(303858,58620,'Matty (Floor Manager)',2,19),(303858,1237522,'Network Security Guard',0,20),(303858,150932,'Security Officer Nolan',0,21),(303858,1375636,'Production Assistant',1,22),(303858,66069,'Freddy (Previous Host)',0,23),(303858,176628,'Officer Benson',2,24),(303858,58543,'Lt. Vasquez',2,25),(303858,87707,'A Team Leader',2,26),(303858,72988,'NYPD Detective',2,27),(303858,1675310,'ESU Officer',0,28),(303858,1410481,'Sgt O\'Donnell',0,29),(303858,1592107,'Police Officer',0,30),(303858,964138,'NYPD Officer #1',0,31),(303858,1675318,'NYPD Officer #2',0,32),(303858,1675319,'Ryan (Diane\'s Assistant)',0,33),(303858,163956,'Marta (Secretary)',0,34),(303858,74132,'Yao Appiah COO',2,35),(303858,1571784,'Andre (IBIS Security Guard)',2,36),(303858,1469243,'Male Raver',0,37),(303858,108588,'Joji',2,38),(303858,1211676,'Moshe Mambo',0,39),(303858,1674261,'Blue Collar Customer',0,40),(303858,208706,'Blue Collar Mechanic',0,41),(303858,1476046,'Stockbroker',2,42),(303858,1512405,'News Anchor',2,43),(303858,144211,'An Anchorman',0,44),(303858,1455755,'Yet Another Anchorman',2,45),(303858,1474019,'Korean News Anchor',0,46),(303858,47969,'British Reporter',2,47),(303858,144438,'TV Reporter',2,48),(303858,1547515,'Teenage Boy #2',0,49),(303858,1311449,'Guy on Street',0,50),(303858,1401092,'Dancer #2',0,51),(303858,1480047,'Himself (uncredited)',2,52),(41488,3895,'Pierre Brossard',2,0),(41488,3063,'Annemarie Livi',1,1),(41488,18325,'Colonel Roux',2,2),(41488,27554,'Armand Bertier',2,3),(41488,44079,'Nicole',1,4),(41488,12642,'Old Man',2,5),(41488,8785,'Pochon',2,6),(41488,6637,'Commissaire Vionnet',2,7),(41488,126663,'Le Moyne',2,8),(41488,13525,'David Manenbaum',2,9),(41488,33668,'Michael Levy',2,10),(37028,116618,'Tamino',2,0),(37028,116619,'Pamina',0,1),(37028,116620,'Sarastro',2,2),(37028,116621,'Queen of the Night',0,3),(37028,116622,'Papageno',0,4),(37028,116623,'Papagena',0,5),(37028,116624,'Monostatos',0,6),(37028,151797,'Queen\'s Commander',2,7),(37028,1116837,'Principal Ensemble',0,8),(37028,194931,'Principal Ensemble',0,9),(169917,3896,'Matthew Scudder',2,0),(169917,221018,'Kenny Kristo',2,1),(169917,35029,'Ray',2,2),(169917,467645,'Peter Kristo',2,3),(169917,1216908,'Albert',2,4),(169917,1075789,'Carrie Kristo',0,5),(169917,544123,'TJ',0,6),(169917,110902,'Jonas Loogan',2,7),(169917,1100549,'Hostess',1,8),(169917,23789,'Yuri Landau',2,9),(169917,112143,'Reuben',2,10),(169917,56677,'Twelve Step Girl',1,11),(169917,48530,'Ortiz',2,12),(169917,177532,'Marie Gotteskind',1,13),(169917,76464,'Anita',1,14),(169917,206900,'Eduardo Solomon',0,15),(169917,212815,'Leila Alvarez',1,16),(169917,1294270,'Witness',0,17),(169917,1128450,'Bar Owner',2,18),(169917,1400512,'Dominican Banger #1',0,19),(169917,131423,'Dominican Banger #2',0,20),(169917,1457425,'Waitress - Jenny',0,21),(169917,1362512,'Howie',0,22),(169917,1457427,'Bag Boy',0,23),(169917,109562,'Cashier',0,24),(169917,1218124,'Manager - Roland',0,25),(169917,1457442,'Teenage Cashier',0,26),(169917,1232507,'Mrs. Youness',1,27),(169917,109024,'Neighbor',1,28),(169917,55272,'Librarian',1,29),(169917,1431807,'Nurse Anna',0,30),(169917,1375636,'Waitress - The Flame',1,31),(169917,1457460,'Yuri\'s Wife',0,32),(169917,1457461,'Lucia',1,33),(169917,138027,'Bodega Owner',2,34),(169917,1457463,'Jacinto',0,35),(169917,100707,'Tattooed Man',2,36),(169917,1457476,'Flannel Shirt',0,37),(169917,171601,'Stover',0,38),(169917,1457478,'Baller #1',0,39),(169917,187776,'Bellevue Doctor',0,40),(169917,1457479,'Old Woman',0,41),(169917,1157088,'Screaming Woman',1,42),(169917,1348209,'Dani',0,43),(169917,1340885,'Thug',0,44),(169917,1457481,'AA Speaker',0,45),(169917,205718,'AA Woman - Denise',0,46),(169917,1457484,'Latin Old Woman',0,47),(134374,13240,'Daniel Lugo',2,0),(134374,18918,'Paul Doyle',2,1),(134374,53650,'Adrian Doorbal',2,2),(134374,4252,'Victor Kershaw',2,3),(134374,228,'Ed DuBois',2,4),(134374,52997,'John Mese',2,5),(134374,963117,'Sorina Luminita',0,6),(134374,221581,'Ramona Eldridge',1,7),(134374,83586,'Johnny Wu',2,8),(134374,18313,'Frank Griga',2,9),(134374,89857,'Krisztina Furton',0,10),(134374,931218,'Detective Haworth',1,11),(134374,1172379,'Nine-Year-Old Boy/Rusty',0,12),(134374,1172381,'Son of Victor Kershaw',0,13),(134374,1172382,'Basketball Girl',0,14),(134374,1172383,'Young Daniel Lugo',0,15),(134374,1172384,'Teenage Daniel Lugo',0,16),(134374,53,'Dr. Bjornson',2,17),(134374,11519,'Pastor Randy',2,18),(134374,41737,'Captain Lopez',2,19),(134374,146391,'Brad McCalister',2,21),(134374,1272982,'Judy',0,22),(134374,42905,'Jim',2,23),(134374,1233672,'Carolyn \'Sissy\' Du Bois',0,24),(134374,47780,'Client',0,29),(62838,380,'Stan Harris',2,0),(62838,25541,'Laura Carrington',1,1),(62838,18976,'Randy',2,2),(62838,17832,'Spiritual Dr. Morriset',1,3),(62838,128206,'Elise',1,4),(62838,29222,'Paul',2,5),(62838,19536,'Sam',2,6),(62838,10860,'Tess Byrne',1,7),(62838,4587,'Nurse Aimee',1,8),(62838,63522,'Ava',1,9),(62838,17140,'Hailey',1,10),(62838,24967,'Nurse Mindy',1,11),(62838,448,'Claire Morgan',1,12),(62838,520,'Kim',1,13),(62838,1160,'Ingrid',1,14),(62838,2130,'Stan\'s Doctor',2,15),(62838,62856,'Griffin Byrne',2,16),(62838,34490,'Grace Schwab',1,17),(62838,1844,'James Schwab',2,18),(62838,32362,'Daniel Jensen',2,19),(62838,1210,'Kominsky',2,20),(62838,968006,'Lily Bowman',1,22),(62838,8171,'Brendan',2,23),(62838,60255,'Seth',2,24),(62838,232006,'Walter',2,25),(62838,5586,'Maude',1,26),(62838,167662,'Himself',2,27),(62838,97186,'Himself',0,28),(62838,1358760,'Balinese Woman - Resolution Tour',1,29),(62838,26485,'Building Super',2,30),(62838,1362526,'Mika',0,31),(62838,1690527,'Piper',0,32),(62838,82417,'Chef Sunil',2,33),(62838,1690528,'Chef Ming',0,34),(62838,4238,'Soldier',0,35),(70436,3036,'Edgar Allan Poe',2,0),(70436,114019,'Detective Emmett Fields',2,1),(70436,59860,'Emily',1,2),(70436,2039,'Colonel Hamilton',2,3),(70436,2449,'Maddux',2,4),(70436,551020,'John Cantrell',2,5),(70436,151797,'Captain Eldridge',2,6),(70436,11213,'Mrs. Bradley',1,7),(70436,74056,'Reagan',2,8),(70436,60348,'Percy',2,9),(70436,1184168,'Dr. Morgan',0,10),(316002,131,'Howard Birdwell',2,1),(316002,10860,'Alice Eckle',1,2),(316002,11006,'Scott',2,3),(316002,2229,'Rep. Pam Hendrickson',1,4),(316002,5129,'Edwin',2,5),(316002,1796,'Aunt Rita',1,6),(316002,9274,'Senator Bramen',2,7),(316002,56903,'Keyshawn',2,9),(316002,74612,'Rakeesha',1,10),(316002,29685,'Norm',2,11),(316002,116774,'Rep. Harshtone',2,12),(316002,168679,'Insurance Lobbyist',0,13),(316002,172056,'Marsha',1,14),(316002,135353,'The Father',2,16),(316002,19278,'Doctor Turnstall',2,17),(316002,1786474,'Everett',0,18),(316002,1786475,'Burger Hop Manager',0,19),(36355,109,'Sandy Ricks',2,0),(36355,57147,'Porter Ricks',2,1),(36355,783,'Dirk Moran',2,2),(36355,131947,'Marvin',2,3),(36355,135571,'Bounty Fisherman #1',0,4),(36355,70118,'Bounty Fisherman #3',2,5),(36355,27008,'Cathy',1,6),(238615,10859,'Young Damian',2,0),(238615,2282,'Damian',2,1),(238615,76511,'Madeline',1,2),(238615,1247,'Albright',2,4),(238615,70904,'Claire',1,5),(238615,404,'Judy',1,6),(238615,8536,'Martin',2,7),(238615,21429,'Carl',2,8),(238615,15543,'Anton',2,9),(238615,1451394,'Leah',0,10),(238615,1503744,'Anna',0,11),(238615,1155474,'Anton 2',2,12),(238615,1295668,'Dr. Jensen',2,13),(238615,427,'Phyllis Jensen',1,14),(238615,1105311,'Mallory',1,15),(238615,76021,'EMT #1',2,16),(238615,1503745,'EMT #2',0,17),(238615,1338215,'Ambulance Driver',0,18),(238615,60881,'Doctor X-Ray',2,19),(238615,16460,'Lab Technician',2,20),(238615,565501,'Andrea',1,21),(238615,168875,'Chauffeur',2,22),(238615,1070201,'Gate Agent',1,23),(238615,1171556,'Dickish Cousin',0,24),(238615,62100,'Retirement Home Manager',2,25),(238615,1503746,'Tony',0,26),(238615,1091423,'Recovery Mercenary',2,27),(238615,1456705,'Beautiful Girl #1',0,28),(238615,1169574,'Beautiful Girl #2',0,29),(238615,1497462,'Beautiful Girl #3',0,30),(238615,1503747,'Beautiful Girl #4',0,31),(238615,1503748,'Beautiful Girl #5',0,32),(238615,1503749,'Big Freedia',0,33),(238615,1503750,'Dancer #1',0,34),(238615,1503751,'Dancer #2',0,35),(238615,1503752,'Dancer #3',0,36),(238615,1503753,'Tap Dancer #1',0,37),(238615,1503754,'Tap Dancer #2',0,38),(238615,1503755,'Tap Dancer #3',0,39),(238615,1503756,'Hallway Lab Tech',2,40),(238615,1463793,'Coalition Volunteer',0,41),(238615,1434096,'Maitre\'d',0,42),(238615,1503757,'',0,43),(239571,11705,'Amanda Collier',1,0),(239571,11006,'Dawson Cole',2,1),(239571,60458,'Young Amanda Collier',1,2),(239571,972356,'Younger Dawson Cole',2,3),(239571,29512,'Tuck Hostetler',2,4),(239571,6692,'Evelyn',1,5),(239571,61011,'Morgan Dupree',0,6),(239571,103545,'Frank Reynolds',0,7),(239571,4602,'Harvey Collier',2,8),(239571,144160,'Tommy Cole',2,9),(239571,1374151,'Abee',2,11),(239571,1394279,'Bobby / Aaron',0,12),(239571,1394280,'Young April',0,13),(239571,70852,'April',1,15),(239571,60881,'Jack',2,16),(239571,1271773,'Uncle',2,17),(239571,1091423,'Guard',2,18),(239571,240571,'Brandi',0,19),(239571,230995,'Dr. Charbeaneau',1,20),(239571,60875,'Dr. Pundt',2,21),(239571,168942,'Lawyer',2,22),(239571,1292481,'Leonie',0,23),(239571,1394283,'Clara',1,24),(239571,1394285,'Rich Kid #1',0,25),(239571,1394287,'Receptionist #2',0,26),(239571,1394288,'Amanda\'s Friend',0,27),(239571,1394289,'Rich Kid #2',0,28),(239571,1394290,'Rich Kid #3',0,29),(239571,1394292,'Receptionist #1',0,30),(239571,1394293,'Priest',0,31),(239571,1394294,'Court Lawyer',0,32),(239571,1394295,'Oil Rig Worker',0,33),(239571,1348957,'Jared',2,35),(239571,1718658,'Ted Cole',2,36),(50014,54693,'Eugenia \'Skeeter\' Phelan',1,0),(50014,19492,'Aibileen Clark',1,1),(50014,6944,'Minny Jackson',1,2),(50014,18997,'Hilly Holbrook',1,3),(50014,83002,'Celia Foote',1,4),(50014,6858,'Johnny Foote',2,5),(50014,19,'Charlotte Phelan',1,6),(50014,5606,'Missus Walters',1,7),(50014,84300,'Stuart Whitworth',2,8),(50014,999605,'Elizabeth Leefolt',0,9),(50014,221098,'Jolene French',1,10),(50014,18249,'Constantine Jefferson',1,11),(50014,53923,'Yule Mae Davis',1,12),(50014,35013,'Preacher Green',2,13),(50014,13314,'Gracie Higginbotham',1,14),(50014,56689,'Rachel',0,15),(50014,50464,'Robert Phelan',2,16),(50014,51682,'Carlton Phelan',2,17),(50014,1367901,'William Holbrook',2,18),(50014,83222,'Raleigh Leefolt',2,19),(50014,946221,'Pascagoula',0,20),(50014,93181,'Gretchen',0,21),(50014,30861,'Mr. Blackly',2,22),(50014,2453,'Elain Stein',1,23),(50014,1158114,'Rebecca',1,24),(50014,60877,'Cora',1,25),(50014,34486,'Mary Beth Caldwell',1,26),(50014,52885,'Bus Driver',2,27),(50014,81697,'Henry The Waiter',2,28),(50014,1457015,'Donna The Receptionist',0,29),(50014,1048422,'Bridge Club',0,30),(50014,1069644,'Restaurant Patron (uncredited)',1,31),(50014,1449069,'Bus Rider (uncredited)',0,32),(50014,1566475,'Bellhop (uncredited)',0,33),(162903,71580,'Julian Assange',2,0),(162903,3872,'Daniel Domscheit-Berg',2,1),(162903,53650,'Sam Coulson',2,2),(162903,11207,'Nick Davies',2,3),(162903,227454,'Anke Domscheit-Berg',1,4),(162903,2283,'James Boswell',2,5),(162903,350,'Sarah Shaw',1,6),(162903,23229,'Birgitta Jonsdottir',1,7),(162903,12982,'Alan Rusbridger',2,8),(162903,221018,'Ian Katz',2,9),(162903,677,'Marcus',2,10),(162903,4796,'Marcel Rosenbach',2,11),(162903,221985,'Ziggy',2,12),(162903,62892,'Holger Stark',2,13),(162903,8445,'Ralph Zilke',2,14),(162903,2957,'Dr. Tarek Haliseh',2,15),(162903,1643968,'Otto',2,16),(162903,36010,'Hans',2,17),(162903,1212897,'Bill Keller',0,18),(162903,1771323,'John Paul Oulu',0,19),(162903,1771324,'Oscar Kamau Kingara',0,20),(162903,82807,'Alex Lang',1,21),(162903,1771325,'Mutassim Al-Gaddafi',0,22),(162903,1198815,'Shida Haliseh',1,23),(162903,1113789,'WikiLeaks Staffer #1',2,24),(162903,586286,'Wikileaks Staffer #2',1,25),(208763,973,'Jonathan Green',2,0),(208763,101433,'Petrus',0,2),(208763,118336,'Nastusya',0,3),(208763,143667,'Sotnik',2,4),(208763,1391561,'Pannochka',1,5),(208763,131210,'Overko',0,6),(208763,52761,'Dorosh',2,7),(208763,1190182,'Yavtukh',0,8),(208763,86668,'Zhena Yavtukha',0,9),(208763,86718,'Kuznets',0,10),(208763,1257106,'Bursak Khalyava',2,11),(208763,1468176,'Bursak Gorobets',0,12),(208763,1289984,'Khoma Brut',0,13),(208763,238221,'Panas',0,14),(208763,1209115,'Spirid',0,15),(208763,1340210,'Babka Ganna',1,16),(208763,1468221,'Ostap',0,17),(208763,1468222,'Zhena Ostapa',0,18),(208763,77351,'Gritsko',2,19),(208763,587910,'Otets Paisiy',2,20),(208763,4391,'Lord Dudley',2,22),(208763,1118212,'Miss Dudley',0,23),(254024,3967,'Simone Ford',1,0),(254024,1289968,'Melanie',1,1),(254024,3872,'Thomas',2,2),(254024,1340664,'Bea',1,3),(254024,105869,'Francesco',2,6),(254024,1437296,'Jessica Fuller',0,7),(254024,1141632,'Elizabeth Pryce',0,8),(254024,56843,'Edoardo',2,9),(254024,147159,'Pubblico Ministero Alberto Baldini',0,10),(254024,173668,'James Pryce',0,11),(254024,125489,'Roberto',0,12),(254024,3902,'Sarah',1,13),(254024,1299719,'William',0,14),(254024,221980,'Adam',2,15),(254024,29235,'Caroline',1,16),(254024,1088620,'Hannah',1,17),(168530,9778,'James',2,0),(168530,55638,'Ben Barber',2,1),(168530,5723,'Santiago',2,2),(168530,14888,'Lt. Brooks',2,3),(168530,110742,'Angela',1,4),(168530,78320,'Miggs',2,5),(168530,2975,'Omar',2,6),(168530,214108,'Crazy Cody',0,7),(168530,512316,'Ramon',0,8),(168530,1099717,'Runflat',0,9),(168530,1335308,'Morris the Kid',2,10),(168530,129565,'Marko',2,11),(168530,168875,'Dr. Cowan',2,12),(168530,1187060,'Gina',1,13),(168530,53258,'Pawnshop Jay',2,14),(168530,1187061,'Roberto',0,15),(168530,930994,'Ballsdeep 23',2,16),(168530,1338215,'Serbian Arms Dealer (uncredited)',0,17),(168530,1463682,'Marko\'s Gunman',2,18),(168530,1714641,'Marko\'s Gunman',0,19),(168530,1714642,'Cafeteria Lady',0,20),(168530,1714644,'Waiver Officer',0,21),(168530,1475030,'Bearded Biker',0,22),(168530,1714652,'Biker\'s Wife',0,23),(168530,1687490,'Angry Car Driver',0,24),(168530,1714657,'Gun Shop Val',0,25),(168530,1444912,'Shotgun Shooter',0,26),(168530,1444823,'Pawn Shop Owner',0,27),(168530,1714692,'Market Cashier',0,28),(168530,148704,'Market Shopper',1,29),(168530,1714696,'Market Shopper',0,30),(168530,1088939,'Strip Club Manager',0,31),(168530,61100,'Tweaker',0,32),(168530,1694174,'Tweaker',0,33),(168530,1714699,'Hostage',0,34),(168530,1714700,'Hostage',0,35),(168530,80242,'Gang Lieutenant',0,36),(168530,1714701,'Omar Gangster',0,37),(168530,1396921,'Serbian Boss',0,38),(168530,1381388,'Serb',0,39),(168530,1108643,'Carjacked Driver',0,40),(168530,1318798,'Assface23',2,41),(168530,1714702,'Suds31',0,42),(168530,1714705,'News Reporter',0,43),(168530,1714155,'Medic Jeffreys',2,44),(88042,7904,'Artie Decker',2,0),(88042,73931,'Diane Decker',0,1),(88042,3141,'Alice',1,2),(88042,16857,'Phil Simmons',2,3),(88042,54479,'Harper Simmons',1,4),(88042,212184,'Turner Simmons',2,5),(88042,1144353,'Barker Simmons',2,6),(88042,532890,'Cassandra',1,7),(88042,51456,'Dr. Schveer',1,8),(88042,16183,'Mr. Cheng',2,9),(88042,935720,'Ashley',1,10),(88042,935721,'Pre-School Mom',0,11),(88042,128207,'Marilyn - Pole Dancer',1,12),(88042,935722,'Rookie Cop',0,13),(88042,16832,'Himself',2,14),(88042,60673,'Himself',2,15),(88042,223027,'Amanda',0,16),(88042,1024312,'Man in Crowd #1',2,17),(41630,524,'Emma Kurtzman',1,0),(41630,18976,'Adam Franklin',2,1),(41630,8945,'Alvin Franklin',2,2),(41630,2130,'Dr. Stephen Metzner',2,3),(41630,45400,'Patrice',1,4),(41630,25703,'Lucy',1,5),(41630,52442,'Katie Kurtzman',1,6),(41630,8171,'Wallace',2,7),(41630,543505,'Eli',2,8),(41630,125167,'Shira',1,9),(41630,140253,'Sandra Kurtzman',1,10),(41630,82639,'Vanessa',1,11),(41630,1519685,'Guy',0,12),(41630,1232323,'Sam',0,13),(41630,52956,'Megan',1,14),(41630,440306,'Kevin',2,15),(41630,46594,'Bones',0,16),(41630,1240486,'Joy',1,17),(41630,1367840,'Lisa',0,18),(41630,1254625,'Chuck',0,19),(41630,109568,'Lydia',0,20),(41630,1426656,'Sari',0,21),(41630,1770754,'Benji',0,22),(41630,970084,'Victoria',1,23),(41630,106490,'Young Emma Kurtzman',0,24),(41630,1764255,'Young Adam Franklin',0,25),(41630,553735,'Eli\'s Dad',0,26),(41630,21561,'Eli\'s Dad #2',2,27),(41630,476163,'Writer',1,28),(41630,513378,'Writer',1,29),(41630,212290,'Man with Dog',2,30),(77877,29222,'Logan Thibault',2,0),(77877,10401,'Nana',1,1),(77877,221809,'Beth Clayton',1,2),(77877,80289,'Keith Clayton',2,3),(77877,211429,'Ben Clayton',0,4),(77877,141762,'Deputy Moore',2,5),(77877,550317,'Amanda',1,6),(77877,568045,'Logans`s Sister',0,7),(77877,142374,'Principal Miller',1,8),(77877,582656,'Roger Lyle',2,9),(77877,143264,'Logan\'s Brother in Law',2,10),(175555,80602,'Madea',2,0),(175555,54800,'Eileen',1,1),(175555,110742,'Lacey',1,2),(175555,53116,'Conner',2,3),(175555,62747,'Tanner',2,4),(175555,3128,'Amber',1,5),(175555,11074,'Kim',1,6),(175555,15897,'Buddy',2,7),(175555,189491,'Nancy Porter',1,8),(175555,77262,'Man',2,9),(175555,208316,'Customer 2',0,10),(175555,1158063,'Oliver',2,11),(175555,1158064,'Bailey',0,12),(175555,1069644,'Customer 1',1,13),(175555,1158065,'Business Owner',0,14),(75174,3896,'John Ottway',2,0),(75174,20212,'Jerome Talget',2,1),(75174,81685,'John Diaz',2,2),(75174,424,'Pete Hendrick',0,3),(75174,29234,'Todd Flannery',2,4),(75174,43547,'Jackson Burke',2,5),(75174,18473,'Luke Lewenden',2,6),(75174,59674,'Hernandez',2,7),(75174,574091,'Flight Attendant #1',0,8),(75174,574092,'Ottway\'s Father',2,9),(75174,574093,'Young Ottway',2,10),(75174,55569,'Ottway\'s Wife',1,11),(75174,935295,'Company Clerk',2,12),(75174,935297,'Talget\'s Little Girl',1,13),(75174,208069,'Cimoski',2,14),(75174,935299,'Flight Attendant',0,15),(77866,13240,'Chris Farraday',2,0),(77866,3967,'Kate Farraday',1,1),(77866,11107,'Sebastian Abney',2,2),(77866,1771,'Tim Briggs',2,3),(77866,18999,'Captain Camp',2,4),(77866,131725,'Bud Farraday',2,5),(77866,8688,'Gonzalo',2,6),(77866,572541,'Andy',2,7),(77866,4733,'John Bryce',2,8),(77866,526,'Danny Raymer',2,9),(77866,2482,'Jim Church',2,10),(77866,110902,'Olaf',2,11),(77866,1115984,'Walter',0,12),(77866,1293752,'CBP Official',0,13),(77866,550318,'Danny\'s Bride',0,14),(198185,65717,'J. B. Bernstein',2,0),(198185,2053,'Tom House',2,1),(198185,25703,'Brenda Paauwe',1,2),(198185,933160,'Rinku',2,3),(198185,20644,'Ash Vasudevan',2,4),(198185,964549,'Dinesh',2,5),(198185,225163,'Amit',0,6),(198185,1903,'Ray Arkin',2,7),(198185,963117,'Lisette',0,8),(198185,154917,'Pete',2,9),(198185,21629,'Chang',2,10),(198185,1303090,'Theresa',1,11),(198185,1271445,'Indian Reporter',0,12),(198185,1628061,'Hot Girl',1,13),(227156,1229,'The Giver',2,0),(227156,5064,'Chief Elder',1,1),(227156,1017347,'Jonas',2,2),(227156,1121786,'Fiona',1,3),(227156,28846,'Jonas\' Father',2,4),(227156,3897,'Jonas\' Mother',1,5),(227156,212208,'Rosemary',1,6),(227156,37089,'Asher',2,7),(227156,1272862,'Lily',0,8),(227156,1274509,'Nurturer',0,9),(227156,1412927,'Gabriel 12 Months',2,10),(227156,1412928,'Gabriel 12 Months',0,11),(227156,1412929,'Gabriel 3 Months',0,12),(227156,1412930,'Gabriel 6 Months',0,13),(227156,1412934,'Dinah',0,14),(227156,1084896,'Elder',0,15),(227156,129333,'Elder',2,16),(227156,1412940,'Chief Elder\'s Assistant',0,17),(227156,1412941,'Bride',0,18),(227156,1412942,'Robbie',0,19),(227156,1412943,'Security Officer',0,20),(227156,1412944,'Vietcong Sniper',0,21),(227156,183814,'Community (voice)',2,22),(190955,2296,'Chris Pierzynski',2,0),(190955,8289,'Frank',2,1),(190955,8293,'Monica',1,2),(190955,18973,'Natalie',1,3),(190955,8691,'Vanessa',1,4),(190955,73381,'Anthony Scarfo',2,5),(190955,3085,'Leon',2,6),(190955,3127,'Marie',1,7),(190955,2171,'McNally',0,8),(190955,11315,'Lt. Colon',2,9),(190955,933271,'Yvonne',1,11),(190955,75604,'Fabio DeSoto',2,12),(190955,80002,'Robin',1,13),(190955,171791,'Romero',2,14),(190955,53573,'Tommy',2,15),(190955,1835618,'Prostitute',0,16),(57431,6807,'Karl',2,0),(57431,21007,'Noah Jaybird',2,1),(57431,80576,'Slater',0,2),(57431,71552,'Marisa Lewis',1,3),(57431,65920,'Julio',2,4),(57431,999325,'Blithe',1,5),(57431,999329,'Rodrigo',0,6),(57431,999346,'Roxanne',0,7),(57431,18662,'Mrs. Pedulla',1,8),(57431,87956,'Dr. Pedulla',2,9),(57431,14984,'Sandy Griffith',1,10),(57431,27545,'Jim Griffith',2,11),(57431,5384,'Jacolby',2,12),(57431,999389,'Garv',2,13),(57431,934281,'Clayton',0,14),(57431,60574,'Ricky Fontaine',0,15),(57431,1034197,'Tina',1,16),(57431,1822018,'Benji Gillespie',0,17),(57431,164040,'Bethany',1,18),(57431,1822019,'Ashton Griffith',0,19),(57431,1822020,'Soul Baby',0,20),(57431,1822021,'Wendy Sapperstein',1,21),(57431,5385,'Mrs. Sapperstein',1,22),(57431,1822022,'Ricky Fontaine\'s Girlfriend',0,23),(57431,1082703,'Maitre\' D',0,24),(57431,1822023,'Kid City Employee',0,25),(57431,95519,'Officer Frank',2,26),(57431,18070,'Officer Petite',2,27),(57431,79419,'Lounge Singer',0,28),(57431,1551125,'Guy on Subway Platform',0,29),(57431,74303,'Stephanie',1,30),(284536,13240,'Jim Bennett',2,0),(284536,1230,'Frank',2,1),(284536,60073,'Amy Phillips',1,2),(284536,39390,'Neville Baraka',2,3),(284536,4431,'Roberta',1,4),(284536,221945,'Neville\'s Muscle',0,5),(284536,12950,'Ed',2,6),(284536,1259760,'Young Jim',0,7),(284536,205349,'Valet',2,8),(284536,1411657,'Lamar Allen',0,9),(284536,4025,'Number 2',2,10),(284536,1041440,'Dexter',2,11),(284536,1411658,'Blackjack Dealer #1',0,12),(284536,131772,'Neville\'s Bookkeeper',0,13),(284536,1371506,'Neville\'s Posse',0,14),(284536,1411659,'Neville\'s Posse',0,15),(284536,1375338,'Banker',0,16),(284536,1429649,'Mister Lee',0,17),(284536,6861,'Dean Fuller',2,18),(284536,2221,'Larry Jones',2,19),(284536,1504430,'Neville\'s Posse',0,20),(284536,1504431,'Neville\'s Posse',0,21),(152737,5064,'Violet Weston',1,0),(152737,1204,'Barbara Weston',1,1),(152737,2955,'Charles Aiken',2,2),(152737,3061,'Bill Fordham',2,3),(152737,452,'Mattie Fae Aiken',1,4),(152737,9880,'Beverly Weston',2,5),(152737,20212,'Steve Huberbrecht',2,6),(152737,86034,'Ivy Weston',1,7),(152737,3196,'Karen Weston',1,8),(152737,17140,'Jean Fordham',1,9),(152737,71580,'Little Charles Aiken',2,10),(152737,64136,'Johnna Monevata',0,11),(152737,1462304,'Sheriff Deon Gilbeau',0,12),(152737,84080,'Dr. Burke',2,13),(152737,15801,'Liquor Store Owner',2,14),(152737,3211,'Radio Announcer',2,15),(152737,1617613,'Radio Announcer',2,16),(152737,57770,'Baseball Announcer',0,17),(152737,1637653,'Young Soldier',0,18),(152737,1496731,'Funeral Attendee',0,19),(319888,1303037,'Eddie the Eagle Edwards',2,0),(319888,6968,'Chuck Berghorn',2,1),(319888,4690,'Warren Sharp',2,2),(319888,1198895,'Carrie',0,3),(319888,105563,'Erik Moberg',2,4),(319888,43451,'Petra',1,5),(319888,388,'BBC Commentator',2,6),(319888,70518,'Janette',0,7),(319888,20056,'Terry',2,8),(319888,203147,'UK Doctor',2,9),(319888,77638,'Richmond the BOA Official',0,10),(319888,41043,'Dustin Target',2,11),(319888,1153821,'Matti Nyku00e4nen',2,12),(319888,1534450,'Lars Holbin',2,13),(319888,76618,'Bju00f8rn the Norwegian Coach',2,14),(319888,1671018,'Old Jumper',2,15),(319888,1082299,'Appleby',2,16),(319888,1131724,'Zach',2,17),(319888,78047,'US Anchorman',2,18),(319888,1228288,'Oberstdorf Jumping Marshal',2,19),(319888,1454291,'Swedish Coach (uncredited)',2,20),(319888,1454290,'Canadian Ski Jumper (uncredited)',2,21),(319888,1388891,'Calgary Press (uncredited)',2,22),(319888,1363049,'Calgary Press (uncredited)',2,23),(319888,155086,'Photograper (uncredited)',2,24),(319888,1579294,'Skiier (uncredited)',1,25),(319888,1671024,'British Olympian (uncredited)',1,26),(46261,3897,'Kim',1,0),(46261,529,'Alex Hirst',2,1),(46261,54479,'Sally Hirst',1,2),(46261,52760,'Jacoby',2,3),(46261,12536,'Harris',2,4),(46261,210653,'Caterer',1,5),(46261,1014916,'Housekeeper',0,6),(46261,15340,'Psychiatrist',2,7),(46261,1112872,'Librarian',2,8),(43931,41883,'Adam Bug Hellerman',2,0),(43931,37154,'Alex Dunkelman',2,1),(43931,77278,'Jerome King',2,2),(43931,62760,'Penelope Bryte',1,3),(43931,114600,'Brandon O\'Neil',2,4),(43931,137446,'Brittany Cunningham',1,5),(43931,71815,'Leah Fang Hellerman',1,6),(43931,205862,'Jay Chan',0,7),(43931,82104,'Jeanne-Baptiste',1,8),(43931,107515,'Abel Plenkov',2,9),(43931,14984,'May Hellerman',1,10),(43931,81685,'Detective Frank Patterson',2,11),(43931,180524,'Maria',0,12),(43931,1215617,'Mr. Kaiser',0,13),(276907,2524,'Ronald Kray / Reginald Kray',2,0),(276907,70456,'Frances Shea',1,1),(276907,2040,'Leonard \'Nipper\' Read',2,2),(276907,11207,'Leslie Payne',2,3),(276907,1303037,'Mad Teddy Smith',2,4),(276907,9046,'Angelo Bruno',2,5),(276907,228866,'Frank Shea',2,6),(276907,6162,'Charlie Richardson',2,7),(276907,47615,'Elsie Shea',1,8),(276907,145143,'David Bailey',2,9),(276907,220448,'Albert Donoghue',2,10),(276907,32357,'Dr Humphries',2,11),(276907,219303,'Timi Yuro',1,12),(276907,2449,'Harold Wilson',2,13),(276907,26860,'Lord Boothby',2,14),(276907,55585,'Jack \'The Hat\' McVitie',2,15),(276907,1460120,'Joan Collins',1,16),(276907,1375554,'Leslie Holt',0,17),(276907,1486232,'Charles Kray Snr',0,18),(276907,1486233,'Shirley Bassey',1,19),(276907,1486234,'Eddie Richardson',2,20),(276907,1246598,'Violet Kray',0,21),(276907,76943,'Ian Barrie',2,22),(276907,2302,'Pat Connolly',2,23),(276907,85073,'Blind Beggar Barmaid',1,24),(276907,1057877,'George Cornell',0,25),(276907,83674,'Fuller',2,26),(276907,27659,'Superintendent Cummings',2,27),(276907,1476623,'Ronnie Hart',2,28),(276907,930959,'Jack Dickson',2,29),(276907,1075144,'Stefan De Faye',0,30),(276907,1336143,'Constable Scott',2,31),(276907,1659938,'The Double R Club Singer',2,32),(276907,64102,'Philip Testa',2,33),(276907,176222,'Mrs Payne',1,34),(276907,1332982,'Hew McCowan',2,35),(276907,1659946,'John',2,36),(276907,1772841,'Father Foster',0,37),(276907,134141,'Prison Doctor (uncredited)',2,38),(276907,1763168,'Guest at Club (uncredited)',0,39),(65055,60072,'Sara Palski',1,0),(65055,87440,'Dennis Crim',2,1),(65055,59231,'Gordon',2,2),(65055,231547,'Blake',2,3),(65055,53117,'Nick',2,4),(65055,77088,'Beth',1,5),(65055,10825,'Sheriff Greg Sabin',2,6),(65055,145543,'Keith',2,7),(65055,967617,'Malik',2,8),(65055,1334091,'Jess',1,9),(65055,134180,'Maya',1,10),(65055,1393519,'Carl',0,11),(200505,1269,'Sonny Weaver Jr.',2,0),(200505,9278,'Ali',1,1),(200505,11824,'Brian Drew',2,2),(200505,16431,'',2,3),(200505,53256,'Earl Jennings',2,4),(200505,9560,'Barb Weaver',1,5),(200505,2165,'Angie',1,6),(200505,8924,'Harvey Molina',2,7),(200505,8687,'Walt Gordon',2,8),(200505,5724,'Vince Penn',2,9),(200505,117437,'Tom Michaels',0,10),(200505,20379,'Max Stone',2,11),(200505,172069,'Vontae Mack',2,12),(200505,51930,'O\'Reilly',2,13),(200505,6951,'Ralph Mowry',2,14),(200505,14721,'Marvin',0,15),(200505,10138,'NFL Commissioner',2,16),(200505,225377,'Rick the Intern',0,17),(200505,1376001,'Party Guest (uncredited)',1,18),(60309,38940,'Anna Surratt',1,0),(60309,5530,'Frederick Aiken',2,1),(60309,8945,'Edwin Stanton',2,2),(60309,32,'Mary Surratt',1,3),(60309,6279,'Sarah Weston',1,4),(60309,15033,'Nicholas Baker',2,5),(60309,207,'Reverdy Johnson',2,6),(60309,4886,'Lewis Payne',2,7),(60309,20286,'John Wilkes Booth',2,8),(60309,221611,'Louis Weichmann',0,9),(60309,6413,'Joseph Holt',2,10),(60309,17401,'John Lloyd',2,11),(60309,27104,'John Surratt',2,12),(60309,18473,'William Hamilton',2,13),(60309,17782,'David Hunter',2,14),(60309,74242,'Capt. Cottingham',2,15),(60309,4445,'Major Smith',2,16),(60309,234683,'Abraham Lincoln',0,17),(293646,3131,'Mario Sepu00falveda',2,0),(293646,17289,'Laurence Golborne',2,1),(293646,1137,'Maru00eda Segovia',1,2),(293646,9274,'Jeff Hart',2,3),(293646,38560,'Luis Urzua \'Don Lucho\'',2,4),(293646,82700,'u00c1lex Vega',2,5),(293646,270,'Marta',1,6),(293646,36628,'Katty Valdivia',1,7),(293646,297502,'Jessica Salgado',0,8),(293646,4029,'President Sebastiu00e1n Piu00f1era',2,9),(293646,5168,'Andre Sougarret',2,10),(293646,240724,'Escarlette Sepu00falveda',1,11),(293646,16429,'Edison \'Elvis\' Peu00f1a',2,12),(293646,76094,'Yonni Barrios',2,13),(293646,937009,'Daru00edo Segovia',0,14),(293646,1532436,'',0,15),(293646,1217309,'Himself',0,16),(293646,188347,'Igor Proestakis',0,17),(293646,87265,'Carlos Mamani',0,19),(293646,1532438,'Miner #6',0,20),(293646,17094,'',2,21),(293646,1532439,'Miner',0,22),(293646,1532440,'Josu00e9 Henriquez',2,23),(293646,1532441,'Foreman',0,24),(293646,1532442,'Himself',0,25),(293646,1532437,'Susana Valenzuela',0,26),(133698,9824,'Isabelle',1,0),(133698,37627,'Jean-Yves',2,1),(133698,129168,'Corinne',1,2),(133698,288152,'Pierre',0,3),(133698,129765,'Patrick',0,4),(133698,577769,'Solange',0,5),(133698,150792,'Edmond',2,6),(133698,983929,'Valu00e9rie',0,7),(133698,240733,'Louise',1,8),(133698,7283,'Mau00eetre Maillard',2,9),(133698,1670630,'Employu00e9e mairie',1,10),(59440,2524,'Tom Conlon',2,0),(59440,41421,'Tess Conlon',1,1),(59440,1733,'Paddy Conlon',2,2),(59440,33192,'Brendan Conlon',2,3),(59440,81685,'Frank Campana',2,4),(59440,14721,'Principal Zito',0,5),(59440,1018947,'Colt Boyd',2,6),(59440,78320,'Himself',2,7),(59440,972459,'Himself',2,8),(59440,51683,'Mark Bradford',2,9),(59440,235782,'Pilar Fernandez',1,10),(59440,77278,'Stephon',2,11),(59440,39007,'Tito',0,12),(59440,1130135,'Nash',0,13),(59440,225622,'KC',0,14),(59440,216782,'Fenroy',2,15),(59440,11315,'Dan Taylor',2,16),(59440,90031,'Koba',0,17),(59440,1502956,'Francisco Barbosa',0,18),(59440,1310386,'Sun Chu',0,19),(59440,131423,'Diego Santana',0,20),(59440,589613,'Sparta Official',2,21),(59440,131422,'Mike \'The Mutilator\' Moore',0,22),(59440,1385641,'Tender Trap Referee',0,23),(59440,1099927,'Koba Entourage #1',0,24),(59440,78809,'Rashad Evans',0,25),(59440,170145,'Marine MP #1',2,26),(59440,1574936,'Fight Spectator (uncredited)',0,27),(77883,47296,'Clyde',2,0),(77883,94482,'Em',0,1),(77883,52869,'Hannah',1,2),(77883,26467,'Stephanie',1,3),(77883,42708,'Russell',2,4),(77883,582701,'Darius',0,5),(77883,582702,'Man',0,6),(77883,582704,'Tzadok',0,7),(77883,89885,'Student',2,8),(77883,63791,'Professor McMannis',2,9),(77883,582698,'Possessed Italian Girl',0,10),(77883,12055,'Stephanie\'s Attorney',2,12),(77883,78141,'Brett',2,13),(77883,1655618,'Officer',2,14),(40001,4090,'Grace Winterbourne',1,0),(40001,70233,'Connie Doyle/Patricia Winterbourne',1,1),(40001,18269,'Bill/Hugh Winterbourne',2,2),(40001,13636,'Christine',1,3),(40001,11628,'Steve DeCunzo',2,4),(40001,30488,'Paco',2,5),(40001,114029,'Patricia Winterbourne',1,6),(40001,10386,'Lieutenant Ambrose',1,7),(40001,163013,'Renee',0,8),(40001,1986,'Father Brian Kilraine',2,9),(40001,201812,'Sophie',1,10),(40001,1212933,'Dr. Hopley',0,11),(64639,11006,'David Sumner',2,0),(64639,7517,'Amy Sumner',1,1),(64639,28846,'Charlie Venner',2,2),(64639,10862,'Jeremy Niles',2,3),(64639,10964,'Deputy John Burke',2,4),(64639,1223171,'Janice Heddon',1,5),(64639,4512,'Tom Heddon',2,6),(64639,27740,'Daniel Niles',2,7),(64639,113563,'Norman',2,8),(64639,117167,'Chris',2,9),(64639,80380,'Abby',1,10),(64639,56675,'Coach Milkens',2,11),(64639,173995,'Bic',2,12),(64639,1691467,'Melissa',1,13),(64639,550117,'Kristen',0,14),(64639,146331,'Blackie',0,15),(64639,1271752,'Larry',0,16),(64639,974721,'Pastor',0,17),(64639,21526,'Logger',2,18),(64639,1766849,'Beauty Queen',0,19),(168705,7218,'Rayne',1,0),(168705,2282,'Kagan',2,1),(168705,17647,'Katarin',1,2),(168705,147,'Vladimir',2,3),(168705,56045,'Sebastian',2,4),(168705,60649,'Domastir',2,5),(168705,400,'Fortune Teller',1,6),(168705,1646,'Regal Monk',2,7),(168705,7470,'Leonid',2,8),(168705,60650,'Iancu',2,9),(168705,1954,'Elrich',2,10),(72113,204,'Nancy',1,0),(72113,1038,'Penelope',1,1),(72113,27319,'Alan',2,2),(72113,4764,'Michael',2,3),(72113,1462149,'Zachary Cowan',0,4),(72113,1462150,'Ethan Longstreet',0,5),(94352,1067237,'Mia',1,0),(94352,1067238,'The Aerialist',0,1),(94352,221147,'Fire Breather',0,2),(94352,1001710,'',0,3),(94352,1001709,'Boss',2,4),(94352,1001711,'Amy',0,5),(94352,218767,'Ringmaster',0,6),(152742,118,'Virgil Oldman',2,0),(152742,38941,'Robert',2,1),(152742,104632,'Claire',1,2),(152742,55636,'Billy',2,3),(152742,1133330,'Virgil\'s Assistant',2,4),(152742,25532,'Fred',0,5),(152742,17484,'Lambert',2,6),(152742,111662,'Sarah',0,7),(152742,1073181,'The Sister',0,8),(152742,1250098,'Girl in the Bar',0,9),(152742,1386133,'Young Woman',0,10),(152742,1386137,'Housekeeper',0,11),(152742,1386139,'Virgil\'s Assistant #1',0,12),(152742,1386142,'Virgil\'s Assistant #3',2,14),(152742,1386143,'Virgil\'s Assistant #4',0,15),(152742,42642,'Barman',2,16),(49953,127387,'Sammy (voice)',2,0),(49953,59620,'Shelly (voice)',1,1),(49953,77517,'Hatchling Shelly (voice)',1,2),(49953,29369,'Snow (voice)',1,3),(49953,13472,'Fluffy (voice)',2,4),(49953,5049,'Grandpa Sammy (voice)',2,5),(49953,118616,'Ray (voice)',2,6),(49953,3138,'Vera (voice)',1,7),(49953,35597,'Shelly (voice)',1,8),(49953,111988,'Whale (voice)',1,9),(48034,33161,'Max Cantara',0,0),(48034,8293,'Marie',1,1),(48034,5442,'Vincent Ribaud',2,2),(48034,54291,'Eric',2,3),(48034,56024,'Ludo',2,4),(48034,54324,'Vu00e9ronique Cantara',1,5),(48034,139855,'Jean-Louis',0,6),(48034,93532,'Antoine',2,7),(48034,83966,'Isabelle Ribaud',1,8),(48034,54168,'Juliette',0,9),(48034,139856,'Nassim',0,10),(48034,78425,'Lu00e9a',0,11),(48034,139857,'Franck',0,12),(48034,23390,'La copine lesbienne de Marie',1,13),(48034,5441,'L\'ami de Ludo au Baron',2,14),(48034,66841,'L\'amant de Marie',2,15),(48034,1808462,'Elliot',0,16),(48034,1808463,'Arthur',0,17),(48034,1808464,'Jeanne',0,18),(48034,1808466,'Brigitte',0,19),(48034,62935,'Virginie, la figurante',0,20),(48034,1363555,'Sabine, la mu00e8re de Ludo',1,21),(48034,1808473,'Le futur mari de Juliette',0,22),(48034,1406402,'Moniteur bateau-u00e9cole',0,23),(48034,550420,'Architecte hu00f4tel Max',0,24),(48034,1808482,'Serveur hu00f4tel Max',0,25),(48034,212112,'Serveur hu00f4tel Max',0,26),(39845,15735,'Grace Bontempo',1,0),(39845,4517,'Charlie Bontempo',2,1),(39845,78994,'Armando Bruza',2,2),(39845,11150,'Irene',1,3),(39845,39126,'Samantha',1,4),(39845,21318,'Christina',1,6),(39845,21215,'Alana',1,7),(39845,17419,'James Pettis',2,8),(39845,123532,'Tom Macy',2,9),(39845,22132,'Warren Stamp',2,10),(39845,343,'Mallory',1,11),(39845,211474,'Muneca',1,12),(36696,116004,'Belka (voice)',0,0),(36696,116005,'Venya (voice)',0,1),(36696,81000,'Kazbek (voice)',2,2),(36696,86636,'Mops (voice)',2,4),(36696,30404,'Strelka (voice)',1,5),(36696,56734,'Belka (voice)',1,6),(36696,116756,'Strelka (voice)',0,7),(36696,1220958,'Lenny (voice)',0,8),(36696,26993,'Kazbek (voice)',2,9),(36696,136152,'(voice)',2,10),(109091,17288,'The Counselor',2,0),(109091,6941,'Malkina',1,1),(109091,3810,'Reiner',2,2),(109091,5725,'Banker',2,3),(109091,955,'Laura',1,4),(109091,287,'Westray',2,5),(109091,14329,'Buyer',2,6),(109091,1078568,'Tony\'s Girl',1,7),(109091,4810,'Ruth',1,8),(109091,2310,'Diamond Dealer',2,9),(109091,20286,'Tony',2,10),(109091,1218936,'Cafe Waitress',0,11),(109091,120886,'Chauffeur',1,12),(109091,58787,'Woman with Mobile Phone',1,13),(109091,3901,'Second Man',2,14),(109091,55585,'Wireman',2,15),(109091,1172316,'Watching Girl',0,16),(109091,1114061,'Highway Patrolman',0,17),(109091,1105711,'Young Biker',2,18),(109091,575927,'Barman',0,19),(109091,185429,'Waitress',0,20),(109091,1088913,'Malkina\'s Bodyguard',2,21),(109091,34515,'Sedan Man',2,22),(109091,110872,'Hotel Waiter',2,23),(109091,51902,'Abogado',0,24),(109091,1177536,'Workman',0,25),(109091,58502,'Blonde',1,26),(109091,2049,'Jefe',2,27),(109091,212093,'Mau00eetre D\'',0,28),(109091,25616,'Priest',2,29),(38543,17648,'Thomas Marshall',2,0),(38543,51072,'Lady Isabel',1,1),(38543,973,'Becket',2,2),(38543,13242,'King John',2,3),(38543,1248,'Albany',2,4),(38543,937,'Cornhill',2,5),(38543,4391,'Stephen Langton, Archbishop of Canterbury',2,6),(38543,145143,'Guy',2,7),(38543,3543,'Coteral',2,8),(38543,1711,'Marks',2,9),(38543,1080281,'Wulfstan',2,10),(38543,19898,'Tiberius',0,11),(38543,1080282,'Baron Darnay',0,12),(38543,80369,'Maddy',1,13),(38543,143892,'Cooper',2,14),(38543,1088036,'Phipps',0,15),(38543,1442394,'Agnes',0,16),(38543,9298,'Oaks',2,17),(38543,1479891,'Abbott Marcus',0,18),(38543,141537,'Cook',2,19),(38543,1479904,'Head Clerk',0,20),(38543,32561,'Blacksmith',0,21),(38543,997569,'Sapper Captain',0,22),(38543,1479905,'Baron',0,23),(38543,1479906,'Baron',0,24),(38543,1479907,'Castle Darney Sentry',0,25),(38543,1479908,'Castle Servant Girl',0,26),(38543,1479909,'Mercenary',0,27),(38543,1269642,'Hungarian Mercenaries (voice)',0,28),(38543,1479910,'Tavern Landlord',0,29),(38543,1479911,'Hungarian Mercenaries (voice) (uncredited)',0,30),(38543,1080029,'Mercenary Scout (uncredited)',0,31),(38543,1479912,'Priest (uncredited)',0,32),(38543,1479913,'Young Soldier (uncredited)',0,33),(38543,1479914,'Hungarian Warrior (uncredited)',0,34),(38543,1479915,'Hungarian Warrior (uncredited)',0,35),(38543,1479916,'Topless Wench (uncredited)',0,36),(38543,1479917,'Garrison Guard (uncredited)',0,37),(38543,1479918,'Wounded Guard (uncredited)',0,38),(38543,1138288,'Mercenary Fight Performer (uncredited)',0,39),(38543,1479919,'King\'s Aid 2 (uncredited)',0,40),(290864,1341,'Hahou Mo',2,0),(290864,66762,'Detective Luk Yuen-Sum',1,1),(290864,71051,'Fung Yu-Sau',0,2),(290864,1018707,'Sinn Ying',0,3),(290864,140485,'Tai Yue',0,4),(290864,1089434,'Wong Chit',0,6),(290864,78878,'Tam King-Yiu',0,7),(290864,130598,'Hung Yip',0,8),(290864,66125,'K-1 Kickboxer',2,9),(290864,21914,'Chief Inspector Lam',2,10),(242166,55086,'Butch Cobra Masters',2,0),(242166,38581,'Karen Brooks',1,1),(242166,81295,'Tom Craig',2,2),(242166,8984,'John Webster',2,3),(242166,69405,'Michael Banks',2,4),(242166,591529,'',0,5),(242166,98658,'Vegas',2,6),(242166,1301270,'Chief of Naval Operations',0,7),(242166,1097565,'Temir Ajar',0,8),(242166,31115,'Davis',2,9),(242166,6166,'Arliss Skidmore',2,10),(242166,235695,'General Kozlov',2,11),(242166,16214,'Jason Zimmerman',2,12),(83770,9828,'Dean Moriarty / Neal Cassady',2,0),(83770,32987,'Sal Paradise / Jack Kerouac',2,1),(83770,37917,'Marylou / LuAnne Henderson',1,2),(83770,9273,'Jane / Joan Vollmer',1,3),(83770,90451,'Carlo Marx / Allen Ginsberg',2,4),(83770,205,'Camille / Carolyn Cassady',1,5),(83770,110,'Old Bull Lee / William S. Burroughs',2,6),(83770,548120,'Ed Dunkle / Al Hinkle',2,7),(83770,8602,'Terry / Bea Franco',1,8),(83770,32798,'Galatea Dunkel / Helen Hinkle',1,9),(83770,18288,'Walter',2,10),(83770,237041,'Vicki',0,11),(83770,193045,'Laura',1,12),(83770,216785,'Paul',0,13),(83770,99414,'Tonia',1,14),(83770,884,'Tall thin salesman',2,15),(83770,18466,'Puta Loca Roja',1,16),(174751,524,'Jane Hammond',1,0),(174751,33192,'Dan Frost',2,1),(174751,3061,'John Bishop',2,2),(174751,11315,'Bill Hammond',2,3),(174751,467645,'Vic Owen',2,4),(174751,17289,'Fitchum',2,5),(174751,172150,'Buck',0,6),(174751,19277,'O\'Dowd',2,7),(174751,1505457,'Cunny Charlie',2,8),(174751,1194214,'Slow Jeremiah',2,9),(174751,1505458,'Kid',0,10),(174751,208061,'Theodore',2,11),(174751,57155,'Marshal',2,12),(174751,75131,'Fur Trader',0,13),(174751,1505459,'Fiddler',0,14),(184098,11702,'Isaac',2,0),(184098,8177,'Dominic',2,1),(184098,98953,'Jeremy Kern',2,2),(184098,22122,'Mya',1,3),(184098,35705,'Candace Hall',1,4),(184098,352,'Uncle Eddie',2,5),(184098,40036,'Lauren Harris',1,6),(184098,143242,'Michael Hanover',0,7),(184098,15899,'Loretta',1,8),(184098,71530,'Zeke Freeman',2,9),(184098,63234,'Tish',1,10),(184098,214108,'Bennett',0,11),(184098,17773,'Kristen',1,12),(184098,83231,'Terrell',2,13),(184098,55638,'Cedric Ward',2,14),(184098,1034453,'Sonia',1,15),(184098,120560,'Declan',2,16),(184098,540281,'Gail',1,17),(184098,1723995,'Duke',0,18),(184098,210665,'Vanessa Martinez',1,19),(184098,78151,'Marcel Haffer',2,20),(184098,1158832,'Leikula',1,21),(184098,57854,'Andrea',1,22),(70868,520,'Kate Reddy',1,0),(70868,517,'Jack Abelhammer',2,1),(70868,164945,'Janine LoPietro',1,2),(70868,60928,'Wendy Best',1,3),(70868,81364,'Momo',1,5),(70868,130782,'Paula',1,6),(70868,7090,'',2,7),(70868,110014,'Allison Henderson',1,8),(70868,17141,'Richard Reddy',2,9),(70868,58184,'Marla Reddy',1,10),(70868,62856,'Chris Bunce',2,11),(70868,560598,'Architect',0,12),(70868,567611,'Boston Businessman',0,13),(70868,14103,'Lew Reddy',2,14),(43593,1951,'Julie Forester',1,0),(43593,36801,'Novak Radzinsky',2,1),(43593,3035,'Derrick Jones',2,2),(43593,88699,'Jake Forester',2,3),(43593,130782,'Kelly Driscoll',1,4),(43593,10182,'Deputy Fallon',2,5),(43593,2133,'Paula Montellano',1,6),(43593,38561,'Danni',1,7),(43593,3037,'Matthew Boyd',2,8),(43593,1062,'Henry Goodman',2,9),(43593,1209944,'Mrs. Goodman',1,10),(43593,76582,'Crystal',1,11),(43593,87567,'Todd Dupree',2,12),(43593,80967,'Sam',0,13),(43593,59843,'Andrew',2,14),(43593,16847,'Wet T-Shirt Host',2,15),(43593,125610,'Parasailing Girl',1,16),(43593,116456,'Cheerleader',1,17),(43593,1337067,'Propeller Girl',1,18),(43593,60127,'Teresa (featured)',1,19),(40688,8167,'Phil Deedle',2,0),(40688,778,'Capt. Douglas Pine',2,3),(40688,2778,'Frank Slater',2,4),(40688,8544,'Elton Deedle',2,5),(40688,3205,'Crabbe',2,6),(40688,5139,'Nemo',2,7),(40688,22132,'Major Flower',2,8),(40688,108438,'Stew Deedle',2,9),(40688,157904,'Lt. Jesse Ryan',1,10),(45881,5168,'Brother Juniper',2,0),(45881,1164,'Viceroy of Peru',2,1),(45881,8534,'The Marquesa',1,2),(45881,380,'Archbishop of Peru',2,3),(45881,1037,'Uncle Pio',2,4),(45881,98357,'Camila Villegas (La Perichola)',1,5),(45881,41886,'Manuel',2,6),(45881,41887,'Esteban',2,7),(45881,59132,'Pepita',0,8),(45881,400,'The Abbess',1,9),(45881,2413,'His Excellency\'s Fop',2,10),(45881,28743,'Captain Alvarado',2,11),(45881,23671,'Dou00f1a Clara',1,12),(45881,49025,'Dona Clara\'s Husband',2,13),(45881,53334,'The King of Spain',2,14),(41283,18918,'Driver',2,0),(41283,879,'Cop',2,1),(41283,11825,'Lily',1,3),(41283,17832,'Cicero',1,4),(41283,13022,'Warden',2,5),(41283,143204,'Receptionist',1,6),(41283,18708,'Telemarketer',2,7),(41283,124304,'Vaquero',2,8),(41283,143205,'Uniform',2,9),(41283,143206,'TV Anchor',0,10),(41283,51944,'Roy Grone',2,11),(41283,143208,'Kenny',2,12),(41283,56455,'Marina',1,13),(41283,31164,'The Evangelist',2,14),(41283,551020,'Killer',2,15),(41283,53828,'Woman',1,16),(41283,1173474,'Preacher\'s Wife',0,17),(41283,1225650,'Preacher',0,18),(41283,1098750,'Bouncer',2,19),(41283,45581,'Inmate',2,20),(37137,7633,'Frank Drebin',2,0),(37137,12949,'Jane Spencer',1,1),(37137,12950,'Captain Ed Hocken',2,2),(37137,12951,'Nordberg',2,3),(37137,128621,'Quentin Hapsburg',2,4),(37137,10983,'Dr. Meinheimer / Earl Hacker',2,5),(37137,119113,'Commissioner Brumford',1,6),(37137,3715,'Hector Savage',2,7),(37137,13399,'Baggett',2,8),(37137,158936,'Fenzwick',0,9),(37137,13401,'Dunwell',2,10),(37137,122592,'Ted Olsen',2,11),(37137,170680,'John Sununu',2,12),(37137,166827,'Winnie Mandela',1,13),(37137,97772,'Mel Tormu00e9',0,15),(37137,44715,'Zsa Zsa Gabor',1,16),(37137,11485,'Girl With Big Bust',1,17),(37137,12987,'Davy Crockett',2,18),(152601,73421,'Theodore',2,0),(152601,1245,'Samantha (voice)',1,1),(152601,108916,'Catherine',1,2),(152601,9273,'Amy',1,3),(152601,59315,'Blind Date',1,4),(152601,73457,'Paul',2,5),(152601,117669,'Surrogate Date Isabella',1,6),(152601,65727,'Dr. Johnson',0,7),(152601,211488,'',0,8),(152601,1197040,'Bikini Beach Babe',0,9),(152601,5953,'Alien Child (voice)',2,10),(152601,19278,'Chat Room Friend #2 (voice)',2,11),(152601,41091,'SexyKitten (voice)',1,12),(152601,1248,'Alan Watts (voice)',2,13),(152601,549831,'Letter Writer #1',0,14),(152601,154798,'Letter Writer #2',0,15),(152601,1509453,'Letter Writer #3',0,16),(152601,1509454,'Text Voice (voice)',0,17),(152601,1509455,'Sexy Pregnant TV Star',0,18),(152601,28414,'Charles',2,19),(152601,1509456,'Theodore\'s Divorce Attorney',0,20),(152601,1509457,'Marriage Counselor',0,21),(152601,1509458,'Nice Lady',0,22),(152601,1430636,'Pizza Vendor',0,23),(152601,1089188,'Mother Who Dated Pricks',1,24),(152601,45398,'New Sweet Boyfriend of Mother Who Dated Pricks',2,25),(152601,1509459,'Son',0,26),(152601,1509460,'Daughter',0,27),(152601,1509461,'Catherine\'s Dad',0,28),(152601,1509462,'Mother of Newborn',0,29),(152601,1014738,'Lewman',2,30),(152601,1509463,'Jocelyn (Birthday Girl)',0,31),(152601,19281,'Uncomfortable Waitress',1,32),(152601,1368802,'Tatiana',0,33),(152601,113857,'Voice of Isabella (voice)',1,34),(152601,1509464,'Grocery Shopper',0,35),(152601,1509465,'Busker / Dancer',0,36),(227707,145143,'Mariah Mundi',2,0),(227707,3968,'Charity',2,1),(227707,17286,'Monica',1,2),(227707,4783,'Otto Luger',2,3),(227707,65524,'Charles Mundi',2,4),(227707,22809,'Catherine Mundi',1,5),(227707,1226921,'Isambard Black',0,6),(227707,1283870,'Cleavy',0,7),(227707,1279513,'Felix',0,8),(227707,1283871,'Glocky',0,9),(227707,1283872,'Sacha',0,10),(227707,1563381,'Grimm',0,11),(227707,186002,'Wicket Keeper',2,12),(227707,1211217,'Chef',0,13),(227707,1698765,'Agent',0,14),(227707,1855465,'Agent #2 - Bureau of Antiquities',0,15),(227707,1626345,'Street boy',0,16),(227707,1738236,'Academic',0,17),(227707,1668011,'Policeman',0,18),(227707,51,'Childers',2,19),(227707,1402629,'Theatre Compare',0,20),(227707,1855495,'Jim Porter',0,21),(227707,1385095,'Piemaker',0,22),(227707,1562105,'Egyptian Worker',0,23),(227707,1244785,'Thin Man',0,24),(227707,1189420,'Sacha\'s Father',0,25),(227707,1717916,'Team Member',2,26),(227707,1818315,'Grendel',2,27),(227707,1230746,'Ratchit',2,28),(227707,1769884,'Street Seller',0,29),(227707,1855510,'Policeman',0,30),(70435,78452,'Mallory Kane',1,0),(70435,3061,'Kenneth',2,1),(70435,17288,'Paul',2,2),(70435,2053,'John Kane',2,3),(70435,38673,'Aaron',2,4),(70435,3131,'Rodrigo',2,5),(70435,3392,'Alex Coblenz',2,6),(70435,11665,'Scott',2,7),(70435,2406,'Studer',2,8),(70435,18300,'Barroso',2,9),(70435,930817,'Jiang',0,10),(70435,1089920,'Jason',0,11),(70435,1046460,'Gomez',0,12),(70435,140616,'Jamie',0,13),(354110,3416,'Mary-Alice Watson',1,1),(354110,2628,'John Henry Clayton',2,2),(354110,55636,'Rev. Clayton',2,3),(354110,1248,'James McCurdy',2,4),(354110,1121961,'Emily Chadwick',1,5),(354110,7486,'Dave Turner',2,6),(354110,138558,'Will Pickard',2,7),(354110,4031,'Tom Watson',2,8),(354110,142109,'Sam',2,9),(354110,180942,'Frank Tillman',0,10),(354110,47934,'Little Ned',0,11),(354110,1658287,'James Cleary',0,12),(354110,1658288,'Hank Plummer',0,13),(354110,54635,'George',0,15),(354110,77038,'Bob Waters',2,16),(354110,1237739,'Mr.Harper',2,17),(256917,934,'Joshua Connor',2,0),(256917,18182,'Ayshe',1,1),(256917,99314,'Major Hasan',2,2),(256917,74376,'Sgt. Jemal',0,3),(256917,224181,'Lt. Colonel Hughes',2,4),(256917,1213279,'Arthur Art Connor',0,5),(256917,1394227,'Edward Connor',0,6),(256917,1394235,'Henry Connor',0,7),(256917,75121,'Omer',2,8),(256917,145344,'Dr. Ibrahim',2,9),(256917,1394234,'Orhan',0,10),(256917,1232126,'Fatma',1,11),(256917,3062,'Captain Brindley',2,12),(256917,76068,'Greeves',2,13),(256917,1014586,'Sgt. Tucker',0,14),(256917,1275904,'Dawson',0,15),(256917,28744,'Eliza',1,16),(256917,103554,'Natalia',1,17),(256917,62752,'Father McIntyre',2,18),(256917,83769,'Colonel Demergelis',2,19),(256917,145246,'Imam',2,20),(256917,1394230,'Young Edward',2,23),(256917,1394232,'Young Art',0,25),(256917,1394233,'Young Henry',0,26),(228194,15735,'Madam Mallory',1,0),(228194,964971,'Hassan',2,1),(228194,11851,'Papa',2,2),(228194,1021684,'Marguerite',1,3),(228194,935701,'Young Hassan',2,4),(228194,35810,'Mama',1,5),(228194,1327299,'Mahira',0,6),(228194,1327300,'Mukthar Kadam',0,7),(228194,1327301,'French Critic',0,8),(228194,150072,'Mansur',2,9),(228194,1418323,'Aisha',0,11),(228194,21175,'Mayor',2,12),(228194,40939,'Jean-Pierre',2,13),(228194,54918,'Paul',2,14),(228194,1088197,'Marcel',0,15),(228194,1418346,'Mayor\'s Wife',0,16),(228194,305036,'Thomas',0,17),(228194,1418363,'Swedish Chef',0,18),(228194,1418368,'Baleine Grise Porter',0,19),(228194,35821,'Anwar',0,20),(228194,228718,'Waiter',2,21),(228194,1076707,'Female Officer',0,22),(228194,1375629,'Officer',0,23),(228194,1418556,'Dog Walker',0,24),(228194,1418558,'Mushroom Stall Holder',0,25),(228194,17479,'Lady Shepherd',1,26),(228194,1418560,'Poultry Man',0,27),(228194,1418561,'Monsieur Itan',0,28),(228194,1418562,'Angry Man',0,29),(228194,1418563,'Young Aisha',0,30),(228194,1418564,'Young Mukhtar',0,31),(228194,1418569,'Newsreader',0,32),(228194,1402174,'Baleine Grise Cook',0,33),(228194,1418572,'Cafe Server',0,34),(228194,1418573,'Mechanic',0,35),(228194,1418574,'Bike Rider',0,36),(228194,1418575,'Dog Walker\'s Wife',0,37),(228194,1418576,'Mob Leader',0,38),(228194,458905,'Guard',2,39),(235260,173150,'Mary, Mother of Jesus',1,0),(235260,647347,'Jesus',2,1),(235260,130464,'Claudia',1,2),(235260,1070749,'Peter',0,3),(235260,574378,'Mary Magdalene',1,4),(235260,202760,'Antonius',0,5),(235260,10701,'Nicodemus',2,6),(235260,84865,'Moses',2,7),(235260,43547,'Samson',2,8),(235260,25095,'Ramesses',2,9),(235260,127453,'Goliath',0,10),(235260,1423214,'Thomas',0,11),(235260,183151,'Pilate',2,12),(235260,383624,'Caiaphas',2,13),(235260,115176,'John',2,14),(235260,1196020,'Judas',0,15),(235260,225473,'Simon the Pharisee',2,16),(235260,1698776,'Adam',0,17),(235260,1698783,'Eve',1,18),(235260,26706,'Noah',0,19),(235260,122199,'Abraham',0,20),(235260,1281197,'Young David',0,21),(235260,37093,'King David',2,22),(235260,74415,'Balthazar',2,23),(235260,1698788,'Joseph',0,24),(235260,1336754,'Young Mary',0,25),(235260,1698790,'Herod Antipas',0,26),(235260,90547,'Barabbas',2,27),(235260,583919,'Matthew',0,28),(235260,1256066,'Malchus',0,29),(235260,1489914,'Martha',0,30),(235260,1698794,'Lazarus',0,31),(235260,62221,'John the Baptist',0,32),(235260,1485959,'Joseph of Arimathea',0,33),(235260,1698797,'Simon of Cyrene',0,34),(146239,4937,'David',2,0),(146239,71189,'Emma',1,1),(146239,73457,'Brett',2,2),(146239,52018,'Kristen',1,3),(146239,1007683,'Josh',2,4),(146239,452205,'Aleksy',2,5),(146239,1120198,'Mikolaj',0,6),(146239,163545,'Victor',2,7),(146239,1084878,'Adam',0,8),(146239,1156586,'Viggo',2,9),(146239,1272290,'Taylor',0,10),(146239,1272291,'Channing',2,11),(205588,3061,'Perry Makepeace',2,0),(205588,1640,'Dima',2,1),(205588,20186,'Hector',2,2),(205588,2038,'Gail Perkins',1,3),(205588,18325,'Aubrey Longrigg',2,4),(205588,53480,'Luke',2,5),(205588,34546,'Billy Matlock',2,6),(205588,13363,'Tamara',1,7),(205588,572648,'Natasha',1,8),(205588,1196960,'Niki',2,9),(205588,1345950,'Ollie',2,10),(205588,107722,'The Prince Nicolas Petro',0,11),(205588,1533995,'Andrei',2,12),(205588,34515,'Emilio Del Oro',2,13),(205588,1503070,'Maria',0,14),(205588,1054298,'Ballet Dancer',0,15),(205588,558517,'Pasha',0,16),(205588,230400,'Misha',2,17),(205588,118037,'Secretary to the Cabinet',0,18),(205588,224286,'Olga',0,19),(82650,89819,'Greg Heffley',2,0),(82650,111922,'Rowley Jefferson',2,1),(82650,90498,'Rodrick Heffley',2,2),(82650,46074,'Susan Heffley',1,3),(82650,18324,'Frank Heffley',2,4),(82650,1254435,'Holly Hills',1,5),(82650,84468,'Patty Farrell',0,6),(82650,1006731,'Heather Hills',0,7),(82650,858704,'Manny Heffley',2,8),(82650,1769435,'Manny Heffley',2,9),(82650,111923,'Chirag Gupta',2,10),(82650,111921,'Fregley',2,11),(82650,16559,'Mr. Jefferson',2,12),(82650,129986,'Isabella Wendell-Jefferson',1,13),(82650,37979,'Mrs. Hills',1,14),(82650,976171,'Stan Warren',2,15),(82650,1684475,'Mr. Jonathon Hills',0,16),(82650,208143,'Madison',1,17),(82650,119812,'Taylor Pringle',1,18),(270487,16851,'Eddie Mannix',2,0),(270487,1461,'Baird Whitlock',2,1),(270487,71375,'Hobie Doyle',2,2),(270487,5469,'Laurence Laurentz',2,3),(270487,1245,'DeeAnna Moran',1,4),(270487,3063,'Thora Thacker / Thessaly Thacker',1,5),(270487,38673,'Burt Gurney',2,6),(270487,3910,'C. C. Calhoun',1,7),(270487,21007,'Joe Silverman',2,8),(270487,1573102,'Carlotta Valdez',0,9),(270487,52996,'Natalie (Secretary)',1,10),(270487,17486,'Mrs. Mannix',1,11),(270487,10960,'Head Communist Writer',2,12),(270487,26473,'Communist Writer',2,13),(270487,52801,'Communist Writer',2,14),(270487,1310974,'Communist Writer',0,15),(270487,38582,'Communist Writer',2,16),(270487,1190522,'Communist Writer',0,17),(270487,20280,'Communist Writer',2,18),(270487,105303,'Communist Writer',2,19),(270487,8398,'Professor Marcuse',2,20),(270487,123515,'Mr. Smitrovich',2,21),(270487,1756594,'Eastern Orthodox Clergyman',0,22),(270487,66657,'Protestant Clergyman',2,23),(270487,115400,'Catholic Clergyman',2,24),(270487,16180,'Rabbi',2,25),(270487,1359007,'Cuddahy',0,26),(270487,944717,'Sid Siegelstein',2,27),(270487,38559,'Arne Seslum',2,28),(270487,114271,'Producer of Hail, Caesar!',2,29),(270487,80123,'Chinese Restaurant Mau00eetre D\'',2,30),(270487,1509745,'Chinese Restaurant Waitress',0,31),(270487,166671,'Malibu Maid',1,32),(270487,91369,'Stu Schwartz, Accounting',2,33),(270487,1524501,'Peanut',0,34),(270487,155955,'Director of Action Western',2,35),(270487,1756597,'Studio Assistant at Action Western',0,36),(270487,1535475,'Water Ballet P.A.',0,37),(270487,1756598,'Stage 8 Man at the Door',0,38),(270487,1410249,'Scotty at the Gate',0,39),(270487,1186660,'Gloria DeLamour',0,40),(270487,1756599,'French Postcard Photographer',0,41),(270487,1406450,'Cop at French Postcard House',0,42),(270487,155825,'Cop at French Postcard House',2,43),(270487,6574,'Gracchus',2,44),(270487,282835,'Chunk Mulligan',2,45),(270487,1262228,'Ursulina',0,46),(270487,43115,'Senator Sestimus Amydias',2,47),(270487,4201,'Lurking Extra',2,48),(270487,162669,'Lurking Extra',2,49),(270487,1215836,'Extras A.D.',0,50),(270487,84815,'Box Breakfast A.D.',2,51),(270487,6916,'Director',2,52),(270487,1490716,'Clapper Boy',0,53),(270487,20469,'Script Girl',1,54),(270487,63210,'Saul of Tarsus',2,55),(270487,54738,'Cad in Cab',2,56),(270487,1060671,'Woman in Cab',1,57),(270487,130414,'Dierdre',1,58),(270487,1746616,'Clapper Boy',0,59),(270487,1468,'Curly',2,60),(270487,1574308,'Cookhouse Woman',0,61),(270487,173756,'Bartender',2,62),(270487,1756610,'Departing Woman',0,63),(270487,946673,'Sailor',2,64),(270487,1561485,'Sailor',0,65),(270487,1756616,'Sailor / Dancer',0,66),(270487,1756617,'Sailor',0,67),(270487,1756619,'Dancer',0,68),(270487,1756620,'Dancer',0,69),(270487,1756621,'Dancer',0,70),(270487,1756622,'Dancer',0,71),(270487,95885,'Dancer',0,72),(270487,1756623,'Dancer',0,73),(270487,1756624,'Dancer',0,74),(270487,1756625,'Dancer',0,75),(270487,1756626,'Dancer',0,76),(270487,1756627,'Dancer',2,77),(270487,1756628,'Dancer',0,78),(270487,1756629,'Dancer',0,79),(270487,1756630,'Dancer',0,80),(270487,1756631,'Dancer',0,81),(270487,1756632,'Dancer',0,82),(270487,1756633,'Dancer',0,83),(270487,5658,'Narrator (voice)',2,84),(270487,1472256,'Imperial Garden Waitress (uncredited)',1,85),(270487,16644,'Submarine Commander (uncredited)',2,86),(204082,976,'Phil Broker',2,0),(204082,17051,'Gator',2,1),(204082,1109976,'Maddy Broker',1,2),(204082,1920,'Sheryl Mott',1,3),(204082,58168,'Susan Hatch',1,4),(204082,7517,'Cassie Bodine',1,5),(204082,6574,'Sheriff Keith Rodrigue',2,6),(204082,81685,'Cyrus Hanks',2,7),(204082,85178,'Lydia',1,8),(204082,334,'Tito',0,9),(204082,1134443,'Ms. Etherby',1,10),(204082,135633,'Michelle (biker chick)',1,11),(204082,1098572,'Dancer',0,12),(204082,131772,'Senior Agent',0,13),(204082,141762,'DEA Agent',2,14),(204082,1458265,'Tweaker #1',0,15),(42586,5823,'Lili Smith (Schmidt)',1,0),(42586,18735,'Major William Larrabee',2,1),(42586,55037,'Colonel Kurt Von Ruger',2,2),(42586,94836,'T.C. Carstairs',0,3),(42586,165373,'Lt. George \'Youngblood\' Carson',2,4),(42586,1074070,'Crepe Suzette',0,5),(42586,26890,'Major Duvalle',2,6),(287948,1047649,'Frank Martin',2,0),(287948,56614,'Frank Senior',2,1),(287948,1381175,'Anna',1,2),(287948,118200,'Gina',1,3),(287948,1444141,'Maria',0,4),(287948,1545424,'Qiao',0,5),(287948,230400,'Arkady Karasov',2,6),(287948,145633,'Mau00efssa',1,7),(287948,238130,'Yuri',0,8),(287948,12766,'Leo Imasova',0,9),(287948,62447,'Inspector Bectaoui',2,10),(287948,62892,'Stanislas Turgin',2,11),(287948,1545425,'Co-pilot Air Yuri',0,12),(287948,1792497,'Captain Guesdon',0,13),(287948,1792499,'Ivan',0,14),(287948,1321013,'Bank Manager',2,15),(287948,94066,'Maintenance Engineer',0,16),(287948,1792505,'Air Traffic Controller',0,17),(287948,1792506,'Airport Security Officer',0,18),(287948,1792507,'Hospital Clerk',0,19),(287948,1105577,'Wine Store Clerk',2,20),(287948,1792508,'West African Pimp',0,21),(287948,1792509,'Robbie',0,22),(287948,1792510,'Max',0,23),(287948,226023,'Policeman',0,24),(287948,1792511,'Policeman',0,25),(287948,1792512,'Policeman',0,26),(109513,40462,'Annie Bean',1,0),(109513,51298,'Charles Bronson/Yul Perrkins',2,1),(109513,74036,'Randy Anderson',2,2),(109513,52775,'Debbie Kreeger',1,3),(109513,19975,'Gil Rathbinn',2,4),(109513,1177774,'Terry Rathbinn',0,5),(109513,1289567,'Angella Roth',0,6),(109513,51329,'Alex Dmitri',2,8),(109513,52847,'Neve Tatum',1,9),(109513,1047653,'Cashier Mary Ann',0,10),(109513,159482,'Body Builder Catalyst',2,11),(109513,28638,'Sanders',2,12),(109513,78433,'Allen',2,13),(109513,2222,'Clint Perrkins',2,14),(109513,23532,'Keith Yert',2,15),(109513,52601,'Sandy Osterman',2,17),(109513,1023315,'Pat Rickman',0,18),(109513,559457,'Dude',0,20),(204922,2227,'Christine Lucas',1,0),(204922,5472,'Ben Lucas',2,1),(204922,2983,'Dr. Nash',2,2),(204922,37058,'Claire',1,3),(204922,564035,'Nurse Kate',0,4),(204922,1332971,'Adam',2,5),(204922,1376050,'Husband',2,6),(204922,72315,'Warehouse Caretaker',2,7),(204922,1414108,'Boy in Dream',0,8),(204922,1414109,'Boy on Bike',0,9),(38985,6355,'Jackie Scanlon / Juan Dominguez',2,0),(38985,32364,'Victor Manzon / Serrano',2,1),(38985,9768,'Nilo',0,2),(38985,20115,'Kassem / Martinez',2,3),(38985,33060,'Corlette',2,4),(38985,3476,'Lartigue',2,5),(38985,30936,'Marquez',0,6),(38985,91971,'Carlos',2,7),(38985,1032977,'Bobby Del Rios',0,8),(38985,16525,'Spider',2,9),(38985,1102689,'Agrippa',0,10),(38985,1102690,'Billy White',0,11),(38985,44109,'Blanche',0,12),(38985,38898,'Pascal',0,13),(44113,4432,'Madylyn',1,0),(44113,380,'Jack Mabry',2,1),(44113,819,'Gerald Creeson',2,2),(44113,63,'Lucetta',1,3),(44113,1224022,'Young Jack',0,4),(44113,121935,'Young Madylyn',1,5),(44113,1695988,'Miss Dickerson',1,6),(44113,1735891,'Guard Peters',0,7),(44113,924292,'Candace',1,8),(44113,54783,'Warden (as Peter Lewis)',2,9),(44113,132218,'Janice',0,10),(164457,3894,'Russell Baze',2,0),(164457,8691,'Lena Taylor',1,1),(164457,57755,'Harlan DeGroat',2,2),(164457,9880,'Gerald \'Red\' Baze',2,3),(164457,5293,'John Petty',2,4),(164457,2178,'Chief Wesley Barnes',2,5),(164457,1893,'Rodney Baze Jr.',2,6),(164457,467645,'Tattooed Guy',2,7),(164457,19453,'Dan Dugan',2,8),(164457,74595,'Bergen County Officer',2,10),(164457,991960,'Meth Guy',0,11),(164457,1272901,'Brady',0,12),(164457,1188761,'Chaplain',2,13),(164457,104046,'Rodney Baze Sr.',2,14),(164457,81462,'DeGroat\'s Date',1,15),(164457,1275451,'Woman at Drive In',1,16),(164457,42824,'Man at Drive In',2,17),(164457,1672976,'Dwight Van Dunk',2,18),(164457,1400459,'Skinny Guy',2,19),(164457,1672979,'Undercover Cop',2,20),(164457,1219514,'Priest',0,21),(164457,1621147,'Prisoner (uncredited)',2,22),(164457,1673003,'Cletus (uncredited)',2,23),(164457,1673006,'Steel Worker (uncredited)',2,24),(164457,1673008,'Steven Jones - Prisoner 2011756 (uncredited)',2,25),(164457,1543870,'Jackson White (uncredited)',2,26),(164457,1673013,'Prisoner (uncredited)',2,27),(164457,1673014,'Cooch (uncredited)',2,28),(164457,1673015,'Inmate (uncredited)',2,29),(164457,1673016,'Dealer Friend (uncredited)',2,30),(164457,1543874,'Prison Guard (uncredited)',2,31),(164457,1502323,'Gang Member (uncredited)',0,32),(164457,1098036,'Steelworker (uncredited)',2,33),(164457,127060,'Bar Patron (uncredited)',0,34),(164457,193946,'SWAT Team (uncredited)',2,35),(164457,1272901,'Brady (uncredited)',0,36),(164457,1480130,'Civilian (uncredited)',1,37),(164457,1673034,'Civilian (uncredited)',2,38),(164457,1673036,'Lewis Doty - Prisoner 4732P1946B (uncredited)',2,39),(164457,106147,'Meth Girl (uncredited)',1,40),(164457,1566267,'Jerome (uncredited)',2,41),(153158,84714,'Eusebio (voice)',2,0),(153158,1182533,'Grosso (voice)',0,1),(153158,93648,'Capi (voice)',2,2),(153158,938781,'Intendente (voice)',0,3),(153158,1182534,'Amadeo (voice)',0,4),(153158,487207,'Joven Grosso (voice)',1,5),(153158,1078220,'Central Liso (voice)',0,6),(153158,1182535,'Laura (voice)',0,7),(153158,100138,'Ermitau00f1o (voice)',0,8),(153158,962967,'Priest (voice)',2,9),(153158,1378723,'Capitu00e1n Liso (voice)',0,10),(153158,1182537,'Manager (voice)',0,11),(153158,1182538,'Beto (voice)',0,12),(153158,1084678,'El Pulpo (voice)',0,13),(153158,1182539,'Malparitti II (voice)',0,14),(81836,27578,'Shannon',1,0),(81836,1243,'Mark Lovegood',2,1),(81836,44735,'Tyson',2,2),(81836,955,'Anna',1,3),(81836,7447,'John',2,4),(81836,4818,'Leopoldo',2,5),(81836,17486,'Lillian',1,6),(81836,145326,'Milly',1,7),(81836,59270,'Rapinatore hotel',2,8),(81836,351,'Phyllis',1,9),(81836,27163,'Pia Fusari',1,10),(81836,45400,'Sally',1,11),(81836,125488,'Michelangelo',2,12),(81836,210766,'Antonio',0,13),(81836,52087,'Carol',1,14),(81836,74487,'Tim',2,15),(81836,553696,'Ellen',0,16),(82693,51329,'Pat Solitano, Jr.',2,0),(82693,72129,'Tiffany Maxwell',1,1),(82693,380,'Pat Solitano, Sr.',2,2),(82693,67837,'Dolores Solitano',1,3),(82693,66,'Danny McDaniels',2,4),(82693,6217,'Dr. Cliff Patel',2,5),(82693,40543,'Ronnie',2,6),(82693,74242,'Jake Solitano',2,7),(82693,12041,'Veronica',1,8),(82693,6066,'Officer Keogh',2,9),(82693,87287,'Ricky D\'Angelo\'s Mother',1,10),(82693,108920,'Nikki',0,11),(82693,58535,'Randy',2,12),(82693,239111,'Ricky D\'Angelo',0,13),(82693,1271780,'Tiffany\'s Mother',0,14),(82693,1128450,'Tiffany\'s Father',2,15),(82693,1271781,'Jordie',0,16),(82693,1271782,'Regina',0,17),(82693,1271783,'Dr. Timbers',0,18),(82693,1271784,'Nancy',0,19),(82693,1271785,'Jeffrey',0,20),(82693,1826604,'Jake\'s Fiancu00e9e',0,21),(82693,1569483,'Doug Culpepper',0,22),(82693,1826618,'Dr. Patel\'s Wife',0,23),(82693,125791,'Lawyer at Bar',0,24),(82693,1826620,'Indian Invasion #1',0,25),(82693,1256515,'Indian Invasion #2',0,26),(82693,1343242,'Tanya',1,27),(82693,1673016,'Fighting Eagle Fan',2,28),(82693,1826609,'Dancer Tretiak',1,29),(82693,1349767,'Dinner Guest (uncredited)',0,30),(82693,1564329,'Dinner Guest (uncredited)',0,31),(82693,1530879,'Dinner Cop (uncredited)',0,32),(82693,1540275,'Dinner Patron (uncredited)',0,33),(82693,1385062,'Dance Competition Spectator / Bikini Tailgater (uncredited)',0,34),(82693,1826623,'Dance Competition Spectator (uncredited)',0,35),(82693,1540266,'Dance Competition Spectator (uncredited)',0,36),(82693,1569578,'Neighbor (uncredited)',2,37),(82693,1344726,'Neighbor (uncredited)',0,38),(82693,198845,'Football Play By Play Announcer (voice, uncredited)',0,39),(82693,1195613,'Football Play By Play Announcer (voice, uncredited)',0,40),(82693,1478288,'MILF (uncredited)',0,41),(82693,1564318,'Singing Eagles Fan (uncredited)',2,42),(82693,1385070,'Movie Theater Usher (uncredited)',0,43),(82693,1569580,'Tailgater (uncredited)',0,44),(82693,1569581,'Tailgater (uncredited)',0,45),(82693,1408875,'Father (uncredited)',2,46),(82693,569071,'Family Member (uncredited)',0,47),(82693,1569582,'Moviegoer (uncredited)',0,48),(82693,1106629,'Tailgate Fan (uncredited)',0,49),(82693,1334375,'Bikini Tailgater (uncredited)',0,50),(82693,1569736,'Sexy Girl at Halloween Party (uncredited)',0,51),(82693,1569740,'Recital Guest (uncredited)',0,52),(82693,1569743,'Giants Fan (uncredited)',0,53),(82693,1569744,'Giants Suck - Fan (uncredited)',0,54),(82693,1540271,'Eagles Fan (uncredited)',1,55),(82693,1540280,'Bartender (uncredited)',0,56),(82693,1344725,'Zombie Guy (uncredited)',0,57),(82693,1269034,'Tomboy Girl (uncredited)',0,58),(82693,127070,'Orderly (uncredited)',0,59),(82693,1343492,'Eagles Tailgater (uncredited)',0,60),(82693,1574936,'Tailgater (uncredited)',0,61),(44944,55314,'Crystal / Brown',1,0),(44944,54421,'Jo / Red',1,1),(44944,18284,'Juanita / Green',1,2),(44944,9030,'Tangie / Orange',1,3),(44944,15563,'Yasmine / Yellow',1,4),(44944,11703,'Kelly / Blue',1,5),(44944,62561,'Nyla / Purple',1,6),(44944,119598,'Gilda',1,7),(44944,2395,'Alice / White',1,8),(44944,60560,'Rose',1,9),(44944,8177,'Beau willie',2,10),(44944,41556,'Carl',2,11),(44944,10090,'Frank',2,12),(44944,57686,'Donald',2,13),(44944,79538,'Bill',2,14),(44944,1705792,'Dr. Davis',2,15),(49517,5049,'Control',2,0),(49517,64,'George Smiley',2,1),(49517,37759,'Connie Sachs',1,2),(49517,71580,'Peter Guillam',2,3),(49517,5472,'Bill Haydon',2,4),(49517,2983,'Jim Prideaux',2,5),(49517,13014,'Percy Alleline',2,6),(49517,1115,'Jerry Westerby',2,7),(49517,8785,'Roy Bland',2,8),(49517,16358,'Oliver Lacon',0,9),(49517,93236,'Toby Esterhase',2,10),(49517,2524,'Ricki Tarr',2,11),(49517,94064,'Irina',0,12),(49517,186275,'Bryant',0,13),(49517,42069,'Magyar',2,14),(49517,235837,'Belinda',1,15),(49517,224194,'Sal',1,16),(49517,23440,'Polyakov',0,17),(49517,933031,'Woman in Window',0,18),(49517,82364,'KGB Agent',0,19),(49517,89645,'Hungarian Waiter',0,20),(49517,181414,'Fawn',0,21),(49517,81024,'Mendel',2,22),(49517,18993,'Minister',2,23),(49517,109861,'Kaspart',2,24),(49517,26857,'Tufty Thesinger',0,25),(49517,28478,'Mackelvore',0,26),(49517,86480,'Guillam\'s Boyfriend',2,27),(49517,192894,'Mrs McCraig',1,28),(49517,97958,'Karla (Voice)',2,29),(49517,937216,'Ann Smiley',0,30),(44857,1951,'Molly McKay',1,0),(44857,6383,'Buck McKay',2,1),(44857,50877,'Susan Brookes',1,2),(44857,11155,'Sam',2,3),(44857,87956,'Mark Cottrell',2,4),(44857,31167,'Beverly Trehare',1,5),(44857,41739,'Dr. Simmons',2,6),(44857,55422,'Jennifer Thomas',0,7),(44857,17355,'Domingo',2,8),(44857,140,'Brenda',1,9),(44857,82719,'Gary McKay',2,10),(44857,41819,'Julie McKay',1,11),(44857,13028,'Dr. Prentice',2,12),(44857,42547,'Jack the Bartender',0,13),(44857,1475,'Maxine',1,14),(44857,42687,'Lauris',1,15),(50780,1038,'Meredith Black',1,0),(50780,2461,'Walter Black',2,1),(50780,72129,'Norah',1,2),(50780,21028,'Porter Black',2,3),(50780,205854,'Jared',2,4),(50780,211429,'Henry Black',0,5),(50780,944116,'Norah\'s Mom',1,6),(138843,17178,'Ed Warren',2,0),(138843,21657,'Lorraine Warren',1,1),(138843,3127,'Carolyn Perron',1,2),(138843,17402,'Roger Perron',2,3),(138843,553504,'Andrea Perron',1,4),(138843,63663,'Nancy Perron',1,5),(138843,125025,'Christine Perron',1,6),(138843,851784,'Cindy Perron',1,7),(138843,1186839,'April Perron',0,8),(138843,979807,'Drew Thomas',2,9),(138843,222906,'Brad Hamilton',2,10),(138843,1186840,'Judy Warren',1,11),(138843,196899,'Georgiana Moran',1,12),(138843,1186841,'Debbie',1,13),(138843,1186842,'Camilla',0,14),(138843,1631174,'Rick',2,15),(138843,73417,'Bathsheba Sherman',2,16),(138843,1849975,'Leah',0,17),(138843,1849976,'David',0,18),(138843,1697718,'Maurice',2,19),(138843,1026921,'Mrs. Walker',0,20),(138843,80619,'Father Gordon',2,21),(138843,1511263,'Woman in Audience',0,22),(226486,55536,'Tammy',1,0),(226486,4038,'Pearl',1,1),(226486,8534,'Lenore',1,2),(226486,19,'Deb',1,3),(226486,707,'Don',2,4),(226486,21163,'Earl',2,5),(226486,25540,'Susan',1,6),(226486,45407,'Bobby',2,7),(226486,3051,'Missi',1,8),(226486,105648,'Greg',2,9),(226486,170820,'Keith',2,10),(226486,461542,'Becky',0,11),(226486,1169063,'Karen',1,12),(226486,191156,'Larry',0,13),(226486,141433,'Jet Ski Rental Guy',2,14),(226486,1392593,'Kathleen',0,16),(226486,81197,'Jesse',2,17),(226486,1221605,'Cashier',0,18),(226486,1392624,'Possum Creek Bluegrass Band',0,19),(226486,1392626,'Possum Creek Bluegrass Band',0,20),(226486,1392630,'Possum Creek Bluegrass Band',0,21),(226486,1392631,'Possum Creek Bluegrass Band',0,22),(226486,1392632,'Possum Creek Bluegrass Band',0,23),(226486,1392634,'DJ',0,24),(226486,1392647,'Javier',0,25),(226486,1392666,'Prison Guard',0,26),(226486,1392671,'Man at Blue Post Bar-B-Que',0,27),(226486,1019097,'Man at Blue Post Bar-B-Que',0,28),(226486,80770,'Old Man with Walker',2,29),(226486,156106,'Officer Mannis',0,30),(226486,1181570,'Officer Curtis',0,31),(226486,174158,'Officer Carty',0,32),(226486,174193,'La Grange Bail Cop',0,33),(226486,118367,'Cop at Lakehouse',0,34),(226486,1392758,'News Anchor',0,35),(226486,1392764,'News Reporter',0,36),(226486,1392779,'Charlotte',0,37),(226486,190423,'Jerry Miller',0,38),(226486,1392789,'Two Old Ladies Leaving a Bar',0,39),(226486,1392790,'Two Old Ladies Leaving a Bar',0,40),(65057,1461,'Matt King',2,0),(65057,94185,'Alexandra King',1,1),(65057,933002,'Scottie King',1,2),(65057,931945,'Sid',2,3),(65057,5694,'Scott Thorson',2,4),(65057,20750,'Julie Speer',1,5),(65057,2222,'Cousin Hugh',2,6),(65057,26457,'Brian',2,7),(65057,80595,'Mark Mitchell',2,8),(65057,63232,'Kai Mitchell',1,9),(65057,111451,'Cousin Ralph',2,10),(65057,6678,'Cousin Milo',2,11),(65057,1356143,'Elizabeth King',0,12),(65057,1394479,'School Counselor',0,13),(65057,1394480,'Scottie\'s Teacher',0,14),(65057,1394481,'Barb Higgins',0,15),(65057,1394482,'Lani Higgins',0,16),(35690,76594,'Ronnie Miller',1,0),(35690,17141,'Steve Miller',2,1),(35690,41308,'Jonah Miller',2,2),(35690,96066,'Will Blakelee',2,3),(35690,114599,'Scott',0,4),(35690,11164,'Kim',1,5),(35690,114600,'Marcus',2,6),(35690,114601,'Blaze',1,7),(35690,19740,'Susan Blakelee',1,8),(35690,114602,'Ashley',1,9),(35690,12538,'Tom Blakelee',2,10),(35690,114603,'Teddy',0,11),(35690,1329572,'Volleyball Guy',2,12),(35690,101847,'Pastor Harris',2,13),(76203,5294,'Solomon Northup',2,0),(76203,17288,'Edwin Epps',2,1),(76203,1267329,'Patsey',1,2),(76203,71580,'William Ford',2,3),(76203,17142,'John Tibeats',2,4),(76203,34490,'Mary Epps',1,5),(76203,467633,'Eliza',1,6),(76203,59233,'Brown',2,7),(76203,13242,'Theophilus Freeman',2,8),(76203,287,'Samuel Bass',2,9),(76203,39390,'Robert',2,10),(76203,1981,'Mistress Shaw',1,11),(76203,172096,'Clemens',2,12),(76203,1213573,'Hamilton',0,13),(76203,121718,'Radburn',2,14),(76203,218667,'Anne Northup',0,15),(76203,180422,'Judge Turner',2,16),(76203,1055235,'Margaret Northup',1,17),(76203,39520,'Armsby',0,18),(76203,1055236,'Uncle Abram',0,19),(76203,1344342,'Overseer',0,20),(76203,1031785,'Anna',1,21),(76203,1299189,'Alonzo Northup',0,22),(76203,120253,'Mr. Moon',2,23),(76203,1173099,'Burch',2,24),(76203,1344343,'Randall',0,25),(76203,1299192,'John',0,26),(76203,1344344,'Emily',1,27),(76203,95051,'Biddee',2,28),(76203,6908,'Captain',2,29),(76203,1344345,'Mulatto Woman',1,30),(76203,60881,'Sailor',2,31),(76203,16459,'Jonus Ray',2,32),(76203,16460,'Jasper',2,33),(76203,109765,'Fitzgerald',2,34),(76203,1002306,'Parker',2,35),(76203,1224609,'Cape',0,36),(76203,156955,'Buyer',2,37),(76203,1344349,'Mistress Ford',0,38),(76203,1344350,'Rachel',0,39),(76203,129868,'Chapin',2,40),(76203,1344352,'Treach',2,41),(76203,29933,'Phebe',1,42),(76203,1273239,'Sam',0,43),(76203,1344357,'Edward',0,44),(76203,1344358,'Bob',0,45),(76203,1295668,'Patroller',2,46),(76203,1344359,'Victim 1',0,47),(76203,1344361,'Victim 2',0,48),(76203,1344360,'Master Shaw',0,49),(76203,1344362,'Zachary',0,50),(76203,1344363,'Slave Spiritual Singer 1',0,51),(76203,1344364,'Slave Spiritual Singer 2',0,52),(76203,1198191,'Sheriff',0,53),(76203,1344365,'Margaret Northup (adult)',0,54),(76203,1344366,'Margaret\'s Husband',0,55),(76203,1438284,'Cooke (uncredited)',0,57),(76203,1438286,'Steamboat Crew 1st Mate (uncredited)',0,58),(76203,148999,'Lynchman (uncredited)',0,59),(76203,1438287,'Upper Class Pedestrian (uncredited)',0,60),(76203,1438288,'Lower Class Pedestrian (uncredited)',0,61),(76203,1426635,'Steamboat Crew (uncredited)',0,62),(76203,1292482,'Restaurant Patron (uncredited)',0,63),(76203,1438289,'Mr. Bartholomew (uncredited)',0,64),(76203,1438290,'Child in the Park (uncredited)',0,65),(76203,1438302,'Saratoga Park Pedestrian (uncredited)',0,66),(76203,1037370,'Tea Seller (uncredited)',0,67),(76203,1438303,'Lower Class Pedestrian (uncredited)',0,68),(76203,1438304,'Street Merchant (uncredited)',0,69),(76203,1438305,'Lumber Mill Customer (uncredited)',2,70),(76203,1140085,'Washington D.C. Pedestrian (uncredited)',1,71),(76203,1011212,'Hotel Dining Patron (uncredited)',2,72),(76203,1438307,'Slave Guard (uncredited)',0,73),(76203,1438308,'Slave (uncredited)',0,74),(76203,52885,'Roadman (uncredited)',2,75),(76203,1438309,'Edwin Epps\'s Slave (uncredited)',0,76),(76203,1438310,'Safty (uncredited)',0,77),(76203,1070870,'Road Man (uncredited)',0,78),(76203,1438311,'Slave Girl (uncredited)',0,79),(76203,31528,'Winslow (uncredited)',0,80),(76203,1066609,'Slave Boy (uncredited)',0,81),(76203,1438314,'Ballroom Dancer (uncredited)',0,82),(76203,1438315,'Slave Boy (uncredited)',0,83),(76203,1438316,'Slave Buyer (uncredited)',0,84),(76203,1438676,'Upper Class Pedestrian (uncredited)',0,85),(76203,1438677,'Hornboy (uncredited)',0,86),(76203,1438678,'Cigar Smoker (uncredited)',0,87),(76203,1438679,'Boy Playing in Park (uncredited)',0,88),(76203,1438680,'Saratoga Park Pedestrians (uncredited)',0,89),(76203,1438681,'Ezra (uncredited)',0,90),(76203,1438682,'Abolitionist Landowner (uncredited)',0,91),(76203,1438683,'Ford Daughter (uncredited)',0,92),(76203,1438684,'Ford Lumber Buyer (uncredited)',0,93),(35688,80602,'Terry',2,0),(35688,54421,'Patricia',1,1),(35688,4721,'Sheila',1,2),(35688,15566,'Dianne',1,3),(35688,12977,'Gavin',2,4),(35688,55755,'Mike',2,5),(35688,74610,'Angela',1,6),(35688,64856,'Marcus',2,7),(35688,20959,'Porter',2,8),(35688,18249,'Ola',1,9),(296096,1223786,'Louisa Lou Clark',1,0),(296096,237455,'William Will Traynor',2,1),(296096,47627,'Camilla Traynor',1,2),(296096,4391,'Stephen Traynor',2,3),(296096,74056,'Bernard Clark',2,4),(296096,1080542,'Katrina Treena Clark',1,5),(296096,96841,'Patrick',2,6),(296096,122535,'Josie Clark',1,7),(296096,1231106,'Nathan',0,8),(296096,556356,'Alicia Dewar',1,9),(296096,1173230,'Rupert Freshwell',2,10),(296096,34901,'Mary Rawlinson',1,11),(296096,1504795,'Karen',1,12),(296096,1632584,'Grandad',0,13),(296096,193357,'Cafu00e9 Customer',0,14),(296096,1598482,'Frank',0,15),(296096,1457303,'Daphne',0,16),(296096,1680839,'Thomas Clark',0,17),(296096,1362117,'Syed',2,18),(296096,1409393,'Freddie Foster',0,19),(296096,1543364,'Sharon the Waitress',1,20),(296096,1333739,'Michael Lawler',0,21),(296096,1521345,'Hotel Receptionist',0,22),(296096,1610710,'Mauritian Waiter',0,23),(296096,1554270,'Anna',0,24),(296096,1681009,'French Waiter',0,25),(103370,80602,'Madea / Joe / Brian',2,0),(103370,26510,'George Needleman',2,1),(103370,9205,'Kate Needleman',1,2),(103370,45863,'Barbara',1,3),(103370,1034513,'Howie',2,4),(103370,74036,'Walter',2,5),(103370,114372,'Cindy',1,6),(103370,22384,'Pastor Nelson',2,7),(103370,68751,'Hattie',1,8),(103370,943955,'Jake',2,9),(103370,6952,'Charlie Sheen (uncredited)',2,10),(376659,18973,'Amy Mitchell',1,0),(376659,40462,'Kiki',1,1),(376659,17696,'Carla Dunkler',1,2),(376659,18979,'Gwendolyn James',1,3),(376659,9575,'Stacy',1,4),(376659,174514,'Vicky',1,5),(376659,19487,'Jessie Harkness',2,6),(376659,1423519,'Jane Mitchell',1,7),(376659,1259762,'Dylan Mitchell',2,8),(376659,83231,'Mike Mitchell',2,9),(376659,54729,'Dale Kipler',2,10),(376659,17859,'Principal Daryl Burr',2,11),(376659,27102,'Dr. Elizabeth Karl',0,12),(376659,1218610,'Martha Stewart',1,13),(376659,1576058,'Cathy',1,14),(376659,63110,'Braden',2,15),(376659,1189072,'Sharon',1,16),(376659,1306314,'Tessa',0,17),(376659,1242199,'Kent',0,18),(376659,1704774,'Jaxon',0,19),(376659,1704775,'Coach Craig',0,20),(376659,1347310,'Janet',1,21),(376659,1393517,'Audrey',1,22),(376659,230995,'Vera',1,23),(376659,99624,'Heather',0,24),(376659,963213,'Gina',1,25),(376659,1181296,'Steve',0,26),(376659,1644611,'Jeff',0,27),(376659,1333845,'Alina',1,28),(376659,1704776,'Christina',0,29),(376659,1704777,'Theo',0,30),(376659,1704778,'Diane',0,31),(376659,166976,'Conservative Mom',1,32),(273895,35013,'Martin Luther King',2,0),(273895,207,'Lyndon Baines Johnson',2,1),(273895,37158,'Coretta Scott King',1,2),(273895,459980,'Andrew Young',2,3),(273895,59844,'James Orange',2,4),(273895,4941,'John Doar',2,5),(273895,1771,'Lee White',2,6),(273895,91671,'Ralph Abernathy',2,7),(273895,13309,'Annie Lee Cooper',1,8),(273895,3129,'Gov. George Wallace',2,9),(273895,4238,'James Bevel',0,10),(273895,9777,'Fred Gray',2,11),(273895,31839,'Bayard Rustin',2,12),(273895,62561,'Diane Nash',1,13),(273895,81726,'Amelia Boynton',1,14),(273895,21084,'Chief Wilson Baker',2,15),(273895,41020,'Frederick Reese',2,16),(273895,19152,'J. Edgar Hoover',2,17),(273895,1411596,'Mahalia Jackson',0,18),(273895,9634,'Sullivan Jackson',2,19),(273895,63231,'Richie Jean Jackson',0,20),(273895,8694,'Rev. C.T. Vivian',0,21),(273895,17859,'Rev. Hosea Williams',2,22),(273895,1388314,'John Lewis',0,23),(273895,1200864,'Jimmie Lee Jackson',2,24),(273895,1411598,'Viola Lee Jackson',0,25),(273895,1407308,'James Forman',2,26),(273895,1046664,'Sheriff Jim Clark',0,27),(273895,1411599,'Malcolm X',2,28),(273895,239271,'James Reeb',2,29),(273895,1411600,'Viola Liuzzo',0,30),(273895,8349,'Frank Minis Johnson',2,31),(273895,17401,'Col. Al Lingo',2,32),(273895,1169982,'Aide',0,33),(273895,1367406,'President\'s Secretary',1,34),(273895,1615196,'Elder Marcher',2,35),(273895,1024312,'White Marcher',2,36),(273895,16506,'Cager Lee',2,37),(272878,19159,'Ray',2,0),(272878,1279814,'Justin',2,1),(272878,16858,'Pamela',1,2),(272878,1223726,'Kyle Wincott',2,3),(272878,1527312,'Carmen',0,4),(272878,967781,'Tyler Harne',2,5),(272878,19487,'Sergeant Reyes',2,6),(272878,73127,'Emilio',2,7),(272878,1370998,'Afghan Interpreter',0,8),(272878,61568,'Cartel leader',0,9),(272878,1652379,'Alpha Team Leader',0,10),(272878,58733,'Police Officer',2,11),(272878,1380492,'Captain',0,12),(272878,1631177,'Afghan Village Man',2,13),(272878,1205389,'Bike Kid',0,14),(272878,1683802,'Max',0,15),(272878,1527313,'Chuy',0,16),(272878,1367013,'Stack',0,17),(272878,1370997,'Mourner',1,18),(272878,1370999,'Parade Colonel',0,19),(272878,1371000,'S-2 Major',0,20),(272878,1371002,'Neigbor',0,21),(272878,1683722,'Animal Control Handler #1 / Marine',0,22),(272878,1683739,'Blue-haired Lady',0,23),(272878,1650191,'Receptionist',0,24),(272878,1517847,'Latino Kid',0,25),(272878,1683755,'Bike Teen #1',0,26),(272878,1683758,'Bike Teen #2',0,27),(272878,1271446,'Afghan Village Man',0,28),(272878,1683786,'Cartel Guy',0,29),(272878,1683787,'Bike Kid',2,30),(272878,1683792,'Bike Kid',0,31),(272878,1683793,'Bike Park Teen',0,32),(272878,1683796,'Highway Patrol Officer',0,33),(314365,103,'Michael Rezendes',2,0),(314365,2232,'Walter Robby Robinson',2,1),(314365,53714,'Sacha Pfeiffer',1,2),(314365,23626,'Marty Baron',2,3),(314365,21134,'Ben Bradlee Jr.',2,4),(314365,2283,'Mitchell Garabedian',2,5),(314365,175829,'Matt Carroll',2,6),(314365,1616703,'Steve Kurkjian',0,7),(314365,8289,'Eric Macleish',2,8),(314365,69423,'Eileen McNamara',1,9),(314365,28633,'Richard Sipe (voice, uncredited)',2,10),(314365,925,'Peter Conley',2,11),(314365,41247,'Cardinal Law',2,12),(314365,58544,'Phil Saviano',2,13),(314365,1325715,'Joe Crowley',2,14),(314365,161357,'Judge Sweeney',0,15),(314365,44236,'Principal Bill Kemeza',0,16),(314365,1217270,'Barbara',1,17),(314365,60091,'Peter Canellos',2,18),(314365,1616707,'Helen Donovan',0,19),(314365,2977,'Jim Sullivan',2,20),(314365,1072798,'Court Clerk Mark',0,21),(314365,113931,'Hansi Kalkofen',2,22),(314365,1616708,'Paul Burke',0,23),(314365,121939,'Richard Gilman',2,24),(314365,1616709,'Young Cop',0,25),(314365,1616710,'Cop in Coffee Shop',2,26),(314365,188632,'Sports Editor',0,27),(314365,1131499,'Bishop',0,28),(314365,944107,'Linda',1,29),(314365,1480981,'Garabedian\'s Receptionist',0,30),(314365,566944,'Judge Volterra',0,31),(314365,141448,'Jack Dunn',0,32),(314365,44101,'Jon Albano',2,33),(314365,1616711,'Receptionist at Judge\'s Chambers',0,34),(314365,1357657,'Guest List Woman',0,35),(314365,141451,'Maryetta Dussourd',0,36),(314365,1616712,'Female Editor',0,37),(314365,115664,'Intern',1,38),(314365,1616713,'Sacha\'s Grandmother',0,39),(314365,171726,'Middle Age Priest at St. Peter\'s',0,40),(314365,1373307,'Older Cop',0,41),(314365,1616714,'Patrick McSorley',0,42),(314365,1616715,'Waiter at Gala',0,43),(314365,52512,'Wilson Rogers',2,44),(314365,1517741,'Intern Wanda',1,45),(314365,101252,'Young Reporter',0,46),(314365,1195938,'Jim\'s Wife',1,47),(314365,1045822,'Stewart',2,48),(314365,119754,'Herald Reporter Quimby',2,49),(314365,1616716,'Jane Paquin',0,50),(314365,1616717,'Kevin',0,51),(314365,1616718,'Lisa Tuite',0,52),(314365,1616052,'Ronald Paquin',2,53),(314365,1616719,'Clerk O\'Brian',0,54),(314365,80021,'Sheila',1,55),(314365,1616720,'Weeping Man',0,56),(314365,44103,'Rectory Priest',2,57),(314365,1616724,'Disgruntled Man',0,58),(314365,1616726,'Library Security',0,59),(314365,1616727,'Woman Interviewee',0,60),(314365,1616728,'Angry Man',0,61),(314365,1616729,'Older Southie Woman',0,62),(314365,1368840,'Receptionist',1,63),(314365,1616730,'Receptionist',0,64),(314365,1616731,'Girl at Garabedian\'s',0,65),(314365,1616732,'Boy at Garabedian\'s',0,66),(314365,1616733,'Mother at Garabedian\'s',0,67),(314365,1616734,'Bad Priest',0,68),(314365,141932,'Boston Globe Security Guard',2,69),(314365,1506496,'Angry Man\'s Sister',0,70),(314365,1616735,'Red Sox Announcer',0,71),(314365,928638,'Pedestrian (uncredited)',0,72),(314365,1865738,'Middle Aged Man',0,73),(40264,108919,'Jacob White',2,0),(40264,34202,'Edward',2,1),(40264,129024,'Becca Crane',1,2),(40264,83586,'Daro',2,3),(40264,129021,'Salvatore',2,4),(40264,129022,'Iris Sullen',1,5),(40264,20373,'Rachel',1,6),(40264,26997,'Derric',0,7),(40264,129023,'Nicholas',0,8),(40264,109785,'Buffy the Vampire Slayer',0,9),(40264,212768,'Jeremiah',2,10),(40264,97600,'Fisherman Scully',2,11),(40264,21290,'Principal Smith',0,12),(40264,144438,'Dr. Carlton',2,13),(40264,58957,'Eden',1,14),(40264,987572,'Alex',2,15),(40264,1231005,'Jennifer',0,16),(40264,5727,'Frank Crane',2,17),(40264,147404,'Jack',2,18),(40264,1513785,'Rick',2,19),(40264,144842,'Hot Girl',1,20),(239678,23532,'Judd Altman',2,0),(239678,56323,'Wendy Altman',1,1),(239678,1023139,'Phillip Altman',2,2),(239678,9827,'Penny Moore',1,3),(239678,74541,'Paul Altman',2,4),(239678,17696,'Annie Altman',1,5),(239678,86310,'Tracy Sullivan',1,6),(239678,18082,'Horry Callen',2,7),(239678,123725,'Quinn Altman',1,8),(239678,51298,'Wade Beaufort',2,9),(239678,6352,'Hillary Altman',1,10),(239678,222121,'Rabbi Charles Grodner',2,11),(239678,964421,'Barry Weissman',2,12),(239678,10386,'Linda Callen',1,13),(239678,1422396,'Cole',0,14),(239678,1022885,'Younger Mort',2,15),(239678,1422441,'Woman #1',0,16),(239678,1293730,'Guard #1',0,17),(239678,1422450,'Frat Boy #1',0,18),(239678,1422452,'Shelby',0,19),(239678,1422457,'Woman #2',1,20),(239678,5302,'Uncle Joe',0,21),(239678,1422460,'Lois',0,22),(239678,1237381,'Renee',0,23),(239678,1422474,'Chelsea',0,24),(239678,1224374,'Dr. Rausch',0,25),(239678,1422485,'Calvin',0,26),(239678,1422488,'Mrs. Applebaum',0,27),(239678,1422492,'Little League Dad',0,28),(239678,1422494,'Cantor',0,29),(239678,1422497,'Intern',1,30),(239678,1422515,'Engineer',0,31),(239678,1422517,'Young Judd',2,32),(76617,109513,'Heather Miller',1,0),(76617,1054724,'Leatherface',0,1),(76617,27737,'Drayton Sawyer',0,2),(76617,27798,'Verna Carson',1,3),(76617,38666,'Nikki',0,4),(76617,224231,'Ryan',0,5),(76617,928572,'Deputy Carl Hartman',2,6),(76617,18262,'Farnsworth',2,7),(76617,65772,'Darryl',2,8),(76617,8175,'Sheriff Hooper',2,9),(76617,4134,'Kenny',2,10),(76617,969635,'Arlene Miller',1,11),(76617,61260,'Mayor Burt Hartman',2,12),(76617,27804,'Leatherface (Archive Footage)',2,13),(76617,104892,'Grandfather',2,14),(76617,138608,'Loretta Sawyer',0,15),(76617,1054725,'Pig Man',0,16),(76617,1054726,'Young Leatherface',0,17),(76617,1188456,'Officer Marvin',0,18),(76617,1165616,'Sally Hardesty (uncredited)',1,19),(335778,10993,'Lucius',2,1),(335778,7248,'Yeshua',2,2),(335778,12763,'Clavius',2,3),(335778,22109,'Pontius Pilate',2,4),(335778,142290,'Antonius',0,6),(335778,1322236,'John',2,7),(335778,24607,'James',0,8),(335778,25095,'Peter',2,9),(335778,46856,'Mary Magdalene',1,10),(335778,5310,'Joseph of Arimathea',0,11),(335778,77823,'Cleopas',2,12),(335778,58501,'Caiaphas',2,13),(335778,1058078,'Guard #2',0,14),(335778,1454286,'Pilates\' Aid',0,15),(335778,15598,'Joses',0,16),(335778,440879,'Thomas / Dydimus',2,17),(335778,1400178,'Thaddeus',0,18),(335778,31402,'Matthew',0,19),(335778,1316401,'Andrew',0,20),(335778,1074586,'Pilate\'s Orderly',0,21),(335778,1180136,'Centurion',2,22),(335778,1451816,'Inn Keeper',0,23),(335778,997632,'Zealot Leader',0,24),(335778,1634060,'Soldier at Tomb / Niche Soldier',0,25),(335778,1180134,'Thief #1',0,26),(335778,100258,'Leper #1',0,27),(335778,1206014,'Cemetery Woman',0,28),(335778,1528816,'Miriam',0,29),(335778,1582159,'Suspect #1',0,30),(335778,1105251,'Suspect #2',0,31),(55465,41686,'Neil',2,0),(55465,68842,'Harold Lee',2,1),(55465,13550,'Sergie Katsov',2,2),(55465,81164,'Vanessa Fanning',1,3),(55465,53493,'Kumar Patel',2,4),(55465,10872,'Mall Santa',2,5),(55465,935275,'Caren',0,6),(55465,935276,'Kid in Line',0,7),(55465,935277,'Mom in Line',1,8),(55465,224197,'T.V. Director',2,9),(55465,11160,'Mr. Perez',2,10),(55465,21124,'Maria',1,11),(55465,539,'Todd',2,12),(55465,224530,'Wafflebot (voice)',2,13),(55465,1238986,'Adrian',0,14),(55465,198149,'Kenneth Park',2,15),(55465,1520029,'Pepe Perez',0,16),(55465,52480,'Rosenberg',2,17),(55465,1053666,'Becca the P.A.',1,18),(55465,1392152,'Reporter',2,19),(55465,204632,'David Burtka',2,20),(55465,1498990,'Heaven\'s Bartender',2,21),(55465,543505,'Jesus',2,22),(55465,18262,'Santa Claus',2,23),(48289,15735,'Rachel Singer',1,0),(48289,8785,'David Peretz',2,1),(48289,207,'Stefan Gold',2,2),(48289,83002,'Young Rachel Singer',1,3),(48289,65731,'Young David Peretz',2,4),(48289,20982,'Young Stefan Gold',2,5),(48289,2244,'Dieter Vogel',2,6),(48289,140196,'Sarah Gold',0,7),(48289,105235,'Politicians Wife',1,8),(38303,40462,'Marni',1,0),(38303,10205,'Aunt Ramona',1,1),(38303,71727,'Grandma Bunny',1,2),(38303,52775,'Georgia King',1,3),(38303,51992,'Joanna',1,4),(38303,8944,'Gail',1,5),(38303,30882,'Taylor',1,6),(38303,9599,'Helen',1,7),(38303,222129,'Will',2,8),(38303,8536,'Mark',2,9),(38303,1215836,'Tim',0,10),(38303,98276,'Charlie',2,11),(38303,112574,'Richie Phillips',2,12),(38303,564629,'Sunday',1,13),(38303,16506,'Chaplain',2,14),(107985,11108,'Gary King',2,0),(107985,11109,'Andrew Knightley',2,1),(107985,7060,'Oliver Chamberlain',2,2),(107985,1665,'Peter Page',2,3),(107985,14887,'Steven Prince',2,4),(107985,10882,'Sam Chamberlain',1,5),(107985,517,'Guy Shepherd',2,6),(107985,11180,'Basil',2,7),(107985,969561,'Young Gary',2,8),(107985,1200850,'Young Andy',0,9),(107985,1200851,'Young Steven',0,10),(107985,1200852,'Young Peter',0,11),(107985,206155,'Young Oliver',0,12),(107985,1200853,'Becky Salt',0,13),(107985,1200854,'Erika Leekes',0,14),(107985,1200855,'Tracy Benson',1,15),(107985,1200856,'Young Shane',0,16),(107985,1200857,'Young Sam',0,17),(107985,1200858,'Teenage Twins',0,18),(107985,1200859,'Teenage Twins',0,19),(107985,17078,'Reverend Green',2,20),(107985,1278121,'Pale Young Man',0,21),(107985,28477,'Group Leader',2,22),(107985,1278122,'Fitness Instructor (26)',1,23),(107985,1278123,'Peter\'s Wife',0,24),(107985,1278124,'Peter\'s Dad',0,25),(107985,26863,'Head Builder',2,26),(107985,182327,'Young Lady',1,27),(107985,28847,'Young Man',2,28),(107985,1278125,'Felicity',0,29),(107985,219367,'Motorcycle Policeman',0,30),(107985,137471,'B & B Landlady',1,31),(107985,237162,'Greg',0,32),(107985,1278127,'Seb',0,33),(107985,1278128,'Luke',0,34),(107985,1278129,'Tyler',0,35),(107985,1278130,'Sam',0,36),(107985,951891,'Publican 1',0,37),(107985,206847,'Publican 2',2,38),(107985,206726,'Publican 3',2,39),(107985,17123,'Shane Hawkins',2,40),(107985,1278131,'Publican 5',0,41),(107985,1278132,'Publican 6',0,42),(107985,34551,'Collaborator',2,43),(107985,110076,'Collaborator',2,44),(107985,47712,'Publican 7',0,45),(107985,1278134,'Kelly',0,46),(107985,1278135,'Stacey',0,47),(107985,1278136,'Adrian Keane',0,48),(107985,1278137,'Upstairs Beehive Man',0,49),(107985,117550,'Upstairs Beehive Lady',0,50),(107985,2440,'The Network (voice)',2,51),(107985,211413,'Big Ugly Bastard',0,52),(107985,40478,'Big Ugly Bastard',0,53),(107985,91662,'Publican 13',0,54),(59860,77948,'Grace / Cordelia Winthrop Scott',1,0),(59860,55775,'Emma',1,1),(59860,33352,'Owen',2,2),(59860,85825,'Meg',1,3),(59860,1533,'Pam',1,4),(59860,972356,'Riley',2,5),(59860,25440,'Auction Bidder 1',2,6),(59860,6547,'Theo',0,7),(59860,6547,'Theo Marchand',0,8),(59860,16841,'Robert',2,9),(59860,62531,'Madame Valerie',1,10),(59860,47646,'Alicia Winthrop Scott',1,11),(59860,24487,'Bernard Marchand',2,12),(59860,544002,'Prince Domenico',2,13),(59860,25446,'Concierge at Grand Belle',0,14),(59860,125684,'Security at Grand Belle',0,15),(328387,34847,'Vee Delmonico',1,0),(328387,54697,'Ian',2,1),(328387,71815,'Sydney Sloane',1,2),(328387,148096,'Tommy Mancuso',2,3),(328387,3196,'Nancy Delmonico',1,4),(328387,1443708,'Liv Kurosawa',1,5),(328387,1276759,'Ty',2,6),(328387,62646,'Wes',2,7),(328387,1034197,'Azhar',1,8),(328387,1560243,'J.P.',0,9),(328387,1669335,'Chuck',0,10),(328387,1506479,'Robbie',0,11),(328387,176797,'Officer McMillan',0,12),(328387,1680898,'Dirt Beard',0,13),(328387,1719592,'Hype Boi',0,14),(328387,209728,'Bergdorf Salesman',0,15),(328387,1218828,'Bergdorf Sales Lady',0,16),(328387,1552148,'Gatekeeper',0,17),(328387,1378546,'Taxi Cab Driver',0,18),(328387,1719591,'Derrick',0,19),(328387,1750500,'Senior Sales Woman',0,20),(328387,1719590,'Clarence',0,21),(226857,61363,'David Elliot',2,0),(226857,1014932,'Jade Butterfield',1,1),(226857,418,'Harry Elliot',2,2),(226857,55899,'Keith Butterfield',0,3),(226857,1078568,'Jenny',1,4),(226857,20810,'Anne Butterfield',1,5),(226857,21089,'Hugh Butterfield',2,6),(226857,1030512,'Mace',2,7),(226857,963547,'Sabine',0,8),(226857,576223,'Checka',1,9),(226857,130567,'Elena Axelrod',1,10),(226857,1633223,'Harry\'s Friend',0,11),(226857,1893196,'Harry\'s Friend',0,12),(226857,1658615,'Mechanic',2,13),(226857,1893197,'Waiter',0,14),(226857,1196727,'Maserati Driver',0,15),(226857,223023,'Manager',0,16),(226857,116464,'Dawn',0,17),(226857,1183804,'Joe',2,18),(226857,145323,'Chris Butterfield',0,19),(226857,1893198,'High School Girl',0,20),(226857,1893199,'Party Boy',0,21),(226857,1864162,'Gwen',0,22),(226857,1893200,'Dancing Party Girl',0,23),(226857,1893201,'Dancing Party Boy',0,24),(226857,1893202,'Boy in Pool',0,25),(226857,1893203,'Girl in Pool',0,26),(226857,1893204,'Charlie',0,27),(226857,1091423,'Cop',2,28),(226857,142374,'Dr. Nesbitt',1,29),(226857,1893205,'Hospital Receptionist',0,30),(226857,1429569,'Professor',0,31),(226857,232749,'TSA Agent',0,32),(226857,1458000,'Kelly',1,33),(226857,1893206,'Miles',0,34),(226857,1496071,'TSA Agent',0,35),(226857,1893207,'Fire Lieutenant',0,36),(226857,198429,'Pastor',1,37),(47941,54812,'Bruce Thorpe',2,0),(47941,4,'Annie Clark',1,1),(47941,860,'The Duchess',1,2),(47941,20626,'The Duke',2,3),(47941,13875,'The Assassin',2,4),(47941,12659,'Otto Kriegling',2,5),(47941,10134,'Nakomuri',2,6),(47941,83839,'Rollo Sweet',2,7),(47941,45611,'Tiny',2,8),(47941,55257,'Henry Hudson',2,9),(47941,95785,'Lester Hudson',2,10),(47941,106250,'Homer',2,11),(47941,4094,'Louie',2,12),(47941,73583,'Akido',2,13),(47941,127193,'Hotel Rainbow Guest',2,14),(61012,205474,'Heather Mason / Sharon Da Silva / Alessa',1,0),(61012,239019,'Vincent Carter',2,1),(61012,48,'Harry Mason / Christopher Da Silva',2,2),(61012,530,'Claudia Wolf',1,3),(61012,8329,'Rose Da Silva',1,4),(61012,13549,'Dahlia Gillespie',1,5),(61012,56890,'Leonard Wolf',2,6),(61012,42993,'Douglas Cartland',2,7),(61012,1248845,'Suki',0,8),(61012,8352,'Pyramid Head',0,9),(61012,1189293,'Young Alessa Gillespie',1,10),(61012,12978,'Travis Grady',2,11),(61012,83530,'Detective Santini',2,12),(61012,1226806,'Detective Cable',0,13),(61012,1797078,'Mannequin Girl',0,14),(61012,125582,'Teacher',1,15),(61012,20196,'Priest',2,16),(61012,1772357,'Student',0,17),(61012,20178,'Grey Man',2,18),(61012,27586,'Caretaker',2,19),(61012,1384518,'Uniformed Cop',0,20),(61012,1480971,'Vagrant',0,21),(290751,5294,'Ray',2,0),(290751,2227,'Claire',1,1),(290751,1204,'Jess',1,2),(290751,14329,'Bumpy',2,3),(290751,1420663,'Kit',1,4),(290751,50217,'Siefert',2,5),(290751,7220,'Duty Sergeant Jacobs',2,6),(290751,1327013,'Carolyn',0,7),(290751,1280,'Fierro',2,8),(290751,45396,'Ellis',2,9),(290751,1081875,'Marzin / Beckwith',2,10),(63492,16828,'Colin Shea',2,0),(63492,1772,'Ally Darling',1,1),(63492,7060,'Simon Forester',2,2),(63492,73457,'Disgusting Donald',2,3),(63492,71552,'Daisy Darling',1,4),(63492,10401,'Ava Darling',1,5),(63492,42157,'Mr. Darling',2,6),(63492,176653,'Jake Adams',2,7),(63492,74949,'Roger the Boss',2,8),(63492,17306,'Rick',2,9),(63492,210050,'Sheila',1,10),(63492,6858,'Dave Hansen',2,11),(63492,62861,'Gerry Perry',2,12),(63492,551020,'Eddie Vogel',2,13),(63492,539,'Dr. Barrett Ingold',2,14),(63492,53650,'Tom Piper',2,15),(63492,1148130,'Justin',2,16),(63492,29930,'Jacinda',1,17),(63492,26716,'Eileen',1,18),(63492,931644,'Katie',1,19),(63492,110742,'Jamie',1,20),(63492,1237404,'Cara',0,21),(63492,1834056,'Brad',0,22),(63492,1834046,'Gene',0,23),(63492,1834042,'Sheila\'s Mom',0,24),(63492,171297,'Plant Lady',0,25),(63492,17306,'Boyfriend Rick',2,26),(63492,1834044,'14 Year Old Ally',0,27),(63492,1834057,'14 Year Old Jake',0,28),(63492,86626,'Jay',2,29),(63492,59205,'Kevin',0,30),(63492,188049,'Mau00eetre D\' at Italian Restaurant',2,31),(63492,84436,'Man at Library',0,32),(63492,164275,'Officiant at Wedding',1,33),(63492,928638,'Wedding Singer (uncredited)',0,34),(63492,1588593,'High-End Restaurant Patron / Commuter / Dancing Wedding Guest (uncredited)',0,35),(63492,1053275,'Wedding Guest (uncredited)',1,36),(81796,529,'Snow',2,0),(81796,11825,'Emilie Warnock',1,1),(81796,225610,'Hydell',2,2),(81796,1120,'Harry Shaw',2,4),(81796,53,'Scott Langral',2,5),(81796,9831,'Alex',2,6),(81796,51636,'Hock',0,7),(81796,118598,'Hitman N1',0,8),(81796,62972,'Mace',0,9),(81796,271710,'The Negociator',0,10),(81796,1026037,'Duke',0,11),(81796,1026038,'Slick',0,12),(81796,1026039,'LOPD Technician 1',0,13),(41402,113505,'Owen',2,0),(41402,56734,'Abby',1,1),(41402,28633,'The Father',2,2),(41402,13550,'The Policeman',2,3),(41402,83585,'Virginia',1,4),(41402,85419,'Larry',2,5),(41402,112476,'Kenny',0,6),(41402,284628,'Mark',2,7),(41402,966943,'Donald',2,8),(41402,8553,'High School Kid',2,9),(41402,13939,'Mr. Zoric',2,10),(41402,20047,'Owen\'s Mother',1,11),(41402,76543,'Jack',2,12),(41402,1736793,'Nurse',0,13),(41402,1317566,'Lanky Kid',2,14),(41402,64213,'Kenny\'s Brother',0,15),(41402,1753327,'Girl in Pool',0,16),(41402,1753328,'Video Arcade Counterman',0,17),(41402,1753329,'Scottie Tate',0,18),(41402,1397945,'Principal',1,19),(41402,1112415,'Football Player #1',0,20),(41402,1753330,'Football Player #2',0,21),(41402,1529491,'Admitting Nurse',0,22),(41402,1362551,'Day Nurse',0,23),(146198,1893,'Chris Allen',2,0),(146198,5294,'Michael Atwood',2,1),(146198,57755,'Sergeant Detective Jeffrey Allen',2,2),(146198,204,'Irina Vlaslov',1,3),(146198,53650,'Marcus Belmont',2,4),(146198,84497,'Gabe Welch',2,5),(146198,4886,'Russel Welch',2,6),(146198,90633,'Elena Vlaslov',1,7),(146198,20374,'Michelle Allen',1,8),(146198,5365,'Jorge Rodriguez',2,9),(146198,73890,'Trina Ling',1,10),(146198,37149,'Luis Pinto',2,11),(146198,39390,'Sweet Pea',2,12),(146198,1411625,'Joshua Parks',2,13),(146198,1096518,'Leah Green',0,14),(146198,1723573,'Ben Feldman',0,15),(146198,1723574,'Yussel Gotlib',0,16),(146198,1723575,'Felix Atwood',0,17),(146198,168679,'Walter Sims',0,18),(146198,1450834,'Sgt. Pete Nelson',0,19),(146198,1502951,'Fernando Rivera',0,20),(146198,1299674,'Gomez',0,21),(146198,41020,'Smith',2,22),(146198,1723579,'Emilio',0,23),(146198,1257818,'Shanice',0,24),(146198,1723580,'Vassili',0,25),(146198,1812341,'Addict (uncredited)',0,26),(295964,51329,'Adam Jones',2,0),(295964,23459,'Helene',1,1),(295964,1016168,'Sara',1,3),(295964,227454,'Anne Marie',1,5),(295964,139,'Simone',1,6),(295964,7056,'Dr. Rosshilde',1,7),(295964,29528,'Reece',2,8),(295964,3872,'Tony',2,9),(295964,1048644,'Kaitlin',0,10),(295964,78423,'Michel',2,11),(295964,1155724,'David',0,12),(295964,1423809,'Bar-Goer',0,13),(295964,59270,'Max',2,14),(295964,1445249,'Conducteur',0,16),(295964,1290659,'Julia - MP Wife',0,17),(42618,4090,'Charity',1,0),(42618,13728,'Oscar',2,1),(42618,1793,'Vittorio',2,2),(42618,20156,'Big Daddy',2,3),(42618,17639,'Nickie',1,4),(42618,157439,'Helene',1,5),(42618,12827,'Herman',2,6),(42618,16021,'Ursula',1,7),(42618,1219286,'Rich Man\'s Frug lead dancer',0,8),(42618,73943,'Nicholsby',2,9),(42618,99443,'Charlie',2,10),(171274,73421,'Larry Doc Sportello',2,0),(171274,16851,'Lt. Det. Christian F. Bigfoot Bjornsen',2,1),(171274,887,'Coy Harlingen',2,2),(171274,77795,'Shasta Fay Hepworth',1,3),(171274,368,'Deputy D.A. Penny Kimball',1,4),(171274,1121,'Sauncho Smilax',2,5),(171274,20089,'Hope Harlingen',1,6),(171274,52792,'Petunia Leeway',1,7),(171274,519,'Dr. Rudy Blatnoyd, D.D.S.',2,8),(171274,42993,'Crocker Fenway',2,9),(171274,62168,'Japonica Fenway',1,10),(171274,21315,'Michael Z. Wolfmann',2,11),(171274,39390,'Tariq Khalil',2,12),(171274,1412012,'Sortilu00e8ge',1,13),(171274,124377,'Aunt Reet',1,14),(171274,10780,'Sloane Wolfmann',1,15),(171274,1360317,'Jade',1,16),(171274,6446,'Glenn Charlock',2,17),(171274,65727,'Agent Flatweed',0,18),(171274,1181329,'Agent Borderline',2,19),(171274,1226302,'Chlorinda',1,20),(171274,1505839,'Denis',0,25),(171274,1270556,'Ensenada Slim',0,26),(171274,1355100,'Dr. Buddy Tubeside',0,27),(171274,91657,'Bambi',1,28),(171274,1339929,'News Reporter',1,29),(171274,1505840,'Amethyst Harlingen',1,30),(171274,573817,'Luz',1,31),(171274,1505841,'Riggs Warbling',0,32),(171274,1505842,'Cop with Bigfoot',0,33),(171274,12311,'Burke Stodger (archive footage)',2,34),(171274,1505843,'The Boards',0,35),(171274,76575,'Clancy Charlock',1,36),(171274,123791,'Xandra',1,37),(171274,85779,'LAPD Officer #1',2,38),(171274,521563,'LAPD Officer #2',2,39),(171274,1505844,'Bigfoot\'s Kid',0,40),(171274,1505845,'Dr. Lily Hammer',1,42),(171274,184296,'Dr. Threeply\'s Assistant #1',1,43),(171274,1505846,'Dr. Threeply\'s Assistant #2',1,44),(171274,1505847,'Kimberly',1,45),(171274,1505848,'Dr. Igor',0,46),(171274,78890,'Puck Beaverton',0,47),(171274,1197519,'Mrs. Chastity Bjornsen',1,48),(171274,1153604,'Rhus Frothingham',0,49),(171274,19489,'Adrian Prussia',2,50),(171274,1505849,'Adrian Prussia\'s Secretary',1,51),(171274,952336,'Golden Fang Mother',1,52),(171274,1320470,'Golden Fang Daughter',1,53),(171274,1734689,'Smedley',2,54),(171274,183814,'Dr. Threeply',2,55),(171274,1883507,'Golden Fang Son',2,56),(171274,1883509,'Golden Fang Father',2,57),(171274,1811937,'Buddhist Monk',0,58),(171274,230060,'Bodhi',1,59),(171274,968089,'Zinnia',1,60),(171274,1883511,'Jesus Guard (uncredited)',2,61),(171274,1842092,'Patient (uncredited)',1,62),(171274,1883514,'Patient (uncredited)',1,63),(171274,1883517,'Police Officer (uncredited)',2,64),(171274,1564312,'Recording Tech (uncredited)',0,65),(171274,1379512,'Beach Girl (uncredited)',1,66),(171274,1883518,'Harmony (uncredited)',1,67),(171274,1483053,'Groupie (uncredited)',0,68),(171274,1843396,'Detective (uncredited)',2,69),(171274,1111163,'Groupie (uncredited)',1,70),(171274,1650638,'Patient (uncredited)',1,71),(171274,1883526,'Groupie (uncredited)',1,72),(171274,1723635,'Patient (uncredited)',0,73),(171274,1717621,'Jesus Guard (uncredited)',0,74),(171274,1278371,'Judge (uncredited)',0,75),(171274,1883528,'Groupie (uncredited)',1,76),(171274,1883529,'Biker (uncredited)',2,77),(171274,227474,'Flight Attendant (uncredited)',1,78),(171274,1883532,'Dental Assistant (uncredited)',1,79),(171274,1424380,'Chinese Waitress (uncredited)',1,80),(171274,1780582,'Speed Freak (uncredited)',1,81),(171274,1298706,'Patient (uncredited)',0,82),(171274,1318344,'Auto Mechanic (uncredited)',0,83),(171274,228458,'Mr. Robinson (uncredited)',2,84),(171274,1883534,'Chryskylodon Patient (uncredited)',1,85),(171274,1883536,'Commando (uncredited)',2,86),(171274,1883537,'Beach Girl (uncredited)',1,87),(171274,1286539,'Groupie (uncredited)',1,88),(171274,1883546,'District Attorney (uncredited)',1,89),(171274,1513215,'Patient (uncredited)',1,90),(171274,1503855,'Chief Chanter (uncredited)',0,91),(171274,1883548,'Mormon FBI Agent (uncredited)',2,92),(171274,1337068,'Flight Attendant (uncredited)',1,93),(171274,1883552,'Groupie (uncredited)',1,94),(171274,1883557,'Dental Assistant (uncredited)',1,95),(171274,1883559,'Police Officer (uncredited)',2,96),(171274,1306640,'Patient (uncredited)',1,97),(171274,1280500,'Commando (uncredited)',0,98),(171274,1883561,'Adrian Prussia\'s Friend (uncredited)',2,99),(171274,1777030,'Hippie in Commune (uncredited)',0,100),(171274,1883562,'Japanese Waiter (uncredited)',2,101),(171274,74510,'Police Officer (uncredited)',0,102),(171274,1833726,'Detective (uncredited)',0,103),(171274,1451923,'Groupie (uncredited)',1,104),(171274,1296832,'Lourdes (uncredited)',1,105),(109417,142636,'Jason Blake',2,0),(109417,15760,'Franklyn',2,1),(109417,31136,'Rooster',2,2),(109417,10964,'Dante',2,3),(109417,1046143,'Stacy',1,4),(109417,143242,'Himself',0,5),(109417,235492,'Jolene',1,6),(109417,1046144,'Flipz',2,7),(109417,98397,'James',2,8),(109417,1046145,'Sight',0,9),(109417,1071483,'Mayhem',0,10),(109417,1148762,'Bambino',0,11),(109417,1277246,'Lil Adonis',0,12),(106747,11160,'Machete Cortez',2,0),(106747,2461,'Luther Voz',2,1),(106747,55085,'Miss San Antonio',1,2),(106747,17647,'Luz',1,3),(106747,63522,'Desdemona',1,4),(106747,56731,'Sartana',1,5),(106747,11161,'Osiris Amanpour',2,6),(106747,237405,'La Camaleon',1,7),(106747,67599,'Cereza',1,8),(106747,9777,'El Camaleon',2,9),(106747,76961,'Mendez',2,10),(106747,6952,'Mr. President',2,11),(106747,3131,'El Camaleon',2,12),(106747,27740,'El Camaleon',2,13),(106747,6573,'Sheriff Doakes',2,14),(106747,1265929,'Wife of Mendez',0,15),(106747,57674,'KillJoy',1,16),(106747,968889,'Billy',2,17),(106747,118370,'Zaror',2,18),(106747,1569851,'Nurse Fine',0,19),(106747,91264,'Boss of Mendez',0,20),(106747,1486488,'Space Babe',1,21),(46435,78018,'Sir Arthur Sullivan',2,0),(46435,388,'W. S. Gilbert',2,1),(46435,9191,'Richard Temple (The Mikado)',2,2),(46435,974,'Louis',2,3),(46435,1834,'Leonora Braham (Yum-Yum)',1,4),(46435,5319,'Richard D\'Oyly Carte',2,5),(46435,1333,'John D\'Auban',2,6),(46435,72305,'Lucy Gilbert',1,7),(46435,37052,'Helen Lenoir',1,8),(46435,9013,'Durward Lely (Nanki-Poo)',2,9),(46435,30328,'George Grossmith',2,10),(46435,43024,'Rutland Barrington',2,11),(46435,118617,'Mr. Seymour',2,12),(46435,71249,'Fanny Ronalds',1,13),(46435,72310,'',2,14),(46435,47699,'Madame Leon',1,15),(46435,162429,'Pidgeon',0,16),(46435,1219786,'Clothilde',0,17),(46435,28477,'Wilhelm',2,18),(46435,1173586,'Gilbert\'s Father',0,19),(46435,192852,'Butt',2,20),(46435,1641,'Madame',1,21),(46435,6641,'Mademoiselle Fromage',0,22),(46435,1221056,'Jessie Bond',0,23),(46435,1247601,'Maude Gilbert',0,24),(46435,1529329,'Florence Gilbert',0,25),(46435,1216370,'Gilbert\'s Mother',0,26),(46435,9192,'First Kabuki Actor',2,27),(46435,205659,'',1,28),(46435,40688,'Frederick Bovill',2,29),(46435,1793751,'Sybil Grey',1,30),(46435,174700,'Miss Morton',1,31),(46435,1749206,'Mrs. Russell',0,32),(46435,30086,'Mr. Plank',2,33),(46435,1886830,'Mr. Hurley',0,34),(46435,42601,'Mad Woman',0,35),(46435,55398,'Miss Tringham',1,36),(46435,52890,'Mr. Hammond',2,37),(46435,1225197,'Miss Fitzherbert',0,38),(46435,1220030,'Miss Kingsley',0,39),(46435,151949,'Miss Monroe',1,40),(46435,229606,'Miss Barnes',1,41),(46435,77638,'',0,42),(46435,25441,'',2,43),(256962,1256170,'Pepper Flynt Busbee / Little Boy',0,0),(256962,1639,'Emma Busbee',0,1),(256962,11398,'Hashimoto',2,2),(256962,4688,'James Busbee',2,3),(256962,95136,'London Busbee',2,4),(256962,21343,'Ben Eagle',2,5),(256962,72968,'Fr. Crispin',0,6),(256962,15854,'Sam',2,7),(256962,72984,'Ava',1,8),(256962,21132,'Teacup',2,9),(256962,32895,'Dr. Fox',2,10),(256962,207,'Fr. Oliver',2,11),(256962,18271,'Colonel Bob',2,12),(256962,1278867,'Tyra',1,13),(256962,9283,'Bertha',1,14),(256962,554683,'Kid Falcon',0,15),(256962,97446,'Harvey',2,16),(256962,1214847,'Soda Fountain Clerk',2,17),(256962,1168174,'Ronnie (Bully 2)',2,18),(256962,1237876,'Sir Pent',0,19),(256962,1188456,'Recruitment Sergeant',0,20),(256962,1512145,'Bukha',0,21),(256962,73456,'Nurse Barbara',1,22),(256962,72986,'Leonard Rice',2,23),(256962,1512146,'Sister Paulette',1,24),(256962,45386,'Martha',1,25),(256962,953738,'Japanese Colonel',0,26),(256962,1512147,'Eliza the Girl on Beach',1,27),(256962,77597,'Mike the Gambler',0,28),(256962,33520,'Masao Kume',0,29),(256962,1512148,'Army Nurse',1,30),(256962,97552,'Commander Tokyo Joe',0,31),(256962,559771,'Ed',0,32),(256962,60062,'Dr. Hesley',0,33),(256962,1680874,'Red Cross Soldier',0,34),(256962,1543950,'Army Medic',0,35),(256962,1789175,'Wounded Soldier at Hospital',0,36),(256962,1152042,'Doris',1,37),(256962,1465820,'Gilliam',0,38),(256962,1543951,'Freddy Fox',0,39),(256962,1314357,'Newsreel Narrator (voice)',0,40),(256962,102894,'Spider Lady',1,41),(256962,1707343,'Japanese Soldier',0,42),(256962,1543952,'Japanese Soldier',0,43),(256962,1550644,'Young Japanese Soldier',0,44),(256962,162180,'Fisherman #1',0,45),(256962,1512149,'Fisherman #2',0,46),(256962,1789159,'Kid at Ben Eagle show',0,47),(256962,1361841,'The Narrator (voice)',2,48),(256962,1333949,'Samurai Master',0,49),(256962,1789156,'Samurai Warrior in Dojo',0,50),(256962,1381475,'Giant Tokyo Joe',0,51),(256962,1464793,'Guardian Tokyo Joe',0,52),(256962,125845,'Lou the Bartender',2,54),(256962,1789154,'Prisoner of War',0,55),(256962,1789160,'Prisoner of War',2,56),(256962,1247272,'Wild Tokyo Joe (uncredited)',0,57),(256962,1446866,'Col. Peter Stouff (uncredited)',0,58),(256962,1789157,'Prisoner of War (uncredited)',0,59),(256962,1819129,'Japanese Soldier #2',2,60),(256962,1819130,'Dr. Foley',0,61),(256962,1819131,'Lighthouse Man',0,62),(256962,1819132,'Platoon Commander',0,63),(256962,1819133,'Recruitment Officer at Bus',0,64),(256962,1819134,'Japanese Samurai',0,65),(256962,1819135,'Prisoner of War',0,66),(256962,1819136,'Jack the Bully',0,67),(256962,1819137,'Barber #1',0,68),(256962,1819138,'Jenny the Ticket Agent',1,69),(256962,1819141,'Kid Saying Fight',0,70),(256962,1819142,'Spider Lady #3',1,71),(256962,1819143,'Spider Lady #4',1,72),(256962,1819144,'George',0,73),(256962,1819145,'Lady #1',1,74),(256962,1819146,'Kid at Fight',0,75),(256962,1819147,'Barber #2',0,76),(256962,1819148,'Soldier at Hospital',0,77),(256962,1819149,'Photographer',0,78),(256962,1819150,'Marine',0,79),(256962,1819151,'Man in Church',0,80),(256962,1819152,'Red Cross Soldier #2',0,81),(48231,116,'Sabina Spielrein',1,0),(48231,110,'Sigmund Freud',2,1),(48231,17288,'Carl Jung',2,2),(48231,190895,'Emma Jung',1,3),(48231,1925,'Otto Gross',2,4),(48231,1846,'Professor Eugen Bleuler',2,5),(48231,36463,'Su00e1ndor Ferenczi',2,6),(48231,46028,'Jung\'s Secretary',1,7),(48231,233682,'Food Nurse',1,8),(48231,1089478,'Bath Nurse',1,9),(48231,1012899,'Nikolai Spielrein',0,10),(48231,583908,'Medical Policeman',0,11),(48231,38371,'Bathtub Patient',1,12),(48231,1089480,'Orchard Nurse',1,13),(48231,1089481,'Orderly',2,14),(48231,1089482,'Orderly',0,15),(48231,142545,'Ship\'s Officer',2,16),(48231,1089483,'Ship\'s Steward',0,17),(48231,1089484,'Karl Abraham',0,18),(48231,1089485,'Leonhard Seif',0,19),(48231,1012903,'Johan van Ophuijsen',0,20),(48231,1012902,'Ernest Jones',2,21),(48231,1089486,'Franz Riklin',0,22),(48231,235162,'Martha Freud',0,23),(48231,1089487,'Minna Bernays',0,24),(48231,1089488,'Anna Freud',0,25),(48231,1089489,'Sophie Freud',0,26),(48231,1089490,'Ernst Freud',2,27),(48231,1089491,'Mathilde Freud',0,28),(48231,1089492,'Jean Freud',2,29),(48231,1089493,'Oliver Freud',2,30),(48231,1089494,'Maid at Freud\'s House',1,31),(48231,1089495,'Agathe Jung',0,32),(48231,220407,'Gret Jung',0,33),(82684,17276,'Frosty Hesson',2,0),(82684,928575,'Jay Moriarity',0,1),(82684,1951,'Christy Moriarity',1,2),(82684,123725,'Brenda Hesson',1,3),(82684,207401,'Kim',1,4),(82684,66741,'Sonny',2,5),(82684,76314,'Bob Pearson',2,6),(82684,113818,'Zeuf',1,7),(82684,928574,'Little Jay Moriarty',2,8),(82684,1212271,'Little Kim',1,9),(82684,928577,'Mavericks Spectator',0,10),(82684,928579,'Blue-Collar Worker',0,11),(82684,928572,'Gordy',2,12),(241239,25072,'Abel Morales',2,0),(241239,83002,'Anna Morales',1,1),(241239,13,'Andrew Walsh',2,2),(241239,78050,'Julian',2,3),(241239,35013,'D.A. Lawrence',2,4),(241239,4941,'Peter Forente',2,5),(241239,5887,'Luisa',1,6),(241239,1986,'Bill O\'Leary',2,7),(241239,122888,'Lange',1,9),(241239,1370819,'Arthur Lewis',2,10),(241239,24292,'Joseph Mendelsohn',2,11),(241239,1377670,'Arnold Kline',0,12),(241239,1417738,'Lorraine Lefkowitz',1,13),(241239,1232599,'John Dominczyk',0,14),(241239,8875,'Saul Lefkowitz',2,15),(241239,1417739,'Elias Morales',2,16),(241239,126713,'Mrs. Rose',1,17),(241239,80002,'Annie Morales',1,18),(241239,1306572,'Catherine Morales',0,19),(241239,984629,'Louis Servidio',2,20),(241239,1468597,'Elizabeth Morales',1,21),(241239,1088672,'Alex',2,22),(77948,73968,'Will Shaw',2,0),(77948,114254,'Lucia',1,1),(77948,10205,'Jean Carrack',1,2),(77948,62,'Martin',2,3),(77948,6692,'Laurie Shaw',1,4),(77948,120560,'Meckler',2,5),(77948,21660,'Josh',2,6),(77948,119783,'Gorman',2,7),(77948,395846,'Dara',1,8),(77948,582925,'Esmael',2,9),(77948,59129,'Maximo',2,10),(77948,19824,'SP. College Girl (Alumna)',1,11),(77948,20442,'Zahir',2,12),(77948,1010264,'Dixon',0,13),(77948,1149826,'Christina',0,14),(77948,123212,'Carlos',0,15),(77948,986519,'Vicente',0,16),(77948,17782,'Bandler',2,17),(77948,100657,'Reynaldo',0,18),(77948,1052266,'Cesar',0,19),(77948,24496,'Pizarro',2,20),(77948,1657615,'Mother at Pharmacy',0,21),(40932,1047312,'Alex the G.I.',0,0),(40932,1047313,'David the Construction Worker',0,1),(40932,1047314,'Glenn the Leatherman',0,2),(40932,1047315,'Randy the Cowboy',0,3),(40932,1047316,'Felipe the Indian',0,4),(40932,1047317,'Ray the Police Officer',0,5),(40932,26483,'Samantha Simpson',1,6),(40932,181465,'Ron White',1,7),(40932,26472,'Jack Morell',2,8),(40932,63998,'Sydney Channing',0,9),(40932,41255,'Helen Morell',1,10),(40932,74542,'Norma White',1,11),(40932,106055,'Alicia Edwards',1,12),(40932,60142,'Lulu Brecht',1,13),(40932,78416,'Steve Waits',0,14),(334531,6383,'Darrell Royal',2,0),(334531,168877,'Freddie Steinmark',2,1),(334531,17346,'Gloria Steinmark',1,2),(334531,33397,'Linda Wheeler',1,3),(334531,108774,'Fred Steinmark',2,4),(334531,21484,'Father Bomar',2,5),(334531,1188269,'Tom Campbell',0,6),(334531,1040679,'Super Bill Bradley',0,7),(334531,1552440,'Street',0,8),(334531,1386301,'Football Fan',0,9),(334531,1451797,'Nurse Fuller',0,10),(334531,1367909,'Football Fan (uncredited)',1,11),(334531,1213640,'Play-by-Play Broadcaster (voice)',2,12),(334531,1488310,'Football Fan',0,13),(334531,1381981,'Mike Campbell',2,14),(334531,1488311,'Faculty',0,15),(112937,1062,'Lero Sombrero',2,0),(112937,2130,'Bobby Wobbly',2,1),(112937,56824,'Lola',1,2),(112937,9599,'Dotty Rounder',1,3),(112937,9046,'Marvin Milkshake',2,4),(112937,532537,'Rosalie Rosebud',1,5),(112937,75671,'Windy Window',1,6),(112937,1031685,'Diner dancer (as Gary Clayton)',2,8),(112937,188541,'J. Edgar',0,9),(112937,1212864,'Diner Dancer',1,10),(314385,11701,'Vanessa',1,0),(314385,287,'Roland',2,1),(314385,19119,'Lea',1,2),(314385,26100,'Franu00e7ois',2,3),(314385,17498,'Michel',2,4),(314385,1977,'Patrice',2,5),(314385,1530854,'Clarisse',1,6),(314385,10356,'Dress Shop Saleswoman',1,7),(314385,1543953,'Fisherman',0,8),(314385,1530855,'Georges the Waiter',0,9),(314385,1543954,'Maitre D\'',0,10),(314385,1543955,'Hotel Receptionist',0,11),(314385,1543956,'Older Couple',0,12),(314385,1543957,'Older Couple',0,13),(314385,1543958,'Fancy Couple at Cafu00e9',0,14),(314385,1543959,'Fancy Couple at Cafu00e9',0,15),(314385,1543960,'Cafu00e9 Cat',0,16),(314385,1543961,'Child in Hotel',0,17),(314385,1173036,'Dancer (uncredited)',1,18),(314385,1530856,'Pascal (uncredited)',2,19),(46503,205,'Katie Marks',1,0),(46503,30614,'David Marks',2,1),(46503,41091,'Lauren Fleck',1,2),(46503,8924,'Sanford Marks',2,3),(46503,4888,'Deborah Lehrman',1,4),(46503,4492,'Malvern Bump',2,5),(46503,6183,'Daniel Marks',2,6),(46503,6200,'Janice Rizzo',1,7),(46503,53085,'Richard Panatierre',2,8),(46503,17187,'Sarah Davis',1,9),(46503,8875,'The Mayor',2,11),(46503,17039,'Jim McCarthy',2,12),(46503,1218005,'Katie\'s Aunt',1,13),(43935,17271,'Dylan Dog',2,0),(43935,53,'Gabriel',2,1),(43935,53492,'Marcus',0,2),(43935,17637,'Vargus',2,3),(43935,70785,'Elizabeth',1,4),(43935,90031,'Wolfgang',0,5),(43935,141226,'Rosenberg',2,6),(43935,215887,'Bob the Mechanic',2,7),(43935,568045,'Ally',0,8),(43935,568046,'Go Go Dancer',0,9),(43935,568047,'Kelly',0,10),(43935,568048,'Trueblood Vampire',0,11),(43935,568049,'Lorca',2,12),(43935,94182,'Borelli',2,13),(44638,15735,'Prospera',1,0),(44638,72855,'Miranda',1,1),(44638,64710,'Prince Ferdinand',2,2),(44638,11064,'King Alonso',2,3),(44638,71010,'Gonzalo',0,4),(44638,658,'Stephano',2,5),(44638,938,'Caliban',2,6),(44638,59919,'Trinculo',2,7),(44638,10697,'Sebastian',2,8),(44638,2955,'Antonio',2,9),(44638,17064,'Ariel',2,10),(44638,669820,'Boatswain',2,11),(241257,569,'Bruce Kenner',2,0),(241257,10990,'Angela Gray',1,1),(241257,11207,'Professor Kenneth Raines',2,2),(241257,38524,'Reverend Murray',2,3),(241257,46814,'Rose Gray',1,4),(241257,93236,'John Gray',2,5),(241257,90498,'Roy Gray',2,6),(241257,90130,'George Nesbitt',2,7),(241257,229,'Cleveland',2,8),(241257,108534,'Brody',2,9),(241257,1228362,'Charlie Klemme',0,10),(241257,56262,'Farrell',2,11),(241257,31187,'Kate',1,12),(241257,2320,'Tom',2,13),(241257,1309774,'Andrew',2,14),(241257,166463,'Norma',1,15),(241257,1470351,'S. Cooper',0,16),(241257,58803,'Old Woman',1,17),(241257,1807070,'Satanist (uncredited)',1,18),(241257,1807071,'Reverend Simmons (uncredited)',2,19),(241257,1754368,'Cult Member (uncredited)',0,20),(241257,1807072,'Girl (uncredited)',1,21),(241257,1807075,'Praying Girl (uncredited)',1,22),(241257,1008550,'TV Voice Over (voice)',2,23),(241257,1084758,'Satanist',2,24),(133931,61959,'Kai (voice)',2,0),(133931,2231,'Tendai (voice)',2,1),(133931,17140,'Zoe (voice)',1,2),(133931,1749,'Sekhuru (voice)',2,3),(133931,4785,'Ajax (voice)',2,4),(133931,15899,'Gogo (voice)',1,5),(133931,66524,'Pavi (voice)',1,6),(133931,20766,'Cecil (voice)',2,7),(133931,59019,'Ezee (voice)',2,8),(133931,193254,'Morton (voice)',2,9),(133931,35219,'Neville (voice)',2,10),(133931,12077,'Budzo / Marabous (voice)',2,11),(133931,1098113,'Nurse Bird (voice)',0,12),(133931,31549,'Announcer Bird (voice)',2,14),(133931,34983,'Neville\'s Wife (voice)',1,15),(133931,1098117,'Weaver (voice)',0,16),(133931,1295,'Mushana (voice)',2,17),(133931,139065,'Tini (voice)',1,18),(133931,78798,'Marabous (voice)',2,19),(280871,1339134,'Srinivasa Ramanujan',0,1),(280871,584464,'Komalatammal',0,2),(280871,1339135,'G. H. Hardy',0,3),(280871,85522,'Prasanta Chandra Mahalanobis',2,4),(280871,1339136,'Young Srinivasa Ramanujan',0,5),(280871,591078,'Janaki',0,6),(280871,1339137,'John Edensor Littlewood',0,7),(280871,1232066,'Francis Spring',0,8),(280871,237629,'Diwan Bahadur R. Ramachandra Rao I. C. S.',0,9),(280871,237627,'Prof. Singaravelu Mudaliar',2,10),(280871,581084,'Prof. Krishna Shastri',0,11),(280871,584369,'S. Narayana Iyer',2,12),(280871,478543,'Krishna Rao',2,13),(280871,1339138,'Anandhu',0,14),(280871,520089,'Sathiyapriya Rayar',0,15),(280871,1339139,'Krishnan',0,16),(280871,131261,'',2,17),(280871,1336610,'Seshu Iyer',0,18),(280871,580786,'T. Namberumal Chetty',2,19),(280871,1339140,'',2,20),(280871,1184329,'Ms. Bourne',0,21),(280871,1264982,'Doctor Charles',0,22),(280871,1339142,'Chatterjee',0,23),(280871,1339143,'Ms. Gertrude Hardy',0,24),(239897,6832,'Grandma Fitz / Butterfly McDweg / Mrs. Fitzgerald',1,0),(239897,145345,'Sophia-So-Dwegon / Argalite / Juno Luno',1,1),(239897,20813,'Davargan / Yabo Potato / Sweetfang / Clyde',0,2),(239897,571208,'Nosey Threehorn / Bloochip / Squats',0,3),(239897,1275021,'Timmy',0,4),(239897,42961,'Missy / Tatiana',1,5),(239897,56348,'Pete Fitzgerald',2,6),(239897,1195389,'Pete Fitzgerald',0,7),(184341,380,'Ray Arcel',2,0),(184341,25616,'Roberto Duran',2,1),(184341,59017,'Juanita Leonard',1,2),(184341,6913,'Stephanie Arcel',1,3),(184341,2049,'Carlos Eleta',2,4),(184341,57108,'Sugar Ray Leonard',0,5),(184341,1241,'Frankie Carbo',2,6),(184341,38951,'Don King',2,7),(184341,173277,'Howard Cosell',2,8),(184341,224513,'Felicidad Iglesias',1,9),(184341,59129,'Chaflan',2,10),(184341,93015,'Adele',1,11),(184341,588186,'Clara Samaniego',0,12),(184341,202930,'Marine Molinari',2,13),(334074,517,'Nash',2,0),(334074,63,'Kate Abbott',1,1),(334074,32597,'Sam Parker',2,2),(334074,9780,'Maureen Cranepaul',1,3),(334074,5694,'Bill Talbot',2,4),(334074,19655,'Paul Anderson',2,5),(334074,16407,'Dr. Emil Balan',2,6),(334074,139654,'Lisa Carr',1,7),(334074,47468,'Sally',1,8),(334074,1446006,'Helen',0,9),(334074,221981,'Naomi Rosenbaum',1,10),(334074,1221076,'Alvin Murdock',2,11),(334074,1471662,'Robert Purvell',0,12),(334074,564035,'Joyce Su',0,13),(334074,11953,'Zafer Pavlou',2,14),(334074,1471664,'Johnny Talbot',0,15),(334074,1349720,'Ray',0,16),(334074,1523067,'garbageman (uncredited)',0,17),(334074,1488053,'Flight Attendant',1,18),(334074,55364,'Trevor',2,19),(199373,2963,'Jack Halcombe',2,0),(199373,67599,'Cindy Paulson',1,1),(199373,3036,'Robert Hansen',2,2),(199373,8329,'Allie Halcombe',1,3),(199373,58006,'Chelle Ringell',1,4),(199373,169337,'Fran Hansen',1,5),(199373,14329,'Sgt. Lyle Haugsven',2,6),(199373,62644,'Pimp Clate Johnson',2,7),(199373,137424,'Debbie Peters',1,8),(199373,14721,'Lt. Bob Jent',0,9),(199373,29685,'D.A. Pat Clives',2,10),(199373,98215,'Ed Stauber',2,11),(199373,15376,'Carl Galenski',2,12),(199373,157015,'Vice Det. John Gentile',2,13),(199373,142192,'Gregg Baker',2,14),(199373,1096595,'Lt. Pat Kasnick',2,15),(199373,1633405,'Janice',1,16),(199373,1633437,'Sgt. Wayne Von Clasen',2,17),(199373,1042684,'News Anchor',1,18),(52449,6941,'Elizabeth Halsey',1,0),(52449,41088,'Russell Gettis',2,1),(52449,12111,'Scott Delacorte',2,2),(52449,66446,'Amy Squirrel',1,3),(52449,169200,'Lynn Davies',1,4),(52449,8265,'Principal Wally Snur',2,5),(52449,20469,'Ms. Pavicic',1,6),(52449,88971,'Sandy Pinkus',2,7),(52449,207006,'Garrett Tiara',2,8),(52449,481337,'Sasha Abernathy',1,9),(52449,980152,'Arkady',0,10),(52449,980153,'Devon',0,11),(52449,997379,'Gaby',1,12),(52449,221125,'Tristan',2,13),(52449,28640,'Melody',1,14),(52449,221192,'Chase Rubin-Rosse',1,15),(52449,539,'Carl Halabi',2,16),(52449,1396403,'Spencer',0,17),(52449,1678215,'Rodrigo (Acne Kid)',2,18),(52449,208357,'Shawn',2,19),(52449,156962,'Kirk',2,20),(52449,4693,'School Superintendent',2,21),(52449,1231184,'Janitor',2,22),(52449,105648,'Mark',2,23),(52449,14105,'Mrs. Pubich',1,24),(52449,19839,'Doctor Vogel',2,25),(52449,10402,'Angela',1,26),(52449,1678218,'Danni',1,27),(52449,116805,'Dad at Carwash',2,28),(52449,58966,'Sasha\'s Mother',1,29),(52449,1546440,'Male Teacher (Bathroom)',2,30),(52449,31507,'School Secretary',1,31),(52449,61113,'Morgan\'s Dad',2,32),(52449,52956,'Chase\'s Mom',1,33),(52449,28640,'Melody (Garrett\'s Mom)',1,34),(52449,1539,'Philip',2,35),(52449,124086,'Armando the Homeless Guy',2,36),(52449,177475,'Abraham Lincoln (Tour Guide)',2,37),(52449,84417,'Blacksmith (Re-Enactor)',2,38),(52449,1086222,'Police Officer',2,39),(52449,1134644,'Crying Girl',1,40),(52449,1678219,'Student in Elizabeth\'s Class (uncredited)',1,41),(52449,1388057,'Sheila (uncredited)',1,42),(52449,572076,'Nurse (uncredited)',1,43),(52449,98297,'8th Grade Student (uncredited)',1,44),(385383,1225170,'Duke',1,0),(385383,1064601,'Jabs',1,1),(385383,1477724,'Payton Walsh',0,2),(385383,123604,'Church',1,3),(385383,1592749,'Windsor',0,4),(385383,1054725,'Yanni',0,5),(385383,1592744,'Mia',0,6),(385383,1592745,'Jamie',0,7),(385383,1592746,'Madison Coro',0,8),(385383,1592747,'Gino',0,9),(385383,1592748,'Stakes',2,10),(385383,1592750,'Gracey',0,11),(385383,1592751,'Tori Coro',0,12),(385383,1592752,'Ace',0,13),(385383,1592753,'producer',0,14),(385383,1592754,'producer',0,15),(41210,23532,'Wally Mars',2,0),(41210,4491,'Kassie Larson',1,1),(41210,4785,'Leonard',2,2),(41210,3196,'Debbie',1,3),(41210,3230,'Artie',2,4),(41210,185805,'Climbing Wall Guide',0,5),(41210,108532,'Declan',0,6),(41210,17178,'Roland',2,7),(41210,968851,'Jessica',1,8),(41210,965224,'Sebastian',2,9),(41210,204629,'Older Sebastian',2,10),(41210,59280,'Knit Hat Guy',0,11),(41210,1022885,'Actor on Stage',2,12),(41210,91453,'Man in Theater',2,13),(41210,31383,'Pauline',1,14),(41210,91673,'Party Guest',1,15),(41210,1305257,'Party Guest #2',0,16),(41210,1305264,'Waiter',0,17),(41210,1655865,'Roland\'s Sister (uncredited)',1,18),(41210,1163300,'Kassie\'s friend (uncredited)',1,19),(62630,55470,'Latif Yahia / Uday Hussein',2,0),(62630,4390,'Sarrab',1,1),(62630,73710,'Munem',0,2),(62630,112429,'Kamel Hannah',2,3),(62630,117314,'Saddam Hussein / Faoaz',0,3),(62630,446906,'Ali',2,4),(62630,219506,'Yassem Al-Helou',0,5),(62630,946350,'Latif\'s Father',2,7),(62630,234907,'Azzam',0,8),(62630,1423442,'Said',0,9),(62630,25095,'Father of School Girl',2,11),(62630,1048692,'School Girl',1,12),(62630,574378,'Bride',1,13),(62630,24607,'Rokan',0,14),(62630,549331,'Qusay',0,15),(62630,1261092,'Saad',0,16),(62630,1493722,'School Girl 2',1,17),(62630,566331,'Beauty',1,18),(244114,25246,'Lui',2,0),(244114,83820,'Tou',2,1),(244114,482101,'Bing',0,2),(244114,96862,'Cao Nam',0,3),(244114,78877,'Paco',0,4),(244114,140478,'',0,5),(244114,236076,'',0,6),(244114,1143685,'',0,7),(244114,1254990,'',0,8),(244114,74196,'',0,9),(244114,544791,'',0,10),(244114,1613706,'Yiu-Yiu',0,11),(203833,118,'Hans Hubermann',2,0),(203833,1008607,'Liesel Meminger',1,1),(203833,1639,'Rosa Hubermann',0,2),(203833,1153024,'Rudy Steiner',2,3),(203833,224167,'Max Vandenburg',2,4),(203833,7059,'Liesel\'s mother',1,5),(203833,2340,'Ilsa Hermann',1,6),(203833,11279,'Narrator / Death (voice)',2,7),(203833,65054,'Bu00fcrgermeister Hermann',2,8),(203833,42445,'Grave Digger',2,9),(203833,1309014,'Priest',2,10),(203833,49766,'Frau Heinrich',1,11),(203833,1327255,'Liesel\'s Brother',0,12),(203833,1445749,'Football Urchin',0,13),(203833,1445750,'Football Urchin',0,14),(203833,1277223,'Fat Faced Goalie',0,15),(203833,7804,'Alex Steiner',2,16),(203833,1277224,'Jewish Accountant',0,17),(203833,571188,'Frau Becker',1,18),(203833,1193609,'Franz Deutscher',0,19),(203833,42432,'Max\'s Mother',0,20),(203833,1086352,'Walter, Nazi Soldier',2,21),(203833,22945,'Ju00fcrgen the Groundsman',0,22),(203833,44464,'Rolf Fischer',0,23),(203833,550554,'Gestapo Agent',2,24),(203833,40565,'Wolfgang',2,25),(203833,1130367,'Woman with Champagne',1,26),(203833,1445754,'Neighbor',0,27),(203833,1195041,'Neighbor',1,28),(203833,1196724,'Neighbor',2,29),(203833,51651,'Officer',0,30),(203833,70153,'Herr Lehmann',2,31),(203833,1445755,'Fellow Conscript',0,32),(203833,1313028,'Post Woman',0,33),(203833,52637,'Barbara Steiner',1,34),(50725,17052,'Matt Franklin',2,0),(50725,1772,'Wendy Franklin',1,1),(50725,58873,'Barry Nathan',2,2),(50725,20374,'Tori Frederking',1,3),(50725,49961,'Kitchelle Storms',1,4),(50725,2712,'Bill Franklin',2,5),(50725,73457,'Kyle Masterson',2,6),(50725,167081,'Libby Franklin',0,7),(50725,66446,'Shelly',1,8),(50725,84075,'Carlos',2,9),(50725,22224,'Pete Bering',2,10),(50725,59410,'Mike',2,11),(50725,58312,'Trish Anderson',1,12),(50725,63110,'Benji',2,13),(50725,56679,'Bryce',2,14),(50725,116277,'Beth',1,15),(50725,58368,'Tyler \'Dance Machine\' Jones',2,16),(50725,149468,'Rick Herrington',2,17),(50725,38888,'Brent',2,18),(50725,129228,'Ally',1,19),(50725,60488,'Broder',2,20),(50725,18705,'Officer Frank Johnson',2,21),(50725,173833,'Steven',2,22),(50725,43115,'Frances Triebverbrecher',2,23),(50725,37624,'Martina',1,24),(50725,566151,'The Loser Who Always Shows Up at the Party with a Guitar',2,25),(50725,1098059,'Claire',0,26),(50725,417,'Banky',1,27),(82631,19492,'Nona Alberts',1,0),(82631,1579,'Jamie Fitzpatrick',1,1),(82631,10182,'Principal Thompson',2,2),(82631,129101,'Charles Alberts',2,3),(82631,4810,'Breena Harper',1,4),(82631,112742,'Malia',1,5),(82631,231715,'Riske\'s assistant',0,6),(82631,59693,'Yvonne',0,7),(82631,928356,'Miss Andrews',0,8),(82631,132218,'Principal Chamudes',0,9),(82631,25072,'Michael Perry',2,10),(82631,18686,'Evelyn Riske',1,11),(82631,1032439,'Cody Alberts',2,12),(82631,5502,'Principal Holland',2,13),(82631,137529,'Arthur Gould',2,14),(82631,17352,'Olivia Lopez',1,15),(82631,1573776,'Deborah',0,16),(82631,1589148,'Ms. Southwick',1,17),(82631,1388473,'District Receptionist',1,18),(82631,1573787,'District Receptionist',0,19),(73191,142368,'The sugarplum Fairy',0,0),(73191,568409,'The Sugarplum Fairy\'s Cavalier',0,1),(73191,568410,'Drosselmeier',0,2),(73191,568411,'Dewdrop',0,3),(73191,568412,'Marie',0,4),(73191,11510,'The Nutcracker Prince',2,5),(340611,33235,'Marcus Messner',2,0),(340611,190895,'Olivia Hutton',1,1),(340611,72638,'Dean Caudwell',2,2),(340611,58643,'Esther Messner',1,3),(340611,7428,'Max Messner',0,4),(340611,1088672,'Bertram Flusser',2,5),(340611,1417739,'Sonny Cottler',2,6),(340611,211991,'Ron Foxman',2,7),(340611,1526764,'Marty Ziegler',0,8),(340611,59846,'Mrs. Greenberg',1,9),(340611,1218231,'Mrs. Dadidovich',0,10),(340611,1547515,'Ben',0,11),(340611,475571,'Anker',0,12),(340611,31282,'Mo Greenberg',2,13),(340611,1570317,'Miss Clement',0,14),(340611,1570321,'David',0,15),(340611,1558410,'Student',0,16),(340611,1457224,'Church Volunteer',1,17),(340611,1570313,'Student',0,18),(340611,1570314,'Student',0,19),(340611,1570315,'Young Nurse',0,20),(340611,1175706,'History Student',0,21),(340611,1570316,'Sophomore Girl',0,22),(340611,1570318,'College Nurse',0,23),(340611,1544839,'Family Friend at Shiva & Synagogue',2,24),(340611,1570319,'Student',0,25),(340611,1570320,'College Student',0,26),(340611,1570322,'Dead American Soldier',0,27),(340611,1570323,'Alice',0,28),(340611,1570324,'Church Matron',0,29),(340611,1462054,'President Wentz',0,30),(340611,1570325,'Dead American Soldier',0,31),(340611,1570326,'Man In Synagogue',0,32),(244339,940339,'',2,0),(244339,65261,'',1,2),(244339,1065761,'',0,3),(244339,1237978,'',0,4),(244339,72732,'',2,5),(244339,78875,'',2,6),(195589,19274,'Mac Radner',2,0),(195589,29222,'Teddy Sanders',2,1),(195589,9827,'Kelly Radner',1,2),(195589,54697,'Pete Regazolli',2,3),(195589,198150,'Jimmy Blevins',2,4),(195589,54691,'Scoonie Schofield',2,5),(195589,54708,'Paula Faldt',1,6),(195589,934243,'Brooke Shy',1,7),(195589,104561,'Assjuice',2,8),(195589,500427,'Officer Watkins',0,9),(195589,14406,'Carol Gladstone',1,10),(195589,111683,'Dr. Theodorakis',0,11),(195589,1400880,'Garf',2,12),(195589,496731,'Whitney',1,13),(195589,1581096,'Stella Radner',1,14),(195589,1581097,'Stella Radner',1,15),(195589,54728,'Bill Wazowkowski',2,16),(195589,1498472,'Brittany',1,17),(195589,79082,'Rep',2,18),(195589,543505,'Sebastian Cremmington',2,19),(195589,1581100,'Thumbsucker',2,20),(195589,1037154,'Rival Frat Guy #1',2,21),(195589,1581098,'Rival Frat Guy #2',2,22),(195589,62861,'Toga #1',2,23),(195589,62854,'Toga #2',2,24),(195589,62863,'Toga #3',2,25),(195589,212604,'Beer Pong Guy #1',2,26),(195589,521564,'Beer Pong Guy #2',0,27),(195589,521563,'Beer Pong Guy #3',2,28),(195589,448309,'Wendy the Realtor',1,29),(195589,1254001,'Beer Pong Guy #4',0,30),(195589,168872,'The Babysitter',2,31),(195589,1203537,'Sorority Girl',0,32),(195589,1214835,'Prostitute',1,33),(195589,142402,'Prostitute (uncredited)',1,34),(195589,1398257,'JJ (uncredited)',2,35),(195589,1413876,'Birthday Party Jumper (uncredited)',2,36),(195589,1580574,'Homeless Man (uncredited)',2,37),(195589,1581102,'Gay Couple (uncredited)',2,38),(195589,1158832,'Alecia (uncredited)',1,39),(195589,1676856,'Sorority Girl (uncredited)',1,40),(195589,1379512,'Sorority Girl (uncredited)',1,41),(195589,1676864,'Sorority Girl (uncredited)',1,42),(195589,1676865,'Sorority Girl (uncredited)',1,43),(195589,1351205,'Sorority Girl (uncredited)',1,44),(195589,1676867,'Sorority Girl (uncredited)',1,45),(195589,1634314,'Sorority Girl (uncredited)',1,46),(195589,1198989,'Sorority Girl (uncredited)',1,47),(195589,1203537,'Sorority Girl (uncredited)',0,48),(195589,1676871,'Sorority Girl (uncredited)',1,49),(195589,592342,'Sorority Girl (uncredited)',1,50),(218043,2963,'Rayford Steele',2,0),(218043,62747,'Buck Williams',2,1),(218043,1063,'Irene Steele',1,2),(218043,212833,'Hattie Durham',1,3),(218043,4030,'Melvin Weir',2,4),(218043,112560,'Simon',2,6),(218043,224842,'Shasta Carvell',1,7),(218043,68180,'Dennis',2,8),(218043,31467,'Chris Smith',2,9),(218043,94427,'Kimmy',1,10),(218043,1253634,'Lori',0,11),(218043,205176,'Chloe Steele',1,12),(218043,1467385,'Venice Baxter',0,13),(218043,1268071,'Terrified Woman',1,14),(218043,1381389,'Hassid',0,15),(218043,1172781,'Raymie Steele',2,16),(218043,1116011,'Edwin',0,17),(218043,120251,'Checkout Lady',1,18),(218043,101847,'Pastor Bruce Barnes',2,19),(218043,1289978,'Young Mother',0,20),(218043,133386,'Hospital Mom',1,21),(218043,1467388,'Mom',0,22),(218043,990136,'Jim',2,23),(218043,1467390,'Katie',0,24),(218043,1467418,'Panicked Dad',0,25),(218043,1411758,'Another Passenger',0,26),(218043,1467419,'Mall shopper',0,27),(302688,38405,'Ian Miller',2,1),(302688,1278724,'Paris Miller',1,2),(302688,54645,'Toula Portokalos',1,3),(302688,34457,'Mike',2,4),(302688,32600,'George',2,5),(302688,934281,'Bennett',0,6),(302688,53647,'Maria',1,7),(302688,12931,'Anna',1,8),(302688,8263,'Aunt Voula',1,9),(302688,54649,'Nick',2,10),(302688,14226,'Nikki',1,11),(302688,14884,'Gus',2,12),(302688,1639966,'Teacher (uncredited)',0,13),(302688,1639967,'Chef (uncredited)',0,14),(302688,1462688,'Student (uncredited)',0,15),(302688,1639968,'Toula\'s Nephew (uncredited)',0,16),(302688,1503403,'Elizabeth',0,17),(302688,1639974,'Chanter',0,18),(302688,1282746,'Patrick',0,19),(302688,1639975,'Tiahn',0,20),(302688,1228304,'Aunt Freida',0,21),(302688,1639976,'Jennie',0,22),(302688,1481016,'Wedding Planner',0,23),(302688,1639977,'Theadore',0,24),(302688,1639978,'Priest',0,25),(302688,1094134,'Clifford',2,26),(302688,59195,'Marianthi',1,27),(302688,54650,'Uncle Taki',2,28),(302688,1205726,'Baird',0,29),(302688,1423825,'Pim',0,30),(302688,185147,'Kaveh',0,31),(302688,1639981,'Physical Therapist',0,32),(302688,1225938,'Dominique',0,33),(302688,162747,'Marge',1,34),(302688,185100,'Edie',0,35),(302688,1639983,'Tommy',0,36),(302688,1639984,'Paris at 4',0,37),(302688,1639985,'Yanni',0,38),(60307,89819,'Greg Heffley',2,0),(60307,90498,'Rodrick Heffley',2,1),(60307,46074,'Susan Heffley',1,2),(60307,111922,'Rowley Jefferson',2,3),(60307,18324,'Frank Heffley',2,4),(60307,858704,'Manny Heffley',2,5),(60307,1769435,'Manny Heffley',2,6),(60307,1254435,'Holly Hills',1,7),(60307,111923,'Chirag',2,8),(60307,51533,'Bill',2,9),(60307,111921,'Fregley',2,10),(60307,84468,'Patty Farrell',0,11),(60307,27112,'Grandpa Heffley',2,12),(60307,152863,'Mrs. Norton',1,13),(60307,111931,'Coach Malone',2,14),(60307,16559,'Mr. Jefferson',2,15),(60307,139618,'Scotty Douglas',0,16),(60307,51800,'Mrs. Kohan',1,17),(60307,1368800,'Harry Gilbertson',2,18),(194662,2232,'Riggan',2,0),(194662,54693,'Sam',1,1),(194662,58225,'Jake',2,2),(194662,3489,'Lesley',1,3),(194662,819,'Mike',2,4),(194662,1099876,'Korean Grocer',0,5),(194662,1502376,'Daniel (Stagehand)',2,6),(194662,155222,'Ralph',2,7),(194662,127558,'Laura',1,8),(194662,122551,'Costume Assistant',1,9),(194662,109144,'Gabriel',2,10),(194662,1502377,'Han',2,11),(194662,1643952,'Translator',2,12),(194662,143256,'Clara',0,13),(194662,28044,'Annie',1,14),(194662,89666,'Larry',2,15),(194662,171538,'Sydney',2,16),(194662,39388,'Sylvia',1,17),(194662,1232513,'Bartender (Tommy)',2,18),(194662,30083,'Tabitha',1,19),(194662,1226294,'Lady in Bar',0,20),(194662,1015739,'Man in Bar',2,21),(194662,1643957,'Kid in Bar (Billy)',2,22),(194662,1808323,'Dresser',0,23),(194662,88550,'Stagehand',2,24),(194662,1788097,'Broadway Tourist',0,25),(194662,1485093,'Broadway Lady',1,26),(194662,1788098,'Broadway Kid',0,27),(194662,1188195,'Broadway Kid',0,28),(194662,1196493,'Broadway Man on Street',2,29),(194662,1788099,'Annoying Times Square Guy',0,30),(194662,1365076,'Annoying Times Square Guy',0,31),(194662,1788100,'Annoying Times Square Guy',0,32),(194662,563152,'Broadway Woman on Street',0,33),(194662,1788101,'Cashier',0,34),(194662,50589,'Mr. Roth',0,35),(194662,1788103,'Female Usher',0,36),(194662,1788104,'Liquor Store Owner',0,37),(194662,121718,'Crazy Man',2,38),(194662,1232487,'Guy in Window',0,39),(194662,5385,'Lady on Balcony (Mary)',1,40),(194662,117379,'Good Neighbor',0,41),(194662,1874875,'Young Male Usher',0,42),(194662,1712149,'Cab Driver',0,43),(194662,1788107,'Intermission Man',0,44),(194662,163664,'Intermission Woman',0,45),(194662,135256,'Blonde Reporter',0,46),(194662,84832,'Newscaster',0,47),(194662,1668665,'Newscaster',0,48),(194662,115593,'Newscaster',0,49),(160588,112,'Jasmine Francis',1,0),(160588,7447,'Hal Francis',2,1),(160588,39658,'Ginger',1,2),(160588,21127,'Chili',2,3),(160588,52849,'Al Munsinger',2,4),(160588,133,'Dwight Westlake',2,5),(160588,57906,'Augie',0,6),(160588,72873,'Jasmine\'s boss',2,7),(160588,71375,'Danny Francis',2,8),(160588,49918,'Young Danny',2,9),(160588,7133,'Young Danny',2,10),(160588,16859,'Jane',1,11),(160588,1191672,'Ginger\'s boss',0,12),(160588,1191673,'Matthew',0,13),(160588,1191674,'Johnny',0,14),(160588,1195805,'Melanie',0,15),(43959,1285,'Bethany Hamilton',1,0),(43959,9994,'Cheri Hamilton',1,1),(43959,966053,'Alana Blanchard',1,2),(43959,96091,'Sarah Hill',1,3),(43959,6065,'Tom Hamilton',2,4),(43959,51965,'Holt Blanchard',2,5),(43959,77448,'Noah Hamilton',2,6),(43959,146510,'Timmy Hamilton',2,7),(43959,231313,'Byron',0,8),(43959,206833,'Malina Birch',0,9),(43959,8977,'Dr. David Rovinsky',2,10),(43959,971408,'Keoki',2,11),(43959,106730,'Ben',2,12),(43959,1008234,'',1,13),(43959,574087,'',0,14),(43959,129952,'Executive',2,15),(44115,17051,'Aron Ralston',2,0),(44115,51072,'Kristi Moore',1,1),(44115,20354,'Megan McBride',1,2),(44115,11291,'Rana',1,3),(44115,51988,'Sonja Ralston',1,4),(44115,20879,'Donna Ralston',1,5),(44115,4515,'Larry Ralston',2,6),(44115,142182,'Aaron\'s Friend',0,7),(44115,142183,'Aaron Age 5',0,8),(44115,60467,'Aaron age 15',0,9),(44115,142184,'Sonja Age 10',0,10),(44115,142185,'Monique Meijer',0,11),(44115,63484,'Blue John',0,12),(44115,1178035,'Brian',0,13),(44115,639,'Eric Meijer',2,14),(44115,1511951,'Dan',2,15),(44115,1613030,'Boy on Sofa',2,16),(44115,1006775,'Zach',0,17),(44115,1613033,'Helicopter Pilot',2,18),(44115,1613034,'Patron (uncredited)',1,19),(44115,1613035,'Friend of Aaron (uncredited)',2,20),(44115,1613043,'Media person / Basketball Game Fan (uncredited)',1,21),(44115,1613044,'Best Man (uncredited)',2,22),(44115,1613045,'Basketball Fan (uncredited)',1,23),(44115,973238,'Himself (uncredited)',2,24),(44115,130793,'Basketball Fan (uncredited)',0,25),(44115,564335,'Aron\'s Friend (uncredited)',2,26),(44115,1390549,'Reporter (uncredited)',0,27),(44115,233922,'Bridesmaid (uncredited)',1,28),(333348,67773,'Rags (voice)',2,0),(333348,3092,'Charlotte Cooper',1,1),(333348,1230,'Sam Cooper',2,2),(333348,1903,'Bucky',2,3),(333348,59315,'Eleanor',1,4),(333348,27105,'Hank',2,5),(333348,71070,'Ruby',1,6),(333348,3141,'Emma',1,7),(333348,496470,'Joe',2,8),(333348,53650,'Officer Williams',2,9),(333348,35515,'Aunt Fishy',1,10),(333348,24357,'',1,11),(333348,4602,'',2,12),(333348,1367075,'',0,13),(333348,1190668,'Charlie Cooper',2,14),(321697,17288,'Steve Jobs',2,2),(321697,204,'Joanna Hoffman',1,3),(321697,19274,'Steve Wozniak',2,4),(321697,77795,'Chrisann Brennan',1,5),(321697,8447,'John Sculley',2,6),(321697,72873,'Andy Hertzfeld',2,7),(321697,1419742,'Lisa Jobs (5 Years Old)',1,8),(321697,235416,'Andrea Cunningham',1,9),(321697,1255902,'Avie Tevanian',0,10),(321697,40543,'Joel Pforzheimer',2,11),(321697,6585,'Lisa Jobs (19 Years Old)',1,12),(321697,928577,'Bill Martin',0,13),(321697,1576420,'1998 Launch Attendee (uncredited)',1,14),(321697,1576421,'Stage Hand (uncredited)',0,15),(321697,1576458,'Straggler (uncredited)',1,16),(321697,1648751,'Lisa Brennan (9)',1,17),(321697,1652785,'Mike Markkula',0,18),(321697,1652786,'George Coates',0,19),(321697,1652788,'Jandali',0,20),(38665,1062,'Maj. Bartholomew \'Butch\' Cavendish',2,0),(38665,2454,'Sheriff Wiatt',2,1),(38665,12853,'Amy Striker',1,2),(38665,4765,'President Ulysses S. Grant',2,3),(38665,20361,'Ranger Captain Dan Reid',2,4),(38665,30619,'Ranger Collins',2,5),(38665,5605,'Wild Bill Hickok',2,7),(38665,44688,'Young John Reid',0,8),(38665,1362785,'Lucas Striker',0,9),(38665,1567101,'The Lone Ranger / John Reid',0,10),(38665,175468,'Tonto',2,11),(38665,980378,'Gen. George A. Custer',2,12),(38665,1567102,'Buffalo Bill Cody',0,13),(38665,14870,'Woman (uncredited)',1,14),(146227,569,'Brent Magna',2,0),(146227,77948,'The Kid',1,1),(146227,10127,'The Voice',2,2),(146227,652,'The Man (voice)',0,3),(146227,27422,'Distinguished man',2,4),(146227,105173,'Leanne',1,5),(146227,1000981,'Henchman #1',0,6),(146227,105834,'Henchman #2',2,7),(146227,94699,'Henchman #3',2,8),(146227,1270921,'Thug',2,9),(146227,90112,'Detective',0,10),(146227,60653,'Thug',0,11),(68924,8945,'Ben Hood',2,0),(68924,11148,'Elena Hood',1,1),(68924,10205,'Janey Carver',1,2),(68924,15319,'George Clair',2,3),(68924,2219,'Paul Hood',2,4),(68924,6886,'Wendy Hood',1,5),(68924,109,'Mikey Carver',2,6),(68924,46530,'Sandy Carver',0,7),(68924,38582,'Francis Davenport',2,8),(68924,2977,'Jim Carver',2,9),(68924,20879,'Dorothy Franklin',1,10),(68924,170060,'Ted Shackley',2,11),(68924,171652,'Philip Edwards',2,12),(68924,107462,'Mrs. Gadd',1,13),(68924,3897,'Libbets Casey',1,14),(68924,13023,'Dr. Pasmier',1,15),(253235,3392,'Oren Little',2,0),(253235,3092,'Leah',1,1),(253235,1186840,'Sarah',1,2),(253235,1251573,'Selena',0,3),(253235,36926,'Claire',1,4),(253235,204367,'Club owner',0,5),(253235,1327294,'Ted Westburg',0,6),(253235,1327295,'Paramedic',1,7),(253235,1855403,'Paramedic',2,8),(253235,1327296,'Rita',1,9),(253235,60195,'David Shaw',2,10),(253235,1224384,'Russell',0,11),(253235,1327297,'Dylan',0,12),(253235,3026,'Artie',2,13),(253235,24291,'Kate',1,14),(253235,5370,'Kyle',0,15),(253235,1110925,'Peter',0,16),(253235,1496672,'Caleb',2,17),(253235,1795332,'Receptionist',1,18),(253235,60033,'Kennedy',1,19),(253235,1475960,'Luke',0,20),(253235,176822,'Jason',0,21),(253235,1698872,'Ray',0,22),(253235,1522168,'Rashida',0,23),(253235,164382,'Reggie',0,24),(253235,1795363,'Mario',2,25),(253235,1671572,'Le Duc',2,26),(253235,1795364,'Waitress',1,27),(253235,1855398,'Leah\'s Bassist',0,28),(253235,1205623,'Real Estate Agent (uncredited)',0,29),(253235,1784545,'Sarabeth Little (uncredited)',1,30),(253235,130843,'Twister Rider at Amusement Park (uncredited)',0,31),(253235,1855401,'Le Duc\'s wife (uncredited)',0,32),(36811,5530,'Valentin Bulgakov',2,0),(36811,290,'Leo Tolstoy',2,1),(36811,15735,'Sofya Tolstoya',1,2),(36811,13242,'Vladimir Chertkov',2,3),(36811,37058,'Sasha Tolstoy',1,4),(36811,62105,'Masha',1,5),(36811,14432,'Sergeyenko',2,6),(36811,116312,'Reporter',0,7),(36811,54464,'Andrey Tolstoy',2,8),(36811,26860,'Dushan',2,10),(130150,16851,'Frank Chambers',2,0),(130150,204,'Adele Wheeler',1,1),(130150,117885,'Henry Wheeler',2,2),(130150,2219,'Older Henry Wheeler',2,3),(130150,995198,'Young Frank Chambers',2,4),(130150,1094091,'Mandy',1,5),(130150,9048,'Gerald',2,6),(130150,19210,'Officer Treadwell',2,7),(130150,18999,'Mr. Jervis',2,8),(130150,31649,'Evelyn',1,9),(130150,965550,'Eleanor',1,10),(130150,87669,'Marjorie',1,11),(130150,1105079,'Richard',2,12),(130150,1647302,'Barry',2,13),(130150,112476,'Henry at 16',0,14),(130150,968746,'Officer Benson',2,15),(130150,1278724,'Young Rachel McCann',1,16),(130150,1175452,'',1,17),(130150,111116,'Bank Manager',2,18),(245703,335,'Roy Tomlin',2,0),(245703,1274508,'Alton Meyer',2,1),(245703,33192,'Lucas',2,2),(245703,205,'Sarah Tomlin',1,3),(245703,1023139,'Agent Sevier',2,4),(245703,60875,'Elden',2,5),(245703,9880,'Calvin Meyer',2,6),(245703,87954,'Levi',0,7),(245703,1133063,'Sharon Davison',0,8),(245703,167564,'Agent Miller',0,9),(245703,1049830,'Linda (NSA Staffer)',1,10),(245703,121718,'Doak',2,11),(245703,62784,'Agent Cole',0,12),(245703,555652,'Caroline (Ranch Member)',1,13),(245703,144160,'Fredrick (Ranch Member)',2,14),(245703,1460711,'Hannah (Ranch Member)',1,15),(245703,141765,'Merrianne (Doak\'s Wife)',0,16),(245703,1085709,'Jane Adams (Sarah\'s Mother)',1,17),(245703,177403,'Military Officer',2,18),(245703,1291848,'Motel Clerk',0,19),(245703,1609622,'Woman at Truckstop',1,20),(245703,29932,'FBI Agent #1',0,21),(245703,1374150,'FBI Agent #2',2,22),(245703,31528,'Prison FBI Agent',0,23),(245703,60874,'Oil Worker',2,24),(245703,1609623,'Local Newscaster #1',2,25),(245703,1609624,'Local Newscaster #2',1,26),(245703,1411644,'Soldier at Roadblock',0,27),(245703,1609625,'Texas State Trooper',2,28),(245703,97446,'Base Commander',2,29),(245703,1514160,'Nancy Grace',1,30),(245703,1227167,'Lynn Berry',1,31),(245703,1485541,'Stand in (uncredited)',2,32),(245703,570706,'FBI Agent (uncredited)',0,33),(245703,1158069,'National Guardsman (uncredited)',0,34),(245703,1639803,'Car Crash Victim (uncredited)',1,35),(127560,225692,'Young Eric',2,0),(127560,5472,'Eric',2,1),(127560,1640,'Finlay',2,2),(127560,201391,'Sutton',0,3),(127560,2227,'Patti',1,4),(127560,1380467,'Burton',0,5),(127560,1380499,'Young Nagase',2,6),(127560,1380509,'Withins',0,7),(127560,1014587,'Major York',0,8),(127560,1205488,'Thorlby',0,9),(127560,589650,'Young Finlay',2,10),(127560,1205492,'Jackson',0,11),(127560,1615809,'Japanese Officer',0,12),(127560,1380553,'Removal Man',2,13),(127560,969316,'Baliff',2,14),(127560,75748,'Japanese NCO',0,15),(127560,1380560,'Hank the Yank',0,16),(127560,1380561,'Doctor Rogers',0,17),(127560,1380562,'Japanese Mechanic',0,18),(127560,113650,'Pump Operator',2,19),(127560,1380563,'Japanese Engineer',0,20),(127560,1381317,'Cook',0,21),(127560,1381318,'Japanese Sergeant',0,22),(127560,1381319,'Sakamoto',0,23),(127560,83283,'Kempai Officer',0,24),(127560,9195,'Nagase',0,25),(127560,59119,'Captain Thompson',0,26),(127560,1205489,'Thug Sergeant',0,27),(127560,1381322,'Australian Soldier',0,28),(127560,1381328,'Nurse',1,29),(127560,3069,'Mother',1,30),(127560,1086523,'British Trooper POW (uncredited)',0,31),(127560,152523,'Memsahib (uncredited)',1,32),(127560,1163445,'Japanese Guard (uncredited)',2,33),(37903,54948,'Marie-Louise, die Baronin',1,0),(37903,8198,'Baron',2,1),(37903,3934,'The Pastor',2,2),(37903,71374,'Lehrer',2,3),(37903,119065,'Eva',1,4),(37903,19123,'Frau Wagner, die Hebamme',1,5),(37903,119067,'Sigmund',0,6),(37903,119068,'Adolf',0,7),(37903,39249,'Klara',1,8),(37903,119070,'Martin',2,9),(37903,4618,'Anna, Frau des Pastors',1,10),(37903,11610,'Gutsverwalter',2,11),(37903,65054,'Arzt',2,12),(37903,544666,'Anna, Tochter des Arztes',1,13),(37903,5844,'Evas Vater',2,14),(37903,8800,'Frieda',1,15),(37903,10243,'Leichenwu00e4scherin',1,16),(37903,1643968,'Hauslehrer',2,17),(37903,119071,'Gustav',0,18),(37903,113769,'Margarete',0,19),(37903,26498,'Erzu00e4hler (Stimme)',2,20),(37903,4619,'Frau des Gutsverwalters',1,21),(37903,932217,'Erna',0,22),(37903,1597840,'Georg',0,23),(37903,105775,'Ferdinand',2,24),(37903,1193213,'Rudolf',0,25),(37903,1857277,'Karli',0,26),(37903,67010,'Bauer',2,27),(37903,13738,'Bauer (Stimme)',0,28),(37903,550554,'Max',2,29),(37903,45948,'Karl',0,30),(37903,1857280,'Else',0,31),(37903,1332652,'Sophie',1,32),(37903,1857282,'Paula',0,33),(37903,1857284,'Kurti',0,34),(37903,1857285,'Willi',0,35),(37903,1169516,'Evas Mutter',0,36),(37903,1134831,'Schulkind',0,37),(37903,1857288,'Schulkind',0,38),(37903,1742262,'Schulkind',0,39),(37903,1857290,'Schulkind',0,40),(37903,1857291,'Schulkind',0,41),(37903,1001676,'Schulkind',0,42),(37903,1857293,'Schulkind',0,43),(37903,1857294,'Schulkind',0,44),(37903,1857296,'Schulkind',0,45),(37903,1857298,'Schulkind',0,46),(37903,1742260,'Schulkind',0,47),(37903,1857299,'Schulkind',0,48),(37903,1857300,'Schulkind',0,49),(37903,1857301,'Schulkind',0,50),(37903,1857302,'Schulkind',0,51),(37903,1857303,'Schulkind',0,52),(37903,1857304,'Schulkind',0,53),(37903,1857305,'Schulkind',0,54),(37903,1857306,'Schulkind',0,55),(37903,1715683,'Schulkind',0,56),(37903,1857307,'Schulkind',0,57),(37903,1857308,'Schulkind',0,58),(37903,1857309,'Schulkind',0,59),(37903,1161728,'Polizist',2,60),(37903,45953,'Kriminalbeamter',2,61),(37903,1724512,'Kriminalbeamter',2,62),(37903,1857312,'italienisches Kindermu00e4dchen',0,63),(37903,1817655,'Dienstmu00e4dchen',0,64),(37903,548167,'Fritz',0,65),(37903,1857313,'Arbeiter',0,66),(37903,36463,'Bauer',2,67),(37903,1857314,'Bauer',0,68),(37903,1603081,'Gastarbeiter',0,69),(37903,1210136,'Gastarbeiter',0,70),(37903,1857315,'Gastarbeiter',0,71),(37903,1857316,'Gastarbeiter',0,72),(37903,1067143,'Gastarbeiter',0,73),(37903,1322082,'Mu00e4dchen beim Erntefest',0,74),(37903,1857317,'Mu00e4dchen beim Erntefest',0,75),(37903,1857318,'Mu00e4dchen beim Erntefest',0,76),(37903,1857319,'Musiker',0,77),(37903,1857320,'Musiker',0,78),(37903,1857321,'Musiker',0,79),(37903,1857322,'Musiker',0,80),(37903,1857323,'Musiker',0,81),(37903,111762,'Evas Schwester',0,82),(37903,1857324,'Dorfbewohner',0,83),(396152,1615805,'Rebecca Jordan',0,1),(396152,1615806,'Todd Jordan',0,2),(396152,12714,'Harold',2,3),(396152,58793,'Fancine',1,4),(193613,122889,'Trip',2,0),(193613,37698,'Tall Man',2,1),(193613,57637,'Himself',0,2),(193613,69230,'Himself',2,3),(193613,69231,'Himself',2,4),(193613,1223435,'Big Man',0,5),(193613,69233,'Himself',2,6),(43434,25616,'Ilich Ramu00edrez Su00e1nchez (\'Carlos\')',2,0),(43434,16811,'Johannes Weinrich',2,1),(43434,67345,'Michel Moukharbel',0,2),(43434,139161,'Magdalena Kopp',0,3),(43434,1117770,'Kamal al-Issawi (\'Ali\')',0,4),(43434,134417,'Wadie Haddad',0,5),(43434,71514,'Hans-Joachim Klein (\'Angie\')',0,7),(43434,53435,'Anis Naccache (\'Khalid\')',0,8),(43434,2339,'Gabriele Kru00f6cher-Tiedemann (\'Nada\')',1,9),(43434,1117771,'Gu00e9nu00e9ral al-Khouly',0,10),(43434,1117772,'\'Joseph\'',0,11),(43434,1117773,'Wilfred Bu00f6se (\'Boni\')',0,12),(43434,1117774,'\'Youssef\'',0,13),(43434,1117775,'Colonel Hau00eftham Sau00efd',0,14),(43434,2343,'Brigitte Kuhlmann',1,15),(43434,1117776,'Cheikh Yamani',0,16),(43434,1117777,'Riyadh el-Azzawi',0,17),(43434,134416,'Dr. Valentu00edn Hernu00e1ndez',0,18),(43434,1117778,'Irak Agent',0,19),(43434,49204,'Edith Heller',1,20),(43434,38371,'Inge Viett',1,21),(43434,6264,'Bruno Kreisky',2,22),(43434,1128383,'Amie de Carlos',1,23),(69848,13022,'Captain John Riley',2,1),(69848,22462,'Cortina',2,2),(69848,1244058,'Marta',0,3),(69848,11889,'Col. Benton Lacy',2,4),(69848,18993,'Corporal Kenneally',2,5),(69848,1384967,'Paddy Noonan',2,6),(69848,111837,'Brian Athlone',0,7),(69848,1219524,'Cpl. Schultz',0,8),(69848,210065,'Seamus McDougherty',0,9),(69848,109667,'Daniel Grzbalski',2,10),(69848,29459,'General Winfield Scott',2,11),(69848,16433,'General Zachary Taylor',2,12),(69848,33712,'Dominguez',2,13),(69848,537,'Captain Gaine',2,14),(69848,1479557,'Seamus Fitzgerald',0,15),(332411,8891,'Stanley Hill',2,0),(332411,22227,'Dennis',2,1),(332411,28412,'Vivian Hill',1,2),(332411,65871,'Abbie',1,3),(332411,117437,'Governor Meserve',0,4),(332411,131006,'Det. Gibson',2,5),(332411,37149,'Charley',2,6),(332411,1610300,'Katya',1,7),(332411,1502244,'Rosa',0,8),(332411,1473959,'News Reporter',1,9),(332411,78335,'Lemi K',2,10),(332411,1375146,'Crew #1',0,11),(75638,10205,'Margaret Matheson',1,0),(75638,380,'Simon Silver',2,1),(75638,2037,'Tom Buckley',2,2),(75638,550843,'Sally Owen',1,3),(75638,13014,'Paul Shackleton',2,4),(75638,20810,'Monica Handsen',1,5),(75638,79124,'Dana',1,6),(75638,104561,'Ben',2,7),(75638,39659,'Benedict Cohen',0,8),(75638,990278,'Judi Cale',0,9),(75638,440879,'David Matheson',2,10),(75638,19803,'Palladino',2,11),(75638,17356,'Howard McColm',2,12),(75638,495384,'Traci Northrop',0,13),(75638,1394373,'Susan Sidgwick',0,14),(75638,59039,'Jim Carroll',2,15),(75638,174708,'Corrine',1,16),(75638,1026218,'TV Boy',0,17),(290555,117642,'Conner',2,1),(290555,429,'Cayden Richards',2,2),(290555,95638,'Wild Joe',2,3),(290555,230,'John Tollerman',2,4),(290555,543990,'Angelina Timmins',1,5),(290555,70441,'Clara Tollerman',1,6),(290555,207491,'Gail Timmins',1,7),(290555,563643,'Lisa Stewart',1,8),(175541,2178,'Reverend Cornell Cobbs',2,0),(175541,9780,'Aretha Cobbs',1,1),(175541,15565,'Naima',1,2),(175541,8169,'Loot / Tyson',2,3),(175541,512316,'Langston',0,4),(175541,84933,'Platinum Fro',1,5),(175541,104779,'Street Prophet (Isaiah)',2,6),(175541,6198,'Pawnbroker',2,7),(175541,1085146,'Kyle',0,11),(241254,62,'Omar',2,0),(241254,12261,'Paul',2,1),(241254,3036,'Sam',2,2),(241254,84698,'Angela',1,3),(241254,137424,'Beth',1,4),(241254,112013,'Mark',2,5),(241254,62644,'The Pharmacy',2,6),(241254,1280,'Riley',2,7),(241254,139197,'Wilson',0,8),(241254,1363621,'Rachel',1,9),(241254,66579,'Susan',1,10),(241254,125332,'Jimmy',2,11),(241254,1363622,'Janine',0,13),(241254,1363623,'Justin',0,14),(241254,51670,'Frank',2,15),(241254,1388479,'Eddie',0,16),(241254,1388480,'Mitch',0,17),(241254,1388482,'Brickyard Bouncer',0,18),(241254,1006733,'Candice',1,19),(241254,1388484,'Facetime Stranger',0,20),(241254,1388485,'Junky Girlfriend',0,21),(241254,1388486,'Omar\'s Head of Security',0,22),(241254,1113450,'Bartender',2,23),(241254,1267285,'Meagan',0,24),(241254,1561814,'Sara (uncredited)',0,25),(193893,543505,'Ryan Davis',2,0),(193893,87822,'Justin Chang',2,1),(193893,19961,'Josie',1,2),(193893,71403,'Officer Segars',2,3),(193893,19655,'Porter',2,4),(193893,298410,'Pupa',2,5),(193893,1271,'Brolin',2,6),(193893,1251286,'Todd Cutler',2,7),(193893,118754,'Georgie',2,8),(193893,1214835,'Annie',1,9),(193893,174133,'Lydia',1,10),(193893,1094160,'Little Joey',0,11),(193893,80618,'Jackson',0,12),(193893,232749,'Pasha',0,13),(193893,1381388,'Goran',0,14),(193893,56448,'Leka',2,15),(193893,118593,'',0,16),(193893,1381389,'Misha',0,17),(193893,1381393,'Dave',0,18),(193893,1381394,'Creative Executive #1',0,19),(193893,1371098,'Creative Executive #2',0,20),(193893,1381396,'Creative Executive #3',0,21),(193893,1381406,'Female Kiss-Ass Executive',0,22),(193893,1381473,'Gorgeous Woman',0,23),(193893,1381474,'Precious',0,24),(193893,1370799,'JaQuandae',0,25),(193893,1044954,'Tough Guy',2,26),(193893,1381475,'Samoan Guy',0,27),(193893,1381476,'Mississippi Kid',0,28),(193893,1381477,'Upset Kid',0,29),(193893,1381478,'8th Grader',0,30),(193893,1272952,'Ron',0,31),(193893,97845,'Father',0,32),(193893,1381479,'Wife #1',0,33),(193893,1381480,'Wife #2',0,34),(193893,1381481,'Husband #1',0,35),(193893,1381491,'Husband #2',0,36),(193893,1381492,'Old Teammate #1',0,37),(193893,1381493,'Old Teammate #2',0,38),(193893,558899,'Mike',0,39),(193893,1381494,'Paul',0,40),(193893,1205578,'Hot Bachelorette',0,41),(193893,1381627,'Frozen Wife',1,42),(193893,1381628,'Frozen Husband',0,43),(193893,1381630,'Frozen Guy #1',0,44),(193893,1083987,'Frozen Guy #2',0,45),(193893,163839,'Punk Skateboarder',0,46),(193893,1381649,'Dude #1',0,47),(193893,1381651,'Dude #2',0,48),(193893,1381663,'Bachelorette #1',0,49),(193893,1381665,'Bachelorette #2',0,50),(193893,1381670,'Bachelorette #3',0,51),(193893,1381671,'Bachelorette #4',0,52),(193893,1381672,'Bachelorette #5',0,53),(193893,1381673,'Receptionist',0,54),(193893,1381675,'Random Neighbor',0,55),(193893,1381688,'Random Neighbor\'s Wife',0,56),(193893,128207,'Angie',1,57),(193893,983700,'Pupa\'s Rival',2,58),(193893,113506,'Basement Sergeant',0,59),(193893,1381695,'Clipboard Girl',0,60),(193893,1381698,'Officer Thomas',0,61),(193893,172156,'Officer Kaplan',0,62),(193893,1264,'Police Captain',2,63),(193893,1381706,'Tattooed Gangster',0,64),(193893,1381712,'Commercial Actor #1',0,65),(193893,1381720,'Commercial Actor #2',0,66),(193893,1381721,'Commercial Actor #3',0,67),(193893,80634,'Old Lady',1,68),(193893,1254366,'Pizza Guy',0,69),(193893,1381725,'Expensive Car Guy',0,70),(193893,1381726,'The Real Chang',0,71),(193893,208316,'Asian Tourist (uncredited)',0,72),(193893,1285499,'Sunset Strip Girl (uncredited)',0,73),(146304,18288,'Quentin',2,0),(146304,6195,'Julian Murch',2,1),(146304,9779,'Lance Sullivan',2,2),(146304,5411,'Robyn',1,3),(146304,17637,'Harper Stewart',2,4),(146304,35705,'Candace',1,5),(146304,9781,'Jordan Armstrong',1,6),(146304,32646,'Mia Morgan',1,7),(146304,75696,'Shelby',1,8),(146304,8265,'Stan',2,9),(146304,55541,'Brian',2,10),(146304,1274210,'Hope',1,11),(41439,2144,'Jigsaw / John',2,0),(41439,36055,'Mark Hoffman',2,1),(41439,22434,'Jill Tuck',1,2),(41439,2130,'Dr. Lawrence Gordon',2,3),(41439,54789,'Bobby Dagen',2,4),(41439,33336,'Joyce',1,5),(41439,1241157,'Simone',1,6),(41439,231,'Mallick',2,7),(41439,86397,'Gibson',2,8),(41439,108661,'Evan',2,9),(38117,61363,'Kyle Kingson',2,0),(38117,67599,'Lindy Taylor',1,1),(38117,67849,'Kendra Hilferty',1,2),(38117,64908,'Zola Davies',0,3),(38117,41686,'Will Fratalli',2,4),(38117,118545,'Sloan Hagen',1,5),(38117,2681,'Trey Madison',0,6),(38117,23119,'Rob Kingson',2,7),(38117,119708,'Dr. Davis',2,8),(38117,114144,'Victor Barrel',0,9),(38117,119706,'Male Teacher',0,10),(38117,119707,'Student at Green Party',2,11),(38117,119709,'Halloween Partygoer',1,12),(38117,119710,'Victor\'s Brother',0,13),(38117,96596,'Lindy\'s Father',2,14),(38117,1602194,'Junkie',2,15),(38117,112463,'Student',2,16),(38117,156990,'Rob\'s Assistant',1,17),(38117,1691692,'Student (uncredited)',1,18),(38117,1691695,'Student (uncredited)',2,19),(38117,1679368,'Shopper (uncredited)',1,20),(228203,1269,'Jim White',2,0),(228203,1557921,'Danny Diaz',0,1),(228203,1116973,'Thomas Valles',0,2),(228203,1354957,'Jose Cardenas',2,3),(228203,1557923,'David Diaz',0,4),(228203,1557925,'Johnny Sameniego',0,5),(228203,1557926,'Victor Puentes',0,6),(228203,1557927,'Damacio Diaz',0,7),(228203,34488,'Seu00f1ora Diaz',1,8),(228203,205349,'Seu00f1or Diaz',2,9),(228203,6321,'Principal Camillo',2,10),(228203,56733,'Sammy Rosaldo',2,11),(228203,49,'Cheryl White',1,12),(228203,109868,'Julie White',1,13),(228203,122851,'Jamie White',1,14),(228203,55392,'Lupe',1,15),(228203,59674,'Ernesto Valles',2,16),(228203,235782,'Maria Marisol',1,17),(228203,1557932,'Laura',0,18),(228203,1448904,'Javi',0,19),(228203,1693947,'Seu00f1ora Valles',1,20),(228203,1557933,'Coach Jenks',0,21),(228203,64351,'Dale Padilla',2,22),(228203,143205,'Coach Jameson',2,23),(228203,200065,'Sonia Rosaldo',1,24),(228203,1371007,'Eddie',0,25),(228203,1557934,'Lola Valles',0,26),(228203,1352677,'Clovis Coach',0,27),(228203,101300,'Race Official (State)',2,28),(228203,1557935,'Park Aide',0,29),(228203,1381981,'Fitz Mitchell',2,30),(228203,188024,'Brandon',2,31),(228203,1411525,'Hunter - Centennial Runner',0,32),(228203,1557936,'Blowdry - Stevens Creek Runner',0,33),(228203,169615,'Centennial Coach',2,34),(228203,1557937,'Seu00f1ora Soto',0,35),(228203,1085677,'Palo Alto Runner #1',2,36),(228203,1493424,'Palo Alto Runner #2',0,37),(228203,1557938,'Starter (Race #1)',0,38),(228203,1557939,'Stevens Creek Coach',2,39),(228203,1236050,'Principal Camillo\'s Assistant',0,40),(228203,1557940,'School Librarian',0,41),(228203,1557941,'Young Cholo',0,42),(228203,1557942,'Player #1',0,43),(228203,1557943,'Player #2',0,44),(228203,1282221,'Flirting Girl #1',0,45),(228203,1557944,'Flirting Girl #2',0,46),(228203,1557945,'Grandmother Valles',0,47),(228203,1527200,'Centennial Assistant Coach',0,48),(228203,1557955,'Morro Bay Coach',0,49),(228203,1557956,'Palo Alto Assistant Coach',0,50),(228203,1557957,'Mariachi Band',0,51),(228203,1557958,'Mariachi Singer',0,52),(228203,228438,'Teacher (uncredited)',0,53),(228203,928347,'Low Rider Cover Girl (uncredited)',0,54),(41382,58197,'Kevin Carson',0,0),(41382,53336,'Benny',2,1),(41382,101519,'Stacie',1,2),(41382,18284,'Grandma',1,3),(41382,1037299,'Nikki Swayze',0,4),(41382,9778,'Mr. Washington',2,5),(41382,65827,'Sweet Tee',2,6),(41382,53256,'Jimmy the Driver',2,7),(41382,51944,'Reverend Taylor',2,8),(41382,17840,'Semaj',2,9),(41382,77896,'Giovanni',2,10),(41382,81683,'Lorenzo',2,11),(41382,59569,'Malik',2,13),(41382,130689,'Deangelo',2,14),(41382,168452,'Tasha',1,15),(41382,1214427,'Doug',2,16),(41382,1686957,'Reporter',1,17),(41382,121847,'Crowd Member (voice)',1,18),(114150,84223,'Beca Mitchell',1,0),(114150,73128,'Jesse Swanson',2,1),(114150,29221,'Chloe Beale',1,2),(114150,221098,'Aubrey Posen',1,3),(114150,221581,'Fat Amy',1,4),(114150,1107296,'Benji Applebaum',2,5),(114150,212604,'Bumper Allen',2,6),(114150,999790,'Stacie Conrad',1,7),(114150,1072572,'Cynthia-Rose Adams',1,8),(114150,1107297,'Lilly Onakuramara',1,9),(114150,9281,'Gail Abernathy-McKadden',1,10),(114150,8265,'John Smith',2,11),(114150,21179,'Dr. Mitchell',2,12),(114150,54691,'Tommy',2,13),(114150,234934,'Luke',2,14),(114150,1107298,'Jessica',1,15),(114150,550117,'Denise',0,16),(114150,1107299,'Ashley',1,17),(114150,1107300,'Mary Elise',1,18),(114150,1107301,'Kori',0,19),(114150,929511,'Donald',2,20),(114150,1107304,'Unicycle',0,21),(114150,210389,'Kolio',2,22),(114150,1107305,'Kimmy Jin',0,23),(114150,145131,'Justin',2,24),(114150,1347277,'Timothy',0,25),(114150,1188269,'Football Player - ATO',0,26),(114150,1347281,'Frat Boy - ATO',0,27),(114150,144843,'Emcee at Regionals',0,28),(114150,1347282,'UMass Greeter',0,29),(114150,1108829,'Tom',0,30),(114150,588972,'Alice',0,31),(114150,1347283,'Barb',0,32),(114150,1347284,'RIAC Representative #1',0,33),(114150,1347285,'RIAC Representative #2',0,34),(114150,1347286,'Jewish Student',0,35),(114150,1265767,'High Note #1',2,36),(114150,21131,'Clef #1',2,37),(114150,1107306,'Clef #2',0,38),(114150,185805,'Clef #3',0,39),(114150,49002,'Clef #4',2,40),(114150,109790,'Emcee - Opening',0,41),(114150,990136,'Emcee at Semi-Finals',2,42),(114150,1347288,'Treble #1',0,43),(114150,1347289,'Treble #2',0,44),(114150,1347290,'Treble #3',0,45),(114150,1347291,'Treble #4',0,46),(114150,1347292,'Treble #5',0,47),(114150,1347293,'Opening Treble #1',0,48),(114150,1347294,'Opening Treble #2',0,49),(114150,1347295,'High Note #2',0,50),(114150,1347296,'High Note #7',0,51),(114150,1347297,'BU Harmonics #1',0,52),(114150,1347298,'BU Harmonics #2',0,53),(114150,1347299,'BU Harmonics #3',0,54),(114150,1044197,'BU Harmonics #4',1,55),(114150,1347301,'BU Harmonics #5',0,56),(114150,1347302,'BU Harmonics #6',0,57),(114150,1347303,'BU Harmonics #7',0,58),(114150,1347304,'BU Harmonics #8',0,59),(114150,1347305,'Opening Bellas #1',0,60),(114150,1347307,'Opening Bellas #3',1,61),(114150,1347309,'Opening Bellas #3',0,62),(114150,1347310,'Opening Bellas #5',1,63),(114150,1347311,'Opening Bellas #6',0,64),(114150,1347312,'Opening Bellas #7',0,65),(114150,1347313,'Opening Bellas #8',0,66),(114150,1347316,'Sockapella #1',0,67),(114150,1290615,'Sockapella #2',0,68),(114150,1347318,'Sockapella #3',0,69),(114150,1347319,'Sockapella #4',0,70),(114150,1347320,'Sockapella #5',0,71),(114150,1347321,'Sockapella #6',0,72),(114150,1290572,'Footnote #2',0,73),(114150,1347322,'Footnote #3',0,74),(114150,1290585,'Footnote #4',0,75),(114150,1290642,'Footnote #6',0,76),(114150,1290569,'Footnote #7',0,77),(114150,1347326,'Footnote #8',0,78),(114150,1347327,'Footnote #9',0,79),(114150,1347328,'Footnote #10',0,80),(114150,1347329,'Footnote #11',0,81),(114150,1347330,'Footnote #12',0,82),(114150,1347331,'Footnote #13',0,83),(114150,1347332,'Hullabahoo #1',0,84),(114150,1347333,'Hullabahoo #2',0,85),(114150,1347334,'Hullabahoo #3',0,86),(114150,1347335,'Hullabahoo #4',0,87),(114150,1347336,'Hullabahoo #5',0,88),(114150,1347337,'Hullabahoo #6',0,89),(114150,1347339,'Hullabahoo #7',0,90),(114150,1347340,'Hullabahoo #8',0,91),(114150,1347341,'Hullabahoo #9',0,92),(114150,1347342,'Hullabahoo #10',0,93),(114150,1347343,'Hullabahoo #11',0,94),(114150,1347344,'Hullabahoo #12',0,95),(114150,1347345,'Hullabahoo #13',0,96),(114150,1347346,'Hullabahoo #14',0,97),(114150,1347347,'Hullabahoo #15',0,98),(114150,1347348,'Hullabahoo #16',0,99),(114150,1347349,'Rapper #1',0,100),(114150,1347350,'ND Auditioner #1',0,101),(114150,1347352,'ND Auditioner #2',0,102),(114150,1347354,'ND Auditioner #3',0,103),(114150,1347355,'ND Auditioner #4',0,104),(114150,1347356,'ND Auditioner #5',0,105),(114150,1347357,'ND Auditioner #6',0,106),(114150,1347358,'ND Auditioner #7',0,107),(114150,1347360,'ND Auditioner #9',0,108),(114150,1347362,'Beatboxer',0,109),(114150,1347364,'Male Voice #1',0,110),(114150,1347366,'Male Voice #2',0,111),(114150,1347367,'Male Voice #3',0,112),(114150,1347368,'Male Voice #4',0,113),(114150,1347370,'Male Voice #6',0,114),(114150,567614,'Female Voice #1',0,115),(114150,1347372,'Female Voice #2',0,116),(114150,1347373,'Female Voice #3',0,117),(114150,1347374,'Female Voice #4',0,118),(114150,1347375,'Female Voice #5',0,119),(114150,1347376,'Female Voice #6',0,120),(114150,1347377,'Female Voice #7',0,121),(114150,1226023,'Howie - ATO',0,122),(114150,1128522,'Opening Bellas #2',1,123),(114150,1326322,'Opening Bellas #9 / Footnote #5',1,124),(109428,530618,'Mia Allen',1,0),(109428,79795,'David Allen',2,1),(109428,17441,'Eric',2,2),(109428,51989,'Olivia',1,3),(109428,1046233,'Natalie',1,4),(109428,196780,'Harold',2,5),(109428,11357,'Ash',2,6),(109428,211412,'Demon (voice)',0,7),(109428,28032,'',0,8),(109428,11462,'',1,9),(109428,1478080,'',0,10),(109428,1478081,'',0,11),(109428,1424808,'',0,12),(109428,1182202,'',0,13),(58048,3125,'Gloria Tatlock',1,0),(58048,2228,'Glendon Wasey',2,1),(58048,652,'Walter Faraday',0,2),(58048,10983,'Willie Tuttle',2,3),(58048,2249,'Joe Go',2,4),(58048,26667,'Justin Kronk',2,5),(58048,1885209,'Mei Gan',0,6),(58048,1885210,'China Doll',0,7),(58048,11395,'Ho Chong',2,8),(58048,1708458,'Yamagani San',0,9),(58048,14815,'Mr. Burns',2,10),(58048,1243384,'China Doll\'s Maid',0,11),(58048,1885211,'Wu Ch\'En She',0,12),(58048,1885212,'Rickshaw King',0,13),(58048,1885214,'China Doll\'s Boatman',0,14),(255343,1121,'Pablo Escobar',2,0),(255343,27972,'Nick',2,1),(255343,55493,'Dylan',2,2),(255343,1261473,'Maria',0,3),(255343,78882,'Drago',2,4),(255343,228714,'Anne',1,5),(255343,87265,'Roldano Brother',0,6),(255343,1512786,'Maria Victoria',0,7),(255343,994153,'Christo',0,8),(79694,45827,'Kelly',1,0),(79694,60898,'Ben Curtis',2,1),(79694,10993,'Patrick',2,2),(79694,78430,'Lydia',1,3),(79694,220232,'Greg',2,4),(79694,123532,'Mike',2,5),(79694,212702,'Maggie',0,6),(79694,587805,'Fast Food Girl',0,7),(79694,587806,'Veterinarian',0,8),(79694,19280,'Mrs. Henley',1,9),(79694,141778,'Office Executive',2,10),(74643,56024,'George Valentin',2,0),(74643,82923,'Peppy Miller',1,1),(74643,1230,'Al Zimmer',2,2),(74643,2505,'Clifton',2,3),(74643,14698,'Doris',1,4),(74643,56890,'The Butler',2,5),(74643,1294,'Constance',1,6),(74643,5151,'Peppy\'s Maid',1,7),(74643,21523,'Peppy\'s Butler',2,8),(74643,155649,'Policeman Fire',2,9),(74643,6734,'Pawnbroker',2,10),(74643,74577,'Norma',1,11),(74643,91369,'Auctioneer',2,12),(74643,34398,'Policeman Tuxedo',2,13),(74643,42133,'Admiring Woman',1,14),(74643,19023,'Set Assistant',2,15),(74643,1194485,'Peppy\'s Boyfriend',0,16),(74643,1193414,'Peppy\'s Boyfriend',0,17),(74643,1194487,'Guard',0,18),(74643,104191,'Guard',2,19),(74643,1194488,'Audition Casting Assistant',0,20),(74643,104496,'Audition Dancer',0,21),(74643,1194493,'Audition Dancer',1,22),(74643,14801,'Napoleon',2,23),(74643,1346088,'Laughing Dancer',0,24),(74643,98664,'Laughing Dancer',1,25),(74643,59285,'Journalist',2,26),(74643,52043,'Director #1 (Restaurant)',2,27),(74643,1043304,'Director #2',2,28),(74643,156685,'Director #3 (Finale)',2,29),(74643,1493076,'Assistant Director (Finale)',2,30),(74643,61079,'Woman with Policeman',1,31),(74643,135852,'Assistant with Newspaper',0,32),(74643,956719,'Soldier',2,33),(74643,562583,'Tennis Player',2,34),(74643,1224851,'Doctor',2,35),(74643,12539,'Nurse at Peppy\'s House',1,36),(74643,54694,'Beggar',2,37),(74643,1570407,'Set Technician',2,38),(74643,1668087,'Peppy\'s Assistant',2,39),(74643,166976,'Zimmer\'s Assistant',1,40),(74643,1668533,'Zimmer\'s Assistant',2,41),(74643,1613748,'Zimmer\'s Assistant',2,42),(74643,1214395,'Bartender',2,43),(74643,1370953,'Thug #1',2,44),(74643,203950,'Thug #2',0,45),(74643,210344,'Onlooker',1,46),(74643,1226481,'Onlooker',2,47),(74643,1002466,'The Waiter (uncredited)',2,48),(74643,1048963,'Studio Engineer (uncredited)',2,49),(74643,1309433,'Make-Up Artist (uncredited)',1,50),(74643,1278367,'Mr. Sauveur (uncredited)',0,51),(74643,82159,'African (uncredited)',2,52),(74643,1084575,'Charleston Dancer (uncredited)',1,53),(74643,1337623,'Actor (uncredited)',2,54),(74643,1450547,'Film Crew Member (uncredited)',0,55),(74643,1513717,'Fan (uncredited)',1,56),(74643,1091366,'Michel (uncredited)',2,57),(74643,1452935,'Autograph Girl (uncredited)',1,58),(74643,1548521,'Film Clapper #1 (uncredited)',2,59),(74643,1302482,'Studio Executive (uncredited)',2,60),(74643,1465838,'Man in Restaurant (uncredited)',2,61),(74643,106669,'Flapper Starlet (uncredited)',1,62),(74643,1453555,'Violinist in Ballroom (uncredited)',2,63),(74643,1510692,'Man in Bed with Peppy (uncredited)',2,64),(74643,1185725,'Restaurant Manager (uncredited)',2,65),(74643,1668487,'1930\'s Studio Actress (uncredited)',1,66),(74643,1590610,'Silent Film Star (uncredited)',1,67),(74643,1668500,'Make-up Artist 1 (uncredited)',1,68),(83666,62,'Captain Sharp',2,0),(83666,819,'Scout Master Ward',2,1),(83666,929906,'Sam',2,2),(83666,929905,'Suzy',1,3),(83666,1532,'Mr. Bishop',2,4),(83666,3910,'Mrs. Bishop',1,5),(83666,12438,'The Narrator',2,6),(83666,3063,'Social Services',1,7),(83666,1037,'Commander Pierce',2,8),(83666,1105079,'Redford',2,9),(83666,17881,'Cousin Ben',2,10),(83666,1105080,'Lazy Eye',2,11),(83666,963684,'Gadge',2,12),(83666,1142686,'Skotak',0,13),(83666,12042,'Roosevelt',2,14),(318850,1465324,'Jesus',0,0),(318850,124760,'Mary',1,1),(318850,190908,'Joseph',2,2),(318850,48,'Severus',2,3),(318850,80860,'Herod',2,4),(318850,585365,'Seleni',0,5),(318850,1041731,'The Demon',2,6),(318850,1465323,'Eleazer\'s Mother',1,7),(318850,84706,'Eleazer\'s Father',0,8),(318850,145312,'Miriam',0,9),(318850,239921,'',1,10),(318850,1359547,'Optio',0,11),(318850,25099,'Cynical Stranger',0,12),(318850,138161,'Roman Squad Leader',0,13),(318850,11180,'Old Rabbi',2,14),(318850,28478,'Cleopas',0,15),(318850,76340,'Female Soothsayer',1,16),(39180,61981,'Murdoch',2,0),(39180,15234,'Gordon',2,1),(39180,57451,'Stephanie',1,2),(39180,60023,'Gino',2,3),(39180,97188,'Arliss (as Steven R. Schirripa)',0,5),(39180,18471,'Benny',2,6),(39180,7004,'Sonny Talia',2,7),(39180,116575,'Cassavettes (as Kim Hawthorne)',1,8),(39180,77117,'James',2,9),(49950,96625,'Sara Matthews',1,0),(49950,85825,'Rebecca Evans',1,1),(49950,55086,'Stephen',2,2),(49950,90033,'Tracy',1,3),(49950,34202,'Jason',2,4),(49950,81164,'Irene',1,5),(49950,159962,'Kim Johnson',1,6),(49950,1128314,'Kate',0,7),(49950,1128309,'Hunter',0,8),(49950,1128315,'Samantha Tangent',0,9),(49950,1954,'Professor Roberts',2,10),(49950,19961,'Maria',1,11),(49950,941,'Jeff Evans',2,12),(49950,3713,'Alison Evans',1,13),(49950,84217,'Frat Boy',2,14),(40160,738,'Dr. Paul Bradley',2,0),(40160,2769,'Tatiana Nikolaevna Donskaya',1,1),(40160,9857,'Harry Sherwood, NASA',2,2),(40160,32791,'Dr. Alexei Dubov',2,3),(40160,2641,'Major General Adlon',2,4),(40160,12726,'Sir Michael Hughes',2,5),(40160,4958,'The President',2,6),(40160,15413,'Secretary of Defense',2,7),(40160,121144,'General Easton',2,8),(40160,85146,'Rolf Manheim',2,9),(40160,1364849,'Jan Watkins',0,10),(40160,159798,'Alan Marshall',0,11),(40160,138255,'Bill Hunter',2,12),(40160,121759,'Sam Mason',0,13),(40160,1364850,'Peter Watson',0,14),(40160,200507,'Astronaut Tom Easton',0,15),(40160,167259,'Astronaut Bill Frager',2,16),(40160,152942,'Astronaut Michael McKendrick',2,17),(40160,1794,'Helen Bradley',1,18),(40160,19551,'Russian Premier',2,19),(40160,2249,'Yamashiro',2,20),(40160,29541,'Girl Skier',1,21),(152599,8293,'Ewa Cybulski',1,0),(152599,17604,'Orlando the Magician',2,1),(152599,73421,'Bruno Weiss',2,2),(152599,52776,'Belva',1,3),(152599,1142686,'Delivery Boy',0,4),(152599,20562,'Thomas MacNally',2,5),(152599,1182185,'Bandits Roost Tart',0,6),(152599,85143,'Magda Cybulska',1,7),(152599,515628,'Not Magda',1,8),(68727,5530,'Simon',2,0),(68727,1925,'Franck',2,1),(68727,5916,'Elizabeth',1,2),(68727,219737,'Dominic',0,4),(68727,165424,'Nate',0,5),(68727,89822,'Young Woman',1,6),(68727,578690,'Paramedic',0,7),(68727,1030253,'Dj',0,8),(68727,1030254,'MRI Technician',0,9),(68727,1030255,'New Client',0,10),(68727,937218,'Fireman',0,11),(68727,10701,'Surgeon',2,12),(68727,1182596,'Riz',0,13),(68727,1272656,'Francis Lemaitre',0,14),(68727,1563431,'Security Guard #1',0,15),(73935,5588,'Goody',0,0),(73935,78080,'Stacy',1,1),(73935,10205,'Cisserus',1,2),(73935,6105,'Danny',2,3),(73935,12900,'Dr. Van Helsing',2,4),(73935,56890,'Vlad',2,5),(73935,6212,'Renfield',2,6),(73935,21619,'Angela',1,7),(73935,13635,'Mrs. Van Helsing',1,8),(73935,151384,'Rita',1,9),(73935,258,'Diego Bardem',2,10),(73935,221018,'Joey',2,11),(73935,154091,'Professor Quincy',2,12),(73935,1572043,'Mary Anne Cachillo',0,13),(73935,176031,'Ivan',2,14),(73935,37043,'Pizza Guy',2,15),(73935,20301,'Vadim',2,16),(73935,164431,'Derek',0,17),(73935,9997,'Erik',2,18),(73935,167110,'Elderly Woman',0,19),(185567,114,'Brian Epkeen',2,0),(185567,2178,'Ali Sokhela',2,1),(185567,228372,'Dan Fletcher',0,2),(185567,1353810,'Ruby',0,3),(185567,113228,'Claire Fletcher',1,4),(185567,93916,'De Beer',2,5),(185567,1460325,'Cat',0,6),(185567,1460326,'Janet',0,7),(185567,1460327,'Zina',0,8),(185567,109653,'Dr. Joost Opperman',2,9),(185567,1139816,'Tara',0,10),(185567,1070853,'Marjorie',0,11),(185567,1003249,'David Epkeen',0,12),(185567,1168610,'Judith Botha',0,13),(185567,981282,'Nils Botha',1,14),(185567,1168611,'Nicole Weiss',0,15),(185567,1585929,'Beach Girl',1,16),(185567,1302090,'Shaved Head',2,17),(264656,448,'Mary Bee Cuddy',1,1),(264656,2176,'George Briggs',2,2),(264656,504787,'Arabella Sours',1,3),(264656,5064,'Altha Carter',1,4),(264656,502,'Theoline Belknapp',1,5),(264656,1462,'The Freighter',2,6),(264656,130640,'Tabitha Hutchinson',1,7),(264656,1017,'Gro Svendsen',1,8),(264656,93236,'Thor Svendsen',2,9),(264656,12074,'Reverend Dowd',2,10),(264656,13548,'Aloysius Duffy',2,11),(264656,886,'Vester Belknap',2,12),(264656,88124,'Garn Sours',2,13),(264656,71561,'Mrs. Polhemus',1,14),(264656,333,'Bob Giffen',2,15),(264656,12852,'Buster Shaver',2,16),(264656,1213094,'Netti Svendsen',0,17),(264656,1467961,'Mrs. Linens',0,18),(264656,986980,'Barkeep Fitzpatrick',2,19),(264656,100537,'Dealer',2,20),(264656,71566,'Carmichael',0,21),(264656,1827155,'Loney Belknap (uncredited)',1,22),(35696,74354,'Jamal Jefferies / Juwanna Mann',2,0),(35696,2535,'Michelle Langford',1,1),(35696,7166,'Lorne Daniels',2,2),(35696,88059,'Puff Smokey Smoke',2,3),(35696,155808,'Romeo',2,4),(35696,57553,'Tina Parker',1,5),(35696,1234204,'Coyner',0,6),(35696,193304,'Morse',2,7),(35696,1232432,'Andrew Stewart',0,8),(35696,1781337,'Whitley',0,9),(35696,95189,'Latisha Jansen',1,10),(35696,15899,'Aunt Ruby',1,11),(35696,6907,'Coach Rivers',1,12),(35696,74587,'Commissioner',2,13),(35696,218605,'Lorne\'s Secretary',1,14),(35696,1781340,'Vicki Sanchez',0,15),(38717,8767,'Jim McCormick',2,0),(38717,33196,'Mike McCormick',2,1),(38717,1980,'Bonnie McCormick',1,2),(38717,6905,'Harry Volpi',1,3),(38717,15900,'Mayor Don Vaughn',2,4),(38717,15011,'Tony Steinhardt',2,5),(38717,87107,'Travis',2,6),(38717,28414,'Owen',2,7),(38717,31508,'Skip Naughton',2,8),(38717,10486,'Roger Epperson',2,9),(38717,120686,'Adult Mike McCormick (voice)',2,10),(38717,60073,'Racing Girl #2',1,11),(38717,77109,'Johnson (uncredited)',2,12),(45269,5472,'King George VI',2,1),(45269,118,'Lionel Logue',2,2),(45269,1283,'Queen Elizabeth',1,3),(45269,529,'King Edward VIII',2,5),(45269,9191,'Winston Churchill',2,6),(45269,5658,'King George V',2,7),(45269,49971,'Myrtle Logue',1,8),(45269,937,'Archbishop Cosmo Lang',2,9),(45269,548169,'Princess Elizabeth',0,10),(45269,224878,'Princess Margaret',1,11),(45269,1222025,'Private Secretary',2,13),(45269,121606,'Equerry',2,14),(45269,201665,'Wallis Simpson',1,15),(45269,1231626,'Chauffeur',0,16),(45269,40311,'BBC Radio Announcer',2,17),(45269,176191,'Robert Wood',2,18),(45269,1356913,'BBC Technician',0,20),(45269,27660,'Dr. Blandine Bentham',2,22),(45269,1356914,'Laurie Logue',0,23),(45269,515313,'Valentine Logue',0,24),(45269,1356916,'Anthony Logue',0,25),(45269,26657,'Theatre Director',2,26),(45269,1335168,'Willie',0,27),(45269,1214688,'Lord Wigram',2,30),(45269,1230799,'Nurse',0,31),(45269,16273,'Lord Dawson',2,32),(45269,29545,'Queen Mary',1,33),(45269,224283,'Duke of Kent',2,34),(45269,1010912,'Duke of Gloucester',2,35),(45269,986101,'Butler',2,36),(45269,132988,'Footman',2,37),(45269,1356917,'Boy in Regent\'s Park',0,39),(45269,26659,'Stanley Baldwin',2,40),(45269,183180,'Steward',2,41),(45269,1356918,'Neville Chamberlain',0,42),(45269,1503008,'Royal Marine (uncredited)',0,43),(45269,1031711,'Binky (uncredited)',2,44),(45269,1359461,'Infantry (uncredited)',0,45),(45269,1441642,'Policeman (uncredited)',0,46),(45269,1127484,'BBC Technician / Soldier (uncredited)',0,47),(205596,71580,'Alan Turing',2,0),(205596,116,'Joan Clarke',1,1),(205596,1247,'Hugh Alexander',2,2),(205596,139549,'Detective Robert Nock',2,3),(205596,85718,'John Cairncross',2,4),(205596,213394,'Peter Hilton',2,5),(205596,4391,'Commander Denniston',2,6),(205596,2983,'Stewart Menzies',2,7),(205596,1362119,'Jack Good',2,8),(205596,43034,'Sergeant Staehl',2,9),(205596,27764,'Superintendent Smith',2,10),(205596,1121975,'Keith Furman',2,11),(205596,1379286,'Charles Richards',0,12),(205596,1379277,'Young Alan Turing',2,13),(205596,1449329,'Christopher Morcom',2,14),(205596,89822,'Helen',1,15),(205596,1379318,'Sherborne Student 1',2,16),(205596,1379313,'Sherborne Student 2',2,17),(205596,1379291,'Sherborne Student 3',2,18),(205596,1330788,'Joan\'s Father',0,19),(205596,1221046,'Joan\'s Mother',0,20),(205596,176191,'Teacher',2,21),(205596,25680,'Headmaster',0,22),(205596,1679324,'MI6 Agent',2,23),(205596,16692,'Military Policeman',2,24),(205596,1327860,'Margaret',0,25),(205596,1543407,'Electrical Assistant',0,26),(205596,1379276,'Crossword Enthusiast',2,27),(205596,1379279,'MI6 Agent (uncredited)',0,28),(205596,1374337,'Woman in Crowd (uncredited)',0,29),(205596,1379283,'RAF Wren (uncredited)',1,30),(205596,1379302,'Dancer (uncredited)',0,31),(205596,1379311,'Ministry Man (uncredited)',0,32),(205596,1379314,'Evacuee (uncredited)',0,33),(205596,1374158,'Wren (uncredited)',1,34),(205596,1379287,'Dancer (uncredited)',2,35),(205596,1379278,'Assistant Wren (uncredited)',1,36),(205596,1379293,'Crossword Man in Pub (uncredited)',0,37),(205596,1379305,'MI6 Agent (uncredited)',0,38),(205596,1379290,'Joan Clarke\'s Friend (uncredited)',0,39),(205596,1379281,'Bletchley Park Agent (uncredited)',0,40),(205596,1374338,'Passerby (uncredited)',0,41),(205596,1379285,'WW2 Wren (uncredited)',1,42),(205596,1379288,'Military Policeman 3 (uncredited)',2,43),(205596,1379295,'Military Police (uncredited)',2,44),(205596,1379304,'Crossword Enthusiast (uncredited)',0,45),(205596,1379275,'Wren (uncredited)',0,46),(205596,1379319,'School Boy (uncredited)',0,47),(205596,1379282,'Passerby (uncredited)',1,48),(205596,1379315,'Paperboy (uncredited)',0,49),(205596,1379308,'Evacuee (uncredited)',0,50),(205596,1379280,'MI6 Agent (uncredited)',0,51),(205596,1674664,'Nunn (uncredited)',1,52),(205596,1379320,'MI6 Agent (uncredited)',0,53),(205596,1379292,'Civilian (uncredited)',0,54),(205596,1679332,'Evacuee (uncredited)',1,55),(205596,1295992,'Bletchley Park Operative (uncredited)',0,56),(205596,1379317,'Joan Clarke\'s Friend (uncredited)',0,57),(205596,1379312,'Wren (uncredited)',0,58),(205596,1379303,'Technician (uncredited)',0,59),(205596,1360008,'MI6 Agent (uncredited)',2,60),(205596,1379316,'Evacuee (uncredited)',0,61),(205596,1225115,'Young Officer (uncredited)',0,62),(205596,1358943,'Police Sergeant White (uncredited)',0,63),(205596,1379321,'Wren (uncredited)',0,64),(205596,1010922,'Crossword Man (uncredited)',2,65),(205596,1379284,'First Aid Nurse (uncredited)',0,66),(205596,1379301,'German Pilot (uncredited)',0,67),(132232,83002,'Annabel',1,0),(132232,12795,'Lucas Desange',2,1),(132232,223126,'Victoria Desange',1,2),(132232,1094759,'Lilly Desange',0,3),(132232,10210,'Dr. Dreyfuss',2,4),(132232,1289925,'Mama (voice)',1,5),(132232,1479458,'Young Victoria',0,6),(208134,9656,'Irving Zisman',2,0),(208134,1148130,'Billy',2,1),(208134,95789,'Kimmy',1,2),(208134,5953,'Gloria',2,3),(208134,2229,'Ellie',1,4),(208134,1266854,'Doctor',0,5),(208134,60930,'Funeral Worker',0,6),(208134,928542,'Hostess',1,7),(208134,1827518,'Chuck',2,8),(65086,10980,'Arthur Kipps',2,0),(65086,8785,'Mr. Daily',2,1),(65086,202360,'Nicholas Daily',2,2),(65086,934737,'Alice',0,3),(65086,40672,'Mrs. Fisher',1,4),(65086,582938,'Tom Hardy',2,5),(65086,11279,'Mr. Bentley',2,6),(65086,56,'Stella Kipps',1,7),(65086,85071,'Fisher',2,8),(65086,90046,'Jennet Humfrye',1,9),(65086,4318,'Gerald Hardy',2,10),(65086,15740,'Mr. Jerome',2,11),(65086,1793751,'Mrs. Jerome',1,12),(65086,75071,'Keckwick',2,13),(65086,47627,'Mrs. Daily',1,14),(65086,1220099,'PC Collins',2,15),(65086,1151410,'Nanny',0,16),(65086,1866883,'Fisher Girl',0,17),(65086,1866885,'Fisher Girl',0,18),(65086,1866886,'Fisher Girl',0,19),(65086,1866891,'Joseph Kipps',0,20),(65086,1866892,'Nursemaid',0,21),(65086,1866895,'Little Girl on Train',0,22),(65086,1866899,'Dr. Emery',2,23),(65086,1803327,'Victoria Hardy',0,24),(65086,1375325,'Nathaniel Drablow',0,25),(134411,18918,'John Matthews',2,0),(134411,12834,'Agent Cooper',2,1),(134411,19498,'Daniel James',2,2),(134411,4038,'Joanne Keeghan',1,3),(134411,39390,'Malik',2,4),(134411,21660,'Jason Collins',2,5),(134411,25972,'Sylvie Collins',1,6),(134411,65196,'Analisa',1,7),(134411,4589,'Juan Carlos El Topo Pintera',2,8),(134411,6195,'Jeffery Steele',2,9),(134411,81391,'Benicio',2,10),(134411,1105711,'Flaco',2,11),(134411,999445,'Agent Sims',1,12),(134411,20496,'Wayne',0,13),(134411,1271749,'Isabelle Matthews',0,14),(134411,1223879,'Craig',0,15),(134411,978996,'Amanda',1,16),(134411,1271750,'Anthony',0,17),(134411,204895,'Agent Thompson',0,18),(134411,1093707,'Agent Torres',0,19),(134411,1271751,'Bones',0,20),(134411,1271752,'Lazy',0,21),(287903,36801,'Tom Engel',2,0),(287903,3051,'Sarah Engel',1,1),(287903,1331652,'Linda',0,2),(287903,28638,'Howard',2,4),(287903,1259762,'Max Engel',2,5),(287903,1252003,'Beth Engel',1,6),(287903,1443677,'Jordan',0,7),(287903,1909,'Aunt Dorothy',1,8),(287903,1048610,'Krampus',0,9),(287903,1485708,'Cherub',1,10),(287903,1537009,'Hero Dark Elf',0,11),(287903,1039917,'Omi',0,12),(287903,1544920,'Dark Elf',0,13),(287903,35981,'Krampus (voice)',2,14),(287903,1544921,'Howie Jnr',0,15),(287903,1544922,'Dark Elf',0,16),(287903,1544923,'Wasp Mother',0,17),(287903,1544924,'Stevie',0,18),(287903,1207290,'Dark Elf',0,19),(287903,1460982,'Derek',0,20),(287903,1544925,'Extra (uncredited)',0,21),(77016,131,'Brian Taylor',2,0),(77016,454,'Mike Zavala',2,1),(77016,76511,'Gabby Zavala',1,2),(77016,84223,'Janet Taylor',1,3),(77016,35029,'Van Hauser',2,4),(77016,81685,'Sarge',2,5),(77016,59174,'Officer Orozco',1,6),(77016,582816,'Officer Davis',1,7),(77016,53928,'Bonita',1,8),(77016,85414,'Homicide Detective 2',0,9),(77016,458014,'Officer Cho',0,10),(77016,55394,'Mr. Tre',0,11),(77016,1138844,'Captain Reese',0,12),(77016,969413,'Man Friend',2,13),(77016,210256,'Too Tall',0,16),(77016,1271758,'Peanut',0,17),(77016,1105711,'Demon',2,18),(77016,1271759,'Wicked',0,19),(77016,48530,'Big Evil',2,20),(77016,1271760,'La La',0,21),(77016,1271761,'Casper',0,22),(77016,1271762,'Cindy',0,23),(77016,94135,'Sook',1,24),(77016,175585,'Sharice',0,25),(77016,932158,'Jazmine',1,26),(77016,1117232,'Spooky',2,27),(77016,200483,'Williams',2,28),(77016,1345133,'Ice Agent',0,29),(266856,37632,'Stephen Hawking',2,0),(266856,72855,'Jane Hawking',1,1),(266856,23458,'Jonathan Hellyer Jones',2,2),(266856,1639,'Beryl Wilde',0,3),(266856,16358,'Frank Hawking',0,4),(266856,11207,'Dennis Sciama',2,5),(266856,76944,'Elaine Mason',1,6),(266856,205258,'Brian',2,7),(266856,1361963,'Robert Hawking (Age 17)',0,8),(266856,1387383,'Lucy Hawking (Age 14)',0,9),(266856,1387384,'Timothy Hawking (Age 8)',0,10),(266856,1467145,'Diana King',0,11),(266856,1221788,'Carter',0,12),(266856,1052256,'Ellis',0,13),(266856,1414711,'Rees',2,14),(266856,1281195,'Barman - Rowing Club',0,15),(266856,1503901,'George Wilde',0,16),(266856,1387381,'Mary Hawking',0,17),(266856,1052255,'Philippa Hawking',1,18),(266856,73845,'Isobel Hawking',1,19),(266856,1503902,'Physicist #1',0,20),(266856,1503903,'Physicist #2',0,21),(266856,1503904,'Physicist #3',0,22),(266856,28478,'Roger Penrose',0,23),(266856,23429,'Senior Doctor - Cambridge Hospital',2,24),(266856,1278494,'Bedder',0,25),(266856,1503905,'Robert Hawking (New Born)',0,26),(266856,91494,'Kip Thorne',2,27),(266856,1503906,'Robert Hawking (Age 2)',0,28),(266856,1503907,'Lucy Hawking (New Born)',0,29),(266856,192838,'Eileen Bond',1,30),(266856,16273,'John Taylor',2,31),(266856,1465954,'Khalatnikov',0,32),(266856,1503908,'Robert Hawking (Age 8)',0,33),(266856,1503909,'Lucy Hawking (Age 6)',1,34),(266856,1503910,'Timothy Hawking (Baby)',0,35),(266856,1503911,'Sarah (Geneva Student)',0,36),(266856,1384501,'Swiss Doctor',0,37),(266856,1503912,'Technician',0,38),(266856,1503913,'Female Fan',0,39),(266856,1503914,'Cockcroft Guest #2',0,40),(266856,1503915,'Cockcroft Guest #3',0,41),(266856,1503916,'Cockcroft Guest #5',0,42),(266856,1503917,'Cockcroft Guest #4',0,43),(266856,1503918,'Cockcroft Guest #1',0,44),(228970,368,'Cheryl',1,0),(228970,4784,'Bobbi',1,1),(228970,1218218,'Paul',0,2),(228970,1223463,'Leif',2,4),(228970,91520,'Jonathan',2,5),(228970,6951,'Frank',2,6),(228970,12930,'Aimee',1,7),(228970,114000,'Greg',2,8),(228970,12792,'Ranger',2,9),(228970,1272612,'Ed',2,10),(228970,59014,'Jimmy Carter',2,11),(228970,1495069,'Josh',0,12),(228970,1330039,'Rick',0,13),(228970,212768,'Richie',2,14),(228970,1118080,'Joe',2,15),(228970,1205239,'Therapist',2,16),(228970,163013,'Stacey',0,17),(228970,1495073,'Greg\'s Friend',2,18),(228970,1495074,'Greg\'s Friend',0,19),(228970,1495075,'Greg\'s Friend',0,20),(228970,1495076,'Lou',0,21),(228970,1495077,'Dave',0,22),(228970,1495078,'Spider',0,23),(228970,1495079,'Saleswoman',0,24),(228970,1495080,'Doctor',0,25),(228970,1495081,'Nurse',0,26),(228970,82945,'T.J.',2,27),(228970,129868,'Clint',2,28),(228970,199704,'Desk Clerk',0,29),(228970,143204,'Annette (Frank\'s Wife)',1,30),(228970,1495082,'Notary',0,31),(228970,155523,'Tattooist',0,32),(228970,156395,'Vera',0,33),(228970,1495083,'Kyle',0,34),(228970,152355,'Lecturer',1,35),(228970,1495084,'Cheryl\'s Dad',2,36),(228970,1495085,'Young Suit #1',0,37),(228970,1495086,'Young Suit #2',0,38),(228970,1495087,'Cheryl (6 Yrs Old)',0,39),(228970,1495088,'Man At Gas Station',0,40),(228970,1495089,'Leif (3 Yrs Old)',0,41),(228970,79907,'Man Behind Counter',0,42),(228970,1379621,'Weird Dude',2,43),(228970,1495090,'Outdoor Store Clerk',0,44),(228970,1202473,'Man At The Hotel Bar',0,45),(228970,1495091,'Paul\'s Girlfriend',0,46),(228970,1495092,'Grateful Dead Cover Band',0,47),(228970,1193640,'Grateful Dead Cover Band',2,48),(228970,1371109,'Wayne',2,49),(228970,1495093,'Male Nurse',0,50),(228970,1495094,'Grateful Dead Fan Musicians',0,51),(228970,1495095,'Grateful Dead Fan Musicians',0,52),(228970,1495096,'Toll Booth Operator',0,53),(228970,1463282,'College Freshman',0,54),(228970,1495097,'Son Of Man At Gas Station',0,55),(228970,1263516,'Woman in Truck',0,56),(228970,1586843,'Truck Driver (uncredited)',2,57),(64690,30614,'Driver',2,0),(64690,36662,'Irene',1,1),(64690,17419,'Shannon',2,2),(64690,13,'Bernie Rose',2,3),(64690,25072,'Standard',2,4),(64690,110014,'Blanche',1,5),(64690,2372,'Nino',2,6),(64690,972270,'Benicio',0,7),(64690,51303,'Tan Suit',2,8),(64690,37156,'Cook',0,9),(64690,6725,'Doc',2,10),(64690,51302,'Chauffeur',2,11),(64690,208332,'Young Woman',0,12),(64690,200402,'Hitman #1',2,13),(64690,1542941,'Hitman #2',0,14),(64690,89376,'Waitress',1,15),(64690,135461,'Stripper',1,16),(64690,95638,'Bearded Redneck',2,17),(64690,1585029,'Masked Man #1',0,18),(64690,86237,'Assistant Director #1',2,19),(64690,1451798,'Assistant Director #2',0,20),(64690,1355108,'Caterer',0,21),(64690,53255,'Waiter',0,22),(64690,110249,'Movie Star Girlfriend',1,23),(64690,66650,'Police Actor in Makeup Chair (uncredited)',0,24),(232679,8767,'Bob Ladouceur',2,0),(232679,19654,'Terry Eidson',2,1),(232679,4784,'Bev Ladouceur',1,2),(232679,6574,'Mickey Ryan',2,3),(232679,1160181,'Cam Colvin',2,4),(232679,1388314,'T.K. Kelly',0,5),(232679,1272291,'Danny Ladouceur',2,6),(232679,935497,'Beaser',0,7),(232679,1388315,'Arturo',0,8),(232679,1199000,'Jamal',0,9),(232679,1188269,'Rick Salinas',0,10),(232679,1388316,'Manny Gonzales',0,11),(232679,1086527,'Michael Ladouceur',2,12),(232679,23498,'Chris Ryan',2,13),(232679,1255069,'Tayshon Lanear',0,14),(232679,1411620,'Oklahoma Scout #1',0,15),(232679,1411622,'Oklahoma Scout #2',0,16),(232679,1337249,'T-Gram',0,17),(232679,1411625,'Landrin Kelly',2,18),(232679,29933,'Cam\'s Mom',1,19),(232679,1327960,'Laurie',0,20),(232679,97446,'Stanford Recruiter',2,21),(232679,1411632,'Mike Blasquez',0,22),(232679,565505,'Announcer #1',0,23),(232679,145543,'Analyst',2,24),(232679,1411633,'Cam\'s Cousin',0,25),(232679,129868,'Coach #1',2,26),(232679,1411638,'Older Veteran',0,27),(232679,1411639,'Hallway Doctor',0,28),(232679,932104,'Long Beach Poly Coach',2,29),(232679,1411640,'Buster Matthews',0,30),(232679,1411644,'Frail Veteran',0,31),(232679,1411663,'Himself',0,32),(232679,1411664,'Doctor',0,33),(232679,565501,'Jenny Ladouceur',1,34),(232679,1411665,'Mailman',0,35),(232679,156625,'Local Sportscaster',2,36),(232679,1411674,'Nina',0,37),(232679,1411679,'Young Assistant Coach',2,38),(232679,1173099,'Paraplegic',2,39),(232679,141765,'Nurse Ballard',0,40),(232679,1277219,'Lamarco',0,41),(232679,149576,'Security Guard (Larry)',2,42),(232679,206624,'Coach #2',2,43),(232679,1576251,'Coach #3',2,44),(232679,32291,'Nurse Adams',1,46),(232679,1411742,'Luis',0,47),(232679,1411744,'Senior #1',0,48),(232679,1411745,'Senior #2',0,49),(232679,1411752,'Player #1',0,50),(232679,1371237,'Player #2',0,51),(232679,60874,'Guy',2,52),(232679,1186731,'Minister',0,53),(232679,990136,'Announcer #2',2,54),(232679,1411758,'Sophomore',0,55),(232679,62784,'Hip Sports Reporter',0,56),(232679,1375358,'Reporter',2,57),(232679,1299192,'Basketball Kid #1',0,58),(232679,1394012,'Basketball Kid #2',0,59),(232679,230995,'Nurse',1,60),(232679,1411785,'Soloist #1',0,61),(232679,1411786,'Soloist #2',0,62),(232679,1411787,'Emotional Player',0,63),(232679,1273238,'Announcer #3',0,64),(232679,1411788,'Referee',0,65),(38843,125025,'Ramona Quimby',1,0),(38843,77948,'Beatrice Beezus Quimby',1,1),(38843,38405,'Robert Quimby',2,2),(38843,18354,'Dorothy Quimby',1,3),(38843,417,'Aunt Bea',1,4),(38843,19536,'Hobart Kemp',2,5),(38843,25540,'Mrs. Meacham',1,6),(38843,134657,'Henry Huggins',2,7),(38843,141526,'Susan',1,8),(38843,74151,'Howie Kemp',2,9),(38843,1176948,'Mrs. Kushner',0,10),(38843,106460,'Grandma Kemp',1,11),(38843,1713974,'Willa Jean',0,12),(38843,63568,'Mrs. Pitt',1,13),(38843,1705344,'Mr. Swink',0,14),(342521,291263,'Rell Williams / Oil Dresden',2,0),(342521,298410,'Clarence Goobril / Smoke Dresden',2,1),(342521,1230868,'Hi-C',1,2),(342521,5384,'Cheddar',2,3),(342521,1307543,'Trunk',2,4),(342521,1115984,'Bud',0,5),(342521,1671201,'Stitches',0,6),(342521,40481,'Bacon',2,7),(342521,62831,'Hulka',2,8),(342521,9781,'Hannah',1,9),(342521,80595,'Spencer',2,10),(342521,1330999,'Alexis',1,11),(342521,1671203,'Belle',0,12),(342521,1380008,'Donnie',0,13),(342521,1671204,'Rachel',0,14),(342521,109765,'Detective Mank',2,15),(342521,1514476,'Galaxy',0,16),(342521,1671207,'Hulka\'s Mom',0,17),(342521,1671208,'Officer Jonah',0,18),(342521,1299674,'King Diaz',0,19),(342521,1671209,'Prison Guard',0,20),(342521,1269495,'Cop #1',0,21),(342521,1766078,'Cop #2',0,22),(342521,1766080,'Guard #2',0,23),(342521,6384,'Keanu (voice)',2,24),(342521,1560335,'Dancer (uncredited)',1,25),(342521,1772,'Herself (uncredited)',1,26),(342521,1748388,'Narco Guard (uncredited)',1,27),(342521,1748387,'Drug Girl (uncredited)',0,28),(45272,12052,'Kelly Canter',1,0),(45272,9828,'Beau Hutton',2,1),(45272,74428,'James Canter',2,2),(45272,85825,'Chiles Stanton',1,3),(45272,974334,'Winnie',1,4),(45272,55433,'Hair Stylist',1,5),(45272,21533,'JJ',2,6),(97367,30614,'Luke Glanton',2,0),(97367,51329,'Avery Cross',2,1),(97367,8170,'Romina Gutierrez',1,2),(97367,122889,'Jason Kancam',2,3),(97367,1041440,'AJ Cross',2,4),(97367,9827,'Jennifer Cross',1,5),(97367,932967,'Kofi Kancam',2,6),(97367,21089,'Bill Killcullen',2,7),(97367,1166,'Al Cross',2,8),(97367,77335,'Robin Van Der Hook',2,9),(97367,11477,'Peter Deluca',2,10),(97367,2256,'Chief Weirzbowski',2,11),(97367,1129833,'Scott',0,12),(97367,53937,'Malena Gutierrez',1,13),(97367,1193625,'Vanessa Kancam',0,14),(97367,1193629,'Cory Gilbeau',0,15),(97367,1193623,'Doc Crowley',0,16),(97367,1183824,'Jack',0,17),(97367,1434599,'Officer Jefferson',0,18),(97367,1232566,'Mr. Anthony',0,19),(97367,1232568,'Benny',0,20),(97367,1820001,'Alex',0,21),(97367,1820002,'Dante',0,22),(97367,1820003,'Leah',0,23),(97367,1820004,'Whitney',0,24),(97367,1820005,'Breanna',0,25),(97367,1820006,'Melissa Majack',0,26),(97367,1183823,'Baby Jason',0,27),(97367,1819999,'Baby AJ',0,28),(97367,1820000,'Baby AJ',0,29),(97367,1193624,'Public Defender',0,30),(97367,1193626,'Pharmacy Clerk',0,31),(97367,1193627,'State Senator',0,32),(254904,517,'Peter H. Devereaux',2,0),(254904,972356,'David Mason',2,1),(254904,18182,'Alice Fournier',1,2),(254904,17200,'Hanley',2,3),(254904,1357023,'Alexa',0,4),(254904,70874,'Arkady Federov',2,5),(254904,1357024,'Natalia Ulanova',0,6),(254904,1213278,'Sarah',1,7),(254904,81684,'Celia',1,8),(254904,1322309,'Meyers',0,9),(254904,883,'Perry Weinstein',2,10),(254904,14432,'Edgar Simpson',2,11),(254904,1050079,'Denisov',2,12),(254904,1357025,'Agent Jones',0,13),(254904,938096,'Federov\'s Chief of Staff',0,14),(254904,1410525,'Ambassador',0,15),(254904,1410529,'Lucy',0,16),(254904,1410530,'Mira Filipova (15 years)',0,17),(254904,1102409,'CIA Operator #1',0,18),(254904,94467,'CIA Operator #2',0,19),(254904,1410538,'CIA Operator #3',0,20),(254904,1410997,'CIA Cleaner #1',0,21),(254904,1411004,'CIA Cleaner #2',0,22),(254904,1050208,'Michelle (Barmaid)',0,23),(254904,1411010,'Russian Thug at KGB Club',0,24),(254904,88052,'Serbian Hacker',0,25),(254904,226142,'Young Attractive Woman',0,26),(254904,1411025,'Newscaster (O / S Ministry)',0,27),(254904,1411031,'Reporter #4 (O / S Ministry)',0,28),(254904,1411034,'Reporter #3 (O / S Ministry)',0,29),(254904,1411037,'Reporter #2 (O / S Ministry)',0,30),(254904,1411050,'Reporter #1 (O / S Ministry)',0,31),(254904,1411059,'Russian Security Guard',0,32),(254904,1411060,'CIA Agent (scanner guy)',0,33),(254904,1411061,'CIA Agent - Jake',0,34),(254904,1411062,'Station Ticket Clerk',0,35),(254904,1348600,'Shot Girl',0,36),(254904,1503898,'Bodyguard',0,37),(64689,287,'Jackie Cogan',2,0),(64689,59233,'Frankie',2,1),(64689,77335,'Russell',2,2),(64689,4691,'Mickey',2,3),(64689,11477,'Markie Trattman',2,4),(64689,28633,'Driver',2,5),(64689,171719,'Johnny Amato',2,6),(64689,9880,'Dillon',2,7),(64689,133067,'Kenny Gill',2,8),(64689,7133,'Barry Caprio',2,9),(64689,1163266,'Steve Caprio',2,10),(64689,155520,'Hooker',1,11),(64689,1660692,'Poker Guy',2,12),(64689,15359,'Business Suit Agent',0,13),(64689,1173099,'Cab Driver Agent',2,14),(64689,1088041,'Security Force Agent',0,15),(64689,1273239,'Bartender #1',0,16),(64689,16459,'Bartender #2',2,17),(64689,1766784,'Waiter',0,18),(64689,141762,'Business Suit Agent',2,19),(157849,1233,'Gu00fcnther Bachmann',2,0),(157849,53714,'Annabel Richter',1,1),(157849,32,'Martha Sullivan',1,2),(157849,3872,'Max',2,3),(157849,5293,'Tommy Brue',2,4),(157849,107722,'Issa Karpov',0,5),(157849,681,'Erna Frey',1,6),(157849,49056,'The Admiral',2,7),(157849,5202,'Rasheed',2,8),(157849,65054,'Dieter Mohr',2,9),(157849,1080195,'Niki',1,10),(157849,117528,'Abdullah',0,11),(157849,146358,'Jamal',0,12),(157849,559593,'Abdullah\'s Bodyguard',0,13),(157849,1397634,'Karl',0,14),(157849,1074378,'Storekeeper',2,15),(157849,133818,'Leyla Oktay',1,16),(157849,133819,'Melik Oktay',0,17),(157849,1397639,'Sparring Partner',2,18),(157849,5228,'Michael Axelrod',2,19),(157849,1397642,'Axelrod\'s Driver',0,20),(157849,44516,'Otto Keller',0,21),(157849,1397649,'Lotta',0,22),(157849,24064,'Frau Elli',0,23),(157849,54948,'Mitzi Brue',1,24),(157849,36406,'Tattooed Man',0,25),(157849,1397653,'Lonely Dancing Woman',0,26),(157849,33121,'Otto Burgdorf',2,27),(37003,33684,'Himself',2,1),(37003,82426,'Himself',2,2),(37003,82427,'Himself',0,3),(37003,82428,'Himself',2,4),(51828,1813,'Emma Morley',1,0),(51828,38941,'Dexter Mayhew',2,1),(51828,1276,'Alison Mayhew',1,2),(51828,25136,'Stephen Mayhew',2,3),(51828,6979,'Sylvie Cope',0,4),(51828,28847,'Ian Whitehead',2,5),(51828,66431,'Tilly Shaw',1,6),(51828,75073,'Callum O\'Neill',2,7),(51828,116606,'Samuel Cope',2,8),(51828,213394,'Murray Cope',2,9),(51828,73462,'Suki Meadows',1,10),(51828,1035194,'Ingrid',1,11),(51828,1488236,'Aaron',0,12),(51828,512079,'Marie',1,13),(51828,235837,'Tara',1,14),(51828,74036,'Colin',2,15),(51828,15094,'Mrs. Cope',1,16),(51828,71248,'Mr. Cope',2,17),(51828,1449869,'Jean-Pierre',0,18),(51828,209990,'Mrs. Major',0,19),(51828,1331023,'Jasmine Mayhew (2007 and 2011)',1,20),(51828,1814921,'Jasmine Mayhew (2001)',0,21),(51828,1814922,'Jasmine Mayhew (2001)',0,22),(51828,1258227,'Cocktail Waitress',1,23),(51828,1016119,'Customer',2,24),(51828,79550,'Waiter',2,25),(51828,971049,'Floor Manager',2,26),(51828,73462,'Suki',1,27),(51828,127008,'Rapper',2,28),(51828,1320609,'Nightclub Girl',0,29),(51828,1821938,'Waitress',0,30),(37718,13,'Steven Phillips',2,0),(37718,4430,'Sarah Little',1,1),(37718,1533,'Laura Phillips',1,2),(37718,1229,'Jack Warrick',2,3),(37718,1036,'Cybill Shepherd',1,4),(37718,7906,'Jennifer Tilly',1,5),(37718,156755,'Julie Phillips',1,6),(37718,183407,'Mary Phillips',0,7),(37718,157673,'Anne',1,8),(37718,11365,'Josh Martin',2,9),(37718,11367,'Hal',0,10),(37718,31714,'Phyllis',1,11),(37718,11366,'Lorenzo Lamas',2,12),(97430,934,'Jack Knife',2,0),(97430,140,'Madame Blossom',1,1),(97430,78324,'Lady Silk',1,2),(97430,150,'Blacksmith',2,3),(97430,1077356,'Chi Chi',0,4),(97430,543530,'Brass Body',2,5),(97430,116637,'Bronze Lion',2,6),(97430,10883,'Zen Yi, The X-Blade',2,7),(97430,240171,'The Abbott',0,8),(97430,144503,'Jasmine',1,9),(97430,8178,'Chan',2,10),(97430,57748,'Silver Lion',2,11),(97430,1115351,'Senior Monk',0,12),(97430,88351,'Gold Lion',2,13),(97430,965554,'Copper Lion',0,14),(97430,1115352,'Iron Lion',0,15),(97430,931264,'Gemini Female',1,16),(97430,130562,'Gemini Male',0,17),(97430,2230,'Jane',1,18),(97430,74196,'Governor',0,19),(97430,64436,'Poison Dagger',2,20),(57943,55152,'Scott Corrigan',2,0),(57943,10431,'Elizabeth Whitcomb',1,1),(57943,29792,'Everett Reagle',2,2),(57943,6461,'Beatrice Corrigan',1,3),(72359,64342,'Wade Walker',2,0),(72359,11703,'Grace Peeples',1,1),(72359,58563,'Virgil Peeples',2,2),(72359,3978,'Daphne Peeples',1,3),(72359,1214870,'Simon Peeples',2,4),(72359,89462,'Gloria Peeples',1,5),(72359,20158,'Nana Peeples',1,6),(72359,135650,'Grandpa Peeples',0,7),(72359,1161093,'Pickle Vendor',0,8),(72359,86267,'Mayor Hodge',1,9),(133694,1892,'Steve Butler',2,0),(133694,17697,'Dustin Noble',2,1),(133694,3910,'Sue Thomason',1,2),(133694,14892,'Alice',1,3),(133694,155,'Paul Geary',2,4),(133694,11066,'Frank Yates',2,5),(133694,39389,'Rob',2,6),(133694,40275,'Drew',2,7),(133694,59233,'Jeff Dennon',2,8),(133694,11067,'David Stonehill',2,9),(133694,1083451,'Donny',0,10),(133694,1098033,'Claire Allen',0,11),(133694,1098034,'Lemonade Girl',0,12),(133694,130843,'Spanish Teacher',0,13),(133694,1098036,'Officer Breedlove',2,14),(36047,65239,'Brittany',1,0),(36047,15010,'Adrien',1,1),(36047,33286,'Matt',2,2),(36047,19223,'',2,3),(36047,41249,'',1,4),(36047,80289,'',2,5),(36047,149563,'',2,6),(36047,22111,'',2,7),(36047,37043,'',2,8),(36047,15012,'Morgan',0,9),(36047,60953,'Sheila',1,10),(38031,9138,'Helena Shepridge',1,0),(38031,4173,'Alfie',2,1),(38031,3489,'Sally',1,2),(38031,16851,'Roy',2,3),(38031,3131,'Greg',2,4),(38031,1125,'Henry Strangler',2,5),(38031,20289,'Alan',2,6),(38031,28478,'Sy',0,7),(38031,119413,'Rita',1,8),(38031,20243,'Jonathan',2,9),(38031,119414,'Mike Prince',2,10),(38031,62231,'Mort',2,11),(38031,119416,'Person at Market',0,12),(38031,120560,'Peter',2,13),(38031,58016,'Iris',1,14),(38031,76792,'Dia',1,15),(38031,66446,'Charmaine',1,16),(38031,55689,'Poker Friend',2,17),(38031,6217,'Dia\'s Parents',2,18),(38031,83437,'Cristal',1,19),(38031,119415,'Poker Friend',2,20),(38031,6973,'Jane',1,21),(38031,9139,'Enid Wicklow',1,22),(38031,587020,'Ray',2,23),(38031,6970,'Ray\'s Friend',2,24),(38031,32300,'Ray\'s Friend',2,25),(38031,126042,'Malcolm Dodds',0,26),(38031,6975,'Dia\'s Mother',1,27),(38031,1217907,'Alan\'s Mother',1,28),(42188,36662,'Kathy H.',1,0),(42188,37625,'Tommy D.',2,1),(42188,116,'Ruth C.',1,2),(42188,93210,'Rodney',2,3),(42188,127558,'Chrissie',1,4),(42188,44079,'Miss Emily',1,5),(42188,39658,'Miss Lucy',1,6),(42188,142388,'Young Kathy',0,7),(42188,142389,'Young Tommy',2,8),(42188,989325,'Young Ruth',1,9),(42188,1095524,'Hannah',1,10),(42188,6019,'Madame',1,11),(42188,1546129,'Laura',0,12),(42188,1630671,'Miss Geraldine',1,13),(42188,1261118,'Amanda',1,14),(42188,1630683,'Arthur',2,15),(42188,117654,'Keffers',2,16),(42188,1631055,'George',2,17),(42188,229606,'Nurse',1,18),(42188,1081470,'Sitcom Girl',1,19),(42188,487393,'Sitcom Girl',1,20),(42188,1615300,'David',0,21),(42188,1222023,'Matron',1,22),(42188,26679,'Doctor',2,23),(112430,5577,'Jack McAuliffe',2,0),(112430,658,'Harvey Torriti/The Sorcerer',2,1),(112430,2232,'James Jesus Angleton/Mother',2,2),(112430,51792,'Yevgeny Tsipin',2,3),(112430,4941,'Leo Kritzky',2,4),(112430,4455,'Starik Zhilov',2,5),(112430,11317,'Elizabet Nemeth',1,6),(112430,5644,'Lili',1,7),(112430,4001,'MI6 liaison officer Elihu',2,8),(112430,77637,'The Rabbi',2,9),(331592,589706,'David Thorogood',2,1),(331592,1498757,'Ryan Cates',0,2),(331592,1417798,'Jordan',0,3),(331592,1132647,'Melanie',0,4),(331592,174331,'Matthews',2,5),(331592,162014,'Suspicious Man',2,6),(47692,382,'Joe Hilditch',2,0),(47692,20054,'Felicia',1,1),(47692,7708,'Gala',1,2),(47692,73283,'Johnny Lysaght',2,3),(47692,43131,'Felicia\'s Father',0,4),(47692,42601,'Mrs Lysaght',0,5),(47692,47404,'Iris',1,6),(47692,213391,'Sidney',0,7),(47692,213392,'Customs Officer',0,8),(47692,203176,'Salesman',0,9),(47692,1075627,'Jimmy',0,10),(47692,1632611,'Mrs Calligary',0,11),(47692,13364,'Marcia Tibbits',1,12),(47692,1645,'Jumble sale woman',1,13),(47692,1240511,'TV Director',0,14),(47692,1632613,'Young Hilditch',2,15),(47692,1632614,'Lost Girl',0,16),(47692,1404253,'Lost Girl',0,17),(47692,1632615,'Lost Girl',0,18),(47692,1632616,'Lost Girl',0,19),(47692,1632617,'Lost Girl',0,20),(47692,1632618,'Lost Girl',0,21),(47692,1632619,'Lost Girl',0,22),(47692,148136,'Lost Girl',0,23),(47692,1632620,'Felicia\'s Great Grandmother',0,24),(253450,21911,'Nie Yinniang',1,0),(253450,1622,'Tian Ji\'an',2,1),(253450,1309285,'Concubine Huji',0,2),(253450,1624469,'Jiaxin',0,3),(253450,1063128,'Xia Jing',0,4),(253450,73125,'',0,5),(253450,130985,'The Nun',0,6),(253450,143824,'',1,7),(253450,80108,'The Mirror Polisher',2,8),(253450,17382,'Nie Feng',2,9),(253450,1172051,'Old herb picker',0,13),(253450,144813,'Lord Tian Ji\'an\'s wife',0,14),(253450,69835,'Nie Feng\'s mother',1,15),(253450,1624471,'Lady Tian\'s teacher',0,16),(253450,572086,'Yinniang\'s Mother',0,17),(253450,1095068,'Tien Xing',0,18),(75033,13550,'Colonel de Vries',2,0),(75033,18288,'Nelson Mandela',2,1),(75033,15565,'Winnie Mandela',1,2),(75033,19957,'Mary Botha',1,3),(75033,1066655,'Marcia',1,4),(75033,209193,'Ferry Policeman',2,5),(75033,228372,'Brandfort Policeman',0,6),(75033,1042811,'Roadblock Policeman',0,7),(75033,107754,'Chairperson Truth & Reconciliation Commission',2,9),(75033,1075823,'TRC Reporter',1,10),(74536,38673,'Jonathan White',2,0),(74536,1158,'Detective Stanford',2,1),(74536,1137,'Lauren Bridges',1,2),(74536,3897,'Kerry White',1,3),(74536,5296,'Officer Thomas Prudenti',2,4),(74536,11477,'Captain Marion Mathers',2,5),(74536,56903,'Vincent Carter (Adult)',2,6),(74536,973998,'Charolette \'Charlie\' White',1,7),(74536,1778205,'Young Vinnie (Carter)',0,8),(74536,17834,'Jonathan \'Milk\' White (Young)',2,9),(74536,1778207,'Young Vicky',0,10),(74536,1108494,'Geronimo',0,11),(74536,40377,'Hanky',2,12),(74536,163692,'Dominican Nada Puerto Rican',0,13),(74536,1473150,'Olive Oil',0,14),(74536,1650142,'Vinny\'s Mother',1,15),(74536,1473137,'Vinny\'s Mother\'s Boyfriend',0,16),(74536,1480047,'News Reporter #1',2,17),(74536,1114855,'News Reporter #2',0,18),(172391,60255,'Khumba (voice)',2,0),(172391,3896,'Phango (voice)',2,1),(172391,884,'Skalk (voice)',2,2),(172391,1285,'Tombi (voice)',1,3),(172391,2975,'Seko (voice)',2,4),(172391,20766,'Bradley (voice)',2,5),(172391,18284,'Mama V (voice)',1,6),(172391,15563,'Lungisa',1,7),(172391,47646,'Nora (voice)',1,8),(172391,110885,'Fifi (voice)',1,9),(172391,81178,'Wild Dog #1 (voice)',2,10),(172391,23680,'Meerkat Father (voice)',2,11),(172391,34982,'Rabbit (voice)',2,12),(172391,51957,'Black Eagle (voice)',0,14),(172391,1765314,'Khumba',0,15),(172391,1383462,'Nigel',0,16),(172391,1774928,'Tombi',0,17),(172391,1774929,'Bokkie, Captaine, Koos',0,18),(172391,1774930,'Frikkie, Percy',0,19),(172391,1596695,'Jannie, Sakkie',0,20),(172391,47829,'Papa suricate',0,21),(172391,1844707,'Meerkat Girl (voice)',1,22),(262543,3131,'Jacq Vaucan',2,0),(262543,90514,'Rachel Vaucan',1,1),(262543,32597,'Wallace',2,2),(262543,5694,'Robert Bold',2,3),(262543,41043,'Vernon Conway',2,4),(262543,22810,'Ellis',2,5),(262543,27822,'Dominic Hawk',2,6),(262543,17290,'Manager',2,7),(262543,85178,'ROC Technician',1,8),(262543,1355190,'Morgue Technician',0,9),(262543,1355191,'Muniesa Technician',0,10),(262543,1355192,'Client',0,11),(262543,1666743,'Client\'s Wife',1,12),(262543,29369,'Dra. Dupre / Cleo (voice)',1,13),(262543,3810,'Blue Robot (voice)',2,14),(262543,131101,'Clift',2,15),(262543,10988,'Samantha',1,16),(262543,559368,'Poot',2,17),(262543,105695,'Lance',2,18),(262543,105688,'Doctor',0,19),(262543,1389927,'White Collar Worker',2,20),(370980,18478,'Jorge Mario Bergoglio da giovane',0,0),(370980,127252,'Jorge Mario Bergoglio da anziano',2,1),(370980,28514,'Franz Jalics',2,2),(370980,1133330,'Giovane Prete',2,3),(370980,18499,'Esther Ballestrino',1,4),(370980,1544273,'Padre Pedro',0,5),(370980,1385124,'Card. Tarcisio Bertone',0,6),(370980,230212,'Mons. Enrique Angelelli',0,7),(370980,1880274,'Gabriela',0,8),(370980,1880275,'Quique',0,9),(370980,549598,'',0,10),(40880,3900,'Samuel Taylor Coleridge',2,0),(40880,10727,'William Wordsworth',2,1),(40880,2206,'Sara Coleridge',1,2),(40880,33679,'Dorothy Wordsworth',1,3),(40880,208506,'Edith Southey',1,4),(40880,974,'Humphry Davy',2,5),(40880,1333,'John Thelwall',2,6),(40880,54447,'Robert Southey',2,7),(40880,149359,'Messenger',2,8),(40880,1375084,'Jones',0,9),(40880,16701,'Mary Wordsworth',1,10),(40880,137949,'Walsh',0,11),(40880,20244,'Tom Poole',0,12),(40880,5475,'Dr Gillman',2,13),(40880,1064532,'Byron',0,14),(40880,1430714,'Miss Holland',0,15),(40880,11282,'Rev Holland',2,16),(40880,1231968,'Andrew Crosse',0,17),(40880,180161,'Fisherman',2,18),(40880,1686146,'Journalist',0,19),(40880,1686147,'Hartley Coleridge, aged 4',0,20),(40880,1686148,'Hartley Coleridge, aged 18 months',0,21),(40880,1686149,'Hartley Coleridge, aged 18 months',0,22),(40880,1686150,'Hartley Coleridge, aged 2 months',0,23),(40880,1686152,'Edith Mae Southey',0,24),(40880,1686151,'Herbert Southay',0,25),(40880,1644736,'Darcy Sinclair',0,27),(40880,1686153,'Rebel',0,28),(40880,36594,'Emma Southey',1,29),(264999,38673,'Mike',2,0),(264999,66743,'Ken',2,1),(264999,20580,'Big Dick Richie',2,2),(264999,135352,'Tarzan',2,3),(264999,49706,'Tito',2,4),(264999,86498,'Tobias',2,5),(264999,55085,'Zoe',1,6),(264999,119589,'Andre',2,7),(264999,110743,'Malik',0,8),(264999,1223082,'Augustus',0,9),(264999,1533,'Nancy Davidson',1,10),(264999,9281,'Paris',1,11),(264999,9575,'Rome',1,12),(264999,1041480,'Salvador',2,13),(264999,146025,'Motel Clerk',1,14),(264999,101687,'White Shadow',1,15),(264999,1690514,'Pool Party Guy',0,16),(264999,1692766,'Tori Snatch',0,17),(264999,1692767,'Voguer #1',0,18),(264999,1692768,'Voguer #2',0,19),(264999,1529995,'Megan Davidson',0,20),(264999,66537,'Lauren',1,21),(264999,1123886,'Charlotte',0,22),(264999,1529996,'Mini Mart Cashier',0,23),(264999,1692769,'Nurse',0,24),(264999,1692770,'Doorman',0,25),(264999,1692771,'Male Stripper',0,26),(264999,1692772,'Augustus\' Girl',0,27),(264999,1692773,'Malik\'s Girl #1',0,28),(264999,1292489,'Caroline',0,29),(264999,1425472,'Mike\'s Girl #1',0,30),(264999,1343531,'Mike\'s Girl #2',0,31),(264999,1692774,'Mike\'s Girl #3',0,32),(264999,1692775,'Mike\'s Girl #4',0,33),(264999,1078610,'Mae',0,34),(264999,51456,'Julia',1,35),(264999,176759,'Diane',1,36),(264999,1217862,'Jessica',0,37),(264999,1290580,'Concierge',0,38),(264999,1692776,'Paris\' Assistant',0,39),(264999,1692777,'Fake Neo',0,40),(264999,1560890,'Twilight Guy #1',0,41),(264999,1692778,'Twilight Guy #2',0,42),(264999,1692779,'Twilight Guy #3',0,43),(264999,1692780,'Fireman',0,44),(264999,17642,'Tarzan\'s Girl',1,45),(264999,1285805,'Tito\'s Girl #1',0,46),(264999,1521136,'Tito\'s Girl #2',0,47),(264999,1692782,'Tito\'s Girl #3',0,48),(264999,1692783,'Ken\'s Girl #1',0,49),(264999,1367406,'Ken\'s Girl #2',1,50),(264999,1692784,'Big Dick Richie\'s Girl',0,51),(264999,1093123,'Malik\'s Girl #2',1,52),(264999,1329572,'Male Stripper (uncredited)',2,53),(53457,5470,'Julia Jarmond',1,0),(53457,17498,'Jules Dufaure',2,1),(53457,9005,'Bertrand Tezac',2,2),(53457,19062,'Edouard Tezac',2,3),(53457,19165,'Genneviu00e8ve Dufaure',0,4),(53457,228884,'Sarah Starzynski',1,5),(53457,566307,'Mme Starzynski',0,6),(53457,24462,'Mamu00e9',1,7),(53457,18992,'William Rainsferd',2,8),(53457,566308,'Rachel',0,9),(53457,234921,'M. Starzynski',2,10),(53457,1184813,'Gendarme 2 camp',2,11),(53457,1668026,'Joshua',2,12),(288980,9777,'Samuel',2,1),(288980,6573,'Plimpton',2,2),(288980,15566,'Vanessa',1,3),(288980,33533,'Jefferson Monroe',2,4),(288980,5131,'Fanny',1,5),(288980,928638,'Slave Buyer',0,6),(288980,19260,'Barney Fagan',2,7),(288980,1579770,'Big Hand',2,8),(288980,157961,'Garrett',2,9),(288980,1321881,'Drew',2,10),(288980,1579772,'Ozias',2,11),(288980,1219769,'Seaton Cervisse',2,12),(288980,1579773,'Charlotte',1,13),(319910,77122,'Vittoria',0,1),(319910,7132,'Julius Hench',2,2),(319910,11155,'Gabriel Heckum',2,3),(319910,21028,'Jacob Heckum',2,4),(319910,54789,'Ignacio',2,5),(319910,59238,'Buddy Heckum',2,6),(319910,51682,'Ace',2,7),(319910,1270179,'Santion\'s Wife',1,8),(319910,112879,'Franco',0,9),(319910,96553,'Miguel Santion',2,10),(319910,51670,'Agent James McBradden',2,11),(319910,1495097,'Young William \'Buddy\' Heckum',0,12),(319910,1528094,'Young Jacob \'Jake\' Heckum',0,13),(319910,59215,'Mario Vargos Garza',2,14),(319910,1717810,'Receptionist',0,15),(319910,1475659,'Priest',0,16),(319910,1717812,'Mike',0,17),(319910,1717813,'Violinist (as Sergio Garcia)',0,18),(319910,85613,'Eric',2,19),(319910,1717818,'Priest',0,20),(319910,1639435,'Priest',0,21),(319910,1717825,'Pablo',0,22),(319910,38709,'Priest',2,23),(319910,15799,'Joe',0,24),(62008,80602,'Glen Deeds',2,0),(62008,119598,'Wilimena Deeds',1,1),(62008,9030,'Lindsey',1,2),(62008,31137,'Walter Deeds',0,3),(62008,17773,'Natalie',1,4),(62008,55541,'',2,5),(62008,11008,'Heidi',1,6),(62008,928305,'Corporate Employee',1,7),(62008,928306,'Ariel',0,8),(62008,928307,'Social Worker',1,9),(71688,5064,'Margaret Thatcher',1,0),(71688,34257,'Geoffrey Howe',2,1),(71688,205258,'Young Denis Thatcher',2,2),(71688,388,'Denis Thatcher',2,3),(71688,438859,'June',0,4),(71688,1023482,'Cleaner',0,5),(71688,1023483,'Susie',1,6),(71688,20508,'Alfred Roberts',2,7),(71688,237020,'Young Margaret Thatcher',1,8),(71688,1023484,'Muriel Roberts',0,9),(71688,39187,'Carol Thatcher',0,10),(71688,1394373,'Young Carol',0,11),(71688,65448,'Hostess 1949',1,14),(71688,8445,'Host 1949',2,15),(71688,30037,'William',0,16),(71688,32357,'Airey Neave',2,17),(71688,26860,'Edward Heath',2,18),(71688,85629,'Shadow Minister',0,19),(71688,5473,'Francis Pym',2,20),(71688,20766,'Michael Heseltine',2,21),(71688,11279,'Gordon Reece',2,22),(71688,47943,'Cabinet Ministers',0,24),(71688,16273,'Cabinet Ministers',2,25),(71688,1230989,'Michael Foot',0,26),(71688,176191,'Cabinet Ministers',2,27),(71688,17353,'Alexander Haig',2,28),(71688,26121,'Admiral Leach',0,29),(71688,26706,'Admiral Fieldhouse',0,30),(71688,36666,'Ian Gilmour',2,31),(71688,17483,'Doctor',2,32),(71688,121606,'Grey Suited Guest 1949',2,33),(82679,191228,'Wren',1,0),(82679,1148130,'Albert',2,1),(82679,151254,'Joy',1,2),(82679,928532,'Keevin',0,3),(82679,530618,'April',1,4),(82679,1142720,'Roosevelt',2,5),(82679,234984,'Aaron Riley',2,6),(82679,86267,'Jackie',1,7),(82679,63220,'Barb',1,8),(82679,932095,'Melinda',1,9),(82679,1240486,'Lara',1,10),(82679,453,'Galaxy Scout',1,11),(82679,9656,'Ju00f6rgen',2,12),(87729,1733,'Thomas Jefferson',2,0),(87729,21245,'Maria Cosway',1,1),(87729,9030,'Sally Hemings',1,2),(87729,12052,'Patsy Jefferson',1,3),(87729,18766,'D\'Hancarville',2,4),(87729,4001,'Richard Cosway',2,5),(87729,41688,'James Hemings',2,6),(87729,15152,'Madison Hemings',0,7),(87729,2369,'Louis XVI',2,8),(87729,12957,'Madame Abbesse',1,9),(87729,258942,'Marie Antoinette',1,10),(87729,2192,'Marquis de Lafayette',2,11),(87729,1925,'Camille Desmoulins',2,12),(87729,70166,'Dr. Guillotin',0,13),(41317,5401,'Zulffiqar',2,0),(41317,26662,'Ellen Jasper',1,1),(41317,30428,'Mark Miller',2,2),(41317,113,'Sardar Khan',2,3),(41317,7664,'Crandall',2,4),(41317,40433,'Richardson',2,5),(41317,169874,'Nasrollah',0,6),(41317,55037,'Dr. Smythe',2,7),(41317,1336474,'Moheb',0,8),(245700,9191,'JMW Turner',2,0),(245700,1221056,'Hannah Danby',0,1),(245700,72307,'Sophia Booth',1,2),(245700,72308,'William Turner Snr',2,3),(245700,72305,'Mary Somerville',1,4),(245700,30328,'Benjamin Robert Haydon',2,5),(245700,53367,'Sarah Danby',1,6),(245700,133032,'Dr Price',2,7),(245700,39186,'Mr. Booth',2,8),(245700,17476,'Joseph Gillot',2,9),(245700,1394375,'John Ruskin',2,10),(245700,2258,'Ruskin\'s Father',2,11),(245700,65448,'Ruskin\'s Mother',1,12),(245700,29237,'JE Mayall',2,13),(245700,65446,'Prostitute',1,14),(245700,36668,'Queen Victoria',0,15),(245700,65449,'Miss Coggins',1,16),(245700,19903,'George Jones',2,17),(245700,1345950,'Clarkson Stanfield',2,18),(245700,109861,'David Roberts',2,19),(245700,52639,'Prince Albert',2,20),(245700,3568,'Lord Egremont',2,21),(245700,40043,'John Carew',2,22),(245700,185226,'Sir William Beechey',2,23),(245700,1503071,'CR Leslie',0,24),(245700,2280,'Sir Martin Archer Shee',0,25),(245700,121606,'Sir Charles Eastlake',2,26),(245700,10726,'John Constable',2,27),(245700,1798336,'Sir John Soane',0,28),(245700,20243,'Henry William Pickersgill',2,29),(245700,16273,'Sir Augustus Wall Callcott',2,30),(245700,10465,'Thomas Stothard',2,31),(245700,65451,'Theatre Actor',2,32),(245700,72310,'Theatre Actor',2,33),(245700,1321206,'Evelina',0,34),(245700,1798347,'Georgiana',0,35),(245700,1798353,'Young Lady Singer',0,36),(245700,1467145,'Second Young Lady',0,37),(245700,1220089,'Lady Stuckley',0,38),(245700,1222025,'Mr Manners',2,39),(245700,1593229,'Clergyman',0,40),(245700,1205278,'Clarinettist',0,41),(245700,27822,'Footman',2,42),(245700,1278494,'Brothel Keeper',0,43),(245700,239878,'Ruskin\'s Wife',0,44),(245700,6973,'Lady Eastlake',1,45),(245700,156356,'Dinner Guest',2,46),(245700,1587576,'Cornelius',0,47),(245700,207557,'Colourman',0,48),(245700,65303,'Mariner',2,49),(245700,226083,'Unhappy Couple',1,50),(245700,229672,'Unhappy Couple',2,51),(245700,1754638,'Theatre Actor',0,52),(245700,1798368,'Theatre Actor',0,53),(245700,1798369,'Theatre Actor',0,54),(245700,1798370,'Theatre Actor',0,55),(245700,1798371,'Theatre Actor',0,56),(245700,1798372,'Boy Actor',0,57),(245700,8445,'Gentleman Critic',2,58),(245700,43024,'Gentleman Critic',2,59),(245700,118617,'Gentleman Critic',2,60),(245700,42998,'Lady Critics',1,61),(245700,192838,'Lady Critics',1,62),(245700,151958,'Gallery Visitor',2,63),(245700,139444,'Gallery Visitor',2,64),(245700,1247601,'Gallery Visitor',0,65),(245700,1798373,'Neighbour',0,66),(245700,174700,'Neighbour',1,67),(245700,990064,'Hannah\'s Friend',0,68),(245700,1798374,'Dutch Lady',0,69),(245700,1798376,'Dutch Lady',0,70),(245700,1295992,'Market Trader (uncredited)',0,71),(37842,18177,'Georges Palet',2,0),(37842,20851,'Marguerite Muir',2,1),(37842,19117,'Josepha',1,2),(37842,8789,'Bernard de Bordeaux',2,3),(37842,7276,'Suzanne Palet',1,4),(37842,20082,'Lucien d\'Orange',2,5),(37842,34677,'la dame de l\'immeuble de Marguerite',1,6),(37842,81054,'Jean-Mi',2,7),(37842,123130,'Marcel Schwer',0,8),(37842,35003,'le 1er patient',2,9),(37842,83842,'le 2u00e8me patient',2,10),(37842,17074,'Elodie',1,11),(37842,1632528,'Jean-Baptiste Larmeur',2,12),(44092,1620,'Zeng Jing',1,0),(44092,17120,'Jiang Ah-sheng',2,1),(44092,77303,'King of Dharma Wheel',2,2),(44092,96611,'Zhanqing',0,3),(44092,78869,'Lei Bin',2,4),(44092,52575,'Drizzle',1,5),(44092,116636,'Zhang Renfeng',0,7),(44092,131334,'Tian Qingtong',1,8),(44092,1133858,'The Magician',0,9),(44092,1035980,'Auntie Cai',0,10),(44092,582557,'Doctor Li',2,11),(44092,1356429,'Monk Wisdom',0,12),(44092,232688,'Monk Obsession',0,13),(44092,1401361,'Killer Bear',2,15),(44092,1002639,'Eater Bear',0,16),(44092,1299620,'Song Yang 5 leader',0,17),(44092,1612071,'Song Yang 5 member',0,18),(44754,10690,'Lisa Cohen',1,0),(44754,1892,'Mr. Aaron',2,1),(44754,103,'Jason Berstone',2,2),(44754,4756,'Andrew Van Tassel',2,3),(44754,124377,'Emily',1,4),(44754,1003,'Ramon',2,5),(44754,18793,'Paul',0,6),(44754,52442,'Monica',1,7),(44754,17487,'Darren',2,8),(44754,14892,'Mrs. Marretti',1,9),(44754,52475,'Joan',1,10),(44754,25908,'Becky',1,11),(44754,78080,'Shopgirl',1,12),(44754,19,'Wounded Woman',1,13),(44754,52419,'Victor',2,14),(44754,30711,'Karl',2,15),(44754,1030923,'Angie',1,16),(44754,155574,'Bonnie',1,17),(44754,1220763,'Leslie',0,18),(44754,86474,'Annette',1,19),(44754,59693,'Nurse',0,20),(44754,8177,'Dave the Lawyer',2,21),(43949,62564,'Julianna Juli Baker',1,0),(43949,236851,'Bryce Loski',2,1),(43949,28412,'Pasty Loski',1,2),(43949,11085,'Steven Loski',2,3),(43949,4251,'Chet Duncan',2,4),(43949,14698,'Trina Baker',1,5),(43949,18992,'Richard Baker',2,6),(43949,149670,'Daniel Baker',2,7),(43949,74227,'Young Juli',1,8),(43949,1526737,'Young Bryce',0,9),(43949,1761273,'Sherry Stalls',1,10),(43949,969140,'Garrett',2,11),(43949,582816,'Lynetta',1,12),(43949,935277,'Mrs. Kimble',1,13),(43949,114606,'Mark Baker',0,14),(43949,226371,'Matt Baker',0,15),(43949,106490,'Dana Tressler',0,16),(43949,1207490,'Mrs. McClure',0,17),(43949,1761277,'Eddie Trulock',2,18),(43949,1738267,'Tree Worker',2,19),(243938,52997,'Lou',2,0),(243938,64342,'Nick',2,1),(243938,54729,'Jacob',2,2),(243938,36801,'Adam Jr.',2,3),(243938,54812,'Hot Tub Repairman',2,4),(243938,94098,'Jill',1,5),(243938,1159009,'Sophie',1,6),(243938,86624,'Kelly',1,7),(243938,466505,'Brad',2,9),(243938,70776,'Courtney',1,10),(243938,347335,'Terry',2,11),(243938,1451392,'Susan',0,12),(243938,98879,'Herself',1,13),(243938,1394648,'Herself',1,14),(243938,1451393,'Himself',0,15),(243938,1451394,'Shot Girl',0,16),(243938,2224,'Choozy Doozy Host',2,17),(243938,185805,'Gary Winkle',0,18),(243938,1507448,'Bridesmaid',0,19),(243938,1334091,'Christine',1,20),(243938,557803,'Excited Girl',0,21),(243938,3036,'Adam (uncredited)',2,22),(243938,59256,'J-Bird',2,23),(243938,129714,'Bridesmaid',1,24),(86838,72466,'Marty',2,0),(86838,6807,'Billy',2,1),(86838,57755,'Charlie',2,2),(86838,4690,'Hans',2,3),(86838,2887,'Zachariah',0,4),(86838,37260,'Kaya',1,5),(86838,18182,'Angela',1,6),(86838,6752,'Paolo',2,7),(86838,10692,'Larry',2,8),(86838,72873,'Tommy',2,9),(86838,113676,'Blonde Lady',1,10),(86838,1170658,'Myra',0,11),(86838,5048,'Man in Hat',2,12),(86838,1170659,'Killer (as James Hebert)',2,13),(86838,71686,'Cellmate',2,14),(86838,1055520,'Catholic Priest',2,15),(86838,159879,'Al',2,16),(86838,18472,'Dennis',2,17),(86838,109560,'Sharice',1,18),(86838,111185,'Vietnamese Priest',2,19),(86838,1170656,'The Hooker',1,20),(86838,65826,'Hispanic Guy',2,21),(86838,2839,'Young Zachariah',2,22),(86838,1170657,'Maggie',1,23),(86838,1145861,'The Butcher',2,24),(86838,87115,'The Hippy',2,25),(86838,1834641,'Barman',0,26),(86838,98804,'First Cop (as Ronnie Blevins)',2,27),(86838,1118671,'Fellow Monk',0,28),(86838,1834642,'Bonny',0,29),(86838,1628961,'Receptionist (uncredited)',1,30),(86838,970238,'Doctor (uncredited)',1,31),(86838,1599175,'Judge (uncredited)',2,32),(97370,1245,'Laura',1,0),(97370,136796,'The Swimmer',0,1),(97370,1034704,'Andrew',0,2),(97370,1047642,'The Quiet Man',0,3),(97370,1047643,'The Nervous Man',0,4),(97370,1047644,'The Bad Man',0,5),(97370,1711557,'The Dead Woman',0,6),(97370,1711559,'Pick-Up Man',0,7),(97370,1711561,'First Victim',0,8),(97370,1711616,'Leering Man',0,9),(97370,1711625,'Second Victim',0,10),(97370,1711626,'Man at Club',0,11),(97370,1711628,'Father at Beach',0,12),(97370,1711629,'Mother at Beach',0,13),(97370,1711633,'The Baby',0,14),(97370,1711634,'The Baby',0,15),(97370,1711635,'Motorcyclist',0,16),(97370,1711638,'',0,17),(97370,1711639,'Gang Member',0,18),(97370,1711643,'The Deformed Man',2,19),(97370,1711645,'Tearoom Waitress',0,20),(97370,1711646,'The Bus Driver',0,21),(97370,1711648,'The Logger',0,22),(97370,1711650,'The Alien',0,23),(70829,1037,'Don Carini',2,0),(70829,19302,'Vinnie',2,1),(70829,21485,'Captain O\'Brian',0,2),(70829,4253,'Don Bonfante',2,3),(70829,54041,'Rocco',2,4),(70829,18313,'Tony V',2,5),(70829,78804,'Nancy Bonfante',1,6),(70829,559769,'Little Willie',2,7),(70829,1240,'Cabbie',2,8),(70829,69504,'Sister Theresa',1,9),(70829,82415,'Macho',2,10),(70829,115973,'Carini Girl',0,11),(70829,559770,'Burlesque Dancer',0,12),(70829,64331,'Younggu',2,13),(70829,559771,'Customer',0,14),(54518,150810,'himself',2,0),(54518,76594,'herself',1,1),(54518,57108,'himself',0,2),(54518,120724,'himself',2,3),(54518,219545,'',2,4),(44214,524,'Nina Sayers',1,0),(44214,18973,'Lily',1,1),(44214,1925,'Thomas Leroy',2,2),(44214,10767,'Erica Sayers',1,3),(44214,1920,'Beth MacIntyre',1,4),(44214,970088,'David Moreau',2,5),(44214,140407,'Veronica',1,6),(44214,43443,'Galina',1,7),(44214,90755,'Madeline',1,8),(44214,60898,'Andrew',2,9),(44214,60901,'Tom',2,10),(44214,1081121,'Sergio',0,11),(44214,1173,'Mr. Fithian',2,12),(44214,28030,'Mrs. Fithian',1,13),(44214,1081122,'Mr. Stein',0,14),(44214,1081123,'Mrs. Stein',0,15),(44214,14548,'Georgina',1,16),(44214,140409,'Sebastian',0,17),(44214,68108,'Scott',2,18),(44214,11872,'Susie',1,19),(44214,1163066,'Uncle Hank',0,20),(44214,140408,'Violinist',0,21),(44214,1429010,'Corps De Ballet',1,22),(44214,19469,'Nurse',1,23),(44214,78581,'Jaded Piano Player',0,24),(44214,1223163,'Rich Gent',2,25),(44214,1371392,'Dancer (uncredited)',0,26),(44214,1454332,'Ballet Dancer (uncredited)',0,27),(44214,58964,'Ballet Dancer (uncredited)',2,28),(339984,9278,'Christy Beam',1,0),(339984,1164259,'Anna Beam',0,1),(339984,26291,'Kevin Beam',2,2),(339984,1367322,'Abby Beam',1,3),(339984,1483525,'Adelynn Beam',0,4),(339984,15758,'Angela',1,5),(339984,239574,'Dr. Nurko',0,6),(339984,1511242,'Emmy',1,7),(339984,3911,'Pastor Scott',2,8),(339984,1511243,'Billy',2,9),(339984,51456,'Church Lady',1,10),(339984,1640222,'Church Lady',1,11),(339984,31528,'Ben',0,12),(339984,27545,'Dr. Burgi',2,13),(339984,1480643,'Haley',1,14),(339984,1046203,'Dr. Todd Blythe - ER Doctor',2,15),(339984,1640223,'School Nurse',1,16),(339984,1088939,'Dr. Dorsi',0,17),(339984,37937,'Dr. Joe Hester',2,18),(339984,156100,'Chief Garvey',2,19),(339984,990136,'Church Man',2,20),(339984,933545,'Boston Hospital Nurse',0,21),(339984,1383527,'Pre-Op Nurse',1,22),(339984,1541155,'Waiting Room Nurse',1,23),(339984,1205623,'Angry Ticket Line Passenger',0,24),(339984,1511251,'Girl',1,25),(339984,1511245,'Girl',1,26),(339984,1382839,'Daughter In Store',1,27),(339984,1511247,'Church Boy',0,28),(339984,1511248,'Nurse B.Petty',0,29),(339984,1511249,'Woman with Big Hair',0,30),(339984,1502998,'Dr. White',2,31),(339984,1511250,'Church Cowboy',0,32),(339984,1511253,'Coffeeshop Patron',0,33),(339984,1181556,'Cafeteria Worker',0,34),(339984,74135,'Receptionist',0,35),(339984,1705851,'Paramedic',0,36),(339984,1705792,'News Reporter',2,37),(339984,1705794,'Airline Attendant',0,38),(339984,1511252,'Fireman',2,39),(339984,1358970,'Fireman',0,40),(339984,156100,'Fireman',2,41),(339984,1309902,'Fireman',2,42),(339984,1705863,'Kid',2,43),(339984,1511244,'Dodgeball Player / Student (uncredited)',0,44),(339984,1511246,'Church Girl (uncredited)',1,45),(339984,1511254,'Church Girl (uncredited)',1,46),(239563,1532,'Vincent',2,0),(239563,55536,'Maggie',1,1),(239563,3489,'Daka',1,2),(239563,1274508,'Oliver',2,3),(239563,40477,'Brother Geraghty',2,4),(239563,18288,'Zucko',2,5),(239563,168994,'Nurse Ana',1,6),(239563,37157,'Coach Mitchell',0,7),(239563,127048,'Terry',0,8),(239563,995205,'Ocinski',2,9),(239563,43366,'Shirley, Sunnyside Administrator',1,10),(239563,1274509,'Starlet',0,11),(239563,66580,'David',2,12),(239563,1274507,'Student',0,13),(239563,58355,'Rachele',0,14),(239563,1260481,'Teller #23',1,15),(239563,167565,'Principal O\'Brien',2,16),(239563,38951,'Gus',2,17),(239563,77013,'Linda',1,18),(239563,1212964,'Hospital Supervisor',1,19),(239563,61013,'Ultrasound Tech',0,20),(239563,1070750,'Medical Receptionist',0,21),(239563,155549,'Roger',2,22),(239563,106370,'Physical Therapist',2,23),(239563,52021,'Maggie\'s Attorney',2,24),(239563,1397945,'Judge Reynolds',1,25),(239563,1232484,'Speech Therapist',0,26),(239563,1297399,'Buy Buy Baby Salesman',0,27),(222899,55638,'Bernie',2,0),(222899,8177,'Danny',2,1),(222899,35705,'Joan',1,2),(222899,52847,'Debbie',1,3),(222899,4443,'Casey McNeil',2,4),(222899,52851,'Alison',1,5),(222899,49706,'Steven Thaler',2,6),(222899,1277549,'DJ',0,7),(222899,21131,'Ryan Keller',2,8),(222899,214729,'Himself',2,9),(222899,1254925,'Ad Executive',1,10),(222899,139844,'Pretty Lady',1,11),(332567,59175,'Nancy Adams',1,0),(332567,59129,'Carlos',2,1),(332567,1686692,'Surfer 1',0,2),(332567,1686693,'Surfer 2',0,3),(332567,16841,'Father',2,4),(332567,1559151,'Chloe Adams',1,5),(332567,1677465,'Carlo\'s Son',0,6),(332567,1677464,'Intoxicated Man',0,7),(332567,1644278,'Mother',0,8),(332567,1677481,'Young Nancy',0,9),(332567,1669262,'Young Mom',0,10),(332567,1677480,'Steven Seagull',0,11),(38223,49961,'Harriet M. Welsch',1,0),(38223,12929,'Ole Golly',0,1),(38223,52475,'Mrs. Welsch',1,2),(38223,70243,'Agatha K. Plummer',1,3),(38223,4938,'Janie Gibbs',1,4),(38223,20814,'Sport',2,5),(38223,19976,'Ben Welsch',2,6),(136835,17605,'Colin Evans',2,0),(136835,40036,'Terri',1,1),(136835,57451,'Meg',1,2),(136835,36628,'Alexis',1,3),(136835,67913,'Jeffrey',2,4),(136835,1106264,'Ryan',0,5),(136835,1088939,'Javier',0,6),(136835,1365964,'Cop',0,7),(136835,1106266,'Sally',1,8),(136835,1106269,'Officer Jacobs',0,9),(136835,1214974,'EMT',2,10),(136835,1467313,'Landlord',0,11),(136835,80770,'McKinley',2,12),(136835,565504,'Chairman',2,13),(136835,41019,'Dr. Ross',2,14),(136835,1106263,'Reid',0,15),(136835,1467314,'Nanny',0,16),(136835,1091772,'Reporter',0,17),(264660,93210,'Caleb Smith',2,0),(264660,227454,'Ava',1,1),(264660,25072,'Nathan Bateman',2,2),(264660,1457238,'Kyoko',1,3),(264660,17199,'Jay',0,4),(264660,1457239,'Lily',0,5),(264660,1394342,'Jasmine',0,6),(264660,1457240,'Jade',0,7),(264660,1457241,'Katya',0,8),(264660,1394348,'Amber',0,9),(264660,1423809,'Office Girl (uncredited)',0,10),(238603,1273197,'Alex',0,0),(238603,544123,'Tuck',0,1),(238603,1273198,'Munch',0,2),(238603,1273199,'Emma',1,3),(238603,6166,'Dr. Lawrence Madsen',2,4),(238603,1377458,'Marcus Simms',0,5),(238603,1225829,'Calvin',0,6),(238603,1224154,'Theresa Simms',0,7),(238603,100567,'Janice Douglas',0,8),(238603,1377459,'Betty Barrett',0,9),(238603,62597,'James Hastings',2,10),(238603,47884,'Christine Hastings',1,11),(238603,129013,'les ouvriers en bu00e2timent',2,12),(238603,62595,'Dusty, la dame au bar',1,13),(238603,1378610,'les habituu00e9s du bar',0,14),(238603,1378613,'les habituu00e9s du bar',0,15),(238603,1233909,'un agent de su00e9curitu00e9',0,16),(238603,54718,'une serveuse du restaurant',1,17),(238603,84955,'Blake Douglas',2,18),(238603,1237601,'Charlie, les amis d\'u00e9cole',0,19),(238603,969140,'Cameron',2,20),(238603,963227,'Mookie',2,21),(238603,1378628,'une amie de la mu00e8re de Munch',0,22),(238603,188758,'le patron du magasin de du00e9pu00f4t sur gages',2,23),(238603,1378629,'un chauffeur de camion',0,24),(238603,1378631,'le podcast (voix)',0,25),(238603,1378632,'Echo',0,26),(58680,9575,'Woo',1,0),(58680,88059,'Tim',2,1),(58680,84077,'Frankie',2,2),(58680,138897,'Romaine',2,3),(58680,83102,'Hop',0,4),(58680,4169,'Lenny',2,5),(58680,45245,'Claudette',1,6),(58680,36424,'Darryl',2,7),(58680,1214160,'Shakim',0,8),(58680,1353182,'Fiancu00e9e',0,9),(58680,18270,'Sticky Fingas',2,10),(58680,3799,'Himself',0,11),(264644,60073,'Joy \'Ma\' Newsome',1,0),(264644,1277188,'Jack Newsome',2,1),(264644,11148,'Nancy Newsome',1,2),(264644,144160,'Old Nick',2,3),(264644,3905,'Robert Newsome',2,4),(264644,64712,'Leo',2,5),(264644,1232769,'Officer Parker',1,6),(264644,86237,'Officer Grabowski',2,7),(264644,59214,'Dr. Mittal',2,8),(264644,19957,'Talk Show Host',1,9),(264644,984711,'Neighbor',1,10),(264644,103284,'Lawyer',2,11),(264644,1260011,'Neighborhood Boy',2,12),(264644,76514,'FBI Agent',2,13),(264644,1517741,'Attending Doctor',1,14),(264644,201951,'News Anchor',1,15),(264644,1239345,'Reporter #1',1,16),(264644,1279082,'Reporter #2',2,17),(264644,1357824,'Reporter #3',2,18),(264644,43258,'Doug',2,19),(264644,1517744,'Veteran',2,21),(264644,88933,'Clerk (uncredited)',1,22),(264644,1517743,'TV Crewman (uncredited)',2,23),(264644,1510502,'Diner Patron (uncredited)',2,24),(107811,996701,'Miller',2,0),(107811,73128,'Casey',2,1),(107811,65225,'Jeff Chang',1,2),(107811,131723,'Nicole',1,3),(107811,95137,'Randy',2,4),(107811,60851,'Dr. Chang',2,5),(107811,936308,'Pledge Gomez',1,6),(107811,19859,'Sally Huang',0,7),(107811,183066,'Julian',2,8),(107811,176048,'Campus Cop #2',0,9),(107811,146516,'Pledge Aguilar',1,10),(107811,523952,'PJ Brill',2,11),(107811,1002409,'(voice)',1,12),(144340,56323,'Portia Nathan',1,0),(144340,22226,'John Pressman',2,1),(144340,3968,'Mark',2,2),(144340,10437,'Susannah',1,3),(144340,12900,'Clearence',2,4),(144340,232006,'Jeremiah Balakian',2,5),(144340,21369,'Corinne',1,6),(144340,1189241,'Nelson',0,7),(144340,60021,'Brandt',2,8),(144340,47953,'Helen',1,9),(144340,1392152,'James',2,10),(144340,20275,'Rachel',1,11),(144340,2843,'Richard',0,12),(144340,53573,'Polokov',2,13),(144340,175829,'Christopher Flynn',2,14),(144340,1795880,'Yulia Karasov',0,15),(144340,187734,'Abby',1,16),(144340,59201,'Mrs. Pressman',1,17),(144340,196181,'Mrs. Lafont',1,18),(144340,1046140,'Junior Lafont',0,19),(144340,1161587,'Ben',0,20),(144340,1719747,'Jeremiah - 8 Years Old',0,21),(144340,1795881,'Jeremiah\'s Mom',0,22),(144340,1652788,'Jeremiah\'s Dad',0,23),(144340,1023253,'Girl on Tour',1,24),(144340,1052686,'Praying Applicant',1,25),(144340,1161588,'Smug Kid',0,26),(144340,1161589,'Gymnast',0,27),(144340,1447856,'Quest Student',0,28),(48217,6012,'Jean, le capitaine',2,0),(48217,15254,'Joseph Auguste Nu00e9el',0,1),(48217,1137,'Pauline, l\'u00e9pouse du capitaine',1,2),(48217,19062,'le gouverneur',2,3),(48217,24563,'le pru00e9sident Venot',2,4),(48217,37606,'le commissaire de la Marine',0,5),(48217,550110,'le chef douanier',0,6),(48217,259884,'Louis Ollivier',0,7),(48217,278862,'Monsieur Chevassus, le bourreau',0,8),(48217,123560,'le soldat Lou00efc',2,9),(48217,38529,'le contre-amiral',2,10),(48217,68722,'le pu00e8re du gouverneur',2,11),(48217,65009,'la Malvilain',1,12),(48217,142777,'le propriu00e9taire',0,13),(48217,54209,'l\'u00e9pouse du gouverneur',0,14),(48217,84583,'Adrienne',1,15),(47502,38225,'Margaret',1,0),(47502,9046,'Tony',2,1),(47502,31070,'Jack Connor',2,2),(47502,47773,'Dr. Susskind',2,3),(47502,42715,'Debbie',1,4),(47502,1384561,'Maria',0,5),(47502,167578,'Maria\'s Boyfriend',0,6),(47502,57093,'Young Man at Rolls',2,7),(47502,2954,'Young Man at Rolls',2,8),(47502,19,'Saleslady',1,9),(84892,33235,'Charlie Kelmeckis',2,0),(84892,10990,'Sam',1,1),(84892,132157,'Patrick',2,2),(84892,22226,'Bill Anderson',2,3),(84892,19961,'Candace Kelmeckis',1,4),(84892,52404,'Mary Elizabeth',1,5),(84892,1053419,'Alice',1,6),(84892,27104,'Brad Hayes',2,7),(84892,61114,'Mrs. Kelmeckis',1,8),(84892,3234,'Dr. Burton',1,9),(84892,15091,'Aunt Helen',1,10),(84892,32597,'Mr. Kelmeckis',2,11),(84892,987572,'Chris Kelmeckis',2,12),(84892,85139,'Derek',0,13),(84892,936970,'Susan',1,14),(84892,11161,'Mr. Callahan',2,15),(84892,1517251,'Bob',0,16),(84892,48463,'Craig',2,17),(84892,1231874,'Peter',0,18),(44853,3064,'Daniel Dillon',2,0),(44853,63,'Lucia',1,1),(44853,8210,'Donald Dalglish',2,2),(44853,2630,'Elena Burn',1,3),(44853,98,'Hope Burn',1,4),(44853,1834,'Annie',1,5),(44853,2320,'Francis Bellanger',2,6),(157544,999817,'Angela Holmes',1,1),(157544,454,'Pu00e8re Lozano',2,2),(157544,938,'Vicar Imani',2,3),(157544,15336,'Roger Holmes',2,4),(157544,21193,'Cardinal Bruun',2,5),(157544,33676,'Docteur Richards',1,6),(157544,43464,'Pete',2,7),(157544,59214,'Docteur Fahti',2,8),(157544,60650,'Det. Harris',2,9),(59678,11109,'Ron',2,0),(59678,66431,'Sam',1,1),(59678,236695,'Moses',2,2),(59678,103351,'Brewis',2,3),(59678,176188,'Italian Woman',0,4),(59678,236696,'The Creature',0,5),(59678,127005,'Arresting Police Officer',2,6),(59678,29406,'Policeman 1',2,7),(59678,82738,'Policeman 2',2,8),(59678,236697,'Dimples',1,9),(59678,236698,'Tia',1,10),(59678,1161609,'Tonks',2,11),(59678,155532,'Documentary Voice Over',0,12),(59678,85067,'Hi-Hatz',2,13),(59678,1363086,'Dennis',2,14),(59678,972041,'Jerome',2,15),(59678,972040,'Pest',2,16),(59678,1672658,'Biggz',2,17),(59678,1233838,'Margaret',0,18),(59678,1672660,'Dionne',1,19),(59678,1399746,'Gloria',1,20),(59678,214299,'Probs',2,21),(59678,1672687,'Mayhem',2,22),(59678,1672688,'Biggz\'s Mum',1,23),(59678,1249937,'Pest\'s Nan',1,24),(59678,193356,'Dennis\' Dad',2,25),(59678,1672692,'Beats',2,26),(59678,1672700,'Patrick',2,27),(59678,193340,'Detective Superintendant',2,28),(59678,1672707,'Police Constable',2,29),(59678,578690,'Police Officer - SWAT (uncredited)',0,30),(59678,1672713,'Policewoman (uncredited)',1,31),(79777,588671,'Ajla',0,0),(79777,44736,'Danijel',2,1),(79777,54620,'Aleksandar',2,2),(79777,938095,'Nadja',0,3),(79777,938096,'Durja',0,4),(79777,111032,'Mitar',0,5),(79777,224286,'Maida',0,6),(79777,938097,'Petar',0,7),(79777,1118,'Nebojsa',2,8),(79777,111058,'Darko',0,9),(79777,238070,'Tarik',0,10),(158011,4587,'Jordan Turner',1,0),(158011,17140,'Casey Welson',1,1),(158011,9779,'Officer Phillips',2,2),(158011,11486,'Alan Denado',2,3),(158011,83244,'Autumn',1,4),(158011,21366,'Maddy',1,5),(158011,51579,'Terrance',2,6),(158011,67979,'Michael Foster',2,7),(158011,95517,'Michael Foster\'s Wife',1,8),(158011,10963,'Marco',2,9),(158011,191252,'Female Trainee',1,10),(407887,73249,'Jang, Hak-soo (South Korean Navy Lieutenant)',2,0),(407887,3896,'Douglas MacArthur',2,1),(407887,86330,'Lim, Gye-jin (North Korean Senior Colonel)',2,2),(407887,227430,'Han Jae-Sun',1,3),(407887,84854,'Seo Jin-Chul',2,4),(407887,83221,'Kim Hwa-Young',1,5),(407887,85572,'Baek-San',2,6),(407887,139493,'Park Nam-Chul',2,7),(407887,138527,'Nam Ki-Sung',2,8),(407887,1299313,'Choi Suk-Joong',2,9),(407887,496937,'Na Jung-Nim',1,10),(407887,1604286,'Lt. Col. Edward L. Rowny',0,11),(407887,1718135,'Alexander Haig',0,12),(407887,1741856,'Soldier-Typist',0,13),(62204,5616,'Naoh',2,0),(62204,2372,'Amoukar',2,1),(62204,152970,'Gaw',2,2),(62204,13312,'Ika',1,3),(62204,184330,'Rouka - tribu Ulam',2,4),(62204,1336078,'Nam - tribu Ulam',0,5),(62204,578093,'Aghoo - tribu Ulam',0,6),(62204,1336080,'Lakar - tribu Ulam',0,7),(62204,1195963,'Faum - tribu Ulam',0,8),(62204,1282685,'Modoc - tribu Ulam',0,9),(62204,1336082,'Hourk - tribu Ulam',0,10),(62204,1336083,'Gammla - tribu Ulam',0,11),(62204,1336084,'Mikr - tribu Ulam',0,12),(62204,1336085,'Matr - tribu Ulam',0,13),(62204,1336086,'Tsor - tribu Ulam',0,14),(62204,1336088,'Umbre - tribu Ulam',0,16),(62204,1336089,'Tavawa - tribu Ivaka',0,17),(62204,1336092,'La faiseur de feu - tribu Ivaka',0,18),(62204,72117,'Morah - tribu Ulam',2,19),(59457,10912,'Rebecca',1,0),(59457,136532,'Thomas',2,1),(59457,72305,'Judith',1,2),(59457,17476,'Ralph',2,3),(59457,229395,'Henry',2,4),(59457,213395,'Monica',1,5),(59457,229396,'Rebecca - 9 years',0,6),(59457,229397,'Thomas - 10 years',2,7),(59457,229398,'Thomas - 5 years',0,8),(59457,3300,'Rose',1,9),(59457,118036,'Molly',1,10),(59457,134774,'Erica',0,11),(59457,229399,'Marc',0,12),(59457,229400,'Dima',0,13),(59457,229401,'Eric',0,14),(37414,1893,'Lou Ford',2,0),(37414,11661,'Amy Stanton',1,1),(37414,56731,'Joyce Lakeland',1,2),(37414,13726,'Chester Conway',2,3),(37414,19453,'Sheriff Bob Maples',2,4),(37414,1284159,'Howard Hendricks',2,5),(37414,8984,'Billy Boy Walker',2,6),(37414,13550,'Joe Rothman',2,7),(37414,19977,'Johnnie Pappas',2,8),(43867,29522,'Major Rudolf Rassendyll / The Prisoner of Zenda',2,0),(43867,3610,'Princess Flavia',1,1),(43867,2669,'Black Michael',2,2),(43867,13992,'Antoinette de Mauban',1,3),(43867,51762,'Rupert of Hentzau',2,4),(43867,2438,'Colonel Zapt',2,5),(43867,14261,'Captain Fritz von Tarlenheim',2,6),(43867,92907,'Detchard',2,7),(43867,1312720,'Albert von Lauengram',0,8),(43867,103016,'Frau Holf - Cook',0,9),(43867,12153,'Max - Butler',2,10),(43867,229609,'Krafstein',0,11),(39780,5469,'Oscar Hopkins',2,0),(39780,112,'Lucinda Leplastrier',1,1),(39780,8785,'Reverend Dennis Hasset',2,2),(39780,207,'Hugh Stratton',2,3),(39780,12206,'Mr. Jeffries',2,4),(39780,1451740,'Mr. Tomasetti',2,5),(36691,3392,'Ben Kalmen',2,0),(36691,518,'Jimmy',2,1),(36691,44735,'Cheston',2,2),(36691,4038,'Nancy',1,3),(36691,18248,'Jordan',1,4),(36691,51856,'Susan',1,5),(36691,107033,'Carol Solomonde',1,6),(36691,17606,'Allyson Karsch',1,7),(36691,31028,'Steve Heller',2,8),(36691,6437,'Pete Hartofilis',2,9),(36691,115335,'Student',1,10),(36691,28033,'Nascarella',2,11),(36691,82167,'Gary Porter',0,12),(36691,115972,'Ted',0,13),(36691,115973,'Flirtatious Student',0,14),(36691,115974,'Irate Student',2,15),(36691,115975,'Sgt. John Haverford',2,16),(36691,115976,'Hipster',0,17),(36691,115977,'Scotty',0,18),(36691,115978,'Bartender Bob',2,19),(36691,115979,'Alison\'s Friend',1,20),(36691,115980,'Hipster Model (uncredited)',0,21),(36691,115981,'Waiter (uncredited)',0,22),(36691,115982,'Jogger (uncredited)',1,23),(36691,1167492,'Nurse',1,24),(36691,94098,'Tall Girl',1,25),(36691,52442,'Maureen',1,26),(45324,1979,'Jack Abramoff',2,0),(45324,11164,'Pam Abramoff',1,1),(45324,131008,'Sarah Abramoff',1,2),(45324,58168,'Emily Miller',1,3),(45324,12834,'Michael Scanlon',2,4),(45324,49275,'Tom DeLay',2,5),(45324,16165,'Adam Kidan',2,6),(45324,57448,'Chief Poncho',2,7),(45324,43311,'Oscar Carillo',0,8),(45324,7868,'Big Tony',2,9),(45324,10210,'Kontantinos (Gus) Boulis',2,10),(45324,135256,'Lobbyist #2',0,11),(45324,73296,'Susan Schmidt',0,12),(45324,1532567,'Reverend Mueller',2,13),(45324,209537,'Simon Bowler',2,14),(45324,190941,'Grover Norquist',2,15),(56601,5365,'Cesar',2,0),(56601,11159,'Padre Estaban',2,1),(56601,57412,'Mario',0,2),(56601,28660,'Frankie',1,3),(56601,60255,'Angel Macias',2,4),(56601,122844,'Enrique Suarez',2,5),(56601,492081,'Norberto Villarreal',2,6),(56601,1028870,'Ricardo Treviu00f1o',2,7),(56601,145059,'Baltazar Charles',0,8),(56601,1291350,'Fidel Ruiz',2,9),(56601,1291351,'Gerardo Gonzalez',0,10),(56601,1110509,'Jose \'Pepe\' Maiz',0,11),(56601,14888,'Mr. Tanner',2,12),(56601,942080,'Maria',1,13),(56601,28638,'Mac Thompkins',2,14),(56601,20959,'Cool Papa Bell',2,15),(56601,63677,'Waitress',1,16),(56601,63214,'Reporter #1',2,17),(126319,1171904,'La Grise (voice)',0,0),(126319,2192,'Ernest (voice)',2,1),(126319,1096265,'Cu00e9lestine (voice)',0,2),(126319,46475,'Georges (voice)',2,3),(126319,1171905,'Lucienne (voice)',0,4),(126319,1505892,'Lu00e9on (voice)',0,13),(126319,544716,'Chef de Clinique (voice)',2,14),(126319,1505893,'Avocat d\'Ernest (voice)',0,15),(126319,20285,'Juge Grizzly (voice)',2,16),(126319,25133,'Chef de la police des Ours (voice)',2,17),(126319,1373152,'Chef de la police des Rats (voice)',0,18),(126319,185316,'Monsieur Ranu00e7onnet (voice)',2,19),(126319,1505894,'Cu00e9lestine (enfant) (voice)',0,20),(126319,1505895,'Leon (voice)',0,21),(126319,1257861,'Lila (voice)',0,22),(126319,89042,'(voice)',1,23),(126319,86655,'(voice)',1,26),(126319,2178,'Ernest (voice)',2,27),(126319,851784,'Celestine (voice)',1,28),(126319,7570,'The Grey One (voice)',1,29),(126319,13242,'Rat Judge (voice)',2,30),(126319,3905,'Head Dentist (voice)',2,31),(126319,52119,'Lucienne (voice)',1,32),(126319,17039,'George (voice)',2,33),(126319,2954,'Grizzly Judge (voice)',2,34),(67660,8177,'Dominic',2,0),(67660,98953,'Jeremy Kern',2,1),(67660,22122,'Mya',1,2),(67660,35705,'Candace Hall',1,3),(67660,55638,'Cedric Ward',2,4),(67660,40036,'Lauren Harris',1,5),(67660,143242,'Michael Hanover',0,6),(67660,71530,'Zeke Freeman',2,7),(67660,17773,'Kristen',1,8),(67660,15899,'Loretta Hanover',1,9),(67660,214108,'Bennett',0,10),(67660,1034453,'Sonia',1,11),(67660,31136,'Alex',2,12),(67660,540281,'Gail',1,13),(67660,109561,'Vicki',1,14),(67660,1723995,'Duke Hall',0,15),(67660,20373,'Gina',1,16),(67660,82587,'Himself',2,17),(67660,110742,'Dominic\'s Girlfriend',1,18),(75674,41901,'Lisa Morales',1,0),(75674,53257,'Sanchez',2,1),(75674,14331,'Walter Ross',2,2),(75674,84754,'Commander Pedros',2,3),(75674,1025647,'Christo\'s Thug',0,4),(75674,1025648,'Recruit',0,5),(75674,1025649,'Christo\'s Thug',0,6),(75674,1025650,'Cartel & Mexican SOF',0,7),(75674,1025651,'Recruit',0,8),(75674,1025654,'Christo\'s Thug',0,9),(75674,1025655,'Recruit',0,10),(75674,1025657,'Somalian',0,11),(75674,20562,'Yacht Henchman #1',2,12),(75674,8270,'Abu Shabal',2,13),(75674,1025666,'Somalian',0,14),(75674,1025667,'Recruit',0,15),(75674,1025668,'Cartel & Mexican SOF',0,16),(75674,1025669,'Recruit',0,17),(75674,1025670,'Cartel & Mexican SOF',0,18),(76726,122889,'Andrew Detmer',2,0),(76726,558466,'Matt Garetty',2,1),(76726,135651,'Steve Montgomery',2,2),(76726,50217,'Richard Detmer',2,3),(76726,213044,'Monica',1,4),(76726,589098,'Casey Letter',1,5),(76726,137463,'Michael Ernesto',2,6),(76726,934796,'Sean',2,7),(76726,231651,'Samantha',0,8),(36819,738,'King Agamemnon / Fireman',2,0),(36819,8930,'Robin Hood',0,1),(36819,10409,'Dame Pansy / Pansy',0,2),(36819,383,'Vincent',2,3),(36819,65,'Napoleon',2,4),(36819,12689,'Supreme Being',2,5),(36819,381,'Mrs. Ogre',1,6),(36819,386,'Winston the Ogre',2,7),(36819,2076,'Evil Genius',2,8),(36819,154971,'Randall',0,9),(36819,130,'Fidgit',2,10),(36819,995639,'Strutter',0,11),(36819,219382,'Og',0,12),(36819,132538,'Wally',2,13),(36819,995640,'Vermin',0,14),(36819,388,'Compere',2,15),(36819,124516,'Kevin\'s Mother',0,16),(36819,79928,'Kevin\'s Father',2,17),(36819,14325,'Robber Leader',2,18),(36819,133137,'Neguy',0,19),(36819,10732,'Lucien',0,20),(36819,10984,'Robert',0,21),(36819,65598,'Supreme Being',2,22),(36819,13465,'Benson',2,23),(36819,2601,'2nd Robber',2,24),(36819,374,'Theatre Manager',0,25),(36819,215741,'Bull Headed Warrior',2,26),(36819,33317,'Puppeter',2,27),(36819,37893,'Fireman 2',2,28),(36819,185960,'1st Refugee',2,29),(36819,1214791,'3rd Robber',0,30),(36819,1237120,'Beryl',0,31),(36819,27334,'Arm Wrestler',0,32),(36819,1183443,'Horseflesh',0,33),(36819,37894,'Troll Father',2,34),(36819,7029,'Cartwright',2,35),(36819,179028,'Reginald',0,36),(57214,225694,'Costa',2,0),(57214,225695,'JB',2,1),(57214,1142720,'Thomas',2,2),(57214,996700,'Dax',0,3),(57214,131771,'Kirby',1,4),(57214,996699,'Everett',0,5),(57214,1333921,'Tyler',0,6),(57214,999790,'Alexis',1,7),(57214,996701,'Miles',2,8),(57214,62597,'Dad',2,9),(57214,42194,'Mom',1,10),(57214,1368651,'Rob',0,11),(57214,65925,'T-Rick',0,12),(57214,83861,'Brendan',2,13),(57214,996697,'JB\'s Girl',1,14),(57214,4030,'Angry Little Person',2,15),(57214,996698,'Freshman Party Crasher',0,16),(57214,1235869,'Police Captain',0,17),(57214,1391685,'Police Officer',0,18),(57214,1281307,'High School Student',0,19),(57214,81375,'Mrs. Stillson',1,20),(57214,1354806,'Older Guy\'s Wife',1,21),(57214,159365,'Older Guy',2,22),(57214,1763252,'Kevin',0,23),(57214,1342869,'Jillian Barberie',1,24),(57214,78303,'Jimmy Kimmel',0,25),(57214,1448937,'Hispanic Neighbor',1,26),(57214,1003801,'Ecstasy Girl (uncredited)',1,27),(101267,111455,'Herself',0,0),(101267,59919,'Himself',2,1),(101267,82663,'Herself',1,2),(101267,143742,'Herself',1,3),(101267,1070777,'Herself',0,4),(101267,42262,'Himself',2,5),(101267,1085731,'Himself',0,6),(101267,1600199,'Himself',2,7),(101267,1085733,'Himself',0,8),(101267,1085734,'Himself',0,9),(101267,1337227,'Herself',1,10),(222935,94185,'Hazel Grace Lancaster',1,0),(222935,1159982,'Augustus Waters',2,1),(222935,232006,'Isaac',2,2),(222935,4784,'Frannie Lancaster',1,3),(222935,131006,'Michael Lancaster',2,4),(222935,5293,'Peter van Houten',2,5),(222935,133931,'Lidewij Vliegenthart',1,6),(222935,113373,'Patrick',2,7),(222935,1431805,'Dr. Maria',0,8),(222935,152902,'Dr. Simmons',2,9),(222935,1279375,'Monica',1,10),(222935,1124950,'Gus\' Dad',0,11),(222935,146412,'Gus\' Mom',0,12),(222935,1378128,'Hostess',1,13),(222935,1465967,'Flight Attendant',0,14),(222935,1465969,'Monica\'s Mom',0,15),(222935,27692,'Minister',0,16),(222935,1672065,'Speaker #1 (Beth)',0,17),(222935,1672066,'Speaker #2 (Angel)',0,18),(222935,171946,'Waiter',0,19),(222935,1672067,'Young Girl (Alisa)',0,20),(222935,1672068,'Young Hazel',0,21),(222935,931002,'European',0,22),(222935,1672069,'Support Group Member (Julie)',0,23),(222935,1672070,'Speaker #3 (Sid)',0,24),(222935,1672071,'Speaker #4 (PJ)',0,25),(222935,1672072,'Gus\'s Leg Double',0,26),(222935,1672073,'Coffee Shop Worker',0,27),(222935,1672074,'Giggling Girl',0,28),(222935,1672075,'Anne Frank (voice)',0,29),(222935,1672076,'Support Group',0,30),(222935,1672077,'Support Group',0,31),(222935,1672078,'Support Group',0,32),(222935,1672079,'Support Group',0,33),(222935,1672080,'Support Group',0,34),(222935,1672081,'Support Group',0,35),(222935,1672082,'Support Group',0,36),(222935,1672083,'Support Group',0,37),(222935,1672084,'Support Group',0,38),(222935,183066,'Voice Cast',2,39),(222935,146392,'Voice Cast',1,40),(222935,1585158,'Voice Cast',0,41),(222935,1225592,'Voice Cast',2,42),(222935,59051,'Voice Cast',0,43),(222935,228722,'Voice Cast',0,44),(222935,36821,'Voice Cast',2,45),(222935,1002409,'Voice Cast',1,46),(222935,94022,'Voice Cast',2,47),(222935,41129,'Voice Cast',1,48),(284296,2632,'Andre',2,0),(284296,5916,'Chelsea Brown',1,1),(284296,65920,'Silk',2,2),(284296,17773,'Erica Long',1,3),(284296,71530,'Benny',2,4),(284296,66623,'Tammy',1,5),(284296,521563,'Brad',2,6),(284296,5726,'Jazzy Dee',2,7),(284296,55638,'Charles',2,8),(284296,19292,'Adam Sandler',2,9),(284296,2395,'Herself',1,10),(284296,16377,'Himself',2,11),(284296,56903,'Fred',2,12),(284296,109561,'Vanessa',1,13),(284296,168452,'Lisa',1,14),(284296,26664,'Carl Allen',2,15),(284296,170364,'Drunk businessman',2,16),(284296,83995,'Engineer',0,17),(284296,21355,'Himself',2,18),(284296,1099717,'Mike',0,19),(284296,40036,'Herself',1,20),(284296,109560,'Herself',1,21),(284296,120831,'Michele',1,22),(284296,1260481,'Pill Girl',1,23),(205220,5309,'Philomena',1,0),(205220,4581,'Martin Sixsmith',2,1),(205220,1151957,'Young Philomena',1,2),(205220,51544,'Mary',1,3),(205220,8926,'Sister Hildegarde',1,4),(205220,17026,'Mother Barbara',1,5),(205220,50117,'Pete Olsson',2,6),(205220,117165,'Michael',0,7),(205220,29236,'Jane',1,8),(205220,20057,'Sally Mitchell',1,9),(205220,134774,'Young Nun',0,10),(205220,1277228,'Sister Anunciata',0,11),(205220,1356630,'Kathleen',0,12),(205220,63359,'Sister Claire',1,13),(205220,178630,'Young Sister Hildegarde',0,14),(205220,1558321,'Peg',0,15),(205220,1296187,'Bridie',0,16),(205220,1558322,'Mamie',0,17),(205220,1558323,'Nursery Nun',0,18),(205220,1558324,'Young Anthony',0,19),(205220,1558325,'Young Mary',0,20),(205220,1558326,'Anthony (8-10 Years)',0,21),(205220,1558327,'John',0,22),(205220,218269,'Kate Sixsmith',1,23),(205220,3902,'Marcia Weller',1,24),(205220,150583,'Priest',0,25),(205220,281527,'David',2,26),(205220,26121,'Dr. Robert',0,27),(205220,1558336,'Bellboy',0,28),(205220,76109,'Barman\'s Mum',0,29),(205220,1234615,'Barman',0,30),(205220,1558337,'Receptionist Hotel',0,31),(205220,1558338,'Omelette Chef',0,32),(205220,1558339,'Waitress',0,33),(205220,1558340,'Marge',0,34),(205220,1229192,'Father',0,35),(205220,1558342,'Check In Operator',0,37),(205220,1558343,'Priest In Church',0,38),(205220,107405,'Alex',0,39),(286565,232006,'Quentin Jacobsen',2,0),(286565,1289968,'Margo Roth Spiegelman',1,1),(286565,1029934,'Marcus \'Radar\' Lincoln',2,2),(286565,148992,'Ben Starling',2,3),(286565,934243,'Lacey Pemberton',1,4),(286565,1449596,'Angela',1,5),(286565,20047,'Connie Jacobsen',1,6),(286565,155077,'Josh Jacobsen',2,7),(286565,1421424,'Ruthie Spiegelman',1,8),(286565,1421422,'Becca Arrington',1,9),(286565,1421423,'Jase Worthington',2,10),(286565,1502872,'Chuck Parson',0,11),(286565,1502873,'Debbie Spiegelman',0,12),(286565,200406,'Hank Spiegelman',2,13),(286565,78885,'Detective Otis Warren',0,14),(286565,1159982,'Mason',2,15),(286565,1407964,'Gus',2,16),(286565,1846411,'Robert Joyner',0,17),(286565,1480643,'Young Margo',1,18),(286565,1502871,'Young Quentin',0,19),(286565,1502874,'Ben at Age 12',0,20),(286565,45405,'English Teacher',0,21),(286565,1208353,'Dwight Arrington (voice)',0,22),(286565,1502875,'Freshman Girl',0,23),(286565,1502876,'Check-Out Girl',0,24),(129670,6905,'Woody Grant',1,0),(129670,62831,'David Grant',2,1),(129670,59410,'Ross Grant',2,2),(129670,35515,'Kate Grant',1,3),(129670,825,'Ed Pegram',2,4),(129670,162342,'Noel',0,5),(129670,22250,'Uncle Ray',2,6),(129670,1202600,'Cousin Randy',0,7),(129670,1033573,'Peg Nagy',1,8),(129670,11516,'Cole',2,9),(129670,115767,'Aunt Martha',1,10),(129670,86187,'Uncle Cecil',2,11),(129670,1538365,'Biker (uncredited)',0,13),(129670,1538366,'Applauding Karaoke Patron (uncredited)',0,14),(57157,6885,'Mavis Gary',1,0),(57157,10872,'Matt Freehauf',2,1),(57157,17178,'Buddy Slade',2,2),(57157,53755,'Beth Slade',1,3),(57157,86624,'Sandra Freehauf',1,4),(57157,44712,'Hedda Gary',1,5),(57157,59691,'David Gary',2,6),(57157,132310,'Book Associate',2,7),(57157,54782,'Jan',1,8),(57157,206479,'Mary Ellen Trantowski',1,9),(57157,116568,'Nipple Confusion Bassist',1,10),(57157,999654,'Nipple Confusion Guitarist',0,11),(57157,131871,'Front Desk Girl',1,12),(57157,999655,'Sales Lady',0,13),(57157,1218184,'Vicki',0,14),(57157,18999,'Mavis\' Publisher (voice)',2,15),(57157,83244,'Girl',1,16),(57157,71815,'Denny\'s Waitress',1,17),(46889,18686,'Judith Moore',1,0),(46889,518,'Pat Francato',2,1),(46889,15758,'Liz Bailey',1,2),(46889,42993,'Robert Nelson',2,3),(46889,38581,'Teenage Judith',1,4),(46889,31028,'Phil Francato',2,5),(46889,13550,'The Kisser',2,6),(46889,11484,'Mary',1,7),(38093,15758,'Leslie Wright',1,0),(38093,4238,'Scott McKnight',0,1),(38093,52851,'Morgan Alexander',1,2),(38093,25544,'Lloyd Wright',2,3),(38093,119598,'Ella McKnight',1,4),(38093,2230,'Janice Wright',1,5),(38093,10964,'Mark Matthews',2,6),(38093,51684,'Angelo Bembre',2,7),(38093,57428,'Nelson Kaspian',2,8),(38093,1254627,'Morgan\'s Friend',0,9),(122906,93210,'Tim',2,0),(122906,53714,'Mary',1,1),(122906,2440,'Dad',2,2),(122906,1095524,'Kit Kat',1,3),(122906,30083,'Mum',1,4),(122906,156356,'Uncle D',2,5),(122906,1394375,'Rory',2,6),(122906,2441,'Harry',2,7),(122906,234352,'Charlotte',1,8),(122906,1221073,'Jay',2,9),(122906,556356,'Joanna',1,10),(122906,116264,'Jimmy Kincade',2,11),(122906,968292,'Ginger Jenny',1,12),(122906,145133,'Rupert',2,13),(122906,59039,'Fitz',2,14),(122906,28950,'Jean',1,15),(122906,1648727,'Polly',1,16),(122906,1264619,'Aunty May',1,17),(122906,443865,'Tina',1,18),(122906,1420175,'John',2,19),(122906,1640427,'Jo - 1 Year',1,20),(122906,1653299,'Trudy',1,21),(122906,1653293,'Prompter',2,22),(122906,189281,'Theatre Judge',2,23),(122906,1220118,'Flirty Girl',1,24),(122906,1186080,'Commuter',0,25),(122906,531772,'Bin Man',2,26),(122906,1168128,'Japanese Girl (uncredited)',1,27),(60599,1205,'Robert Miller',2,0),(60599,4038,'Ellen Miller',1,1),(60599,3129,'Det. Michael Bryer',2,2),(60599,222330,'Brooke Miller',1,3),(60599,221600,'Reina',1,4),(60599,77277,'Jimmy Grant',2,5),(60599,27545,'Chris Vogler',2,6),(60599,119499,'Julie Cote',1,7),(60599,78190,'Gavin Briar',2,8),(60599,19511,'Jeffrey Greenberg',2,9),(60599,38951,'Earl Monroe',2,10),(60599,41406,'Syd Felder',2,11),(60599,2254,'Det. Mills',2,12),(60599,1192389,'Judge Rittenband',0,13),(60599,5370,'Peter Miller',0,14),(60599,35082,'Sandrine Cote',1,15),(60599,1327735,'Flores',0,16),(60599,1329537,'Ava Stanton',1,17),(227719,928575,'David Raskin',0,0),(227719,1279279,'Christina Raskin',1,1),(227719,515628,'Jessie Pierce',1,2),(227719,57191,'Quinn Goldberg',2,3),(227719,76412,'Adam Le',0,4),(227719,357551,'Kathy Raskin',1,5),(227719,168875,'Ben Raskin',2,6),(227719,68180,'Dr. Lu',2,7),(227719,145323,'Todd',0,8),(227719,1374156,'Blonde',0,9),(227719,1088938,'Police Officer',0,10),(227719,1374157,'Bikini Girl',0,11),(227719,1205388,'Liv',1,12),(227719,226534,'Sarah Nathan',0,13),(227719,1358965,'Music Industry Mogul',0,14),(227719,1458265,'Break Up Guy',0,15),(61752,4604,'Girl 6',1,0),(61752,21353,'Shoplifter',2,1),(61752,5281,'Jimmy',2,2),(61752,15899,'Boss #1 - Lil',1,3),(61752,5578,'Girl #39',1,4),(61752,36602,'Caller #1 - Bob',2,5),(61752,11486,'Scary Caller #30',2,6),(61752,31029,'Salesgirl #1',1,7),(61752,83105,'Salesgirl #3',1,8),(61752,56367,'Girl #75',1,9),(61752,15370,'Girl #12',0,10),(61752,32396,'Caller #4 - Beach',2,11),(61752,19511,'Caller #33',2,12),(61752,33662,'Caller #8 - Martin',2,13),(61752,86041,'Caller #8 - Christine',1,14),(61752,3125,'Boss #3',1,15),(61752,1241,'Murray',2,16),(61752,138,'Himself',2,17),(61752,21399,'Himself',2,18),(61752,13602,'Switchboard Operator',1,19),(45226,3087,'Gruen',2,0),(45226,4515,'D.B. Cooper',2,1),(45226,21519,'Hannah',1,2),(45226,70746,'Brigadier',2,3),(45226,7675,'Remson',2,4),(45226,1107,'Dempsey',2,5),(45226,51550,'Denise',1,6),(45226,115768,'Howard K. Smith',2,7),(179144,72782,'Jep Gambardella',2,0),(179144,89193,'Romano',2,1),(179144,128236,'Ramona',1,2),(179144,120638,'Lello Cava',0,3),(179144,68166,'Trumeau',0,4),(179144,137353,'Viola',0,5),(179144,137812,'Stefania',0,6),(179144,5566,'Conte Colonna',0,7),(179144,27274,'Stefano',0,8),(179144,131632,'Alfio Bracco',2,9),(179144,20234,'Herself',1,10),(179144,509344,'Andrea',2,11),(179144,649,'Arturo',2,12),(179144,235208,'Talia Concept',1,13),(86825,76070,'India Stoker',1,0),(86825,2227,'Evelyn \'Evie\' Stoker',1,1),(86825,1247,'Charlie Stoker',2,2),(86825,20212,'Richard Stoker',2,3),(86825,67837,'Aunt Gwendolyn \'Gin\' Stoker',1,4),(86825,429,'Chris Pitts',2,5),(86825,71375,'Whip Taylor',2,6),(86825,17184,'Mrs. McGarrick',1,7),(86825,53916,'Sheriff Howard',2,8),(86825,73937,'Doctor Jacquin',1,9),(86825,944159,'Reverend',2,10),(86825,51918,'Mr. Feldman',0,11),(86825,128211,'Housekeeper',1,12),(86825,149569,'Housekeeper',1,13),(86825,1271787,'Young Charles Stoker',2,14),(86825,1271786,'Young Richard Stoker',0,15),(86825,1271788,'Jonathan Stoker',0,16),(86825,1271789,'Jonathan Stoker',0,17),(86825,1589746,'Mourner (uncredited)',2,18),(38448,72466,'Syracuse',2,0),(38448,5203,'Ondine',1,1),(38448,95896,'Maura',1,2),(38448,135432,'Annie',1,3),(38448,78285,'Nurse - Dialysis',0,4),(38448,2220,'Alex',2,5),(38448,135433,'Fish Co Op Worker',0,6),(38448,135434,'Draper\'s Shop Tracy',0,7),(38448,9029,'Priest',2,8),(38448,135436,'Librarian',0,9),(61337,13548,'Dr. Werner Ernst',2,0),(61337,26467,'Felicia Potter',1,1),(61337,15735,'Stella',1,2),(61337,13,'Dr. Butz',2,3),(61337,10774,'Nun',1,4),(61337,12900,'Furnaceman',2,5),(61337,2954,'Bed Two',2,6),(61337,452,'Constance \'Connie\' Potter',1,7),(61337,6541,'Dr. Hofstader',2,8),(61337,52995,'Robert Payne',2,9),(89325,3092,'Beth Winter',1,0),(89325,8945,'Dr. Joseph Winter',2,1),(89325,9880,'Sheriff Morris',2,2),(89325,1902,'Penny Alexander',1,3),(89325,28633,'Russell',2,4),(89325,32798,'Grace',1,5),(89325,45407,'Bryan',2,6),(89325,8786,'Carmen',1,7),(89325,1435955,'Sam',2,8),(41508,233131,'Gyu00f6rgy Ku00f6ves',0,0),(41508,233132,'Smoker',0,1),(41508,1294830,'Pretty boy',0,2),(41508,1113152,'Bandi Citrom',0,3),(41508,1142344,'Older Kollmann boy',0,4),(41508,1402461,'Rozi',0,5),(41508,1402462,'Finn',0,6),(41508,1402463,'Moskovich',0,8),(41508,1402468,'Fodor',0,9),(41508,1402353,'Lu00e9nu00e1rt',0,10),(41508,1402469,'Old Kollmann',0,11),(41508,1402470,'Younger Kollmann boy',0,12),(41508,8784,'US sergeant',2,13),(44555,73774,'Zhang',2,0),(44555,131513,'Li',2,1),(44555,131303,'Wang\'s wife',0,2),(44555,17382,'Wang',2,3),(44555,131514,'The Captain',0,4),(173931,53926,'Fu (voice)',2,0),(173931,74036,'Shifu (voice)',2,1),(173931,61981,'Slash (voice)',2,2),(173931,1156724,'Penny (voice)',0,3),(173931,973135,'Biggie (voice)',1,4),(61984,234641,'Hajime Saito',2,0),(61984,12670,'Susumu Kodai',2,1),(61984,94018,'Yuki Mori',1,2),(61984,234645,'Shiru014d Sanada',2,3),(61984,70626,'Ju016bzu014d Okita',2,4),(61984,226738,'Saburu014d Katu014d',0,5),(61984,553939,'Daisuke Shima',0,6),(61984,58596,'Mamoru Kodai',2,7),(61984,1040475,'Aihara',0,8),(61984,974738,'Doctor Sado',1,9),(61984,233695,'Hikozaemon Tokugawa',0,10),(61984,1129848,'Yasuo Nanbu',0,11),(61984,115700,'Akira Yamamoto',2,12),(61984,1096815,'Furuya',0,13),(61984,1129849,'Kenjiro Ota',0,14),(61984,1117059,'Sasaki',0,15),(61984,1469272,'Operator',1,16),(50601,36669,'Thomas Anders',2,0),(50601,5576,'Dutchman',2,1),(50601,1271,'President of Georgia',2,2),(50601,21721,'Chris Bailot',2,3),(50601,59192,'Tatia',1,4),(50601,69122,'Miriam',1,5),(50601,125628,'Daniil',2,6),(50601,52890,'Sebastian Ganz',2,7),(50601,43202,'Zoe',1,8),(50601,1118,'Col. Demidov',2,9),(50601,151013,'Anton Medoevi',0,10),(50601,51670,'Capt. Rezo Avaliani',2,11),(50601,221553,'Karin Lange',1,12),(345003,1478271,'Nellie Bly',0,1),(345003,38559,'Dr. Dent',2,2),(345003,46948,'Miss Grant',1,3),(345003,1239372,'Anne Neville',0,4),(345003,1478272,'Miss Grupe',0,5),(345003,1478273,'Mrs. Schanz',0,6),(345003,1478274,'Mrs. Caine',0,7),(345003,1478275,'Tillie Maynard',0,8),(345003,1478276,'Leona Fox',0,9),(345003,1307664,'Dr. Field',0,10),(345003,1838570,'Arena Pugh',0,11),(345003,1838571,'Bridget McGuinness',1,12),(345003,1132612,'Mrs. Stanard',1,13),(345003,1448094,'Dr. Kinier',0,14),(345003,1488063,'John Cockerill',0,15),(345003,110027,'Matilda',1,16),(345003,1838591,'Miss Grady',0,17),(345003,1838593,'Margaret McCartney',0,18),(345003,1838595,'Judge Duffy',0,19),(345003,1838596,'Mary',0,20),(345003,1695123,'Vernon M. Davis',2,21),(345003,1838597,'Urena Little Page',0,22),(236751,17141,'Todd Burpo',2,0),(236751,17521,'Sonja Burpo',1,1),(236751,1271809,'Colton',0,2),(236751,19159,'Jay Wilkins',2,3),(236751,945302,'Mr. Jackson',2,4),(236751,16429,'Michael',2,5),(236751,1271810,'Cassie',0,6),(236751,1191551,'Mr. Parker',0,7),(236751,117051,'Lee Watson',2,8),(236751,1116281,'Arch Angel #2',1,9),(357837,1504623,'Jennifer',0,1),(357837,1504624,'Ken',0,2),(357837,68559,'Jerry August',2,3),(357837,29700,'Hal Sanders',2,4),(357837,1504625,'Shotsy',1,5),(357837,1504626,'Danny',0,6),(357837,1504627,'The Captain',0,7),(357837,104920,'Jennifer\'s Mother',1,8),(358451,940339,'Fang Daolong',2,1),(358451,38280,'Chen Yuerong',0,2),(358451,124992,'Qiu',0,3),(358451,1094210,'Hua',2,4),(291870,29222,'Jason Kelly',2,0),(291870,380,'Dick Kelly',2,1),(291870,143240,'Meredith Goldstein',1,2),(291870,119592,'Lenore',1,3),(291870,20212,'David Kelly',2,4),(291870,1059597,'Shadia',1,5),(291870,115974,'Cousin Nick',2,6),(291870,168380,'Officer Finch',1,7),(291870,1332747,'Officer Reiter',0,8),(291870,2047,'Stinky',2,9),(291870,111683,'Tan Pam',0,10),(291870,427978,'Tyrone',2,11),(291870,1524373,'Brah',2,12),(291870,1456280,'Cody',0,13),(291870,1319519,'Cougar #1',1,14),(291870,1532416,'Cougar #2',1,15),(291870,1333845,'Hippie Cathy',1,16),(291870,1046665,'Hippie Griz',0,17),(291870,1625684,'Hippie Bart',2,18),(291870,112562,'Brooke Kelly',1,19),(291870,1064313,'Bradley',2,20),(291870,155965,'Wedding Planner',1,21),(291870,232749,'Random Cop',0,22),(291870,1318798,'Father at Beach',2,23),(291870,1625677,'Boy on Beach',2,24),(291870,1158065,'Catholic Priest',0,25),(291870,1527775,'Rabbi',2,26),(291870,450950,'Teenager',2,27),(291870,1068811,'Father at Wake',2,28),(291870,1625673,'College Kid',2,29),(291870,1625680,'Georgia Student',2,30),(291870,1625683,'Female Hippie Chick',1,31),(291870,196902,'Rest Stop Waitress',1,32),(291870,1477823,'Karaoke MC',2,33),(291870,1625686,'Jamaican Nurse',1,34),(291870,1625690,'Uncle Rubin',2,35),(291870,1625687,'Party Girl',1,36),(291870,1625688,'ASL Signer at Wedding',2,37),(291870,1653126,'Spring Breaker (uncredited)',0,38),(291870,1532418,'Beach Girl (uncredited)',1,39),(291870,1744011,'Restaurant Patron (uncredited)',0,40),(291870,1502998,'Hobo (uncredited)',2,41),(291870,1744012,'Beach-Goer (uncredited)',0,42),(291870,1662463,'Drunk Girl (uncredited)',1,43),(291870,1744013,'Spring Breaker (uncredited)',1,44),(291870,1744014,'Spring Breaker (uncredited)',0,45),(291870,1622092,'Beach Goer (uncredited)',0,46),(291870,1471113,'Spring Breaker (uncredited)',0,47),(291870,1744015,'Hype Man (uncredited)',0,48),(291870,1744016,'Funeral Patron (uncredited)',1,49),(291870,1744020,'Wedding Guest (uncredited)',1,50),(291870,1532425,'Wedding Brunch Server (uncredited)',1,51),(291870,1744024,'Car Driver (uncredited)',0,52),(291870,1532417,'Spring Breaker (uncredited)',2,53),(291870,1744025,'Wedding Brunch Guest (uncredited)',0,54),(291870,1532423,'Karaoke Bar Patron (uncredited)',0,55),(291870,1744026,'Party Goer (uncredited)',1,56),(291870,1494870,'Classy Spring Breaker (uncredited)',1,57),(291870,1744029,'Bridesmaid (uncredited)',1,58),(291870,1744030,'Funeral Attendee (uncredited)',0,59),(291870,1526099,'Wedding Guest (uncredited)',0,60),(291870,1383490,'Funeral Patron (uncredited)',2,61),(291870,1744031,'Tyrone\'s Friend (uncredited)',0,62),(291870,1744032,'Funeral Guest (uncredited)',0,63),(291870,1744033,'Spring Breaker (uncredited)',0,64),(291870,1744034,'Cop (uncredited)',0,65),(291870,1744035,'Nice Guy (uncredited)',0,66),(291870,1744036,'Uncle Larry (uncredited)',0,67),(291870,1154191,'Assisted living resident (uncredited)',2,68),(291870,1744037,'Spring Breaker (uncredited)',1,69),(291870,1532420,'Spring Break Student (uncredited)',1,70),(291870,1744038,'Usher (uncredited)',0,71),(291870,1744039,'Beach Goer (uncredited)',0,72),(291870,1744040,'Detective (uncredited)',0,73),(291870,1532421,'Spring Breaker (uncredited)',1,74),(291870,1744042,'Funeral Wake (uncredited)',1,75),(291870,1532428,'Prisoner (uncredited)',0,76),(291870,1532422,'African Studies Professor (uncredited)',0,77),(291870,1744063,'Spring Breaker (uncredited)',0,78),(291870,1744064,'Spring Breaker (uncredited)',0,79),(291870,1529272,'Spring Breaker (uncredited)',1,80),(291870,1744065,'Tyrone\'s Crew (uncredited)',0,81),(291870,1214974,'Beach-Goer / Biker / Construction Worker (uncredited)',2,82),(291870,1744066,'Groomsman (uncredited)',0,83),(291870,1744067,'Funeral Attendee (uncredited)',0,84),(291870,1532419,'Rest Stop Diner (uncredited)',0,85),(291870,1640994,'Little Girl on Beach (uncredited)',0,86),(291870,1744068,'Beach-Goer (uncredited)',0,87),(291870,1744069,'Beach Bum (uncredited)',0,88),(291870,1532415,'Goldstein Wedding Guest (uncredited)',1,89),(206563,1372459,'Raphael',0,0),(206563,1372462,'Gardo',0,1),(206563,1372463,'Rato',0,2),(206563,108916,'Olivia',1,3),(206563,87341,'Frederico',2,4),(206563,52583,'Josu00e9 Angelo',2,5),(206563,1262084,'Turk',2,6),(206563,8349,'Father Juilliard / Padre Juilliard',2,7),(206563,52585,'Marco',2,8),(206563,112110,'Santos',2,9),(206563,130036,'Jefferson',2,10),(206563,55015,'Carlos',0,11),(206563,559176,'Santos\'s wife / Esposa de Santos',0,12),(206563,1372457,'Carlos\' partner / Su00f3cio de Carlos',2,13),(206563,1657185,'Grau00e7a',0,14),(45317,13240,'Micky Ward',2,0),(45317,3894,'Dick Dicky Eklund',2,1),(45317,9273,'Charlene Fleming',1,2),(45317,6832,'Alice Eklund-Ward',1,3),(45317,1415263,'Himself',0,4),(45317,81462,'Gail \'Red Dog\' Eckland Carney',1,5),(45317,10489,'George Ward',2,6),(45317,999736,'Cathy Pork Eklund',1,7),(45317,999737,'Cindy Tar Eklund',0,8),(45317,155595,'Sherri The Baby Ward',1,9),(45317,999771,'Kasie Ward',0,10),(45317,999772,'Karen',1,11),(45317,1148130,'Little Dickie',2,12),(45317,1223731,'Sal Lanano',2,13),(45317,155766,'Himself',2,14),(45317,1371551,'\'Little Alice\' Eklund',1,15),(45317,209799,'Lou Gold',2,16),(45317,67784,'Mike Toma',0,17),(45317,1499803,'Wolfie',0,18),(45317,239604,'HBO Cameraman',0,19),(45317,2841,'Laurie Carroll',1,20),(45317,1473458,'Businessman',0,21),(45317,1355923,'Bald Businessman',0,22),(45317,583838,'Reporter',0,23),(45317,84436,'Referee Micky Vann',0,24),(45317,87287,'Crackhead Bonnie',1,25),(45317,554346,'Court Officer',0,26),(45317,118645,'Fight Spectator',0,27),(45317,6942,'Micky\'s Friend',0,28),(45317,202930,'Neary',2,29),(45317,474050,'Mike \'Machine Gun\' Mungin',0,30),(45317,1332017,'Drunk Guy',2,31),(45317,1269034,'Drunk Girl',0,32),(45317,66072,'Fight Announcer',2,33),(45317,559695,'Fight Announcer',0,34),(45317,1746888,'Fight Announcer',2,35),(45317,121747,'Fight Announcer',0,37),(45317,9457,'Fight Announcer',2,38),(45317,65606,'Fight Announcer',2,39),(45317,1673016,'Man on Street #4',2,40),(45317,572221,'Movie Patron (uncredited)',1,41),(45317,1657438,'Inmate Prisoner (uncredited)',0,42),(45317,1371552,'Inmate (uncredited)',0,43),(45317,1622416,'Inmate (uncredited)',0,44),(45317,1657440,'Ringside Fan (uncredited)',0,45),(45317,1478288,'Ring card girl (uncredited)',0,46),(45317,1535492,'Ringside Reporter / Gym Fight Spectator / Courtroom Attendee / Pedestrian / Precision Driver (uncredited)',0,47),(45317,1264229,'VIP Spectator (uncredited)',1,48),(45317,928638,'VIP (uncredited)',0,49),(45317,1179643,'Lowell Neighbor (uncredited)',0,50),(45317,1178983,'Larry Merchant (uncredited)',0,51),(45317,1657461,'Road Crew Co Worker (uncredited)',0,52),(45317,944326,'Road Crew Co Worker (uncredited)',2,53),(45317,981717,'Extra (uncredited)',0,54),(45317,1175452,'Fight Spectator (uncredited)',1,55),(45317,1588593,'Fight Spectator (uncredited)',0,56),(45317,1656064,'Fight Spectator (uncredited)',2,57),(45317,1371550,'Fight Spectator (uncredited)',0,58),(45317,1459164,'Fight Spectator (uncredited)',0,59),(45317,1473459,'Fight Photographer (uncredited)',0,60),(45317,1657468,'Fight Fan (uncredited)',0,61),(45317,1574936,'Press (uncredited)',0,62),(45317,1247835,'British Press Reporter (uncredited)',1,63),(45317,1457481,'King, Ring Girl Escort (uncredited)',0,64),(45317,1553308,'Casino Gambler (uncredited)',1,65),(45317,1506842,'Casino Kid (uncredited)',0,66),(45317,94657,'Referee (uncredited)',2,67),(45317,1540270,'Boxing Referee (uncredited)',0,68),(45317,1588592,'Boxing Ring Photographer (uncredited)',0,69),(45317,1508823,'Background (uncredited)',1,70),(45317,1360008,'Spectator (uncredited)',2,71),(45317,1502856,'Bodyguard (uncredited)',0,72),(249164,56734,'Mia Hall',1,0),(249164,221985,'Adam',2,1),(249164,60458,'Kim Schein',1,2),(249164,175826,'Kat Hall',1,3),(249164,825,'Gramps',2,4),(249164,58804,'Gran',1,5),(249164,26852,'Denny',2,6),(249164,139618,'Teddy',0,7),(249164,1369431,'Liz',1,8),(249164,1192492,'Nurse Ramirez',1,9),(249164,1369432,'Young Mia',0,10),(249164,52394,'Willow',1,11),(249164,1369433,'Henry',0,12),(249164,1182657,'Surgeon',2,13),(249164,70175,'Liddy',1,14),(249164,189719,'Nurse Davis',0,15),(249164,1406026,'Astrid',0,16),(249164,1197119,'Cute Groupie',1,17),(249164,1287152,'Male EMT',0,18),(249164,20380,'Surgeon',2,19),(249164,1406035,'Teddy\'s Surgeon',0,20),(249164,1406037,'Orderly',2,21),(249164,1221020,'Surgeon for Driver',2,22),(249164,206618,'Nurse',0,23),(249164,53715,'Wife of Driver',0,24),(249164,1223435,'Mosh Pit Oaf',0,25),(249164,1366661,'Punker',0,26),(249164,79346,'Music Aficionado',2,27),(249164,63566,'Security Guard',2,28),(249164,1406094,'Skeleton',0,29),(249164,111930,'Cool Rocker Guy',2,30),(249164,46903,'Cute Groupie #2',1,31),(249164,1406127,'Herself',0,32),(249164,208230,'Autograph Girl',1,33),(249164,1406171,'Bartender',0,34),(249164,1406182,'High Five Guy',0,35),(249164,1406186,'Orderly #2',0,36),(249164,1237423,'Security Guard #2',0,37),(249164,1406194,'Willamette Stone Band',0,38),(249164,1406196,'Willamette Stone Band',0,39),(249164,1406198,'Willamette Stone Band',0,40),(249164,1406201,'Bassist for Nasty Bruises',0,41),(249164,210904,'Female EMT',1,42),(256092,11155,'Peter Roberts',2,1),(256092,3036,'Simon Keller',2,2),(256092,61914,'Agent Walker',1,3),(256092,272408,'Chief Inspector Smith',2,4),(256092,1325836,'Rossi',0,5),(256092,1325837,'Tessa',0,6),(256092,1325838,'Det Blanchard',0,7),(256092,1338429,'Paparazzi Photographer',0,8),(256092,1338703,'News reporter',0,9),(256092,61912,'Tabloid Reporter',0,10),(256092,1338704,'Reporter',0,11),(256092,1338705,'Media Personnel',0,12),(256092,1338706,'Neighbour',0,13),(256092,1338707,'Television Reporter',0,14),(256092,1338715,'Teenager',0,15),(256092,1338720,'Media Personnel',0,16),(256092,1338741,'Neighbour being questioned by Police',0,17),(167073,36592,'Eilis Lacey',1,0),(167073,93210,'Jim Farrell',2,1),(167073,1041440,'Tony Fiorello',2,2),(167073,388,'Father Flood',2,3),(167073,477,'Madge Kehoe',1,4),(167073,43135,'Rose Lacey',1,5),(167073,1233105,'Mary Lacey',0,6),(167073,42601,'Miss Kelly',0,7),(167073,82096,'Miss Fortini',1,8),(167073,1224027,'Patty McGuire',1,9),(167073,1092908,'Diana Montini',0,10),(167073,53998,'Sheila Heffernan',1,11),(167073,1504465,'Nancy Byrne',1,12),(167073,16901,'Georgina',1,13),(167073,78727,'Dolores Grace',1,14),(167073,1544911,'George Sheridan',0,15),(167073,80661,'Maurizio Fiorello',2,16),(167073,1455758,'Frankie Fiorello',0,17),(167073,225897,'Laurenzio Fiorello',0,18),(167073,1233146,'Mr. Fiorello',2,19),(167073,115592,'Mrs. Fiorello',1,20),(167073,1228351,'Dorothy',1,21),(167073,1383359,'Mary',0,22),(167073,1840446,'Maria',0,23),(167073,1544914,'Frankie Doran',0,24),(167073,21292,'Joshua Rosenblum',2,25),(167073,1233821,'Mrs. Byrne',0,26),(167073,1544910,'Mrs. Brady',0,27),(167073,1544913,'Miss McAdam',0,28),(167073,63360,'Mr. Brown',2,29),(167073,93209,'Mr. Farrell',0,30),(167073,1702489,'Mrs. Farrell',0,31),(167073,1283872,'Girl on Deck',0,32),(167073,1544909,'Priest',0,33),(167073,1359384,'Shabby Woman',0,34),(167073,998246,'Timid Woman',0,35),(167073,1544912,'Ship Waiter',0,36),(167073,110887,'Bartocci Customer #1',1,37),(167073,1486761,'Diner Waiter',0,38),(167073,1544915,'Young Man at Dance',0,39),(167073,182955,'Bartocci Customer #2',0,40),(167073,1229849,'Young Man',0,41),(167073,1147825,'Boy\'s Father',0,42),(167073,160441,'City Hall Official',0,43),(167073,1540241,'Lady at the Cinema (uncredited)',1,44),(167073,1301503,'Woman',1,45),(121826,10978,'Jean Horton',1,0),(121826,14011,'Reginald Paget',2,1),(121826,9188,'Wilf Bond',0,2),(121826,83437,'Cissy Robson',1,3),(121826,5658,'Cedric Livingston',2,4),(121826,110080,'Dr. Lucy Cogan',1,5),(121826,85067,'Joey',2,6),(121826,1512451,'Sheryl',1,7),(121826,47851,'Bobby Swanson',2,8),(121826,42996,'George',2,9),(121826,27822,'Harry',2,10),(121826,742,'Frank White',2,11),(121826,76945,'Nobby',0,12),(121826,214019,'Simon',0,13),(304357,15735,'Maria Altmann',1,0),(304357,10859,'Randol Schoenberg',2,1),(304357,61134,'Young Maria Altmann',1,2),(304357,3897,'Pam Schoenberg',1,3),(304357,232396,'Fritz Altmann',2,4),(304357,4391,'Sherman',2,5),(304357,3872,'Hubertus Czernin',2,6),(304357,684,'Heinrich',2,7),(304357,4513,'Judge Florence-Marie Cooper',1,8),(304357,43202,'Adele Bloch-Bauer',1,9),(304357,378,'Chief Justice Rehnquist',2,10),(304357,3713,'Barbara Schoenberg',1,11),(304357,677,'Gustav Klimt',2,12),(304357,78018,'Gustav Bloch-Bauer',2,13),(304357,7030,'Ferdinand Bloch-Bauer',2,14),(304357,1266065,'Elisabeth Gehrer',0,15),(304357,11280,'Ronald Lauder',2,16),(304357,1156221,'Luise',0,17),(304357,5646,'Dreimann',2,18),(304357,1088,'Rudolph Wran',2,19),(304357,49055,'Therese Bloch-Bauer',1,20),(304357,1371518,'Bookshop Cashier',0,21),(304357,165427,'Austrian Official',2,22),(304357,1816683,'Child Maria',0,23),(304357,1816684,'Child Luise',0,24),(304357,1489217,'Felix Landau',0,25),(304357,151438,'Stan Gould',0,26),(304357,55908,'Franks',2,27),(304357,58501,'Bergen',2,28),(304357,58806,'Brown',0,29),(304357,1816693,'BBS Associate',0,30),(304357,1816694,'Stewardess',0,31),(304357,1454471,'Anna the Mole',1,32),(63020,3141,'Dorita Evita Perez',1,0),(63020,658,'Juan Raul Perez',2,1),(63020,5657,'Carmela Perez',1,2),(63020,9046,'Lt. John Pirelli',2,3),(63020,17187,'Teresa Perez',1,4),(63020,1434041,'Father Martinez',2,5),(63020,84182,'News Photographer',2,6),(86829,25072,'Llewyn Davis',2,0),(86829,36662,'Jean Berkey',1,1),(86829,12111,'Jim Berkey',2,2),(86829,60796,'Mel',2,3),(86829,11902,'Lillian',1,4),(86829,7133,'Pappi',2,5),(86829,1023139,'Al Cody',2,6),(86829,29445,'Mitch',2,7),(86829,979432,'Joy',1,8),(86829,9828,'Johnny Five',2,9),(86829,1230,'Roland Turner',2,10),(86829,33532,'Troy Nelson',2,11),(86829,123515,'Marty Green',2,12),(86829,1164,'Bud Grossman',2,13),(86829,1142258,'Young Bob',0,14),(42345,738,'Jack Kehoe',2,0),(42345,46780,'Miss Mary Raines',1,1),(42345,194,'Detective James McParlan',2,2),(42345,6637,'Davies',2,3),(42345,2516,'Tom Dougherty',2,4),(42345,153694,'Mrs. Kehoe',1,5),(42345,133585,'Frazier',2,6),(42345,30046,'Father O\'Connor',2,7),(42345,11764,'Stock Actor',2,8),(62728,1333,'Mr. Colleoni',2,0),(62728,15735,'Ida',1,1),(62728,5049,'Phil Corkery',2,2),(62728,32987,'Pinkie',2,3),(62728,127558,'Rose',1,4),(62728,16702,'Hale',2,5),(62728,26854,'Frank Spicer',2,6),(62728,43547,'Dallow',2,7),(62728,45050,'Cubitt',2,8),(62728,6969,'Kite',2,9),(62728,55364,'Crab',2,10),(62728,54,'Chief Inspector',2,11),(62728,83814,'Mr Wilson',2,12),(62728,39661,'Pavement Photographer',0,13),(62728,383624,'Registrar',2,14),(62728,31951,'Mother Superior',1,15),(62728,1542375,'Pretty Girl',0,16),(62728,570323,'Borstal Girl 1',1,17),(62728,1720898,'Borstal Girl 2',0,18),(62728,1720921,'Barman',0,19),(62728,1171128,'Mr. Oakes (uncredited)',0,20),(45138,11147,'Hank McCain',2,0),(45138,10341,'Irene Tucker',1,1),(45138,2314,'Charlie Adamo',2,2),(45138,4961,'Don Francesco DeMarco',2,3),(45138,132260,'Margaret DeMarco',0,4),(45138,132261,'Barclay',0,5),(45138,132262,'Abe Stilberman',2,6),(45138,1035715,'Joby Cuda',0,7),(45138,83259,'Joni Adamo',1,8),(45138,37745,'Pete Zacari',2,9),(45138,68406,'Don Salvatore',2,10),(45138,4800,'Rosemary Scott',1,11),(45138,132263,'',0,12),(45138,132264,'',0,13),(45138,5814,'Duke Mazzanga',2,14),(80271,76594,'Lola Williams',1,0),(80271,3416,'Anne Williams',1,1),(80271,230680,'Kyle Ross',2,2),(80271,45827,'Ashley',1,3),(80271,589098,'Emily',1,4),(80271,11155,'Allen Williams',2,5),(80271,19487,'James',2,6),(80271,205204,'Jeremy',2,7),(80271,26473,'Roman',2,8),(80271,11150,'Kathy',1,9),(80271,54503,'Max',2,10),(80271,6069,'Mr. Ross',2,11),(80271,104997,'Gran',1,12),(80271,58001,'Lauren',1,13),(80271,4496,'Emily\'s Mom',1,14),(80271,76687,'Kyle\'s Mother',1,15),(80271,1561391,'Kyle\'s Father',2,16),(80271,1739872,'Lily\'s Mother',1,17),(80271,1570299,'Lily',0,18),(80271,3216,'Biology Teacher',0,19),(80271,1739878,'Male Student',0,20),(80271,1739879,'French Father',0,21),(80271,1526574,'Ashley\'s Father',0,22),(80271,52850,'Janice',1,23),(80271,1739885,'Ethan',0,24),(80271,1021441,'Chad',0,25),(80271,1739887,'Therapist',1,26),(80271,1739888,'Young Wife',1,27),(80271,1739891,'Principal',1,28),(80271,1739900,'Emily',1,29),(80271,1739903,'David',0,30),(80271,1739904,'Joan of Arc',1,31),(80271,1739906,'Emma',1,32),(80271,1485773,'Joan of Arc\'s Mother',1,33),(80271,1588355,'Janice\'s Mother',1,34),(80271,1739912,'French Teacher',1,35),(80271,1523144,'Coach',0,36),(80271,1739914,'Jackson',0,37),(80271,1739915,'Lloyd',0,38),(80271,1739917,'Uniformed Cop',0,39),(80271,1739919,'Locker Room Girl',1,40),(80271,1739921,'Club Bouncer',0,41),(80271,1739922,'Club Bouncer',0,42),(80271,1735975,'Student Late to Class',0,43),(80271,1739923,'Student',1,44),(80271,1123015,'Sandwich Shop Patron',0,45),(80271,1283933,'Concert Goer',1,46),(80271,1620729,'Student',0,47),(80271,1364762,'Diner Patron / BG',0,48),(80271,1739927,'Concert Goer',0,49),(80271,1738403,'Concert Goer',1,50),(80271,1739928,'Pedestrian',0,51),(80271,1738410,'Max',0,52),(80271,1739929,'Soccer Player',0,53),(80271,1739930,'Bar Patron',0,54),(80271,146414,'Angry Cell Phone Guy',0,55),(80271,521961,'Student',1,56),(80271,1469374,'Student',0,57),(80271,1739267,'Diner Patron',0,58),(80271,1739931,'Student',0,59),(80271,1739932,'High School Teacher',1,60),(80271,1394330,'Lola\'s Friend',1,61),(80271,1649258,'Diner Patron',0,62),(80271,505400,'Businessman',0,63),(80271,1739936,'Mike',0,64),(80271,150670,'Student',0,65),(80271,1738384,'Restaurant Cook',0,66),(80271,1739419,'Concert Goer',0,67),(80271,1739939,'Pedestrian',0,68),(80271,1739940,'Big Fan',0,69),(80271,1739941,'Lola\'s Classmate',1,70),(80271,1526610,'Grumpy Teacher',0,71),(80271,1739943,'Student',0,72),(80271,1457900,'Guest #1',1,73),(80271,1739812,'Pedestrian',0,74),(80271,1737866,'Concert Goer',1,75),(190847,23626,'Vincent Campbell',2,0),(190847,6979,'Rebecca Lane',0,1),(190847,13550,'Charles Brunel',2,2),(190847,11616,'Kim Aldrich',1,3),(190847,32300,'Robert Irwin',2,4),(190847,44736,'Marko Petrovic',2,5),(190847,586000,'Richard Harrington',2,6),(190847,1272903,'Lauren Dalby',0,7),(190847,1684547,'Flight Commander Ellis',0,8),(190847,1074722,'Infected Voices (voice)',0,9),(190847,1574206,'Infected Marko (uncredited)',2,10),(88641,20212,'Pirate',2,0),(88641,76546,'Stick',0,1),(88641,95468,'Sunshine',1,2),(88641,13526,'Finnegan',2,3),(88641,171213,'Mary Beth',1,4),(88641,100870,'Babette',1,5),(88641,11521,'Tracy',1,6),(88641,936397,'Calvin',0,7),(88641,5950,'Pop',2,8),(58051,35070,'Aarush',2,0),(58051,84957,'Baburao \'Bob\'',2,1),(58051,53975,'Sandy Rao',1,2),(58051,55063,'Hetal B. Patel',1,3),(58051,81093,'Devika K. Samtani',1,4),(58051,52263,'Major Krishna Rao',2,5),(58051,35779,'Batuk Patel',2,6),(58051,85693,'Pooja',1,7),(58051,95505,'Dhanno',1,8),(58051,81983,'Aakhri Pasta',0,9),(58051,142627,'Kishore Samtani',2,10),(58051,227365,'Mikey',0,11),(96399,52605,'Tulita',1,0),(96399,1271,'Enrique Gorostieta Velarde',2,1),(96399,25072,'Victoriano \'El Catorce\' Ramirez',2,2),(96399,11390,'Father Christopher',2,3),(96399,2049,'Pru00e9sident Calles',2,4),(304410,1352046,'Paula Bu00e9lier',1,0),(304410,13688,'Gigi Bu00e9lier',1,1),(304410,24041,'Rodolphe Bu00e9lier',2,2),(304410,24465,'M. Thomasson',2,3),(304410,544666,'Mathilde',1,4),(304410,1387016,'Gabriel',2,5),(304410,1526754,'Quentin Bu00e9lier',0,6),(304410,22310,'Mlle Dos Santos',1,7),(304410,7285,'Lapidus - le maire',0,8),(304410,28857,'Le docteur Pugeot',2,9),(304410,1526753,'Rossigneux',2,10),(304410,1531947,'La cliente du marchu00e9',0,11),(304410,1531948,'Le pru00e9sident du jury',0,12),(304410,229139,'Karu00e8ne',0,13),(304410,1531949,'L\'u00e9lu00e8ve binoclard',0,14),(373314,19536,'Ben',2,0),(373314,59860,'Charlotte',1,1),(373314,50463,'Emily',1,2),(373314,25002,'The Accountant',2,3),(373314,12041,'Jane',1,4),(373314,83271,'Doug',2,5),(373314,1158,'Abrams',2,6),(373314,4173,'Denning',2,7),(316727,31167,'Senator Charlie Roan',1,1),(316727,81685,'Leo Barnes',2,2),(316727,34,'Joe Dixon',2,3),(316727,56679,'Dante Bishop',2,4),(316727,10361,'Leader Caleb Warrens',2,5),(316727,29445,'Chief Couper',2,6),(316727,2257,'Earl Danzinger',2,7),(316727,60195,'Tommy Roseland',2,8),(316727,1622607,'School Girl #4',0,11),(316727,73127,'Marcos',2,12),(316727,40258,'Minister Edwidge Owens',2,13),(316727,1674425,'Uncle Sam',0,14),(316727,1674426,'Political Debater',2,15),(316727,1660452,'Laney Rucker',1,17),(316727,1222355,'Reporter #1',0,18),(316727,59693,'Dawn',0,19),(316727,1765420,'Tall Eric Busmalis',0,20),(316727,59118,'Harmon James',2,21),(316727,1702789,'Rondo',0,22),(316727,1765421,'Schoolgirl #1 Freakbride / Kimmy',0,23),(316727,1765422,'Rev w / Angel in Command Center',0,24),(316727,1745909,'Angel Munoz',0,25),(316727,1765423,'Drab Suited Man 1',0,26),(316727,58333,'Drab Suited Man 2',2,27),(316727,1643247,'Moderator',0,28),(316727,1673586,'Irish Ike Jenkins',0,29),(316727,1765621,'South African Male',0,30),(316727,1765622,'Enormous Gang Member',0,31),(316727,1650142,'Mrs. Sabian',1,32),(316727,1635974,'Axe Headed Man',2,33),(316727,559470,'Screaming Woman',0,34),(316727,1168858,'Masked Man',2,35),(316727,1689329,'Schoolgirl #2',1,36),(316727,1765667,'Gang Member with Dying Friend',0,37),(316727,144211,'Reporter #1',0,38),(316727,1765668,'Crazy Man (Self-Purger)',0,39),(316727,188049,'Man with Bull Horn',2,40),(316727,1765773,'Young Charlie Roan',0,41),(316727,1765778,'Reporter #3',0,42),(316727,1683758,'Demonic Man',0,43),(316727,9437,'Mercenary #8',0,44),(316727,1765781,'Dancer #1',0,45),(316727,1765782,'Dancer #2',0,46),(316727,1757043,'Flag Face Russian Murderer (uncredited)',0,47),(316727,1754491,'Injured Victim (uncredited)',0,48),(316727,1758990,'Dante\'s Man (uncredited)',0,49),(316727,1475121,'Homeless Woman (uncredited)',1,50),(316727,1465427,'Parishioner (uncredited)',0,51),(316727,1765788,'Executioner (uncredited)',0,52),(316727,1572035,'Electorate (uncredited)',0,53),(316727,928638,'Homeless Vietnam Vet (uncredited)',0,54),(316727,1765791,'South African Gang Member (uncredited)',0,55),(316727,1553308,'Charlie Roan\'s Mom (uncredited)',1,56),(316727,89239,'Rev 1 (uncredited)',0,57),(316727,1674440,'Leo\'s Security Team (uncredited)',2,58),(316727,130843,'Unassuming Woman (uncredited)',0,59),(316727,1765798,'NFFA Secret Service Agent (uncredited)',0,60),(316727,1735640,'Revolutionary (uncredited)',0,61),(316727,1674451,'School Girl Friend (uncredited)',0,62),(316727,1311092,'Homeless Child (uncredited)',0,63),(316727,1765802,'NFFA Soldier / Parishioner (uncredited)',0,64),(316727,1622606,'Store Clerk (uncredited)',1,65),(316727,1481006,'News Photographer (uncredited)',0,66),(316727,1765806,'Rev 2 (uncredited)',0,67),(316727,223050,'NFFA agent (uncredited)',0,68),(316727,1602952,'Parishioner (uncredited)',0,69),(316727,1570313,'Parishioner (uncredited)',0,70),(316727,1438372,'Airport Patron (uncredited)',0,71),(316727,1735637,'Costume Shop Pedestrian (uncredited)',0,72),(74534,2440,'Douglas Ainslie',2,0),(74534,10978,'Muriel Donnelly',1,1),(74534,207,'Graham Dashwood',2,2),(74534,5309,'Evelyn Greenslade',1,3),(74534,76788,'Sonny Kapoor',2,4),(74534,1249,'Jean Ainslie',1,5),(74534,224878,'Madge\'s Grandchild',1,6),(74534,9139,'Madge Hardcastle',1,7),(74534,32556,'Norman Cousins',2,8),(74534,1005280,'Judge',0,9),(74534,177596,'Graham\'s Colleague',2,10),(74534,1216171,'Nurse',1,11),(74534,1447782,'Sunaina',1,12),(74534,6498,'Mrs. Kapoor',1,13),(74534,1224727,'Judith',0,14),(74534,3902,'Madge\'s Daughter',1,15),(74534,1244469,'Hairdresser',0,16),(74534,1229241,'Douglas\' Golf Partner',0,17),(74534,346352,'Carol',1,18),(321258,62220,'Greta Evans',1,0),(321258,17283,'Malcolm',2,1),(321258,1029403,'Brahms Heelshire',0,2),(321258,14950,'Mr. Heelshire',2,3),(321258,346352,'Mrs. Heelshire',1,4),(321258,1383389,'Cole',2,5),(321258,1538879,'Young Brahms Heelshire',0,6),(321258,1626008,'Emily Cribbs',0,7),(321258,222139,'Sandy (voice)',1,8),(321258,27122,'Taxi Driver',2,9),(44040,61659,'Detective Bowden',2,0),(44040,16429,'Ramirez',2,1),(44040,81682,'Young Woman / Sarah Caraway',0,2),(44040,130253,'Mechanic / Anthony Tony Janekowski',2,3),(44040,71913,'Guard / Ben Larson',2,4),(44040,13525,'Lustig',2,6),(44040,5925,'Detective Markowitz',2,7),(44040,31383,'Elsa Nahai',1,8),(44040,133252,'Cheryl',1,9),(44040,1983,'Henry',2,10),(44040,4734,'Old Woman',1,11),(44040,51389,'Dwight',2,12),(44040,133253,'Old Janitor',2,13),(44040,133254,'Donnelly',2,14),(44040,133255,'Chinese Man',2,15),(44040,5375,'Salesman / Vince McCormick',2,15),(280092,20212,'Sean Brenner',2,0),(280092,106490,'Quinn Brenner',0,1),(280092,7401,'Elise Rainier',1,2),(280092,2128,'Specs',2,3),(280092,59117,'Tucker',2,4),(280092,1465699,'Alex Brenner',2,5),(280092,188081,'Danielle',1,6),(280092,80619,'Carl',2,7),(280092,89109,'Maggie',0,8),(280092,62851,'Bride in Black',2,9),(280092,27030,'Dr. Henderson',2,10),(280092,17858,'Harry',2,11),(280092,33834,'Lillith Brenner',1,12),(280092,2127,'Theater Director',2,13),(280092,73417,'Lipstick-Face Demon',2,14),(280092,174037,'The Man Who Can\'t Breathe',0,15),(280092,1400838,'Grace',1,16),(280092,167139,'Mel',2,17),(280092,1323716,'Two-Faced Woman',0,18),(280092,1153793,'Nurse',0,19),(280092,1317566,'Hector',2,20),(280092,78321,'Ernesto',2,21),(280092,1580200,'Lambert Woman',1,22),(280092,1369329,'Teenage Boy',2,23),(280092,155933,'Jack Rainier',0,24),(280092,1833632,'Male Nurse',2,25),(280092,206505,'Young Josh',2,26),(280092,1053291,'Dead Teenage Junkie (uncredited)',1,27),(294272,18997,'Grace Meacham',1,0),(294272,1422517,'Pete',2,1),(294272,8210,'Jack',2,2),(294272,1372,'Gavin',2,3),(294272,1423519,'Natalie',1,4),(294272,4135,'Mr. Meacham',2,5),(294272,1686565,'Young Pete',0,6),(294272,17490,'Sheriff Dentler',2,7),(294272,1291961,'Woodrow',0,8),(294272,1435850,'Abner',0,9),(294272,1511634,'Bobby',0,10),(294272,196780,'Ranger Wentworth',2,11),(294272,54494,'Deputy West',2,12),(294272,1669340,'Deputy Smalls',0,13),(294272,31365,'Elliot the Dragon (voice)',2,14),(294272,3496,'Adult Pete',2,15),(294272,226504,'Carruth',0,16),(294272,1587891,'Pete\'s Mom',0,17),(294272,1587892,'Little Girl',0,18),(294272,235023,'Pete\'s Dad',0,19),(294272,1079558,'Zellner',0,20),(283445,27855,'Courtney Collins',1,0),(283445,5296,'So & So',2,1),(283445,1491689,'Dylan Collins',0,2),(283445,1485776,'Zach Collins',0,3),(283445,109174,'Clint Collins',2,4),(283445,965205,'Dr. Stomberg',2,5),(283445,38571,'Father Rodriguez',2,6),(283445,1485770,'Milo',2,7),(283445,1485772,'Ted',0,8),(283445,1485775,'Emma',0,9),(283445,1485771,'Peter',2,10),(283445,1485774,'Catherine',0,11),(283445,1423420,'Bughuul',2,12),(283445,1485773,'Electrocution Mom',1,13),(283445,1536162,'The Creeper',2,14),(283445,1720586,'Security Guard',0,15),(283445,1237299,'State Trooper Shermer',2,16),(283445,1720587,'Stomberg\'s Daughter',0,17),(283445,1720588,'Christmas Father',0,18),(283445,1574911,'Christmas Mother',0,19),(283445,1720589,'Christmas Son',0,20),(283445,1720595,'Christmas Daughter',0,21),(88036,8851,'Emma',1,0),(88036,458843,'The girls\' opening act',2,1),(88036,15543,'Stix',2,2),(88036,51944,'Satin',2,3),(88036,37158,'Sister Williams',1,4),(88036,224842,'Sparkle',1,5),(88036,110742,'Delores',1,6),(88036,41556,'Levi',2,7),(88036,935714,'Pedestrian',0,8),(88036,935715,'Couple',0,9),(39349,10814,'Romello Skuggs',2,0),(39349,2248,'Raynathan Skuggs',2,1),(39349,49002,'Kymie',2,2),(39349,122747,'Tutty',2,3),(39349,122750,'Doris Holly',1,4),(39349,122754,'Raynathan Skuggs (age 18)',0,5),(39349,122755,'Roemello Skuggs (age 10)',2,6),(39349,122756,'Roemello Skuggs (age 17)',0,7),(39349,2202,'Ricky Goggles',2,8),(39349,6198,'Mark Doby',2,9),(39349,8874,'Lolly Jonas',2,10),(39349,3093,'Gus Molino',2,11),(39349,4604,'Mellisa',1,12),(39349,19265,'Ella Skuggs',1,13),(39349,29915,'Tony Adamo',2,14),(39349,8856,'Raynathan Skuggs (age 11)',2,15),(39349,15864,'Arthur Romello A.R. Skuggs',2,16),(39349,1709444,'Coco\'s Girlfriend (as Maria Kelley)',0,17),(39349,8350,'Oliver Thompson',2,18),(39349,75606,'Worker',0,20),(39349,1709445,'Lucky',0,21),(39349,1673567,'Y.G. (Young Gun)',0,22),(39349,65397,'Chantal (as Kimberly Russel)',1,23),(39349,551911,'Bouncer',0,24),(39349,52788,'Martin David',2,25),(39349,21380,'Harry Molino',2,26),(39349,191557,'Sal Marconi',2,27),(39349,142159,'Sal\'s Bodyguard',2,28),(39349,186648,'Dean',2,29),(39349,141267,'Nigerian #2 (as Alex A. Brown)',2,30),(39349,152582,'Coco',0,31),(39349,1214117,'Lynette (as Natalie Belcon)',1,32),(39349,54498,'Kid',2,33),(39349,1709456,'Diva',0,34),(42684,34489,'Jarrod',2,0),(42684,128628,'Elaine',1,1),(42684,22821,'Oliver',2,2),(42684,49002,'Terry',2,3),(42684,35476,'Candice',1,4),(42684,128629,'Denise',1,5),(42684,59755,'Ray',2,6),(42684,128630,'Colin',2,7),(42684,128631,'Jen',1,8),(42684,128632,'Cindy',0,9),(42684,128633,'Mandy',0,10),(42684,128634,'Derek',0,11),(42684,1448942,'Limo Driver',2,12),(268238,76788,'Sonny Kapoor',2,0),(268238,5309,'Evelyn Greenslade',1,1),(268238,1205,'Guy Chambers',2,2),(268238,10978,'Muriel Donnelly',1,3),(268238,2440,'Douglas Ainslie',2,4),(268238,9139,'Madge Hardcastle',1,5),(268238,1249,'Jean Ainslie',1,6),(268238,32556,'Norman Cousins',2,7),(268238,346352,'Carol Parr',1,8),(268238,1447782,'Sunaina',1,9),(268238,6498,'Mrs. Kapoor',1,10),(268238,11064,'Ty Burley',2,11),(268238,120931,'Lavinia Beach',1,12),(268238,1377840,'Laura Ainslie',0,13),(41823,5292,'Bleek Gilliam',2,0),(41823,5281,'Giant',2,1),(41823,10814,'Shadow Henderson (Sax)',2,2),(41823,4808,'Left Hand Lacey (Piano)',2,3),(41823,1241,'Moe Flatbush',2,4),(41823,2231,'Madlock',2,5),(41823,17840,'Eggy',2,6),(41823,32897,'Josh Flatbush',2,7),(41823,15535,'Butterbean Jones',2,8),(41823,13602,'Indigo',1,9),(41823,87117,'Clarke Bentancourt',1,10),(41823,146253,'Impatient Movie Patron',2,11),(41823,5502,'Bottom Hammer',2,12),(41823,1911,'Big Stop Williams',2,13),(103731,10297,'Mud',2,0),(103731,1034681,'Ellis',2,1),(103731,1171570,'Neckbone',2,2),(103731,9880,'Tom Blankenship',2,3),(103731,368,'Juniper',1,4),(103731,34490,'Mary Lee',1,5),(103731,335,'Galen',2,6),(103731,1472,'Senior',2,7),(103731,10671,'King',2,8),(103731,167564,'Carver',0,9),(103731,33262,'Miller',2,10),(103731,71889,'James',2,11),(103731,1186193,'May Pearl',0,12),(164558,1052109,'Himself',2,0),(164558,1052107,'Himself',2,1),(164558,1146050,'Himself',2,2),(164558,1052106,'Himself',2,3),(164558,1052108,'Himself',2,4),(164558,1296699,'MD / Keyboards',0,5),(164558,1052140,'Guitar',0,6),(75900,1812,'Marilyn Monroe',1,0),(75900,37632,'Colin Clark',2,1),(75900,11181,'Sir Laurence Olivier',2,2),(75900,15887,'Vivien Leigh',1,3),(75900,5309,'Sybil Thorndike',1,4),(75900,10990,'Lucy',1,5),(75900,36666,'Sir Kenneth Clark',2,6),(75900,55470,'Milton Greene',2,7),(75900,10988,'Lady Jane Clark',1,8),(75900,10648,'Hugh Perceval',2,9),(75900,195525,'Vanessa',1,10),(75900,57461,'Cotes-Preedy',2,11),(75900,13014,'Arthur Jacobs',2,12),(75900,121606,'David Orton',2,13),(75900,20070,'Barry',2,14),(75900,25532,'Roger Smith',0,15),(328425,23532,'Simon Callem',2,0),(328425,15556,'Robyn Callem',1,1),(328425,33192,'Gordo Mosley',2,2),(328425,1331652,'Lucy',0,3),(328425,27031,'Kevin \'KK\' Keelor',2,4),(328425,60928,'Duffy',1,5),(328425,157859,'Ron',2,6),(328425,1078613,'Detective Walker',0,7),(328425,17859,'Detective Mills',2,8),(328425,82605,'Wendy Dale',1,9),(328425,75131,'Frank Dale',0,10),(328425,62562,'Greg',2,11),(328425,221944,'Joan Callem',1,12),(328425,1379720,'Stewart',0,13),(328425,40980,'Rhonda Ryan',1,14),(328425,1211946,'Danny McDonald',2,15),(328425,152486,'Dr. Angela Derezio',1,16),(328425,120874,'Real Estate Agent',1,17),(328425,1455750,'Nurse',0,18),(87093,9273,'Margaret Keane',1,0),(87093,27319,'Walter Keane',2,1),(87093,78080,'DeeAnn',1,2),(87093,6413,'Dick Nolan',2,3),(87093,17881,'Ruben',2,4),(87093,28641,'John Canaday',2,5),(87093,4253,'Enrico Banducci',2,6),(87093,1423419,'Lily',1,7),(87093,1411603,'Sexy Girl',1,8),(87093,1463648,'Young Jane',1,9),(87093,1463652,'Older Jane',1,10),(87093,77155,'Judge',2,11),(87093,1176159,'Dino Olivetti',2,12),(87093,1279081,'Olivetti Girl',1,13),(87093,1459145,'Snobby Artist #1',2,14),(87093,51803,'Snobby Artist #2',2,15),(87093,1516211,'2nd Olivetti Girl',0,16),(87093,65811,'Factory Boss',2,17),(87093,203294,'Gallery Patron',1,18),(87093,58399,'Hippie Chick',1,19),(87093,82264,'Coed #1',1,20),(87093,558411,'Coed #2',0,21),(87093,1176581,'Early Buyer',2,22),(87093,583061,'NY Society Man',2,23),(87093,62866,'Hipster Lady',1,24),(87093,565222,'Hipster Man',2,25),(87093,1080056,'Radio DJ',0,26),(87093,116425,'Hungry i Patron',1,27),(87093,1558944,'Female Art Gallery Attendee',0,28),(87093,1507854,'Fancy Lady',0,29),(87093,83423,'Gossipy Woman #1',1,30),(87093,87739,'Gossipy Woman #2',1,31),(87093,158441,'Fan #1',1,32),(87093,64680,'Fan #2',2,33),(87093,1366833,'TV Host',2,34),(87093,1366806,'Nosy Gallery Guy',2,35),(87093,1235591,'Bailiff',2,36),(87093,1397812,'Gallery Assistant',0,37),(37931,62831,'MacGruber',2,0),(37931,41091,'Vicki St. Elmo',1,1),(37931,5576,'Dieter Von Cunth',2,2),(37931,11864,'Lt. Dixon Piper',2,3),(37931,52792,'Casey',1,4),(37931,6280,'Col. James Faith',2,5),(37931,119154,'',0,6),(37931,113563,'The Russian',2,7),(37931,1057653,'Dude',0,8),(37931,41341,'Hoss',2,9),(37931,945542,'Zeke',2,10),(37931,92949,'Constantine',2,11),(37931,1293718,'Frank Korver',0,12),(37931,565421,'Tut Beemer',0,13),(37931,151042,'Brick Hughes',0,14),(37931,64227,'Brick\'s Boyfriend',2,15),(37931,61903,'Tanker Lutz',0,16),(37931,119154,'Tug Phelps',0,17),(37931,1202307,'Vernon Freedom',0,18),(37931,1490113,'Amar\'e Stoudemire',2,19),(37931,177532,'Clocky',1,20),(37931,37937,'Minister',2,21),(37931,1224441,'Senator Garver',2,22),(87818,1772,'Vanessa (segment The Proposition)',1,0),(87818,54693,'Veronica (segment Veronica)',1,1),(87818,4587,'Emily (segment Truth or Dare)',1,2),(87818,204,'Beth (segment The Catch)',1,3),(87818,6968,'Davis (segment The Catch)',2,4),(87818,1205,'Robert (segment iBabe)',2,5),(87818,73457,'Jason (segment The Proposition)',2,6),(87818,139,'Fake Lois Lane (segment Super Hero Speed Dating)',1,7),(87818,17276,'Leprechaun 1 & 2 (segment Happy Birthday)',2,8),(87818,9281,'Amy (segment Beezel)',1,9),(87818,3489,'Samantha (segment Homeschooled)',1,10),(87818,40462,'Fake Supergirl (segment Super Hero Speed Dating)',1,11),(87818,52139,'Seth MacFarlane (segment',2,12),(87818,6065,'Charlie Wessler (segment The Pitch)',2,13),(87818,17141,'Griffin Schraeder (segment The Pitch)',2,14),(87818,4238,'Bob Mone (segment The Pitch)',0,15),(87818,95356,'Jay (segment The Pitch)',2,16),(87818,39125,'Jerry (segment The Pitch)',2,17),(87818,27579,'Danita (segment The Pitch)',1,18),(87818,1281299,'Mike Meldman (segment The Pitch)',0,19),(87818,1212483,'Pamela (segment The Catch)',1,20),(87818,58771,'Angie (segment The Catch)',1,21),(87818,1237248,'Ray (segment The Catch)',0,22),(87818,1281300,'Waiter Jake (segment The Catch)',0,23),(87818,1281301,'Abby (segment The Catch)',1,24),(87818,206905,'Kevin (segment Homeschooled)',2,25),(87818,23626,'Robert (segment Homeschooled)',2,26),(87818,1217584,'Sean (segment Homeschooled)',2,27),(87818,1281302,'High School Student (segment Homeschooled)',0,28),(87818,55256,'Clare (segment Homeschooled)',1,29),(87818,65920,'Larry (segment The Proposition)',2,30),(87818,62763,'Bill (segment The Proposition)',2,31),(87818,78843,'Christine (segment The Proposition)',1,32),(87818,1281304,'Friend (segment The Proposition)',0,33),(87818,18793,'Neil (segment Veronica)',0,34),(87818,91827,'Old Man (segment Veronica)',0,35),(87818,156887,'Tall Lady (segment Veronica)',1,36),(87818,189146,'Short Guy (segment Veronica)',0,37),(87818,1281305,'Robert (segment iBabe)',0,38),(87818,1281306,'iBabe #2 (segment iBabe)',0,39),(87818,7517,'Arlene (segment iBabe)',1,40),(87818,58737,'Brian (segment iBabe)',2,41),(87818,20644,'Robert (segment iBabe)',2,42),(87818,1281307,'Boy (segment iBabe)',0,43),(87818,1281308,'Woman (segment iBabe)',0,44),(87818,1137065,'Chappy (segment iBabe)',0,45),(87818,15033,'Fake Wonder Woman (segment Super Hero Speed Dating)',2,46),(87818,58224,'Fake Batman (segment Super Hero Speed Dating)',2,47),(87818,21127,'Fake Superman (segment Super Hero Speed Dating)',2,48),(87818,77344,'Fake Penguin (segment Super Hero Speed Dating)',2,49),(87818,57451,'Fake Wonder Woman (segment Super Hero Speed Dating)',1,50),(87818,938683,'Fake Riddler (segment Super Hero Speed Dating)',0,51),(87818,74618,'Woman (segment Super Hero Speed Dating)',1,52),(87818,220546,'Narrator (segment Machine Kids)',2,53),(87818,1281309,'Vending Machine Man (segment Machine Kids)',0,54),(87818,1281310,'Vending Machine Child (segment Machine Kids)',0,55),(87818,1281311,'Vending Machine Child (segment Machine Kids)',0,56),(87818,1109615,'ATM Man (segment Machine Kids)',0,57),(87818,1281312,'ATM Child (segment Machine Kids)',0,58),(87818,1281313,'ATM Child (segment Machine Kids)',0,59),(87818,209728,'Photocopier Man 1 (segment Machine Kids)',0,60),(87818,1281314,'Photocopier Man 2 (segment Machine Kids)',0,61),(87818,1281315,'Photocopier Child (segment Machine Kids)',0,62),(87818,1281316,'Photocopier Child (segment Machine Kids)',0,63),(87818,1281317,'Photocopier Child (segment Machine Kids)',0,64),(87818,54691,'Mikey (segment Middleschool Date)',2,65),(87818,56734,'Amanda (segment Middleschool Date)',1,66),(87818,9657,'Dad (segment Middleschool Date)',2,67),(87818,6860,'Nathan (segment Middleschool Date)',2,68),(87818,59841,'Amanda\'s Dad (segment Middleschool Date)',2,69),(87818,1281318,'Blonde Woman (segment Tampax)',0,70),(87818,1281319,'Brunette Woman (segment Tampax)',0,71),(87818,57599,'Pete (segment Happy Birthday)',2,72),(87818,9656,'Pete (segment Happy Birthday)',2,73),(87818,223132,'Fairy (segment Happy Birthday)',0,74),(87818,39189,'Donald (segment Truth or Dare)',2,75),(87818,173810,'Large Man (segment Truth or Dare)',2,76),(87818,224173,'Snooki (segment Truth or Dare) (as Nicole Elizabeth Polizzi)',0,77),(87818,1281320,'Waitress (segment Truth or Dare)',0,78),(87818,210842,'Nurse Elizabeth (segment Truth or Dare)',0,79),(87818,1281321,'Bachelorette Party Girl (segment Truth or Dare)',0,80),(87818,1281322,'Patron (segment Truth or Dare)',0,81),(87818,1281323,'Blanco the Bartender (segment Truth or Dare)',0,82),(87818,60672,'Stripper (segment Truth or Dare)',2,83),(87818,18288,'Coach Jackson (segment Victory\'s Glory)',2,84),(87818,1119691,'Anthony (segment Victory\'s Glory)',2,85),(87818,1281324,'Moses (segment Victory\'s Glory)',0,86),(87818,1281325,'Wallace (segment Victory\'s Glory)',0,87),(87818,1281326,'Bishop (segment Victory\'s Glory)',0,88),(87818,151680,'Lucious (segment Victory\'s Glory)',2,89),(87818,1281327,'White Guy 1 (segment Victory\'s Glory)',0,90),(87818,116295,'White Guy 2 (segment Victory\'s Glory)',2,91),(87818,1281328,'White Guy 3 (segment Victory\'s Glory)',0,92),(87818,1078839,'White Guy 4 (segment Victory\'s Glory)',0,93),(87818,984363,'White Guy 5 (segment Victory\'s Glory)',2,94),(87818,1005944,'Cheerleader (segment Victory\'s Glory)',2,95),(87818,67833,'Narrator (segment Victory\'s Glory)',2,96),(87818,19536,'Anson (segment Beezel)',2,97),(87818,112742,'Birthday Girl (segment Beezel)',1,98),(87818,85101,'Mommy (segment Beezel)',1,99),(87818,1281329,'Party Clown (segment Beezel)',0,100),(87818,1144389,'Baxter (uncredited)',0,101),(87818,81197,'Calvin (uncredited)',2,102),(87818,1222219,'ATM Woman (segment Machine Kids)',1,103),(87818,1009885,'Sitara (uncredited)',1,104),(88005,4495,'Dodge Petersen',2,0),(88005,116,'Penelope \'Penny\' Lockhart',1,1),(88005,86310,'Diane',1,2),(88005,11702,'Owen',2,3),(88005,52997,'Warren',2,4),(88005,15543,'Alan Speck',2,5),(88005,15091,'Karen Amalfi',1,6),(88005,52267,'Trucker',2,7),(88005,94098,'Waitress / Katie',1,8),(88005,51990,'Chipper Host / Darcy',2,9),(88005,10872,'Roache',2,10),(88005,17449,'Officer Wally Johnson',2,11),(88005,1139648,'Radio Announcer (voice)',0,12),(88005,1230173,'Linda Petersen',1,13),(88005,11889,'Anchorman',2,14),(88005,44054,'Alfred',2,15),(88005,80595,'Jeremy',2,16),(88005,1344662,'Crying Woman',1,17),(88005,200163,'Elsa',0,18),(88005,557931,'Amy',1,19),(88005,1389550,'Danny',2,20),(88005,157009,'Man #1 / Chip',2,21),(88005,440414,'Woman #1 / Lacey',1,22),(88005,116907,'Indian Man',2,23),(88005,1677299,'Sorry',0,24),(88005,1301577,'Cell-Mate',0,25),(88005,1219597,'Cop #2',2,26),(88005,1644655,'Toilet Guy',2,27),(88005,8349,'Frank Petersen',2,28),(88005,1644662,'Kissing Couple In Park (uncredited)',2,29),(88005,1530658,'Gay Party Guest (uncredited)',2,30),(88005,1644660,'Bikini Girl (uncredited)',1,31),(88005,1644661,'Sarah (uncredited)',1,32),(88005,1672731,'Bikini Girl (uncredited)',1,33),(88005,1672382,'Kissing Friendsy\'s Customer (uncredited)',1,34),(88005,210849,'Cyclist (uncredited)',0,35),(88005,1528109,'Party Girl (uncredited)',1,36),(52067,8256,'Joan Ostrowski-Fox',1,0),(52067,27105,'Tim Lippe',2,1),(52067,10205,'Macy Vanderhei',1,2),(52067,4764,'Dean Ziegler',2,3),(52067,52997,'Gary',2,4),(52067,61178,'Bree',1,5),(52067,17490,'Ronald Wilkes',2,6),(52067,17401,'Bill Krogstad',2,7),(52067,2115,'Orin Helgesson',2,8),(52067,539,'Roger Lemke',2,9),(52067,87192,'Mike Pyle',2,10),(52067,935277,'Gwen Lemke',1,11),(52067,113373,'Trent',2,12),(52067,212290,'Uncle Ken',2,13),(134597,40039,'Arkin',2,0),(134597,4443,'Mr. Peters',2,1),(134597,1011107,'Elena',1,2),(134597,6906,'Lucello',2,3),(134597,1012752,'Abby',1,4),(134597,43778,'Lisa',1,5),(134597,95038,'Missy Solomon',1,6),(134597,119248,'Basil',2,7),(134597,74957,'Wally',2,8),(134597,63238,'Lin',2,9),(134597,204660,'Zack',2,10),(134597,1099428,'The Collector',2,11),(134597,145145,'Paz',1,12),(134597,1099429,'Lynn',1,13),(134597,1011103,'Brian',2,14),(134597,27031,'Dre',2,15),(134597,62797,'Agent Gulager',2,16),(209403,23532,'Guy Trilby',2,0),(209403,17696,'Jenny Widgeon',1,1),(209403,935701,'Chaitainya',2,2),(209403,4492,'Dr. Bowman',2,3),(209403,19,'Dr. Bernice Deagan',1,4),(209403,170820,'Pete Fowler',2,5),(209403,152864,'Proctor at Spelling Bee',0,6),(209403,5151,'Irene',1,7),(209403,56358,'Ingrid',1,8),(209403,46074,'Eric Tai\'s Mother',1,9),(209403,128013,'Jeremy \'FBI Agent\'',0,10),(73247,164653,'Val',2,0),(73247,40389,'Aqua',1,1),(73247,1811,'Charlie',2,2),(73247,12521,'Max',2,3),(73247,83313,'Susan',1,4),(73247,13524,'Calvin',2,5),(73247,27515,'Factory Boss',2,6),(73247,102441,'Factory Watchman',2,7),(73247,7210,'Helicopter Pilot',1,8),(73247,100552,'Party House Owner',1,9),(73247,101377,'Party Guest',2,10),(253331,1269,'Elliot Anderson',2,0),(253331,1780202,'Eloise Anderson',0,1),(253331,49971,'Carol',1,2),(253331,94098,'Fay',1,3),(253331,6944,'Rowena Jeffers',1,4),(253331,109708,'Rick Reynolds',0,5),(253331,141762,'Dave',2,6),(253331,1213577,'Young Nurse',0,7),(253331,59713,'Duvan',0,8),(253331,1613770,'Rita',1,9),(253331,53650,'Jeremiah Jeffers',2,10),(253331,17420,'Judge Cummins',1,11),(253331,60875,'Eldridge',2,12),(253331,16459,'Vertell',2,13),(253331,1566766,'Andrea',1,14),(253331,459980,'Reggie Davis',2,15),(253331,1810490,'Kristen',0,16),(253331,1810482,'Dondi',0,17),(253331,1810484,'Rosita',0,18),(253331,1810485,'Uncle Victor',2,19),(253331,1288834,'Therapist',2,20),(253331,1458990,'Neighbor (Ted)',2,21),(253331,1780225,'Vocalist',1,22),(253331,1810495,'Bailiff',0,23),(253331,1288835,'School Girl (uncredited)',0,24),(253331,1288832,'Lawyer (uncredited)',1,25),(253331,1746010,'Secretary (uncredited)',0,26),(253331,1288831,'Rowena\'s Family Member (uncredited)',0,27),(253331,1288833,'Court Clerk (uncredited)',0,28),(253331,1780236,'Elliott\'s Family (uncredited)',0,29),(253331,1780238,'Elliott\'s Neighbor (uncredited)',0,30),(253331,1780239,'Eloise\'s Friend (uncredited)',0,31),(256924,1158,'Danny Collins',2,0),(256924,516,'Mary Sinclair',1,1),(256924,9278,'Samantha Leigh Donnelly',1,2),(256924,21127,'Tom Donnelly',2,3),(256924,290,'Frank Grubman',2,4),(256924,15760,'Nicky',2,5),(256924,549981,'Sophie',1,6),(256924,17039,'Magazine Interviewer',2,7),(256924,129104,'Jamie',1,8),(82532,41088,'Jeff',2,0),(82532,27105,'Pat',2,1),(82532,4038,'Sharon',1,2),(82532,20750,'Linda',1,3),(82532,13312,'Carol',1,4),(82532,141762,'Paul',2,5),(82532,101847,'Elderly Man',2,6),(82532,29933,'Woman calling the police',1,7),(82532,129868,'Rob the Waiter',2,8),(82532,861986,'Newscaster',1,9),(41110,3063,'Emma Recchi',1,0),(41110,125488,'Edoardo Recchi Junior',2,1),(41110,125489,'Antonio Biscaglia',0,2),(41110,128748,'Elisabetta Recchi',1,3),(41110,4961,'Edoardo Recchi Senior',2,4),(41110,31071,'Allegra Rori Recchi',1,5),(41110,1035736,'Tancredi Recchi',2,6),(41110,59638,'Eva Ugolini',0,7),(41110,1035738,'Gianluca Recchi',0,8),(41110,134220,'Ida Marangon',0,9),(134371,20767,'Dagny Taggart',1,0),(134371,37203,'Henry Rearden',2,1),(134371,65344,'Francisco d\'Anconia',2,2),(134371,58791,'James Taggart',2,3),(134371,167825,'Lillian Rearden',1,4),(134371,55755,'Eddie Willers',2,5),(134371,61962,'John Galt',2,6),(134371,32393,'Wesley Mouch',2,7),(134371,44261,'Dr. Floyd Ferris',2,8),(134371,16180,'Dr. Robert Stadler',2,9),(134371,6719,'Head of State Thompson',2,10),(134371,5727,'Quentin Daniels',2,11),(134371,69395,'Leonard Small',2,12),(134371,72028,'Ken Danagger',2,13),(134371,16937,'Kip Chalmers',2,14),(134371,40978,'Cherryl Brooks',1,15),(134371,47878,'Jeff Allen',2,16),(134371,67015,'Ted \'Buzz\' Killman',2,17),(134371,74296,'Laughlin',0,18),(67911,32907,'Bucky Larson',2,0),(67911,6886,'Kathy McGee',1,1),(67911,10822,'Dick Shadow',2,3),(67911,25129,'Miles Deep',0,4),(67911,66073,'J. Day',0,5),(67911,58478,'Gary',2,6),(67911,32897,'Antonio',2,7),(67911,65921,'Claudio',2,8),(67911,85209,'Blueberry',1,9),(67911,60959,'Casting Director',1,10),(67911,214834,'Gretchen',1,11),(67911,1202550,'AFA Presenter',0,12),(67911,477074,'Production Assistant',0,13),(67911,298410,'Guinness Man',2,14),(329440,58502,'Sara / Jess Price',1,0),(329440,210271,'Aiden',2,1),(329440,584143,'Michi',0,2),(329440,111801,'Rob',2,3),(329440,1522254,'Hoshiko',0,4),(329440,1522256,'Mayumi',1,5),(329440,1142145,'Sakura',0,6),(329440,183048,'Valerie',0,7),(329440,1522260,'Yurei (uncredited)',2,8),(329440,1522261,'Ubasute Old Woman #2',0,9),(329440,1522262,'Yurei (uncredited)',2,10),(329440,1522258,'Sara / Jess (Age 6)',0,11),(329440,1522257,'Peter (uncredited)',0,12),(329440,937534,'Grandma',0,13),(329440,1522255,'Businessman',0,14),(329440,1522259,'Head Teacher',0,15),(329440,1386137,'Narusawa Bartender',0,16),(329440,1388891,'Visitor Center Morgue Man',2,17),(329440,1777418,'Homeless Man',0,18),(329440,1777419,'Sushi Chef',0,19),(329440,1777420,'Mei (Schoolgirl)',0,20),(329440,1777429,'Mother of Sara / Jess',0,21),(329440,1763157,'Ubasute Old Woman #1',0,22),(329440,112832,'Narusawa Young Woman',0,23),(329440,1777432,'Pillowcase Man',0,24),(329440,1777434,'Blue Tent Man',0,25),(329440,1777435,'Ubasute Old Woman #3',0,26),(329440,1051263,'Father of Sara / Jess',0,27),(329440,1777436,'Aokigahara Police Sergeant',0,28),(329440,1777437,'Airport Girl 2 (uncredited)',0,29),(329440,1522263,'Yurei (uncredited)',0,30),(47890,57399,'Erica Baron',1,0),(47890,8924,'Akmed Khazzan',2,1),(47890,15395,'Yvon Mageot',2,2),(47890,11857,'Abdu-Hamdi',2,3),(47890,661,'Khalifa',0,4),(47890,9912,'Mohammed',2,5),(47890,655,'Stephanos Markoulis',2,6),(47890,2980,'Gamal',2,7),(47890,11852,'Selim',2,8),(47890,663,'Don',2,9),(47890,33109,'Lord Carnarvon',2,10),(47890,21618,'Lady Carnarvon',1,11),(252512,7399,'Josh Schrebnick',2,0),(252512,3489,'Cornelia Schrebnick',1,1),(252512,1023139,'Jamie Massey',2,2),(252512,71070,'Darby Massey',1,3),(252512,28164,'Leslie Breitbart',2,4),(252512,55493,'Kent Arlington',2,5),(252512,205797,'Marina',1,6),(252512,124824,'Fletcher',2,7),(252512,228141,'Tipper',1,8),(252512,1013215,'Ira Mandelstam',2,9),(252512,1232599,'Tim',0,10),(252512,1788161,'Frank',0,11),(252512,1502216,'Benny',0,12),(252512,1820229,'Elise',0,13),(252512,1465486,'Pepper',0,14),(252512,77155,'Dr. Nagato',2,15),(252512,1396125,'Louis',0,16),(252512,1256142,'Dave',2,17),(252512,1789218,'Bartender',0,18),(252512,1260481,'Sundance Interviewer (voice)',1,19),(55720,76961,'Carlos Riquelme',2,0),(55720,1350973,'Luis Galindo',0,1),(55720,200065,'Ruthie Valdez',1,2),(55720,224507,'Anita',1,3),(55720,76857,'Blasco Martinez',2,4),(55720,1031791,'Santiago',0,5),(55720,150676,'Facundo',2,6),(55720,9279,'Mrs. Donnely',1,7),(55720,35231,'Ramon',0,8),(55720,27031,'Charlie',2,9),(55720,223048,'Rude busrider',0,10),(55720,77887,'',2,11),(68812,335,'Richard Kuklinski',2,0),(68812,1920,'Deborah Kuklinski',1,1),(68812,11477,'Roy Demeo',2,2),(68812,16828,'Robert Pronge',2,3),(68812,14409,'Josh Rosenthal',2,4),(68812,17051,'Marty Freeman',2,5),(68812,10822,'Joey Kuklinski',2,6),(68812,2055,'Leo Marks',2,7),(68812,87707,'Mickey Scicoli',2,8),(68812,131946,'Dino Lapron',2,9),(68812,142192,'Terry Franzo',2,10),(68812,1355176,'Anabel',1,11),(68812,136139,'Tender Bar Earl',2,12),(68812,945442,'Jimmy',0,13),(68812,1245982,'Coffee Shop Waitress',0,14),(68812,1393517,'Hospital Nurse',1,15),(68812,1190851,'Uncle Bill',0,16),(68812,113734,'Ellen',1,17),(68812,1393519,'Homeless Man',0,18),(68812,63423,'Mareilli',2,19),(68812,84760,'Alvaro',2,20),(68812,1393520,'JC',0,21),(68812,1393521,'Slick BMW Guy',0,22),(68812,978996,'Alex',1,23),(68812,235492,'Livi',1,24),(68812,85178,'Adele',1,25),(68812,1123267,'Park Little Girl',0,26),(68812,1271773,'Club Maitre D\'',2,27),(68812,1393522,'Club USA Dance Partner',1,28),(68812,90113,'Romy',1,29),(68812,170240,'Dominick Provenzano',2,30),(68812,1393524,'Detective Beaumont',0,31),(68812,186922,'Cop',0,32),(68812,1272847,'Stanley Kuklinski',0,33),(68812,1346619,'Dennis',0,34),(68812,1393525,'Mr. Freezy\'s Son',0,35),(68812,36999,'Trial Judge',2,36),(68812,1393526,'Trial Judge (voice)',0,37),(68812,1393527,'',0,38),(68812,1393527,'Documentary Interviewer (voice)',0,39),(73567,10297,'Killer Joe Cooper',2,0),(73567,46593,'Chris Smith',2,1),(73567,19159,'Ansel',2,2),(73567,11150,'Sharla',1,3),(73567,36594,'Dottie Smith',1,4),(73567,6908,'Digger Soames',2,5),(73567,557804,'Pizza Patron',2,6),(73567,60877,'Saleslady',1,7),(73567,574380,'G-Man',2,8),(73567,550473,'Biker Thug',2,9),(73567,1055739,'Pizza Manager',0,10),(73567,1383386,'Filpatrick',0,11),(73567,1383387,'Preacher',0,12),(41479,12640,'Steve Jones',2,0),(41479,3416,'Kate Jones',1,1),(41479,55085,'Jenn Jones',1,2),(41479,77865,'Mick Jones',2,3),(41479,27964,'KC',1,4),(41479,112562,'Sylivia',1,5),(41479,21163,'Larry Symonds',2,6),(41479,21104,'Summer Symonds',1,7),(41479,223027,'Melanie Bayner',0,8),(41479,928307,'Mary Beth',1,9),(41479,208160,'Naomi Madsen',1,10),(41479,126913,'Restaurant Patron (uncredited)',0,11),(91076,1241,'Tuccio',2,0),(91076,4690,'Bevalaqua',2,1),(91076,4038,'Celimene',1,2),(91076,17328,'Dominique',2,3),(91076,821,'Astergourd',1,4),(91076,856,'Old Flavio',2,5),(91076,171379,'Rachel',1,6),(91076,1069,'Jailor',0,7),(91076,58549,'Marco',2,8),(91076,106791,'Marta',0,9),(91076,95789,'Simone',1,10),(91076,76526,'Orlandini',2,11),(91076,159869,'Piero',2,12),(91076,92276,'Concubine #1',2,13),(91076,65765,'Prince',2,14),(91076,11484,'Marco\'s mother',1,15),(91076,977672,'Boy',0,16),(91076,1006136,'Journalist',0,17),(91076,976644,'Beppo',0,18),(64559,12270,'Victor',2,0),(64559,17882,'Betty',1,1),(64559,33161,'Maurice',0,2),(64559,35527,'Monsieur K',2,3),(222649,258,'Maziar Bahari',2,0),(222649,21041,'Moloojoon',1,1),(222649,185805,'Jason Jones',0,2),(222649,117640,'Baba Akbar',2,3),(222649,1208137,'Haj Agha',0,4),(222649,990119,'Jimmy the avid editor',0,5),(222649,3398,'Javadi (Rosewater)',2,6),(222649,89821,'Davood',2,7),(222649,229932,'Maryam',1,8),(222649,120932,'Paola',1,9),(115872,15533,'Horty',2,0),(115872,37946,'Marie',1,1),(115872,40938,'Zoe',1,2),(115872,55922,'Simeon',2,3),(101173,17276,'Tullus Aufidius',2,0),(101173,5469,'Caius Martius Coriolanus',2,1),(101173,77498,'First Citizen (Tamora)',1,2),(101173,766,'Second Citizen (Cassius)',2,3),(101173,83002,'Virgilia',1,4),(101173,13333,'Volumnia',1,5),(101173,34715,'Tribune Sicinius',2,6),(101173,1248,'Menenius',2,7),(101173,51878,'General Cominius',2,8),(101173,31648,'Titus Lartius',2,9),(101173,72308,'Tribune Brutus',2,10),(101173,1413863,'1st Senator',0,11),(101173,1050902,'2nd Senator',0,12),(101173,109319,'TV Pundit',1,13),(41894,211484,'Boo Tyson',1,1),(41894,12132,'Defense attorney Billy Watkins',2,2),(41894,112742,'Julie Tyson',1,3),(41894,334,'Herman Cozart',0,4),(41894,166897,'Roger Oakley',2,5),(41894,77277,'Ben Chavis',2,6),(41894,76546,'Vernon Tyson',0,7),(41894,51359,'Roseanna Allen',1,8),(41894,117885,'Tim Tyson',2,9),(184374,1149132,'Juan Osorno',0,0),(184374,562279,'Citali',1,1),(184374,7353,'Dona Soledad',1,2),(184374,58982,'General Ignacio Zaragoza',2,3),(184374,24923,'General Prim',0,4),(184374,89445,'Benito Juarez',0,5),(184374,7371,'General Antonio u00c1lvarez',0,6),(184374,989722,'General Meju00eda',2,7),(184374,1043824,'General Porfirio Diaz',0,8),(184374,1583550,'Dubois du Saligny',0,9),(184374,942967,'Juan Nepomuceno Almonte',2,10),(268171,4090,'Elsa Hayes',1,1),(268171,290,'Fred Bancroft',2,2),(268171,38026,'Jack',2,3),(268171,4726,'Lydia Bancroft',1,4),(268171,2154,'Raymond Hayes',2,5),(268171,9274,'Max Hayes',2,6),(268171,929906,'Michael',2,7),(268171,18364,'John',2,8),(268171,17859,'Armande',2,9),(268171,33655,'Laverne',1,10),(268171,169665,'Dr. Sheridan',1,11),(268171,1590549,'Fine Dining Customer',1,12),(268171,1347310,'Receptionist',1,13),(78149,18897,'Jackie Chan',2,0),(78149,16483,'Sylvester Stallone',2,1),(78149,2395,'Whoopi Goldberg',1,2),(78149,10713,'Alan Smithee',2,3),(78149,31070,'James Edmunds',2,4),(78149,35549,'',2,5),(78149,61109,'',2,6),(78149,53402,'Jerry Glover',2,7),(78149,21474,'Michelle Rafferty',1,8),(78149,59839,'Sam Rizzo',2,9),(78149,3664,'Ann Glover',1,10),(78149,20768,'Myrna Smithee',1,11),(78149,56567,'Allessandra',0,12),(78149,879,'Billy Bob Thornton',2,13),(39037,6279,'Beth Vest',1,0),(39037,83225,'Baker',2,1),(39037,34612,'Lisa',1,2),(39037,37041,'Cash',2,3),(39037,53368,'Tommy Fielding',2,4),(39037,23821,'Daniel Seaver',2,5),(39037,57346,'Cynthia',1,6),(39037,54247,'Steve-O',2,7),(39037,17187,'Sylvia',1,8),(39037,208160,'Brooke',1,9),(39055,67602,'Cale Bryant',2,0),(39055,145184,'Alex Lopez',1,1),(39055,74929,'Bailey Bryant',1,2),(245846,2227,'Catherine Parker',1,1),(245846,12763,'Matthew Parker',2,2),(245846,1331,'Detective David Rae',2,3),(245846,79699,'Coreen',0,4),(245846,1415756,'Sally McPherson',0,5),(245846,1415757,'Lily Parker',0,6),(245846,1486922,'Burtie',0,7),(245846,962109,'Steve Robertson',2,8),(245846,212739,'Neil McPherson',2,9),(245846,1504947,'Tom',2,10),(49787,37292,'Suzie',1,0),(49787,142798,'Kate',0,1),(49787,78572,'Matt',2,2),(49787,75129,'Luke',0,3),(49787,109439,'Warren',2,4),(66767,545343,'Yuson',2,0),(66767,545344,'Maya',1,1),(66767,545345,'Cherry',1,2),(66767,550825,'Justin',2,3),(66767,1192736,'Easy',0,4),(66767,1192737,'Olivia',0,5),(66767,1192738,'Carlos',0,6),(283671,3272,'Manu (voice)',2,0),(283671,60949,'Chuy (voice)',2,1),(283671,571564,'Young Chuy (voice)',1,2),(283671,1217137,'Reiser (voice',0,3),(283671,94820,'Sacha (voice)',0,4),(283671,1386149,'Balaam (voice)',0,5),(217708,55584,'Kolbeinn',2,0),(217708,1183138,'Solveig',1,1),(217708,132204,'Vernhardur',2,2),(217708,79819,'Hildur',1,3),(217708,42671,'Egil',0,4),(217708,1183141,'Grimur',0,5),(217708,1290764,'Ju00f3hanna',0,6),(217708,1290765,'Juan Camillo',0,7),(217708,1539037,'Jon',0,8),(217708,142874,'u00c1sa',0,9),(217708,1539038,'Thorgardur',0,10),(217708,1539039,'Gengis',0,11),(217708,79818,'u00d3li',2,12),(217708,1539040,'Bjossi',0,13),(217708,1181822,'Priest',0,14),(217708,1539041,'Leifur',0,15),(42057,85672,'Mrs. Sethi',1,0),(42057,200658,'Roopi Sethi',1,1),(42057,165425,'D S Raj Murthy',2,2),(42057,39658,'Linda / Gitali',1,3),(42057,13633,'D I Smythe',2,4),(42057,82107,'Jazz Sethi',2,5),(42057,1031118,'Old Woman at Market',1,6),(42057,20240,'Mrs. Goldman',1,7),(42057,49813,'Chief Superintendent',0,8),(42057,16756,'Dev',2,9),(42057,75067,'Overbearing Mother',0,10),(42057,1227784,'Tej',2,11),(42057,117795,'Karishma',1,12),(78383,59882,'Abby Russell',1,0),(78383,74618,'Danni',1,1),(78383,3391,'Head Nurse Betty Watson',1,2),(78383,21624,'Dr. Morris',2,3),(78383,80758,'Detective John Rogan',2,4),(78383,67602,'Steve',2,5),(78383,63231,'Regina',0,6),(78383,59256,'Jared',2,7),(78383,207491,'Rachel Adams',1,8),(78383,67979,'Richie',2,9),(78383,134859,'Security Guard',2,10),(78383,42993,'Larry Cook',2,11),(43090,7055,'Jane Taylor',1,0),(43090,9832,'Jack Smith',2,1),(43090,540,'Ben Cutler',2,3),(43090,53117,'Corporal Jonathan Kent',2,4),(43090,6804,'Two Dogs',2,5),(43090,122876,'Miss Alice',1,6),(43090,67979,'Larry',2,7),(43090,62919,'John',2,8),(43090,129984,'Beth',0,9),(43090,129985,'Ringo',0,10),(43090,72045,'Constable Hughes',2,11),(43090,129986,'Beatrice',1,12),(43090,33339,'Paul',2,13),(43090,129987,'Adell Kwon (as Melody Barbara-Jean Choi)',0,14),(43090,83029,'Carl',2,15),(43090,129988,'Chinese Lady W / Glasses',0,16),(43090,129989,'1890\'s Old West Dancer',0,17),(43090,129990,'Chinese TNT Guy #1',0,18),(43090,129991,'Chinese Railway Worker\'s Son',2,19),(43090,84021,'Sean \'The Montana Kid\' Rafferty',2,20),(250066,17244,'James',2,0),(250066,3490,'Frankie',2,1),(250066,22123,'Emily',1,2),(250066,214839,'Sugar',2,3),(250066,565498,'Loan Officer',1,4),(250066,1165616,'Katie',1,5),(250066,62645,'Ray',2,6),(250066,37149,'Spoonie',2,7),(250066,141762,'Captain Sullivan',2,8),(250066,990136,'Paramedic',2,9),(250066,1158069,'Prison Guard',0,10),(250066,101847,'Auto Shop Boss',2,11),(250066,1394617,'House',0,12),(250066,52783,'Eyewitness',1,13),(250066,60877,'Hostage',1,14),(208869,25438,'Sam',2,0),(208869,93491,'Fordy',2,1),(208869,71586,'Yatesey',2,2),(208869,1192218,'Rafa',2,3),(208869,1078568,'Frankie',1,4),(208869,3491,'Marcel',2,5),(208869,95047,'Steve Dawson',2,6),(208869,118544,'Beth',1,7),(86837,267962,'Anne',1,0),(86837,1352,'Georges',2,1),(86837,17882,'Eva',1,2),(86837,140238,'Geoff',0,3),(86837,109713,'Concierge',0,4),(86837,543366,'Nurse #2',1,5),(86837,17463,'Nurse #1',0,7),(86837,228719,'Police Officer #1',2,7),(86837,109474,'Paramedic #1',2,8),(86837,6016,'Paramedic #2',2,9),(86837,122461,'Concierge\'s Husband',2,10),(86837,1097535,'Police Officer #2',0,11),(106845,25877,'Sarge',2,0),(106845,78110,'Parker',2,1),(106845,59296,'Matthews',1,2),(106845,27422,'Winston',2,3),(106845,66525,'Hernandez',2,4),(106845,1590341,'Nyguyen',0,5),(106845,232596,'Tom Falkirk',2,6),(106845,1211865,'Langford',0,7),(106845,96895,'Captain Mcadam',2,8),(106845,125719,'Redneck',2,9),(106845,1350263,'Grizzly Adams',0,10),(106845,1297039,'Bobby Camera Guy',0,11),(106845,1031253,'Therapist',0,12),(106845,550317,'News Anchor',1,13),(106845,1590342,'Hot Girl',0,14),(106845,1260674,'Hot Girl 2',0,15),(106845,1590347,'Beautiful Girl 1',0,16),(106845,1393522,'Anchor Woman',1,17),(106845,1783651,'Lab Tech',1,18),(244316,11006,'Rowan',2,0),(244316,11155,'Beckett',2,1),(244316,15555,'Michelle',1,2),(244316,349,'Sully',2,3),(244316,210126,'Kaley',1,4),(244316,879,'Douglass',2,5),(244316,33527,'Johnny Cadillac',2,6),(244316,1184434,'Amber',0,7),(244316,141774,'Gerry Smith',0,8),(244316,113861,'Zoe Langford',1,9),(244316,110476,'Franco',0,10),(244316,1235532,'Pike',2,11),(244316,1714270,'Mary Cadillac',0,12),(244316,32751,'Dooly',2,13),(244316,1366484,'Patrick',0,14),(244316,102742,'Marcus',2,15),(244316,26089,'Greg',2,16),(244316,62869,'Bartender',2,17),(244316,1066284,'Sydnee',0,18),(244316,1792249,'Young Rowan',0,19),(244316,1428071,'Young Beckett',0,20),(37737,78749,'Jay',2,0),(37737,119817,'Natasha',1,1),(37737,10510,'Bob',2,2),(37737,85470,'Gina',1,3),(37737,119818,'Tony',2,4),(37737,61535,'Cop',2,5),(37737,1244933,'Border Patrol',2,6),(37737,53969,'Bounty Hunter',2,7),(37737,1017329,'News Reporter',1,8),(37737,86884,'Robin',2,9),(37737,79236,'Mexican Policia',2,10),(37737,130592,'Jamaal',2,11),(37737,79239,'Bounty Hunter',2,12),(37737,1441170,'Mrs. B. Grover',1,13),(37737,567114,'Police officer',2,14),(37737,36636,'Railyard Worker',2,15),(37737,1577224,'Satpal',2,16),(37737,1577226,'Mexican Villager',1,17),(37737,1577229,'Officer Freeman',0,18),(37737,1577233,'Musician (uncredited)',0,19),(62215,205,'Justine',1,0),(62215,4273,'Claire',1,1),(62215,2628,'John',2,2),(62215,44079,'Gaby',1,3),(62215,5049,'Dexter',2,4),(62215,28846,'Michael',2,5),(62215,1640,'Jack',2,6),(62215,55493,'Tim',2,7),(62215,1646,'Wedding planner',2,8),(62215,2244,'Little Father',2,9),(62215,234986,'Leo',2,10),(62215,234987,'Michael\'s mother',0,11),(66125,6164,'John',1,0),(66125,19538,'Nancy',1,1),(66125,33184,'Jocko',2,2),(66125,55900,'Tom',2,3),(66125,107474,'Vanno',2,4),(66125,83772,'Peeto',2,5),(66125,1465889,'Red Dog',0,6),(66125,15293,'Rosa',0,7),(66125,1284,'Jack',2,8),(66125,85350,'Maureen',0,9),(66125,85350,'Mr. Cribbage',0,10),(66125,1321953,'Mrs. Cribbage',1,11),(132316,35742,'Major Samar Anand',2,0),(132316,81869,'Meera Thapar',1,1),(132316,81928,'Akira Rai',1,2),(132316,6217,'Mr. Thapar',2,3),(132316,1770283,'Dr. Zoya Ali Khan',0,4),(132316,1770284,'Frank',0,5),(132316,1326933,'Zain',0,6),(132316,1529821,'Maria',0,7),(132316,1254401,'Captain Jagdeep Deewan',0,8),(132316,1770285,'Captain Kamal Singh',0,9),(132316,1770286,'Lieutenant Hari Krishnan',0,10),(132316,1770287,'Roger',0,11),(132316,35791,'Imraan',2,12),(132316,88812,'Pooja',1,13),(68684,553504,'Riley Jones',1,0),(68684,27972,'Clapton Davis',2,1),(68684,57192,'Ione Foster',1,2),(68684,31837,'Principal Karl Verge',2,3),(68684,1849987,'Sander Sanderson',0,4),(68684,101522,'Elliot Fink',2,5),(68684,122518,'Sloan Foster',1,6),(68684,168341,'Mr. Kendall',0,7),(68684,553503,'Billy Nolan',0,8),(68684,1074676,'Mimi',0,9),(68684,1429172,'Taylor Fisher',0,10),(68684,1148626,'Alexis Spencer',1,11),(68684,1074677,'Toshiba',0,12),(68684,1849988,'Gord',0,13),(68684,1095608,'Toby T.',0,14),(68684,158231,'Doug Jones',2,15),(68684,3901,'Mr. Nolan',2,16),(68684,205114,'Mike',2,17),(68684,1849984,'Truman',0,18),(68684,73130,'Pedro',0,19),(68684,562583,'Greg',2,20),(68684,64622,'Madison',0,21),(68684,963849,'Wendy',1,22),(68684,1849990,'Monica Lafontaine',0,23),(68684,1216413,'Ms. Macintire',1,24),(68684,106911,'Mr. Cooper',2,25),(68684,188758,'Dr. Murdock',2,26),(68684,1849989,'Officer Marge McNally',0,27),(68684,1602373,'Officer Randy Randazzo',0,28),(68684,1513973,'Principal Woodruff',2,29),(68684,168872,'Nerd',2,30),(68684,198610,'Cheerleader',0,31),(68684,1180945,'Jock Kid',2,32),(68684,967540,'Cinderhella',1,33),(68684,1440057,'Female Student #1',0,34),(40794,124618,'Alba',1,0),(40794,59270,'Tommaso',2,1),(40794,24288,'Antonio',2,2),(40794,124619,'Stefania',0,3),(40794,27272,'Vincenzo',2,4),(40794,124620,'Luciana',0,5),(40794,24424,'La nonna',0,6),(40794,124621,'Elena',0,7),(40794,124622,'Andrea',0,8),(40794,124623,'Nonna da giovane',1,9),(40794,124624,'Salvatore',0,10),(40794,124625,'Teresa',1,11),(40794,124626,'Giovanna',0,12),(40794,124627,'Nicola',2,13),(40794,124628,'Domenico',2,14),(40794,1178678,'Patrizia',0,15),(238636,81685,'Leo Barnes',2,0),(238636,37158,'Eva Sanchez',1,1),(238636,70303,'Shane',2,2),(238636,31168,'Liz',1,3),(238636,1208406,'Cali Sanchez',1,4),(238636,95517,'Tanya',1,5),(238636,38571,'Papa Rico',2,6),(238636,21675,'Big Daddy',2,7),(238636,53252,'Diego',2,8),(238636,3979,'Barney',2,9),(238636,39390,'Carmelo Johns',2,10),(238636,56679,'The Stranger',2,11),(238636,1200864,'Young Goul Face',2,12),(238636,1237292,'Lorraine',0,13),(238636,61852,'Carlos',2,14),(238636,1008750,'Roddy',2,15),(238636,51610,'Old Elegant Woman',1,16),(238636,1224490,'Janice',0,17),(238636,1352947,'Katherine',1,18),(238636,12539,'Mrs. Crawley',1,19),(238636,945542,'Homeless Man',2,20),(238636,149829,'Warren Grass',2,21),(238636,1647179,'Oscar',2,22),(238636,78861,'Mrs. Grass',1,23),(238636,1647177,'Mr. Sabian',2,24),(238636,155933,'Suited Gent',0,25),(238636,1573587,'Posh Grandfather',0,26),(238636,101088,'Bloody Faced Man',2,27),(238636,1647181,'Posh Mother',1,28),(238636,1647182,'Posh Father',2,29),(238636,3211,'New Founding Father',2,30),(238636,1215979,'Deranged Woman',1,31),(238636,87437,'TV Newscaster',1,32),(238636,1412789,'TV Newscaster',0,33),(238636,1062211,'Bouncer',2,34),(238636,1377037,'Paramedic',2,35),(238636,126841,'Thomas Hearst (uncredited)',2,36),(238636,154837,'Purger (uncredited)',2,37),(238636,1647187,'Hanover Sister (uncredited)',1,38),(238636,1513185,'Hanover Sister (uncredited)',0,39),(238636,1116282,'Wealthy Guest (uncredited)',1,40),(293670,1155298,'Jong-Goo',2,0),(293670,68903,'Il-Gwang',2,1),(293670,1263930,'Moo Myeong',1,2),(293670,2541,'The Stranger',2,3),(293670,1681260,'Hyo-jin',1,4),(293670,1112238,'Mother-in-law',0,5),(293670,463583,'Jong-Goo\'s wife',0,6),(293670,1203792,'Detective 1',2,7),(293670,115294,'Oh Sung-bok',2,8),(293670,1793045,'Kwon Myung-joo',0,9),(293670,1793046,'Yang Yi-sam',0,10),(67675,141687,'Quinn Fabray',1,0),(67675,128206,'Rachel Berry',1,1),(67675,12052,'Holly Holliday',1,2),(67675,228721,'Blaine Anderson',2,3),(67675,221607,'Kurt Hummel',2,4),(67675,43775,'Sue Sylvester',1,5),(67675,33352,'Finn Hudson',2,6),(67675,221606,'Brittany Pierce',1,7),(67675,197070,'Artie Abrams',2,8),(67675,232501,'Sam Evans',2,9),(67675,102723,'Noah \'Puck\' Puckerman',2,10),(67675,158136,'Santana Lopez',1,11),(67675,232499,'Mike Chang',2,12),(67675,213109,'Mercedes Jones',1,13),(67675,221609,'Tina Cohen-Chang',1,14),(67675,564629,'Lauren Zizes',1,15),(67675,564630,'Jeff',0,16),(67675,564631,'Nick',0,17),(67675,564632,'David',2,18),(250349,2192,'Antoine',2,0),(250349,24893,'Baptiste',0,1),(250349,56226,'Olivia',1,2),(250349,17896,'Yves',2,3),(250349,54170,'Jean-Michel',2,4),(250349,1035744,'Nathalie',0,5),(250349,236135,'Vu00e9ronique',0,6),(250349,7278,'Laurent',0,7),(250349,1047743,'Serveur chez Abel',0,8),(250349,305036,'Professeur Blomet',0,9),(250349,147832,'Voisine',1,10),(250349,1304842,'Laure',0,11),(250349,97085,'Alexandre',2,12),(39806,69225,'Princess Ka\'iulani',1,0),(39806,12834,'Thurston',2,1),(39806,883,'Sanford B. Dole',2,2),(39806,151797,'Archie Cleghorn',2,3),(39806,63311,'Clive Davies',2,4),(291081,37625,'Eddie Dunford',2,0),(291081,18616,'Maurice Jobson',2,1),(291081,83816,'Bill Hadley',2,2),(291081,118608,'Barry Gannon',2,3),(291081,2268,'Bill Molloy',2,4),(291081,118609,'Mrs Kemplay',1,5),(291081,118610,'Eddie\'s Mum',1,6),(291081,1170276,'Susan Dunford',0,7),(291081,118612,'Aunty Win',1,8),(291081,1317170,'Uncle Eric',0,9),(291081,70904,'Kathryn Tyler',1,10),(291081,118616,'BJ',2,11),(291081,1665,'Jack Whitehead',2,12),(291081,1670,'Michael Myshkin',2,13),(291081,2617,'Mary Cole',1,14),(291081,3064,'Martin Laws',2,15),(291081,83817,'Leonard Cole',2,16),(291081,199975,'Paul Booker',2,17),(291081,15556,'Paula Garland',1,18),(291081,16702,'Bob Craven',2,19),(291081,48,'John Dawson',2,20),(291081,55364,'Sgt. Bob Fraser',2,21),(291081,85071,'Dick Alderman',2,22),(41248,21175,'Samuel Bleistein',2,1),(41248,50,'Louise',1,2),(41248,23671,'Jeanne',1,3),(41248,81054,'Franck',2,4),(41248,64751,'Alex, le fils de Samuel',2,5),(41248,19942,'Judith',1,6),(41248,580692,'Nathan, leur fils',0,7),(52010,28641,'Severus (voice)',2,0),(52010,5049,'Carnak',2,1),(52010,28848,'Proteus (voice)',2,2),(52010,27764,'Verenor (voice)',2,3),(52010,20425,'Pythol (voice)',2,4),(52010,32300,'Nidon (voice)',2,5),(52010,145166,'Crastor (voice)',2,6),(52010,145167,'Boreas (voice)',0,7),(52010,145168,'Hypax (voice)',2,8),(43418,129527,'Captain Oliver Woodward',2,0),(43418,127281,'Frank Tiffin',2,1),(43418,59116,'Sergeant Bill Fraser',2,2),(43418,78572,'Norman Morris',2,3),(43418,1331901,'Jim Sneddon',0,4),(43418,1331902,'Walter Sneddon',0,5),(43418,213087,'Percy Marsden',0,6),(43418,1323881,'Billy Bacon',0,7),(43418,75711,'William McBride',2,8),(43418,84451,'Lt. Robert Clayton',2,9),(43418,28744,'Mrs. Emma Waddell',1,10),(43418,78095,'William Waddell',2,11),(43418,234982,'Marjorie Waddell',1,12),(43418,3070,'Colonel Wilson Rutledge',2,13),(43418,144081,'Major Brady North',2,14),(43418,1086957,'Warren Hutchings',0,15),(43418,107028,'General Lambert',2,16),(71157,13688,'Nadine',1,0),(71157,51508,'Fred',0,1),(71157,76820,'Iris',1,2),(71157,81054,'Mathieu',2,3),(71157,64210,'Melissa',1,4),(71157,150901,'Chrys',1,5),(71157,25340,'Sue Ellen',1,6),(71157,9005,'Balloo',2,7),(71157,19080,'Bamako',0,8),(71157,500341,'Nora',1,9),(71157,79033,'Gabriel',2,10),(71157,59270,'Francesco',2,11),(71157,81821,'Mme de la Faublaise',1,12),(71157,64541,'Beauchard',2,13),(71157,230401,'M. de la Faublaise',2,14),(71157,78479,'Hervu00e9, le mari de Nadine',2,15),(71157,17463,'Cu00e9line',0,16),(71157,6550,'Alice',1,17),(71157,130664,'Mu00e8re Indigne',1,18),(71157,124072,'Mu00e8re Droguu00e9e',1,19),(71157,85016,'Le prof de gym',2,20),(71157,145327,'Alex',2,21),(71157,35882,'Franck',2,22),(71157,54325,'Sandra',1,23),(71157,130890,'La mu00e8re de Sandra',1,24),(71157,66840,'Marc',2,25),(71157,1065370,'Estelle',1,26),(71157,25345,'Soeur Melissa',1,27),(71157,1164973,'La mu00e8re d\'Ousman',0,28),(71157,1164974,'Sophie de la Faublaise',0,29),(71157,1164975,'Marie',0,30),(71157,1164976,'Ousman',0,31),(71157,240733,'Doloru00e8s',1,32),(71157,1092022,'Denis',0,33),(71157,1164979,'La juge',1,34),(71157,1164980,'Marilyn',1,35),(71157,146080,'Fille Balloo',1,36),(71157,1164981,'Ado gothique',0,37),(71157,584657,'Pu00e8re Doloru00e8s',2,38),(71157,1164983,'Mu00e9decin accouchement',0,39),(71157,1164987,'Papy Marie',0,40),(71157,1164988,'Substitut du procureur',0,41),(71157,133732,'Mu00e8re de Melissa',0,42),(71157,81793,'Ado portable',1,43),(71157,1164995,'Ado webcam',0,44),(71157,1164996,'Solal',0,45),(333355,71535,'Yoda',2,2),(333355,35219,'Count Dooku / San Hill',2,3),(333355,1571231,'Anakin Skywalker',2,4),(333355,19506,'Obi-Wan Kenobi',2,5),(333355,1214813,'ARC Captian / Captain Typho / Various Troopers & droids',0,6),(333355,39214,'Supreme Chancellor Palpatine',2,7),(333355,39214,'Supreme Chancellor Palpatine / Darth Sidious',2,9),(333355,31162,'Durge',2,10),(333355,34985,'Luminara Unduli',1,11),(333355,1571243,'Barriss Offee',0,12),(333355,6,'C-3PO',2,13),(333355,15761,'Asajj Ventress / Padmu00e9 Amidala / Shaak-Ti',1,15),(333355,31162,'Durge / Ki-Adi-Mundi / Master Barrek',2,16),(333355,24362,'K\'Kruhk / Sha\'A Gi',2,17),(327833,16644,'Nick Cassidy',2,0),(327833,57207,'Tony Vitayakul',2,1),(327833,2372,'Viktor Dragovic',2,2),(327833,1224028,'Min',1,3),(327833,64856,'Reed',2,4),(327833,27811,'Costello',2,5),(327833,127453,'Igor',0,6),(327833,11398,'Senator Khat',2,7),(327833,1390882,'Rosa Cassidy',0,8),(327833,64674,'Goran',2,9),(327833,521673,'Kong',2,10),(327833,92285,'Victor\'s Bodyguard',2,11),(327833,1442046,'Sofia Cassidy',0,12),(327833,1405260,'SWAT',0,13),(327833,1353657,'(voice)',0,14),(327833,1459138,'Gogo Bar Customer',0,15),(327833,1358973,'Kuzman\'s bodyguard',2,16),(327833,1459139,'Janko',0,17),(327833,80371,'The Attorney',2,18),(327833,90117,'',2,19),(327833,1459140,'Kuzman',0,20),(327833,1459141,'Andre',0,21),(327833,102742,'Detective Russell',2,22),(327833,63566,'Detective Monroe',2,23),(327833,172793,'Dex',0,24),(175528,52851,'Montana Moore',1,0),(175528,11702,'Sam',2,1),(175528,938,'Quinton',2,2),(175528,17637,'Langston',2,3),(175528,37936,'Taylor',1,4),(175528,15543,'William Wright',2,5),(175528,1116017,'Janine',1,6),(175528,143242,'Sheree\'s Fiance',0,7),(175528,98772,'Sheree Moore',1,8),(175528,1034453,'Tanya',1,9),(175528,4721,'Gail Best',1,10),(175528,224231,'Damon Diesel',0,11),(175528,98394,'Cedric',2,12),(175528,1158044,'Sexy Waitress',0,13),(175528,226332,'Alonzo',0,14),(175528,87569,'Janine',1,15),(71805,563838,'Haakon Haakonsen',0,0),(71805,5168,'Lt. John Merrick',2,1),(71805,137748,'Mary',0,2),(71805,71186,'Mr. Hu00e5konsen',2,3),(71805,135121,'Ole',2,4),(71805,174723,'Pirate',2,5),(71805,1478933,'Jens',0,6),(71805,1269951,'Mrs. Hu00e5konsen',0,7),(71805,123960,'The Captain',0,8),(71805,559200,'Bosun',0,9),(71805,110101,'Berg',0,10),(71805,1478943,'Steine',0,11),(71805,110104,'Bakken',0,12),(71805,1644928,'Old Salt',0,13),(71805,1014342,'Wernes',2,14),(71805,1404642,'Thatcher',0,15),(272693,52404,'Bianca Piper',1,0),(272693,1223726,'Wesley Rush',2,1),(272693,98285,'Madison Morgan',1,2),(272693,1277583,'Casey Cordero',1,3),(272693,110930,'Jess Harris',1,4),(272693,71530,'Principal Buchanon',2,5),(272693,212768,'Toby Tucker',2,6),(272693,588231,'Mr. Fillmore',2,7),(272693,83586,'Mr. Arthur',2,8),(272693,19,'Dottie Piper',1,9),(272693,1533223,'Caitlyn',0,10),(272693,1181558,'A.J.',0,11),(272693,1459830,'Seu00f1or Gomez',2,12),(272693,1533227,'Matt',0,13),(272693,1426221,'Jeffrey',0,14),(272693,1539204,'Octavia',0,15),(150202,62747,'',2,0),(150202,51798,'',1,1),(150202,123725,'',1,2),(150202,18249,'',1,3),(150202,112742,'',1,4),(150202,946356,'',1,5),(150202,1137888,'',1,6),(152747,4135,'Our Man',2,0),(62676,1161,'Donna De Angelo',1,0),(62676,11064,'\'Jumpin\' Joe Gastineau',2,1),(62676,235782,'Noelle De Angelo',1,2),(62676,10823,'\'Smilin\' Jack Johannson',2,4),(185008,85034,'Bunny',2,0),(185008,53975,'Naina',1,1),(185008,146957,'Aditi',1,2),(185008,142626,'Avi',2,3),(185008,113690,'Taran Saxena',0,4),(185008,1174413,'Lara Handa',0,5),(242582,131,'Louis Bloom',2,0),(242582,14343,'Nina Romina',1,1),(242582,53240,'Rick',2,2),(242582,2053,'Joe Loder',2,3),(242582,97604,'Frank Kruse',2,4),(242582,61084,'Detective Frontieri',1,5),(242582,59260,'Linda',1,6),(242582,18293,'Jackie',1,7),(242582,1152043,'Jenny',1,8),(242582,36060,'Detective Lieberman',2,9),(242582,20582,'Security Guard',2,10),(242582,79086,'Kent Shocknek',2,11),(242582,73132,'Scrapyard Owner',2,12),(242582,1237502,'Marcus Mayhem Video',0,13),(242582,156131,'Sharon Tay',1,14),(242582,1362531,'Rick Garcia',2,15),(242582,205565,'Bill Seward',2,16),(242582,1412789,'KWLA Anchor Ben Waterman',0,17),(242582,1323612,'Pawn Shop Owner',2,18),(242582,1391685,'Cop #2',0,19),(242582,116514,'Ace Video Cameraman',2,20),(242582,1141368,'Editor',0,21),(242582,1193072,'Barred Door Woman',0,22),(242582,1219610,'Female Neighbor',1,23),(242582,79079,'Freaked Motorist',2,24),(242582,1709744,'Paramedic (uncredited)',0,25),(242582,1733254,'KWLA Anchor Lisa Mays',0,26),(242582,1711678,'Cop #1',0,27),(242582,1619444,'Neighbour',0,28),(37964,5411,'Sidney \'Syd\' Shaw',1,0),(37964,17637,'Andre Romulus \'Dre\' Ellis',2,1),(37964,4239,'Chris \'Cav\' Anton Vichon',2,2),(37964,15758,'fracine',1,3),(37964,74615,'Reese Marie Wiggam Ellis',1,4),(37964,80758,'Kelby Dawson',2,5),(37964,1225953,'Co-Worker',2,6),(37964,17859,'Simon',2,7),(37964,115255,'Himself',2,8),(37964,4719,'Himself',0,9),(37964,557352,'Himself',0,10),(37964,237061,'Himself',0,11),(37964,217536,'Himself',0,12),(37964,130161,'Himself',0,13),(37964,88132,'Himself',2,14),(37964,82431,'Himself',0,15),(37964,60474,'Himself',2,16),(37964,4238,'Himself',0,17),(37964,303059,'Himself',0,18),(37964,92940,'Himself',2,19),(37964,5384,'Himself',2,20),(37964,1072044,'Themselves',0,21),(40807,24045,'Adam Lerner',2,0),(40807,19274,'Kyle Hirons',2,1),(40807,84223,'Katherine McKay',1,2),(40807,18997,'Rachael',1,3),(40807,5657,'Diane Lerner',1,4),(40807,41746,'Richard Lerner',2,5),(40807,41436,'Dr. Ross',2,6),(40807,1281758,'Susan',1,7),(40807,40009,'Mitch',2,8),(40807,4492,'Alan',2,9),(40807,177885,'Dr. Walderson',1,10),(40807,61541,'Dr. Lee',0,11),(40807,387183,'Jenny',1,12),(40807,89551,'Phil',2,13),(40807,211540,'Jackie',1,14),(40807,61187,'Dr. Phillips',2,15),(40807,59241,'Bernie',1,16),(40807,122876,'Claire',1,17),(40807,440439,'Ted',2,18),(40807,140114,'Allison',1,19),(40807,113861,'Agabelle Loogenburgen',1,20),(40807,63563,'Nurse Stewart',1,21),(40807,204975,'Attractive Woman #2',1,22),(40807,1504653,'Pretty Girl',0,23),(40807,86530,'Mother on the Bus',1,24),(40807,54716,'Bodie',1,25),(40807,1366786,'Cute Guy with Dreads',0,26),(40807,1235749,'Minister',0,27),(40807,20180,'Friendly Nurse',1,28),(40807,1574847,'Joe',0,29),(40807,1324398,'George',2,30),(40807,1112818,'Young Person on the Bus',2,31),(40807,124649,'Greg',2,32),(40807,1200416,'Art Gallery Patron',0,33),(40807,58769,'Himself (archive footage)',2,35),(40807,1457254,'Office Staff (uncredited)',0,36),(40807,1457270,'Chemo Patient (uncredited)',0,37),(40807,43961,'Live Volcano Reporter (voice)',2,38),(225565,29222,'Jason',2,0),(225565,996701,'Daniel',2,1),(225565,135651,'Mikey',2,2),(225565,17606,'Ellie Andrews',1,3),(225565,1110405,'Chelsea',1,4),(225565,51989,'Vera Walker',1,5),(225565,56542,'Alana',1,6),(225565,6181,'Fred',2,7),(225565,1266054,'Sophie',1,8),(225565,71815,'Christy',1,9),(225565,109740,'Amanda Silverman',1,10),(225565,10449,'Mrs. Rose',1,11),(225565,34845,'Sharon',1,12),(225565,1346698,'Diego',0,13),(225565,60120,'Ellie\'s Mom',1,14),(225565,158230,'Ellie\'s Dad',2,15),(225565,60205,'Chelsea\'s Dad',2,16),(225565,12932,'Chelsea\'s Mom',1,17),(225565,1152008,'Preppy Guy',0,18),(225565,1333845,'Girl at the Bar (uncredited)',1,19),(385736,932967,'Marlon',2,0),(385736,1451543,'Flaco',2,1),(385736,1310670,'Rico',2,2),(385736,1605499,'Girl at School',1,3),(385736,82163,'Albert',2,4),(385736,1586110,'Brandon',0,5),(385736,1502294,'The Astronaut',0,6),(385736,1605500,'Ryan',0,7),(385736,1605501,'Shoe Store Mom',0,8),(385736,1605502,'Lila',0,9),(385736,1502271,'House Party Girl 1',0,10),(42819,132548,'Young Adam',0,0),(42819,132549,'Adam\'s Mother',0,1),(42819,41309,'Omar Razaghi',2,2),(42819,5644,'Deirdre Rothemund',1,3),(42819,4273,'Arden Langdon',1,4),(42819,350,'Caroline Gund',1,4),(42819,132551,'Alma',0,5),(42819,132552,'Old Gaucho',0,6),(42819,4173,'Adam Gund',2,7),(42819,46853,'Mrs. Van Euwen',1,8),(42819,9195,'Pete',0,9),(209263,15886,'Eva',1,0),(209263,2229,'Marianne',1,1),(209263,4691,'Albert',2,2),(209263,3051,'Sarah',1,3),(209263,170820,'Will',2,4),(209263,357551,'Debbie',1,5),(209263,113224,'Hillary',1,6),(209263,149334,'Fran',1,7),(209263,18271,'Peter',2,8),(209263,933271,'Tess',1,9),(209263,579064,'Hal (Massage Client)',2,10),(209263,558917,'Ellen',0,12),(209263,53589,'Jason',0,13),(209263,1142629,'Chloe',1,14),(209263,106934,'Cathy',0,15),(209263,200237,'Cynthia - Massage Client',1,16),(209263,80592,'Female Hiker #1',1,17),(209263,1567662,'Grace',0,18),(209263,1567663,'Brandon',0,19),(209263,1388471,'Chris',0,20),(37735,54693,'Olive Penderghast',1,0),(37735,2283,'Dill Penderghast',2,1),(37735,29220,'Marianne',1,2),(37735,55086,'Micah',2,3),(37735,14406,'Mrs. Griffith',1,4),(37735,56890,'Principal Gibbons',2,5),(37735,110927,'Woodchuck Todd',2,6),(37735,1276,'Rosemary Penderghast',1,7),(37735,59283,'Brandon',2,8),(37735,19159,'Mr. Griffith',2,9),(37735,90033,'Rhiannon',1,10),(37735,118420,'Eighth Grade Olive',1,11),(37735,95038,'Melanie',1,12),(37735,31714,'Marianne\'s Mom',1,13),(37735,71725,'Anson',2,14),(37735,125047,'Gossipy Girl',1,15),(37735,1519697,'Nina',0,16),(37735,991886,'Jezebel',1,17),(37735,1202550,'Harlot',0,18),(37735,1395904,'Mrs. Abernathy',1,19),(37735,1446841,'Micah\'s Grandmother',1,20),(37735,150852,'Evan',2,21),(37735,1189225,'Kennedy Peters-Booth',2,22),(37735,1116893,'Chip',0,23),(37735,1649833,'Zia',2,24),(37735,58039,'Micah\'s Mom',1,25),(37735,170272,'Micah\'s Grandfather',2,26),(37735,1323239,'Receptionist',1,27),(37735,41549,'Doctor',2,28),(37735,76099,'Pre-Teen Kid',2,29),(37735,1471959,'Josh Wisniewski',2,30),(37735,1652368,'Kurt',2,31),(37735,57633,'Quiznos Guy',0,32),(37735,1652372,'Spectator In The Gym',0,33),(37735,1642097,'Server',1,34),(37735,1652380,'Singing Server',0,35),(37735,1598854,'Singing Server',0,36),(37735,1196448,'Singing Server',2,37),(37735,1652383,'Singing Server',1,38),(37735,1652384,'Singing Server',2,39),(37735,1652386,'Clerk',0,40),(37735,990158,'Boy',2,41),(37735,1652392,'Pontius',0,42),(37735,1652393,'Judas',0,43),(37735,1652394,'Mortimer',0,44),(37735,1406627,'Eric Ling (uncredited)',0,45),(37735,1652397,'High School Student (uncredited)',2,46),(37735,1652398,'Extra (uncredited)',0,47),(37735,1652399,'Mr. Gleason (uncredited)',0,48),(37735,191377,'Man Watching Skateboarders (uncredited)',2,49),(37735,1265835,'Nerd (uncredited)',1,50),(37735,1652400,'Drama Student (uncredited)',0,51),(37735,1652401,'Mean Girl (uncredited)',0,52),(37735,1296637,'Stoner (uncredited)',0,53),(37735,1652395,'Gossip Girl Jogger (uncredited)',0,54),(59930,18291,'Drew Tate',2,0),(59930,3977,'Kenny Tate',2,1),(59930,80622,'Brenda Tate',1,2),(59930,114674,'Spencer Phillips',2,3),(59930,100653,'Francis Phillips',1,4),(59930,88186,'Heather Lee',1,5),(59930,9779,'Harold Lee',2,6),(59930,9575,'Lauren Kelly',1,7),(59930,84077,'Jr. Phillips',2,8),(51588,145836,'Nova Prescott',1,0),(51588,234984,'Jesse Richter',2,1),(51588,85139,'Lloyd Taylor',0,2),(51588,62054,'Kitty Prescott',1,3),(51588,114372,'Simone Daniels',1,4),(51588,8856,'Tyler Barso',2,5),(51588,1223160,'Mei Kwan',0,6),(51588,73616,'Justin Wexler',2,7),(51588,1369368,'Lucas Aman',0,8),(51588,37089,'Corey Doyle',2,9),(51588,999346,'Jordan Lundley',0,10),(51588,1864990,'Ali Gomez',0,11),(51588,95137,'Brandon Roberts',2,12),(51588,78436,'Tess Torres',1,13),(51588,39113,'Sandra Richter',1,14),(51588,966542,'Charlie Richter',0,15),(51588,14329,'Frank Prescott',2,16),(51588,57167,'Principal Dunnan',2,17),(51588,149486,'Rhoda Wainwright',1,18),(51588,1864991,'Janel Lundley',0,19),(51588,970561,'Rolo',0,20),(51588,1451543,'Max',2,21),(291270,11207,'Michael Stone (voice)',2,0),(291270,10431,'Lisa Hesselman (voice)',1,1),(291270,119232,'Everyone Else (voice)',2,2),(44009,388,'Tom',2,0),(44009,72305,'Mary',1,1),(44009,53367,'Gerri',1,2),(44009,65451,'Joe',2,3),(44009,17476,'Ken',2,4),(44009,11180,'Ronnie',2,5),(44009,30328,'Carl',2,6),(44009,65449,'Katie',1,7),(44009,145694,'Tanya',1,8),(44009,26854,'Jack',2,9),(44009,11356,'Janet',1,10),(44009,2258,'Tom\'s Colleague',2,11),(44009,192838,'Mourner',1,12),(44009,202032,'Drill Worker',2,13),(43923,132712,'Craig Gilner',2,0),(43923,34847,'Noelle',1,1),(43923,58225,'Bobby',2,2),(43923,19492,'Dr. Eden Minerva',1,3),(43923,37153,'Nia',1,4),(43923,1142720,'Aaron Fitzcarraldo',2,5),(43923,16858,'Lynn Gilner',1,6),(43923,84407,'George Gilner',2,7),(43923,4654,'Smitty',2,8),(43923,20644,'Dr. Mahmoud',2,9),(43923,156739,'Muqtada',2,10),(43923,1232599,'Humble',0,11),(43923,94432,'Johnny',2,12),(43923,560118,'Alyssa Gilner',0,13),(43923,53067,'Nurse Harper',1,14),(43923,177022,'Monica',1,15),(43923,95604,'Solomon',2,16),(43923,1226310,'Mr. Reynolds',0,17),(43923,210386,'Joanie',1,18),(43923,1719597,'Little Craig',0,19),(43923,1719593,'Ronny',0,20),(43923,1719594,'Scuggs',0,21),(43923,20748,'Jimmy',0,22),(43923,81557,'Roger',2,23),(43923,1719595,'Becca',0,24),(43923,1719596,'Jennifer',0,25),(43923,1719598,'Neil',0,26),(43923,1719599,'Charlie',0,27),(46138,39658,'Rita O\'Grady',1,0),(46138,382,'Albert Passingham',2,1),(46138,8436,'Barbara Castle',1,2),(46138,11855,'Connie',1,3),(46138,1001716,'Welsh Union man',0,4),(46138,127558,'Brenda',1,5),(46138,74442,'Sandra',1,6),(46138,85073,'Monica',1,7),(46138,183191,'Eileen',1,8),(46138,1037613,'Brian',0,9),(46138,1670,'Eddie O\'Grady',2,10),(46138,81024,'George',2,11),(46138,191601,'Dave',2,12),(46138,62963,'Marge',0,13),(46138,1132749,'Martin',2,14),(46138,1125230,'Sharon O\'Grady',0,15),(46138,88392,'Graham O\'Grady',2,16),(46138,10882,'Lisa Hopkins',1,17),(46138,23776,'Trevor Innes',2,18),(46138,119783,'Gordon',2,19),(46138,26258,'Monty Taylor',2,20),(46138,11278,'Peter Hopkins',2,21),(46138,209631,'Undersecretary 1',0,22),(46138,221857,'Undersecretary 2',0,23),(46138,31028,'Robert Tooley',2,24),(46138,935234,'Rogers',0,25),(46138,26860,'Harold Wilson',2,26),(46138,7062,'Mr. Clarke',2,27),(46138,990278,'Hopkins\' Secretary',0,28),(46138,1230752,'Grant',0,29),(46138,1846123,'Arthur Horovitz',0,30),(46138,27641,'Bartholomew',2,31),(46138,1714,'Passing Van Driver',2,32),(46138,1299256,'Choir Mistress',0,33),(46138,59039,'Kronnfeld',2,34),(46138,1846142,'Reporter',0,35),(46138,56332,'Dagenham Striker',1,36),(46138,1846173,'Dagenham Striker',0,37),(46138,1846177,'Dagenham Striker',0,38),(45791,388,'Arthur Morrison',2,0),(45791,5472,'Blake Morrison',2,1),(45791,6238,'Kim Morrison',1,2),(45791,18022,'Kathy Morrison',1,3),(45791,115680,'Beaty',1,4),(45791,20054,'Sandra',1,5),(45791,42641,'Gillian',1,6),(45791,213394,'Blake Morrison (Teen)',2,7),(45791,133877,'Blake Morrison (Child)',2,8),(45791,36662,'Rachel',1,9),(45791,205671,'Steve',0,10),(45791,930650,'Josie',0,11),(45791,1818439,'Peter',0,12),(45791,138238,'Dr. Taggart',0,13),(45791,1228964,'Gillian (Teen)',0,14),(45791,1818435,'Gillian (Child)',0,15),(45791,1818437,'Josie (Teen)',0,16),(45791,1818436,'Josie (Child)',0,17),(45791,1818438,'Sophie Morrison',0,18),(110683,6450,'Lady Barbara Skelton',1,0),(110683,11857,'Hogarth',2,1),(110683,656,'Sir Ralph Skelton',2,2),(110683,27554,'Jerry Jackson',2,3),(110683,55643,'Lady Kingsclere',1,4),(110683,24701,'Kit Locksby',2,5),(110683,1222446,'Caroline',1,6),(110683,11135,'Aunt Agatha',1,7),(110683,1406458,'Moll Skelton',0,8),(110683,1228243,'Doll Skelton',0,9),(110683,101529,'Lord Kingsclere',2,10),(110683,2393,'Jackson\'s Girl',1,11),(110683,102008,'Lord Dolman',0,12),(110683,32067,'King Charles II',2,13),(110683,1627416,'Nell Gwynne',0,14),(110683,9139,'Servant at Inn',1,15),(198277,103,'Dan Mulligan',2,0),(198277,116,'Gretta James',1,1),(198277,217371,'Dave Kohl',2,2),(198277,130640,'Violet Mulligan',1,3),(198277,2229,'Miriam Hart',1,4),(198277,55466,'Steve',2,5),(198277,4239,'Saul',2,6),(198277,133451,'Jenny',1,8),(198277,121757,'Phillis',1,9),(198277,1398879,'Business Woman',0,10),(198277,172053,'Bartender',2,11),(198277,1423807,'Christian Father',2,12),(198277,1423810,'Barman',0,13),(198277,1423812,'Singer Songwriter 2',0,14),(198277,60635,'Marco',2,15),(198277,171795,'Jill',1,16),(198277,1423823,'Dave Fangirl',0,17),(198277,52602,'CEO',2,18),(198277,1341800,'Mim',0,19),(198277,1423829,'Malcolm',0,20),(198277,1423837,'Rachel',0,21),(198277,1423882,'Glen',0,22),(198277,1373351,'Ballet Teacher',0,23),(198277,1423884,'Butler',0,24),(198277,1216901,'Troublegum',0,25),(198277,1423901,'Troublegum Posse 1 - Rappa DD',0,26),(198277,1423906,'Troublegum Posse 2 - Phat Jimmy',0,27),(198277,54605,'Troublegum Crew Member - Benson',2,28),(198277,1423913,'Singing Basketball Player',0,29),(198277,157059,'Guy Shouting from Window',2,30),(198277,163545,'Lawyer',2,31),(198277,1216966,'Singer',1,32),(198277,1424191,'Keen',0,33),(198277,1424193,'Chris',0,34),(198277,1424201,'Zach',0,35),(198277,1375271,'Homeless Man',0,36),(198277,1424207,'Singer Songwriter 1',0,37),(198277,1424208,'On Camera Musician',0,38),(198277,1424209,'On Camera Musician',0,39),(198277,1424210,'On Camera Musician',0,40),(198277,1424211,'On Camera Musician',0,41),(198277,1424213,'On Camera Musician',0,42),(198277,1424214,'On Camera Musician',0,43),(198277,1424215,'On Camera Musician',0,44),(198277,1424216,'On Camera Musician',0,45),(198277,1424217,'On Camera Musician',0,46),(198277,1835618,'Young Girl',0,47),(153397,39459,'Eva Delectorskaya',1,0),(153397,17328,'Lucas Romer',2,1),(153397,70904,'Ruth Gilmartin',1,2),(153397,5658,'Baron Mansfield / Lucas Romer',2,3),(153397,44079,'Sally Gilmartin / Eva Delectorskaya',1,4),(153397,31663,'Karl-Heinz',2,5),(153397,1205278,'Kolia',0,6),(153397,40311,'Morris Devereux',2,7),(153397,216425,'Mason Harding',0,8),(153397,75066,'Angus Woolf',2,9),(153397,192846,'Gerald Laird',0,10),(153397,93848,'Club Servant',2,11),(153397,1220123,'Sean Gilmartin',2,12),(153397,27635,'Detective Sergeant Mason',2,13),(153397,1386160,'Man',2,14),(44147,2440,'Victor Maynard',2,0),(44147,5081,'Rose',1,1),(44147,10989,'Tony',2,2),(44147,4757,'Ferguson',2,3),(44147,20300,'Mother',1,4),(44147,7060,'Dixon',2,5),(44147,7053,'Mike',2,6),(44147,6969,'Fabian',2,7),(44147,139549,'Gerry Bailey',2,8),(44147,273759,'Jeweller',2,9),(44147,1222026,'Appraiser',0,10),(44147,40722,'Barney',0,11),(44147,1318418,'Waiter',0,12),(44147,1211540,'First Hotel Receptionist',0,13),(36597,2524,'Heathcliff',2,0),(36597,115679,'Cathy',1,1),(36597,7062,'Edgar Linton',2,2),(36597,115680,'Nelly',1,3),(36597,39659,'Hindley',0,4),(36597,115681,'Isabella',1,5),(36597,115682,'Catherine',1,6),(36597,30319,'Linton',2,7),(36597,115683,'Hareton',0,8),(36597,2449,'Mr. Earnshaw',2,9),(36597,102980,'Joseph',0,10),(36597,115684,'Frances',0,12),(36597,115685,'Vicar',0,13),(36597,73947,'Saul',2,14),(36597,85065,'Shepherd Lad',2,15),(36597,1234388,'Gypsy Horse Trader',0,17),(36597,1555747,'Young Heathcliff',0,18),(36597,1555749,'Young Cathy',0,19),(36597,1251138,'Young Hindley',0,20),(36597,109157,'Green',0,21),(251321,6161,'Nana Kunning',1,0),(251321,19119,'Jannia Ressmore',1,1),(251321,2037,'Ivan',2,2),(251321,140238,'Newman',0,3),(251321,1286655,'Young Ivan',0,4),(251321,19489,'Ike',2,6),(251321,1292552,'Gully',0,7),(251321,940446,'Old Woman',1,8),(251321,81494,'Airplane Receptionist',0,9),(251321,1292553,'Officer',0,10),(251321,566331,'Alice',1,11),(49081,56977,'Maurice Richard',2,0),(49081,79615,'Pu00e8re Norchet',2,1),(49081,38526,'Tony Bergeron',2,2),(49081,119479,'Frank Selke',2,3),(49081,543819,'Bob Dill',0,4),(49081,166529,'Tommy Gorman',2,5),(49081,145749,'Camil Desroches',0,6),(49081,543820,'Milt Schmidt',0,7),(256687,15111,'Stillman',2,1),(256687,1126405,'Mechanic',2,2),(256687,58963,'Boyd',2,3),(256687,658,'Doc',2,4),(256687,1120,'Bishop',2,5),(256687,526727,'London',1,6),(256687,56385,'Cole',2,7),(256687,5887,'Carmen',1,8),(220488,1339,'Sophie',1,0),(220488,134184,'David Yan',0,1),(220488,113311,'Lucy',1,2),(220488,482101,'Lily',0,3),(220488,87948,'Cici',0,4),(220488,125769,'Charlize Wang',1,5),(220488,1279598,'Bo',0,6),(220488,1174366,'Mr. Gao',2,7),(220488,1364234,'Li Wan',0,8),(220488,1144355,'Sophie\'s boss',0,9),(220488,1183808,'Thomas',2,10),(220488,71051,'Weapons auction buyer',0,11),(220488,1050418,'Sophie\'s mother',0,12),(220488,1622028,'Sophie\'s father',0,13),(220488,127431,'Arms dealer',0,14),(220488,1110537,'Li Wan\'s henchman',0,15),(374461,776,'Henry Church',2,0),(374461,52018,'Charlotte \'Charlie\' Brooks',1,1),(374461,11317,'Marie Brooks',1,2),(374461,109438,'Owen',2,3),(374461,1192759,'Poppy',0,4),(374461,1193606,'Eddie Larson',0,5),(374461,1172108,'Izzy',1,6),(374461,1807167,'Young Charlie',0,7),(374461,1330999,'Young Poppy',1,8),(374461,1678709,'Young Owen',0,9),(374461,8175,'Frankie Twiggs',2,10),(182873,78110,'Danny',2,0),(182873,29406,'Victor',2,1),(182873,114760,'Molly',1,2),(182873,65303,'Pistol Pete',2,3),(182873,1252726,'Lizzie',1,4),(182873,177240,'Tony',2,5),(182873,145985,'Joey',2,6),(182873,1265253,'Biggsy',0,7),(182873,1265254,'Wedge',0,8),(182873,1265255,'Millwall Fighter',0,9),(182873,153442,'Millwall Fighter',2,10),(182873,1265256,'Millwall Fighter',0,11),(182873,1265257,'Jimmy',0,12),(182873,1018439,'Vicar',2,13),(182873,1265258,'Bookie',0,14),(182873,1265269,'Chelsea Fighter',0,15),(182873,1265270,'Spurs Hooligan',0,16),(182873,1265271,'Liverpool Fighter',0,17),(182873,116265,'Gilly',2,18),(182873,1265272,'Arsenal Leader',0,19),(182873,1265273,'G S E member',0,20),(182873,1265274,'West Ham Hooligan',0,21),(182873,591346,'Alec - The Debt Collector',2,22),(182873,1186080,'GSE Firm Member',0,23),(389425,23880,'Robert Sikes',2,0),(389425,4138,'William Porter',2,1),(389425,54649,'Detective James Peterson',2,2),(389425,113676,'Keri Green',1,3),(389425,76021,'Jerry Simon',2,4),(389425,7144,'Captain Connely',2,5),(389425,49832,'Mayor Randolf',2,6),(389425,785,'Romano',2,7),(389425,1439204,'Attorney Johnny Ito',0,8),(389425,146830,'Neil',0,9),(389425,1507080,'Carlos',0,10),(389425,237383,'X man',2,11),(283708,110,'Daru',2,1),(283708,89626,'Mohamed',2,2),(283708,1026733,'Slimane',0,3),(283708,41053,'Balducci',2,4),(283708,143389,'Lieutenant Le Tallec',2,5),(283708,1064454,'Francis',0,6),(283708,307837,'Rene',0,8),(283708,1462340,'Claude',0,9),(283708,1009111,'La prostituu00e9e',0,10),(283708,1385391,'Le soldat franu00e7ais',2,11),(283708,3822,'Seu00f1orita Martu00ednez',1,12),(36046,164630,'Benjamin Steed',2,0),(36046,101396,'Mary Ann Steed',1,1),(36046,33337,'Joshua Steed',2,2),(36046,1049596,'Nathan Steed',2,3),(36046,87431,'Lydia McBride',1,4),(36046,74539,'Matthew Steed',2,5),(36046,41218,'Martin Harris',2,6),(55903,81821,'Betty Fisher',1,0),(55903,24485,'Margot Fisher',1,1),(55903,48577,'Carole Novacki',1,2),(55903,286441,'Franu00e7ois Diembele',0,3),(55903,40305,'u00c9douard',2,4),(55903,38529,'Renu00e9 le Canadien',2,5),(55903,20442,'Dr. Ju00e9ru00f4me Castang',2,6),(55903,77195,'Martinaud',2,7),(55903,286453,'Jacqueline',1,8),(55903,224150,'Milo',0,9),(55903,64750,'Mr. Barsky',0,10),(55903,45449,'Alex\'s Mistress',0,11),(55903,71177,'Madame Barsky',0,12),(55903,286451,'Josu00e9 Novacki',0,13),(55903,286452,'Joseph Fisher',2,14),(55903,275962,'Fatou',0,15),(55903,56410,'Jean-Jean',2,16),(55903,41035,'Alex Basato',2,17),(103903,382,'Percy \'Smudge\' Smith',2,0),(103903,14464,'Shirley Baxter',1,1),(103903,26854,'Threads',2,2),(103903,9831,'Jago',2,3),(103903,1160071,'Mark \'Bax\' Baxter',0,4),(103903,1197058,'Katie',0,5),(103903,47754,'Martha',1,6),(103903,27393,'Alfie Hobnails',2,7),(103903,142289,'Mickey',2,8),(103903,71282,'Natalie Cheam',0,9),(103903,63071,'Johnny Gossamer',2,10),(103903,59076,'Sefton Wallace',2,11),(103903,1035333,'Erica',0,12),(103903,118035,'Becka',1,13),(103903,1000998,'Cheryl',0,14),(103903,78064,'Sam The Soleman',2,15),(103903,1464254,'Gutsy George',0,16),(103903,571730,'Harry \'The Horse\' Fenton',0,17),(103903,553274,'Lil',0,18),(103903,1223216,'George',0,19),(103903,32810,'Phil',0,20),(103903,195634,'Linton',2,21),(103903,1374796,'Lifeguard',0,22),(103903,1220510,'Vicar',0,23),(103903,75258,'Ted',0,24),(103903,1502467,'Bookie',0,25),(73873,515,'Albert Nobbs',1,0),(73873,76070,'Helen Dawes',1,1),(73873,27428,'Joe Mackins',2,2),(73873,83437,'Margaret Baker',1,4),(73873,2039,'Dr. Holloran',2,5),(73873,1244,'Viscount Yarrell',2,6),(73873,17022,'Emmy',1,7),(73873,33394,'Mary',1,8),(73873,20999,'Sean Casey',2,9),(73873,1266585,'Patrick',2,10),(73873,210473,'Mrs. Moore',0,11),(73873,73288,'Mr. Moore',2,12),(73873,17787,'Mrs. Cavendish',1,13),(73873,33399,'Cathleen',0,14),(73873,1450262,'Chocolate Shop Waitress',0,15),(73873,47627,'Hubert Page',1,16),(312113,12801,'Timi',2,0),(312113,86468,'Kate Summers',1,1),(312113,2295,'Tom Hudson',2,2),(312113,326,'Kristy',1,3),(312113,8256,'Barbara',1,4),(312113,4246,'Timi Gabriel',2,5),(312113,2535,'Angela',1,6),(312113,117598,'Bellamy',2,7),(312113,1400268,'Judge',0,8),(312113,1400270,'Hostage',1,9),(312113,1400271,'Gideon White',0,10),(312113,1292048,'Ebiere Perema',0,11),(312113,1400272,'Chief Kuku',0,12),(312113,1400273,'Hostage',0,13),(312113,1292049,'Eloho',0,14),(312113,1400274,'Tom',0,15),(312113,1400275,'Soldier (as Jay Brooks)',0,16),(312113,1400276,'Jenifer Brougham',0,17),(312113,1292060,'Jackson',0,18),(312113,214839,'Opuwei',2,19),(45650,109441,'Dane Thompson',2,0),(45650,58754,'Julie Campbell',1,1),(45650,18052,'Lucas Thompson',2,2),(45650,6905,'Creepy Carl',1,3),(45650,10399,'Susan',1,4),(45650,496731,'Tiffany',1,5),(45650,89885,'Annie Smith',2,6),(45650,43299,'Monster Dad',2,7),(45650,1081488,'Normal Dad',0,8),(45650,168546,'Travis',0,9),(45650,172994,'Young Cop',2,10),(45650,102441,'Pizza Delivery Guy',2,11),(45650,232501,'Adam',2,12),(301365,18050,'Jesse',1,0),(301365,1327613,'Dean',2,1),(301365,20089,'Ruby',1,2),(301365,234982,'Gigi',1,3),(301365,1036288,'Sarah',1,4),(301365,6384,'Hank',2,5),(301365,110014,'Jan',1,6),(301365,6365,'Jack',2,7),(301365,4941,'Fashion Designer',2,8),(301365,82945,'Mikey',2,9),(301365,1440698,'Casting Director',1,10),(301365,1121635,'Dresser',1,11),(301365,1619777,'Flirty Model #1',1,12),(301365,1684327,'Casting Assistant',0,13),(301365,235782,'Waitress',1,14),(301365,1648701,'Embalmed Female Corpse',1,15),(326284,15111,'Deacon',2,0),(326284,33343,'George',2,1),(326284,60652,'Goran',2,2),(326284,41757,'Kung',2,3),(326284,162367,'Liam',0,4),(326284,1480957,'Ana',0,5),(326284,1115351,'Father Gabriel',0,6),(326284,52905,'Boris',2,7),(77930,38673,'Mike \'Magic Mike\' Martingano',2,0),(77930,10297,'Dallas',2,1),(77930,61363,'Adam',2,2),(77930,582816,'Brooke',1,3),(77930,81364,'Joanna',1,4),(77930,20580,'Big Dick Richie',2,5),(77930,66743,'Ken',2,6),(77930,162849,'Sal',2,7),(77930,1074867,'Paul',0,8),(77930,49706,'Tito',2,9),(77930,135352,'Tarzan',2,10),(77930,86498,'Tobias',2,11),(77930,98522,'Nora',1,12),(77930,1447863,'Ryan',0,13),(77930,1217934,'Banker',1,14),(77930,83352,'Ken\'s Wife',1,15),(77930,1784579,'Girl in Line',1,16),(77930,1368887,'George',0,17),(77930,1784589,'Portia',1,18),(77930,1237404,'Ruby',0,19),(77930,177918,'Birthday Girl',1,20),(77930,1476058,'Liz',1,21),(77930,1784602,'Obnoxious Bar Guy',0,22),(77930,101687,'Havana Nights Girl',1,23),(77930,1784603,'Blonde Bachelorette',1,24),(77930,1784606,'Silhouette Girl',1,25),(77930,1784609,'Cowboy Lap Dance Girl',1,26),(77930,1093123,'Pony Girl',1,27),(77930,1348613,'Dr. Love Girl',1,28),(77930,1784613,'Tarzan\'s Girl',1,29),(77930,983999,'Boxing Girl',1,30),(77930,1784615,'Girl Richie Lifts',1,31),(77930,1784617,'Tito\'s Girl',1,32),(77930,1069630,'Kim',1,33),(77930,1784623,'Sorority Girl',1,34),(77930,1784630,'Kim\'s Boyfriend',0,35),(77930,1784631,'Thug #1',0,36),(77930,1784633,'Thug #2',0,37),(77930,1267277,'Raver Girl',1,38),(77930,1550822,'Club Goer',0,39),(77930,1304845,'Street Pedestrian',0,40),(77930,1777793,'Sexy Cougar',1,41),(77930,1784637,'Strip Club Patron',1,42),(77930,1633358,'Go Go Dancer',1,43),(77930,1488450,'Sorority Girl',1,44),(77930,84894,'Dallas\' Girl',1,45),(77930,1784644,'Carla / Bartender',1,46),(77930,1784645,'Club Goer',1,47),(77930,1700817,'Club Girl',1,48),(77930,1784646,'Hurricane House Guest',1,49),(77930,1754141,'Club Goer',1,50),(77930,1302504,'Club Goer',1,51),(77930,1784647,'Frat Boy',0,52),(77930,1319055,'Strip Club Patron',0,53),(77930,1784648,'Club Goer',0,54),(77930,1394344,'Eric',0,55),(77930,1784649,'Waitress',1,56),(77930,1784650,'Club Goer',1,57),(77930,1784651,'Strip Tease Girl',1,58),(77930,1784652,'Club Goer / Pedestrian',0,59),(77930,1784653,'Bar Guy',0,60),(77930,1784654,'Beach Girl',1,61),(77930,1190066,'Sarah',1,62),(77930,1375147,'Sorority Girl',1,63),(77930,1784658,'Club Goer',1,64),(77930,1460212,'Club Goer',0,65),(77930,1010349,'Dallas\' Flirt',1,66),(77930,1784659,'Strip Club Patron',1,67),(77930,1784660,'Restaurant Patron',1,68),(77930,1784661,'Beach Guy',0,69),(77930,1262695,'Club Goer',0,70),(77930,1784662,'Club Goer',1,71),(77930,1784672,'Club Goer',1,72),(77930,1186515,'Party Girl',1,73),(77930,1754282,'Restaurant Patron',1,74),(77930,1784676,'Restaurant Patron',2,75),(77930,1743097,'Dancing Girl',1,76),(77930,1784678,'Restaurant Patron',0,77),(77930,1784679,'Party Girl',0,78),(77930,1784680,'Go-Go Dancer',1,79),(77930,1784681,'Penelope',1,80),(77930,1784682,'Beach Party Girl',1,81),(77930,1784683,'Party Girl',1,82),(77930,1309904,'Beach Guy',0,83),(57119,52851,'Sabrina Watson',1,0),(57119,31171,'Amy',1,1),(57119,22122,'Blythe',1,2),(57119,51944,'',2,3),(57119,9780,'',1,4),(57119,10964,'Jason Taylor',2,5),(57119,18284,'Mrs. Taylor',1,6),(57119,74610,'Shonda',1,7),(57119,40276,'Chef',2,8),(57119,62122,'Sebastian',0,9),(57119,11827,'Malcolm',2,10),(79316,17270,'Samantha McCall',1,0),(79316,70303,'Zach McCall',2,1),(79316,36221,'Father Thomas',2,2),(79316,96018,'Mason',2,3),(79316,92877,'Tina',1,4),(79316,1224238,'Emily',1,5),(79316,76021,'Keith',2,6),(79316,1265767,'Steve',2,7),(79316,1285380,'Cab Driver',0,8),(79316,485005,'Suzie',1,9),(79316,1271773,'Ken',2,10),(79316,1027298,'Sally',1,11),(79316,1285382,'Natalie',0,12),(79316,205287,'Stanley',0,13),(79316,1631582,'Mother in Market',1,14),(79316,1686957,'Karen',1,15),(308639,587506,'Malcolm Adekanbi',0,0),(308639,1253355,'Cassandra \'Diggy\' Andrews',1,1),(308639,1291350,'James \'Jib\' Caldones',2,2),(308639,37153,'Nakia',1,3),(308639,1395182,'Lily Jacoby',0,4),(308639,119870,'Councilman Blackmon',2,5),(308639,1521445,'Dom',0,6),(308639,521564,'Will',0,7),(308639,1423441,'Jaleel',0,8),(308639,2178,'Narrator',2,9),(308639,1200864,'Bug',2,10),(308639,55314,'Lisa Hayes',1,11),(308639,40377,'Austin Jacoby',2,12),(308639,78046,'Mindy',1,13),(308639,180527,'Marta',1,14),(308639,1381706,'Short order cook',0,15),(308639,131772,'The Voice',0,16),(308639,1317566,'Lance',2,17),(308639,93538,'Stacey',2,18),(308639,1224954,'De\'Andre',0,19),(77156,41231,'Talmudge',2,0),(77156,84327,'The Mortician',1,1),(77156,1024412,'Miss Sibiler',1,2),(77156,19484,'Growski',2,3),(77156,61150,'Detective Malcolm Toliver',2,4),(77156,8545,'Inspector McDowal',2,5),(77156,40155,'Cantwell',0,6),(44718,1532,'Frank Quinn',2,0),(44718,5606,'Mattie Darrow',1,1),(44718,3087,'Felix Bush',2,2),(44718,155,'Buddy',2,3),(44718,8854,'Rev. Charlie Jackson',2,4),(44718,29512,'Rev. Gus Horton',2,5),(44718,65167,'Carl',2,6),(44718,215056,'Tom',2,7),(241771,1216606,'Noni Jean',1,0),(241771,77277,'Kazaam Kaz Nicol',2,1),(241771,6613,'Macy Jean',1,2),(241771,1276759,'Kid Culprit',2,3),(241771,2047,'Captain Nicol',2,4),(241771,78062,'Trey',2,5),(241771,2137,'Jesse Soria',2,6),(241771,1192492,'J Stanley',1,7),(241771,1673994,'Noni (age 10)',1,8),(241771,45418,'Quentin',2,9),(241771,123791,'April',1,10),(241771,1427673,'Jonas',2,11),(241771,154575,'Liam King',2,12),(241771,1225892,'Felicia',1,13),(241771,1393199,'Herself',1,14),(241771,130689,'Billboard Awards Stage Manager',2,15),(241771,1674009,'Male Fan',2,16),(241771,144675,'Steve Sams',2,17),(241771,1238164,'Officer Aforo',2,18),(241771,63029,'LAPD Cop #2',0,19),(241771,66623,'Shai',1,20),(241771,1241263,'Emcee',2,21),(241771,557794,'Choreographer Gibson',1,22),(241771,154677,'Carl',2,23),(241771,157096,'Donia',0,24),(241771,55965,'Pastor Marks',2,25),(241771,60488,'Photographer',2,26),(241771,1247036,'Herself',1,27),(241771,1039796,'Spanish Karaoke Guy',2,28),(241771,150062,'Town Car Driver',1,29),(241771,195547,'Worthy Farm Stage Manager',2,30),(241771,1519605,'Man at Mexico Market',2,31),(241771,55270,'Reverend Brown',2,32),(241771,64242,'Vendor',1,33),(241771,1674131,'Herself',1,34),(241771,1674136,'Himself',2,35),(241771,122099,'Herself',1,36),(241771,1490113,'Himself',2,37),(241771,1395060,'Himself',0,38),(241771,1229974,'Herself',1,39),(241771,1674157,'Himself',2,40),(241771,992507,'Himself',2,41),(57825,87773,'Lalita Bakshi',1,0),(57825,26291,'William Darcy',2,1),(57825,5471,'Balraj',2,2),(57825,19154,'Johnny Wickham',2,3),(57825,30430,'Kiran',1,4),(57825,19131,'Catherine Darcy',1,5),(57825,72745,'Manorama Bakshi',1,6),(57825,6217,'Chaman Bakshi',2,7),(57825,87849,'Jaya Bakshi',1,8),(57825,78920,'Chandra Lamba',1,9),(57825,58776,'Mr. Kohli',2,10),(57825,1052084,'Maya Bakshi',0,11),(57825,1052085,'Lakhi Bakshi',0,12),(57825,6279,'Georgina \'Georgie\' Darcy',1,13),(57825,57172,'Herself',0,14),(39053,4764,'John',2,0),(39053,21007,'Cyrus',2,1),(39053,3141,'Molly',1,2),(39053,2229,'Jamie',1,3),(39053,59841,'Tim',2,4),(39053,1079024,'Ashley',0,5),(39053,14390,'Thermostat Girl',1,6),(39053,221944,'Pretty Girl',1,7),(39053,8899,'Pastor',1,8),(39053,40275,'Roger',2,9),(39053,45398,'Rusty',2,10),(104896,5251,'Jehan',2,0),(104896,1226764,'Nello',0,1),(104896,10135,'Young Nello',2,2),(104896,10127,'Michel',2,3),(104896,36169,'Anna',1,4),(104896,14888,'William',2,5),(104896,113910,'Cogez',2,6),(104896,47525,'Stephens',2,7),(104896,1188924,'Aloise',0,8),(71859,4764,'Franklin',2,0),(71859,3063,'Eva Khatchadourian',1,1),(71859,132157,'Kevin, Teenager',2,2),(71859,6751,'Wanda',1,3),(71859,1431169,'Kevin, 6-8 Years',0,4),(71859,1614414,'Kevin, Toddler',0,5),(71859,1074512,'Celia',1,6),(71859,172150,'Colin',0,7),(71859,1473442,'Soweto',0,8),(71859,19469,'Smash Lady',1,9),(226354,37168,'David Richmond',2,0),(226354,145116,'Emily Barstow',0,1),(226354,72305,'Bea Haddington',1,2),(226354,80112,'Edward Haddington',2,3),(226354,2467,'Herbert Hopewell',2,4),(226354,930058,'Eleanor Hopewell',0,5),(226354,183201,'Lady Camdon',1,6),(226354,10727,'William Barstow',2,7),(226354,1255296,'Charlie',0,8),(226354,1270481,'Orphan Sarah',0,9),(48620,17832,'Cathy Rush',1,0),(48620,9560,'Mother St. John',1,1),(48620,6407,'Sister Sunday',1,2),(48620,25934,'Ed Rush',2,3),(48620,118941,'',1,4),(37080,3489,'Elizabeth',1,0),(37080,2231,'Paul',2,1),(37080,516,'Karen',1,2),(37080,54708,'Tracy',1,3),(37080,11703,'Lucy',1,4),(37080,52,'Tom',2,5),(37080,15851,'Dr. Stone',1,6),(37080,52018,'Violet',1,7),(37080,46772,'Steven',2,8),(37080,4996,'Maria',1,9),(37080,33181,'Paco',2,10),(37080,1956,'Sister Joanne',1,11),(37080,3978,'Ada',1,12),(37080,64908,'Leticia',0,14),(37080,12543,'Nora',1,15),(37080,116774,'Joseph',2,16),(37080,33197,'Julian',2,17),(37080,61010,'Carol',1,18),(37080,53056,'Ray',1,19),(37080,52932,'Melissa',1,20),(37080,1102,'Sofia',1,22),(39210,10822,'Johnny Marco',2,0),(39210,56586,'Sammy',2,1),(39210,147721,'Party Girl #1',1,2),(39210,147722,'Party Girl #2',0,3),(39210,142375,'Party Girl #3',0,4),(39210,147723,'Bambi',0,5),(39210,147724,'Cindy',0,6),(39210,147725,'Chateau Patio Waiter',0,7),(39210,147726,'Patio Girl',0,8),(39210,42158,'Blonde in Mercedes',1,9),(39210,147727,'Vampire Model',1,10),(39210,147728,'Vampire Model',0,11),(39210,147729,'Vampire Model',0,12),(39210,18050,'Cleo',1,13),(39210,22072,'Layla',1,14),(39210,210050,'Hotel Room Neighbor',1,15),(39210,475512,'Claire',1,16),(39210,11705,'Rebecca',1,17),(39210,51975,'Naked Blonde with Sailor Cap',1,18),(39210,1121,'Celebrity',2,19),(39210,71375,'Actor at Party',2,20),(44835,24045,'Hesher',2,0),(44835,524,'Nicole',1,1),(44835,11678,'Paul Forney',2,2),(44835,86170,'Coleen Bolder',1,3),(44835,1479,'Funeral Director',2,4),(44835,6721,'Madeleine Forney',1,5),(44835,4693,'Mr. Elsberry',2,6),(44835,3911,'Larry',2,7),(44835,202949,'T.J.',2,8),(44835,1230008,'Mom',1,9),(44835,1658095,'Meryl',1,10),(192134,9642,'Dom Hemingway',2,0),(192134,76961,'Mr. Fontaine',2,1),(192134,20766,'Dickie Black',2,2),(192134,1186080,'Nightclubber',0,3),(192134,1223786,'Evelyn',1,4),(192134,62105,'Melody',1,5),(192134,1255247,'Paolina',1,6),(192134,1106755,'Actress',0,7),(192134,1297114,'Pedestrian',0,8),(192134,1080031,'Hostess',0,9),(192134,221980,'Hugh',2,10),(192134,1546657,'Dom\'s Prison Buddy',0,11),(306745,1231,'Laurel Hester',1,1),(306745,27578,'Stacie Andree',1,2),(306745,4495,'Steven Goldstein',2,3),(306745,335,'Dane Wells',2,4),(306745,56680,'Todd Belkin',2,5),(306745,2694,'Bryan Kelder',2,6),(306745,63232,'Carol Andree',1,7),(306745,118937,'Pat Gerry',2,8),(306745,33658,'Reynolds',2,9),(306745,205720,'Margaret',1,10),(306745,77338,'Bill Johnson',2,11),(306745,1218282,'Dan Wickery',2,12),(306745,155081,'Jake',0,13),(306745,111016,'Quesada',2,14),(306745,176628,'Toohey',2,15),(306745,6573,'Peter Santucci',2,16),(306745,61607,'Don Bennett',2,17),(306745,1027374,'Lynda Hester',0,18),(306745,206352,'Hannah',1,19),(306745,1607561,'Maya Kelder',1,20),(306745,1643669,'Cat',1,21),(306745,101543,'Jeeter',2,22),(306745,1643672,'Stacie\'s Team Member',1,23),(306745,928395,'Christy Miller',1,24),(306745,108922,'Town Clerk',1,25),(306745,1178376,'Harriet',1,26),(306745,1643675,'Security Guard',2,27),(306745,157176,'Estelle the Realtor',1,28),(306745,1636654,'First Thug',2,29),(47088,8945,'Henry Harrison',2,0),(47088,17142,'Louis Ives',2,1),(47088,3897,'Mary Powell',1,2),(47088,4764,'Gershon Gruen',2,3),(47088,6486,'Aresh',2,4),(47088,78788,'Sandra',1,5),(47088,38160,'Katherine Hart',1,6),(47088,1989,'Meredith Lagerfeld',1,7),(47088,59872,'George',2,8),(47088,142293,'Tanya',1,9),(47088,41293,'Vivian Cudlip',1,10),(47088,8792,'Lois Huber',1,11),(47088,142294,'Otto Bellman',2,12),(47088,5385,'Pushy Woman',1,13),(47088,5395,'Brad',0,14),(47088,1237128,'Wine Pourer',1,15),(110402,99269,'Don Rumata',0,0),(110402,143667,'Don Pampa',2,1),(110402,1272797,'Ari',0,2),(110402,1337024,'Don Reba',0,3),(110402,579743,'Arata',0,4),(110402,1271304,'Budakh',0,5),(110402,86853,'Gur',0,6),(110402,1265313,'Palach',0,7),(277519,78875,'William Luk',2,0),(277519,83820,'Supt Wong',2,1),(277519,1098628,'Angel Leung',0,2),(277519,1334851,'Tam Mei-Lei',0,3),(277519,64896,'Malcolm Wu',0,4),(277519,1147123,'Law Tak-Wing',0,5),(277519,987587,'On Tat',0,6),(277519,125105,'Joe Ma',0,7),(277519,72732,'Yu Hung-Sing',2,8),(277519,127436,'Tsui Wai-King',0,9),(277519,116423,'Private detective',0,10),(277519,140478,'Ho Tak-Wing',0,11),(277519,586484,'Stephen',0,12),(277519,1334855,'Siu Leung',0,13),(277519,1616884,'Pa',0,14),(277519,1616885,'Mrs. Luk',0,15),(277519,66122,'Edmond Wai',2,16),(277519,1334856,'Fan Law Pei Fong',0,17),(277519,130561,'Police Commissioner',0,18),(277519,1002925,'Chan Chi-Choi',2,19),(277519,1334857,'Kong Wai-Ling',0,20),(277519,1187926,'Kong Wai-Ling\'s mother',0,21),(277519,1616886,'Choi Tze-Bin',0,22),(78381,5576,'Hall Baltimore',2,0),(78381,6905,'Bobby LaGrange',1,1),(78381,21343,'Edgar Allan Poe',2,2),(78381,18050,'V.',1,3),(78381,12656,'Denise',1,4),(78381,19839,'Sam Malkin',2,5),(78381,71375,'Flamingo',2,6),(78381,167572,'Pastor Allan Floyd',0,7),(78381,161860,'Melvin',2,8),(78381,35027,'Carolyne',1,9),(78381,2887,'The narrator',0,10),(164372,126863,'Orm (voice)',0,0),(164372,583453,'Vospitatel (voice)',2,1),(164372,316308,'Tsvetochnitsa (voice)',1,2),(164372,549587,'Atamansha (voice)',1,3),(164372,1608593,'Doch atamanshi (voice) (as Liza Arzamasova)',1,5),(294512,1298886,'Runt',0,1),(294512,1178795,'Humphrey',2,2),(294512,1298888,'Claudette',0,4),(294512,191855,'Kate / Lilly / Stinky (voice)',1,6),(294512,571335,'Marcel / Paddy (voice)',2,7),(325373,122889,'Roman',2,1),(325373,61134,'Lucy',1,2),(325373,13950,'Bear (voice)',2,3),(325373,33343,'Lucy\'s Father',2,4),(325373,1879881,'American Hunter',0,5),(325373,190941,'Taxi Client',2,6),(325373,1879912,'Charlie',0,7),(325373,1879914,'Six year old kid',0,8),(325373,1879924,'Peter (store cashier)',0,9),(325373,1562524,'Emma',0,10),(325373,1879943,'Johanna',0,11),(325373,1879949,'Twin Otter Pilot',0,12),(325373,1109252,'Mouthwash buyer',0,13),(325373,1880007,'Coroner',0,14),(325373,1880011,'Johanna\'s Girlfriend',0,15),(325373,1880015,'Sheriff John Tovok',0,16),(325373,1880017,'Muslim Airline Agent',0,17),(325373,1880018,'Airport worker',0,18),(325373,1880021,'Lucy\'s taxi client',0,19),(334527,221018,'Noah',2,1),(334527,8891,'Eddie',2,2),(334527,10692,'Zach',2,3),(334527,17183,'Gerry',2,4),(334527,89375,'Agent Santos',2,5),(334527,984629,'Warren',2,6),(334527,10689,'Bryce',2,7),(334527,39391,'Marques',2,8),(334527,1205752,'Janie',0,9),(334527,1865496,'Agent Reichert',0,10),(334527,1097817,'Matthew',2,11),(334527,1865497,'Little Mike',0,12),(334527,191377,'Agent Colin',2,13),(334527,1865498,'Demetrius',0,14),(334527,1503893,'Orpheus',0,15),(334527,1865499,'Julian',0,16),(334527,1637374,'Pastor',0,17),(334527,1480221,'Private Investigator',2,18),(334527,1865502,'Paula',0,19),(334527,1465480,'Renaldo',0,20),(334527,1865503,'Kid-William Harrison',0,21),(334527,1536202,'Tyrone Flemmings',0,22),(334527,982098,'Mechanic',2,23),(334527,1865504,'Waitress',0,24),(82505,72129,'Elissa Cassidy',1,0),(82505,41883,'Ryan Jacobson',2,1),(82505,1951,'Sarah Cassidy',1,2),(82505,6575,'Bill Weaver',2,3),(82505,82819,'Tyler Reynolds',2,4),(82505,1133027,'Carrie Anne Jacobson',1,5),(82505,226833,'Jillian',1,6),(82505,239464,'Peggy Jones',1,7),(82505,43257,'Mary Jacobson',1,8),(82505,444420,'Ben Reynolds',2,9),(82505,1801753,'Caitlin',0,10),(82505,133254,'Dan Gifford',2,11),(82505,20696,'Dr. Kohler',0,12),(82505,1267117,'Jake',0,13),(82505,593154,'Jenny Gifford',0,14),(82505,168615,'Bonnie Reynolds',1,15),(82505,1585255,'Young Ryan Jacobson',0,16),(82505,1801758,'Young Carrie Anne Jacobson',0,17),(82505,224724,'Robbie',2,18),(82505,225418,'Zak',1,19),(82505,1196734,'John Jacobson',0,20),(82505,1375566,'Alice',0,21),(82505,116638,'Ray',0,22),(82505,80095,'Dr. Marianna Harrison',1,23),(46738,77498,'Nawal',1,0),(46738,84573,'Jeanne Marwan',1,1),(46738,88592,'Simon Marwan',0,2),(46738,38526,'le notaire Lebel',2,3),(46738,196737,'Notaire Maddad',2,4),(46738,970213,'Abou Tarek/Nihad',2,5),(46738,241930,'Professor Niv Cohen',0,6),(46738,592718,'Mu00e9decin a l\'urgence',0,7),(46738,1150158,'Bassem Marwan',0,8),(46738,218899,'Professeur Sau00efd Haidar',2,9),(46738,5007,'Mu00e9re',1,10),(46738,1320183,'Femme en Colu00e9re #1',0,11),(46738,446189,'Maika',0,12),(46738,110617,'Guide de Deressa',0,13),(46738,1298569,'Homme de Chamseddine #1',0,14),(46738,130022,'Chamseddine',2,15),(46738,1644492,'Barbier de la Milice / Officer Milice Chru00e9tienne',0,16),(46738,1644499,'Nihad (5ans)',0,17),(46738,1644509,'Wahab',0,18),(46738,1644517,'Nicolas Marwan',0,19),(46738,1644519,'Grand-mu00e9re de Nawal',0,20),(46738,1644520,'Sage-Femme',0,21),(46738,1579217,'Secru00e9taire Universitu00e9',0,22),(38970,121732,'Carlo Ristuccia',1,0),(38970,56654,'Giulia Ristuccia',1,1),(38970,28782,'Alessia',1,2),(38970,87010,'Paolo Ristuccia',2,3),(38970,121733,'Valentina Ristuccia',1,4),(38970,80503,'Alfredo',2,5),(38970,120157,'Stefano Manni',0,6),(38970,235048,'Elena',0,7),(38970,239482,'Riccardo',0,8),(38970,55913,'Louise',1,9),(38970,1324217,'Matt',0,10),(38970,234860,'Paolo Tucci',0,11),(38970,120130,'Ilaria',1,12),(38970,120182,'Anna Pezzi',0,13),(38970,120107,'Luigi',0,14),(38970,129625,'Andru00e9',0,15),(38970,1303032,'Lucia',0,16),(38970,1864309,'Martina',0,17),(38970,1864310,'Regista',0,18),(38970,1871239,'Professoressa di Paolo',0,19),(41009,2037,'Michael McCrea',2,0),(41009,2039,'Darren Perrier',2,1),(41009,388,'Jim McCrea',2,2),(41009,125237,'Shamie',2,3),(41009,125238,'Catherine',1,4),(41009,5168,'Voice of the Grim Reaper (voice)',2,5),(41009,66431,'Brenda',1,6),(41009,74056,'Jerome',2,7),(41009,73288,'Ivan',2,8),(41009,111837,'Orlando',0,9),(41009,84423,'Russ',2,10),(41009,93210,'Clifford',2,11),(41009,17017,'Mulligan',0,12),(41009,63362,'Clamper',0,13),(41009,1074080,'Lar - clamper 2',0,14),(41009,15498,'The Mull',2,15),(41009,147054,'Victor',2,16),(250546,82809,'Mia Form',1,0),(250546,94436,'John Form',2,1),(250546,34842,'Father Perez',2,2),(250546,1981,'Evelyn',1,3),(250546,188311,'Detective Clarkin',2,4),(250546,100567,'Sharon Higgins',0,5),(250546,1990,'Pete Higgins',0,6),(250546,117598,'Dr. Burgher',2,7),(250546,1352028,'Robert',2,8),(250546,1358561,'Nancy',0,9),(250546,1186841,'Debbie',1,10),(250546,101069,'Mary',1,11),(250546,1266847,'Candy Striper',1,12),(250546,1358563,'Thin Woman; Annabelle',1,13),(250546,1358564,'Thin Man',2,14),(250546,1358565,'Clerk',0,15),(250546,1358566,'Young Annabelle Higgins',0,16),(250546,1358567,'Parishoner',2,17),(250546,206791,'Fuller',0,18),(250546,1468165,'Neighbor',0,19),(250546,1468178,'Nurse',0,20),(250546,1228874,'Mother',1,21),(250546,73417,'Demonic Figure (uncredited)',2,22),(38415,120384,'Willie',2,0),(38415,118,'Father Benedictus',2,1),(38415,120825,'Rosie',1,2),(38415,57593,'Tadpole',2,3),(38415,120828,'Annie',0,4),(76025,17288,'Brandon Sullivan',2,0),(76025,36662,'Sissy Sullivan',1,1),(76025,18473,'David',2,2),(76025,87243,'Marianne',1,3),(76025,172150,'Steven',0,4),(76025,577478,'Samantha',1,5),(76025,1493242,'Carly',0,6),(76025,1030329,'Elizabeth',1,7),(76025,1819913,'Rachel',0,8),(76025,1819914,'Loren',0,9),(76025,1141384,'Woman on Subway Train',1,10),(76025,92728,'Hotel Lover',0,11),(76025,1181306,'Cocktail Waitress',0,12),(87499,222330,'Sarah',1,0),(87499,28846,'Benji',2,1),(87499,27578,'Izzy',1,2),(87499,20286,'Doc',2,3),(87499,79795,'Luca',2,4),(87499,83860,'Thumbs',0,5),(87499,1203789,'Tess',1,6),(87499,207467,'Eve',0,7),(87499,1276,'Sharon',1,8),(87499,50095,'Tim',2,9),(87499,15887,'Paige',1,10),(87499,141034,'Porty McCabe',2,11),(87499,41019,'Robert McCabe',2,12),(87499,565505,'Rory Huston',0,13),(87499,2977,'Richard Cannon',2,14),(62255,5538,'Arjan',2,0),(62255,7242,'Kereama',2,1),(62255,62753,'Bryce',2,2),(62255,235023,'Major Pritchard Carlysle',0,3),(62255,205427,'Saunders',0,4),(62255,235024,'Private Renwick',2,5),(62255,235025,'Levin',2,6),(62255,173451,'Posse Soldier Barker',0,7),(36739,2231,'Leeds',2,0),(36739,2975,'Dap',2,1),(36739,4808,'Julian',2,2),(36739,141823,'Jane Toussaint',1,3),(36739,15531,'Coach Odom',2,4),(36739,51546,'President McPherson',2,5),(36739,56183,'Cedar Cloud',2,6),(36739,196864,'Odrie McPherson',1,7),(36739,5502,'Grady',2,8),(36739,5281,'Darrell Half-Pint Dunlap',2,9),(36739,1219219,'Rachel Meadows',0,10),(36739,13602,'Lizzie Life',1,11),(36739,77353,'Dina',1,12),(36739,80611,'Paula',1,13),(36739,180711,'Virgil Cloyd',0,14),(36739,51864,'Perry',1,15),(36739,192272,'Jordan',2,16),(92591,70851,'Bernie Tiede',2,0),(92591,4090,'Marjorie Nugent',1,1),(92591,10297,'Danny Buck Davidson',2,2),(92591,111002,'Scrappy Holmes',0,3),(92591,995329,'Larry Brumley',0,4),(92591,308843,'Don Leggett',2,5),(92591,79008,'Cashier',1,6),(92591,995330,'Jerry',0,7),(92591,116433,'Mr. Estes',2,8),(92591,575674,'Truck Driver',2,9),(92591,1467970,'Lloyd Hornbuckle',0,10),(92591,464188,'Mrs. Estes',1,11),(92591,1467916,'Community Theater Group',0,12),(92591,1559749,'Community Theater Group',0,13),(92591,1041561,'Church Patron (uncredited)',0,14),(92591,131427,'Neighborhood Onlooker (uncredited)',0,15),(92591,1559744,'Robin (uncredited)',0,16),(92591,63214,'Townsperson',2,17),(57612,589,'Narrator (voice)',1,1),(57612,44079,'Narrator (voice)',1,2),(83686,51329,'Rory Jansen',2,0),(83686,8691,'Dora Jansen',1,1),(83686,16940,'The Old Man',0,2),(83686,6065,'Clay Hammond',2,3),(83686,59315,'Danielle',1,4),(83686,18999,'Mr. Jansen',2,5),(83686,10727,'Richard Ford',2,6),(83686,6752,'Joseph Cutler',2,7),(83686,25130,'Young Man',2,8),(83686,21731,'Nelson Wylie',2,9),(83686,453272,'Celia',1,10),(83686,12122,'Timothy Epstein',2,11),(83686,179274,'Dave Farber',0,12),(83686,11668,'Camy Rosen',0,13),(83686,550520,'Cynthia',0,14),(80304,23659,'Armando Alvarez',2,0),(80304,258,'Onza',2,1),(80304,589162,'Sonia',1,2),(80304,8688,'Raul',2,3),(80304,20190,'Esteban',2,4),(80304,17039,'Agent Parker',2,5),(80304,928347,'Esmeralda',0,6),(80304,94432,'Manuel',2,7),(80304,81957,'Hector',0,8),(80304,7372,'Miguel Ernesto Alvarez',2,9),(67913,2039,'Sergeant Gerry Boyle',2,0),(67913,1896,'FBI agent Wendell Everett',2,1),(67913,15498,'Francis Sheehy',2,2),(67913,2983,'Clive Cornell',2,3),(67913,549981,'Gabriela McBride',1,4),(67913,73287,'Liam O\'Leary',0,5),(67913,1041731,'Garda Aidan McBride',2,6),(67913,17019,'Photographer',2,7),(67913,115146,'Aoife O\'Carroll',1,8),(67913,1048644,'Sinead Mulligan',0,9),(67913,58068,'Eileen Boyle',1,10),(67913,93209,'Garda Inspector Gerry Stanton',0,11),(67913,87908,'Garda No. 1',0,12),(67913,1122014,'Bartley',0,13),(231576,5367,'Aidan Bloom',2,0),(231576,11661,'Sarah Bloom',1,1),(231576,125025,'Grace',1,2),(231576,992427,'Tucker',2,3),(231576,49002,'Anthony',2,4),(231576,25503,'Saul Bloom',2,5),(231576,45827,'Janine',1,6),(231576,5374,'Paul',2,7),(231576,87951,'Rabbi Rosenberg',2,8),(231576,54415,'Noah',2,9),(231576,1230842,'Audition Actor #1',2,10),(231576,51547,'Audition Actor #2',2,11),(231576,5377,'Audition Actor #3',2,12),(231576,1397412,'Terry',0,13),(231576,568531,'Rabbi Twersky',2,14),(231576,51381,'Jerry',2,15),(231576,1397448,'Jesse',0,16),(231576,59223,'Dr. Becker',2,17),(231576,35521,'Alan',2,18),(231576,1397453,'Janine\'s Friend',0,19),(231576,1397454,'Janine\'s Other Friend',0,20),(231576,1397455,'Female Supermarket Employee',1,21),(231576,129661,'Defense Attorney',2,22),(231576,945426,'Esperanza',1,23),(231576,1037108,'Juliet',1,24),(231576,1397469,'Kugel',0,25),(231576,1477443,'Reaper (uncredited)',2,26),(347764,1485124,'Venus',1,0),(347764,932030,'Christine',0,1),(347764,1485125,'Chanel',0,2),(347764,62491,'Brian',0,3),(347764,1322802,'Johnny',2,4),(347764,1573359,'Dr. Michael Brandt',0,5),(347764,1573360,'Jack',0,6),(347764,1059001,'Gossip Girl #1',0,7),(347764,1654871,'Gossip Girl #2',1,8),(59728,18992,'Steven Abbate',2,0),(59728,1533,'Maryanne Abbate',1,1),(59728,57136,'Jon Abbate',0,2),(59728,168679,'Coach Jim Grobe',0,4),(59728,1654126,'Joan Marie',1,5),(59728,2844,'Adam Abbate',0,6),(59728,550317,'Haley Scott',1,7),(59728,74131,'Lynn Garber',1,8),(59728,1654131,'Josh Gattis',2,9),(59728,1654133,'Luke Abbate',2,10),(59728,1654134,'Himself',2,11),(59728,1654135,'Rachel Abbate',1,12),(59728,1654136,'Steve Justice',2,13),(58882,109432,'Nina / Lily',1,0),(58882,63436,'Snow Flower / Sophia',1,1),(58882,6968,'Arthur',2,2),(58882,69033,'Sophia\'s Aunt',0,3),(58882,15170,'Butcher',2,4),(58882,21354,'China Everbright Bank CEO',2,5),(58882,1139048,'Anna',0,6),(58882,1624301,'Mr. Liao',0,7),(58882,1380450,'Mrs Liao',0,8),(58882,1380451,'Mr. Wei',0,9),(58882,1380452,'Mrs Wei',0,10),(58882,1344897,'Master Lu',0,11),(58882,555366,'Lady Lu',0,12),(58882,103648,'Yonggang',1,13),(58882,59293,'Sebastian',2,14),(58882,1408759,'TV news anchor',0,15),(58882,1624311,'Butcher\'s mother',0,16),(58882,1624312,'Lily\'s mother',0,17),(35944,34715,'James \'Jimmy\' Hands',2,0),(35944,11616,'Annabel',1,1),(35944,9191,'Cliff',2,2),(35944,290,'Graham Mortimer',2,3),(35944,2440,'Roger',2,4),(35944,1120,'Rudy',2,5),(35944,5319,'Perry',2,6),(35944,17476,'George Barratt',2,7),(35944,9139,'Amy',1,8),(35944,584994,'Darren',2,9),(35944,141537,'Mad Lenny',2,10),(35944,1452763,'Ward',0,11),(35944,63006,'Old Billy Morris',2,12),(35944,98104,'Paul Dean',0,13),(35944,990,'John Toombes',2,14),(35944,1637459,'Arthur',0,15),(35944,3549,'Kenny',2,16),(35944,1365470,'Julie Gumbell',0,17),(35944,1877383,'Ritchie Gumbell',0,18),(35944,1877385,'Wayne Wayne',0,19),(35944,1335212,'Phillips',0,20),(42222,6352,'Lillian Hellman',1,0),(42222,13333,'Julia',1,1),(42222,4765,'Dashiell Hammett',2,2),(42222,12150,'Johann',2,3),(42222,11066,'Alan',2,4),(42222,8492,'Dottie',1,5),(42222,5064,'Anne Marie',1,6),(42222,25166,'Woman Passenger',1,7),(42222,545336,'Girl Passenger',0,8),(42222,5589,'Sammy',2,9),(42222,115888,'Young Julia',1,10),(42222,46098,'Julia\'s Grandmother',1,11),(42222,1470687,'Young Lillian',1,12),(42222,39952,'Undertaker',2,13),(44260,116488,'Himself',2,0),(44260,556526,'Himself',0,1),(44260,556527,'Himself',0,2),(38940,16644,'Nick Gunar',2,0),(38940,42558,'Loki',1,1),(38940,14592,'Po',2,2),(38940,40275,'Ocker',2,3),(38940,4493,'Grace Lashield',1,4),(35689,19159,'Don McKay',2,0),(35689,1951,'Sonny',1,1),(35689,6832,'Marie',1,2),(35689,588,'Samuel',2,3),(35689,65827,'Otis Kent',2,4),(35689,8986,'Dr. Lance Pryce',2,5),(35689,3201,'Mel',2,6),(97614,8783,'Addison',2,0),(97614,59315,'Liza',1,1),(97614,56365,'Jay',2,2),(97614,207818,'State trooper',0,3),(97614,10823,'Chet',2,4),(97614,5606,'June',1,5),(97614,4515,'Becker',2,6),(97614,30617,'Travis',2,7),(97614,104897,'Mandy',1,8),(97614,51072,'Hanna',1,9),(97614,21292,'Bobby',2,10),(97614,207881,'Corrections Officer',2,11),(97614,564389,'Ronnie',2,12),(97614,1207358,'Young Boxer',0,13),(97614,198708,'Doris',0,14),(97614,1207359,'Deputy Brice',0,15),(97614,131335,'Deputy Bill',2,16),(97614,1159002,'Old Indian Hunter',2,17),(97614,1207360,'Suki',0,18),(97614,930327,'Hiro',0,19),(97614,1207361,'Ottawa Indian Mother',0,20),(97614,1207362,'Ottawa Indian Child',0,21),(97614,59618,'Tricia',1,22),(97614,1207363,'Marvin',0,23),(97614,1207364,'Amy',0,24),(97614,1207365,'Lisa',0,25),(97614,1207366,'Snowplow Driver',0,26),(97614,1207367,'Female Paramedic',0,27),(97614,1207368,'Lisa',0,28),(97614,179267,'Vicky Wienrick',0,29),(97614,1207369,'Theo',0,30),(97614,1207370,'State Trooper (uncredited)',0,31),(97614,1207371,'Harold (uncredited)',0,32),(97614,1207372,'Stund (uncredited)',2,33),(37206,935,'Maire',1,1),(37206,18992,'Alec',2,2),(37206,126667,'Tomu00e1s',2,3),(37206,126669,'Nancy',1,4),(37206,126670,'Katie',1,5),(37206,489467,'Seamus',2,6),(58626,9777,'Jonas Arbor',2,0),(58626,6614,'Allan Campbell',2,1),(58626,49326,'Detective Neil McKay',2,2),(58626,85214,'Sydney Campbell',1,3),(58626,222532,'Brian Felzner',2,4),(58626,211742,'Mike Dodd',2,5),(58626,20582,'Special Agent Drake Ford',2,6),(58626,228178,'Dom Estacado',2,7),(58626,228179,'Lieutenant Ben Harp',2,8),(58626,104645,'Detective Ray Lowery',2,9),(58626,228180,'Drew McAllister',2,10),(58626,39822,'The Boss',0,11),(58626,63424,'Detective Nic Vetter',2,12),(183894,6979,'Emma',0,0),(183894,5658,'Mr. Woodhouse',2,1),(183894,9012,'Mr. Knightley',2,2),(183894,141534,'Harriet Smith',1,3),(183894,80154,'Mr. Elton',2,4),(183894,221090,'Isabella Knightley',1,5),(183894,24613,'Henry Knightley',2,6),(183894,57449,'Anne Weston',1,7),(183894,42663,'Mr. Weston',2,8),(183894,120931,'Miss Bates',1,9),(183894,17283,'Frank Churchill',2,10),(183894,1220107,'Mrs. Woodhouse (1 episode, 2009)',0,11),(183894,557395,'Jane Fairfax',1,12),(183894,47625,'Augusta Elton',0,13),(183894,1495446,'Miss Campbell',0,14),(183894,1416326,'Gypsy Boy',0,15),(183894,1222342,'Mrs. Bates',0,16),(183894,175400,'John Knightley',0,17),(183894,1494840,'James Knightley',0,18),(183894,109322,'Robert Martin',0,19),(183894,1320744,'Mrs. Cole',0,20),(183894,1504465,'Miss Martin 1',1,21),(183894,1609919,'Miss Martin 2',0,22),(183894,1609920,'Young Emma (aged 3)',0,23),(183894,1609921,'Young Frank Churchill',0,24),(183894,1417041,'Mrs. Churchill',0,25),(183894,1609922,'Young Jane Fairfax',0,26),(183894,1609923,'Young Jane Fairfax',0,27),(244783,1813,'Franny',1,0),(244783,1121400,'James Forester',0,1),(244783,2453,'',1,2),(244783,1088672,'Henry',2,3),(244783,1345418,'Rema',1,4),(168027,2224,'Skip Gibbs',2,0),(168027,64856,'Donnell Lewis',2,1),(168027,1064,'Woody Ricks',2,2),(168027,21029,'Chris Mankowski',2,3),(168027,1175764,'Robin Abbott',1,4),(168027,1380651,'Greta Wyatt',1,5),(168027,45566,'Gerry',2,6),(168027,43120,'Mark Ricks',2,7),(168027,10227,'Sgt. Maureen Downey',1,8),(168027,177214,'Booker',2,9),(168027,1237618,'Juicy Mouth',0,10),(168027,1103,'Wendell Robinson',2,11),(168027,212218,'Kenny',2,12),(168027,1523211,'Cosmetics Lady',1,13),(168027,122728,'Groovy Director',0,14),(168027,1272162,'Ivana',1,16),(168027,1735577,'Marina VIP',1,17),(135595,20212,'Alex Becker',2,0),(135595,23931,'Claire Becker',1,1),(135595,21722,'Malcolm Eddery',2,2),(135595,61835,'Duke',2,3),(135595,143432,'(voice)',1,4),(135595,94387,'Brothel man',2,5),(135595,1102621,'Nath',2,6),(89861,95789,'Emily',1,0),(89861,14501,'Horace Wiggins',2,1),(89861,55643,'Aunt Agnes',1,2),(89861,54447,'Edward',2,3),(89861,28848,'George',2,4),(89861,937889,'Hurdler',0,5),(89861,937890,'Hurdler',0,6),(89861,184892,'Don 1',2,7),(89861,1213693,'Don 2',0,8),(89861,121606,'Cedric',2,9),(89861,6637,'Hudson Junior',2,10),(89861,10746,'His Butler\'s Voice',2,11),(57022,7169,'Murray Silver',2,0),(57022,9780,'Desiree Perry',1,1),(57022,16327,'Jack Meadows',2,2),(57022,2453,'Francine Pinkney',1,3),(57022,10224,'Buster Bidwell',2,4),(57022,81372,'Reggie Perry',2,5),(57022,15860,'Lester',2,6),(57022,36190,'Marly Temple',1,7),(57022,6396,'Steve Tregaskis',2,8),(57022,26008,'Earl Pinkney',2,9),(57022,1554266,'Terrell',2,10),(57022,78117,'Jefferson Cash',0,11),(57022,558280,'Silent Sam',0,12),(57022,558281,'Krissy',0,13),(57022,558282,'Dick Yordan',0,14),(57022,124783,'Greg',2,15),(57022,46772,'Scotty Duval',2,16),(147767,35070,'Bahattar Singh (72) / Inspector Tehattar Singh (73)',2,0),(147767,81092,'Indu Tendulkar',1,1),(147767,88593,'Mansukh Desai',2,2),(147767,85450,'Tatya Tukaram Tendulkar',2,3),(147767,71090,'Sattar Singh (70)',2,4),(147767,35819,'Inspector Kambli',2,5),(55567,222631,'Brittany',0,0),(55567,222632,'Cameron',0,1),(55567,222633,'Mr. Wiggs',2,2),(55567,154917,'Solly DeGrand',2,3),(55567,222634,'Tatiana',1,4),(55567,222635,'Ziggy Wiggs',0,5),(55567,222636,'Angel Wiggs',0,6),(55567,222637,'Zita Wiggs',0,7),(55567,222638,'Twiggy Wiggs',0,8),(55567,222639,'Blaze',0,9),(55567,222640,'Eric',0,10),(55567,222641,'Zoey Wiggs',1,11),(55567,222643,'Alanna Wannbe',0,12),(55567,222644,'Mikey P.',2,13),(55567,222645,'Maya',0,14),(55567,1036196,'MC John / \'Diverse\' Male Singing Group',2,15),(138697,24045,'Jon Martello, Jr.',2,0),(138697,1245,'Barbara Sugarman',1,1),(138697,1231,'Esther',1,2),(138697,18298,'Jon Martello, Sr.',2,3),(138697,21104,'Angela Martello',1,4),(138697,60073,'Monica Martello',1,5),(138697,10689,'Bobby',2,6),(138697,112879,'Danny',0,7),(138697,85142,'Priest',2,8),(138697,212429,'Gina',1,9),(138697,208307,'Lauren',1,10),(138697,1124795,'Lisa',1,11),(138697,1223438,'Sequins',0,12),(138697,1223439,'Patricia',0,13),(138697,149699,'Barbara\'s Mom',1,14),(138697,1355837,'Bartender',0,15),(138697,1355838,'Pink',1,16),(138697,1223718,'Teacher',0,17),(138697,1355839,'Waitress',0,18),(138697,1355840,'Supermodel in Commercial',1,19),(138697,1355841,'Promoter',0,20),(138697,1355842,'Other Driver',0,21),(138697,239974,'Hostess',1,22),(138697,1355844,'Russian Voices',0,23),(138697,1355845,'Woman in Car',0,24),(138697,1346327,'Feefee',1,25),(138697,1355846,'Beebee',0,26),(138697,446351,'Deedee',1,27),(138697,1355847,'Purple',0,28),(138697,1355848,'White Shorts',0,29),(138697,1355849,'Church Parishioner',0,30),(138697,1813,'Emily Lombardo',1,31),(138697,38673,'Conner Verreaux',2,32),(138697,22122,'Hollywood Actress #2',1,33),(138697,9777,'Hollywood Actor #2',2,34),(138697,124972,'Porn Actress (uncredited)',1,35),(138697,74250,'Porn Actress (uncredited)',1,36),(138697,124136,'Porn Actress (uncredited)',1,37),(138697,41990,'Porn Actor (uncredited)',0,38),(138697,132388,'Porn Actress (uncredited)',1,39),(138697,125611,'Porn Actress (uncredited)',1,40),(138697,1274860,'Porn Actor (uncredited)',0,42),(138697,132381,'Porn Actress (uncredited)',1,43),(138697,55680,'Porn Actor (uncredited)',2,44),(138697,1197172,'Porn Actress (uncredited)',1,45),(138697,232271,'Porn Actress (uncredited)',1,46),(138697,577492,'Porn Actress (uncredited)',1,47),(138697,136791,'Porn Actress (uncredited)',1,48),(138697,132398,'Porn Actress (uncredited)',1,49),(138697,135659,'Porn Actress (uncredited)',1,52),(138697,88229,'Porn Actress (uncredited)',1,54),(138697,55682,'Porn Actor (uncredited)',2,55),(138697,138185,'Porn Actress (uncredited)',1,56),(73532,20853,'Marcel Marx',0,0),(73532,5999,'Arletty',1,1),(73532,569369,'Idrissa',0,2),(73532,53507,'Claire',1,3),(73532,49756,'Yvette',1,4),(73532,569370,'Chang',0,5),(73532,28463,'Monet',2,6),(73532,1653,'Le du00e9nonciateur',2,7),(73532,548816,'Docteur Becker',0,8),(193722,58604,'Takafumi Katayama',2,0),(193722,80755,'Queen',0,1),(193722,83527,'Queen',1,2),(193722,123862,'Queen',0,3),(193722,146869,'Queen',0,4),(193722,1174070,'Queen',0,5),(193722,553120,'Queen',0,6),(193722,1174071,'Kiichiro Sugiura',2,7),(193722,25653,'Setsuko Katayama',1,8),(193722,58613,'Manager',2,9),(193722,46624,'Kishitani',2,10),(193722,71080,'Police Officer',0,11),(193722,1410504,'Arashi Katayama',0,13),(253253,83854,'Jude',2,0),(253253,111685,'Bobbie',1,1),(253253,11512,'Albert',2,2),(253253,1188193,'Guy',0,3),(253253,1292102,'Businessman',0,4),(253253,1237293,'Brenda',1,6),(51995,6161,'Gwen Vanderveer',1,0),(51995,3141,'Honey Foster',1,1),(51995,517,'Dan Day',2,2),(51995,228,'Dr. Paul Blaylock',2,3),(51995,17141,'Carl Vanderveer',2,4),(51995,77517,'Angie Vandermeer',1,5),(51995,35516,'Billy',2,6),(51995,84407,'Jerry Hobson',2,7),(70670,76547,'Roger Brown',2,0),(70670,12795,'Clas Greve',2,1),(70670,559207,'Diana Brown',1,2),(70670,558205,'Lotte',1,3),(70670,77981,'Ove',2,4),(70670,558254,'Sindre Aa',2,5),(70670,76553,'Jeremias Lander',2,6),(70670,63767,'Brede Sperre',0,7),(70670,589188,'Stig',2,8),(70670,135121,'Brugd',2,9),(70670,1093935,'Sunded',0,10),(70670,1093936,'Monsen 1',0,11),(70670,1093937,'Monsen 2',0,12),(70670,1093940,'Morning Show Hostess',0,13),(70670,1093941,'Morning Show Host',0,14),(70670,1093942,'Okonomisjef',0,15),(70670,1144062,'Ferdinand',2,16),(84204,52890,'Garda Ciaru00e1n O\'Shea',2,0),(84204,58430,'Garda Lisa Nolan',1,1),(84204,55469,'Dr. Adam Smith',0,2),(84204,33399,'Una Maher',0,3),(84204,1122014,'Brian Maher',0,4),(84204,182043,'Paddy Barrett',2,5),(84204,1458563,'Irene Murphy',0,6),(84204,1084849,'Tadhg Murphy',0,7),(84204,1458564,'Father Potts',0,8),(84204,63362,'Declan Cooney',0,9),(84204,1458565,'Hilda',0,10),(230266,83002,'Miss Julie',1,0),(230266,72466,'John',2,1),(230266,2206,'Kristin',1,2),(230266,1377303,'Little Miss Julie',0,3),(63006,35793,'ACP Vishnu Kamath',0,0),(63006,85035,'Zoe',1,1),(63006,53975,'Bar Dancer',1,2),(63006,215910,'DJ Joki',2,3),(63006,126500,'Lorry',2,4),(91586,17178,'Josh Lambert',2,0),(91586,9827,'Renai Lambert',1,1),(91586,17181,'Dalton Lambert',2,2),(91586,7401,'Elise Rainier',1,3),(91586,10767,'Lorraine Lambert',1,4),(91586,80619,'Carl',2,5),(91586,2128,'Specs',2,6),(91586,59117,'Tucker',2,7),(91586,208524,'Foster Lambert',2,8),(91586,58739,'Young Carl',2,9),(91586,78804,'Young Lorraine Lambert',1,10),(91586,1153842,'Young Elise Rainier',1,11),(91586,154839,'Mother of Parker Crane',1,12),(91586,1223444,'Young Parker Crane',2,13),(91586,206505,'Young Josh Lambert',2,14),(91586,62851,'Bride in Black / Old Parker Crane',2,15),(91586,181329,'Natalie',0,16),(91586,87118,'Detective Sendal',2,17),(91586,139631,'Long Haired Fiend',2,18),(91586,568240,'Neighbor Jessica',1,19),(91586,1478382,'Front Desk Nurse Hillary',1,20),(91586,1570330,'Dark Haired Woman',1,21),(91586,1448173,'Brian',0,22),(91586,974169,'Annie',1,23),(91586,1608562,'Allison',0,24),(91586,1023732,'Coma Ward Nurse',0,25),(91586,1832086,'Old Man in the Further',2,26),(91586,1832087,'Kali Lambert',0,27),(91586,1832088,'Kali Lambert',0,28),(91586,1832089,'Ghoul (uncredited)',0,29),(91586,145556,'Bride (uncredited)',0,30),(333371,17628,'Michelle',1,0),(333371,1230,'Howard Stambler',2,1),(333371,17487,'Emmett DeWitt',2,2),(333371,51329,'Ben (voice)',2,3),(333371,60881,'Driver',2,4),(333371,1354257,'Neighbor Woman',0,5),(333371,8269,'Leslie',1,6),(333371,1413361,'Darcy',0,7),(333371,1120025,'Jeremy',2,8),(333371,1253678,'Extra Licoreria',0,9),(345911,20374,'Rebecca',1,0),(345911,49,'Sophie',1,1),(345911,1352028,'Martin',2,2),(345911,996224,'Bret',2,3),(345911,1186027,'Diana',1,4),(345911,21029,'Paul',2,5),(345911,1659211,'Emma',1,6),(345911,1598936,'Officier Gomez',1,7),(345911,204548,'Officer Brian Andrews',2,8),(345911,1302131,'Esther',1,9),(345911,112742,'Young Sophie',1,10),(345911,1493969,'Young Rebecca',1,11),(345911,1185732,'Young Diana',1,12),(345911,1525065,'Nurse',1,13),(345911,1577027,'Music',2,14),(72571,90596,'Katie',1,0),(72571,118243,'Kristi Rey',1,1),(72571,176748,'Julie',1,2),(72571,579064,'Dennis',2,3),(72571,995457,'Young Katie',1,4),(72571,995458,'Young Kristi',1,5),(72571,995459,'Creepy Lady',0,7),(72571,206112,'Randy Rosen',0,8),(72571,155037,'Kid',0,9),(72571,142402,'Creepy Lady',1,10),(72571,171401,'Grandma Lois',1,11),(242512,1173984,'Elaine Morris',1,0),(242512,973091,'Sarah Morris',1,1),(242512,221115,'Trevor',2,2),(242512,1277583,'Isabelle',1,3),(242512,60077,'Pete',2,4),(242512,444211,'Debbie',1,5),(242512,1697013,'Young Laine',0,6),(242512,1697014,'Young Sarah',0,7),(242512,1697015,'Young Debbie',0,8),(242512,1697016,'Doris Zander',0,9),(242512,1098706,'Nona',1,10),(242512,1539579,'Young Doris',0,11),(242512,7401,'Paulina Zander',1,12),(242512,1697017,'Mother',1,13),(242512,15905,'Mrs. Galardi',1,14),(242512,33286,'Anthony Morris',2,15),(242512,583456,'Grief Counselor',1,16),(242512,1141000,'Diner Manager',2,17),(242512,938105,'Internet Expert',2,18),(211954,1202611,'Maggie',1,0),(211954,239574,'Valentu00edn',0,1),(211954,1178995,'Julie',0,2),(211954,181876,'Frank Ryan',2,3),(211954,38764,'Johnny Bravo',2,4),(211954,932160,'Judeisy',0,5),(211954,1044093,'Lupe',2,6),(211954,144275,'Jackie',1,7),(211954,78006,'Abogado Julie',2,8),(211954,556129,'Director',0,9),(211954,140603,'Directora',1,10),(211954,69865,'Himself',2,11),(211954,1458151,'Valentu00edn niu00f1o',0,12),(211954,1458152,'Amante Brasileu00f1a',0,13),(211954,1458153,'Amante dominicana',0,14),(211954,1458154,'Amante argentina',0,15),(211954,1458155,'Amante oriental',0,16),(211954,1458158,'Sammy',0,17),(211954,1383942,'Agente migraciu00f3n',2,18),(211954,1458162,'Portero hotel L.A.',0,19),(211954,1058176,'Camarera',0,20),(211954,1458167,'Maggie bebu00e9',0,21),(211954,1458169,'Maggie bebu00e9',0,22),(211954,1458709,'Aztecman',0,23),(211954,1458710,'Hernu00e1n Cortu00e9s',0,24),(211954,1087382,'Staff \'Aztecman\'',0,25),(211954,1376390,'Mr. Anders',0,26),(211954,1262022,'Directora escuela',1,27),(211954,1276161,'Maestra Maggie',0,28),(211954,1458737,'Niu00f1a bullying',0,29),(211954,1250862,'Doctor',0,30),(211954,1423494,'Mamu00e1 parque de diversiones',0,31),(211954,1459186,'Espantado en montau00f1a rusa',0,32),(211954,1459190,'Modelo casting #12',0,33),(211954,1459194,'Modelo casting #13 Trasvesti',0,34),(211954,1459197,'Melissa',0,35),(211954,1221701,'Mesero',0,36),(211954,1246103,'Reneu00e9',0,37),(211954,1459214,'Actor en edificio',0,38),(211954,1459215,'Staff edificio 1',0,39),(211954,1459216,'Staff edificio 2',0,40),(211954,1459218,'Mensajero',0,41),(211954,78328,'Juez',2,42),(211954,1233729,'Abogado Valentu00edn',0,43),(211954,1459233,'Abuelita',0,44),(211954,1459234,'Asistente de Juez',0,45),(211954,1114254,'Agente FBI 1',0,47),(211954,1303791,'Agente FBI 2',0,48),(211954,1363268,'Lola la Trailera',1,49),(82990,90596,'Katie',1,0),(82990,221192,'Alex',1,1),(82990,455033,'Ben',2,2),(82990,984724,'Wyatt',0,3),(82990,1033547,'Robbie',2,4),(82990,36803,'Doug',2,5),(82990,42377,'Holly',1,6),(82990,1790409,'Sarah',0,7),(82990,1485380,'Tara',1,8),(82990,1424716,'Derek',0,9),(82990,118243,'Kristi',1,10),(82990,87220,'Daniel',2,11),(82990,141382,'Hunter',0,12),(82990,156785,'Debbie (uncredited)',1,13),(227348,1746117,'Jesse Arista',2,0),(227348,1105711,'Arturo',2,1),(227348,1116973,'Oscar Hernandez',0,2),(227348,18300,'Carlos',2,3),(227348,188347,'Hector',0,4),(227348,1117232,'Cholo',2,5),(227348,141374,'Ali',1,6),(227348,90596,'Katie',1,7),(227348,1282218,'Santos',0,9),(227348,1282221,'Penelope',0,10),(152532,10297,'Ron Woodroof',2,0),(152532,9278,'Dr. Eve Saks',1,1),(152532,7499,'Rayon',2,2),(152532,81681,'Dr. Sevard',2,3),(152532,18324,'Tucker',2,4),(152532,21710,'Richard Barkley',2,5),(152532,424,'David Wayne',0,6),(152532,2171,'Dr. Vass',0,7),(152532,114000,'T.J.',2,8),(152532,230995,'Nurse Frazin',1,9),(152532,29933,'Denise',1,10),(152532,129868,'Clint',2,11),(152532,1299674,'Hispanic Orderly',0,12),(152532,1078610,'Francine Suskind',0,13),(152532,103290,'Rodeo Girl',1,14),(152532,60881,'Rog',2,15),(243940,59315,'Zoe McConnell',1,0),(243940,45407,'Frank Walton',2,1),(243940,119589,'Niko',2,2),(243940,55089,'Clay',2,3),(243940,33397,'Eva',1,4),(243940,6719,'Mr. Wallace',2,5),(243940,33457,'President Dalley',1,6),(243940,1086222,'Fireman',2,7),(243940,1337712,'Lawyer',0,8),(157547,543261,'Kaylie Russell',1,0),(157547,1017347,'Tim Russell',2,1),(157547,51798,'Marie Russell',1,2),(157547,98050,'Michael Dumont',2,3),(157547,51792,'Alan Russell',2,4),(157547,932076,'Marisol Chavez',1,5),(157547,206505,'Young Tim',2,6),(157547,551462,'Phone Store Clerk',1,7),(157547,30488,'Dr. Shawn Graham',2,8),(157547,1024722,'Young Kaylie',1,9),(147773,83852,'Duncan',2,0),(147773,4495,'Trent',2,1),(147773,3051,'Pam',1,2),(147773,1285,'Susanna',1,3),(147773,6807,'Owen',2,4),(147773,19,'Betty',1,5),(147773,52792,'Caitlyn',1,6),(147773,2956,'Joan',1,7),(147773,52997,'Kip',2,8),(147773,105648,'Roddy',2,9),(147773,161932,'Lewis',2,10),(147773,1190917,'Steph',0,11),(147773,1277365,'Peter',0,12),(59968,22226,'Ned Rochlin',2,0),(59968,9281,'Miranda Rochlin',1,1),(59968,11664,'Natalie Rochlin',1,2),(59968,1246,'Liz Rochlin Anderson',1,3),(59968,36801,'Jeremy Horne',2,4),(59968,17696,'Janet Ziebell',1,5),(59968,12791,'Christian Smith',2,6),(59968,4581,'Dylan Anderson',2,7),(59968,80591,'Cindy Harris',1,8),(59968,51990,'Billy Orwin',2,9),(59968,28778,'Ilene Rochlin',1,10),(59968,90755,'Lady Arabella Galloway',1,11),(59968,1225953,'Omar Coleman',2,12),(59968,17449,'Officer Washburn',2,13),(59968,50117,'Terry',2,14),(59968,1723660,'Sadie',0,15),(59968,528334,'River Byng',2,16),(59968,1723661,'Tatiana',0,17),(59968,205772,'Beth',0,18),(59968,1723662,'Velma',0,19),(59968,54124,'Judy',1,20),(59968,140369,'Chloe',1,21),(59968,1626458,'Max',2,22),(59968,114470,'Ellen',1,23),(59968,1363197,'Darren',0,24),(59968,221944,'Amy',1,25),(323677,1388314,'Jesse Owens',0,0),(323677,58224,'Larry Snyder',2,1),(323677,23229,'Leni Riefenstahl',1,2),(323677,16940,'Avery Brundage',0,3),(323677,58370,'Peggy',1,4),(323677,227,'Jeremiah Mahoney',2,5),(323677,5847,'Carl Luz Long',0,6),(323677,1181358,'Dave Albritton',2,7),(323677,1362995,'Sam Stoller',0,8),(323677,28477,'Arthur Lill',2,9),(323677,225418,'Trent',1,10),(323677,1448201,'Mel Walker',2,11),(323677,1080969,'Eulace Peacock',2,12),(323677,1228356,'Ruth Solomon',1,13),(323677,41043,'General Charles',2,14),(323677,1331005,'Laurel Girl',0,15),(323677,1026218,'Ken Seitz',0,16),(323677,7009,'Phil Diamond',2,17),(323677,17525,'Dr. Joseph Goebbels',2,18),(323677,60907,'Francis Schmidt',2,19),(323677,115596,'Rudolf Dassler',0,20),(323677,119706,'Adolf Dassler',0,21),(323677,49491,'Radio Announcer',0,22),(323677,62126,'Rev. Ernest Hall',2,23),(323677,147642,'U.S. Olympic team',0,24),(323677,20696,'Dean Cromwell',0,25),(323677,1519259,'Sylvester Owens',2,26),(323677,1470335,'Marty Glickman',0,27),(323677,1137769,'Hans Ertl',0,28),(323677,96173,'Journalist',2,29),(323677,1264152,'Franz Miller',0,30),(323677,1540234,'Quincella Nickerson',0,31),(323677,1540235,'Desk Clerk',0,32),(323677,1438433,'Fan of Jesse Owens',0,33),(323677,1540236,'Ralph Metcalfe',0,34),(323677,142546,'Reporter',0,35),(323677,1540237,'Elevator Boy',0,36),(323677,1540238,'Frank Wykoff',0,37),(323677,1508655,'German referee',0,38),(323677,1481282,'Local Girl',0,39),(323677,1540239,'Doorman',0,40),(323677,1540240,'Journalist',0,41),(323677,1540241,'the Jewish Mother (uncredited)',1,42),(323677,1503710,'German Police Officer (uncredited)',0,43),(256274,207549,'Scarlett',1,1),(256274,78431,'George',2,2),(256274,56679,'Benji',2,3),(256274,78124,'Papillon',0,4),(256274,1319096,'Souxie',0,5),(256274,939100,'Zed',0,6),(256274,1357018,'La Taupe',0,7),(256274,1178738,'Reza',0,8),(256274,1139801,'Gloomy Teenager',0,9),(256274,1175840,'Tour Guide',0,10),(256274,28190,'Scarlett\'s Father',2,11),(256274,1357019,'Strange Young Woman',0,12),(256274,1357020,'Strange Old Woman',0,13),(256274,226025,'Iranian Armed Guard',0,14),(256274,1357021,'Danny',0,15),(256274,1357022,'Female Curator',0,16),(235271,80758,'Jason Reynard',2,0),(235271,1374148,'Tony',0,1),(235271,1374149,'10-year-old Zoe',0,2),(235271,929826,'Brina',0,3),(235271,1374150,'Benny',2,4),(235271,1374151,'Shane',2,5),(235271,1374152,'Balthazar Crayne',0,6),(235271,159962,'Diamond',1,7),(235271,80616,'Nina',1,8),(235271,1374153,'Handsome Man',0,9),(235271,15566,'Zoe Reynard',1,10),(235271,74610,'Marcella',1,11),(235271,77072,'Corey',2,12),(235271,972671,'Quentin Matthews',2,13),(235271,1374154,'Girl on Playground',0,14),(45153,59017,'Eve Batiste',1,0),(45153,22122,'Cisely Batiste',1,1),(45153,16217,'Roz Batiste',1,2),(45153,2231,'Louis Batiste',2,3),(45153,88161,'Mozelle Batiste Delacroix',1,4),(45153,20158,'Elzora',1,5),(45153,55274,'Matty Mereaux',1,6),(45153,40377,'Lenny Mereaux',2,7),(45153,65020,'Stevie Hobbs',1,8),(45153,1236760,'Poe Batiste',0,9),(45153,1214157,'Gran Mere',0,10),(45153,6198,'Julian Grayraven',2,11),(45153,192272,'Harry',2,12),(45153,60877,'Madame Renard',1,13),(45153,42694,'Narrator (voice)',1,14),(45153,16460,'Hosea',2,15),(45153,15537,'Maynard',2,16),(45153,1699464,'Henrietta',0,17),(45153,1699466,'Lynette',0,18),(45153,1699469,'Paige',0,19),(45153,1380009,'Vendor',2,20),(45153,1699470,'Bus Driver',0,21),(45153,1699472,'Bartender',0,22),(45153,119290,'Proprietor',0,23),(45153,170948,'Ghost of Original Eve',1,24),(284293,1231,'Dr. Alice Howland',1,0),(284293,7447,'Dr. John Howland',2,1),(284293,37917,'Lydia Howland',1,2),(284293,7517,'Anna',1,3),(284293,83222,'Charlie',2,4),(284293,35236,'Tom Howland',2,5),(284293,41688,'Frederic Johnson',2,6),(284293,79991,'Dr. Benjamin',2,7),(284293,1285592,'Jenny',0,8),(284293,73933,'Eric Wellman',2,9),(284293,1465486,'Nursing Home Administrator',0,10),(284293,1465495,'Nursing Home Resident',1,11),(284293,1232484,'Primary Care Doctor',0,12),(284293,151435,'Convention Facilitator',1,13),(284293,1465496,'Masha (Three Sisters)',0,14),(284293,1391352,'Pinkberry Worker',0,15),(284293,1391351,'Alice Howland\'s Mother',0,16),(284293,118388,'Prof. Hooper',1,17),(122081,17051,'Alien',2,0),(122081,77948,'Faith',1,1),(122081,67599,'Candy',1,2),(122081,78030,'Brit',1,3),(122081,79504,'Cotty',1,4),(122081,224228,'Archie',0,5),(122081,221606,'Bess',1,6),(122081,1194368,'Forest',0,7),(122081,1635146,'ATL Twin',0,8),(122081,1635134,'ATL Twin',2,9),(50357,77164,'Lt. Col. John Grey',2,0),(50357,232525,'Capt. Benjamin Anderson',2,1),(50357,172935,'Cdr. Nathan Walker',2,2),(50357,41436,'Mission Control',2,3),(50357,583061,'Deputy Secretary of Defense',2,4),(50357,91402,'Nate\'s Girlfriend',1,6),(50357,60721,'Lab Tech',2,7),(50357,1400438,'Laura Anderson',0,8),(50357,1400439,'Ryan Anderson',0,9),(50357,188656,'John\'s Fiancu00e9e',0,10),(50357,1252128,'Lab Tech',2,11),(192141,887,'Jack Dwyer',2,0),(192141,25703,'Annie Dwyer',1,1),(192141,517,'Hammond',2,2),(192141,1186840,'Lucy Dwyer',1,3),(192141,973135,'Beeze Dwyer',1,4),(192141,49275,'Recruiter',2,5),(192141,94387,'Krit',2,6),(192141,76477,'Concierge',0,7),(192141,971590,'Hotel Guest #1',0,8),(192141,1811925,'Hotel Guest #2',0,9),(192141,521673,'Kenny Rogers',2,10),(192141,120356,'Mother / Woman Next Door',1,11),(192141,1371560,'Travel Agent',0,12),(192141,1126355,'Japanese Businessman',0,13),(192141,1505455,'Samnang',2,14),(192141,1272796,'Sandra (uncredited)',0,15),(192141,165827,'Prime Minister (uncredited)',2,16),(192141,1025655,'Voice actor (uncredited)',0,17),(192141,1371557,'Voice actor (uncredited)',0,18),(192141,1371558,'Voice actor (uncredited)',0,19),(192141,1371559,'Voice actor (uncredited)',0,20),(192141,1811937,'Khmer (voice) (uncredited)',0,21),(192141,1809216,'Actor / Host (uncredited)',0,22),(351819,9562,'Christian',2,0),(351819,89462,'Hannah',1,1),(351819,20753,'Gary',2,2),(351819,51944,'Ron',2,3),(351819,98394,'Eli',2,4),(351819,10223,'Claire',1,5),(351819,75343,'Mrs. Robinson',1,6),(351819,1350469,'Jesse',2,7),(351819,1365093,'Kateesha',1,8),(351819,214695,'Ashley',0,9),(351819,1376001,'Miss White',1,10),(351819,995358,'Bride to Be',0,11),(351819,1434820,'Joe Mills',2,12),(351819,83352,'Becky',1,13),(351819,1515525,'Carla',1,14),(351819,1224148,'Yuki',0,15),(351819,1398257,'Bike Messenger (uncredited)',2,16),(378200,143242,'Charlie',0,0),(378200,52851,'Sherry',1,1),(378200,89462,'Karen',1,2),(378200,98772,'Ginger',1,3),(378200,33285,'Avatia',1,4),(378200,54502,'Eva',0,5),(378200,49002,'Rick',2,6),(378200,1089770,'Victor',0,7),(378200,1569966,'Dana',0,8),(378200,1026947,'Pressie',1,9),(378200,559646,'Abram',0,10),(378200,1569967,'French Montana',0,11),(378200,532,'Marty',2,12),(378200,1569968,'Kareem',0,13),(378200,1526157,'Timothy DeLaGhetto',0,14),(78394,583896,'Conservatory assistant',0,0),(78394,583897,'Jacques',0,1),(78394,583898,'Julie',0,2),(78394,583899,'Georges Cuvier',0,3),(78394,554283,'Professor Motani',0,4),(46332,2192,'Christian',2,0),(46332,2369,'Luc',2,1),(46332,49278,'Christophe',2,2),(46332,20799,'Cu00e9lestin',2,3),(46332,6784,'Amedu00e9e',2,4),(46332,135856,'Jean-Pierre',0,5),(46332,96416,'Michel',0,6),(46332,135857,'Paul',0,7),(46332,67145,'Nouredine',0,8),(46332,17475,'Rabbia',1,9),(46332,82927,'Omar',0,10),(46332,48405,'Bruno',2,11),(46332,1362834,'Ali Fayattia',0,12),(46332,89624,'Le terroriste',2,13),(46332,1160278,'Sidi Larbi',0,14),(46332,1362835,'Hadji',0,15),(46332,1362836,'Le colonel',0,16),(46332,44736,'Le chef de chantier croate',2,17),(46332,1362838,'Ouvrier croate 1',0,18),(46332,234921,'Ouvrier croate 2',2,19),(46332,1362839,'La femme de Sidi Larbi',0,20),(46332,1122556,'La villageoise',0,21),(46332,1362840,'Ahmed',0,22),(46332,1362842,'La femme de Nouredine',0,23),(46332,1362845,'Saloua',0,24),(46332,1362847,'La fille de Saloua',0,25),(46332,1362850,'Terroriste 1',0,26),(46332,1362852,'Terroriste 2',0,27),(46332,1362854,'Terroriste 3',0,28),(46332,1362855,'Le berger',0,29),(343795,7517,'Eva Piper',1,1),(343795,17244,'Don Piper',2,2),(343795,1488908,'Chris Piper',0,3),(343795,1488909,'Joe Piper',0,4),(343795,1378650,'Nicole Piper',0,5),(343795,1279102,'Eva\'s Dad',0,6),(343795,96881,'Eva\'s Mom',1,7),(343795,20309,'Lawyer Beaumont',2,8),(343795,99253,'Cliff McArdle',2,9),(343795,1386122,'Ms. Glenda',0,10),(343795,168679,'Dick Onarecker',0,11),(343795,51456,'Principal Mary Nell',1,12),(343795,1654873,'Police Officer',2,13),(343795,169588,'Dr. Houchins',2,14),(343795,1668856,'Don\'s Mom',1,15),(343795,145320,'ER Nurse - Huntsville',0,16),(45658,15556,'Samantha',1,0),(45658,23659,'Nick Halsey',2,1),(45658,77870,'Gary',2,2),(45658,4784,'Delilah',1,3),(45658,82163,'Kenny Loftus',2,4),(45658,454,'Frank Garcia',2,5),(45658,17401,'Elliot',2,6),(45658,1654957,'Kitty',1,7),(45658,569548,'Shopper',2,8),(45658,1654970,'Driver (Repo Guy)',2,9),(45658,216973,'Hipster',0,10),(45658,1439204,'Bank Manager',0,11),(45658,1137006,'Jacket Buyer',2,12),(45658,1012223,'Girlfriend',1,13),(45658,1371261,'Cop',2,14),(45658,1657441,'Skinny White Girl (uncredited)',1,15),(45658,1137005,'Waitress (uncredited)',1,17),(36351,5293,'John LeTour',2,0),(36351,4038,'Ann',1,1),(36351,65002,'Marianne Jost',1,2),(36351,15412,'Robert',2,3),(36351,54782,'Teresa Aranow',1,4),(36351,8536,'Tis Brooke',2,5),(36351,209,'Randi Jost',1,6),(36351,6807,'Jealous',2,7),(36351,60950,'Theological Cokehead',2,8),(245916,17604,'Gary Webb',2,0),(245916,17628,'Anna Simons',1,1),(245916,3968,'Fred Weil',2,2),(245916,11477,'John Cullen',2,3),(245916,418,'Ronny Quail',2,4),(245916,1271,'Norwin Meneses',2,5),(245916,3627,'Coral Baca',1,6),(245916,39390,'Ricky Ross',2,7),(245916,14892,'Sue Webb',1,8),(245916,1462,'Alan Fenster',2,9),(245916,12834,'Russell Dodson',2,10),(245916,17485,'Jerry Ceppos',2,11),(245916,31028,'Richard Zuckerman',2,12),(245916,1081736,'Quail\'s Girlfriend',1,13),(245916,81096,'Rich Kline',2,14),(245916,75604,'Danilo Blandon',2,15),(245916,1105079,'Ian Webb',2,16),(313922,21028,'Pat',2,0),(313922,17606,'Amber',1,1),(313922,61178,'Sam',1,2),(313922,1081875,'Reece',2,3),(313922,1371041,'Tiger',2,4),(313922,4451,'Daniel',2,5),(313922,59297,'Big Justin',2,6),(313922,209513,'Gabe',0,7),(313922,21633,'Clark',2,8),(313922,2387,'Darcy',2,9),(313922,1194966,'Tad',0,10),(313922,1277799,'Stagehand',2,11),(313922,1384017,'Stage Manager',0,12),(313922,1194967,'Werm',0,13),(313922,1732065,'Guitarist (as LJ Klink)',0,14),(313922,1732066,'Drummer',0,15),(313922,1642952,'Emily',1,16),(313922,1732067,'Twin #1',0,17),(313922,1732068,'Twin #2',0,18),(313922,1732069,'Cop #1',0,19),(313922,1732070,'Cop #2 (as Joseph Bertot)',0,20),(313922,1732071,'Bartender',0,21),(313922,1707097,'Jonathan',0,22),(313922,1707098,'Kyle',0,23),(313922,1707099,'Alan',0,24),(199933,41125,'Ragnar Danneskju00f6ld',2,1),(199933,52602,'Henry Rearden',2,2),(199933,537,'Dr. Hugh Akston',2,3),(199933,159386,'John Galt',2,4),(199933,37027,'Ellis Wyatt',2,5),(199933,11889,'Midas Mulligan',2,6),(199933,73836,'Dagny Taggart',1,7),(199933,22462,'Francisco d\'Anconia',2,8),(199933,93228,'Wesley Mouch',2,9),(199933,19974,'James Taggart',2,10),(199933,85154,'Cuffy Meigs',2,11),(199933,51582,'Gerald Starnes',2,12),(199933,47878,'Jeff Allen / Narrator',2,13),(199933,15011,'Dispatcher',2,14),(38428,92686,'Mahatma Gandhi',2,0),(38428,87328,'Harilal Gandhi',2,1),(38428,120429,'Gulab Gandhi',1,2),(38428,120430,'Kasturba Gandhi',0,3),(38428,85529,'Kanti Gandhi',0,4),(39269,2778,'Don',2,1),(39269,7685,'Dr. Brean',2,2),(39269,19434,'Kathy',1,3),(39269,3011,'Cebe',1,4),(39269,14062,'Charlie',2,5),(46838,21088,'Tucker',2,0),(46838,51383,'Dale',2,1),(46838,74618,'Allison',1,2),(46838,59926,'Chad',2,3),(46838,64670,'Sheriff',2,4),(46838,58371,'Jason',2,5),(46838,168554,'Naomi',0,6),(46838,27775,'Chloe',1,7),(46838,236702,'Chuck',0,8),(46838,212952,'Todd',0,9),(46838,236703,'Mitch',0,10),(46838,236704,'Mike',0,11),(46838,236705,'Cheryl',0,12),(46838,236706,'Chad\'s Dad',0,13),(46838,236707,'BJ Hillbilly',0,14),(51384,2641,'Robert Malone',2,0),(51384,9560,'Mary',1,1),(51384,36801,'Mike',2,2),(51384,9281,'alex malone',1,3),(56930,4165,'Johnny Munroe',2,0),(56930,41245,'Maura Alexander Munroe',1,1),(56930,99461,'Frederick Alexander (as Sir Cedric Hardwicke)v',2,2),(56930,3362,'Miss Ellen Braithwaite',1,3),(56930,5401,'Ricky Vegas',2,4),(56930,30537,'Pop Mathews',2,5),(56930,30292,'Fog',2,6),(56930,8496,'Joe',2,7),(41730,1893,'Pete Kepler',2,0),(41730,11661,'Skye Davidson',1,1),(41730,2839,'Blue Baxter',2,2),(41730,6886,'Ely Jackson',1,3),(41730,824,'Cale',2,4),(41730,3282,'Sandy',1,5),(41730,133,'Billy Baxter',2,6),(41730,11512,'Prof. Lance Davidson',2,7),(41730,1189668,'Haley Gordon',0,8),(41730,101026,'Dr. Gordon',0,9),(41730,137417,'Deputy Keeler',2,10),(41730,5148,'Caroline Baxter',1,11),(41730,1473,'Sheriff Jackson',2,12),(41730,11086,'Agent Frank Bellows',2,13),(41730,53923,'Agent Summers',1,14),(41730,203660,'KBLU Radio DJ (voice)',0,15),(41730,23626,'Mickey Moonday (voice)',2,16),(298312,1385063,'Rebecca Jamison',0,0),(298312,1198286,'Tyler Jamison',2,1),(298312,17696,'Mother',1,2),(298312,116409,'Dad',2,3),(298312,204271,'Nana',1,4),(298312,19489,'Pop-Pop',2,5),(298312,1385064,'Cruise Passenger',0,6),(298312,1385067,'Cruise Passenger',0,7),(298312,1473142,'Stacey',0,8),(298312,1689287,'Conductor',2,9),(298312,172156,'Dr. Sam',0,10),(298312,1720659,'Miguel',0,11),(298312,1720660,'Man on the Street',0,12),(298312,1621144,'Young Becca',0,13),(298312,1720663,'Young Tyler',0,14),(298312,1385062,'Train Passenger (uncredited)',0,15),(298312,1385065,'Police officer (uncredited)',0,16),(298312,1385071,'Police Officer (uncredited)',2,17),(298312,1385070,'Train Passenger (uncredited)',0,18),(298312,1385069,'Police Officer (uncredited)',0,19),(298312,1385068,'J. Smith (uncredited)',0,20),(298312,1385066,'Police Officer (uncredited)',0,21),(71547,14061,'Maureen Doherty',1,1),(71547,28472,'Scott Doherty',2,2),(71547,37421,'Patrick Doherty',2,3),(71547,14344,'Oliver Doherty',2,4),(71547,65535,'Kelly Vance',1,5),(71547,1629954,'',2,6),(71547,1611152,'',1,7),(71547,1533928,'',1,8),(71547,147373,'',0,9),(57876,1467369,'Reid',0,0),(57876,1467370,'Darrin',0,1),(57876,227364,'Ben',0,2),(57876,1075097,'Jelena',0,3),(57876,154472,'Jim Nelson',2,4),(57876,46930,'Frank Novak',2,5),(57876,1287575,'Glenn Campbell',0,6),(57876,1467371,'Little A\'Le\'Inn Waitress',0,7),(57876,1467372,'Kooky Rachel Local',0,8),(57876,1467373,'Lazar\'s Insider Security',0,9),(57876,1403498,'Employee',0,10),(57876,1467374,'Area 51 Employee\'s Wife',0,11),(57876,1467375,'Employee Daughter',0,12),(57876,227080,'Reid\'s Mom',0,13),(57876,1178650,'Reid\'s Dad',0,16),(57876,1467376,'Jennefer Ludwigsen',1,17),(57876,1189637,'Jennefer\'s Mom',0,18),(57876,1467377,'Son of Jennifer',0,19),(57876,124224,'Hybrid',0,20),(57876,558915,'Reid\'s Sister',1,21),(77495,16867,'Cu00e9sar',2,0),(77495,587930,'Clara',0,1),(77495,27462,'Marcos',2,2),(77495,132999,'Sra. Veru00f3nica',0,3),(77495,1116138,'u00darsula',0,4),(77495,54519,'Vecino 4u00baB',0,5),(77495,1283850,'Mujer de la limpieza',0,6),(77495,935934,'Padre de u00darsula',2,7),(77495,1047252,'Policu00eda 1',0,8),(77495,1092533,'Policu00eda 2',0,9),(244403,8289,'Sam',2,0),(244403,21028,'Quentin',2,1),(244403,7427,'Emily',1,2),(244403,77948,'Kate',1,3),(244403,2975,'Del',2,4),(244403,3905,'',2,5),(244403,78324,'Lisa Martin',1,6),(244403,132354,'Peaches',1,7),(244403,1327013,'Lizzie',0,8),(244403,148096,'Josh',2,9),(244403,1680859,'Mary Beth',0,10),(292481,1205,'Henry (voice)',2,1),(292481,40481,'Lefty Gomez (voice)',2,2),(292481,9046,'Babe Ruth (voice)',2,3),(292481,87255,'Nurse Cyndi (voice)',1,4),(292481,61880,'Jack\'s Mom (voice)',1,5),(292481,1004,'Dr. Acosta (voice)',2,6),(292481,10557,'Thurmon Munson (voice)',2,7),(292481,78144,'Jack (voice)',2,8),(292481,60957,'Himself (voice)',2,9),(292481,1178792,'Additional Voices',0,10),(340816,2387,'Harris',2,1),(340816,57854,'Dawn',1,2),(340816,21163,'Dr. Roberts',2,3),(340816,53926,'James',2,4),(340816,80219,'B',0,5),(340816,7133,'Randy',2,6),(340816,78430,'Karen',1,8),(340816,472632,'Karen',1,9),(340816,26657,'Walt',2,10),(340816,18066,'Marta',1,11),(340816,55583,'Tim',2,12),(340816,1336757,'Larry',0,13),(340816,39679,'Glen',2,14),(340816,1347547,'Nurse Wilda',0,15),(78814,10399,'Jayne Valseca',1,0),(78814,65344,'Eduardo Valseca',2,1),(78814,61852,'Raul',2,3),(78814,46423,'Olivia',1,4),(78814,68527,'Cal Wimberly',2,5),(78814,56733,'Gustavo Otero',2,6),(78814,209686,'Luz Valseca',0,7),(78814,966902,'Maria Valseca',1,8),(78814,73132,'El Jefe',2,9),(78814,66148,'Barker',2,10),(78814,183070,'Septien',2,11),(78814,61220,'Antonieta Garcia',0,12),(78814,1676023,'Hernando',2,13),(78814,1855094,'Officer Martinez',0,14),(78814,1120542,'Thin Man',0,15),(297596,2963,'Evan Lake',2,0),(297596,21028,'Milton Schultz',2,1),(297596,115737,'Muhammad Banir',2,2),(297596,1350,'Michelle Zuberain',1,3),(297596,122280,'Aasim',2,4),(297596,1019865,'Mbui',0,5),(297596,1395427,'Ghedi',0,6),(297596,1395428,'James Clifton',0,7),(297596,1395429,'Dr. Wangari',0,8),(297596,1219440,'Dr. Clayborne',0,9),(297596,19044,'Mike Warner',0,10),(297596,20806,'Dr. Sanjar',2,11),(297596,62506,'Dr. Cornel',2,12),(297596,110018,'Bob Deacon',2,13),(297596,81136,'Policeman',2,14),(299552,22063,'Simon',2,1),(299552,515628,'Mina',1,2),(299552,82807,'Olivia',1,3),(299552,29406,'Atal',2,4),(299552,17483,'Ian',2,5),(299552,131814,'Harm Helder',2,6),(299552,1469079,'Saba',0,7),(299552,1452671,'Dagar',0,8),(299552,933684,'Daphne',0,9),(113406,85142,'Joey',2,0),(113406,68812,'Charlie',2,1),(113406,928306,'Billie',0,2),(113406,10556,'Ruth',1,3),(113406,4688,'Danny',2,4),(113406,178425,'Nicole',1,5),(113406,47054,'Henry',2,6),(113406,56105,'Tillie',0,7),(113406,57395,'',1,8),(113406,1980,'Ellen',1,9),(113406,53930,'Alice',1,10),(113406,36055,'Mason',2,11),(113406,90610,'Matt',2,12),(113406,52421,'Eddie',2,13),(113406,1214865,'T.J.',2,14),(290825,1459885,'Colleen Collette',1,0),(290825,576173,'Colleen McKenzie',1,1),(290825,15033,'Yogi Bayer',2,2),(290825,86654,'Hunter Calloway',2,3),(290825,11702,'Ichabod',2,4),(290825,60286,'Old Man Arcane',2,5),(290825,25147,'Bob Collette',2,6),(290825,10871,'Tabitha',1,7),(290825,9640,'Adrien Arcand',2,8),(290825,65007,'Ms. Maurice',1,9),(290825,1766047,'\'Peg Mom',0,10),(290825,1766056,'\'Peg Son',0,11),(290825,53280,'Gordon Greenleaf',2,12),(290825,589162,'Ms. Wicklund',1,13),(290825,85,'Guy Lapointe',2,14),(290825,19303,'The Bratzis',2,15),(290825,7624,'Dispatcher',2,16),(290825,23658,'Mrs. McKenzie',0,17),(290825,34947,'Canadian Bat, Man!',2,18),(290825,19302,'Rogue Cop',2,19),(290825,1356001,'Toilet Paper Man',0,20),(290825,1395348,'Principal Invincible',1,21),(290825,74510,'German Soldier (uncredited)',0,22),(290825,1113050,'Disgruntled Eh-2-Zed Customer (uncredited)',2,23),(361159,53922,'Lt. Pete Cunnigham',2,0),(361159,21259,'Commander Sheer',2,1),(361159,119870,'Vice President Bentley',2,2),(361159,1513914,'Carl',0,3),(361159,58045,'CIA Agent Stacy Thomas',1,4),(361159,1412782,'Billy',0,5),(361159,1513916,'Travis',0,6),(361159,1253634,'Margaret',0,7),(361159,145543,'AJ Prescott',2,8),(361159,1513917,'Bradley',0,9),(361159,1354563,'Dave',0,10),(361159,94427,'Amanda',1,11),(361159,101847,'Senator Abrams',2,12),(361159,990136,'Farmer',2,13),(361159,1513918,'Tiger Voice',0,14),(361159,175630,'Larry',2,15),(77949,15556,'Florence Cathcart',1,0),(77949,17287,'Robert Mallory',2,1),(77949,11356,'Maud Hill',1,2),(77949,239020,'Tom',2,3),(77949,29235,'Constance Strickland',1,4),(77949,107380,'Freddie Strickland',2,5),(77949,940,'Reverend Hugh Purslow',2,6),(77949,15094,'Harriet Cathcart',1,7),(77949,120833,'Alexander Cathcart',2,8),(77949,582938,'Victor Parry',2,9),(77949,185464,'Vera Flood',1,10),(77949,3076,'Albert Flood',2,11),(77949,176191,'George Vandermeer',2,12),(77949,66791,'Dorothy Vandermeer',1,13),(77949,119783,'Edward Judd',2,14),(77949,85071,'Malcolm McNair',2,16),(77949,1102427,'Sergeant Evans',0,17),(77949,1674638,'Julian Dowden',2,18),(77949,202360,'John Franklin',2,19),(77949,1674639,'Alistair Howell',2,20),(77949,1674640,'Chris Hartley',2,21),(77949,1674642,'William Ramsbottom',2,22),(77949,1674643,'Richard McGorian',2,23),(77949,1466262,'Max Tebbitts',2,24),(77949,1674645,'Child Impostor',2,25),(77949,1182304,'Captain Mills',0,26),(77949,947789,'Edgar Hirsthwit',2,27),(77949,582918,'Teacher 1',2,28),(77949,1674664,'1920\'s Lady (uncredited)',1,29),(77949,1090947,'School Master (uncredited)',2,30),(64720,335,'Curtis LaForche',2,0),(64720,83002,'Samantha LaForche',1,1),(64720,59450,'Nat',1,2),(64720,74242,'Dewart',2,3),(64720,1472,'Kyle',2,4),(64720,938292,'Hannah LaForche',1,5),(64720,938309,'Cammie',0,6),(64720,1117503,'Russell',0,7),(64720,1117504,'Lewis',0,8),(64720,79416,'Jim',2,9),(64720,1117505,'Special Ed Teacher',0,10),(64720,1117506,'Woman in Road',0,11),(64720,1394795,'Insurance Agent',1,12),(64720,1907,'Sarah',1,13),(64720,534231,'Kendra',1,14),(64720,33262,'Army-Navy Dave',2,15),(64720,81665,'Dave',0,16),(64720,1409984,'Psychiatrist',0,17),(49365,526,'Frankie Scarlatti',2,0),(49365,41247,'Phil Terragarossa',2,1),(49365,20752,'Angelo \'Al\' Scarlatti',2,2),(49365,381,'Amanda',1,3),(49365,103829,'Geno Scarlatti',2,4),(49365,57422,'Donald',2,5),(49365,110539,'Mama Assunta',1,6),(49365,1660632,'Papa Charlie',0,7),(49365,1660633,'Melissa Anne Montgomery',0,8),(49365,1720476,'Harold Williams',2,9),(49365,7085,'Mr. Lowry',2,10),(49365,19453,'Sheriff Saunders',2,11),(300706,17178,'David',2,1),(300706,35595,'Tom',2,2),(300706,81133,'Geena',1,3),(300706,49002,'Ward',2,4),(300706,52776,'Stacy',1,6),(300706,37045,'Robin Peters',1,7),(300706,17305,'Bruce',2,8),(300706,100867,'Amanda',1,9),(77987,30614,'Julian',2,0),(77987,5470,'Jenna',1,1),(77987,1840,'Gordon',2,2),(77987,52891,'Billy',2,3),(77987,1102621,'Chang',2,4),(77987,971590,'Byron',0,5),(77987,521673,'Pol Col. KIM',2,6),(77987,1206367,'Mai',0,7),(77987,1163445,'Daeng',2,8),(77987,1268084,'Kanita',0,9),(77987,1268085,'Papa San',0,10),(40185,27978,'Blaise',2,0),(40185,151180,'Camille',1,1),(40185,47796,'Eddie',0,2),(40185,123914,'Antoine',0,3),(40185,17527,'Edwige',0,4),(40185,123916,'Laure',0,5),(40185,25340,'Florence',1,6),(40185,123917,'Le grand-pu00e8re',0,7),(40185,72592,'Fred',0,8),(68202,52605,'Rosalba',1,0),(68202,2224,'Gordon',2,1),(68202,76094,'Priest Rafael',2,2),(68202,36628,'Cleotilde',1,3),(68202,1745065,'Cecilia',0,4),(68202,573817,'Virgelina',1,5),(68202,2051,'Lucrecia',1,6),(68202,1745067,'le pru00eatre Rafael jeune',0,7),(68202,8695,'Campo Elias',2,8),(68202,55259,'Camacho',2,9),(68202,20187,'la patronne',1,10),(68202,159657,'Magnolia',1,11),(68202,56732,'Ubaldina',1,12),(68202,1745073,'Nadja',0,13),(68202,66525,'Boss\' Assistant',2,15),(50848,77860,'Arthur Martin',2,0),(50848,17074,'Bahia Benmahmoud',1,1),(50848,5445,'Mohamed Benmahmoud, le pu00e8re de Bahia',2,2),(50848,72090,'Lucien Martin, le pu00e8re d\'Arthur',2,3),(50848,17463,'Cu00e9cile Benhmamoud, la mu00e8re de Bahia',0,4),(50848,19936,'Annette Martin, la mu00e8re d\'Arthur',1,5),(50848,229140,'Annette u00e0 30 ans',0,6),(50848,185408,'Nassim',0,7),(50848,1083559,'Hassan Hassini',0,8),(50848,1083767,'Arthur Martin adolescent',0,9),(50848,1293192,'Arthur Martin enfant',0,10),(50848,1293193,'Bahia Benmahmoud enfant',0,11),(50848,1293194,'Annette enfant',0,12),(50848,307837,'Le pianiste',0,14),(50848,1386241,'Une ado, la premiu00e8re copine d\'Arthur',0,15),(50848,1146844,'La femme qui n\'a jamais votu00e9',0,16),(166624,60077,'Mica',2,0),(166624,37153,'Laura',1,1),(166624,17006,'Sophie',1,2),(166624,20173,'Richard',2,3),(166624,1102261,'The Lifeguard',0,4),(166624,116994,'Guillermo Garibai',2,5),(166624,530,'Catherine',1,6),(65749,230213,'Mario Suu00e1rez',2,0),(65749,1395095,'Laura Fuentes',0,1),(65749,6859,'Elena Flores',0,2),(65749,1395096,'Carlos Nebbia',0,3),(252680,198927,'Allyson',1,0),(252680,1328,'Sean',2,1),(252680,26996,'Sondra',0,2),(252680,142956,'Izzy',0,3),(252680,930216,'Marco',0,4),(252680,232499,'Joey',2,5),(252680,968429,'Bridgette',1,6),(252680,61831,'Zoe',1,7),(252680,78040,'Pastor Ray',2,8),(252680,235548,'Kevin',2,9),(252680,106934,'Hostess',0,10),(252680,51456,'Glenda',1,11),(252680,1661904,'Tattoo Desk Guy',0,12),(252680,930215,'DJ',0,13),(252680,29934,'Sergeant',2,14),(252680,101847,'Ronald',2,15),(252680,304848,'Hank',2,16),(252680,592932,'Restaurant Visionary',0,17),(252680,1274156,'Brandon',0,18),(252680,1358561,'Bailey',0,19),(252680,47932,'Cabbie',2,20),(252680,85477,'Bones',2,21),(66607,76857,'Rosalu00edo',2,0),(66607,17689,'Carmelo',2,1),(66607,545087,'Eladio',2,2),(66607,133762,'Julian Pu00e9rez',0,3),(66607,69865,'Chema Du00edaz',2,4),(39800,12851,'Helen',1,0),(39800,5129,'Andy',2,1),(39800,1834,'Joy',1,2),(39800,19,'Trish',1,3),(39800,39390,'Allen',2,4),(39800,4250,'Harvey',2,5),(39800,1251975,'Timmy',0,6),(39800,8785,'Bill',2,7),(39800,56105,'Mona',0,8),(39800,44079,'Jacqueline',1,9),(39800,1414536,'Mark',0,10),(39800,59238,'Billy',2,11),(62116,585965,'Nannerl Mozart',0,0),(62116,135665,'Lu00e9opold Mozart',2,1),(62116,132182,'Anna-Maria Mozart',1,2),(62116,1151445,'Wolfgang Mozart',0,3),(68818,9880,'James',2,0),(68818,101400,'Yana',0,1),(68818,17093,'Ing. Eduardo Apodaca',2,2),(68818,9029,'Mackinley',2,3),(68818,553883,'Ivan',0,4),(68818,553884,'Doctor',0,5),(68818,12795,'Young James',2,6),(68818,15497,'Sundance Kid',0,7),(68818,115146,'Etta',1,8),(68818,146703,'General of the Bolivian Army',0,9),(68818,1864468,'Caballero inglu00e9s',0,10),(68818,1372527,'Tabernera',0,11),(68818,1864469,'Jefe indigena',0,12),(68818,1864470,'Lugarteniente indigena',0,13),(68818,1864471,'Director de banco',0,14),(36419,3896,'Eliot Deacon',2,0),(36419,15033,'Paul',2,1),(36419,6886,'Anna Taylor',1,2),(36419,2694,'Tom Peterson',2,3),(36419,77334,'Jack',2,4),(36419,1989,'Beatrice Taylor',1,5),(36419,96892,'Vincent Miller',2,6),(36419,115335,'Restaurant Patron',1,7),(36419,8492,'Susan Whitehall',1,8),(36419,115336,'Young Anna Taylor',1,9),(36419,209065,'Diane',1,10),(36419,155607,'Father Graham',2,11),(36419,17488,'Mrs. Hutton',1,12),(36419,1310666,'Tall Kid',2,13),(36419,1310667,'Teacher',1,14),(36419,8446,'Acne Kid',2,15),(36419,951387,'Old Woman',1,16),(36419,1637728,'Old Woman',1,17),(36419,1637702,'Principal',1,18),(36419,1307751,'Neal',2,19),(281730,35792,'R.S Chautala',2,1),(281730,1340976,'Dev',0,2),(281730,1340978,'Devi',0,3),(281730,1340979,'Gaurav',0,4),(281730,1340980,'Aditya',0,5),(281730,117725,'Cheeni',2,6),(362105,1098962,'Beth',0,1),(362105,968006,'Lilith',1,2),(362105,1512789,'Hunter',2,3),(362105,84468,'Andrea Payton',0,4),(362105,1516910,'Newscaster',0,5),(362105,1237601,'Nicole',0,6),(362105,132347,'Luke',2,7),(362105,1216568,'Dr. Hysteria',2,8),(362105,239021,'Sheriff',0,9),(362105,58395,'Ms. Sarkosian',1,10),(362105,1397812,'Nora',0,11),(362105,1705588,'Vampire',0,12),(362105,227050,'Hungry Zombie',0,13),(362105,1225906,'Zombie Teacher',1,14),(362105,172825,'Zombie Vendor',2,15),(362105,209764,'Boy in Hall',2,16),(362105,1705589,'Hag Witch Double',1,17),(375290,35070,'Ranjit Katyal',2,0),(375290,1077932,'Amrita Katyal',1,1),(375290,1407967,'Tasneem',0,2),(375290,1061909,'Deepti Jayarajan',1,3),(375290,85574,'Ibrahim Durrani',0,4),(375290,123318,'Kurien',0,5),(375290,1638602,'Meher',0,6),(375290,1525434,'Prince',0,7),(375290,1638525,'Ashok',0,8),(375290,1556437,'Indian Ambassador Brij',0,9),(375290,1543146,'George Kutty',0,10),(375290,1434770,'Poonawalla',0,11),(375290,1638529,'Major Khalaf Bin Zayd',0,12),(375290,1179628,'Sanjeev Kohli',0,13),(375290,140683,'',2,14),(375290,1243976,'External Affairs Minister',0,15),(375290,82076,'Bauji',0,16),(375290,1638574,'Old Indian',0,17),(375290,1841253,'George\'s Daughter',0,18),(270938,64856,'John \'Falcon\' Chapman',2,0),(270938,2203,'Manny Ridley',2,1),(270938,123812,'Carlo Bororo',0,2),(270938,1214296,'Cindy Chapman',0,3),(270938,1279738,'Tomoe',0,4),(270938,953738,'Hirimoto',0,5),(270938,1350645,'Katarina Da\' Silva',0,6),(270938,1350646,'Police Officer',2,7),(270938,1350652,'Nurse',0,8),(270938,1306892,'Businessman',0,9),(270938,147377,'Thiago Santo',0,10),(270938,1350653,'Yakuza Guard',0,11),(270938,126099,'Lionel',0,12),(270938,1350654,'Kuka',0,13),(270938,1350655,'Businessman',0,14),(270938,1350656,'Maria',0,15),(270938,1350657,'Waiter',0,16),(270938,1350658,'Toothpick',2,17),(270938,1350659,'Doctor',0,18),(270938,1350660,'Bartender',0,19),(270938,1350661,'Security Guard',0,20),(116613,5538,'Jack Regan',2,0),(116613,449889,'George Carter',2,1),(116613,39459,'Nancy Lewis',1,2),(116613,20186,'Frank Haskins',2,3),(116613,1116,'Harry',2,4),(116613,978,'Ivan Lewis',2,5),(116613,220448,'Francis Allen',2,6),(116613,25448,'DC Kara Clarke',1,7),(116613,85718,'DC Simon Ellis',2,8),(116613,76945,'Johnny Wextru',0,9),(116613,30085,'Evelyn Simmonds',0,10),(116613,27764,'DC Nathan Miller',2,11),(116613,157818,'Megan',0,12),(116613,1684032,'Makin Trebolt',0,13),(116613,1684033,'Neil',0,14),(116613,78018,'Doctor',2,15),(116613,1047649,'David',2,16),(116613,229313,'Freddy',2,17),(116613,1428460,'Symes',2,18),(116613,1684034,'Mikey',0,19),(116613,55581,'Screw',2,20),(116613,1684035,'Natalija Wolscat',0,21),(116613,183180,'Mr. Bledisloe',2,22),(116613,143527,'Whiting',0,23),(116613,1212891,'Landlady',0,24),(116613,1891303,'Reporter',1,25),(116613,1109987,'Armed Officer',0,26),(116613,1891305,'Young Bank Lady',1,27),(47452,5049,'Giles De\'Ath',2,0),(47452,19143,'Ronnie Bostock',2,1),(47452,93839,'Mrs. Barker',1,2),(47452,7868,'Irving \'Irv\' Buckmuller',2,3),(47452,55153,'Audrey',1,4),(47452,108890,'Lou',2,5),(47452,189427,'Henry',2,6),(47452,1392527,'Mrs. Reed',0,7),(287424,1100,'Wade Vogel',2,0),(287424,17140,'Maggie Vogel',1,1),(287424,20810,'Caroline',1,2),(287424,60881,'Ray',2,3),(287424,129868,'Holt',2,4),(287424,1485159,'Bonnie',0,5),(287424,204845,'Dr. Kaplan',0,6),(287424,1415436,'Trent',0,7),(287424,1123886,'Allie',0,8),(287424,1465051,'Bobby',0,9),(287424,1797595,'Molly',0,10),(287424,41338,'Security Officer',2,11),(287424,1133063,'Woman in Scrubs',0,12),(287424,283807,'Lauretta',0,13),(287424,1269495,'Doctor',0,14),(287424,931104,'Mason',0,15),(287424,1411664,'Nurse',0,16),(287424,1797599,'Nadine',0,17),(287424,1797600,'Holly',0,18),(287424,483255,'Barbara',1,19),(287424,1317688,'Candace',1,20),(287424,205287,'Hospital Soldier',0,21),(287424,1456719,'Frightened Woman',1,22),(287424,1410428,'Ken',0,23),(287424,1096595,'Soldier #1',2,24),(287424,565498,'Linda',1,25),(165864,96349,'Gretel',1,0),(165864,56676,'Hansel',2,1),(165864,6684,'Agnes/The Witch',1,2),(165864,2130,'The Meter Man',2,3),(165864,58058,'Officer Ritter',2,4),(165864,20759,'Officer Hart',1,5),(165864,1148912,'Bianca',0,6),(241251,16866,'Claire Peterson',1,0),(241251,932091,'Noah Sandborn',2,1),(241251,1348957,'Kevin Peterson',2,2),(241251,38405,'Garrett Peterson',2,3),(241251,52775,'Vicky Lansing',1,4),(241251,57686,'Principal Edward Warren',2,5),(241251,1384708,'Allie Callahan',1,6),(241251,60851,'Detective Johnny Chou',2,7),(241251,104195,'Benny',2,8),(241251,214142,'Barbara',1,9),(241251,24435,'Bob Sandborn',2,10),(241251,137167,'Jason Zimmer',2,11),(241251,1014644,'Mr. Avenido',2,12),(241251,65227,'Ethan',2,13),(241251,54792,'Couper',2,14),(241251,1520068,'Rachel',1,15),(241251,1669957,'Chad the Bully',2,16),(241251,1302207,'Paramedic',2,18),(241251,1284352,'Forrest the Bully',2,19),(40494,13784,'Mike Ribble',2,0),(40494,3150,'Tino Orsini',2,1),(40494,19534,'Lola',1,2),(40494,4069,'Rosa',1,3),(40494,18646,'Bouglione',2,4),(40494,124079,'Max (dwarf)',2,5),(40494,30279,'John Ringling North',2,6),(40494,36021,'Chikki',2,7),(40494,124080,'Otto',0,8),(40494,40952,'Snake Charmer',2,9),(40494,124081,'Circus family children',0,10),(40494,124082,'Specialty Act',0,11),(40494,105634,'Stefan',0,12),(40494,37141,'Paul',0,13),(40494,124083,'3rd partner of Lola',0,14),(39781,1231,'Jules',1,0),(39781,516,'Nic',1,1),(39781,103,'Paul',2,2),(39781,76070,'Joni',1,3),(39781,27972,'Laser',2,4),(39781,60033,'Tanya',1,5),(39781,206966,'Sophia',1,6),(39781,1224166,'Jai',0,7),(39781,170333,'Clay',2,8),(39781,104381,'Luis',2,9),(39781,1188240,'Brooke',0,10),(39781,1394120,'Stella',0,11),(39781,73135,'Joel',2,12),(39781,8700,'Waify Girl',0,13),(39781,1188456,'Clay\'s Dad (as James Macdonald)',0,14),(39781,1394124,'Bartender',0,15),(146203,120248,'Nell Sweetzer',1,0),(146203,936970,'Gwen',1,1),(146203,141226,'Doctor',2,2),(146203,4012,'Chris',2,3),(146203,990136,'Jared',2,4),(146203,17348,'Frank',2,5),(146203,1123886,'Steph',0,6),(85350,931944,'Mason',2,0),(85350,4687,'Mom',1,1),(85350,569,'Dad',2,2),(85350,1467501,'Tommy',0,3),(85350,1327009,'Samantha',1,4),(85350,32239,'Ted',2,5),(85350,1467504,'Teacher',0,6),(85350,1467505,'Elementary School Girl',0,7),(85350,2857,'Grandma',0,8),(85350,994259,'Professor Bill Welbrock',2,9),(85350,1467528,'Mindy',0,10),(85350,1467529,'Randy',0,11),(85350,1327011,'Neighborhood Friend #1',0,12),(85350,1467530,'Neighborhood Friend #2',0,13),(85350,1467540,'Paul',0,14),(85350,1467541,'Book Trivia Judge',0,15),(85350,1467542,'Book Release Emcee',0,16),(85350,1467543,'Jimmy',0,17),(85350,1467544,'Barber',0,18),(85350,1467545,'Mason\'s 4th Grade Teacher',0,19),(85350,111000,'Liquor Store Clerk',0,20),(85350,994257,'Carol',1,21),(85350,1467548,'Lee',0,22),(85350,95368,'Abby',0,23),(85350,1104323,'Kenny',0,24),(85350,159381,'Mrs. Darby',1,25),(85350,1128378,'No Obama Man',0,26),(85350,1467911,'Obama Mama',1,27),(85350,110990,'Tammy',0,28),(85350,931946,'Tony',0,29),(85350,1467913,'Bully 1',0,30),(85350,1467914,'Bully 2',0,31),(85350,931947,'Jill',0,32),(85350,144077,'Jim',2,33),(85350,147084,'College Girl Singer',0,34),(85350,1467916,'Gabi',0,35),(85350,1467923,'Chase',0,36),(85350,931945,'Charlie',2,37),(85350,1467925,'Charlie\'s Friend',0,38),(85350,32241,'Professor Douglas',0,39),(85350,1467928,'Make Out Girl',0,40),(85350,955807,'Annie',0,41),(85350,1467940,'Cooper',0,42),(85350,1467941,'Ernesto',0,43),(85350,71566,'Grandpa Cliff',0,44),(85350,1467961,'Nana',0,45),(85350,1467962,'Pastor',0,46),(85350,1228756,'Mr. Turlington',0,47),(85350,1327010,'Nick',0,48),(85350,1467963,'Beer Pong Guy',0,49),(85350,1467964,'High School Band Singer',0,50),(85350,1327013,'Sheena',0,51),(85350,1298785,'April',0,52),(85350,1467970,'Mason\'s Boss',0,53),(85350,1467975,'Sam\'s College Boyfriend',0,54),(85350,1467976,'Hooper',0,55),(85350,1467977,'Guitar Player',0,56),(85350,1467978,'Beat Box',0,57),(85350,1467979,'Band Member 1',0,58),(85350,1467980,'Band Member 2',0,59),(85350,1467981,'Band Member 3',0,60),(85350,1467982,'Band Member 4',0,61),(85350,204904,'Guy in Diner',0,62),(85350,1309410,'Sam\'s Roommate',0,63),(85350,79008,'High School Teacher',1,64),(85350,71658,'Uncle Steve',2,65),(85350,1467992,'Twin Cousin 1',0,66),(85350,1467993,'Twin Cousin 2',0,67),(85350,1467994,'Woman at Party',0,68),(85350,1467995,'Jimmy\'s Bandmate 1',0,69),(85350,1467996,'Jimmy\'s Bandmate 2',0,70),(85350,1467997,'Jimmy\'s Bandmate 3',0,71),(85350,1467998,'Dalton',0,72),(85350,1377614,'Barb',0,73),(85350,1467999,'Nicole',0,74),(85350,557215,'College Student (uncredited)',0,75),(85350,1386330,'Late Night Restaurant Patron (uncredited)',0,76),(85350,1386307,'Parent (uncredited)',1,77),(85350,1163308,'Dinner Guest (uncredited)',0,78),(85350,1106543,'College Student (uncredited)',1,79),(85350,1153847,'Dinner Guest (uncredited)',0,80),(47816,55637,'Rob Douglas',2,0),(47816,10824,'Juanita Johnson',1,1),(47816,62066,'Tone',2,2),(47816,108542,'Mike (as E40)',2,3),(47816,44822,'Moms Douglas',1,4),(47816,552139,'Pops Douglas',2,5),(47816,58563,'Detective Jenkins',2,6),(47816,14329,'Officer Roberts',2,7),(47816,22122,'Buela Douglas',1,8),(47816,60561,'Dahlia',1,9),(47816,93538,'J.J. (as De\'Aundre Bonds)',2,10),(47816,84878,'Uncle Jim Douglas',2,11),(47816,51944,'Crackhead',2,12),(184345,9562,'Malcolm',2,0),(184345,56824,'Megan',1,1),(184345,154000,'Kisha',1,2),(184345,86498,'Miguel',2,3),(184345,1294,'Noreen',1,4),(184345,208225,'Becky',1,5),(184345,98394,'Ray- Ray',2,6),(184345,1286744,'Wyatt',2,7),(184345,1539,'Professor Wilde',2,8),(184345,35701,'Agouhl',2,9),(184345,5726,'Father Doug',2,10),(184345,1286743,'Pool Daughter (uncredited)',0,11),(184345,1172222,'Kill Family Dad (uncredited)',0,12),(184345,154837,'Pool Dad (uncredited)',2,13),(48572,2536,'Pastor Abin Cooper',2,0),(48572,1230,'Joseph Keenan',2,1),(48572,6832,'Sara',1,2),(48572,11665,'Travis',2,3),(48572,59219,'Jarod',0,4),(48572,85139,'Billy-Ray',0,5),(48572,58356,'Cheyenne',1,6),(48572,17401,'Sherrif Wynan',2,7),(48572,191202,'Deputy Pete',2,8),(48572,116474,'Harry, the Tactical Agent',2,9),(48572,60286,'Caleb',2,10),(48572,134531,'Travis\' Mother',1,11),(48572,7166,'ASAC Brooks',2,12),(48572,140881,'Abigail',1,13),(48572,23658,'Esther',0,14),(48572,52801,'Agent Hammond',2,15),(48572,109144,'Agent Carol',2,16),(48572,169292,'Agent Eccles',0,17),(48572,1216163,'Dana',1,18),(48572,1042471,'Randy',2,19),(48572,152302,'Jesse',1,20),(48572,162828,'Plastic Wrap Man',2,21),(48572,87312,'Mordechai',0,22),(48572,61555,'Maggie',1,23),(48572,1148417,'Melanie',1,24),(48572,1203770,'Fiona May',0,25),(48572,1180860,'Travis\' Father',0,26),(48572,1212613,'News Reporter',1,27),(48572,3965,'Mrs. Vasquez',1,28),(48572,140908,'Route 9 Friend',2,29),(48572,1450426,'Believer',1,30),(48572,1580558,'Believer',1,31),(48572,1077369,'Believer',1,32),(48572,1451112,'Believer',0,33),(48572,1580573,'Believer',0,34),(48572,1452334,'Believer',0,35),(48572,1580574,'Believer',2,36),(48572,46772,'ATF Sniper',2,37),(89708,1163023,'',0,0),(89708,1163024,'',0,1),(89708,1163025,'',0,2),(89708,1163026,'',0,3),(64678,1281,'George Zinavoy',2,0),(64678,34847,'Sally Howe',1,1),(64678,11665,'Dustin',2,2),(64678,53755,'Charlotte Howe',1,3),(64678,5588,'Ms. Herman',0,4),(64678,8700,'Zoe',0,5),(64678,34111,'Will',2,6),(64678,43366,'Mrs. Grimes',1,7),(64678,56871,'Principal',2,8),(64678,12931,'Vivian Sargent',1,9),(64678,8213,'Jack Sargent',2,10),(64678,1329537,'Chastity',1,11),(64678,1831693,'Cynthia',0,12),(64678,196181,'Mrs. Dougherty',1,13),(64678,54856,'Harris McElroy',2,14),(64678,166995,'Javier',0,15),(64678,1382031,'Nick',0,16),(64678,1831703,'Sally\'s Friend (uncredited)',1,17),(309503,17178,'Sam Ellis',2,1),(309503,17286,'Jeannie Ellis',1,2),(309503,3037,'George Hiller',2,3),(309503,5538,'Coaker',2,4),(309503,68842,'EJ',2,5),(309503,141687,'Dalia',1,6),(309503,127907,'Ellie Green',1,7),(309503,58369,'Christy',1,8),(309503,4443,'Peter Kirkland',2,9),(309503,1146114,'Laci',1,10),(309503,555658,'Heidi',0,11),(309503,114034,'Max',0,12),(309503,1157089,'Saleswoman',0,13),(309503,1116011,'Agent Park',0,14),(309503,94182,'John Tamlin',2,15),(309503,62784,'Sam\'s Aide',0,16),(309503,1295668,'Agent Strellitz',2,17),(309503,92058,'Mayor Jonas Stiegel',0,18),(309503,1108690,'Henrietta Flynn',1,19),(309503,1205901,'Nurse Wilson',0,20),(309503,1327175,'Father',2,21),(103328,8170,'Kay M',1,0),(103328,12207,'Eva Grace',1,1),(103328,3784,'L\'homme u00e0 la tache de vin',2,2),(103328,27980,'Cu00e9line',1,3),(103328,27978,'M. Oscar / Le banquier / La mendiante / L\'OS de Motion-Capture / M. Merde / Le pu00e8re / L\'accordu00e9oniste / Le tueur / Le tuu00e9 / Le mourant / L\'homme au foyer',2,4),(103328,35527,'',2,5),(103328,1033666,'',0,6),(103328,1033667,'',0,7),(103328,1033668,'',0,8),(103328,1062732,'Lu00e9a',0,9),(103328,240734,'Angu00e8le',1,10),(103328,27977,'Le dormeur / Voix Limousine',0,11),(103328,1102328,'La petite fille',0,12),(103328,1102329,'L\'acrobate Mo-Cap',0,13),(103328,1102330,'La cyber-femme',0,14),(103328,134514,'Le photographe / Voix Limousine',2,15),(103328,1102331,'L\'assistante photographe',0,16),(103328,1062734,'',0,17),(103328,1001084,'',0,18),(157847,2963,'Joe Ransom',2,0),(157847,1034681,'Gary',2,1),(157847,98804,'Willie',2,2),(157847,969635,'Merle',1,3),(157847,71565,'Lacy',1,4),(157847,1176993,'Cop #1',0,5),(157847,1206062,'Wade',0,6),(157847,1049938,'Connie',0,7),(157847,229777,'Mother Jones',1,8),(157847,205525,'Sammy',0,9),(157847,1302856,'Sue',0,10),(157847,1372217,'Dorothy',0,11),(157847,1632886,'Cathy',1,12),(157847,1765436,'Deputy',0,13),(157847,1122389,'Young Deputy',2,14),(157847,1765437,'Wino',0,15),(157847,1558444,'Henry',0,16),(157847,1765438,'Blind George',0,17),(157847,42704,'Charlotte',1,18),(157847,1765440,'Slim',0,19),(157847,1765441,'Brothel Patron',0,20),(48309,110,'Burke / Forsythe Electrocution',2,0),(48309,27008,'Katherine Walker',1,1),(48309,65019,'Warden Eaton Sharpe',2,2),(48309,104907,'Cresus',2,3),(48309,140250,'Rabbitt',2,4),(48309,11891,'Lasagna',0,5),(48309,1043858,'Sandor',0,6),(48309,8396,'Tiny',2,7),(48309,1086337,'\'Rhino\' Reynolds',0,8),(48309,15510,'Brian Young',0,9),(48309,124603,'Hershey',2,10),(48309,118130,'Captain Horton',2,11),(48309,14801,'Wallace',2,12),(48309,1086338,'Johnson',0,13),(48309,1086339,'Kramer',0,14),(242575,270,'Esperanza',1,0),(242575,1277712,'Karl',0,2),(242575,133766,'Gu00fcero',0,3),(242575,1277713,'Hanna',1,4),(242575,932160,'Rosa',0,5),(242575,26516,'Ruth',0,6),(242575,87264,'Ramu00f3n',2,7),(242575,61818,'Flughafenangestellter',0,8),(242575,1500435,'Herr Neumann',0,9),(242575,971279,'Bundesgrenzschutz',2,10),(242575,234067,'El Chiquis',0,11),(242575,1314380,'Schneider',0,12),(242575,566334,'Angela',0,13),(242575,1729853,'Beglar',0,14),(242575,1889355,'Nadja',0,15),(242575,1423277,'Renate',0,16),(242575,940807,'Rudo',2,17),(242575,1768069,'Manotas',0,18),(242575,1807040,'Fahrgast',0,19),(44945,2296,'William Will Cameron',2,0),(44945,2229,'Lynn Cameron',1,1),(44945,60458,'Annie Cameron',1,2),(44945,76512,'FBI Agent Doug Tate',2,3),(44945,19492,'Gail Friedman',1,4),(44945,150433,'Mr. Weston',2,5),(44945,1467228,'Peter Cameron',2,6),(44945,1583618,'Katie Cameron',0,7),(44945,11315,'Al Hart',2,8),(44945,1000799,'Louise',1,9),(44945,1190917,'Brittany',0,10),(44945,1411950,'Serena Edmonds',0,11),(44945,1583619,'Tanya',0,12),(44945,1583620,'Alexa',0,13),(44945,558923,'Waitress',0,14),(44945,63238,'Volleyball Coach',2,15),(44945,935277,'Aunt Nicole',1,16),(44945,222247,'Charlie\'s Mother',1,17),(44945,146412,'Ms. Worley',0,18),(44945,132218,'Officer Gomez',0,19),(44945,1319235,'Passing Nurse',0,20),(44945,82631,'Rob Moscone',2,21),(44945,202660,'Susanna',1,22),(44945,206505,'Marcus Weston',2,23),(44945,141530,'Tyler Martel',2,24),(44945,123086,'FBI Agent',0,25),(44945,1799434,'Gun Salesman',2,26),(44945,1799449,'Forensic Nurse',0,27),(44945,1654074,'Grandpa Cal',0,28),(44945,1737719,'Grandma Susan',1,29),(44945,1799474,'Charlie',0,30),(44945,1738267,'Security Officer',2,31),(125123,4935,'Raymond \'Ray\'',2,0),(125123,3052,'Gerry',1,1),(125123,1333,'Bob',2,2),(125123,1120,'Shovel',2,3),(125123,1219959,'Steven \'Steve\'',0,4),(125123,1214693,'Weasel',0,5),(125123,122589,'Frank',2,6),(111190,3489,'Lil',1,0),(111190,32,'Roz',1,1),(111190,109438,'Ian',2,2),(111190,968863,'Tom',2,3),(111190,77335,'Harold',2,4),(111190,103994,'Hannah',0,5),(111190,75170,'Saul',2,6),(111190,212740,'Mary',0,7),(111190,152490,'Molly',0,8),(111190,1185778,'Surfer lifeguard',0,9),(111190,1185779,'Lil\'s grand-daughter',0,10),(111190,1185780,'Assistant',0,11),(111190,1185781,'Young Tom',0,12),(111190,1691373,'Theatre Director',0,13),(111190,218366,'Oswald',2,14),(111190,1691375,'Mrs. Alving',0,15),(111190,61792,'Punter',2,16),(111190,1448031,'Roz Swimming Double',1,17),(111190,1618512,'Workshop Performer',0,18),(111190,75671,'Workshop Performer',1,19),(111190,1217765,'Workshop Performer',0,20),(111190,213154,'Workshop Performer',0,21),(111190,1691395,'Stand-in',0,22),(133575,7132,'Valentino',2,0),(133575,3136,'Mary Carmen',1,1),(133575,11155,'Gary',2,2),(133575,46423,'Veronica',1,3),(54580,3810,'Santa',2,0),(54580,16867,'Jose',2,1),(54580,16869,'Ana',0,2),(54580,15601,'Reina',2,3),(54580,16870,'Amador',2,4),(54580,16868,'Lino',0,5),(54580,16871,'u00c1ngela',1,6),(54580,16872,'Nata',1,7),(54580,16873,'Serguei',2,8),(54580,16874,'Samuel',0,9),(54580,272018,'Rico',2,10),(52015,21320,'Belle',1,0),(52015,11084,'Sister',1,1),(52015,67580,'Mister',2,2),(52015,4738,'Martin',2,3),(52015,1015892,'Martin\'s Father',0,4),(52015,206352,'Martin\'s Mother',1,5),(52015,67838,'Doctor Foley',1,6),(52015,939290,'Barn Vamp',0,7),(52015,82851,'Sheriff',0,8),(52015,49827,'Jebedia Loven',2,9),(52015,75601,'Willie',2,10),(52015,53939,'Kevin',2,11),(52015,17194,'Officer Harley',2,12),(52015,1576425,'Vamp',2,13),(227975,52583,'Donato',2,0),(227975,213596,'Konrad',0,1),(227975,1262084,'Ayrton',2,2),(227975,15480,'Heiko\'s Wife',1,3),(227975,73575,'Dakota',1,4),(227975,1154127,'Captain Motta',0,5),(60422,6913,'Lynn',1,0),(60422,132157,'Elliot',2,1),(60422,7517,'Alice',1,2),(60422,3416,'Patty',1,3),(60422,12950,'Joe Baker',2,5),(60422,12645,'Lee',0,6),(60422,143719,'Ben',0,7),(60422,6751,'Bonnie',1,8),(60422,2958,'Donna',1,9),(60422,1345418,'Charlie',1,10),(81390,27755,'Alison',1,0),(81390,25438,'Ed',2,1),(81390,19299,'Andy',2,2),(81390,13362,'Rob',2,3),(81390,10841,'Darko',2,4),(81390,71282,'Jenny',0,5),(81390,71771,'Alex',0,6),(81390,71770,'Mr Mcrae',2,7),(81390,589663,'Anna',0,8),(81390,220448,'Chris',2,9),(81390,16702,'Mr. Kidd',2,10),(225235,23440,'Viktor Sluzhkin',0,0),(225235,1067188,'Nadya',0,1),(225235,97369,'Budkin',2,2),(225235,120233,'Kira',0,3),(225235,143747,'Roza Borisovna',0,4),(225235,1210749,'Gradusov',0,5),(225235,1288320,'Masha',0,6),(121676,2957,'Adib',2,0),(121676,11866,'Paul',2,1),(121676,3141,'Fatima',1,2),(121676,18041,'Sayid',2,3),(121676,1016142,'Halim',2,4),(121676,947323,'Lingerie Girl',1,5),(121676,1074626,'Emily',1,6),(257087,56731,'Maggie Price',1,0),(257087,11155,'Jim Jacobs',2,1),(257087,4888,'Sarah Hope',1,2),(257087,82663,'Jill',1,3),(257087,53441,'Karen Sweetzer',1,4),(257087,81316,'Nick',2,5),(257087,1246804,'Ed',2,6),(257087,1281383,'Ann',1,7),(257087,60230,'Christian',0,8),(257087,1091772,'Ann Sanders (Female Reporter)',0,10),(257087,76625,'Matt',2,11),(257087,1356012,'Sam',0,12),(257087,1202398,'Blonde Man',0,13),(257087,1485708,'Little Sarah',1,14),(257087,1646310,'Sarah\'s Brother',0,15),(257087,1646330,'Sarah\'s Sister',0,16),(257087,25309,'Dan Wheeler',2,17),(257087,1830923,'Doctor',0,18),(257087,1371108,'Comotose Girl (as Kyla-Drew Simmons)',1,19),(257087,1504125,'Mother',0,20),(257087,149641,'Paramedic',2,21),(257087,1219564,'Cult Member #1',0,22),(257087,1830929,'Cult Member #2',0,23),(257087,1830930,'Cult Member #3',0,24),(257087,1706782,'Agent Price',0,25),(257087,1446021,'Cult Member (uncredited)',0,26),(257087,1581632,'Cult Member (uncredited)',0,27),(257087,1647325,'Cult Child (uncredited)',0,28),(257087,1647323,'Cult Child (uncredited)',0,29),(257087,1298381,'Cult Member (uncredited)',0,30),(257087,1663200,'Cult Member (uncredited)',0,31),(257087,1830932,'Cult Member (uncredited)',0,32),(257087,1830933,'Cult Member (uncredited)',0,33),(257087,1207208,'Cult Member (uncredited)',0,34),(257087,1585042,'Cult Member (uncredited)',1,35),(257087,1492847,'Detective (uncredited)',0,36),(46420,109438,'Brent Mitchell',2,0),(46420,136347,'Mia',1,1),(46420,136348,'Lola Princess Stone',1,2),(46420,63313,'Holly',1,3),(46420,76940,'Daddy Stone',2,4),(46420,136349,'Dan',0,5),(46420,136350,'Kerr Willis',0,6),(46420,1093948,'Jamie',2,7),(46420,1546153,'Timmy Valentine',0,8),(114635,109941,'Claire',1,0),(114635,155752,'Brandy',1,1),(114635,218973,'Phil',0,2),(114635,169677,'Anna',0,3),(114635,54506,'Jordan',2,4),(114635,78265,'Todd',0,5),(114635,1189610,'Brad',0,6),(114635,230990,'Steve',2,7),(114635,1189611,'Matthew',0,9),(114635,1189612,'Norah',0,10),(114635,1189613,'Jake',0,11),(114635,1019727,'Ryan',2,12),(158150,42297,'Annie Hayes',1,0),(158150,11867,'Harold White',2,1),(158150,25414,'Claire Russell',1,2),(158150,33336,'Julie Owens',1,3),(158150,1219446,'Willie Taylor',2,4),(158150,11074,'Kim',1,5),(158150,169469,'Matt Schneider',2,6),(158150,1525601,'Megan Russell',0,7),(158150,64897,'Harold\'s Mother',1,8),(158150,45428,'Meredith',1,9),(251979,928572,'Ian McCormack',2,0),(251979,36169,'Mrs. McCormack (mom)',1,1),(251979,109653,'Mr. McCormack (dad)',2,2),(251979,930214,'Anabel',0,3),(251979,1287269,'Lachlan',0,4),(251979,1287270,'Michael McCormack',0,5),(266102,76792,'Elaheh',1,1),(266102,54810,'Afshin Ghaffarian',0,2),(266102,586000,'Ardavan',2,3),(266102,142213,'Parisa Ghaffarian',1,4),(266102,1312266,'Mona',0,5),(266102,1261092,'Farid Ghaffarian',0,6),(266102,1234388,'Sattar',0,7),(266102,52685,'Mehdi',2,8),(266102,1090781,'Stephano',0,9),(266102,1464454,'Javadi, Naser',0,10),(37495,53240,'Omar',2,0),(37495,6971,'Barry',2,1),(37495,2959,'Waj',2,2),(37495,81840,'Faisal',2,3),(37495,814200,'Hassan',2,4),(37495,117795,'Sofia',1,5),(37495,71580,'The Negotiator',2,6),(37495,1836,'Alice',0,7),(37495,45050,'Matt',2,8),(37495,1452669,'Ahmed',0,9),(37495,1546526,'Mahmood',0,10),(37495,1546527,'Uncle Imran',0,11),(37495,1337806,'Khalid',0,12),(37495,126042,'Malcolm Storge MP',0,13),(37495,1546528,'Chairwoman',0,14),(37495,1248536,'Newsreader',0,15),(37495,1546529,'Marathon Policeman',0,16),(37495,17123,'Sniper',2,17),(37495,39185,'Sniper',2,18),(37495,1452663,'Nabil',0,19),(35032,9066,'Manuela',1,0),(35032,13294,'Serafin',2,1),(35032,37884,'Don Pedro Vargas',2,2),(35032,3366,'Tante Inez',1,3),(35032,5832,'l\'avocat',0,4),(35032,30417,'The Viceroy',2,5),(35032,114371,'Uncle Capucho',0,7),(35032,1508010,'Isabella',0,8),(35032,1508012,'Mercedes',0,9),(35032,1508013,'Lizarda',0,10),(35032,3340,'Madame Lucia',1,11),(352978,64856,'James Webster',2,1),(352978,77120,'Ray Peters',2,2),(352978,21942,'Lt. Ross',2,3),(352978,87605,'Murray Simms',0,4),(310131,1397778,'Thomasin',1,0),(310131,202032,'William',2,1),(310131,71083,'Katherine',1,2),(310131,1397779,'Caleb',2,3),(310131,1397781,'Mercy',1,4),(310131,1397780,'Jonas',2,5),(310131,237462,'The Witch',1,6),(310131,1643002,'The Witch, young',0,7),(310131,2320,'Governor',2,8),(310131,1725093,'Black Phillip (voice)',0,9),(310131,1725094,'Samuel',0,10),(310131,1725095,'Samuel',0,11),(310131,1805887,'Lead Coven Witch',0,12),(310131,1805888,'Coven Witch',0,13),(310131,1805889,'Coven Witch',0,14),(310131,1805890,'Coven Witch',0,15),(310131,1805891,'Coven Witch',0,16),(310131,1805892,'Coven Witch',0,17),(310131,1805893,'Militia Man 1',0,18),(310131,1805894,'Militia Man 2',0,19),(310131,1805895,'Militia Man 3',0,20),(310131,1805897,'Wampanoag Man',0,21),(310131,1805898,'Wampanoag Man',0,22),(310131,1805899,'Pipe Smoker',0,23),(310131,1805900,'Shepherd',0,24),(310131,1805901,'Old Slater',0,25),(310131,1805902,'Shepherdess',0,26),(310131,1806024,'Settler',0,27),(310131,1806026,'Settler',0,28),(310131,1806028,'Settler',0,29),(310131,1806030,'Settler',0,30),(310131,1806033,'Chamber Pot Woman',0,31),(40505,65164,'Black',2,0),(40505,83101,'Blue',2,1),(40505,9778,'Gun Runner',2,2),(40505,8396,'T-Lay',2,3),(205321,19146,'Fin Shepard',2,0),(205321,1234,'April',1,1),(205321,78031,'Nova',1,2),(205321,11512,'George',2,3),(205321,31633,'Baz',2,4),(205321,1189243,'Deanna',0,5),(205321,1157373,'Kelso',0,6),(205321,1181340,'Agnes',0,7),(205321,78045,'Matt',2,8),(205321,1189982,'Claudia',0,9),(205321,1085677,'Luellyn',2,10),(205321,1189983,'Colin',0,11),(205321,77157,'Bus Driver',2,12),(205321,211900,'Technician',2,13),(89540,144532,'Topiltzin / Tomu00e1s',2,0),(89540,937447,'Fray Diego de La Coruu00f1a',2,1),(89540,1102,'Tecuichpo / Dou00f1a Isabel',1,2),(89540,937448,'Hernando Cortu00e9s',0,3),(89540,937451,'Capitu00e1n Cristu00f3bal Quijano',2,4),(46146,141999,'Trolljegeren',2,0),(46146,142000,'Finn',0,1),(46146,87880,'Kalle',2,2),(46146,142001,'Johanna',0,3),(46146,142002,'E-verkssjef',0,4),(46146,142003,'Polsk bju00f8rnejeger',0,5),(46146,142004,'Thomas',0,6),(38007,61659,'Ira Black',2,0),(38007,119368,'Abby Willoughby',1,1),(38007,8875,'',2,2),(38007,149665,'',1,3),(38007,60633,'',2,4),(38007,57823,'',1,5),(38007,80415,'',1,6),(38007,26715,'',2,7),(38007,20753,'',2,8),(38007,4432,'',1,9),(38007,155607,'',2,10),(38007,138031,'',0,11),(38007,72985,'Julio the Subway Mugger',2,12),(38007,1206,'',2,13),(38007,51382,'',0,14),(38007,65717,'',2,15),(38007,58954,'',2,16),(38007,14592,'',2,17),(370464,1438026,'Chris',0,1),(370464,1102260,'Michelle',1,2),(370464,1393826,'Carrie Samuels',0,3),(370464,20158,'Ms. Edna',1,4),(370464,44240,'Nicky Stone',2,5),(370464,1084758,'The Reaper',2,6),(224569,532,'Al Benjamin',2,0),(224569,975133,'Joseph Romero',2,1),(224569,19189,'Nadia Rubakov',1,2),(224569,19654,'Andre Rubakov',2,3),(224569,68750,'Peyton Cody',2,4),(224569,26473,'Kenneth Green',2,5),(395766,34715,'',2,0),(395766,139654,'',1,1),(395766,63608,'',2,2),(395766,557395,'',1,3),(395766,1607178,'',0,4),(395766,18993,'',2,5),(395766,210485,'',2,6),(395766,1266585,'',2,7),(395766,82142,'',0,8),(39303,93344,'Russell Spivey',2,0),(39303,1236,'John Tyler',2,1),(39303,10399,'Amanda Richardson',1,2),(39303,7166,'Dr. Simmons',2,3),(142061,27811,'Batman / Bruce Wayne',2,0),(142061,42160,'Robin / Carrie Kelley',1,1),(142061,56930,'Commissioner Gordon',2,2),(142061,2136,'Joker',2,3),(142061,136530,'Clark Kent / Superman',0,4),(142061,15761,'Anchor Carla',1,5),(142061,15831,'Mayor Stevenson',2,6),(142061,23680,'Don',2,7),(142061,21731,'Dr. Bartholomew Wolper',2,8),(142061,105641,'Murray',2,9),(142061,85759,'Ellen Yindel',0,10),(142061,46774,'Lola Chong',1,12),(142061,62389,'Merkel',2,13),(142061,35035,'Morrie',2,14),(142061,159572,'Alfred Pennyworth',2,15),(142061,34934,'Hydrant Fireman (voice)',0,16),(142061,34983,'Selina Kyle / Bruno / Old Woman (voice)',1,17),(142061,15423,'Lana Lang (voice)',1,18),(142061,54043,'Anchor Bill (voice)',0,19),(142061,81200,'David Endocrine',2,20),(142061,130081,'Oliver Queen',2,21),(142061,127387,'',2,22),(142061,154106,'Ben Derrick (voice)',0,23),(370662,25072,'Narrator',2,1),(370662,186329,'Herself',1,2),(370662,1523611,'Himself',0,3),(370662,556097,'Himself',0,4),(370662,83261,'Himself',0,5),(252360,10862,'Hazen Kaine',2,0),(252360,1287700,'Arabella',0,1),(252360,105688,'Ulrich',0,2),(252360,94702,'Tybalt',2,3),(252360,1255950,'Tervin / Ayavlo',2,4),(256740,17140,'Hannah Lee',1,0),(256740,17648,'Wild Bill',2,1),(256740,48,'Uncle Frank Stinson',2,2),(256740,57674,'Amber',1,3),(256740,28410,'Bobby Stinson',2,4),(256740,37027,'Donny',2,5),(256740,1295668,'Bearded Man',2,6),(256740,138608,'Nurse',0,7),(256740,129868,'Doctor',2,8),(256740,52885,'Hank',2,9),(256740,1463206,'Jackson',0,10),(256740,1744721,'Stripper',0,11),(256740,1507337,'Austin',0,12),(256740,1592165,'Lukas',0,13),(256740,1744727,'Boy In Field',2,14),(299145,928572,'John',2,1),(299145,12931,'Sheila',1,2),(299145,20495,'Trick',2,3),(299145,84522,'Jim',2,4),(299145,1040469,'Donna',1,5),(241766,189431,'Tony Lord',2,0),(241766,5538,'Terry Lord',2,1),(241766,32563,'Francesco',0,2),(241766,1040002,'Margarita',0,3),(241766,1283840,'Young Terry',0,4),(241766,1000873,'Charlie',2,5),(50839,1979,'Sam Rogers',2,0),(50839,6162,'Will Emerson',2,1),(50839,16940,'John Tuld',0,2),(50839,17306,'Peter Sullivan',2,3),(50839,122888,'Heather Burke',1,4),(50839,3416,'Sarah Robertson',1,5),(50839,1284159,'Jared Cohen',2,6),(50839,110927,'Seth Bregman',2,7),(50839,1581,'Mary Rogers',1,8),(50839,2283,'Eric Dale',2,9),(50839,20644,'Ramesh Shah',2,10),(50839,163664,'Lauren Bratberg',0,11),(50839,205797,'Executive Assistant',1,12),(86549,152416,'Troy',2,0),(86549,206426,'Jonathan',0,1),(86549,933319,'Raul',0,2),(244786,996701,'Andrew Neimann',2,0),(244786,18999,'Terence Fletcher',2,1),(244786,129104,'Nicole',1,2),(244786,970216,'Ryan',2,3),(244786,223012,'Travis',2,4),(244786,159366,'Assistant - Sophie',1,5),(244786,781,'Mr. Neyman',2,6),(244786,1451540,'Carl Tanner',0,7),(244786,15824,'Uncle Frank',2,8),(244786,53454,'Mr. Kramer',2,9),(244786,1212459,'Aunt Emma',0,10),(244786,52939,'Dorm Neighbor',2,11),(244786,1451542,'Dustin',0,12),(244786,1451543,'Bassist (Nassau)',2,14),(244786,1451545,'Metz',0,16),(244786,171766,'Pianist (Studio Band)',0,17),(244786,1398714,'Saxophonist #2 (Studio Band)',0,18),(244786,1503721,'Trumpeter #1 (Studio Band)',0,19),(244786,1503834,'Trumpeter #2 (Studio Band)',0,20),(244786,1503835,'Technician (Overbrook) - Mike',0,21),(244786,1296849,'Stage Hand (Overbrook)',0,22),(244786,1098246,'Passerby (Bus Station)',1,23),(244786,1503836,'Truck Driver',0,24),(244786,1503837,'Passerby (Dunellen)',0,25),(244786,10691,'Rachel Bornholdt',1,26),(244786,1503838,'Drummer (Quartet)',0,27),(244786,1145677,'Saxophonist',0,28),(244786,1291961,'Bassist (JVC)',0,29),(244786,1503841,'Stage Hand (Carnegie Hall)',0,30),(244786,16506,'Red Henderson',2,31),(244786,1503842,'Andrew (8 years old)',0,32),(244786,1503843,'Nassau Trumpeter #2',0,33),(244786,1503844,'Studio Core Member #1',0,34),(244786,1503845,'Studio Core Member #2',0,35),(244786,1435768,'Studio Core Member #3',0,36),(244786,1503846,'Studio Core Member #4',0,37),(244786,1503847,'Student #1',0,38),(244786,1503848,'Student #2',0,39),(244786,1503849,'Diner Patron (uncredited)',1,40),(244786,1503850,'JVC Trumpet Player (uncredited)',0,41),(244786,1503851,'JVC Alto Jazz Saxophone Player (uncredited)',0,42),(244786,1503852,'Saxophone Player (uncredited)',0,43),(244786,1503853,'JVC Guitarist (uncredited)',2,44),(244786,1503854,'Music Competition Judge (uncredited)',0,45),(244786,79051,'Audience Member (uncredited)',1,46),(244786,1503855,'JVC Saxophonist (uncredited)',0,47),(244786,1503856,'Rival Band Saxophonist (uncredited)',0,48),(244786,1503857,'JVC Trombonist (uncredited)',0,49),(244786,1360008,'Bartender (uncredited)',2,50),(244786,81380,'Audience Member (uncredited)',1,51),(244786,1503858,'Studio Band Saxophone Player (uncredited)',0,52),(75861,52852,'Renee Yohe',1,0),(75861,62747,'Jamie Tworkowski',2,1),(75861,36669,'David McKenna',2,2),(75861,67602,'Mackey',2,3),(75861,212218,'Dylan',2,4),(75861,576474,'Jessie',1,5),(75861,1596099,'Young Jessie',1,6),(75861,1011103,'Sean',2,7),(75861,139631,'Echo',2,8),(75861,52483,'Conrad Willard',2,9),(75861,66542,'Tom Yohe',2,10),(75861,586032,'Amanda',0,11),(75861,1343884,'Nikki',0,12),(75861,1343525,'Dena Yohe',0,13),(75861,1572102,'April Yohe',0,14),(75861,1572103,'Ambrosia',0,15),(75861,1572495,'Jessie\'s Father',0,16),(75861,1596072,'Young Renee',1,17),(75861,1596083,'Teenage Renee',1,18),(75861,1596089,'Michael\'s Father',2,19),(75861,1572523,'Pedestrian',0,20),(75861,129943,'Beautiful Man',0,21),(75861,1494518,'Observer',0,22),(75861,928305,'Choir Member',1,23),(75861,1017371,'Hippie',1,24),(75861,1596098,'Halloween Party Guest',1,25),(103663,1019,'Lucas',2,0),(103663,92416,'Nadja',1,1),(103663,4457,'Theo',2,2),(103663,6122,'Agnes',0,3),(103663,588175,'Bruun',2,4),(103663,47156,'Grethe',0,5),(103663,1034508,'Godsejer / Advokat',0,6),(103663,1112385,'Klara',1,7),(103663,1188827,'Marcus',0,8),(103663,4464,'',2,9),(103663,1442695,'',0,10),(103663,1442696,'',0,11),(103663,1441931,'',0,12),(103663,1442697,'',0,13),(103663,1442698,'',0,14),(103663,564610,'',0,15),(103663,1442699,'',0,16),(103663,1353300,'',0,17),(103663,1348437,'',0,18),(103663,1442700,'',0,19),(103663,1442701,'',0,20),(103663,234895,'',0,21),(103663,1442702,'',0,22),(103663,1433678,'',0,23),(103663,1442703,'',0,24),(103663,1442704,'',0,25),(103663,1442705,'',0,26),(103663,1442706,'',0,27),(103663,1442707,'',0,28),(103663,1442708,'',0,29),(103663,1440936,'',0,30),(103663,1310986,'',0,31),(103663,1442709,'',0,32),(301748,8211,'Jane',1,1),(301748,21315,'Mr. Campbell',2,2),(301748,52775,'Mrs. Kemp',1,3),(301748,6715,'Gary',2,4),(301748,77330,'Mitch',2,5),(301748,76095,'Stephanie',1,6),(301748,1481002,'Ellen',0,7),(108346,11278,'Joseph Lees',2,0),(108346,2206,'Eva',1,1),(108346,118617,'Mr. Dian',2,2),(108346,93177,'Harry',2,3),(108346,1043950,'Robert',0,4),(108346,1043951,'Janie',0,5),(108346,649,'Italian Doctor',2,6),(55347,3061,'Oliver Fields',2,0),(55347,290,'Hal Fields',2,1),(55347,19119,'Anna Wallace',1,2),(55347,5725,'Andy',2,3),(55347,21633,'Elliot',2,4),(55347,82653,'Georgia Fields',1,5),(55347,235847,'Young Oliver',2,6),(55347,235848,'Shauna',0,7),(55347,212778,'Liz',1,8),(55347,211768,'Party Person',0,9),(55347,235849,'Green Witch',0,10),(55347,17441,'Magician',2,11),(55347,97923,'Record Company Rep',0,12),(55347,235850,'Julio',0,13),(55347,44059,'Dr. Long',1,14),(55347,157582,'Dr. Wright',2,15),(55347,235851,'ICU Nurse #1',0,16),(55347,112053,'Hal\'s Priest',2,17),(55347,191897,'Secretary',1,18),(55347,159068,'1978 Museum Staff',0,19),(55347,235852,'1978 Fancy Woman',0,20),(55347,65749,'1978 Older Woman',1,21),(55347,142263,'Terse Nurse',0,22),(55347,44578,'ICU Nurse #2',0,23),(55347,66664,'Nice Nurse',1,24),(55347,235853,'Strict Nurse',0,25),(55347,235854,'Home Nurse #1',0,26),(55347,235855,'Hal Look-Alike',0,27),(55347,235856,'Skating Rink Manager',0,28),(55347,168913,'Brian',2,29),(55347,118045,'Robert',2,30),(125490,572541,'Syd March',2,0),(125490,190895,'Hannah Geist',1,1),(125490,56890,'Dr. Abendroth',2,2),(125490,86237,'Arvid',2,3),(125490,29384,'Dev Harvey',1,4),(125490,60077,'Edward Porris',2,5),(125490,19957,'Mira Tesser',1,6),(125490,14902,'Dorian',2,7),(125490,1102259,'Levine',2,8),(125490,83026,'Jane',1,9),(125490,1102260,'Michelle',1,10),(125490,87778,'Topp',2,11),(125490,136969,'Vera',0,13),(125490,1034220,'Derek Lessing',2,14),(125490,64623,'Aria Noble',0,15),(125490,190937,'Candyce',1,16),(125490,207713,'Receptionist',0,17),(125490,1179449,'Tex',0,18),(125490,139811,'Lucc',0,19),(125490,1179446,'Lucas Clinic Security Guard',0,20),(125490,587936,'Hotel Guard',0,21),(125490,1060114,'Waitress',1,22),(125490,201093,'Bruce',0,23),(125490,1102261,'West',0,24),(125490,1179445,'Portland',0,25),(125490,141459,'Butcher',0,26),(125490,1053294,'Security guard',0,27),(125490,188628,'Woman',1,28),(125490,1179450,'Landlord',0,29),(125490,1179451,'Famous Woman',0,30),(125490,1226806,'Saleman',0,31),(125490,1225057,'Mercer',2,32),(41436,90596,'Katie',1,0),(41436,141373,'Surveillance Camera Expert',2,1),(41436,87220,'Daniel Rey',2,2),(41436,141374,'Ali Rey',1,3),(41436,141378,'Brad',0,4),(41436,118243,'Kristi Rey',1,5),(41436,141382,'Hunter Rey',0,6),(41436,141385,'Hunter Rey',0,7),(41436,90597,'Micah',2,8),(41436,141387,'Martine',0,9),(259943,643,'Feng Wanyu',1,1),(259943,1340,'Lu Yanshi',2,2),(259943,548608,'',2,3),(259943,107775,'',0,4),(259943,131303,'',0,5),(259943,1376103,'',1,6),(259943,1293226,'',0,8),(259943,125572,'',0,9),(259943,1376104,'',0,10),(259943,233204,'',0,11),(158015,17286,'Mary Sandin',1,0),(158015,569,'James Sandin',2,1),(158015,81083,'Charlie Sandin',2,2),(158015,131781,'Zoey Sandin',1,3),(158015,55899,'Polite Leader',0,4),(158015,458286,'Henry',2,5),(158015,56679,'Bloody Stranger',2,6),(158015,305993,'Mr. Cali',2,7),(158015,33432,'Mrs. Grace Ferrin',1,8),(158015,15824,'Mr. Halverson',2,9),(158015,1186023,'Mrs. Halverson',1,10),(158015,1186024,'Mr. Ferrin',0,11),(158015,1186025,'Dr. Peter Buynak',0,12),(158015,1186026,'Freak Interrupting',0,13),(158015,1186027,'Female Freak',1,14),(82507,569,'Ellison Oswalt',2,0),(82507,928906,'Tracy Oswalt',1,1),(82507,7132,'Professor Jonas',2,2),(82507,5296,'Deputy',2,3),(82507,17874,'Sheriff',0,4),(82507,928905,'Ashley Oswalt',0,5),(82507,928908,'Trevor Oswalt',2,6),(82507,928909,'Stephanie Stevenson',1,7),(82507,1017265,'Christopher Miller',0,8),(82507,928907,'BBQ Son / Killer',2,9),(82507,1179260,'Lawn Girl',0,10),(82507,1859942,'Pool Party Boy',0,11),(82507,1423420,'Bughuul / Mr. Boogie',2,12),(82507,1230614,'Anchor',0,13),(82507,1575466,'Mrs. Stevenson (uncredited)',0,14),(223485,17288,'Silas',2,0),(223485,113505,'Jay Cavendish',2,1),(223485,77335,'Payne',2,2),(223485,1046903,'Rose Ross',1,3),(223485,3075,'John Ross',2,4),(223485,1440629,'Maria',0,5),(223485,126042,'Rupert Cavendish',0,6),(223485,1451506,'Kotori',0,7),(223485,89847,'Marimacho',1,8),(53862,35596,'Gregory Reed',2,0),(53862,49002,'June Nelson',2,1),(53862,828,'Fish',2,2),(53862,54429,'Cinny Hawkins',1,3),(53862,49551,'Louise Reed',1,4),(132344,569,'Jesse',2,0),(132344,1146,'Celine',1,1),(132344,12042,'Hank',2,2),(132344,1140264,'Ella',0,3),(132344,1140265,'Nina',0,4),(132344,1117999,'Natalia',0,5),(132344,36967,'Patrick',2,6),(132344,235125,'Anna',1,7),(132344,1275640,'Achilleas',0,8),(132344,236884,'Ariadni',0,9),(132344,1275641,'Stefanos',0,10),(132344,1282892,'Child',0,11),(132344,1282893,'Child',0,12),(132344,1282894,'Child',0,13),(132344,1223384,'Hotel Clerk',0,14),(132344,1282895,'Hotel Clerk',0,15),(132344,3727,'Airport Traveller in Opening Scene (uncredited)',2,16),(44634,55314,'Michelle Jordan',1,0),(44634,18284,'Cassey Jordan',1,1),(44634,88161,'Twana',1,2),(44634,66101,'Todd',2,3),(44634,154217,'Elderly Mother',1,4),(40247,15556,'Rebecca',1,0),(40247,2229,'Kate',1,1),(40247,2956,'Mary',1,2),(40247,17485,'Alex',2,3),(40247,25908,'Abby',1,4),(40247,111683,'Shopper',0,5),(40247,151759,'Andra',1,6),(40247,164254,'Kevin',0,7),(40247,1396822,'Marissa',0,8),(40247,6181,'Adam',2,9),(40247,167564,'Blind Date',0,10),(40247,2207,'Mrs. Portman',1,11),(40247,61013,'Mrs. Melnick',0,12),(40247,21403,'Eugene',2,13),(121986,45400,'Frances',1,0),(121986,1175394,'Sophie',1,1),(121986,1023139,'Miles',2,2),(121986,80661,'Benji',2,3),(121986,6183,'Dan',2,4),(121986,504787,'Rachel',1,5),(121986,171799,'Colleen',1,6),(121986,52419,'Andy',2,7),(121986,1403178,'Ask Me Girl',1,8),(121986,1223163,'Patch',2,9),(121986,1476037,'Caroline',1,10),(121986,1689289,'Nessa',1,11),(121986,66259,'Nadia',1,12),(121986,1789075,'Waitress',1,13),(121986,1283527,'Random Girl #1',1,14),(121986,485005,'Random Girl #2',1,15),(121986,1106411,'Dark Haired Girl',1,16),(121986,1100549,'Waitress at Club',1,17),(121986,1789077,'Mom',1,18),(121986,1789078,'Dad',0,19),(121986,1789079,'Christmas Guest',0,20),(121986,1789080,'Christmas Guest',0,21),(121986,1789081,'Christmas Guest',1,22),(121986,1789082,'Christmas Guest',1,23),(121986,1789083,'Christmas Guest',0,24),(121986,1789084,'Christmas Guest',0,25),(121986,1301087,'Christmas Guest',1,26),(121986,1789085,'Reverend',0,27),(121986,1789086,'Dentist',0,28),(121986,1789087,'Home Friend',0,29),(121986,1789088,'Home Friend',0,30),(121986,1789089,'Home Friend',1,31),(121986,928906,'Janelle',1,32),(121986,66260,'Spencer',0,33),(121986,1789090,'Abby',1,34),(121986,1789091,'Dance Teacher',1,35),(121986,1217599,'Chef',0,36),(121986,1255312,'Crying Girl',1,37),(121986,1789092,'Computer Guy',0,38),(121986,205761,'Security Guard',0,39),(121986,163958,'Catering Boss',2,40),(121986,161939,'Congresswoman',1,41),(121986,1789093,'Young Man',0,42),(121986,1789094,'Co-Worker',1,43),(121986,96223,'Theater Manager',0,44),(121986,1789095,'Dance Duo',1,45),(121986,1789096,'Dance Duo',1,46),(121986,1789097,'Lighting Technician',0,47),(246403,2536,'Howard Howe',2,0),(246403,15033,'Wallace Bryton',2,1),(246403,9640,'Teddy',2,2),(246403,589162,'Allison',1,3),(246403,60286,'Frank Garmin',2,4),(246403,85,'Guy Lapointe',2,5),(246403,576173,'Colleen McKenzie / Girl Clerk #1',1,6),(246403,1459885,'Colleen Collette / Girl Clerk #2',1,7),(246403,23658,'Gimli Slider Waitress',0,8),(246403,23658,'Mrs. McKenzie / Gimli Slider Waitress',0,9),(35691,15905,'Maddy Doherty',1,0),(35691,46922,'Brady McDaniels',2,1),(35691,54479,'Samantha Perryfield',1,2),(35691,114604,'Olivia',1,3),(35691,114605,'Tyler Doherty',2,4),(35691,114606,'Ben Doherty',0,5),(35691,8853,'Mr. Perryfield',2,6),(35691,93679,'Lester Stevens',2,7),(35691,114607,'Carl Landers',0,8),(35691,114608,'Pastor Andy',0,9),(35691,114609,'Walter Finley',0,10),(35691,114610,'Carol Wallace',0,11),(35691,114611,'Jamie Lynn Byrnes',0,12),(35691,114612,'Miss Emily Holley',0,13),(35691,114613,'Erin Miller',0,14),(49010,585,'Hobo',2,0),(49010,20814,'Slick',2,1),(49010,60966,'Logan',2,2),(49010,117458,'Drake',2,3),(49010,232684,'Abby',0,4),(317930,1134885,'',0,0),(317930,1326885,'VIC',0,1),(317930,1134883,'',0,2),(317930,21315,'',2,3),(317930,229614,'',0,4),(317930,7166,'',2,5),(317930,39458,'',0,6),(317930,1240883,'',2,7),(317930,271,'',0,8),(82533,45400,'Violet',1,0),(82533,1094969,'Heather',1,1),(82533,25382,'Rose',1,2),(82533,124644,'Lily',1,3),(82533,1094968,'Frank',2,4),(82533,85752,'Jimbo',0,5),(82533,211993,'Priss',1,6),(82533,464993,'Rick DeWolfe',2,7),(82533,1115763,'Complainer Student',0,8),(82533,1094967,'Freak Astaire',2,9),(82533,119592,'Depressed Debbie',1,10),(82533,213214,'Xavier',0,11),(82533,449513,'Alice',1,12),(82533,210393,'Barman',0,13),(82533,11702,'Fred Packenstacker / Charlie Walker',2,14),(82533,141034,'Thor',2,15),(82533,1120699,'Positive Polly',1,16),(82533,61178,'Mad Madge',1,17),(82533,75611,'Groundskeeper',0,18),(82533,1588183,'Emily Tweeter',0,19),(82533,1588184,'Sharise',0,20),(50942,8977,'Dr Simon Chase',2,0),(50942,2109,'Dr. Amanda Mayson',1,1),(50942,10132,'Adm. Aaron Richland',2,2),(50942,157847,'Tall Man',2,3),(50942,108774,'Adam Puckett',2,4),(50942,39977,'Tauna',1,5),(50942,17040,'Maxwell Bishop',2,6),(50942,25382,'Elizabeth',1,7),(50942,44150,'Rollie Gibson',2,8),(50942,103833,'Ben Madiera',2,9),(50942,4808,'Lt. Thomas Peniston / Werewolf',2,10),(50942,76417,'Dr. Ernest Bishop',2,11),(50942,55843,'Bobby Tobin',2,12),(50942,955362,'Dr. Bastien',0,13),(50942,954794,'Nathan',0,14),(84174,205,'Regan Crawford',1,0),(84174,52848,'Katie Lawrence',1,1),(84174,51988,'Gena Myers',1,2),(84174,221581,'Becky Archer',1,3),(84174,36801,'Clyde Goddard',2,4),(84174,1215836,'Joe Barnes',0,5),(84174,11006,'Trevor Graham',2,6),(84174,43366,'Victoria',1,7),(84174,74930,'Dale Beaumont',2,8),(84174,83244,'Stefanie',1,9),(84174,990369,'Manny',2,10),(84174,1469244,'Theresa',0,11),(84174,120244,'Melissa',1,12),(84174,164481,'Sheila',0,13),(84174,83873,'Cool Stripper',0,14),(79940,132857,'',2,0),(79940,132856,'',2,1),(79940,4764,'Taquito',2,2),(79940,58225,'Jim Joe Kelly',2,3),(79940,23659,'Damien Weebs',2,4),(79940,1162,'Tommy Schlaaang',2,5),(79940,6719,'Dr. Doone Struts',2,6),(79940,4785,'Chef Goldblum',2,7),(79940,59410,'Schlaaang Announcer',2,8),(79940,7676,'Earle Swinter',2,9),(79940,938103,'Jeffery',0,10),(79940,938104,'Jason',0,11),(79940,99033,'Wolf Puppeteer',0,12),(79940,1115997,'Woman on Paris Street',0,13),(79940,984707,'Diamond Jim/ Johnny Depp',2,14),(79940,1301327,'Women Being Ticketed',0,15),(79940,1066329,'Studio Executive 2',0,17),(79940,67015,'Narrator',2,20),(79940,62831,'Allan Bishopman',2,21),(281230,7036,'Frank Stirn',2,1),(281230,105363,'Ruby Stirn',1,2),(281230,116882,'Anna Gerkey',1,3),(281230,1327400,'Sam Dolnick',0,4),(281230,20187,'Florie',1,5),(281230,5950,'Father Mivkovek',2,6),(38033,59252,'Jessie Campbell',1,0),(38033,65827,'Det. Jim Crenshaw',2,1),(38033,1370,'Mr. Smirker',2,2),(38033,22434,'Sergeant Hamill',1,3),(38033,78342,'Rachael Conners',1,4),(38033,48312,'Dante',2,5),(38033,119421,'Johnny Jones',2,6),(38033,39126,'Jai Pham',1,7),(100975,15370,'Hedy Coletti',0,0),(100975,5699,'Sylvia Levine Polinsky',1,1),(100975,21490,'Phil De Lorenzo',2,2),(100975,57136,'Lenny Levine',0,3),(100975,1388505,'Mort Polinsky',0,4),(100975,1388506,'Mrs. Edelberg',0,5),(100975,77013,'Mrs. Braverman, Lenny\'s Teacher',1,6),(38541,37014,'Eva',1,0),(38541,2712,'Mickey',2,1),(38541,16501,'Josh',2,2),(38541,24047,'Delvin',2,3),(38541,225,'Adrien',2,4),(38541,2165,'Marilyn',1,5),(38541,1020716,'Sam',2,6),(38541,67979,'Bobby',2,7),(38541,1020717,'Wendi',0,8),(38541,130024,'Liz',1,9),(39563,8785,'Michael Farr',2,0),(39563,18992,'Nicholas Holden',2,1),(39563,1562,'Lena Morelle',1,2),(39563,14950,'Malachy',2,3),(39563,1167019,'Jenny Sewell',0,4),(234212,49,'Dr. Elizabeth Klein',1,1),(234212,81685,'Detective Mark Lewis',2,2),(234212,582816,'Michelle',1,3),(234212,53117,'John',2,4),(234212,55615,'Jules',1,5),(234212,41464,'Bryan',2,6),(234212,54247,'Donnie',2,7),(234212,1467025,'Sam',0,8),(234212,1268071,'Sara Mathews',1,9),(234212,1411625,'Jenkins',2,10),(234212,97927,'Peter',2,11),(234212,97925,'Henry',0,12),(234212,76021,'Reeves',2,13),(234212,1467026,'Luke Elton',0,14),(170480,32897,'Gianni DiCarlo',2,0),(170480,3094,'Dina',1,1),(170480,55259,'Ernesto',2,2),(170480,179508,'Maury',2,3),(170480,1300070,'Juan',0,4),(170480,37043,'Priest',2,5),(170480,17920,'Cynthia',1,6),(170480,4688,'Himself',2,7),(170480,131787,'Fernando',2,8),(170480,64344,'Agent Michael Levinrothsteinberg',2,9),(170480,2555,'Chabuyo',2,10),(170480,78335,'INS Agent Lopez',2,12),(170480,1300072,'Ana',0,13),(170480,81416,'Italian Dwarf',2,15),(170480,1300074,'TV News Anchor',0,16),(170480,1300075,'Theophelies',0,17),(170480,75309,'Sheriff',2,18),(170480,109901,'Enrico',2,19),(71866,108916,'Fernanda',1,0),(71866,73462,'Victoria',1,1),(71866,60073,'Kate',1,2),(71866,230060,'Lucasta',1,3),(71866,1103656,'Dart Girl',0,4),(71866,1103657,'Townie',0,5),(71866,935531,'Townie\'s Friend',0,6),(71866,101231,'Victoria\'s Grandmother',1,7),(71866,1103658,'Guest at Baptism and Wedding',1,8),(71866,63508,'Fair Patron',0,9),(71866,16857,'Gio',2,10),(71866,61111,'Gwen',1,11),(192210,38670,'Angie',1,0),(192210,1271,'Chuck',2,1),(192210,83225,'David',2,2),(192210,3196,'Jill',1,3),(192210,130040,'Glu00f3ria',1,4),(192210,557586,'Su00f4nia',0,5),(192210,47879,'Carl',2,6),(192210,101625,'Louise',1,7),(192210,66556,'Diner Waitress',0,8),(192210,154829,'Ronny Rapist #1',0,9),(192210,47769,'Georgia',0,10),(180296,22226,'Joel',2,0),(180296,56322,'Molly',1,1),(180296,19278,'Kyle',2,2),(180296,475512,'Karen',1,3),(180296,71189,'Tiffany',1,4),(180296,66524,'Melanie',1,5),(180296,111683,'Bob',0,6),(180296,22224,'Trevor',2,7),(180296,113224,'Habermeyer',1,8),(180296,79082,'Martinson',2,9),(180296,22227,'Roland',2,10),(180296,970219,'Wanda',1,11),(180296,27105,'Eggbert',2,12),(180296,22214,'Keith',2,13),(180296,58737,'Oliver',2,14),(180296,77330,'Teddy',2,15),(180296,77089,'Tommy',2,16),(180296,1000883,'Bartender',2,17),(180296,1213603,'Jake',2,18),(180296,15091,'Brenda',1,19),(180296,1215797,'Valerie',1,20),(180296,1479138,'Barista',0,21),(180296,1475102,'Katherine',0,22),(180296,1479139,'Tucker',0,23),(180296,6212,'Waiter With Pole',2,24),(180296,20472,'Herself',0,25),(180296,36801,'Sound Engineer',2,26),(180296,32600,'Assistant Engineer',2,27),(180296,164039,'Pam',1,28),(180296,4776,'Roger',2,29),(180296,163808,'Mexican Waiter',2,30),(180296,8792,'Bubby',1,31),(180296,47296,'Frank',2,32),(180296,335,'Spike',2,33),(180296,1359352,'Police Officer',1,34),(180296,1223687,'Herself (as Judge Judy Sheindlin)',0,35),(157058,63239,'Dana Galen',1,0),(157058,552135,'Aaron Galen',0,1),(157058,932695,'Liz Galen',1,2),(157058,1126417,'Felipe',0,3),(157058,13645,'Sluggy Kornnutz',2,4),(157058,67711,'Herb',2,5),(157058,1142822,'Taylor',0,6),(157058,1142823,'Evan',0,7),(157058,120720,'Detective',0,8),(157058,995359,'Effie Trinket',1,9),(157058,1589963,'Annie',1,10),(157058,108210,'Ryan',2,11),(70006,557803,'Receptionist',0,0),(70006,557804,'Frankie',2,1),(70006,52483,'Cop',2,2),(70006,557805,'Fighter',0,3),(70006,133382,'D.J. Bravo',0,4),(70006,64856,'Case',2,5),(70006,935293,'Mike Stokes',2,6),(70006,84217,'Zack Gomes',2,7),(70006,935294,'Justin Epstein',0,8),(70006,88079,'Tim Newhouse',2,9),(70006,55089,'Max Cooperman',2,10),(79587,57345,'Jacopo',2,0),(79587,11886,'Dom',2,1),(79587,151433,'Ennio',2,2),(79587,37157,'George',0,3),(79587,18285,'Suzanne',1,4),(79587,1674426,'Parent at school recital',2,5),(176077,134235,'Jim Whitman',2,0),(176077,59252,'Wendy',1,1),(176077,34199,'Jake',2,2),(176077,2154,'Kevin',2,3),(176077,19143,'Dr. Dubrow',2,4),(176077,180486,'Adrienne',1,5),(260947,94423,'Christine',1,0),(260947,19197,'James',2,1),(260947,105641,'Bill',2,2),(260947,328,'Susan',1,3),(260947,23899,'John Anderson',2,4),(260947,79905,'Ellen',0,5),(260947,1304140,'Valet',0,6),(260947,121611,'Sheriff',2,7),(260947,1169522,'Ed / Campus security',0,8),(260947,1233494,'Dave',0,9),(260947,980356,'Minister',2,10),(260947,1304141,'Nurse',0,11),(260947,1304142,'Cop',0,12),(260947,1304143,'Cop',0,13),(260947,47628,'Ryan',2,14),(342502,10843,'Conrad Miller',2,0),(342502,150,'Det. Adams',2,1),(342502,71913,'Myron',2,2),(342502,54649,'Ray',2,3),(342502,224753,'Sam',1,4),(342502,54809,'Apache',2,5),(342502,1472256,'Slave',1,6),(342502,1172720,'Laura Wilder',0,7),(342502,144503,'Monica',1,8),(342502,1290125,'Natasha',0,9),(191229,5616,'Oberlus',2,0),(191229,21181,'Gamboa',2,1),(191229,147,'Sebastiu00e1n',2,2),(191229,8927,'Captain \'Old Lady II\'',2,3),(43213,7164,'Lou Marazano',2,0),(43213,17920,'Lorraine Lionello',1,1),(43213,5170,'Lorenzo Galante',2,2),(43213,825,'Ray Berkowski',2,3),(43213,23346,'Stefano D\'Agnostino',2,4),(43213,16477,'Ralph Maloney',2,5),(44594,17178,'Barry Munday',2,0),(44594,56890,'Mr. Farley',2,1),(44594,20750,'Ginger Farley',1,2),(44594,2838,'Jennifer Farley',1,3),(44594,1294,'Lida Griggs',1,4),(44594,3492,'Heavy Metal Greg',2,5),(44594,5376,'Carol Munday',1,6),(44594,3799,'Lonnie Green',0,7),(44594,1036,'Mrs. Farley',1,8),(44594,28639,'Iconic Beauty',1,9),(44594,6108,'Deborah',1,10),(44594,74242,'Donald',2,11),(44594,1519588,'Lucy',1,12),(44594,4443,'Dr. Preston Edwards',2,13),(44594,61835,'Moe',2,14),(44594,12801,'Spiro',2,15),(44594,35521,'Kyle Pennington',2,16),(44594,22297,'Jerry Sherman',2,17),(44594,154590,'Maury Knox',2,18),(44594,154697,'Roadie #1',2,19),(44594,54696,'Roadie #2',2,20),(44594,113818,'Janice the Midwife',1,21),(44594,52404,'Candice',1,22),(44594,134045,'Barry\'s Nurse',1,23),(44594,1754082,'Secretary #1',1,24),(44594,1227552,'Greens Keeper',0,25),(44594,9612,'Doctor #2',2,26),(44594,1752319,'Waitress',1,27),(44594,79493,'Strip Club Dancer',1,28),(44594,154970,'Young Girl',1,29),(44594,154799,'D.J.',2,30),(44594,9567,'Driver',2,31),(44594,202061,'Bennie',1,32),(44594,1375163,'Sasha',1,33),(44594,1020781,'Young Jennifer',1,34),(44594,1709696,'Makeout Girl',1,36),(44594,20628,'Father Walsh',2,37),(44594,1753771,'Pediatric Nurse',0,38),(44594,106474,'Dr. Shriver',2,39),(44594,1777728,'Beautiful Girl',1,40),(44594,1777731,'Bar Emcee',2,41),(44594,1462288,'Doctor',0,42),(44594,122593,'Candice\'s Father',0,43),(44594,1777732,'Tammy',0,44),(44594,198799,'Bouncer',0,45),(44594,77596,'Bouncer #2',2,46),(44594,986793,'Child Bodybuilding Pageant Announcer',0,47),(44594,1777735,'Denise',1,48),(44594,131060,'Newton Creech',2,49),(44594,1777736,'Office Manager',0,50),(44594,1264553,'Barry',0,51),(44594,1777737,'Tracy',1,52),(44594,1777738,'Bar Patron',0,53),(44594,1777741,'Cornelia',1,54),(44594,1777744,'Ex-girlfriend',1,55),(44594,170432,'Felicia',2,56),(325173,78110,'Colton MacReady',2,1),(325173,18461,'Sheriff Jasper Calloway',2,2),(325173,946263,'Angela Reynolds',2,3),(325173,52409,'Walt Reynolds',2,4),(325173,78498,'Fernando Garcia',2,5),(325173,1426494,'Hailey Reynolds',1,6),(55831,30585,'Marilyn',1,0),(55831,40403,'Lois',1,1),(55831,46946,'Harry',2,2),(351043,7517,'Woman',1,1),(351043,8210,'Man',2,2),(351043,42820,'Detective',2,4),(351043,18262,'Postman',2,5),(351043,5274,'Doctor',0,6),(351043,1502916,'Audrey',0,7),(43942,226772,'Blake',0,0),(43942,226773,'High School Girl',0,1),(43942,226774,'Mercedes',0,2),(43942,226775,'Deshawn',0,3),(43942,226776,'Student',0,4),(43942,226777,'High School Girl',0,5),(43942,226778,'Jake',0,6),(43942,226779,'Lexus',0,7),(43942,226780,'Johnny the Mechanic',0,8),(43942,226781,'Jake',0,9),(43942,209255,'Temptress\' Mother',0,10),(43942,226782,'Himself',0,11),(43942,226783,'Loser',0,12),(43942,226784,'Himself',0,13),(43942,226785,'Boyfriend',0,14),(43942,226786,'High School Girl',0,15),(43942,226787,'All American Dad',0,16),(43942,226788,'Father',0,17),(43942,5296,'Himself',2,18),(66942,133212,'Griff',2,0),(66942,81331,'Melody',1,1),(66942,227099,'Benson',2,2),(66942,61350,'Bronwyn',1,3),(66942,221032,'Tim',2,4),(66942,1034194,'Gina',1,5),(356483,1736,'Martin Nakos',2,1),(356483,6681,'Dr. Hannah Lindval',1,2),(356483,93934,'Brooking',0,3),(356483,6804,'Buffalo',2,4),(356483,1378128,'Quincy',1,5),(356483,6719,'Victor Clobirch',2,6),(356483,1524094,'Ella',0,7),(356483,69225,'Lily',1,8),(356483,1357513,'DeLana',0,9),(356483,66585,'Nate',2,10),(55306,8949,'Ulee Jackson',2,0),(55306,134178,'Connie Hope',1,1),(55306,150061,'Helen Jackson',1,2),(55306,43772,'Jimmy Jackson',0,3),(55306,10860,'Casey Jackson',1,4),(55306,130104,'Penny Jackson',1,5),(55306,155949,'Eddie Flowers',2,6),(55306,167676,'Ferris Doley',2,7),(55306,97944,'Sheriff Bill Floyd',2,8),(55306,173807,'Chance Barrow',2,9),(55306,1201464,'Charley Myers',0,10),(55306,1604113,'Mark',0,11),(43306,12147,'Pete Sandidge',2,0),(43306,77158,'Dorinda Durston',1,1),(43306,37446,'Ted Randall',2,2),(43306,4303,'Al Yackey',2,3),(43306,30537,'\'Nails\' Kilpatrick',2,4),(43306,17753,'The General',2,5),(43306,10411,'Dick Rumney',2,6),(43306,129520,'Ellen Bright',1,7),(43306,20368,'Col. Sykes',2,8),(43306,96850,'James J. Rourke',0,9),(43306,85958,'Sanderson',0,10),(43306,97007,'Maj. Corbett',2,11),(43306,30530,'Henderson',2,12),(43306,1472518,'Girlfriend of Rourke',1,13),(209274,1192772,'Anna',1,0),(209274,566101,'Wanda',1,1),(209274,908548,'Singer',1,2),(209274,1277198,'Musician',2,3),(209274,1190325,'Feliks Skiba',0,4),(209274,2831,'Szymon Skiba',2,5),(209274,136735,'Militia Man',0,6),(209274,1501775,'Kaska',0,7),(209274,1537080,'Mother Superior',0,8),(209274,1570930,'Bronia',0,9),(72914,567557,'Joe Cross',2,0),(72914,567560,'Phil Riverstone',0,1),(72914,1298586,'Amy Badberg',0,2),(72914,1298587,'Merv Cross',0,3),(72914,1298588,'Virginia Cross',0,4),(139038,9562,'Malcolm',2,0),(139038,154000,'Keisha',1,1),(139038,32907,'Chip the Psychic',2,2),(139038,5726,'Father Williams',2,3),(139038,28638,'Dan the Security Man',2,4),(139038,35701,'Kisha\'s Mom',2,5),(139038,1107486,'Carmita',0,6),(139038,1080246,'Juanita',0,7),(139038,146004,'Rosa',1,8),(139038,98394,'Ray-Ray',2,9),(139038,1110105,'Kisha\'s Mom',0,10),(139038,1110108,'Thug',0,11),(139038,1110109,'Entity',2,12),(139038,1110110,'Egon',0,13),(139038,928306,'Little Kisha',0,14),(139038,95875,'Steve',2,15),(181330,55638,'Himself',2,0),(181330,1174141,'Dapper Guy',0,1),(181330,1174142,'Disc Jockey',0,2),(181330,1174143,'Angry Light-Skinned Girl',0,3),(181330,1320506,'Plastic Cup Boyz',0,5),(181330,1320508,'Plastic Cup Boyz',0,7),(181330,1108643,'Plastic Cup Boyz',0,8),(50538,142995,'Thomas Roy',2,0),(50538,32885,'Dr. Paul Lacasse',2,1),(50538,946252,'Jeanne Marcoux',1,2),(50538,79618,'Pu00e8re Lemay',0,3),(50538,1152739,'Charles Monette',0,4),(50538,1152740,'Patrick Michaud',0,5),(50538,94884,'Pu00e8re Boudreault',0,6),(50538,32888,'Pu00e8re Pivot',0,7),(50538,123921,'Louis Archambault',2,8),(50538,1152741,'Madame Hu00e9nault',0,9),(50538,1152726,'Infirmiu00e8re Nicole',0,10),(50538,936312,'Claudette Roy',0,11),(50538,1152742,'Jeune Pu00e8re Lemay',0,12),(50538,145749,'Inspecteur Goulet',0,13),(50538,1152743,'Steve',0,14),(50538,1024249,'Nurse',1,15),(84329,8924,'Frank',2,0),(84329,882,'Madison',1,1),(84329,11006,'Hunter',2,2),(84329,4038,'Jennifer',1,3),(84329,133,'Robot (voice)',2,4),(84329,239271,'Jake',2,5),(84329,23958,'Sheriff Rowlings',2,6),(84329,1060475,'Ava',1,7),(84329,995205,'Flattop',2,8),(84329,1094159,'Robot',0,9),(84329,1094160,'Freckles',0,10),(84329,77795,'Shopgirl',1,11),(84329,1145459,'Reception Guest',0,12),(84329,86267,'Shoplady',1,13),(84329,1168927,'Additional Robot',0,14),(157386,996701,'Sutter Keely',2,0),(157386,94185,'Aimee Finecky',1,1),(157386,60073,'Cassidy Roy',1,2),(157386,1030512,'Marcus West',2,3),(157386,198855,'Ricky Mehlinger',0,4),(157386,3497,'Tommy Keely',2,5),(157386,10431,'Sara Keely',1,6),(157386,17628,'Holly Keely',1,7),(157386,74957,'Mr. Aster',2,8),(157386,59410,'Dan',2,9),(157386,481337,'Krystal Krittenbrink',1,10),(157386,1178797,'Tara Thompson',0,11),(157386,1343524,'Bethany Marks',0,12),(157386,1343525,'Mrs. Finecky',0,13),(157386,1343527,'Erik Wolff',2,14),(157386,41020,'Doctor',2,15),(157386,168875,'Joe',2,16),(157386,1343528,'Cody',0,17),(157386,1343531,'Bus Driver',0,18),(157386,1343532,'Shane Finecky',0,19),(157386,1343536,'Bartender',0,20),(157386,1343541,'Roberta',1,21),(157386,1343542,'Customer',2,22),(157386,1005324,'Additional Voices (voice)',0,23),(157386,1343544,'Additional Voices (voice)',0,24),(157386,1343547,'Additional Voices (voice)',0,26),(157386,59065,'Additional Voices (voice)',1,27),(157386,83605,'Drunk Man',0,28),(157386,88030,'Additional Voices (voice)',2,29),(116584,4935,'Albion Munson',2,0),(116584,32458,'Jack Pacheco',2,1),(116584,75311,'Helen Walsh',0,2),(116584,2958,'Natalie Walsh',1,3),(46849,58899,'Alyssa',1,0),(46849,42566,'Dr. James Hawk',2,1),(46849,2247,'Daniel',2,2),(46849,9594,'Lucy',0,3),(46849,87194,'Tamika',1,4),(46849,43775,'Glinton',1,5),(46849,74288,'Candace',1,6),(46849,1386223,'Coakley',0,7),(46849,1267610,'Decker',0,8),(46849,1386225,'Cornelia',0,9),(46849,1215943,'Principal McGowan',0,10),(46849,64352,'Dolphin Tourist',0,11),(46849,1386226,'Tourist at Bar',0,12),(46849,1386227,'Village Boy',0,14),(46849,1386228,'Shelby',0,15),(46849,1602800,'Tourist at Bar',0,17),(40428,123992,'Himself',0,0),(40428,123993,'Himself',0,1),(40428,123994,'Himself',0,2),(40428,123995,'Himself',0,3),(40428,123996,'Herself',0,4),(40428,123997,'Narrator',2,5),(45132,11678,'Frank Darbo',2,0),(45132,27578,'Libby',1,1),(45132,882,'Sarah',1,2),(45132,4724,'Jacques',2,3),(45132,2518,'Detective John Felkner',2,4),(45132,12132,'Abe',2,5),(45132,74957,'Hamilton',2,6),(45132,51663,'Toby',2,7),(45132,85096,'Quill',2,8),(45132,932102,'Mr. Range',0,9),(45132,1817,'Pet Store Employee',1,10),(45132,51797,'The Holy Avenger',2,11),(45132,968692,'Cop',2,12),(45132,1110284,'Young Frank',2,13),(45132,1133460,'Frank Sr.',0,14),(45132,1363393,'Teenage Frank',0,15),(45132,15218,'Demonswill',2,16),(45132,1363394,'Holly',1,17),(45132,1237281,'Jim',0,18),(45132,180355,'Jesus / Guy In Line',2,19),(45132,16848,'Voice Of God',2,20),(45132,559457,'Comic Book Store Jerk',0,21),(45132,61102,'Librarian',1,22),(45132,1033470,'Passenger Teen',0,23),(45132,110183,'Driving Teen',2,24),(45132,112286,'Nathaniel',2,25),(45132,86278,'Purse-snatcher',2,26),(45132,109785,'Wheelchair Woman',0,27),(45132,61570,'Chickenhawk',0,28),(45132,1363396,'Chicken',0,29),(45132,1363397,'Transvestite',0,30),(45132,1352105,'Sarah\'s Sister',1,31),(45132,1363398,'Newscaster',0,32),(45132,98653,'Line Butter',2,33),(45132,85101,'Line Butter\'s Girlfriend',1,34),(45132,1270862,'Waitress',0,35),(45132,1358928,'Long-haired Hood',2,36),(45132,1363399,'Libby\'s Friend',0,37),(45132,558904,'Christian',0,38),(45132,70303,'Jerry',2,39),(45132,78021,'911 Man',2,40),(45132,1271752,'Range\'s Technician',0,41),(45132,1363400,'Thug Jumped On By Boltie',0,42),(45132,9567,'Thug Set On Fire',2,43),(45132,1207723,'Thug #1',0,44),(45132,1363404,'Thug Missing Arms',2,45),(45132,45415,'Sgt. Fitzgibbon',2,46),(45132,1334091,'Stoner Girl',1,47),(76706,71128,'Kristi North',1,0),(76706,60460,'Matt Sanders',2,1),(76706,305275,'Sally',1,2),(76706,22074,'Heather',1,3),(76706,58058,'Pan Fuller',2,4),(76706,84849,'Emily',1,5),(76706,190304,'Mama',0,6),(76706,94149,'Hunt',0,7),(254472,71467,'Paul',2,0),(254472,1382112,'Julia',0,1),(254472,2714,'Caruthers',2,2),(254472,5365,'Sydney',2,3),(254472,116312,'Mr. Markham',0,4),(254472,1382114,'Flora',0,5),(254472,1382115,'Mrs. Markham',1,6),(254472,42879,'Gweneth',1,7),(254472,1682218,'Mrs. Perch',0,8),(254472,1682221,'Larry',0,9),(254472,1682229,'Doc Withney',0,10),(254472,1682234,'Gardener 1',0,11),(254472,1682236,'Gardener 2',0,12),(254472,1290942,'Firefighter',0,13),(332285,10871,'Lou',1,1),(332285,2838,'Sadie',1,2),(332285,39117,'Lorna',1,3),(332285,4451,'Gabriel',2,4),(332285,53577,'Warren',2,5),(332285,1510492,'Luke',2,6),(332285,38563,'Isaac',2,7),(332285,1570331,'Jade',0,8),(332285,1570332,'Jackson',0,9),(332285,1240336,'Anha',0,10),(332285,1567038,'Trish',0,11),(332285,87573,'Donna',1,12),(332285,1447892,'Funzone Ape #2',0,13),(332285,1570333,'Fat Man',0,14),(332285,1570334,'Addict',0,15),(332285,1570335,'Dive Bar Biker',0,16),(332285,1570336,'Waitress',0,17),(332285,1567041,'Masked Kidnapper',0,18),(49471,15531,'Jeremiah',2,0),(49471,17764,'George',2,1),(49471,6861,'Flip',2,2),(49471,32396,'Rick',2,3),(49471,93538,'Junior, aka \'Smooth\'',2,4),(49471,98889,'Evan Thomas Sr.',0,5),(49471,21353,'Kyle',2,6),(49471,1897,'Jay',2,7),(49471,17859,'Wendell',2,8),(49471,9464,'Randall',2,9),(49471,40377,'Gary',2,10),(49471,57686,'Xavier',2,11),(49471,18272,'Jamal',2,12),(49471,15536,'Mike',2,13),(49471,8354,'Craig',2,14),(49471,31029,'Shelly Maxwell',1,15),(49471,45245,'Jamilia',1,16),(49471,13602,'Jindal',1,17),(356216,1471194,'Reggie Kray',0,0),(356216,1502429,'Ronnie Kray',0,1),(356216,1502430,'Dickie',0,2),(356216,77821,'Leonard',2,3),(356216,1502454,'Teddy',0,5),(356216,1502455,'Lisa Prescott',0,6),(356216,1502456,'Sergio',2,7),(356216,1465954,'Vittor',0,8),(356216,1502457,'Carol',0,9),(356216,1502459,'Charlie Richardson',0,10),(356216,1112035,'Tommy',0,11),(356216,1495604,'Pub Customer',0,12),(356216,135174,'Violet Kray',1,13),(146631,1084848,'Carrie',1,0),(146631,323331,'Michael',2,1),(146631,1017259,'Robin',0,3),(146631,15111,'George',2,4),(146631,203160,'Kenny',0,5),(146631,29406,'Police Officer / Black Ops Soldier',2,6),(146631,28848,'Tramp',2,7),(146631,740,'John Jones',2,8),(146631,1252526,'Neff',0,9),(146631,1265254,'Bartholomew',0,10),(146631,1323680,'Bouncer',0,11),(146631,1691342,'Dana',0,12),(146631,1189477,'Vincent',0,13),(146631,70519,'Sam',2,14),(146631,1691344,'Young girl',0,15),(146631,73709,'Mr. Peterson',2,16),(146631,75068,'Matilda',0,17),(146631,1367448,'Matilda\'s Boyfriend',0,18),(146631,1691356,'Salma',0,19),(146631,591346,'Terry',2,20),(146631,1691358,'Andy',0,21),(146631,1265256,'Bouncer / Black Ops Officer',0,22),(146631,1691361,'Skateboarder',0,23),(146631,1691362,'Ray',0,24),(146631,1364952,'Skateboard Cameraman',0,25),(146631,1691363,'Young Girls\'s Father',0,26),(146631,1191177,'Young Girl\'s Mother',0,27),(146631,1691364,'Jerry',0,28),(146631,1691365,'Horrace',0,29),(146631,1691371,'Dean',0,30),(146631,1417085,'Night Club Reveller',0,31),(146631,118154,'Nightclub Dancer',0,32),(43546,105636,'Steve Elliott',2,0),(43546,129520,'Caroline Brooks',1,1),(43546,8727,'George Adams',2,2),(43546,34287,'Professor Willis Evans',2,3),(43546,120549,'Jean Allenwood',0,4),(43546,88461,'Dean Clinton',1,5),(43546,1061273,'Carlos Ramu00edrez',0,6),(43546,990584,'Ethel Smith - Music Teacher',1,7),(43546,1012321,'Lina Romay',1,9),(43546,1238720,'Helen Forrest',0,11),(43546,14968,'Chester Klazenfrantz',2,12),(43546,104155,'Maria Dorango',1,13),(43546,34422,'Professor Hendricks',2,14),(43546,124736,'Mme. Zarka',0,15),(43546,10804,'Mrs. Allenwood',1,16),(43546,1020393,'Bunny',0,17),(43546,84659,'Janis',1,18),(43546,579763,'Orchestra Leader',2,19),(43546,1227384,'Harry James',2,20),(43546,3346,'Ms. Hanney (uncredited)',2,21),(43546,1278362,'Co-Ed (uncredited)',0,22),(43546,1306178,'Co-Ed (uncredited)',0,23),(43546,93624,'Adams Club Maitre d\' at (uncredited)',0,24),(61038,56457,'Carmen Salgado',1,0),(61038,16646,'Frank Martin',2,1),(61038,167325,'Loli',1,2),(61038,180486,'Gina',1,3),(78373,33654,'Keller Coleman',2,0),(78373,56857,'Terrell Lee Lusk',2,1),(78373,87018,'John Hemphill',2,2),(78373,58019,'Squirrel',2,3),(78373,34486,'Josie Hemphill',1,4),(78373,33487,'Mrs. Lusk',1,5),(78373,21710,'Mr. Lusk',2,6),(78373,8692,'Earl',2,7),(78373,69399,'Vivian',1,8),(78373,83459,'Sue Ann',1,9),(74457,61981,'Augy',2,0),(74457,1076342,'Jefferson Bailey',2,1),(74457,31168,'Hannah',1,2),(74457,343,'Jackie',1,3),(74457,8395,'Boyd',2,4),(74457,4139,'Santa',2,5),(74457,98175,'Security Guard',0,6),(283384,4038,'Hazel Micallef',1,1),(283384,6575,'Detective Ray Green',2,2),(283384,9560,'Emily Micallef',1,3),(283384,17052,'Ben Wingate',2,4),(283384,55636,'Father Price',2,5),(283384,32887,'Simon',2,6),(283384,1130510,'Rose Batten',1,7),(283384,34915,'Grace Batten',1,8),(283384,1384357,'Melanie Cartright',0,9),(283384,1232769,'Dale Varney',1,11),(283384,63546,'Dale Varney',2,12),(283384,1384518,'Police Officer',0,13),(283384,1384535,'Jolene',0,14),(283384,1362948,'Jane Buck',1,15),(283384,1233146,'Officer Mathieson',2,16),(283384,189720,'Spere',0,17),(283384,1384536,'Mason\'s Secretary',0,18),(283384,130365,'Father Glendinning',2,19),(283384,190900,'Ian Mason',2,20),(283384,33343,'Andrew Pederson',2,21),(283384,131009,'Glynnis Pederson',1,22),(283384,186502,'Bob Chandler',0,23),(283384,1840491,'Annie Iagnemma',0,24),(283384,1362945,'Delia Chandler',0,25),(433715,1500111,'Amber',0,1),(433715,1734573,'BB',0,2),(433715,1734574,'Sugar',0,3),(433715,1734575,'Drew',0,4),(309425,23931,'Samantha',1,1),(309425,1328,'Dr. Farell',2,2),(309425,57674,'Lacy',1,3),(309425,1036,'Teri',1,4),(309425,87400,'Joe',2,5),(309425,18792,'Malachi',2,6),(309425,18589,'J.D.',2,7),(309425,18982,'Matthew',2,8),(309425,115840,'Kriminal',0,9),(309425,1432386,'Elena',0,10),(309425,142956,'Andrea',0,11),(309425,1561545,'Bobby',0,12),(309425,1779429,'Grace',0,13),(309425,1419742,'Lilly',1,14),(309425,74929,'Maggie',1,15),(309425,1224952,'Pretty Boy',0,16),(309425,73127,'Carlos',2,18),(43610,93805,'Mary Rafferty',1,0),(43610,8487,'Paul Scott',2,1),(43610,8841,'William Scott',0,2),(43610,17753,'Pat Rafferty',2,3),(43610,33004,'Jim Brennan',2,4),(43610,1215925,'Constance Scott',0,5),(43610,3366,'Clarissa Scott',1,6),(43610,5832,'McCready',0,7),(43610,64212,'William Scott Jr.',2,8),(43610,5698,'Louise Kane',1,9),(43610,74622,'Delia',1,10),(43610,84233,'Ted Scott',2,11),(43610,105462,'Kate Shannon',1,12),(43610,129675,'Mrs. Callahan',0,13),(43610,129676,'Giles',0,14),(43610,13969,'Mr. Laurence Gaylord',2,15),(43610,129677,'Julia Gaylord',0,16),(43610,22603,'Callahan',2,17),(43610,923,'Paulie',2,18),(43610,103938,'Mrs. Laurence Gaylord',0,19),(360339,84698,'Elena',1,0),(360339,119586,'Andreas',2,1),(360339,935201,'Arnie',2,2),(360339,77277,'Slim',2,3),(360339,82700,'Fu00e9lix',2,4),(360339,1522920,'Doug',2,5),(360339,229746,'McKenna',0,6),(360339,1039097,'DiStefano',0,7),(360339,1223789,'Kennefick',2,8),(360339,1434820,'Brian Patton',2,9),(360339,1522919,'Eva',0,10),(360339,103388,'Georgie',2,11),(360339,1323530,'Stephan',0,12),(360339,1522921,'Sevy',0,13),(297621,17270,'Catherine Brown',1,0),(297621,222129,'Noah Bernstein',2,1),(297621,18980,'Lee Ann',1,2),(297621,20848,'Emily',1,3),(297621,29221,'Jody',1,4),(297621,932091,'Dylan',2,5),(297621,50095,'Garret',2,6),(297621,87669,'Sally',1,7),(297621,18262,'Mr. Harmon',2,8),(297621,984582,'Ryan',0,9),(297621,984422,'Ron Kleynerman',2,10),(297621,66528,'Alex',2,11),(297621,1302220,'Biker',0,12),(297621,63674,'Sally',1,13),(297621,206624,'Frank',2,14),(297621,1373201,'Jared',0,15),(297621,1379479,'French Girl',0,16),(297621,1379480,'Acting Coach',0,17),(297621,179549,'Homeless Pete',2,18),(297621,1379481,'Biker',0,19),(297621,1379482,'Band Member',0,20),(297621,1379483,'Band Member #3',0,21),(297621,65817,'Turner',2,22),(297621,1379485,'Band Member #2',0,23),(297621,1379486,'Band Member #4',0,24),(364083,1523137,'Roe Ramirez',0,1),(364083,87886,'Tom Anderson',0,2),(364083,1523142,'Detective Mackay',0,3),(364083,1523143,'Teddy Anderson',0,4),(364083,1506492,'June Ramirez',0,5),(69640,55392,'Sofia Delgado',1,0),(69640,62747,'Ethan McAllister',2,1),(69640,75604,'Rafael Reyes',2,2),(69640,2137,'Hector Delgado',2,3),(69640,189794,'Eva Reyes',1,4),(347548,1244469,'Sally',0,0),(347548,93177,'Mark',2,1),(347548,47404,'Enid',1,2),(347548,218345,'Hazel',1,3),(347548,1495607,'Angry Resident',1,4),(347548,1312526,'Sergei',0,5),(347548,1642036,'Aiden',2,6),(347548,1561080,'Sinead',0,7),(322443,5296,'Wyatt',2,1),(322443,1027457,'',0,2),(322443,15760,'Samuel',2,3),(322443,125684,'Patrick The Bear',0,4),(322443,192937,'',2,5),(322443,1715,'',2,6),(322443,140409,'Jim Broadswell',0,7),(322443,33394,'Maggie',1,8),(270303,1094091,'Jay Height',1,0),(270303,132712,'Paul',2,1),(270303,1172147,'Greg Hannigan',0,2),(270303,133980,'Hugh',2,3),(270303,1210610,'Yara',1,4),(270303,1361099,'Kelly Height',1,5),(270303,1361100,'Annie',1,6),(270303,1111695,'Mrs. Height',1,7),(270303,76674,'Mr. Height',2,8),(270303,1588355,'Mrs. Hannigan',1,9),(270303,1588352,'Mrs. Redmond',1,10),(270303,1329297,'Annie\'s Father',2,11),(270303,1588334,'Woman with Groceries',1,12),(270303,1588347,'Old Woman in Pajamas',1,13),(270303,558930,'Greg\'s Date (Pretty Girl in Car)',1,14),(270303,1151497,'Homeless Man Behind Tree',2,15),(270303,1588351,'Nurse',1,16),(270303,1588356,'Police Officer',0,17),(270303,1588357,'Neighbor Boy',0,18),(270303,1588358,'Chatting Girl',0,19),(270303,1588359,'Girl in Kitchen',0,20),(270303,1588360,'Giant Man',0,21),(270303,1588361,'Old Naked Man',0,22),(270303,76677,'Teacher',0,23),(270303,1522638,'Scrub Nurse (uncredited)',0,24),(270303,1588362,'Billy (uncredited)',2,25),(270303,1588363,'Hot Girl (uncredited)',0,26),(270303,1588364,'Hot Guy (uncredited)',0,27),(270303,1483629,'High School Announcer (uncredited)',0,28),(92182,550843,'Sarah',1,0),(92182,27858,'John',2,1),(92182,204405,'Peter',0,2),(92182,992718,'Sophia',1,3),(92182,114603,'Stalking Man',0,4),(92182,1043691,'Little Girl',1,5),(72213,78040,'Adam Mitchell',2,0),(72213,525139,'Nathan Hayes',2,1),(72213,441898,'David Thomson',2,2),(72213,235548,'Shane Fuller',2,3),(72213,363929,'Dylan Mitchell',0,4),(72213,525138,'T.J',2,5),(72213,525135,'Frank Tyson',2,6),(72213,570803,'Kayla Hayes',0,7),(72213,525137,'Antonie',2,8),(72213,930216,'Javier Martinez',0,9),(72213,1074182,'Carmen Martinez',0,10),(72213,971815,'Emily Mitchell',1,11),(72213,1074183,'Girl Crying at Funeral',0,12),(72213,1074184,'Girl at Funeral',0,13),(72213,971814,'Victoria Mitchell',1,14),(72213,1074185,'Pastor Hunt',0,15),(55604,11492,'Big John McMasters',2,0),(55604,12147,'Square John Sand',2,1),(55604,30155,'Betsy Bartlett',1,2),(55604,89088,'Karen Vanmeer',1,3),(55604,9067,'Luther Aldrich',2,4),(55604,2495,'Harry Compton',2,5),(55604,14001,'Harmony Jones',2,6),(55604,121323,'Worker in McMasters\' New York Office',1,7),(55604,85900,'Whitey',1,8),(55604,32431,'Spanish Eva',1,9),(55604,85956,'Miss Barnes',1,10),(55604,1196675,'Ed Murphy',0,11),(55604,88735,'Tom Murphy',0,12),(55604,2790,'Maid',1,13),(55604,2313,'Ferdie the Tailor',2,14),(55604,111464,'Assistant D.A.',2,15),(55604,141510,'Judge',2,16),(55604,30240,'Barber',2,17),(55604,14455,'Defense Attorney',2,18),(55604,544585,'McMasters\' Butler',2,19),(55604,33034,'Compton\'s Secretary',2,20),(55604,96722,'Geologist',2,21),(55604,103068,'Architect',2,22),(55604,116494,'Hotel Desk Clerk in Burkburnett',0,23),(55604,34211,'McCreery',0,24),(55604,285641,'Little Jack',0,25),(55604,1624226,'Baby Jack',0,26),(55604,134868,'Deacon',2,27),(55604,148527,'Nurse',1,28),(55604,1095107,'Hank - Man in Dance Hall',2,29),(55604,13977,'U.S. Marshal Stebbins',2,30),(55604,10527,'Man with Nitroglycerine',0,31),(55604,2790,'Karen\'s Maid',1,32),(55604,544585,'Parker - McMasters\' Butler',2,33),(55604,1208020,'Man Working in McMasters\' Office',2,34),(55604,153638,'Hiring Boss',2,35),(55604,34214,'The Dog',0,36),(55604,1010448,'Mrs. Summers',1,37),(55604,1152705,'Townsman',2,38),(55604,133342,'Wildcatter',2,39),(55604,975597,'Alarmed Townsman',2,40),(55604,125842,'Man at Dice Table',2,41),(55604,1464600,'Rider / Roper',0,42),(55604,1016646,'Baggage Man',0,43),(55604,34168,'Man Abandoned by Whitey',0,44),(55604,127521,'McCreery\'s Associate #2',2,45),(55604,14455,'McMasters\' Defense Attorney',2,46),(55604,1395871,'Racetrack Announcer (voice)',0,47),(55604,103068,'Smith - the Architect',2,48),(55604,29600,'Doctor',2,49),(55604,33025,'McCreery\'s Associate #1',2,50),(55604,89938,'Rodeo Barker',0,51),(55604,1468755,'Saloon Brawler',0,52),(55604,34837,'Oilman at Producers\' Convention',2,53),(55604,1005347,'Oil Man at Meeting',2,54),(55604,103501,'Oilman in New York',2,55),(55604,13558,'Venezuelan Foreman',2,56),(55604,932309,'Sheriff Harris',2,57),(55604,569144,'Man in Hotel Lobby',2,58),(55604,102005,'Saloon hostess fighting Whitey',0,59),(55604,1023934,'Oil Man',2,60),(55604,1021841,'Mr. Springtime',2,61),(55604,1284767,'Oilman at Producers\' Convention',0,62),(55604,30206,'Man Asking 4 Bits to Cross',0,63),(55604,56924,'Venezuelan Officer',2,64),(55604,103503,'Aldrich\'s Assistant',0,65),(55604,121066,'Man Fighting Oil Fire',2,66),(55604,89013,'Mr. Summers',2,67),(55604,135827,'Lawyer at Prosecution\'s Table',2,68),(55604,1208035,'Hotel Lobby Extra',0,69),(55604,29626,'Hotel Desk Clerk #1',2,70),(55604,116494,'Hotel Clerk',0,71),(55604,1045763,'Townsman',0,72),(55604,96061,'Man in Saloon',2,73),(55604,34447,'Oil Man at New York Meeting',0,74),(39013,72129,'Ree Dolly',1,0),(39013,16861,'Teardrop',2,1),(39013,54711,'Little Arthur',2,2),(39013,46814,'Merab',1,3),(39013,39520,'Sheriff Baskin',0,4),(39013,6726,'April',1,5),(39013,126487,'Sonya',0,6),(39013,1163717,'Sonny',0,7),(39013,1163718,'Ashlee',0,8),(39013,1163719,'Connie',0,9),(39013,126488,'Gail',1,10),(39013,1163723,'Victoria',0,11),(39013,1163720,'Megan',0,12),(39013,55789,'Satterfield',2,13),(39013,1163716,'Thump Milton',0,14),(39013,180805,'Floyd',0,15),(39013,1163722,'Blond Milton',0,16),(39013,1163725,'Alice',0,17),(39013,1163726,'Tilly',0,18),(39013,1163724,'Parenting Teacher',0,19),(39013,1163727,'Army Recruiter',0,20),(39013,1163721,'Singer at Party',0,21),(43839,10922,'Alexander - Roger Grant',2,0),(43839,94928,'Stella Kirby',1,1),(43839,18156,'Charlie Dwyer',2,2),(43839,109897,'Jerry Allen',1,3),(43839,9070,'Davey Lane',0,4),(43839,32138,'Prof. Heinrich',2,5),(43839,108986,'Aunt Sophie',1,6),(43839,8516,'Speakeasy Doorman',2,7),(43839,14664,'Bill Mulligan',0,8),(43839,120779,'Wally Vernon',2,9),(43839,34449,'Ruby',1,10),(43839,13298,'Snapper',0,11),(43839,34286,'Louie',2,12),(43839,5461,'Corporal Collins',2,13),(43839,89729,'Stage Manager',2,14),(43839,120544,'Agent',2,15),(43839,95299,'Eddie',0,16),(43839,555885,'Specialty',0,17),(43839,84640,'Charles Dillingham',2,18),(43839,544585,'Head Waiter',2,19),(43839,34505,'Colonel',2,20),(43839,105810,'Manager Radio Station',2,21),(43839,1081944,'Train Conductor (uncredited)',2,22),(43839,4072,'Photographer (uncredited)',2,23),(43839,3262,'Army Captain (uncredited)',2,24),(43839,120199,'Man on Train (uncredited)',0,25),(43839,121127,'Officer in Army Show Audience (uncredited)',0,26),(43839,85491,'Baton Specialty (uncredited)',0,27),(44639,1892,'Narrator',2,0),(44639,1331425,'Himself',2,1),(44639,102786,'Himself',2,2),(44639,19011,'Himself',2,3),(44639,1331426,'Himself',0,4),(44639,1220627,'Himself',1,5),(44639,219201,'Himself',1,6),(44639,1059479,'Himself',0,7),(44639,1331427,'Herfself',0,8),(301351,29222,'Cole',2,0),(301351,1186505,'Sophie',1,1),(301351,8210,'James',2,2),(301351,1469633,'Himself',0,3),(301351,1469630,'Himself',0,4),(301351,17866,'Nicky',2,6),(301351,79795,'Ollie',2,7),(301351,19498,'Paige Morrell',2,8),(301351,52938,'Mel',1,9),(301351,1525940,'Courtney',1,10),(301351,1585072,'Valley Hater',2,11),(301351,1257828,'Party Guest (uncredited)',2,12),(301351,58045,'Francine',1,13),(301351,928575,'Mason',0,14),(301351,564583,'Squirrel',2,15),(301351,126875,'Mrs. Romero',1,16),(301351,104191,'Carl',2,17),(301351,1708461,'Sara',0,18),(301351,1677399,'Clarissa',0,19),(301351,1708462,'Joey',0,20),(301351,1486989,'Rebecca',1,21),(301351,1458116,'Mindy',0,22),(301351,1528827,'Heather',1,23),(301351,1493433,'Preppy Guy',2,24),(301351,1708464,'Preppy Guy',0,25),(301351,1708465,'Rabbi',0,26),(301351,1607789,'Rich Girl',1,27),(301351,1350469,'King Bach',2,28),(301351,1708470,'Devin Andrews',0,29),(331190,51072,'Ashley Smith',1,0),(331190,35013,'Brian Nichols',2,1),(331190,39390,'Detective John Chestnut',2,2),(331190,13920,'Kim Rogers',1,3),(331190,10839,'Sergeant Carmen Sandoval',1,4),(331190,41020,'Sergeant Teasley',2,5),(331190,18916,'FBI Agent',2,6),(331190,1477958,'Randy',2,7),(331190,208507,'Meredith MacKenzie',1,8),(331190,154495,'Mrs. Nichols',1,9),(331190,1511921,'Drug Rehab Patient',0,10),(331190,1371002,'Cheryl',0,11),(331190,1506244,'Prisoner',0,12),(331190,168679,'Commander Bradley Simpson',0,13),(331190,1358965,'Atlanta Police Officer Boltbee',0,14),(331190,1203743,'Officer Henderson',0,15),(331190,1104414,'Lynn Campbell',1,16),(331190,1511922,'Paige',0,17),(331190,1511923,'APD Officer',0,18),(331190,168688,'Cameron Sampson',0,19),(331190,1511924,'SWAT Sniper',0,20),(331190,1370999,'Detective',0,21),(331190,1286788,'Melissa',0,22),(48382,63494,'Sam',2,0),(48382,7144,'Laban',2,1),(250124,1201716,'Minnie Goetze',1,0),(250124,41091,'Charlotte Worthington',1,1),(250124,28846,'Monroe Rutherford',2,2),(250124,22227,'Pascal MacCorkill',2,3),(250124,1336393,'Ricky Wasserman',0,4),(250124,1568765,'Kimmie Minter',0,5),(250124,59237,'Tabatha',1,6),(250124,1414725,'Chuck Saunders',0,7),(250124,1414726,'Gretel',0,8),(250124,1081407,'Burt',0,9),(250124,66263,'Andrea',1,10),(250124,1122300,'Michael Cocaine',0,11),(250124,1716352,'Arnie',0,12),(250124,1716355,'Aline Kominsky (voice)',0,13),(250124,1716659,'Frankie',0,14),(250124,1716354,'Cool English Teacher',0,15),(250124,19981,'Old Hippie',2,16),(250124,558509,'Drag Queen',2,17),(250124,1534673,'Band Member',0,18),(250124,1716660,'Band Member',0,19),(250124,1716661,'Band Member',0,20),(250124,1716662,'Student',0,21),(57120,1812,'Emily Tetherow',1,0),(57120,21089,'Stephen Meek',2,1),(57120,883,'Soloman Tetherow',2,2),(57120,35028,'Millie Gately',1,3),(57120,17142,'Thomas Gately',2,4),(57120,1834,'Glory White',1,5),(57120,58544,'William White',2,6),(57120,999498,'Jimmy White',0,7),(57120,999499,'The Indian',2,8),(55561,3051,'Iris Chapman',1,0),(55561,7489,'Margaret Burre',1,1),(55561,14406,'Paula',1,2),(55561,10402,'Jane',1,3),(55561,1064534,'Cleo',0,4),(55561,4171,'Art',2,5),(55561,6213,'Eddie',0,6),(55561,84522,'Mr. MacNamee',2,7),(55561,15453,'Barbara',1,8),(55561,25711,'Mr. Kilmer',2,9),(55561,12438,'Milton Lasky',2,10),(55561,15900,'Bud Chapman',2,11),(55561,51956,'Jack Shoberg',2,12),(55561,131642,'Global Credit Receptionist',2,13),(42889,130534,'Matt',0,0),(42889,130535,'Zack',2,1),(42889,84518,'Jacob',2,2),(42889,130536,'Justin',2,3),(42889,1254617,'Krysta',0,4),(42889,147083,'Nicole',1,5),(42889,147084,'Becca',0,6),(42889,147085,'Tina',1,7),(273899,225692,'Danny',2,0),(273899,1552148,'Ray / Ramona',0,1),(273899,1244,'Trevor',2,2),(273899,2372,'Ed Murphy',2,3),(273899,572541,'Orphan Annie',2,4),(273899,1327613,'Joe Altman',2,5),(273899,1327614,'Cong',0,6),(273899,1253402,'Lee',0,7),(273899,125025,'Phoebe',1,8),(273899,13525,'Deputy Seymour Pine',2,9),(273899,237756,'Matt',2,10),(273899,155282,'Coach Winters',2,11),(273899,7013,'Fat Tony',2,12),(273899,946356,'Joyce Winters',1,13),(273899,207881,'Big Daddy',2,14),(273899,78686,'Sam',1,15),(273899,55183,'Hans Keller',2,16),(67373,3085,'',2,1),(67373,3085,'Jimmy',2,2),(67373,7164,'Danny Santini',2,3),(67373,47774,'Skippy',2,4),(67373,17930,'Austin Palermo',0,5),(67373,217510,'Robert Biaggio',0,6),(67373,1386618,'Johnny Irish',0,7),(67373,71521,'DeGrazio Head Soldier',2,8),(171759,116446,'Billy Stone',2,0),(171759,61831,'Allie',1,1),(171759,20904,'Faleaka',2,2),(171759,78040,'Daniel',2,3),(171759,18702,'Cobra',2,4),(171759,122844,'Huko',2,5),(171759,109046,'Mohea',1,6),(171759,1021981,'Anui',2,7),(171759,979834,'Lisa',1,8),(206296,84223,'Cathy Hiatt',1,0),(206296,1188558,'Jamie Wellerstein',2,1),(206296,212044,'Alise Michaels',1,2),(206296,1572043,'Heather Greenblatt',0,3),(206296,54124,'Linda Whitfield',1,4),(206296,37151,'Richard',2,5),(206296,1714289,'Carole Ann',0,6),(206296,1213620,'Ryan James',0,7),(206296,928698,'Karl',0,8),(206296,1714290,'Danica Schwartz',0,9),(206296,1714291,'Erica Weiss',0,10),(206296,1393776,'Beautiful Girl',0,11),(206296,1606394,'Manuscript Woman',1,12),(206296,1391352,'Girl in Dress',0,13),(35219,335,'John Rosow',2,0),(35219,39388,'Miss Charley',1,1),(35219,52021,'Harold Fullmer',2,2),(35219,58643,'Megan Fullmer',1,3),(35219,87707,'Hero Furillo',2,4),(35219,8985,'Lana Cobb',1,5),(35219,167564,'Gus Papitos',0,6),(35219,75604,'Don Edgar',2,7),(35219,17342,'Drexler Hewitt',2,8),(35219,55546,'Agent Chambers',1,9),(35219,32598,'Agent Craig',2,10),(35219,28044,'Mabel Page',1,11),(35219,78404,'Eric Jelin',2,12),(335866,35551,'The Wife',1,1),(335866,86653,'The College Guy',2,2),(335866,53255,'The Tattooed Man',0,3),(335866,155293,'The Lesbian',0,4),(335866,115888,'The Cancer Survivor',1,5),(335866,1504904,'The Little Girl',0,6),(335866,1190818,'Pretty Girl / Christina',0,7),(335866,212267,'Eric',2,8),(335866,1367306,'The Asian Kid',0,9),(335866,85837,'The Old Woman',1,10),(335866,1216707,'The Deacon',2,11),(335866,84895,'Man 1',2,12),(335866,111451,'The Husband',2,13),(335866,968742,'The Bearded Man',2,14),(335866,114052,'The Soldier',0,15),(215881,70456,'Hayley',1,0),(215881,109438,'Enzo',2,1),(215881,55086,'Carter',2,2),(215881,92614,'Annie',1,3),(215881,3713,'Camila',1,4),(215881,34199,'Jack',2,5),(215881,146004,'Dr. Ortiz',1,6),(215881,1205408,'Lila',0,7),(215881,208944,'Evie',1,8),(215881,7430,'Dr. Lopez',1,9),(215881,58371,'Butch Hopkins',2,10),(215881,105830,'Coat & Tie Fan',2,11),(215881,1211750,'Limo Driver',0,12),(215881,1588229,'Junkie',0,13),(215881,1205409,'Young Enzo (uncredited)',0,14),(215881,1750429,'Sexy Guitar Guy (uncredited)',0,15),(215881,155862,'Patagonia Wife (uncredited)',1,16),(215881,1750431,'Zandra (uncredited)',0,17),(215881,1750432,'Druggie Band Friend (uncredited)',0,18),(50698,169747,'Lance',0,0),(50698,85613,'Matt',2,1),(50698,239150,'Sasha',1,2),(50698,37698,'Houston Gray',2,3),(50698,158412,'Dott. Friedkin',2,4),(50698,51940,'Jerry',2,5),(50698,80359,'Ghost',0,6),(50698,205881,'Gardener',2,7),(50698,220787,'Morgan Turner',2,8),(50698,74608,'T.C. Gibson',2,9),(50698,208253,'Kenny Sandivol',2,10),(50698,963962,'Gary Crawford',2,11),(115210,90440,'Stitches',2,0),(115210,446476,'Tom',2,1),(115210,969460,'Kate',1,2),(115210,63371,'The Motley',2,3),(459488,1354401,'Narrator',0,1),(119458,3900,'Mark Patterson',2,0),(119458,1070341,'Conner Lee',0,1),(119458,62417,'Donald Chang',2,2),(119458,1070349,'Morris Brown',0,3),(119458,210135,'Natalie Wang',1,4),(119458,1070350,'Quentin Wong',0,5),(119458,1070351,'Michael Baker',0,6),(119458,1048566,'Street vendor',0,7),(119458,1064294,'Banker',0,8),(119458,10885,'Victor Chang',0,9),(95755,26209,'Franklin Franklin',2,0),(95755,36594,'Simone',1,1),(95755,3085,'Mr. Allspice',2,2),(95755,16644,'Dr. Sage Mennox',2,3),(95755,7904,'Burt Walnut',2,4),(95755,53,'Dr. Olivetti',2,5),(95755,132078,'Artie',2,6),(95755,9656,'Tommy Balls',2,7),(95755,221581,'Rocky',1,8),(95755,4810,'Ms. Baker',1,9),(95755,42158,'Lisa',1,10),(95755,1006733,'Amber',1,11),(95755,11006,'Bernard Franklin',2,12),(95755,9825,'Francine',0,13),(95755,28638,'Detective O\'Grady',2,14),(198062,77870,'Will',2,0),(198062,141433,'Chad',2,1),(198062,222121,'Gino',2,2),(198062,88995,'Becca',1,3),(198062,117470,'Sam',2,4),(198062,1138600,'Toby',0,5),(198062,1178367,'Female Barista',0,6),(198062,1174106,'Toby',2,7),(198062,59841,'Cop',2,8),(198062,54728,'Manager',2,9),(198062,543505,'Roommate',2,10),(188652,98310,'Johnny X',2,0),(188652,85177,'Mickey O\'Flynn',2,1),(188652,1086869,'Bliss',0,2),(188652,97939,'King Clayton',2,3),(188652,100381,'Sluggo',2,4),(188652,13010,'Dandi Conners',1,5),(188652,35040,'Cousin Quilty',2,6),(174311,22226,'Rene',2,0),(174311,13242,'Dennis',2,1),(174311,39658,'Olga',1,2),(174311,50117,'Tremblay',2,3),(174311,176797,'Bobby',0,4),(174311,928396,'Claire',1,5),(174311,357551,'Therese',1,6),(174311,2254,'Kevin (as Curtiss L\'Cook)',2,7),(174311,937913,'Vladimir',2,8),(174311,292214,'Betsy',1,9),(174311,1041440,'Lou',2,10),(174311,1205623,'Christmas Tree Customer',0,11),(153795,10690,'Katherine',1,0),(153795,11864,'Scott',2,1),(153795,36422,'William',2,2),(153795,6280,'',2,3),(153795,211429,'Charles',0,4),(153795,973998,'Gracie',1,5),(153795,85178,'Dana',1,6),(153795,41249,'',1,7),(153795,1134660,'High Roller',0,8),(153795,1592589,'Nikki / Craps Table Girl #1',1,9),(153795,1167492,'Carla / Craps Table Girl #3',1,10),(98549,34489,'Will Edwards',2,0),(98549,17441,'Kid Called Kelly',2,1),(98549,9976,'John St. Helens',0,3),(98549,98050,'Eigson Howard',2,4),(98549,54881,'Maggie Moon',1,5),(98549,20381,'Katherine Prescott',1,6),(98549,116474,'August Edwards',2,7),(98549,96792,'Bacas Mitchell',2,8),(98549,456066,'Jeral Floyd',2,10),(98549,109861,'John Henry \'Doc\' Holiday',2,11),(98549,1018660,'James McKinnon',2,12),(98549,1406629,'Johnny Moon',0,13),(98549,12797,'J.H. Gordon',2,14),(98549,18687,'Jones Moon',2,15),(98549,1882558,'The Russian',0,16),(98549,11088,'Sheriff Michaels',2,17),(98549,7872,'Kutseena',2,18),(98549,117432,'Wakaree',2,19),(98549,1465852,'Tower Mitchell',0,20),(98549,211742,'\'Champagne\' Charlie Austin',2,21),(98549,1882560,'Dr. Bates',0,22),(98549,29862,'J. Wright Mooar',2,23),(98549,42376,'Quanah Parker',2,24),(98549,71562,'Pete Snyder',2,25),(98549,1503192,'John Davis Howard',2,26),(98549,1118077,'Frank Floyd',0,27),(98549,946854,'J.W. Barkley',2,28),(98549,134015,'Bill Benson',2,29),(98549,1882571,'Jameson Benson',0,30),(98549,127726,'Tyler Thompson',2,31),(98549,72986,'Jesse James / J. Frank Dalton',2,32),(98549,85209,'Madeline Shea',1,33),(98549,1047860,'Moghey',0,34),(98549,1401123,'Ten Pin Andy',0,35),(98549,1011108,'Rose Abbot',1,36),(98549,52884,'Bartender',2,37),(98549,20464,'Photographer',0,38),(98549,1372211,'Dallas Deputy',2,39),(312793,1434687,'Green Bay',0,0),(312793,211952,'Chicago',2,1),(312793,35701,'Sheriff Lincoln',2,2),(312793,1445528,'Romeo',2,3),(312793,1163789,'Brooklyn',1,4),(312793,1445529,'Harlem',0,5),(312793,1445530,'Chris',0,6),(312793,886142,'Isaac',1,7),(312793,60693,'Darnell',2,8),(312793,1445532,'Abraham',0,9),(312793,1177703,'Sarah',0,10),(312793,1445533,'Mysterious Wandrer',2,11),(312793,1875238,'Shaun',0,12),(312793,131420,'Ed',0,13),(312793,1875240,'Reporter',0,14),(312793,1875246,'Umpire',0,15),(312793,591375,'Zombie Stripper',1,16),(312793,1445534,'Contortion Zombie Stripper',0,17),(312793,1875248,'Z.A.L.A.R.P.E.R',1,18),(312793,125165,'Z.A.L.A.R.P.E.R',2,19),(312793,1818088,'Lexie',1,20),(312793,1106543,'Barbie',1,21),(312793,1875251,'Zombie',1,22),(312793,1875252,'Zombie',0,23),(312793,1875253,'Zombie',1,24),(312793,1875255,'Zombie',0,25),(309919,234982,'Chrissie Swanson',1,0),(309919,429,'Bobby',2,1),(309919,33488,'Diane',1,2),(309919,1146114,'Tracy',1,3),(309919,81197,'Ian',2,4),(309919,987572,'Guy',2,5),(309919,74036,'Charlie',2,6),(309919,7431,'Chuck',2,7),(309919,66527,'David',2,8),(309919,1464847,'Ezra',0,9),(309919,31534,'Rich',2,10),(309919,1498915,'Mike',0,11),(309919,1552347,'Ryan',0,12),(299553,16644,'Clint Gray',2,1),(299553,90117,'Don Barnes',2,4),(299553,134488,'Meredith Hernandez',1,5),(299553,1473957,'Peter Mayes',2,6),(299553,1473958,'Larson',0,7),(299553,1371878,'Garreth Ross',0,8),(299553,1473959,'Sara',1,9),(299553,101847,'Lewis Galloway',2,10),(299553,1026877,'Christopher the Camper',2,12),(299553,1473960,'Kay',1,13),(299553,1236642,'Dan',0,14),(299553,1473961,'Betty',0,15),(299553,1473962,'News Reporter',0,16),(299553,76674,'Ricky',2,17),(329540,237740,'Jake Carter',0,0),(329540,1006731,'Olivia Tanis',0,1),(329540,204420,'Andrew Vogel',0,2),(329540,140182,'Ethan Smith',0,3),(329540,26069,'Det. Paul Redman',2,4),(329540,144561,'Wallace',0,5),(329540,1206996,'Rachel Dawes',0,6),(329540,1366510,'Grant',0,7),(329540,1366661,'Hayes',0,8),(329540,1737894,'Trish Ellis',1,9),(49020,104561,'Oliver Tate',2,0),(49020,39658,'Jill Tate',1,1),(49020,14887,'Graham Purvis',2,2),(49020,1284,'Lloyd Tate',2,3),(49020,97576,'Kim-Lin',1,4),(49020,81571,'Jordana Bevan',1,5),(49020,32266,'Chips',0,6),(49020,1127671,'Mark Pritchard',0,7),(49020,1127672,'Zoe Preece',0,8),(49020,1127673,'Keiron',0,9),(49020,972115,'Abby Smuts',1,10),(49020,143892,'Mr. Davey',2,11),(49020,220587,'Jude Bevan',1,12),(49020,189433,'Brynn Bevan',2,13),(49020,208526,'Miss Dutton',0,14),(49020,7399,'Soap Opera Star',2,15),(49020,1877368,'Jackie',0,16),(49020,1877371,'Malcolm',0,17),(49020,1877374,'Gene',0,18),(49020,1877376,'Dafydd',0,19),(49020,1487758,'News Reporter',0,20),(159037,53480,'Himself',2,0),(159037,1266030,'',0,1),(159037,1266031,'',0,2),(159037,1266034,'Himself',0,3),(159037,1266035,'Himself',0,4),(159037,969125,'Himself',2,5),(159037,1285546,'Herself',0,6),(157293,89154,'Vishnu',2,0),(157293,959445,'Gopi',2,1),(157293,86020,'Jehangir Khan',2,2),(157293,211790,'D',1,4),(157293,1170144,'Rocky',0,5),(157293,1170145,'Chandu',0,6),(157293,1170146,'Shaina',0,7),(157293,1148398,'G.A.',0,8),(157293,1170143,'G.A.',0,9),(157293,1170147,'Biscuit',0,10),(157293,1170148,'Bhawana',0,11),(157293,1170149,'Mayur',0,12),(157293,1170150,'G.A.',0,13),(157293,1668310,'D',0,14),(356987,10862,'Jim',2,0),(356987,33306,'John',2,1),(356987,173500,'Rick',0,2),(356987,1227250,'Martha',0,3),(356987,1284977,'Heather',0,4),(356987,95282,'Karen',1,5),(356987,1502551,'Darren',0,6),(356987,1502552,'Hayley',0,7),(356987,1502553,'Gordon',2,8),(356987,73893,'Shane',2,9),(356987,1502554,'Raewyn',0,10),(356987,1502555,'Journalist',0,11),(356987,1502556,'Laing',0,12),(356987,46398,'Phil',2,13),(356987,1672274,'McKinley',0,14),(356987,173563,'Reg',1,15),(356987,1672275,'TV Reporter',0,16),(295886,74688,'Jackie Taylor',1,2),(295886,74302,'June',2,3),(295886,1423440,'Sergio',0,4),(295886,1423441,'Chris Collins',0,5),(295886,1532331,'Simone',1,6),(38358,120248,'Nell Sweetzer',1,0),(38358,58791,'Cotton Marcus',2,1),(38358,120249,'Iris',1,2),(38358,93228,'Louis Sweetzer',2,3),(38358,572541,'Caleb Sweetzer',2,4),(38358,120251,'Mrs. Cotton Marcus',1,5),(38358,120253,'Gerald',2,6),(38358,120252,'Satanic Worshiper',0,7),(84175,1055235,'Hushpuppy',1,0),(84175,1055236,'Wink',0,1),(84175,1073500,'Jean Battiste',2,2),(84175,1073501,'Miss Bathsheeba',1,3),(84175,1118577,'Walrus',2,4),(84175,1118578,'Little Jo',1,5),(84175,1137369,'LZA',0,6),(84175,1137370,'Joy Strong',0,7),(84175,1118579,'Boy with Bell',2,8),(84175,1137371,'Winston',0,9),(84175,1137372,'Peter T',0,10),(84175,1137373,'T-Lou',0,11),(84175,1137374,'Dr. Maloney',0,12),(84175,1137375,'Open Arms Babysitter',0,13),(84175,1137376,'Sgt. Major',0,14),(62677,47627,'Professor Lily Penleric, PhD',1,0),(62677,170615,'Dean Arthur Pembroke',2,1),(62677,157961,'Professor Wallace Aldrich, PhD',2,2),(62677,1267004,'Fate Honeycutt',0,3),(62677,209,'Eleanor \'Elna\' Penleric',1,4),(62677,1218055,'Harriet Tolliver',0,5),(62677,4730,'Deladis Slocumb',1,6),(62677,35232,'Viney Butler',1,7),(62677,58539,'Alice Kincaid',1,8),(62677,18992,'Tom Bledsoe',2,9),(62677,1181559,'Hilliard',2,10),(62677,1517812,'Polly',0,11),(62677,1737,'Earl Giddens',2,12),(62677,1517813,'Isabel',0,13),(50875,21657,'Corinne Walker',1,0),(50875,2517,'Kathleen Walker',1,1),(50875,52776,'Annika',1,2),(50875,16861,'CW Walker',2,3),(50875,26852,'Ethan Miller',2,4),(50875,971329,'Wendy Walker',1,5),(50875,527313,'Teenage Corinne Walker',1,6),(50875,1188195,'Young Wendy Walker',0,7),(50875,467645,'Teenage Ethan Miller',2,8),(50875,52020,'Pastor Bill',2,9),(50875,58549,'Pastor Bud',2,10),(50875,87070,'Ned',2,11),(50875,21042,'Luke',2,12),(50875,117165,'Liam Donovan',0,13),(50875,77023,'Dr. Dick Adams',2,14),(50875,1337803,'Molly',0,15),(260778,222760,'Sharp',2,1),(260778,237967,'Priyamahalakshmi',1,2),(260778,141076,'Tyre',2,3),(260778,565865,'Kutti Paiyaa',0,4),(260778,113810,'MD',0,5),(260778,148363,'Anbu',2,7),(260778,503842,'Sharp\'s father',2,9),(260778,1063793,'Sharp\'s mother',1,10),(260778,1163172,'Priya\'s friend',1,11),(260778,580621,'Cameo',2,12),(260778,583960,'',2,13),(260778,584746,'Priya\'s Father',2,14),(260778,584128,'Mrs. Steven',0,15),(58492,57492,'Himself',2,0),(58492,36602,'Himself',2,1),(58492,178617,'Himself',0,2),(58492,206759,'Himself',2,3),(58492,11091,'Himself',2,4),(58492,15344,'Himself',2,5),(58492,33663,'Himself',2,6),(44562,4976,'Mr. Abner',2,0),(44562,157616,'Judge Fearson',2,1),(44562,884,'Ed Chilton',2,2),(44562,173191,'Storm Reynolds',0,3),(44562,13726,'Uncle Benny',2,4),(44562,6199,'Mabel Chilton',1,5),(37232,239169,'Dondup',0,0),(37232,239170,'Sonam',0,1),(37232,239171,'Tashi',0,2),(37232,239172,'Deki',0,3),(37232,239173,'The Monk',0,4),(36334,4110,'Ed Hutcheson',2,0),(36334,97777,'Margaret Garrison',1,1),(36334,10539,'Nora Hutcheson',1,2),(36334,39816,'Frank Allen',2,3),(36334,12310,'George Burrows',2,4),(36334,11033,'Harry Thompson',2,5),(36334,6931,'Tomas Rienzi',2,6),(36334,95012,'Herman Schmidt',2,7),(36334,37445,'Katherine Garrison Geary',0,8),(36334,83566,'Mrs. Willebrandt',1,9),(36334,98160,'Alice Garrison Courtney',0,10),(36334,2771,'Jim Cleary',2,11),(36334,86369,'Headwaiter (uncredited)',2,12),(36334,16527,'Man Asking for Ed Hutcheson (uncredited)',2,13),(36334,83149,'Henry (uncredited)',2,14),(36334,2749,'Copyboy (uncredited) (unconfirmed)',0,15),(36334,34130,'Hal (uncredited)',2,16),(386826,84763,'Dresden Winters',2,1),(386826,33052,'Dominic Winters',2,2),(386826,1220754,'Jennifer',1,3),(386826,56267,'Kenneth Kennedy',2,4),(386826,1639314,'Jorge',0,5),(205126,132347,'Nick',2,0),(205126,1114366,'Todd',0,1),(205126,204975,'Eliza',1,2),(205126,200615,'SETI Technician',2,3),(205126,37979,'Celia Lehman',1,4),(98557,58150,'Lisa',1,0),(98557,93820,'Ebony',0,1),(98557,76667,'Brett',2,2),(98557,138323,'Trenyce',1,3),(98557,84115,'Gary',2,4),(98557,212824,'Storm',1,5),(98557,214729,'Jackson',2,6),(98557,1241977,'Aaron',2,7),(98557,206378,'Jamal',0,8),(98557,562922,'Stylz',2,9),(98557,4996,'Alex',1,10),(98557,22122,'Ms. Stevens',1,11),(98557,154000,'Alice',1,12),(98557,15564,'Dennis',2,13),(246449,57395,'Susan Wade',1,0),(246449,1107800,'Zack Wade',2,1),(246449,1189293,'Hannah Wade',0,2),(246449,190900,'Robert Wade',2,3),(246449,1196455,'Charlie Foster',2,4),(246449,27143,'Captain Walker',0,5),(246449,184815,'Sheila',1,6),(246449,1771409,'Chinook',0,7),(246449,1771410,'The Bear',0,8),(43947,129928,'Jennifer Hills',1,0),(43947,32598,'Stanley',2,1),(43947,9186,'Matthew',2,2),(43947,90576,'John \'Johnny\' Miller',2,3),(43947,63916,'Andy',2,4),(43947,67206,'Sheriff Storch',2,5),(43947,3801,'Earl',2,6),(43947,1352105,'Mrs. Storch',1,7),(43947,1079805,'Chastity Storch',1,8),(191714,76793,'Saajan Fernandes',2,0),(191714,1077932,'Ila',1,1),(191714,85047,'Shaikh',2,2),(191714,933391,'Mr. Shroff',2,3),(191714,587092,'Mrs. Deshpande',1,4),(191714,1052353,'Rajeev',0,5),(191714,1295644,'Yavshi',0,6),(191714,6498,'Ila\'s Mother',1,7),(191714,1246781,'Mehrunnisa',0,8),(206284,113926,'Gracie Trey',1,0),(206284,11153,'Johnny Trey',2,1),(206284,7166,'Frank Mossy Mostin',2,2),(206284,2138,'Michelle Trey',1,3),(206284,56676,'Quentin',2,4),(206284,1196539,'Rachel',0,5),(206284,77822,'Kendra Burroughs',1,6),(206284,987572,'Jay Grayson',2,7),(66468,1039985,'David Alan Washington',0,0),(66468,154000,'Robin Joyner',1,1),(66468,43946,'Tina Simpson',1,2),(66468,92087,'Jill',1,3),(66468,1218183,'Isaac Roberts',0,4),(66468,105831,'Denise',1,5),(283686,12041,'Sarah Harriman',1,1),(283686,100,'Paul Harriman',2,2),(283686,9029,'Jordan',2,3),(283686,169625,'Dr. Andres Contreras, Jr.',0,4),(283686,1181403,'Hannah Harriman',0,5),(283686,1414437,'Man at party',0,6),(74084,35780,'Shekhar Sinha',2,0),(74084,584324,'Sandhya S. Sinha',2,1),(74084,1008479,'Jai S. Sinha',0,2),(74084,82809,'Sophie Besson / Savirti Pradhan',1,3),(74084,1220070,'Norman Besson',2,5),(74084,79394,'Claire Besson',1,6),(74084,1634304,'Anne -The flirtatious girl',0,7),(74084,14596,'Narrator',2,8),(74084,1634305,'Gaurav Gulati',0,9),(74084,1634306,'Saleswoman',0,10),(74084,528638,'Special Appearance',0,11),(74084,231345,'Ashim',0,12),(74084,120429,'Dr. Gayarti Pandey',1,13),(298584,1272291,'Paul',2,0),(298584,1129413,'Paul',2,1),(298584,206112,'Bert',0,2),(298584,16847,'',2,3),(298584,145814,'Karen',1,4),(298584,1352022,'Marcy',1,5),(298584,1205239,'Henry',2,6),(298584,93792,'Deputy Winston',1,7),(298584,1573607,'Fenster',0,8),(298584,1573609,'Emily',0,9),(298584,1192278,'Cadwell',0,10),(298584,163002,'Hog Woman',0,11),(298584,1060637,'Sheriff Silver',0,12),(298584,1573611,'Tommy',0,13),(298584,1573613,'Hazmat',0,14),(308529,1427888,'Kurt Sloane',2,0),(308529,543530,'Tong Po',2,1),(308529,134488,'Liu',1,2),(308529,15111,'Master Durand',2,3),(308529,60652,'Eric Sloane',2,4),(308529,74750,'Kavi',2,5),(308529,78452,'Promoter',1,6),(308529,1748388,'VIP Guest',1,7),(49018,17178,'Josh Lambert',2,0),(49018,9827,'Renai Lambert',1,1),(49018,17181,'Dalton Lambert',2,2),(49018,10767,'Lorraine Lambert',1,3),(49018,7401,'Elise Rainier',1,4),(49018,2128,'Specs',2,5),(49018,59117,'Tucker',2,6),(49018,208524,'Foster Lambert',2,7),(49018,188081,'Nurse Adele / Doll Girl #2',1,8),(49018,1055672,'Nurse Kelly',0,9),(49018,1186714,'Dr. Sercarz',2,10),(49018,1851029,'Father Martin',0,11),(49018,1067761,'Young Josh Lambert',0,12),(49018,73417,'Lipstick-Face Demon',2,13),(49018,1599752,'Old Woman',0,14),(49018,139631,'Long Haired Fiend',2,15),(49018,223680,'Doll Girl #1',0,16),(49018,87167,'Dr. Thimble',1,17),(49018,1293174,'Dancing Boy',2,18),(127918,1146393,'himself',0,0),(127918,1157956,'himself',0,1),(127918,1157957,'himself',0,2),(127918,1157958,'himself',0,3),(127918,1157959,'himself',0,4),(127918,1157960,'himself',0,5),(129139,119592,'Brandy Klark',1,0),(129139,27104,'Cameron Mitchell',2,1),(129139,19278,'Willy Mclean',2,2),(129139,61178,'Fiona Forster',1,3),(129139,25908,'Wendy Summers',1,4),(129139,53368,'Rusty Waters',2,5),(129139,52783,'Amber Klark',1,6),(129139,54691,'Duffy',2,7),(129139,62861,'Van King',2,8),(129139,119589,'Derrick Murphy',2,9),(129139,115974,'Chip',2,10),(129139,9048,'George Klark',2,11),(129139,86310,'Jean Klark',1,12),(129139,1116893,'Benji',0,13),(129139,147710,'Max',2,14),(129139,58737,'Hillcrest Pool Manager',2,15),(129139,119590,'Hillcrest Lifeguard #1',2,16),(129139,119591,'Hillcrest Lifeguard #2',2,17),(129139,1288335,'Guitar Player (Van\'s Band)',2,18),(129139,591834,'Girl Heckler',1,19),(323271,177508,'Noah Evans',0,1),(323271,1501365,'Reagan Farrow',1,2),(323271,1287586,'Mason Hicks',0,4),(323271,53718,'Zoe Case',1,5),(66025,9781,'Safiyah',1,0),(66025,2047,'Dean Francis',2,1),(66025,94103,'Tariq',2,2),(66025,73336,'Iman',1,3),(39541,18992,'Joe O\'Malley',2,0),(39541,5149,'Margaret O\'Malley',1,1),(39541,7166,'Rabbi Jacobsen',2,2),(39541,52480,'Patrick O\'Malley',2,3),(39541,1051092,'Mrs. Jacobsen',1,4),(39541,72698,'Danny Jacobsen',2,5),(39541,1072993,'Pete O\'Malley',0,6),(39541,6197,'Father Kelly',2,7),(39541,36093,'Sister Leonora Mary',1,8),(39541,170548,'Jimmy',0,9),(51820,103944,'Ricky',2,1),(51820,80597,'Lashaunna',1,2),(51820,32646,'Brenda',1,3),(51820,18288,'Patrick',2,4),(51820,31134,'Michael',2,5),(51820,1671443,'Silk',2,6),(51820,2535,'Jenny',1,7),(291362,76245,'Bruce Madsen',0,0),(291362,150954,'Sarah',1,1),(291362,1211,'Baby Doll',2,2),(291362,1072882,'Kristi',1,3),(291362,28638,'Chad',2,4),(291362,2452,'Nancy',1,5),(291362,7796,'Kim Madsen',1,6),(291362,1318329,'Jody',1,7),(291362,1223970,'Dicky',0,8),(291362,109183,'Sludge',2,9),(291362,1219597,'Mark Davis',2,10),(291362,445926,'Reggie',2,11),(291362,12217,'Jack Taylor',2,12),(291362,1440573,'Becky',0,13),(291362,155698,'Janet',1,14),(291362,1550779,'Tina Madsen',0,15),(72913,2955,'Col. Hardacre',2,0),(72913,132078,'Zeke',2,1),(72913,39520,'Lt. Compton',0,2),(72913,75604,'Padre Hidalgo',2,3),(72913,222131,'Shanker',2,4),(72913,122889,'Gil',2,5),(72913,278923,'Rafael',2,6),(72913,1212192,'Dutch',0,7),(104755,21319,'Heidi Hawthrone',1,0),(104755,52374,'Francis Matthias',2,1),(104755,59673,'Herman Whitey Salvador',0,2),(104755,41234,'Lacy Doyle',1,3),(104755,41229,'Margaret Morgan',1,4),(104755,13475,'Megan',1,5),(104755,15070,'Herman Jackson',2,6),(104755,62001,'Sonny',1,7),(104755,2051,'Alice Matthias',1,8),(104755,65748,'AJ Kennedy',2,9),(104755,15668,'Reverend Jonathan Hawthrone',2,10),(104755,7073,'Virgil Magnus',2,11),(104755,5695,'Dean Magnus',2,12),(104755,986143,'Elizabeth Jacobs',1,13),(104755,1238,'Count Gorgann',2,14),(104755,4452,'Priscilla Reed',1,15),(104755,27995,'Virginia Cable',1,16),(104755,9291,'Jarrett Perkins',2,17),(104755,75356,'Chip McDonald (uncredited)',2,18),(104755,142402,'Dream Sequence Woman (uncredited)',1,19),(104755,45471,'Wench Girl (uncredited)',1,20),(104755,15661,'Carlo (uncredited)',2,21),(104755,1646,'Witchhunter (uncredited)',2,22),(104755,97878,'Reverend Hawthorne (uncredited)',2,23),(104755,25946,'Abigail Hennessey',1,24),(104755,110928,'Clovis Hales',1,25),(104755,1364919,'Sarah Easter',1,26),(104755,1544553,'Mary Webster',1,27),(104755,1507371,'Martha Bishop',1,28),(104755,1410660,'Cerina Hooten',0,29),(104755,183070,'Priest',2,30),(104755,166048,'Ted',2,31),(104755,130618,'Amon',0,32),(104755,141289,'Halvard the Guardian',0,33),(104755,1537526,'Masie Mather',1,34),(104755,1836438,'Drug Dealer',2,35),(104755,1442967,'Dream Sequence Woman (uncredited)',1,36),(104755,1083903,'Dream Sequence Woman (uncredited)',1,37),(104755,1836440,'Witch (uncredited)',1,38),(104755,43774,'Frankenmonster (uncredited)',2,39),(104755,216439,'Woman Getting in to Shower (uncredited)',1,40),(104755,1182522,'Interviewer (uncredited)',0,41),(104755,1690900,'Horror Fan (uncredited)',1,42),(253306,1193861,'',1,0),(253306,1288797,'',0,1),(253306,1300289,'',0,2),(253306,5540,'',0,3),(253306,1300290,'',0,4),(253306,173455,'',2,5),(253306,1214345,'',0,6),(253306,586950,'',2,7),(253306,7255,'',2,8),(253306,1300297,'',0,9),(46729,449,'Art',2,0),(46729,62910,'Cody Wesson',1,1),(46729,52288,'Harvey',2,2),(46729,160091,'Sudden',2,3),(46729,86530,'Mrs. Wesson',1,4),(46729,43431,'Mr. Wesson',2,5),(46729,1522462,'Holden Wesson',0,6),(46729,1522465,'David Helmet Yar',2,7),(46729,1112033,'Young Cody',1,8),(46729,84466,'Rose',1,9),(46729,1449399,'Nurse Sam',1,10),(294600,7004,'Joe Scoleri',2,1),(294600,9046,'Ben Rose',2,2),(294600,4688,'Bobby DiBianco',2,3),(294600,53600,'Rita Scoleri',0,5),(137347,21657,'Alice Bercovich',1,0),(137347,2983,'Max Rosenthal',2,1),(137347,205258,'Virgil',2,2),(137347,27397,'Holban',2,3),(137347,202047,'Ru0103zvan Orodel',2,4),(137347,28478,'Iorgu Ristea',0,5),(137347,62972,'Dumitru \'Dumi\' Dorneanu',0,6),(137347,145242,'Sonia Rosenthal',0,7),(137347,78018,'Flaviu',2,8),(290370,8335,'Marcus King',2,0),(290370,1251993,'Melissa King',1,1),(290370,57172,'The Preacher',0,2),(290370,200920,'Nicole',1,3),(290370,965413,'Geoff King',2,4),(290370,1380653,'Xeni',0,5),(290370,87766,'Sheriff Elmore Leonard',2,6),(290370,1098450,'Mads',0,7),(290370,227047,'Francois',2,8),(290370,43299,'The Giant',2,9),(290370,1354630,'Beverly',0,10),(426469,1513149,'Smith Bhatnagar',0,0),(426469,1367322,'Amy Brunner',1,1),(426469,11662,'Butch Brunner',2,2),(426469,51993,'Bhaaskar Bhatnagar',0,3),(426469,35472,'Nancy Brunner',1,4),(426469,428440,'Nalini Bhatnagar',1,5),(426469,28410,'Officer Dick',2,6),(426469,113693,'Older Smith Bhatnagar',2,7),(426469,1719210,'Asha Bhatnagar',0,8),(426469,40275,'Officer Bob',2,9),(426469,1257565,'Mrs. Reynolds',1,10),(426469,1744336,'Billy MacNamara',0,11),(426469,1744337,'Stan Swanson',0,12),(426469,1744338,'Steve Swanson',0,13),(426469,1094130,'Older Amy Brunner',0,14),(426469,1744339,'Christian Man',0,15),(426469,1190598,'Paramedic Clemmons',0,16),(426469,180103,'Officer Randall',0,17),(426469,1505855,'Patrick',0,18),(426469,1744340,'Middle-Aged Vampire',0,19),(426469,1506479,'Dude #1',0,20),(426469,1085656,'Smiling Woman',0,21),(426469,1593004,'Dude #2',2,22),(356841,2047,'Elohim',2,1),(356841,1328,'Dyson',2,2),(356841,980,'Lu',2,3),(356841,11617,'Lauren Campbell',1,4),(356841,60650,'Captain Raymond Mitchell Howard',2,5),(356841,164930,'Katana',1,6),(356841,21798,'Joey',2,7),(356841,1194120,'Matteo',0,8),(356841,1180941,'Calli',0,9),(356841,1510866,'Shelley',0,10),(356841,1510860,'Club Sin Patron',1,11),(356841,1352028,'Christopher',2,12),(356841,1447655,'Ainsley',0,14),(356841,1585120,'Officer Hill',2,15),(301325,343,'Alex\'s 12-Step Friend',1,1),(301325,10871,'Sam\'s Mom',1,2),(301325,2838,'Alex Cox',1,3),(301325,9296,'Mr. Cox',2,4),(301325,16327,'Dr. White',2,5),(301325,210573,'Lisa',1,6),(301325,180425,'Mom',0,7),(301325,1102331,'Molly',0,8),(301325,61111,'Tatiana (voice)',1,9),(347755,987572,'Sean Kotz',2,1),(347755,83271,'Sonny Childe',2,2),(347755,84218,'Jake Kingston',0,3),(347755,1448492,'Lexi Thoms',1,4),(347755,1295282,'Willow Samuelson',1,5),(347755,67355,'Heather Samuelson',1,6),(44413,130752,'Amalia',0,0),(44413,18499,'Helena',1,1),(44413,130753,'Dr. Jano',0,2),(44413,113626,'Freddy',2,3),(44413,6859,'Inu00e9s',0,4),(39209,738,'Moses Zebulon \'Shalako\' Carlin',2,0),(39209,3783,'Countess Irina Lazaar',1,1),(39209,10018,'Sir Charles Daggett',2,2),(39209,10020,'Bosky Fulton',2,3),(39209,2567,'Baron Frederick Von Hallstatt',2,4),(39209,9907,'Lady Julia Daggett',1,5),(39209,4963,'Chato',2,6),(39209,40529,'Henry Clarke',2,7),(39209,20053,'Mako',2,8),(39209,91640,'Elena Clarke',1,9),(39209,29904,'Rojas',2,10),(39209,103789,'Buffalo',0,11),(39209,102328,'Chato\'s Father',0,12),(39209,1123038,'Loco',0,13),(39209,979706,'Hans',2,14),(48463,6818,'Himself',2,0),(48463,140529,'Heerself',0,1),(48463,140530,'Himself',0,2),(48463,18749,'Himself',2,3),(48463,140531,'Himself',0,4),(48463,140532,'Himself',0,5),(48463,140534,'Himself',0,6),(48463,11011,'Himself',2,7),(48463,24715,'Himself',0,8),(48463,1527,'Crew of Hertzog in Wonderland',2,9),(48463,140536,'Crew of Hertzog in Wonderland',0,10),(48463,55742,'Crew of Hertzog in Wonderland',0,11),(48463,140537,'Crew of Hertzog in Wonderland',0,12),(394047,1440057,'Sara Gold',0,0),(394047,1736,'Daniel Holloway',2,1),(394047,1063,'Liz Holloway',1,2),(394047,223012,'Will Holloway',2,3),(394047,33653,'Jackie O\'Connell',1,4),(394047,558747,'Trevor',0,5),(394047,439765,'Cassie Sumpter',1,6),(394047,1768594,'Abigail Holloway',1,7),(394047,109576,'Linda',1,8),(394047,294813,'Raymond',2,9),(394047,118364,'Michael Ames',2,10),(394047,58881,'Scott',0,11),(394047,1536517,'Pete Morton',0,12),(394047,1566915,'Jace',0,13),(394047,78117,'Vincent Bogel',0,14),(394047,208406,'Harley',2,15),(394047,42335,'Mrs. Gold',1,16),(394047,1219226,'Mr. Gold',0,17),(394047,1006368,'Dr. Dale',0,18),(394047,1038939,'Dr. Reddick',0,19),(394047,1129738,'Judge',0,20),(394047,1265023,'Landon',2,21),(394047,1737090,'Katie',1,22),(394047,1212619,'Brad Powell',2,23),(394047,1768676,'Hanna',1,24),(394047,936403,'News Reporter',0,25),(394047,1209727,'Deputy #1',2,26),(394047,1768665,'Deputy #2',0,27),(394047,1768627,'Dr. Angel Laughton',0,28),(394047,88105,'Bill',0,29),(312791,496731,'Kylie Atkins',1,1),(312791,500085,'Liz Owens',1,2),(312791,444420,'Gary Preston',2,3),(312791,1182814,'Kat',1,4),(312791,1210485,'Devon',1,5),(312791,936932,'Ben Stanley',2,6),(312791,133067,'Loverboy',2,8),(312791,90720,'Heather',1,10),(312791,1158832,'Janet',1,12),(312791,1197418,'Mia',1,13),(312791,1011104,'Anna',1,14),(312791,1417044,'Alex',0,15),(312791,1031380,'Girl #1',1,18),(266034,8789,'Julien Gahyde',2,1),(266034,19360,'Delphine Gahyde',0,2),(266034,1338472,'Esther Despierre',1,3),(266034,1066144,'Le juge d\'instruction',2,4),(280381,60848,'David',2,1),(280381,1229762,'Robert',0,2),(280381,1337598,'Jennifer',0,3),(280381,71836,'Felicia',1,4),(280381,2714,'Skip Johansen',2,5),(280381,1337599,'Henry',0,6),(280381,18112,'Rich',0,7),(280381,4975,'Eunice Sequoia',1,8),(280381,1337600,'Bianca',0,9),(280381,2253,'Clarence Greene',2,10),(280381,74410,'Rachel',0,11),(280381,1337601,'Tanya',0,12),(280381,1337602,'Shawna',0,13),(280381,130782,'Krista',1,14),(218500,587,'Boone Chate',2,0),(218500,16433,'Sheriff Frank Fly',2,1),(218500,19453,'Boone Chate',2,2),(52790,9979,'Martin Conlon',2,0),(52790,650,'Bessie Emery',1,1),(52790,1188934,'Helmut Brink',0,2),(52790,1188935,'Brigitta Brink',0,3),(52790,1188936,'Nicholas Emery',0,4),(52790,58115,'Tom Emery',2,5),(52790,1188937,'Nathan Emery',0,6),(52790,58796,'Frederick Treadway',0,7),(100275,20258,'Lars',2,0),(100275,1067604,'Eddie',0,1),(100275,90683,'Lesley',1,2),(100275,21292,'Harry',2,3),(100275,230,'Ronny',2,4),(100275,1098451,'Charles',2,5),(100275,948533,'Verner',2,6),(100275,546216,'Nancy',0,7),(100275,937792,'Ice Fisherman #1',2,8),(100275,1108894,'Ice Fisherman #2',0,9),(100275,225418,'Ice Fisherman #3',1,10),(100275,1738960,'Bartender',0,11),(100275,1323877,'Girlfriend in Bar',1,12),(100275,1542593,'Drunk Driver',0,13),(100275,1376615,'Angry Driver',2,14),(100275,80029,'Drunken Man',0,15),(100275,1738959,'Waitress (uncredited)',0,16),(100275,1108893,'Student (uncredited)',0,17),(295914,1372346,'Kurmanjan Datka (18-25)',0,1),(295914,1372348,'Alymbek Datka',0,3),(295914,1372349,'Kurmanjan Datka (50)',0,4),(295914,1372350,'Kamchybek',0,5),(295914,1372351,'Akbalban',0,6),(42033,158360,'J.J.',1,0),(42033,7868,'Vinny',2,1),(42033,102760,'Jordan',1,2),(42033,194370,'Gideon Hayes',0,3),(42033,1109247,'Walker',0,4),(42033,94998,'Howe',2,5),(42033,101801,'Lacey',2,6),(42033,1109248,'Alice',0,7),(42033,175315,'Boomer',0,8),(42033,152409,'Mrs. Boyd',0,9),(42033,193169,'WWN Newscaster',0,10),(42033,541478,'Newscaster',2,11),(46415,69709,'Gurneal Neal Ahluwalia',2,0),(46415,1054415,'Nikita \'Nikki\' Bakshi (as Tanisha Mukerji)',0,1),(46415,35793,'Man in bar',0,2),(46415,237977,'Sweety',0,3),(46415,1013936,'Happy',0,4),(46415,35761,'Baldev',0,5),(46415,591119,'Gyaniji',0,6),(46415,1288815,'Katrina',0,7),(46415,1288816,'Friend 1',0,8),(46415,1288817,'Friend 2',0,9),(46415,1148405,'Kristy',0,10),(46415,95412,'Chanel',1,11),(46415,1148403,'Karen',0,12),(46415,1288818,'Trish',0,13),(46415,86268,'Amanda',1,14),(38570,78320,'Andy',2,0),(38570,66524,'Kim',1,1),(38570,83352,'Sarah',1,2),(38570,120720,'Seth',0,3),(38570,120721,'McAnalovin',2,4),(38570,120722,'Jonah',0,5),(38570,27590,'Officer Beat',2,6),(38570,79082,'Officer Yo\'Ass',2,7),(38570,120723,'Sanjay',2,8),(38570,118237,'Werizon Man',2,9),(84197,936226,'Linda',0,0),(84197,933832,'Caeser',2,1),(84197,1163085,'Driver',0,2),(84197,188347,'Eddie Vargas',0,3),(84197,933839,'Rayborn',0,4),(84197,1163086,'Karla (voice)',0,5),(84197,180486,'Majo Tonorio',1,6),(84197,1163087,'Maria Tonorio',0,7),(84197,587,'Leandro',2,8),(84197,1160310,'Lupe Tonorio',0,9),(84197,38560,'Jose Tonorio',2,10),(84197,185785,'Amanda Hutchinson',1,11),(46256,488017,'Judah (voice)',1,0),(46256,7502,'Slink (voice)',2,1),(46256,147,'Boss (voice)',2,2),(46256,928572,'Jack (voice)',2,3),(43266,12308,'Mr. Gruffydd',2,0),(43266,70035,'Angharad Morgan',1,1),(43266,7505,'Huw Morgan',2,2),(43266,8841,'Mr. Gwillym Morgan',0,3),(43266,88460,'Bronwyn',1,4),(43266,29127,'Ianto',2,5),(43266,7381,'Mrs. Beth Morgan',1,6),(43266,13820,'Cyfartha',2,7),(43266,8726,'Ivor',2,8),(43266,113759,'Mr. Jonas',2,9),(43266,22603,'Mr. Parry',2,10),(43266,935345,'Ceinwen',1,11),(43266,14509,'Dr. Richards',2,12),(43266,100074,'Davy',2,13),(43266,1709751,'Gwilym',0,14),(43266,1152418,'Owen',0,15),(43266,82835,'Dai Bando',2,16),(43266,14691,'Evans',0,17),(43266,8232,'Mrs. Nicholas',1,18),(43266,939983,'Iestyn Evans',2,19),(278316,1224596,'',1,2),(278316,1232745,'',0,3),(278316,1333665,'Lafayette Hightower',0,4),(278316,1333666,'Dr. Wood',2,5),(278316,588319,'',2,6),(278316,1333667,'Nurse Royster',0,7),(278316,17838,'Seneschal Higginbottom',2,8),(278316,98889,'Bishop Zee',0,9),(278316,196179,'Deacon Yancy',2,10),(39939,52049,'Thorny',2,1),(39939,52051,'Mac',2,2),(39939,56251,'Farva',2,3),(39939,56253,'Foster',2,4),(39939,5375,'College Boy 3',2,5),(39939,1248,'Captain O\'Hagan',2,6),(39939,56252,'Rabbit',2,7),(39939,56595,'Ursula',2,8),(39939,84763,'College Boy 2',2,9),(39939,84407,'Larry Johnson',2,10),(39939,109764,'Frank Galikanokus',0,11),(39939,49201,'German Man',2,12),(39939,44935,'Governor Jessman',1,13),(39939,644,'Casino La Fantastique Sally',1,14),(39939,1544178,'German Woman',0,15),(39939,1544181,'Waitress',0,17),(357834,1195183,'Ali',2,0),(357834,1046202,'Lana',0,1),(357834,9464,'Suleyman',2,2),(357834,1006733,'Sara',1,3),(357834,928532,'Patrick',0,4),(357834,1559650,'Kelly',0,5),(215924,23873,'Martha',2,0),(215924,118537,'Claudia',0,1),(215924,1200529,'Alejandra',0,2),(215924,1200530,'Wendy',0,3),(215924,1200531,'Mariana',0,4),(215924,1200532,'Armando',0,5),(215924,1317581,'Alicia',0,6),(215924,1351449,'Tania',0,7),(215924,1351450,'Vigilante',0,8),(215924,1317841,'Seu00f1ora de la cera',0,9),(215924,1351451,'Doctor',0,10),(215924,1317795,'Prefecto',0,11),(215924,1351452,'Enfermera',0,12),(215924,1351453,'Niu00f1a autobus',0,13),(215924,1351454,'Radio announcer (voice)',0,14),(176124,108532,'Cory',0,0),(176124,131935,'Emma',1,1),(176124,211599,'Tyler',2,2),(176124,1080212,'Clay',0,3),(176124,124547,'Karen',0,4),(176124,211742,'Pajersky',2,5),(176124,2535,'Helene',1,6),(176124,1217939,'J.T.',2,7),(176124,1261400,'Kendricks',0,8),(176124,1521370,'Chad',0,9),(176124,997845,'Phil',2,10),(176124,1104770,'Rick',0,11),(176124,1637653,'Meth Addict',0,12),(176124,1642240,'Reporter',0,13),(60400,95624,'Mytyl',0,0),(60400,20369,'Mummy Tyl',1,1),(60400,3363,'Mr. Luxury',0,2),(60400,25173,'Tylette (the cat)',1,3),(60400,5461,'Tylo (the dog)',2,4),(60400,583695,'Angela Berlingot',1,5),(60400,13965,'Fairy Berylune',1,6),(60400,120707,'Light',0,7),(60400,231256,'Tyltyl',0,8),(60400,223051,'Mrs. Luxury',1,9),(60400,13969,'Daddy Tyl',2,10),(60400,601048,'Granny Tyl',0,11),(60400,1027241,'Grandpa Tyl',2,12),(60400,13822,'Mrs. Berlingot',0,13),(60400,14874,'Studious Boy',2,14),(60400,34505,'Wilhelm',2,15),(60400,81942,'Caller of Roll',0,16),(60400,34759,'Wild Plum',2,17),(60400,34277,'Father Time',2,18),(60400,13361,'Oak',2,19),(60400,121095,'Footman',2,20),(60400,29580,'Footman',0,21),(60400,348606,'Major Domo',2,22),(60400,1342200,'Lover',0,23),(60400,1543337,'Lover',0,24),(60400,1298484,'Boy Chemist',0,25),(60400,125847,'Child',2,26),(60400,1011213,'Child',2,27),(60400,1271030,'Child',0,28),(60400,935345,'Little Sister',1,29),(60400,148548,'Little Girl',0,30),(60400,10165,'Young Lad (uncredited)',2,31),(60400,116494,'Birch Tree (uncredited)',0,32),(60400,1550963,'Child',0,33),(60400,1422433,'Weeping Willow',0,34),(60400,1291802,'Beech Tree',0,35),(60400,1550964,'Choir',0,36),(60400,22606,'Groom',0,37),(60400,123122,'Cypress',0,38),(60400,939670,'Child',2,39),(60400,68653,'Nurse',0,40),(60400,34508,'Maple Tree',0,41),(60400,1550965,'Little Girl',0,42),(60400,1469575,'Child',0,43),(60400,80545,'Hickory',2,44),(60400,103947,'Crab Apple',0,45),(60400,1550967,'Child',0,46),(60400,1550968,'Child',0,47),(60400,119486,'Pine',0,48),(60400,1550969,'Child',0,49),(60400,1468095,'Walnut',0,50),(60400,1044770,'Boy Inventor',0,51),(60400,1271353,'Child',0,52),(60400,96240,'Elm Tree',2,53),(60400,120046,'Royal Forester',2,54),(60400,1237182,'Child',0,55),(60400,1550970,'Extra',0,56),(60400,34128,'Doorman',2,57),(310569,228012,'Val',1,0),(310569,1065193,'Fabinho',0,1),(310569,1342895,'Ju00e9ssica',0,2),(310569,1115320,'Bu00e1rbara',0,3),(310569,232517,'Carlos',0,4),(310569,1052174,'Edna',1,5),(310569,609937,'Antu00f4nio Jardineiro',2,6),(310569,1597631,'Raimunda',1,7),(310569,1356083,'Peruano',2,8),(310569,592507,'Vandru00e9',0,9),(310569,1597632,'Caveira',2,10),(310569,1597633,'Pu00e2mela',1,11),(310569,1597634,'Anita',0,12),(310569,1597636,'Janau00edna',0,13),(310569,1597638,'Fabinho (Crianu00e7a)',0,15),(98369,17347,'Donald Miller',2,0),(98369,86132,'Penny',1,1),(98369,38666,'Lauryn',0,2),(98369,74136,'The Pope',2,3),(98369,116514,'The Hobo',2,4),(98369,61983,'Kenny',2,5),(98369,1583776,'Jordan',2,6),(98369,1042516,'Town Crier',2,7),(98369,1512181,'Aqualike Babe',1,8),(98369,108635,'Fan',1,9),(98369,1039011,'Grace',1,10),(89750,1515534,'Herself',0,1),(89750,1515535,'Herself',0,2),(89750,1515536,'Herself',0,3),(89750,1515537,'Herself',0,4),(89750,1515538,'Herself',0,5),(49951,13593,'',2,0),(49951,2157,'Himself',2,1),(49951,7404,'',1,2),(49951,4687,'',1,3),(86331,1016071,'Cu00e9cile',1,0),(86331,1016073,'Alice',1,1),(86331,933178,'Matt',0,2),(86331,933179,'Chance',0,3),(86331,96928,'Manu',2,4),(86331,49863,'Pu00e8re d\'Alice',0,5),(86331,587147,'Maurice',0,6),(86331,1016075,'Virginie',0,7),(86331,1016076,'Yves',0,8),(86331,1016077,'Sonia',1,9),(86331,226119,'Alex',0,10),(86331,1016078,'Hu00e9lou00efse',0,11),(86331,1016079,'Alizu00e9e',0,12),(86331,1016080,'Julie',0,13),(86331,1016081,'Djamel',0,14),(355629,1499081,'Walter Alfaro',0,1),(355629,1499082,'Mario Alfaro',0,2),(355629,1499083,'Grandma',0,3),(355629,1499084,'Uncle Umberto',0,4),(355629,1499085,'Jenni Alfaro',0,5),(355629,1239649,'Crazy Face',0,6),(355629,1499086,'Ana',0,7),(355629,1499087,'Carmen Rosa',0,8),(355629,1499088,'Caramelo',0,9),(43884,8724,'Major Geoffrey Vickers',2,0),(43884,8725,'Elsa Campbell (as Olivia De Havilland)',1,1),(43884,8726,'Captain Perry Vickers',2,2),(43884,81934,'Sir Charles Macefield',2,3),(43884,3363,'Sir Benjamin Warrenton',0,4),(43884,8841,'Colonel Campbell',0,5),(43884,14261,'Captain James Randall',2,6),(43884,13356,'Surat Khan',2,7),(43884,120821,'Major Jowett (as G. P. Huntley Jr.)',0,8),(43884,88672,'Count Igor Volonoff',2,9),(43884,20369,'Lady Octavia Warrenton',1,10),(43884,2930,'Sir Humphrey Harcourt',2,11),(43884,30686,'Subadar-Major Puran Singh (as J. Carroll Naish)',2,12),(43884,142220,'Cornet Charles Barclay',2,13),(43884,101883,'Prema\'s Mother (as Princess Baigum)',0,14),(43884,142221,'Cornet Lawrence Pearson',0,15),(43884,125847,'Prema Singh',2,16),(43884,104806,'Wazir',0,17),(43884,142222,'Mrs. Jowett',0,18),(43884,3369,'Col. Woodward (uncredited)',2,19),(43884,29600,'Gen. O\'Neill (uncredited)',2,20),(43884,29580,'Lord Raglan (uncredited)',0,21),(43884,86349,'Bentham (uncredited)',2,22),(107315,820,'Jack / Frank',2,0),(107315,7073,'Gunnar',2,1),(107315,34915,'Penny / Paige',1,2),(107315,139473,'Morty / David',0,3),(107315,1041552,'Mrs. Hatcher',0,5),(59917,104035,'Gravedigger Jones',2,0),(59917,54565,'Coffin Ed Johnson',2,1),(59917,2067,'Rev. Deke O\'Malley',2,2),(59917,101948,'Iris',1,3),(59917,56949,'Uncle Bud / Booker Washington Sims',2,4),(59917,1232039,'Mabel',0,5),(59917,19111,'Capt. Bryce',2,6),(59917,23708,'Goodman',2,7),(59917,35370,'Lt. Anderson',2,8),(59917,1289835,'Calhoun',0,9),(59917,1600992,'Billie',0,10),(59917,1089553,'Jarema',0,11),(59917,68091,'Lo Boy',2,12),(59917,81552,'Reba',0,13),(157422,7055,'Bethany',1,0),(157422,1138751,'Luke',0,1),(157422,91494,'Michael',2,2),(157422,163642,'Hannah',0,3),(157422,1063782,'Maggie',0,4),(157422,157038,'Father Patrick',2,5),(157422,21315,'Dr. Woods',2,6),(157422,30489,'Jean',1,7),(310933,1162,'Sheriff Wilson',2,1),(310933,1466,'Santa Claus',2,2),(310933,19384,'God',2,3),(310933,1410993,'Oliver Jaffe',2,4),(310933,19393,'Satan',2,5),(310933,98100,'Leslie Van Houten',1,6),(310933,92813,'Candy Van Houten',1,7),(310933,99095,'Judge DeMitro',2,8),(310933,101208,'Susan Van Houten',1,9),(310933,1503335,'Rosalie Van Houten',1,10),(310933,1586740,'Patricia Van Houten',1,11),(310933,76822,'Chris Walker',2,12),(310933,1204020,'Carly',1,13),(310933,1287055,'Frank Frisch',2,14),(39895,1905,'Julian White',2,0),(39895,62019,'Stanley Burnside',2,1),(39895,55267,'Jesse Hardwick',2,2),(39895,43976,'Snakewoman',1,3),(39895,44728,'Sgt. Gallen',2,4),(39895,59369,'Beth Chandler',1,5),(39895,9925,'Katherine White',1,6),(39895,249760,'Steven Arden',0,7),(39895,106740,'Eileen Burnside',1,8),(39895,1124220,'Amarrillis Caulfield',0,9),(39895,1122282,'Andrew',0,10),(39895,1124221,'Amanda',0,11),(39895,102714,'Burt',2,12),(39895,196919,'Grace Scott',0,13),(39895,18894,'Felder Evans',2,14),(55616,1080571,'Dracula (as Zhang Wei-Qiang)',0,0),(55616,1080339,'Lucy Westernra',1,1),(55616,1080337,'Dr. Van Helsing',2,2),(55616,1080572,'Mina',1,3),(55616,1326419,'Jonathon Harker',0,4),(55616,1880635,'Arthur Holmwood',0,5),(55616,1620653,'Jack Seward',0,6),(55616,1880637,'Quincy Morris',0,7),(55616,1353361,'Renfield',0,8),(55616,1353360,'Mrs. Westernra',1,9),(55616,1352925,'Vampiress / Nun / Maid',0,10),(55616,1353358,'Maid / Nun',1,11),(55616,1353359,'Maid / Vampiress',1,12),(55616,1880643,'Maid / Nun',0,13),(55616,1880644,'Gargoyle / Nun',0,14),(50037,134708,'Barry Nyle',2,0),(50037,27113,'Mercurio Arboria',2,2),(50037,143307,'Rosemary Nyle',0,3),(50037,1048617,'Elena',1,4),(50037,158466,'Margo',1,5),(50037,1048618,'Sentionaut',0,6),(50037,168520,'Skinny Hesher',0,7),(50037,53119,'Fat Hesher',2,8),(50037,1048619,'Mutant',0,9),(94329,113732,'Rama',0,0),(94329,592496,'Jaka',2,1),(94329,1202416,'Andi',0,2),(94329,142019,'Mad Dog',0,3),(94329,592495,'Tama',0,4),(94329,1001665,'Wahyu',0,5),(94329,1001664,'Ari',0,6),(94329,1001666,'Bowo',0,7),(94329,1001667,'Budi',0,8),(94329,1127112,'Eko',0,9),(94329,1127113,'Alee',0,10),(94329,1103310,'Gofar',0,11),(94329,1398995,'Dagu',0,12),(94329,1674974,'Gofar\'s Wife',1,13),(53502,10843,'Jack',2,0),(53502,63109,'Curtis',2,1),(53502,24528,'Viper',2,2),(53502,225622,'Megan',0,3),(53502,95042,'Summer',1,4),(53502,77740,'Gabrielle',1,5),(53502,92490,'Doc',2,6),(53502,225624,'Zombie',0,7),(53502,225625,'Lance',0,8),(53502,225626,'Aries',0,9),(53502,63238,'Team Leader',2,10),(53502,76227,'Travis',2,11),(53502,225627,'Billy',0,12),(53502,26491,'Raleigh',2,13),(53502,63333,'Shelly',1,14),(53502,1755943,'Townsperson',0,15),(53502,44762,'Wheelchair ZomVamp',2,16),(53502,1451092,'Zombie Vampire (uncredited)',2,17),(53502,225623,'Zombie Vampire (uncredited)',0,18),(202604,1184745,'Himself',0,0),(244776,984629,'Andrew',2,1),(244776,55493,'Ira',2,2),(244776,1162670,'Christine',0,3),(244776,63758,'Kaia',1,4),(277685,444211,'Blaire Lilly',1,0),(277685,1385058,'Mitch Roussel',0,1),(277685,155621,'Jessica Jess Felton',1,2),(277685,1011103,'Adam Sewell',2,3),(277685,145131,'Ken Smith',2,4),(277685,105844,'Valerie Val Rommel',1,5),(277685,1385057,'Laura Barns',0,6),(277685,1385056,'Dank Jimmy',0,7),(277685,1385054,'Rando Pauls',0,8),(277685,1385055,'Matt',0,9),(277685,1491177,'Chatroulette Girl',0,10),(93856,49915,'Chris',2,0),(93856,21047,'Paul',2,1),(93856,999817,'Natalie',1,2),(93856,87879,'Zoe',1,3),(93856,109786,'Medic Goldshmidt',2,4),(93856,496410,'Amanda',1,5),(93856,60005,'Michael',2,6),(93856,173269,'Uri',2,7),(93856,88052,'Ukrainian Thug',0,8),(93856,938096,'Russian Check Point Guard',0,9),(93856,74502,'Medic Grotzky',2,10),(93856,52762,'Doctor',2,11),(347126,1258700,'Brooke Thawley',1,0),(347126,78501,'Grace Wesley',1,1),(347126,57171,'Tom Endler',2,2),(347126,116431,'Rev. Dave',2,3),(347126,6719,'Pete Kane',2,4),(347126,59153,'Principal Kinney',1,5),(347126,8874,'Judge Stennis',2,6),(347126,85759,'Catherine Thawley',0,7),(347126,24810,'Walter Wesley',2,8),(347126,1386122,'Elizabeth Healy',0,10),(46705,30614,'Dean Pereira',2,0),(46705,1812,'Cindy Heller-Pereira',1,1),(46705,6858,'Bobby',2,2),(46705,4735,'Jerry',2,3),(46705,968528,'Frankie',1,4),(46705,1117293,'Marshall',2,5),(46705,171463,'Gramma',0,6),(46705,171472,'Glenda',0,7),(46705,1117294,'Jamie',0,8),(46705,1117295,'Jo',0,9),(46705,1117296,'Charley',0,10),(46705,6437,'Dr. Feinberg',2,11),(46705,968530,'Mimi',1,12),(46705,155574,'Professor',1,13),(46705,1117297,'Checker',0,14),(76487,134365,'Isabella Rossi',1,0),(76487,141463,'Ben',0,1),(76487,114036,'David',2,2),(76487,579061,'Michael',0,3),(76487,94348,'Maria Rossi',1,4),(76487,58517,'Rosa',1,5),(76487,1179997,'Lieutenant Dreyfus',2,6),(76487,42724,'Father Christopher Aimes',2,7),(76487,1328110,'Doctor Antonio Costa',0,8),(76487,31639,'Father Robert Gallo',2,9),(39833,93105,'Vance Reno',2,0),(39833,48958,'Cathy Reno',1,1),(39833,21457,'Clint Reno',2,2),(39833,29363,'Mr. Siringo',0,3),(39833,15699,'Brett Reno',2,4),(39833,9112,'Mike Gavin',2,5),(39833,68642,'Martha Reno',1,6),(39833,30303,'Maj. Kincaid',2,7),(39833,123524,'Ray Reno',2,8),(39833,91260,'Ed Galt',0,9),(39833,89162,'Mr. Kelso',2,10),(39833,16199,'Mr. Davis',2,11),(39833,8262,'Pardee Fleming',2,12),(39833,41250,'Confederate Soldier',2,13),(171424,1078608,'Justine',1,0),(171424,219852,'Alejandro',2,1),(171424,223331,'Kaycee',1,2),(171424,1049540,'Daniel',0,3),(171424,131771,'Amy',1,4),(171424,189026,'Samantha',1,5),(171424,971898,'Carlos',2,6),(171424,57675,'Stoner',2,7),(171424,557303,'Jonah',2,8),(171424,1049536,'Kara',1,9),(171424,1264249,'Brooke',0,10),(171424,637953,'The Bald Headhunter',2,11),(171424,1264250,'Cody',0,12),(171424,1264251,'Protestor',0,13),(171424,25849,'Charles',0,14),(171424,1640231,'The Village Elder',0,15),(171424,1640237,'Village Girl',0,16),(171424,1640238,'Guard Leader',0,17),(171424,1074951,'Scott',2,18),(171424,1364024,'Teacher',0,19),(171424,1149061,'Elder\'s Assistant',1,20),(361475,6238,'Beatrice',1,0),(361475,1379277,'Elliot',2,1),(361475,1566670,'Clu00e9ment',2,2),(361475,1250809,'Philip',2,3),(361475,174745,'Sally',0,4),(361475,114476,'Franu00e7ois',0,5),(113947,16861,'Mark O\'Brien',2,0),(113947,9994,'Cheryl Cohen Greene',1,1),(113947,3905,'Father Brendan',2,2),(113947,56455,'Vera',1,3),(113947,1099170,'Amanda',0,4),(113947,6951,'Rod',2,5),(113947,41690,'Dr. Laura White',1,6),(113947,55257,'Josh',2,7),(113947,79087,'Amanda',1,8),(113947,79087,'Susan',1,9),(113947,945062,'Clerk',2,10),(113947,34407,'Joan',1,11),(113947,1519596,'Carmen',0,12),(113947,1448895,'Greg',0,13),(113947,1009266,'Tony',2,14),(113947,104482,'Matt',2,15),(113947,85949,'ER Doctor',2,16),(113947,1464843,'Ambulance Driver',0,17),(113947,24203,'Mikvah Lady',1,18),(83860,930214,'Hannah',0,0),(83860,930215,'Jason',0,1),(83860,930216,'Beach Cop',0,2),(83860,55779,'Jacob',2,3),(41469,15250,'Erin Castleton',1,0),(41469,1233,'Sean',2,1),(41469,11318,'Piper Castleton',1,2),(41469,126583,'Alan Monteiro',2,3),(41469,32224,'Rory',2,4),(244772,41091,'Maggie Dean',1,0),(244772,19278,'Milo Dean',2,1),(244772,36422,'Lance',2,2),(244772,15232,'Rich',2,3),(244772,467645,'Billy',2,4),(244772,20747,'Judy',1,5),(244772,149334,'Carlie',1,6),(244772,25909,'Waiter (uncredited)',2,7),(244772,53260,'Dr. Linda Essex',1,8),(244772,1333687,'Young Maggie',1,9),(244772,1267463,'Young Milo',0,10),(244772,1505855,'Eric',0,11),(244772,1505856,'Cullen',0,12),(244772,1375636,'Store Manager',1,13),(244772,1460940,'Security Officer',0,14),(244772,1410481,'Police Officer',0,15),(50837,550843,'Martha',1,0),(50837,12791,'Ted',2,1),(50837,16861,'Patrick',2,2),(50837,34490,'Lucy',1,3),(50837,55493,'Watts',2,4),(50837,205797,'Katie',1,5),(50837,936970,'Sarah',1,6),(50837,131871,'Zoe',1,7),(50837,984629,'Max',2,8),(50837,1216908,'Bartender',2,9),(50837,1887938,'Man in Home #1',0,10),(50837,938145,'Man in Home #2',0,11),(50837,1405969,'Cult Member',0,12),(50837,187919,'Cult Member',0,13),(248774,213001,'Donna Stern',1,0),(248774,496470,'Max',2,1),(248774,12930,'Nellie',1,2),(248774,1304331,'Ryan',0,3),(248774,25214,'Gene',2,4),(248774,21125,'Jacob',2,5),(248774,114470,'Nancy',1,6),(248774,1304330,'Joey',0,7),(248774,58619,'Dr. Bernard',1,8),(248774,1232489,'Waiter',0,9),(248774,1499369,'Stand-Up',0,10),(248774,212,'Sam',2,11),(248774,1499370,'Cabbie',0,12),(248774,1077345,'Female',1,13),(248774,1499371,'Female #2',0,14),(248774,1105311,'Lacey',1,15),(248774,209267,'Nurse',0,16),(248774,1499372,'Patient',0,17),(248774,1499382,'Extra: Outside Ryan\'s',0,18),(248774,1499383,'Extra: Outside Ryan\'s',0,19),(248774,1499384,'Extra: Italian Restaurant',0,20),(248774,1499385,'Extra: Italian Restaurant',0,21),(248774,1499386,'Extra: Italian Restaurant',0,22),(248774,1499387,'Extra: Italian Restaurant',0,23),(248774,1499388,'Extra: Italian Restaurant',0,24),(248774,1499389,'Extra: Italian Restaurant',0,25),(248774,1499390,'Extra: Italian Restaurant',0,26),(248774,1499391,'Extra: Italian Restaurant',0,27),(248774,1499392,'Extra: Italian Restaurant',0,28),(248774,1499393,'Extra: Italian Restaurant',0,29),(248774,1499394,'Extra: Italian Restaurant',0,30),(248774,1499395,'Extra: Italian Restaurant',0,31),(248774,1499396,'Extra: Italian Restaurant',0,32),(248774,1499397,'Extra: Italian Restaurant',0,33),(248774,1499398,'Extra: Planned Parenthood',0,34),(248774,1499399,'Extra: Planned Parenthood',0,35),(248774,1499400,'Extra: Planned Parenthood',0,36),(248774,1499401,'Extra: Planned Parenthood',0,37),(248774,1499402,'Extra: Planned Parenthood',0,38),(248774,1499403,'Extra: Planned Parenthood',0,39),(248774,1499404,'Extra: Planned Parenthood',0,40),(248774,1499405,'Extra: Planned Parenthood',0,41),(248774,1499406,'Extra: Planned Parenthood',0,42),(248774,1499407,'Extra: Planned Parenthood',0,43),(248774,1499408,'Extra: Planned Parenthood',0,44),(248774,1499409,'Extra: Planned Parenthood',0,45),(248774,1499410,'Extra: Bar / Comedy Club',0,46),(248774,1499411,'Extra: Bar / Comedy Club',0,47),(248774,1499412,'Extra: Bar / Comedy Club',0,48),(248774,1499413,'Extra: Bar / Comedy Club',0,49),(248774,1499414,'Extra: Bar / Comedy Club',0,50),(248774,1499415,'Extra: Bar / Comedy Club',0,51),(248774,1499416,'Extra: Bar / Comedy Club',0,52),(248774,1005658,'Extra: Bar / Comedy Club',2,53),(248774,1499417,'Extra: Bar / Comedy Club',0,54),(248774,1499418,'Extra: Bar / Comedy Club',1,55),(248774,1499419,'Extra: Bar / Comedy Club',0,56),(248774,1499420,'Extra: Bar / Comedy Club',0,57),(248774,1499421,'Extra: Bar / Comedy Club',0,58),(248774,1499422,'Extra: Bar / Comedy Club',0,59),(248774,1499423,'Extra: Bar / Comedy Club',0,60),(248774,1499424,'Extra: Bar / Comedy Club',0,61),(248774,1499425,'Extra: Bar / Comedy Club',0,62),(248774,1499426,'Extra: Bar / Comedy Club',0,63),(248774,1499427,'Extra: Bar / Comedy Club',0,64),(248774,1499428,'Extra: Bar / Comedy Club',0,65),(248774,1499429,'Extra: Bar / Comedy Club',0,66),(248774,1499430,'Extra: Bar / Comedy Club',0,67),(248774,1499431,'Extra: Bar / Comedy Club',0,68),(248774,1499432,'Extra: Bar / Comedy Club',0,69),(248774,1499433,'Extra: Bar / Comedy Club',0,70),(248774,1499434,'Extra: Bar / Comedy Club',0,71),(248774,1499435,'Extra: Bar / Comedy Club',0,72),(248774,1499436,'Extra: Bar / Comedy Club',0,73),(248774,1499437,'Extra: Bar / Comedy Club',0,74),(248774,1499438,'Extra: Bar / Comedy Club',0,75),(248774,1499439,'Extra: Bar / Comedy Club',0,76),(248774,1499440,'Extra: Bar / Comedy Club',0,77),(248774,1499441,'Extra: Bar / Comedy Club',0,78),(248774,1499442,'Extra: Bar / Comedy Club',0,79),(248774,1499443,'Extra: Bar / Comedy Club',0,80),(248774,1499444,'Extra: Bar / Comedy Club',0,81),(248774,1499445,'Extra: Bar / Comedy Club',0,82),(248774,1499446,'Extra: Bar / Comedy Club',0,83),(248774,1499447,'Extra: Bar / Comedy Club',0,84),(248774,1499448,'Extra: Bar / Comedy Club',0,85),(248774,1499449,'Extra: Bar / Comedy Club',0,86),(248774,1499450,'Extra: Bar / Comedy Club',0,87),(248774,1499451,'Extra: Bar / Comedy Club',0,88),(248774,1499452,'Extra: Bar / Comedy Club',0,89),(248774,1499453,'Extra: Bar / Comedy Club',0,90),(248774,549982,'Extra: Bar / Comedy Club',0,91),(248774,1499454,'Extra: Bar / Comedy Club',0,92),(248774,1499455,'Extra: Bar / Comedy Club',0,93),(248774,1499456,'Extra: Bar / Comedy Club',0,94),(248774,1499457,'Extra: Bar / Comedy Club',0,95),(248774,1499458,'Extra: Bar / Comedy Club',0,96),(248774,1499459,'Extra: Bar / Comedy Club',0,97),(248774,1499460,'Extra: Bar / Comedy Club',1,98),(248774,1499461,'Extra: Bar / Comedy Club',0,99),(248774,1499462,'Extra: Bar / Comedy Club',0,100),(248774,1499463,'Extra: Bar / Comedy Club',0,101),(248774,1499464,'Extra: Bar / Comedy Club',0,102),(248774,1499465,'Extra: Bar / Comedy Club',0,103),(248774,1499466,'Extra: Bar / Comedy Club',0,104),(248774,1499467,'Extra: Bar / Comedy Club',0,105),(248774,1499468,'Extra: Bar / Comedy Club',0,106),(248774,1499469,'Extra: Bar / Comedy Club',0,107),(248774,1499470,'Extra: Bar / Comedy Club',0,108),(248774,1499383,'Extra: Bar / Comedy Club',0,109),(248774,1499471,'Extra: Bar / Comedy Club',0,110),(248774,1499472,'Extra: Bar / Comedy Club',0,111),(248774,1499473,'Extra: Bar / Comedy Club',0,112),(248774,1499474,'Extra: Bar / Comedy Club',0,113),(248774,1499475,'Extra: Bar / Comedy Club',0,114),(248774,1499476,'Extra: Bar / Comedy Club',0,115),(248774,1499477,'Extra: Bar / Comedy Club',0,116),(248774,1499478,'Extra: Bar / Comedy Club',0,117),(248774,1499479,'Extra: Bar / Comedy Club',0,118),(248774,1499480,'Extra: Bar / Comedy Club',0,119),(248774,1499481,'Extra: Bar / Comedy Club',0,120),(248774,1499482,'Extra: Bar / Comedy Club',0,121),(248774,1499483,'Extra: Bar / Comedy Club',0,122),(248774,1499484,'Extra: Bar / Comedy Club',0,123),(248774,1499485,'Extra: Bar / Comedy Club',0,124),(248774,1499486,'Extra: Bar / Comedy Club',0,125),(248774,1499487,'Extra: Bar / Comedy Club',0,126),(248774,1499488,'Extra: Bar / Comedy Club',0,127),(248774,1499489,'Extra: Bar / Comedy Club',0,128),(248774,1499490,'Extra: Bar / Comedy Club',0,129),(248774,1499491,'Extra: Bar / Comedy Club',0,130),(159014,73931,'Herself',0,0),(159014,1428,'Himself',2,1),(159014,982,'Himself',0,2),(159014,10750,'Herself',1,3),(159014,3284,'Himself',2,4),(159014,18746,'Himself',2,5),(159014,14313,'Herself',1,6),(159014,69500,'Himself',2,7),(159014,1182683,'Herself',0,8),(159014,182102,'Herself',0,9),(159014,110559,'Himself',0,10),(159014,26482,'Herself',1,11),(159014,1179599,'Herself',1,12),(159014,225113,'Herself',0,13),(159014,1378743,'Herself',0,14),(49963,2229,'Amelia',1,0),(49963,8256,'Laura',1,1),(49963,23626,'Andrew',2,2),(49963,36631,'Peter',2,3),(49963,143150,'Young Amelia',0,4),(49963,143151,'Young Laura',0,5),(49963,17488,'Betsy',1,6),(49963,5010,'Frank',2,7),(49963,18472,'Bill',2,8),(49963,8792,'Andrew\'s Mom',1,9),(37532,1985,'Ray Joshua',2,0),(37532,203683,'',1,1),(37532,104789,'',2,2),(37532,1520857,'',2,3),(56666,78749,'',2,0),(56666,76233,'',0,1),(56666,35743,'',1,2),(56666,1013894,'',1,3),(56666,1064196,'',0,4),(56666,88138,'',1,5),(56666,35795,'',1,6),(56666,35782,'',0,7),(56666,35819,'',2,8),(56666,225296,'',0,9),(56666,1041427,'',0,10),(47686,15234,'Terry',2,0),(47686,65732,'Nick',2,1),(47686,49824,'Aunt Elise',1,2),(47686,186526,'Don',2,3),(47686,14702,'Aunt Elise',1,4),(46989,8985,'Diane',1,0),(46989,51536,'Megan Denning (Meg)',1,1),(46989,11064,'Auster',2,2),(46989,3713,'Delia',1,3),(46989,60460,'Pat',2,4),(46989,236049,'Lily',1,5),(46989,168906,'Georgia',1,6),(46989,236050,'Rob',2,7),(46989,236051,'Dad',0,8),(46989,194335,'Don',0,9),(46989,236052,'Boy in Class',0,10),(46989,236053,'Georgia\'s Mom',0,11),(46989,236054,'Blonde Girl',0,12),(46989,236055,'Priest',0,13),(46989,236056,'Mr. Kastran',0,14),(192132,34847,'April',1,0),(192132,1193604,'Teddy',0,1),(192132,232006,'Fred',2,2),(192132,17051,'Mr. B',2,3),(192132,1190917,'Emily',0,4),(192132,5576,'Stewart',2,5),(192132,1193605,'Archie',2,6),(192132,61659,'Mitch',2,7),(192132,1392137,'Raquel',1,8),(192132,13023,'Sally',1,9),(192132,172056,'Chrissy',1,10),(192132,1193606,'Anthony',0,11),(192132,161860,'Mr. Wilson',2,12),(192132,3094,'Mrs. Ganem',1,13),(192132,1392020,'Shauna',0,14),(192132,1392033,'Jane',0,15),(192132,1392034,'Ivan',0,16),(192132,1241339,'Jack O',0,17),(192132,1392056,'Seth',0,18),(192132,1392071,'Luke',0,19),(192132,1392072,'Girl at Party',0,20),(192132,1392073,'Sally\'s Friend',0,21),(192132,1022168,'Michael',0,22),(192132,1392074,'Police Officer',0,23),(192132,1392076,'Emma',0,24),(192132,19257,'Sherry',1,25),(192132,1392079,'Court Clerk Woman',0,26),(192132,1392080,'Pam',0,27),(192132,1392082,'Art Student #1',0,28),(192132,1392087,'Art Student #2',0,29),(192132,3041,'Jake',2,30),(192132,1392096,'Judy',0,31),(192132,1193629,'Janice',0,32),(192132,1392122,'Joy',0,33),(192132,110877,'Tanya',1,34),(192132,1392124,'Brittney',0,35),(192132,1392128,'Mrs. Stevenson',1,36),(192132,1392135,'Elderly Woman',0,37),(192132,1392144,'Mary',0,38),(192132,1392153,'College Boy #1',0,39),(192132,1392154,'College Boy #2',0,40),(244267,10692,'Ian Gray',2,0),(244267,222330,'Karen',1,1),(244267,469759,'Sofi',0,2),(244267,215055,'Kenny',2,3),(244267,128645,'Priya Varma',1,4),(244267,2617,'Dr. Jane Simmons',1,5),(244267,1232607,'Margaret Dairy',0,6),(244267,15338,'Darryl Mackenzie',2,7),(244267,1422497,'Julie Dairy',1,8),(244267,1788827,'Salomina',0,9),(244267,1455945,'Baby Tobias',0,10),(244267,1455946,'Baby Tobias',0,11),(244267,1455931,'7-Eleven Attendant',0,12),(244267,45448,'Marriage Clerk',0,13),(244267,1342356,'TV Anchor',0,14),(244267,1455943,'Posh Waitress',0,15),(244267,1113467,'Nurse',0,16),(244267,1342355,'Waitress',0,17),(123678,1172489,'Himself',0,0),(123678,1349417,'Himself',0,1),(123678,1172487,'Himself',0,2),(123678,1349439,'Himself',0,3),(123678,1349440,'Himself',0,4),(123678,1349441,'Himself',0,5),(123678,1349442,'Himself',0,6),(123678,1349443,'Himself',0,7),(123678,1172486,'Himself',0,8),(123678,1172488,'Himself',0,9),(39183,140152,'Himself (archive footage)',2,0),(39183,582438,'Himself',2,1),(39183,582439,'Himself',0,2),(39183,582440,'Himself',0,3),(39183,582441,'Himself',0,4),(39183,582442,'Himself',0,5),(39183,582443,'Himself',0,6),(39183,582444,'Himself',0,7),(39183,582445,'Himself',0,8),(39183,582446,'Himself',0,9),(39183,582447,'Himself',0,10),(39183,582448,'Himself (archive footage)',0,11),(39183,582449,'Himself',0,12),(39183,2876,'Narrator (Voice)',2,13),(62402,235276,'',0,0),(62402,235277,'',0,1),(62402,235278,'Laxman',0,2),(62402,1132157,'',0,3),(62402,1867384,'Dhaniram',0,4),(62402,1867386,'',0,5),(62402,1867388,'',0,6),(62402,1867389,'',0,7),(62402,1867390,'Lallu',0,8),(62402,1867391,'Chameli',0,9),(62402,1867392,'Jagru',0,10),(62402,1867393,'',0,11),(62402,1867394,'Thomas',0,12),(206412,21881,'',1,0),(206412,1188912,'',0,1),(206412,2171,'',0,2),(206412,95604,'',2,3),(206412,18277,'Sandra Bullock',1,4),(206412,4,'',1,5),(206412,142858,'',1,6),(206412,5281,'Spike Lee',2,7),(206412,6952,'Charlie Sheen',2,8),(206412,23931,'Mira',1,9),(206412,14698,'Penelope Ann Miller',1,10),(206412,2294,'Punk #2',0,11),(201132,1455870,'',0,0),(201132,1455871,'',0,1),(201132,1455872,'',0,2),(201132,1455873,'',0,3),(201132,1455874,'',0,4),(201132,1455875,'',0,5),(201132,1455876,'',0,6),(201132,1455877,'',0,7),(201132,1182832,'',0,8),(201132,1469835,'Andrew Velman',0,9),(201132,1182833,'Christine Powell',0,10),(251471,23532,'Narrator (voice)',2,1),(251471,581752,'Erzu00e4hler (german voice)',2,2),(112456,84841,'Caleb',2,0),(112456,55779,'Jack',2,1),(112456,2165,'Bethany',1,2),(112456,1054837,'Joey',2,3),(112456,1054838,'Ryder',2,4),(112456,1054839,'Jerry',2,5),(66195,11076,'Warwick Wilson',2,0),(66195,59671,'John Taylor',2,1),(66195,27631,'Det. Morton',2,2),(66195,553509,'Cathy Knight',1,3),(46727,17772,'Johnny',2,0),(46727,137391,'Eric',2,1),(46727,53283,'Steve',2,2),(46727,589,'Veronica',1,3),(46727,19187,'Wilma Price',1,4),(46727,14326,'Donna',1,5),(46727,37006,'Scooby',2,6),(46727,65224,'Kelley',1,7),(46727,69740,'Bud',2,8),(46727,1497300,'J.T.',0,9),(46727,169643,'Russel',2,10),(46727,238893,'Pez Boy',0,11),(46727,153997,'Brentley Shaw',2,12),(46727,97750,'Ticket Man',2,13),(46727,39173,'Bombshell #1',1,14),(46727,1733350,'Melanie',0,15),(46727,1733351,'Raver Girl #1',0,16),(46727,1733352,'Raver Boy',0,17),(46727,82594,'Bridget',1,18),(46727,1733354,'Store Clerk',0,19),(46727,84213,'Sports Announcer #2',2,20),(46727,1733356,'Raver Girl #2',0,21),(46727,1733357,'Trish',0,22),(46727,1733358,'Korean Man',0,23),(46727,54595,'Bombshell #2',1,24),(46727,1085240,'Vera',0,25),(46727,42691,'Homeless Man',2,26),(46727,155299,'Old Timer',2,27),(46727,1733359,'Teller',1,28),(46727,77036,'Overweight Man',2,29),(46727,104903,'Pete Price',0,30),(46727,64951,'Sports Announcer #1',0,31),(46727,1733360,'Oreo',0,32),(46727,97188,'Security Guard',0,33),(46727,1535957,'Mickey',0,34),(46727,202256,'TV Narrator',0,35),(46727,16501,'Travis',2,36),(46727,1733366,'Rick',0,37),(46727,1733368,'Skateboarder',0,38),(46727,11013,'Club Kid',2,39),(46727,343,'Girl in Car',1,40),(55180,158480,'Simon Geist',2,0),(55180,103,'Brent Benedict',2,1),(55180,167556,'Magda',0,2),(55180,167080,'Comic',2,3),(55180,75604,'Ist interviewer',2,4),(55180,55962,'Video producer',0,5),(55180,199445,'Band Leader',0,6),(91122,43894,'Kate',1,0),(91122,9207,'Louise',1,1),(91122,79795,'Rene',2,2),(91122,149484,'Carson',2,3),(320146,101810,'David',2,0),(320146,34070,'Juliette',1,1),(320146,1423672,'Wim',2,2),(320146,140369,'Sophie',1,3),(320146,998458,'Scott',0,4),(320146,223879,'Reggie Watts',2,5),(320146,185773,'Gary Gass',2,6),(320146,1106414,'Govindas / Brett',2,7),(320146,1571404,'Hollis',0,8),(320146,1186004,'Reny',0,9),(320146,449513,'Becky',1,10),(320146,1571405,'Gabe',0,11),(320146,130513,'Client',1,12),(320146,187712,'The Actor',0,13),(320146,180425,'Lucy',0,14),(320146,1571406,'Teddy',0,15),(320146,1571407,'Lauren',0,16),(320146,1571408,'Homunculus Creative',0,17),(320146,1571409,'Homeless Lady',0,18),(320146,1571410,'Hipster Bartender',0,19),(320146,1434230,'Emily',0,20),(320146,1571411,'',0,21),(219716,14704,'Melba May',1,0),(219716,5047,'Dottie Delgato',1,1),(219716,33260,'Brad',2,2),(219716,1280,'Flint',2,3),(219716,6213,'Trent',0,4),(219716,120587,'Joel',2,5),(219716,6465,'Sherri',1,6),(219716,6944,'Wanda',1,7),(219716,11794,'Raspy',0,8),(56491,10447,'Sergeant Major Lynn Delaney',1,0),(56491,18181,'Vice President Walker',2,1),(56491,97854,'Armstrong',2,2),(56491,120975,'Sharon Serrano',1,3),(56491,186466,'Murphy',2,4),(56491,76834,'Petelo',2,5),(56491,5534,'Hammer',2,6),(56491,1298966,'Logan',0,7),(56491,54492,'Admiral Winters',2,8),(56491,73883,'Solia',2,9),(56491,81876,'Jon Ellison',2,10),(56491,201862,'Kindall',0,11),(56491,169469,'Rosen',2,12),(56491,1298967,'Olive',0,13),(99826,11805,'Jimmy O\'Brien',2,0),(99826,17832,'Annie',1,1),(99826,569,'Ray',2,2),(99826,8792,'Ruth',1,3),(99826,1178527,'Wendy',0,4),(186935,1187081,'',0,0),(186935,1187082,'',0,1),(186935,1187083,'',0,2),(186935,1187084,'',0,3),(186935,153880,'American Commander',0,4),(357441,1503569,'',0,1),(357441,1254796,'',0,2),(357441,1503570,'',2,3),(357441,85978,'Tiwana',2,4),(242083,449513,'Katelyn',1,0),(242083,59841,'Dave',2,1),(242083,441567,'Donovan',2,2),(242083,17834,'Cory',2,3),(242083,62836,'Larson',2,4),(242083,92782,'Babatunde',2,5),(242083,12110,'Crystal',1,6),(242083,28638,'Rich',2,7),(242083,50095,'Julian',2,8),(242083,81321,'Christina Casserta',1,9),(242083,1569001,'Juli',0,10),(242083,1215797,'Maddy',1,11),(242083,39995,'Bennie',2,12),(242083,1059412,'Marshal',2,13),(242083,12041,'Woman at Dump',1,14),(242083,1437494,'Megyn McKibbens',0,15),(242083,512749,'Christian',2,16),(242083,130843,'Mrs. Torelli',0,17),(242083,6725,'Dale',2,18),(242083,1506488,'Juli\'s Friend',1,19),(41830,936,'Moise',2,0),(41830,28048,'Carson',2,1),(41830,96175,'Libby',1,2),(41830,127260,'Melina',1,4),(41830,127261,'Geronimo',2,5),(41830,127262,'Tutzi',2,6),(41830,127263,'Phillip',0,7),(41830,127264,'Hector',0,8),(41830,127265,'Fran',0,9),(41830,127266,'Ada',0,10),(41830,127267,'Aloner',1,11),(41830,11998,'Ben',2,12),(41830,44687,'Nina',1,13),(37694,237404,'Larry\'s Father',2,1),(37694,154950,'Lieutenant Westin',0,2),(37694,454223,'Yeoman Of The Flagship',0,3),(63287,72129,'Agnes',1,0),(63287,11826,'Sarah',1,1),(63287,71913,'Duval',2,2),(63287,56734,'Cammie',1,3),(63287,936143,'Bee',1,4),(63287,122681,'Sheila',0,5),(63287,936145,'Daniel',0,6),(63287,193870,'Dolly',1,7),(63287,58563,'Stymie',2,8),(63287,59581,'Clyde Senior',2,9),(63287,114372,'Darla',1,10),(63287,61011,'Maurice',0,11),(335874,10767,'',1,1),(335874,3266,'',2,2),(335874,6200,'',1,3),(335874,37421,'',2,4),(335874,207899,'',0,5),(335874,149550,'',1,6),(92635,553504,'Snow',1,0),(92635,75346,'Eve',1,1),(92635,21315,'Grant',2,2),(92635,99235,'Hunter',2,3),(92635,550274,'Bob',0,4),(92635,916072,'Cole',0,5),(92635,995469,'Lauren',1,6),(92635,995470,'Mya',0,7),(92635,108700,'Lyla',1,8),(92635,582740,'Sean',0,9),(92635,1099223,'Male Teen',0,10),(258755,1342237,'Rafa',0,0),(258755,1342236,'Ibrahim',0,1),(258755,34053,'Alicia',0,2),(258755,3813,'Josu00e9',2,3),(96534,44651,'Niklas',2,0),(96534,87243,'Leticia',1,1),(96534,38951,'Pastor Johnson',2,2),(96534,146004,'Luz',1,3),(96534,164465,'Mahdi',2,4),(272724,13022,'Judge Wells',2,1),(272724,1267277,'Elizabeth',1,2),(272724,21315,'William',2,3),(272724,111652,'Joseph',2,4),(272724,1070281,'Charlie',2,5),(272724,1411462,'Millard',0,6),(272724,1173041,'Clark',0,7),(84178,7517,'Sarah',1,0),(84178,25703,'Lou',1,1),(84178,88597,'Derek',2,2),(84178,221944,'Abbie',1,3),(84178,1191822,'Henry',0,4),(84178,176658,'Alex',2,5),(84178,1191823,'Fisherman',0,6),(101179,88322,'Paul',2,0),(101179,97505,'Chris',2,1),(101179,1037691,'Gemma',0,2),(101179,500045,'Justin',0,3),(101179,126173,'Eleanor',1,4),(101179,138237,'Felix',0,5),(101179,142289,'Jonesy',2,6),(101179,117654,'Woodbridge',2,7),(101179,1080771,'Luke',0,8),(52462,146028,'Philip',2,0),(52462,146029,'Mary / GG',0,1),(52462,146030,'Nicky / Taps',0,2),(52462,1090024,'Red',0,3),(52462,956483,'Charles',2,4),(52462,554633,'Rita',0,5),(269057,530618,'Stepphy',1,0),(269057,53,'George',2,1),(269057,503,'Bobby Shore',2,2),(269057,141217,'Fabian',2,3),(269057,1309774,'Helmut',2,4),(269057,934131,'Fifi',1,5),(269057,20196,'Gord',2,6),(269057,210221,'Poet, Beatnik',2,7),(269057,1311518,'Eleanor',0,8),(269057,65758,'Bennett',0,9),(269057,1216713,'Jack Avery',0,10),(269057,1503673,'Host',0,11),(269057,1177624,'Debbie',0,12),(269057,1243831,'Joan (rumored)',0,13),(269057,1820201,'Dancer #1',0,14),(269057,1820204,'Dancer #3',0,15),(269057,1820202,'Dancer #4',2,16),(269057,1512131,'Dancer #5',1,17),(269057,1820442,'Dancer #6',0,18),(269057,1820444,'Dancer #7',0,19),(269057,1820203,'Dancer #2',0,20),(287524,34199,'Blake',2,1),(287524,5139,'Dr. Andover',2,2),(287524,217055,'Megan',1,3),(287524,204468,'Sara',1,4),(287524,34839,'Gage',2,5),(287524,58517,'Paige',1,6),(287524,63738,'Dylan',2,7),(287524,210334,'Osborn',0,8),(287524,114373,'Caylee',1,9),(287524,1354405,'Kevin',0,11),(287524,1354406,'Diner Customer',2,12),(287524,1354407,'Diner Customer',0,13),(287524,92312,'Bauer',0,14),(287524,1639212,'Diner Customer',0,15),(206213,211590,'Hunter',0,0),(206213,11160,'Jesus',2,1),(206213,1085740,'Alison',1,2),(206213,1264391,'Jerry',0,3),(206213,1308965,'',0,4),(248402,8395,'Cal',2,0),(248402,1356402,'Claire',0,1),(248402,10839,'Liliana Bolu00edvar',1,2),(207769,15854,'Thomas',2,0),(207769,109156,'Anna Roland',1,1),(207769,101416,'James',2,2),(207769,1264845,'Patient 14',1,3),(207769,53971,'Callie',0,4),(207769,208061,'Dr. Kessle',2,5),(207769,1039678,'Raoul',2,6),(207769,1204048,'Laura Henrik',0,7),(207769,85954,'Elderly Doctor',2,8),(207769,1283874,'Olivia Kmiec',0,9),(207769,1283875,'Renny Seegan',0,10),(207769,202830,'Henry Cale',2,11),(271185,52018,'Katie Kampenfelt',1,0),(271185,2224,'Paul Spooner',2,1),(271185,15033,'Dan Gallo',2,2),(271185,8349,'',2,3),(271185,170635,'Mark Aubichon',2,4),(271185,163013,'Carol',0,5),(271185,215843,'Rory',2,6),(271185,1322687,'Alt. Rory',0,7),(271185,1322689,'Merci Sanchez',0,8),(271185,58045,'Caroline Kampenfelt',1,9),(271185,963693,'Joel Seidler',2,10),(271185,137424,'Jade',1,11),(271185,418,'Doug Kampenfelt',2,12),(271185,20803,'Affie',1,13),(271185,181081,'Nico Dempster',2,14),(271185,81726,'Dr. Sherman',1,15),(271185,70696,'Margaret Spooner',1,16),(271185,1072882,'Raver',1,17),(91070,78080,'Kim',1,0),(91070,7517,'Deena',1,1),(91070,52783,'Laura',1,2),(91070,22128,'Nicolas',2,3),(91070,20301,'Henri',2,4),(91070,939125,'Jayde',0,5),(91070,71402,'Patti',1,6),(91070,13635,'Francesca',1,7),(91070,113563,'Marc',2,8),(91070,5950,'Pop pop',2,9),(91070,1546521,'Barry Robert Philips',0,10),(91070,21593,'Sergei',2,11),(91070,22223,'Pauline',1,12),(91070,83225,'Ivan #1',2,13),(91070,1224681,'Ivan #2',0,14),(91070,1224510,'Lauren Conrad',1,15),(91070,140406,'Dr. Katie',1,16),(91070,928698,'Nurse Nic',0,17),(91070,1214164,'Hester',0,18),(91070,99007,'Ms. Crenshaw',1,19),(91070,61218,'Shiva the Yoga Teacher',1,20),(91070,63661,'Rita the Receptionist',1,21),(91070,1572052,'Bob the Broker',2,22),(91070,1454946,'Jayde\'s Friend Tanya',1,23),(91070,1034513,'Billy',2,24),(323270,146268,'Hal',2,1),(323270,146269,'Dr. Aleksey',0,2),(323270,440879,'Miguel',2,3),(323270,1208166,'The Deviant One',0,4),(323270,111090,'Demonio',0,5),(323270,67052,'Cristina',1,6),(60421,549972,'Atafeh',1,0),(60421,549973,'Shireen',1,1),(60421,549974,'Mehran',2,2),(60421,549975,'Firouz',0,3),(60421,1699528,'Azar Hakimi',0,4),(60421,1459466,'Hossein',0,5),(60421,1486894,'Joey',0,6),(157354,135651,'Oscar',2,0),(157354,6944,'Wanda',1,1),(157354,53936,'Sophina',1,2),(157354,999605,'Katie',0,3),(157354,79072,'Officer Caruso',2,4),(157354,62747,'Officer Ingram',2,5),(157354,1295290,'Ashae',0,6),(157354,1141877,'Tatiana',0,7),(157354,1056129,'Brandon',0,8),(157354,1286552,'Joe',0,10),(157354,1445528,'Cale',2,11),(127867,36594,'Alice',1,0),(127867,11665,'John',2,1),(127867,6279,'Payton',1,2),(127867,141034,'Arnie',2,3),(127867,61178,'Louise',1,4),(127867,452205,'Chuck',2,5),(127867,4025,'Dr. Ling',2,6),(127867,224183,'Ricky',2,7),(127867,1141384,'Mary',1,8),(127867,58737,'Joe',2,9),(127867,10386,'Trudy',1,10),(127867,94602,'Mr. Tutor',0,11),(127867,1179253,'Mrs. Tutor',0,12),(127867,111678,'Gilad',2,13),(127867,1179254,'Yoel',0,14),(127867,1179255,'Mollia',0,15),(127867,1179256,'Interviewer',0,16),(127867,1179257,'Bartender',0,17),(127867,59841,'Antique Dealer',2,18),(127867,1179260,'Eight Year Old',0,19),(127867,1179261,'Female Reporter',0,20),(127867,1179262,'Donna',0,21),(127867,204392,'Brandi',1,22),(127867,1179263,'BMW Dealer',0,23),(127867,1179264,'Antiques Roadshow Attendee 1',0,24),(127867,1179265,'Antiques Roadshow Attendee 2',0,25),(127867,1179266,'Waxer',0,26),(127867,1179267,'Mr. Tutor\'s Lover',0,27),(127867,937873,'Highway Patrolman',0,28),(127867,1179268,'Cowboy (uncredited)',0,29),(127867,1179269,'Reception Attendee (uncredited)',0,30),(127867,118387,'Antique Collector (uncredited)',0,31),(146882,1124972,'Elza',0,0),(146882,1124973,'Mr. Du00e9siru00e9',0,1),(146882,1124974,'Bernard',0,2),(215918,71913,'Scoop',2,0),(215918,15566,'Shenae Brown',1,1),(215918,76669,'Alonso',2,2),(215918,112560,'Turtle',2,3),(215918,57686,'Tim Brown',2,4),(215918,1034453,'Neecy',1,5),(84200,71552,'Katie Steel',1,0),(84200,54716,'Lauren Powell',1,1),(84200,4451,'Sean',2,2),(84200,15033,'Jesse',2,3),(84200,13920,'Adele',1,4),(84200,222129,'Charlie',2,5),(84200,54645,'Rachel Rodman',1,6),(84200,1281758,'Krissy',1,7),(84200,79025,'Scott',2,8),(84200,19274,'Jerry',2,9),(84200,77089,'Harold',2,10),(84200,179549,'Morty',2,11),(84200,19303,'Cabbie',2,12),(84200,1585133,'Bridgette',0,13),(84184,80591,'Celeste Martin',1,0),(84184,62861,'Jesse Abrams',2,1),(84184,109,'Scott',2,2),(84184,34847,'Riley Banks',1,3),(84184,71552,'Beth',1,4),(84184,29020,'Steve Tucker',2,5),(84184,93377,'Savannah',1,6),(84184,61659,'Paul',2,7),(84184,1181324,'Parent',0,8),(84184,85484,'Nick',2,9),(84184,1255201,'Herself',0,10),(84184,78500,'Skillz',2,11),(84184,109741,'Yogurt Girl',0,12),(84184,1121635,'Veronica',1,13),(84184,62064,'Rory Shenandoah',2,14),(84184,1584972,'Waitress',1,15),(84184,1246804,'Peter Pan',2,16),(84184,1260036,'Snow White',0,17),(84184,1224996,'News Reporter',1,18),(84184,584096,'Priest',0,19),(84184,131723,'Bridesmaid',1,20),(45767,133669,'Russell Carlisle',2,0),(45767,54450,'Norris Anderson',2,1),(45767,133670,'The Dean',2,2),(45767,26662,'Michelle Bain',1,3),(45767,55259,'Eddie Martinez',2,4),(45767,18262,'Dr. Wiseman',2,5),(367551,10822,'Melvin',2,1),(367551,62842,'Lucille',2,2),(367551,1547858,'Doreen\'s Boyfriend',0,3),(367551,1547859,'Rex',0,4),(343409,19664,'Brooke',1,1),(343409,1272162,'Ivy',1,2),(343409,119421,'Matt',2,3),(343409,1517668,'Wulfric',0,4),(60243,240240,'Simin',1,0),(60243,240242,'Somayyeh',0,1),(60243,240243,'Miss Ghahraii',0,2),(60243,559566,'Nader',2,3),(60243,559567,'Razieh',1,4),(60243,229933,'Hojjat',2,5),(60243,559568,'Nader\'s Father',2,6),(60243,559569,'Simin\'s Mother',0,7),(60243,1141703,'Soldier',0,8),(60243,1029121,'Mrs. Kalaani',0,9),(60243,41525,'Interrogator',2,10),(57294,71770,'Joey Frisk',2,0),(57294,143419,'Frank Archer',0,1),(57294,219762,'Jonathan Meldrick',0,2),(57294,70518,'Karen',0,3),(47889,15852,'Ruby Lee Gissing',1,0),(47889,5010,'Mike McCaslin',2,1),(47889,127544,'Ricky Chambers',2,2),(47889,19488,'Mildred Chambers',0,3),(47889,167736,'Rochelle Bridges',0,4),(47889,1607815,'Debrah Ann',0,5),(47889,1607816,'Persefina',0,6),(47889,1607817,'Indian Singer',0,7),(47889,1607818,'Wanda',0,8),(78705,46853,'Beba Pujol',1,0),(78705,1018729,'Dora',0,1),(78705,100138,'Vu00edctor',0,2),(78705,1348331,'Perla',0,3),(78705,1348332,'Sara',0,4),(146269,54455,'Charlie',2,0),(146269,66147,'Paloma',1,1),(146269,7498,'Joe',2,2),(146269,57451,'Cassandra',1,3),(146269,25310,'Franklin',2,4),(146269,95001,'Sebastyn',2,5),(292483,168349,'Scott',0,1),(292483,83272,'Tori',1,2),(292483,1367074,'Joel',0,3),(292483,1367075,'Janie',0,5),(292483,1737362,'Marissa',1,6),(211557,203418,'Danny',0,0),(211557,1195589,'Airplane passenger',0,1),(211557,1195590,'Emma',0,2),(211557,115244,'Alien',2,3),(211557,1528106,'Chloe',0,4),(211557,144606,'Jim',2,5),(211557,1663262,'Murray',0,6),(40862,938732,'Himself',0,0),(84332,119592,'Darius Britt',1,0),(84332,45407,'Kenneth Calloway',2,1),(84332,543505,'Jeff Schwensen',2,2),(84332,1109702,'Arnau',2,3),(84332,113818,'Liz McHollis',1,4),(84332,40462,'Belinda',1,5),(84332,60074,'Mr. Britt',2,6),(84332,25884,'Bridget Bay',1,7),(84332,5702,'Shannon',0,8),(84332,79907,'Smith',0,9),(84332,1173424,'Jones',0,10),(84332,1173425,'Linsey',0,11),(84332,1173426,'Darcy',0,12),(84332,1173427,'Halloween',0,13),(84332,176048,'Restaurant Manager',0,14),(84332,1173428,'Security Guard',0,15),(84332,90492,'Uptight Mom',1,16),(84332,1173429,'Kid in Diner',0,17),(84332,1173430,'Shift Manager',0,18),(74510,55638,'Himself',2,0),(74510,576229,'Na\'im Lynn',0,1),(74725,30433,'Jay',2,0),(74725,57578,'Shel',1,1),(74725,524107,'Sam',2,2),(74725,17078,'Gal',2,3),(74725,137927,'The Client',2,4),(74725,207636,'Fiona',0,5),(74725,524111,'Hotel Receptionist',0,6),(74725,72315,'Justin',2,7),(74725,573319,'Keira',0,8),(74725,137469,'Stuart',2,9),(74725,524105,'Hotel Waitress',0,10),(74725,482444,'The Priest',2,11),(74725,524108,'Hotel Receptionist 2',0,12),(74725,206847,'The Librarian',2,13),(74725,26679,'The Doctor',2,14),(74725,45282,'High Priest',0,15),(74725,28483,'Newsreader',1,16),(74725,182327,'Radio Reporter',1,17),(74725,219367,'Radio Reporter',0,18),(58428,60072,'Claire',1,0),(58428,60846,'Luke',2,1),(58428,11084,'Leanne Rease-Jones',1,2),(58428,121952,'Old Man',2,3),(58428,139135,'Barista',1,4),(58428,90777,'Gayle, Angry Mom',1,5),(58428,88548,'Madeline O\'Malley',1,6),(58428,88547,'Officer Mitchell',0,7),(36584,156509,'Ron Kobeleski',2,0),(36584,96900,'Sharon Kobeleski',1,1),(36584,96933,'Steven wu',0,2),(36584,10361,'Walter Ohlinger',2,3),(36584,1574427,'Karen Kobeleski',0,4),(36584,1574428,'Jimmy Jones',0,5),(206197,929905,'Emily Parris',1,0),(206197,5526,'Mary Warren',1,1),(206197,1385063,'Lavinia Hall',0,2),(206197,42279,'Rose Hall',1,3),(206197,53493,'Gordy Gambhir',2,4),(206197,113308,'Stanley Huang',2,5),(206197,1188567,'Sarah',0,6),(206197,1285414,'Catherine Huang',0,7),(206197,78404,'Principal Harvey',2,8),(206197,58544,'Tom',2,9),(206197,1397360,'Henry Huang',0,10),(206197,1506477,'Hilda',0,11),(206197,1506478,'Jeff',0,12),(206197,1232484,'Linda Warren',0,13),(206197,1506479,'Travis',0,14),(206197,1506481,'Mike',0,15),(206197,212403,'Kingston Chronicle Journalist',0,16),(206197,1400908,'Grace Huang',0,17),(206197,1506482,'Gong-Gong',0,18),(206197,1506483,'Mary - Reenactment Scene',0,19),(206197,1506484,'Interviewer',0,20),(206197,206902,'',0,21),(206197,1506485,'Kandy Kane',0,22),(206197,1506486,'Lavinia - Reenactment Scene',0,23),(206197,14984,'Sue Parris',1,24),(206197,1506487,'Mrs. Olson',0,25),(206197,1506488,'Secret Sisterhood Girl',1,26),(206197,1506489,'Radio Host',0,27),(206197,1506490,'Tara',0,28),(206197,1473432,'Tanya',1,29),(206197,1506491,'Jennifer',0,30),(206197,1506492,'Lindsey',0,31),(206197,108923,'Hilda\'s Dad',0,32),(206197,1506493,'Reporter',0,33),(206197,144211,'Reporter',0,34),(206197,1506494,'High School Girl #1 (uncredited)',0,35),(206197,1506495,'High School Girl #2 (uncredited)',0,36),(206197,1188753,'Woman Dressed as Ghost (uncredited)',0,37),(206197,130843,'Shakespeare Audience (uncredited)',0,38),(206197,1506496,'Reporter (uncredited)',0,39),(206197,1286905,'Proud Parent (uncredited)',0,40),(206197,1179269,'PTA Meeting Attendee (uncredited)',0,41),(206197,27680,'Mr. Barry (uncredited)',0,42),(206197,1506497,'Reporter (uncredited)',0,43),(206197,1506498,'Cop (uncredited)',0,44),(206197,1084956,'Journalist (uncredited)',0,45),(206197,118387,'Reporter (uncredited)',0,46),(206197,1506499,'High School Girl #3 (uncredited)',0,47),(206197,1506500,'Extra (uncredited)',0,48),(302579,131455,'Vickie Lewis Bighawk',0,1),(302579,1384726,'Joanne Chapa',0,2),(302579,65529,'Tanya Lewis',1,3),(302579,236022,'Karen Lewis',0,4),(302579,86920,'Steve Bighawk',2,5),(302579,943027,'Mark',2,6),(302579,43753,'Craig',2,7),(302579,5960,'Madame Celeste',1,8),(302579,1212276,'Rape Counselor',0,9),(302579,7862,'Chairman Pico',0,10),(302579,116579,'Mr. Carson',2,11),(302579,94651,'Policeman',2,12),(302579,1384731,'',0,18),(302579,1384733,'Extra',0,19),(302579,1384734,'Vickie Lewis Bighawk\'s son',0,20),(302579,1384735,'Vickie Lewis Bighawk\'s Daughter',0,21),(302579,1384736,'Party Cook',0,22),(51955,93133,'Lee Plenty',2,0),(51955,93129,'Havilland Savage',1,1),(51955,932191,'Caroline Gooden',1,2),(51955,55258,'Leigh Darling',1,3),(51955,932198,'Felix Darling',2,4),(51955,175594,'Bobby Montgomery',0,5),(51955,932200,'Grandma Moore',1,6),(51955,932201,'Alexandria Beaumont',0,7),(51955,932202,'Mr. Savage',0,8),(51955,57686,'Michael Simmons',2,9),(376004,55084,'Samuel Deuprey',2,0),(376004,154955,'Ashley',1,1),(376004,51684,'Damien',2,2),(376004,154048,'Lola',1,3),(376004,1562397,'Jasmine',1,4),(376004,1278781,'Rebecca Scott',1,5),(158752,154472,'Jim',2,0),(158752,1140162,'Emily',0,1),(158752,1140163,'Sara',0,2),(158752,1140164,'Sophie',0,3),(158752,31242,'Other Woman',1,4),(158752,1140165,'Elliot',0,5),(158752,1257563,'Isabelle',0,6),(158752,1324608,'Man on Scooter',0,7),(40658,1382818,'himself',0,0),(40658,1220249,'himself',0,1),(40658,7018,'himself',2,2),(40658,1382820,'himself',0,3),(40658,1085697,'himself',2,4),(40658,1382821,'herself',0,5),(40658,211412,'the narrator',0,6),(40658,1371158,'himself',2,7),(40658,1017450,'herself',1,8),(40658,1382823,'himself',0,9),(40658,47991,'himself',2,10),(40658,1382825,'himself',0,11),(40658,11370,'himself',2,12),(40658,142030,'Himself',0,13),(40658,59839,'himself',2,14),(118612,54815,'Freddy',2,0),(118612,210829,'Ana',0,1),(118612,427,'Aunt Lu',1,2),(118612,118595,'Doctor',0,3),(118612,94429,'Phil',2,4),(118612,935720,'Young Ana',1,5),(118612,196855,'Elderly Man',2,6),(118612,93224,'Caretaker',1,7),(118612,1178779,'Nurse',0,8),(118612,1211367,'Chuck',0,9),(118612,1332171,'Carnival Attendant',0,10),(118612,1637509,'Young Freddy',2,11),(118612,80619,'Doctor',2,12),(138976,1054839,'Nathan',2,0),(138976,2712,'Henry',2,1),(138976,129928,'Cecilia',1,2),(138976,946263,'Vanessa',2,3),(323967,211598,'Walter',2,0),(323967,20301,'Greg',2,1),(323967,12519,'Karen',1,2),(323967,3905,'Dr. Corman',2,3),(323967,16501,'Vince',2,4),(323967,9206,'Allie',1,5),(323967,207401,'Kendall',1,6),(323967,56857,'Jim',2,7),(323967,84407,'Corey',2,8),(323967,31137,'Darren',0,9),(181940,1164826,'',0,0),(181940,1164827,'',0,1),(181940,1154488,'',0,2),(181940,1164828,'',0,3),(181940,1164829,'',0,4),(181940,1164830,'',0,5),(181940,1164831,'',0,6),(125263,5010,'Jimmy',2,0),(125263,52474,'Tom',2,1),(125263,112693,'Elizabeth',1,2),(125263,4158,'Susy',1,3),(125263,20904,'Mr. Chen',2,4),(125263,58513,'Gramps',2,5),(125263,42140,'Jed',2,6),(125263,1688899,'Jill',0,7),(125263,98102,'Bo',2,8),(125263,147396,'Ginger (as Charley Spradling)',1,9),(125263,99619,'Karen',1,10),(125263,45011,'Marcia Gray',1,11),(125263,42545,'Ron Jeremy',2,12),(263503,12798,'Water',2,1),(263503,61852,'Power',2,2),(263503,6574,'Turnvil',2,3),(263503,573817,'Amy',1,4),(263503,1307870,'Rafas',0,5),(263503,1307871,'Church Member',1,6),(263503,50880,'',2,7),(263503,57991,'Officer Siler',1,8),(263503,943222,'Sgt. Grimm',2,9),(263503,8689,'Preacher Broyard',2,10),(263503,1141474,'Tequila Sunrise',1,11),(324322,1667099,'Himself - lead singer, Songhoy Blues',0,1),(324322,1621160,'Himself, guitar, Songhoy Blues',0,2),(324322,1667100,'Himself, guitar, Songhoy Blues',0,3),(324322,1667101,'Himself, drummer, Songhoy Blues',0,4),(324322,1667102,'Herself, singer',0,5),(375950,33161,'Jean-Pierre Werner',0,1),(375950,38877,'Nathalie Delezia',1,2),(375950,38501,'La mu00e8re de Werner',1,3),(375950,930288,'Vincent Werner',0,4),(375950,23505,'Noru00e8s',2,5),(375950,71491,'Maroini',0,6),(375950,1558159,'Monsieur Sorlin',0,7),(375950,1558160,'Ninon',0,8),(375950,230432,'Le fiancu00e9 de Ninon',0,9),(375950,1660816,'Alexis',0,10),(375950,1457794,'La mu00e8re d\'Alexis',0,11),(375950,1660817,'Guy',0,12),(375950,1660822,'Fanny',0,13),(375950,357122,'La patiente du00e9pressive',0,14),(375950,1469823,'Le patient diabu00e9tique',0,15),(375950,104101,'Monsieur Jallet',0,16),(375950,1660838,'Jeune femme condylome',0,17),(375950,1660839,'Jeune homme condylome',0,18),(375950,1057464,'Monsieur Voucher',0,19),(375950,1660841,'L\'agriculteur',0,20),(375950,1660842,'Sandana',0,21),(375950,585485,'La patiente mu00e9nisque',0,22),(375950,1457789,'Vieille patiente alitu00e9e',0,23),(375950,51104,'Vieille dame campement',0,24),(375950,1660846,'Mu00e8re Enzo',0,25),(375950,1660847,'Enzo',0,26),(375950,1660848,'Educatrice CAT',0,27),(375950,1053140,'Chargu00e9e de mission',1,28),(375950,146944,'Conducteur accident',0,29),(375950,1457796,'Infirmiu00e8re chimio',0,30),(375950,115968,'Repru00e9sentante du00e9partement',1,31),(375950,1660854,'Serveuse restaurant',0,32),(375950,1660855,'Employu00e9 de mairie',0,33),(375950,1660856,'Chanteur groupe Country',0,34),(375950,1374135,'Bartender',0,35),(375950,1660858,'Fils du Maire',0,36),(278348,21124,'Drina',1,0),(278348,18750,'Mrs. Crawford',1,1),(278348,121718,'Mr. Crawford',2,2),(278348,211991,'Brandon Crawford',2,3),(278348,1611977,'Juan',0,4),(278348,172529,'Father Niles',2,5),(278348,1161588,'Victor',0,6),(278348,1333734,'Stacy',0,7),(278348,1333735,'Carlos',0,8),(278348,162541,'Alice',1,9),(75986,8944,'Anna Winter',1,0),(75986,32479,'Maggie Winter',1,1),(75986,2454,'Chuck Winter',2,2),(75986,408,'Oliver Andrews',2,3),(75986,23882,'Wendy',1,4),(75986,12134,'Sally',1,5),(385636,1585902,'Tilen',0,1),(385636,1585903,'u017deljko',0,2),(385636,1585904,'Sara',0,3),(385636,1585905,'Tina',0,4),(385636,1585906,'Ana',0,5),(385636,584927,'Rado',0,6),(385636,1585907,'Lena',0,7),(211086,1462533,'Himself',0,1),(211086,1462534,'Himself',0,2),(211086,1462535,'Himself',0,3),(211086,1462536,'Himself',0,4),(211086,1462537,'Himself',0,5),(211086,1462538,'Himself',0,6),(211086,1462539,'Himself',0,7),(211086,1462540,'Himself',0,8),(211086,1462541,'Himself',0,9),(211086,1462542,'Himself',0,10),(89857,937877,'Orchid',0,0),(89857,51988,'Sheila',1,1),(89857,160098,'Bakersfield Bouncer',0,2),(89857,95875,'Mr. Doobin',2,3),(89857,98106,'Arnie',2,4),(89857,22297,'Winter Wierdo',2,5),(89857,937878,'Tow Truck Driver',2,6),(89857,167411,'Cab Driver',2,7),(89857,191202,'Richie',2,8),(89857,27105,'Barry',2,9),(89857,71403,'James Malone Sr.',2,10),(89857,52117,'Doctor',2,11),(89857,527393,'Tommy',2,12),(89857,1240486,'Monica',1,13),(89857,21131,'Officer Fogerty',2,14),(89857,464993,'Tommy',2,15),(41144,84841,'Jake Taylor',2,0),(41144,96029,'Amy Briggs',1,1),(41144,227886,'Chris Vaughn',0,2),(41144,60905,'Doug Moore',2,3),(41144,1385322,'Andrea Stevens',1,4),(41144,133669,'Mark Rivers',2,5),(41144,1054837,'Jonny Garcia',2,6),(41144,1614882,'Kelsi',1,7),(35199,116333,'Himself',2,0),(35199,116334,'Himself',0,1),(35199,116335,'Himself',0,2),(35199,116336,'Himself',0,3),(35199,116337,'Himself',0,4),(35199,116338,'Herself',0,5),(35199,116339,'Himself',0,6),(35199,116341,'Himself',2,8),(35199,12219,'Himself',2,9),(84401,32905,'Shayne Sheyndl',1,0),(84401,930743,'Himself',0,1),(84401,287382,'Menachem Mendi',2,2),(84401,930744,'Himself',0,3),(84401,20899,'Tevye',2,4),(84401,3008,'Narrator',2,5),(84401,930745,'Himself',0,6),(84401,930746,'Herself',0,7),(36825,63494,'Jared Phelps',2,1),(125052,2839,'Marcus',2,0),(125052,1395443,'Harold',0,1),(125052,1183822,'Louis',0,2),(125052,52863,'Benny',2,3),(125052,1395445,'Chip',0,4),(96238,4175,'Christopher',2,0),(96238,20362,'Grace',1,1),(96238,1910,'Elaine',1,2),(96238,1103,'Earl',2,3),(96238,88947,'Natasha',1,4),(96238,21731,'Alex The Transvestite',2,5),(96238,1069802,'Mr. Speedy',0,6),(96238,1069803,'Male College Go-Go Boy',0,7),(96238,155236,'Chad',2,8),(96238,163687,'Waiter',0,9),(96238,4888,'Tess',1,10),(96238,22970,'Harry Appleton',2,11),(96238,1389389,'Nurse',0,12),(172533,59315,'Kate',1,0),(172533,543505,'Luke',2,1),(172533,84223,'Jill',1,2),(172533,17402,'Chris',2,3),(172533,101542,'Dave',2,4),(172533,58224,'Gene Dentler',2,5),(172533,81341,'Mike',0,6),(172533,1034482,'Frank',0,7),(172533,1272896,'Man with Fiance',0,8),(172533,935937,'Fiance',0,9),(172533,1272897,'Jim',0,10),(172533,139137,'Amy',1,11),(172533,1272898,'Eli',0,12),(172533,40863,'Angry Car Guy',0,13),(180383,10743,'Himself',2,0),(180383,10565,'Narrator',2,1),(180383,1388079,'Himself',0,2),(180383,1255,'Himself',2,3),(180383,1388080,'Himself',0,4),(84318,1084970,'Himself',0,0),(84318,942254,'Himself',2,1),(84318,163554,'Himself',2,2),(84318,1084971,'Himself',0,3),(84318,126297,'Himself',0,4),(84318,1084972,'Himself',0,5),(84318,74886,'Himself',0,6),(84318,1084973,'Himself',0,7),(84318,1084974,'Himself',0,8),(84318,1084976,'Himself',0,9),(45145,287,'Johnny Suede',2,0),(45145,77589,'Deke',2,1),(45145,2229,'Yvonne',1,2),(45145,39516,'Freak Storm',2,3),(45145,173251,'Darlette',1,4),(45145,2231,'B-Bop',2,5),(45649,46919,'Xavier',2,0),(45649,11659,'M. Hughes',2,1),(45649,57093,'Chad',2,2),(45649,7706,'Sheila',1,3),(45649,29795,'Accountant',2,4),(45649,61153,'Man in wheelchair',2,5),(45649,63280,'Film buff Ethan',2,6),(45649,1246891,'Film buff Charley',2,7),(45649,85949,'Dad',2,8),(45649,202949,'Son',2,9),(45649,965884,'Teenager Cindy',0,10),(45649,61555,'Teenager Fiona',1,11),(45649,133400,'Black woman',1,12),(45649,205177,'Zach',0,13),(45649,1089887,'Cleaning lady',0,14),(45649,1089888,'Luke',0,15),(45649,87312,'Doug',0,16),(45649,76029,'Denise',0,17),(45649,154888,'Eric',2,18),(45649,174612,'Truck driver',2,19),(45649,78211,'Hitchhiker',0,20),(45649,556018,'Tires burner',0,21),(43933,56677,'Samantha Wynden',1,0),(43933,59233,'Andrew Kaulder',2,1),(43933,1233885,'Homeless Woman',1,2),(43933,141768,'Josh Jones',0,3),(43933,556436,'U.S. Soldier',2,4),(73511,13526,'',2,0),(73511,7796,'',1,1),(73511,51072,'Zoe Tripp',1,2),(73511,9599,'',1,3),(73511,12656,'',1,4),(73511,30613,'',2,5),(73511,26483,'',1,6),(73511,43775,'',1,7),(73511,58461,'',2,8),(73511,569338,'',0,9),(43653,44735,'Mills',2,0),(43653,129750,'K. Roth Binew',2,1),(43653,84407,'Lampert Binew',2,2),(43653,43366,'Librarian',1,3),(43653,9658,'Prostitute',0,4),(43653,1214063,'Reginald',0,5),(139715,1182341,'Eddie',0,0),(139715,152302,'Willow',1,1),(139715,63372,'Janet',1,2),(139715,223012,'Brad',2,3),(139715,65225,'Ash',1,4),(139715,205335,'Jimmy',2,5),(139715,80881,'Mark',0,6),(139715,582860,'Mrs. Rumblethorp',0,7),(139715,178051,'Guidance Counselor Zombie',0,8),(139715,1182343,'Jock Zombie',0,9),(139715,1182344,'Colonel',0,10),(139715,1182345,'Little Person Zombie',0,11),(45380,548608,'Bao Shi Hong',2,0),(45380,929120,'Brother Dao',0,2),(45380,1134974,'San Bao',0,3),(45380,118711,'Chairman Feng Hai',0,4),(45380,128026,'Hei Pi',0,5),(45380,1134975,'Xiao Jun',0,6),(45380,1134976,'Qin Xi Yan',0,7),(45380,1092178,'Xie Xiaomeng/Charles',0,8),(45380,1134977,'Bao\'s wife',0,9),(45380,1134978,'Jing Jing',0,10),(45380,1045213,'Police Officer',2,11),(45380,144510,'Master Thief Mark',0,12),(81220,8329,'',1,0),(81220,52119,'',1,1),(81220,89585,'',1,2),(81220,1346157,'Jean',0,3),(81220,2394,'Kessel',2,4),(81220,6944,'Nurse B',1,5),(253626,569,'Commandant Tom Egan',2,0),(253626,31717,'Molly Egan',1,1),(253626,37153,'Airman Vera Suarez',1,2),(253626,105727,'M.I.C. Joseph Zimmer',2,3),(253626,21089,'Lieutenant Colonel Jack Johns',2,4),(253626,1458290,'Emily James',0,6),(253626,1144931,'Iris',1,7),(253626,85419,'Capt. Ed Christie',2,8),(253626,1494546,'Danny',0,9),(253626,9979,'Langley',2,10),(253626,1574010,'The Woman',0,11),(253626,1574510,'The Boy',0,12),(253626,1301633,'Frank',2,13),(90369,501,'Tessa Scott',1,0),(90369,225692,'Adam',2,1),(90369,115150,'Zoey Walker',1,2),(90369,11616,'Mother',1,3),(90369,14887,'Father',2,4),(90369,1719195,'Cal Scott',0,5),(90369,1081875,'Scott',2,6),(90369,1223793,'Fiona',1,7),(90369,1363086,'Tommy',2,8),(90369,148135,'Sally',1,9),(90369,5473,'Dr. Ryan',2,10),(90369,43554,'Jake',2,11),(90369,195575,'Phillippa',1,12),(90369,138237,'Paul',0,13),(90369,438859,'Shirley',0,14),(90369,62961,'Caroline',0,15),(90369,234930,'Beth',0,16),(90369,43019,'Richard',2,17),(90369,107378,'Mark',2,18),(117942,1428378,'Rebecca Foster',0,0),(117942,1428379,'Missy Pratt',0,1),(117942,1428381,'Mandy Rhodes',0,2),(117942,1069672,'Kelly',0,3),(117942,137866,'Jessie Scott',1,4),(117942,1066311,'Lisa',0,5),(117942,1066313,'Darren',0,6),(117942,1066314,'Tony',0,7),(117942,1066316,'Todd',0,8),(117942,42545,'Himself',2,9),(117942,58516,'Himself',0,10),(117942,1066315,'Bikini Model',0,11),(117942,544372,'Crime Scene Officer',0,12),(117942,1066309,'Montgomery Keybutter',0,13),(117942,97619,'Willie',1,14),(117942,238321,'Sheriff Jackson Cole',2,15),(117942,154917,'Sheriff Pratt',2,16),(117942,1196255,'Ronald - Karaoke Singer',0,17),(117942,98714,'TV Evangelist',0,18),(117942,1678887,'Sacrificial Girl',0,19),(322194,99235,'Peter Williams',2,1),(322194,1420622,'Vicki Chambers',0,2),(322194,1420627,'Stacey',0,3),(322194,106190,'Mr. Garmin',0,4),(322194,1420628,'Cmdr. Sterling',0,5),(322194,1420629,'Admiral Roberts',0,6),(322194,1353640,'',0,7),(322194,1353640,'Professor Gant',0,8),(98568,77795,'Samantha',1,0),(98568,928572,'Tom',2,1),(98568,60072,'Jody',1,2),(98568,65772,'Hans',2,3),(98568,61510,'Kevin',0,4),(98568,1018765,'The Attendant',0,5),(98568,1018764,'Young Woman',0,6),(119657,72983,'Julian',2,0),(119657,1070684,'Laura',0,1),(119657,133511,'Tito',0,2),(119657,115475,'Comandante Ubri',2,3),(119657,1070686,'General Imbert',0,4),(119657,1070687,'General Perez Zapata',0,5),(119657,1070688,'Don Pablo',0,6),(380733,81667,'Glinda McGill',1,1),(380733,1529012,'Jake McGill',0,2),(380733,967734,'UFC Kay',1,3),(380733,1053291,'Funeral Guest',1,4),(380733,1571591,'Melissa Gaines (as Tamara Camille)',0,5),(380733,1185725,'\'Jake\' Gym Owner',2,6),(285743,76686,'Lucifer',2,0),(285743,7004,'God',2,1),(285743,101808,'The Scorpion',2,2),(285743,1024401,'The Painted Doll',0,3),(285743,76693,'The Twin',2,4),(285743,17736,'',2,5),(285743,87108,'The Ticket Keeper',2,6),(285743,1489644,'The Librarian',0,7),(285743,54499,'Ms. Merrywood',1,8),(285743,13473,'',2,9),(285743,1401934,'Applicant',0,10),(285743,210355,'',1,11),(285743,1489645,'Carnie',0,12),(285743,76696,'Lady of Virtue',1,13),(285743,1420663,'Cora / Applicant',1,14),(362765,1519318,'Harold',0,1),(362765,961834,'Kyle',2,3),(362765,1519320,'Detective',0,4),(362765,1172695,'Ally',0,5),(379532,51965,'Duke Williams',2,1),(379532,582851,'Priscilla',1,2),(379532,1606252,'Sage',2,3),(379532,1758168,'Country Club patron',0,4),(379532,1619931,'House Mistress',1,5),(379532,1758056,'Audience Background',1,6),(379532,88506,'',0,7),(379532,568606,'Carl Davenport',0,8),(379532,1390485,'Laura Mae',0,9),(379532,1758169,'Twin 1',0,10),(379532,1758170,'Twin 2',0,11),(379532,1593390,'Rodeo Fan',1,12),(379532,1758171,'Rodeo Fan',0,13),(379532,1636785,'Rodeo Fan 2',0,14),(379532,1758172,'Brooke Douglas',0,15),(379532,1758173,'Emma',0,16),(379532,1738402,'Rodeo Announcer',0,17),(379532,1758174,'Abigail',1,18),(379532,1758175,'Rodeo Fan 3',0,19),(253261,1288715,'Herself',0,0),(253261,1292120,'Himself',0,1),(253261,1292121,'Herself',0,2),(253261,1292122,'Herself',0,3),(253261,1292123,'Himself',0,4),(253261,1292124,'Himself',0,5),(198370,211993,'Liv',1,0),(198370,212828,'Christoph',2,1),(198370,1217599,'Nate',0,2),(198370,51991,'Paul',2,3),(198370,47625,'Beatrice',0,4),(198370,1287658,'Annie',1,5),(198370,45396,'Sammy',2,6),(198370,76464,'Adele',1,7),(308467,1325939,'Dan Summers',0,1),(308467,1186711,'Mindy Summers',0,2),(188166,209513,'Dwight',0,0),(188166,11516,'Ben Gaffney',2,1),(188166,92728,'Sam',0,2),(188166,1194965,'Teddy Cleland',0,3),(188166,1212485,'Kris Cleland',0,4),(188166,1194966,'William',0,5),(188166,1194967,'Carl Cleland',0,6),(188166,1194968,'Hope Cleland',0,7),(188166,1194969,'Officer Eddy',0,8),(188166,218605,'Margaret',1,9),(188166,1364103,'Amanda',0,10),(188166,1364104,'Rock Girl',0,11),(188166,1404728,'Large Man',0,12),(64499,211474,'Magdalena',1,0),(64499,66525,'Carlos',2,1),(64499,239944,'Tio Tomas Alvarez',0,2),(64499,239945,'Gary',2,3),(64499,239946,'',2,4),(64499,239947,'Maria',1,5),(64499,239948,'',0,6),(64499,211929,'Uncle Walter',2,7),(189711,62596,'Lou',2,0),(189711,17005,'Dr. Lincoln',2,1),(189711,173990,'Maria',1,2),(189711,1162078,'Caria',1,3),(189711,8316,'Slavko',2,4),(189711,83459,'Marianna',1,5),(189711,87095,'Chester',2,6),(189711,220013,'Brandi',1,7),(157909,95635,'Sarah',1,2),(157909,27136,'Jenna',1,3),(157909,110525,'Jackson',2,4),(157909,148125,'',2,5),(157909,180937,'',1,6),(65203,1516030,'Eddie Kearns',0,0),(65203,98012,'Queenie Mahoney',1,1),(65203,29258,'Hank Mahoney',0,2),(65203,1147360,'Pianist (uncredited)',0,3),(65203,1016036,'Flo (uncredited)',1,4),(65203,9055,'Bystander in Rehearsal Room (uncredited)',2,5),(65203,30537,'Music Publisher (uncredited)',2,6),(65203,96060,'Francis Zanfield (uncredited)',2,7),(65203,99599,'Specialty Dancer (uncredited)',0,8),(65203,117783,'Uncle Jed (uncredited)',2,9),(65203,96056,'Jock Warriner (uncredited)',0,10),(65203,148574,'Chorus Girl (uncredited)',1,11),(65203,122978,'Bellhop (uncredited)',2,12),(103620,109,'Frank',2,0),(103620,78434,'Frank\'s Mother',1,1),(103620,453272,'Anna',1,2),(103620,932095,'Jenna',1,3),(103620,430313,'Rita',1,4),(103620,993897,'Martin',2,5),(103620,992221,'Nick',2,6),(103620,1337067,'Jessica',1,7),(103620,54817,'Judy',1,8),(103620,191251,'Lucie',1,9),(103620,74501,'Waiter',0,10),(103620,1650686,'Alley Man',2,11),(103620,2981,'Pharmacist',2,12),(103620,77150,'Police Chief',2,13),(103620,1496728,'Policewoman',1,14),(103620,1367121,'Officer Burton',0,15),(103620,1651050,'Officer Norton',2,16),(103620,1209944,'Saleswoman',1,17),(103620,1562397,'Clubber Girl',1,18),(103620,1651045,'Puppeteer',2,19),(103620,1161579,'80\'s Man',2,20),(103620,1466489,'80\'s Man',2,21),(103620,18889,'Old Man',2,22),(103620,19300,'Jason',2,23),(103620,1446851,'Dancer',1,24),(103620,1651053,'Dancer',1,25),(103620,1651054,'Frank 2',2,26),(319069,583777,'',0,1),(79161,586067,'Herself',0,0),(79161,586066,'Himself (narrator)',2,1),(79161,586068,'Herself',0,2),(371690,1697879,'Kitch',0,1),(371690,1697880,'Maya',0,2),(371690,1697881,'4C',0,3),(371690,1697858,'Hashtag',0,4),(371690,1697866,'AJ',0,5),(371690,1697883,'Greg',0,6),(371690,1376022,'Rick',0,7),(371690,1697886,'David - The Drone Hunter',0,8),(371690,1086222,'Jax',2,9),(371690,1697887,'Dr. Mitchell Scott',0,10),(52032,290,'J.R. Ackerley (voice)',2,0),(52032,29791,'Nancy / Greengrocer\'s Wife (voice)',1,1),(52032,6588,'Ms. Canvenini (voice)',1,2),(52032,1986,'Mr. Plum / Pugilist (voice)',2,3),(52032,56618,'Captain Pugh / Mr. Blandish (voice)',1,4),(52032,170953,'Army Veterinarian (voice)',2,5),(52032,227772,'Bicyclist / Rude Veterinarian (voice)',0,6),(38810,122424,'Son',2,0),(38810,122426,'Older Daughter',1,1),(38810,122425,'Younger Daughter',1,2),(38810,122428,'Father',0,3),(38810,17587,'Mother',0,4),(38810,122422,'Christina',0,5),(38810,1185439,'Colleague',0,6),(38810,1185440,'Secretary (as Athanasia Petropoulou)',0,7),(38810,1185441,'Dog trainer',0,8),(55123,47627,'Mary jo Walker',1,0),(55123,43893,'Ava Walker',1,1),(55123,1700177,'Nurse',1,2),(162396,195653,'Sam',0,1),(162396,139811,'Michael',0,2),(162396,1334169,'Eve',0,3),(162396,5007,'Sydney',1,4),(162396,92996,'Julian',0,5),(68412,36190,'Peggy',1,0),(68412,6368,'The Actress',1,1),(68412,13550,'John',2,2),(68412,557607,'Christina',1,3),(68412,49824,'John\'s Wife',1,4),(68412,82104,'Woman in Blue Dress',1,5),(68412,73569,'Debbie',1,6),(68412,106219,'Ticket Agent',1,7),(68412,1254435,'Emily',1,8),(91721,95224,'Duff Anderson',2,0),(91721,174651,'Josie',1,1),(91721,6772,'Will Anderson',2,2),(91721,9364,'Lee',1,3),(91721,171197,'Mill Worker',0,4),(91721,159885,'Frankie',0,5),(91721,5050,'Jocko',0,6),(91721,937442,'Rev. Dawson',0,7),(91721,1043407,'Effie Simms',0,8),(91721,1043408,'Doris',0,9),(91721,1043409,'Car Owner',0,10),(91721,1043410,'Pop',0,11),(91721,82685,'Riddick',2,12),(91721,1043411,'Revivalist',0,13),(91721,1043412,'Barney',0,14),(91721,1043413,'Willie',0,15),(91721,163548,'Teenager',2,16),(91721,101975,'Teenager',2,17),(91721,1043414,'Soloist',0,18),(91721,1043415,'Mrs. Dawson',0,19),(91721,171036,'Mill Foreman',0,20),(91721,1043416,'Garage Owner',0,21),(91721,1043417,'Superintendant',0,22),(91721,116879,'Barman',0,23),(91721,195094,'Hiring Boss',0,24),(91721,103205,'Store Keeper',0,25),(91721,1043418,'Ginn Foreman',0,26),(91721,203886,'Undertaker',2,27),(91721,1043419,'Desk Clerk',0,28),(91721,1043420,'Bessie',0,29),(91721,52032,'Mill Hand',2,30),(91721,6561,'Mill Hand',2,31),(91721,1043421,'Car Passenger',0,32),(91721,198068,'Car Passenger',0,33),(91721,1043422,'Church Woman',0,34),(91721,5700,'Church Woman',1,35),(91721,1043423,'Church Woman',0,36),(118452,1771,'Joey',2,0),(118452,3270,'Sissel',1,1),(118452,10825,'Red',2,2),(118452,31512,'Henry',2,3),(118452,2842,'Sissel\'s Mom',1,4),(118452,116027,'Adrian',2,5),(47534,101187,'',2,0),(47534,8692,'',2,1),(47534,139077,'',0,2),(47534,139078,'',0,3),(40914,23915,'Exhibition Manager',2,0),(40914,21315,'Dad',2,1),(40914,125046,'Assassin',0,2),(40914,125047,'Jan',1,3),(40914,118753,'Adam Arthavan',2,4),(40914,125048,'Royal Maid',0,5),(40914,125049,'Andrea',0,6),(40914,125050,'Neighbor',2,7),(365052,6360,'Karen',1,1),(365052,1525959,'Chesire Cat',0,2),(365052,1525959,'Cheshire Cat',0,3),(365052,1525960,'The White Queen',0,4),(365052,1525961,'Mallory',0,5),(365052,1180934,'Terry',0,6),(365052,1525962,'Mad Hatter',0,7),(365052,1525964,'Julie',0,8),(250184,76546,'Tommy Novak',0,0),(250184,9629,'Archie',2,1),(250184,4996,'Lucy',1,2),(250184,61983,'Suicide Jack',2,3),(250184,1216133,'Armando',2,4),(250184,87003,'Clifford',2,5),(250184,1232,'Floyd Marley',2,6),(250184,159407,'Rachel',1,7),(250184,216973,'Skip',0,8),(250184,4253,'Don Dillon',2,9),(250184,81596,'Harvey',0,10),(250184,21858,'Patricia',1,11),(426067,1367884,'Dawn',0,1),(426067,65334,'Paul Van Dyke',2,2),(426067,197907,'Intruder',2,3),(426067,17769,'Tanya Richards',1,4),(426067,64198,'David',0,5),(426067,42970,'Orion',0,6),(426067,7140,'Lt. McMurphy',2,7),(426067,6701,'Tony',2,8),(426067,42137,'Woman in White',1,9),(426067,106073,'Dancer',0,10),(426067,97700,'Dancer',0,11),(426067,100487,'Dancer',1,12),(324352,593,'Mrs. McCarthy',1,2),(324352,1213599,'Mrs. Anderson',1,3),(324352,27737,'Mr. Daniels',0,4),(324352,1424519,'Nick Anderson',0,5),(324352,22053,'George Green',2,6),(324352,56183,'Grandfather',2,7),(324352,115005,'Kevin Daniels',2,8),(324352,1424520,'Tracy Green',0,9),(324352,1424521,'Trevor McCarthy',2,10),(324352,99583,'Mr. Anderson',2,11),(318040,1555912,'Maurice',0,1),(318040,1555913,'Luka',0,2),(318040,1555914,'Kim',0,3),(318040,1555915,'Betty',0,4),(318040,1555916,'Charlie',0,5),(318040,1555917,'The Man',0,6),(318040,1555918,'Boxing Man',0,7),(318040,1555919,'Freddy, the Beach Boy',0,8),(318040,1337842,'The Boy in the Bar',0,9),(80468,18472,'Ken Boyd',2,0),(80468,13473,'Sheriff Walt Fuller',2,1),(80468,8963,'Ruth Boyd',1,2),(80468,57387,'Irv',2,3),(80468,76414,'Amy Wheeler',1,4),(80468,11111,'Stephanie',1,5),(80468,33197,'Mayor Mawell',2,6),(80468,1251103,'Janet Wheeler',0,7),(80468,61409,'Coach Faxon',1,8),(80468,1450431,'Betsy',0,9),(80468,1352022,'Candace',1,10),(84188,43366,'Sandra',1,0),(84188,74303,'Becky',1,1),(84188,60846,'Officer Daniels',2,2),(84188,211991,'Kevin',2,3),(84188,155173,'Detective Neals',2,4),(84188,77264,'Marti',1,5),(84188,121718,'Van',2,6),(84188,1137379,'Connie',0,7),(84188,1104350,'Julio',0,8),(84188,616517,'Harold',2,9),(84188,1137380,'Brie',0,10),(84188,1137381,'Customer',0,11),(84188,972079,'Officer Morris',2,12),(84188,1137382,'Robert Gilmour',0,13),(50035,2229,'Michelle Marks',1,0),(50035,4154,'Jane Marks',1,1),(50035,1246,'Elizabebeth Marks',1,2),(50035,131,'Jordan',2,3),(50035,6474,'Paul',2,4),(50035,20212,'Kevin McCabe',2,5),(50035,102315,'Photographer',2,6),(50035,21128,'Annie Marks',1,7),(50035,1233278,'Donna',0,8),(50035,9048,'Bill',2,9),(50035,1483726,'Maddy',0,10),(50035,1483727,'Pool Administrator',0,11),(50035,53923,'Lorraine',1,12),(50035,18475,'Saleswoman',1,13),(50035,1212456,'Saleswoman',0,14),(50035,66580,'Man at Phone',2,15),(44490,17735,'Buck O\'Brien',2,0),(44490,3288,'Charlie \'Chuck\' Sitter',0,1),(44490,28779,'Beverly Franco',1,2),(44490,52792,'Jamilla',1,3),(44490,3289,'Sam',2,4),(44490,588421,'Carlyn',0,5),(44490,980684,'Diane',1,6),(44490,78416,'Barry',0,7),(44490,154582,'Mrs. O\'Brien',1,8),(76996,3068,'',2,0),(76996,79105,'',2,1),(76996,38784,'',1,2),(76996,1518,'',1,3),(76996,8329,'',1,4),(76996,186977,'',1,5),(76996,75193,'',0,6),(51942,44905,'Keri Boyer',0,0),(51942,1277319,'Grant Boyer',0,1),(51942,171396,'Larson P. Giles',0,2),(60420,21028,'Jacob Helm',2,0),(60420,72855,'Anna Gardner',1,1),(60420,72129,'Sam',1,2),(60420,84221,'Simon',0,3),(60420,83701,'Jackie Gardner',1,4),(60420,93035,'Bernard Gardner',2,5),(60420,66881,'Liz',1,6),(60420,61659,'Mike Appletree',2,7),(60420,132963,'Ross',0,8),(60420,1293753,'Isabelle',0,9),(325123,2683,'Vincent Augustine',2,1),(325123,83733,'Det. Sasha Colfax',1,2),(325123,1262789,'Lori Franklin',0,4),(325123,154106,'Vampire Priest',0,5),(142132,599196,'Clive',0,0),(142132,65334,'Nick',2,1),(142132,47652,'Jonesy',2,2),(142132,180730,'Gwen',1,3),(142132,1116373,'Burt',0,4),(142132,42746,'Carl',2,5),(142132,5148,'Kate',1,6),(142132,1116374,'In Utero Baby',0,7),(142132,1116375,'Violet',0,8),(142132,1116377,'Rose',0,9),(142132,2165,'Eva',1,10),(109729,49265,'Tara',1,0),(109729,124097,'Christian',2,1),(109729,5216,'Dr. Campbell',2,2),(109729,82819,'Ryan',2,3),(109729,64341,'Gina',1,4),(109729,984613,'Cynthia',1,5),(109729,993756,'Hoodie Guy',2,6),(109729,1522850,'Reed',0,7),(109729,1271090,'Randall',0,8),(109729,52397,'Jon',2,9),(109729,20754,'Erik',2,10),(109729,236028,'Young Hot Girl',1,11),(109729,1522851,'Young Hot Guy',0,12),(109729,1389848,'David',0,13),(109729,1444195,'Jaden',0,14),(109729,1522852,'Caitlin',0,15),(109729,208054,'Receptionist',0,16),(109729,1522853,'Photographer',0,17),(78307,93821,'Oz',1,0),(78307,563413,'Marisol Pagan',0,1),(78307,79993,'Jimmy Ortiz',2,2),(78307,72988,'Chewey',2,3),(78307,1397904,'Dr. Kendall',0,4),(78307,467633,'Adepero',1,5),(70687,180609,'Tucker',1,0),(70687,559290,'Drew',0,1),(70687,41052,'Ofelia',0,2),(70687,58528,'Isaac',2,3),(70687,559291,'J.L.',0,4),(70687,164149,'Gorge',1,5),(70687,559292,'Dental Assistant of Death',0,6),(70687,559293,'Girl in Window',0,7),(70687,68425,'Dex',2,8),(70687,559294,'Cop',0,9),(70687,559295,'Rachel the Bartender',0,10),(70687,559296,'\'This Guy\' in Bar',0,11),(70687,171838,'Drew\'s Mother',0,12),(70687,559297,'Little Drew',0,13),(60463,1004403,'Zachary',2,0),(60463,92060,'Savannah',1,1),(60463,102806,'Aundrea',0,2),(60463,1004404,'Miles',0,3),(60463,1157360,'Margaret',0,4),(60463,1157361,'Anita',0,5),(60463,115406,'Charlie',2,6),(60463,1157362,'Trevor',0,7),(60463,87597,'Pastor Joe',2,8),(60463,1157363,'Aunt Janet',0,9),(60463,1157364,'Mrs. Howell',0,10),(60463,1157365,'Jake',0,11),(60463,1040120,'Mrs. Stewart',0,12),(60463,1157366,'Dad - Robert Ryan',0,13),(60463,1157367,'Mr. Crane',0,14),(46252,21246,'',2,0),(46252,40046,'',2,1),(46252,135553,'',0,2),(46252,135554,'',0,3),(77934,582851,'Julia',1,0),(77934,582852,'Patti Cooper',0,1),(77934,155018,'Scott Cooper',2,2),(77934,75343,'Betsy Ross',1,4),(77934,582856,'Hank Vanee',0,5),(77934,582857,'Johnny',0,6),(77934,582858,'Uncle Chip',0,7),(77934,582859,'Diane',0,8),(77934,582860,'Pamela',0,9),(77934,1606252,'Billy Cooper',2,10),(150211,212938,'The Hunter',1,2),(150211,48312,'The Hunter',2,3),(306667,558923,'Kathy',0,1),(306667,21721,'Luke',2,2),(306667,1390485,'Kim',0,3),(306667,1390486,'Miss Tara',0,4),(306667,1390487,'Miss Katy',0,5),(306667,1738402,'Josh / Bull Rider',0,6),(306667,1452209,'Mr. C',0,7),(306667,1098567,'Miss Jessica',0,8),(306667,1758179,'Miss Linda',0,9),(306667,88506,'Cheese (bull rider)',0,10),(306667,1758178,'Stacy',0,11),(306667,1758180,'Lisa',0,12),(306667,1586942,'Leslie',0,13),(274758,1231548,'Herself - Lead',0,1),(274758,2055,'Himself - Animal Advocate',2,2),(274758,62042,'Herself - Animal Advocate',1,3),(274758,389,'Herself - Animal Advocate',1,4),(274758,6929,'Herself - Animal Advocate',1,5),(274758,55422,'Herself - Animal Advocate',0,6),(274758,1460401,'Herself - Animal Advocate',0,7),(274758,1460402,'Herself - Animal Advocate',0,8),(274758,65344,'Himself - Animal Advocate',2,9),(274758,110920,'Himself - Animal Advocate',0,10),(274758,168828,'Herself - Animal Advocate',1,11),(274758,82622,'Herself - Animal Advocate',1,12),(274758,15424,'Himself - Animal Advocate',2,13),(274758,82943,'Herself - Animal Advocate',1,14),(40963,5695,'Seymour',2,1),(40963,18262,'Bob',2,2),(40963,1396420,'Pike',0,3),(40963,1222726,'Ernest',2,4),(40963,116531,'Tavis / Flop',0,5),(173224,147,'Jerry',2,0),(173224,1155991,'Varnie',0,1),(173224,70874,'Milutin',2,2),(376010,172994,'Chinaman Dan',2,1),(376010,78408,'Prince Zain Mohammed',0,2),(376010,113781,'Southern Bill',2,3),(376010,210756,'Waylin Smith',0,4),(376010,1070744,'Railroad Man',0,5),(376010,1367253,'Two-face Tilly',1,6),(376010,1562427,'Cowboy',0,7),(376010,168530,'Anton Stice',2,8),(376010,587571,'Harvard Gold',0,9),(376010,1237623,'Homesteader',0,10),(376010,162014,'Outlaw',2,11),(139948,1111711,'Himself',0,0),(139948,1111712,'Himself',0,1),(139948,1111713,'Himself',0,2),(77332,5346,'Charlie',2,0),(77332,35598,'Steve',0,1),(77332,21532,'Dean',2,2),(77332,38524,'Bill',2,3),(77332,10697,'Brett',2,4),(77332,52419,'Matt',2,5),(77332,1573675,'Sam',0,6),(77332,17198,'Deedee',1,7),(77332,106435,'Ron',2,8),(77332,23378,'Clara - The Married Woman',1,9),(77332,11517,'Don',2,10),(77332,111680,'Judy - The Photo Lady',1,11),(77332,182600,'Efraim - The Window Couple',2,12),(70478,81443,'Stewardess Samantha',1,0),(70478,558560,'Colin Winthrop',0,1),(70478,558561,'Captain Brad Masters',0,2),(70478,558562,'Jo Peters',0,3),(70478,558563,'Tina',0,4),(70478,558564,'Cathy',0,5),(70478,558565,'Wendy',0,6),(70478,558566,'Horney Annie',0,7),(70478,558567,'Cappy',0,8),(70478,558568,'Karin',0,9),(70478,558569,'Cindy',0,10),(70478,101966,'Ursella',0,11),(70478,558570,'Charles',0,12),(70478,558571,'Soldier',0,13),(70478,558572,'Pilot',0,14),(35073,118861,'Professor Tom Nesbitt',2,0),(35073,93944,'Lee Hunter',1,1),(35073,30228,'Professor Thurgood Elson',2,2),(35073,103069,'Col. Jack Evans',2,3),(35073,118022,'Capt. Phil Jackson',2,4),(35073,4078,'Corp. Stone',2,5),(35073,10162,'Sgt. Loomis',2,6),(35073,112722,'George Ritchie',2,7),(35073,975692,'Jacob Bowman',0,8),(35073,30300,'Sgt. Willistead',2,9),(35073,100337,'Miss Ryan',0,10),(35073,51230,'ER Doctor',2,11),(35073,1193327,'First Radar Man',0,12),(35073,30115,'Dr. Morton',2,13),(35073,69811,'Dr. Ingersoll',2,14),(35073,40185,'Charlie - Radar Man',2,15),(35073,100582,'Maj. Evans',0,16),(35073,121323,'Ballet-Goer',1,17),(43595,103616,'Lady Lou',0,0),(43595,2638,'Captain Cummings',2,1),(43595,89107,'Chick Clark',2,2),(43595,29273,'Serge Stanieff',0,3),(43595,128324,'Gus Jordan',2,4),(43595,131813,'Dan Flynn',2,5),(43595,103490,'Russian Rita',0,6),(43595,120046,'Spider Kane',2,7),(43595,2777,'Sally',1,8),(43595,99373,'Chuck Connors',2,9),(43595,103619,'Rag Time Kelly',0,10),(43595,590530,'Frances',0,11),(43595,95311,'Doheney',0,12),(43595,89101,'Pearl',1,13),(54897,557887,'as Bill \'Mac\' McDonald',2,0),(54897,157419,'Sam Wright',0,1),(54897,20959,'George Wright',2,2),(54897,557972,'Dr. Vines',1,3),(83588,35013,'Brian',2,0),(83588,580240,'Gina',0,1),(83588,121566,'Fraine',1,2),(83588,929826,'Ruby',0,3),(83588,103944,'Littleton',2,4),(83588,41556,'Derek',2,5),(83588,81726,'Ruth',1,6),(83588,1066329,'Bus Hustler',0,9),(83588,1478382,'Rosie',1,10),(53256,15122,'Hanna',1,0),(53256,3702,'Simon',0,1),(53256,6086,'Adam',2,2),(53256,147632,'Lotte',1,3),(53256,28422,'Dirk',2,4),(53256,25432,'Petra',0,5),(53256,8200,'Dr. Wissmer',2,6),(53256,147634,'Boninger',2,7),(53256,147635,'Schauspielerin im Theaterstu00fcck',0,8),(53256,147636,'Sven',0,9),(53256,39851,'Dr. Hubert Zimmer',0,10),(53256,147637,'Taxifahrer',2,11),(53256,147638,'Katrin',1,12),(53256,147639,'Redakteur',0,13),(53256,42445,'Udo',2,14),(53256,16811,'Gast',2,15),(53256,147640,'Simons Tante',0,16),(53256,41276,'Nick',2,17),(53256,147641,'London Bus Passenger',0,18),(53256,71589,'Jens',2,19),(53256,147642,'Alexander',0,20),(53256,147643,'Cousine von Simon',1,21),(53256,147644,'Trauungsbeamter',0,22),(53256,10255,'Hildegard',1,23),(53256,45734,'Simone',0,24),(40920,203677,'Seymour Polatkin',0,1),(40920,163070,'Agnes Roth',0,2),(40920,1494890,'Aristotle Joseph',0,3),(40920,1494891,'Mouse',0,4),(40920,1494892,'The Interviewer',0,5),(40920,162945,'Teresa',1,6),(40920,67524,'Mr. Williams',2,7),(40920,67524,'Steven',2,8),(40920,1494893,'Junior One',0,9),(40920,1494894,'Junior Two',2,10),(40920,1431582,'White Motorist',0,11),(40920,92121,'Tavern Father',0,12),(54702,151019,'Samantha Harrison',0,0),(54702,151021,'Marylin',0,2),(54702,151022,'Kurt',2,3),(54702,1213535,'Julian',0,4),(176074,50583,'Mickey Wagner',2,1),(176074,1575982,'Katherine Warwick',0,3),(176074,131739,'Jenna',1,4),(176074,1385976,'Dennis Warwick',0,5),(69270,144301,'Tilda',1,0),(69270,18041,'Ray',2,1),(69270,21298,'Bobby',2,2),(69270,43933,'Gordy',2,3),(69270,555977,'Teenager',2,4),(69270,67712,'Al',0,5),(69270,67713,'Teenager',0,6),(69270,453588,'Maria',1,7),(402515,1686665,'James Erikson',0,1),(402515,1686668,'Felicia',0,2),(402515,1686666,'Carl Colson',0,3),(402515,1686667,'Dick Hancock',0,4),(48035,47155,'Inger, Mikkel\'s Wife (uncredited)',1,3),(48035,142906,'Johannes Borgen (uncredited)',2,8),(48035,142930,'Morten Borgen (uncredited)',2,9),(48035,578953,'',2,15),(48035,578958,'',2,16),(36549,96309,'Singer',1,0),(36549,52420,'Dudas',2,1),(36549,1187217,'Hoyle',0,2),(36549,157021,'Trench Coat Man',2,3),(36549,144234,'Lab Assistant',0,4),(36549,1187218,'Psychiatrist',0,5),(36549,146565,'Student',1,6),(36549,1187222,'Nurse',0,7),(36549,24343,'Dead Man',2,8),(361398,3202,'Cloris McDermott',1,1),(361398,1514635,'Theresa McDermott',0,2),(361398,44682,'Roy McDermott',2,3),(361398,164323,'Jerry Nerwitz',2,4),(361398,1224221,'Seth Nerwitz',0,5),(361398,1514636,'Maggie McDermott',0,6),(361398,1514637,'Tuesday McDermott',0,7),(361398,1514638,'Penelope McDermott',0,8),(289180,11902,'Helen',1,2),(289180,1121635,'Helen',1,3),(289180,106321,'Alex',0,4),(289180,163917,'Roy',0,5),(288927,12134,'Margaret',1,0),(288927,171633,'Kate',1,1),(288927,101781,'Sgt. Calder',2,2),(288927,27176,'Officer John',2,3),(288927,193141,'Senior Center Director',1,4),(288927,27491,'Judge',1,5),(79120,586000,'Russell',2,0),(79120,586001,'Glen',2,1),(79120,1562478,'Jamie',0,2),(79120,1482847,'Jill',0,3),(79120,1562479,'Cathy',0,4),(344466,1486158,'Larisa',0,1),(344466,1451500,'Ana',0,2),(344466,1486161,'',0,3),(344466,1486162,'',0,4),(344466,1486163,'Florin',0,5),(55420,15338,'John Burroughs',2,0),(55420,222330,'Rhoda Williams',1,1),(55420,1114903,'Alex',2,2),(55420,1301641,'Himself (voice)',0,3),(55420,1114904,'Maya Burroughs',1,4),(55420,1114905,'Amos Burroughs',0,5),(55420,1301642,'Symposium Speaker',2,6),(55420,5873,'Symposium Speaker',2,7),(55420,1301643,'Symposium Speaker',0,8),(55420,549355,'Symposium Speaker',2,9),(55420,1301644,'Symposium Speaker',0,10),(55420,149550,'Kim Williams',1,11),(55420,185766,'Robert Williams',2,12),(55420,59262,'Jeff Williams',2,13),(55420,187189,'Keith Harding (voice)',0,14),(55420,1232567,'Career Counselor',1,15),(55420,1799812,'Himself',0,16),(55420,1799813,'High School Girl',0,17),(55420,1799814,'High School Girl',0,18),(55420,1799815,'High School Girl',0,19),(55420,1799816,'High School Girl',0,20),(55420,8690,'Purdeep',2,21),(55420,1168285,'Claire',1,22),(55420,562340,'Television Reporter (voice)',2,23),(55420,1518678,'Dr. Joan Tallis',1,24),(55420,1799817,'Radio Reporter #1 (voice)',0,25),(55420,1799818,'Television Anchor (voice)',0,26),(55420,1664446,'Federico',2,27),(55420,1799819,'Radio Reporter #2 (voice)',0,28),(55420,1799820,'Nurse',0,29),(55420,105581,'Conspiracy Theorist',2,30),(55420,1553974,'Television Interviewer (voice)',2,31),(55420,1799821,'Keith Harding\'s Secretary (voice)',0,32),(408429,1677569,'Jimmy',0,1),(408429,1697834,'Ty',0,2),(408429,1450865,'Mark',0,3),(408429,1697835,'Kathy',0,4),(408429,1697836,'Samuel',0,5),(408429,1697837,'Elvis',0,6),(408429,1697838,'Kip',0,7),(408429,1524369,'Darlene',0,8),(408429,1697839,'Brandy',0,9),(408429,1262553,'Lacy',1,10),(39141,11022,'Oscar Grubman',2,0),(39141,51072,'Miranda Spear',1,1),(39141,10739,'Diane Lodder',1,2),(39141,27772,'Stanley Grubman',2,3),(39141,10205,'Eve Grubman',1,4),(39141,1218240,'Charlie',0,5),(39141,1005,'Jimmy - Doorman',2,6),(39141,12122,'Professor Tisch',2,7),(39141,139137,'Daphne Tisch',1,8),(39141,21384,'Professor Sherman',0,9),(39141,1115955,'Man in Bar',0,10),(39141,1232610,'Woman in Bar',1,11),(39141,61607,'Phil',2,12),(39141,1749171,'Samantha Steadman',1,13),(39141,211,'Jean',1,14),(39141,1749172,'Tea Waiter',0,15),(39141,1749173,'Mr. Smith',0,16),(39141,1749174,'Mrs. Smith',1,17),(39141,1749175,'Mr. Bob Spear',0,18),(39141,1749176,'Waiter Cafe Boulud',0,19),(39141,1749177,'Charlie\'s Mom',1,20),(39141,1749178,'Thanksgiving Party Guest',1,21),(39141,1749179,'Thanksgiving Party Guest',0,22),(39141,1749180,'Thanksgiving Party Guest',0,23),(39141,1749181,'Thanksgiving Party Guest',1,24),(39141,1749182,'Thanksgiving Party Guest',1,25),(39141,1749183,'Thanksgiving Party Guest',0,26),(39141,1749184,'Thanksgiving Party Guest',1,27),(39141,116691,'Abigail',1,28),(39141,38888,'Mike',2,29),(39141,14317,'Betsy',1,30),(50497,11110,'Jenny',1,0),(50497,70518,'Jeanette',0,1),(50497,16628,'Mr. Price',2,2),(50497,27764,'Len',2,3),(50497,45050,'Brian',2,4),(50497,1286399,'Sally',0,5),(50497,480,'Father Clifton',2,6),(50497,208506,'Rita',1,7),(50497,1229255,'Hilary Barnes',2,8),(50497,1415918,'The Pale Girl',0,9),(50497,1576989,'Peter',0,10),(50497,1126237,'Monk',0,11),(50497,1831965,'Lute Player',2,12),(50497,1697856,'Mrs. Blithe',0,13),(354624,1562418,'Phineas Cooper',0,1),(354624,1058261,'Blue Espinosa',0,2),(354624,1562420,'Jordin Riley',0,3),(178862,108562,'Herself',1,0),(178862,132388,'Herself',1,1),(178862,76575,'Herself',1,2),(178862,76576,'Herself',1,3),(178862,75928,'Herself',1,4),(178862,233274,'Herself',1,5),(178862,138185,'Herself',1,6),(178862,582219,'Herself',1,7),(178862,591868,'Herself',0,8),(178862,75924,'Herself',1,9),(178862,226821,'Herself',0,10),(178862,136331,'Herself',1,11),(178862,930790,'Herself',1,12),(178862,572493,'Herself',0,13),(178862,233260,'Herself',1,14),(178862,124972,'Herself',1,17),(282128,65928,'Dorian',2,0),(282128,91508,'Paul',2,1),(282128,162359,'Trilok',2,2),(282128,99160,'Josiah',0,3),(282128,99160,'Ayoka',0,4),(282128,53250,'Priscila',0,5),(282128,1267185,'Leanne',1,6),(282128,93823,'Angelo',0,7),(282128,1187836,'Allan',0,8),(86812,222330,'Maggie',1,0),(86812,61510,'Peter Aitken',0,1),(86812,18516,'Lorna Michaelson',1,2),(86812,75620,'Carol Briggs',1,3),(86812,1039922,'Joanne',0,4),(86812,87115,'Klaus',2,5),(86812,1807141,'Mel',0,6),(86812,118737,'Lam',0,7),(86812,206444,'Christine',1,8),(86812,17040,'Lyle',2,9),(86812,1807142,'PJ',0,10),(86812,1455899,'O\'Shea',2,11),(86812,58528,'Mr. Pritchett',2,12),(86812,61079,'Mrs. Dewitt',1,13),(86812,1807143,'Principal Garner',0,14),(86812,1455901,'Timothy',2,15),(86812,84849,'Heidi',1,16),(86812,200163,'Lumala',0,17),(86812,1277364,'Young Peter',0,18),(86812,1807144,'Lucas',0,19),(86812,1392457,'Abigail Pritchett',0,20),(84355,45407,'Jack',2,0),(84355,5081,'Iris',1,1),(84355,14892,'Hannah',1,2),(84355,113373,'Al',2,3),(84355,1190267,'Waitress',0,4),(84355,1547826,'Tom\'s Friend',0,5),(40652,9766,'Charlotte',1,0),(40652,26367,'Robert, the Lover',2,1),(40652,25333,'Pierre, the Husband',2,2),(40652,132235,'Nicolas',2,3),(40652,238764,'Himself',2,4),(40652,1350746,'Girl in Swimming Pool',1,5),(40652,1608862,'Girl in Swimming Pool',1,6),(40652,18242,'Madame Celine',1,7),(40652,1492959,'The Physician',2,8),(40652,3776,'The Narrator (voice) (uncredited)',2,9),(339408,77277,'Nat Turner',2,0),(339408,53807,'Samuel Turner',2,1),(339408,1120699,'Cherry',1,2),(339408,17183,'Raymond Cobb',2,3),(339408,14698,'Elizabeth Turner',1,4),(339408,17773,'Esther',1,5),(339408,534,'Reverend Zalthall',2,6),(339408,53923,'Nancy Turner',1,7),(339408,1055236,'Isaac Turner',0,8),(339408,154224,'Bridget Turner',1,9),(339408,40377,'Isaiah',2,10),(339408,60397,'Janice',0,11),(339408,91671,'Hark',2,12),(339408,1122102,'Hank Fowler',0,13),(339408,41508,'Joseph Randall',2,14),(339408,1205388,'Catherine Turner',1,15),(339408,1514474,'Earl Fowler',0,16),(339408,80619,'General Childs',2,17),(339408,1465051,'Young John Clarke',0,18),(339408,1371098,'John Clarke Turner',0,19),(339408,1502998,'Militia General',2,20),(339408,1247010,'Will',0,21),(339408,1622084,'Young Nat Turner',0,22),(339408,1622085,'Jasper',0,23),(339408,1622086,'Nelson',0,24),(339408,1344361,'Simon',0,25),(339408,1622087,'Guiles Reese',0,26),(339408,1522921,'Jesse',0,27),(339408,1622088,'Abner',0,28),(339408,1622089,'Fowler Slave',0,29),(339408,1488909,'Little boy',0,30),(339408,1622090,'Turner Hideaway',0,31),(339408,1622091,'Rebel Slave',0,32),(339408,1503923,'Young Hark',0,33),(339408,1622092,'Rebel Slave',0,34),(339408,1622093,'Lynch Mob',0,35),(339408,1609286,'General Child\'s Wife',0,36),(339408,1622094,'Son',0,37),(339408,1622095,'Rebel Man',0,38),(339408,1622096,'Angel (uncredited)',1,39),(339408,1622097,'Kid',0,40),(339408,489697,'Farmer',0,41),(266857,63494,'',2,1),(266857,550359,'',2,2),(266857,201283,'Kevin',2,3),(299245,1357480,'Cassidy',0,1),(299245,1354870,'Ryan',0,2),(299245,1401536,'Pfeifer',0,3),(299245,1401537,'Reese',0,4),(299245,1401538,'Stage Boy',0,5),(299245,1401540,'Cheerleader #1',0,6),(299245,1401541,'Mr. Schwendiman',0,7),(299245,1485023,'Pfeifer\'s Mom',0,8),(299245,1485024,'Rick Houser',0,9),(299245,1485025,'David the Janitor',0,10),(299245,555732,'Drama Student',1,11),(65448,543348,'Sweet Pea',0,0),(65448,543349,'Martel \'Too Sweet\' Gordone',2,1),(65448,543350,'Eugene T. Lawson',0,2),(65448,543351,'Linda (as Hazel Spear)',0,3),(65448,543352,'Jesse Amos',0,4),(65448,543353,'Hezzikia \'Seldom Seen\' Jackson (as Floyd Chatman)',0,5),(65448,543354,'Peaches',0,6),(65448,107009,'\'Half Dead\' Johnson',2,7),(65448,543356,'Lieutenant Arnsworth',0,8),(65448,543357,'Poindexter',0,9),(65448,543358,'Lying Latney Winborn',0,10),(65448,543359,'Cheese',0,11),(65448,543360,'Magilla Gorilla',0,12),(65448,543361,'Nut #1',0,13),(65448,543362,'Mook',0,14),(272726,1175127,'',0,1),(272726,1108531,'',1,2),(272726,1825608,'',0,3),(272726,5620,'',2,4),(272726,1079033,'',0,5),(272726,1509904,'',0,6),(272726,1261984,'',0,7),(272726,1640403,'',0,8),(272726,1261982,'',0,9),(175291,60846,'Craig',2,0),(175291,58019,'Vince',2,1),(175291,60072,'Violet',1,2),(175291,28638,'Colin',2,3),(175291,133401,'Audrey',1,4),(175291,1170333,'Caryn',0,5),(175291,83338,'Tweaker',1,6),(175291,61117,'Security Guard',2,7),(175291,1191314,'Enrique',0,8),(175291,1191316,'Angry Stripper',0,9),(175291,1191317,'Club Goer',0,10),(175291,1191318,'Bartender',0,11),(175291,1190068,'Strip Club Goer',0,12),(175291,1186714,'Doug',2,13),(175291,1191320,'Stripper',0,14),(80215,1052102,'Himself',0,0),(80215,1052103,'Himself',0,1),(80215,1052104,'Himself',0,2),(80215,1052105,'Himself',0,3),(51130,14502,'Paul Lester',2,0),(51130,30114,'Nancy Lester',1,1),(51130,41750,'Detective Sgt. Mike Frontelli',2,2),(51130,95315,'Roy Locke',2,3),(51130,34421,'Harry Strauss',2,4),(51130,4076,'Larry Mitchell',2,5),(51130,134819,'Mae Locke',0,6),(51130,857,'Carter',2,7),(51130,95733,'Chuck Hill',0,8),(51130,113704,'Ralph',2,10),(51130,136376,'Ed Stevens',0,11),(51130,69811,'Fawnes, Bigot Gang Member',2,13),(51130,11170,'Bob, Man at bar (as Tom Noonan)',2,15),(270554,1321308,'Dell',0,1),(270554,1321309,'Karen',0,2),(270554,307704,'Mike',0,3),(270554,1321310,'Jess',1,4),(72086,2201,'Salem',2,0),(72086,12726,'The Inspector',2,1),(72086,11916,'Ester Jenks',1,2),(72086,3855,'Dr. Anton Jenks',2,3),(72086,74689,'Mr. Clemens',2,4),(268917,1645097,'Herself',0,1),(268917,1645098,'Himself',0,2),(268917,1645099,'Himself',0,3),(268917,1645100,'Himself',0,4),(268917,1645101,'Herself',0,5),(268917,1005852,'Herself',1,6),(268917,68609,'Herself',1,7),(268917,4038,'Herself',1,8),(268917,312,'Himself',2,9),(90414,1000950,'Katie',0,0),(90414,19505,'Ben',2,1),(90414,98950,'Richard Webber',2,2),(90414,151384,'Janet',1,3),(90414,10489,'Lou Candela',2,4),(90414,157405,'Jones',2,5),(90414,1219831,'Mom',0,6),(90414,74366,'Elizabeth',1,7),(90414,87033,'Lisa',1,8),(90414,1291648,'Ben\'s Dream Date',1,9),(111794,162102,'Myles',0,0),(111794,13445,'Herself',1,1),(111794,1396573,'Elisabeth',0,2),(111794,1371374,'The Agent',0,3),(111794,27204,'Himself',0,4),(111794,18691,'Voice of the Producer (voice)',2,5),(360188,1527843,'Melissa Webber',0,1),(360188,1527845,'Jennifer Kane',0,2),(360188,1527846,'Stewart MacKendrick',0,4),(360188,1191167,'Moe',0,5),(360188,1380338,'Daisy',1,6),(360188,1380344,'Sheriff',0,7),(360188,1287055,'Sonny Huggins',2,8),(85860,1009255,'JTRO',0,0),(85860,1009256,'L Dubba E',2,1),(85860,590820,'KCDC',0,2),(85860,1009257,'Stacy',0,3),(85860,1021227,'BTRO',0,4),(85860,35768,'Beat Box Busta Bill',2,5),(244534,84223,'Jenny',1,0),(244534,15091,'Kelly',1,1),(244534,4451,'Kevin',2,2),(244534,139135,'Carson',1,3),(244534,40863,'Jeff',0,4),(244534,1445602,'Jude',0,5),(244534,1445606,'Music Supervisor',2,6),(244534,1445607,'Cab Driver',0,7),(244534,1078128,'Party Host',0,8),(244534,1445657,'Party Makeout Guy',0,9),(244534,45423,'Landlord',1,10),(244534,1445658,'Party Guest',0,11),(244534,81341,'Party Guest',0,12),(244534,566261,'Party Guest',0,13),(244534,222121,'Party Guest',2,14),(294086,1142889,'Chet',0,0),(294086,1366352,'Todd',0,1),(294086,555854,'Todd',2,2),(294086,45418,'Scott',2,3),(294086,94440,'Brandon',0,4),(294086,1485564,'Kingston',0,5),(294086,1485565,'Levi',0,6),(294086,155316,'William Waters',2,7),(294086,1485566,'Rachel',0,8),(294086,149699,'Ann',1,9),(294086,1485567,'Officer John',0,10),(294086,154583,'Mr. Farber',2,11),(294086,1485556,'Chet (young)',0,12),(294086,1485559,'Todd (young)',0,13),(139998,123515,'Nick',2,0),(139998,171766,'Darryl',0,1),(139998,20373,'Jamie',1,2),(139998,53936,'Liana',1,3),(139998,18472,'Adrian',2,4),(139998,1031943,'Amy',1,5),(139998,967044,'Mike',2,6),(139998,139135,'Alexa',1,7),(74777,551462,'Callie',1,0),(74777,572407,'Tricia',1,1),(74777,583456,'Daniel',1,2),(74777,551461,'Det. Mallory',2,3),(74777,583457,'Det. Lonergan',2,4),(74777,17005,'Walter Lambert',2,5),(74777,1395234,'Ruth',1,6),(74777,1395235,'Mitch',2,7),(74777,1513992,'Uniformed Officer',1,8),(74777,1632441,'Uniformed Officer',2,9),(74777,1393343,'Uniformed Officer',2,10),(74777,1632516,'Uniformed Officer',2,11),(74777,1632517,'Lawyer',0,12),(74777,1395236,'Dr. Carpenter',0,13),(74777,216570,'Dr. Elliott',0,14),(159770,1144092,'Matt',0,0),(159770,137240,'Owen',0,1),(159770,1208342,'Chrissy H.',1,2),(159770,1208343,'Jackman',0,3),(159770,216057,'Mr. Bird',0,4),(159770,1208345,'Krissy B.',1,5),(42109,27396,'Gabriela',1,0),(42109,5676,'Nacib',2,1),(42109,44980,'Tonico Bastos',0,2),(42109,130046,'Jou00e3o Fulgu00eancio',0,3),(42109,100663,'Glu00f3ria',1,4),(42109,932398,'Malvina',0,5),(42109,571933,'Mundinho Falcu00e3o',0,6),(42109,543096,'Prof. Josuu00e9',0,7),(42109,932399,'Cel. Manoel das Onu00e7as',0,8),(42109,12399,'Cel. Ramiro Bastos',2,9),(42109,1016756,'Jagunu00e7o chefe',2,10),(47607,139135,'Aura',1,0),(47607,139147,'Siri',1,1),(47607,139148,'Nadine',1,2),(47607,139149,'Candice',1,3),(47607,28044,'Frankie',1,4),(47607,139150,'Ashlynn',1,5),(47607,123515,'Jed',2,6),(47607,139151,'Charlotte',1,7),(47607,139154,'Noelle',0,8),(47607,139155,'Jacob',2,9),(47607,139152,'Julia',1,10),(47607,118076,'Keith',2,11),(47607,139138,'Bus Boy',2,12),(47607,1452417,'Drunk Girl',0,13),(47607,1371938,'Gallery Girl',0,14),(47607,139136,'Keith\'s Boy',2,15),(47607,1141412,'Ashlynn\'s Friend',0,16),(47607,1403204,'Ashlynn\'s Friend',0,17),(47607,139139,'Ashlynn\'s Friend',2,18),(47607,1044255,'Ashlynn\'s Friend',2,19),(47607,139140,'Ashlynn\'s Friend',0,20),(193603,14700,'Morgan',2,0),(193603,1376003,'Amanda',1,1),(193603,1434677,'Steven',0,2),(193603,1298790,'Corey',0,3),(193603,146417,'Detective Loomis',0,4),(84659,283815,'Alex',0,0),(84659,17239,'Susie',1,1),(84659,987734,'James',0,2),(84659,167263,'Kristie',1,3),(84659,21246,'Mr. Feldman',2,4),(84659,1745565,'Eric',0,5),(84659,159572,'Zoologist',2,6),(84659,1775990,'Juvenile Hall monitor',1,7),(242095,1017347,'Nic Eastman',2,0),(242095,1173984,'Haley Peterson',1,1),(242095,1078613,'Jonah Breck',0,2),(242095,2975,'Dr. Wallace Damon',2,3),(242095,79416,'James',2,4),(242095,7401,'Mirabelle',1,5),(242095,1409984,'Gas Station Clerk',0,6),(242095,1784236,'Boy Playing Claw Game',0,7),(242095,1784304,'Hazmat 1',0,8),(242095,1784306,'Hazmat 2',0,9),(242095,1784307,'Hazmat 3',0,10),(242095,1784308,'Hazmat 4',0,11),(250902,64849,'Himself',2,0),(250902,934844,'Himself',0,1),(250902,207202,'Himself',0,2),(250902,60890,'Himself',2,3),(250902,1249201,'Himself',0,4),(250902,1386984,'Himself',0,5),(250902,1223867,'Himself',0,6),(250902,1287009,'Himself',0,7),(250902,1287010,'Himself',0,8),(250902,1287011,'Himself',0,9),(250902,1287012,'Himself',0,10),(250902,1287013,'Himself',0,11),(250902,1287014,'Himself',0,12),(250902,1287015,'Herself',0,13),(250902,1287016,'Himself',0,14),(250902,1287017,'Himself',0,15),(250902,1287018,'Himself',0,16),(250902,1223881,'Himself',0,17),(250902,1386981,'Himself',0,18),(250902,7062,'Himself',2,19),(250902,4886,'Himself',2,20),(250902,85137,'Himself',2,21),(250902,145880,'',0,22),(250902,1753384,'Himself',0,23),(250902,1186589,'Himself',0,24),(250902,1378801,'Himself',0,25),(250902,1431493,'Himself',0,26),(250902,1356060,'Himself',0,27),(250902,37713,'Himself',2,28),(250902,1753390,'Himself',0,29),(250902,151000,'Himself',0,30),(250902,1209343,'Himself',0,31),(250902,1753391,'Himself',0,32),(250902,1753392,'Himself',0,33),(250902,1753393,'Himself',0,34),(250902,220303,'Himself',0,35),(250902,1753394,'Himself',0,36),(250902,1753395,'Himself',0,37),(250902,37622,'Himself',2,38),(250902,1753396,'Himself',0,39),(250902,1753397,'Himself',0,40),(250902,1753401,'Himself',0,41),(250902,1753402,'Himself',0,42),(250902,53368,'Himself',2,43),(250902,1753403,'Himself',0,44),(250902,265415,'Himself',0,45),(250902,1753408,'Himself',0,51),(250902,1753415,'Herself',0,52),(250902,1753416,'Himself',0,53),(250902,1753417,'Himself',0,54),(250902,1753419,'Himself',0,55),(250902,1753423,'Himself',0,56),(158895,1103727,'Martin Bonner',0,0),(158895,7472,'Travis Holloway',2,1),(158895,1140261,'Diana',0,2),(158895,79416,'Steve Helms',2,3),(158895,1107158,'April',0,4),(158895,202892,'Locy',2,5),(158895,1204826,'Angela Helms',0,6),(158895,1204819,'Supervisor',0,7),(158895,155352,'Cheryl',0,14),(158895,1204830,'Lacy',0,16),(158895,951586,'Max',2,19),(158895,1031145,'Jeff',0,24),(222250,74618,'Deanna',1,0),(222250,9629,'Richard Simpkins',2,1),(222250,57997,'Jason',2,2),(222250,1207533,'Mike',0,3),(222250,1207534,'Matt',0,4),(222250,54714,'Skinny Pete',2,5),(222250,210305,'Karen',1,6),(222250,1190180,'Rachel',0,7),(222250,1281758,'Amanda',1,8),(222250,1511092,'Party Goer',0,9),(125537,33349,'Chris Remi',2,0),(125537,181851,'Alison',1,1),(125537,204411,'Tony Remi',0,2),(326576,12852,'Cyrus',2,1),(326576,1429674,'Mara',0,2),(326576,111010,'Michael',0,3),(326576,36637,'Professor',2,4),(326576,144606,'Will',2,5),(326576,1285019,'Tracey',0,6),(326576,124577,'Mara\'s Father',0,7),(326576,1209892,'Faith',0,8),(228550,1263111,'Raymond',0,0),(228550,83338,'Paige',1,1),(228550,1263112,'Mrs. Rourke',0,3),(228550,1263113,'Tim',0,4),(228550,1263114,'Mrs. Talty',0,5),(228550,1241156,'Jayme',0,6),(228550,141035,'Paige - age thirteen',0,7),(228550,151381,'Tammy',1,8),(290391,1177998,'Addison Davenport',0,1),(290391,1360427,'Indy Knox',0,2),(290391,1360428,'Ariel Jackson',0,3),(290391,1360429,'Gina Fisher',0,4),(290391,1360430,'Billy Reid',0,5),(290391,1360431,'Janet Nace',0,6),(290391,1293761,'Alex Nace',0,7),(290391,1003805,'Jim Nace',0,8),(290391,1360432,'Officer Jett',0,9),(290391,1360433,'Dr. O\'Neil',0,10),(290391,1198916,'Server Jane',0,11),(290391,1360434,'Retired Sheriff',0,12),(290391,1353911,'Butcher',0,13),(290391,132755,'Clerk Randy',2,14),(290391,1360435,'Clerk Eugene',0,15),(290391,1360436,'Mrs. Davenport',0,16),(290391,1360437,'Jogger',0,17),(290391,1360438,'Reporter 2',0,18),(44770,35028,'Ivy',1,0),(44770,34918,'Al',2,1),(44770,131391,'Ivy\'s Mom',0,2),(44770,131390,'Cary',2,3),(44770,1792564,'Greg',0,4),(44770,1792565,'Jennifer',0,5),(44770,1792566,'Cousin',0,6),(44770,1792567,'Cousin\'s Husband',0,7),(44770,1792568,'Baby',0,8),(44770,1792569,'Doctor',0,9),(44770,1792570,'Dog Owner',0,10),(69382,558541,'The Gunslinger / Preacher',0,0),(69382,558542,'El Sobero',0,1),(69382,558543,'Bounty Hunter',2,2),(69382,558544,'Miss Jane',0,3),(40769,111446,'Alan',2,0),(40769,124562,'Ellie',1,1),(40769,40864,'',0,2),(220490,1263939,'Tina',0,0),(220490,1263940,'James Robertson',0,1),(220490,1263941,'Brian',0,2),(220490,1263942,'Father Albert',0,3),(220490,1263944,'Andrea',0,4),(42151,45282,'Bill',0,0),(42151,137469,'Karl',2,1),(42151,137471,'Maggie',1,2),(42151,137472,'Eric',2,3),(42151,147255,'Garvey',2,4),(42151,17078,'Pringle',2,5),(42151,1020514,'Valda',1,6),(42151,206847,'Councillor Berman',2,7),(42151,482444,'Johnny',2,8),(42497,1168215,'Pan',2,0),(42497,1168216,'Angel / Times Square Hustler / Hippie',0,1),(42497,140172,'multiple Roles',0,2),(185465,2682,'Junior Moreno',0,1),(185465,1180559,'Manny Moreno',0,2),(185465,555687,'Oscar Moreno',0,3),(185465,1400937,'Marisol',0,4),(185465,1400938,'Miriam Moreno',0,5),(185465,1400940,'Abuelo',0,6),(38780,32205,'Bill Williamson',2,0),(38780,65772,'Evan Drince',2,1),(38780,60650,'Sheriff Melvoy',2,2),(38780,20188,'Bill\'s Mother',1,3),(38780,40009,'Bill\'s Father',2,4),(38780,566944,'Evan\'s Father',0,5),(38780,27110,'Bank Manager',2,6),(38780,1351570,'Bank Teller',0,8),(38780,96173,'Bank Cashier',2,9),(38780,168542,'Beauty Staff #1',1,10),(38780,27136,'Beauty Staff #2',1,11),(38780,1351571,'Beauty Staff #3',0,12),(38780,27593,'Waitress',0,13),(38780,1341911,'Bingo Server',0,14),(366967,1532384,'Val',0,1),(366967,1532383,'Ash',0,2),(366967,1532385,'Lou',0,3),(366967,1532386,'Daisy',1,4),(366967,1532387,'Cal',0,5),(255266,92813,'Sasha',1,0),(255266,1292093,'Man',0,1),(255266,1031244,'Lauren',0,2),(255266,98100,'Mary',1,3),(255266,122250,'Dylan',0,4),(255266,1263110,'Trey',0,5),(226458,32747,'Father Conway',2,0),(226458,55464,'Patrick',2,1),(226458,88072,'Reign',1,2),(226458,145814,'Amber',1,3),(226458,1323454,'Brian Knowles',0,4),(226458,62832,'Rory',0,5),(226458,110475,'Brad',2,6),(226458,4728,'Greer',2,7),(226458,1226486,'Drew',0,8),(226458,1800838,'Mom',0,9),(226458,1298582,'Party Dancer',0,10),(226458,1570735,'Rave Party Teen',0,11),(226458,139966,'Rave Party Teen',1,12),(226458,1786741,'Rave Scene Party Guest',1,13),(226458,1800840,'Rave Party Teenager',0,14),(226458,1077059,'Voice (voice)',0,15),(226458,117367,'Voice (voice)',0,16),(226458,1198454,'Fire Marshall',2,17),(226458,1640939,'Party Patron',0,18),(226458,1800856,'Therapy Teen',2,19),(226458,1800860,'Therapy Teen',1,20),(226458,1800869,'Drug Addicted Teen',0,21),(287625,1427424,'',0,1),(287625,1427425,'',0,2),(287625,1427426,'',0,3),(287625,1427427,'',0,4),(287625,1118061,'',0,5),(287625,1427428,'',0,6),(287625,1427429,'',0,7),(287625,1427431,'',0,8),(287625,1427432,'',0,9),(287625,1427433,'',0,10),(287625,1427434,'',0,11),(44990,82885,'Zoe',1,0),(44990,131870,'Daryl',2,1),(44990,24305,'Joanie',1,2),(44990,8263,'Helaine',1,3),(44990,54246,'Alan',2,4),(44990,56689,'Maggie',0,5),(44990,21042,'Dylan',2,6),(44990,52442,'Erika',1,7),(44990,59254,'Turner',2,8),(44990,26716,'Hannah',1,9),(44990,965205,'Brian',2,10),(44990,82886,'Lindsay',1,11),(44990,118076,'David',2,12),(44990,139030,'Jack',2,13),(44990,1468344,'Frosh',0,14),(86304,1009255,'Charge / John',0,0),(86304,429,'Cutthroat / Ben',2,1),(86304,1736,'Rickshaw',2,2),(86304,1134094,'Shadow / Jill',1,3),(86304,223050,'Sledgesaw',0,4),(39851,1338,'Emily Wang',1,0),(39851,1733,'Albrecht Hauser',2,1),(39851,4813,'Elena',1,2),(39851,77191,'Irene Paolini',1,3),(39851,20173,'Vernon',2,4),(39851,143169,'Rosemary Hauser',1,5),(39851,199820,'Lee Hauser',2,6),(39851,123541,'Jay',2,7),(39851,144779,'Jean-Pierre',2,8),(39851,49279,'Sandrine',0,9),(157185,1264642,'Dave',0,1),(157185,1264589,'Mel',0,2),(157185,1210640,'Pete',0,3),(157185,1656723,'Girlfriend',0,4),(36095,18056,'Kenichi Takabe',2,0),(36095,116321,'Kunio Mamiya',2,1),(36095,137026,'Makoto Sakuma',0,2),(36095,115910,'Fumie Takabe',0,3),(36095,133656,'Ichiro Kuwano',0,5),(36095,137028,'OIda',2,6),(36095,137029,'Fujiwara',0,7),(36095,934113,'Tu00f4ru Hanaoka',0,8),(36095,107568,'Tomoko Hanaoka',0,9),(36095,551662,'Kimura',0,10),(36095,1121241,'Yasukawa',0,11),(36095,9722,'Tamura',0,12),(36095,1121242,'Psychiatrist',0,13),(36095,552585,'Takabe no shachu00f4',0,14),(36095,1248524,'Dr. Akiko Miyajima',0,15),(182291,1165265,'Isaac',0,0),(182291,1165266,'Angel',0,1),(182291,1165267,'Reaper',0,2),(182291,1165268,'Priest (as Phil Camacho)',0,3),(182291,1165269,'Isaac\'s mother',0,4),(182291,1165270,'Adam',0,5),(182291,1165271,'Laura',0,6),(182291,1165272,'Angel\'s Mother',0,7),(182291,1165273,'Jimmy\'s Mother (as Tatiana Suarez\'Pico)',0,8),(182291,1165274,'Jimmy',0,9),(182291,1165276,'Wait',0,11),(182291,1165277,'Niko (as Jimmy J. Borras Jr.)',0,12),(182291,1165278,'Yard Dude',0,13),(182291,1165279,'Pinto',0,14),(182291,567620,'Jesus',0,15),(182291,567620,'Hector',0,16),(182291,567620,'Ozzy',0,17),(182291,567620,'Mike',0,18),(182291,567620,'Jerry',0,19),(182291,1165280,'Burger Joint Chick',0,20),(182291,1165281,'Burger Joint Chick',0,21),(182291,1165283,'Esau',0,22),(182291,1165284,'Raul',0,23),(182291,1165285,'Dorvak\'s Partner',0,24),(286939,1383622,'Mimi',0,1),(286939,168675,'Tabitha',0,2),(286939,1354256,'Kylene',0,3),(286939,1089193,'Harris',0,4),(286939,1383623,'Dutch',0,5),(124606,238147,'The Girl',0,0),(124606,11803,'Adam',2,1),(124606,1487594,'Officer Rattler',0,2),(124606,1487595,'Pimp',0,3),(124606,1274315,'Officer Trotter',0,4),(124606,173833,'Officer Ham',2,5),(124606,1109526,'Jesu00fas',0,6),(124606,1487596,'Juan',2,7),(124606,99636,'The Producer',2,8),(124606,1163066,'Landlord',0,9),(124606,152699,'Rooftop Dealer',2,10),(124606,140,'Hooker',1,11),(124606,31178,'Cook',2,12),(124606,859896,'Drive-By Cholo',0,13),(72766,12833,'Buzzy',2,0),(72766,58356,'Linda',1,1),(72766,17188,'Marsha',1,2),(72766,211993,'Katie',1,3),(72766,1257819,'Vanessa',0,4),(231617,11867,'Oliver Ou2019Toole',2,0),(231617,34915,'Shane McInerney',1,1),(231617,58393,'Rita Haywith',1,2),(231617,119810,'Norman Dorman',0,3),(231617,77865,'Charlie Riggs',2,4),(231617,1037844,'Kelly',1,5),(231617,14668,'Andrea Shmeckle',1,6),(126186,82093,'Sam',2,0),(126186,210050,'Amanda',1,1),(126186,2053,'Donald',2,2),(126186,2394,'Marcus Groff',2,3),(126186,1395490,'',0,4);
/*!40000 ALTER TABLE `movie_cast` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `movie_company`
--
DROP TABLE IF EXISTS `movie_company`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `movie_company` (
`movie_id` int(10) DEFAULT NULL,
`company_id` int(10) DEFAULT NULL,
KEY `fk_mc_movie` (`movie_id`),
KEY `fk_mc_comp` (`company_id`),
CONSTRAINT `fk_mc_comp` FOREIGN KEY (`company_id`) REFERENCES `production_company` (`company_id`),
CONSTRAINT `fk_mc_movie` FOREIGN KEY (`movie_id`) REFERENCES `movie` (`movie_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `movie_company`
--
LOCK TABLES `movie_company` WRITE;
/*!40000 ALTER TABLE `movie_company` DISABLE KEYS */;
INSERT INTO `movie_company` VALUES (5,14),(5,59),(11,1),(11,306),(12,3),(13,4),(14,27),(14,2721),(16,11239),(16,119),(16,14937),(16,157),(16,17513),(16,201),(16,2996),(16,30268),(16,321),(16,4524),(16,5358),(16,53667),(16,53668),(16,53669),(16,53670),(16,53671),(16,5755),(16,591),(16,5975),(16,6916),(16,7025),(16,7330),(16,76),(16,8),(16,8659),(16,9349),(18,5),(18,9),(19,12372),(19,4),(20,49),(20,77),(22,130),(22,2),(24,14),(24,39121),(24,59),(25,14440),(25,1522),(25,19934),(25,33),(28,26663),(28,60),(33,171),(33,6194),(35,18),(35,306),(38,10039),(38,10059),(38,10146),(55,11230),(55,5084),(58,130),(58,19936),(58,2),(59,12),(59,429),(59,6363),(62,385),(62,8411),(65,23),(65,24),(66,171),(66,5),(66,97),(68,10214),(69,6402),(69,711),(69,84),(69,85),(69,86),(70,1171),(70,126),(70,16311),(70,171),(70,6194),(71,10163),(71,10462),(71,288),(71,686),(71,694),(71,718),(73,11308),(73,12),(73,924),(74,27),(74,4),(74,44),(74,56),(75,8601),(76,98),(77,34446),(77,491),(77,506),(77,598),(78,5798),(78,6194),(78,7965),(79,2269),(79,724),(80,11509),(80,97),(80,98),(83,22376),(85,1),(85,4),(87,1),(87,4),(89,1),(89,4),(90,30),(90,4),(95,11533),(95,130),(95,9195),(96,10288),(96,30),(96,4),(98,14440),(98,1645),(98,21904),(98,21905),(98,21906),(98,27),(98,33),(100,13419),(100,1382),(100,146),(100,21920),(100,491),(103,441),(103,46059),(103,46060),(104,1972),(104,7025),(105,20448),(105,33),(105,56),(106,1302),(106,1885),(106,306),(106,5263),(106,5264),(106,840),(107,13419),(107,3287),(107,441),(111,33),(114,10282),(114,9195),(115,10163),(115,1382),(115,37),(116,7),(117,4),(118,45778),(118,55512),(118,6194),(118,79),(118,80),(118,8601),(120,11),(120,12),(120,5237),(121,11),(121,12),(121,5237),(122,11),(122,12),(128,10342),(128,12516),(128,14),(128,20192),(129,10342),(134,10163),(134,2092),(134,33),(134,5870),(134,9195),(137,5),(141,185),(141,2214),(141,3334),(142,10146),(142,10565),(142,1246),(142,3997),(146,10565),(146,12205),(146,20289),(146,20290),(146,20291),(146,2269),(146,2798),(146,58),(149,10919),(149,10920),(149,10921),(149,3363),(149,528),(149,6999),(149,882),(149,9155),(152,4),(153,70),(154,4),(155,429),(155,6194),(155,923),(155,9993),(155,9996),(157,4),(161,129),(161,172),(161,24939),(161,2596),(161,6194),(161,79),(162,306),(163,12202),(163,129),(163,2596),(163,6194),(163,79),(165,20448),(165,33),(165,56),(167,1178),(167,19116),(167,763),(167,840),(168,4),(169,1302),(169,1885),(169,306),(169,840),(170,10889),(170,284),(172,4),(173,3166),(174,4),(176,2061),(176,23019),(176,35),(176,55405),(177,559),(179,10163),(179,11581),(179,20194),(179,33),(179,694),(179,932),(180,26265),(180,27),(180,306),(180,44),(180,56),(180,76068),(180,766),(182,14315),(182,6194),(182,70319),(184,14),(186,1204),(186,2116),(186,21962),(186,308),(186,816),(186,826),(187,10807),(187,53009),(187,7405),(189,10807),(189,11005),(189,11006),(189,13241),(189,14),(189,29076),(189,41658),(193,4),(194,12000),(194,23446),(194,25020),(194,27897),(194,30994),(194,4411),(194,5358),(194,591),(194,592),(196,20448),(196,33),(196,56),(197,11353),(197,4564),(197,7965),(199,4),(199,76068),(200,4),(201,4),(203,120),(205,11912),(205,1205),(205,19834),(205,2760),(205,35),(205,564),(205,60),(205,7495),(207,10282),(207,9195),(214,2061),(214,23019),(214,35),(215,1053),(215,2061),(215,23019),(215,35),(215,64651),(217,1),(217,4),(218,1280),(218,3952),(218,41),(218,4764),(218,7745),(219,49),(223,1553),(226,11351),(226,1422),(226,307),(226,43),(226,54),(227,6194),(227,70),(231,129),(231,20665),(231,20666),(231,6194),(231,6735),(231,7786),(235,1153),(235,5),(235,90896),(235,90897),(238,10211),(238,4),(239,11982),(239,219),(240,4),(240,536),(242,4),(243,32),(243,9195),(245,33),(248,1044),(251,4),(252,3434),(252,4),(253,10761),(253,60),(253,7576),(254,11),(254,33),(254,68),(254,69),(257,2979),(257,355),(257,6732),(261,100),(261,8411),(268,1382),(268,4357),(268,6194),(272,19231),(272,429),(272,6194),(272,923),(272,9993),(272,9996),(274,41),(274,55072),(277,126),(277,7733),(277,7734),(277,7735),(277,7736),(278,97),(279,6194),(280,1280),(280,14723),(280,5358),(280,574),(280,61409),(284,11241),(284,60),(285,130),(285,19936),(285,2),(288,60),(288,893),(289,6194),(292,2448),(296,19116),(296,23636),(296,5),(296,6194),(296,7340),(296,763),(297,136),(297,33),(298,129),(298,2596),(298,6194),(298,79),(302,104),(302,147),(302,148),(302,149),(302,150),(302,83),(306,30),(306,4),(309,11672),(309,156),(309,3221),(310,158),(310,159),(310,160),(310,33),(311,6194),(311,7965),(314,52945),(314,52946),(314,52947),(314,6194),(314,79),(314,813),(319,10210),(319,3322),(319,342),(319,6194),(320,1088),(320,1089),(320,129),(321,4096),(322,171),(322,172),(322,6194),(322,79),(326,12),(327,11561),(327,11562),(327,11563),(327,528),(327,567),(327,6516),(329,33),(329,56),(330,33),(330,56),(331,13),(331,56),(332,175),(332,2),(332,20477),(334,12),(334,178),(334,179),(335,11386),(335,218),(335,4),(338,1972),(338,201),(338,46),(342,161),(345,194),(345,195),(345,385),(345,6194),(346,882),(348,19747),(348,306),(350,306),(350,444),(350,445),(350,682),(350,711),(364,1382),(364,6194),(377,12),(377,1531),(380,206),(380,60),(387,11344),(387,1704),(387,209),(387,210),(387,7025),(388,23),(388,33),(388,4319),(389,10212),(389,60),(391,10481),(391,19498),(391,5755),(391,60),(392,14),(392,65781),(392,903),(393,14),(393,39121),(393,59),(395,11345),(395,1302),(395,19747),(395,19828),(395,19829),(395,19834),(395,19835),(395,248),(395,264),(395,306),(395,76043),(398,11715),(398,12200),(398,213),(398,214),(398,54280),(398,54281),(398,58),(400,14),(401,11728),(401,11729),(401,215),(401,216),(401,43),(403,2630),(403,80),(404,181),(404,2),(404,373),(404,5358),(404,59423),(404,635),(404,637),(404,694),(404,7832),(408,3166),(409,12204),(409,14),(411,10221),(411,5888),(414,31080),(414,6194),(415,1382),(415,6194),(421,23449),(421,9195),(423,10201),(423,19150),(423,208),(423,250),(423,260),(423,264),(423,266),(423,267),(423,268),(423,269),(423,271),(423,31087),(423,355),(423,4247),(423,5358),(423,694),(424,33),(424,56),(425,11749),(425,306),(425,9383),(429,42498),(429,5755),(429,60),(429,7508),(431,21953),(431,22207),(431,22208),(431,22209),(431,22210),(431,22211),(431,806),(433,3166),(435,11362),(435,306),(435,347),(435,35),(435,54502),(436,2291),(436,7429),(436,8),(440,1302),(440,19747),(440,306),(440,444),(451,15547),(451,60),(453,23),(453,27),(453,33),(454,240),(454,306),(455,1490),(455,2406),(455,2452),(455,43),(462,216),(464,242),(464,2495),(464,7937),(468,8),(470,10059),(470,10887),(470,10888),(473,22566),(473,22567),(473,379),(473,7503),(479,258),(479,4),(480,10932),(480,307),(480,6235),(489,14),(489,2253),(489,23201),(492,278),(492,279),(492,37),(496,20567),(496,306),(497,3982),(497,6194),(497,97),(500,1632),(500,26198),(500,285),(503,14024),(503,1633),(503,18990),(503,19943),(503,449),(503,6194),(504,28),(507,285),(508,10163),(508,284),(508,33),(508,694),(509,10163),(509,282),(509,283),(509,31080),(510,286),(510,60),(510,6194),(512,288),(512,289),(512,290),(512,291),(522,9195),(524,10898),(524,11583),(524,11584),(524,33),(525,33),(526,306),(526,6194),(533,297),(533,521),(534,4021),(534,4022),(534,5),(534,6194),(535,4),(539,10717),(539,33),(539,4),(540,10039),(540,2313),(540,3287),(540,769),(542,299),(542,300),(542,301),(542,303),(542,304),(544,306),(546,307),(546,308),(547,316),(547,9195),(549,53009),(549,93380),(549,93381),(550,20555),(550,508),(550,54050),(550,54051),(550,54052),(550,711),(557,19551),(557,5),(558,19551),(558,326),(558,5),(559,19551),(559,326),(559,5),(562,1073),(562,1885),(562,306),(563,23434),(563,559),(563,9195),(568,23),(568,33),(573,33),(576,4051),(577,364),(577,441),(578,1865),(578,33),(579,33),(580,33),(581,2630),(581,335),(582,201),(582,336),(582,337),(582,7333),(584,24),(584,26281),(584,33),(584,333),(585,2),(585,3),(586,11391),(586,11407),(586,12),(587,2721),(587,5),(587,80),(587,8601),(588,341),(588,342),(588,559),(588,55914),(590,14),(590,258),(590,4),(591,19927),(591,23),(591,5),(591,8253),(592,14120),(592,4),(592,536),(593,5120),(593,77882),(593,77883),(594,11084),(594,27),(594,56),(595,33),(597,306),(597,4),(597,574),(598,10954),(598,11444),(598,11445),(598,11446),(598,345),(598,346),(598,856),(601,33),(601,56),(602,306),(602,347),(603,1885),(603,372),(603,6194),(603,79),(604,172),(604,1885),(604,375),(604,6194),(604,79),(605,172),(605,1885),(605,6194),(605,79),(606,205),(606,33),(607,441),(607,49325),(607,56),(608,441),(608,49325),(608,5),(608,56),(609,396),(609,8411),(612,17032),(612,27),(612,33),(612,56),(612,682),(612,7383),(612,803),(613,2278),(613,2683),(613,3391),(613,5755),(613,7025),(613,7201),(613,986),(615,152),(615,306),(616,14718),(616,20634),(616,44),(616,6194),(617,1236),(617,5),(619,13040),(619,335),(619,6194),(621,3978),(621,4),(622,208),(622,2188),(622,3315),(622,353),(622,354),(622,355),(622,357),(622,3823),(622,5358),(622,9335),(627,14),(627,181),(627,358),(627,359),(627,9349),(628,360),(629,361),(629,9168),(630,31892),(634,10163),(634,11358),(634,14),(634,33),(634,5870),(639,365),(639,97),(640,11084),(640,367),(640,368),(641,2188),(642,306),(642,381),(642,382),(644,27),(644,385),(644,56),(644,6194),(646,60),(646,7576),(650,441),(652,18990),(652,19107),(652,19108),(652,6194),(652,7636),(652,81),(654,388),(654,5),(657,10761),(657,60),(657,7576),(658,10761),(658,60),(658,7576),(660,7576),(660,8411),(663,2061),(663,35),(664,23370),(664,33),(664,56),(664,6194),(666,393),(666,394),(666,395),(667,7576),(668,10761),(668,60),(668,7576),(670,398),(670,399),(671,436),(671,6194),(671,7364),(672,436),(672,437),(672,6194),(673,436),(673,437),(673,6194),(674,462),(674,6194),(674,7364),(675,6194),(675,7364),(676,130),(676,9195),(679,19747),(679,306),(679,396),(680,14),(680,216),(680,59),(681,10761),(681,60),(681,7576),(682,10761),(682,60),(682,7576),(686,43910),(686,6194),(687,10163),(687,1382),(687,406),(688,171),(688,56),(688,6194),(691,10761),(691,60),(691,7576),(692,407),(693,11391),(693,2242),(693,27),(693,33),(694,11272),(694,6194),(694,88),(698,60),(698,7576),(699,60),(699,7576),(700,7576),(702,1317),(702,6194),(703,60),(704,11506),(704,3462),(704,413),(707,7576),(708,60),(708,7576),(709,7576),(710,60),(710,7576),(711,414),(711,415),(711,441),(711,50830),(712,10163),(712,1382),(712,181),(713,14089),(713,418),(713,5186),(713,7832),(714,7576),(744,4),(745,158),(745,17032),(745,862),(745,915),(746,469),(746,470),(746,472),(746,473),(746,474),(746,5),(747,10163),(747,10462),(747,33),(747,443),(747,53047),(747,53048),(747,694),(747,9349),(752,1885),(752,23889),(752,264),(752,429),(752,449),(752,450),(752,6194),(752,7307),(754,25358),(754,4),(754,455),(754,456),(754,458),(754,9195),(755,11705),(755,53009),(755,59),(755,7405),(756,2),(762,416),(762,463),(762,464),(762,465),(764,467),(765,3102),(765,47380),(766,10308),(766,33),(766,467),(766,8411),(767,6194),(767,7364),(768,306),(768,476),(769,8880),(770,1553),(770,8411),(771,306),(771,477),(772,306),(772,477),(773,12808),(773,2570),(773,43),(782,216),(782,5),(783,5),(783,500),(783,501),(783,502),(783,503),(783,504),(786,485),(786,5),(786,7293),(787,10104),(787,1171),(787,433),(787,491),(787,508),(788,10230),(788,306),(790,494),(790,495),(790,498),(792,41),(792,469),(794,2767),(794,306),(795,20555),(795,507),(795,508),(795,6194),(795,676),(796,5),(796,505),(796,506),(801,554),(801,9195),(802,516),(802,517),(802,518),(805,10324),(805,4),(807,12),(807,4286),(807,65394),(808,27),(808,520),(808,521),(809,27),(809,520),(809,521),(810,27),(810,521),(811,23276),(811,33),(812,2),(813,4),(816,12),(816,594),(816,595),(817,12),(817,595),(818,12),(818,15888),(818,52943),(818,595),(818,598),(819,11407),(819,278),(819,6194),(820,523),(820,524),(820,525),(820,6194),(821,526),(821,60),(824,240),(824,306),(826,11356),(826,441),(834,126),(834,3287),(837,33),(837,541),(837,542),(837,543),(838,1),(838,33),(838,536),(840,11458),(840,441),(840,8263),(841,10308),(844,19858),(844,255),(844,26492),(844,354),(846,306),(846,545),(848,3166),(848,4),(849,441),(849,553),(850,10757),(850,8411),(853,11358),(853,22182),(853,24136),(853,24137),(853,24138),(853,4),(853,549),(853,551),(854,12),(854,552),(855,130),(855,1645),(855,497),(857,11362),(857,27),(857,4),(857,56),(857,762),(859,1176),(859,18737),(859,6194),(860,60),(860,8791),(861,14723),(861,559),(861,80461),(862,3),(863,3),(864,5888),(865,23005),(865,6068),(865,964),(865,965),(866,14),(866,560),(868,563),(868,564),(868,565),(868,566),(869,20004),(869,306),(869,8601),(872,8411),(873,4357),(873,56),(873,6194),(874,441),(874,571),(879,559),(879,56),(881,903),(887,28205),(888,1353),(888,33),(888,56),(889,33),(889,56),(905,4903),(907,8411),(913,597),(913,8411),(920,2),(920,3),(921,14),(921,23),(921,33),(921,631),(921,9195),(924,572),(924,655),(924,656),(924,657),(924,78685),(925,33),(925,4319),(926,2605),(926,27),(927,56),(927,6194),(928,56),(928,6194),(935,441),(935,88),(943,1885),(943,6194),(944,1885),(944,5739),(944,6194),(947,11356),(948,14323),(948,22814),(950,11749),(950,9383),(951,23),(951,33),(953,27),(953,520),(953,521),(954,4),(954,44),(955,4),(955,44),(955,51199),(956,14714),(956,22102),(956,2269),(956,264),(956,4),(956,44),(956,658),(957,617),(957,8411),(978,1236),(978,559),(978,57435),(978,57436),(979,1157),(979,19233),(979,4176),(979,5358),(979,616),(979,694),(979,856),(985,12226),(985,17877),(987,13),(990,22820),(990,306),(1018,373),(1018,5358),(1018,635),(1018,636),(1018,637),(1024,11),(1024,14),(1024,2306),(1024,294),(1051,306),(1051,646),(1051,73950),(1073,126),(1073,22512),(1073,22513),(1073,22514),(1073,3287),(1088,654),(1090,5),(1090,620),(1091,33),(1091,662),(1103,494),(1103,500),(1103,502),(1103,664),(1116,12695),(1116,12696),(1116,1898),(1116,19929),(1116,19930),(1116,19931),(1116,19932),(1116,19933),(1116,225),(1116,2274),(1116,2452),(1116,3012),(1116,5267),(1116,707),(1116,744),(1116,7680),(1123,10163),(1123,5870),(1123,932),(1124,6194),(1124,9195),(1124,9996),(1125,27),(1125,4),(1125,415),(1164,10039),(1164,11258),(1164,2531),(1164,838),(1165,10843),(1165,1178),(1165,16804),(1165,225),(1165,247),(1165,258),(1165,5358),(1165,866),(1213,14),(1213,4),(1213,679),(1213,932),(1245,2370),(1245,5),(1246,497),(1246,5),(1246,696),(1246,8411),(1248,10308),(1248,16923),(1248,20394),(1248,20395),(1248,289),(1248,2979),(1248,6370),(1250,11370),(1250,19551),(1250,20241),(1250,20475),(1250,20476),(1250,441),(1250,7295),(1251,171),(1251,27),(1251,56),(1251,6194),(1255,685),(1255,822),(1255,945),(1255,946),(1257,12026),(1257,33),(1259,2452),(1259,258),(1259,284),(1259,288),(1259,289),(1259,43),(1262,1973),(1262,771),(1265,10221),(1265,23890),(1265,60611),(1266,10405),(1266,43),(1266,508),(1266,6332),(1268,10163),(1268,686),(1271,2994),(1271,2995),(1271,449),(1271,6194),(1271,7636),(1271,78685),(1271,923),(1272,20478),(1272,2452),(1272,284),(1272,289),(1273,308),(1273,30900),(1273,3463),(1273,6194),(1273,70995),(1282,794),(1282,795),(1359,15231),(1359,35),(1359,6455),(1360,14),(1360,35),(1360,689),(1360,690),(1365,35),(1365,695),(1366,60),(1368,41),(1369,14723),(1369,559),(1370,14723),(1370,559),(1372,20938),(1372,348),(1372,430),(1372,449),(1372,6194),(1372,705),(1372,7380),(1378,1615),(1378,1616),(1378,1617),(1381,10104),(1381,508),(1381,6194),(1381,6438),(1381,7503),(1382,307),(1389,216),(1389,33),(1391,10932),(1391,1101),(1391,1102),(1402,12485),(1402,1423),(1402,441),(1402,7295),(1408,14723),(1408,183),(1408,415),(1408,8411),(1412,14),(1412,1419),(1412,889),(1415,1420),(1417,11628),(1417,2029),(1417,7470),(1422,45778),(1422,5552),(1422,6194),(1422,7380),(1422,829),(1424,26468),(1427,1208),(1427,2116),(1427,2875),(1427,342),(1427,5755),(1427,753),(1427,7956),(1428,10807),(1428,441),(1428,7405),(1429,4319),(1429,9195),(1430,11104),(1430,26136),(1430,26137),(1430,26138),(1430,26139),(1430,26140),(1430,803),(1439,711),(1440,12),(1440,2570),(1440,716),(1443,70),(1452,429),(1452,6194),(1452,9168),(1452,923),(1487,21497),(1487,497),(1487,552),(1487,840),(1491,11345),(1491,1187),(1491,12260),(1491,25432),(1491,52740),(1491,76043),(1493,172),(1493,4258),(1493,79),(1493,97),(1494,724),(1495,1645),(1495,19477),(1495,19478),(1495,19479),(1495,19480),(1495,19482),(1495,19483),(1495,264),(1495,306),(1495,4169),(1497,12),(1497,2521),(1499,12),(1499,53677),(1499,969),(1523,20369),(1523,20370),(1523,245),(1523,2452),(1523,284),(1523,43),(1523,6705),(1523,698),(1535,33),(1535,656),(1535,657),(1535,7385),(1535,780),(1535,919),(1537,4),(1538,11084),(1538,11463),(1538,27),(1538,4),(1542,306),(1542,7458),(1544,10146),(1544,1972),(1544,2650),(1544,2651),(1544,288),(1544,315),(1544,42272),(1544,52728),(1544,52729),(1546,12260),(1546,58),(1547,6194),(1548,2130),(1548,216),(1548,247),(1548,60),(1548,826),(1550,26468),(1550,728),(1551,441),(1551,5738),(1555,732),(1562,10890),(1562,2452),(1562,284),(1562,2890),(1562,359),(1562,785),(1571,11845),(1571,289),(1571,306),(1571,444),(1571,890),(1572,1504),(1572,306),(1573,1073),(1573,1885),(1573,306),(1574,14),(1574,734),(1574,8797),(1576,248),(1576,342),(1576,5755),(1576,939),(1577,248),(1577,53530),(1578,60),(1579,152),(1579,4564),(1579,9195),(1581,33),(1581,5),(1581,7295),(1581,735),(1584,21409),(1584,2348),(1584,258),(1584,4),(1584,8647),(1584,88628),(1585,11770),(1585,6),(1586,1271),(1586,23651),(1586,441),(1586,54502),(1587,4),(1588,919),(1590,737),(1590,739),(1591,1704),(1591,24212),(1591,5755),(1591,740),(1593,2575),(1593,289),(1593,306),(1593,436),(1597,11391),(1597,27),(1597,33),(1597,41248),(1598,11391),(1598,33),(1598,56),(1598,691),(1599,23488),(1599,23489),(1599,258),(1599,43),(1599,8874),(1599,892),(1613,1218),(1613,1268),(1613,1269),(1613,1270),(1613,18620),(1613,246),(1613,52619),(1613,803),(1613,8582),(1620,11746),(1620,11747),(1620,306),(1620,444),(1620,6896),(1620,867),(1621,11142),(1621,4),(1624,23),(1624,33),(1635,11084),(1635,27),(1635,6194),(1636,306),(1636,508),(1636,73949),(1637,306),(1639,306),(1639,35304),(1640,12260),(1640,19528),(1640,2087),(1640,2448),(1640,25432),(1640,25433),(1640,25434),(1642,5),(1645,508),(1645,6194),(1646,20396),(1646,215),(1646,216),(1648,41),(1649,365),(1649,41),(1651,34403),(1651,53),(1651,64),(1656,441),(1656,56),(1667,5358),(1667,66329),(1667,66330),(1667,66331),(1667,7658),(1667,856),(1667,8661),(1669,1693),(1669,2767),(1669,4),(1677,2233),(1677,2234),(1677,33),(1677,8833),(1683,15763),(1683,1786),(1683,19965),(1683,6194),(1683,79),(1685,12943),(1685,306),(1687,12943),(1687,306),(1688,12943),(1688,306),(1690,1507),(1690,1631),(1690,1632),(1690,1633),(1690,17793),(1690,3287),(1691,1633),(1691,3287),(1691,35),(1696,1838),(1696,35),(1696,45966),(1696,995),(1698,161),(1701,130),(1701,3589),(1701,78338),(1701,78339),(1701,9195),(1705,22542),(1705,306),(1710,10104),(1710,508),(1717,11317),(1717,1208),(1717,23238),(1717,441),(1717,7295),(1722,14),(1722,33),(1724,11533),(1724,25121),(1724,33),(1724,420),(1725,60),(1725,8268),(1725,90571),(1726,420),(1729,2269),(1729,3393),(1729,7295),(1729,877),(1734,11462),(1734,20242),(1734,33),(1735,11462),(1735,19643),(1735,2269),(1735,33),(1735,7295),(1770,360),(1770,6194),(1771,420),(1777,225),(1777,8734),(1779,26137),(1779,6194),(1781,2253),(1781,2315),(1781,6735),(1788,4),(1788,959),(1792,1156),(1792,306),(1808,1422),(1808,181),(1808,279),(1808,3644),(1808,506),(1808,53009),(1808,720),(1809,770),(1813,10104),(1813,20555),(1813,508),(1813,6194),(1813,676),(1813,824),(1817,711),(1819,11844),(1819,33),(1819,59957),(1824,10039),(1824,19813),(1824,2608),(1824,441),(1830,1204),(1830,1205),(1830,1206),(1830,1208),(1830,21938),(1830,831),(1831,126),(1831,4),(1832,16934),(1832,6644),(1833,436),(1833,497),(1833,5),(1844,414),(1844,508),(1850,762),(1852,20396),(1852,215),(1852,4),(1852,763),(1858,12247),(1858,20011),(1858,22826),(1858,2481),(1858,27),(1858,4),(1858,435),(1858,56),(1858,76043),(1865,130),(1865,2),(1865,20478),(1874,773),(1878,1591),(1878,33),(1878,491),(1878,53460),(1878,53461),(1880,60),(1880,774),(1883,182),(1883,4319),(1883,6194),(1885,2596),(1885,4267),(1885,441),(1887,12387),(1887,20637),(1887,20638),(1887,441),(1887,6542),(1887,70),(1891,1),(1891,306),(1892,1),(1892,306),(1893,1),(1894,1),(1895,1),(1900,20634),(1900,58333),(1900,58334),(1900,7380),(1900,987),(1901,1473),(1903,349),(1903,4),(1903,485),(1904,158),(1904,27),(1904,441),(1904,780),(1907,359),(1909,12),(1909,70),(1911,9195),(1913,10050),(1913,104),(1913,11408),(1913,11955),(1913,12012),(1913,28812),(1913,6639),(1913,692),(1913,7248),(1913,784),(1913,850),(1921,6194),(1921,788),(1924,51861),(1924,51862),(1924,6194),(1927,10565),(1927,11533),(1927,19551),(1927,33),(1930,326),(1930,5),(1930,7505),(1931,1309),(1933,104),(1933,44),(1933,53009),(1933,692),(1933,7405),(1933,778),(1933,779),(1934,14),(1934,33),(1934,348),(1946,20170),(1946,803),(1946,804),(1946,805),(1946,806),(1946,807),(1946,808),(1946,809),(1947,14),(1947,20376),(1947,20377),(1947,497),(1947,7380),(1947,7965),(1947,810),(1948,11152),(1948,126),(1948,2152),(1948,35),(1949,11317),(1949,4),(1949,6194),(1950,430),(1950,6194),(1950,79),(1950,812),(1950,813),(1951,11499),(1951,119),(1951,12023),(1951,12927),(1951,1711),(1951,17513),(1951,201),(1951,23207),(1951,25491),(1951,30268),(1951,321),(1951,3221),(1951,5358),(1951,53874),(1951,55428),(1951,5975),(1951,6916),(1951,7025),(1951,76),(1951,814),(1951,986),(1954,12),(1954,12200),(1954,6363),(1954,816),(1954,817),(1955,5612),(1956,1171),(1956,32598),(1956,32599),(1957,8880),(1958,147),(1958,183),(1958,310),(1958,818),(1958,819),(1958,83),(1961,3086),(1961,552),(1966,10926),(1966,19116),(1966,4588),(1966,54997),(1966,591),(1966,6194),(1966,763),(1966,866),(1969,11473),(1969,3823),(1969,5358),(1969,6586),(1969,6896),(1969,828),(1970,4154),(1970,4710),(1970,768),(1970,829),(1970,830),(1975,441),(1975,768),(1975,829),(1979,10881),(1979,19551),(1979,289),(1979,306),(1979,436),(1979,444),(1979,5755),(1985,10146),(1985,1171),(1985,2452),(1985,264),(1985,33680),(1985,36615),(1985,7419),(1988,163),(1988,81),(1988,838),(1989,539),(1989,540),(1989,694),(1989,839),(1995,19105),(1995,3324),(1995,4),(1995,4650),(1995,657),(1995,762),(1995,840),(1996,14362),(1996,19105),(1996,3324),(1996,4),(1996,657),(1996,762),(1996,840),(1997,19238),(1997,3823),(1997,5358),(1997,7396),(1997,866),(1999,14),(1999,842),(2001,376),(2001,5),(2001,846),(2009,35020),(2009,5545),(2009,69462),(2009,73925),(2009,73926),(2009,73927),(2009,859),(2011,11246),(2011,18367),(2011,23677),(2011,311),(2011,312),(2011,58),(2011,591),(2011,62546),(2011,744),(2011,84592),(2011,84593),(2011,854),(2011,860),(2011,862),(2013,11433),(2013,11434),(2013,1997),(2013,5358),(2013,591),(2013,6301),(2013,862),(2013,866),(2018,34207),(2018,441),(2018,65403),(2018,763),(2018,869),(2018,870),(2022,12),(2022,2608),(2022,441),(2022,879),(2023,19477),(2023,877),(2023,9195),(2024,347),(2024,441),(2024,762),(2024,9269),(2026,11027),(2026,14),(2026,2448),(2026,26947),(2026,26948),(2026,26949),(2026,890),(2034,172),(2034,19507),(2034,24939),(2034,6194),(2034,79),(2043,4),(2043,902),(2043,903),(2043,904),(2043,905),(2043,906),(2044,1143),(2044,6194),(2044,79),(2044,829),(2048,12485),(2048,1302),(2048,19354),(2048,19355),(2048,306),(2048,415),(2054,10201),(2054,1382),(2054,915),(2054,916),(2055,10157),(2055,18619),(2055,335),(2055,9195),(2056,921),(2056,922),(2057,8411),(2059,130),(2059,19097),(2059,2),(2059,831),(2062,2),(2062,3),(2067,158),(2067,22103),(2067,3638),(2067,9195),(2069,10210),(2069,1403),(2069,51772),(2069,53013),(2069,53014),(2069,6194),(2074,14),(2080,10893),(2080,19551),(2080,289),(2080,306),(2080,431),(2080,444),(2080,9076),(2080,9168),(2084,931),(2084,932),(2084,9349),(2085,1885),(2085,6194),(2088,10163),(2088,31080),(2088,36907),(2100,27),(2105,3169),(2105,33),(2105,491),(2105,506),(2110,104),(2110,356),(2110,480),(2110,6896),(2110,963),(2112,4),(2112,4564),(2114,20033),(2114,4164),(2114,5),(2116,333),(2116,8411),(2116,966),(2118,2428),(2118,508),(2118,6194),(2119,10288),(2119,4),(2122,1403),(2122,23787),(2122,51771),(2122,51772),(2122,8848),(2122,890),(2123,1156),(2123,306),(2133,16061),(2133,18990),(2133,6194),(2135,27),(2135,6194),(2140,306),(2140,5358),(2140,6896),(2140,73954),(2140,972),(2140,973),(2142,14),(2142,978),(2142,979),(2148,41),(2148,427),(2148,991),(2155,12552),(2155,7405),(2157,12),(2157,14024),(2157,19902),(2157,30253),(2162,10210),(2162,6194),(2163,10308),(2163,10355),(2163,4),(2176,333),(2185,9195),(2196,1012),(2196,1013),(2196,1014),(2196,10760),(2196,3801),(2196,737),(2207,10254),(2207,10405),(2207,1088),(2207,10885),(2207,10886),(2207,431),(2207,4741),(2207,890),(2251,1171),(2251,508),(2251,58248),(2251,711),(2252,10146),(2252,11550),(2252,16880),(2252,20244),(2252,2743),(2252,288),(2252,7419),(2252,805),(2252,806),(2253,60),(2253,6100),(2253,8411),(2253,9168),(2255,14),(2255,16934),(2266,1031),(2266,1032),(2266,1033),(2268,12),(2268,1473),(2268,1938),(2268,289),(2270,23420),(2270,289),(2270,4),(2270,435),(2270,5374),(2275,21409),(2275,25358),(2275,38005),(2275,4),(2277,18990),(2277,415),(2277,436),(2277,441),(2277,9195),(2280,18),(2280,21451),(2280,306),(2287,1050),(2287,1051),(2287,1052),(2287,1053),(2288,5),(2289,10102),(2289,1370),(2289,14),(2289,2570),(2289,932),(2290,10230),(2290,22684),(2290,5),(2290,9269),(2292,14),(2292,16934),(2293,11462),(2293,16934),(2293,37),(2294,16934),(2294,53009),(2294,7405),(2295,16934),(2295,308),(2300,3592),(2300,55527),(2300,8816),(2309,12),(2309,20360),(2310,11395),(2310,2265),(2310,24955),(2310,4),(2312,1062),(2312,1063),(2312,1064),(2320,1885),(2320,6194),(2355,11708),(2355,2608),(2355,3800),(2355,5),(2355,7295),(2359,308),(2370,33),(2395,11921),(2395,1992),(2395,1994),(2395,1995),(2395,1996),(2395,20409),(2395,356),(2395,47),(2395,5358),(2395,866),(2395,8676),(2395,9335),(2428,13579),(2447,1143),(2447,12),(2447,12292),(2453,22058),(2453,22059),(2453,8411),(2454,10221),(2454,11345),(2454,11440),(2454,11441),(2454,11442),(2454,5888),(2454,76043),(2486,1302),(2486,2735),(2486,289),(2486,306),(2486,444),(2486,445),(2486,711),(2493,1153),(2493,49243),(2493,49244),(2501,11345),(2501,33),(2501,7383),(2501,7384),(2501,7385),(2502,11346),(2502,11347),(2502,33),(2502,7384),(2502,862),(2503,11347),(2503,11348),(2503,11349),(2503,33),(2503,862),(2539,18),(2539,441),(2567,14),(2567,19116),(2567,54502),(2567,562),(2567,6194),(2567,675),(2567,691),(2567,7380),(2575,3201),(2575,5),(2577,288),(2604,33),(2604,4198),(2610,1171),(2610,1172),(2610,1173),(2610,9195),(2619,9195),(2621,65402),(2621,8411),(2636,11134),(2636,2596),(2636,6194),(2637,126),(2639,8),(2642,172),(2642,4258),(2642,79),(2642,97),(2649,10164),(2649,1382),(2649,1519),(2652,12355),(2655,11395),(2655,27),(2655,306),(2661,1188),(2661,1189),(2661,306),(2661,429),(2662,10370),(2662,33),(2666,12),(2666,908),(2667,15160),(2667,2188),(2669,10308),(2675,12236),(2675,7383),(2675,9195),(2687,508),(2687,5358),(2687,6194),(2687,644),(2687,67992),(2698,158),(2698,159),(2698,33),(2698,333),(2698,4171),(2698,5),(2698,7295),(2749,11391),(2749,12),(2749,376),(2749,67171),(2752,10163),(2752,14),(2752,33),(2755,12),(2755,1565),(2756,1280),(2756,306),(2756,574),(2757,10565),(2757,1274),(2757,23227),(2757,267),(2757,278),(2757,8856),(2770,2200),(2770,3169),(2770,33),(2779,1824),(2779,27),(2786,1216),(2787,10201),(2789,14718),(2789,7154),(2830,7405),(2832,441),(2832,85),(2841,11246),(2841,12000),(2841,1232),(2841,18367),(2841,20346),(2841,3823),(2841,5358),(2841,6194),(2841,76911),(2841,975),(2895,1257),(2898,18),(2898,559),(2900,12),(2900,1757),(2907,258),(2907,4),(2907,41),(2925,258),(2959,11317),(2959,3929),(2959,49326),(2959,49327),(2959,6194),(2959,79),(2976,12),(2976,2378),(2976,289),(2976,70994),(2977,1267),(2977,2689),(2977,6342),(2989,8310),(3021,308),(3021,435),(3021,7405),(3033,13495),(3033,18880),(3033,35),(3034,1296),(3034,1297),(3034,1298),(3034,306),(3040,1038),(3040,1039),(3040,1040),(3040,1272),(3049,10210),(3049,6194),(3050,1301),(3050,1302),(3050,306),(3059,1307),(3059,1308),(3060,8411),(3062,6194),(3078,441),(3080,6),(3082,1315),(3082,60),(3083,5),(3089,1316),(3089,1317),(3089,60),(3093,19116),(3093,4169),(3093,7340),(3093,763),(3116,1323),(3116,1324),(3116,60),(3131,14),(3131,7380),(3131,7381),(3132,11345),(3132,130),(3132,9195),(3170,3166),(3172,1171),(3172,1212),(3172,13816),(3172,16061),(3172,52944),(3172,8411),(3172,890),(3175,11272),(3175,6194),(3175,88),(3179,360),(3179,4),(3179,746),(3291,11509),(3291,14175),(3291,14315),(3291,2030),(3291,20451),(3291,51850),(3291,846),(3472,12666),(3472,1390),(3472,14),(3472,288),(3482,11929),(3482,64),(3482,7110),(3489,1063),(3489,559),(3489,713),(3509,11509),(3509,11510),(3509,14315),(3509,380),(3512,17825),(3512,21480),(3512,508),(3512,6194),(3512,63906),(3536,10308),(3536,104),(3536,33),(3558,14440),(3558,441),(3558,787),(3558,9269),(3580,171),(3580,23),(3580,7295),(3587,1484),(3587,508),(3587,6194),(3594,12),(3594,1836),(3594,1838),(3595,90663),(3595,9195),(3597,1236),(3597,1464),(3597,441),(3600,1236),(3600,1464),(3600,5),(3604,10308),(3604,23126),(3635,1470),(3635,1471),(3635,1472),(3638,12202),(3638,6194),(3638,7747),(3638,79),(3638,97),(3682,1483),(3682,1811),(3682,53009),(3682,61337),(3683,171),(3683,27),(3683,56),(3683,6194),(3766,11447),(3766,441),(3877,12200),(3877,1522),(3877,27),(3877,7293),(3902,1205),(3902,1208),(3902,1422),(3902,14737),(3902,1512),(3902,17594),(3902,2506),(3902,72153),(3902,7416),(3933,11537),(3933,1514),(3933,1515),(3933,57751),(3933,6194),(3933,8601),(3981,347),(3981,4),(3981,4564),(3981,8116),(3989,258),(3989,4),(4011,4354),(4011,6194),(4012,14159),(4012,1539),(4032,23),(4032,5),(4105,14361),(4105,1561),(4105,4),(4107,1095),(4107,14063),(4107,1898),(4107,2307),(4108,356),(4108,5358),(4108,6896),(4108,972),(4133,12),(4147,27),(4147,306),(4147,80),(4148,11843),(4148,1522),(4148,1550),(4148,258),(4148,27),(4148,288),(4170,620),(4174,1553),(4232,7405),(4232,979),(4233,14),(4233,1601),(4233,7405),(4233,85),(4234,1600),(4234,7405),(4234,85),(4244,2),(4248,10958),(4248,1607),(4248,1608),(4248,7405),(4251,1569),(4256,10958),(4256,7405),(4257,7405),(4258,7405),(4327,5),(4347,10163),(4347,33),(4347,5870),(4347,7295),(4348,10146),(4348,10163),(4348,33),(4348,694),(4348,7419),(4349,12246),(4349,33),(4349,675),(4349,7295),(4349,7786),(4379,12),(4379,12067),(4379,6363),(4379,705),(4380,14),(4421,1643),(4421,1644),(4421,1645),(4421,1646),(4421,175),(4421,915),(4442,1649),(4442,308),(4442,491),(4442,507),(4442,7405),(4442,748),(4442,76043),(4442,8411),(4464,158),(4464,33),(4464,7293),(4464,862),(4464,9195),(4474,10104),(4474,11733),(4474,508),(4474,89632),(4476,1656),(4476,348),(4476,559),(4477,5),(4512,11252),(4512,1645),(4512,3997),(4512,449),(4512,6194),(4512,81),(4513,24339),(4513,5),(4513,552),(4513,768),(4515,1683),(4515,21911),(4515,316),(4515,44),(4515,60),(4515,8411),(4517,10163),(4517,33),(4517,694),(4518,10163),(4518,1382),(4518,181),(4523,1894),(4523,2),(4523,8908),(4523,8909),(4547,1685),(4547,7795),(4550,1687),(4550,1688),(4550,1689),(4550,1690),(4550,1691),(4550,1692),(4550,946),(4551,1693),(4551,215),(4551,216),(4551,8411),(4553,52107),(4553,7302),(4553,7956),(4553,9335),(4553,9974),(4566,14315),(4566,932),(4566,97),(4584,441),(4584,932),(4597,11249),(4597,11250),(4597,3287),(4597,8931),(4599,10157),(4599,10227),(4599,9195),(4614,21409),(4614,21410),(4614,2767),(4614,4),(4614,54502),(4638,10163),(4638,33),(4638,3656),(4638,443),(4638,694),(4657,29052),(4657,57625),(4657,57626),(4657,57627),(4657,57628),(4657,57629),(4657,8724),(4688,497),(4688,598),(4723,12622),(4723,1700),(4723,33),(4723,54030),(4723,769),(4723,810),(4723,856),(4723,87783),(4723,8848),(4806,10201),(4806,126),(4806,4),(4806,9195),(4816,1251),(4816,208),(4816,254),(4816,4248),(4816,5358),(4816,59348),(4816,986),(4824,11462),(4824,15278),(4824,23932),(4824,33),(4824,4650),(4824,54502),(4824,657),(4824,7237),(4824,762),(4836,5374),(4836,58),(4858,1885),(4858,6194),(4858,79),(4858,829),(4911,11462),(4911,1809),(4911,1810),(4911,60),(4911,763),(4911,8411),(4912,14),(4912,1755),(4912,1757),(4922,4),(4922,6194),(4922,7383),(4929,60),(4935,10342),(4935,11200),(4935,11847),(4935,12518),(4935,74952),(4942,19507),(4942,22695),(4942,33),(4942,877),(4944,10146),(4944,10163),(4944,2092),(4944,5870),(4944,7295),(4951,1757),(4951,1783),(4951,9195),(4953,10146),(4953,12),(4953,1784),(4958,1171),(4958,1755),(4958,27),(4958,306),(4958,316),(4959,1972),(4959,264),(4959,507),(4959,748),(4960,1785),(4964,10105),(4964,33),(4965,12552),(4965,21635),(4965,21636),(4965,7405),(4967,158),(4967,53666),(4967,9195),(4970,1786),(4970,441),(4970,6194),(4982,1645),(4982,23),(4982,33),(4982,7295),(4982,8083),(4995,12),(4995,178),(4995,840),(4997,35),(5038,11737),(5038,12010),(5038,1824),(5038,308),(5038,6538),(5038,8530),(5072,1854),(5072,2268),(5072,2395),(5072,2452),(5072,8874),(5072,892),(5123,30131),(5123,6194),(5123,7036),(5125,10039),(5125,10040),(5125,20666),(5126,12),(5137,10671),(5137,10672),(5137,1668),(5137,4),(5137,4753),(5137,804),(5172,1861),(5174,12),(5175,12),(5176,10880),(5176,1632),(5176,7295),(5176,84),(5178,11672),(5236,1885),(5236,6194),(5255,11395),(5255,1867),(5255,4171),(5279,987),(5353,763),(5393,1632),(5393,1718),(5393,46875),(5393,614),(5491,10210),(5491,1403),(5491,19718),(5491,6194),(5491,7406),(5494,16850),(5494,19259),(5494,8900),(5503,6194),(5516,2092),(5516,3638),(5516,9195),(5528,1168),(5528,793),(5528,8138),(5528,83),(5528,866),(5550,41),(5551,10566),(5551,171),(5551,1757),(5551,6194),(5551,76068),(5551,79),(5559,1903),(5559,520),(5559,521),(5689,441),(5708,1915),(5708,1916),(5708,1917),(5708,1918),(5708,7289),(5722,306),(5723,11571),(5723,25489),(5723,491),(5759,1974),(5769,1980),(5780,33),(5820,10104),(5820,1171),(5820,28537),(5820,306),(5820,33433),(5820,444),(5820,445),(5820,508),(5822,2404),(5852,10210),(5852,1171),(5852,22351),(5852,89132),(5852,89133),(5854,33),(5876,3982),(5876,7405),(5902,11503),(5902,60),(5915,1246),(5915,41051),(5915,838),(5915,8769),(5925,219),(5925,60),(5955,10210),(5955,1171),(5955,12263),(5955,12264),(5955,1403),(5966,216),(5966,53626),(5971,4),(5994,33),(6007,2009),(6016,16419),(6016,21327),(6016,43),(6016,803),(6020,9195),(6023,1088),(6023,17449),(6023,412),(6038,158),(6038,58262),(6038,58263),(6038,58264),(6038,9195),(6068,175),(6068,8816),(6068,9195),(6068,961),(6071,306),(6073,2253),(6073,27),(6073,506),(6073,55852),(6106,3952),(6114,2019),(6114,441),(6114,70),(6116,441),(6171,13040),(6171,172),(6171,24939),(6171,79),(6171,97),(6217,33),(6217,4361),(6278,158),(6278,22902),(6278,7692),(6278,80),(6278,9195),(6282,130),(6282,9195),(6415,23689),(6415,23690),(6415,23691),(6415,507),(6415,6194),(6415,79),(6435,4258),(6435,55474),(6435,6194),(6435,79),(6435,813),(6439,1088),(6440,14),(6466,12),(6466,1565),(6466,17611),(6466,21783),(6466,371),(6466,50102),(6466,53063),(6477,10930),(6477,444),(6477,508),(6477,711),(6478,1632),(6479,12485),(6479,333),(6479,433),(6479,6194),(6479,7364),(6479,79),(6488,2104),(6488,56),(6488,915),(6519,12202),(6519,6194),(6519,79),(6519,975),(6520,10158),(6520,441),(6521,2108),(6521,7293),(6537,11649),(6537,11650),(6537,11651),(6537,11652),(6537,1182),(6537,2674),(6537,6778),(6537,856),(6538,2030),(6538,2031),(6538,33),(6552,441),(6552,598),(6552,6092),(6557,158),(6557,6332),(6557,711),(6575,10105),(6575,441),(6615,19731),(6615,737),(6615,8411),(6623,27),(6639,12),(6639,2053),(6687,10843),(6687,12370),(6687,12371),(6687,12372),(6687,2064),(6687,2065),(6687,2674),(6687,7956),(6687,9335),(6795,11370),(6795,14718),(6795,2550),(6795,441),(6877,258),(6877,4),(6877,84423),(6933,1088),(6933,20363),(6933,2073),(6933,763),(6947,12236),(6947,258),(6947,9195),(6950,16775),(6950,2154),(6950,6194),(6950,824),(6957,10105),(6957,33),(6961,12026),(6961,2157),(6961,29018),(6963,11930),(6963,1423),(6963,4),(6964,441),(6964,6194),(6964,735),(6968,19477),(6968,5755),(6968,7025),(6968,7201),(6968,7333),(6968,73872),(6968,753),(6968,986),(6972,240),(6972,289),(6972,306),(6972,6332),(6972,7888),(6973,11509),(6973,2087),(6973,2088),(6973,2089),(6973,491),(6977,14),(6977,2092),(6977,258),(6977,838),(6978,306),(6978,965),(7006,1063),(7006,12026),(7191,11461),(7191,4),(7214,2184),(7214,4),(7214,746),(7220,11533),(7220,19551),(7220,35),(7220,36326),(7220,827),(7278,10104),(7278,508),(7288,14),(7288,2214),(7299,35304),(7299,7405),(7301,2224),(7303,2455),(7304,1507),(7304,18621),(7304,2227),(7304,5357),(7305,4),(7305,9195),(7326,43),(7326,771),(7341,2229),(7341,60),(7345,14),(7345,178),(7345,838),(7347,10187),(7347,2427),(7347,2430),(7347,2432),(7347,308),(7347,47043),(7347,47044),(7347,47046),(7350,17049),(7350,70994),(7350,86256),(7364,12124),(7364,12125),(7364,12126),(7364,19481),(7364,2233),(7364,2234),(7364,2235),(7364,2767),(7364,4),(7364,4169),(7443,27),(7443,297),(7443,521),(7443,7981),(7445,11369),(7445,11370),(7445,11371),(7445,1632),(7445,7295),(7446,11843),(7446,12178),(7446,12379),(7446,27),(7450,11050),(7450,11231),(7450,306),(7451,333),(7451,497),(7451,5),(7453,158),(7453,2242),(7453,2243),(7453,9195),(7459,12170),(7459,1885),(7459,264),(7459,450),(7459,6194),(7459,79),(7461,31604),(7461,333),(7461,4169),(7461,5),(7461,7295),(7484,2251),(7485,4),(7485,435),(7485,57421),(7501,2253),(7504,2257),(7509,2146),(7509,2147),(7509,2148),(7509,2149),(7510,559),(7512,20992),(7512,306),(7515,17700),(7515,2262),(7515,68096),(7515,769),(7516,10163),(7516,33),(7516,694),(7516,7295),(7516,7419),(7518,520),(7518,521),(7547,1838),(7547,21856),(7547,2266),(7548,2267),(7548,2268),(7552,23),(7552,441),(7552,76714),(7553,1305),(7553,2273),(7735,5755),(7737,248),(7737,342),(7737,5755),(7737,58249),(7859,2290),(7859,2291),(7859,2292),(7859,2293),(7859,2294),(7859,446),(7863,11840),(7863,41999),(7863,8),(7863,8724),(7870,2297),(7873,308),(7874,2315),(7913,2319),(7913,2320),(7942,2245),(7942,2246),(7942,6847),(7944,2264),(7944,2265),(7973,18367),(7973,208),(7973,22625),(7973,2280),(7973,2281),(7973,2282),(7973,2283),(7973,25818),(7973,6916),(7973,72598),(7973,77292),(7973,78994),(7978,33),(7978,4403),(7978,7295),(7979,11392),(7979,11553),(7979,1522),(7979,2269),(7979,2299),(7979,27),(7979,29031),(7979,384),(7979,6735),(7979,737),(7980,11),(7980,11843),(7980,12248),(7980,2300),(7980,27),(7980,9349),(8007,1302),(8007,306),(8009,2737),(8009,6179),(8011,22240),(8011,25129),(8011,2662),(8011,30655),(8012,216),(8012,8411),(8046,136),(8046,497),(8046,877),(8051,12),(8051,178),(8051,5),(8053,2322),(8053,6896),(8054,10316),(8054,11567),(8054,11575),(8054,17449),(8054,212),(8054,23116),(8054,342),(8054,55990),(8054,55991),(8054,806),(8054,808),(8054,8582),(8055,11238),(8055,12346),(8055,264),(8055,270),(8055,308),(8055,315),(8055,4247),(8055,7307),(8055,932),(8060,10039),(8060,1838),(8060,737),(8065,5),(8065,7295),(8068,11705),(8068,5),(8069,1216),(8069,1497),(8069,4),(8077,19747),(8077,306),(8078,19747),(8078,306),(8080,126),(8080,4),(8080,44),(8080,763),(8090,126),(8090,2397),(8090,3287),(8095,11451),(8095,11452),(8095,306),(8141,14589),(8141,2147),(8141,2332),(8141,35444),(8141,35445),(8141,35446),(8141,35447),(8193,2339),(8193,2340),(8193,4),(8193,43),(8193,6196),(8193,746),(8195,2347),(8195,60),(8197,15298),(8197,6194),(8198,14),(8198,763),(8198,932),(8202,11533),(8202,11534),(8202,126),(8202,4),(8202,6041),(8202,746),(8204,4),(8204,862),(8224,1685),(8224,441),(8224,9269),(8247,10104),(8247,444),(8247,7384),(8265,11434),(8265,11544),(8265,11545),(8265,2355),(8265,310),(8265,356),(8265,5358),(8265,6301),(8265,866),(8271,2363),(8271,27),(8271,4),(8271,4607),(8272,10059),(8272,23105),(8272,2361),(8272,43),(8272,67504),(8273,3169),(8273,33),(8273,52942),(8273,7161),(8285,1632),(8285,3263),(8285,429),(8285,5627),(8285,7375),(8285,7376),(8291,5),(8292,4),(8292,435),(8293,10932),(8293,2370),(8321,10146),(8321,20899),(8321,2376),(8321,7419),(8321,9349),(8326,10221),(8326,11317),(8326,2),(8326,2377),(8328,2378),(8328,491),(8328,9195),(8329,3631),(8337,17823),(8337,17824),(8337,33),(8338,11547),(8338,11548),(8338,11549),(8338,11550),(8338,11551),(8338,164),(8338,2439),(8338,2514),(8338,3033),(8338,345),(8338,3656),(8338,4887),(8338,806),(8346,12026),(8346,22210),(8346,3268),(8346,4171),(8346,95018),(8355,11749),(8355,9383),(8357,2453),(8358,11395),(8358,27),(8358,306),(8358,4171),(8359,12),(8359,2454),(8359,2455),(8359,52005),(8359,52006),(8359,52007),(8359,7429),(8363,10105),(8363,5),(8367,10210),(8367,6194),(8373,22826),(8373,2481),(8373,27),(8373,4),(8373,435),(8373,56),(8373,76043),(8374,11342),(8374,1403),(8374,20088),(8386,216),(8386,33),(8386,45689),(8390,10163),(8390,33),(8390,49123),(8390,694),(8408,2482),(8408,2483),(8408,5822),(8409,12),(8409,16791),(8409,21975),(8409,37103),(8413,248),(8413,2484),(8413,4),(8416,1497),(8416,1627),(8416,4),(8416,819),(8427,441),(8435,1219),(8435,163),(8435,1917),(8435,288),(8435,7419),(8435,89041),(8452,11317),(8456,23423),(8456,491),(8456,551),(8457,10105),(8457,4),(8461,11509),(8461,2458),(8461,860),(8461,9349),(8467,11061),(8467,12),(8469,13298),(8469,13300),(8469,33),(8470,12),(8470,17106),(8470,23019),(8487,16774),(8487,2507),(8487,57088),(8487,6194),(8488,12485),(8488,441),(8489,441),(8536,51861),(8536,51862),(8536,6194),(8545,14),(8584,158),(8584,9195),(8584,961),(8587,10217),(8587,2),(8592,9195),(8617,2514),(8618,2452),(8618,284),(8618,288),(8619,306),(8619,33),(8619,53009),(8619,9118),(8643,126),(8643,1838),(8643,3287),(8645,12236),(8645,158),(8645,2320),(8645,306),(8645,444),(8649,11584),(8649,4),(8649,9195),(8656,1865),(8656,2478),(8656,27),(8656,4),(8665,10104),(8665,11371),(8665,20344),(8665,2471),(8665,4),(8665,763),(8669,8411),(8675,10146),(8675,2516),(8675,2517),(8676,2609),(8676,6194),(8681,1115),(8681,11261),(8681,11845),(8681,23614),(8681,306),(8681,5358),(8681,6586),(8681,6877),(8681,6896),(8688,2519),(8688,4),(8688,54502),(8688,9195),(8698,12087),(8698,1507),(8698,19352),(8698,306),(8698,475),(8699,10105),(8741,11317),(8741,23660),(8741,711),(8744,14),(8744,2533),(8780,58553),(8780,7295),(8810,2537),(8814,11345),(8814,1512),(8814,19481),(8814,19922),(8814,19923),(8814,2539),(8814,435),(8818,1504),(8818,915),(8831,1644),(8831,2982),(8831,33),(8831,4248),(8831,467),(8831,552),(8834,1885),(8834,23397),(8834,6194),(8835,2527),(8835,8411),(8836,306),(8836,52145),(8836,545),(8836,6332),(8838,23),(8838,33),(8839,11098),(8839,33),(8839,56),(8840,33),(8841,15671),(8841,726),(8842,4),(8842,53673),(8842,53904),(8842,53905),(8842,53906),(8843,11152),(8843,12),(8843,1565),(8843,26083),(8843,26084),(8847,58),(8848,2729),(8848,37774),(8848,507),(8848,7295),(8848,748),(8849,4),(8849,57751),(8850,33),(8854,2554),(8854,6194),(8854,9993),(8859,1088),(8859,306),(8869,172),(8869,3241),(8869,347),(8869,6194),(8869,79),(8870,172),(8870,22351),(8870,53997),(8870,6194),(8870,79),(8871,23),(8871,33),(8872,4),(8874,559),(8875,1204),(8875,2248),(8875,4305),(8875,4307),(8879,15298),(8879,6194),(8883,11011),(8883,11238),(8883,11672),(8883,11673),(8883,11674),(8883,11675),(8883,11676),(8883,11677),(8883,11678),(8883,11679),(8883,11680),(8883,11681),(8883,11682),(8883,11683),(8883,11685),(8883,118),(8883,204),(8883,264),(8883,3221),(8883,5358),(8883,5975),(8883,7306),(8883,7307),(8883,758),(8883,9111),(8885,17931),(8885,17932),(8885,1848),(8909,1038),(8909,158),(8909,23955),(8909,2526),(8909,2527),(8909,2528),(8909,33),(8909,7295),(8909,76043),(8913,4),(8914,28438),(8914,28439),(8914,6194),(8914,79),(8916,27),(8916,520),(8916,521),(8920,11749),(8920,1302),(8920,306),(8922,21784),(8922,21785),(8922,60),(8922,70),(8922,995),(8942,1360),(8942,14862),(8942,1976),(8942,31301),(8942,4748),(8944,11391),(8944,4700),(8944,846),(8944,8769),(8952,6896),(8953,11671),(8953,3153),(8953,528),(8960,12485),(8960,28064),(8960,41756),(8960,433),(8960,5),(8960,675),(8960,7295),(8961,10288),(8961,441),(8963,10288),(8963,915),(8966,11843),(8966,12292),(8966,4000),(8966,491),(8966,5218),(8966,57750),(8967,1246),(8967,43),(8967,81),(8968,3287),(8968,768),(8968,7893),(8968,830),(8970,2232),(8970,4),(8975,10339),(8975,306),(8975,4024),(8976,10157),(8976,2976),(8976,2977),(8976,9195),(8978,134),(8978,20449),(8978,20450),(8978,729),(8981,1178),(8981,2452),(8981,52723),(8981,53874),(8981,698),(8981,80272),(8982,308),(8982,6018),(8982,8211),(8984,11407),(8984,6194),(8987,33),(8987,496),(8987,662),(8988,2546),(8988,258),(8988,4),(8988,746),(8998,34),(8999,14),(8999,23635),(8999,435),(9003,15338),(9003,15339),(9003,15340),(9003,1950),(9007,135),(9007,27),(9007,384),(9008,158),(9008,675),(9008,8758),(9008,8759),(9008,9195),(9009,49696),(9009,49697),(9009,829),(9009,9195),(9012,4),(9012,6328),(9012,746),(9012,90661),(9013,136),(9013,33),(9016,10217),(9016,2),(9021,12626),(9021,2),(9021,889),(9022,14712),(9023,27),(9023,521),(9026,2650),(9027,33),(9027,5870),(9029,2575),(9029,306),(9029,4916),(9029,508),(9029,6332),(9029,748),(9030,4622),(9030,838),(9032,5),(9034,43),(9035,33),(9036,10227),(9036,158),(9036,2),(9036,20669),(9036,7383),(9036,829),(9042,126),(9042,26032),(9042,26033),(9042,3287),(9042,995),(9043,711),(9045,13837),(9045,22182),(9045,22370),(9045,3823),(9045,5358),(9045,82),(9053,12317),(9053,23238),(9053,248),(9053,37134),(9053,5755),(9053,8068),(9059,33),(9059,69626),(9067,2231),(9072,1608),(9072,497),(9074,12),(9075,11921),(9075,12046),(9075,16618),(9075,1991),(9075,21972),(9075,2254),(9075,23192),(9075,23238),(9075,234),(9075,25487),(9075,25488),(9075,264),(9075,4247),(9075,4508),(9075,7307),(9075,865),(9075,8676),(9087,5),(9087,97),(9089,1382),(9089,4),(9089,802),(9092,10201),(9092,31080),(9093,12552),(9093,14),(9093,14160),(9093,19477),(9093,36612),(9093,4),(9095,18737),(9095,559),(9096,1504),(9096,915),(9099,23),(9099,33),(9100,5),(9104,10565),(9104,1983),(9104,9349),(9208,11362),(9208,306),(9208,456),(9257,11728),(9257,20033),(9257,20034),(9257,333),(9257,441),(9260,129),(9260,185),(9260,21625),(9260,5367),(9260,6194),(9266,23),(9266,24),(9266,33),(9266,65082),(9268,6194),(9268,824),(9271,4),(9273,10210),(9273,5682),(9275,1757),(9275,191),(9275,6194),(9275,6705),(9276,11705),(9276,7405),(9277,33),(9279,306),(9279,436),(9280,1171),(9280,6370),(9281,4),(9282,10828),(9282,1838),(9282,2226),(9285,2364),(9285,27),(9286,12),(9286,12067),(9286,3169),(9286,48772),(9286,48785),(9286,48788),(9288,2055),(9288,8933),(9288,8934),(9288,8935),(9289,13630),(9289,306),(9290,11600),(9290,11601),(9290,11602),(9291,2608),(9291,4),(9291,441),(9291,60378),(9291,746),(9292,1885),(9292,559),(9294,9195),(9297,11395),(9297,2251),(9297,5),(9297,56),(9297,5752),(9302,1504),(9302,9195),(9303,10308),(9303,10355),(9304,441),(9306,12),(9310,1473),(9310,33),(9311,1704),(9311,43),(9312,12),(9312,4174),(9313,8213),(9315,23),(9315,9195),(9327,23),(9327,33),(9331,2767),(9331,4),(9334,11462),(9334,33),(9334,7385),(9334,7588),(9335,104),(9335,1993),(9335,306),(9335,6586),(9335,6896),(9335,76043),(9335,972),(9336,6194),(9336,7965),(9339,2608),(9339,333),(9339,441),(9339,497),(9341,12213),(9341,12214),(9341,2199),(9341,4),(9341,496),(9341,7161),(9342,559),(9342,56),(9344,14),(9348,8411),(9350,14723),(9350,23246),(9350,45728),(9350,45729),(9350,5358),(9350,559),(9352,2364),(9352,27),(9352,53012),(9353,2348),(9353,2777),(9353,4),(9355,2537),(9357,43),(9357,7053),(9358,12),(9358,3169),(9360,11134),(9360,16387),(9360,3803),(9360,441),(9360,55532),(9360,55533),(9361,10210),(9362,33),(9362,3851),(9366,11317),(9366,11407),(9366,2604),(9366,559),(9367,5),(9372,8735),(9374,33),(9378,1786),(9378,23503),(9378,441),(9378,6194),(9381,1115),(9381,11259),(9381,11260),(9381,11261),(9381,20240),(9381,5358),(9381,6301),(9381,694),(9383,441),(9383,9269),(9384,12178),(9384,433),(9384,53610),(9384,6194),(9384,7405),(9387,10308),(9387,33),(9388,3567),(9388,43),(9389,18367),(9389,2203),(9389,5381),(9389,7089),(9390,18),(9390,559),(9392,3573),(9392,45785),(9392,7981),(9396,4),(9398,10692),(9398,12178),(9398,172),(9398,21409),(9398,258),(9398,2932),(9398,2933),(9398,4),(9398,79),(9400,12),(9408,2251),(9408,5),(9414,3415),(9414,508),(9414,6194),(9414,897),(9416,12),(9422,316),(9422,4),(9422,9195),(9424,2848),(9424,33088),(9424,79),(9424,8411),(9424,919),(9425,10210),(9425,248),(9425,2596),(9425,6194),(9427,181),(9427,306),(9427,8764),(9428,9195),(9429,2822),(9429,4),(9430,5),(9433,8769),(9434,175),(9434,915),(9434,961),(9437,11661),(9437,4),(9440,33),(9440,762),(9441,436),(9441,5),(9443,306),(9443,6194),(9443,7049),(9443,7965),(9443,8770),(9444,11231),(9444,11232),(9444,11233),(9444,11234),(9444,306),(9447,2537),(9448,559),(9449,10163),(9449,31080),(9451,2570),(9451,4),(9451,746),(9452,306),(9454,306),(9455,12),(9455,3480),(9457,1504),(9457,45518),(9457,915),(9459,3816),(9459,6194),(9466,21716),(9466,21717),(9469,4319),(9469,9195),(9470,5),(9471,10239),(9471,19813),(9471,4022),(9471,5),(9472,12178),(9472,19354),(9472,306),(9473,1538),(9473,258),(9473,4),(9473,45852),(9473,6194),(9473,7480),(9476,1423),(9476,441),(9476,53007),(9476,53008),(9481,33),(9481,441),(9486,33),(9486,694),(9487,2),(9487,3),(9488,7405),(9489,6194),(9490,33),(9493,33),(9495,14),(9495,4028),(9495,4029),(9495,4030),(9495,6455),(9502,521),(9504,12),(9504,67780),(9504,67781),(9509,10104),(9509,1171),(9509,1645),(9509,508),(9509,711),(9513,1302),(9513,306),(9513,444),(9515,14),(9516,12),(9517,694),(9526,11486),(9526,11487),(9526,11488),(9526,1246),(9526,2152),(9531,51861),(9531,51903),(9531,6194),(9532,12),(9532,3169),(9532,48772),(9533,33),(9533,8411),(9535,11391),(9535,11407),(9535,6194),(9535,705),(9541,14),(9541,16934),(9541,23022),(9541,267),(9543,130),(9543,2),(9544,1070),(9544,1403),(9544,16850),(9544,19944),(9544,2193),(9544,2982),(9544,46195),(9544,48618),(9548,1885),(9548,306),(9549,6194),(9549,7965),(9550,724),(9552,48184),(9552,6194),(9555,2948),(9555,57623),(9555,57624),(9555,8724),(9557,2090),(9557,2188),(9562,18619),(9562,18620),(9562,4),(9562,431),(9562,762),(9563,4198),(9563,431),(9563,6194),(9566,1236),(9566,559),(9567,13473),(9567,497),(9567,5),(9567,890),(9570,3166),(9571,10932),(9571,37),(9571,6556),(9573,171),(9573,6194),(9574,2),(9574,2173),(9576,10932),(9576,2154),(9576,4267),(9576,441),(9576,932),(9582,21447),(9582,8411),(9583,10535),(9583,11617),(9587,5),(9588,7396),(9588,8411),(9591,1274),(9591,306),(9591,38944),(9593,441),(9593,55528),(9594,3470),(9598,2537),(9598,33),(9600,306),(9600,508),(9603,4),(9607,12288),(9607,1504),(9607,1755),(9607,5888),(9607,915),(9610,499),(9613,16419),(9613,17449),(9613,22209),(9613,46694),(9613,46695),(9613,806),(9613,826),(9613,8582),(9614,1606),(9614,33),(9614,3929),(9615,33),(9616,14652),(9616,306),(9616,8874),(9618,6194),(9619,1280),(9619,33),(9620,11567),(9620,1302),(9620,22536),(9620,27),(9620,2812),(9620,4),(9621,20157),(9621,4),(9621,44),(9621,485),(9623,441),(9624,6194),(9625,17825),(9625,6194),(9626,10308),(9626,3418),(9626,8411),(9631,508),(9631,6194),(9637,507),(9637,6194),(9637,748),(9641,2575),(9641,306),(9641,87840),(9644,12),(9645,172),(9645,1786),(9645,53238),(9645,6194),(9645,79),(9647,4),(9654,10163),(9654,2609),(9655,126),(9655,27),(9656,7405),(9659,11962),(9659,2537),(9659,8831),(9662,58),(9662,7488),(9662,7489),(9664,289),(9664,3241),(9664,6277),(9664,6362),(9665,27349),(9665,559),(9667,11509),(9667,1208),(9667,129),(9667,3801),(9667,551),(9667,827),(9667,846),(9671,15081),(9671,4),(9672,11509),(9672,1422),(9672,33617),(9672,8802),(9675,1187),(9675,12157),(9675,43),(9676,10254),(9676,10885),(9676,22443),(9676,2982),(9676,33),(9676,342),(9676,4700),(9676,8769),(9678,12),(9678,1565),(9678,2608),(9679,130),(9679,9195),(9682,7405),(9683,9195),(9685,60),(9686,9195),(9689,27),(9691,10308),(9691,1885),(9691,23397),(9691,25061),(9691,5358),(9691,6194),(9693,11429),(9693,33),(9693,655),(9697,12236),(9697,6194),(9697,923),(9700,35),(9701,6194),(9701,6735),(9701,8073),(9702,915),(9703,10308),(9703,16923),(9703,289),(9703,6370),(9705,172),(9705,1885),(9705,46458),(9705,6194),(9705,79),(9707,5899),(9707,59341),(9713,175),(9713,9195),(9715,306),(9715,4258),(9716,14),(9718,10105),(9718,5),(9725,4),(9725,7512),(9726,1645),(9726,711),(9728,4),(9728,7513),(9729,805),(9730,4),(9730,93280),(9731,16779),(9731,4),(9737,10288),(9737,5),(9741,12236),(9741,17032),(9741,3683),(9741,9195),(9746,9195),(9754,10157),(9754,10991),(9754,3528),(9754,6194),(9754,79),(9759,12),(9760,10104),(9760,23596),(9760,306),(9760,508),(9762,2378),(9762,491),(9762,74192),(9762,9195),(9763,17491),(9763,17492),(9763,9195),(9766,5),(9767,2796),(9767,33),(9767,748),(9770,16775),(9770,6194),(9772,18990),(9772,441),(9772,919),(9776,27),(9776,36390),(9778,14),(9778,21518),(9778,870),(9779,10067),(9779,1088),(9779,813),(9781,12),(9781,3242),(9781,90195),(9781,90196),(9781,90197),(9782,14),(9782,1615),(9782,307),(9783,3295),(9787,5),(9787,559),(9792,1600),(9792,43),(9792,444),(9792,445),(9793,1600),(9793,2890),(9793,444),(9794,1632),(9798,130),(9798,1645),(9798,79209),(9798,9195),(9799,26281),(9799,26282),(9799,33),(9799,333),(9800,1274),(9800,559),(9801,10163),(9801,11357),(9801,11358),(9801,14),(9801,33),(9801,5870),(9802,10288),(9802,915),(9804,1073),(9804,1302),(9804,33),(9804,6092),(9806,2),(9806,3),(9809,33),(9813,769),(9816,53673),(9816,746),(9819,11391),(9819,14),(9819,258),(9821,14),(9822,2),(9822,4361),(9823,12),(9823,4174),(9824,2484),(9824,33),(9824,552),(9825,11317),(9825,67109),(9825,711),(9826,4),(9826,79),(9826,7965),(9829,10163),(9829,33),(9829,694),(9829,737),(9833,3539),(9833,38504),(9833,6194),(9833,7419),(9836,2537),(9836,8089),(9837,27),(9837,521),(9839,11728),(9839,26107),(9839,54502),(9839,551),(9839,5521),(9842,7405),(9849,2),(9869,2767),(9869,4),(9870,10105),(9870,33),(9877,11317),(9877,333),(9877,53473),(9877,559),(9879,5),(9879,97),(9880,2),(9880,26423),(9880,65559),(9882,13769),(9882,20634),(9882,306),(9884,43717),(9884,496),(9884,6194),(9884,788),(9889,306),(9890,2609),(9890,4),(9890,7293),(9894,441),(9895,10210),(9895,33),(9896,11462),(9896,3857),(9896,4),(9899,145),(9899,34),(9900,2608),(9900,306),(9902,24211),(9902,24212),(9902,491),(9902,506),(9902,508),(9902,53350),(9902,5755),(9903,12260),(9903,14),(9903,1557),(9903,2448),(9906,4171),(9906,6194),(9906,84419),(9906,89136),(9907,2348),(9907,24955),(9907,4),(9912,12325),(9912,12326),(9912,12327),(9912,12328),(9912,12329),(9912,12330),(9912,294),(9912,846),(9913,12269),(9913,12270),(9913,12271),(9913,215),(9913,33),(9913,69),(9918,2),(9919,4),(9920,3287),(9920,8003),(9922,335),(9922,6194),(9923,12),(9923,1645),(9923,342),(9923,56181),(9923,656),(9928,11749),(9928,9383),(9930,33),(9930,8816),(9930,932),(9932,11391),(9932,14719),(9932,172),(9932,48638),(9932,6194),(9932,79),(9942,4),(9942,932),(9944,6194),(9945,1644),(9945,23893),(9945,23894),(9945,23895),(9945,4248),(9945,5),(9946,919),(9947,10104),(9947,1171),(9947,19551),(9947,19552),(9947,19553),(9947,19554),(9947,306),(9947,508),(9950,2448),(9952,8411),(9954,127),(9955,7),(9957,2608),(9957,497),(9957,5),(9962,29602),(9962,29603),(9962,43),(9963,1172),(9963,2378),(9963,559),(9969,10104),(9969,18479),(9969,508),(9969,89633),(9975,23),(9975,33),(9975,5556),(9978,22514),(9978,2268),(9978,7289),(9981,33),(9982,10217),(9982,2),(9986,4),(9986,7311),(9988,2773),(9989,1171),(9989,1172),(9989,376),(9989,8411),(9991,13419),(9992,104),(9992,2525),(9992,6896),(9992,854),(10003,11661),(10003,2767),(10003,4),(10008,20451),(10008,22705),(10008,3244),(10008,3533),(10008,3608),(10008,4298),(10008,8933),(10012,1600),(10012,20376),(10012,2180),(10012,7405),(10013,559),(10013,70),(10014,12),(10014,1531),(10016,23895),(10016,3287),(10016,51312),(10017,10165),(10017,10166),(10017,59346),(10022,158),(10022,2),(10024,12029),(10024,2604),(10024,2605),(10025,10104),(10025,508),(10025,890),(10027,104),(10027,2748),(10027,3823),(10027,66739),(10027,66740),(10027,6896),(10027,972),(10028,2527),(10028,33),(10028,41963),(10029,10201),(10029,38085),(10029,38086),(10029,7380),(10030,1632),(10030,4194),(10034,2651),(10034,9195),(10040,4258),(10040,79),(10040,97),(10045,104),(10045,3823),(10045,6896),(10047,5),(10047,9),(10048,11317),(10048,19523),(10048,326),(10048,333),(10048,441),(10050,53009),(10052,158),(10052,159),(10052,20352),(10052,2605),(10052,33),(10052,7385),(10053,1302),(10053,3287),(10054,10807),(10054,53009),(10054,7405),(10060,4),(10060,54336),(10060,746),(10061,11661),(10061,4),(10065,14718),(10065,2481),(10065,7405),(10065,8411),(10066,1786),(10066,6194),(10066,79),(10067,10227),(10067,12626),(10067,2),(10068,11670),(10068,22297),(10068,22298),(10068,22299),(10068,8411),(10069,1205),(10069,158),(10069,4022),(10069,915),(10070,2811),(10070,48688),(10070,7405),(10071,3215),(10071,497),(10071,559),(10072,12),(10072,1531),(10073,10104),(10073,1171),(10073,508),(10074,4),(10075,12270),(10075,126),(10075,51851),(10075,51852),(10075,8411),(10077,1171),(10077,1403),(10077,16850),(10077,2234),(10077,2755),(10077,2978),(10077,2979),(10077,2980),(10077,2981),(10077,2982),(10077,87847),(10077,87848),(10077,87849),(10077,87850),(10077,87851),(10077,87852),(10090,215),(10090,216),(10090,306),(10090,37845),(10090,4),(10090,7480),(10090,89635),(10092,33),(10096,19636),(10096,497),(10096,5),(10105,2934),(10115,158),(10115,62367),(10115,9195),(10117,1885),(10117,1887),(10131,12),(10132,5231),(10132,8814),(10133,14),(10133,185),(10135,1885),(10135,206),(10135,60),(10136,4),(10137,441),(10137,5555),(10137,58331),(10138,420),(10139,10146),(10140,10221),(10140,444),(10140,711),(10147,14722),(10147,5),(10147,71989),(10152,12),(10153,11407),(10153,2154),(10153,23370),(10153,6194),(10154,6194),(10154,97),(10156,306),(10156,5612),(10159,10339),(10159,11581),(10159,33),(10159,5),(10159,655),(10159,90249),(10160,12),(10162,24356),(10162,43),(10162,5358),(10163,12),(10163,5570),(10167,1403),(10167,3287),(10179,3893),(10179,8411),(10183,85817),(10183,9122),(10184,12),(10184,19813),(10184,51190),(10185,126),(10185,2152),(10185,22056),(10185,35),(10186,2890),(10187,9195),(10189,10105),(10189,5),(10191,20154),(10191,521),(10191,829),(10192,521),(10193,2),(10193,3),(10195,420),(10196,12236),(10196,2348),(10196,4),(10196,7383),(10196,8805),(10197,308),(10197,7295),(10198,2),(10198,6125),(10199,1163),(10200,20374),(10200,20375),(10200,306),(10200,36390),(10200,6332),(10201,437),(10201,6194),(10201,79),(10201,80),(10202,2),(10202,2608),(10202,3538),(10204,10221),(10204,19481),(10204,23636),(10204,264),(10204,53413),(10204,53414),(10204,53416),(10207,18093),(10207,788),(10207,813),(10208,5),(10208,6254),(10212,25820),(10212,2979),(10212,306),(10212,711),(10212,7364),(10214,12),(10214,3012),(10215,14),(10215,4),(10215,763),(10215,932),(10217,579),(10217,8),(10218,14),(10218,2833),(10218,8824),(10219,33),(10219,862),(10220,14),(10220,1566),(10223,4),(10225,4),(10226,2926),(10226,6896),(10229,5329),(10229,5367),(10229,6194),(10229,813),(10238,7445),(10238,7446),(10246,10313),(10246,2124),(10253,11420),(10253,6366),(10269,3645),(10269,60),(10269,8845),(10279,4319),(10279,9195),(10280,10355),(10280,4),(10281,4),(10283,17611),(10283,4),(10283,62948),(10285,12),(10285,17611),(10288,2743),(10288,35),(10288,4251),(10306,8411),(10307,2347),(10307,8411),(10312,10230),(10312,10231),(10312,33),(10312,369),(10313,1782),(10313,2054),(10313,288),(10314,14),(10314,1811),(10314,870),(10315,23449),(10315,306),(10315,508),(10315,9350),(10316,10246),(10316,11448),(10316,22695),(10316,562),(10316,9018),(10317,22695),(10317,6735),(10320,49325),(10320,6363),(10320,7),(10327,2308),(10327,2527),(10327,8411),(10329,4),(10329,7383),(10330,2),(10330,3538),(10330,93528),(10331,14121),(10331,14122),(10331,3139),(10331,638),(10333,5),(10336,12),(10336,23364),(10336,3907),(10339,14373),(10339,6194),(10350,19944),(10350,24039),(10350,24041),(10350,80469),(10350,89308),(10350,89309),(10353,16804),(10353,18367),(10353,5358),(10353,9),(10357,306),(10358,16934),(10358,2599),(10362,4384),(10362,846),(10362,856),(10364,4),(10364,73862),(10366,12968),(10366,559),(10368,10102),(10368,10378),(10368,10379),(10368,1702),(10375,33),(10377,306),(10377,89303),(10377,89304),(10383,12),(10384,20375),(10384,23587),(10384,60),(10384,8411),(10385,415),(10385,441),(10385,67153),(10385,9269),(10386,2785),(10388,2188),(10390,10157),(10390,33),(10391,4),(10391,42221),(10391,4564),(10393,6194),(10395,5),(10397,33),(10397,4),(10398,4),(10400,10619),(10400,33),(10400,919),(10402,2608),(10402,6370),(10402,9195),(10410,216),(10410,306),(10413,5),(10414,5888),(10416,5),(10425,10254),(10425,8056),(10426,12),(10428,60),(10428,87394),(10431,12138),(10431,12200),(10431,1632),(10431,23956),(10431,748),(10431,972),(10436,5),(10437,2),(10437,6254),(10439,2),(10445,11308),(10445,5553),(10448,2630),(10448,335),(10448,38178),(10448,60546),(10448,6194),(10461,10210),(10461,1403),(10461,22351),(10461,6194),(10468,5),(10471,12),(10472,14),(10476,746),(10477,10107),(10477,1171),(10477,1403),(10477,54502),(10478,508),(10478,6194),(10480,37),(10480,8856),(10480,987),(10481,10472),(10481,2),(10483,248),(10483,28121),(10483,33),(10483,44),(10483,7295),(10483,7419),(10488,10221),(10490,12),(10490,594),(10490,596),(10496,769),(10501,27),(10501,521),(10514,33),(10521,10104),(10521,26670),(10521,26671),(10521,444),(10521,508),(10521,6332),(10521,711),(10523,2726),(10523,2727),(10523,525),(10527,521),(10528,1885),(10528,19855),(10528,23202),(10528,6194),(10528,79),(10530,10217),(10530,2),(10533,1504),(10533,915),(10534,1644),(10534,1645),(10534,915),(10535,915),(10537,14723),(10537,23),(10537,525),(10537,78806),(10545,2),(10549,6189),(10549,97),(10550,1171),(10550,1403),(10550,20033),(10550,2755),(10550,76491),(10550,76492),(10555,27),(10555,520),(10555,521),(10557,5996),(10557,7151),(10557,9349),(10559,12),(10560,5),(10563,6194),(10563,79),(10564,306),(10564,32803),(10567,10217),(10567,2),(10569,27),(10571,13158),(10577,2811),(10577,65507),(10577,7405),(10585,60),(10586,457),(10586,6033),(10588,23),(10588,27),(10588,33),(10589,12),(10589,1836),(10589,1838),(10590,4564),(10590,53005),(10590,53006),(10591,10104),(10591,1171),(10591,49241),(10591,508),(10592,21447),(10592,496),(10592,8411),(10592,890),(10603,10227),(10603,2),(10610,2877),(10610,3320),(10610,73998),(10611,8411),(10622,2521),(10623,1885),(10623,6194),(10625,1756),(10625,4),(10625,89094),(10628,130),(10628,6194),(10628,97),(10629,130),(10629,9195),(10632,11462),(10632,126),(10634,12),(10637,130),(10637,2),(10637,72823),(10637,72824),(10641,126),(10641,8411),(10642,5),(10643,622),(10646,497),(10646,5),(10647,6194),(10647,788),(10655,26560),(10655,8609),(10656,9),(10658,1),(10658,33),(10661,2608),(10661,3045),(10661,5),(10661,7295),(10663,9195),(10664,3631),(10673,306),(10674,10217),(10674,2),(10676,33),(10678,1172),(10678,9195),(10681,2),(10681,3),(10681,93408),(10683,10565),(10683,1422),(10684,711),(10685,33),(10691,12548),(10691,9195),(10696,306),(10696,415),(10696,441),(10696,89627),(10696,89628),(10705,288),(10705,3102),(10705,798),(10707,63520),(10707,769),(10707,9118),(10708,1302),(10708,497),(10708,5),(10710,16061),(10710,172),(10710,25473),(10710,5),(10710,7293),(10710,97),(10712,7449),(10715,12006),(10715,16061),(10715,20734),(10715,2785),(10715,430),(10715,6194),(10718,333),(10718,6194),(10718,79),(10719,12),(10719,1607),(10719,2645),(10724,171),(10727,21838),(10727,21839),(10727,21840),(10727,497),(10727,79),(10731,508),(10731,6194),(10731,644),(10733,23),(10733,9195),(10734,15298),(10734,4),(10735,5367),(10735,6194),(10735,67990),(10735,67991),(10735,813),(10735,975),(10739,247),(10739,27),(10739,291),(10739,5358),(10740,12),(10740,54030),(10740,54031),(10740,8),(10740,839),(10741,21856),(10741,2266),(10741,308),(10743,1632),(10743,4131),(10743,995),(10744,1420),(10744,18621),(10748,23164),(10748,2650),(10748,2651),(10756,2),(10756,3538),(10756,47122),(10758,24133),(10760,10210),(10760,46051),(10760,46052),(10761,333),(10761,5),(10762,2609),(10762,4),(10764,7576),(10765,6194),(10771,27),(10771,49325),(10771,67173),(10774,60),(10774,8411),(10776,2956),(10781,12),(10781,1633),(10781,23653),(10781,2481),(10781,56620),(10782,25358),(10782,763),(10783,4),(10783,694),(10786,2070),(10786,441),(10796,48772),(10796,497),(10796,5),(10796,93580),(10800,2613),(10802,14723),(10802,183),(10802,60),(10803,8411),(10806,10355),(10806,4),(10808,1301),(10808,1302),(10808,306),(10822,1422),(10822,1512),(10822,2207),(10822,860),(10833,1302),(10833,8411),(10858,1504),(10858,915),(10861,5),(10865,10217),(10865,2),(10866,10104),(10866,11461),(10866,1171),(10866,508),(10866,7161),(10871,11661),(10871,1280),(10871,4),(10873,831),(10876,30257),(10876,376),(10876,43),(10876,75937),(10876,8780),(10877,172),(10877,6194),(10877,79),(10878,172),(10878,441),(10878,79),(10885,10104),(10885,2617),(10885,508),(10885,829),(10890,5848),(10894,29693),(10894,29694),(10895,3166),(10895,6),(10913,11672),(10913,43271),(10913,76),(10914,2649),(10923,12027),(10923,368),(10923,4000),(10923,8411),(10923,8807),(10925,469),(10925,4763),(10925,4764),(10929,12),(10929,48772),(10934,12207),(10934,3983),(10934,679),(10934,9195),(10935,10932),(10935,60),(10944,21126),(10944,21128),(10947,3213),(10950,12),(10955,10102),(10955,2130),(10955,93156),(10956,2608),(10956,5),(10970,1296),(10972,2065),(10972,236),(10972,987),(10982,308),(10982,49126),(10982,7580),(10984,172),(10984,6194),(10984,79),(10985,11837),(10985,497),(10985,51753),(10987,14),(10991,12288),(10991,12653),(10991,3034),(10991,3035),(10991,66289),(10991,89163),(10991,89164),(10991,89165),(10992,172),(10992,1757),(10992,3169),(10992,6194),(10992,6363),(10992,79),(10994,12426),(10994,1512),(10994,254),(10994,5367),(10994,6194),(10996,5),(10996,5752),(10998,4),(10999,1885),(10999,306),(10999,396),(11001,5),(11004,258),(11004,3324),(11004,4),(11004,4650),(11004,657),(11004,762),(11004,8877),(11004,8878),(11007,306),(11007,3929),(11011,1302),(11011,1885),(11011,6194),(11013,4730),(11013,4731),(11015,1280),(11015,1382),(11015,15278),(11015,33),(11015,4),(11015,4650),(11015,657),(11015,7237),(11015,762),(11022,35),(11022,4),(11022,44),(11023,10163),(11023,1143),(11023,23912),(11023,43),(11024,6194),(11024,748),(11025,6130),(11025,6194),(11025,813),(11026,10210),(11026,36452),(11027,1176),(11027,14309),(11027,21541),(11033,10317),(11033,1138),(11036,12),(11042,18367),(11042,186),(11042,280),(11042,4042),(11042,5358),(11042,806),(11042,807),(11042,9115),(11042,9116),(11051,33),(11051,5231),(11056,357),(11056,7302),(11056,7405),(11056,7956),(11058,18620),(11058,35),(11058,57347),(11058,846),(11062,5),(11062,97),(11065,15700),(11065,53732),(11065,53733),(11065,816),(11066,4),(11072,1296),(11072,6194),(11086,172),(11086,3982),(11086,79),(11086,97),(11090,2608),(11090,497),(11091,5),(11093,18619),(11093,27),(11093,59951),(11096,1894),(11096,306),(11096,711),(11096,73955),(11109,10100),(11109,20456),(11109,2452),(11109,289),(11109,52723),(11109,52724),(11109,52725),(11109,635),(11109,8763),(11113,6194),(11128,10157),(11128,53987),(11128,877),(11128,919),(11128,9195),(11129,2920),(11130,2),(11132,2),(11137,11345),(11137,1171),(11137,13923),(11137,35),(11137,4),(11141,12),(11141,2646),(11141,597),(11141,7380),(11152,12178),(11152,158),(11152,23003),(11152,4024),(11152,7293),(11153,6194),(11156,11199),(11156,11247),(11156,11359),(11156,11921),(11156,12053),(11156,20881),(11156,2250),(11156,2564),(11156,30301),(11156,5358),(11156,6194),(11156,6301),(11156,726),(11156,83),(11162,1727),(11165,306),(11170,3528),(11170,4022),(11170,6194),(11170,923),(11172,10222),(11172,19813),(11172,79),(11172,97),(11176,1155),(11176,24931),(11184,43),(11184,70),(11184,738),(11184,8874),(11184,8875),(11184,892),(11186,33),(11190,19802),(11191,3344),(11191,8888),(11194,2015),(11194,2452),(11194,5826),(11194,9349),(11199,6354),(11199,9195),(11202,306),(11208,126),(11208,54502),(11208,8411),(11212,306),(11217,2773),(11217,43),(11217,52949),(11219,10715),(11219,4),(11228,1302),(11228,33),(11229,2499),(11229,30702),(11229,3322),(11232,14),(11232,85),(11237,3287),(11237,3803),(11240,10163),(11240,181),(11240,73964),(11247,46051),(11247,5367),(11247,6194),(11247,8807),(11249,134),(11253,21498),(11253,2735),(11253,33),(11253,552),(11253,7295),(11253,840),(11257,11493),(11257,11494),(11257,500),(11258,1382),(11258,23932),(11258,4),(11258,4650),(11258,48136),(11258,55474),(11258,657),(11258,7237),(11258,762),(11260,2645),(11260,2646),(11260,306),(11260,444),(11260,508),(11260,81136),(11282,12),(11283,10163),(11283,1973),(11283,33),(11283,5870),(11283,76721),(11283,8411),(11284,12),(11287,1350),(11287,441),(11298,10312),(11298,494),(11298,502),(11302,13309),(11302,60),(11306,10153),(11306,5),(11306,97),(11308,1980),(11308,25580),(11308,41),(11313,97),(11321,12485),(11321,1423),(11321,5),(11321,7295),(11322,11391),(11322,11581),(11322,33),(11322,562),(11322,6452),(11322,675),(11322,7295),(11323,129),(11323,4205),(11323,6194),(11323,6735),(11323,6822),(11324,11317),(11324,23243),(11324,4),(11324,562),(11336,10308),(11336,1176),(11336,4),(11342,1950),(11351,53348),(11351,60),(11351,70),(11351,738),(11353,33),(11354,12),(11357,7405),(11358,10227),(11358,10339),(11358,13816),(11358,23938),(11358,23940),(11358,8411),(11359,4),(11359,441),(11359,862),(11361,4351),(11362,158),(11362,7692),(11362,7693),(11362,9195),(11363,43),(11370,10828),(11370,16850),(11370,19944),(11370,23770),(11370,4077),(11370,46195),(11370,53010),(11370,53011),(11371,19552),(11371,4),(11371,551),(11374,23),(11374,33),(11375,497),(11375,5),(11377,1786),(11377,6194),(11382,14),(11386,1202),(11386,12745),(11386,14),(11386,181),(11386,8876),(11386,927),(11395,2),(11395,915),(11397,2882),(11397,333),(11397,441),(11398,10210),(11398,1403),(11398,421),(11398,6194),(11400,12),(11400,22110),(11400,22253),(11400,22254),(11400,22255),(11411,13549),(11411,4110),(11411,6194),(11411,6231),(11412,12),(11412,21920),(11412,2980),(11426,441),(11431,1508),(11431,19813),(11431,6401),(11431,6402),(11431,711),(11431,73953),(11439,15671),(11439,264),(11439,265),(11439,355),(11442,7405),(11451,2),(11451,3929),(11452,2188),(11452,870),(11453,2608),(11453,441),(11453,879),(11456,4),(11457,12),(11459,2),(11459,3538),(11459,56980),(11460,1600),(11460,27),(11460,6363),(11467,1560),(11467,497),(11467,5),(11468,3982),(11468,97),(11469,10104),(11469,1171),(11469,306),(11469,508),(11469,73956),(11469,73957),(11470,12),(11470,17611),(11470,21783),(11478,11482),(11478,33),(11478,333),(11478,506),(11495,10308),(11495,33),(11499,10163),(11499,23),(11499,33),(11507,441),(11507,7585),(11509,5),(11516,10046),(11516,11402),(11516,12012),(11516,15671),(11516,17873),(11516,18367),(11516,208),(11516,254),(11516,311),(11516,5358),(11516,7025),(11516,793),(11516,8453),(11516,850),(11517,5),(11519,33),(11519,5),(11519,6128),(11529,9195),(11531,15160),(11531,2188),(11535,1484),(11535,2216),(11535,507),(11535,657),(11535,748),(11535,8411),(11536,516),(11536,60),(11543,2090),(11543,8411),(11544,10217),(11544,2),(11545,9195),(11546,6194),(11551,33),(11551,56),(11551,7293),(11560,10104),(11560,1171),(11560,20719),(11560,306),(11560,508),(11560,966),(11561,13954),(11564,12616),(11565,10104),(11565,1171),(11565,1838),(11565,2646),(11565,306),(11565,47635),(11565,508),(11565,73956),(11565,79036),(11576,60),(11576,8040),(11577,8411),(11583,23126),(11583,60),(11586,6194),(11588,10828),(11588,14),(11588,23628),(11588,7405),(11592,11308),(11592,17411),(11596,12),(11598,3894),(11600,22884),(11600,3097),(11601,2188),(11615,24),(11615,33),(11615,763),(11615,81128),(11615,831),(11618,1560),(11618,7),(11619,297),(11619,521),(11620,8411),(11622,12),(11622,17887),(11622,2980),(11624,60),(11631,2655),(11631,33),(11631,34441),(11631,4171),(11631,7295),(11632,10146),(11632,2514),(11635,2364),(11635,27),(11637,2780),(11637,497),(11637,5),(11638,10239),(11638,5),(11638,508),(11638,787),(11644,1819),(11648,46108),(11648,598),(11648,6194),(11658,11420),(11661,10441),(11661,11773),(11661,17873),(11661,191),(11661,3244),(11661,3823),(11661,4176),(11665,1757),(11665,27352),(11665,507),(11665,54502),(11665,60378),(11665,6194),(11665,748),(11665,79),(11667,33),(11667,7220),(11676,9195),(11678,441),(11678,9269),(11679,333),(11679,441),(11679,497),(11683,2995),(11683,33),(11683,55518),(11683,55519),(11687,104),(11687,16804),(11687,7961),(11688,10217),(11688,2),(11690,4110),(11692,172),(11692,54502),(11692,79),(11692,97),(11697,10698),(11697,4),(11699,10254),(11699,10478),(11699,11265),(11699,11266),(11699,6455),(11699,831),(11699,925),(11702,441),(11770,20543),(11770,3477),(11775,2092),(11775,23),(11775,33),(11775,6556),(11778,33),(11778,538),(11780,60),(11780,8989),(11798,1917),(11798,2452),(11798,2690),(11798,3519),(11802,2659),(11802,2885),(11802,3539),(11802,81138),(11802,81139),(11804,1063),(11804,11567),(11804,11573),(11804,12026),(11804,1205),(11804,33),(11804,3388),(11804,55258),(11804,8582),(11812,85),(11817,8411),(11818,58135),(11820,497),(11820,5),(11823,33),(11826,11561),(11826,4169),(11826,43),(11826,6705),(11827,4952),(11831,27),(11835,13816),(11835,13817),(11835,2234),(11835,306),(11835,444),(11836,2348),(11836,24955),(11836,4),(11836,8921),(11843,10257),(11843,10258),(11843,15980),(11843,60),(11858,1504),(11858,9195),(11863,4),(11866,1302),(11866,306),(11866,49478),(11866,54004),(11870,33),(11873,514),(11873,9195),(11876,5358),(11876,582),(11876,83),(11887,2),(11888,2),(11889,14),(11889,288),(11889,763),(11891,306),(11891,5682),(11892,23382),(11892,6194),(11892,97),(11901,171),(11901,33),(11904,4),(11904,56),(11908,3960),(11917,1632),(11917,2061),(11918,7405),(11932,33),(11932,5550),(11934,10163),(11934,1382),(11934,1885),(11934,23873),(11934,6194),(11935,15980),(11935,4377),(11954,1445),(11954,21896),(11954,559),(11956,15671),(11956,2756),(11956,5358),(11959,19029),(11959,41),(11967,10210),(11967,306),(11968,441),(11968,551),(11968,8411),(11969,1504),(11969,915),(11971,3102),(11971,8827),(11973,12),(11973,335),(11975,14941),(11975,4),(11977,41),(11977,6194),(11978,711),(11979,172),(11979,6194),(11979,67988),(11979,67989),(11979,79),(11980,7405),(11983,6194),(11983,97),(12079,15231),(12079,18811),(12079,23909),(12085,10254),(12085,52046),(12088,1302),(12088,19047),(12088,79),(12090,19352),(12090,306),(12090,3929),(12093,118),(12093,17513),(12093,321),(12094,4),(12096,1507),(12096,2364),(12096,3929),(12096,5),(12096,8411),(12100,2812),(12100,8411),(12103,10104),(12103,1171),(12103,172),(12103,33433),(12103,508),(12103,79),(12103,824),(12106,559),(12107,23),(12107,33),(12113,1645),(12113,2609),(12113,6194),(12117,158),(12117,9195),(12120,6313),(12120,6314),(12123,20004),(12123,2377),(12123,306),(12133,10105),(12133,4740),(12133,5),(12133,7295),(12133,748),(12138,10210),(12138,1403),(12138,6194),(12142,1062),(12142,1063),(12142,1064),(12142,1632),(12142,2998),(12144,1),(12144,20448),(12144,33),(12144,56),(12144,6422),(12144,69627),(12149,11050),(12149,5264),(12149,995),(12150,42),(12153,1608),(12153,497),(12153,5),(12153,67253),(12154,10201),(12154,9195),(12155,16314),(12155,2),(12155,20004),(12155,598),(12155,8601),(12158,4),(12159,1382),(12160,13040),(12160,24217),(12160,335),(12160,6194),(12162,10255),(12162,20343),(12162,20344),(12162,2053),(12162,491),(12162,770),(12163,7503),(12163,7504),(12163,831),(12163,856),(12177,11843),(12177,15742),(12177,4),(12182,1473),(12182,3287),(12182,5),(12182,771),(12184,10146),(12184,2054),(12184,258),(12184,288),(12184,5),(12184,7295),(12192,11728),(12192,126),(12192,8411),(12193,12),(12193,158),(12193,2308),(12193,2795),(12193,2796),(12201,152),(12201,288),(12201,3281),(12201,6194),(12207,3055),(12207,6379),(12211,2737),(12211,7405),(12212,11317),(12212,333),(12212,53473),(12220,33),(12220,97),(12227,10282),(12227,12608),(12227,2),(12244,10280),(12244,1268),(12244,2885),(12244,7295),(12244,8601),(12245,2673),(12245,2674),(12246,11996),(12246,16522),(12246,16524),(12246,1972),(12246,886),(12247,10989),(12247,19148),(12247,6724),(12257,11407),(12257,13040),(12257,6194),(12271,1305),(12271,21856),(12271,308),(12277,33),(12279,7405),(12281,3095),(12289,2812),(12289,3491),(12289,656),(12312,1171),(12312,508),(12312,711),(12312,81134),(12312,824),(12400,58),(12403,11029),(12403,1302),(12403,22539),(12403,7295),(12403,8853),(12404,2268),(12404,4616),(12404,5705),(12405,3573),(12405,43),(12405,6194),(12405,9349),(12412,20341),(12412,2683),(12412,4319),(12412,9195),(12429,10342),(12429,11726),(12429,11846),(12429,11847),(12429,11849),(12429,20193),(12429,34557),(12429,34558),(12437,126),(12437,3287),(12437,7738),(12437,7739),(12454,10100),(12454,635),(12479,915),(12484,10202),(12484,3287),(12484,5752),(12484,9365),(12486,2679),(12498,14),(12506,33),(12508,12245),(12508,6194),(12508,788),(12508,89134),(12508,89135),(12509,89312),(12509,89425),(12535,1296),(12535,306),(12569,14),(12573,10146),(12573,10163),(12573,2092),(12573,5870),(12573,7295),(12586,13818),(12586,48752),(12586,5294),(12586,7075),(12586,77798),(12589,2348),(12589,24955),(12589,4285),(12596,17422),(12596,20555),(12596,508),(12596,711),(12596,81141),(12596,8769),(12602,5755),(12610,1156),(12610,2785),(12610,6194),(12618,5),(12620,15636),(12620,2608),(12620,5),(12620,7295),(12634,2265),(12634,67989),(12634,78070),(12637,12252),(12637,60),(12657,8411),(12658,13769),(12658,711),(12690,12),(12690,21106),(12690,4205),(12703,21741),(12703,23756),(12703,856),(12704,5),(12763,12),(12763,54512),(12770,23),(12770,497),(12770,5),(12771,4),(12779,13419),(12779,3287),(12779,57736),(12783,18188),(12783,225),(12783,288),(12783,7981),(12783,838),(12783,892),(12797,11733),(12797,158),(12797,27),(12819,21234),(12819,6574),(12819,7295),(12837,12485),(12837,43),(12837,431),(12837,6332),(12838,18367),(12838,21083),(12838,2318),(12838,2673),(12838,5358),(12838,9011),(12877,12180),(12877,1917),(12877,3519),(12877,9349),(12920,13816),(12920,27),(13001,72565),(13001,8411),(13006,15231),(13006,75037),(13006,75038),(13006,7676),(13007,35),(13025,3240),(13027,11843),(13027,20157),(13027,27),(13027,7296),(13051,11995),(13051,1838),(13051,2179),(13051,2724),(13051,2725),(13051,444),(13053,6125),(13056,11106),(13056,11533),(13056,1632),(13056,33808),(13056,83338),(13056,8848),(13067,10039),(13067,3323),(13067,97),(13072,136),(13074,11317),(13074,2108),(13074,2448),(13074,3997),(13075,4732),(13079,846),(13090,12807),(13090,12808),(13090,7374),(13092,11752),(13092,2452),(13092,2731),(13092,3272),(13092,9349),(13092,9987),(13121,3568),(13132,58),(13150,1001),(13150,12),(13150,12066),(13150,12067),(13150,1565),(13154,4234),(13154,6194),(13155,10531),(13155,15395),(13156,12),(13158,13534),(13158,33423),(13158,6194),(13158,6760),(13159,10210),(13159,33),(13160,11565),(13160,12026),(13160,92137),(13166,10104),(13166,1171),(13166,508),(13166,51708),(13173,14576),(13183,4),(13183,429),(13183,6194),(13183,78685),(13183,840),(13183,923),(13184,1507),(13184,2779),(13184,2877),(13184,2878),(13184,449),(13184,704),(13184,831),(13187,5173),(13197,446),(13198,3561),(13201,60),(13223,10138),(13223,171),(13223,27351),(13223,27352),(13223,6194),(13223,79),(13223,975),(13250,11567),(13250,11568),(13250,11569),(13250,152),(13250,212),(13250,4564),(13250,597),(13250,8582),(13260,12),(13260,2648),(13260,431),(13260,748),(13279,12485),(13279,3287),(13282,1950),(13335,12),(13342,33),(13342,8794),(13362,2740),(13363,2741),(13370,97),(13374,19925),(13374,19926),(13374,2),(13389,10254),(13389,10405),(13389,2053),(13389,21543),(13389,2831),(13403,12),(13403,1422),(13405,1380),(13405,74695),(13405,78322),(13405,86061),(13405,9206),(13408,1632),(13411,4194),(13411,4195),(13411,6194),(13429,17817),(13429,21592),(13435,2510),(13435,43),(13448,23),(13448,5),(13448,5561),(13448,8253),(13460,1224),(13460,134),(13460,19855),(13460,20241),(13460,7419),(13460,9137),(13475,11461),(13475,158),(13475,23419),(13475,4),(13476,27),(13483,2152),(13483,308),(13483,547),(13490,158),(13490,33),(13491,11682),(13491,119),(13491,17513),(13491,18843),(13491,22675),(13491,22676),(13491,24991),(13491,24992),(13491,24993),(13491,2800),(13491,2802),(13491,2888),(13491,4250),(13491,5975),(13491,6181),(13491,823),(13491,9375),(13495,2029),(13495,2975),(13495,306),(13495,3315),(13496,10210),(13497,711),(13498,497),(13498,788),(13501,4384),(13501,4385),(13501,769),(13503,7405),(13508,3241),(13508,4925),(13508,8746),(13510,3272),(13510,8575),(13515,10104),(13515,1370),(13515,15361),(13515,3273),(13515,508),(13523,10067),(13523,11843),(13523,3250),(13536,10958),(13536,1171),(13536,1403),(13536,174),(13536,76490),(13537,14652),(13537,35),(13537,44),(13538,2310),(13538,2452),(13538,289),(13538,35249),(13538,39509),(13538,5654),(13538,9349),(13539,711),(13539,89439),(13551,126),(13551,19851),(13551,5330),(13569,2776),(13576,5),(13579,2780),(13596,12020),(13596,1632),(13596,2953),(13596,4220),(13596,7948),(13600,10221),(13600,4171),(13649,3213),(13673,436),(13673,497),(13673,5),(13680,2),(13680,22881),(13680,80510),(13682,2),(13685,18),(13685,441),(13688,2798),(13689,6292),(13700,2),(13751,1708),(13751,35),(13751,5227),(13751,846),(13751,879),(13768,2),(13776,8411),(13778,2608),(13778,4),(13785,97),(13788,134),(13788,2481),(13788,423),(13788,7295),(13805,19248),(13805,2053),(13805,7571),(13807,5552),(13807,5632),(13809,1786),(13809,2900),(13809,6194),(13809,694),(13811,11843),(13811,11844),(13811,11845),(13811,1423),(13811,491),(13811,908),(13812,22791),(13812,3287),(13812,829),(13816,2813),(13816,507),(13816,7429),(13820,11463),(13824,2822),(13836,2),(13836,3538),(13849,15282),(13849,2268),(13849,2452),(13849,2690),(13853,11670),(13853,22297),(13853,4357),(13853,6194),(13853,69888),(13853,69889),(13856,2830),(13888,441),(13889,1779),(13889,2680),(13889,2752),(13889,3214),(13898,2835),(13908,2608),(13908,497),(13908,5),(13909,6),(13919,2253),(13919,2839),(13919,2840),(13920,2184),(13920,497),(13922,12552),(13922,2253),(13937,1280),(13937,33),(13938,2730),(13938,3088),(13938,559),(13948,5294),(13950,12),(13960,6194),(13963,12601),(13963,12602),(13967,288),(13972,12),(13973,1836),(13973,1962),(13973,3272),(13973,43),(13973,52896),(13973,6332),(13982,3581),(13982,41),(13990,11665),(13990,25838),(13991,8411),(13994,60),(13996,18524),(13996,7653),(14012,12194),(14012,306),(14012,711),(14014,2958),(14014,4143),(14014,4144),(14024,12),(14024,15312),(14024,3235),(14024,816),(14034,8411),(14043,2596),(14043,449),(14043,6194),(14047,308),(14047,3298),(14047,8801),(14048,12840),(14048,21673),(14048,2452),(14048,50510),(14048,50511),(14054,3058),(14057,3935),(14112,10565),(14112,278),(14112,58),(14113,497),(14113,5),(14120,2867),(14120,2868),(14137,2870),(14137,68353),(14139,10086),(14139,12955),(14139,23501),(14139,23502),(14144,497),(14144,559),(14160,3),(14161,10905),(14161,1557),(14161,347),(14161,5),(14164,10893),(14164,289),(14164,306),(14164,3477),(14164,444),(14164,6332),(14164,81135),(14165,1569),(14175,614),(14175,8992),(14177,8411),(14181,12),(14191,711),(14191,7747),(14195,5358),(14195,5359),(14195,62072),(14199,10807),(14202,11027),(14202,12259),(14202,12260),(14202,12261),(14202,12262),(14202,1557),(14202,2297),(14202,2448),(14202,741),(14202,7999),(14220,2608),(14220,3251),(14220,4),(14256,11027),(14256,2448),(14271,1632),(14271,23),(14271,33),(14275,13042),(14275,8),(14278,446),(14283,164),(14283,181),(14284,11594),(14284,21673),(14284,9349),(14292,5888),(14293,12026),(14295,11351),(14295,68304),(14295,691),(14299,21435),(14306,5219),(14306,6332),(14317,2348),(14317,24955),(14317,4),(14324,10308),(14324,1216),(14324,16923),(14324,17234),(14324,20395),(14324,289),(14325,1302),(14325,59972),(14325,7295),(14337,446),(14351,2894),(14351,2895),(14351,2896),(14353,2061),(14353,35),(14359,258),(14359,3534),(14369,1171),(14369,158),(14369,431),(14369,9195),(14392,11414),(14392,11417),(14392,12183),(14392,12184),(14392,14714),(14392,5346),(14392,5552),(14392,5636),(14392,6838),(14395,1569),(14395,19146),(14396,12),(14405,2),(14411,521),(14425,23596),(14429,306),(14429,81132),(14429,81133),(14434,43),(14435,1632),(14438,10156),(14438,3290),(14438,3291),(14438,41967),(14438,9118),(14442,7692),(14442,85437),(14444,2348),(14444,24955),(14451,23682),(14451,3553),(14451,44992),(14451,44993),(14451,44995),(14451,44996),(14451,44997),(14462,1274),(14462,258),(14462,4),(14474,14406),(14474,37726),(14474,3916),(14517,6254),(14517,769),(14536,11565),(14536,12026),(14536,1632),(14536,2923),(14536,2924),(14538,2921),(14538,3965),(14544,43),(14557,4),(14557,746),(14560,2608),(14560,46222),(14560,5),(14560,7295),(14574,14),(14574,288),(14574,7364),(14576,18619),(14576,55630),(14576,55631),(14577,3929),(14577,8411),(14578,14),(14578,8014),(14582,16193),(14582,164),(14582,17457),(14582,22481),(14585,803),(14585,8809),(14608,3904),(14608,3905),(14623,10163),(14623,12362),(14623,5870),(14624,3914),(14624,3915),(14629,43),(14635,2),(14635,2605),(14635,2939),(14655,7405),(14662,43),(14709,4),(14709,746),(14729,60),(14736,4319),(14745,4616),(14745,8533),(14757,13413),(14757,15505),(14757,21605),(14757,37854),(14758,3015),(14758,3016),(14758,3017),(14778,10791),(14778,10843),(14778,1261),(14778,33025),(14799,2265),(14811,10154),(14811,13219),(14811,60),(14823,15282),(14823,25794),(14823,25795),(14836,10146),(14836,11537),(14844,1088),(14844,22153),(14844,2979),(14844,67252),(14844,8291),(14846,2779),(14846,497),(14849,8411),(14854,21468),(14854,21469),(14854,21470),(14869,158),(14869,2598),(14869,4),(14869,435),(14869,76067),(14873,2),(14873,3475),(14873,3476),(14873,5391),(14877,2987),(14877,2988),(14877,73675),(14902,441),(14914,158),(14914,33),(14914,655),(14914,8849),(14976,1274),(15005,3957),(15013,1207),(15013,3008),(15013,7419),(15013,7646),(15028,11533),(15028,2348),(15028,4),(15037,5),(15045,1302),(15045,306),(15045,89719),(15049,7169),(15049,88298),(15059,24827),(15059,491),(15059,506),(15067,49971),(15067,49972),(15067,685),(15067,7036),(15070,14),(15070,421),(15074,16849),(15074,16850),(15074,4),(15092,11152),(15092,126),(15092,1632),(15121,306),(15121,6304),(15121,6305),(15158,3046),(15158,3146),(15158,33),(15173,3204),(15186,14),(15186,14729),(15186,69989),(15189,2348),(15189,27),(15198,915),(15208,11011),(15208,16016),(15208,2568),(15208,26771),(15208,26772),(15208,26773),(15208,26774),(15208,26775),(15237,36615),(15237,8411),(15237,8880),(15239,3052),(15250,3287),(15256,4),(15268,1172),(15268,306),(15301,6194),(15365,5122),(15373,10104),(15373,28787),(15373,3075),(15373,33),(15373,67334),(15373,7295),(15389,3076),(15394,2743),(15394,54606),(15394,803),(15394,804),(15394,806),(15394,8582),(15487,2),(15489,2348),(15489,4),(15511,10280),(15511,2885),(15511,3204),(15512,521),(15544,3478),(15556,8411),(15568,1840),(15568,87838),(15581,308),(15581,7405),(15581,8411),(15582,3267),(15624,41047),(15624,60473),(15639,18575),(15644,152),(15644,306),(15644,4564),(15647,11078),(15647,4143),(15647,43),(15647,84889),(15647,84890),(15648,33),(15655,2),(15660,4),(15670,3096),(15670,35),(15673,33),(15699,3102),(15708,328),(15745,2188),(15765,9195),(15797,14175),(15797,89388),(15875,4),(15907,1512),(15907,5329),(15907,5367),(15907,6194),(15927,5),(15927,538),(15927,6179),(15927,6752),(15976,4520),(15976,633),(15976,93101),(15976,93102),(15976,93103),(15976,93104),(15983,4110),(15992,158),(15992,4),(15992,9195),(16016,13210),(16016,235),(16016,3922),(16028,10146),(16028,10565),(16028,14718),(16028,7405),(16052,4729),(16052,9313),(16072,174),(16072,17462),(16072,1765),(16110,2268),(16110,37618),(16110,769),(16112,5),(16112,5061),(16112,6255),(16148,20719),(16148,441),(16148,97),(16155,1683),(16155,236),(16155,40263),(16158,746),(16161,1947),(16161,5),(16162,33),(16162,4319),(16172,10104),(16172,20555),(16172,62072),(16186,35),(16205,3160),(16205,48420),(16222,441),(16232,9195),(16241,1155),(16241,734),(16281,14179),(16281,14180),(16281,6194),(16288,14180),(16288,1950),(16290,746),(16300,11462),(16300,4),(16320,17032),(16320,33),(16323,306),(16337,4110),(16340,2348),(16340,24955),(16340,4),(16351,12800),(16351,803),(16351,805),(16353,3182),(16358,2188),(16358,25918),(16358,25919),(16358,738),(16363,33),(16363,5902),(16388,43),(16406,5),(16428,3287),(16428,5673),(16441,4950),(16441,8411),(16448,58),(16448,8841),(16448,8842),(16448,97),(16508,2),(16523,4171),(16523,5289),(16523,6194),(16523,79),(16523,923),(16538,2364),(16538,2609),(16538,3194),(16558,27317),(16558,33),(16558,5163),(16558,7295),(16564,11301),(16564,11931),(16564,12045),(16564,12046),(16564,12047),(16577,308),(16577,3196),(16577,3463),(16577,491),(16608,20455),(16608,20456),(16608,2326),(16608,2452),(16608,3205),(16608,3207),(16608,4024),(16614,10059),(16614,14),(16614,737),(16617,19507),(16617,19508),(16617,19509),(16617,19510),(16617,19511),(16617,251),(16617,433),(16617,4588),(16617,7405),(16617,763),(16619,316),(16619,4),(16620,15117),(16620,441),(16633,2070),(16642,4),(16643,10104),(16643,1171),(16643,1302),(16643,508),(16643,77845),(16643,81134),(16651,3208),(16653,4003),(16690,12402),(16690,2),(16690,3475),(16690,3476),(16690,5391),(16727,43),(16727,6235),(16769,33),(16781,35),(16784,19354),(16784,306),(16784,763),(16784,89720),(16857,2231),(16857,7380),(16857,802),(16858,306),(16858,441),(16866,12297),(16866,559),(16866,5653),(16869,308),(16869,33),(16869,59),(16869,6817),(16869,6818),(16871,11250),(16871,11630),(16871,33),(16871,768),(16871,771),(16888,2822),(16899,1205),(16899,23068),(16899,2650),(16899,2651),(16899,288),(16899,3539),(16899,6901),(16911,22691),(16911,3451),(16911,46831),(16911,5630),(16988,11550),(16988,11551),(16988,11569),(16988,11576),(16988,11635),(16988,12116),(16988,20170),(16988,22208),(16988,23486),(16988,2743),(16988,54606),(16988,57498),(16988,746),(16988,806),(16988,8582),(16988,860),(16991,2609),(16991,923),(16995,10163),(16995,1683),(16995,33),(16995,694),(16995,7295),(16996,12),(16996,2378),(17043,12474),(17043,63105),(17043,68063),(17043,68064),(17043,7492),(17043,8411),(17043,890),(17044,12918),(17044,181),(17044,763),(17047,12027),(17047,368),(17047,4000),(17047,8411),(17047,8807),(17113,1840),(17113,26468),(17113,37334),(17113,7380),(17127,306),(17130,4),(17130,746),(17134,10339),(17134,1557),(17134,17887),(17134,2890),(17134,3635),(17139,3259),(17139,938),(17170,32793),(17170,60),(17170,67823),(17170,932),(17182,4),(17186,2636),(17187,33),(17202,35),(17264,60),(17277,10253),(17277,4),(17287,18321),(17287,3052),(17332,10163),(17332,33),(17332,6735),(17332,694),(17332,7),(17332,8299),(17334,13816),(17334,13817),(17334,3703),(17334,6127),(17339,441),(17379,4),(17403,10146),(17403,14718),(17403,1867),(17431,12018),(17431,3316),(17431,3317),(17431,3318),(17436,3319),(17577,3336),(17577,3337),(17577,3338),(17578,11),(17578,2348),(17578,4),(17578,5),(17578,56),(17578,7383),(17578,9169),(17610,10105),(17610,5),(17610,7433),(17622,1063),(17622,10843),(17622,11662),(17622,11663),(17622,11664),(17622,11665),(17622,11666),(17622,11667),(17622,11668),(17622,11669),(17622,806),(17622,8582),(17644,1382),(17644,91005),(17654,10884),(17654,11),(17654,11029),(17654,12200),(17654,20667),(17654,20668),(17654,2300),(17654,559),(17654,8504),(17654,8582),(17663,12296),(17707,306),(17707,3334),(17707,711),(17707,81140),(17708,3929),(17708,9195),(17709,1301),(17709,1302),(17709,33),(17710,2348),(17710,24955),(17710,4),(17710,4859),(17710,67244),(17711,11391),(17711,33),(17711,594),(17711,596),(17768,14897),(17768,60),(17795,16774),(17795,6194),(17795,8797),(17813,1171),(17813,1403),(17813,1423),(17813,86256),(17820,8411),(17834,27128),(17834,33),(17880,306),(17908,1088),(17908,6194),(17917,1807),(17917,3632),(17917,441),(17926,126),(17926,763),(17926,995),(17979,11395),(17979,5888),(17995,10958),(18041,172),(18041,19507),(18041,6194),(18041,79),(18045,14185),(18045,3435),(18045,64574),(18065,3438),(18065,3439),(18065,3440),(18074,10157),(18074,14159),(18074,915),(18079,4718),(18079,7100),(18126,2),(18126,20356),(18126,3812),(18162,11916),(18162,33),(18162,7295),(18162,748),(18191,3521),(18206,13358),(18206,308),(18238,3471),(18239,12292),(18239,4000),(18239,491),(18239,5218),(18239,5219),(18240,10227),(18240,12536),(18240,9195),(18254,44485),(18254,553),(18276,10221),(18276,862),(18276,8926),(18320,3281),(18357,2),(18360,10224),(18360,20478),(18360,2575),(18360,306),(18360,436),(18360,444),(18405,134),(18405,17611),(18405,773),(18475,3494),(18480,33),(18487,1423),(18487,1645),(18487,5),(18487,7295),(18487,8411),(18501,126),(18501,1632),(18516,17388),(18516,1872),(18516,5565),(18516,702),(18530,23486),(18530,23487),(18530,393),(18530,738),(18533,10393),(18533,11366),(18533,11367),(18533,11368),(18533,1917),(18533,3272),(18550,8411),(18570,1030),(18602,11842),(18615,1246),(18615,36650),(18615,6455),(18616,3517),(18632,61307),(18681,769),(18701,805),(18712,14317),(18713,175),(18713,9195),(18736,2),(18736,89603),(18777,2150),(18777,68097),(18777,737),(18777,8802),(18785,12235),(18785,3527),(18785,6194),(18785,923),(18808,50893),(18823,20478),(18823,3528),(18823,6194),(18823,80),(18823,923),(18828,9195),(18840,20740),(18840,3407),(18840,58),(18841,61194),(18841,61195),(18841,61197),(18885,27085),(18885,37015),(18885,559),(18886,4),(18892,3058),(18892,559),(18892,67035),(18900,29364),(18900,441),(18923,11351),(18923,1422),(18925,769),(18937,6194),(18947,10163),(18947,12196),(18947,12197),(18947,12198),(18947,33),(18947,5870),(18975,11308),(18975,12),(18975,2499),(19084,11051),(19084,11052),(19084,43),(19084,4342),(19150,9195),(19187,1420),(19187,7480),(19204,13682),(19255,10146),(19255,12808),(19255,1522),(19265,12966),(19265,1824),(19265,58),(19265,856),(19344,15055),(19344,15056),(19366,24851),(19366,2527),(19366,33),(19366,8411),(19405,3475),(19405,4254),(19419,33),(19419,3929),(19457,14),(19457,376),(19495,3622),(19495,3623),(19495,3624),(19495,856),(19556,3638),(19585,130),(19585,2),(19585,3639),(19644,3660),(19724,11843),(19724,2348),(19724,4),(19724,435),(19724,89562),(19803,14),(19840,11755),(19840,289),(19840,2890),(19840,436),(19840,6332),(19848,12),(19898,248),(19898,5755),(19899,2796),(19899,33),(19899,4403),(19899,7295),(19901,1632),(19901,3135),(19901,3207),(19901,4024),(19901,8724),(19904,3287),(19905,2977),(19905,4740),(19905,838),(19908,11733),(19908,5),(19908,7295),(19912,12),(19912,48788),(19912,48792),(19913,43),(19913,4364),(19913,6332),(19933,2499),(19933,7339),(19959,10227),(19959,11845),(19959,41978),(19959,9195),(19994,2890),(19994,444),(19995,289),(19995,306),(19995,444),(19995,574),(19997,306),(20009,3287),(20009,34),(20024,441),(20055,8411),(20083,5649),(20156,10166),(20156,12800),(20156,14),(20178,1030),(20178,7357),(20309,1156),(20309,306),(20309,89629),(20352,33),(20352,6704),(20391,12049),(20391,171),(20391,4),(20406,3767),(20406,3768),(20406,3769),(20406,3770),(20455,2106),(20455,5822),(20483,11672),(20483,1757),(20483,19352),(20483,23790),(20483,711),(20504,1088),(20504,1885),(20526,18713),(20526,2),(20526,23791),(20526,7161),(20526,76043),(20526,76067),(20533,6194),(20542,11623),(20542,3796),(20616,18619),(20616,2150),(20616,306),(20616,33433),(20616,89630),(20653,1569),(20653,2),(20653,3036),(20653,89347),(20662,1645),(20662,23),(20662,33),(20662,7295),(20694,2348),(20694,24955),(20697,6194),(20697,788),(20737,2),(20761,9195),(20763,5),(20763,5738),(20763,5739),(20764,1785),(20766,13649),(20766,7405),(20766,8073),(20766,846),(20770,4131),(20794,3840),(20829,10105),(20829,11708),(20829,2608),(20829,33),(20829,5),(20829,7295),(20856,1894),(20856,306),(20856,3855),(20856,3856),(20856,508),(20857,3858),(20857,3859),(20857,3860),(20857,4),(20862,12269),(20862,14),(20943,126),(20943,7295),(20981,17827),(21074,2054),(21074,289),(21074,9349),(21208,1786),(21208,4252),(21208,4253),(21208,5870),(21283,3945),(21301,8411),(21309,3952),(21309,3953),(21311,5),(21334,11460),(21338,3470),(21338,3603),(21345,14714),(21345,26240),(21345,26241),(21345,26242),(21345,5552),(21349,306),(21349,711),(21355,14),(21355,5),(21413,14),(21413,7161),(21512,3970),(21512,4255),(21512,68152),(21525,4),(21525,746),(21610,33),(21610,3986),(21610,3987),(21612,3989),(21641,11560),(21641,2690),(21641,288),(21641,441),(21641,5340),(21724,1608),(21724,4),(21724,746),(21755,1205),(21755,308),(21755,491),(21765,6255),(21765,8411),(21972,11015),(21972,11016),(21972,1894),(21972,306),(21972,4396),(22007,10254),(22007,925),(22013,60),(22051,3279),(22051,3459),(22051,7400),(22051,9352),(22051,9353),(22074,308),(22074,838),(22102,5),(22102,6313),(22215,11238),(22215,11246),(22215,16804),(22215,18367),(22215,20456),(22215,2452),(22215,27897),(22215,30298),(22215,30299),(22215,30300),(22215,30301),(22215,30302),(22215,30303),(22215,3272),(22215,5358),(22215,7058),(22215,7396),(22215,866),(22256,44),(22256,6194),(22267,10565),(22267,33),(22301,13866),(22314,4380),(22327,7405),(22345,4077),(22345,4078),(22345,559),(22479,37163),(22479,7832),(22479,8),(22538,2527),(22538,33),(22556,6536),(22600,4113),(22617,4120),(22617,4121),(22649,4),(22787,11576),(22787,11715),(22787,1786),(22787,20572),(22787,4253),(22787,6194),(22787,694),(22787,8582),(22794,2251),(22794,5),(22796,175),(22796,915),(22798,17032),(22798,19813),(22798,444),(22798,771),(22798,8818),(22798,93521),(22798,93522),(22803,12180),(22803,5257),(22803,5802),(22804,1632),(22804,2061),(22805,1512),(22821,11341),(22821,2461),(22824,12026),(22824,12234),(22824,1268),(22824,26082),(22824,33),(22824,63903),(22824,859),(22825,12622),(22825,14718),(22825,2531),(22825,2723),(22825,6194),(22832,11238),(22832,1786),(22832,1885),(22832,264),(22832,450),(22832,6194),(22832,69582),(22832,7307),(22832,923),(22881,1088),(22881,12193),(22881,12194),(22894,2266),(22897,258),(22897,33),(22897,6452),(22897,7295),(22897,735),(22907,1309),(22913,4189),(22947,10261),(22947,2201),(22947,2363),(22947,32157),(22947,4),(22947,4607),(22949,2),(22949,870),(22954,158),(22954,171),(22954,2767),(22954,6194),(22954,76466),(22954,906),(22970,10567),(22970,1632),(22971,3287),(22972,10163),(22972,33),(22972,6452),(22972,694),(22972,7295),(23048,12886),(23048,60),(23048,8411),(23049,2157),(23049,43),(23082,11845),(23082,13769),(23082,14358),(23082,14718),(23082,2531),(23082,2723),(23082,6194),(23168,3281),(23168,3528),(23168,6194),(23168,923),(23169,491),(23172,3929),(23172,46062),(23172,7295),(23330,6194),(23367,10221),(23367,2454),(23367,491),(23398,10930),(23398,508),(23398,711),(23479,4),(23483,1632),(23483,5374),(23531,48357),(23570,14),(23570,65446),(23618,4319),(23629,22119),(23629,6194),(23629,78685),(23629,923),(23631,10807),(23631,10808),(23631,444),(23631,6332),(23685,306),(23685,436),(23685,89626),(23706,14718),(23706,4258),(23706,444),(23706,6332),(23706,711),(23730,1950),(23730,85889),(23742,6194),(23759,1178),(23759,2452),(23759,3573),(23759,5358),(23759,6194),(23759,6301),(23827,21223),(23827,3172),(23963,12975),(23963,12976),(23988,4271),(24021,12292),(24021,4000),(24021,491),(24021,5218),(24021,5219),(24034,2),(24034,3475),(24066,14),(24066,16833),(24071,9195),(24100,12),(24113,12),(24126,4063),(24126,870),(24137,14),(24137,186),(24150,10370),(24150,15822),(24150,7405),(24206,40144),(24206,40759),(24206,50433),(24206,506),(24206,54940),(24226,306),(24227,12),(24227,36390),(24227,7708),(24264,35061),(24264,441),(24264,7585),(24266,4293),(24356,288),(24356,763),(24363,11391),(24363,12260),(24363,30131),(24363,38771),(24418,33),(24420,12),(24420,23046),(24420,8073),(24420,81),(24424,11631),(24424,16053),(24424,32545),(24424,5766),(24428,4),(24428,420),(24438,45726),(24438,5),(24438,7295),(24438,97),(24469,1049),(24469,1420),(24469,2452),(24469,288),(24575,1584),(24621,711),(24662,11050),(24662,174),(24662,90511),(24664,12),(24664,4319),(24684,288),(24746,4714),(24747,11144),(24747,11145),(24747,11146),(24747,3915),(24748,4),(24803,11804),(24803,258),(24803,5),(24869,21733),(24913,4),(24913,52760),(24913,77507),(24940,13),(24961,2730),(24961,33),(24973,306),(24977,3447),(24985,15278),(25066,11308),(25066,4319),(25113,33),(25132,174),(25166,14589),(25166,37498),(25186,2780),(25186,7405),(25189,11317),(25189,559),(25195,1266),(25195,158),(25195,33),(25195,58262),(25195,6363),(25196,3864),(25196,43),(25196,9325),(25208,10146),(25208,1403),(25208,37497),(25209,8411),(25212,2108),(25212,22289),(25212,7799),(25248,15689),(25248,64570),(25248,803),(25312,14731),(25312,2152),(25312,2452),(25312,36765),(25350,19951),(25350,19952),(25350,2982),(25350,8769),(25353,7801),(25376,11408),(25376,11427),(25376,21915),(25376,5517),(25376,5623),(25376,6458),(25376,6639),(25376,7680),(25376,9335),(25379,20465),(25379,20466),(25379,2893),(25388,11985),(25388,4377),(25462,3287),(25520,1270),(25520,247),(25520,4343),(25520,65681),(25520,65682),(25520,65683),(25520,6705),(25520,718),(25520,744),(25520,8256),(25520,980),(25636,4620),(25643,11953),(25643,33),(25643,4403),(25643,4404),(25643,7295),(25643,7419),(25678,1444),(25678,1445),(25704,2363),(25704,2364),(25704,2890),(25704,444),(25719,1270),(25719,24356),(25719,36978),(25719,4413),(25719,718),(25763,306),(25769,10059),(25769,1785),(25769,4482),(25769,838),(25793,4424),(25941,2395),(25941,2452),(25941,5374),(25968,10843),(25968,15231),(25968,3887),(25968,4372),(25968,49152),(25975,87986),(25975,87987),(25983,1360),(25983,23457),(26022,2343),(26022,43),(26022,4450),(26039,8411),(26039,8880),(26171,14),(26171,14718),(26171,2994),(26268,6194),(26306,915),(26320,10146),(26352,175),(26352,915),(26367,35),(26371,2370),(26371,9210),(26379,4502),(26388,11564),(26388,11565),(26388,11566),(26388,2577),(26389,1076),(26389,1115),(26389,11261),(26389,34774),(26389,5358),(26389,6586),(26389,6877),(26389,6896),(26390,10254),(26390,2435),(26390,4654),(26390,8151),(26390,925),(26428,19927),(26428,2674),(26428,5444),(26428,7636),(26428,784),(26428,9335),(26428,9974),(26466,13502),(26466,1854),(26466,2452),(26466,3207),(26466,4024),(26466,4564),(26466,80386),(26486,10227),(26486,59952),(26486,59955),(26486,9195),(26518,14862),(26518,1976),(26518,31302),(26602,2184),(26602,6194),(26618,23861),(26618,40002),(26618,763),(26665,4552),(26672,14),(26672,1755),(26672,6045),(26673,85759),(26688,4194),(26688,491),(26748,11948),(26748,441),(26748,97),(26791,6337),(26815,1569),(26837,59462),(26843,22814),(26963,23948),(26963,4621),(27004,22712),(27004,4624),(27022,130),(27022,19097),(27022,2),(27022,8000),(27022,831),(27029,6194),(27191,4),(27205,6194),(27205,923),(27205,9996),(27322,12),(27322,4665),(27329,70),(27329,8972),(27342,41),(27374,5583),(27380,16379),(27380,2521),(27404,60481),(27404,73337),(27451,21097),(27451,35),(27455,16718),(27455,40648),(27549,1113),(27549,1432),(27551,4110),(27569,215),(27569,5490),(27573,12199),(27573,333),(27573,5),(27573,7295),(27576,11845),(27576,435),(27576,5),(27576,7295),(27578,10254),(27579,10059),(27579,10146),(27579,20899),(27579,22695),(27579,72503),(27581,4740),(27581,5),(27582,10254),(27582,12252),(27582,22035),(27582,22443),(27582,5490),(27585,7400),(27586,1246),(27586,2648),(27586,4700),(27588,17055),(27588,17056),(27686,306),(27723,7055),(27723,7056),(27759,10253),(27759,4928),(27936,11244),(27936,11246),(27936,11359),(27936,11620),(27936,12000),(27936,12001),(27936,591),(27936,7286),(27936,83),(27983,39856),(27983,60537),(27995,4319),(28005,6235),(28005,6236),(28029,13158),(28029,14),(28029,372),(28029,79),(28053,11093),(28053,16647),(28053,61416),(28053,61417),(28053,61418),(28089,4748),(28121,11308),(28121,12),(28165,3052),(28178,11278),(28178,11341),(28178,1843),(28178,66327),(28178,66328),(28178,7419),(28211,25886),(28211,4607),(28211,694),(28260,4777),(28353,3492),(28353,38799),(28355,10039),(28355,11581),(28355,11582),(28355,838),(28580,6033),(28665,126),(28665,60),(28665,8411),(28902,27),(28902,56),(28932,4880),(28932,60),(29015,1606),(29015,8068),(29064,4897),(29076,4258),(29076,915),(29078,2233),(29078,2234),(29078,23359),(29078,2978),(29078,4059),(29122,16061),(29122,16062),(29122,27),(29122,5),(29146,634),(29146,88161),(29193,16280),(29193,21716),(29193,65514),(29193,65515),(29339,11351),(29339,36615),(29339,8213),(29406,2224),(29406,39483),(29406,4090),(29426,23588),(29426,2391),(29426,3240),(29426,6741),(29426,6742),(29427,12807),(29427,4916),(29427,6735),(29427,6736),(29461,2923),(29461,711),(29463,16275),(29463,57818),(29463,6194),(29463,8607),(29595,4971),(29697,77793),(29715,11971),(29715,441),(29912,306),(29917,5004),(29917,5005),(29920,11792),(29920,14804),(29920,17513),(29963,2452),(29963,26716),(29963,26717),(29963,288),(29963,7584),(29963,866),(29963,8724),(29996,13479),(30082,45004),(30082,54034),(30082,54035),(30082,54036),(30141,11732),(30141,1363),(30141,152),(30141,2315),(30315,56482),(30379,5044),(30379,5045),(30497,1197),(30497,12),(30596,2270),(30890,41),(30943,1236),(30943,441),(30973,10167),(30973,10168),(30973,10169),(31005,13816),(31005,2154),(31005,41251),(31005,41252),(31005,9195),(31007,1645),(31007,54860),(31007,769),(31007,8083),(31007,9118),(31064,26927),(31064,42932),(31117,23098),(31117,4077),(31166,10031),(31166,11444),(31166,21605),(31166,21606),(31166,2195),(31166,5358),(31166,7799),(31174,34237),(31174,871),(31175,200),(31175,6419),(31203,1115),(31203,11199),(31203,11261),(31203,11620),(31203,11920),(31203,12096),(31203,147),(31203,2250),(31203,23303),(31203,856),(31246,20877),(31306,4434),(31306,5),(31535,54684),(31582,8411),(31640,20926),(31640,20927),(31640,20928),(31640,43),(31867,33),(31867,4403),(31867,6452),(31867,7295),(31908,5),(31908,97),(31909,16337),(31915,4),(32274,9195),(32275,614),(32275,62),(32316,4),(32395,2293),(32395,3782),(32395,4634),(32395,597),(32395,6563),(32456,43),(32579,16116),(32579,308),(32579,89636),(32579,89637),(32657,10893),(32657,28431),(32657,289),(32657,436),(32657,444),(32657,5219),(32657,6332),(32657,711),(32823,10105),(32823,158),(32823,33),(32823,7295),(32856,12),(32856,4194),(32856,60018),(33155,1010),(33157,1216),(33157,4),(33157,5120),(33196,12621),(33196,5716),(33196,7036),(33217,444),(33217,5420),(33217,8569),(33468,12335),(33511,1267),(33511,2452),(33511,91542),(33511,91543),(33511,9349),(33511,9987),(33542,12),(33542,2521),(33644,306),(33667,306),(33676,5337),(33676,5338),(33870,2814),(33909,306),(33909,444),(33909,6332),(33909,6455),(34016,27),(34016,54634),(34043,14),(34043,5389),(34043,870),(34069,23072),(34069,26025),(34069,26026),(34069,26027),(34069,26029),(34069,5564),(34069,823),(34086,10282),(34086,9195),(34099,57346),(34099,7601),(34106,5),(34152,33),(34152,4319),(34314,11661),(34314,8411),(34335,5452),(34417,5460),(34549,2),(34549,4194),(34563,1975),(34563,43),(34563,444),(34563,55015),(34584,1256),(34584,1704),(34584,1766),(34584,33772),(34584,6194),(34584,7025),(34592,8146),(34647,225),(34647,856),(34653,1473),(34653,2394),(34653,9351),(34697,17668),(34723,2),(34769,2514),(34769,5486),(34769,64753),(34806,1423),(34806,5490),(34813,1786),(34813,429),(34813,433),(34813,6194),(34813,9993),(34851,10807),(34851,1302),(34851,306),(34851,6332),(34941,2499),(34941,52860),(34941,870),(35019,10163),(35019,1973),(35019,33),(35019,5870),(35019,7295),(35032,8411),(35056,2575),(35056,306),(35056,444),(35073,19558),(35169,34447),(35169,3929),(35169,491),(35169,6735),(35169,6736),(35219,13829),(35219,3923),(35219,5708),(35688,35),(35688,6567),(35689,4135),(35690,9195),(35691,5568),(35696,10210),(35696,6194),(35791,248),(35791,342),(35791,5755),(36047,10210),(36095,881),(36334,306),(36351,14723),(36351,285),(36351,8),(36351,8268),(36355,27128),(36355,33),(36355,38181),(36419,12410),(36419,2224),(36419,6020),(36557,11345),(36557,19481),(36557,7576),(36584,1030),(36586,11321),(36586,11322),(36586,11323),(36586,11324),(36586,12),(36586,19551),(36586,421),(36586,5611),(36593,4),(36643,7576),(36643,8411),(36647,11321),(36647,12),(36647,19551),(36647,421),(36648,11321),(36648,12),(36648,19551),(36648,421),(36648,42209),(36648,8851),(36657,19551),(36657,22969),(36657,22970),(36657,306),(36657,431),(36657,9168),(36658,19551),(36658,306),(36658,431),(36658,79026),(36658,79027),(36658,9168),(36668,12247),(36668,19551),(36668,289),(36668,306),(36668,431),(36668,444),(36668,445),(36668,79028),(36668,79029),(36668,79030),(36668,9168),(36669,7576),(36670,427),(36670,67984),(36670,67985),(36691,10226),(36691,10254),(36691,23596),(36696,3145),(36739,4319),(36739,5),(36811,16923),(36811,44224),(36819,146),(36825,4003),(36955,306),(36955,574),(36970,15671),(36970,16804),(36970,18367),(36970,19267),(36970,20346),(36970,33250),(36970,33251),(36970,33252),(36970,33253),(36970,33254),(36970,33255),(36970,4959),(36970,5358),(36970,6586),(36970,6735),(36970,7454),(37003,11522),(37003,80711),(37028,5646),(37056,28048),(37056,491),(37080,10892),(37080,1092),(37137,4),(37165,258),(37165,4),(37206,10969),(37206,1266),(37232,72591),(37233,1302),(37233,4),(37233,932),(37414,163),(37414,3572),(37495,10485),(37495,12180),(37495,15308),(37495,9349),(37498,10828),(37498,21848),(37498,21849),(37498,3618),(37498,559),(37686,11461),(37686,23300),(37686,4),(37686,56),(37707,1786),(37707,3319),(37707,5106),(37707,9),(37710,14577),(37710,158),(37710,21212),(37710,23731),(37710,23732),(37710,23733),(37710,3045),(37710,3281),(37710,5),(37710,682),(37710,694),(37718,236),(37724,5),(37735,3287),(37735,7291),(37737,51955),(37786,12),(37786,3268),(37786,7429),(37786,79),(37799,258),(37799,5),(37799,7295),(37821,1632),(37821,60022),(37821,817),(37834,21845),(37834,306),(37834,444),(37834,508),(37834,84),(37842,11246),(37842,11778),(37842,11944),(37842,225),(37842,310),(37842,5358),(37842,5870),(37842,6586),(37842,83),(37842,850),(37903,1972),(37903,223),(37903,224),(37903,779),(37931,7295),(37950,2527),(37950,33),(37950,7295),(37958,11761),(37958,8852),(38031,6538),(38033,26087),(38033,26088),(38050,11834),(38050,2531),(38050,33),(38050,6933),(38055,521),(38073,12),(38073,2378),(38093,43),(38093,444),(38093,5677),(38117,54502),(38117,5490),(38117,60600),(38153,1504),(38153,915),(38167,2455),(38167,45778),(38167,5),(38223,2070),(38223,2348),(38223,4),(38303,11837),(38303,5698),(38303,9195),(38317,2608),(38317,3045),(38317,46221),(38317,46222),(38317,5),(38317,8000),(38317,8411),(38319,33),(38319,4403),(38321,11250),(38321,11370),(38321,22641),(38321,3287),(38321,8931),(38322,10104),(38322,21237),(38322,306),(38322,508),(38322,73956),(38322,81136),(38322,81137),(38356,19751),(38356,22826),(38356,4),(38356,435),(38357,11461),(38357,11843),(38358,11112),(38358,655),(38358,694),(38363,1246),(38363,6735),(38365,2608),(38365,5),(38365,7295),(38448,1266),(38448,19961),(38448,40605),(38448,5267),(38448,5703),(38448,5704),(38541,11715),(38541,13362),(38541,34994),(38541,4306),(38541,46135),(38541,46136),(38541,46137),(38543,11841),(38543,12075),(38543,1208),(38543,13792),(38543,19579),(38543,23238),(38543,25487),(38543,3870),(38543,5706),(38543,7416),(38570,2262),(38579,306),(38665,1584),(38745,1302),(38745,306),(38745,444),(38745,6332),(38757,2),(38757,6125),(38778,11084),(38778,158),(38778,2242),(38778,27),(38778,4),(38778,6733),(38780,1062),(38780,1063),(38780,22793),(38780,22794),(38780,5723),(38810,15113),(38810,15115),(38810,7254),(38843,444),(38843,813),(38940,10828),(38940,10829),(38940,2982),(38970,15139),(38970,2441),(38970,34529),(38970,6246),(38985,10956),(38985,33),(38985,4),(39013,10039),(39013,19778),(39037,2341),(39037,26127),(39053,1645),(39055,5221),(39141,26468),(39141,26469),(39141,53009),(39141,86089),(39180,172),(39180,3929),(39180,6194),(39180,76292),(39180,79),(39209,12146),(39209,12147),(39209,1787),(39210,10146),(39210,35461),(39210,51850),(39210,70),(39254,11395),(39254,12087),(39254,2575),(39254,27),(39254,7294),(39254,76043),(39254,76067),(39254,76069),(39254,9195),(39269,71953),(39303,23818),(39303,23819),(39349,10157),(39349,22051),(39349,89437),(39349,919),(39437,3298),(39437,9195),(39451,11391),(39451,2242),(39451,33),(39451,4),(39451,7295),(39451,7852),(39486,2),(39486,22880),(39486,22881),(39513,10163),(39513,33),(39513,443),(39513,7295),(39514,429),(39514,435),(39514,491),(39514,9993),(39538,215),(39538,508),(39538,6194),(39538,6735),(39538,6736),(39691,79),(39780,39711),(39780,43),(39780,8724),(39781,10146),(39781,10161),(39781,23910),(39781,23911),(39781,23912),(39781,23913),(39781,6667),(39781,6691),(39800,53303),(39806,7274),(39806,7275),(39806,7276),(39833,306),(39845,1208),(39845,826),(39895,6087),(39939,2773),(39939,43),(40001,559),(40160,2379),(40160,33304),(40160,9266),(40247,1785),(40247,46402),(40247,58),(40264,2648),(40264,508),(40494,5799),(40505,16718),(40505,7405),(40652,14679),(40652,2325),(40688,2),(40794,2441),(40805,333),(40805,5752),(40805,6733),(40807,491),(40807,771),(40880,718),(40914,77472),(40920,60360),(40932,8263),(40963,24248),(41009,16486),(41009,3870),(41009,5267),(41110,2683),(41154,11084),(41154,56),(41154,5627),(41154,6736),(41154,9169),(41210,2570),(41210,7382),(41210,771),(41216,6194),(41216,78685),(41216,79),(41216,8089),(41233,491),(41233,9195),(41248,10609),(41248,11435),(41248,12400),(41248,18367),(41248,5358),(41248,6586),(41248,7248),(41248,83),(41283,3356),(41283,5490),(41283,559),(41283,97),(41317,26473),(41317,26474),(41317,33),(41382,2780),(41382,49966),(41402,11448),(41402,12807),(41402,1314),(41402,3576),(41436,21223),(41436,3172),(41436,4),(41439,1632),(41439,2061),(41439,6680),(41446,7405),(41479,2147),(41479,3870),(41488,11550),(41488,11842),(41488,1712),(41488,1727),(41488,2743),(41488,288),(41488,58),(41488,805),(41488,806),(41513,2251),(41513,5),(41513,7311),(41515,13481),(41515,19045),(41515,2609),(41515,2785),(41515,5219),(41630,2364),(41630,817),(41630,8873),(41730,15460),(41730,15461),(41733,3527),(41733,6194),(41733,923),(41823,33),(41823,4319),(41830,68081),(42033,1950),(42033,26139),(42057,3747),(42057,7620),(42057,7621),(42109,60),(42109,8411),(42109,8517),(42188,284),(42188,43),(42188,9349),(42222,306),(42297,348),(42345,4),(42345,64771),(42497,3923),(42586,15152),(42586,4),(42618,33),(42684,10936),(42684,12007),(42684,12158),(42684,134),(42684,7295),(42807,11510),(42807,306),(42819,1172),(42888,18),(42888,2648),(42888,5),(42889,37845),(42889,4740),(43074,34034),(43074,4607),(43074,5),(43074,61791),(43074,79),(43074,84041),(43074,84042),(43090,1063),(43090,11550),(43090,164),(43090,21974),(43090,2514),(43090,2743),(43090,806),(43090,807),(43213,72688),(43213,72689),(43266,306),(43306,8411),(43347,10104),(43347,348),(43347,4403),(43347,444),(43347,508),(43347,711),(43418,25463),(43418,25467),(43418,4024),(43418,418),(43418,7584),(43434,11394),(43434,2254),(43434,5358),(43434,6111),(43539,1632),(43539,2927),(43539,6320),(43546,8411),(43593,18524),(43593,22596),(43593,2995),(43593,308),(43593,7332),(43593,7405),(43595,4),(43610,8411),(43839,306),(43867,1553),(43867,60),(43884,6194),(43923,10146),(43931,7295),(43931,8853),(43933,829),(43935,1172),(43935,7218),(43935,7219),(43942,7367),(43942,7368),(43942,7369),(43942,7370),(43947,10399),(43947,21624),(43947,5860),(43949,86256),(43959,10156),(43959,3235),(43959,551),(43959,559),(43959,7263),(44009,10100),(44009,9349),(44040,2531),(44040,33),(44040,6006),(44040,7295),(44048,1645),(44048,1838),(44048,19776),(44048,19777),(44048,306),(44092,15866),(44092,21488),(44092,21489),(44092,21490),(44092,2812),(44092,5552),(44113,6572),(44113,6573),(44115,10892),(44115,20076),(44115,43),(44115,6194),(44115,6708),(44115,7981),(44115,9349),(44147,12696),(44147,2268),(44147,23164),(44147,5644),(44147,5705),(44147,6984),(44147,707),(44214,10246),(44214,43),(44214,444),(44214,7503),(44264,2092),(44264,258),(44264,4),(44264,6277),(44413,19385),(44413,65361),(44413,67703),(44555,5946),(44555,724),(44564,158),(44564,23),(44564,2796),(44564,33),(44594,8820),(44594,8871),(44594,9038),(44594,9039),(44603,171),(44603,56),(44603,6194),(44603,7383),(44638,14),(44638,9195),(44639,5388),(44639,58),(44718,6715),(44718,6716),(44718,6717),(44754,10161),(44754,258),(44754,43),(44754,932),(44826,2691),(44826,3281),(44826,4),(44833,13778),(44833,20153),(44833,2598),(44833,33),(44835,42325),(44835,49731),(44835,7507),(44835,8869),(44835,8870),(44835,8871),(44835,8872),(44835,8873),(44853,1178),(44853,15278),(44853,163),(44853,17449),(44853,18335),(44853,5358),(44853,718),(44853,803),(44857,67883),(44857,67884),(44857,67885),(44857,8411),(44865,13184),(44865,26492),(44865,308),(44865,35050),(44865,539),(44865,856),(44896,10262),(44896,2348),(44896,24955),(44896,3281),(44896,4),(44912,2609),(44912,6194),(44912,9993),(44943,333),(44943,5),(44943,7295),(44944,35),(44945,10254),(44945,65129),(44945,925),(45132,10059),(45132,14406),(45132,14407),(45138,11702),(45138,8930),(45145,10005),(45145,38735),(45145,38736),(45145,8138),(45243,2877),(45243,3527),(45243,6194),(45243,923),(45269,19578),(45269,19579),(45269,2452),(45269,308),(45269,5005),(45269,7217),(45269,7309),(45269,7493),(45272,2236),(45272,3287),(45272,5388),(45317,4),(45324,11801),(45324,36028),(45324,36029),(45324,8689),(45324,8690),(45324,8691),(45324,8692),(45610,11956),(45610,11957),(45610,11958),(45610,11959),(45610,11960),(45610,11961),(45610,5294),(45610,7295),(45610,8532),(45610,8852),(45610,9137),(45612,1557),(45612,7460),(45649,12856),(45649,20856),(45649,23002),(45649,5358),(45649,5381),(45649,6111),(45649,6916),(45649,6930),(45650,2266),(45650,6363),(45658,7436),(45658,7437),(45767,5302),(45791,2731),(45791,34338),(45791,36201),(45791,36204),(45791,36205),(45791,36206),(45791,9349),(45958,10146),(45958,2875),(45958,5444),(45958,6639),(45958,7116),(45958,8530),(46138,11752),(46138,11963),(46138,2395),(46138,2452),(46138,288),(46138,5729),(46138,9987),(46146,1003),(46146,5241),(46146,56050),(46195,11749),(46195,9383),(46256,30216),(46256,30217),(46256,30218),(46261,11627),(46261,11628),(46261,14),(46261,2605),(46261,7263),(46332,729),(46332,7453),(46332,7454),(46332,7455),(46332,7456),(46332,7457),(46415,1569),(46420,11840),(46420,2729),(46420,3427),(46420,7584),(46435,10100),(46435,506),(46435,720),(46435,821),(46503,308),(46528,2965),(46529,27),(46529,6733),(46529,6734),(46529,9195),(46705,11335),(46705,11336),(46705,11337),(46705,11338),(46705,2290),(46705,2293),(46705,7215),(46727,13549),(46727,85163),(46727,85164),(46727,85165),(46729,10853),(46738,313),(46738,7272),(46738,7273),(46829,805),(46838,2273),(46849,1607),(46849,38616),(46849,38617),(46849,38618),(46849,38619),(46849,5113),(46889,12),(46889,216),(47088,1785),(47088,36390),(47088,3782),(47088,856),(47327,10254),(47327,11370),(47327,491),(47327,831),(47327,925),(47452,20777),(47452,3324),(47452,718),(47502,12),(47502,14),(47607,65873),(47692,24724),(47692,4564),(47692,803),(47889,75712),(47889,75713),(47890,41),(47890,78905),(47933,22213),(47933,306),(47933,347),(47933,86561),(47964,10893),(47964,12292),(47964,22213),(47964,2735),(47964,290),(47964,306),(47964,34396),(47964,34397),(47964,444),(48034,1115),(48034,2612),(48034,6896),(48035,9079),(48138,12408),(48138,12409),(48138,1786),(48138,264),(48138,3823),(48138,5358),(48138,694),(48171,12),(48171,17336),(48171,1836),(48171,20419),(48171,21211),(48171,21212),(48171,2735),(48217,280),(48217,6982),(48217,7089),(48231,19245),(48231,2728),(48231,2844),(48231,470),(48231,78702),(48231,808),(48289,14),(48289,5374),(48289,9217),(48309,1212),(48340,19960),(48340,19961),(48340,33),(48340,5703),(48340,6490),(48340,7295),(48572,7784),(48572,7785),(48572,9081),(48988,1156),(48988,12),(49010,164),(49010,17457),(49010,6869),(49010,7320),(49013,2),(49013,3),(49017,27551),(49017,33),(49017,3341),(49017,6452),(49017,923),(49018,11341),(49018,21742),(49018,2514),(49018,7437),(49020,12177),(49020,12178),(49020,12179),(49020,12180),(49020,9349),(49021,10427),(49021,11369),(49021,11371),(49021,11840),(49021,11841),(49021,2729),(49021,3427),(49021,6408),(49021,972),(49022,1088),(49022,38010),(49022,38011),(49026,6194),(49026,923),(49026,9993),(49026,9996),(49040,25716),(49040,33),(49040,6452),(49040,7295),(49040,7383),(49047,6194),(49047,7364),(49047,7470),(49049,284),(49049,46506),(49049,46507),(49049,6733),(49049,7437),(49051,11),(49051,12),(49051,174),(49051,8411),(49365,54531),(49444,521),(49471,4319),(49471,5),(49478,2269),(49478,38662),(49478,38663),(49478,8411),(49517,10163),(49517,2051),(49517,23697),(49517,5358),(49517,6301),(49517,694),(49519,521),(49520,33),(49520,333),(49520,7295),(49520,8406),(49521,6194),(49521,78685),(49521,923),(49521,9993),(49521,9996),(49524,33),(49524,333),(49524,552),(49526,1271),(49527,491),(49527,5955),(49529,2),(49530,10104),(49530,508),(49530,655),(49538,10893),(49538,289),(49538,290),(49538,306),(49538,431),(49538,444),(49538,6332),(49538,7505),(49538,9168),(49730,562),(49730,6194),(49730,7262),(49787,10951),(49787,22897),(49787,22898),(49787,3256),(49787,7584),(49852,24013),(49852,24014),(49852,24015),(49852,24016),(49948,2),(49950,3287),(49950,829),(49953,10159),(49953,10160),(49953,1991),(49963,10565),(49963,11912),(49963,181),(49963,254),(49963,3644),(49963,53407),(49963,53408),(50014,2030),(50014,27),(50014,436),(50014,6736),(50014,7294),(50014,9195),(50037,28001),(50135,5755),(50135,8104),(50321,6125),(50348,126),(50348,1632),(50348,737),(50357,1038),(50357,24923),(50357,7405),(50359,33),(50359,6704),(50456,10146),(50456,14684),(50456,21439),(50456,23919),(50497,1490),(50538,13313),(50544,3287),(50544,7291),(50544,97),(50546,2608),(50546,5),(50601,17887),(50601,24262),(50601,24264),(50601,24266),(50620,12292),(50620,491),(50620,5219),(50646,6194),(50647,10105),(50647,41962),(50647,7295),(50698,12881),(50698,52207),(50698,6448),(50725,134),(50725,19855),(50725,23),(50725,7295),(50780,10039),(50780,491),(50780,6735),(50780,6736),(50837,10056),(50837,10057),(50837,10058),(50837,10059),(50839,14861),(50839,14862),(50839,46225),(50839,6692),(50848,5358),(50848,6586),(50848,7694),(50848,8350),(50942,2230),(50942,2231),(50942,4056),(51052,2251),(51052,297),(51052,5),(51130,20249),(51130,45137),(51162,2),(51162,6125),(51497,1225),(51497,33),(51497,333),(51540,12),(51540,12007),(51588,2),(51588,2201),(51828,2335),(51828,5420),(51942,41680),(51995,6667),(52010,79522),(52010,79523),(52010,9096),(52015,1360),(52015,2341),(52015,3768),(52032,8828),(52067,2361),(52449,5),(52449,748),(52451,248),(52451,264),(52451,5755),(52451,753),(52451,939),(52520,126),(52520,3287),(52520,7738),(52520,7740),(52520,831),(53113,33),(53182,2994),(53182,2995),(53182,6194),(53182,7636),(53182,78685),(53182,923),(53256,10947),(53256,1972),(53256,5766),(53256,7025),(53457,11246),(53457,13855),(53457,19959),(53457,2577),(53457,5358),(53457,6586),(53457,7454),(53457,83),(53457,8350),(53862,919),(54054,126),(54054,737),(54138,11461),(54138,12536),(54138,4),(54138,6277),(54518,7377),(54518,7378),(54518,7379),(54580,10050),(54580,11737),(54580,11955),(54580,12009),(54580,12010),(54580,12011),(54580,12012),(54580,357),(54580,6279),(54580,850),(54580,9974),(54897,33632),(55123,8),(55180,17181),(55301,711),(55306,1274),(55306,75348),(55347,10146),(55347,6531),(55347,7400),(55420,8145),(55465,12),(55465,771),(55604,8411),(55616,12113),(55616,94410),(55616,94411),(55720,1089),(55720,1473),(55720,28707),(55720,28708),(55720,491),(55721,10105),(55721,33),(55721,7295),(55779,12),(55779,48788),(55779,48792),(55787,10893),(55787,290),(55787,444),(55787,711),(55787,7717),(56288,7405),(56292,11461),(56292,21777),(56292,4),(56292,6277),(56292,76043),(56292,76067),(56601,19901),(56601,19902),(56601,19903),(56601,19904),(56601,19905),(56715,5330),(56715,9),(56715,915),(56930,6),(57089,7582),(57119,11341),(57119,14577),(57119,559),(57119,71959),(57119,71960),(57120,1976),(57120,4620),(57120,4748),(57157,3574),(57157,4),(57157,9350),(57158,11),(57158,12),(57158,174),(57158,8411),(57165,24175),(57165,24176),(57165,3528),(57165,6194),(57165,923),(57201,130),(57201,2),(57201,2691),(57201,37380),(57201,37381),(57201,37382),(57212,27),(57212,56),(57212,7294),(57212,7383),(57214,1885),(57214,3527),(57294,10443),(57294,1917),(57294,25795),(57294,3712),(57294,698),(57431,11370),(57431,20848),(57431,306),(57612,5313),(57612,5314),(57800,11749),(57800,9383),(57876,7377),(58048,20076),(58048,94714),(58151,9195),(58224,1302),(58224,306),(58224,444),(58224,6332),(58233,33),(58428,1360),(58428,4592),(58431,10246),(58431,12622),(58431,13395),(58431,1632),(58431,72725),(58431,8873),(58492,15159),(58574,1885),(58574,23202),(58574,2723),(58574,6194),(58574,79),(58595,16314),(58595,33),(58626,1804),(58680,12),(58680,1947),(58680,39288),(58882,37041),(59108,12007),(59108,3086),(59108,33),(59108,7295),(59436,12010),(59436,1824),(59436,24785),(59436,8530),(59436,8531),(59440,1001),(59440,12425),(59440,1632),(59440,6573),(59457,703),(59678,2452),(59678,5870),(59678,9349),(59728,79538),(59728,79539),(59859,33),(59859,5374),(59860,32537),(59860,444),(59860,508),(59860,6332),(59860,711),(59860,813),(59861,33),(59861,4170),(59861,7460),(59930,9195),(59961,13778),(59961,33),(59961,6452),(59961,7295),(59962,3929),(59962,444),(59962,907),(59965,24557),(59965,24558),(59965,24561),(59965,35),(59965,3672),(59965,829),(59967,10289),(59967,11092),(59967,1205),(59967,7263),(59968,12808),(59968,1785),(59968,19749),(59968,308),(59981,22135),(59981,48471),(60243,84797),(60243,84798),(60243,84799),(60304,11238),(60304,264),(60304,4),(60304,4740),(60304,746),(60304,8411),(60307,5420),(60307,711),(60308,258),(60308,5),(60309,316),(60309,7486),(60400,306),(60420,13369),(60420,21892),(60420,2313),(60420,838),(60420,9350),(60421,16144),(60421,33553),(60421,58849),(60422,8872),(60463,1311),(60463,6306),(60599,11093),(60599,12501),(60599,14580),(60599,1632),(60599,2394),(60599,24930),(60599,24933),(60599,24934),(61012,342),(61012,343),(61038,8573),(61337,12451),(61337,285),(61337,44419),(61752,43),(61752,4319),(61791,10893),(61791,289),(61791,290),(61791,306),(61791,444),(61791,6332),(61791,7076),(61891,347),(61891,5),(61984,11846),(61984,12383),(61984,12384),(61984,12385),(61984,12386),(61984,12387),(61984,1393),(61984,3363),(61984,4649),(61984,6516),(61984,7093),(61984,7912),(61984,9149),(62116,13907),(62177,2),(62177,3),(62204,2359),(62204,999),(62206,5),(62211,2),(62211,3),(62213,20004),(62213,2691),(62213,3281),(62213,6194),(62213,79),(62213,8601),(62213,9228),(62214,8601),(62215,11239),(62215,118),(62215,119),(62215,14804),(62215,17298),(62215,17513),(62215,27897),(62215,321),(62215,3221),(62215,38069),(62215,38071),(62215,38072),(62215,5358),(62215,6301),(62215,76),(62215,7777),(62215,8288),(62215,8289),(62215,850),(62255,18083),(62255,668),(62255,7316),(62630,7178),(62630,7299),(62630,7300),(62677,64673),(62677,64674),(62728,2452),(62728,288),(62728,694),(62764,11581),(62764,12005),(62764,12006),(62764,12007),(62764,12008),(62764,7295),(62835,11473),(62835,3823),(62835,5358),(62835,6301),(62835,6877),(62835,6896),(62837,10280),(62837,1088),(62838,12),(63020,28205),(63287,73334),(63492,10104),(63492,1836),(63492,508),(63574,1088),(63574,3396),(63574,78958),(63574,78959),(64328,2),(64559,1666),(64559,3823),(64559,5358),(64559,8453),(64559,9209),(64639,2108),(64678,500),(64678,5387),(64678,7499),(64682,11858),(64682,14440),(64682,14604),(64682,240),(64682,6194),(64682,79),(64685,258),(64685,4),(64685,6194),(64686,20478),(64686,20851),(64686,2735),(64686,4403),(64686,6292),(64688,333),(64688,5),(64688,5585),(64688,7295),(64688,8411),(64689,13184),(64689,13648),(64689,13649),(64689,81),(64689,8532),(64690,11337),(64690,2266),(64690,2527),(64690,3263),(64690,46625),(64690,7263),(64720,10936),(64720,21925),(64720,21926),(64720,21927),(64807,6194),(64807,975),(65055,7215),(65057,2361),(65057,43),(65057,444),(65086,10246),(65086,11448),(65086,1314),(65086,18230),(65086,2452),(65086,2514),(65086,6417),(65086,8989),(65203,8411),(65749,40451),(65754,258),(65754,33817),(65754,47479),(65754,5),(65754,8083),(65754,8411),(65759,28381),(65759,28382),(65759,6194),(65759,79),(66125,46381),(66125,53042),(66125,56787),(66125,7584),(66125,7887),(66125,7888),(66195,8146),(66767,11576),(66767,53477),(66767,64829),(66767,807),(66942,7584),(67660,1309),(67675,19328),(67675,24245),(67675,306),(67911,2608),(67911,5),(67913,2452),(67913,3314),(67913,3353),(67913,5267),(67913,6901),(67913,7308),(67913,7309),(68179,2213),(68179,5024),(68179,7289),(68412,64857),(68684,21125),(68718,308),(68718,5),(68721,420),(68722,13184),(68722,178),(68722,308),(68724,11029),(68724,18209),(68724,2531),(68724,28788),(68724,31076),(68724,559),(68724,7431),(68726,19750),(68726,19751),(68726,6194),(68726,923),(68727,6708),(68727,7981),(68727,8286),(68727,9349),(68728,16314),(68728,2),(68734,22695),(68734,3281),(68734,6194),(68735,16028),(68735,33),(68735,507),(68735,923),(68737,13444),(68737,20478),(68737,3528),(68737,40112),(68737,40890),(68737,923),(68812,10254),(68812,1872),(68818,11427),(68818,40789),(68818,4186),(68818,53194),(68818,53195),(68818,53196),(68818,53197),(68818,53198),(68818,53199),(68818,53200),(68818,6639),(68818,7543),(68818,7792),(68818,9335),(68818,9974),(68924,10565),(68924,43),(68924,53473),(69270,21600),(69270,21601),(69270,5663),(69668,10210),(69668,8430),(69848,11601),(69848,3631),(69848,55465),(69848,55776),(69848,55777),(69848,55778),(70074,12075),(70074,14654),(70074,1786),(70074,20356),(70074,25876),(70074,3608),(70074,7437),(70074,7625),(70160,1632),(70160,5420),(70435,5267),(70435,7295),(70436,7295),(70670,10947),(70670,235),(70670,5746),(70670,8246),(70868,308),(70981,1645),(70981,19747),(70981,306),(70981,444),(71157,2612),(71157,5236),(71157,7766),(71157,7767),(71469,10104),(71469,1038),(71469,3638),(71469,491),(71469,508),(71547,5991),(71552,33),(71676,11106),(71676,13816),(71676,20241),(71676,27551),(71676,5),(71676,6736),(71676,7505),(71679,342),(71688,11843),(71688,19749),(71688,2452),(71688,5358),(71688,5654),(71688,6301),(71688,7981),(71688,9349),(71805,1003),(71805,2),(71805,6181),(71859,288),(71859,4748),(71864,2),(71866,3782),(71880,2608),(71880,5),(71880,8000),(72086,13992),(72086,40349),(72105,2531),(72105,33),(72105,8789),(72113,11240),(72113,11795),(72113,2066),(72113,45970),(72113,52574),(72113,5358),(72113,5755),(72113,6301),(72113,8531),(72113,856),(72113,8997),(72190,11956),(72190,19108),(72190,23644),(72190,3281),(72190,4),(72190,6277),(72190,9169),(72197,2251),(72197,297),(72197,5),(72207,10105),(72207,23876),(72207,33),(72207,6452),(72207,7295),(72213,10156),(72213,3291),(72213,41967),(72213,559),(72213,63902),(72331,1038),(72331,306),(72331,36430),(72331,36431),(72331,8601),(72358,27),(72358,4),(72358,6024),(72358,831),(72359,5984),(72359,8840),(72387,11801),(72387,2253),(72387,23008),(72387,7437),(72387,7625),(72431,1),(72431,22883),(72431,306),(72545,10221),(72545,12),(72545,1836),(72559,19719),(72559,2598),(72559,4),(72559,435),(72559,6277),(72559,8411),(72570,158),(72570,3287),(72571,21223),(72571,3172),(72571,4),(72571,6302),(72710,10427),(72710,12075),(72710,13649),(72710,8073),(72913,2906),(72976,306),(72976,444),(72976,56),(72976,6735),(72976,7),(72976,7294),(72976,862),(73191,3592),(73247,33),(73511,68599),(73567,21817),(73567,37833),(73567,6633),(73567,9015),(73873,8717),(73935,11093),(73935,12178),(73937,12178),(73937,290),(73937,444),(73937,5219),(73937,711),(73937,812),(73981,13198),(73981,13199),(73981,13200),(73981,254),(74084,3650),(74457,37580),(74457,4097),(74457,49793),(74465,306),(74465,444),(74465,485),(74465,8518),(74510,35327),(74510,40268),(74510,7480),(74534,6735),(74534,6736),(74536,10254),(74643,12391),(74643,1992),(74643,2577),(74643,50630),(74643,591),(74643,71510),(74643,8676),(74725,16853),(74725,17817),(74777,24562),(74777,24563),(75174,10285),(75174,10427),(75174,11278),(75174,12234),(75174,1645),(75174,8532),(75531,10513),(75531,33),(75531,3324),(75531,4650),(75531,7237),(75531,762),(75531,882),(75612,19647),(75612,19648),(75612,33),(75612,7076),(75612,7295),(75638,10254),(75638,11068),(75638,16055),(75638,22862),(75638,22863),(75638,4908),(75638,58260),(75638,6538),(75638,6778),(75638,9335),(75638,9974),(75656,23271),(75656,23272),(75656,491),(75656,7296),(75674,7295),(75674,8403),(75780,21777),(75780,4),(75780,6277),(75780,762),(75861,11046),(75861,30271),(75861,40366),(75861,40367),(75900,10247),(75900,22153),(75900,2452),(75900,288),(75900,308),(75986,10254),(75986,1950),(76025,2395),(76025,2452),(76025,2514),(76025,7217),(76025,9349),(76025,9987),(76163,10254),(76163,925),(76170,10893),(76170,22213),(76170,306),(76170,431),(76170,7505),(76170,9168),(76203,10104),(76203,1246),(76203,508),(76203,81),(76203,9349),(76285,22213),(76285,436),(76285,444),(76285,5219),(76285,6332),(76285,711),(76338,420),(76341,2537),(76341,6194),(76341,79),(76349,15071),(76487,24048),(76487,6302),(76489,8890),(76492,2251),(76492,5),(76493,4),(76494,1088),(76494,11317),(76494,1632),(76494,19577),(76617,6644),(76617,925),(76640,435),(76649,12162),(76649,248),(76649,4253),(76649,559),(76649,7263),(76726,1302),(76726,306),(76726,43394),(76726,444),(76757,444),(76757,450),(76757,6194),(76757,79),(76758,12205),(76758,49512),(76758,724),(77016,10405),(77016,11448),(77016,11449),(77016,16312),(77016,46961),(77016,47169),(77016,47354),(77174,10146),(77174,11537),(77459,1075),(77459,8992),(77495,26476),(77495,7302),(77495,7956),(77866,10163),(77866,10970),(77866,33),(77866,694),(77866,7295),(77866,8536),(77866,8537),(77866,8538),(77866,8539),(77875,10254),(77875,5802),(77875,8056),(77877,6194),(77877,79),(77877,8057),(77877,813),(77883,22637),(77883,768),(77930,34981),(77930,8850),(77931,2251),(77931,24097),(77931,5),(77931,7311),(77931,9169),(77934,8077),(77948,1224),(77948,23625),(77948,491),(77948,8083),(77948,8084),(77948,8085),(77949,288),(77949,5870),(77949,8087),(77949,8088),(77949,9987),(77950,521),(77951,3164),(77951,53498),(77951,53499),(77951,6733),(77951,8089),(77951,8090),(77951,8091),(77953,2242),(77953,36431),(77953,4740),(77953,6194),(77987,17513),(77987,19865),(77987,2266),(77987,856),(77987,9),(78149,1504),(78149,915),(78307,81962),(78307,81963),(78373,16517),(78373,4714),(78381,70),(78383,6644),(78383,7035),(78394,29943),(78394,54610),(78698,10039),(78698,10163),(78698,33),(78705,28810),(78705,28811),(78705,28812),(78814,12799),(78814,5225),(79120,10441),(79120,10442),(79120,10443),(79120,1917),(79161,8139),(79316,1302),(79316,22213),(79316,306),(79587,18156),(79694,1786),(79694,37826),(79694,6194),(79694,694),(79698,7299),(79698,76098),(79698,76099),(79698,76100),(79698,8186),(79698,8187),(79698,8188),(79777,7263),(79940,21213),(79940,4740),(79940,846),(80035,10893),(80035,2575),(80035,289),(80035,290),(80035,306),(80035,37336),(80035,444),(80035,6332),(80215,84489),(80271,215),(80271,771),(80271,84637),(80271,84638),(80274,31825),(80274,31826),(80274,3200),(80274,3263),(80274,491),(80274,7296),(80278,18309),(80278,21632),(80278,2674),(80278,491),(80278,53490),(80278,53491),(80278,8111),(80278,9335),(80278,9974),(80304,2088),(80304,4740),(80304,6644),(80321,521),(80585,12),(80585,12139),(80585,2378),(80585,8871),(81005,12),(81005,333),(81005,6194),(81005,8406),(81005,9168),(81005,923),(81188,521),(81220,3135),(81390,21937),(81390,4098),(81390,4250),(81796,10611),(81796,5358),(81796,6896),(81836,12010),(81836,12966),(81836,1824),(81836,6246),(82505,5855),(82505,7295),(82505,7493),(82507,23277),(82507,2514),(82507,3172),(82507,7437),(82507,7625),(82525,11802),(82525,4198),(82525,7295),(82532,9350),(82533,37812),(82631,10221),(82631,2605),(82631,59391),(82650,711),(82654,491),(82675,10611),(82675,1115),(82675,306),(82675,5358),(82675,6877),(82675,6896),(82679,10039),(82679,13204),(82679,2348),(82679,4),(82682,2723),(82682,6194),(82682,79),(82682,8057),(82684,10221),(82684,711),(82687,4),(82687,6277),(82690,6125),(82693,308),(82695,10163),(82695,33),(82695,7295),(82695,7923),(82696,1423),(82696,4220),(82696,5),(82696,771),(82696,8411),(82700,12236),(82700,12485),(82700,5),(82702,20154),(82702,521),(82703,520),(82703,521),(82703,73951),(82703,73952),(82990,21223),(82990,3172),(82990,4),(82990,6302),(83542,10947),(83542,11080),(83542,11082),(83542,11083),(83542,19621),(83542,1972),(83542,450),(83542,7829),(83666,10146),(83666,23449),(83666,25626),(83666,258),(83666,9350),(83686,12545),(83686,5490),(83770,10611),(83770,11795),(83770,12467),(83770,21914),(83770,346),(83770,5358),(83770,614),(83770,70),(83770,79077),(83770,83),(83770,8372),(83770,9209),(83770,9349),(84174,10290),(84174,4740),(84175,12219),(84175,2291),(84175,6714),(84178,10285),(84178,8185),(84184,598),(84188,10989),(84188,12649),(84188,12650),(84200,52241),(84204,11571),(84204,17748),(84204,21597),(84204,51929),(84204,5267),(84329,11341),(84329,13466),(84329,13467),(84329,13468),(84329,13469),(84329,9118),(84332,12808),(84332,1974),(84355,1424),(84892,2130),(84892,491),(85350,11510),(85350,307),(85446,491),(85860,10485),(86304,18818),(86331,18519),(86331,18520),(86331,18521),(86812,26197),(86825,1645),(86825,43),(86825,9350),(86829,20664),(86829,5490),(86829,694),(86834,10256),(86834,4),(86834,508),(86834,7503),(86837,1972),(86837,223),(86837,224),(86838,2376),(86838,5490),(86838,7281),(86838,9349),(87093,2293),(87093,308),(87093,8600),(87093,8601),(87101,13184),(87101,4),(87101,82819),(87421,1225),(87421,14718),(87421,23634),(87428,2608),(87428,5),(87428,7295),(87499,1645),(87502,11084),(87502,11395),(87502,4),(87567,1020),(87567,17049),(87729,2370),(87729,9195),(87818,2150),(87818,7295),(87818,8852),(87818,8890),(87818,8891),(87825,171),(87825,6194),(87826,2608),(87826,5),(87826,8000),(87827,10893),(87827,13480),(87827,289),(87827,290),(87827,444),(87827,711),(87943,82784),(88005,10039),(88005,10146),(88005,771),(88005,9350),(88036,11317),(88036,11341),(88036,11466),(88036,559),(88042,10221),(88042,306),(88042,444),(88042,48638),(88042,6332),(88042,7076),(88641,365),(88751,10221),(88751,12),(88794,11845),(88794,171),(88794,23),(89325,13040),(89325,53303),(89492,10105),(89708,10986),(89750,17027),(90369,11843),(91070,34951),(91070,47330),(91076,11955),(91076,13367),(91076,2152),(91076,4248),(91076,888),(91122,59196),(91314,11413),(91314,22826),(91314,2481),(91314,38833),(91314,4),(91314,435),(91314,56),(91314,76043),(91586,34),(91586,7263),(91721,34166),(91721,80405),(92182,25904),(92182,6930),(92591,11510),(92591,6352),(92591,6667),(92591,8116),(92591,97),(93456,33),(93456,6704),(93856,1088),(93856,14734),(93856,7493),(94329,12141),(94329,12142),(94329,860),(94348,491),(94352,2787),(95755,3265),(95755,68079),(95755,68080),(96399,41537),(96721,10163),(96721,10246),(96721,11448),(96721,163),(96721,31922),(96724,10146),(96724,10163),(96724,33),(97020,5),(97020,655),(97020,8411),(97367,22632),(97367,737),(97367,8600),(97370,12075),(97370,2452),(97370,27543),(97370,41077),(97370,698),(97370,7493),(97370,8073),(97370,8087),(97370,8092),(97370,9349),(97430,11112),(97430,11113),(97614,1030),(97614,12199),(97614,694),(97614,762),(97614,846),(97630,13184),(97630,20344),(97630,5),(98357,10104),(98357,10405),(98357,11030),(98357,22146),(98357,25790),(98357,508),(98357,7415),(98357,8532),(98357,8537),(98369,36108),(98549,42037),(98549,94551),(98549,94552),(98566,2348),(98566,2481),(98566,4),(98568,11049),(99826,921),(99861,15357),(99861,420),(99861,76043),(100042,1156),(100042,12),(100042,19177),(100042,33),(100241,126),(100241,13788),(100241,1632),(100241,737),(100275,118),(100275,64899),(100275,7048),(100275,806),(100402,420),(100975,21716),(100975,39226),(101173,1260),(101173,22310),(101173,23558),(101173,23559),(101173,23560),(101173,23561),(101173,23563),(101173,288),(101173,44091),(101173,4564),(101173,9987),(101179,12905),(101267,23),(101267,4),(101267,7377),(101267,746),(101299,1632),(101299,5420),(102362,10339),(102362,333),(102382,19551),(102382,31828),(102382,5),(102382,53462),(102651,16314),(102651,2),(102651,3036),(102899,420),(103328,254),(103328,5358),(103370,3096),(103620,10611),(103620,1992),(103620,2577),(103620,5358),(103663,118),(103663,119),(103663,3221),(103663,7446),(103663,74636),(103663,76),(103663,850),(103663,851),(103663,8555),(103731,10892),(103731,7493),(104755,21742),(104755,2514),(104755,3172),(104755,7437),(104755,7625),(105864,2),(105864,3),(106646,14654),(106646,19177),(106646,23243),(106646,4),(106646,562),(106747,10427),(106747,10808),(106747,11005),(106747,11006),(106747,13241),(106747,14358),(106747,25608),(106845,22705),(106845,2982),(106845,3608),(107811,10227),(107811,52337),(107811,7295),(107811,8852),(107846,10405),(107846,11761),(107846,2995),(107846,31832),(107846,36212),(107846,46961),(107846,491),(107985,10146),(107985,10163),(107985,33),(107985,443),(108346,85721),(109091,10893),(109091,13649),(109091,14384),(109091,1645),(109091,22213),(109091,290),(109091,4169),(109091,711),(109091,8073),(109410,6194),(109414,16615),(109414,5),(109414,7431),(109414,771),(109417,3287),(109418,2608),(109418,5),(109418,7431),(109421,10427),(109421,1205),(109421,435),(109421,6292),(109424,5),(109428,559),(109428,7263),(109428,768),(109431,37361),(109431,37362),(109431,4403),(109443,10105),(109443,4),(109443,4740),(109445,2),(109445,6125),(109451,5),(109451,649),(109491,1088),(109491,32184),(109491,36390),(109491,6194),(109513,10424),(109513,10425),(109513,10426),(109513,11448),(109729,40796),(109729,40797),(109729,40798),(109729,40799),(110402,27593),(110402,69586),(110402,69587),(110415,11345),(110415,21122),(110415,34725),(110415,7036),(110415,7270),(110683,1444),(110683,6231),(110683,78704),(110683,8411),(111190,10951),(111190,11795),(111190,15671),(111190,21079),(111190,22983),(111190,2564),(111190,5358),(111190,7584),(111190,9),(111794,306),(111794,3901),(111794,43),(112949,722),(112949,7295),(113406,65147),(113464,46957),(113464,46958),(113464,8411),(113947,13195),(113947,1591),(114150,12365),(114635,21523),(115210,18078),(115210,1898),(115210,23457),(115210,23459),(115210,23460),(115210,5267),(116149,10611),(116149,20664),(116149,22123),(116149,308),(116149,3823),(116149,5358),(116149,58773),(116149,694),(116149,7364),(116613,10393),(116613,10896),(116613,22789),(116711,11749),(116711,9383),(116741,22213),(116741,2575),(116741,2796),(116741,306),(116741,508),(116745,10893),(116745,12),(116745,12178),(116745,22213),(116745,290),(116745,306),(116745,37336),(116745,9118),(116977,4174),(116977,6574),(117251,347),(117251,34981),(117251,34982),(117251,5),(117263,10254),(117263,925),(117942,31296),(118340,20478),(118340,420),(118340,54850),(118340,76043),(118452,2813),(118452,40126),(118612,25566),(118612,25567),(118957,10950),(118957,12752),(118957,18988),(118957,3207),(118957,41905),(118957,7584),(118957,9129),(119283,2902),(119450,22213),(119450,290),(119450,7076),(120467,22213),(120467,23449),(120467,258),(120467,264),(120467,43),(120467,9350),(121676,2514),(121676,307),(121676,738),(121826,13151),(121826,288),(121986,258),(121986,30666),(121986,88533),(122081,14036),(122081,14531),(122081,14718),(122081,15231),(122081,17719),(122081,26676),(122081,78780),(122081,8924),(122906,10163),(122906,14384),(122917,11),(122917,12),(122917,174),(122917,7413),(122917,8411),(123553,22656),(123553,5755),(123553,60746),(123553,60747),(123678,29062),(123678,29063),(123678,29064),(123678,9158),(124459,11175),(124459,11176),(124459,12),(124606,10571),(124606,26598),(124606,40739),(125052,40543),(125052,40544),(125052,60),(125123,20777),(125123,3324),(125123,718),(125490,2514),(125490,7320),(125490,7799),(126141,54259),(126319,13351),(126319,2675),(126319,27350),(126319,32853),(126319,694),(126319,6973),(127493,10254),(127493,831),(127493,925),(127560,12075),(127560,1471),(127560,15577),(127560,15578),(127560,1632),(127560,3207),(127585,22213),(127585,306),(127585,37336),(127585,431),(127585,7505),(127585,76043),(127585,9168),(127867,13552),(127918,2426),(127918,2632),(127918,5867),(127918,6111),(127918,8047),(129139,1557),(129139,787),(129670,2570),(129670,838),(130150,2130),(130150,32157),(130150,9350),(131631,1632),(131631,5420),(131634,1632),(131634,264),(131634,5420),(132232,10677),(132232,10678),(132232,33),(132316,1569),(132344,11510),(132344,19246),(132344,20313),(132344,97),(132363,18919),(132363,18920),(132363,18921),(132363,18922),(132363,326),(132363,695),(133575,20873),(133575,2832),(133575,689),(133575,80578),(133694,10146),(133694,29311),(133694,29312),(133694,29313),(133694,6735),(133694,6736),(133698,3823),(133698,7038),(133805,11581),(133805,3287),(133805,8411),(133931,10884),(133931,25032),(133931,25033),(133931,25034),(133931,33805),(133931,5113),(133931,564),(134371,25673),(134371,30033),(134374,2609),(134374,4),(134411,11448),(134411,1450),(134411,14739),(134411,6735),(134411,6736),(134597,10285),(134597,5176),(135397,13),(135397,3341),(135397,56),(135397,6452),(135397,923),(136400,10405),(136400,11030),(136400,13),(136400,2527),(136795,10893),(136795,22213),(136795,289),(136795,290),(136795,306),(136795,7076),(136797,27),(136797,34890),(136797,7294),(136797,76043),(136797,8403),(136797,9195),(136835,49968),(137093,13444),(137093,17393),(137093,34886),(137093,415),(137093,5490),(137094,11250),(137094,2767),(137094,4),(137094,435),(137094,6277),(137094,9341),(137106,25120),(137106,2723),(137106,2785),(137106,4081),(137106,41624),(137106,429),(137106,6194),(137106,79),(137106,8089),(137106,829),(137113,12200),(137113,36390),(137113,41624),(137113,6194),(137113,6687),(137113,79),(137321,433),(137321,6194),(137321,79),(137347,20643),(137347,36299),(137347,66146),(138103,10254),(138103,28384),(138103,342),(138103,40822),(138103,7571),(138103,925),(138697,10255),(138697,11092),(138697,14578),(138832,12),(138832,16791),(138832,17929),(138832,31073),(138832,6363),(138832,7364),(138843,11565),(138843,12),(138843,31375),(139038,10427),(139038,1205),(139038,1608),(139038,7437),(139715,4896),(139948,23648),(140300,306),(140300,40890),(140300,521),(140300,76266),(140823,2),(140823,2054),(140823,21079),(140823,288),(140823,6747),(142061,2785),(142061,429),(142061,4811),(142061,9993),(142132,181),(142132,236),(144336,10427),(144336,11029),(144336,16311),(144336,16312),(144336,16314),(144340,10146),(145220,32),(145220,6421),(146198,30420),(146198,73493),(146198,78595),(146198,78596),(146198,9015),(146203,5490),(146203,694),(146216,429),(146216,435),(146216,491),(146216,9993),(146227,12075),(146227,1786),(146227,19719),(146227,28176),(146227,2982),(146227,3608),(146227,36109),(146227,68548),(146227,68549),(146227,68550),(146233,1088),(146233,12199),(146233,18208),(146238,10104),(146238,215),(146238,508),(146238,562),(146238,7420),(146239,27),(146239,9195),(146304,6292),(146631,19181),(146631,19182),(146882,73188),(146882,73189),(146882,7454),(147441,1645),(147441,20656),(147441,52184),(147441,7076),(147773,14319),(147773,3263),(147773,43),(150202,12026),(150540,2),(150540,3),(150689,2),(150689,28788),(150689,46339),(150689,47706),(152532,10255),(152532,13),(152532,19631),(152532,33),(152599,770),(152599,9015),(152601,13184),(152601,6194),(152737,16280),(152737,22695),(152742,20416),(152742,20644),(152742,3110),(152742,38591),(152742,38592),(152742,6194),(152747,14580),(152747,14861),(152747,14862),(152747,22146),(152747,6742),(152747,7493),(152760,22695),(152760,24970),(152760,264),(152760,5),(152760,711),(153158,11408),(153158,11427),(153158,21915),(153158,22128),(153158,22130),(153158,22133),(153158,22134),(153158,22135),(153158,5517),(153397,12574),(153397,12575),(153397,3324),(153518,18642),(153518,30692),(153518,5),(153518,50848),(153518,91920),(153795,10254),(153795,13621),(153795,925),(156022,1423),(156022,2767),(156022,34034),(156022,41096),(156022,5),(156022,79),(157058,2262),(157058,3641),(157185,21871),(157185,79821),(157293,2320),(157336,13769),(157336,4),(157336,6194),(157336,923),(157336,9996),(157350,14440),(157350,491),(157353,10289),(157353,1088),(157353,13403),(157353,9996),(157354,14638),(157354,14639),(157386,19194),(157386,2575),(157386,30133),(157386,41077),(157422,25635),(157422,3608),(157544,126),(157544,1632),(157544,20851),(157544,58399),(157547,10339),(157547,1224),(157547,24510),(157547,3172),(157547,7295),(157841,10246),(157841,12000),(157841,7286),(157847,10989),(157847,14037),(157847,20848),(157847,9015),(157849,13241),(157849,1632),(157849,191),(157849,28275),(157849,36615),(157849,36616),(157849,7493),(157849,9349),(157909,21953),(157909,21954),(158011,10339),(158011,15462),(158011,15463),(158011,15464),(158011,15465),(158011,559),(158015,18065),(158015,2481),(158015,3172),(158015,33),(158015,729),(158150,21041),(158150,34710),(158752,48545),(158852,2),(158852,20656),(158852,59778),(159014,58637),(159037,27197),(159037,7266),(159037,9015),(159770,12142),(159770,72063),(159824,2251),(159824,5),(160588,12966),(161795,27584),(161795,40955),(161795,40956),(162903,10039),(162903,27),(162903,6735),(162903,7294),(162903,9195),(164372,1038),(164457,1645),(164457,18617),(164457,19177),(164457,562),(164457,7295),(164558,34),(164558,5),(165864,11391),(166424,20478),(166424,22213),(166424,28788),(166424,306),(166424,5374),(166424,7505),(166424,9078),(166624,164),(166624,21382),(166624,41921),(167073,1508),(167073,16486),(167073,5267),(167073,7177),(168027,3120),(168027,52324),(168259,33),(168259,333),(168259,3341),(168259,40890),(168259,6452),(168259,7154),(168259,86352),(168259,86655),(168259,87857),(168259,87858),(168530,1309),(168530,2780),(168530,33),(168530,7295),(168672,13184),(168672,5),(168672,507),(168705,15127),(169917,10246),(169917,11448),(169917,215),(169917,216),(169917,39043),(169917,40106),(169917,40107),(169917,8532),(170687,11537),(171274,178),(171274,6194),(171274,93105),(171424,18142),(171424,55497),(171424,73624),(171424,73625),(171424,9015),(171759,72408),(172385,11749),(172385,9383),(172391,33805),(172533,18346),(173224,65815),(174311,12936),(174311,5161),(174311,737),(174751,13242),(174751,13403),(174751,14358),(174751,14359),(174751,8873),(175291,5124),(175291,7787),(175528,31835),(175541,43),(175541,85720),(175555,6644),(175574,2787),(175574,7295),(176074,48738),(176074,73087),(176077,34381),(176077,4554),(176124,261),(176124,3291),(177572,2),(177572,6125),(177677,11413),(177677,11461),(177677,21777),(177677,4),(177677,6277),(177677,69484),(177677,69485),(178862,20757),(179144,11011),(179144,11248),(179144,11795),(179144,1533),(179144,1677),(179144,20416),(179144,20418),(179144,20419),(179144,20420),(179144,3366),(179144,5358),(179144,6246),(179144,7981),(179144,83),(180296,1632),(180383,39134),(181283,1645),(181283,491),(181283,9015),(181330,40268),(181533,20478),(181533,22213),(181533,2575),(181533,306),(181533,436),(181940,37757),(181940,637),(182291,26677),(182873,13161),(184098,49968),(184315,19648),(184315,34081),(184315,4),(184315,8411),(184341,52064),(184341,52065),(184341,52066),(184341,7289),(184345,10427),(184345,7625),(184346,130),(184346,3287),(184346,34034),(184374,23133),(184374,5153),(184374,56358),(185008,19146),(185567,1115),(185567,23616),(185567,34044),(185567,34774),(185567,5358),(185567,616),(185567,7981),(186935,11237),(186935,14547),(186935,17298),(186935,22621),(186935,22622),(186935,22623),(186935,22624),(186935,22625),(186935,22626),(186935,22627),(186935,22628),(186935,22629),(186935,2345),(186935,5125),(186935,863),(186935,864),(186935,9980),(187017,2531),(187017,333),(187017,34034),(187017,34035),(187017,34036),(187017,5),(187017,8411),(187017,9194),(188161,2531),(188161,27451),(188161,31470),(188161,8789),(188166,1976),(188166,22700),(188166,2772),(188166,28360),(188207,10254),(188927,11461),(188927,34530),(188927,4),(188927,69484),(188927,82819),(188927,83644),(188927,83645),(189711,27892),(189711,27893),(190847,18078),(190847,5267),(190847,5358),(190847,7281),(190847,892),(190859,171),(190859,41624),(190859,57408),(190859,57409),(190859,6194),(190859,79),(190955,10611),(190955,11261),(190955,16804),(190955,19690),(190955,2490),(190955,2612),(190955,2908),(190955,32242),(190955,33928),(190955,34774),(190955,34780),(190955,34782),(190955,5358),(190955,7454),(190955,856),(190955,9015),(191714,2320),(192102,22947),(192102,22948),(192102,22949),(192102,4022),(192102,6896),(192102,7295),(192132,20670),(192134,11561),(192134,19404),(192134,288),(192134,8719),(192136,1066),(192136,4792),(192136,5031),(192136,7396),(192136,8088),(192141,2266),(192141,2877),(192141,66930),(192210,11740),(192210,41602),(192210,80561),(192577,3116),(193610,306),(193610,75017),(193613,11448),(193613,11486),(193722,11629),(193722,6194),(193756,10405),(193756,11030),(193756,20153),(193756,21897),(193756,22610),(193756,22611),(193756,33),(193756,433),(193756,6666),(193756,8536),(193756,8537),(193893,28787),(193893,28788),(193893,306),(194662,10104),(194662,22213),(194662,47169),(194662,52660),(194662,9015),(195589,16615),(195589,17393),(195589,33),(196867,12485),(196867,5),(196867,7291),(196867,7431),(196867,95063),(198184,18209),(198184,2531),(198184,28788),(198184,31076),(198184,34034),(198184,5),(198184,53638),(198184,7431),(198185,2),(198277,10105),(198277,11448),(198277,14319),(198277,1785),(198663,12292),(198663,22213),(198663,290),(198663,306),(198663,3672),(198663,8569),(199373,10405),(199373,27993),(199373,30023),(199373,31832),(199373,31833),(199373,3604),(199373,5830),(199373,6715),(199373,6819),(199933,67480),(200505,1632),(200505,491),(201088,33),(201088,675),(201088,923),(201132,49386),(202575,10159),(202575,10160),(202575,28831),(202575,694),(203801,1302),(203801,23202),(203801,41624),(203801,6194),(203833,264),(203833,5219),(203833,711),(204082,10254),(204082,10427),(204922,10254),(204922,1645),(204922,17513),(204922,18230),(204922,36991),(204922,694),(205126,62511),(205220,12005),(205220,1219),(205220,18188),(205220,288),(205220,308),(205220,7981),(205321,1311),(205321,22872),(205321,6677),(205584,3528),(205584,491),(205584,72441),(205584,88715),(205584,908),(205587,27467),(205587,6194),(205587,79),(205587,8406),(205588,20664),(205588,28275),(205588,36615),(205588,58773),(205588,694),(205588,9349),(205596,22146),(205596,38145),(205775,16314),(205775,17888),(205775,23),(205775,24175),(205775,34401),(205775,6194),(205775,63571),(205775,705),(206213,14787),(206213,58574),(206284,30270),(206284,30271),(206296,11093),(206296,15353),(206296,15354),(206296,20671),(206563,10163),(206563,32243),(206563,345),(206647,10761),(206647,5),(206647,69434),(207769,14861),(207769,19600),(207769,19601),(208134,4),(208134,6328),(208134,746),(208763,21450),(208763,33),(208869,7353),(209112,41624),(209112,429),(209112,507),(209112,6194),(209112,9993),(209112,9995),(209263,43),(209274,11240),(209274,125),(209274,44171),(209274,486),(209274,6476),(209274,6477),(209274,72682),(209274,72683),(209274,850),(209403,12622),(209403,25975),(209451,6194),(210577,10104),(210577,15829),(210577,22213),(210577,306),(210577,508),(210577,60682),(210860,1632),(210860,1757),(210860,36209),(210860,39649),(211086,52630),(211557,58154),(211672,33),(211672,6704),(211954,23770),(211954,3631),(211954,47231),(211954,58399),(214756,13778),(214756,33),(214756,44783),(214756,86655),(214756,8789),(215211,12075),(215211,19037),(215211,35404),(215211,356),(215211,51938),(215211,51940),(215211,5358),(215211,779),(215211,8676),(215211,9),(215881,3172),(215881,49982),(215881,52075),(215924,16496),(216015,10146),(216015,11801),(216015,27551),(216282,12),(216282,41624),(216282,79),(216282,8000),(217708,68384),(217708,68385),(218043,16558),(218500,32189),(218778,2),(218778,2575),(218778,6254),(220488,8250),(222250,41683),(222649,3263),(222649,6408),(222649,8290),(222899,127),(222899,1309),(222899,7291),(222935,12292),(222935,22213),(222935,711),(222936,258),(222936,485),(223485,14631),(223485,41077),(223485,58085),(223485,7714),(223485,9349),(223702,13184),(223702,16615),(223702,2251),(223702,46875),(223702,5),(223702,5752),(224141,17021),(224141,2),(224141,2527),(224569,17048),(225235,19124),(225565,14580),(225574,1885),(225574,20664),(225574,22123),(225574,26387),(225574,3823),(225574,5358),(225574,694),(225886,1423),(225886,2531),(225886,34034),(225886,7431),(226354,10283),(226354,19404),(226354,36988),(226354,39281),(226458,2943),(226458,35591),(226458,52909),(226458,52910),(226486,12),(226486,4740),(226857,13204),(226857,13778),(226857,33),(227156,10221),(227156,17145),(227156,308),(227156,53464),(227159,12),(227159,28732),(227159,6363),(227306,36390),(227306,39443),(227306,923),(227348,21223),(227348,3172),(227348,6302),(227707,10069),(227707,11921),(227707,16742),(227707,19037),(227707,20386),(227707,49252),(227707,53195),(227707,66897),(227707,66899),(227707,707),(227707,7543),(227707,8676),(227719,2481),(227719,4),(227719,7377),(227719,746),(227735,1088),(227735,12626),(227735,5420),(227735,68621),(227783,10427),(227783,20788),(227783,20789),(227783,20790),(227973,11749),(227973,9383),(227975,11445),(227975,48663),(227975,8580),(227975,93177),(228066,1302),(228066,20478),(228066,22213),(228066,306),(228150,11029),(228150,16312),(228150,34034),(228150,39649),(228150,47169),(228150,5),(228161,306),(228161,521),(228165,10256),(228165,2348),(228165,24955),(228165,4),(228165,4859),(228165,8921),(228194,31893),(228194,3298),(228194,56),(228194,6735),(228194,6736),(228194,7294),(228194,9195),(228203,2),(228203,22881),(228205,12292),(228205,711),(228326,11749),(228326,2787),(228326,306),(228326,79031),(228967,16615),(228967,5),(228970,15829),(228970,43),(228970,93542),(230266,2009),(231576,215),(231576,856),(231576,9015),(231617,3958),(231617,6438),(232672,20788),(232672,2608),(232672,4194),(232672,6194),(232679,10156),(232679,551),(234212,4564),(234212,7405),(234212,7424),(234212,7437),(235260,23920),(235260,7483),(235271,1632),(235271,35327),(236751,16314),(236751,3287),(236751,559),(238603,10426),(238603,3036),(238615,11092),(238615,1205),(238636,2481),(238636,3172),(238636,33),(238636,47354),(238636,729),(239563,15855),(239563,308),(239563,3314),(239563,7076),(239566,11262),(239566,13),(239566,27319),(239571,7295),(239573,10104),(239573,1423),(239573,264),(239573,508),(239678,2575),(239678,6194),(239678,705),(240832,23616),(240832,33),(240832,3823),(240832,5358),(240832,6896),(241239,14861),(241239,14862),(241239,41077),(241239,53656),(241239,6735),(241239,6736),(241239,7493),(241251,1620),(241251,3172),(241251,33),(241251,44783),(241254,10405),(241254,33831),(241254,33832),(241254,3604),(241257,29564),(241257,308),(241257,4908),(241257,5444),(241257,7493),(241257,784),(241259,16314),(241259,2),(241259,37455),(241259,598),(241259,8601),(241554,18617),(241554,41624),(241554,829),(241771,42321),(241771,7295),(241771,86115),(241771,86116),(241771,8840),(242083,39077),(242083,49786),(242095,28163),(242095,28286),(242095,87213),(242166,11006),(242166,37580),(242166,37831),(242166,37832),(242512,1778),(242512,22826),(242512,2481),(242512,2531),(242512,3172),(242512,33),(242512,3341),(242512,47354),(242512,88762),(242575,15877),(242575,15878),(242575,18715),(242575,8685),(242582,2266),(242582,24049),(243938,4),(243938,60),(243938,8411),(243940,1632),(243940,3172),(243940,55265),(244114,10284),(244114,1268),(244114,5686),(244267,22632),(244267,36186),(244267,36187),(244316,23596),(244316,24012),(244316,3217),(244339,20542),(244339,20543),(244403,13238),(244403,23031),(244403,34846),(244534,29652),(244772,1974),(244772,20313),(244776,38956),(244776,38957),(244783,9015),(244786,2266),(244786,3172),(244786,32157),(245700,10100),(245700,11267),(245700,16804),(245700,45503),(245700,47802),(245700,9349),(245700,9987),(245703,19246),(245703,50914),(245703,6194),(245846,9015),(245916,27450),(245916,27451),(246403,13241),(246403,13642),(246403,41077),(246403,9081),(246449,26343),(246655,22213),(246655,306),(246655,431),(246655,7505),(246655,78091),(246655,9168),(248774,10479),(248774,34455),(248774,34456),(248774,41077),(249164,12),(249164,8411),(250066,44884),(250066,60515),(250066,7587),(250124,2699),(250124,3916),(250124,41640),(250349,31229),(250349,3823),(250349,4696),(250349,5870),(250546,11565),(250546,12),(250546,31375),(250546,41624),(250902,15287),(250902,15288),(251321,10046),(251321,11517),(251321,7543),(251471,19542),(251471,19543),(251979,28024),(252512,258),(252512,41077),(252680,10156),(252680,3291),(252680,559),(252680,6427),(252680,80078),(253235,31832),(253235,32245),(253235,97),(253306,35852),(253331,14580),(253412,10163),(253412,10221),(253412,10246),(253412,33),(253412,40106),(253412,62693),(253450,25345),(253450,5552),(253450,5686),(253450,85047),(253450,85048),(253450,85049),(253626,10255),(253626,13923),(253626,19477),(254024,10102),(254024,163),(254024,288),(254024,34381),(254024,48197),(254024,53326),(254128,12),(254128,34081),(254128,6194),(254128,79),(254470,12026),(254470,12365),(254470,33),(254472,12142),(254472,5754),(254473,23616),(254473,32999),(254473,5358),(254473,6896),(254904,57944),(254904,597),(254904,7295),(255343,10497),(255343,19037),(255343,20339),(255343,63810),(255343,7561),(255343,8676),(256040,57946),(256092,17161),(256092,24032),(256274,33),(256274,66930),(256274,923),(256591,21914),(256591,41624),(256591,47586),(256687,15354),(256687,29152),(256687,29153),(256740,20305),(256740,20306),(256740,20307),(256740,23688),(256740,7720),(256917,21079),(256917,40309),(256924,33603),(256924,6831),(256961,2608),(256961,3045),(256961,34034),(256961,46222),(256961,5),(256961,7431),(256962,7075),(256962,90508),(257087,3172),(257088,10289),(257088,1088),(257088,264),(257088,70993),(257091,4740),(257091,6194),(257211,6194),(257211,735),(257344,2608),(257344,5),(257445,2251),(257445,30246),(257445,333),(257445,34034),(257445,5),(257445,7431),(257445,79),(257932,60714),(258489,2596),(258489,41624),(258489,46339),(258489,552),(258489,79),(258489,86565),(258489,86566),(258509,10930),(258509,22213),(258509,508),(258509,5219),(258509,711),(258755,10026),(258755,32718),(258755,32719),(259693,11565),(259693,12),(259693,31375),(259693,444),(259693,47502),(259693,54392),(259693,76907),(259694,12),(259694,2214),(259694,6127),(259943,20966),(260346,10611),(260346,1115),(260346,11261),(260346,22213),(260346,306),(260346,5358),(260346,6877),(260346,6896),(260346,87854),(260778,11831),(260778,82002),(260947,21110),(261023,10246),(261023,2691),(261023,40106),(261023,41624),(261023,47169),(261023,50481),(261023,5056),(262500,10227),(262500,14440),(262500,24097),(262500,491),(262504,10227),(262504,14440),(262504,1632),(262504,491),(262543,34070),(262543,4434),(264644,2335),(264644,3353),(264644,35846),(264644,41077),(264644,5267),(264644,7493),(264644,806),(264644,82552),(264656,11765),(264656,2322),(264656,6896),(264660,284),(264660,41077),(264660,5726),(264660,9349),(264999,34981),(264999,6194),(265208,1632),(265208,24049),(265208,45980),(265208,49969),(265208,59488),(265208,59490),(265208,972),(266034,3061),(266102,21460),(266102,32201),(266102,5056),(266102,75564),(266102,9987),(266396,11068),(266396,1885),(266396,20664),(266396,35559),(266396,3823),(266396,5358),(266396,58772),(266396,58773),(266396,58774),(266396,694),(266396,9974),(266647,20478),(266647,27711),(266647,41624),(266647,6194),(266856,10163),(267860,10254),(267860,73045),(267860,73046),(267860,74795),(267935,10221),(267935,2),(267935,56),(267935,7294),(267935,7383),(268171,10630),(268171,13235),(268171,22868),(268171,22869),(268171,22870),(268171,5621),(268238,30037),(268238,43),(268238,6735),(268917,26403),(268917,78846),(268917,78847),(268920,12),(268920,15829),(268920,6194),(268920,8411),(269057,50084),(269057,61011),(270303,26995),(270303,52739),(270303,8714),(270487,10163),(270487,2092),(270487,33),(270554,27271),(270938,39075),(270946,521),(271110,264),(271110,3036),(271110,420),(271110,84424),(271110,84425),(271185,23749),(271185,23750),(271185,23751),(271185,23752),(271331,53392),(271331,6844),(271718,10105),(271718,33),(271718,3341),(271718,6452),(271969,19857),(271969,23920),(271969,4),(271969,8411),(272693,4022),(272693,42119),(272693,5490),(272724,4881),(272878,5219),(272878,6194),(272878,83397),(272878,8411),(273248,1811),(273248,215),(273248,308),(273481,1632),(273481,33681),(273481,3528),(273895,3298),(273895,3573),(273895,6708),(273895,7981),(273895,81),(273899,347),(273899,54502),(274167,19177),(274167,4),(274167,4740),(274479,1302),(274479,13184),(274479,22213),(274479,711),(274854,12006),(274854,24097),(274854,2995),(274854,33832),(274854,491),(274854,7154),(274854,72441),(276907,10163),(276907,10246),(276907,20664),(277216,12),(277216,2780),(277216,33),(277216,63924),(277216,63925),(277216,923),(277519,6950),(277685,1038),(277685,3172),(278316,4319),(278927,2),(278927,20478),(278927,3036),(278927,7297),(280092,34),(280381,26679),(280391,4959),(280391,8606),(280871,82667),(281957,10039),(281957,10104),(281957,13796),(281957,28732),(281957,508),(281957,52660),(281957,562),(281957,77845),(281957,8870),(283384,21882),(283384,29098),(283384,29099),(283384,5486),(283445,2514),(283445,3172),(283445,69110),(283445,69111),(283445,7437),(283445,7625),(283445,8147),(283671,15196),(283671,3980),(283671,40642),(283686,12142),(283686,44210),(283686,44211),(283686,6735),(283686,6736),(283686,7062),(283686,8111),(283708,10611),(283708,18367),(283708,21972),(283708,26590),(283708,27123),(283708,311),(283708,32668),(283708,52590),(283708,52591),(283708,52592),(283708,52593),(283708,52594),(283708,52595),(283708,52596),(283708,5358),(283708,5725),(283708,7981),(284293,1422),(284293,26590),(284293,28361),(284293,6831),(284296,10351),(284296,24021),(284296,4),(284536,12252),(284536,4),(284536,8537),(284536,8539),(285743,59006),(285743,59007),(285783,11395),(285783,559),(285783,5752),(285923,10807),(285923,15762),(285923,15763),(285923,15764),(285923,443),(285923,6869),(285923,7289),(285923,7405),(286217,1645),(286217,22213),(286217,2735),(286217,28788),(286217,306),(286217,6408),(286565,711),(286939,37870),(286939,37871),(287424,12075),(287424,1632),(287424,3604),(287424,52924),(287424,52925),(287424,68506),(287424,74208),(287524,16839),(287524,18890),(287524,3347),(287903,33),(287903,923),(287948,6896),(288980,52859),(290370,12467),(290391,26004),(290391,31866),(290391,31867),(290555,49925),(290555,5106),(290555,8147),(290595,10338),(290595,16314),(290595,33),(290751,2605),(290751,290),(290751,47729),(290751,7437),(290751,80834),(290751,88607),(290751,88608),(290751,88609),(290825,16301),(290825,23700),(290825,35043),(290864,2726),(290864,45424),(290864,45425),(291081,163),(291081,181),(291081,2690),(291081,9987),(291270,32542),(291362,32558),(291805,1632),(291805,491),(291805,72441),(291805,7296),(291870,11029),(291870,1632),(291870,1894),(291870,28200),(291870,73666),(291870,90185),(292481,34306),(292483,33836),(292483,33837),(292483,33838),(293644,79433),(293644,9965),(293646,1088),(293646,11317),(293646,24459),(293646,60255),(293660,11307),(293660,22213),(293660,306),(293660,7505),(293660,78091),(293670,11766),(293670,7485),(293863,126),(293863,22107),(293863,737),(294254,12292),(294254,22213),(294254,3672),(294272,2),(294272,3036),(294512,6575),(294512,7571),(295914,40456),(295914,63928),(295964,215),(295964,32243),(295964,36390),(296096,12),(296096,5219),(296096,8411),(296098,22213),(296098,2527),(296098,264),(296098,27),(296098,56),(296098,6735),(296098,711),(296098,7294),(296099,12),(296099,53060),(296099,6363),(297596,20658),(297596,40541),(297621,19850),(297761,429),(297761,444),(297761,507),(297761,6194),(297761,9993),(298312,12236),(298312,3172),(298584,35849),(298584,73192),(298584,73193),(299145,21608),(299245,12),(299245,3172),(299245,4220),(299245,69581),(299552,44241),(299552,44242),(299553,36684),(299553,36685),(299553,56696),(299687,12139),(299687,3281),(299687,34034),(299687,5),(300168,19658),(300168,3407),(300168,36958),(300168,39649),(300168,69484),(300168,74456),(300168,74457),(300168,74458),(300168,74459),(300671,19108),(300671,19477),(300671,4),(300671,6734),(300671,787),(300673,2),(300673,51164),(300673,77739),(300673,78217),(300706,39328),(301325,75277),(301325,75278),(301351,10163),(301365,20580),(301365,2266),(301365,50481),(301365,67574),(301748,29646),(301748,37765),(302156,10254),(302156,1632),(302156,40822),(302156,48738),(302156,6363),(302156,91929),(302579,38147),(302688,12026),(302688,33),(302688,4171),(302688,7429),(302699,12),(302699,13778),(302699,33),(302699,37845),(303858,22695),(303858,3045),(303858,34034),(303858,54454),(303858,559),(304357,288),(304357,8088),(304410,19037),(304410,19491),(304410,23291),(304410,67186),(304410,7561),(304410,819),(304410,83),(306667,39706),(306745,1205),(306745,215),(306745,52053),(307081,1423),(307081,28438),(308529,14718),(308529,86465),(308531,2348),(308531,2481),(308531,4),(308531,47354),(308531,77208),(308639,14638),(308639,15495),(308639,58445),(309425,3308),(309425,34233),(309425,48509),(309425,6427),(309503,34380),(309503,60171),(309503,7503),(309809,15433),(309809,2203),(309809,41042),(309809,59725),(309809,60658),(309809,8858),(309919,61372),(309919,61373),(309919,61374),(309919,61375),(309919,738),(310131,30666),(310131,34456),(310131,41641),(310131,57430),(310131,61011),(310131,6531),(310131,79434),(310131,79435),(310131,79436),(310569,44615),(310569,47462),(310706,826),(312113,44067),(312221,12),(312221,6194),(312221,8411),(312221,88686),(312791,3160),(312793,8146),(313922,1976),(313922,49389),(314365,10039),(314365,33),(314365,42421),(314365,6735),(314365,75807),(314385,39443),(314385,73249),(314385,81),(315011,49301),(315011,5896),(315664,288),(315664,7981),(315664,892),(316002,17888),(316152,1163),(316152,50481),(316152,50482),(316727,2481),(316727,3172),(316727,33),(316727,729),(318040,72942),(318040,72943),(318846,4),(318846,508),(318846,81),(318850,10146),(319069,14911),(319888,264),(319888,306),(319888,5374),(319888,73620),(319910,7294),(320146,51071),(320146,64854),(320146,74293),(321258,126),(321258,18880),(321258,2912),(321258,47729),(321258,829),(321697,1557),(321697,258),(321697,33),(321697,4220),(321697,6708),(321697,923),(321741,1645),(321741,34034),(321741,5),(321741,71170),(321741,71171),(321741,79),(322194,45330),(322194,45331),(322194,45332),(322443,21817),(323675,2780),(323675,33),(323675,49968),(323675,83397),(323676,33),(323677,12686),(323677,50083),(323677,50084),(323677,78218),(324322,80448),(324322,80449),(324322,9158),(324352,46102),(324668,25716),(324668,29313),(324668,31922),(324668,83871),(324668,862),(325133,10338),(325133,16615),(325133,17393),(325133,33),(325173,1872),(325173,4322),(325173,68373),(325173,75142),(325789,68620),(326284,17161),(326284,23283),(326284,56343),(326284,56344),(327833,20613),(327833,23423),(327833,52254),(327833,52255),(327833,52256),(328111,33),(328111,3341),(328111,6452),(328111,6704),(328387,1632),(328387,47706),(328387,79963),(328425,3172),(328425,32299),(328425,39649),(328425,47729),(328425,69542),(329440,32300),(329440,51860),(329440,69579),(329540,10339),(329833,12178),(329833,258),(330770,10611),(330770,11199),(330770,11921),(330770,18367),(330770,25818),(330770,3307),(330770,52184),(330770,5358),(330770,58659),(330770,7395),(330770,76444),(330770,76445),(330770,76446),(330770,76447),(330770,7792),(331190,16322),(331190,30531),(331190,56735),(331190,56736),(331190,65927),(331592,63391),(331592,63392),(332285,20068),(332285,46241),(332285,86523),(332411,2373),(332411,3084),(332411,73316),(332411,76777),(332567,23513),(332567,5),(332567,67069),(333348,23),(333348,4205),(333348,5490),(333355,1),(333355,7899),(333371,11461),(333371,4),(333371,78177),(334074,10254),(334074,54409),(334074,8880),(334074,925),(334527,50490),(334527,50491),(334527,50492),(334531,23596),(334531,50496),(335778,10156),(335778,10285),(335778,5),(335778,59827),(335866,34455),(335866,51235),(336004,10405),(336004,67776),(336004,67777),(336004,67778),(339408,13240),(339408,423),(339408,53155),(339408,551),(339984,559),(339984,5752),(340611,1785),(340816,69292),(342502,60490),(342521,12),(343409,54946),(343795,10405),(343795,68117),(345911,13554),(345911,76907),(345911,8781),(347126,79986),(347548,71899),(347548,71900),(347548,71901),(347764,72861),(347969,2608),(351043,61428),(351819,16313),(352978,3546),(352978,69028),(352978,69029),(352978,7571),(354110,13680),(354110,21012),(354110,8583),(354624,72017),(356216,32475),(356216,4098),(356216,62102),(356483,65834),(356841,35396),(356841,63430),(356987,71702),(357834,62451),(358451,10284),(358451,3393),(358451,3618),(360188,11976),(360339,23513),(360339,63628),(360339,63629),(360339,63630),(361159,3546),(361159,63993),(361398,64143),(361398,64144),(361475,7281),(361475,76846),(361475,76847),(361475,76848),(362105,68467),(362765,64898),(364083,65589),(365052,66152),(365222,4054),(367551,10393),(367551,20277),(367551,6353),(367961,3451),(370464,4616),(370662,8796),(370980,45724),(371690,82624),(373314,1632),(373314,59367),(374461,19456),(374461,39644),(374461,82598),(375290,35063),(375290,3522),(375290,3942),(375950,45969),(375950,5125),(375950,68543),(375950,80017),(375950,83),(376010,72018),(376659,47729),(376659,78996),(376659,90185),(378200,1632),(378200,72634),(378237,72267),(379532,39706),(380733,60954),(380733,72741),(381902,9175),(385383,74413),(385636,34679),(385636,48130),(385736,26995),(385736,2903),(385736,37432),(389425,3495),(389425,35625),(394047,37081),(394047,79279),(402515,44632),(407887,3965),(417859,7),(433715,85248),(447027,41671),(459488,60343);
/*!40000 ALTER TABLE `movie_company` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `movie_crew`
--
DROP TABLE IF EXISTS `movie_crew`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `movie_crew` (
`movie_id` int(10) DEFAULT NULL,
`person_id` int(10) DEFAULT NULL,
`department_id` int(10) DEFAULT NULL,
`job` varchar(200) DEFAULT NULL,
KEY `fk_mcr_movie` (`movie_id`),
KEY `fk_mcr_per` (`person_id`),
KEY `fk_mcr_dept` (`department_id`),
CONSTRAINT `fk_mcr_dept` FOREIGN KEY (`department_id`) REFERENCES `department` (`department_id`),
CONSTRAINT `fk_mcr_movie` FOREIGN KEY (`movie_id`) REFERENCES `movie` (`movie_id`),
CONSTRAINT `fk_mcr_per` FOREIGN KEY (`person_id`) REFERENCES `person` (`person_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `movie_crew`
--
LOCK TABLES `movie_crew` WRITE;
/*!40000 ALTER TABLE `movie_crew` DISABLE KEYS */;
INSERT INTO `movie_crew` VALUES (285,120,1,'Director of Photography'),(285,1704,2,'Director'),(285,770,3,'Producer'),(285,1705,4,'Screenplay'),(285,1706,4,'Screenplay'),(285,1721,5,'Editor'),(285,1722,5,'Editor'),(285,947,6,'Original Music Composer'),(285,2444,3,'Executive Producer'),(285,2445,3,'Producer'),(285,2446,3,'Producer'),(285,2447,3,'Producer'),(285,2448,3,'Producer'),(285,2215,3,'Casting'),(285,1226,7,'Production Design'),(285,553,7,'Art Direction'),(285,3311,3,'Casting'),(285,4032,7,'Set Decoration'),(285,4033,8,'Costume Design'),(285,4034,8,'Costume Design'),(285,5132,6,'Music Supervisor'),(285,146439,7,'Conceptual Design'),(285,406204,8,'Makeup Department Head'),(285,1259516,9,'Stunts'),(285,1336716,9,'CGI Supervisor'),(285,1344278,2,'Script Supervisor'),(285,1368867,9,'Special Effects Coordinator'),(285,1368884,6,'Music Editor'),(285,1395290,2,'Script Supervisor'),(285,1399327,6,'Music Editor'),(285,1400738,2,'Script Supervisor'),(285,1534197,6,'Music Editor'),(559,6410,3,'Casting'),(559,10570,3,'Executive Producer'),(559,7623,4,'Screenplay'),(559,7623,2,'Director'),(559,7624,4,'Author'),(559,7624,3,'Executive Producer'),(559,7625,4,'Author'),(559,7712,5,'Editor'),(559,7627,3,'Producer'),(559,7626,3,'Producer'),(559,11411,7,'Production Design'),(559,11386,8,'Costume Design'),(559,7630,4,'Screenplay'),(559,10850,3,'Executive Producer'),(559,9341,1,'Director of Photography'),(559,7628,3,'Producer'),(559,7629,4,'Screenplay'),(559,19155,6,'Original Music Composer'),(559,19156,3,'Casting'),(559,13304,7,'Production Design'),(559,19157,7,'Set Decoration'),(559,19158,8,'Costume Design'),(559,12770,3,'Unit Production Manager'),(559,13586,7,'Art Direction'),(559,14349,7,'Art Direction'),(559,38939,3,'Production Manager'),(559,66689,7,'Art Direction'),(559,963355,7,'Art Direction'),(559,1172443,1,'Still Photographer'),(559,1227450,3,'Casting Assistant'),(559,1339433,3,'Production Coordinator'),(559,1339436,7,'Set Designer'),(559,1339468,2,'Script Supervisor'),(559,1357047,7,'Set Designer'),(559,1360094,7,'Set Designer'),(559,1377133,1,'Still Photographer'),(559,1378224,7,'Set Designer'),(559,1386908,7,'Set Designer'),(559,1392895,7,'Set Designer'),(559,1393226,3,'Production Coordinator'),(559,1395435,7,'Set Designer'),(559,1400065,7,'Set Designer'),(559,1451676,9,'Visual Effects Editor'),(559,1533708,3,'Production Supervisor'),(559,1553559,3,'Production Coordinator'),(559,1614178,7,'Set Designer'),(559,1648111,3,'Location Manager'),(559,1684384,3,'Location Manager'),(559,1735078,3,'Casting Assistant'),(559,1735079,3,'Casting Assistant'),(559,1781374,3,'Casting Assistant'),(559,1781376,3,'Casting Assistant'),(559,1781378,3,'Casting Associate'),(559,1781379,7,'Location Scout'),(559,1781381,7,'Title Designer'),(559,1781382,3,'Production Coordinator'),(767,2423,1,'Director of Photography'),(767,5331,7,'Set Decoration'),(767,5491,7,'Production Design'),(767,10966,4,'Novel'),(767,10967,4,'Screenplay'),(767,10968,3,'Producer'),(767,10710,7,'Supervising Art Director'),(767,11225,7,'Art Direction'),(767,11227,8,'Costume Design'),(767,11295,3,'Casting'),(767,11296,7,'Art Direction'),(767,11343,2,'Director'),(767,11344,6,'Original Music Composer'),(767,11345,5,'Editor'),(767,65614,3,'Producer'),(767,89320,3,'Producer'),(767,41289,3,'Executive Producer'),(767,89383,7,'Art Direction'),(767,89384,7,'Art Direction'),(767,89385,7,'Art Direction'),(767,89386,7,'Art Direction'),(767,1389548,2,'Script Supervisor'),(767,1393448,1,'Still Photographer'),(767,1408843,5,'First Assistant Editor'),(767,1473175,5,'First Assistant Editor'),(767,1551777,8,'Assistant Costume Designer'),(767,1568519,6,'Production Sound Mixer'),(1452,3276,3,'Casting'),(1452,3805,3,'Producer'),(1452,13192,3,'Production Manager'),(1452,10953,3,'Producer'),(1452,9032,2,'Director'),(1452,9032,3,'Producer'),(1452,9032,4,'Story'),(1452,9039,5,'Editor'),(1452,9039,6,'Original Music Composer'),(1452,9040,1,'Director of Photography'),(1452,11012,4,'Screenplay'),(1452,11012,4,'Story'),(1452,20007,4,'Characters'),(1452,20008,4,'Characters'),(1452,21697,3,'Executive Producer'),(1452,54211,3,'Executive Producer'),(1452,54212,3,'Executive Producer'),(1452,11017,5,'Editor'),(1452,60245,3,'Executive Producer'),(1452,61624,3,'Casting'),(1452,11013,4,'Screenplay'),(1452,11013,4,'Story'),(1452,1121617,3,'Co-Producer'),(1452,1271644,7,'Production Design'),(58,120,1,'Director of Photography'),(58,1704,2,'Director'),(58,770,3,'Producer'),(58,1705,4,'Screenplay'),(58,1705,4,'Author'),(58,1706,4,'Screenplay'),(58,1706,4,'Author'),(58,1721,5,'Editor'),(58,1722,5,'Editor'),(58,947,6,'Original Music Composer'),(58,2443,3,'Executive Producer'),(58,2444,3,'Executive Producer'),(58,2445,3,'Executive Producer'),(58,2446,3,'Executive Producer'),(58,2447,3,'Producer'),(58,2448,3,'Producer'),(58,2215,3,'Casting'),(58,1226,7,'Production Design'),(58,146439,7,'Conceptual Design'),(58,406204,8,'Makeup Department Head'),(58,1368867,10,'Special Effects Supervisor'),(58,1424894,8,'Hairstylist'),(58,1454884,10,'Visual Effects'),(2454,1326,3,'Casting'),(2454,2073,3,'Casting'),(2454,4854,3,'Associate Producer'),(2454,4856,3,'Associate Producer'),(2454,5162,3,'Producer'),(2454,5524,4,'Screenplay'),(2454,5524,2,'Director'),(2454,5524,3,'Producer'),(2454,5525,4,'Novel'),(2454,5541,3,'Producer'),(2454,5542,5,'Editor'),(2454,5543,3,'Co-Producer'),(2454,5544,3,'Executive Producer'),(2454,5545,3,'Co-Producer'),(2454,5547,7,'Production Design'),(2454,5548,7,'Set Decoration'),(2454,5549,8,'Costume Design'),(2454,5551,4,'Screenplay'),(2454,5552,4,'Screenplay'),(2454,5553,6,'Original Music Composer'),(2454,8677,1,'Director of Photography'),(2454,9420,7,'Art Direction'),(2454,12579,1,'Still Photographer'),(2454,33931,9,'Second Unit Cinematographer'),(2454,25137,3,'Casting'),(2454,25729,3,'Casting'),(2454,29609,7,'Art Direction'),(2454,37299,7,'Art Direction'),(2454,37301,7,'Supervising Art Director'),(2454,71577,7,'Art Direction'),(2454,71579,7,'Art Direction'),(2454,77730,7,'Art Direction'),(2454,132596,7,'Art Direction'),(2454,132648,8,'Set Costumer'),(2454,213665,3,'Associate Producer'),(2454,962164,7,'Art Direction'),(2454,979175,9,'Second Unit Cinematographer'),(2454,1014915,3,'Casting Associate'),(2454,1037310,1,'Camera Operator'),(2454,1117945,3,'Line Producer'),(2454,1117946,3,'Line Producer'),(2454,1117947,5,'Editor'),(2454,1323281,8,'Costume Supervisor'),(2454,1327838,9,'Armorer'),(2454,1334420,7,'Art Direction'),(2454,1337411,6,'Music Editor'),(2454,1389541,11,'Gaffer'),(2454,1390382,6,'Music Editor'),(2454,1391730,1,'Still Photographer'),(2454,1392245,1,'Still Photographer'),(2454,1393282,7,'Art Department Coordinator'),(2454,1394072,1,'Steadicam Operator'),(2454,1394073,1,'Camera Operator'),(2454,1394117,7,'Art Department Coordinator'),(2454,1398935,11,'Gaffer'),(2454,1401803,10,'Visual Effects Supervisor'),(2454,1404739,1,'Helicopter Camera'),(2454,1405219,6,'Music Editor'),(2454,1405241,1,'Helicopter Camera'),(2454,1408834,11,'Rigging Gaffer'),(2454,1412990,1,'Camera Operator'),(2454,1417999,8,'Set Costumer'),(2454,1425500,1,'Camera Operator'),(2454,1425503,11,'Gaffer'),(2454,1430496,1,'Still Photographer'),(2454,1447503,10,'Modeling'),(2454,1447518,9,'Stunts'),(2454,1447524,7,'Conceptual Design'),(2454,1452991,10,'Animation'),(2454,1455486,2,'Assistant Director'),(2454,1459657,6,'Orchestrator'),(2454,1460588,9,'Special Effects'),(2454,1477203,3,'Associate Producer'),(2454,1483583,2,'Script Supervisor'),(2454,1515651,6,'Orchestrator'),(2454,1554878,7,'Art Department Coordinator'),(2454,1554879,9,'Armorer'),(2454,1554883,8,'Costume Supervisor'),(2454,1554884,8,'Set Costumer'),(2454,1554885,8,'Set Costumer'),(2454,1554886,6,'Orchestrator'),(2454,1554887,11,'Gaffer'),(2454,1554889,1,'Underwater Camera'),(1865,120,1,'Director of Photography'),(1865,770,3,'Producer'),(1865,1705,4,'Screenplay'),(1865,1706,4,'Screenplay'),(1865,1706,3,'Executive Producer'),(1865,947,6,'Original Music Composer'),(1865,2444,3,'Executive Producer'),(1865,2446,3,'Executive Producer'),(1865,900,6,'Sound Re-Recording Mixer'),(1865,4034,8,'Costume Design'),(1865,5132,6,'Music Supervisor'),(1865,6051,5,'Editor'),(1865,8159,6,'Supervising Sound Editor'),(1865,8165,6,'Sound Effects Editor'),(1865,10122,3,'Executive Producer'),(1865,14915,7,'Set Decoration'),(1865,11002,7,'Production Design'),(1865,17633,2,'Director'),(1865,113073,6,'Sound Re-Recording Mixer'),(1865,68016,6,'Orchestrator'),(1865,406204,8,'Makeup Department Head'),(1865,1255687,3,'Executive Producer'),(1865,1351274,7,'Set Decoration'),(1865,1352966,5,'Dialogue Editor'),(1865,1352968,5,'Dialogue Editor'),(1865,1355532,2,'Script Supervisor'),(1865,1368849,5,'Editor'),(1865,1368884,6,'Music Editor'),(1865,1368884,6,'Music Supervisor'),(1865,1378168,6,'Supervising Sound Editor'),(1865,1393883,1,'Still Photographer'),(1865,1399117,6,'Sound Effects Editor'),(1865,1399327,6,'Music Editor'),(1865,1401786,6,'Sound Effects Editor'),(1865,1415617,6,'Sound Effects Editor'),(1865,1463182,10,'VFX Artist'),(1865,1463185,9,'Compositors'),(1865,1483850,6,'Music Editor'),(1865,1545540,6,'Production Sound Mixer'),(1930,6410,3,'Casting'),(1930,892,1,'Director of Photography'),(1930,950,5,'Editor'),(1930,1729,6,'Original Music Composer'),(1930,6209,8,'Costume Design'),(1930,7624,3,'Executive Producer'),(1930,7624,4,'Characters'),(1930,7625,4,'Characters'),(1930,7627,3,'Producer'),(1930,7626,3,'Producer'),(1930,7630,4,'Screenplay'),(1930,10850,3,'Executive Producer'),(1930,13304,7,'Production Design'),(1930,19157,7,'Set Decoration'),(1930,8159,6,'Sound Designer'),(1930,8159,6,'Supervising Sound Editor'),(1930,10967,4,'Screenplay'),(1930,15017,8,'Makeup Department Head'),(1930,15024,9,'Stunt Coordinator'),(1930,15026,9,'Stunt Coordinator'),(1930,14349,7,'Supervising Art Director'),(1930,42032,1,'Camera Operator'),(1930,18867,7,'Art Direction'),(1930,20204,4,'Screenplay'),(1930,20204,4,'Story'),(1930,42261,10,'Visual Effects Supervisor'),(1930,30383,3,'Executive Producer'),(1930,113046,6,'Sound Re-Recording Mixer'),(1930,113073,6,'Sound Re-Recording Mixer'),(1930,60223,7,'Art Direction'),(1930,66519,5,'Editor'),(1930,81731,7,'Assistant Art Director'),(1930,87742,2,'Director'),(1930,406204,8,'Makeup Department Head'),(1930,928975,6,'Sound mixer'),(1930,958087,7,'Assistant Art Director'),(1930,963355,7,'Art Direction'),(1930,977941,3,'Producer'),(1930,988882,7,'Set Designer'),(1930,1227173,6,'Foley'),(1930,1329112,8,'Makeup Department Head'),(1930,1329113,8,'Costume Supervisor'),(1930,1329114,8,'Costume Supervisor'),(1930,1339455,8,'Set Costumer'),(1930,1340742,10,'Visual Effects Producer'),(1930,1347728,9,'Scenic Artist'),(1930,1347760,9,'Dialect Coach'),(1930,1355526,7,'Leadman'),(1930,1355530,7,'Sculptor'),(1930,1355531,2,'Script Supervisor'),(1930,1357058,9,'Property Master'),(1930,1360094,7,'Set Designer'),(1930,1360097,5,'Dialogue Editor'),(1930,1360101,6,'Foley'),(1930,1360103,6,'Sound Designer'),(1930,1360103,6,'Supervising Sound Editor'),(1930,1360107,10,'Visual Effects Supervisor'),(1930,1368875,10,'Visual Effects Producer'),(1930,1377132,1,'Camera Operator'),(1930,1377132,1,'Steadicam Operator'),(1930,1378672,7,'Construction Coordinator'),(1930,1388874,10,'Visual Effects Producer'),(1930,1391749,7,'Art Department Coordinator'),(1930,1392143,8,'Set Costumer'),(1930,1392145,6,'Music Editor'),(1930,1395368,11,'Gaffer'),(1930,1395446,6,'Sound Re-Recording Mixer'),(1930,1399288,7,'Art Department Coordinator'),(1930,1399289,7,'Assistant Art Director'),(1930,1399290,7,'Set Designer'),(1930,1399291,7,'Set Designer'),(1930,1399292,7,'Set Designer'),(1930,1399293,7,'Set Designer'),(1930,1399299,9,'Visual Effects Editor'),(1930,1399300,9,'Visual Effects Editor'),(1930,1399301,10,'Visual Effects Supervisor'),(1930,1399302,9,'Visual Effects Editor'),(1930,1399303,10,'Visual Effects Supervisor'),(1930,1399304,9,'Visual Effects Editor'),(1930,1399305,10,'Visual Effects Supervisor'),(1930,1399310,10,'Visual Effects Producer'),(1930,1399313,10,'Visual Effects Producer'),(1930,1399314,10,'Visual Effects Producer'),(1930,1399315,10,'Visual Effects Producer'),(1930,1399316,11,'Gaffer'),(1930,1399317,1,'Camera Operator'),(1930,1399318,1,'Camera Operator'),(1930,1399319,1,'Still Photographer'),(1930,1399320,8,'Set Costumer'),(1930,1399321,8,'Set Costumer'),(1930,1399322,8,'Set Costumer'),(1930,1399323,8,'Set Costumer'),(1930,1399324,8,'Set Costumer'),(1930,1399325,8,'Set Costumer'),(1930,1399326,6,'Music Editor'),(1930,1399327,6,'Music Editor'),(1930,1399328,9,'Transportation Coordinator'),(1930,1447543,10,'VFX Artist'),(1930,1451676,10,'Visual Effects'),(1930,1453022,10,'Animation'),(1930,1455598,10,'Animation'),(1930,1463182,10,'VFX Artist'),(1930,1463185,9,'Compositors'),(1930,1638177,9,'Visual Effects Editor'),(1930,1767709,10,'Visual Effects'),(1930,1767710,10,'Visual Effects'),(2268,8384,7,'Set Decoration'),(2268,1309,3,'Executive Producer'),(2268,1311,3,'Executive Producer'),(2268,4248,7,'Production Design'),(2268,2949,6,'Original Music Composer'),(2268,3288,4,'Screenplay'),(2268,3288,2,'Director'),(2268,3289,3,'Executive Producer'),(2268,13663,3,'Executive Producer'),(2268,6346,5,'Editor'),(2268,8285,7,'Art Direction'),(2268,9820,7,'Art Direction'),(2268,11295,3,'Casting'),(2268,19310,8,'Costume Design'),(2268,10830,3,'Executive Producer'),(2268,23419,4,'Novel'),(2268,23420,3,'Producer'),(2268,23421,3,'Producer'),(2268,23422,1,'Director of Photography'),(2268,23424,3,'Casting'),(2268,23425,7,'Art Direction'),(2268,23426,8,'Makeup Artist'),(2268,23427,8,'Makeup Artist'),(2268,23768,3,'Executive Producer'),(2268,45584,3,'Executive Producer'),(2268,44006,9,'Stunt Coordinator'),(2268,1421657,1,'Still Photographer'),(2268,1453019,10,'Animation'),(2268,1453021,10,'Animation'),(2268,1453943,11,'Lighting Technician'),(2268,1455461,11,'Lighting Artist'),(2268,1462919,2,'Script Supervisor'),(254,1213,6,'Original Music Composer'),(254,108,2,'Director'),(254,108,4,'Author'),(254,108,3,'Producer'),(254,126,4,'Author'),(254,126,3,'Producer'),(254,128,4,'Author'),(254,1313,1,'Director of Photography'),(254,1314,7,'Production Design'),(254,1316,7,'Art Direction'),(254,1324,3,'Casting'),(254,1325,3,'Casting'),(254,1326,3,'Casting'),(254,1373,9,'Supervising Art Director'),(254,1390,5,'Editor'),(254,3499,6,'Original Music Composer'),(254,3500,6,'Original Music Composer'),(254,3501,3,'Casting'),(254,3502,8,'Costume Design'),(254,3503,6,'Sound Designer'),(254,3504,6,'Sound Designer'),(254,3505,3,'Producer'),(254,3506,3,'Producer'),(254,33303,7,'Art Direction'),(254,52164,8,'Hair Designer'),(254,52164,8,'Makeup Designer'),(254,132613,9,'Armorer'),(254,1330570,8,'Costume Supervisor'),(254,1401803,10,'3D Supervisor'),(254,1424641,2,'Script Supervisor'),(254,1447518,9,'Stunts'),(254,1447543,10,'Visual Effects'),(254,1452932,10,'Animation'),(254,1470982,2,'Script Supervisor'),(254,1546431,7,'Art Department Manager'),(254,1557503,7,'Art Department Coordinator'),(254,1557507,8,'Assistant Costume Designer'),(254,1557509,9,'Choreographer'),(597,1262,3,'Casting'),(597,1729,6,'Original Music Composer'),(597,2710,4,'Screenplay'),(597,2710,2,'Director'),(597,2710,5,'Editor'),(597,2710,3,'Producer'),(597,8524,7,'Production Design'),(597,3985,5,'Editor'),(597,3987,5,'Editor'),(597,8523,1,'Director of Photography'),(597,8525,7,'Art Direction'),(597,8526,7,'Set Decoration'),(597,8527,8,'Costume Design'),(597,8528,3,'Unit Production Manager'),(597,8528,3,'Co-Producer'),(597,8529,3,'Producer'),(597,8529,3,'Unit Production Manager'),(597,8530,3,'Unit Production Manager'),(597,8531,3,'Unit Production Manager'),(597,8532,9,'Post Production Supervisor'),(597,8533,3,'Production Supervisor'),(597,21567,3,'Executive Producer'),(597,22059,3,'Casting'),(597,22059,3,'Casting Associate'),(597,50726,9,'Makeup Effects'),(597,79253,8,'Assistant Costume Designer'),(597,96884,3,'Co-Producer'),(597,117206,8,'Key Hair Stylist'),(597,142325,9,'Stunt Coordinator'),(597,567283,5,'Dialogue Editor'),(597,964601,8,'Key Set Costumer'),(597,1291347,3,'Casting Associate'),(597,1322392,8,'Costume Supervisor'),(597,1322393,8,'Costume Supervisor'),(597,1329477,8,'Key Set Costumer'),(597,1376902,5,'Dialogue Editor'),(597,1377133,1,'Still Photographer'),(597,1389534,5,'Dialogue Editor'),(597,1392145,6,'Music Editor'),(597,1395269,10,'Visual Effects'),(597,1412756,9,'Visual Effects Editor'),(597,1414090,8,'Key Makeup Artist'),(597,1416446,8,'Key Hair Stylist'),(597,1427838,1,'Steadicam Operator'),(597,1438399,5,'Dialogue Editor'),(597,1456696,9,'Compositors'),(597,1512019,3,'Associate Producer'),(597,1535308,11,'Rigging Gaffer'),(597,1535309,6,'Music Supervisor'),(597,1535949,8,'Assistant Costume Designer'),(597,1680739,9,'Stunts'),(597,1711440,8,'Key Makeup Artist'),(597,1727828,7,'Construction Coordinator'),(597,1732639,7,'Art Department Coordinator'),(597,1732641,7,'Art Department Coordinator'),(597,1732642,7,'Construction Coordinator'),(597,1732643,7,'Construction Coordinator'),(597,1732743,3,'Casting Associate'),(597,1732744,3,'Casting Associate'),(597,1732745,3,'Casting Associate'),(597,1732746,3,'Casting Associate'),(597,1732750,8,'Key Set Costumer'),(597,1732751,8,'Seamstress'),(597,1732753,8,'Key Set Costumer'),(597,1732756,8,'Key Hair Stylist'),(558,531,6,'Original Music Composer'),(558,1221,3,'Casting'),(558,1305,6,'Music Editor'),(558,7237,7,'Set Decoration'),(558,10570,3,'Executive Producer'),(558,7623,2,'Director'),(558,7624,3,'Executive Producer'),(558,7624,4,'Story'),(558,7625,4,'Comic Book'),(558,7712,5,'Editor'),(558,7627,3,'Producer'),(558,7626,3,'Producer'),(558,11411,7,'Production Design'),(558,11386,8,'Costume Design'),(558,7630,4,'Screenplay'),(558,20643,3,'Producer'),(558,10850,3,'Executive Producer'),(558,9341,1,'Director of Photography'),(558,7628,3,'Co-Producer'),(558,8684,9,'Stunt Coordinator'),(558,8684,9,'Second Unit Cinematographer'),(558,9437,9,'Stunts'),(558,9437,9,'Utility Stunts'),(558,9649,7,'Art Direction'),(558,8762,6,'Sound Editor'),(558,9639,7,'Art Direction'),(558,14046,9,'Special Effects Coordinator'),(558,13223,5,'Color Timer'),(558,70778,3,'Executive Producer'),(558,18923,4,'Screenstory'),(558,18924,4,'Screenstory'),(558,35630,11,'Electrician'),(558,39038,7,'Art Direction'),(558,38335,9,'Additional Music'),(558,38939,3,'Unit Production Manager'),(558,63293,7,'Art Direction'),(558,64606,3,'Casting Associate'),(558,67758,4,'Screenstory'),(558,75485,8,'Hairstylist'),(558,91042,1,'Helicopter Camera'),(558,91246,9,'Driver'),(558,143894,2,'Assistant Director'),(558,224388,7,'Art Direction'),(558,403314,9,'Special Effects'),(558,543194,8,'Costume Design'),(558,891426,5,'First Assistant Editor'),(558,959055,5,'Assistant Editor'),(558,1073838,8,'Makeup Artist'),(558,1319166,8,'Makeup Department Head'),(558,1327524,7,'Assistant Art Director'),(558,1339465,9,'Transportation Coordinator'),(558,1339468,2,'Script Supervisor'),(558,1340095,6,'Sound Effects Editor'),(558,1347725,9,'Scenic Artist'),(558,1368825,6,'Sound Mixer'),(558,1376887,7,'Set Designer'),(558,1377215,9,'Property Master'),(558,1389129,7,'Art Department Assistant'),(558,1391389,1,'Still Photographer'),(558,1392088,10,'Visual Effects Supervisor'),(558,1392104,10,'Visual Effects Producer'),(558,1392973,1,'Steadicam Operator'),(558,1394950,6,'Sound Designer'),(558,1394950,6,'Supervising Sound Editor'),(558,1395437,7,'Sculptor'),(558,1400365,7,'Leadman'),(558,1404288,1,'Camera Operator'),(558,1407233,8,'Assistant Costume Designer'),(558,1412211,9,'Picture Car Coordinator'),(558,1413169,6,'Scoring Mixer'),(558,1415635,11,'Rigging Gaffer'),(558,1425914,9,'Visual Effects Editor'),(558,1428582,8,'Hair Department Head'),(558,1437161,10,'Visual Effects'),(558,1447333,9,'Set Medic'),(558,1452614,8,'Key Hair Stylist'),(558,1453174,7,'Construction Coordinator'),(558,1457950,6,'First Assistant Sound Editor'),(558,1460488,7,'Art Department Manager'),(558,1461175,1,'Camera Technician'),(558,1523539,9,'Sequence Leads'),(558,1528022,9,'Carpenter'),(558,1533708,3,'Production Supervisor'),(558,1536878,1,'First Assistant Camera'),(558,1536946,8,'Hairstylist'),(558,1537103,7,'Art Department Coordinator'),(558,1537850,10,'Special Effects Supervisor'),(558,1538032,11,'Lighting Technician'),(558,1538448,9,'Transportation Co-Captain'),(558,1543228,11,'Gaffer'),(558,1546875,6,'Foley'),(558,1546881,11,'Rigging Grip'),(558,1548694,9,'Sound Recordist'),(558,1551815,6,'Orchestrator'),(558,1553642,9,'Quality Control Supervisor'),(558,1555027,11,'Best Boy Electric'),(558,1558211,9,'Production Office Assistant'),(558,1563428,6,'Production Sound Mixer'),(558,1573089,9,'Chef'),(558,1582427,4,'Storyboard'),(558,1584963,7,'Painter'),(558,1593981,9,'Craft Service'),(558,1606370,1,'Grip'),(558,1608791,9,'Set Production Assistant'),(558,1619094,3,'Publicist'),(558,1619972,7,'Production Illustrator'),(558,1619977,9,'CG Supervisor'),(558,1640909,10,'Digital Compositors'),(558,1662743,10,'Visual Effects Coordinator'),(558,1684385,3,'Production Coordinator'),(558,1684969,7,'Construction Foreman'),(558,1684970,7,'Location Scout'),(558,1684977,7,'Standby Painter'),(558,1684982,8,'Seamstress'),(558,1684983,8,'Set Costumer'),(558,1684985,8,'Set Dressing Artist'),(558,1684987,9,'Loader'),(558,1684988,9,'Production Controller'),(558,1684989,9,'Production Intern'),(558,1684992,9,'Propmaker'),(558,1684997,9,'Software Engineer'),(558,1685001,9,'Stand In'),(558,1685003,9,'Systems Administrators & Support'),(558,1685014,3,'Location Manager'),(558,1685015,3,'Production Accountant'),(558,1685017,6,'Boom Operator'),(558,1685021,9,'Studio Teachers'),(558,1685022,9,'Digital Producer'),(8373,2215,3,'Casting'),(8373,488,3,'Executive Producer'),(8373,10816,5,'Editor'),(8373,865,2,'Director'),(8373,865,3,'Executive Producer'),(8373,3183,3,'Producer'),(8373,5545,3,'Associate Producer'),(8373,9987,3,'Producer'),(8373,10952,3,'Producer'),(8373,15244,4,'Screenplay'),(8373,8527,8,'Costume Design'),(8373,9817,7,'Production Design'),(8373,9819,7,'Supervising Art Director'),(8373,10118,3,'Co-Producer'),(8373,10123,5,'Editor'),(8373,10125,7,'Set Decoration'),(8373,13245,5,'Editor'),(8373,42034,6,'Sound Re-Recording Mixer'),(8373,18264,6,'Original Music Composer'),(8373,10994,3,'Producer'),(8373,24308,3,'Executive Producer'),(8373,24309,3,'Executive Producer'),(8373,24311,5,'Editor'),(8373,21122,6,'Music Editor'),(8373,113054,6,'Sound Effects Editor'),(8373,60945,3,'Co-Producer'),(8373,62722,3,'Associate Producer'),(8373,63310,1,'Director of Photography'),(8373,68016,6,'Orchestrator'),(8373,1186279,1,'Camera Operator'),(8373,1186279,1,'Steadicam Operator'),(8373,1191452,9,'Stunts'),(8373,1319844,8,'Costume Supervisor'),(8373,1323090,8,'Makeup Department Head'),(8373,1345594,6,'Sound Effects Editor'),(8373,1378695,6,'Supervising Sound Editor'),(8373,1378696,6,'Supervising Sound Editor'),(8373,1389129,7,'Art Department Coordinator'),(8373,1400738,2,'Script Supervisor'),(8373,1400741,8,'Hair Department Head'),(8373,1401563,5,'Dialogue Editor'),(8373,1403490,6,'Music Editor'),(8373,1413091,5,'Dialogue Editor'),(8373,1425978,6,'Sound Re-Recording Mixer'),(8373,1433721,6,'Sound Effects Editor'),(8373,1445842,1,'Still Photographer'),(8373,1447543,9,'Digital Effects Supervisor'),(8373,1451992,6,'Sound Effects Editor'),(8373,1459736,10,'Animation'),(8373,1459743,10,'Animation'),(8373,1460608,10,'Animation'),(8373,1463568,9,'Digital Effects Supervisor'),(8373,1477203,3,'Associate Producer'),(8373,1511737,6,'Sound Mixer'),(8373,1552521,9,'Stunts'),(534,531,6,'Original Music Composer'),(534,1305,6,'Music Editor'),(534,3986,3,'Executive Producer'),(534,3987,5,'Editor'),(534,7214,4,'Writer'),(534,7215,4,'Writer'),(534,7228,3,'Executive Producer'),(534,5392,8,'Costume Design'),(534,6055,7,'Set Decoration'),(534,6959,3,'Casting'),(534,6923,7,'Art Direction'),(534,36425,2,'Director'),(534,8525,7,'Production Design'),(534,9776,3,'Co-Producer'),(534,16177,6,'Sound Re-Recording Mixer'),(534,16994,6,'Sound Effects Editor'),(534,20295,3,'Producer'),(534,20908,3,'Producer'),(534,56967,3,'Executive Producer'),(534,66692,8,'Hair Department Head'),(534,57126,1,'Director of Photography'),(534,63289,3,'Associate Producer'),(534,112690,3,'Executive Producer'),(534,68435,3,'Executive Producer'),(534,81835,3,'Associate Producer'),(534,87169,4,'Storyboard'),(534,81142,3,'Producer'),(534,113981,3,'Associate Producer'),(534,227360,8,'Makeup Department Head'),(534,961165,3,'Casting'),(534,964905,3,'Producer'),(534,1024904,3,'Executive Producer'),(534,1321589,8,'Costume Supervisor'),(534,1339468,2,'Script Supervisor'),(534,1347763,1,'Camera Operator'),(534,1355529,7,'Art Department Coordinator'),(534,1357059,5,'Dialogue Editor'),(534,1360099,6,'Sound Effects Editor'),(534,1367494,6,'Sound Designer'),(534,1377220,6,'Sound Re-Recording Mixer'),(534,1377228,1,'Steadicam Operator'),(534,1395275,1,'Still Photographer'),(534,1401824,3,'Production Supervisor'),(534,1408301,6,'Sound Designer'),(534,1424167,6,'Supervising Sound Editor'),(534,1447543,9,'Digital Effects Supervisor'),(534,1472587,3,'Production Manager'),(534,1472587,3,'Associate Producer'),(534,1547309,6,'Production Sound Mixer'),(534,1550851,9,'Stunt Coordinator'),(534,1551483,3,'Associate Producer'),(534,1551484,9,'Transportation Captain'),(534,1551485,9,'Transportation Coordinator'),(534,1551486,1,'First Assistant Camera'),(534,1551487,5,'First Assistant Editor'),(9543,8386,3,'Unit Production Manager'),(9543,770,3,'Producer'),(9543,2444,3,'Executive Producer'),(9543,2445,3,'Executive Producer'),(9543,2446,3,'Executive Producer'),(9543,294,5,'Editor'),(9543,493,5,'Editor'),(9543,1300,3,'Executive Producer'),(9543,1302,3,'Casting'),(9543,2702,1,'Director of Photography'),(9543,3503,6,'Sound Effects Editor'),(9543,4034,8,'Costume Design'),(9543,5553,6,'Original Music Composer'),(9543,7203,7,'Production Design'),(9543,9154,5,'Editor'),(9543,10723,2,'Director'),(9543,12787,7,'Set Decoration'),(9543,52358,4,'Screenplay'),(9543,57465,3,'Executive Producer'),(9543,62439,9,'Choreographer'),(9543,59621,3,'Executive Producer'),(9543,59621,4,'Screenstory'),(9543,81203,4,'Screenplay'),(9543,121479,4,'Screenplay'),(9543,579405,6,'Sound Re-Recording Mixer'),(9543,1074163,9,'Stunt Coordinator'),(9543,1299405,5,'Dialogue Editor'),(9543,1337411,6,'Music Editor'),(9543,1339460,6,'Music Editor'),(9543,1378168,6,'Supervising Sound Editor'),(9543,1378171,6,'Sound Re-Recording Mixer'),(9543,1386920,1,'Still Photographer'),(9543,1390382,6,'Music Editor'),(9543,1394129,6,'Sound Designer'),(9543,1394129,6,'Supervising Sound Editor'),(9543,1399117,6,'Sound Effects Editor'),(9543,1401786,6,'Sound Effects Editor'),(9543,1405219,6,'Music Editor'),(9543,1408311,5,'Dialogue Editor'),(9543,1408799,6,'Sound Effects Editor'),(9543,1410205,2,'Script Supervisor'),(9543,1414177,6,'Sound Effects Editor'),(9543,1415617,6,'Sound Effects Editor'),(9543,1525888,8,'Hair Designer'),(9543,1531504,6,'Music Editor'),(9543,1553743,6,'Sound mixer'),(217,1,3,'Executive Producer'),(217,1,4,'Story'),(217,1,4,'Characters'),(217,491,6,'Original Music Composer'),(217,488,2,'Director'),(217,489,3,'Executive Producer'),(217,492,1,'Director of Photography'),(217,493,5,'Editor'),(217,508,4,'Screenplay'),(217,648,4,'Characters'),(217,664,3,'Producer'),(217,2689,4,'Story'),(217,15017,8,'Makeup Artist'),(217,60536,9,'Stunts'),(5174,909,5,'Editor'),(5174,1098,5,'Editor'),(5174,2689,4,'Screenplay'),(5174,4504,3,'Producer'),(5174,4953,7,'Production Design'),(5174,9217,6,'Original Music Composer'),(5174,11802,8,'Costume Design'),(5174,15005,5,'Editor'),(5174,21118,1,'Director of Photography'),(5174,11091,2,'Director'),(5174,21634,4,'Characters'),(5174,21635,3,'Producer'),(5174,21636,3,'Producer'),(5174,41896,3,'Producer'),(5174,11102,7,'Production Design'),(5174,41898,7,'Set Decoration'),(5174,41899,3,'Executive Producer'),(5174,1395269,9,'Visual Effects Design Consultant'),(411,1095,1,'Director of Photography'),(411,4854,3,'Producer'),(411,4856,3,'Producer'),(411,5162,3,'Producer'),(411,5524,2,'Director'),(411,5524,3,'Executive Producer'),(411,5524,4,'Screenplay'),(411,5525,4,'Author'),(411,5541,3,'Producer'),(411,5542,5,'Editor'),(411,5543,3,'Producer'),(411,5544,3,'Executive Producer'),(411,5545,3,'Producer'),(411,5546,5,'Editor'),(411,5547,7,'Production Design'),(411,5548,7,'Set Decoration'),(411,5549,8,'Costume Design'),(411,5550,4,'Screenplay'),(411,5551,4,'Screenplay'),(411,5552,4,'Screenplay'),(411,5553,6,'Original Music Composer'),(411,33933,7,'Art Direction'),(411,1447518,9,'Stunts'),(411,1447524,7,'Art Department Manager'),(411,1455541,10,'Animation'),(411,1460588,9,'Special Effects'),(411,1460621,9,'Digital Producer'),(411,1463784,10,'Animation'),(411,1642697,10,'Animation'),(155,1113,3,'Casting'),(155,947,6,'Original Music Composer'),(155,282,3,'Producer'),(155,525,4,'Screenplay'),(155,525,2,'Director'),(155,525,3,'Producer'),(155,527,4,'Screenplay'),(155,556,3,'Producer'),(155,559,1,'Director of Photography'),(155,561,3,'Casting'),(155,1213,6,'Original Music Composer'),(155,3893,4,'Story'),(155,3794,4,'Characters'),(155,3904,5,'Editor'),(155,20643,3,'Producer'),(155,10949,3,'Executive Producer'),(155,10951,3,'Executive Producer'),(155,11167,7,'Art Direction'),(155,10714,8,'Costume Design'),(155,10788,7,'Art Direction'),(155,15845,8,'Makeup Artist'),(155,15327,7,'Production Design'),(155,15328,7,'Supervising Art Director'),(155,17677,7,'Art Direction'),(155,44006,9,'Stunt Coordinator'),(155,54211,3,'Executive Producer'),(155,60714,7,'Set Decoration'),(155,68016,6,'Orchestrator'),(155,81687,9,'Stunts'),(155,75804,3,'Executive Producer'),(155,113913,3,'Associate Producer'),(155,86591,7,'Art Direction'),(155,138618,6,'Sound Re-Recording Mixer'),(155,198034,4,'Characters'),(155,932186,6,'Orchestrator'),(155,936765,6,'Orchestrator'),(155,996220,9,'Stunts'),(155,1025090,9,'Stunts'),(155,1034754,7,'Art Direction'),(155,1050930,5,'Dialogue Editor'),(155,1233538,9,'Thanks'),(155,1325917,7,'Supervising Art Director'),(155,1327030,6,'Sound Re-Recording Mixer'),(155,1327404,9,'Stunt Coordinator'),(155,1332017,9,'Stunts'),(155,1341403,6,'Sound Designer'),(155,1341403,6,'Supervising Sound Editor'),(155,1341405,5,'Dialogue Editor'),(155,1356195,4,'Characters'),(155,1367508,2,'Script Supervisor'),(155,1377220,6,'Sound Re-Recording Mixer'),(155,1377222,6,'Sound Effects Editor'),(155,1390535,1,'Still Photographer'),(155,1395281,1,'Camera Operator'),(155,1395281,1,'Steadicam Operator'),(155,1395430,7,'Art Department Coordinator'),(155,1397823,6,'Foley'),(155,1400088,6,'Music Editor'),(155,1403490,6,'Music Editor'),(155,1411061,9,'Stunts'),(155,1411118,9,'Unit Publicist'),(155,1417398,8,'Hair Department Head'),(155,1417400,8,'Hairstylist'),(155,1417514,6,'Sound Effects Editor'),(155,1426762,8,'Makeup Artist'),(155,1440853,5,'Assistant Editor'),(155,1443032,8,'Hairstylist'),(155,1486214,8,'Makeup Artist'),(155,1486217,3,'Casting'),(155,1522745,8,'Set Costumer'),(155,1530327,6,'Orchestrator'),(155,1532224,9,'Animatronic and Prosthetic Effects'),(155,1532610,1,'First Assistant Camera'),(155,1540477,3,'Publicist'),(155,1550832,6,'Production Sound Mixer'),(155,1550851,9,'Stunt Coordinator'),(155,1551776,9,'Stunts'),(155,1552549,5,'Color Timer'),(155,1566280,2,'Assistant Director'),(155,1571601,9,'Post Production Supervisor'),(155,1638257,8,'Prosthetic Supervisor'),(1726,7232,3,'Casting'),(1726,4867,1,'Director of Photography'),(1726,7624,4,'Characters'),(1726,7624,3,'Executive Producer'),(1726,7626,3,'Producer'),(1726,10850,3,'Producer'),(1726,9551,8,'Costume Design'),(1726,11455,5,'Editor'),(1726,18866,4,'Characters'),(1726,15277,2,'Director'),(1726,18873,4,'Screenplay'),(1726,18875,4,'Screenplay'),(1726,18876,4,'Characters'),(1726,18877,4,'Characters'),(1726,20540,3,'Casting'),(1726,10851,6,'Original Music Composer'),(1726,113674,3,'Co-Producer'),(1726,937174,3,'Executive Producer'),(1726,962467,8,'Costume Design'),(1726,1397300,2,'Script Supervisor'),(1726,1453929,10,'Visual Effects'),(8487,1919,1,'Director of Photography'),(8487,3769,1,'Director of Photography'),(8487,3805,3,'Producer'),(8487,5174,2,'Director'),(8487,5174,3,'Producer'),(8487,7182,6,'Original Music Composer'),(8487,9615,5,'Editor'),(8487,12100,4,'Screenplay'),(8487,12101,4,'Screenplay'),(8487,26475,4,'Screenplay'),(8487,26479,4,'Screenplay'),(8487,1669267,9,'Stunts'),(1735,1720,3,'Casting'),(1735,7775,3,'Producer'),(1735,7779,3,'Producer'),(1735,18878,2,'Director'),(1735,18923,4,'Screenplay'),(1735,18924,4,'Screenplay'),(1735,18925,7,'Art Direction'),(1735,18926,3,'Production Manager'),(1735,68016,6,'Orchestrator'),(1735,1447543,10,'Visual Effects'),(1735,1453019,10,'VFX Artist'),(1735,1454410,10,'Visual Effects'),(1735,1455461,11,'Lighting Technician'),(1735,1455541,10,'Animation'),(1735,1456835,10,'Animation'),(1735,1460621,10,'Visual Effects'),(1735,1519867,2,'Script Supervisor'),(2698,31,3,'Executive Producer'),(2698,602,7,'Production Design'),(2698,4500,6,'Music'),(2698,3965,3,'Casting'),(2698,4489,4,'Screenplay'),(2698,4499,2,'Director'),(2698,4499,3,'Producer'),(2698,4502,5,'Editor'),(2698,4504,3,'Producer'),(2698,4505,3,'Producer'),(2698,4507,3,'Producer'),(2698,5141,8,'Makeup Artist'),(2698,7536,8,'Costume Design'),(2698,11874,3,'Producer'),(2698,27095,3,'Executive Producer'),(2698,27096,3,'Executive Producer'),(2698,27097,3,'Executive Producer'),(2698,27098,3,'Executive Producer'),(2698,27099,1,'Director of Photography'),(2698,27100,10,'Visual Effects Supervisor'),(2698,54777,3,'Casting'),(2698,60501,3,'Casting'),(2698,68016,6,'Orchestrator'),(2698,1034748,3,'Casting'),(2698,1332245,9,'Stunts'),(2698,1451245,1,'Camera Department Manager'),(2698,1453021,10,'Animation'),(9804,71417,3,'Line Producer'),(9804,553,7,'Set Designer'),(9804,555,7,'Set Decoration'),(9804,1093,3,'Producer'),(9804,1213,6,'Original Music Composer'),(9804,1269,3,'Producer'),(9804,4248,7,'Production Design'),(9804,2043,3,'Producer'),(9804,4501,1,'Director of Photography'),(9804,10631,9,'Special Effects Coordinator'),(9804,5490,3,'Casting'),(9804,7681,3,'Producer'),(9804,7793,8,'Costume Design'),(9804,8274,7,'Leadman'),(9804,8307,5,'Editor'),(9804,14771,9,'Stunt Coordinator'),(9804,14349,7,'Art Direction'),(9804,16737,6,'Music Editor'),(9804,42032,1,'Camera Operator'),(9804,19236,9,'Special Effects Coordinator'),(9804,21801,6,'Music Editor'),(9804,25459,10,'Visual Effects Supervisor'),(9804,27095,3,'Executive Producer'),(9804,28239,4,'Author'),(9804,34526,7,'Sculptor'),(9804,8300,2,'Director'),(9804,50728,3,'Executive Producer'),(9804,59353,4,'Author'),(9804,59354,3,'Executive Producer'),(9804,62724,7,'Set Designer'),(9804,75653,7,'Set Designer'),(9804,78395,9,'Stunt Coordinator'),(9804,81731,7,'Set Designer'),(9804,1171098,7,'Set Designer'),(9804,1172335,9,'Special Effects Coordinator'),(9804,1246457,7,'Set Designer'),(9804,1293529,1,'Still Photographer'),(9804,1319825,8,'Costume Supervisor'),(9804,1338372,6,'Foley'),(9804,1341403,6,'Sound Effects Editor'),(9804,1341781,6,'Sound Re-Recording Mixer'),(9804,1376897,7,'Construction Coordinator'),(9804,1389624,6,'Music Editor'),(9804,1390524,6,'Supervising Sound Editor'),(9804,1391121,7,'Art Department Coordinator'),(9804,1391122,7,'Set Designer'),(9804,1391123,7,'Greensman'),(9804,1391126,10,'Visual Effects Producer'),(9804,1391127,10,'Visual Effects Producer'),(9804,1391129,9,'Stunt Coordinator'),(9804,1391130,1,'Steadicam Operator'),(9804,1391130,1,'Camera Operator'),(9804,1391375,11,'Gaffer'),(9804,1391376,8,'Set Costumer'),(9804,1391377,8,'Set Costumer'),(9804,1391378,8,'Set Costumer'),(9804,1412215,3,'Associate Producer'),(5255,37,6,'Original Music Composer'),(5255,37,6,'Songs'),(5255,24,2,'Director'),(5255,24,4,'Screenplay'),(5255,24,3,'Producer'),(5255,30,3,'Producer'),(5255,30,9,'Second Unit Cinematographer'),(5255,31,3,'Executive Producer'),(5255,36,1,'Director of Photography'),(5255,142,4,'Screenplay'),(5255,496,7,'Production Design'),(5255,498,8,'Costume Design'),(5255,1324,3,'Casting'),(5255,3976,11,'Chief Lighting Technician'),(5255,3996,6,'Sound Re-Recording Mixer'),(5255,7240,6,'Boom Operator'),(5255,20585,7,'Set Decoration'),(5255,8794,7,'Art Direction'),(5255,10956,3,'Associate Producer'),(5255,10956,3,'Unit Production Manager'),(5255,10956,2,'First Assistant Director'),(5255,8168,9,'Sound Recordist'),(5255,8678,7,'Production Illustrator'),(5255,10974,10,'Visual Effects Supervisor'),(5255,11166,6,'Orchestrator'),(5255,11174,6,'Supervising Sound Editor'),(5255,12070,7,'Art Direction'),(5255,13040,9,'Post Production Assistant'),(5255,14526,8,'Makeup Artist'),(5255,22486,7,'Property Master'),(5255,23779,3,'Executive Producer'),(5255,23780,1,'Director of Photography'),(5255,23781,5,'Editor'),(5255,23782,7,'Production Design'),(5255,23787,8,'Key Makeup Artist'),(5255,42262,6,'Songs'),(5255,42265,3,'Associate Producer'),(5255,42267,6,'Sound Re-Recording Mixer'),(5255,42267,6,'Sound Designer'),(5255,42268,3,'Associate Producer'),(5255,42270,9,'Digital Effects Supervisor'),(5255,42272,9,'Digital Producer'),(5255,42277,9,'Visual Effects Art Director'),(5255,42281,7,'Assistant Art Director'),(5255,27098,3,'Producer'),(5255,42356,3,'Executive Producer'),(5255,42356,4,'Book'),(5255,42357,3,'Producer'),(5255,42358,3,'Co-Producer'),(5255,42359,5,'Editor'),(5255,42360,3,'Casting'),(5255,43592,6,'Orchestrator'),(5255,55227,6,'Production Sound Mixer'),(5255,55227,6,'Sound Mixer'),(5255,89425,9,'Sound Recordist'),(5255,93258,9,'Special Effects Coordinator'),(5255,106053,9,'Propmaker'),(5255,138617,5,'Dialogue Editor'),(5255,959555,7,'Set Designer'),(5255,961609,7,'Art Direction'),(5255,1116038,3,'Production Accountant'),(5255,1117716,4,'Creative Producer'),(5255,1177850,1,'Still Photographer'),(5255,1187337,3,'Production Coordinator'),(5255,1187337,3,'Production Office Coordinator'),(5255,1262129,2,'Script Supervisor'),(5255,1271756,7,'Assistant Art Director'),(5255,1271933,9,'Unit Publicist'),(5255,1276817,7,'Assistant Art Director'),(5255,1316104,2,'Layout'),(5255,1323768,8,'Costume Supervisor'),(5255,1330567,8,'Set Costumer'),(5255,1355494,7,'Art Direction'),(5255,1371065,5,'Color Timer'),(5255,1376895,7,'Assistant Art Director'),(5255,1376897,7,'Construction Coordinator'),(5255,1389133,9,'Sound Design Assistant'),(5255,1392116,7,'Set Designer'),(5255,1393435,7,'Assistant Art Director'),(5255,1394306,6,'Music Editor'),(5255,1395352,10,'Visual Effects Producer'),(5255,1399117,6,'Sound Effects Editor'),(5255,1399122,6,'Dolby Consultant'),(5255,1400079,1,'Camera Operator'),(5255,1402015,8,'Hair Designer'),(5255,1402022,7,'Leadman'),(5255,1405373,8,'Key Hair Stylist'),(5255,1412225,7,'Set Designer'),(5255,1413169,6,'Sound Re-Recording Mixer'),(5255,1413172,6,'Foley Editor'),(5255,1414178,6,'Sound Effects Editor'),(5255,1415465,6,'Foley Editor'),(5255,1416433,9,'Video Assist Operator'),(5255,1418019,9,'Visual Effects Art Director'),(5255,1421678,10,'Digital Compositors'),(5255,1432009,7,'Set Designer'),(5255,1442512,9,'Visual Effects Editor'),(5255,1443033,8,'Hairstylist'),(5255,1446201,2,'Layout'),(5255,1457828,3,'Casting Assistant'),(5255,1464421,2,'Layout'),(5255,1466028,7,'Set Designer'),(5255,1486851,5,'First Assistant Editor'),(5255,1548461,10,'VFX Editor'),(5255,1550370,10,'VFX Editor'),(5255,1555639,9,'Transportation Coordinator'),(5255,1564997,3,'Executive In Charge Of Production'),(5255,1593078,9,'Digital Effects Supervisor'),(5255,1595473,7,'Construction Foreman'),(5255,1667750,9,'Choreographer'),(5255,1691197,1,'Key Grip'),(5255,1691222,9,'Motion Capture Artist'),(5255,1713056,9,'Sequence Supervisor'),(5255,1720281,7,'Art Department Coordinator'),(5255,1728524,7,'Art Department Coordinator'),(5255,1728525,3,'Casting Associate'),(5255,1728539,10,'Animation Supervisor'),(5255,1728544,9,'Digital Effects Supervisor'),(5255,1728547,9,'Digital Effects Supervisor'),(5255,1728553,10,'Visual Effects Coordinator'),(5255,1728557,5,'First Assistant Editor'),(5255,1734618,7,'Art Department Assistant'),(5255,1743248,2,'Second Assistant Director'),(5255,1743249,10,'Character Designer'),(5255,1743251,7,'Set Designer'),(5255,1743252,7,'Set Designer'),(5255,1743253,7,'Set Designer'),(5255,1743254,5,'Assistant Editor'),(5255,1743255,2,'Layout'),(5255,1743256,2,'Layout'),(5255,1743257,2,'Layout'),(5255,1743258,11,'Rigging Gaffer'),(5255,1743259,1,'Grip'),(5255,1745314,11,'Best Boy Electric'),(5255,1746675,10,'Visual Effects'),(5255,1749920,11,'Rigging Grip'),(5255,1821182,9,'Set Production Assistant'),(5255,1838774,8,'Set Dressing Artist'),(5255,1838775,9,'Driver'),(5255,1838777,9,'Software Engineer'),(5255,1838778,9,'Stunt Coordinator'),(5255,1838779,9,'Stunts'),(5255,1838780,5,'Digital Intermediate'),(5255,1838781,11,'Lighting Artist'),(5255,1838782,3,'Production Supervisor'),(5255,1838784,4,'Storyboard'),(5255,1838785,10,'Animation'),(296,36,1,'Director of Photography'),(296,869,4,'Characters'),(296,869,3,'Executive Producer'),(296,1305,6,'Music Editor'),(296,2710,4,'Characters'),(296,3986,3,'Producer'),(296,3995,8,'Makeup Department Head'),(296,7213,2,'Director'),(296,7214,4,'Screenplay'),(296,7214,4,'Story'),(296,7215,4,'Screenplay'),(296,7215,4,'Story'),(296,7217,4,'Story'),(296,7227,3,'Producer'),(296,7228,3,'Producer'),(296,7229,6,'Original Music Composer'),(296,7230,5,'Editor'),(296,7231,5,'Editor'),(296,7232,3,'Casting'),(296,7233,7,'Production Design'),(296,7234,7,'Art Direction'),(296,7235,7,'Art Direction'),(296,7236,7,'Art Direction'),(296,7237,7,'Set Decoration'),(296,7238,8,'Costume Design'),(296,7239,6,'Sound Effects Editor'),(296,7240,6,'Boom Operator'),(296,4556,3,'Executive Producer'),(296,6037,10,'3D Supervisor'),(296,6924,8,'Costume Supervisor'),(296,8530,3,'Unit Production Manager'),(296,9436,9,'Stunts'),(296,14193,10,'Special Effects Supervisor'),(296,12232,3,'Executive Producer'),(296,12234,3,'Executive Producer'),(296,13224,6,'Dolby Consultant'),(296,20295,3,'Executive Producer'),(296,20540,3,'Casting'),(296,23352,8,'Makeup Artist'),(296,34526,7,'Sculptor'),(296,55227,6,'Production Sound Mixer'),(296,56967,3,'Producer'),(296,60261,9,'Makeup Effects'),(296,60784,3,'Line Producer'),(296,64855,5,'First Assistant Editor'),(296,66185,3,'Producer'),(296,92336,8,'Prosthetic Supervisor'),(296,85960,6,'Sound Editor'),(296,109994,3,'Production Supervisor'),(296,132566,7,'Production Illustrator'),(296,142325,9,'Second Unit Cinematographer'),(296,142325,9,'Stunt Coordinator'),(296,229811,9,'Makeup Effects'),(296,554887,6,'Supervising Sound Editor'),(296,936841,7,'Assistant Art Director'),(296,954881,3,'Executive Producer'),(296,961984,3,'Executive Producer'),(296,977230,9,'Loader'),(296,1014937,6,'Sound Designer'),(296,1077468,9,'Visual Effects Art Director'),(296,1228698,2,'Assistant Director'),(296,1229789,9,'Visual Effects Editor'),(296,1262129,2,'Script Supervisor'),(296,1282435,3,'Producer'),(296,1287739,9,'Makeup Effects'),(296,1319135,7,'Set Designer'),(296,1319193,8,'Costume Supervisor'),(296,1319412,7,'Art Direction'),(296,1340759,7,'Construction Foreman'),(296,1345624,3,'Location Manager'),(296,1357070,9,'Transportation Coordinator'),(296,1360108,9,'Digital Effects Supervisor'),(296,1368867,9,'Special Effects Coordinator'),(296,1378722,6,'First Assistant Sound Editor'),(296,1390522,9,'Property Master'),(296,1392143,8,'Set Costumer'),(296,1392906,10,'Visual Effects Coordinator'),(296,1392973,1,'Steadicam Operator'),(296,1394491,9,'Transportation Captain'),(296,1400365,7,'Leadman'),(296,1400546,7,'Construction Coordinator'),(296,1403403,9,'Systems Administrators & Support'),(296,1404357,7,'Conceptual Design'),(296,1406776,10,'Visual Effects Producer'),(296,1407824,5,'Digital Intermediate'),(296,1411166,8,'Hair Department Head'),(296,1412275,9,'Unit Publicist'),(296,1413095,5,'Dialogue Editor'),(296,1422058,9,'Armorer'),(296,1425994,10,'Visual Effects Supervisor'),(296,1444908,8,'Key Hair Stylist'),(296,1445842,1,'Still Photographer'),(296,1461632,9,'CG Supervisor'),(296,1463299,9,'Propmaker'),(296,1463304,4,'Storyboard'),(296,1483231,9,'Sequence Supervisor'),(296,1531492,9,'Post Production Supervisor'),(296,1534973,7,'Painter'),(296,1548698,6,'Orchestrator'),(296,1553642,9,'Quality Control Supervisor'),(296,1554975,9,'Executive Music Producer'),(296,1556312,8,'Set Dressing Supervisor'),(296,1556515,3,'Casting Associate'),(296,1568651,9,'Set Production Assistant'),(296,1571766,9,'Stand In'),(296,1580636,3,'Production Accountant'),(296,1586934,9,'Video Assist Operator'),(296,1591573,9,'Software Engineer'),(296,1596321,6,'Foley'),(296,1608891,11,'Rigging Grip'),(296,1625917,9,'Projection'),(296,1646233,9,'Craft Service'),(296,1646240,9,'Set Medic'),(296,1667928,10,'Visual Effects'),(296,1684383,11,'Lighting Technician'),(296,1684988,9,'Production Controller'),(296,1691190,7,'Art Department Assistant'),(296,1691191,7,'Art Department Coordinator'),(296,1691192,7,'Greensman'),(296,1691193,7,'Lead Painter'),(296,1691195,1,'Additional Camera'),(296,1691196,1,'First Assistant Camera'),(296,1691197,1,'Grip'),(296,1691198,8,'Hairstylist'),(296,1691199,8,'Makeup Designer'),(296,1691201,8,'Set Dressing Artist'),(296,1691202,9,'Driver'),(296,1691203,9,'Picture Car Coordinator'),(296,1691204,9,'Post Production Assistant'),(296,1691205,9,'Security'),(296,1691206,9,'Sound Recordist'),(296,1691207,9,'Utility Stunts'),(296,1691209,2,'Layout'),(296,1691211,11,'Best Boy Electric'),(296,1691213,11,'Electrician'),(296,1691214,11,'Gaffer'),(296,1691216,3,'Production Coordinator'),(296,1691217,3,'Publicist'),(296,1691218,3,'Researcher'),(296,1691220,6,'Sound Mixer'),(296,1691221,10,'Digital Compositors'),(296,1691222,9,'Motion Capture Artist'),(296,1691223,9,'Thanks'),(296,1877402,9,'Stunts'),(9799,1720,3,'Casting'),(9799,2519,8,'Costume Design'),(9799,2986,3,'Executive Producer'),(9799,2986,3,'Unit Production Manager'),(9799,6875,5,'Editor'),(9799,6898,6,'Original Music Composer'),(9799,7859,9,'Special Effects Coordinator'),(9799,8162,4,'Screenplay'),(9799,8162,4,'Screenstory'),(9799,11874,3,'Producer'),(9799,15328,7,'Art Direction'),(9799,19769,4,'Screenplay'),(9799,18878,2,'Director'),(9799,18889,9,'Stunt Coordinator'),(9799,21118,1,'Steadicam Operator'),(9799,21673,1,'Director of Photography'),(9799,23787,8,'Makeup Artist'),(9799,23788,9,'Makeup Effects'),(9799,27543,7,'Production Design'),(9799,34896,5,'First Assistant Editor'),(9799,113055,5,'Dialogue Editor'),(9799,8120,4,'Author'),(9799,59327,4,'Screenplay'),(9799,59328,3,'Executive Producer'),(9799,67865,6,'Sound Effects Editor'),(9799,92467,10,'Visual Effects'),(9799,92476,10,'Visual Effects Supervisor'),(9799,80824,6,'Supervising Sound Editor'),(9799,91095,6,'Foley'),(9799,149960,1,'Camera Operator'),(9799,545844,11,'Gaffer'),(9799,957127,7,'Set Decoration'),(9799,960696,11,'Gaffer'),(9799,1039162,9,'Production Controller'),(9799,1095848,1,'Additional Camera'),(9799,1115736,6,'Supervising Sound Editor'),(9799,1132695,11,'Gaffer'),(9799,1144651,1,'Camera Operator'),(9799,1185588,9,'Transportation Captain'),(9799,1202779,8,'Set Costumer'),(9799,1243381,6,'Sound Re-Recording Mixer'),(9799,1319135,7,'Set Designer'),(9799,1319747,8,'Costume Supervisor'),(9799,1332210,8,'Makeup Artist'),(9799,1338670,8,'Key Hair Stylist'),(9799,1341783,6,'Foley'),(9799,1345593,6,'Sound Designer'),(9799,1346330,10,'Digital Compositors'),(9799,1349452,2,'Assistant Director'),(9799,1357061,6,'Sound Designer'),(9799,1360097,5,'Dialogue Editor'),(9799,1371064,6,'Foley'),(9799,1377294,10,'Visual Effects Producer'),(9799,1378227,6,'Sound Re-Recording Mixer'),(9799,1387183,5,'Dialogue Editor'),(9799,1389591,10,'Visual Effects Producer'),(9799,1389601,2,'Script Supervisor'),(9799,1391390,1,'Camera Operator'),(9799,1392247,1,'Still Photographer'),(9799,1392248,8,'Set Costumer'),(9799,1392250,9,'Transportation Coordinator'),(9799,1392973,1,'Steadicam Operator'),(9799,1394323,9,'Chef'),(9799,1396840,6,'Production Sound Mixer'),(9799,1399093,3,'Production Manager'),(9799,1400855,7,'Greensman'),(9799,1404235,9,'Unit Publicist'),(9799,1404288,1,'Camera Operator'),(9799,1404903,6,'ADR & Dubbing'),(9799,1406110,9,'Visual Effects Art Director'),(9799,1406239,7,'Leadman'),(9799,1406241,6,'Sound Editor'),(9799,1406395,9,'Visual Effects Editor'),(9799,1407878,6,'Sound Effects Editor'),(9799,1409712,1,'Camera Operator'),(9799,1410316,6,'Music Editor'),(9799,1411264,9,'Property Master'),(9799,1411272,1,'Camera Operator'),(9799,1412187,8,'Hairstylist'),(9799,1412227,6,'Sound Effects Editor'),(9799,1412228,6,'Sound Effects Editor'),(9799,1421681,9,'CG Supervisor'),(9799,1424180,9,'Second Unit Cinematographer'),(9799,1425990,10,'Visual Effects Producer'),(9799,1433983,8,'Hairstylist'),(9799,1434165,1,'Additional Camera'),(9799,1436183,10,'Visual Effects Supervisor'),(9799,1439763,7,'Art Department Coordinator'),(9799,1439764,7,'Assistant Art Director'),(9799,1439766,9,'Property Master'),(9799,1439767,7,'Construction Coordinator'),(9799,1439769,7,'Construction Foreman'),(9799,1439872,6,'ADR & Dubbing'),(9799,1440228,9,'Sound Recordist'),(9799,1440229,9,'Sound Recordist'),(9799,1440230,6,'Sound Effects Editor'),(9799,1440240,10,'Visual Effects Supervisor'),(9799,1440266,1,'Camera Operator'),(9799,1440269,1,'Additional Photography'),(9799,1440272,5,'First Assistant Editor'),(9799,1440287,9,'Picture Car Coordinator'),(9799,1440288,3,'Location Manager'),(9799,1440289,3,'Location Manager'),(9799,1463326,9,'Propmaker'),(9799,1464344,3,'Executive In Charge Of Post Production'),(9799,1473444,6,'First Assistant Sound Editor'),(9799,1473757,3,'Associate Producer'),(9799,1479421,10,'Visual Effects Supervisor'),(9799,1520609,3,'Casting Associate'),(9799,1530870,9,'Post Production Supervisor'),(9799,1534970,7,'Standby Painter'),(9799,1552533,6,'Music Supervisor'),(9799,1564233,5,'Color Timer'),(9799,1566318,4,'Storyboard'),(9799,1567969,7,'Painter'),(9799,1568661,6,'Sound Engineer'),(9799,1569836,11,'Lighting Technician'),(9799,1573115,10,'3D Supervisor'),(9799,1586160,9,'Loader'),(9799,1586890,7,'Set Decoration Buyer'),(9799,1648119,11,'Rigging Grip'),(9799,1662324,8,'Set Dressing Artist'),(9799,1681472,9,'Video Assist Operator'),(9799,1695261,9,'Set Production Assistant'),(9799,1701247,9,'Craft Service'),(9799,1722371,7,'Art Department Assistant'),(9799,1722372,1,'First Assistant Camera'),(9799,1722373,1,'Grip'),(9799,1722374,9,'Carpenter'),(9799,1722376,9,'Driver'),(9799,1722384,9,'Set Medic'),(9799,1722385,9,'Stunts'),(9799,1722386,9,'Telecine Colorist'),(9799,1723824,11,'Best Boy Electric'),(9799,1723825,11,'Electrician'),(9799,1723827,11,'Rigging Gaffer'),(9799,1723830,3,'Production Coordinator'),(9799,1723831,3,'Production Supervisor'),(9799,1723832,6,'Boom Operator'),(9799,1723833,6,'Orchestrator'),(9799,1723835,10,'Special Effects Supervisor'),(4922,27,4,'Screenplay'),(4922,489,3,'Producer'),(4922,664,3,'Producer'),(4922,2949,6,'Music'),(4922,6055,7,'Set Decoration'),(4922,7467,2,'Director'),(4922,7475,3,'Producer'),(4922,7481,3,'Casting'),(4922,7763,6,'Supervising Sound Editor'),(4922,7763,6,'Sound Re-Recording Mixer'),(4922,8287,8,'Set Costumer'),(4922,9271,7,'Art Direction'),(4922,13050,9,'Dialect Coach'),(4922,17455,5,'Editor'),(4922,20209,7,'Production Design'),(4922,20786,7,'Art Direction'),(4922,21224,9,'Special Effects Coordinator'),(4922,40035,4,'Novel'),(4922,49886,7,'Leadman'),(4922,51333,9,'Cinematography'),(4922,92302,7,'Supervising Art Director'),(4922,74980,9,'Special Effects Coordinator'),(4922,91051,8,'Hairstylist'),(4922,936321,9,'Transportation Coordinator'),(4922,937235,9,'CG Supervisor'),(4922,958488,8,'Costume Design'),(4922,960282,7,'Art Direction'),(4922,964726,5,'Editor'),(4922,1040860,7,'Art Direction'),(4922,1089662,8,'Set Costumer'),(4922,1116937,6,'Foley'),(4922,1122560,9,'Stunt Coordinator'),(4922,1172443,1,'Still Photographer'),(4922,1181784,3,'Location Manager'),(4922,1182907,7,'Assistant Art Director'),(4922,1190854,8,'Set Costumer'),(4922,1233895,9,'Choreographer'),(4922,1293479,9,'Stunt Coordinator'),(4922,1319388,8,'Makeup Artist'),(4922,1321359,8,'Set Costumer'),(4922,1322011,8,'Set Costumer'),(4922,1324809,8,'Set Costumer'),(4922,1325234,8,'Makeup Department Head'),(4922,1325235,8,'Costume Supervisor'),(4922,1335881,10,'Visual Effects Producer'),(4922,1337643,7,'Art Department Coordinator'),(4922,1339435,7,'Set Designer'),(4922,1348006,10,'Visual Effects Producer'),(4922,1352962,7,'Set Designer'),(4922,1357043,7,'Set Designer'),(4922,1367481,7,'Greensman'),(4922,1368863,7,'Set Designer'),(4922,1376902,6,'ADR & Dubbing'),(4922,1377237,9,'Studio Teachers'),(4922,1378828,6,'Sound Re-Recording Mixer'),(4922,1384358,7,'Assistant Art Director'),(4922,1384359,7,'Assistant Art Director'),(4922,1386906,7,'Construction Coordinator'),(4922,1388888,8,'Set Costumer'),(4922,1389534,5,'Dialogue Editor'),(4922,1390522,9,'Property Master'),(4922,1392116,7,'Set Designer'),(4922,1392145,6,'Music Editor'),(4922,1393408,3,'Location Manager'),(4922,1393440,7,'Leadman'),(4922,1394750,10,'Visual Effects Producer'),(4922,1394755,10,'Visual Effects Supervisor'),(4922,1394757,11,'Gaffer'),(4922,1395290,2,'Script Supervisor'),(4922,1395332,7,'Assistant Art Director'),(4922,1395437,7,'Sculptor'),(4922,1397810,7,'Sculptor'),(4922,1397823,6,'Foley'),(4922,1397846,10,'Visual Effects Supervisor'),(4922,1397848,10,'Visual Effects Producer'),(4922,1398972,1,'Underwater Camera'),(4922,1399062,9,'Visual Effects Editor'),(4922,1399447,7,'Set Designer'),(4922,1400090,2,'Script Supervisor'),(4922,1401587,10,'Visual Effects Producer'),(4922,1401722,10,'Visual Effects Supervisor'),(4922,1401758,7,'Construction Foreman'),(4922,1402023,7,'Art Department Coordinator'),(4922,1402708,8,'Hairstylist'),(4922,1403418,9,'Transportation Coordinator'),(4922,1403426,8,'Hairstylist'),(4922,1406614,6,'Sound Re-Recording Mixer'),(4922,1407351,7,'Greensman'),(4922,1407372,5,'Digital Intermediate'),(4922,1408326,9,'Visual Effects Editor'),(4922,1409724,9,'Picture Car Coordinator'),(4922,1409824,8,'Wigmaker'),(4922,1411509,7,'Set Designer'),(4922,1411799,8,'Hairstylist'),(4922,1414988,9,'Makeup Effects'),(4922,1415030,9,'Makeup Effects'),(4922,1415083,7,'Greensman'),(4922,1415328,8,'Hairstylist'),(4922,1415329,8,'Hairstylist'),(4922,1415330,8,'Hairstylist'),(4922,1415331,8,'Makeup Artist'),(4922,1415332,8,'Makeup Artist'),(4922,1415333,8,'Makeup Artist'),(4922,1415334,8,'Makeup Artist'),(4922,1415335,9,'Makeup Effects'),(4922,1415336,9,'Makeup Effects'),(4922,1415337,9,'Makeup Effects'),(4922,1415338,9,'Makeup Effects'),(4922,1415339,9,'Makeup Effects'),(4922,1415340,9,'Makeup Effects'),(4922,1415341,9,'Makeup Effects'),(4922,1415342,3,'Production Supervisor'),(4922,1415435,7,'Art Department Coordinator'),(4922,1415452,7,'Construction Foreman'),(4922,1415453,7,'Greensman'),(4922,1415454,7,'Greensman'),(4922,1415455,7,'Greensman'),(4922,1415456,9,'Scenic Artist'),(4922,1415457,7,'Greensman'),(4922,1415458,7,'Greensman'),(4922,1415459,9,'Scenic Artist'),(4922,1415463,9,'Sound Recordist'),(4922,1415464,6,'Sound Effects Editor'),(4922,1415465,6,'Sound Effects Editor'),(4922,1415470,9,'Animatronic and Prosthetic Effects'),(4922,1415472,9,'CG Supervisor'),(4922,1415473,9,'CG Supervisor'),(4922,1415474,9,'CG Supervisor'),(4922,1415475,10,'Visual Effects Producer'),(4922,1415479,10,'Visual Effects Producer'),(4922,1415480,9,'Visual Effects Editor'),(4922,1415481,10,'Visual Effects Producer'),(4922,1415484,10,'Visual Effects Producer'),(4922,1415485,10,'Visual Effects Supervisor'),(4922,1415486,10,'Visual Effects Supervisor'),(4922,1415487,10,'Visual Effects Supervisor'),(4922,1415488,10,'Animation Supervisor'),(4922,1415489,10,'Animation Supervisor'),(4922,1415490,10,'Animation Supervisor'),(4922,1415500,1,'Camera Operator'),(4922,1415501,11,'Rigging Gaffer'),(4922,1415502,8,'Set Costumer'),(4922,1415503,8,'Set Costumer'),(4922,1415504,8,'Set Costumer'),(4922,1415505,8,'Set Costumer'),(4922,1415506,8,'Set Costumer'),(4922,1415507,8,'Set Costumer'),(4922,1415508,8,'Set Costumer'),(4922,1415509,6,'Music Editor'),(4922,1415510,9,'Transportation Coordinator'),(4922,1415511,9,'Picture Car Coordinator'),(4922,1415513,9,'Dialect Coach'),(4922,1415515,3,'Production Accountant'),(4922,1447543,10,'Visual Effects'),(4922,1456835,10,'Animation'),(503,122,6,'Original Music Composer'),(503,2702,1,'Director of Photography'),(503,2874,3,'Casting'),(503,3275,3,'Casting'),(503,5231,2,'Director'),(503,5231,3,'Producer'),(503,5575,3,'Producer'),(503,6854,4,'Screenplay'),(503,6855,4,'Novel'),(503,6865,3,'Executive Producer'),(503,6866,3,'Producer'),(503,6867,3,'Producer'),(503,6868,3,'Executive Producer'),(503,6869,3,'Producer'),(503,6870,3,'Producer'),(503,6871,3,'Producer'),(503,6873,3,'Producer'),(503,6874,3,'Executive Producer'),(503,6875,5,'Editor'),(503,6876,3,'Casting'),(503,6877,7,'Production Design'),(503,6878,7,'Art Direction'),(503,6879,7,'Art Direction'),(503,6880,7,'Set Decoration'),(503,6881,8,'Costume Design'),(503,6882,6,'Music Editor'),(503,6883,6,'Music Editor'),(503,61091,3,'Producer'),(503,1813644,9,'Stunts'),(810,5524,3,'Executive Producer'),(810,5553,6,'Original Music Composer'),(810,12106,3,'Producer'),(810,12071,7,'Production Design'),(810,12107,3,'Executive Producer'),(810,12098,2,'Director'),(810,12099,2,'Director'),(810,12100,4,'Screenplay'),(810,12101,4,'Screenplay'),(810,12105,4,'Screenplay'),(810,69420,5,'Editor'),(810,574003,3,'Producer'),(810,1460608,10,'Animation'),(810,1463182,10,'VFX Artist'),(810,1546437,5,'Editor'),(676,770,3,'Producer'),(676,947,6,'Original Music Composer'),(676,2443,3,'Executive Producer'),(676,2444,3,'Executive Producer'),(676,2446,3,'Executive Producer'),(676,2448,3,'Producer'),(676,541,5,'Editor'),(676,605,8,'Costume Design'),(676,897,3,'Casting'),(676,865,3,'Producer'),(676,865,2,'Director'),(676,892,1,'Director of Photography'),(676,898,5,'Editor'),(676,900,6,'Supervising Sound Editor'),(676,2460,4,'Screenplay'),(676,2460,3,'Executive Producer'),(676,2484,5,'Editor'),(676,5132,6,'Music Supervisor'),(676,5333,8,'Hairstylist'),(676,10631,9,'Special Effects Coordinator'),(676,5545,3,'Producer'),(676,6904,8,'Assistant Costume Designer'),(676,9622,10,'Visual Effects Supervisor'),(676,8848,7,'Art Direction'),(676,9817,7,'Production Design'),(676,9819,7,'Art Direction'),(676,10118,3,'Producer'),(676,10118,9,'Stunt Coordinator'),(676,10119,3,'Executive Producer'),(676,10120,3,'Producer'),(676,10121,3,'Line Producer'),(676,10122,3,'Executive Producer'),(676,10123,5,'Editor'),(676,10124,7,'Set Decoration'),(676,10125,7,'Set Decoration'),(676,10126,8,'Costume Design'),(676,14193,10,'Special Effects Supervisor'),(676,13031,9,'Stunt Coordinator'),(676,15023,10,'Visual Effects Producer'),(676,14762,7,'Assistant Art Director'),(676,42034,6,'Sound Re-Recording Mixer'),(676,24310,9,'Second Unit Cinematographer'),(676,20040,1,'Camera Operator'),(676,23780,1,'Steadicam Operator'),(676,38410,1,'Camera Operator'),(676,53648,3,'Casting Associate'),(676,60261,9,'Makeup Effects'),(676,62722,2,'Script Coordinator'),(676,74766,8,'Key Hair Stylist'),(676,81731,7,'Assistant Art Director'),(676,108116,10,'Visual Effects Producer'),(676,118944,6,'ADR & Dubbing'),(676,968316,9,'Stunt Coordinator'),(676,1223099,6,'ADR & Dubbing'),(676,1287739,8,'Prosthetic Supervisor'),(676,1287739,9,'Makeup Effects'),(676,1319166,8,'Makeup Department Head'),(676,1319743,8,'Makeup Artist'),(676,1319744,8,'Costume Supervisor'),(676,1323090,8,'Makeup Artist'),(676,1337418,10,'Visual Effects Supervisor'),(676,1338372,6,'Foley'),(676,1354803,9,'Sequence Supervisor'),(676,1364410,6,'ADR & Dubbing'),(676,1367493,6,'Foley'),(676,1367502,11,'Gaffer'),(676,1376901,5,'Dialogue Editor'),(676,1378168,6,'Supervising Sound Editor'),(676,1378171,6,'Sound Re-Recording Mixer'),(676,1378696,6,'Sound Designer'),(676,1386920,1,'Still Photographer'),(676,1395261,10,'Visual Effects Producer'),(676,1395262,10,'Visual Effects Producer'),(676,1398108,1,'Camera Operator'),(676,1398972,1,'Underwater Camera'),(676,1400546,7,'Construction Coordinator'),(676,1400733,1,'Camera Operator'),(676,1400738,2,'Script Supervisor'),(676,1400741,8,'Hair Department Head'),(676,1401631,6,'ADR & Dubbing'),(676,1401967,9,'Visual Effects Art Director'),(676,1402709,9,'Armorer'),(676,1404222,9,'Visual Effects Editor'),(676,1404815,9,'Stunt Coordinator'),(676,1407016,5,'Dialogue Editor'),(676,1408311,5,'Dialogue Editor'),(676,1413091,5,'Dialogue Editor'),(676,1415500,1,'Camera Operator'),(676,1415617,6,'Sound Effects Editor'),(676,1415965,5,'Dialogue Editor'),(676,1416093,8,'Hairstylist'),(676,1421262,8,'Key Hair Stylist'),(676,1424155,6,'ADR & Dubbing'),(676,1429245,10,'Special Effects Supervisor'),(676,1432957,10,'Modeling'),(676,1530166,6,'Music Supervisor'),(676,1535952,3,'Casting Associate'),(676,1536385,11,'Rigging Gaffer'),(676,1536521,3,'Researcher'),(676,1536544,8,'Hairstylist'),(676,1536545,8,'Makeup Artist'),(676,1536546,7,'Art Department Assistant'),(676,1536547,7,'Art Department Coordinator'),(676,1536548,7,'Art Department Coordinator'),(676,1536549,7,'Assistant Art Director'),(676,1536550,6,'Sound Effects Editor'),(676,1536551,9,'Visual Effects Editor'),(676,1536552,10,'Visual Effects Coordinator'),(676,1536553,10,'Visual Effects Coordinator'),(676,1536554,10,'Visual Effects Coordinator'),(676,1536555,10,'Visual Effects Coordinator'),(676,1536556,11,'Gaffer'),(676,1536557,11,'Gaffer'),(676,1536560,5,'First Assistant Editor'),(1858,488,3,'Executive Producer'),(1858,10816,5,'Editor'),(1858,865,2,'Director'),(1858,865,3,'Executive Producer'),(1858,899,5,'Editor'),(1858,2874,3,'Casting'),(1858,3183,3,'Producer'),(1858,3275,3,'Casting'),(1858,7233,7,'Production Design'),(1858,7235,7,'Art Direction'),(1858,10631,9,'Special Effects'),(1858,6876,3,'Casting'),(1858,9987,3,'Producer'),(1858,10952,3,'Producer'),(1858,8527,8,'Costume Design'),(1858,9618,7,'Art Direction'),(1858,10118,3,'Co-Producer'),(1858,13588,7,'Set Decoration'),(1858,15328,7,'Art Direction'),(1858,15345,4,'Screenplay'),(1858,15345,4,'Story'),(1858,15346,4,'Screenplay'),(1858,15346,4,'Story'),(1858,18264,6,'Music'),(1858,10994,3,'Producer'),(1858,19535,4,'Story'),(1858,24308,3,'Executive Producer'),(1858,24309,3,'Executive Producer'),(1858,24310,1,'Director of Photography'),(1858,24311,5,'Editor'),(1858,21984,7,'Set Decoration'),(1858,39923,7,'Art Direction'),(1858,46082,7,'Supervising Art Director'),(1858,60945,3,'Co-Producer'),(1858,62722,3,'Associate Producer'),(1858,1319749,8,'Costume Supervisor'),(1858,1323090,8,'Makeup Department Head'),(1858,1323092,8,'Costume Supervisor'),(1858,1453014,10,'Animation'),(1858,1455541,10,'Animation'),(1858,1477203,3,'Associate Producer'),(1966,4023,3,'Casting'),(1966,8374,3,'Producer'),(1966,1113,3,'Casting'),(1966,8382,7,'Art Direction'),(1966,8386,3,'Unit Production Manager'),(1966,275,1,'Director of Photography'),(1966,595,6,'Original Music Composer'),(1966,1152,4,'Screenplay'),(1966,1152,2,'Director'),(1966,1152,3,'Producer'),(1966,2360,3,'Producer'),(1966,3192,3,'Casting'),(1966,4446,3,'Producer'),(1966,5328,3,'Casting'),(1966,8680,7,'Set Decoration'),(1966,9815,7,'Location Scout'),(1966,9890,6,'Production Sound Mixer'),(1966,10054,6,'Sound Re-Recording Mixer'),(1966,10202,8,'Prosthetic Makeup Artist'),(1966,40802,8,'Makeup Designer'),(1966,11420,3,'Co-Executive Producer'),(1966,11204,3,'Executive Producer'),(1966,13499,3,'Co-Producer'),(1966,16337,3,'Casting'),(1966,17166,8,'Costume Design'),(1966,20294,4,'Screenplay'),(1966,18989,7,'Supervising Art Director'),(1966,19772,3,'Executive Producer'),(1966,20292,7,'Production Design'),(1966,20293,4,'Screenplay'),(1966,20295,3,'Producer'),(1966,20296,5,'Editor'),(1966,20297,5,'Editor'),(1966,20298,5,'Editor'),(1966,20299,5,'Editor'),(1966,20719,3,'Associate Producer'),(1966,23773,7,'Art Direction'),(1966,47817,6,'Supervising Sound Editor'),(1966,29858,7,'Art Direction'),(1966,46283,1,'Additional Camera'),(1966,60859,7,'Art Direction'),(1966,62778,3,'Casting'),(1966,63601,7,'Assistant Art Director'),(1966,63798,10,'Special Effects Supervisor'),(1966,66185,3,'Executive Producer'),(1966,71332,3,'Co-Executive Producer'),(1966,71579,9,'Visual Effects Art Director'),(1966,75002,6,'Music Supervisor'),(1966,75476,3,'Producer'),(1966,75477,3,'Line Producer'),(1966,101523,8,'Costume Supervisor'),(1966,117220,7,'Sculptor'),(1966,125895,9,'Sound Recordist'),(1966,137125,6,'Sound Re-Recording Mixer'),(1966,142096,6,'Foley'),(1966,557706,6,'Orchestrator'),(1966,954881,3,'Executive Producer'),(1966,958401,1,'Additional Photography'),(1966,959962,8,'Assistant Costume Designer'),(1966,961984,3,'Executive Producer'),(1966,967606,7,'Art Direction'),(1966,1017789,1,'Camera Operator'),(1966,1017789,1,'Steadicam Operator'),(1966,1050634,7,'Art Direction'),(1966,1102197,3,'Producer'),(1966,1102198,3,'Associate Producer'),(1966,1117716,4,'Creative Producer'),(1966,1203136,8,'Assistant Costume Designer'),(1966,1327025,10,'Visual Effects Supervisor'),(1966,1327026,9,'CG Supervisor'),(1966,1328730,7,'Art Direction'),(1966,1328731,3,'Casting'),(1966,1330898,7,'Assistant Art Director'),(1966,1335179,7,'Art Department Coordinator'),(1966,1335542,7,'Sculptor'),(1966,1342643,9,'Transportation Coordinator'),(1966,1352969,6,'Supervising Sound Editor'),(1966,1373694,7,'Assistant Art Director'),(1966,1377136,5,'Color Timer'),(1966,1380003,2,'Script Supervisor'),(1966,1388879,6,'Music Editor'),(1966,1392587,7,'Assistant Art Director'),(1966,1393448,1,'Still Photographer'),(1966,1398080,7,'Set Designer'),(1966,1398081,7,'Construction Coordinator'),(1966,1398083,7,'Assistant Art Director'),(1966,1398084,7,'Assistant Art Director'),(1966,1398085,9,'Property Master'),(1966,1398086,9,'Scenic Artist'),(1966,1398087,9,'Scenic Artist'),(1966,1398088,7,'Construction Coordinator'),(1966,1398089,7,'Greensman'),(1966,1398090,7,'Leadman'),(1966,1398091,9,'Sound Recordist'),(1966,1398092,9,'Sound Recordist'),(1966,1398093,5,'Dialogue Editor'),(1966,1398094,6,'ADR & Dubbing'),(1966,1398095,5,'Dialogue Editor'),(1966,1398096,6,'Sound Re-Recording Mixer'),(1966,1398098,10,'Visual Effects Producer'),(1966,1398099,10,'Visual Effects Producer'),(1966,1398100,10,'Visual Effects Producer'),(1966,1398101,9,'Visual Effects Editor'),(1966,1398102,10,'Visual Effects Supervisor'),(1966,1398103,10,'Visual Effects Supervisor'),(1966,1398104,10,'Visual Effects Supervisor'),(1966,1398105,10,'Visual Effects Supervisor'),(1966,1398107,9,'Stunt Coordinator'),(1966,1398108,1,'Camera Operator'),(1966,1398110,11,'Gaffer'),(1966,1398111,9,'Transportation Coordinator'),(1966,1398112,9,'Choreographer'),(1966,1399072,3,'Casting Associate'),(1966,1404235,3,'Publicist'),(1966,1404244,1,'Helicopter Camera'),(1966,1408361,11,'Best Boy Electric'),(1966,1408362,11,'Rigging Gaffer'),(1966,1411320,8,'Makeup Artist'),(1966,1413808,2,'Script Supervisor'),(1966,1417848,3,'Unit Manager'),(1966,1424180,9,'Second Unit Cinematographer'),(1966,1427499,8,'Wigmaker'),(1966,1428912,8,'Hairstylist'),(1966,1447518,9,'Stunts'),(1966,1453613,4,'Storyboard'),(1966,1476831,3,'Production Manager'),(1966,1525888,8,'Hair Designer'),(1966,1525890,8,'Key Hair Stylist'),(1966,1525892,8,'Makeup Artist'),(1966,1525893,8,'Makeup Artist'),(1966,1525894,10,'Animation Supervisor'),(1966,1525898,9,'Armorer'),(1966,1540474,9,'Driver'),(1966,1591552,7,'Painter'),(1966,1591553,7,'Conceptual Illustrator'),(1966,1627985,9,'Transportation Captain'),(1966,1733725,3,'Associate Producer'),(1966,1733726,7,'Art Department Assistant'),(1966,1733727,1,'First Assistant Camera'),(1966,1733728,1,'Grip'),(1966,1733729,8,'Set Dressing Artist'),(1966,1733730,9,'Carpenter'),(1966,1733749,9,'Loader'),(1966,1733751,9,'Post Production Supervisor'),(1966,1733752,9,'Propmaker'),(1966,1733754,9,'Set Production Assistant'),(1966,1733757,9,'Software Engineer'),(1966,1733759,9,'Sound Recordist'),(1966,1733762,9,'Stand In'),(1966,1733768,9,'Utility Stunts'),(1966,1733771,2,'Assistant Director'),(1966,1733777,5,'Digital Intermediate'),(1966,1733778,11,'Electrician'),(1966,1733781,11,'Lighting Technician'),(1966,1733782,3,'Executive In Charge Of Production'),(1966,1733783,3,'Location Manager'),(1966,1733785,3,'Production Accountant'),(1966,1733786,3,'Production Coordinator'),(1966,1733788,3,'Production Supervisor'),(1966,1733789,6,'Boom Operator'),(1966,1733790,6,'Assistant Sound Editor'),(1966,1733791,6,'Sound Editor'),(1966,1733792,10,'Digital Compositors'),(1966,1733793,10,'Visual Effects'),(1966,1733794,10,'Visual Effects Coordinator'),(1966,1733795,9,'Motion Capture Artist'),(1966,1733796,6,'Sound'),(675,1129,1,'Director of Photography'),(675,5491,7,'Production Design'),(675,10296,4,'Screenplay'),(675,10966,4,'Novel'),(675,10968,3,'Producer'),(675,10710,7,'Art Direction'),(675,10976,9,'Stunt Coordinator'),(675,11167,7,'Art Direction'),(675,11227,8,'Costume Design'),(675,11295,3,'Casting'),(675,11296,7,'Art Direction'),(675,11300,10,'Visual Effects'),(675,11343,2,'Director'),(675,11344,6,'Original Music Composer'),(675,11345,5,'Editor'),(675,11348,8,'Makeup Artist'),(675,11349,8,'Makeup Artist'),(675,11350,6,'Sound Designer'),(675,11351,6,'Supervising Sound Effects Editor'),(675,11352,9,'Special Effects'),(675,11354,9,'Stunts'),(675,1551777,8,'Assistant Costume Designer'),(674,293,1,'Director of Photography'),(674,294,5,'Editor'),(674,668,3,'Casting'),(674,5331,7,'Set Decoration'),(674,5491,7,'Production Design'),(674,9152,6,'Original Music Composer'),(674,10966,4,'Novel'),(674,10967,4,'Screenplay'),(674,10968,3,'Producer'),(674,10710,7,'Art Direction'),(674,10976,9,'Stunt Coordinator'),(674,11167,7,'Art Direction'),(674,11174,6,'Supervising Sound Editor'),(674,11224,7,'Art Direction'),(674,11225,7,'Art Direction'),(674,11226,7,'Art Direction'),(674,11227,8,'Costume Design'),(674,10723,2,'Director'),(674,11295,3,'Casting'),(674,11296,7,'Art Direction'),(674,11297,8,'Makeup Artist'),(674,11298,8,'Makeup Artist'),(674,11299,9,'Special Effects'),(674,11300,10,'Visual Effects'),(674,11301,9,'Stunts'),(674,65614,3,'Executive Producer'),(674,16589,3,'Co-Producer'),(674,58697,3,'Executive Producer'),(674,1471947,3,'Associate Producer'),(674,1521831,3,'Associate Producer'),(8960,2215,3,'Casting'),(8960,638,3,'Producer'),(8960,10816,5,'Editor'),(8960,6410,3,'Casting'),(8960,2888,3,'Producer'),(8960,7213,3,'Executive Producer'),(8960,5575,3,'Producer'),(8960,9987,3,'Executive Producer'),(8960,11411,7,'Production Design'),(8960,9043,8,'Costume Design'),(8960,11098,6,'Original Music Composer'),(8960,13588,7,'Set Decoration'),(8960,15559,1,'Director of Photography'),(8960,18617,5,'Editor'),(8960,36602,2,'Director'),(8960,46080,3,'Producer'),(8960,66632,4,'Screenplay'),(8960,66633,4,'Screenplay'),(8960,66688,7,'Art Direction'),(8960,66689,7,'Art Direction'),(8960,65753,3,'Executive Producer'),(8960,66690,8,'Hairstylist'),(8960,66691,8,'Hairstylist'),(8960,66692,8,'Hairstylist'),(8960,66693,9,'Makeup Effects'),(8960,60945,3,'Unit Production Manager'),(8960,66696,3,'Production Supervisor'),(6479,8220,7,'Production Design'),(6479,605,8,'Costume Design'),(6479,1213,6,'Original Music Composer'),(6479,1296,3,'Executive Producer'),(6479,1313,1,'Director of Photography'),(6479,5575,3,'Producer'),(6479,5575,4,'Screenstory'),(6479,5575,4,'Screenplay'),(6479,6854,4,'Screenstory'),(6479,6854,4,'Screenplay'),(6479,10943,2,'Director'),(6479,10950,3,'Executive Producer'),(6479,10957,5,'Editor'),(6479,10968,3,'Producer'),(6479,11874,3,'Producer'),(6479,12415,4,'Novel'),(6479,17630,3,'Executive Producer'),(6479,29018,3,'Executive Producer'),(6479,46080,3,'Producer'),(6479,46943,3,'Casting'),(6479,49917,3,'Producer'),(6479,1462666,10,'Animation'),(6479,1534627,9,'Choreographer'),(118,510,2,'Director'),(118,531,6,'Original Music Composer'),(118,541,5,'Editor'),(118,1296,3,'Executive Producer'),(118,1297,3,'Producer'),(118,1298,3,'Producer'),(118,1299,4,'Screenplay'),(118,1299,4,'Author'),(118,1300,4,'Screenplay'),(118,1301,1,'Director of Photography'),(118,1302,3,'Casting'),(118,1303,7,'Production Design'),(118,1304,8,'Costume Design'),(118,1305,6,'Sound Designer'),(118,1305,6,'Music Editor'),(118,5021,7,'Supervising Art Director'),(118,20643,3,'Producer'),(118,8275,2,'Assistant Director'),(118,8275,3,'Co-Producer'),(118,9618,7,'Art Direction'),(118,9820,7,'Art Direction'),(118,10972,6,'Sound Effects Editor'),(118,40823,6,'Foley'),(118,12761,6,'Supervising Sound Editor'),(118,23773,7,'Art Direction'),(118,39923,7,'Art Direction'),(118,38020,3,'Executive Producer'),(118,51841,1,'Still Photographer'),(118,56645,10,'Digital Compositors'),(118,57465,3,'Executive Producer'),(118,59533,8,'Costume Supervisor'),(118,59774,3,'Executive Producer'),(118,60068,9,'Additional Music'),(118,68896,3,'Executive Producer'),(118,71577,7,'Art Direction'),(118,71579,7,'Art Direction'),(118,135161,8,'Assistant Costume Designer'),(118,256928,10,'Visual Effects Supervisor'),(118,959668,3,'Associate Producer'),(118,963843,7,'Art Department Manager'),(118,1014917,9,'Loader'),(118,1050634,7,'Art Direction'),(118,1117950,9,'Post Production Supervisor'),(118,1173229,6,'Boom Operator'),(118,1185955,7,'Set Decoration'),(118,1262549,9,'Post Production Assistant'),(118,1327026,9,'CG Supervisor'),(118,1332186,8,'Key Hair Stylist'),(118,1335181,7,'Property Master'),(118,1335880,10,'Visual Effects Producer'),(118,1336716,9,'Digital Effects Supervisor'),(118,1337408,6,'First Assistant Sound Editor'),(118,1340117,6,'Dolby Consultant'),(118,1354916,7,'Conceptual Illustrator'),(118,1385883,7,'Assistant Art Director'),(118,1388894,1,'First Assistant Camera'),(118,1395729,6,'Production Sound Mixer'),(118,1398089,7,'Greensman'),(118,1399561,10,'VFX Editor'),(118,1401118,9,'Choreographer'),(118,1403640,1,'Steadicam Operator'),(118,1406187,9,'Scenic Artist'),(118,1408848,3,'Unit Manager'),(118,1411075,8,'Hair Designer'),(118,1411075,8,'Makeup Designer'),(118,1413169,6,'Scoring Mixer'),(118,1415957,9,'Stunt Coordinator'),(118,1417517,6,'Sound Re-Recording Mixer'),(118,1418317,3,'Production Coordinator'),(118,1426338,9,'Video Assist Operator'),(118,1428906,9,'Visual Effects Editor'),(118,1430192,3,'Location Manager'),(118,1434562,5,'First Assistant Editor'),(118,1443286,3,'Publicist'),(118,1445972,10,'Special Effects Supervisor'),(118,1451229,10,'Visual Development'),(118,1453963,10,'Animation Supervisor'),(118,1456054,11,'Rigging Gaffer'),(118,1462919,2,'Script Supervisor'),(118,1535097,1,'Key Grip'),(118,1536594,10,'Visual Effects Coordinator'),(118,1545989,11,'Gaffer'),(118,1554041,6,'Orchestrator'),(118,1559186,9,'Motion Capture Artist'),(118,1561994,7,'Art Department Coordinator'),(118,1592205,7,'Painter'),(118,1632605,9,'Carpenter'),(118,1645447,3,'Unit Production Manager'),(118,1662377,4,'Storyboard'),(118,1710270,9,'Digital Producer'),(118,1737955,3,'Production Accountant'),(118,1816134,9,'Projection'),(118,1828172,8,'Makeup Artist'),(118,1855205,7,'Art Department Assistant'),(118,1855206,7,'Sculptor'),(118,1855207,1,'Additional Camera'),(118,1855208,1,'Grip'),(118,1855211,8,'Hairstylist'),(118,1855212,8,'Set Dressing Artist'),(118,1855214,9,'Dialect Coach'),(118,1855215,9,'Propmaker'),(118,1855216,9,'Sequence Supervisor'),(118,1855217,9,'Set Production Assistant'),(118,1855218,6,'Sound Recordist'),(118,1855219,9,'Systems Administrators & Support'),(118,1855220,9,'Utility Stunts'),(118,1855221,11,'Electrician'),(118,1855222,11,'Lighting Artist'),(118,1855223,3,'Casting Associate'),(118,1855225,3,'Production Manager'),(118,1855226,3,'Production Supervisor'),(118,1855227,6,'Sound Editor'),(118,1855228,10,'3D Modeller'),(118,1855229,10,'Visual Effects'),(118,1855230,9,'Studio Teachers'),(2062,7,3,'Executive Producer'),(2062,7879,3,'Executive Producer'),(2062,7888,7,'Production Design'),(2062,7929,10,'Animation'),(2062,7930,4,'Original Story'),(2062,7930,2,'Director'),(2062,7942,10,'Shading'),(2062,7951,10,'Animation'),(2062,7952,9,'Production Artist'),(2062,7960,7,'Sculptor'),(2062,7971,7,'Art Department Manager'),(2062,7975,10,'Animation'),(2062,7984,9,'Sequence Leads'),(2062,7988,2,'Layout'),(2062,8012,10,'Animation'),(2062,8013,10,'Animation'),(2062,8042,10,'Animation'),(2062,8089,10,'Modeling'),(2062,8092,11,'Lighting Supervisor'),(2062,8109,11,'Master Lighting Artist'),(2062,8153,9,'Post Production Supervisor'),(2062,9441,6,'Foley'),(2062,15895,9,'Thanks'),(2062,15347,6,'Original Music Composer'),(2062,15354,6,'Music Editor'),(2062,7087,2,'Director'),(2062,7087,4,'Original Story'),(2062,7087,4,'Screenplay'),(2062,21201,5,'Editor'),(2062,32532,3,'Producer'),(2062,7899,3,'Production Manager'),(2062,32535,4,'Original Story'),(2062,57673,3,'Casting'),(2062,59362,10,'Animation'),(2062,72753,3,'Production Manager'),(2062,72972,2,'Layout'),(2062,74811,6,'Scoring Mixer'),(2062,107704,10,'Animation'),(2062,963497,3,'Casting'),(2062,1203534,10,'Animation'),(2062,1325119,6,'Additional Soundtrack'),(2062,1357170,6,'ADR & Dubbing'),(2062,1371609,10,'Shading'),(2062,1408648,10,'Animation'),(2062,1413096,10,'Animation'),(2062,1435597,5,'Assistant Editor'),(2062,1442510,10,'Visual Effects'),(2062,1443479,5,'Editorial Manager'),(2062,1447565,10,'Animation'),(2062,1461369,9,'Additional Dialogue'),(2062,1463239,9,'Production Artist'),(2062,1484178,6,'Supervising Sound Editor'),(2062,1485788,3,'Production Manager'),(2062,1532774,6,'Orchestrator'),(2062,1552873,5,'Color Timer'),(2062,1643893,9,'Special Effects'),(272,1113,3,'Casting'),(272,511,3,'Producer'),(272,947,6,'Original Music Composer'),(272,282,3,'Producer'),(272,525,2,'Director'),(272,525,4,'Screenplay'),(272,556,3,'Producer'),(272,559,1,'Director of Photography'),(272,561,3,'Casting'),(272,1213,6,'Original Music Composer'),(272,3893,4,'Screenplay'),(272,3794,4,'Characters'),(272,3904,5,'Editor'),(272,20643,3,'Producer'),(272,10949,3,'Executive Producer'),(272,10951,3,'Executive Producer'),(272,8415,3,'Unit Production Manager'),(272,10908,7,'Art Direction'),(272,10714,8,'Costume Design'),(272,11229,6,'Supervising Sound Editor'),(272,11296,7,'Assistant Art Director'),(272,11354,9,'Stunts'),(272,10199,8,'Hair Designer'),(272,40805,5,'Assistant Editor'),(272,40823,6,'Foley'),(272,12039,7,'Set Decoration'),(272,10789,7,'Set Decoration'),(272,16177,6,'Sound Re-Recording Mixer'),(272,15327,7,'Production Design'),(272,44006,9,'Stunt Coordinator'),(272,53680,3,'Casting Associate'),(272,92479,9,'Stunts'),(272,34934,9,'Thanks'),(272,34920,9,'Thanks'),(272,35267,9,'Thanks'),(272,13443,9,'Stunts'),(272,122355,9,'Stunts'),(272,588604,3,'Location Manager'),(272,943313,7,'Art Direction'),(272,969465,6,'Sound Editor'),(272,970875,6,'Music Editor'),(272,1032069,3,'Production Manager'),(272,1081073,9,'Special Effects Coordinator'),(272,1117950,9,'Post Production Supervisor'),(272,1157975,9,'CG Supervisor'),(272,1211813,9,'Thanks'),(272,1262549,9,'Post Production Assistant'),(272,1318219,1,'Camera Operator'),(272,1318219,1,'Steadicam Operator'),(272,1322147,8,'Costume Supervisor'),(272,1325917,7,'Supervising Art Director'),(272,1327025,10,'Visual Effects Supervisor'),(272,1332017,9,'Stunts'),(272,1334489,7,'Art Direction'),(272,1334490,8,'Makeup Artist'),(272,1334493,7,'Art Department Coordinator'),(272,1338223,6,'Boom Operator'),(272,1354919,9,'Propmaker'),(272,1357599,6,'Music Editor'),(272,1377220,6,'Sound Re-Recording Mixer'),(272,1378726,9,'Dialect Coach'),(272,1389139,1,'Still Photographer'),(272,1390367,11,'Gaffer'),(272,1390388,2,'Script Supervisor'),(272,1394027,9,'Visual Effects Editor'),(272,1397483,3,'Associate Producer'),(272,1397803,9,'Animatronics Designer'),(272,1398080,7,'Set Designer'),(272,1398089,7,'Greensman'),(272,1398098,10,'Visual Effects Producer'),(272,1399071,1,'Aerial Director of Photography'),(272,1406857,3,'Unit Manager'),(272,1410552,6,'Sound Effects Editor'),(272,1411061,9,'Stunts'),(272,1412088,6,'Foley'),(272,1416005,9,'Unit Publicist'),(272,1417400,8,'Hairstylist'),(272,1419240,10,'3D Supervisor'),(272,1426762,8,'Makeup Artist'),(272,1428478,9,'Scenic Artist'),(272,1453613,4,'Storyboard'),(272,1510573,8,'Set Dressing Artist'),(272,1530327,6,'Orchestrator'),(272,1536112,6,'Dolby Consultant'),(272,1536968,11,'Rigging Gaffer'),(272,1540477,3,'Publicist'),(272,1541579,9,'Carpenter'),(272,1544903,6,'ADR & Dubbing'),(272,1550722,9,'Chef'),(272,1551791,9,'Armorer'),(272,1553640,10,'Visual Effects'),(272,1553743,6,'Sound Recordist'),(272,1557591,5,'Dialogue Editor'),(272,1558700,10,'Visual Effects Coordinator'),(272,1565651,8,'Assistant Costume Designer'),(272,1566278,9,'Video Assist Operator'),(272,1575003,5,'First Assistant Editor'),(272,1576025,5,'Color Timer'),(272,1583819,6,'Sound Mixer'),(272,1591761,5,'Color Timer'),(272,1593076,8,'Hairstylist'),(272,1594961,3,'Production Supervisor'),(272,1613276,9,'Systems Administrators & Support'),(272,1631516,2,'First Assistant Director'),(272,1653964,7,'Property Master'),(272,1673059,9,'Stand In'),(272,1707604,3,'Production Accountant'),(272,1715540,7,'Art Department Assistant'),(272,1720837,9,'Loader'),(272,1733728,1,'Key Grip'),(272,1753859,11,'Electrician'),(272,1770675,9,'Thanks'),(272,1803780,9,'Transportation Co-Captain'),(272,1816134,9,'Projection'),(272,1816171,10,'Digital Compositors'),(272,1836052,7,'Set Decoration'),(272,1836059,7,'Construction Coordinator'),(272,1836060,7,'Painter'),(272,1836061,7,'Sculptor'),(272,1836062,7,'Standby Painter'),(272,1836063,1,'First Assistant Camera'),(272,1836064,1,'Grip'),(272,1836065,8,'Seamstress'),(272,1836066,8,'Set Costumer'),(272,1836067,9,'Driver'),(272,1836068,9,'Production Office Assistant'),(272,1836069,9,'Set Production Assistant'),(272,1836071,9,'Transportation Coordinator'),(272,1836072,9,'Utility Stunts'),(272,1836073,11,'Lighting Technician'),(272,1836074,11,'Rigging Grip'),(272,1836075,3,'Production Coordinator'),(272,1836076,6,'Assistant Sound Editor'),(272,1836081,10,'I/O Supervisor'),(272,1836082,10,'Special Effects Supervisor'),(272,1836083,9,'Sequence Leads'),(272,1836084,10,'VFX Artist'),(2080,6968,3,'Producer'),(2080,7200,3,'Producer'),(2080,7626,3,'Producer'),(2080,9813,4,'Screenplay'),(2080,13079,2,'Director'),(2080,18185,4,'Writer'),(2080,1463785,10,'VFX Artist'),(2080,1554064,9,'Stunts'),(605,1091,3,'Producer'),(605,1262,3,'Casting'),(605,4671,5,'Editor'),(605,4949,6,'Original Music Composer'),(605,6209,8,'Costume Design'),(605,9341,1,'Director of Photography'),(605,9339,4,'Screenplay'),(605,9339,2,'Director'),(605,9340,4,'Screenplay'),(605,9340,2,'Director'),(605,9342,3,'Casting'),(605,9343,7,'Production Design'),(605,9344,7,'Art Direction'),(605,9357,9,'Stunts'),(605,9420,7,'Art Direction'),(605,9421,7,'Set Decoration'),(605,9430,6,'Sound Designer'),(605,9581,7,'Art Direction'),(605,9583,7,'Art Direction'),(605,9588,8,'Makeup Artist'),(605,9593,9,'Special Effects'),(605,9595,10,'Visual Effects'),(605,9598,9,'Stunts'),(605,11266,2,'Assistant Director'),(605,1453594,10,'Animation'),(604,1091,3,'Producer'),(604,1262,3,'Casting'),(604,2529,7,'Set Decoration'),(604,4671,5,'Editor'),(604,4949,6,'Original Music Composer'),(604,6209,8,'Costume Design'),(604,9341,1,'Director of Photography'),(604,9339,4,'Screenplay'),(604,9339,2,'Director'),(604,9340,4,'Screenplay'),(604,9340,2,'Director'),(604,9342,3,'Casting'),(604,9343,7,'Production Design'),(604,9344,7,'Art Direction'),(604,9420,7,'Art Direction'),(604,9421,7,'Set Decoration'),(604,9424,8,'Makeup Artist'),(604,9430,6,'Sound Designer'),(604,9432,9,'Special Effects'),(604,9434,10,'Visual Effects'),(604,9436,9,'Stunts'),(604,9437,9,'Stunts'),(604,11266,2,'Assistant Director'),(7978,154,5,'Editor'),(7978,1226,7,'Production Design'),(7978,531,6,'Original Music Composer'),(7978,553,7,'Art Direction'),(7978,1121,3,'Producer'),(7978,1305,6,'Music Editor'),(7978,3311,3,'Casting'),(7978,4945,2,'Director'),(7978,4950,1,'Director of Photography'),(7978,5028,4,'Screenplay'),(7978,5584,5,'Editor'),(7978,5671,8,'Costume Design'),(7978,7779,3,'Producer'),(7978,9820,7,'Supervising Art Director'),(7978,12047,4,'Screenplay'),(7978,14764,6,'Sound Effects Editor'),(7978,14765,6,'Supervising Sound Editor'),(7978,19282,3,'Producer'),(7978,23454,7,'Art Direction'),(7978,23420,3,'Executive Producer'),(7978,30714,3,'Producer'),(7978,35021,4,'Screenplay'),(7978,54419,3,'Executive Producer'),(7978,66552,7,'Set Decoration'),(7978,114410,3,'Executive Producer'),(7978,160927,6,'Music Editor'),(7978,1190889,3,'Co-Producer'),(7978,1326397,8,'Costume Supervisor'),(7978,1342657,6,'Sound Effects Editor'),(7978,1342658,5,'Dialogue Editor'),(7978,1368864,6,'Sound Re-Recording Mixer'),(7978,1373729,2,'Script Supervisor'),(7978,1393021,6,'Music Editor'),(7978,1394130,6,'Sound Re-Recording Mixer'),(7978,1395685,6,'Music Editor'),(7978,1399327,6,'Music Editor'),(7978,1403490,6,'Music Editor'),(7978,1404212,6,'Supervising Sound Editor'),(7978,1404217,6,'Sound Designer'),(7978,1404217,6,'Sound Effects Editor'),(7978,1409722,6,'Music Editor'),(7978,1412205,1,'Still Photographer'),(7978,1419731,6,'Music Editor'),(7978,1453019,10,'Visual Effects'),(7978,1530166,6,'Music Supervisor'),(7978,1550814,2,'Script Supervisor'),(7978,1550819,3,'Production Supervisor'),(5559,2593,6,'Music'),(5559,35666,3,'Producer'),(5559,44113,2,'Director'),(5559,44114,2,'Director'),(5559,16377,4,'Screenplay'),(5559,16377,3,'Producer'),(5559,44115,4,'Screenplay'),(5559,44116,4,'Screenplay'),(5559,44117,4,'Screenplay'),(5559,44118,3,'Producer'),(5559,44119,5,'Editor'),(5559,44120,8,'Costume Design'),(5559,44122,1,'Director of Photography'),(5559,44121,1,'Director of Photography'),(5559,44123,10,'Animation'),(5559,44125,10,'Animation'),(5559,44126,7,'Art Direction'),(5559,1438901,7,'Conceptual Design'),(5559,1447381,10,'Animation'),(5559,1452488,7,'Art Department Manager'),(5559,1460472,10,'Animation'),(956,500,3,'Producer'),(956,557,8,'Costume Design'),(956,6052,3,'Casting'),(956,9183,3,'Producer'),(956,14192,8,'Makeup Artist'),(956,13933,7,'Art Direction'),(956,15312,4,'Original Story'),(956,15332,6,'Supervising Sound Editor'),(956,15344,2,'Director'),(956,15344,4,'Writer'),(956,15345,4,'Writer'),(956,15346,4,'Writer'),(956,15347,6,'Original Music Composer'),(956,15348,1,'Director of Photography'),(956,15349,5,'Editor'),(956,15350,5,'Editor'),(956,15351,7,'Production Design'),(956,15352,7,'Set Decoration'),(956,15353,8,'Hairstylist'),(956,15354,6,'Music Editor'),(956,15355,9,'Special Effects Coordinator'),(956,15356,9,'Special Effects'),(956,15357,10,'Visual Effects'),(956,15358,9,'Stunt Coordinator'),(956,15359,9,'Stunts'),(956,1451245,1,'Camera Department Manager'),(652,1113,3,'Casting'),(652,8382,7,'Supervising Art Director'),(652,8384,7,'Set Decoration'),(652,293,1,'Director of Photography'),(652,490,3,'Producer'),(652,1729,6,'Original Music Composer'),(652,2530,8,'Costume Design'),(652,5021,7,'Supervising Art Director'),(652,5231,2,'Director'),(652,5231,3,'Producer'),(652,5488,9,'Additional Music'),(652,6871,3,'Associate Producer'),(652,6875,5,'Editor'),(652,6876,3,'Casting Associate'),(652,6883,6,'Music Editor'),(652,9812,4,'Author'),(652,9812,9,'Poem'),(652,9813,4,'Screenplay'),(652,9814,3,'Producer'),(652,9815,3,'Co-Producer'),(652,9816,1,'Camera Operator'),(652,9817,7,'Production Design'),(652,9818,7,'Art Direction'),(652,9819,7,'Art Direction'),(652,9820,7,'Art Direction'),(652,9821,7,'Art Direction'),(652,9822,7,'Art Direction'),(652,9823,7,'Set Decoration'),(652,10972,6,'Supervising Sound Editor'),(652,11348,8,'Makeup Artist'),(652,40693,9,'Scenic Artist'),(652,14764,6,'Sound Effects Editor'),(652,16472,6,'Sound Editor'),(652,34513,7,'Supervising Art Director'),(652,42027,8,'Key Hair Stylist'),(652,21122,6,'Music Editor'),(652,42263,10,'Visual Effects Producer'),(652,43592,6,'Orchestrator'),(652,77511,3,'Production Supervisor'),(652,75143,8,'Prosthetic Supervisor'),(652,142325,9,'Stunt Coordinator'),(652,142325,9,'Second Unit Cinematographer'),(652,1117716,4,'Creative Producer'),(652,1159914,6,'Dolby Consultant'),(652,1181554,1,'Still Photographer'),(652,1323295,8,'Costume Supervisor'),(652,1335181,9,'Property Master'),(652,1335541,7,'Sculptor'),(652,1337408,6,'First Assistant Sound Editor'),(652,1341854,6,'Sound Re-Recording Mixer'),(652,1342668,9,'Security'),(652,1373716,9,'CG Supervisor'),(652,1373728,11,'Gaffer'),(652,1376805,11,'Best Boy Electric'),(652,1385883,7,'Assistant Art Director'),(652,1389548,2,'Script Supervisor'),(652,1390368,1,'Steadicam Operator'),(652,1395729,6,'Production Sound Mixer'),(652,1402012,3,'Publicist'),(652,1404232,8,'Set Costumer'),(652,1405246,9,'Unit Publicist'),(652,1405798,1,'Steadicam Operator'),(652,1406815,7,'Greensman'),(652,1406860,3,'Production Coordinator'),(652,1407848,8,'Hairstylist'),(652,1408392,1,'Helicopter Camera'),(652,1409294,5,'Dialogue Editor'),(652,1410546,7,'Standby Painter'),(652,1411112,5,'First Assistant Editor'),(652,1418322,6,'Foley'),(652,1424925,9,'Propmaker'),(652,1428906,9,'Visual Effects Editor'),(652,1453613,4,'Storyboard'),(652,1456054,11,'Rigging Gaffer'),(652,1457374,9,'Dialect Coach'),(652,1492753,6,'Orchestrator'),(652,1535098,6,'Orchestrator'),(652,1535099,6,'Orchestrator'),(652,1536594,10,'Visual Effects Coordinator'),(652,1553628,9,'Projection'),(652,1553640,10,'Visual Effects'),(652,1556433,7,'Art Department Coordinator'),(652,1559186,9,'Motion Capture Artist'),(652,1564101,9,'Post Production Supervisor'),(652,1574642,9,'Set Production Assistant'),(652,1583819,6,'Sound Mixer'),(652,1585734,9,'Sequence Supervisor'),(652,1590412,10,'Visual Effects Supervisor'),(652,1591761,5,'Color Timer'),(652,1591775,10,'I/O Supervisor'),(652,1592605,1,'Grip'),(652,1595483,9,'Transportation Coordinator'),(652,1621403,9,'Loader'),(652,1652043,10,'Special Effects Supervisor'),(652,1697272,7,'Art Department Assistant'),(652,1697273,7,'Location Scout'),(652,1697274,7,'Painter'),(652,1697275,1,'First Assistant Camera'),(652,1697276,8,'Assistant Costume Designer'),(652,1697277,8,'Seamstress'),(652,1697278,8,'Set Dressing Artist'),(652,1697609,9,'Armorer'),(652,1697610,9,'Carpenter'),(652,1697613,9,'Chef'),(652,1697616,9,'Driver'),(652,1697617,9,'Production Controller'),(652,1697618,9,'Production Intern'),(652,1697619,9,'Set Medic'),(652,1697620,9,'Software Engineer'),(652,1697621,9,'Special Effects Coordinator'),(652,1697622,9,'Stunts'),(652,1697623,3,'Unit Production Manager'),(652,1697624,9,'Utility Stunts'),(652,1697625,2,'Assistant Director'),(652,1697626,11,'Electrician'),(652,1697627,11,'Lighting Artist'),(652,1697628,11,'Lighting Supervisor'),(652,1697629,3,'Location Manager'),(652,1697630,3,'Production Accountant'),(652,1697631,3,'Production Manager'),(652,1697632,6,'Boom Operator'),(652,1697633,10,'3D Supervisor'),(652,1697634,10,'Digital Compositors'),(652,1697637,3,'Unit Manager'),(95,8387,3,'Production Manager'),(95,770,3,'Producer'),(95,8340,8,'Makeup Artist'),(95,497,7,'Assistant Art Director'),(95,541,5,'Editor'),(95,605,8,'Costume Design'),(95,897,3,'Casting'),(95,865,2,'Director'),(95,865,3,'Producer'),(95,869,3,'Producer'),(95,873,4,'Screenplay'),(95,876,4,'Screenplay'),(95,892,1,'Director of Photography'),(95,894,6,'Original Music Composer'),(95,896,7,'Production Design'),(95,898,5,'Editor'),(95,899,5,'Editor'),(95,900,6,'Sound Designer'),(95,903,7,'Art Direction'),(95,905,7,'Art Direction'),(95,906,7,'Set Decoration'),(95,907,8,'Costume Design'),(95,3504,6,'Sound Effects Editor'),(95,6039,4,'Screenplay'),(95,6878,7,'Set Designer'),(95,7537,6,'Sound Effects Editor'),(95,10118,9,'Stunt Coordinator'),(95,14442,7,'Leadman'),(95,12611,8,'Makeup Artist'),(95,15894,6,'Sound Effects Editor'),(95,15344,4,'Screenplay'),(95,42034,6,'Sound Re-Recording Mixer'),(95,19242,4,'Screenplay'),(95,24310,1,'Camera Operator'),(95,20406,1,'Helicopter Camera'),(95,21560,7,'Set Designer'),(95,46082,7,'Supervising Art Director'),(95,46592,7,'Set Designer'),(95,113044,5,'Dialogue Editor'),(95,62725,3,'Casting Associate'),(95,84851,10,'Visual Effects Supervisor'),(95,575143,3,'Production Manager'),(95,575433,11,'Gaffer'),(95,959555,7,'Set Designer'),(95,1071437,10,'Visual Effects Producer'),(95,1190263,6,'Additional Soundtrack'),(95,1323090,8,'Makeup Department Head'),(95,1329759,8,'Costume Supervisor'),(95,1338372,6,'Foley'),(95,1341857,5,'Dialogue Editor'),(95,1367502,11,'Gaffer'),(95,1368872,10,'Visual Effects Supervisor'),(95,1377127,5,'Dialogue Editor'),(95,1378168,6,'Supervising Sound Editor'),(95,1378171,6,'Sound Re-Recording Mixer'),(95,1378240,1,'Still Photographer'),(95,1378749,7,'Set Designer'),(95,1388879,6,'Music Editor'),(95,1389585,7,'Set Designer'),(95,1394313,2,'Script Coordinator'),(95,1395438,7,'Sculptor'),(95,1397846,10,'Visual Effects Supervisor'),(95,1398970,1,'Steadicam Operator'),(95,1398970,1,'Camera Operator'),(95,1398972,1,'Underwater Camera'),(95,1400370,9,'Visual Effects Editor'),(95,1400542,3,'Production Supervisor'),(95,1400543,3,'Production Supervisor'),(95,1400544,7,'Art Department Coordinator'),(95,1400545,7,'Construction Coordinator'),(95,1400546,7,'Construction Coordinator'),(95,1400547,7,'Assistant Art Director'),(95,1400548,7,'Sculptor'),(95,1400549,7,'Sculptor'),(95,1400550,7,'Leadman'),(95,1400553,7,'Set Designer'),(95,1400554,7,'Set Designer'),(95,1400555,7,'Set Designer'),(95,1400556,6,'Sound Effects Editor'),(95,1400557,6,'Sound Effects Editor'),(95,1400558,6,'Sound Effects Editor'),(95,1400559,9,'Visual Effects Editor'),(95,1400560,10,'Visual Effects Supervisor'),(95,1400561,10,'Visual Effects Supervisor'),(95,1400562,9,'Visual Effects Editor'),(95,1400563,10,'Visual Effects Producer'),(95,1400564,10,'Visual Effects Producer'),(95,1400565,10,'Visual Effects Producer'),(95,1400566,10,'Visual Effects Producer'),(95,1400733,1,'Helicopter Camera'),(95,1400734,8,'Set Costumer'),(95,1400735,8,'Set Costumer'),(95,1400736,9,'Transportation Coordinator'),(95,1400737,9,'Transportation Coordinator'),(95,1400738,2,'Script Supervisor'),(95,1400739,3,'Publicist'),(95,1400740,3,'Location Manager'),(95,1400741,8,'Hair Department Head'),(95,1401803,9,'Technical Supervisor'),(95,1407223,8,'Hairstylist'),(95,1455613,10,'Animation'),(95,1474978,8,'Makeup Artist'),(95,1533794,10,'Visual Effects Supervisor'),(95,1535952,3,'Casting Associate'),(95,1536381,8,'Key Hair Stylist'),(95,1536383,2,'Script Coordinator'),(95,1536385,11,'Rigging Gaffer'),(95,1536386,11,'Rigging Grip'),(608,1720,3,'Casting'),(608,488,3,'Executive Producer'),(608,531,6,'Original Music Composer'),(608,1305,6,'Music Editor'),(608,2212,3,'Producer'),(608,4032,7,'Set Decoration'),(608,5133,7,'Production Design'),(608,5174,2,'Director'),(608,8701,3,'Producer'),(608,9613,4,'Novel'),(608,9616,8,'Costume Design'),(608,9618,7,'Art Direction'),(608,9619,6,'Supervising Sound Editor'),(608,9644,4,'Screenplay'),(608,9645,1,'Director of Photography'),(608,9646,5,'Editor'),(608,9647,5,'Editor'),(608,9648,7,'Art Direction'),(608,9649,7,'Art Direction'),(608,9650,8,'Makeup Artist'),(608,9651,6,'Sound Effects Editor'),(608,9652,9,'Special Effects'),(608,9654,9,'Stunt Coordinator'),(608,10974,10,'Visual Effects Supervisor'),(608,13224,6,'Dolby Consultant'),(608,13457,9,'Special Effects Coordinator'),(608,16573,6,'ADR Editor'),(608,18095,1,'Still Photographer'),(608,20169,3,'Co-Producer'),(608,20169,3,'Unit Production Manager'),(608,23787,8,'Key Makeup Artist'),(608,34526,7,'Sculptor'),(608,39923,7,'Assistant Art Director'),(608,38335,6,'Orchestrator'),(608,41386,4,'Screenplay'),(608,66690,8,'Hairstylist'),(608,60190,9,'Post Production Supervisor'),(608,61523,2,'First Assistant Director'),(608,92376,6,'Foley'),(608,92378,6,'Supervising ADR Editor'),(608,84602,9,'Second Unit Cinematographer'),(608,91042,9,'Pilot'),(608,223239,6,'Production Sound Mixer'),(608,466177,9,'Sequence Leads'),(608,931247,5,'Color Timer'),(608,1085004,6,'Foley Editor'),(608,1204332,11,'Chief Lighting Technician'),(608,1209709,9,'Stunts'),(608,1286358,3,'Production Supervisor'),(608,1322481,7,'Set Designer'),(608,1323092,8,'Costume Supervisor'),(608,1364403,7,'Greensman'),(608,1364411,6,'Boom Operator'),(608,1372085,7,'Assistant Property Master'),(608,1377134,8,'Key Costumer'),(608,1378171,6,'Sound Re-Recording Mixer'),(608,1378368,7,'Title Designer'),(608,1379396,9,'Visual Effects Editor'),(608,1387212,7,'Art Department Coordinator'),(608,1392110,8,'Wardrobe Supervisor'),(608,1395373,2,'Script Supervisor'),(608,1400546,7,'Construction Coordinator'),(608,1401108,9,'Visual Effects Art Director'),(608,1402866,3,'Associate Producer'),(608,1405246,9,'Unit Publicist'),(608,1409832,11,'Lighting Technician'),(608,1409889,9,'Sound Recordist'),(608,1414172,7,'Leadman'),(608,1414183,7,'Conceptual Design'),(608,1414539,8,'Prosthetic Makeup Artist'),(608,1415606,8,'Wigmaker'),(608,1415632,1,'Camera Operator'),(608,1415635,11,'Rigging Gaffer'),(608,1417398,8,'Hair Department Head'),(608,1424138,3,'Location Manager'),(608,1434562,5,'Associate Editor'),(608,1445895,1,'Steadicam Operator'),(608,1446688,11,'Gaffer'),(608,1456511,10,'Lead Animator'),(608,1463323,4,'Storyboard'),(608,1463703,11,'Electrician'),(608,1472573,3,'Associate Producer'),(608,1484526,10,'Creature Design'),(608,1525168,8,'Set Costumer'),(608,1534638,6,'Supervising Dialogue Editor'),(608,1534643,3,'Production Office Coordinator'),(608,1534973,7,'Painter'),(608,1544901,6,'Apprentice Sound Editor'),(608,1546854,9,'Property Master'),(608,1547024,6,'Music Supervisor'),(608,1548698,6,'Conductor'),(608,1549079,9,'Projection'),(608,1550198,1,'First Assistant Camera'),(608,1550200,5,'Dialogue Editor'),(608,1550723,9,'Set Medic'),(608,1558197,7,'Standby Painter'),(608,1569823,9,'Security'),(608,1586944,10,'Visual Effects Producer'),(608,1593102,10,'3D Supervisor'),(608,1599644,2,'Script Coordinator'),(608,1608895,10,'Digital Compositors'),(608,1608897,3,'Administration'),(608,1619969,7,'Art Department Assistant'),(608,1619971,7,'Location Scout'),(608,1619972,7,'Production Illustrator'),(608,1619973,1,'Additional Photography'),(608,1619975,7,'Set Dresser'),(608,1619976,9,'Carpenter'),(608,1619977,9,'CGI Supervisor'),(608,1619978,9,'Craft Service'),(608,1619979,9,'Digital Effects Supervisor'),(608,1619980,9,'Driver'),(608,1619981,9,'Loader'),(608,1619983,9,'Post Production Assistant'),(608,1619984,9,'Propmaker'),(608,1619986,9,'Scenic Artist'),(608,1619987,9,'Sequence Supervisor'),(608,1619988,9,'Set Production Assistant'),(608,1619989,9,'Software Engineer'),(608,1619991,9,'Systems Administrators & Support'),(608,1619992,9,'Transportation Co-Captain'),(608,1619994,9,'Utility Stunts'),(608,1619995,9,'Video Assist Operator'),(608,1619997,5,'Editorial Production Assistant'),(608,1619998,11,'Best Boy Electric'),(608,1620000,11,'Lighting Artist'),(608,1620001,11,'Lighting Supervisor'),(608,1620003,11,'Rigging Grip'),(608,1620004,3,'Production Accountant'),(608,1620005,3,'Production Coordinator'),(608,1620006,3,'Researcher'),(608,1620010,6,'Sound Editor'),(608,1620011,10,'Animation Supervisor'),(608,1620012,10,'I/O Supervisor'),(608,1620013,10,'Visual Effects Coordinator'),(608,1620014,9,'Machinist'),(608,1620016,9,'Digital Producer'),(608,1688593,1,'Key Grip'),(608,1733132,5,'Negative Cutter'),(608,1738137,6,'Musician'),(608,1749905,3,'Assistant Production Coordinator'),(608,1811607,1,'Grip'),(608,1837380,2,'Second Assistant Director'),(608,1858813,1,'Dolly Grip'),(608,1858815,3,'Casting Assistant'),(608,1858816,6,'Assistant Sound Editor'),(608,1858817,10,'Matchmove Supervisor'),(2310,37,6,'Original Music Composer'),(2310,24,2,'Director'),(2310,24,3,'Producer'),(2310,30,3,'Producer'),(2310,30,9,'Second Unit'),(2310,1720,3,'Casting'),(2310,1304,8,'Costume Design'),(2310,8297,4,'Screenplay'),(2310,8297,3,'Executive Producer'),(2310,20585,7,'Set Decoration'),(2310,10956,3,'Producer'),(2310,11174,6,'Supervising Sound Editor'),(2310,14341,7,'Art Direction'),(2310,16363,3,'Casting'),(2310,23446,4,'Screenplay'),(2310,23779,3,'Producer'),(2310,23779,3,'Executive Producer'),(2310,23780,1,'Director of Photography'),(2310,23781,5,'Editor'),(2310,23782,7,'Production Design'),(2310,23783,8,'Makeup Artist'),(2310,23784,8,'Makeup Artist'),(2310,23785,8,'Makeup Artist'),(2310,23786,8,'Makeup Artist'),(2310,23787,8,'Makeup Artist'),(2310,23788,8,'Makeup Artist'),(2310,41377,3,'Executive Producer'),(2310,42261,10,'Visual Effects Supervisor'),(2310,42262,6,'Original Music Composer'),(2310,42263,10,'Visual Effects Supervisor'),(2310,42264,3,'Producer'),(2310,42265,3,'Producer'),(2310,42267,6,'Sound Designer'),(2310,42268,9,'Executive Visual Effects Producer'),(2310,42269,9,'Visual Effects Design Consultant'),(2310,42270,9,'Digital Effects Supervisor'),(2310,42271,10,'Animation Supervisor'),(2310,42272,10,'Visual Effects Producer'),(2310,42273,9,'Digital Producer'),(2310,42275,9,'CG Supervisor'),(2310,42277,9,'Visual Effects Art Director'),(2310,42278,8,'Hairstylist'),(2310,42281,7,'Set Designer'),(2310,42283,9,'Visual Effects Editor'),(2310,55227,6,'Sound mixer'),(2310,138617,5,'Dialogue Editor'),(2310,1262129,2,'Script Supervisor'),(2310,1323076,8,'Makeup Department Head'),(2310,1389134,6,'Sound Effects Editor'),(2310,1394306,6,'Music Editor'),(2310,1399116,6,'Sound Effects Editor'),(2310,1417841,6,'Music Editor'),(2310,1422411,6,'Sound Effects Editor'),(2310,1451682,11,'Lighting Artist'),(2310,1452643,8,'Hair Department Head'),(2310,1457930,10,'Animation'),(2310,1462665,2,'Layout'),(2310,1462666,10,'Visual Effects'),(2310,1555638,9,'Transportation Captain'),(2310,1555639,9,'Transportation Coordinator'),(7552,495,3,'Casting'),(7552,8222,8,'Costume Design'),(7552,206,3,'Producer'),(7552,339,3,'Producer'),(7552,10572,6,'Music'),(7552,5284,3,'Co-Producer'),(7552,6923,7,'Supervising Art Director'),(7552,11413,7,'Set Decoration'),(7552,13140,1,'Director of Photography'),(7552,12923,3,'Executive Producer'),(7552,15002,2,'Director'),(7552,15005,5,'Editor'),(7552,15017,8,'Makeup Artist'),(7552,19284,7,'Production Design'),(7552,52161,6,'Music Supervisor'),(7552,41039,4,'Screenplay'),(7552,41039,4,'Story'),(7552,52934,4,'Screenplay'),(7552,52934,4,'Story'),(7552,59623,3,'Unit Production Manager'),(7552,71766,3,'Executive Producer'),(7552,559899,3,'Executive Producer'),(7552,957558,3,'Associate Producer'),(7552,1172441,7,'Art Direction'),(7552,1212071,3,'Casting Associate'),(7552,1288250,4,'Story'),(7552,1328134,8,'Costume Supervisor'),(7552,1338147,7,'Construction Coordinator'),(7552,1364400,8,'Makeup Department Head'),(7552,1377239,2,'Script Supervisor'),(7552,1410316,6,'Music Editor'),(7552,1413224,8,'Hair Department Head'),(7552,1416584,9,'Special Effects Coordinator'),(7552,1424152,7,'Art Department Coordinator'),(7552,1484966,8,'Hairstylist'),(7552,1533066,8,'Key Hair Stylist'),(7552,1549001,3,'Associate Producer'),(7552,1551137,8,'Makeup Artist'),(616,947,6,'Original Music Composer'),(616,500,3,'Producer'),(616,547,3,'Casting'),(616,932,4,'Screenplay'),(616,1322,8,'Costume Design'),(616,2483,1,'Director of Photography'),(616,2484,5,'Editor'),(616,3222,3,'Executive Producer'),(616,9199,7,'Production Design'),(616,9181,2,'Director'),(616,9181,4,'Screenplay'),(616,9181,3,'Producer'),(616,9182,4,'Screenplay'),(616,9182,3,'Producer'),(616,9183,3,'Producer'),(616,9184,3,'Producer'),(616,9185,3,'Producer'),(616,9187,5,'Editor'),(616,9196,3,'Executive Producer'),(616,9197,3,'Executive Producer'),(616,9198,3,'Executive Producer'),(557,36,1,'Director of Photography'),(557,508,4,'Screenplay'),(557,531,6,'Original Music Composer'),(557,6410,3,'Casting'),(557,800,5,'Editor'),(557,7239,6,'Sound Effects Editor'),(557,10630,6,'Sound Editor'),(557,10631,10,'Special Effects Supervisor'),(557,7623,2,'Director'),(557,7624,3,'Producer'),(557,7624,4,'Author'),(557,7624,3,'Executive Consultant'),(557,7625,4,'Author'),(557,7712,5,'Editor'),(557,9987,3,'Producer'),(557,7627,3,'Producer'),(557,7626,3,'Executive Producer'),(557,11411,7,'Production Design'),(557,20585,7,'Set Decoration'),(557,8794,7,'Art Direction'),(557,20586,7,'Art Direction'),(557,11386,8,'Costume Design'),(557,10850,3,'Executive In Charge Of Production'),(557,7628,3,'Co-Producer'),(557,19156,3,'Casting Associate'),(557,9351,6,'Music Editor'),(557,9624,9,'Stunt Coordinator'),(557,11412,7,'Supervising Art Director'),(557,13223,5,'Color Timer'),(557,23905,3,'Casting'),(557,22486,9,'Property Master'),(557,23787,8,'Makeup Department Head'),(557,42291,10,'Visual Effects Producer'),(557,39923,7,'Assistant Art Director'),(557,38335,6,'Orchestrator'),(557,38939,3,'Unit Production Manager'),(557,11106,8,'Assistant Costume Designer'),(557,67259,9,'Stunt Coordinator'),(557,58656,9,'Second Unit Cinematographer'),(557,69129,9,'Stunts'),(557,91042,1,'Helicopter Camera'),(557,126638,4,'Storyboard'),(557,224388,7,'Art Direction'),(557,935492,9,'Special Effects'),(557,958540,8,'Makeup Designer'),(557,1093167,9,'Choreographer'),(557,1200368,8,'Set Dressing Artist'),(557,1255970,3,'Production Manager'),(557,1255970,3,'Associate Producer'),(557,1262615,4,'Characters'),(557,1320911,8,'Makeup Artist'),(557,1340132,10,'Visual Effects Producer'),(557,1346330,10,'Digital Compositors'),(557,1378225,6,'Sound Designer'),(557,1378248,9,'Transportation Captain'),(557,1389858,6,'First Assistant Sound Editor'),(557,1391565,7,'Set Designer'),(557,1392094,10,'Visual Effects Supervisor'),(557,1393787,7,'Art Department Coordinator'),(557,1400082,1,'Still Photographer'),(557,1403427,3,'Production Coordinator'),(557,1404834,7,'Conceptual Design'),(557,1407683,10,'Visual Effects Coordinator'),(557,1408311,5,'Dialogue Editor'),(557,1416434,9,'Video Assist Operator'),(557,1417398,8,'Hair Department Head'),(557,1418302,9,'Visual Effects Editor'),(557,1424137,2,'Script Supervisor'),(557,1433711,6,'Foley'),(557,1446671,7,'Greensman'),(557,1449165,9,'Scenic Artist'),(557,1453174,7,'Construction Coordinator'),(557,1459789,10,'Visual Effects'),(557,1463298,9,'Propmaker'),(557,1464420,10,'Animation Director'),(557,1472332,3,'Associate Producer'),(557,1485553,1,'Grip'),(557,1525168,8,'Set Costumer'),(557,1537449,11,'Gaffer'),(557,1537850,9,'Special Effects Coordinator'),(557,1546459,11,'Best Boy Electric'),(557,1548694,9,'Sound Recordist'),(557,1550832,6,'Sound Mixer'),(557,1552541,9,'Digital Effects Supervisor'),(557,1554348,9,'Craft Service'),(557,1565113,7,'Art Department Assistant'),(557,1569802,9,'Utility Stunts'),(557,1588279,11,'Rigging Grip'),(557,1595477,9,'Stunts'),(557,1605411,9,'Systems Administrators & Support'),(557,1605797,2,'Assistant Director'),(557,1614160,1,'Additional Photography'),(557,1614190,3,'Production Accountant'),(557,1619094,9,'Unit Publicist'),(557,1619977,9,'CG Supervisor'),(557,1619981,9,'Loader'),(557,1622079,7,'Location Scout'),(557,1648055,9,'Transportation Co-Captain'),(557,1667289,1,'Grip'),(557,1684290,7,'Lead Painter'),(557,1684293,7,'Leadman'),(557,1684303,7,'Painter'),(557,1684304,7,'Production Illustrator'),(557,1684305,7,'Sculptor'),(557,1684306,7,'Set Decoration Buyer'),(557,1684307,7,'Standby Painter'),(557,1684308,1,'Camera Operator'),(557,1684309,1,'First Assistant Camera'),(557,1684312,8,'Costume Supervisor'),(557,1684313,8,'Hairstylist'),(557,1684314,8,'Seamstress'),(557,1684369,9,'Carpenter'),(557,1684370,9,'Driver'),(557,1684371,9,'Makeup Effects'),(557,1684372,9,'Post Production Assistant'),(557,1684373,9,'Set Medic'),(557,1684374,9,'Set Production Assistant'),(557,1684375,9,'Software Engineer'),(557,1684376,9,'Stand In'),(557,1684380,5,'First Assistant Editor'),(557,1684382,11,'Electrician'),(557,1684383,11,'Lighting Technician'),(557,1684384,3,'Location Manager'),(557,1684385,3,'Production Supervisor'),(557,1684386,6,'Boom Operator'),(557,1684388,10,'I/O Supervisor'),(944,8376,6,'Supervising Sound Editor'),(944,671,6,'Sound Effects Editor'),(944,1091,3,'Producer'),(944,1108,4,'Characters'),(944,1592,5,'Editor'),(944,2533,5,'Editor'),(944,2585,6,'Original Music Composer'),(944,3806,3,'Casting'),(944,4696,3,'Associate Producer'),(944,4699,3,'Executive Producer'),(944,7715,5,'Editor'),(944,7187,2,'Director'),(944,7187,3,'Producer'),(944,13304,7,'Production Design'),(944,7714,6,'Original Music Composer'),(944,9351,6,'Music Editor'),(944,9554,9,'Stunts'),(944,9992,3,'Unit Production Manager'),(944,12948,9,'Stunt Coordinator'),(944,12948,9,'Second Unit Cinematographer'),(944,13165,6,'Foley Editor'),(944,14322,6,'Original Music Composer'),(944,14346,4,'Screenplay'),(944,10765,1,'Director of Photography'),(944,11001,5,'Editor'),(944,14348,7,'Set Decoration'),(944,14349,7,'Art Direction'),(944,14350,7,'Art Direction'),(944,14352,8,'Costume Design'),(944,18923,4,'Story'),(944,18924,4,'Story'),(944,19241,4,'Story'),(944,21514,6,'Orchestrator'),(944,22816,3,'Executive Producer'),(944,57526,3,'Co-Producer'),(944,67160,1,'Additional Camera'),(944,92344,7,'Production Illustrator'),(944,92367,9,'Set Medic'),(944,75610,9,'Dialect Coach'),(944,83080,7,'Assistant Art Director'),(944,85448,9,'Martial Arts Choreographer'),(944,211962,3,'Co-Producer'),(944,225499,3,'Co-Producer'),(944,233500,9,'Transportation Coordinator'),(944,958691,7,'Set Designer'),(944,1130137,9,'Post Production Supervisor'),(944,1130137,3,'Associate Producer'),(944,1159656,6,'Assistant Sound Editor'),(944,1159914,6,'Dolby Consultant'),(944,1323077,8,'Set Costumer'),(944,1332599,8,'Costume Supervisor'),(944,1367535,3,'Associate Producer'),(944,1378225,5,'Dialogue Editor'),(944,1386920,1,'Still Photographer'),(944,1397857,9,'Studio Teachers'),(944,1398972,1,'Underwater Camera'),(944,1399071,1,'Aerial Director of Photography'),(944,1399899,1,'Camera Technician'),(944,1400384,9,'Unit Publicist'),(944,1401251,8,'Key Hair Stylist'),(944,1401253,7,'Property Master'),(944,1401263,1,'Camera Operator'),(944,1406922,10,'Visual Effects Supervisor'),(944,1429549,5,'Color Timer'),(944,1432030,3,'Location Manager'),(944,1433954,9,'Video Assist Operator'),(944,1435578,7,'Construction Coordinator'),(944,1440822,6,'Sound Designer'),(944,1441363,10,'Digital Compositors'),(944,1446682,10,'Visual Effects Producer'),(944,1527467,8,'Makeup Artist'),(944,1532606,9,'Armorer'),(944,1534935,8,'Hairstylist'),(944,1548670,7,'Standby Painter'),(944,1549187,1,'First Assistant Camera'),(944,1550603,11,'Rigging Gaffer'),(944,1551870,6,'Production Sound Mixer'),(944,1554352,9,'Projection'),(944,1586932,9,'Transportation Captain'),(944,1602877,11,'Lighting Technician'),(944,1610223,1,'Steadicam Operator'),(944,1637977,7,'Greensman'),(944,1662324,8,'Set Dressing Artist'),(944,1682068,3,'Casting Associate'),(944,1685017,6,'Boom Operator'),(944,1691197,1,'Key Grip'),(944,1701245,9,'Carpenter'),(944,1744852,1,'Grip'),(944,1757625,9,'Utility Stunts'),(944,1800306,7,'Construction Foreman'),(944,1801516,9,'Additional Music'),(944,1801519,9,'Craft Service'),(944,1801521,9,'Driver'),(944,1801522,9,'Loader'),(944,1801523,9,'Special Effects Coordinator'),(944,1801526,2,'First Assistant Director'),(944,1801529,11,'Best Boy Electric'),(944,1801530,11,'Electrician'),(944,1801532,11,'Rigging Grip'),(944,1801533,3,'Production Accountant'),(944,1801534,10,'Visual Effects Coordinator'),(1927,2952,3,'Casting'),(1927,511,3,'Producer'),(1927,1226,7,'Production Design'),(1927,531,6,'Original Music Composer'),(1927,553,7,'Art Direction'),(1927,869,3,'Producer'),(1927,1614,2,'Director'),(1927,1617,3,'Producer'),(1927,1617,4,'Story'),(1927,1617,4,'Screenplay'),(1927,1635,5,'Editor'),(1927,1638,6,'Supervising Sound Editor'),(1927,4032,7,'Set Decoration'),(1927,4434,1,'Director of Photography'),(1927,6742,5,'First Assistant Editor'),(1927,7624,4,'Characters'),(1927,7624,3,'Executive Producer'),(1927,7626,3,'Producer'),(1927,10850,3,'Executive Producer'),(1927,8165,9,'Sound Design Assistant'),(1927,8279,7,'Set Designer'),(1927,9654,9,'Stunt Coordinator'),(1927,10703,4,'Screenplay'),(1927,11714,8,'Costume Design'),(1927,12593,9,'Post Production Assistant'),(1927,12613,8,'Makeup Artist'),(1927,13063,3,'Casting Associate'),(1927,14341,7,'Art Direction'),(1927,15315,6,'Music Editor'),(1927,22300,7,'Conceptual Illustrator'),(1927,18866,4,'Characters'),(1927,21701,7,'Production Illustrator'),(1927,38335,6,'Orchestrator'),(1927,40141,6,'Sound Effects Editor'),(1927,42736,3,'Associate Producer'),(1927,42736,3,'Production Manager'),(1927,113089,1,'First Assistant Camera'),(1927,63427,9,'Additional Music'),(1927,60219,9,'Visual Effects Editor'),(1927,61523,2,'First Assistant Director'),(1927,92376,6,'Foley'),(1927,76003,9,'Dialect Coach'),(1927,78009,10,'Animation Supervisor'),(1927,91932,9,'Pilot'),(1927,93258,10,'Special Effects Supervisor'),(1927,148991,4,'Screenplay'),(1927,230436,3,'ADR Voice Casting'),(1927,1096860,7,'Standby Painter'),(1927,1156313,10,'Visual Effects Supervisor'),(1927,1191182,9,'Sequence Supervisor'),(1927,1271923,10,'Digital Compositors'),(1927,1308069,3,'Casting'),(1927,1308375,6,'Foley Editor'),(1927,1313191,6,'Musician'),(1927,1316599,8,'Makeup Department Head'),(1927,1323768,8,'Costume Supervisor'),(1927,1327146,8,'Key Set Costumer'),(1927,1336190,7,'Art Department Coordinator'),(1927,1337458,6,'Production Sound Mixer'),(1927,1342669,2,'Script Supervisor'),(1927,1376902,6,'Supervising ADR Editor'),(1927,1389131,7,'Construction Coordinator'),(1927,1389534,5,'Dialogue Editor'),(1927,1391600,9,'Transportation Captain'),(1927,1397483,3,'Associate Producer'),(1927,1398094,6,'Sound Re-Recording Mixer'),(1927,1398924,10,'Visual Effects Coordinator'),(1927,1398982,9,'Unit Publicist'),(1927,1399071,1,'Aerial Director of Photography'),(1927,1400849,9,'Property Master'),(1927,1401967,9,'Visual Effects Art Director'),(1927,1402016,8,'Hairstylist'),(1927,1403418,9,'Transportation Coordinator'),(1927,1404225,10,'Visual Effects Producer'),(1927,1406128,11,'Chief Lighting Technician'),(1927,1411293,1,'Still Photographer'),(1927,1413161,7,'Assistant Art Director'),(1927,1414172,7,'Leadman'),(1927,1415635,11,'Rigging Gaffer'),(1927,1417398,8,'Key Hair Stylist'),(1927,1420160,1,'Steadicam Operator'),(1927,1456511,10,'Lead Animator'),(1927,1460499,10,'CG Animator'),(1927,1463310,7,'Sculptor'),(1927,1463740,11,'Best Boy Electric'),(1927,1463765,9,'Video Assist Operator'),(1927,1530870,9,'Post Production Supervisor'),(1927,1544901,6,'Apprentice Sound Editor'),(1927,1546564,9,'Makeup Effects'),(1927,1548698,6,'Conductor'),(1927,1550730,5,'Color Timer'),(1927,1552998,9,'Craft Service'),(1927,1554354,9,'Set Medic'),(1927,1554594,6,'Scoring Mixer'),(1927,1558221,3,'Production Supervisor'),(1927,1559186,9,'Motion Capture Artist'),(1927,1563899,6,'Sound'),(1927,1564226,9,'Technical Supervisor'),(1927,1570750,9,'Driver'),(1927,1578660,10,'3D Artist'),(1927,1582427,4,'Storyboard'),(1927,1589709,9,'Set Production Assistant'),(1927,1589724,3,'Location Manager'),(1927,1591573,9,'Software Engineer'),(1927,1594905,7,'Art Department Assistant'),(1927,1594907,7,'Construction Foreman'),(1927,1594908,7,'Greensman'),(1927,1594910,7,'Painter'),(1927,1594911,1,'Additional Camera'),(1927,1594913,1,'Camera Operator'),(1927,1594915,8,'Assistant Costume Designer'),(1927,1594918,7,'Set Dresser'),(1927,1594919,9,'Armorer'),(1927,1594920,9,'Carpenter'),(1927,1594921,9,'Loader'),(1927,1594923,9,'Picture Car Coordinator'),(1927,1594925,9,'Propmaker'),(1927,1594926,9,'Scenic Artist'),(1927,1594927,9,'Stand In'),(1927,1594928,9,'Stunts'),(1927,1594929,9,'Utility Stunts'),(1927,1594930,2,'Layout'),(1927,1594931,11,'Electrician'),(1927,1594958,11,'Lighting Technician'),(1927,1594959,11,'Rigging Grip'),(1927,1594960,3,'Production Accountant'),(1927,1594961,3,'Production Coordinator'),(1927,1594963,3,'Researcher'),(1927,1594966,6,'Boom Operator'),(1927,1594967,6,'ADR & Dubbing'),(1927,1594974,10,'3D Supervisor'),(1927,1594977,10,'Visual Effects'),(1927,1733142,5,'Negative Cutter'),(1927,1738163,1,'Dolly Grip'),(1927,1755689,8,'Ager/Dyer'),(1927,1837365,7,'Assistant Property Master'),(1927,1837367,7,'Title Designer'),(1927,1837369,1,'Key Grip'),(1927,1837370,1,'Grip'),(1927,1837372,8,'Key Costumer'),(1927,1837380,2,'Second Assistant Director'),(1927,1837381,3,'Assistant Production Coordinator'),(1927,1837382,3,'Casting Assistant'),(1927,1837416,6,'Music Programmer'),(1927,1837418,10,'Creature Technical Director'),(7364,8384,7,'Set Decoration'),(7364,3285,1,'Director of Photography'),(7364,3984,3,'Producer'),(7364,4611,3,'Producer'),(7364,5386,3,'Co-Producer'),(7364,6688,8,'Costume Design'),(7364,6377,6,'Original Music Composer'),(7364,10295,4,'Screenplay'),(7364,10297,3,'Executive Producer'),(7364,7732,7,'Production Design'),(7364,7788,7,'Art Direction'),(7364,7787,7,'Art Direction'),(7364,9545,3,'Casting'),(7364,10903,3,'Co-Producer'),(7364,40749,2,'Script Supervisor'),(7364,65614,3,'Co-Producer'),(7364,16363,3,'Casting'),(7364,16343,6,'Sound Effects Editor'),(7364,19619,3,'Co-Producer'),(7364,56765,6,'Sound Designer'),(7364,52609,2,'Director'),(7364,53295,4,'Novel'),(7364,53297,4,'Screenplay'),(7364,53298,4,'Screenplay'),(7364,53299,3,'Producer'),(7364,53300,3,'Producer'),(7364,10878,5,'Editor'),(7364,113019,9,'Second Unit Cinematographer'),(7364,58257,6,'Orchestrator'),(7364,57569,9,'Stunt Coordinator'),(7364,62929,3,'Executive Producer'),(7364,70646,3,'Co-Producer'),(7364,105780,6,'Sound Mixer'),(7364,183617,3,'Line Producer'),(7364,220275,3,'Co-Producer'),(7364,947694,3,'Co-Producer'),(7364,959332,3,'Co-Producer'),(7364,1034749,3,'Associate Producer'),(7364,1035029,3,'Line Producer'),(7364,1035029,3,'Production Manager'),(7364,1126781,3,'Associate Producer'),(7364,1126782,3,'Executive Producer'),(7364,1148576,9,'Propmaker'),(7364,1327141,7,'Assistant Art Director'),(7364,1340117,6,'Dolby Consultant'),(7364,1342659,9,'Stunts'),(7364,1392704,10,'Visual Effects Supervisor'),(7364,1393329,9,'Special Effects Coordinator'),(7364,1393866,6,'Foley'),(7364,1404244,1,'Aerial Director of Photography'),(7364,1406190,6,'First Assistant Sound Editor'),(7364,1408400,5,'First Assistant Editor'),(7364,1415961,7,'Art Department Coordinator'),(7364,1416096,8,'Makeup Artist'),(7364,1416481,5,'Digital Intermediate'),(7364,1425488,10,'Visual Effects Producer'),(7364,1425502,1,'Still Photographer'),(7364,1425513,6,'Music Editor'),(7364,1427549,8,'Prosthetic Makeup Artist'),(7364,1430498,11,'Gaffer'),(7364,1433230,6,'Supervising Sound Editor'),(7364,1459935,8,'Costume Supervisor'),(7364,1461631,10,'Visual Effects Coordinator'),(7364,1463139,8,'Hairstylist'),(7364,1463139,8,'Makeup Artist'),(7364,1463140,8,'Hairstylist'),(7364,1466988,9,'Unit Publicist'),(7364,1467116,2,'First Assistant Director'),(7364,1476052,3,'Executive Producer'),(7364,1487709,8,'Assistant Costume Designer'),(7364,1527960,7,'Location Scout'),(7364,1536588,9,'Armorer'),(7364,1545988,10,'Special Effects Supervisor'),(7364,1546177,7,'Standby Painter'),(7364,1555670,8,'Hair Designer'),(7364,1578092,9,'Dialect Coach'),(7364,1582866,4,'Screenplay'),(7364,1583799,9,'Scenic Artist'),(7364,1613286,5,'Dialogue Editor'),(7364,1643812,6,'Sound Recordist'),(7364,1654557,6,'Music Supervisor'),(7364,1661539,3,'Production Accountant'),(7364,1700803,4,'Storyboard'),(7364,1770976,1,'Key Grip'),(7364,1772284,9,'Visual Effects Editor'),(7364,1816121,7,'Art Department Assistant'),(7364,1816125,7,'Painter'),(7364,1816126,7,'Sculptor'),(7364,1816127,1,'First Assistant Camera'),(7364,1816128,1,'Grip'),(7364,1816129,9,'Cableman'),(7364,1816131,9,'Carpenter'),(7364,1816132,9,'Driver'),(7364,1816133,9,'Loader'),(7364,1816134,9,'Projection'),(7364,1816136,9,'Set Production Assistant'),(7364,1816138,9,'Stand In'),(7364,1816140,9,'Technical Supervisor'),(7364,1816141,3,'Unit Production Manager'),(7364,1816159,11,'Best Boy Electric'),(7364,1816160,11,'Electrician'),(7364,1816162,11,'Rigging Gaffer'),(7364,1816163,3,'Location Manager'),(7364,1816164,3,'Production Coordinator'),(7364,1816167,6,'Boom Operator'),(7364,1816170,10,'3D Artist'),(7364,1816171,10,'Digital Compositors'),(2114,3504,6,'Sound Effects Editor'),(2114,5581,6,'Original Music Composer'),(2114,7854,4,'Screenplay'),(2114,8160,6,'Foley'),(2114,8163,6,'Foley'),(2114,11174,6,'Supervising Sound Editor'),(2114,21086,4,'Screenplay'),(2114,21692,2,'Director'),(2114,21693,2,'Director'),(2114,21693,1,'Director of Photography'),(2114,21694,4,'Screenplay'),(2114,21694,3,'Casting'),(2114,21695,4,'Screenplay'),(2114,21696,3,'Producer'),(2114,21697,3,'Producer'),(2114,21698,6,'Original Music Composer'),(2114,21699,6,'Original Music Composer'),(2114,21700,5,'Editor'),(2114,21701,7,'Production Design'),(2114,42267,6,'Sound Designer'),(2114,42267,6,'Sound Re-Recording Mixer'),(2114,56338,10,'Animation Director'),(2114,138618,6,'Sound Re-Recording Mixer'),(2114,567062,9,'Visual Effects Art Director'),(2114,1392090,10,'Visual Effects Supervisor'),(2114,1399116,6,'Sound Effects Editor'),(2114,1399117,6,'Sound Effects Editor'),(2114,1400906,6,'Sound Effects Editor'),(2114,1409721,6,'Music Editor'),(2114,1413172,6,'ADR & Dubbing'),(2114,1414886,6,'Sound Effects Editor'),(2114,1415629,9,'CG Supervisor'),(2114,1442212,7,'Conceptual Design'),(2114,1442213,10,'Animation'),(2114,1442214,10,'Animation'),(2114,1442215,10,'Creature Design'),(2114,1442216,6,'Sound Effects Editor'),(2114,1442217,6,'Sound Effects Editor'),(2114,1442219,9,'Sound Recordist'),(2114,1442223,9,'Sequence Supervisor'),(2114,1442225,9,'Sequence Supervisor'),(2114,1442227,9,'CG Supervisor'),(2114,1442237,9,'Stunt Coordinator'),(2114,1442239,5,'First Assistant Editor'),(1771,37,6,'Original Music Composer'),(1771,1226,7,'Production Design'),(1771,553,7,'Supervising Art Director'),(1771,3311,3,'Casting'),(1771,4151,8,'Set Costumer'),(1771,7232,3,'Casting'),(1771,4945,2,'Director'),(1771,4945,3,'Executive Producer'),(1771,4950,1,'Director of Photography'),(1771,4951,5,'Editor'),(1771,4849,6,'ADR & Dubbing'),(1771,5551,4,'Screenplay'),(1771,5552,4,'Screenplay'),(1771,6688,8,'Costume Design'),(1771,7624,3,'Executive Producer'),(1771,10850,3,'Producer'),(1771,8159,6,'Sound Designer'),(1771,8415,3,'Executive Producer'),(1771,8418,3,'Production Manager'),(1771,8761,6,'Foley'),(1771,9820,7,'Supervising Art Director'),(1771,35176,5,'Editor'),(1771,16458,9,'Dialect Coach'),(1771,23454,7,'Art Direction'),(1771,20540,3,'Casting'),(1771,23425,7,'Supervising Art Director'),(1771,57027,3,'Executive Producer'),(1771,113672,3,'Executive Producer'),(1771,113673,3,'Executive Producer'),(1771,113674,3,'Producer'),(1771,66552,7,'Set Decoration'),(1771,83085,6,'Sound Effects Editor'),(1771,554887,6,'Sound Designer'),(1771,962164,7,'Art Direction'),(1771,972623,7,'Art Direction'),(1771,1117747,3,'Producer'),(1771,1117748,3,'Producer'),(1771,1117749,3,'Producer'),(1771,1167489,5,'First Assistant Editor'),(1771,1211226,1,'Steadicam Operator'),(1771,1229789,9,'Visual Effects Editor'),(1771,1319160,8,'Costume Supervisor'),(1771,1327027,10,'Visual Effects Supervisor'),(1771,1327028,10,'Visual Effects Supervisor'),(1771,1334420,7,'Art Direction'),(1771,1334424,7,'Construction Coordinator'),(1771,1334429,9,'Property Master'),(1771,1334435,7,'Sculptor'),(1771,1335179,7,'Art Department Coordinator'),(1771,1335541,7,'Sculptor'),(1771,1338983,10,'Visual Effects Supervisor'),(1771,1342382,7,'Assistant Art Director'),(1771,1345595,6,'Sound Re-Recording Mixer'),(1771,1347758,3,'Location Manager'),(1771,1376895,7,'Set Designer'),(1771,1378225,6,'ADR & Dubbing'),(1771,1378749,7,'Set Designer'),(1771,1379986,10,'VFX Supervisor'),(1771,1380002,1,'Still Photographer'),(1771,1388877,9,'Stunt Coordinator'),(1771,1390350,7,'Assistant Art Director'),(1771,1392084,5,'Dialogue Editor'),(1771,1394040,1,'Still Photographer'),(1771,1394750,10,'Visual Effects Producer'),(1771,1394961,10,'Visual Effects Supervisor'),(1771,1397822,6,'Sound Effects Editor'),(1771,1397846,10,'Visual Effects Supervisor'),(1771,1398089,7,'Greensman'),(1771,1398110,11,'Lighting Technician'),(1771,1399300,9,'Visual Effects Editor'),(1771,1399327,6,'Music Editor'),(1771,1399473,1,'Camera Operator'),(1771,1400070,6,'Sound Designer'),(1771,1400076,10,'Visual Effects Supervisor'),(1771,1400089,3,'Production Manager'),(1771,1401729,10,'Visual Effects Producer'),(1771,1401898,9,'Visual Effects Editor'),(1771,1402012,3,'Publicist'),(1771,1404244,1,'Helicopter Camera'),(1771,1404286,10,'Visual Effects Supervisor'),(1771,1405233,6,'Foley'),(1771,1405243,9,'Transportation Coordinator'),(1771,1405717,6,'Supervising Sound Editor'),(1771,1406116,10,'Visual Effects Producer'),(1771,1406614,6,'Sound Re-Recording Mixer'),(1771,1408292,8,'Hairstylist'),(1771,1408293,8,'Hairstylist'),(1771,1408294,7,'Art Department Coordinator'),(1771,1408296,7,'Sculptor'),(1771,1408297,7,'Set Designer'),(1771,1408298,7,'Greensman'),(1771,1408299,7,'Greensman'),(1771,1408301,6,'Sound Designer'),(1771,1408305,6,'Sound Effects Editor'),(1771,1408311,5,'Dialogue Editor'),(1771,1408316,6,'ADR & Dubbing'),(1771,1408317,9,'Special Effects Coordinator'),(1771,1408321,10,'Visual Effects Supervisor'),(1771,1408325,9,'Visual Effects Editor'),(1771,1408326,9,'Visual Effects Editor'),(1771,1408329,10,'Visual Effects Supervisor'),(1771,1408335,9,'Visual Effects Editor'),(1771,1408337,10,'Visual Effects Supervisor'),(1771,1408338,10,'Visual Effects Producer'),(1771,1408341,10,'Visual Effects Producer'),(1771,1408342,9,'CG Supervisor'),(1771,1408345,10,'Visual Effects Producer'),(1771,1408346,9,'CG Supervisor'),(1771,1408347,9,'CG Supervisor'),(1771,1408348,9,'CG Supervisor'),(1771,1408349,10,'VFX Supervisor'),(1771,1408351,9,'CG Supervisor'),(1771,1408352,9,'CG Supervisor'),(1771,1408353,9,'Stunt Coordinator'),(1771,1408354,1,'Camera Operator'),(1771,1408354,1,'Steadicam Operator'),(1771,1408356,1,'Camera Operator'),(1771,1408357,1,'Camera Operator'),(1771,1408357,1,'Steadicam Operator'),(1771,1408358,1,'Camera Operator'),(1771,1408359,1,'Additional Camera'),(1771,1408360,11,'Gaffer'),(1771,1408361,11,'Best Boy Electric'),(1771,1408362,11,'Rigging Gaffer'),(1771,1408363,5,'First Assistant Editor'),(1771,1408364,5,'First Assistant Editor'),(1771,1408366,3,'Location Manager'),(1771,1408367,9,'Unit Publicist'),(1771,1408368,3,'Location Manager'),(1771,1408369,3,'Location Manager'),(1771,1412756,9,'Visual Effects Editor'),(1771,1447326,4,'Storyboard'),(1771,1450362,10,'Visual Effects'),(1771,1456696,9,'Compositors'),(1771,1552521,9,'Stunts'),(8619,668,3,'Casting'),(8619,1307,3,'Co-Producer'),(8619,59839,3,'Co-Producer'),(8619,2690,2,'Director'),(8619,2690,4,'Screenplay'),(8619,2690,3,'Producer'),(8619,2709,8,'Costume Design'),(8619,3904,5,'Editor'),(8619,4755,9,'Second Unit Cinematographer'),(8619,6866,3,'Co-Producer'),(8619,6866,3,'Unit Production Manager'),(8619,6870,3,'Producer'),(8619,6877,7,'Production Design'),(8619,6878,7,'Assistant Art Director'),(8619,6880,7,'Set Decoration'),(8619,9821,7,'Art Direction'),(8619,11295,3,'Casting'),(8619,14381,8,'Makeup Artist'),(8619,13223,5,'Color Timer'),(8619,13224,6,'Dolby Consultant'),(8619,15356,9,'Special Effects Coordinator'),(8619,21070,7,'Art Direction'),(8619,13434,7,'Art Direction'),(8619,23867,7,'Art Direction'),(8619,25453,10,'Visual Effects Supervisor'),(8619,31027,1,'Director of Photography'),(8619,38414,7,'Set Designer'),(8619,40546,1,'Camera Operator'),(8619,52193,6,'Supervising ADR Editor'),(8619,55474,4,'Screenplay'),(8619,55475,4,'Novel'),(8619,62543,3,'Executive Producer'),(8619,62543,2,'First Assistant Director'),(8619,65043,3,'Producer'),(8619,65044,6,'Original Music Composer'),(8619,65044,6,'Musician'),(8619,65046,6,'Original Music Composer'),(8619,113048,9,'Sound Recordist'),(8619,113073,6,'Sound Re-Recording Mixer'),(8619,59040,9,'Dialect Coach'),(8619,60934,9,'Post-Production Manager'),(8619,66513,9,'Post Production Supervisor'),(8619,74779,6,'Production Sound Mixer'),(8619,102330,3,'Co-Producer'),(8619,100383,9,'Utility Stunts'),(8619,108116,10,'Visual Effects Producer'),(8619,118867,1,'Camera Operator'),(8619,142157,9,'Stunt Coordinator'),(8619,189696,6,'Original Music Composer'),(8619,208403,9,'Set Medic'),(8619,229801,8,'Key Makeup Artist'),(8619,237921,9,'Stunt Coordinator'),(8619,929404,10,'Digital Compositors'),(8619,1032536,10,'Visual Effects Designer'),(8619,1050930,5,'Dialogue Editor'),(8619,1062459,3,'Line Producer'),(8619,1069830,3,'Unit Manager'),(8619,1073780,9,'Digital Effects Supervisor'),(8619,1077782,6,'Foley'),(8619,1113960,7,'Production Illustrator'),(8619,1120542,9,'Stunts'),(8619,1141636,11,'Rigging Gaffer'),(8619,1153846,10,'Visual Effects Coordinator'),(8619,1169459,10,'Visual Effects Producer'),(8619,1323090,8,'Makeup Department Head'),(8619,1328139,8,'Costume Supervisor'),(8619,1335881,3,'Production Coordinator'),(8619,1337123,7,'Set Designer'),(8619,1339440,7,'Set Designer'),(8619,1339449,10,'Visual Effects Producer'),(8619,1340132,9,'Executive Visual Effects Producer'),(8619,1341403,6,'Sound Designer'),(8619,1377213,7,'Set Designer'),(8619,1377214,7,'Construction Coordinator'),(8619,1377215,9,'Property Master'),(8619,1377216,7,'Art Department Coordinator'),(8619,1377217,7,'Set Designer'),(8619,1377218,7,'Leadman'),(8619,1377220,6,'Sound Re-Recording Mixer'),(8619,1377221,6,'Boom Operator'),(8619,1377222,6,'Sound Effects Editor'),(8619,1377223,10,'Visual Effects Supervisor'),(8619,1377224,10,'Visual Effects Producer'),(8619,1377225,10,'Visual Effects Supervisor'),(8619,1377228,1,'Camera Operator'),(8619,1377229,1,'Camera Operator'),(8619,1377230,1,'Camera Operator'),(8619,1377231,1,'Camera Operator'),(8619,1377233,3,'Local Casting'),(8619,1377234,5,'Digital Intermediate'),(8619,1377235,9,'Transportation Coordinator'),(8619,1377236,9,'Studio Teachers'),(8619,1377237,9,'Studio Teachers'),(8619,1377239,2,'Script Supervisor'),(8619,1377240,2,'Script Supervisor'),(8619,1377241,3,'Location Manager'),(8619,1377242,9,'Thanks'),(8619,1378207,9,'Transportation Captain'),(8619,1390535,1,'Still Photographer'),(8619,1392736,6,'Music Editor'),(8619,1394117,8,'Set Dressing Supervisor'),(8619,1400741,8,'Hair Department Head'),(8619,1401593,1,'Aerial Director of Photography'),(8619,1408326,9,'Visual Effects Editor'),(8619,1408672,6,'ADR Editor'),(8619,1416155,6,'Additional Sound Re-Recording Mixer'),(8619,1443039,9,'Makeup Effects'),(8619,1447601,6,'Assistant Sound Editor'),(8619,1447602,6,'First Assistant Sound Editor'),(8619,1447612,9,'Visual Effects Editor'),(8619,1492942,3,'Casting Associate'),(8619,1538138,8,'Key Costumer'),(8619,1550778,1,'Steadicam Operator'),(8619,1553642,9,'Quality Control Supervisor'),(8619,1554594,6,'Scoring Mixer'),(8619,1569828,9,'Telecine Colorist'),(8619,1575003,5,'First Assistant Editor'),(8619,1578204,10,'I/O Supervisor'),(8619,1593266,11,'Rigging Grip'),(8619,1594913,1,'First Assistant Camera'),(8619,1619018,7,'Construction Foreman'),(8619,1619076,7,'Standby Painter'),(8619,1619077,1,'Key Grip'),(8619,1619079,8,'Hairstylist'),(8619,1619080,8,'Seamstress'),(8619,1619081,8,'Set Costumer'),(8619,1619082,7,'Set Dresser'),(8619,1619083,9,'Armorer'),(8619,1619084,9,'Craft Service'),(8619,1619085,9,'Driver'),(8619,1619086,9,'Loader'),(8619,1619087,9,'Post Production Assistant'),(8619,1619088,9,'Projection'),(8619,1619089,9,'Propmaker'),(8619,1619090,9,'Sequence Supervisor'),(8619,1619091,9,'Set Production Assistant'),(8619,1619092,9,'Stand In'),(8619,1619093,9,'Technical Supervisor'),(8619,1619094,9,'Unit Publicist'),(8619,1619095,9,'Video Assist Operator'),(8619,1619096,2,'Layout'),(8619,1619097,11,'Best Boy Electric'),(8619,1619098,11,'Electrician'),(8619,1619099,11,'Gaffer'),(8619,1619100,11,'Lighting Artist'),(8619,1619101,11,'Lighting Technician'),(8619,1619105,3,'Production Accountant'),(8619,1619107,3,'Production Office Coordinator'),(8619,1619108,3,'Researcher'),(8619,1619109,10,'3D Supervisor'),(8619,1619111,4,'Storyboard'),(8619,1619112,9,'Translator'),(8619,1643713,2,'Second Assistant Director'),(8619,1646294,10,'CG Animator'),(8619,1681201,9,'Pilot'),(8619,1733142,5,'Negative Cutter'),(8619,1747999,8,'Ager/Dyer'),(8619,1767782,3,'ADR Voice Casting'),(8619,1812134,6,'Foley'),(8619,1858338,7,'Assistant Property Master'),(8619,1858339,1,'Dolly Grip'),(8619,1858340,1,'Grip'),(8619,1858342,8,'Tailor'),(8619,1858343,9,'Animal Wrangler'),(8619,1858344,9,'Marine Coordinator'),(8619,1858346,3,'Assistant Production Coordinator'),(8619,1858347,10,'Lead Animator'),(8619,1858348,10,'Matchmove Supervisor'),(1724,869,3,'Producer'),(1724,13673,5,'Editor'),(1724,7045,6,'Original Music Composer'),(1724,7481,3,'Casting'),(1724,7624,4,'Characters'),(1724,7624,3,'Executive Producer'),(1724,11386,8,'Costume Design'),(1724,10850,3,'Producer'),(1724,8752,5,'Editor'),(1724,10819,7,'Production Design'),(1724,18865,2,'Director'),(1724,18865,2,'Script Supervisor'),(1724,11011,4,'Screenplay'),(1724,18866,4,'Characters'),(1724,18867,7,'Art Direction'),(1724,33585,9,'Stunts'),(1724,1007395,9,'Stunts'),(1724,1404850,1,'Still Photographer'),(1724,1453019,9,'Technical Supervisor'),(1724,1453022,10,'Animation'),(1724,1455461,11,'Lighting Technician'),(1724,1455462,11,'Lighting Technician'),(1724,1460621,10,'Visual Effects'),(1724,1642697,10,'Animation'),(2503,2952,3,'Casting'),(2503,664,3,'Producer'),(2503,1325,3,'Casting'),(2503,1921,4,'Screenplay'),(2503,3501,3,'Casting'),(2503,10571,3,'Line Producer'),(2503,5333,8,'Makeup Artist'),(2503,8674,1,'Camera Operator'),(2503,8415,3,'Production Manager'),(2503,8418,3,'Production Manager'),(2503,8684,9,'Stunt Coordinator'),(2503,9820,7,'Art Direction'),(2503,11224,7,'Supervising Art Director'),(2503,10124,7,'Set Decoration'),(2503,11098,6,'Original Music Composer'),(2503,11409,1,'Director of Photography'),(2503,11694,3,'Executive Producer'),(2503,12562,6,'ADR & Dubbing'),(2503,13166,6,'Sound Effects Editor'),(2503,15528,9,'Special Effects Coordinator'),(2503,14764,6,'Sound Effects Editor'),(2503,14765,6,'Supervising Sound Editor'),(2503,15733,7,'Set Decoration'),(2503,19971,8,'Costume Design'),(2503,16733,7,'Production Design'),(2503,23453,7,'Art Direction'),(2503,19014,4,'Screenplay'),(2503,19242,4,'Screenplay'),(2503,19242,4,'Screenstory'),(2503,21122,6,'Music Editor'),(2503,25068,9,'Stunts'),(2503,25606,4,'Author'),(2503,25598,2,'Director'),(2503,25600,3,'Producer'),(2503,25604,3,'Producer'),(2503,29400,3,'Executive Producer'),(2503,29401,3,'Executive Producer'),(2503,29402,3,'Executive Producer'),(2503,29403,3,'Producer'),(2503,29405,5,'Editor'),(2503,59682,7,'Assistant Art Director'),(2503,63906,6,'Music Editor'),(2503,67202,7,'Standby Painter'),(2503,77511,3,'Line Producer'),(2503,117206,8,'Hairstylist'),(2503,122260,9,'Stunts'),(2503,122274,10,'Visual Effects Supervisor'),(2503,193339,2,'Other'),(2503,206398,9,'Stunts'),(2503,206946,9,'Stunts'),(2503,548437,5,'Dialogue Editor'),(2503,962164,7,'Art Direction'),(2503,967367,9,'Transportation Coordinator'),(2503,1074163,9,'Stunts'),(2503,1171004,11,'Electrician'),(2503,1309884,9,'Sound Recordist'),(2503,1319160,8,'Costume Supervisor'),(2503,1321372,8,'Makeup Artist'),(2503,1325557,10,'Visual Effects'),(2503,1332515,1,'Camera Operator'),(2503,1333153,9,'Property Master'),(2503,1334497,7,'Construction Coordinator'),(2503,1335179,7,'Art Department Coordinator'),(2503,1338372,6,'Foley'),(2503,1339054,1,'Camera Operator'),(2503,1340110,7,'Assistant Art Director'),(2503,1340775,3,'Location Manager'),(2503,1342657,6,'Sound Effects Editor'),(2503,1342658,5,'Dialogue Editor'),(2503,1344142,3,'Production Manager'),(2503,1367493,6,'Foley'),(2503,1379396,9,'Visual Effects Editor'),(2503,1390388,2,'Script Supervisor'),(2503,1391571,6,'Sound Re-Recording Mixer'),(2503,1392083,6,'Sound Effects Editor'),(2503,1392718,1,'Still Photographer'),(2503,1395359,9,'Scenic Artist'),(2503,1395677,7,'Construction Coordinator'),(2503,1395692,9,'Special Effects'),(2503,1399561,9,'Visual Effects Editor'),(2503,1400089,3,'Location Manager'),(2503,1400092,1,'Helicopter Camera'),(2503,1400489,9,'Scenic Artist'),(2503,1402934,1,'Steadicam Operator'),(2503,1403641,1,'Underwater Camera'),(2503,1404212,6,'Supervising Sound Editor'),(2503,1404217,6,'Sound Effects Editor'),(2503,1404233,8,'Set Costumer'),(2503,1405196,1,'Additional Photography'),(2503,1405243,9,'Transportation Coordinator'),(2503,1405382,5,'Dialogue Editor'),(2503,1406390,6,'Sound Effects Editor'),(2503,1406786,11,'Gaffer'),(2503,1406789,6,'Music Editor'),(2503,1406792,9,'Unit Publicist'),(2503,1406805,8,'Key Hair Stylist'),(2503,1406808,7,'Art Department Coordinator'),(2503,1406809,9,'Property Master'),(2503,1406811,9,'Scenic Artist'),(2503,1406812,7,'Construction Coordinator'),(2503,1406813,9,'Scenic Artist'),(2503,1406815,7,'Greensman'),(2503,1406825,9,'Sound Recordist'),(2503,1406826,6,'Sound Effects Editor'),(2503,1406829,9,'Sound Recordist'),(2503,1406836,9,'Visual Effects Editor'),(2503,1406837,10,'Visual Effects Producer'),(2503,1406838,9,'Stunt Coordinator'),(2503,1406839,9,'Stunt Coordinator'),(2503,1406840,1,'Camera Operator'),(2503,1406841,11,'Gaffer'),(2503,1406842,1,'Still Photographer'),(2503,1406844,11,'Gaffer'),(2503,1406845,11,'Gaffer'),(2503,1406846,1,'Additional Camera'),(2503,1406847,1,'Additional Camera'),(2503,1406848,8,'Set Costumer'),(2503,1406849,5,'Digital Intermediate'),(2503,1406850,9,'Transportation Coordinator'),(2503,1406852,9,'Picture Car Coordinator'),(2503,1406854,3,'Location Manager'),(2503,1406855,3,'Location Manager'),(2503,1406856,2,'Script Supervisor'),(2503,1406857,3,'Location Manager'),(2503,1406858,3,'Location Manager'),(2503,1406859,3,'Location Manager'),(2503,1406860,3,'Location Manager'),(2503,1406861,3,'Location Manager'),(2503,1425978,6,'Sound mixer'),(2503,1445972,10,'Special Effects Supervisor'),(2503,1471947,2,'Assistant Director'),(2503,1537140,3,'Production Coordinator'),(2503,1537141,3,'Production Coordinator'),(2503,1606370,1,'Grip'),(2503,1657438,9,'Driver'),(9502,947,6,'Original Music Composer'),(9502,11098,6,'Original Music Composer'),(9502,57741,2,'Director'),(9502,57742,2,'Director'),(9502,57743,4,'Screenplay'),(9502,57744,4,'Screenplay'),(9502,57746,1,'Director of Photography'),(9502,57747,5,'Editor'),(9502,1447381,10,'Animation'),(9502,1447556,10,'Color Designer'),(9502,1450331,10,'Animation Director'),(9502,1452488,7,'Art Department Manager'),(74,491,6,'Original Music Composer'),(74,495,3,'Casting'),(74,488,2,'Director'),(74,489,3,'Producer'),(74,490,3,'Producer'),(74,492,1,'Director of Photography'),(74,493,5,'Editor'),(74,494,3,'Casting'),(74,496,7,'Production Design'),(74,497,7,'Art Direction'),(74,498,8,'Costume Design'),(74,499,9,'Special Effects'),(74,507,4,'Author'),(74,508,4,'Author'),(74,7236,7,'Art Direction'),(74,8706,7,'Set Decoration'),(74,7764,6,'Supervising Sound Editor'),(74,7764,6,'Sound Editor'),(74,8794,7,'Supervising Art Director'),(74,8279,7,'Set Designer'),(74,9183,3,'Executive Producer'),(74,9554,9,'Utility Stunts'),(74,11624,4,'Novel'),(74,15356,9,'Special Effects Coordinator'),(74,15358,9,'Second Unit Cinematographer'),(74,15358,9,'Stunt Coordinator'),(74,42267,6,'Sound Designer'),(74,43592,6,'Orchestrator'),(74,52193,6,'ADR & Dubbing'),(74,61573,4,'Storyboard'),(74,73108,5,'First Assistant Editor'),(74,74567,3,'Unit Production Manager'),(74,75380,6,'Boom Operator'),(74,91144,6,'Scoring Mixer'),(74,91893,10,'Special Effects Supervisor'),(74,109994,3,'Production Supervisor'),(74,197020,8,'Costume Supervisor'),(74,203521,9,'Carpenter'),(74,579077,8,'Makeup Artist'),(74,961609,7,'Art Direction'),(74,1050930,5,'Dialogue Editor'),(74,1074163,9,'Stunts'),(74,1077782,6,'Foley'),(74,1087126,3,'Executive Producer'),(74,1095994,6,'Sound Mixer'),(74,1096860,7,'Standby Painter'),(74,1102140,2,'First Assistant Director'),(74,1102816,1,'Camera Operator'),(74,1177713,8,'Costume Supervisor'),(74,1196136,9,'Makeup Effects'),(74,1212071,3,'Casting Associate'),(74,1249773,8,'Makeup Department Head'),(74,1268981,10,'Visual Effects Supervisor'),(74,1320911,8,'Makeup Artist'),(74,1323768,8,'Costume Supervisor'),(74,1338976,6,'Sound Re-Recording Mixer'),(74,1339206,8,'Assistant Costume Designer'),(74,1341403,6,'Sound Designer'),(74,1341403,6,'Supervising Sound Editor'),(74,1341405,5,'Dialogue Editor'),(74,1341798,3,'Location Manager'),(74,1341865,2,'Script Supervisor'),(74,1360100,6,'Sound Effects Editor'),(74,1360103,6,'Sound Effects Editor'),(74,1364412,6,'Sound Effects Editor'),(74,1374169,6,'Foley'),(74,1376157,1,'Camera Operator'),(74,1377215,9,'Property Master'),(74,1377222,6,'Sound Designer'),(74,1377228,1,'Camera Operator'),(74,1377237,9,'Studio Teachers'),(74,1378240,1,'Still Photographer'),(74,1386920,1,'Still Photographer'),(74,1391600,9,'Transportation Captain'),(74,1395025,6,'Dolby Consultant'),(74,1395367,11,'Best Boy Electric'),(74,1395438,7,'Sculptor'),(74,1395463,1,'Camera Operator'),(74,1401105,9,'Visual Effects Editor'),(74,1401687,6,'Sound Re-Recording Mixer'),(74,1401792,10,'Visual Effects'),(74,1402015,8,'Hair Department Head'),(74,1403418,9,'Transportation Coordinator'),(74,1403427,3,'Production Coordinator'),(74,1404716,6,'Sound Designer'),(74,1405373,8,'Key Hair Stylist'),(74,1406572,8,'Key Hair Stylist'),(74,1406789,6,'Music Editor'),(74,1406792,9,'Unit Publicist'),(74,1406848,8,'Set Costumer'),(74,1407849,9,'Set Medic'),(74,1407887,9,'Makeup Effects'),(74,1408672,6,'ADR & Dubbing'),(74,1411517,7,'Greensman'),(74,1411521,6,'Sound Recordist'),(74,1412203,1,'Camera Operator'),(74,1414183,9,'Visual Effects Art Director'),(74,1414988,9,'Makeup Effects'),(74,1415513,9,'Dialect Coach'),(74,1415638,11,'Lighting Technician'),(74,1416155,6,'Sound Re-Recording Mixer'),(74,1417514,6,'Sound Designer'),(74,1425486,10,'Mechanical Designer'),(74,1426783,10,'Visual Effects Coordinator'),(74,1429549,5,'Color Timer'),(74,1432596,6,'Sound Engineer'),(74,1439013,7,'Art Department Coordinator'),(74,1445839,10,'Animation Supervisor'),(74,1447601,6,'First Assistant Sound Editor'),(74,1452632,1,'Camera Operator'),(74,1464517,7,'Construction Coordinator'),(74,1476175,1,'First Assistant Camera'),(74,1481340,7,'Painter'),(74,1512745,11,'Rigging Gaffer'),(74,1516293,8,'Costume Supervisor'),(74,1530726,9,'Armorer'),(74,1532195,8,'Hairstylist'),(74,1532606,9,'Armorer'),(74,1533005,7,'Art Department Assistant'),(74,1533039,9,'Armorer'),(74,1535099,6,'Orchestrator'),(74,1536965,9,'Armorer'),(74,1544670,5,'First Assistant Editor'),(74,1546842,10,'Animation Supervisor'),(74,1546843,10,'Animation Supervisor'),(74,1546844,10,'Creature Design'),(74,1546851,9,'Armorer'),(74,1546852,9,'Armorer'),(74,1546853,9,'Armorer'),(74,1546854,9,'Property Master'),(74,1546869,1,'Still Photographer'),(74,1546873,6,'ADR & Dubbing'),(74,1546875,6,'Foley'),(74,1546879,11,'Gaffer'),(74,1546880,11,'Gaffer'),(74,1546881,11,'Rigging Grip'),(74,1549062,9,'Propmaker'),(74,1567975,9,'Picture Car Coordinator'),(74,1589725,3,'Production Accountant'),(74,1595473,7,'Construction Foreman'),(74,1638528,7,'Production Illustrator'),(74,1699144,2,'Layout'),(74,1704231,7,'Location Scout'),(74,1704239,9,'Craft Service'),(74,1727295,8,'Set Dressing Artist'),(74,1747927,1,'Key Grip'),(74,1747998,1,'Grip'),(74,1788396,9,'Sequence Supervisor'),(74,1790077,7,'Assistant Art Director'),(74,1790958,10,'Visual Effects Producer'),(74,1816574,9,'Scenic Artist'),(74,1853828,9,'Loader'),(74,1868835,1,'Camera Intern'),(74,1868837,9,'Driver'),(74,1868838,9,'Post Production Assistant'),(74,1868839,9,'Post Production Supervisor'),(74,1868840,9,'Production Intern'),(74,1868842,9,'Security'),(74,1868857,9,'Set Production Assistant'),(74,1868858,9,'Software Engineer'),(74,1868859,9,'Stand In'),(74,1868860,9,'Video Assist Operator'),(74,1868862,11,'Electrician'),(74,1868866,10,'Digital Compositors'),(8961,8221,7,'Art Direction'),(8961,4023,3,'Casting'),(8961,770,3,'Producer'),(8961,2444,3,'Executive Producer'),(8961,2446,3,'Executive Producer'),(8961,2448,3,'Associate Producer'),(8961,865,2,'Director'),(8961,894,6,'Original Music Composer'),(8961,898,5,'Editor'),(8961,3192,3,'Casting'),(8961,4037,4,'Screenplay'),(8961,4037,4,'Story'),(8961,5132,6,'Music Supervisor'),(8961,5328,3,'Casting'),(8961,10631,10,'Special Effects Supervisor'),(8961,8705,7,'Art Direction'),(8961,8527,8,'Costume Design'),(8961,8678,7,'Production Illustrator'),(8961,10122,3,'Executive Producer'),(8961,10123,5,'Editor'),(8961,10125,7,'Set Decoration'),(8961,10397,8,'Costume Design'),(8961,14046,9,'Special Effects Coordinator'),(8961,13224,6,'Dolby Consultant'),(8961,16658,9,'Pyrotechnician'),(8961,24311,5,'Editor'),(8961,21158,4,'Story'),(8961,21159,4,'Story'),(8961,21792,4,'Characters'),(8961,27032,7,'Production Design'),(8961,47288,3,'Unit Production Manager'),(8961,53593,9,'Stunts'),(8961,66690,8,'Hairstylist'),(8961,15801,4,'Screenplay'),(8961,61974,6,'Orchestrator'),(8961,62722,3,'Associate Producer'),(8961,62778,3,'Casting Associate'),(8961,73667,1,'Additional Photography'),(8961,76807,3,'Production Supervisor'),(8961,84392,3,'Associate Producer'),(8961,143913,6,'Supervising ADR Editor'),(8961,150857,9,'Additional Music'),(8961,168214,8,'Makeup Artist'),(8961,579405,9,'Special Sound Effects'),(8961,968316,9,'Stunt Coordinator'),(8961,983446,7,'Set Decoration Buyer'),(8961,1043831,1,'Director of Photography'),(8961,1098585,9,'Technical Supervisor'),(8961,1106260,9,'Aerial Coordinator'),(8961,1127474,1,'Camera Loader'),(8961,1158052,8,'Makeup Artist'),(8961,1207313,7,'Art Direction'),(8961,1236730,5,'First Assistant Editor'),(8961,1319749,8,'Costume Supervisor'),(8961,1324808,8,'Makeup Department Head'),(8961,1340132,10,'Visual Effects Producer'),(8961,1341789,10,'Visual Effects Supervisor'),(8961,1370800,7,'Set Designer'),(8961,1378168,6,'Supervising Sound Editor'),(8961,1378171,6,'Sound Re-Recording Mixer'),(8961,1398853,7,'Leadman'),(8961,1398970,1,'Steadicam Operator'),(8961,1398972,1,'Underwater Director of Photography'),(8961,1399467,1,'Camera Operator'),(8961,1400558,6,'Sound Designer'),(8961,1400739,9,'Unit Publicist'),(8961,1403081,7,'Art Department Coordinator'),(8961,1403415,1,'Aerial Director of Photography'),(8961,1403563,11,'Electrician'),(8961,1405322,8,'Makeup Artist'),(8961,1408305,6,'Sound Effects Editor'),(8961,1411275,9,'Transportation Captain'),(8961,1412721,10,'Visual Effects Coordinator'),(8961,1413000,8,'Key Costumer'),(8961,1413091,5,'Dialogue Editor'),(8961,1415965,6,'Supervising Dialogue Editor'),(8961,1416086,7,'Set Dresser'),(8961,1416089,3,'Location Manager'),(8961,1420808,5,'Color Timer'),(8961,1424533,6,'Production Sound Mixer'),(8961,1427384,2,'Script Supervisor'),(8961,1436192,11,'Gaffer'),(8961,1436193,11,'Chief Lighting Technician'),(8961,1437195,9,'Special Effects Coordinator'),(8961,1439016,7,'Construction Coordinator'),(8961,1445842,1,'Still Photographer'),(8961,1459789,10,'Visual Effects'),(8961,1461178,1,'First Assistant Camera'),(8961,1463304,9,'Second Unit'),(8961,1463304,4,'Storyboard'),(8961,1463767,10,'24 Frame Playback'),(8961,1476990,2,'First Assistant Director'),(8961,1481286,8,'Key Hair Stylist'),(8961,1490943,9,'Property Master'),(8961,1509359,6,'Sound Mixer'),(8961,1512022,3,'Executive In Charge Of Production'),(8961,1525256,8,'Hairstylist'),(8961,1525257,8,'Hairstylist'),(8961,1525258,8,'Key Makeup Artist'),(8961,1533072,8,'Assistant Costume Designer'),(8961,1534197,6,'Music Editor'),(8961,1536385,11,'Rigging Gaffer'),(8961,1546873,6,'ADR Editor'),(8961,1548694,9,'Sound Recordist'),(8961,1548695,9,'Software Engineer'),(8961,1552541,9,'Digital Effects Supervisor'),(8961,1555030,1,'Additional Camera'),(8961,1562008,6,'Boom Operator'),(8961,1567949,8,'Costume Illustrator'),(8961,1570732,7,'Construction Foreman'),(8961,1570733,7,'Greensman'),(8961,1570736,7,'Location Scout'),(8961,1570737,7,'Painter'),(8961,1570738,7,'Standby Painter'),(8961,1570739,1,'Camera Intern'),(8961,1570740,1,'Key Grip'),(8961,1570747,9,'Armorer'),(8961,1570748,9,'Carpenter'),(8961,1570749,9,'Craft Service'),(8961,1570750,9,'Driver'),(8961,1570751,9,'Loader'),(8961,1570752,9,'Picture Car Coordinator'),(8961,1570753,9,'Post Production Assistant'),(8961,1570754,9,'Post Production Supervisor'),(8961,1570755,9,'Production Office Assistant'),(8961,1570757,9,'Propmaker'),(8961,1570758,9,'Scenic Artist'),(8961,1570761,9,'Security'),(8961,1570762,9,'Set Medic'),(8961,1570763,9,'Set Production Assistant'),(8961,1570765,9,'Stand In'),(8961,1570766,9,'Transportation Co-Captain'),(8961,1570767,9,'Utility Stunts'),(8961,1570768,9,'Visual Effects Editor'),(8961,1570771,5,'Digital Intermediate'),(8961,1570779,5,'Editorial Coordinator'),(8961,1570781,11,'Best Boy Electric'),(8961,1570786,11,'Lighting Technician'),(8961,1570787,11,'Rigging Grip'),(8961,1570788,3,'Casting Associate'),(8961,1570790,3,'Production Accountant'),(8961,1570791,3,'Production Coordinator'),(8961,1570793,3,'Researcher'),(8961,1570813,10,'Digital Compositors'),(8961,1573605,7,'Assistant Property Master'),(8961,1618901,9,'Set Medic'),(8961,1733188,1,'Dolly Grip'),(8961,1738149,7,'Title Designer'),(8961,1747997,7,'Set Decorating Coordinator'),(8961,1747998,1,'Grip'),(8961,1747999,8,'Ager/Dyer'),(8961,1748023,9,'Animal Wrangler'),(8961,1748025,9,'Marine Coordinator'),(8961,1748026,2,'Second Assistant Director'),(8961,1748028,5,'Negative Cutter'),(8961,1748030,3,'Assistant Production Coordinator'),(8961,1748033,3,'Casting Assistant'),(8961,1748036,6,'Foley Editor'),(8961,1748040,6,'Utility Sound'),(8961,1748046,10,'Lead Animator'),(8961,1748048,10,'Matchmove Supervisor'),(8961,1748049,10,'Visual Effects Designer'),(8961,1767194,8,'Wigmaker'),(673,491,6,'Original Music Composer'),(673,474,3,'Casting'),(673,2889,6,'Sound Designer'),(673,5331,7,'Set Decoration'),(673,5491,7,'Production Design'),(673,20643,3,'Producer'),(673,9647,5,'Editor'),(673,9165,1,'Director of Photography'),(673,10966,4,'Novel'),(673,10967,4,'Screenplay'),(673,10968,3,'Producer'),(673,10710,7,'Art Direction'),(673,10976,9,'Stunt Coordinator'),(673,11167,7,'Assistant Art Director'),(673,11177,9,'Stunts'),(673,11218,2,'Director'),(673,11222,3,'Producer'),(673,11224,7,'Art Direction'),(673,10788,7,'Art Direction'),(673,11225,7,'Art Direction'),(673,11226,7,'Art Direction'),(673,11227,8,'Costume Design'),(673,11228,8,'Makeup Artist'),(673,11229,6,'Supervising Sound Editor'),(673,11230,9,'Special Effects'),(673,11297,8,'Hair Designer'),(673,11298,8,'Makeup Designer'),(673,40823,6,'Foley'),(673,89320,3,'Unit Production Manager'),(673,11711,3,'Associate Producer'),(673,15875,1,'Additional Photography'),(673,16589,9,'Second Unit Cinematographer'),(673,16683,6,'Sound Editor'),(673,16684,5,'Dialogue Editor'),(673,17828,3,'Executive Producer'),(673,10876,3,'Executive Producer'),(673,58697,3,'Executive Producer'),(673,34194,1,'Steadicam Operator'),(673,91144,6,'Scoring Mixer'),(673,91882,6,'ADR Editor'),(673,117235,6,'Foley Editor'),(673,168328,4,'Storyboard'),(673,193339,9,'Stand In'),(673,227696,11,'Lighting Artist'),(673,999561,6,'Sound Effects Editor'),(673,1043374,6,'Musician'),(673,1108835,3,'Casting Assistant'),(673,1111803,9,'Set Production Assistant'),(673,1115279,1,'Aerial Camera'),(673,1117716,4,'Creative Producer'),(673,1117950,9,'Post Production Supervisor'),(673,1176206,3,'Production Accountant'),(673,1319120,8,'Wardrobe Supervisor'),(673,1324461,8,'Costume Supervisor'),(673,1324814,5,'First Assistant Editor'),(673,1326458,7,'Draughtsman'),(673,1335539,7,'Art Department Assistant'),(673,1335562,6,'First Assistant Sound Editor'),(673,1338233,9,'Transportation Coordinator'),(673,1349046,6,'Sound Re-Recording Mixer'),(673,1376804,9,'Digital Effects Producer'),(673,1389525,7,'Art Department Coordinator'),(673,1390388,2,'Script Supervisor'),(673,1392245,1,'Still Photographer'),(673,1395713,6,'Production Sound Mixer'),(673,1398086,9,'Scenic Artist'),(673,1401126,8,'Wigmaker'),(673,1401893,9,'Visual Effects Editor'),(673,1403634,7,'Sculptor'),(673,1404221,10,'Visual Effects Supervisor'),(673,1404244,1,'Aerial Director of Photography'),(673,1408379,10,'Visual Effects Coordinator'),(673,1408848,3,'Unit Manager'),(673,1410187,3,'Line Producer'),(673,1411102,1,'First Assistant Camera'),(673,1417413,9,'Property Master'),(673,1424172,10,'Animation Supervisor'),(673,1430188,1,'Camera Operator'),(673,1430192,3,'Location Manager'),(673,1433709,7,'Construction Coordinator'),(673,1453612,10,'Animation'),(673,1456835,9,'Digital Effects Supervisor'),(673,1471947,3,'Associate Producer'),(673,1471947,2,'First Assistant Director'),(673,1483222,9,'CGI Supervisor'),(673,1484191,10,'Lead Animator'),(673,1521757,10,'Special Effects Supervisor'),(673,1521831,9,'Production Controller'),(673,1532213,10,'Modeling'),(673,1534668,6,'Music Editor'),(673,1535099,6,'Orchestrator'),(673,1544527,8,'Costume Illustrator'),(673,1546177,7,'Standby Painter'),(673,1550634,3,'Researcher'),(673,1562119,5,'Associate Editor'),(673,1562723,11,'Gaffer'),(673,1570042,11,'Rigging Gaffer'),(673,1570244,10,'Visual Effects'),(673,1576007,9,'Aerial Coordinator'),(673,1583790,1,'Grip'),(673,1583797,9,'Post Production Assistant'),(673,1591552,7,'Painter'),(673,1591553,7,'Production Illustrator'),(673,1591554,1,'Additional Camera'),(673,1591555,1,'Camera Technician'),(673,1591556,1,'Key Grip'),(673,1591557,8,'Assistant Costume Designer'),(673,1591558,8,'Hairstylist'),(673,1591559,8,'Prosthetic Supervisor'),(673,1591562,9,'Carpenter'),(673,1591563,9,'CG Supervisor'),(673,1591564,9,'Driver'),(673,1591565,9,'Loader'),(673,1591566,9,'Propmaker'),(673,1591569,9,'Security'),(673,1591570,9,'Sequence Supervisor'),(673,1591573,9,'Software Engineer'),(673,1591574,9,'Special Effects Coordinator'),(673,1591575,9,'Supervising Animator'),(673,1591576,9,'Unit Publicist'),(673,1591577,9,'Video Assist Operator'),(673,1591578,2,'Layout'),(673,1591761,5,'Color Timer'),(673,1591762,5,'Digital Intermediate'),(673,1591763,11,'Best Boy Electric'),(673,1591764,11,'Electrician'),(673,1591765,11,'Lighting Supervisor'),(673,1591766,11,'Lighting Technician'),(673,1591768,11,'Rigging Grip'),(673,1591769,3,'Production Coordinator'),(673,1591770,3,'Production Manager'),(673,1591771,6,'Boom Operator'),(673,1591772,6,'Sound Mixer'),(673,1591773,10,'3D Animator'),(673,1591774,10,'Digital Compositors'),(673,1591775,10,'I/O Supervisor'),(673,1591776,10,'Visual Effects Producer'),(673,1591777,6,'Sound'),(673,1836076,6,'Assistant Sound Editor'),(673,1836729,7,'Assistant Property Master'),(673,1836733,7,'Title Designer'),(673,1836738,8,'Costume Coordinator'),(673,1836741,2,'Second Assistant Director'),(673,1836742,2,'Third Assistant Director'),(673,1836743,11,'Rigging Supervisor'),(673,1836745,6,'Additional Sound Re-Recording Mixer'),(673,1836751,10,'Creature Technical Director'),(6972,1707,4,'Screenplay'),(6972,1720,3,'Casting'),(6972,433,5,'Editor'),(6972,563,5,'Editor'),(6972,3558,4,'Screenplay'),(6972,6201,4,'Screenplay'),(6972,6201,2,'Director'),(6972,6201,3,'Producer'),(6972,6201,4,'Story'),(6972,6203,7,'Production Design'),(6972,6203,8,'Costume Design'),(6972,6203,3,'Producer'),(6972,7790,7,'Set Designer'),(6972,40765,10,'Visual Effects Producer'),(6972,12202,3,'Producer'),(6972,33195,7,'Supervising Art Director'),(6972,23226,3,'Producer'),(6972,37281,3,'Casting'),(6972,37757,6,'Original Music Composer'),(6972,52905,3,'Casting'),(6972,57849,1,'Director of Photography'),(6972,62745,7,'Set Decoration'),(6972,75715,9,'Stunt Coordinator'),(6972,117235,6,'Music Editor'),(6972,577468,6,'Sound Designer'),(6972,577468,6,'Supervising Sound Editor'),(6972,589294,9,'Stunt Coordinator'),(6972,1010787,3,'Casting'),(6972,1115006,4,'Screenplay'),(6972,1115007,3,'Producer'),(6972,1117953,7,'Art Direction'),(6972,1163750,10,'Visual Effects Supervisor'),(6972,1190664,10,'Visual Effects Producer'),(6972,1243767,9,'Choreographer'),(6972,1311621,8,'Hairstylist'),(6972,1337413,6,'Foley'),(6972,1338976,6,'Sound Re-Recording Mixer'),(6972,1391720,5,'Dialogue Editor'),(6972,1391725,10,'Visual Effects Producer'),(6972,1392099,10,'Visual Effects Producer'),(6972,1392737,2,'Script Supervisor'),(6972,1394026,9,'Visual Effects Editor'),(6972,1394061,7,'Set Designer'),(6972,1394755,10,'Visual Effects Supervisor'),(6972,1394862,6,'Supervising Sound Effects Editor'),(6972,1394961,10,'Visual Effects Supervisor'),(6972,1395454,10,'Visual Effects Producer'),(6972,1398100,10,'Visual Effects Producer'),(6972,1401587,9,'Visual Effects Editor'),(6972,1401590,10,'Visual Effects Supervisor'),(6972,1401638,8,'Wigmaker'),(6972,1401639,8,'Makeup Artist'),(6972,1401640,8,'Makeup Artist'),(6972,1401641,8,'Hairstylist'),(6972,1401642,8,'Hairstylist'),(6972,1401643,8,'Hairstylist'),(6972,1401644,9,'Post Production Supervisor'),(6972,1401665,9,'Property Master'),(6972,1401667,7,'Assistant Art Director'),(6972,1401668,7,'Assistant Art Director'),(6972,1401669,7,'Art Department Coordinator'),(6972,1401671,7,'Construction Coordinator'),(6972,1401672,7,'Sculptor'),(6972,1401674,7,'Sculptor'),(6972,1401680,9,'Scenic Artist'),(6972,1401687,6,'Sound Re-Recording Mixer'),(6972,1401689,5,'Dialogue Editor'),(6972,1401690,5,'Dialogue Editor'),(6972,1401691,5,'Dialogue Editor'),(6972,1401694,9,'Special Effects Coordinator'),(6972,1401695,9,'Special Effects Coordinator'),(6972,1401698,10,'Visual Effects Supervisor'),(6972,1401702,9,'Visual Effects Art Director'),(6972,1401703,10,'Visual Effects Supervisor'),(6972,1401704,10,'Visual Effects Supervisor'),(6972,1401714,10,'Visual Effects Supervisor'),(6972,1401717,10,'Visual Effects Supervisor'),(6972,1401718,9,'Visual Effects Editor'),(6972,1401720,10,'Visual Effects Supervisor'),(6972,1401722,10,'Visual Effects Supervisor'),(6972,1401723,9,'Visual Effects Editor'),(6972,1401726,9,'Visual Effects Art Director'),(6972,1401727,10,'Visual Effects Producer'),(6972,1401728,10,'Visual Effects Producer'),(6972,1401729,10,'Visual Effects Producer'),(6972,1401730,10,'Visual Effects Producer'),(6972,1401731,10,'Visual Effects Producer'),(6972,1401732,10,'Visual Effects Producer'),(6972,1401733,10,'Visual Effects Producer'),(6972,1401734,9,'Stunt Coordinator'),(6972,1401735,1,'Camera Operator'),(6972,1401736,1,'Camera Operator'),(6972,1401737,1,'Camera Operator'),(6972,1401738,1,'Still Photographer'),(6972,1401739,11,'Gaffer'),(6972,1401740,9,'Video Assist Operator'),(6972,1401741,5,'Digital Intermediate'),(6972,1401742,9,'Transportation Coordinator'),(6972,1401743,3,'Location Manager'),(6972,1401745,9,'Unit Publicist'),(6972,1401746,3,'Location Manager'),(671,491,6,'Original Music Composer'),(671,8380,7,'Art Direction'),(671,1302,3,'Casting'),(671,2702,1,'Director of Photography'),(671,2874,3,'Casting'),(671,3275,3,'Casting'),(671,6581,5,'Editor'),(671,4755,9,'Second Unit Cinematographer'),(671,5331,7,'Set Decoration'),(671,5491,7,'Production Design'),(671,6866,3,'Associate Producer'),(671,6866,3,'Unit Production Manager'),(671,6870,3,'Executive Producer'),(671,7789,7,'Art Direction'),(671,10965,2,'Director'),(671,10965,3,'Executive Producer'),(671,10966,4,'Novel'),(671,10967,4,'Screenplay'),(671,10968,3,'Producer'),(671,10969,3,'Casting'),(671,10710,7,'Art Direction'),(671,10970,8,'Costume Design'),(671,10971,8,'Makeup Artist'),(671,10972,6,'Sound Effects Editor'),(671,10973,9,'Special Effects'),(671,10974,10,'Visual Effects Supervisor'),(671,10975,9,'Stunts'),(671,10976,9,'Stunt Coordinator'),(671,10908,7,'Art Direction'),(671,11222,3,'Executive Producer'),(671,10788,7,'Art Direction'),(671,11297,8,'Hair Designer'),(671,11298,8,'Makeup Designer'),(671,10612,6,'Musician'),(671,40817,6,'Sound Re-Recording Mixer'),(671,11711,3,'Associate Producer'),(671,12761,6,'Supervising Sound Editor'),(671,17828,3,'Executive Producer'),(671,26144,7,'Art Direction'),(671,58697,3,'Co-Producer'),(671,66142,6,'Supervising Music Editor'),(671,91480,10,'Visual Effects Coordinator'),(671,101523,8,'Assistant Costume Designer'),(671,1100163,9,'Makeup Effects'),(671,1115279,1,'Aerial Camera'),(671,1122200,3,'Casting Assistant'),(671,1176206,3,'Production Accountant'),(671,1322347,9,'Sound Recordist'),(671,1323295,8,'Costume Supervisor'),(671,1325917,7,'Art Direction'),(671,1334489,7,'Assistant Art Director'),(671,1335553,7,'Assistant Property Master'),(671,1341734,9,'Temp Music Editor'),(671,1368875,3,'Production Manager'),(671,1390388,2,'Script Supervisor'),(671,1393351,6,'Scoring Mixer'),(671,1393883,1,'Still Photographer'),(671,1394719,10,'I/O Supervisor'),(671,1395713,6,'Sound Mixer'),(671,1401126,8,'Wigmaker'),(671,1401789,10,'Visual Effects Producer'),(671,1403634,7,'Sculptor'),(671,1404861,6,'ADR Editor'),(671,1406789,6,'Music Editor'),(671,1407858,5,'Dialogue Editor'),(671,1408354,1,'Camera Operator'),(671,1408361,11,'Gaffer'),(671,1408378,6,'Assistant Sound Editor'),(671,1411118,9,'Set Production Assistant'),(671,1417413,9,'Property Master'),(671,1424172,10,'Animation Supervisor'),(671,1427843,8,'Prosthetic Makeup Artist'),(671,1428506,1,'Steadicam Operator'),(671,1429245,9,'Special Effects Coordinator'),(671,1431509,9,'Projection'),(671,1436189,9,'Sequence Leads'),(671,1446691,5,'First Assistant Editor'),(671,1464518,9,'Visual Effects Editor'),(671,1465990,7,'Construction Coordinator'),(671,1471947,2,'First Assistant Director'),(671,1484194,9,'Sequence Supervisor'),(671,1513639,10,'Special Effects Supervisor'),(671,1516453,9,'Utility Stunts'),(671,1535099,6,'Orchestrator'),(671,1536112,6,'Dolby Consultant'),(671,1546177,7,'Standby Painter'),(671,1570042,11,'Rigging Gaffer'),(671,1576005,1,'Key Grip'),(671,1576007,9,'Pilot'),(671,1576025,5,'Color Timer'),(671,1591552,7,'Painter'),(671,1591576,9,'Unit Publicist'),(671,1591577,9,'Video Assist Operator'),(671,1591770,3,'Assistant Production Manager'),(671,1591771,6,'Boom Operator'),(671,1592228,9,'Transportation Co-Captain'),(671,1592605,11,'Best Boy Electric'),(671,1593066,7,'Art Department Coordinator'),(671,1593071,7,'Production Illustrator'),(671,1593072,7,'Set Designer'),(671,1593074,1,'First Assistant Camera'),(671,1593075,1,'Grip'),(671,1593076,8,'Hairstylist'),(671,1593077,9,'Carpenter'),(671,1593078,9,'CG Supervisor'),(671,1593079,9,'Chef'),(671,1593080,9,'Driver'),(671,1593081,9,'Post Production Supervisor'),(671,1593082,9,'Scenic Artist'),(671,1593083,9,'Security'),(671,1593084,9,'Systems Administrators & Support'),(671,1593085,9,'Transportation Coordinator'),(671,1593093,11,'Electrician'),(671,1593094,11,'Lighting Supervisor'),(671,1593095,3,'Location Manager'),(671,1593096,3,'Production Coordinator'),(671,1593097,3,'Production Supervisor'),(671,1593100,6,'Foley'),(671,1593101,6,'Sound Engineer'),(671,1593102,10,'3D Supervisor'),(671,1593103,10,'Digital Compositors'),(671,1593105,4,'Storyboard'),(671,1715548,8,'Costume Coordinator'),(671,1738171,8,'Tailor'),(671,1767782,3,'ADR Voice Casting'),(671,1767785,6,'Foley Editor'),(671,1836745,6,'Additional Sound Re-Recording Mixer'),(671,1836787,9,'Animal Coordinator'),(671,1836882,1,'Dolly Grip'),(671,1836883,9,'Digital Effects Producer'),(671,1836887,2,'Second Assistant Director'),(671,1836888,2,'Third Assistant Director'),(671,1836893,3,'Assistant Production Coordinator'),(671,1836898,10,'Lead Animator'),(22,38,5,'Editor'),(22,120,1,'Director of Photography'),(22,122,6,'Original Music Composer'),(22,1704,2,'Director'),(22,770,3,'Producer'),(22,1705,4,'Screenstory'),(22,1705,4,'Screenplay'),(22,1706,4,'Screenstory'),(22,1706,4,'Screenplay'),(22,1707,4,'Screenstory'),(22,1708,4,'Screenstory'),(22,1718,7,'Production Design'),(22,1719,3,'Casting'),(22,1720,3,'Casting'),(22,1721,5,'Editor'),(22,1722,5,'Editor'),(22,2443,3,'Executive Producer'),(22,2443,9,'Second Unit Cinematographer'),(22,2444,3,'Executive Producer'),(22,2446,3,'Executive Producer'),(22,2448,3,'Associate Producer'),(22,900,6,'Sound Designer'),(22,900,6,'Supervising Sound Editor'),(22,2528,7,'Art Direction'),(22,4034,8,'Costume Design'),(22,5132,6,'Music Supervisor'),(22,9973,10,'Digital Compositors'),(22,9025,7,'Art Direction'),(22,40748,9,'Dialect Coach'),(22,12131,7,'Art Direction'),(22,12575,1,'Additional Photography'),(22,15847,9,'Special Effects Coordinator'),(22,21984,7,'Set Decoration'),(22,113089,1,'First Assistant Camera'),(22,75624,9,'Choreographer'),(22,79790,11,'Gaffer'),(22,83072,7,'Leadman'),(22,164801,9,'Property Master'),(22,406204,8,'Makeup Department Head'),(22,1155551,5,'First Assistant Editor'),(22,1186326,3,'Executive Producer'),(22,1186326,3,'Unit Production Manager'),(22,1309482,10,'Creature Design'),(22,1338215,9,'Stunts'),(22,1341854,6,'Sound Re-Recording Mixer'),(22,1377132,1,'Steadicam Operator'),(22,1378244,8,'Set Costumer'),(22,1378247,9,'Additional Music'),(22,1394306,6,'Music Editor'),(22,1395027,9,'Digital Effects Supervisor'),(22,1398980,9,'Transportation Coordinator'),(22,1400739,9,'Unit Publicist'),(22,1401109,1,'Camera Operator'),(22,1401786,6,'Sound Effects Editor'),(22,1403415,1,'Helicopter Camera'),(22,1403432,7,'Construction Coordinator'),(22,1403566,1,'Underwater Camera'),(22,1404834,10,'Visual Development'),(22,1405814,6,'ADR & Dubbing'),(22,1406776,10,'Visual Effects Producer'),(22,1412460,5,'Editorial Services'),(22,1413087,7,'Art Department Coordinator'),(22,1413091,5,'Dialogue Editor'),(22,1413130,3,'Location Manager'),(22,1415613,7,'Set Designer'),(22,1417407,3,'Production Supervisor'),(22,1418826,1,'Still Photographer'),(22,1422059,7,'Greensman'),(22,1426773,10,'Animation Supervisor'),(22,1428208,11,'Rigging Gaffer'),(22,1432379,9,'Studio Teachers'),(22,1454884,10,'Visual Effects'),(22,1457630,7,'Production Illustrator'),(22,1460669,6,'Orchestrator'),(22,1463140,8,'Hair Designer'),(22,1463412,10,'Pyrotechnic Supervisor'),(22,1532250,8,'Hairstylist'),(22,1533059,9,'Visual Effects Editor'),(22,1536949,8,'Wigmaker'),(22,1545540,6,'Production Sound Mixer'),(22,1550730,5,'Color Timer'),(22,1562067,9,'Post Production Assistant'),(22,1564250,6,'Foley'),(22,1565948,8,'Makeup Artist'),(22,1566301,6,'Scoring Mixer'),(22,1570754,9,'Post Production Supervisor'),(22,1580636,3,'Production Accountant'),(22,1585197,4,'Storyboard'),(22,1586929,9,'Scenic Artist'),(22,1591573,9,'Software Engineer'),(22,1594921,9,'Loader'),(22,1594931,11,'Electrician'),(22,1596715,7,'Art Direction'),(22,1608889,11,'Lighting Technician'),(22,1619091,9,'Set Production Assistant'),(22,1627977,9,'Propmaker'),(22,1640575,9,'Stunt Coordinator'),(22,1646220,7,'Construction Foreman'),(22,1646222,7,'Painter'),(22,1646223,1,'Camera Technician'),(22,1646224,1,'Grip'),(22,1646228,8,'Assistant Costume Designer'),(22,1646229,8,'Set Dressing Artist'),(22,1646230,9,'Armorer'),(22,1646231,9,'Carpenter'),(22,1646233,9,'Craft Service'),(22,1646234,9,'Driver'),(22,1646238,9,'Production Office Assistant'),(22,1646239,9,'Sequence Supervisor'),(22,1646240,9,'Set Medic'),(22,1646241,9,'Sound Recordist'),(22,1646246,9,'Utility Stunts'),(22,1646247,9,'Video Assist Operator'),(22,1646248,2,'Assistant Director'),(22,1646249,5,'Digital Intermediate'),(22,1646250,11,'Best Boy Electric'),(22,1646251,11,'Rigging Grip'),(22,1646252,3,'Production Coordinator'),(22,1646253,3,'Researcher'),(22,1646255,6,'First Assistant Sound Editor'),(22,1646284,6,'Sound Mixer'),(22,1646285,10,'3D Supervisor'),(22,1646294,10,'Visual Effects'),(22,1646295,10,'Visual Effects Coordinator'),(22,1646297,10,'Visual Effects Supervisor'),(22,1680739,9,'Stunts'),(22,1825902,6,'Boom Operator'),(22,1845219,9,'Stunts'),(591,947,6,'Original Music Composer'),(591,339,3,'Producer'),(591,1325,3,'Casting'),(591,2874,3,'Casting'),(591,4849,6,'Supervising Sound Editor'),(591,5575,4,'Screenplay'),(591,6159,2,'Director'),(591,6159,3,'Producer'),(591,6184,3,'Executive Producer'),(591,6186,3,'Producer'),(591,6186,3,'Unit Production Manager'),(591,6188,3,'Producer'),(591,6189,5,'Editor'),(591,6190,5,'Editor'),(591,7732,7,'Production Design'),(591,7788,7,'Art Direction'),(591,7787,7,'Art Direction'),(591,8404,3,'Executive Producer'),(591,8404,4,'Novel'),(591,8406,3,'Producer'),(591,8408,1,'Director of Photography'),(591,8408,1,'Camera Operator'),(591,8410,7,'Set Decoration'),(591,8411,8,'Costume Design'),(591,8412,8,'Makeup Artist'),(591,8412,10,'Creature Design'),(591,8415,3,'Unit Production Manager'),(591,8416,3,'Unit Production Manager'),(591,8418,3,'Production Supervisor'),(591,9161,8,'Makeup Artist'),(591,10976,9,'Stunt Coordinator'),(591,15883,10,'Visual Effects Supervisor'),(591,14526,8,'Makeup Artist'),(591,20032,1,'Camera Operator'),(591,29233,8,'Hairstylist'),(591,35080,9,'Second Unit Cinematographer'),(591,46283,1,'Camera Operator'),(591,54387,9,'Stunt Coordinator'),(591,113044,5,'Dialogue Editor'),(591,1077782,6,'Foley'),(591,1096422,8,'Makeup Artist'),(591,1194563,3,'Location Manager'),(591,1322147,8,'Costume Supervisor'),(591,1327139,7,'Assistant Art Director'),(591,1327144,9,'Visual Effects Art Director'),(591,1335122,6,'Sound Effects Editor'),(591,1357599,6,'Music Editor'),(591,1373716,10,'Visual Effects Supervisor'),(591,1374169,6,'Foley'),(591,1377127,5,'Dialogue Editor'),(591,1384386,10,'Visual Effects Supervisor'),(591,1388881,9,'Transportation Coordinator'),(591,1390388,2,'Script Supervisor'),(591,1390389,2,'Script Supervisor'),(591,1393323,10,'Visual Effects Producer'),(591,1395365,10,'Visual Effects Producer'),(591,1398085,9,'Property Master'),(591,1400012,7,'Assistant Art Director'),(591,1400070,6,'Sound Designer'),(591,1400073,9,'Visual Effects Editor'),(591,1400089,3,'Production Manager'),(591,1400089,3,'Location Manager'),(591,1400092,1,'Helicopter Camera'),(591,1400093,6,'Sound Effects Editor'),(591,1401292,10,'Visual Effects Supervisor'),(591,1406187,9,'Scenic Artist'),(591,1406855,3,'Location Manager'),(591,1406857,3,'Location Manager'),(591,1408781,10,'Visual Effects Producer'),(591,1408836,8,'Set Costumer'),(591,1409710,1,'Steadicam Operator'),(591,1412486,1,'Camera Operator'),(591,1413814,3,'Location Manager'),(591,1415946,8,'Hairstylist'),(591,1415948,8,'Hairstylist'),(591,1415951,8,'Hairstylist'),(591,1415961,7,'Art Department Coordinator'),(591,1415962,9,'Property Master'),(591,1415963,7,'Sculptor'),(591,1415964,6,'ADR & Dubbing'),(591,1415965,5,'Dialogue Editor'),(591,1415966,6,'Foley'),(591,1415974,10,'Visual Effects Producer'),(591,1415975,10,'Visual Effects Producer'),(591,1415976,10,'Visual Effects Producer'),(591,1415977,10,'Visual Effects Producer'),(591,1415978,10,'Visual Effects Producer'),(591,1415979,9,'Visual Effects Editor'),(591,1415980,10,'Visual Effects Supervisor'),(591,1415981,9,'Stunt Coordinator'),(591,1415982,1,'Camera Operator'),(591,1415986,9,'Second Unit Cinematographer'),(591,1415987,1,'Still Photographer'),(591,1415988,11,'Gaffer'),(591,1415989,11,'Gaffer'),(591,1415990,11,'Rigging Gaffer'),(591,1415991,9,'Video Assist Operator'),(591,1415992,8,'Costume Supervisor'),(591,1415993,8,'Costume Supervisor'),(591,1415994,8,'Costume Supervisor'),(591,1415995,9,'Transportation Coordinator'),(591,1415999,3,'Location Manager'),(591,1416000,3,'Location Manager'),(591,1416001,9,'Dialect Coach'),(591,1416003,3,'Location Manager'),(591,1416005,9,'Unit Publicist'),(591,1416008,3,'Location Manager'),(591,1416013,3,'Production Accountant'),(861,584,4,'Author'),(861,598,3,'Casting'),(861,751,3,'Casting'),(861,752,3,'Casting'),(861,1760,6,'Original Music Composer'),(861,16252,4,'Screenstory'),(861,3986,3,'Executive Producer'),(861,3995,8,'Makeup Department Head'),(861,5045,4,'Screenplay'),(861,5046,4,'Screenplay'),(861,5046,3,'Producer'),(861,5241,1,'Director of Photography'),(861,10491,2,'Director'),(861,7715,5,'Editor'),(861,6877,7,'Production Design'),(861,6880,7,'Set Decoration'),(861,6881,8,'Costume Design'),(861,9025,7,'Art Direction'),(861,12882,3,'Producer'),(861,12885,5,'Editor'),(861,12886,7,'Art Direction'),(861,56967,3,'Executive Producer'),(861,1322457,8,'Costume Supervisor'),(861,1582654,4,'Screenplay'),(1911,1090,2,'Director'),(1911,1090,3,'Producer'),(1911,1760,6,'Original Music Composer'),(1911,2711,4,'Screenplay'),(1911,4782,4,'Novel'),(1911,4782,3,'Producer'),(1911,7203,7,'Production Design'),(1911,8752,5,'Editor'),(1911,13932,3,'Casting'),(1911,17629,1,'Director of Photography'),(1911,42006,3,'Producer'),(1911,18926,3,'Associate Producer'),(1911,19893,4,'Screenplay'),(1911,22061,7,'Art Direction'),(1911,56967,3,'Executive Producer'),(1911,61121,3,'Co-Producer'),(1911,1414061,3,'Executive Producer'),(415,3119,6,'Sound Designer'),(415,1262,3,'Casting'),(415,3794,4,'Author'),(415,5524,10,'Visual Effects Supervisor'),(415,5572,2,'Director'),(415,5575,4,'Author'),(415,5580,3,'Producer'),(415,5581,6,'Original Music Composer'),(415,5582,1,'Director of Photography'),(415,5583,5,'Editor'),(415,5584,5,'Editor'),(415,5585,7,'Production Design'),(415,6062,6,'Foley Editor'),(415,10949,3,'Executive Producer'),(415,10951,3,'Executive Producer'),(415,7859,9,'Special Effects Coordinator'),(415,10122,3,'Unit Production Manager'),(415,13628,8,'Costume Design'),(415,15017,8,'Makeup Department Head'),(415,20925,10,'Visual Effects'),(415,22059,3,'Casting Associate'),(415,29217,9,'Animatronic and Prosthetic Effects'),(415,35664,3,'Co-Producer'),(415,35664,2,'First Assistant Director'),(415,37429,7,'Set Decoration'),(415,46082,7,'Art Direction'),(415,49909,7,'Supervising Art Director'),(415,55246,1,'Still Photographer'),(415,113044,6,'Dialogue Editor'),(415,80846,8,'Set Costumer'),(415,81894,8,'Costume Supervisor'),(415,117404,9,'Transportation Coordinator'),(415,406204,8,'Makeup Artist'),(415,543916,7,'Painter'),(415,1076704,10,'Visual Effects Coordinator'),(415,1102816,1,'Additional Camera'),(415,1115051,3,'Production Supervisor'),(415,1115051,3,'Associate Producer'),(415,1293492,7,'Sculptor'),(415,1334779,7,'Property Master'),(415,1342654,6,'Boom Operator'),(415,1344255,6,'Sound Editor'),(415,1355529,7,'Art Department Coordinator'),(415,1371063,8,'Costume Design'),(415,1378726,9,'Dialect Coach'),(415,1379396,9,'Visual Effects Editor'),(415,1400546,7,'Construction Coordinator'),(415,1400741,8,'Key Hair Stylist'),(415,1402022,7,'Leadman'),(415,1403491,3,'Location Manager'),(415,1404235,9,'Unit Publicist'),(415,1406905,6,'Music Editor'),(415,1413136,9,'Production Controller'),(415,1413451,6,'Supervising Sound Editor'),(415,1422071,11,'Gaffer'),(415,1449899,6,'Music Supervisor'),(415,1457329,9,'Systems Administrators & Support'),(415,1463300,4,'Storyboard'),(415,1473444,6,'Assistant Sound Editor'),(415,1509356,3,'Production Coordinator'),(415,1513290,9,'Utility Stunts'),(415,1524905,9,'Set Production Assistant'),(415,1536381,8,'Hairstylist'),(415,1550284,1,'Steadicam Operator'),(415,1552027,6,'Production Sound Mixer'),(415,1553639,10,'3D Modeller'),(415,1559087,9,'Set Medic'),(415,1568652,9,'Video Assist Operator'),(415,1569802,9,'Stunts'),(415,1573115,9,'CG Supervisor'),(415,1586929,9,'Scenic Artist'),(415,1591434,9,'Digital Effects Supervisor'),(415,1602885,6,'Orchestrator'),(415,1630675,5,'Color Timer'),(415,1646234,9,'Driver'),(415,1677818,9,'Technical Supervisor'),(415,1684304,7,'Production Illustrator'),(415,1691936,7,'Set Designer'),(415,1769921,10,'Visual Effects Producer'),(415,1780708,11,'Lighting Supervisor'),(415,1832428,11,'Lighting Technician'),(415,1860639,1,'Camera Operator'),(415,1870698,9,'Transportation Captain'),(415,1885804,7,'Art Department Assistant'),(415,1885805,7,'Assistant Art Director'),(415,1885806,7,'Construction Foreman'),(415,1885807,7,'Lead Painter'),(415,1885809,1,'First Assistant Camera'),(415,1885810,1,'Key Grip'),(415,1885811,1,'Grip'),(415,1885812,8,'Set Dressing Artist'),(415,1885813,9,'Carpenter'),(415,1885814,9,'Craft Service'),(415,1885816,9,'Propmaker'),(415,1885819,9,'Second Unit'),(415,1885821,9,'Software Engineer'),(415,1885823,9,'Stand In'),(415,1885825,9,'Stunt Coordinator'),(415,1885826,5,'First Assistant Editor'),(415,1885827,11,'Best Boy Electric'),(415,1885828,11,'Electrician'),(415,1885829,11,'Rigging Grip'),(415,1885830,3,'Executive In Charge Of Production'),(415,1885831,3,'Production Accountant'),(415,1885841,10,'Digital Compositors'),(8871,339,3,'Producer'),(8871,1729,6,'Original Music Composer'),(8871,6159,2,'Director'),(8871,6159,3,'Producer'),(8871,6184,3,'Executive Producer'),(8871,6189,5,'Editor'),(8871,6190,5,'Editor'),(8871,9614,1,'Director of Photography'),(8871,12100,4,'Screenplay'),(8871,12101,4,'Screenplay'),(8871,15017,8,'Makeup Artist'),(8871,60250,7,'Conceptual Design'),(8871,406204,8,'Makeup Artist'),(8871,1217416,4,'Storyboard'),(8871,1322509,2,'Script Supervisor'),(8871,1368867,9,'Special Effects Coordinator'),(8871,1442499,8,'Hairstylist'),(8871,1447557,9,'Compositors'),(435,3687,6,'Sound Designer'),(435,4657,10,'Special Effects Supervisor'),(435,5430,6,'Original Music Composer'),(435,6046,2,'Director'),(435,6046,3,'Producer'),(435,6046,4,'Author'),(435,6047,4,'Author'),(435,6048,3,'Producer'),(435,6049,6,'Original Music Composer'),(435,6050,1,'Director of Photography'),(435,6051,5,'Editor'),(435,6052,3,'Casting'),(435,6053,7,'Set Decoration'),(435,6055,7,'Set Decoration'),(435,6057,8,'Costume Design'),(435,6060,9,'Special Effects'),(435,6061,6,'Music Editor'),(435,6062,6,'Music Editor'),(435,6063,10,'Visual Effects'),(435,6064,9,'Stunts'),(435,13192,10,'Visual Effects'),(435,6037,10,'Visual Effects Supervisor'),(435,6038,10,'Visual Effects Supervisor'),(435,9271,7,'Art Direction'),(435,14385,9,'Stunt Coordinator'),(435,12639,7,'Set Designer'),(435,15332,6,'Supervising Sound Editor'),(435,15364,3,'Executive Producer'),(435,15365,3,'Executive Producer'),(435,10820,7,'Production Design'),(435,17611,3,'Casting'),(435,17829,7,'Supervising Art Director'),(435,30034,11,'Rigging Gaffer'),(435,53017,6,'Conductor'),(435,54267,3,'Associate Producer'),(435,54267,2,'First Assistant Director'),(435,113048,9,'Sound Recordist'),(435,113089,9,'Sound Recordist'),(435,58190,3,'Co-Producer'),(435,70149,1,'Camera Operator'),(435,62560,7,'Art Direction'),(435,66513,9,'Post Production Supervisor'),(435,92302,7,'Art Direction'),(435,92359,7,'Set Designer'),(435,75703,7,'Set Designer'),(435,79185,9,'Makeup Effects'),(435,79620,9,'Set Medic'),(435,92214,7,'Construction Coordinator'),(435,91042,9,'Pilot'),(435,91054,8,'Makeup Artist'),(435,91246,9,'Driver'),(435,99665,3,'Associate Producer'),(435,139953,5,'Color Timer'),(435,235778,9,'Utility Stunts'),(435,402272,9,'Second Unit Cinematographer'),(435,548438,6,'Foley'),(435,937494,3,'Executive Producer'),(435,957495,6,'Sound Effects Editor'),(435,967252,1,'Camera Operator'),(435,1033104,3,'Casting Associate'),(435,1046600,5,'First Assistant Editor'),(435,1075261,10,'Visual Effects Supervisor'),(435,1084413,7,'Production Illustrator'),(435,1125188,9,'Executive Visual Effects Producer'),(435,1136463,9,'CG Supervisor'),(435,1155668,10,'Visual Effects Producer'),(435,1183452,1,'Still Photographer'),(435,1194069,2,'Third Assistant Director'),(435,1198658,7,'Set Designer'),(435,1198825,3,'Casting'),(435,1223327,9,'Second Unit Cinematographer'),(435,1242882,5,'First Assistant Editor'),(435,1299405,5,'Dialogue Editor'),(435,1313191,6,'Musician'),(435,1317128,8,'Makeup Artist'),(435,1321589,8,'Costume Supervisor'),(435,1322139,7,'Set Designer'),(435,1322140,7,'Art Direction'),(435,1325886,7,'Art Direction'),(435,1326399,7,'Set Dresser'),(435,1327910,8,'Costume Coordinator'),(435,1334485,6,'Sound Designer'),(435,1338147,7,'Construction Coordinator'),(435,1377220,6,'Sound Re-Recording Mixer'),(435,1384358,7,'Set Designer'),(435,1384394,9,'Transportation Coordinator'),(435,1384395,9,'Transportation Captain'),(435,1390353,6,'First Assistant Sound Editor'),(435,1391747,7,'Construction Coordinator'),(435,1391748,7,'Construction Coordinator'),(435,1391749,7,'Art Department Coordinator'),(435,1391751,7,'Set Designer'),(435,1391756,7,'Set Designer'),(435,1391759,9,'Property Master'),(435,1391760,7,'Sculptor'),(435,1391761,7,'Sculptor'),(435,1391762,7,'Assistant Art Director'),(435,1391763,9,'Property Master'),(435,1392081,6,'Sound Designer'),(435,1392083,6,'Sound Designer'),(435,1392084,6,'Supervising Sound Editor'),(435,1392085,5,'Dialogue Editor'),(435,1392088,10,'Visual Effects Supervisor'),(435,1392090,10,'Visual Effects Supervisor'),(435,1392091,10,'Visual Effects Supervisor'),(435,1392093,10,'Visual Effects Supervisor'),(435,1392094,10,'Visual Effects Supervisor'),(435,1392095,10,'Visual Effects Supervisor'),(435,1392097,10,'Visual Effects Supervisor'),(435,1392098,10,'Visual Effects Supervisor'),(435,1392099,10,'Visual Effects Producer'),(435,1392100,10,'Visual Effects Producer'),(435,1392101,10,'Visual Effects Producer'),(435,1392102,10,'Visual Effects Producer'),(435,1392103,10,'Visual Effects Producer'),(435,1392104,10,'Visual Effects Producer'),(435,1392105,9,'Stunt Coordinator'),(435,1392106,1,'Still Photographer'),(435,1392107,11,'Gaffer'),(435,1392108,3,'Local Casting'),(435,1392109,8,'Costume Supervisor'),(435,1392110,8,'Set Costumer'),(435,1392111,9,'Transportation Coordinator'),(435,1392112,2,'Script Supervisor'),(435,1392113,3,'Location Manager'),(435,1392114,3,'Location Manager'),(435,1393365,1,'Camera Operator'),(435,1393365,1,'Steadicam Operator'),(435,1399899,1,'Camera Technician'),(435,1401965,9,'Digital Effects Supervisor'),(435,1402017,8,'Hairstylist'),(435,1402032,1,'Camera Operator'),(435,1402032,1,'Steadicam Operator'),(435,1405235,6,'ADR Editor'),(435,1405806,8,'Key Makeup Artist'),(435,1405807,9,'Makeup Effects'),(435,1406106,11,'Lighting Supervisor'),(435,1412274,3,'Location Manager'),(435,1415635,11,'Rigging Gaffer'),(435,1416151,7,'Leadman'),(435,1418453,8,'Key Hair Stylist'),(435,1418454,8,'Hairstylist'),(435,1418455,8,'Hairstylist'),(435,1418459,9,'Makeup Effects'),(435,1418460,9,'Makeup Effects'),(435,1418461,9,'Sound Recordist'),(435,1418462,9,'Sound Recordist'),(435,1418464,9,'CG Supervisor'),(435,1418466,9,'CG Supervisor'),(435,1418467,9,'CG Supervisor'),(435,1418468,9,'CG Supervisor'),(435,1418470,9,'Visual Effects Editor'),(435,1418473,9,'Visual Effects Editor'),(435,1418480,9,'Visual Effects Art Director'),(435,1418481,10,'Animation Supervisor'),(435,1418483,1,'Camera Operator'),(435,1418485,1,'Camera Operator'),(435,1418486,1,'Camera Operator'),(435,1418487,5,'Digital Intermediate'),(435,1418489,9,'Unit Publicist'),(435,1418491,2,'Script Supervisor'),(435,1424533,6,'Production Sound Mixer'),(435,1432596,6,'ADR & Dubbing'),(435,1451682,10,'Visual Effects'),(435,1463300,4,'Storyboard'),(435,1472298,3,'Unit Production Manager'),(435,1486763,9,'Stand In'),(435,1547235,11,'Electrician'),(435,1549445,6,'Sound Engineer'),(435,1550566,6,'Orchestrator'),(435,1551653,9,'Post Production Assistant'),(435,1567906,10,'I/O Supervisor'),(435,1567969,7,'Painter'),(435,1569558,9,'Craft Service'),(435,1574631,7,'Art Department Assistant'),(435,1574632,7,'Construction Foreman'),(435,1574633,3,'Line Producer'),(435,1574634,7,'Set Decoration Buyer'),(435,1574635,1,'First Assistant Camera'),(435,1574636,1,'Key Grip'),(435,1574637,1,'Helicopter Camera'),(435,1574638,9,'Carpenter'),(435,1574639,9,'Loader'),(435,1574640,9,'Propmaker'),(435,1574641,9,'Scenic Artist'),(435,1574642,9,'Set Production Assistant'),(435,1574643,9,'Software Engineer'),(435,1574644,9,'Technical Supervisor'),(435,1574646,9,'Systems Administrators & Support'),(435,1574647,9,'Transportation Co-Captain'),(435,1574648,9,'Video Assist Operator'),(435,1574649,11,'Best Boy Electric'),(435,1574650,11,'Lighting Artist'),(435,1574652,11,'Lighting Technician'),(435,1574653,11,'Rigging Grip'),(435,1574655,3,'Executive In Charge Of Production'),(435,1574656,3,'Production Accountant'),(435,1574657,3,'Production Coordinator'),(435,1574658,3,'Production Manager'),(435,1574659,6,'Boom Operator'),(435,1574660,6,'Sound Mixer'),(435,1574661,10,'24 Frame Playback'),(435,1574662,10,'3D Supervisor'),(435,1574663,10,'Digital Compositors'),(435,1574664,10,'Visual Effects Coordinator'),(435,1574665,9,'Sequence Leads'),(435,1574666,9,'Digital Producer'),(435,1574667,3,'Finance'),(435,1574668,10,'Modeling'),(435,1574669,3,'Unit Manager'),(435,1593102,10,'Matchmove Supervisor'),(435,1733142,5,'Negative Cutter'),(435,1762786,7,'Assistant Property Master'),(435,1762789,1,'Camera Loader'),(435,1762793,1,'Dolly Grip'),(435,1762795,1,'Grip'),(435,1764736,8,'Key Costumer'),(435,1767007,9,'Techno Crane Operator'),(435,1767008,2,'Second Assistant Director'),(435,1767009,11,'Chief Lighting Technician'),(435,1767010,3,'Assistant Production Coordinator'),(435,1767011,3,'Casting Assistant'),(435,1767012,6,'Utility Sound'),(435,1767013,10,'3D Animator'),(435,1767014,10,'3D Artist'),(435,1767015,10,'Creature Technical Director'),(435,1767016,10,'Pre-Visualization Supervisor'),(435,1767017,10,'Roto Supervisor'),(955,122,9,'Additional Music'),(955,947,6,'Original Music Composer'),(955,500,3,'Producer'),(955,904,1,'Director of Photography'),(955,2385,4,'Story'),(955,2386,4,'Story'),(955,2486,7,'Production Design'),(955,3965,3,'Casting'),(955,7232,3,'Casting'),(955,6668,5,'Editor'),(955,5011,3,'Associate Producer'),(955,5548,7,'Set Decoration'),(955,9345,7,'Art Direction'),(955,9346,7,'Leadman'),(955,9351,6,'Music Editor'),(955,9598,9,'Stunts'),(955,9183,3,'Producer'),(955,9007,8,'Makeup Artist'),(955,9217,9,'Additional Music'),(955,11401,2,'Director'),(955,11404,3,'Executive Producer'),(955,11410,5,'Editor'),(955,14047,9,'Special Effects'),(955,11057,4,'Screenplay'),(955,14348,7,'Set Decoration'),(955,15312,4,'Original Story'),(955,15325,5,'Additional Editing'),(955,15326,3,'Casting'),(955,15327,7,'Art Direction'),(955,15328,7,'Art Direction'),(955,15329,8,'Costume Design'),(955,15330,8,'Hairstylist'),(955,15331,6,'Sound Effects Editor'),(955,15332,6,'Supervising Sound Editor'),(955,15333,9,'Special Effects Coordinator'),(955,15334,10,'Visual Effects Coordinator'),(955,15335,9,'Stunt Coordinator'),(955,19291,7,'Supervising Art Director'),(955,19535,11,'Gaffer'),(955,15901,3,'Executive In Charge Of Production'),(955,41675,3,'Casting Associate'),(955,42995,3,'Executive Producer'),(955,113043,6,'Foley Editor'),(955,63421,6,'Music Editor'),(955,65824,7,'Set Designer'),(955,75804,3,'Unit Production Manager'),(955,77730,7,'Property Master'),(955,119555,9,'Makeup Effects'),(955,567283,5,'Dialogue Editor'),(955,1128254,3,'Production Manager'),(955,1205938,6,'Sound'),(955,1229074,2,'Assistant Director'),(955,1273002,1,'Additional Photography'),(955,1319160,8,'Costume Supervisor'),(955,1323252,8,'Set Dressing Artist'),(955,1357044,4,'Storyboard'),(955,1392718,1,'Still Photographer'),(955,1393323,3,'Production Coordinator'),(955,1397846,10,'Visual Effects Supervisor'),(955,1400559,9,'Visual Effects Editor'),(955,1400566,10,'Visual Effects Producer'),(955,1401362,9,'CG Supervisor'),(955,1401593,1,'Aerial Director of Photography'),(955,1401669,7,'Construction Coordinator'),(955,1401674,7,'Sculptor'),(955,1405235,6,'ADR Supervisor'),(955,1407359,9,'Visual Effects Art Director'),(955,1407812,6,'Sound Editor'),(955,1407881,11,'Rigging Grip'),(955,1411521,6,'Sound Recordist'),(955,1412242,6,'Dolby Consultant'),(955,1412253,9,'Second Unit Cinematographer'),(955,1412741,6,'Production Sound Mixer'),(955,1412758,9,'Unit Publicist'),(955,1412990,1,'Steadicam Operator'),(955,1415453,7,'Greensman'),(955,1421687,1,'Camera Operator'),(955,1438641,6,'Sound Mixer'),(955,1442142,10,'Visual Effects'),(955,1455789,9,'Propmaker'),(955,1527916,8,'Set Costumer'),(955,1530135,10,'3D Artist'),(955,1536900,9,'Armorer'),(955,1545403,2,'Script Supervisor'),(955,1552205,6,'Assistant Sound Editor'),(955,1562244,10,'Special Effects Supervisor'),(955,1575003,5,'First Assistant Editor'),(955,1590077,7,'Production Illustrator'),(955,1597198,9,'Set Medic'),(955,1599642,9,'Driver'),(955,1600114,6,'Scoring Mixer'),(955,1635601,9,'Dialect Coach'),(955,1685017,6,'Boom Operator'),(955,1693549,3,'Production Supervisor'),(955,1701246,9,'Chef'),(955,1701247,9,'Craft Service'),(955,1724249,9,'Security'),(955,1749922,3,'Production Accountant'),(955,1751448,8,'Costume Design'),(955,1751456,7,'Art Department Assistant'),(955,1751457,7,'Art Department Coordinator'),(955,1751458,7,'Assistant Art Director'),(955,1751459,7,'Construction Foreman'),(955,1751460,7,'Painter'),(955,1751461,1,'First Assistant Camera'),(955,1751463,8,'Assistant Costume Designer'),(955,1751465,8,'Seamstress'),(955,1751466,9,'Carpenter'),(955,1751470,9,'Digital Effects Supervisor'),(955,1751472,9,'Loader'),(955,1751477,9,'Scenic Artist'),(955,1751478,9,'Set Production Assistant'),(955,1751481,9,'Stand In'),(955,1751483,9,'Transportation Coordinator'),(955,1751485,9,'Video Assist Operator'),(955,1751489,5,'Color Timer'),(955,1751491,11,'Electrician'),(955,1751493,11,'Lighting Technician'),(955,1751499,3,'Location Manager'),(955,1751500,3,'Researcher'),(955,1751507,10,'Digital Compositors'),(955,1751516,9,'Sequence Leads'),(955,1751521,3,'Unit Manager'),(2133,1729,6,'Original Music Composer'),(2133,2702,1,'Director of Photography'),(2133,2874,3,'Casting'),(2133,6581,5,'Editor'),(2133,5231,2,'Director'),(2133,5231,3,'Producer'),(2133,6877,7,'Production Design'),(2133,6881,8,'Costume Design'),(2133,6925,7,'Set Decoration'),(2133,16731,3,'Producer'),(2133,21863,4,'Novel'),(2133,21864,4,'Screenplay'),(2133,21865,3,'Producer'),(2133,21866,7,'Art Direction'),(2133,13434,7,'Art Direction'),(2133,1314881,8,'Makeup Department Head'),(1979,433,5,'Editor'),(1979,433,5,'Additional Editing'),(1979,673,3,'Producer'),(1979,2095,3,'Producer'),(1979,2122,5,'Editor'),(1979,5362,3,'Casting'),(1979,5363,3,'Casting'),(1979,7624,3,'Executive Producer'),(1979,7624,4,'Characters'),(1979,7626,3,'Producer'),(1979,10850,3,'Executive Producer'),(1979,9616,8,'Costume Design'),(1979,9039,6,'Original Music Composer'),(1979,10965,3,'Executive Producer'),(1979,11222,3,'Executive Producer'),(1979,10819,7,'Production Design'),(1979,19291,7,'Supervising Art Director'),(1979,17828,3,'Executive Producer'),(1979,18866,4,'Characters'),(1979,20400,2,'Director'),(1979,20401,4,'Screenplay'),(1979,20406,1,'Director of Photography'),(1979,11021,7,'Set Decoration'),(1979,57769,5,'Editor'),(1979,58837,4,'Screenplay'),(1979,58837,4,'Story'),(1979,11014,3,'Co-Producer'),(1979,148991,4,'Story'),(1979,223991,7,'Art Direction'),(1979,1477146,3,'Co-Producer'),(1979,1537036,3,'Associate Producer'),(1979,1652310,3,'Associate Producer'),(1250,546,3,'Casting'),(1250,6581,5,'Editor'),(1250,4767,3,'Producer'),(1250,7626,3,'Producer'),(1250,19155,6,'Original Music Composer'),(1250,7790,7,'Art Direction'),(1250,9346,9,'Property Master'),(1250,9349,6,'Sound Designer'),(1250,9349,6,'Supervising Sound Editor'),(1250,14377,3,'Casting'),(1250,12203,3,'Casting'),(1250,12922,3,'Producer'),(1250,15329,8,'Costume Design'),(1250,10819,7,'Production Design'),(1250,16837,4,'Screenplay'),(1250,16837,2,'Director'),(1250,16838,3,'Producer'),(1250,16551,8,'Makeup Artist'),(1250,31027,1,'Director of Photography'),(1250,62484,7,'Supervising Art Director'),(1250,62485,7,'Set Decoration'),(1250,97617,9,'Makeup Effects'),(1250,143917,6,'Sound Effects Editor'),(1250,548444,6,'Sound Effects Editor'),(1250,961143,8,'Hairstylist'),(1250,1072707,9,'Makeup Effects'),(1250,1077782,6,'Foley'),(1250,1110476,9,'Scenic Artist'),(1250,1324052,7,'Assistant Art Director'),(1250,1335122,6,'Sound Effects Editor'),(1250,1338152,6,'Sound Effects Editor'),(1250,1374169,6,'Foley'),(1250,1392676,7,'Sculptor'),(1250,1395022,6,'Sound Effects Editor'),(1250,1395023,6,'Sound Effects Editor'),(1250,1395255,6,'Sound Re-Recording Mixer'),(1250,1401562,6,'Sound Re-Recording Mixer'),(1250,1401639,8,'Hairstylist'),(1250,1401641,8,'Hairstylist'),(1250,1404214,5,'Dialogue Editor'),(1250,1404834,7,'Conceptual Design'),(1250,1408779,5,'Dialogue Editor'),(1250,1418283,7,'Set Designer'),(1250,1425360,9,'Makeup Effects'),(1250,1425380,9,'Scenic Artist'),(1250,1432909,6,'ADR & Dubbing'),(1250,1438649,9,'Makeup Effects'),(1250,1454520,8,'Hairstylist'),(1250,1454521,8,'Makeup Artist'),(1250,1454522,8,'Makeup Artist'),(1250,1454528,9,'Makeup Effects'),(1250,1454529,9,'Makeup Effects'),(1250,1454530,7,'Art Department Coordinator'),(1250,1454531,7,'Construction Coordinator'),(1250,1454532,7,'Construction Coordinator'),(1250,1454533,7,'Sculptor'),(1250,1454536,6,'Sound Effects Editor'),(1250,1454539,9,'Special Effects Coordinator'),(9471,1300,4,'Screenplay'),(9471,1588,3,'Producer'),(9471,69597,3,'Producer'),(9471,1999,6,'Original Music Composer'),(9471,36425,2,'Director'),(9471,10957,5,'Editor'),(9471,8523,1,'Director of Photography'),(9471,12842,3,'Producer'),(9471,21158,4,'Screenplay'),(9471,21159,4,'Screenplay'),(9471,25600,3,'Executive Producer'),(9471,36427,3,'Executive Producer'),(9471,1459789,10,'Visual Effects'),(2789,3687,6,'Sound Effects Editor'),(2789,3719,7,'Set Designer'),(2789,668,3,'Casting'),(2789,3193,6,'Sound Designer'),(2789,3961,5,'Editor'),(2789,7735,8,'Costume Design'),(2789,7236,7,'Set Designer'),(2789,13673,5,'Additional Editing'),(2789,5363,3,'Casting'),(2789,5584,5,'Editor'),(2789,6878,7,'Supervising Art Director'),(2789,9184,3,'Producer'),(2789,9185,3,'Co-Executive Producer'),(2789,9196,3,'Executive Producer'),(2789,9545,3,'Casting'),(2789,12835,3,'Producer'),(2789,14350,7,'Set Designer'),(2789,15331,6,'Sound Designer'),(2789,21070,7,'Art Direction'),(2789,42032,1,'Camera Operator'),(2789,21118,1,'Camera Operator'),(2789,21118,1,'Steadicam Operator'),(2789,13434,7,'Art Direction'),(2789,22100,1,'Director of Photography'),(2789,22135,7,'Production Design'),(2789,24959,7,'Assistant Art Director'),(2789,28239,2,'Director'),(2789,28239,4,'Writer'),(2789,28241,6,'Orchestrator'),(2789,35664,2,'First Assistant Director'),(2789,41324,8,'Costume Design'),(2789,42736,3,'Executive Producer'),(2789,112656,8,'Key Makeup Artist'),(2789,113066,6,'Boom Operator'),(2789,60714,7,'Set Decoration'),(2789,60791,3,'Executive Producer'),(2789,60946,3,'Casting Associate'),(2789,61996,8,'Makeup Artist'),(2789,63920,4,'Characters'),(2789,63921,4,'Characters'),(2789,92476,10,'VFX Supervisor'),(2789,72107,5,'Additional Editing'),(2789,74089,9,'Visual Effects Art Director'),(2789,76054,7,'Set Designer'),(2789,95842,6,'Supervising Music Editor'),(2789,122274,10,'Visual Effects Supervisor'),(2789,141483,10,'VFX Supervisor'),(2789,146352,9,'Stunt Coordinator'),(2789,158916,6,'Additional Sound Re-Recording Mixer'),(2789,172855,9,'Stunts'),(2789,214170,8,'Makeup Artist'),(2789,223991,7,'Art Direction'),(2789,230131,7,'Property Master'),(2789,406204,9,'Makeup Effects'),(2789,928588,3,'Casting Associate'),(2789,957495,6,'Sound Effects Editor'),(2789,969743,7,'Set Designer'),(2789,1206905,8,'Costume Supervisor'),(2789,1271920,9,'Special Effects Coordinator'),(2789,1311175,7,'Set Designer'),(2789,1322016,8,'Costume Supervisor'),(2789,1328139,8,'Costume Supervisor'),(2789,1333087,8,'Set Costumer'),(2789,1334782,7,'Set Designer'),(2789,1336190,7,'Art Department Coordinator'),(2789,1337123,7,'Assistant Art Director'),(2789,1339440,7,'Set Designer'),(2789,1341743,10,'VFX Supervisor'),(2789,1341850,7,'Set Designer'),(2789,1342657,6,'Sound Designer'),(2789,1352958,7,'Set Designer'),(2789,1352966,5,'Dialogue Editor'),(2789,1352966,6,'ADR Editor'),(2789,1357046,7,'Set Designer'),(2789,1368864,6,'Sound Re-Recording Mixer'),(2789,1375909,7,'Assistant Property Master'),(2789,1376889,7,'Set Designer'),(2789,1378169,6,'Sound Re-Recording Mixer'),(2789,1387544,2,'Script Supervisor'),(2789,1390364,10,'Visual Effects Producer'),(2789,1391127,10,'Visual Effects Producer'),(2789,1391694,5,'First Assistant Editor'),(2789,1391700,11,'Gaffer'),(2789,1392083,6,'Sound Designer'),(2789,1392085,5,'Dialogue Editor'),(2789,1392085,6,'ADR Editor'),(2789,1393324,10,'VFX Supervisor'),(2789,1394130,6,'Sound Re-Recording Mixer'),(2789,1394973,1,'Still Photographer'),(2789,1394983,8,'Set Costumer'),(2789,1399069,9,'Transportation Coordinator'),(2789,1399290,7,'Set Designer'),(2789,1400812,6,'ADR Supervisor'),(2789,1401305,6,'Music Editor'),(2789,1401605,8,'Hairstylist'),(2789,1404366,5,'Dialogue Editor'),(2789,1404366,6,'ADR Editor'),(2789,1405235,5,'Dialogue Editor'),(2789,1405235,6,'ADR Editor'),(2789,1406389,6,'Sound Effects Editor'),(2789,1406826,6,'Sound Effects Editor'),(2789,1407359,10,'Visual Effects Designer'),(2789,1407813,6,'Sound Designer'),(2789,1407845,9,'Unit Publicist'),(2789,1408588,11,'Best Boy Electric'),(2789,1410327,8,'Key Hair Stylist'),(2789,1410333,3,'Production Manager'),(2789,1410335,3,'Production Supervisor'),(2789,1410340,7,'Assistant Art Director'),(2789,1410345,7,'Property Master'),(2789,1410346,7,'Construction Coordinator'),(2789,1410571,6,'Sound Effects Editor'),(2789,1410573,10,'Visual Effects Producer'),(2789,1410575,9,'Visual Effects Editor'),(2789,1410580,10,'Pre-Visualization Supervisor'),(2789,1410582,1,'Camera Operator'),(2789,1410583,1,'Camera Operator'),(2789,1410586,8,'Set Costumer'),(2789,1410588,8,'Set Costumer'),(2789,1416172,10,'Lead Animator'),(2789,1417974,6,'Assistant Sound Editor'),(2789,1421681,10,'2D Supervisor'),(2789,1421749,8,'Assistant Costume Designer'),(2789,1431098,8,'Set Costumer'),(2789,1434100,5,'Assistant Editor'),(2789,1436687,9,'Stunt Coordinator'),(2789,1449159,7,'Assistant Property Master'),(2789,1463313,4,'Storyboard'),(2789,1530870,9,'Post Production Supervisor'),(2789,1531240,8,'Assistant Costume Designer'),(2789,1550186,4,'Storyboard'),(2789,1550380,1,'First Assistant Camera'),(2789,1550399,6,'Production Sound Mixer'),(2789,1551226,1,'First Assistant Camera'),(2789,1558250,5,'First Assistant Editor'),(2789,1561731,3,'Unit Production Manager'),(2789,1561731,3,'Associate Producer'),(2789,1562661,6,'Boom Operator'),(2789,1612808,7,'Art Department Assistant'),(2789,1621492,7,'Construction Foreman'),(2789,1640689,4,'Storyboard'),(2789,1644461,1,'First Assistant Camera'),(2789,1702512,8,'Set Costumer'),(2789,1713986,8,'Set Costumer'),(2789,1733132,5,'Negative Cutter'),(2789,1744856,6,'Musician'),(2789,1762832,9,'Animal Coordinator'),(2789,1771235,2,'Second Assistant Director'),(2789,1771243,3,'Unit Manager'),(2789,1771245,7,'Art Department Assistant'),(2789,1771248,7,'Art Department Assistant'),(2789,1771252,7,'Set Designer'),(2789,1771253,7,'Set Dresser'),(2789,1771254,7,'Set Dresser'),(2789,1771255,7,'Set Dresser'),(2789,1771256,7,'Set Dresser'),(2789,1771258,7,'Set Dresser'),(2789,1771259,1,'First Assistant Camera'),(2789,1771260,1,'Camera Loader'),(2789,1771261,6,'Production Sound Mixer'),(2789,1771264,8,'Assistant Costume Designer'),(2789,1771265,8,'Set Costumer'),(2789,1771266,8,'Set Costumer'),(2789,1771267,8,'Set Costumer'),(2789,1771268,8,'Set Costumer'),(2789,1771269,8,'Set Costumer'),(2789,1771270,8,'Set Costumer'),(2789,1771271,8,'Set Costumer'),(2789,1771272,8,'Set Costumer'),(2789,1771278,11,'Best Boy Electric'),(2789,1771285,1,'Key Grip'),(2789,1771287,3,'Production Coordinator'),(2789,1771288,3,'Production Accountant'),(2789,1771289,3,'Casting Assistant'),(2789,1771290,3,'Casting Assistant'),(2789,1771292,9,'Transportation Captain'),(2789,1771294,9,'Transportation Captain'),(2789,1771299,5,'Assistant Editor'),(2789,1771300,5,'Assistant Editor'),(2789,1771301,5,'Assistant Editor'),(2789,1771302,5,'Assistant Editor'),(2789,1813078,7,'Assistant Property Master'),(2789,1826925,1,'Dolly Grip'),(2789,1855372,1,'Grip'),(2789,1855373,8,'Ager/Dyer'),(2789,1855374,8,'Costume Illustrator'),(2789,1855375,8,'Tailor'),(2789,1855376,9,'Techno Crane Operator'),(2789,1855377,2,'Third Assistant Director'),(2789,1855378,3,'Assistant Production Coordinator'),(2789,1855379,10,'3D Animator'),(2789,1855380,10,'3D Artist'),(2789,1855384,10,'Matchmove Supervisor'),(7459,1113,3,'Casting'),(7459,1091,3,'Producer'),(7459,1296,3,'Executive Producer'),(7459,2953,3,'Casting'),(7459,4671,5,'Editor'),(7459,6800,1,'Director of Photography'),(7459,8528,3,'Producer'),(7459,9339,2,'Director'),(7459,9339,3,'Producer'),(7459,9339,4,'Writer'),(7459,9340,2,'Director'),(7459,9340,3,'Producer'),(7459,9340,4,'Writer'),(7459,9343,7,'Production Design'),(7459,10123,5,'Editor'),(7459,11267,3,'Producer'),(7459,11268,3,'Producer'),(7459,10903,3,'Producer'),(7459,10905,3,'Producer'),(7459,40836,3,'Line Producer'),(7459,15347,6,'Original Music Composer'),(7459,70216,4,'Author'),(7459,956953,3,'Executive Producer'),(7459,986035,3,'Executive Producer'),(7459,1451684,10,'Animation'),(7459,1463785,10,'Animation'),(1895,1,4,'Screenplay'),(1895,1,2,'Director'),(1895,1,3,'Executive Producer'),(1895,19801,3,'Producer'),(1895,491,6,'Original Music Composer'),(1895,670,5,'Editor'),(1895,6800,1,'Director of Photography'),(1895,7790,7,'Art Direction'),(1895,8410,7,'Set Decoration'),(1895,10123,5,'Editor'),(1895,12203,3,'Casting'),(1895,23651,7,'Production Design'),(1895,33193,8,'Costume Design'),(1895,1319751,8,'Costume Supervisor'),(1895,1319752,8,'Costume Supervisor'),(1894,1,2,'Director'),(1894,1,3,'Producer'),(1894,1,4,'Screenplay'),(1894,19801,3,'Producer'),(1894,491,6,'Original Music Composer'),(1894,670,5,'Editor'),(1894,6800,1,'Director of Photography'),(1894,9345,7,'Art Direction'),(1894,10197,7,'Art Direction'),(1894,10753,7,'Art Direction'),(1894,11266,2,'Assistant Director'),(1894,11270,7,'Set Decoration'),(1894,33194,3,'Casting'),(1894,23651,7,'Production Design'),(1894,33193,8,'Costume Design'),(1894,19802,4,'Screenplay'),(1894,23454,7,'Art Direction'),(1894,33195,7,'Art Direction'),(1894,1447473,10,'Animation'),(1894,1460621,10,'Visual Effects'),(585,7,3,'Executive Producer'),(585,7,4,'Screenplay'),(585,8,5,'Additional Editing'),(585,8,2,'Co-Director'),(585,7879,3,'Executive Producer'),(585,197,2,'Co-Director'),(585,2216,6,'Sound Designer'),(585,7878,3,'Producer'),(585,7880,3,'Associate Producer'),(585,7881,4,'Original Story'),(585,7881,10,'Visual Development'),(585,7882,4,'Original Story'),(585,7883,4,'Original Story'),(585,7883,10,'Visual Development'),(585,7884,4,'Screenplay'),(585,7885,6,'Original Music Composer'),(585,7886,5,'Editor'),(585,7887,9,'Supervising Technical Director'),(585,7888,7,'Production Design'),(585,7889,7,'Production Design'),(585,7890,7,'Art Direction'),(585,7891,7,'Art Direction'),(585,7892,9,'Supervising Animator'),(585,7893,9,'Supervising Animator'),(585,7894,11,'Lighting Supervisor'),(585,7896,10,'Shading'),(585,7898,8,'Set Dressing Supervisor'),(585,7901,3,'Production Supervisor'),(585,7902,3,'Casting'),(585,7903,3,'Casting'),(585,7912,5,'Editorial Manager'),(585,7918,10,'Visual Development'),(585,7918,10,'Character Designer'),(585,7925,10,'Visual Development'),(585,7927,10,'Visual Development'),(585,7929,10,'Animation'),(585,7940,7,'Art Department Manager'),(585,7942,10,'CG Painter'),(585,7943,10,'CG Painter'),(585,7943,9,'Production Artist'),(585,7944,10,'CG Painter'),(585,7945,10,'CG Painter'),(585,7945,9,'Production Artist'),(585,7946,10,'CG Painter'),(585,7947,10,'CG Painter'),(585,7948,10,'CG Painter'),(585,7949,10,'CG Painter'),(585,7950,9,'Production Artist'),(585,7951,9,'Production Artist'),(585,7952,9,'Production Artist'),(585,7953,9,'Production Artist'),(585,7954,9,'Production Artist'),(585,7955,9,'Production Artist'),(585,7956,9,'Production Artist'),(585,7957,9,'Production Artist'),(585,7958,9,'Production Artist'),(585,7960,7,'Sculptor'),(585,7961,7,'Sculptor'),(585,7962,10,'Visual Development'),(585,7963,10,'Visual Development'),(585,7964,10,'Visual Development'),(585,7965,10,'Visual Development'),(585,7966,10,'Visual Development'),(585,7967,10,'Visual Development'),(585,7968,10,'Visual Development'),(585,7969,10,'Visual Development'),(585,7970,10,'Visual Development'),(585,7971,7,'Art Department Coordinator'),(585,7972,7,'Art Department Coordinator'),(585,7973,7,'Art Department Assistant'),(585,7975,10,'Animation'),(585,7978,9,'Sequence Leads'),(585,7979,9,'Sequence Leads'),(585,7980,9,'Sequence Leads'),(585,7981,8,'Set Dressing Artist'),(585,7984,8,'Set Dressing Artist'),(585,7988,2,'Layout'),(585,7995,10,'Animation'),(585,7996,10,'Animation'),(585,7998,10,'Animation'),(585,7999,10,'Animation'),(585,8001,8,'Set Dressing Manager'),(585,8002,7,'Set Dresser'),(585,8003,8,'Set Dressing Artist'),(585,8004,8,'Set Dressing Artist'),(585,8005,8,'Set Dressing Artist'),(585,8006,8,'Set Dressing Artist'),(585,8007,8,'Set Dressing Artist'),(585,8008,8,'Set Dressing Production Assistant'),(585,8009,10,'Animation Manager'),(585,8010,10,'Animation Director'),(585,8011,10,'Animation Director'),(585,8012,10,'Animation'),(585,8013,10,'Animation'),(585,8015,10,'Animation'),(585,8017,10,'Animation'),(585,8018,10,'Animation'),(585,8019,10,'Animation'),(585,8020,10,'Animation'),(585,8021,10,'Animation'),(585,8023,10,'Animation'),(585,8024,10,'Animation'),(585,8025,10,'Animation'),(585,8026,10,'Animation'),(585,8027,10,'Animation'),(585,8028,10,'Animation'),(585,8029,10,'Animation'),(585,8030,10,'Animation'),(585,8031,10,'Animation'),(585,8033,10,'Animation'),(585,8034,10,'Animation'),(585,8035,10,'Animation'),(585,8036,10,'Animation'),(585,8037,10,'Animation'),(585,8038,10,'Animation'),(585,8039,10,'Animation'),(585,8040,10,'Animation'),(585,8041,10,'Animation'),(585,8042,10,'Animation'),(585,8043,10,'Animation'),(585,8044,10,'Animation'),(585,8045,10,'Animation'),(585,8046,10,'Animation'),(585,8047,10,'Animation'),(585,8048,10,'Animation'),(585,8049,10,'Animation'),(585,8050,10,'Animation'),(585,8051,10,'Animation'),(585,8052,10,'Animation'),(585,8053,10,'Animation'),(585,8054,10,'Animation'),(585,8055,10,'Animation'),(585,8056,10,'Animation'),(585,8057,10,'Animation'),(585,8058,10,'Fix Animator'),(585,8059,10,'Animation Department Coordinator'),(585,8061,10,'Animation Fix Coordinator'),(585,8062,10,'Animation Production Assistant'),(585,8063,9,'Second Film Editor'),(585,8064,5,'Editor'),(585,8065,5,'First Assistant Editor'),(585,8066,5,'Additional Editing'),(585,8068,5,'Assistant Editor'),(585,8072,5,'Assistant Editor'),(585,8073,5,'Assistant Editor'),(585,8074,5,'Assistant Editor'),(585,8075,5,'Additional Editorial Assistant'),(585,8076,5,'Additional Editorial Assistant'),(585,8079,5,'Editorial Coordinator'),(585,8080,5,'Editorial Production Assistant'),(585,8081,5,'Editorial Production Assistant'),(585,8082,10,'Modeling'),(585,8083,10,'Modeling'),(585,8084,10,'Modeling'),(585,8085,10,'Modeling'),(585,8086,10,'Modeling'),(585,8087,10,'Modeling'),(585,8087,10,'Shading'),(585,8088,10,'Modeling'),(585,8089,10,'Modeling'),(585,8090,10,'Modeling'),(585,8091,10,'Modeling'),(585,8092,10,'Modeling'),(585,8092,11,'Master Lighting Artist'),(585,8093,10,'Modeling'),(585,8094,3,'Production Coordinator'),(585,8095,10,'Shading'),(585,8096,10,'Shading'),(585,8097,10,'Shading'),(585,8098,10,'Shading'),(585,8099,10,'Shading'),(585,8100,10,'Shading'),(585,8101,10,'Shading'),(585,8103,11,'Lighting Manager'),(585,8104,11,'Directing Lighting Artist'),(585,8105,11,'Directing Lighting Artist'),(585,8106,11,'Master Lighting Artist'),(585,8107,11,'Master Lighting Artist'),(585,8109,11,'Lighting Artist'),(585,8110,11,'Lighting Artist'),(585,8112,3,'Production Coordinator'),(585,8113,11,'Lighting Production Assistant'),(585,8115,9,'Sequence Supervisor'),(585,8124,9,'Software Team Lead'),(585,8125,9,'Software Team Lead'),(585,8126,9,'Software Team Lead'),(585,8127,9,'Software Team Lead'),(585,8128,9,'Software Engineer'),(585,8129,9,'Software Engineer'),(585,8130,9,'Software Engineer'),(585,8131,9,'Software Engineer'),(585,8132,9,'Documentation & Support'),(585,8133,9,'Documentation & Support'),(585,8134,1,'Camera Department Manager'),(585,8135,1,'Camera Supervisor'),(585,8137,9,'Machinist'),(585,8138,1,'Camera Technician'),(585,8139,9,'Photoscience Manager'),(585,8140,9,'Department Administrator'),(585,8142,3,'Production Accountant'),(585,8147,3,'Production Office Coordinator'),(585,8148,9,'Production Office Assistant'),(585,8150,9,'Information Systems Manager'),(585,8153,9,'Post Production Supervisor'),(585,8154,5,'Editorial Services'),(585,8155,9,'Projection'),(585,8156,9,'Post Production Assistant'),(585,8157,6,'Sound Editor'),(585,8158,6,'Supervising Sound Editor'),(585,8159,6,'Sound Effects Editor'),(585,8160,6,'Foley'),(585,8163,6,'Foley'),(585,8164,6,'Foley'),(585,8165,9,'Sound Design Assistant'),(585,8166,9,'Mix Technician'),(585,8168,6,'Sound Re-Recording Mixer'),(585,8172,6,'Music Editor'),(585,8173,6,'Sound Editor'),(585,94028,3,'Finance'),(585,12890,2,'Director'),(585,12890,4,'Original Story'),(585,61419,3,'Casting'),(585,231202,10,'Animation'),(585,1043374,6,'Musician'),(585,1140576,10,'Animation'),(585,1291315,6,'Music Supervisor'),(585,1299484,10,'Visual Effects Supervisor'),(585,1357170,6,'ADR Editor'),(585,1449172,6,'Foley Editor'),(585,1458006,7,'Title Designer'),(585,1472578,3,'Co-Producer'),(585,1485788,10,'Simulation & Effects Artist'),(585,1610869,5,'Color Timer'),(585,1623532,8,'Key Hair Stylist'),(585,1623535,9,'Security'),(585,1623537,2,'Script Coordinator'),(585,1623539,3,'Production Manager'),(585,1623540,6,'Orchestrator'),(585,1623542,6,'Scoring Mixer'),(585,1623548,10,'Visual Effects'),(585,1623553,3,'Finance'),(585,1739962,5,'Negative Cutter'),(1893,1,4,'Screenplay'),(1893,1,2,'Director'),(1893,1,3,'Executive Producer'),(1893,19801,3,'Producer'),(1893,491,6,'Original Music Composer'),(1893,670,5,'Editor'),(1893,6800,1,'Director of Photography'),(1893,7790,7,'Art Direction'),(1893,11270,7,'Set Decoration'),(1893,45702,5,'Editor'),(1893,33194,3,'Casting'),(1893,23651,7,'Production Design'),(1893,33193,8,'Costume Design'),(1893,1453594,10,'Animation'),(2395,997,1,'Director of Photography'),(2395,2424,3,'Casting'),(2395,11204,3,'Executive Producer'),(2395,13839,7,'Set Designer'),(2395,19379,5,'Editor'),(2395,20674,2,'Director'),(2395,20674,3,'Producer'),(2395,20674,4,'Screenplay'),(2395,24530,4,'Author'),(2395,24531,4,'Author'),(2395,24886,2,'Director'),(2395,24886,3,'Producer'),(2395,24887,4,'Screenplay'),(2395,24888,4,'Screenplay'),(2395,24889,4,'Screenplay'),(2395,24890,6,'Original Music Composer'),(2395,47814,3,'Executive Producer'),(2395,47815,8,'Costume Design'),(2395,47816,6,'Sound Designer'),(2395,47817,6,'Sound Designer'),(2395,47818,6,'Sound Designer'),(2395,47819,6,'Sound Designer'),(2395,1371285,10,'VFX Supervisor'),(9619,598,3,'Casting'),(9619,671,6,'Supervising Sound Editor'),(9619,869,3,'Producer'),(9619,3987,5,'Editor'),(9619,5549,8,'Costume Design'),(9619,8867,7,'Set Decoration'),(9619,13410,9,'Special Effects Coordinator'),(9619,13165,6,'Sound Effects Editor'),(9619,16157,5,'Editor'),(9619,14771,9,'Stunt Coordinator'),(9619,10765,1,'Director of Photography'),(9619,10853,5,'Editor'),(9619,16614,7,'Production Design'),(9619,21370,2,'Director'),(9619,21374,3,'Casting'),(9619,21962,6,'Original Music Composer'),(9619,27095,3,'Executive Producer'),(9619,32277,3,'Associate Producer'),(9619,32277,9,'Second Unit'),(9619,44118,3,'Production Coordinator'),(9619,56053,3,'Producer'),(9619,58726,4,'Screenplay'),(9619,59564,3,'Unit Production Manager'),(9619,61097,7,'Art Direction'),(9619,92367,9,'Set Medic'),(9619,75805,9,'Post Production Supervisor'),(9619,83658,7,'Assistant Art Director'),(9619,143897,10,'Special Effects Supervisor'),(9619,579077,8,'Makeup Department Head'),(9619,936765,6,'Orchestrator'),(9619,939183,5,'First Assistant Editor'),(9619,1015492,8,'Makeup Artist'),(9619,1023289,6,'Music Editor'),(9619,1197840,9,'Stunts'),(9619,1232434,9,'Utility Stunts'),(9619,1293529,1,'Still Photographer'),(9619,1313815,8,'Set Costumer'),(9619,1335078,6,'Dialogue Editor'),(9619,1376512,7,'Property Master'),(9619,1389591,10,'Visual Effects Producer'),(9619,1392250,9,'Transportation Coordinator'),(9619,1394445,3,'Production Manager'),(9619,1395307,3,'Co-Producer'),(9619,1400342,11,'Best Boy Electric'),(9619,1400559,9,'Visual Effects Editor'),(9619,1401251,8,'Key Hair Stylist'),(9619,1409284,2,'Script Supervisor'),(9619,1411353,9,'Studio Teachers'),(9619,1412990,1,'Steadicam Operator'),(9619,1413169,6,'Scoring Mixer'),(9619,1416074,9,'Unit Publicist'),(9619,1422064,6,'Sound Designer'),(9619,1440287,9,'Picture Car Coordinator'),(9619,1531884,1,'Camera Operator'),(9619,1549635,8,'Costume Supervisor'),(9619,1550636,8,'Hairstylist'),(9619,1552176,9,'Transportation Co-Captain'),(9619,1562248,5,'Color Timer'),(9619,1564250,6,'Foley'),(9619,1566253,10,'Visual Effects Supervisor'),(9619,1573614,2,'First Assistant Director'),(9619,1614321,7,'Art Direction'),(9619,1635458,6,'Sound Mixer'),(9619,1651210,11,'Rigging Grip'),(9619,1712063,1,'Aerial Camera'),(9619,1728283,1,'Key Grip'),(9619,1735467,9,'Production Controller'),(9619,1786666,7,'Set Designer'),(9619,1800845,3,'Production Supervisor'),(9619,1803758,9,'Special Effects'),(9619,1806752,10,'Digital Compositors'),(9619,1815432,7,'Leadman'),(9619,1827985,3,'Location Manager'),(9619,1865452,7,'Art Department Coordinator'),(9619,1869313,9,'Technical Supervisor'),(9619,1886350,7,'Construction Coordinator'),(9619,1886353,7,'Greensman'),(9619,1886354,7,'Painter'),(9619,1886355,7,'Production Illustrator'),(9619,1886356,7,'Standby Painter'),(9619,1886357,1,'First Assistant Camera'),(9619,1886358,1,'Grip'),(9619,1886359,8,'Seamstress'),(9619,1886360,8,'Set Dressing Artist'),(9619,1886361,9,'Carpenter'),(9619,1886362,9,'Craft Service'),(9619,1886363,9,'Driver'),(9619,1886364,9,'Loader'),(9619,1886365,9,'Makeup Effects'),(9619,1886367,9,'Projection'),(9619,1886369,9,'Propmaker'),(9619,1886373,9,'Security'),(9619,1886375,9,'Set Production Assistant'),(9619,1886376,6,'Sound Recordist'),(9619,1886377,9,'Stand In'),(9619,1886379,9,'Transportation Captain'),(9619,1886380,9,'Video Assist Operator'),(9619,1886382,2,'Script Coordinator'),(9619,1886383,5,'Editorial Production Assistant'),(9619,1886384,11,'Electrician'),(9619,1886385,11,'Gaffer'),(9619,1886386,11,'Lighting Technician'),(9619,1886387,11,'Rigging Gaffer'),(9619,1886388,3,'Production Accountant'),(9619,1886389,6,'Boom Operator'),(9619,1886401,4,'Storyboard'),(9619,1886403,9,'Machinist'),(1593,37,6,'Original Music Composer'),(1593,539,4,'Screenplay'),(1593,3113,1,'Director of Photography'),(1593,6493,3,'Casting'),(1593,9271,7,'Art Direction'),(1593,10965,3,'Producer'),(1593,11818,7,'Art Direction'),(1593,12384,7,'Set Decoration'),(1593,15005,5,'Editor'),(1593,17825,2,'Director'),(1593,17825,3,'Producer'),(1593,17828,3,'Producer'),(1593,17829,7,'Production Design'),(1593,17830,7,'Art Direction'),(1593,17831,7,'Art Direction'),(1593,22061,7,'Supervising Art Director'),(1593,59413,4,'Screenplay'),(1593,1007395,9,'Stunt Coordinator'),(1593,1460621,10,'Visual Effects Producer'),(714,1724,2,'Director'),(714,2950,1,'Director of Photography'),(714,9856,4,'Characters'),(714,6489,6,'Original Music Composer'),(714,7204,7,'Art Direction'),(714,7732,7,'Production Design'),(714,7788,7,'Art Direction'),(714,7787,7,'Art Direction'),(714,9823,7,'Set Decoration'),(714,10714,8,'Costume Design'),(714,10496,3,'Casting'),(714,10666,3,'Producer'),(714,10705,4,'Screenplay'),(714,10706,3,'Line Producer'),(714,10750,6,'Songs'),(714,10751,5,'Editor'),(714,10752,5,'Editor'),(714,10753,7,'Art Direction'),(714,10754,7,'Art Direction'),(714,69678,3,'Producer'),(2024,491,6,'Original Music Composer'),(2024,3687,6,'Sound Designer'),(2024,3687,6,'Sound Effects Editor'),(2024,284,3,'Producer'),(2024,6046,2,'Director'),(2024,6046,3,'Executive Producer'),(2024,6048,3,'Producer'),(2024,6051,5,'Editor'),(2024,6052,3,'Casting'),(2024,6055,7,'Set Decoration'),(2024,8527,8,'Costume Design'),(2024,8676,3,'Producer'),(2024,8750,1,'Director of Photography'),(2024,13166,6,'Sound Effects Editor'),(2024,12832,4,'Screenplay'),(2024,14757,3,'Casting'),(2024,14764,6,'Sound Effects Editor'),(2024,14765,6,'Supervising Sound Editor'),(2024,14350,7,'Assistant Art Director'),(2024,15364,3,'Executive Producer'),(2024,10819,7,'Production Design'),(2024,10820,7,'Art Direction'),(2024,16618,9,'Stunt Coordinator'),(2024,42034,6,'Sound Re-Recording Mixer'),(2024,29929,9,'Makeup Effects'),(2024,11102,7,'Set Designer'),(2024,54212,3,'Executive Producer'),(2024,53645,5,'Editor'),(2024,56151,9,'Second Unit Cinematographer'),(2024,56151,3,'Co-Producer'),(2024,58135,5,'Editor'),(2024,58471,3,'Unit Production Manager'),(2024,66142,6,'Music Editor'),(2024,79253,8,'Assistant Costume Designer'),(2024,91146,6,'Orchestrator'),(2024,117206,8,'Hair Department Head'),(2024,235778,9,'Utility Stunts'),(2024,449627,9,'Video Assist Operator'),(2024,1076157,10,'Visual Effects Coordinator'),(2024,1314465,8,'Makeup Department Head'),(2024,1334482,7,'Property Master'),(2024,1335075,9,'Transportation Coordinator'),(2024,1338510,3,'Associate Producer'),(2024,1357066,1,'Camera Operator'),(2024,1378171,6,'Sound Re-Recording Mixer'),(2024,1386920,1,'Still Photographer'),(2024,1386921,8,'Set Costumer'),(2024,1391399,9,'Transportation Co-Captain'),(2024,1392081,6,'Sound Effects Editor'),(2024,1392901,6,'Sound Editor'),(2024,1392901,5,'Dialogue Editor'),(2024,1393787,7,'Art Department Coordinator'),(2024,1393787,3,'Researcher'),(2024,1393858,9,'Stunts'),(2024,1398982,9,'Unit Publicist'),(2024,1399055,9,'Propmaker'),(2024,1403432,7,'Construction Coordinator'),(2024,1404212,6,'Assistant Sound Editor'),(2024,1404217,6,'Sound Effects Editor'),(2024,1406390,6,'Sound Effects Editor'),(2024,1408779,5,'Dialogue Editor'),(2024,1418359,7,'Greensman'),(2024,1418491,2,'Script Supervisor'),(2024,1419814,1,'Camera Intern'),(2024,1423757,6,'Sound Effects Editor'),(2024,1426770,9,'Visual Effects Editor'),(2024,1429245,9,'Special Effects Coordinator'),(2024,1429246,10,'Animation Supervisor'),(2024,1429248,10,'Visual Effects Supervisor'),(2024,1433711,6,'Foley'),(2024,1438396,9,'Scenic Artist'),(2024,1459789,10,'Visual Effects'),(2024,1460749,5,'First Assistant Editor'),(2024,1463300,4,'Storyboard'),(2024,1473182,3,'Casting Associate'),(2024,1474686,3,'Associate Producer'),(2024,1530150,8,'Hairstylist'),(2024,1545540,6,'Production Sound Mixer'),(2024,1550778,1,'Steadicam Operator'),(2024,1552541,9,'Digital Effects Supervisor'),(2024,1552544,9,'Post Production Supervisor'),(2024,1552549,5,'Color Timer'),(2024,1552605,10,'Digital Compositors'),(2024,1555009,6,'Sound Editor'),(2024,1555009,6,'Sound Effects Editor'),(2024,1555010,5,'Dialogue Editor'),(2024,1557612,6,'Sound Mixer'),(2024,1564580,6,'Boom Operator'),(2024,1568649,9,'Loader'),(2024,1568654,2,'Assistant Director'),(2024,1594907,7,'Construction Foreman'),(2024,1638040,9,'Studio Teachers'),(2024,1646230,9,'Armorer'),(2024,1701759,11,'Rigging Gaffer'),(2024,1703195,8,'Costume Supervisor'),(2024,1728283,1,'Key Grip'),(2024,1746540,7,'Leadman'),(2024,1746541,7,'Location Scout'),(2024,1746542,7,'Painter'),(2024,1746543,7,'Production Illustrator'),(2024,1746544,7,'Sculptor'),(2024,1746552,1,'First Assistant Camera'),(2024,1746553,8,'Key Hair Stylist'),(2024,1746554,8,'Makeup Artist'),(2024,1746555,8,'Seamstress'),(2024,1746556,8,'Set Dressing Artist'),(2024,1746559,9,'Carpenter'),(2024,1746560,9,'Driver'),(2024,1746561,9,'Sequence Supervisor'),(2024,1746562,9,'Set Medic'),(2024,1746563,9,'Set Production Assistant'),(2024,1746572,9,'Software Engineer'),(2024,1746573,9,'Stand In'),(2024,1746575,9,'Systems Administrators & Support'),(2024,1746597,9,'Transportation Captain'),(2024,1746665,11,'Best Boy Electric'),(2024,1746666,11,'Electrician'),(2024,1746668,11,'Lighting Technician'),(2024,1746669,11,'Rigging Grip'),(2024,1746670,3,'Location Manager'),(2024,1746671,3,'Production Accountant'),(2024,1746672,3,'Production Coordinator'),(2024,1746673,3,'Production Manager'),(2024,1746674,3,'Production Supervisor'),(2024,1746675,10,'3D Animator'),(2024,1746676,10,'I/O Supervisor'),(2024,1746677,10,'Special Effects Supervisor'),(2024,1746678,10,'Visual Effects Producer'),(2024,1746679,3,'Finance'),(163,495,3,'Casting'),(163,1296,3,'Executive Producer'),(163,1884,2,'Director'),(163,1884,1,'Director of Photography'),(163,1885,4,'Author'),(163,1887,4,'Author'),(163,1888,3,'Producer'),(163,1889,6,'Original Music Composer'),(163,1889,6,'Music Supervisor'),(163,1890,7,'Production Design'),(163,1891,5,'Editor'),(163,1921,4,'Screenplay'),(163,16306,9,'Post Production Assistant'),(163,5671,8,'Costume Design'),(163,5672,7,'Supervising Art Director'),(163,6341,3,'Executive Producer'),(163,8794,7,'Art Direction'),(163,11268,3,'Line Producer'),(163,40838,3,'Production Coordinator'),(163,21707,7,'Set Decoration'),(163,23964,9,'Thanks'),(163,113041,6,'Foley'),(163,57295,3,'Executive Producer'),(163,92332,8,'Hair Department Head'),(163,92503,9,'Utility Stunts'),(163,117202,3,'Line Producer'),(163,119665,2,'Assistant Director'),(163,119665,3,'Co-Producer'),(163,139953,5,'Color Timer'),(163,142161,9,'Stunt Coordinator'),(163,1068056,7,'Assistant Art Director'),(163,1117716,4,'Creative Producer'),(163,1117840,3,'Unit Production Manager'),(163,1117840,3,'Co-Producer'),(163,1212071,3,'Casting Associate'),(163,1275495,9,'Stand In'),(163,1319166,8,'Makeup Department Head'),(163,1325234,8,'Makeup Artist'),(163,1335069,9,'Special Effects Coordinator'),(163,1335075,9,'Transportation Captain'),(163,1335127,6,'Supervising Sound Editor'),(163,1364239,7,'Art Department Assistant'),(163,1364410,6,'Sound Editor'),(163,1364411,6,'Boom Operator'),(163,1376887,7,'Set Designer'),(163,1377215,9,'Property Master'),(163,1391605,2,'Script Supervisor'),(163,1392247,1,'Still Photographer'),(163,1392909,10,'Visual Effects Supervisor'),(163,1399313,10,'Visual Effects Coordinator'),(163,1399890,9,'Transportation Co-Captain'),(163,1400347,1,'Underwater Camera'),(163,1401995,11,'Rigging Gaffer'),(163,1403479,1,'Steadicam Operator'),(163,1405241,1,'Helicopter Camera'),(163,1407823,5,'Digital Intermediate'),(163,1409825,3,'Production Supervisor'),(163,1409837,3,'Publicist'),(163,1410578,10,'Visual Effects Producer'),(163,1412260,1,'Additional Photography'),(163,1412455,6,'Sound Re-Recording Mixer'),(163,1413156,9,'Propmaker'),(163,1413224,8,'Key Hair Stylist'),(163,1414174,7,'Leadman'),(163,1415988,11,'Gaffer'),(163,1419114,9,'Dialect Coach'),(163,1471335,8,'Set Costumer'),(163,1509355,8,'Hairstylist'),(163,1536971,1,'First Assistant Camera'),(163,1538449,9,'Craft Service'),(163,1549227,11,'Rigging Grip'),(163,1555488,6,'Production Sound Mixer'),(163,1559566,7,'Location Scout'),(163,1564997,3,'Executive In Charge Of Production'),(163,1574114,7,'Painter'),(163,1574132,3,'Unit Manager'),(163,1582414,3,'Production Manager'),(163,1586881,8,'Set Dressing Supervisor'),(163,1586890,7,'Set Decoration Buyer'),(163,1607639,8,'Costume Supervisor'),(163,1607651,9,'Transportation Coordinator'),(163,1608876,9,'Carpenter'),(163,1629541,9,'Translator'),(163,1644480,3,'Researcher'),(163,1684305,7,'Sculptor'),(163,1684987,9,'Loader'),(163,1701736,1,'Grip'),(163,1720281,7,'Art Department Coordinator'),(163,1721989,9,'Post Production Supervisor'),(163,1727278,7,'Construction Coordinator'),(163,1727284,7,'Standby Painter'),(163,1727293,8,'Assistant Costume Designer'),(163,1727295,8,'Set Dressing Artist'),(163,1727296,9,'Chef'),(163,1727298,9,'Driver'),(163,1727301,9,'Picture Car Coordinator'),(163,1727304,9,'Production Controller'),(163,1727305,9,'Production Office Assistant'),(163,1727306,9,'Security'),(163,1727307,9,'Set Medic'),(163,1727308,9,'Set Production Assistant'),(163,1727309,9,'Stunts'),(163,1727312,11,'Best Boy Electric'),(163,1727313,11,'Electrician'),(163,1727315,11,'Lighting Technician'),(163,1727319,3,'Location Manager'),(163,1727321,3,'Production Accountant'),(163,1727323,6,'First Assistant Sound Editor'),(163,1727326,9,'Studio Teachers'),(787,2445,3,'Producer'),(787,376,3,'Producer'),(787,605,8,'Costume Design'),(787,908,5,'Editor'),(787,1593,3,'Casting'),(787,1594,3,'Casting'),(787,7233,7,'Production Design'),(787,5575,3,'Producer'),(787,6055,7,'Set Decoration'),(787,11699,1,'Director of Photography'),(787,11098,6,'Original Music Composer'),(787,11694,2,'Director'),(787,11092,4,'Screenplay'),(787,11695,3,'Producer'),(787,11696,3,'Producer'),(787,11697,3,'Executive Producer'),(787,11698,3,'Producer'),(787,11700,7,'Art Direction'),(787,1877402,9,'Stunts'),(2567,8387,10,'Visual Effects Producer'),(2567,149,1,'Director of Photography'),(2567,117,6,'Original Music Composer'),(2567,638,3,'Producer'),(2567,932,4,'Screenplay'),(2567,1032,2,'Director'),(2567,1032,3,'Executive Producer'),(2567,1307,3,'Executive Producer'),(2567,59839,3,'Executive Producer'),(2567,1638,6,'Sound Designer'),(2567,1638,6,'Supervising Sound Editor'),(2567,2242,3,'Casting'),(2567,2366,7,'Production Design'),(2567,3661,5,'Editor'),(2567,4187,7,'Supervising Art Director'),(2567,6997,3,'Casting'),(2567,6053,8,'Set Dressing Artist'),(2567,6193,3,'Executive Producer'),(2567,7531,2,'Assistant Director'),(2567,7531,3,'Co-Producer'),(2567,9026,7,'Set Decoration'),(2567,9027,8,'Costume Design'),(2567,13050,9,'Dialect Coach'),(2567,15022,10,'Visual Effects Supervisor'),(2567,15333,10,'Special Effects Supervisor'),(2567,16729,3,'Producer'),(2567,17829,7,'Supervising Art Director'),(2567,18125,8,'Assistant Costume Designer'),(2567,18900,7,'Assistant Art Director'),(2567,27218,3,'Producer'),(2567,27219,3,'Producer'),(2567,27220,7,'Art Direction'),(2567,30714,3,'Executive Producer'),(2567,34338,9,'Post Production Supervisor'),(2567,34340,3,'Executive Producer'),(2567,52161,6,'Music Supervisor'),(2567,41018,3,'Executive Producer'),(2567,50354,3,'Line Producer'),(2567,50355,3,'Line Producer'),(2567,66185,3,'Producer'),(2567,92376,6,'Foley'),(2567,92379,6,'Assistant Sound Editor'),(2567,92388,6,'Foley'),(2567,92389,6,'Sound Effects Editor'),(2567,92391,5,'Dialogue Editor'),(2567,92234,9,'Stunt Coordinator'),(2567,91055,3,'Unit Production Manager'),(2567,92085,8,'Set Dressing Supervisor'),(2567,91912,1,'Camera Operator'),(2567,99426,5,'Dialogue Editor'),(2567,142155,5,'Dialogue Editor'),(2567,186721,10,'Visual Effects Producer'),(2567,589970,11,'Lighting Technician'),(2567,954881,3,'Executive Producer'),(2567,961984,3,'Executive Producer'),(2567,963861,1,'Additional Camera'),(2567,1032536,10,'Visual Effects Supervisor'),(2567,1077878,5,'First Assistant Editor'),(2567,1118241,3,'Executive Producer'),(2567,1169459,10,'Visual Effects Producer'),(2567,1325235,8,'Costume Supervisor'),(2567,1328380,8,'Costume Supervisor'),(2567,1330586,8,'Makeup Department Head'),(2567,1333223,6,'Supervising Sound Editor'),(2567,1335209,9,'Visual Effects Editor'),(2567,1342654,6,'Boom Operator'),(2567,1347759,7,'Location Scout'),(2567,1357070,9,'Transportation Coordinator'),(2567,1360109,10,'Visual Effects Producer'),(2567,1378244,8,'Set Costumer'),(2567,1378745,7,'Construction Coordinator'),(2567,1386920,1,'Still Photographer'),(2567,1390522,9,'Property Master'),(2567,1391760,7,'Sculptor'),(2567,1391763,9,'Property Master'),(2567,1392113,3,'Location Manager'),(2567,1394739,7,'Art Department Coordinator'),(2567,1394967,10,'Digital Compositors'),(2567,1398132,3,'Casting Associate'),(2567,1399292,7,'Set Designer'),(2567,1400072,6,'Sound Re-Recording Mixer'),(2567,1402015,8,'Hair Department Head'),(2567,1402016,8,'Key Hair Stylist'),(2567,1402017,8,'Hairstylist'),(2567,1402018,8,'Makeup Artist'),(2567,1402019,8,'Makeup Artist'),(2567,1402020,7,'Art Department Coordinator'),(2567,1402021,7,'Art Department Coordinator'),(2567,1402022,7,'Leadman'),(2567,1402023,7,'Art Department Coordinator'),(2567,1402024,9,'Sound Recordist'),(2567,1402025,9,'Sound Recordist'),(2567,1402026,6,'ADR & Dubbing'),(2567,1402027,6,'ADR & Dubbing'),(2567,1402028,10,'Visual Effects Producer'),(2567,1402029,10,'Visual Effects Producer'),(2567,1402030,9,'Visual Effects Editor'),(2567,1402031,10,'Visual Effects Supervisor'),(2567,1402031,1,'Second Unit Director of Photography'),(2567,1402032,1,'Steadicam Operator'),(2567,1402033,9,'Video Assist Operator'),(2567,1402034,11,'Gaffer'),(2567,1402035,8,'Set Costumer'),(2567,1402036,5,'Digital Intermediate'),(2567,1402037,6,'Music Editor'),(2567,1402038,3,'Location Manager'),(2567,1402039,2,'Script Supervisor'),(2567,1402040,9,'Unit Publicist'),(2567,1402042,9,'Choreographer'),(2567,1407356,9,'Digital Effects Supervisor'),(2567,1410982,9,'Stand In'),(2567,1414289,11,'Rigging Gaffer'),(2567,1417843,9,'Picture Car Coordinator'),(2567,1444908,8,'Hairstylist'),(2567,1455789,9,'Propmaker'),(2567,1461175,1,'Camera Technician'),(2567,1466997,8,'Prosthetic Makeup Artist'),(2567,1512157,10,'Mechanical Designer'),(2567,1525552,10,'Animation Supervisor'),(2567,1531519,10,'Visual Effects Coordinator'),(2567,1532617,9,'Carpenter'),(2567,1550732,5,'First Assistant Editor'),(2567,1552027,6,'Sound Mixer'),(2567,1569561,9,'Loader'),(2567,1574652,11,'Electrician'),(2567,1574657,3,'Production Coordinator'),(2567,1582392,7,'Lead Painter'),(2567,1585900,11,'Rigging Grip'),(2567,1599617,1,'First Assistant Camera'),(2567,1599618,1,'Key Grip'),(2567,1677516,3,'Production Accountant'),(2567,1681352,9,'Craft Service'),(2567,1684368,3,'Unit Manager'),(2567,1691209,2,'Layout'),(2567,1705131,9,'Set Medic'),(2567,1739538,7,'Art Department Assistant'),(2567,1739539,7,'Greensman'),(2567,1739541,3,'Line Producer'),(2567,1739542,7,'Painter'),(2567,1739543,7,'Standby Painter'),(2567,1739544,9,'Driver'),(2567,1739545,9,'Post Production Assistant'),(2567,1739546,9,'Production Controller'),(2567,1739550,9,'Security'),(2567,1739551,9,'Set Production Assistant'),(2567,1739552,9,'Software Engineer'),(2567,1739556,11,'Best Boy Electric'),(2567,1739562,9,'Sequence Leads'),(2567,1739564,9,'Studio Teachers'),(1639,356,1,'Director of Photography'),(1639,375,6,'Sound Editor'),(1639,11079,7,'Set Decoration'),(1639,2209,2,'Director'),(1639,2209,4,'Story'),(1639,2209,3,'Producer'),(1639,2689,4,'Screenplay'),(1639,3191,3,'Casting'),(1639,4061,8,'Costume Design'),(1639,7232,3,'Casting Associate'),(1639,4699,3,'Producer'),(1639,6048,3,'Executive Producer'),(1639,8848,7,'Art Direction'),(1639,9988,3,'Associate Producer'),(1639,9989,6,'Original Music Composer'),(1639,9990,7,'Production Design'),(1639,10187,7,'Production Design'),(1639,14040,7,'Supervising Art Director'),(1639,14041,7,'Set Decoration'),(1639,12770,2,'First Assistant Director'),(1639,17219,3,'Production Supervisor'),(1639,17649,9,'Second Unit Cinematographer'),(1639,21206,4,'Characters'),(1639,18458,7,'Leadman'),(1639,20540,3,'Casting'),(1639,25453,10,'Visual Effects Supervisor'),(1639,43441,5,'Editor'),(1639,59949,3,'Producer'),(1639,64315,5,'First Assistant Editor'),(1639,92344,7,'Production Illustrator'),(1639,71245,3,'Unit Production Manager'),(1639,91916,8,'Assistant Costume Designer'),(1639,95833,6,'Production Sound Mixer'),(1639,13443,9,'Stunts'),(1639,134564,8,'Makeup Artist'),(1639,141462,4,'Screenplay'),(1639,977230,1,'Camera Intern'),(1639,1102139,3,'Production Coordinator'),(1639,1118402,9,'Special Effects Coordinator'),(1639,1316599,8,'Makeup Department Head'),(1639,1323092,8,'Costume Supervisor'),(1639,1335219,6,'Dialogue Editor'),(1639,1339468,2,'Script Supervisor'),(1639,1368865,6,'Supervising Sound Effects Editor'),(1639,1377132,1,'Steadicam Operator'),(1639,1386903,7,'Set Designer'),(1639,1389137,9,'Transportation Coordinator'),(1639,1394849,7,'Standby Painter'),(1639,1399876,1,'Still Photographer'),(1639,1400539,9,'Unit Publicist'),(1639,1403480,11,'Rigging Gaffer'),(1639,1404306,8,'Key Hair Stylist'),(1639,1405722,1,'Camera Operator'),(1639,1422058,7,'Property Master'),(1639,1478858,10,'Visual Effects Producer'),(1639,1522363,10,'Special Effects Supervisor'),(1639,1523402,8,'Hairstylist'),(1639,1538127,6,'Assistant Sound Editor'),(1639,1549441,9,'Stunt Coordinator'),(1639,1551666,6,'Orchestrator'),(1639,1555643,1,'First Assistant Camera'),(1639,1562248,5,'Color Timer'),(1639,1564160,11,'Gaffer'),(1639,1564250,6,'Foley'),(1639,1570733,7,'Greensman'),(1639,1578166,7,'Location Scout'),(1639,1593084,9,'Systems Administrators & Support'),(1639,1594907,7,'Construction Foreman'),(1639,1596729,9,'Scenic Artist'),(1639,1611806,7,'Supervising Art Director'),(1639,1617613,11,'Electrician'),(1639,1627961,1,'Camera Technician'),(1639,1633954,9,'Projection'),(1639,1657664,1,'Key Grip'),(1639,1718114,9,'Propmaker'),(1639,1725168,8,'Set Costumer'),(1639,1726558,3,'Location Manager'),(1639,1748859,9,'Post Production Supervisor'),(1639,1769448,9,'Loader'),(1639,1780203,7,'Art Department Coordinator'),(1639,1801533,3,'Production Accountant'),(1639,1881670,7,'Assistant Art Director'),(1639,1881671,7,'Construction Coordinator'),(1639,1881674,7,'Painter'),(1639,1881675,1,'Grip'),(1639,1881681,8,'Set Dressing Artist'),(1639,1881682,9,'Carpenter'),(1639,1881683,9,'Craft Service'),(1639,1881684,9,'Driver'),(1639,1881685,9,'Post Production Assistant'),(1639,1881688,9,'Sequence Supervisor'),(1639,1881689,9,'Set Medic'),(1639,1881691,6,'Sound Recordist'),(1639,1881692,9,'Stand In'),(1639,1881695,9,'Transportation Captain'),(1639,1881697,9,'Video Assist Operator'),(1639,1881698,9,'Visual Effects Editor'),(1639,1881699,11,'Best Boy Electric'),(1639,1881700,11,'Rigging Grip'),(1639,1881701,6,'Boom Operator'),(1639,1881702,10,'I/O Manager'),(1639,1881703,9,'Studio Teachers'),(1639,1881704,9,'Translator'),(1571,2711,3,'Executive Producer'),(1571,3950,2,'Director'),(1571,3964,7,'Production Design'),(1571,3965,3,'Casting'),(1571,7229,6,'Original Music Composer'),(1571,7230,5,'Editor'),(1571,7235,7,'Art Direction'),(1571,6880,7,'Set Decoration'),(1571,6923,7,'Supervising Art Director'),(1571,7670,4,'Characters'),(1571,8181,3,'Producer'),(1571,9337,8,'Hairstylist'),(1571,12070,7,'Art Direction'),(1571,12382,1,'Director of Photography'),(1571,21002,4,'Story'),(1571,18189,4,'Screenplay'),(1571,18189,4,'Story'),(1571,21003,3,'Co-Producer'),(1571,20842,3,'Executive Producer'),(1571,21004,8,'Costume Design'),(1571,32355,8,'Makeup Artist'),(1571,46082,7,'Set Designer'),(1571,113045,6,'Foley'),(1571,113090,6,'Foley'),(1571,57432,9,'Second Unit Cinematographer'),(1571,135935,9,'Property Master'),(1571,146143,9,'Stunt Coordinator'),(1571,577754,8,'Makeup Artist'),(1571,1034748,3,'Casting'),(1571,1102816,1,'Camera Operator'),(1571,1172441,7,'Set Designer'),(1571,1290687,10,'Visual Effects Supervisor'),(1571,1305602,7,'Assistant Art Director'),(1571,1323090,8,'Makeup Department Head'),(1571,1330048,8,'Costume Supervisor'),(1571,1338147,7,'Construction Coordinator'),(1571,1338976,6,'Sound Re-Recording Mixer'),(1571,1344274,9,'Transportation Coordinator'),(1571,1355531,2,'Script Supervisor'),(1571,1357049,7,'Set Designer'),(1571,1357059,5,'Dialogue Editor'),(1571,1357064,1,'Camera Operator'),(1571,1367491,9,'Property Master'),(1571,1367494,6,'Sound Designer'),(1571,1368859,7,'Set Designer'),(1571,1372085,9,'Property Master'),(1571,1377222,6,'Sound Effects Editor'),(1571,1378240,1,'Still Photographer'),(1571,1378724,6,'Music Editor'),(1571,1391390,1,'Camera Operator'),(1571,1391678,9,'Sound Recordist'),(1571,1391692,10,'Visual Effects Producer'),(1571,1392081,6,'Sound Effects Editor'),(1571,1393390,10,'Visual Effects Supervisor'),(1571,1394953,5,'Digital Intermediate'),(1571,1395029,1,'Steadicam Operator'),(1571,1395033,8,'Costume Supervisor'),(1571,1395463,1,'Camera Operator'),(1571,1399071,1,'Helicopter Camera'),(1571,1399292,7,'Set Designer'),(1571,1400014,7,'Leadman'),(1571,1400074,10,'Visual Effects Supervisor'),(1571,1401606,8,'Hairstylist'),(1571,1401687,6,'Sound Re-Recording Mixer'),(1571,1401790,10,'Visual Effects Producer'),(1571,1403415,1,'Helicopter Camera'),(1571,1404285,9,'Visual Effects Editor'),(1571,1404286,9,'Visual Effects Editor'),(1571,1404288,1,'Camera Operator'),(1571,1404722,10,'Visual Effects Producer'),(1571,1405209,10,'Visual Effects Supervisor'),(1571,1405210,10,'Visual Effects Producer'),(1571,1406106,9,'CG Supervisor'),(1571,1408301,6,'Sound Designer'),(1571,1411540,5,'Digital Intermediate'),(1571,1414497,9,'Property Master'),(1571,1416436,8,'Set Costumer'),(1571,1418393,9,'Visual Effects Editor'),(1571,1418491,2,'Script Supervisor'),(1571,1420328,3,'Location Manager'),(1571,1424149,8,'Hairstylist'),(1571,1424150,8,'Hairstylist'),(1571,1424151,8,'Makeup Department Head'),(1571,1424152,7,'Art Department Coordinator'),(1571,1424153,7,'Assistant Art Director'),(1571,1424154,7,'Set Designer'),(1571,1424155,6,'ADR & Dubbing'),(1571,1424156,5,'Dialogue Editor'),(1571,1424160,5,'Dialogue Editor'),(1571,1424167,6,'Sound Designer'),(1571,1424167,6,'Supervising Sound Editor'),(1571,1424172,10,'Animation Supervisor'),(1571,1424173,10,'Visual Effects Producer'),(1571,1424174,10,'Visual Effects Supervisor'),(1571,1424175,9,'Visual Effects Editor'),(1571,1424176,9,'Stunt Coordinator'),(1571,1424177,1,'Camera Operator'),(1571,1424178,1,'Camera Operator'),(1571,1424179,1,'Camera Operator'),(1571,1424180,9,'Second Unit Cinematographer'),(1571,1424181,8,'Set Costumer'),(1571,1424182,8,'Set Costumer'),(1571,1424183,5,'First Assistant Editor'),(1571,1424184,9,'Transportation Coordinator'),(1571,1424185,9,'Unit Publicist'),(1571,1424186,3,'Location Manager'),(1571,1451245,1,'Camera Department Manager'),(1571,1829026,9,'Stunts'),(120,123,3,'Producer'),(120,117,6,'Original Music Composer'),(120,108,4,'Screenplay'),(120,108,2,'Director'),(120,108,3,'Producer'),(120,1307,3,'Executive Producer'),(120,59839,3,'Executive Producer'),(120,1310,3,'Executive Producer'),(120,1309,3,'Executive Producer'),(120,1311,3,'Executive Producer'),(120,129,4,'Novel'),(120,126,4,'Screenplay'),(120,128,4,'Screenplay'),(120,1313,1,'Director of Photography'),(120,1314,7,'Production Design'),(120,1315,5,'Editor'),(120,1316,7,'Art Direction'),(120,1317,7,'Art Direction'),(120,1318,7,'Art Direction'),(120,1319,7,'Art Direction'),(120,1320,7,'Set Decoration'),(120,1321,7,'Set Decoration'),(120,1322,8,'Costume Design'),(120,1323,8,'Costume Design'),(120,1324,3,'Casting'),(120,1325,3,'Casting'),(120,1326,3,'Casting'),(120,61624,3,'Casting'),(120,1016176,3,'Casting'),(120,1401803,10,'3D Supervisor'),(8489,27,4,'Screenplay'),(8489,1721,5,'Editor'),(8489,547,3,'Casting'),(8489,638,4,'Screenplay'),(8489,638,2,'Director'),(8489,638,3,'Producer'),(8489,15841,5,'Editor'),(8489,948,6,'Original Music Composer'),(8489,3394,5,'Editor'),(8489,3805,3,'Producer'),(8489,3989,8,'Costume Design'),(8489,4185,1,'Director of Photography'),(8489,8680,7,'Set Decoration'),(8489,13160,11,'Gaffer'),(8489,15846,8,'Hair Department Head'),(8489,13458,9,'Stunt Coordinator'),(8489,11002,7,'Production Design'),(8489,16497,6,'Music Editor'),(8489,17785,4,'Screenplay'),(8489,17786,4,'Screenplay'),(8489,46080,3,'Producer'),(8489,55260,4,'Story'),(8489,55998,6,'Original Music Composer'),(8489,55999,3,'Producer'),(8489,57978,5,'Editor'),(8489,75804,3,'Unit Production Manager'),(8489,1333978,8,'Makeup Department Head'),(8489,1409877,6,'Music Editor'),(8489,1417407,3,'Production Supervisor'),(8489,1433743,6,'Music Editor'),(8489,1531491,3,'Production Supervisor'),(8489,1531492,9,'Post Production Supervisor'),(2048,546,3,'Casting'),(2048,2043,3,'Producer'),(2048,2122,5,'Editor'),(2048,2888,3,'Executive Producer'),(2048,3964,7,'Production Design'),(2048,7229,6,'Original Music Composer'),(2048,5362,3,'Casting'),(2048,5363,3,'Casting'),(2048,5575,4,'Screenplay'),(2048,6040,3,'Producer'),(2048,9267,3,'Executive Producer'),(2048,9268,3,'Executive Producer'),(2048,10685,3,'Producer'),(2048,14377,3,'Casting'),(2048,12382,1,'Director of Photography'),(2048,12383,7,'Art Direction'),(2048,12384,7,'Set Decoration'),(2048,13223,5,'Color Timer'),(2048,16655,6,'Foley'),(2048,21271,5,'Editor'),(2048,21085,2,'Director'),(2048,21086,4,'Screenplay'),(2048,21086,4,'Screenstory'),(2048,21087,4,'Book'),(2048,22061,7,'Art Direction'),(2048,25018,7,'Set Decoration Buyer'),(2048,27750,8,'Costume Design'),(2048,34884,3,'Unit Production Manager'),(2048,46080,3,'Executive Producer'),(2048,77206,8,'Prosthetic Supervisor'),(2048,113048,9,'Sound Recordist'),(2048,113049,6,'First Assistant Sound Editor'),(2048,113219,9,'Video Assist Operator'),(2048,56338,10,'Animation Supervisor'),(2048,66690,8,'Hairstylist'),(2048,60934,9,'Post Production Supervisor'),(2048,61108,3,'Casting Associate'),(2048,121851,1,'First Assistant Camera'),(2048,136008,6,'ADR & Dubbing'),(2048,144892,5,'Digital Intermediate'),(2048,197930,9,'Second Unit Cinematographer'),(2048,197930,9,'Stunt Coordinator'),(2048,203227,9,'Stunts'),(2048,229909,7,'Construction Coordinator'),(2048,945998,3,'Producer'),(2048,957821,8,'Makeup Department Head'),(2048,961037,5,'Editor'),(2048,1014937,9,'Additional Music'),(2048,1320977,8,'Assistant Costume Designer'),(2048,1328137,7,'Assistant Art Director'),(2048,1328165,3,'Co-Producer'),(2048,1335042,7,'Art Department Assistant'),(2048,1372884,1,'Steadicam Operator'),(2048,1378695,6,'Sound Designer'),(2048,1384367,5,'Dialogue Editor'),(2048,1390524,6,'Sound Effects Editor'),(2048,1391706,9,'Chef'),(2048,1398946,6,'Supervising Sound Editor'),(2048,1399050,7,'Lead Painter'),(2048,1399068,1,'Underwater Camera'),(2048,1399871,10,'Visual Effects Coordinator'),(2048,1401391,9,'Scenic Artist'),(2048,1401803,9,'CG Supervisor'),(2048,1402216,11,'Gaffer'),(2048,1403490,6,'Music Editor'),(2048,1404706,9,'Makeup Effects'),(2048,1407804,8,'Hair Department Head'),(2048,1416167,3,'Associate Producer'),(2048,1418010,9,'Unit Publicist'),(2048,1426781,9,'Transportation Coordinator'),(2048,1431014,9,'Property Master'),(2048,1432602,11,'Lighting Artist'),(2048,1436525,1,'Still Photographer'),(2048,1440401,8,'Key Hair Stylist'),(2048,1451682,10,'Visual Effects'),(2048,1459204,8,'Makeup Artist'),(2048,1472787,9,'CG Supervisor'),(2048,1525392,2,'Assistant Director'),(2048,1531859,7,'Art Department Coordinator'),(2048,1535305,2,'Script Supervisor'),(2048,1546584,7,'Painter'),(2048,1549288,1,'Helicopter Camera'),(2048,1550188,9,'Digital Effects Supervisor'),(2048,1552195,5,'First Assistant Editor'),(2048,1558790,7,'Location Scout'),(2048,1559030,9,'Security'),(2048,1562259,9,'Score Engineer'),(2048,1570765,9,'Stand In'),(2048,1570768,9,'Visual Effects Editor'),(2048,1577061,9,'Telecine Colorist'),(2048,1581175,4,'Storyboard'),(2048,1639412,3,'Production Manager'),(2048,1644478,11,'Electrician'),(2048,1685942,6,'Boom Operator'),(2048,1702379,3,'Producer'),(2048,1702478,7,'Conceptual Design'),(2048,1702479,7,'Construction Foreman'),(2048,1702498,7,'Leadman'),(2048,1702503,7,'Painter'),(2048,1702506,7,'Sculptor'),(2048,1702509,7,'Set Designer'),(2048,1702510,1,'Grip'),(2048,1702512,8,'Seamstress'),(2048,1702513,8,'Set Costumer'),(2048,1702514,8,'Set Dressing Artist'),(2048,1702516,9,'Carpenter'),(2048,1702521,9,'Craft Service'),(2048,1702522,9,'Driver'),(2048,1702523,9,'Loader'),(2048,1702526,9,'Post Production Assistant'),(2048,1702527,9,'Post-Production Manager'),(2048,1702529,9,'Sequence Supervisor'),(2048,1702530,9,'Set Production Assistant'),(2048,1702531,9,'Software Engineer'),(2048,1702532,9,'Special Effects Coordinator'),(2048,1702533,9,'Systems Administrators & Support'),(2048,1702535,9,'Transportation Captain'),(2048,1702536,9,'Transportation Co-Captain'),(2048,1702537,2,'Script Coordinator'),(2048,1702539,11,'Best Boy Electric'),(2048,1702547,11,'Lighting Technician'),(2048,1702548,11,'Rigging Gaffer'),(2048,1702550,11,'Rigging Grip'),(2048,1702601,3,'Location Manager'),(2048,1702602,3,'Production Accountant'),(2048,1702603,3,'Production Coordinator'),(2048,1702604,3,'Production Supervisor'),(2048,1702608,6,'Sound Mixer'),(2048,1702610,10,'3D Supervisor'),(2048,1702612,10,'Digital Compositors'),(2048,1702614,10,'I/O Supervisor'),(2048,1702616,10,'Visual Development'),(2048,1702617,10,'Visual Effects'),(2048,1702620,10,'Visual Effects Producer'),(2048,1702621,10,'Visual Effects Supervisor'),(2048,1702624,9,'Motion Capture Artist'),(2048,1702627,9,'Digital Producer'),(2048,1702628,6,'Sound'),(1495,495,3,'Casting'),(1495,474,3,'Casting'),(1495,563,5,'Editor'),(1495,578,2,'Director'),(1495,578,3,'Producer'),(1495,930,3,'Executive Producer'),(1495,930,3,'Unit Production Manager'),(1495,943,1,'Director of Photography'),(1495,946,8,'Costume Design'),(1495,944,7,'Production Design'),(1495,4406,3,'Casting'),(1495,5553,6,'Original Music Composer'),(1495,5673,7,'Supervising Art Director'),(1495,6060,10,'Special Effects Supervisor'),(1495,8673,1,'Steadicam Operator'),(1495,8674,1,'Camera Operator'),(1495,8939,8,'Makeup Designer'),(1495,10903,3,'Co-Producer'),(1495,12785,3,'Executive Producer'),(1495,40769,6,'Assistant Sound Editor'),(1495,40772,6,'Sound Mixer'),(1495,40773,6,'Boom Operator'),(1495,40796,1,'Still Photographer'),(1495,14764,6,'Sound Editor'),(1495,14765,6,'Supervising Sound Editor'),(1495,15331,6,'Sound Effects Editor'),(1495,34510,4,'Screenplay'),(1495,20507,7,'Set Decoration'),(1495,34511,3,'Executive Producer'),(1495,23453,7,'Art Direction'),(1495,34512,7,'Art Direction'),(1495,34513,7,'Art Direction'),(1495,19619,3,'Co-Producer'),(1495,22100,9,'Second Unit Cinematographer'),(1495,63421,6,'Music Supervisor'),(1495,60934,9,'Post-Production Manager'),(1495,60941,1,'First Assistant Camera'),(1495,113674,10,'Visual Effects Producer'),(1495,67201,9,'Visual Effects Editor'),(1495,92214,7,'Construction Coordinator'),(1495,117220,7,'Sculptor'),(1495,117226,7,'Property Master'),(1495,122274,10,'Visual Effects Supervisor'),(1495,582915,3,'Line Producer'),(1495,947694,3,'Co-Producer'),(1495,959332,3,'Co-Producer'),(1495,1001706,9,'Additional Music'),(1495,1085575,7,'Construction Foreman'),(1495,1087318,7,'Art Direction'),(1495,1119466,3,'Unit Manager'),(1495,1141914,11,'Rigging Grip'),(1495,1182554,8,'Hairstylist'),(1495,1212071,3,'Casting Associate'),(1495,1322137,8,'Costume Supervisor'),(1495,1323112,7,'Set Designer'),(1495,1373716,9,'CG Supervisor'),(1495,1373728,11,'Gaffer'),(1495,1374790,6,'Sound Recordist'),(1495,1389524,9,'Post Production Assistant'),(1495,1389548,2,'Script Supervisor'),(1495,1394721,9,'Sequence Supervisor'),(1495,1398083,7,'Assistant Art Director'),(1495,1400403,11,'Lighting Artist'),(1495,1403545,11,'Rigging Gaffer'),(1495,1403550,3,'Publicist'),(1495,1404205,3,'Associate Producer'),(1495,1404220,9,'Special Effects Coordinator'),(1495,1404244,1,'Aerial Director of Photography'),(1495,1405243,9,'Transportation Coordinator'),(1495,1405374,7,'Art Department Coordinator'),(1495,1408378,5,'Dialogue Editor'),(1495,1412085,7,'Art Direction'),(1495,1417821,10,'Visual Effects Coordinator'),(1495,1418322,6,'Foley Editor'),(1495,1424935,6,'ADR & Dubbing'),(1495,1457374,9,'Dialect Coach'),(1495,1463279,3,'Associate Producer'),(1495,1471199,3,'Co-Producer'),(1495,1471199,3,'Production Manager'),(1495,1475344,9,'Set Production Assistant'),(1495,1476831,3,'Line Producer'),(1495,1559186,9,'Motion Capture Artist'),(1495,1574114,7,'Painter'),(1495,1574145,4,'Storyboard'),(1495,1578650,9,'Video Assist Operator'),(1495,1579406,8,'Makeup Artist'),(1495,1583781,8,'Costume Design'),(1495,1592605,1,'Grip'),(1495,1607659,3,'Production Accountant'),(1495,1621395,7,'Production Illustrator'),(1495,1627984,9,'Stunts'),(1495,1698595,9,'Armorer'),(1495,1733726,7,'Art Department Assistant'),(1495,1739256,8,'Assistant Costume Designer'),(1495,1846280,7,'Greensman'),(1495,1846288,1,'Additional Camera'),(1495,1846738,8,'Set Costumer'),(1495,1846739,9,'Carpenter'),(1495,1846740,9,'CGI Supervisor'),(1495,1846742,9,'Driver'),(1495,1846744,9,'Loader'),(1495,1846746,9,'Mix Technician'),(1495,1846747,9,'Stand In'),(1495,1846748,9,'Stunt Coordinator'),(1495,1846749,9,'Transportation Captain'),(1495,1846750,9,'Unit Publicist'),(1495,1846751,9,'Utility Stunts'),(1495,1846755,2,'Assistant Director'),(1495,1846758,11,'Electrician'),(1495,1846759,11,'Lighting Technician'),(1495,1846762,3,'Location Manager'),(1495,1846763,3,'Production Coordinator'),(1495,1846764,3,'Production Supervisor'),(1495,1846766,10,'Digital Compositors'),(1635,2215,3,'Casting'),(1635,10816,5,'Editor'),(1635,865,2,'Director'),(1635,865,3,'Producer'),(1635,1597,6,'Sound Effects Editor'),(1635,2212,3,'Producer'),(1635,6668,5,'Editor'),(1635,10631,9,'Special Effects Coordinator'),(1635,9987,3,'Producer'),(1635,8527,8,'Costume Design'),(1635,9618,7,'Art Direction'),(1635,9622,10,'Visual Effects Supervisor'),(1635,9817,7,'Production Design'),(1635,9819,7,'Art Direction'),(1635,10118,9,'Stunt Coordinator'),(1635,13166,6,'Sound Effects Editor'),(1635,13588,7,'Set Decoration'),(1635,14764,6,'Sound Effects Editor'),(1635,15345,4,'Screenplay'),(1635,15346,4,'Screenplay'),(1635,18263,4,'Screenplay'),(1635,18263,4,'Story'),(1635,18264,6,'Original Music Composer'),(1635,18265,1,'Director of Photography'),(1635,33284,8,'Costume Supervisor'),(1635,46083,7,'Supervising Art Director'),(1635,51987,7,'Art Direction'),(1635,74766,8,'Hairstylist'),(1635,180830,9,'Stunt Coordinator'),(1635,332714,10,'Special Effects Supervisor'),(1635,548437,5,'Dialogue Editor'),(1635,548444,5,'Dialogue Editor'),(1635,555329,8,'Makeup Artist'),(1635,1049333,6,'Music Editor'),(1635,1323090,8,'Makeup Department Head'),(1635,1330856,8,'Key Costumer'),(1635,1336716,9,'CGI Supervisor'),(1635,1342656,5,'Dialogue Editor'),(1635,1342658,5,'Dialogue Editor'),(1635,1357047,7,'Set Designer'),(1635,1377293,6,'Sound Effects Editor'),(1635,1386921,8,'Key Costumer'),(1635,1392127,5,'Dialogue Editor'),(1635,1393382,6,'Sound Editor'),(1635,1400738,2,'Script Supervisor'),(1635,1400741,8,'Hairstylist'),(1635,1404212,6,'Supervising Sound Editor'),(1635,1404217,6,'Sound Effects Editor'),(1635,1405382,6,'Sound Effects Editor'),(1635,1406390,6,'Sound Effects Editor'),(1635,1437195,9,'Special Effects Coordinator'),(1635,1441250,6,'Sound Effects Editor'),(1635,1613970,6,'Music Editor'),(1635,1710762,8,'Key Costumer'),(1635,1815231,3,'Casting'),(9679,770,3,'Producer'),(9679,2444,3,'Producer'),(9679,2446,3,'Executive Producer'),(9679,2448,3,'Associate Producer'),(9679,541,5,'Editor'),(9679,547,3,'Casting'),(9679,876,3,'Executive Producer'),(9679,894,6,'Original Music Composer'),(9679,3228,4,'Screenplay'),(9679,3989,8,'Costume Design'),(9679,7233,7,'Production Design'),(9679,5132,6,'Music Supervisor'),(9679,10122,3,'Executive Producer'),(9679,10122,3,'Unit Production Manager'),(9679,10123,5,'Editor'),(9679,19290,1,'Director of Photography'),(9679,24311,5,'Editor'),(9679,28636,7,'Art Direction'),(9679,58226,3,'Executive Producer'),(9679,58227,3,'Executive Producer'),(9679,58498,2,'Director'),(9679,58499,4,'Author'),(9679,58500,3,'Executive Producer'),(9679,69045,3,'Associate Producer'),(9679,958278,7,'Set Decoration'),(9679,1106751,2,'Assistant Director'),(9679,1319825,8,'Costume Supervisor'),(9679,1332245,9,'Stunts'),(9679,1400543,3,'Production Supervisor'),(9679,1434225,2,'Script Supervisor'),(9679,1530166,9,'Executive Music Producer'),(9679,1530166,6,'Music Supervisor'),(9679,1614417,9,'Stunts'),(9679,1655275,7,'Art Direction'),(98,947,6,'Original Music Composer'),(98,578,2,'Director'),(98,578,3,'Executive Producer'),(98,929,3,'Producer'),(98,929,4,'Screenplay'),(98,930,3,'Producer'),(98,931,3,'Producer'),(98,932,4,'Screenplay'),(98,933,4,'Screenplay'),(98,943,1,'Director of Photography'),(98,945,7,'Set Decoration'),(98,946,8,'Costume Design'),(98,944,7,'Production Design'),(98,948,6,'Original Music Composer'),(98,949,3,'Casting'),(98,950,5,'Editor'),(98,951,10,'Visual Effects'),(98,2212,3,'Executive Producer'),(98,3193,6,'Sound'),(98,4710,7,'Supervising Art Director'),(98,6060,9,'Animatronic and Prosthetic Effects'),(98,7790,7,'Art Direction'),(98,8701,3,'Executive Producer'),(98,8532,9,'Post Production Supervisor'),(98,8646,7,'Art Direction'),(98,8939,8,'Makeup Artist'),(98,9161,8,'Hairstylist'),(98,9822,7,'Assistant Art Director'),(98,12785,3,'Associate Producer'),(98,13166,6,'Sound Effects Editor'),(98,14764,6,'Sound Effects Editor'),(98,54489,3,'Casting Associate'),(98,34513,7,'Supervising Art Director'),(98,17649,9,'Second Unit Cinematographer'),(98,71579,7,'Supervising Art Director'),(98,117226,9,'Property Master'),(98,548439,6,'Foley'),(98,548445,6,'Foley'),(98,569913,1,'Camera Operator'),(98,1102140,2,'Assistant Director'),(98,1185530,9,'Stunts'),(98,1290901,10,'Visual Effects Producer'),(98,1317305,8,'Makeup Artist'),(98,1319624,8,'Hairstylist'),(98,1319625,8,'Hairstylist'),(98,1332186,8,'Makeup Artist'),(98,1332515,1,'Steadicam Operator'),(98,1334490,8,'Makeup Artist'),(98,1335543,7,'Greensman'),(98,1338372,6,'Foley'),(98,1342657,6,'Sound Effects Editor'),(98,1345595,6,'Sound Re-Recording Mixer'),(98,1367493,6,'Foley'),(98,1370841,9,'Property Master'),(98,1378239,9,'Stunt Coordinator'),(98,1388921,5,'First Assistant Editor'),(98,1391571,6,'Sound Re-Recording Mixer'),(98,1392081,6,'Sound Effects Editor'),(98,1392246,1,'Camera Operator'),(98,1392629,9,'Compositors'),(98,1392901,5,'Dialogue Editor'),(98,1393364,1,'Camera Operator'),(98,1393448,1,'Still Photographer'),(98,1394130,6,'Sound Re-Recording Mixer'),(98,1394775,7,'Assistant Art Director'),(98,1404221,10,'Visual Effects Supervisor'),(98,1405246,9,'Unit Publicist'),(98,1406616,6,'ADR & Dubbing'),(98,1408672,6,'ADR & Dubbing'),(98,1408779,6,'ADR & Dubbing'),(98,1410333,3,'Location Manager'),(98,1411090,10,'Visual Effects Supervisor'),(98,1411120,3,'Location Manager'),(98,1419186,8,'Hairstylist'),(98,1425484,9,'CG Supervisor'),(98,1427823,8,'Hairstylist'),(98,1428473,7,'Property Master'),(98,1429549,5,'Color Timer'),(98,1429628,8,'Hairstylist'),(98,1454536,5,'Dialogue Editor'),(98,1456365,8,'Makeup Artist'),(98,1456366,8,'Makeup Artist'),(98,1456369,9,'Scenic Artist'),(98,1456370,9,'Scenic Artist'),(98,1456371,9,'Animatronic and Prosthetic Effects'),(98,1456373,9,'Visual Effects Editor'),(98,1456374,10,'Visual Effects Supervisor'),(98,1456375,1,'Camera Operator'),(98,1456376,1,'Camera Operator'),(98,1456378,1,'Camera Technician'),(98,1456379,3,'Casting'),(98,1456380,3,'Casting'),(98,1456381,5,'First Assistant Editor'),(98,1456383,6,'Music Editor'),(98,1456384,9,'Transportation Coordinator'),(98,1456385,3,'Location Manager'),(98,1506768,9,'Stunts'),(98,1597990,11,'Gaffer'),(98,1603859,9,'Special Effects'),(98,1604352,9,'Title Graphics'),(98,1643667,2,'Assistant Director'),(180,491,6,'Original Music Composer'),(180,2215,3,'Casting'),(180,488,2,'Director'),(180,492,1,'Director of Photography'),(180,493,5,'Editor'),(180,584,4,'Short Story'),(180,1303,7,'Production Design'),(180,2199,4,'Screenplay'),(180,2199,9,'Second Unit Cinematographer'),(180,2200,4,'Screenplay'),(180,2209,3,'Producer'),(180,2210,3,'Producer'),(180,2211,3,'Producer'),(180,2212,3,'Producer'),(180,2213,9,'Additional Music'),(180,2214,6,'Original Music Composer'),(180,2216,6,'Sound Designer'),(180,2216,6,'Sound Re-Recording Mixer'),(180,2511,9,'Projection'),(180,5011,3,'Associate Producer'),(180,5046,3,'Executive Producer'),(180,8706,7,'Set Decoration'),(180,7764,6,'Supervising Sound Editor'),(180,8166,9,'Mix Technician'),(180,8527,8,'Costume Design'),(180,8530,3,'Production Manager'),(180,9264,3,'Associate Producer'),(180,9264,2,'First Assistant Director'),(180,9891,6,'Sound Mixer'),(180,14192,8,'Makeup Designer'),(180,15335,9,'Stunt Coordinator'),(180,17215,3,'Unit Manager'),(180,10855,9,'Supervising Art Director'),(180,20406,1,'Helicopter Camera'),(180,20846,5,'First Assistant Editor'),(180,42265,3,'Production Supervisor'),(180,23972,7,'Art Direction'),(180,34526,7,'Sculptor'),(180,41082,9,'Stand In'),(180,60155,7,'Assistant Art Director'),(180,60713,3,'Casting Associate'),(180,60937,7,'Art Direction'),(180,66142,6,'Supervising Music Editor'),(180,66491,7,'Art Direction'),(180,75380,6,'Boom Operator'),(180,83071,2,'Second Assistant Director'),(180,91144,6,'Scoring Mixer'),(180,91146,6,'Orchestrator'),(180,93258,10,'Special Effects Supervisor'),(180,109994,3,'Location Manager'),(180,551903,8,'Key Makeup Artist'),(180,568338,1,'Camera Intern'),(180,572622,6,'ADR Editor'),(180,938428,9,'Set Production Assistant'),(180,964601,8,'Set Costumer'),(180,1052078,9,'Video Assist Operator'),(180,1064648,1,'Underwater Camera'),(180,1186571,10,'Visual Effects Producer'),(180,1206190,9,'Makeup Effects'),(180,1218933,3,'Unit Production Manager'),(180,1325235,8,'Key Costumer'),(180,1327842,5,'Assistant Editor'),(180,1330574,8,'Costume Coordinator'),(180,1338976,6,'Sound Re-Recording Mixer'),(180,1339432,9,'Post Production Supervisor'),(180,1341865,2,'Script Supervisor'),(180,1352958,7,'Set Designer'),(180,1357070,9,'Transportation Coordinator'),(180,1372204,7,'Painter'),(180,1376897,7,'Construction Coordinator'),(180,1378218,7,'Greensman'),(180,1378236,10,'Visual Effects Supervisor'),(180,1378753,9,'Scenic Artist'),(180,1389534,5,'Dialogue Editor'),(180,1391749,7,'Art Department Coordinator'),(180,1393456,9,'Dialect Coach'),(180,1394491,9,'Transportation Captain'),(180,1395463,1,'Camera Operator'),(180,1398972,1,'Underwater Director of Photography'),(180,1399899,1,'Aerial Camera Technician'),(180,1400547,10,'3D Artist'),(180,1400849,9,'Property Master'),(180,1400853,7,'Construction Foreman'),(180,1401105,9,'Visual Effects Editor'),(180,1406789,6,'Music Editor'),(180,1411521,9,'Sound Recordist'),(180,1412985,6,'First Assistant Sound Editor'),(180,1412990,1,'Camera Operator'),(180,1412990,1,'Steadicam Operator'),(180,1414177,6,'Sound Effects Editor'),(180,1415090,8,'Hair Designer'),(180,1429549,5,'Color Timer'),(180,1431055,10,'Visual Effects Coordinator'),(180,1435586,9,'CG Supervisor'),(180,1449172,6,'Foley Editor'),(180,1457630,7,'Production Illustrator'),(180,1462787,9,'Technical Supervisor'),(180,1463304,4,'Storyboard'),(180,1535949,8,'Assistant Costume Designer'),(180,1547040,8,'Hairstylist'),(180,1549635,8,'Costume Supervisor'),(180,1550636,8,'Key Hair Stylist'),(180,1551104,11,'Rigging Gaffer'),(180,1552531,3,'Casting Assistant'),(180,1567949,8,'Costume Illustrator'),(180,1569802,9,'Stunts'),(180,1570740,1,'Key Grip'),(180,1578204,10,'I/O Supervisor'),(180,1582654,3,'Executive Producer'),(180,1594930,9,'Special Effects Coordinator'),(180,1595461,7,'Standby Painter'),(180,1595487,11,'Rigging Grip'),(180,1619978,9,'Craft Service'),(180,1622073,7,'Art Department Assistant'),(180,1622079,7,'Location Scout'),(180,1622081,1,'First Assistant Camera'),(180,1622083,1,'Still Photographer'),(180,1622098,8,'Makeup Artist'),(180,1622099,7,'Set Dresser'),(180,1622100,9,'Driver'),(180,1622101,9,'Post Production Assistant'),(180,1622102,9,'Propmaker'),(180,1622103,9,'Security'),(180,1622104,9,'Sequence Supervisor'),(180,1622106,9,'Set Medic'),(180,1622107,9,'Software Engineer'),(180,1622108,9,'Utility Stunts'),(180,1622111,11,'Best Boy Electric'),(180,1622112,11,'Electrician'),(180,1622113,11,'Gaffer'),(180,1622114,11,'Lighting Supervisor'),(180,1622116,11,'Lighting Technician'),(180,1622119,3,'Production Accountant'),(180,1622120,3,'Production Coordinator'),(180,1622121,3,'Publicist'),(180,1622122,3,'Researcher'),(180,1622126,10,'24 Frame Playback'),(180,1622127,10,'Animation Supervisor'),(180,1622129,10,'Digital Compositors'),(180,1622130,9,'Studio Teachers'),(180,1622131,9,'Digital Producer'),(180,1622132,10,'Modeling'),(180,1685460,9,'Pilot'),(180,1691216,3,'Assistant Production Coordinator'),(180,1733142,5,'Negative Cutter'),(180,1733188,1,'Dolly Grip'),(180,1738157,10,'2D Artist'),(180,1741194,6,'Musician'),(180,1791939,1,'Camera Loader'),(180,1837365,7,'Assistant Property Master'),(180,1859697,1,'Grip'),(180,1859701,8,'Tailor'),(180,1859715,9,'In Memory Of'),(180,1859723,9,'Marine Coordinator'),(180,1859746,10,'Lead Animator'),(180,1859748,10,'Pre-Visualization Supervisor'),(672,491,6,'Original Music Composer'),(672,293,1,'Director of Photography'),(672,5331,7,'Set Decoration'),(672,5491,7,'Production Design'),(672,6875,5,'Editor'),(672,38887,9,'Utility Stunts'),(672,10965,2,'Director'),(672,10965,3,'Executive Producer'),(672,10966,4,'Novel'),(672,10967,4,'Screenplay'),(672,10968,3,'Producer'),(672,10969,3,'Casting'),(672,10710,7,'Art Direction'),(672,10971,8,'Makeup Artist'),(672,10972,6,'Sound Effects Editor'),(672,10976,9,'Stunt Coordinator'),(672,11166,6,'Conductor'),(672,11167,7,'Art Direction'),(672,10908,7,'Art Direction'),(672,10714,8,'Costume Design'),(672,11173,8,'Makeup Designer'),(672,11174,6,'Supervising Sound Editor'),(672,11175,9,'Special Effects'),(672,11176,9,'Stunts'),(672,11222,3,'Executive Producer'),(672,10788,7,'Art Direction'),(672,11296,7,'Draughtsman'),(672,11297,8,'Hair Designer'),(672,40817,6,'Sound Re-Recording Mixer'),(672,40823,6,'Foley'),(672,65614,3,'Executive Producer'),(672,11711,3,'Associate Producer'),(672,16589,9,'Second Unit Cinematographer'),(672,34513,7,'Art Direction'),(672,17599,3,'Unit Production Manager'),(672,17828,3,'Executive Producer'),(672,42267,6,'Sound Designer'),(672,26144,7,'Art Direction'),(672,34896,5,'First Assistant Editor'),(672,42178,6,'Foley Editor'),(672,58697,3,'Co-Producer'),(672,75584,9,'Set Production Assistant'),(672,1032070,9,'CG Supervisor'),(672,1081428,9,'Legal Services'),(672,1115279,1,'Aerial Camera'),(672,1117950,9,'Post Production Supervisor'),(672,1135836,10,'Creature Design'),(672,1176206,3,'Production Accountant'),(672,1211221,2,'Layout'),(672,1322147,8,'Wardrobe Supervisor'),(672,1324461,8,'Costume Supervisor'),(672,1338233,9,'Transportation Coordinator'),(672,1341743,9,'Sequence Supervisor'),(672,1355308,7,'Art Department Assistant'),(672,1373728,11,'Gaffer'),(672,1388850,7,'Assistant Art Director'),(672,1389525,7,'Art Department Coordinator'),(672,1389526,7,'Construction Coordinator'),(672,1390388,2,'Script Supervisor'),(672,1393325,9,'Digital Effects Producer'),(672,1393351,6,'Scoring Mixer'),(672,1393448,1,'Still Photographer'),(672,1394719,10,'I/O Supervisor'),(672,1395449,10,'Visual Effects Producer'),(672,1400012,7,'Set Designer'),(672,1401126,8,'Wigmaker'),(672,1401714,9,'Digital Effects Supervisor'),(672,1403634,7,'Sculptor'),(672,1404221,10,'Visual Effects Supervisor'),(672,1404861,6,'ADR Editor'),(672,1406789,6,'Supervising Music Editor'),(672,1407858,5,'Dialogue Editor'),(672,1411096,10,'Pre-Visualization Supervisor'),(672,1415975,3,'Production Coordinator'),(672,1417413,9,'Property Master'),(672,1424172,10,'Animation Supervisor'),(672,1428506,1,'Steadicam Operator'),(672,1430192,3,'Location Manager'),(672,1453613,4,'Storyboard'),(672,1471947,2,'First Assistant Director'),(672,1484191,10,'Lead Animator'),(672,1513639,10,'Special Effects Supervisor'),(672,1521831,9,'Production Controller'),(672,1535099,6,'Orchestrator'),(672,1536551,9,'Visual Effects Editor'),(672,1536594,10,'Visual Effects Coordinator'),(672,1546177,7,'Standby Painter'),(672,1550058,6,'Music Editor'),(672,1550634,3,'Researcher'),(672,1551050,10,'Visual Effects Technical Director'),(672,1553728,3,'Assistant Production Coordinator'),(672,1554045,10,'3D Artist'),(672,1570042,11,'Rigging Gaffer'),(672,1572559,9,'Driver'),(672,1576007,9,'Pilot'),(672,1578653,3,'Casting Assistant'),(672,1591554,1,'Camera Operator'),(672,1591558,8,'Hairstylist'),(672,1591576,9,'Unit Publicist'),(672,1591577,9,'Video Assist Operator'),(672,1591761,5,'Color Timer'),(672,1591770,3,'Production Manager'),(672,1591771,6,'Boom Operator'),(672,1591772,6,'Sound Mixer'),(672,1592204,3,'Line Producer'),(672,1592205,7,'Painter'),(672,1592207,1,'First Assistant Camera'),(672,1592208,1,'Key Grip'),(672,1592210,8,'Prosthetic Supervisor'),(672,1592211,9,'Loader'),(672,1592212,9,'Makeup Effects'),(672,1592215,9,'Propmaker'),(672,1592217,9,'Scenic Artist'),(672,1592219,9,'Security'),(672,1592222,9,'Special Effects Coordinator'),(672,1592226,9,'Stand In'),(672,1592227,9,'Technical Supervisor'),(672,1592228,9,'Transportation Co-Captain'),(672,1592605,11,'Best Boy Electric'),(672,1592606,11,'Electrician'),(672,1592607,11,'Lighting Technician'),(672,1592609,6,'Assistant Sound Editor'),(672,1592614,10,'Digital Compositors'),(672,1592616,3,'Finance'),(672,1592617,3,'Unit Manager'),(672,1733132,5,'Negative Cutter'),(672,1738171,8,'Tailor'),(672,1739826,2,'Third Assistant Director'),(672,1767782,3,'ADR Voice Casting'),(672,1772976,6,'Musician'),(672,1796507,9,'Stunts'),(672,1836729,7,'Assistant Property Master'),(672,1836741,2,'Second Assistant Director'),(672,1836745,6,'Additional Sound Re-Recording Mixer'),(672,1836782,1,'Dolly Grip'),(672,1836787,9,'Animal Coordinator'),(672,1836789,3,'Assistant Production Manager'),(672,1836796,10,'2D Artist'),(672,1836798,10,'3D Animator'),(672,1836800,10,'CG Animator'),(672,1836880,10,'Matchmove Supervisor'),(869,142,4,'Author'),(869,2215,3,'Casting'),(869,1226,7,'Production Design'),(869,510,2,'Director'),(869,531,6,'Original Music Composer'),(869,541,5,'Editor'),(869,553,7,'Supervising Art Director'),(869,557,8,'Costume Design'),(869,1297,3,'Producer'),(869,1301,1,'Director of Photography'),(869,2100,4,'Author'),(869,2103,4,'Author'),(869,9618,7,'Art Direction'),(869,12240,4,'Novel'),(869,13245,5,'Editor'),(869,13588,7,'Set Decoration'),(869,15017,8,'Makeup Artist'),(869,1319383,7,'Art Direction'),(869,1432957,10,'Modeling'),(869,1479807,2,'Script Supervisor'),(280,563,5,'Additional Editing'),(280,796,7,'Set Decoration'),(280,869,3,'Executive Producer'),(280,898,5,'Editor'),(280,1262,3,'Casting'),(280,2216,6,'Sound Editor'),(280,2710,2,'Director'),(280,2710,3,'Producer'),(280,2710,4,'Writer'),(280,2711,4,'Writer'),(280,2722,6,'Original Music Composer'),(280,2723,1,'Director of Photography'),(280,3976,11,'Best Boy Electric'),(280,3983,3,'Co-Producer'),(280,3984,3,'Co-Producer'),(280,3985,5,'Editor'),(280,3986,3,'Executive Producer'),(280,3987,5,'Editor'),(280,3988,7,'Art Direction'),(280,3989,8,'Costume Design'),(280,3990,8,'Makeup Artist'),(280,3991,6,'Boom Operator'),(280,3992,6,'Sound Editor'),(280,3993,10,'Visual Effects'),(280,3995,8,'Makeup Artist'),(280,3996,6,'Sound Designer'),(280,8090,10,'Animation'),(280,9990,7,'Production Design'),(280,13458,9,'Stunt Coordinator'),(280,14657,6,'Foley'),(280,22059,3,'Casting Associate'),(280,23352,8,'Makeup Artist'),(280,25014,3,'Casting'),(280,30148,10,'Visual Effects Coordinator'),(280,32487,8,'Hairstylist'),(280,57347,2,'Assistant Director'),(280,60261,9,'Makeup Effects'),(280,61838,9,'Stunts'),(280,65238,1,'Camera Operator'),(280,121347,2,'Script Supervisor'),(280,161787,9,'Stunts'),(280,554533,9,'Cableman'),(280,1026322,1,'Camera Operator'),(280,1086439,2,'Assistant Director'),(280,1236036,2,'Assistant Director'),(280,1321587,8,'Costume Supervisor'),(280,1339468,2,'Script Supervisor'),(280,1394560,3,'Casting'),(280,1395269,9,'Visual Effects Design Consultant'),(280,1401105,9,'Visual Effects Editor'),(280,1408722,6,'Music Editor'),(280,1411166,8,'Key Hair Stylist'),(280,1415465,6,'Sound Effects Editor'),(280,1435597,6,'Sound'),(280,1512019,9,'Post Production Supervisor'),(280,1549652,6,'Music Editor'),(280,1572080,6,'Scoring Mixer'),(280,1644820,9,'Picture Car Coordinator'),(4982,2952,3,'Casting'),(4982,339,3,'Producer'),(4982,578,2,'Director'),(4982,578,3,'Producer'),(4982,930,3,'Executive Producer'),(4982,946,8,'Costume Design'),(4982,944,7,'Production Design'),(4982,950,5,'Editor'),(4982,2260,4,'Screenplay'),(4982,2260,3,'Executive Producer'),(4982,5286,3,'Co-Producer'),(4982,6191,7,'Set Decoration'),(4982,7163,3,'Executive Producer'),(4982,10688,1,'Director of Photography'),(4982,12258,7,'Set Decoration'),(4982,13166,6,'Sound Effects Editor'),(4982,14764,6,'Sound Effects Editor'),(4982,14765,6,'Supervising Sound Editor'),(4982,27040,7,'Art Direction'),(4982,34542,4,'Writer'),(4982,40374,3,'Executive Producer'),(4982,40375,3,'Executive Producer'),(4982,63421,6,'Original Music Composer'),(4982,60858,2,'Assistant Director'),(4982,65605,9,'Thanks'),(4982,107375,9,'Thanks'),(4982,206398,9,'Utility Stunts'),(4982,548437,5,'Dialogue Editor'),(4982,957361,1,'Camera Operator'),(4982,983118,1,'Steadicam Operator'),(4982,983118,1,'Camera Operator'),(4982,1017296,5,'First Assistant Editor'),(4982,1049333,6,'Music Editor'),(4982,1074163,9,'Stunt Coordinator'),(4982,1216495,6,'Additional Soundtrack'),(4982,1333607,8,'Set Costumer'),(4982,1342657,6,'Sound Effects Editor'),(4982,1342658,5,'Dialogue Editor'),(4982,1353528,8,'Makeup Artist'),(4982,1378068,8,'Makeup Artist'),(4982,1391571,6,'Sound Re-Recording Mixer'),(4982,1399141,6,'Sound Re-Recording Mixer'),(4982,1399484,3,'Production Coordinator'),(4982,1404205,9,'Post Production Supervisor'),(4982,1404212,6,'Supervising Sound Editor'),(4982,1404217,6,'Sound Effects Editor'),(4982,1405246,9,'Unit Publicist'),(4982,1406390,6,'Sound Effects Editor'),(4982,1410208,8,'Hairstylist'),(4982,1414488,8,'Hair Department Head'),(4982,1464541,2,'Script Supervisor'),(4982,1473182,3,'Casting Associate'),(4982,1530166,6,'Music Supervisor'),(4982,1537446,1,'Still Photographer'),(4982,1551041,6,'Production Sound Mixer'),(4982,1552549,5,'Color Timer'),(4982,1565211,6,'Boom Operator'),(4982,1565212,7,'Art Department Coordinator'),(4982,1579312,9,'Stunts'),(4982,1606370,1,'Grip'),(9268,37,6,'Original Music Composer'),(9268,373,6,'Sound Effects Editor'),(9268,375,6,'Supervising Sound Editor'),(9268,897,3,'Casting'),(9268,908,5,'Editor'),(9268,2723,1,'Director of Photography'),(9268,3995,8,'Makeup Department Head'),(9268,4715,6,'Sound Effects Editor'),(9268,7765,4,'Screenplay'),(9268,7765,4,'Writer'),(9268,8848,7,'Art Direction'),(9268,10187,7,'Production Design'),(9268,11413,7,'Set Decoration'),(9268,11476,8,'Costume Design'),(9268,10764,3,'Producer'),(9268,12050,3,'Producer'),(9268,26713,2,'Director'),(9268,26713,3,'Executive Producer'),(9268,13931,9,'Second Unit Cinematographer'),(9268,15847,9,'Special Effects Coordinator'),(9268,13458,9,'Stunt Coordinator'),(9268,17630,3,'Executive Producer'),(9268,21393,1,'Camera Operator'),(9268,42265,3,'Location Manager'),(9268,36428,1,'Camera Operator'),(9268,54272,10,'Visual Effects Supervisor'),(9268,57074,4,'Screenplay'),(9268,57074,4,'Writer'),(9268,57076,3,'Co-Producer'),(9268,57077,3,'Associate Producer'),(9268,57078,3,'Co-Producer'),(9268,65238,9,'Second Unit Cinematographer'),(9268,76708,7,'Assistant Art Director'),(9268,141184,9,'Visual Effects Art Director'),(9268,164579,4,'Writer'),(9268,555085,1,'Still Photographer'),(9268,970529,10,'Visual Effects Producer'),(9268,1102820,1,'Camera Operator'),(9268,1341138,6,'Sound Re-Recording Mixer'),(9268,1341808,6,'Sound Re-Recording Mixer'),(9268,1342639,6,'Sound Effects Editor'),(9268,1368865,6,'Supervising Sound Editor'),(9268,1377125,5,'Dialogue Editor'),(9268,1378174,1,'Camera Operator'),(9268,1388879,6,'Music Editor'),(9268,1392127,5,'Dialogue Editor'),(9268,1392129,5,'Dialogue Editor'),(9268,1392131,6,'Sound Effects Editor'),(9268,1392132,6,'Sound Effects Editor'),(9268,1394306,6,'Music Editor'),(9268,1401105,9,'Visual Effects Editor'),(9268,1401258,6,'ADR & Dubbing'),(9268,1401758,7,'Construction Coordinator'),(9268,1403550,3,'Publicist'),(9268,1405814,6,'ADR & Dubbing'),(9268,1406922,10,'Visual Effects Supervisor'),(9268,1411166,8,'Hairstylist'),(9268,1412201,10,'Visual Effects Supervisor'),(9268,1412224,8,'Makeup Artist'),(9268,1415328,8,'Hairstylist'),(9268,1423987,8,'Makeup Artist'),(9268,1424782,6,'Sound Effects Editor'),(9268,1428852,6,'Sound Effects Editor'),(9268,1431996,8,'Makeup Artist'),(9268,1434203,9,'Property Master'),(9268,1434205,9,'Property Master'),(9268,1434207,7,'Greensman'),(9268,1434210,6,'ADR & Dubbing'),(9268,1434214,9,'Visual Effects Editor'),(9268,1434215,10,'Visual Effects Producer'),(9268,1434220,10,'Visual Effects Supervisor'),(9268,1434221,8,'Costume Supervisor'),(9268,1434223,9,'Transportation Coordinator'),(9268,1434224,2,'Script Supervisor'),(9268,1434225,2,'Script Supervisor'),(9268,1460602,10,'VFX Artist'),(9268,1535952,3,'Casting Associate'),(2059,2952,3,'Casting'),(2059,770,3,'Producer'),(2059,2444,3,'Executive Producer'),(2059,2446,3,'Executive Producer'),(2059,2448,3,'Associate Producer'),(2059,15841,5,'Editor'),(2059,894,6,'Original Music Composer'),(2059,903,7,'Art Direction'),(2059,7240,6,'Boom Operator'),(2059,5132,6,'Music Supervisor'),(2059,10949,3,'Associate Producer'),(2059,10951,3,'Associate Producer'),(2059,8750,1,'Director of Photography'),(2059,10970,8,'Costume Design'),(2059,10122,3,'Executive Producer'),(2059,11375,7,'Set Decoration'),(2059,14381,8,'Makeup Artist'),(2059,12619,8,'Wigmaker'),(2059,12962,2,'Director'),(2059,12962,3,'Producer'),(2059,17400,7,'Production Design'),(2059,21155,4,'Original Story'),(2059,21155,4,'Screenplay'),(2059,21156,4,'Original Story'),(2059,21156,3,'Executive Producer'),(2059,21157,4,'Original Story'),(2059,21157,3,'Executive Producer'),(2059,21158,4,'Screenplay'),(2059,21159,4,'Screenplay'),(2059,34526,7,'Sculptor'),(2059,35666,3,'Executive Producer'),(2059,58363,6,'Sound Editor'),(2059,38414,7,'Assistant Art Director'),(2059,46082,7,'Supervising Art Director'),(2059,55227,6,'Sound Mixer'),(2059,56854,9,'Additional Music'),(2059,65190,9,'Second Unit Cinematographer'),(2059,91123,1,'Helicopter Camera'),(2059,237921,9,'Stunts'),(2059,1015965,8,'Makeup Designer'),(2059,1104780,7,'Supervising Art Director'),(2059,1113479,3,'Production Supervisor'),(2059,1264811,6,'Music Editor'),(2059,1335881,10,'Visual Effects Coordinator'),(2059,1339440,7,'Set Designer'),(2059,1340132,9,'Executive Visual Effects Producer'),(2059,1341779,7,'Art Department Coordinator'),(2059,1357059,5,'Dialogue Editor'),(2059,1375203,2,'Script Coordinator'),(2059,1377223,10,'Visual Effects Supervisor'),(2059,1378168,6,'Supervising Sound Editor'),(2059,1386923,2,'Script Supervisor'),(2059,1391597,8,'Costume Supervisor'),(2059,1393456,9,'Dialect Coach'),(2059,1393568,1,'Still Photographer'),(2059,1395261,10,'Visual Effects Producer'),(2059,1396364,3,'Unit Production Manager'),(2059,1400546,7,'Construction Coordinator'),(2059,1400736,9,'Transportation Coordinator'),(2059,1401263,1,'Camera Operator'),(2059,1401995,11,'Electrician'),(2059,1402036,5,'Digital Intermediate'),(2059,1406235,9,'Makeup Effects'),(2059,1412267,7,'Location Scout'),(2059,1414994,9,'Property Master'),(2059,1415328,8,'Key Hair Stylist'),(2059,1418464,9,'CG Supervisor'),(2059,1420973,9,'Utility Stunts'),(2059,1424186,3,'Location Manager'),(2059,1427379,11,'Best Boy Electric'),(2059,1427838,1,'Steadicam Operator'),(2059,1434261,8,'Assistant Costume Designer'),(2059,1446688,11,'Gaffer'),(2059,1448601,10,'Animation'),(2059,1457630,7,'Production Illustrator'),(2059,1462701,9,'Video Assist Operator'),(2059,1463706,1,'Camera Technician'),(2059,1484864,3,'Casting Associate'),(2059,1512022,3,'Executive In Charge Of Production'),(2059,1537850,9,'Special Effects Coordinator'),(2059,1550723,9,'Set Medic'),(2059,1550818,9,'Stand In'),(2059,1550827,8,'Hairstylist'),(2059,1551666,6,'Orchestrator'),(2059,1551708,6,'Sound Effects Editor'),(2059,1553619,8,'Set Costumer'),(2059,1554356,5,'Color Timer'),(2059,1558197,7,'Standby Painter'),(2059,1564250,6,'Foley'),(2059,1568648,9,'Transportation Captain'),(2059,1570752,9,'Picture Car Coordinator'),(2059,1570754,9,'Post Production Supervisor'),(2059,1578204,10,'I/O Supervisor'),(2059,1582392,7,'Lead Painter'),(2059,1597190,9,'Armorer'),(2059,1619969,7,'Art Department Assistant'),(2059,1631601,8,'Hair Department Head'),(2059,1640575,9,'Stunt Coordinator'),(2059,1643717,7,'Leadman'),(2059,1647993,2,'Assistant Director'),(2059,1648168,9,'Driver'),(2059,1691192,7,'Greensman'),(2059,1691209,2,'Layout'),(2059,1701690,9,'Unit Publicist'),(2059,1711199,9,'Carpenter'),(2059,1728228,5,'Assistant Editor'),(2059,1728279,7,'Construction Foreman'),(2059,1728281,7,'Painter'),(2059,1728282,1,'First Assistant Camera'),(2059,1728283,1,'Grip'),(2059,1728287,8,'Set Dressing Artist'),(2059,1728288,9,'Craft Service'),(2059,1728289,9,'Loader'),(2059,1728290,9,'Post Production Assistant'),(2059,1728291,9,'Production Controller'),(2059,1728292,9,'Propmaker'),(2059,1728293,9,'Set Production Assistant'),(2059,1728295,9,'Transportation Co-Captain'),(2059,1728300,11,'Lighting Technician'),(2059,1728301,11,'Rigging Grip'),(2059,1728305,3,'Production Accountant'),(2059,1728306,3,'Production Coordinator'),(2059,1728312,6,'First Assistant Sound Editor'),(2059,1728322,10,'3D Supervisor'),(2059,1728325,4,'Storyboard'),(2486,541,5,'Editor'),(2486,2043,3,'Producer'),(2486,3311,3,'Casting'),(2486,4946,4,'Screenplay'),(2486,6040,3,'Producer'),(2486,6044,3,'Casting'),(2486,6209,8,'Costume Design'),(2486,7203,7,'Production Design'),(2486,9001,5,'Editor'),(2486,9152,6,'Original Music Composer'),(2486,10123,5,'Editor'),(2486,10123,3,'Co-Producer'),(2486,15024,9,'Stunts Coordinator'),(2486,22061,7,'Art Direction'),(2486,22100,1,'Director of Photography'),(2486,25453,2,'Director'),(2486,25454,4,'Novel'),(2486,25455,3,'Executive Producer'),(2486,25456,3,'Executive Producer'),(2486,25457,3,'Co-Producer'),(2486,25458,10,'Visual Effects Supervisor'),(2486,25459,10,'Visual Effects Supervisor'),(2486,25460,9,'Stunts Coordinator'),(2486,113194,9,'Stunts'),(2486,406204,8,'Makeup Artist'),(2486,1007395,9,'Stunt Coordinator'),(9946,1097,3,'Casting'),(9946,4500,6,'Original Music Composer'),(9946,3193,6,'Sound Effects Editor'),(9946,3995,8,'Makeup Department Head'),(9946,9993,9,'Post Production Supervisor'),(9946,11410,5,'Editor'),(9946,14193,10,'Special Effects Supervisor'),(9946,12237,7,'Art Direction'),(9946,13179,6,'Sound Designer'),(9946,15219,3,'Executive Producer'),(9946,14764,6,'Sound Effects Editor'),(9946,14764,6,'Sound Editor'),(9946,13457,9,'Special Effects Coordinator'),(9946,21701,7,'Production Illustrator'),(9946,24959,7,'Set Designer'),(9946,35664,2,'First Assistant Director'),(9946,37710,2,'Director'),(9946,37710,1,'Director of Photography'),(9946,41587,3,'Producer'),(9946,49909,7,'Production Design'),(9946,54732,7,'Location Scout'),(9946,55952,3,'Executive In Charge Of Production'),(9946,113089,1,'First Assistant Camera'),(9946,57532,3,'Co-Producer'),(9946,57532,4,'Writer'),(9946,57614,3,'Producer'),(9946,58846,3,'Executive Producer'),(9946,60261,10,'Creature Design'),(9946,60528,3,'Production Coordinator'),(9946,60706,5,'Editor'),(9946,65711,7,'Set Decoration'),(9946,72964,3,'Production Manager'),(9946,87371,3,'Production Accountant'),(9946,91937,3,'Production Supervisor'),(9946,548439,6,'Foley'),(9946,548445,6,'Foley'),(9946,935503,7,'Set Designer'),(9946,936841,7,'Set Designer'),(9946,958691,7,'Set Designer'),(9946,1009842,1,'Additional Camera'),(9946,1031810,6,'Sound Effects Editor'),(9946,1171228,9,'Set Medic'),(9946,1186326,3,'Co-Producer'),(9946,1186326,3,'Unit Production Manager'),(9946,1318663,8,'Costume Design'),(9946,1321374,8,'Costume Supervisor'),(9946,1333220,9,'Property Master'),(9946,1334778,7,'Construction Coordinator'),(9946,1346268,11,'Best Boy Electric'),(9946,1357062,9,'Special Effects Coordinator'),(9946,1357070,9,'Transportation Coordinator'),(9946,1377131,1,'Steadicam Operator'),(9946,1377223,9,'Digital Effects Supervisor'),(9946,1378752,7,'Art Department Coordinator'),(9946,1378825,7,'Assistant Art Director'),(9946,1390353,6,'First Assistant Sound Editor'),(9946,1390516,7,'Sculptor'),(9946,1390522,9,'Property Master'),(9946,1390539,2,'Script Supervisor'),(9946,1391566,7,'Set Designer'),(9946,1391697,9,'Stunt Coordinator'),(9946,1392095,9,'Visual Effects Art Director'),(9946,1392095,10,'Visual Effects Producer'),(9946,1392901,5,'Dialogue Editor'),(9946,1394130,6,'Sound Re-Recording Mixer'),(9946,1394491,9,'Transportation Captain'),(9946,1395025,6,'Dolby Consultant'),(9946,1399141,6,'Sound Re-Recording Mixer'),(9946,1399899,1,'Camera Technician'),(9946,1400082,1,'Still Photographer'),(9946,1400337,9,'Animatronics Designer'),(9946,1400375,1,'Camera Operator'),(9946,1401362,10,'Visual Effects Supervisor'),(9946,1404313,9,'Visual Effects Editor'),(9946,1404326,6,'Music Editor'),(9946,1405232,5,'Dialogue Editor'),(9946,1406053,9,'Video Assist Operator'),(9946,1406128,11,'Gaffer'),(9946,1406763,10,'Visual Effects Producer'),(9946,1406826,6,'Sound Effects Editor'),(9946,1408326,9,'Visual Effects Editor'),(9946,1411166,8,'Hair Designer'),(9946,1412223,8,'Key Hair Stylist'),(9946,1412224,8,'Makeup Artist'),(9946,1414502,7,'Leadman'),(9946,1417685,9,'Utility Stunts'),(9946,1417972,6,'Supervising Sound Editor'),(9946,1423757,6,'Sound Effects Editor'),(9946,1423852,1,'Key Grip'),(9946,1423865,1,'Additional Camera'),(9946,1431996,8,'Makeup Artist'),(9946,1431999,8,'Wigmaker'),(9946,1432008,7,'Assistant Art Director'),(9946,1432009,7,'Set Designer'),(9946,1432021,10,'Visual Effects Producer'),(9946,1432022,10,'Visual Effects Supervisor'),(9946,1432023,1,'Additional Camera'),(9946,1432024,11,'Rigging Gaffer'),(9946,1432026,5,'First Assistant Editor'),(9946,1432028,3,'Location Manager'),(9946,1432029,9,'Unit Publicist'),(9946,1432030,3,'Location Manager'),(9946,1463386,9,'Propmaker'),(9946,1511086,6,'Supervising Sound Editor'),(9946,1538822,6,'Music Supervisor'),(9946,1548698,6,'Orchestrator'),(9946,1549276,9,'Post Production Assistant'),(9946,1552188,5,'Color Timer'),(9946,1552603,6,'Sound Engineer'),(9946,1559479,6,'Production Sound Mixer'),(9946,1581175,4,'Storyboard'),(9946,1620012,10,'I/O Supervisor'),(9946,1633949,9,'Craft Service'),(9946,1633952,3,'Production Office Coordinator'),(9946,1640478,7,'Construction Foreman'),(9946,1646230,9,'Armorer'),(9946,1671650,6,'Sound'),(9946,1681364,9,'Set Production Assistant'),(9946,1685017,6,'Boom Operator'),(9946,1688600,9,'Driver'),(9946,1691205,9,'Security'),(9946,1724279,10,'Digital Compositors'),(9946,1767302,7,'Art Department Assistant'),(9946,1767303,1,'Grip'),(9946,1767304,1,'Helicopter Camera'),(9946,1767305,8,'Set Dressing Artist'),(9946,1767306,9,'Additional Music'),(9946,1767307,9,'Carpenter'),(9946,1767308,9,'Loader'),(9946,1767309,9,'Projection'),(9946,1767310,9,'Stand In'),(9946,1767311,9,'Stunts'),(9946,1767312,9,'Systems Administrators & Support'),(9946,1767313,11,'Lighting Technician'),(9946,1767314,11,'Rigging Grip'),(9946,1767315,3,'Casting Associate'),(9946,1767320,10,'3D Artist'),(9946,1767323,10,'Visual Effects'),(9946,1767324,10,'Visual Effects Coordinator'),(1372,1000,7,'Production Design'),(1372,3687,6,'Sound Effects Editor'),(1372,547,3,'Casting'),(1372,1213,6,'Original Music Composer'),(1372,1322,8,'Costume Design'),(1372,1997,4,'Screenplay'),(1372,1997,4,'Story'),(1372,2484,5,'Editor'),(1372,2623,3,'Casting'),(1372,5334,8,'Makeup Department Head'),(1372,6060,9,'Special Effects'),(1372,6874,3,'Executive Producer'),(1372,9181,2,'Director'),(1372,9181,3,'Producer'),(1372,9182,3,'Producer'),(1372,13050,9,'Dialect Coach'),(1372,13194,5,'Digital Intermediate'),(1372,14764,6,'Sound Effects Editor'),(1372,16601,10,'Visual Effects Supervisor'),(1372,16728,3,'Producer'),(1372,16729,3,'Producer'),(1372,16730,3,'Producer'),(1372,16731,3,'Producer'),(1372,16732,1,'Director of Photography'),(1372,16733,7,'Supervising Art Director'),(1372,16734,7,'Set Decoration'),(1372,16735,8,'Hairstylist'),(1372,16736,6,'Supervising Sound Editor'),(1372,16737,6,'Music Editor'),(1372,16738,10,'Visual Effects'),(1372,16739,10,'Visual Effects Supervisor'),(1372,16740,12,'Stunt Double'),(1372,16741,12,'Stunt Double'),(1372,44006,9,'Stunt Coordinator'),(1372,41893,3,'Executive Producer'),(1372,75575,3,'Producer'),(1372,75804,3,'Executive Producer'),(1372,175646,4,'Story'),(1372,200752,10,'Visual Effects Supervisor'),(1372,986608,7,'Art Direction'),(1372,1104780,7,'Supervising Art Director'),(1372,1116937,6,'Foley'),(1372,1117281,3,'Producer'),(1372,1117282,3,'Producer'),(1372,1332513,8,'Costume Supervisor'),(1372,1332514,8,'Costume Supervisor'),(1372,1332515,1,'Camera Operator'),(1372,1334165,9,'Property Master'),(1372,1337472,9,'Transportation Coordinator'),(1372,1338976,6,'Sound Re-Recording Mixer'),(1372,1342650,7,'Art Department Coordinator'),(1372,1342657,6,'Sound Designer'),(1372,1342663,6,'Music Editor'),(1372,1342669,2,'Script Supervisor'),(1372,1377293,6,'Sound Effects Editor'),(1372,1387183,5,'Dialogue Editor'),(1372,1389624,6,'Music Editor'),(1372,1391678,9,'Sound Recordist'),(1372,1391694,10,'Visual Effects Producer'),(1372,1393286,7,'Construction Coordinator'),(1372,1393356,3,'Location Manager'),(1372,1393389,10,'Visual Effects Producer'),(1372,1393390,10,'Visual Effects Supervisor'),(1372,1393448,1,'Still Photographer'),(1372,1394026,9,'Visual Effects Editor'),(1372,1395027,10,'Visual Effects Supervisor'),(1372,1397823,6,'Foley'),(1372,1401687,6,'Sound Re-Recording Mixer'),(1372,1402924,9,'Property Master'),(1372,1405224,3,'Production Manager'),(1372,1405227,7,'Assistant Art Director'),(1372,1405230,9,'Scenic Artist'),(1372,1405231,7,'Sculptor'),(1372,1405232,5,'Dialogue Editor'),(1372,1405233,6,'Foley'),(1372,1405234,6,'Foley'),(1372,1405235,6,'ADR & Dubbing'),(1372,1405236,10,'Visual Effects Producer'),(1372,1405237,9,'Visual Effects Editor'),(1372,1405238,1,'Camera Operator'),(1372,1405239,1,'Camera Operator'),(1372,1405240,1,'Steadicam Operator'),(1372,1405241,1,'Helicopter Camera'),(1372,1405242,5,'Digital Intermediate'),(1372,1405243,9,'Transportation Coordinator'),(1372,1405244,9,'Transportation Coordinator'),(1372,1405246,9,'Unit Publicist'),(414,510,3,'Producer'),(414,1262,3,'Casting'),(414,3794,4,'Characters'),(414,5572,2,'Director'),(414,5573,4,'Story'),(414,5574,4,'Story'),(414,5575,4,'Screenplay'),(414,5580,3,'Producer'),(414,5581,6,'Original Music Composer'),(414,5582,1,'Director of Photography'),(414,5583,5,'Editor'),(414,5584,5,'Editor'),(414,5585,7,'Production Design'),(414,10949,3,'Executive Producer'),(414,10951,3,'Executive Producer'),(414,56461,3,'Co-Producer'),(414,406204,8,'Makeup Artist'),(414,1115051,3,'Associate Producer'),(563,3686,3,'Casting'),(563,3687,6,'Sound Designer'),(563,898,5,'Editor'),(563,7735,8,'Costume Design'),(563,4698,3,'Production Supervisor'),(563,5241,1,'Director of Photography'),(563,10491,2,'Director'),(563,7726,3,'Producer'),(563,10630,6,'Sound Effects Editor'),(563,6880,7,'Set Decoration'),(563,7721,4,'Novel'),(563,7722,4,'Screenplay'),(563,7722,3,'Producer'),(563,7723,3,'Producer'),(563,7724,3,'Producer'),(563,7725,3,'Producer'),(563,7727,10,'Visual Effects Supervisor'),(563,7727,3,'Co-Producer'),(563,7728,6,'Original Music Composer'),(563,7730,5,'Editor'),(563,7731,3,'Casting'),(563,7732,7,'Production Design'),(563,7733,7,'Art Direction'),(563,7734,7,'Art Direction'),(563,14654,3,'Production Manager'),(563,42034,6,'Sound Re-Recording Mixer'),(563,42267,6,'Sound Designer'),(563,41591,1,'Steadicam Operator'),(563,74989,1,'Steadicam Operator'),(563,554887,6,'Sound Designer'),(563,554888,6,'Sound Effects Editor'),(563,1050930,5,'Dialogue Editor'),(563,1269306,6,'Sound Effects Editor'),(563,1319825,8,'Costume Supervisor'),(563,1341404,6,'Sound Effects Editor'),(563,1376514,6,'Sound Effects Editor'),(563,1378171,6,'Sound Re-Recording Mixer'),(563,1390535,1,'Still Photographer'),(563,1395022,6,'Sound Effects Editor'),(563,1400556,6,'Sound Effects Editor'),(563,1402170,2,'Script Supervisor'),(563,1413095,5,'Dialogue Editor'),(563,1440822,6,'Sound Designer'),(563,1452917,10,'Modeling'),(563,1563428,6,'Sound mixer'),(563,1563430,6,'Boom Operator'),(314,997,1,'Director of Photography'),(314,998,5,'Editor'),(314,122,6,'Original Music Composer'),(314,561,3,'Casting'),(314,900,6,'Sound Designer'),(314,1296,3,'Executive Producer'),(314,1899,3,'Producer'),(314,3794,4,'Characters'),(314,7214,4,'Story'),(314,7215,4,'Story'),(314,7234,7,'Supervising Art Director'),(314,4586,2,'Director'),(314,4588,3,'Producer'),(314,7764,6,'Supervising Sound Editor'),(314,10949,3,'Executive Producer'),(314,10951,3,'Executive Producer'),(314,8181,3,'Executive Producer'),(314,8165,9,'Sound Design Assistant'),(314,12205,8,'Costume Design'),(314,19535,4,'Screenplay'),(314,49886,7,'Leadman'),(314,53017,6,'Conductor'),(314,52600,7,'Production Design'),(314,55600,2,'First Assistant Director'),(314,113066,6,'Boom Operator'),(314,113194,9,'Stunts'),(314,56827,9,'Additional Music'),(314,66963,3,'Co-Producer'),(314,61177,7,'Art Direction'),(314,61996,8,'Prosthetic Supervisor'),(314,72519,3,'Executive Producer'),(314,163496,4,'Story'),(314,203227,9,'Stunts'),(314,229908,7,'Set Designer'),(314,293579,4,'Storyboard'),(314,579405,6,'Sound Effects Editor'),(314,959114,3,'Production Supervisor'),(314,961544,7,'Art Direction'),(314,1007395,9,'Stunts'),(314,1017340,9,'Makeup Effects'),(314,1043374,6,'Musician'),(314,1096366,9,'Visual Effects Art Director'),(314,1117716,4,'Creative Producer'),(314,1123424,3,'Executive In Charge Of Production'),(314,1194085,2,'Layout'),(314,1231306,3,'Associate Producer'),(314,1236388,1,'Helicopter Camera'),(314,1279912,8,'Costume Illustrator'),(314,1282566,10,'Animation Supervisor'),(314,1286355,8,'Hairstylist'),(314,1305741,8,'Assistant Costume Designer'),(314,1325908,7,'Set Decoration'),(314,1328406,8,'Costume Supervisor'),(314,1335041,7,'Construction Coordinator'),(314,1340007,6,'Music Editor'),(314,1341854,6,'Sound Re-Recording Mixer'),(314,1341858,6,'Sound Re-Recording Mixer'),(314,1342626,6,'Sound Re-Recording Mixer'),(314,1360103,6,'Sound Effects Editor'),(314,1372884,1,'Steadicam Operator'),(314,1375909,9,'Property Master'),(314,1376902,6,'ADR Supervisor'),(314,1387539,9,'Carpenter'),(314,1389130,7,'Art Department Coordinator'),(314,1391672,7,'Art Department Assistant'),(314,1391697,9,'Second Unit'),(314,1391697,9,'Stunt Coordinator'),(314,1391699,1,'Still Photographer'),(314,1391703,3,'Location Manager'),(314,1394974,1,'Camera Operator'),(314,1397300,2,'Script Supervisor'),(314,1397725,7,'Set Decoration'),(314,1397846,10,'Visual Effects Supervisor'),(314,1399071,1,'Aerial Director of Photography'),(314,1400905,5,'Dialogue Editor'),(314,1401556,7,'Sculptor'),(314,1401595,11,'Chief Lighting Technician'),(314,1401598,9,'Transportation Captain'),(314,1401604,8,'Wigmaker'),(314,1409718,8,'Costume Coordinator'),(314,1412233,9,'Sound Recordist'),(314,1412985,6,'Sound Editor'),(314,1414177,6,'Sound Effects Editor'),(314,1414182,6,'ADR Editor'),(314,1415464,6,'Foley Editor'),(314,1418489,9,'Unit Publicist'),(314,1427379,11,'Rigging Gaffer'),(314,1431018,7,'Assistant Art Director'),(314,1431053,10,'Visual Effects Coordinator'),(314,1431104,9,'Transportation Coordinator'),(314,1441238,8,'Key Hair Stylist'),(314,1441321,9,'Marine Coordinator'),(314,1441349,7,'Assistant Property Master'),(314,1446192,8,'Key Makeup Artist'),(314,1451703,5,'Digital Intermediate'),(314,1456359,9,'Dialect Coach'),(314,1457630,7,'Conceptual Illustrator'),(314,1462705,9,'Visual Effects Editor'),(314,1464344,3,'Executive In Charge Of Post Production'),(314,1470942,3,'Associate Producer'),(314,1496746,1,'Key Grip'),(314,1529591,1,'Additional Camera'),(314,1537036,9,'Unit Production Manager'),(314,1548930,10,'Visual Effects'),(314,1550399,6,'Production Sound Mixer'),(314,1550399,6,'Sound mixer'),(314,1551516,11,'Gaffer'),(314,1554041,6,'Orchestrator'),(314,1555381,10,'I/O Manager'),(314,1556310,6,'Music Supervisor'),(314,1558789,7,'Art Direction'),(314,1558790,7,'Location Scout'),(314,1558791,7,'Painter'),(314,1558792,7,'Production Illustrator'),(314,1558793,7,'Set Decoration Buyer'),(314,1558794,1,'First Assistant Camera'),(314,1559004,8,'Seamstress'),(314,1559005,8,'Set Costumer'),(314,1559006,7,'Set Dresser'),(314,1559009,9,'CG Supervisor'),(314,1559010,9,'Choreographer'),(314,1559011,9,'Craft Service'),(314,1559017,9,'Driver'),(314,1559023,9,'Post Production Supervisor'),(314,1559030,9,'Security'),(314,1559087,9,'Set Medic'),(314,1559092,9,'Set Production Assistant'),(314,1559094,9,'Software Engineer'),(314,1559095,9,'Special Effects Coordinator'),(314,1559096,9,'Stand In'),(314,1559104,9,'Transportation Co-Captain'),(314,1559138,9,'Video Assist Operator'),(314,1559140,5,'First Assistant Editor'),(314,1559141,11,'Electrician'),(314,1559142,11,'Lighting Artist'),(314,1559143,11,'Lighting Technician'),(314,1559144,11,'Rigging Grip'),(314,1559145,3,'Casting Associate'),(314,1559147,3,'Production Accountant'),(314,1559148,3,'Production Coordinator'),(314,1559160,10,'Digital Compositors'),(314,1559163,10,'I/O Supervisor'),(314,1559166,10,'Visual Effects Producer'),(314,1559169,9,'Score Engineer'),(314,1559180,9,'Systems Administrators & Support'),(314,1559183,3,'Researcher'),(314,1559184,9,'Sequence Leads'),(314,1559185,9,'Software Team Lead'),(314,1559186,9,'Motion Capture Artist'),(314,1585187,1,'Grip'),(314,1733132,5,'Negative Cutter'),(314,1734857,2,'Third Assistant Director'),(314,1740487,7,'Title Designer'),(314,1740488,1,'Dolly Grip'),(314,1740489,8,'Ager/Dyer'),(314,1740491,8,'Makeup Artist'),(314,1740493,9,'Animal Coordinator'),(314,1740495,2,'Second Assistant Director'),(314,1740499,3,'Assistant Production Coordinator'),(314,1740501,3,'Casting Assistant'),(314,1740510,10,'Matchmove Supervisor'),(314,1740513,10,'Roto Supervisor'),(9016,1213,6,'Original Music Composer'),(9016,7902,3,'Casting'),(9016,7903,3,'Casting'),(9016,9349,6,'Sound Designer'),(9016,9349,6,'Supervising Sound Editor'),(9016,9430,6,'Sound Effects Editor'),(9016,9430,6,'Sound Effects Designer'),(9016,15810,2,'Director'),(9016,15810,4,'Screenplay'),(9016,15810,3,'Producer'),(9016,15811,2,'Director'),(9016,15811,4,'Screenplay'),(9016,15811,3,'Producer'),(9016,16737,6,'Supervising Music Editor'),(9016,29533,4,'Novel'),(9016,56611,4,'Screenplay'),(9016,56612,3,'Producer'),(9016,56613,7,'Production Design'),(9016,61416,3,'Associate Producer'),(9016,61419,3,'Casting Associate'),(9016,73161,7,'Production Design'),(9016,74976,6,'Sound Re-Recording Mixer'),(9016,74978,6,'Sound Re-Recording Mixer'),(9016,83091,6,'Sound Re-Recording Mixer'),(9016,1342663,6,'Music Editor'),(9016,1395352,3,'Production Manager'),(9016,1442567,5,'Editor'),(9016,1447357,10,'Visual Development'),(9016,1447362,7,'Painter'),(9016,1447376,10,'Animation'),(9016,1447474,10,'Animation'),(9016,1447476,2,'Layout'),(9016,1447483,2,'Layout'),(9016,1455541,10,'Animation'),(9016,1457930,10,'Animation'),(9016,1461410,7,'Painter'),(9016,1653447,7,'Art Direction'),(9016,1726510,3,'Production Manager'),(9016,1813303,6,'Music Editor'),(1734,37,6,'Original Music Composer'),(1734,7775,2,'Director'),(1734,7775,4,'Screenplay'),(1734,7779,3,'Producer'),(1734,7780,3,'Producer'),(1734,7783,1,'Director of Photography'),(1734,7784,5,'Editor'),(1734,7793,8,'Costume Design'),(1734,18921,5,'Editor'),(1734,45841,3,'Casting'),(1734,53346,3,'Casting'),(3131,213,3,'Producer'),(3131,117,6,'Original Music Composer'),(3131,1032,2,'Director'),(3131,1307,3,'Executive Producer'),(3131,59839,3,'Producer'),(3131,2242,3,'Casting'),(3131,2260,4,'Screenplay'),(3131,2366,7,'Production Design'),(3131,3661,5,'Editor'),(3131,3769,1,'Director of Photography'),(3131,4006,3,'Executive Producer'),(3131,14393,4,'Screenplay'),(3131,5820,3,'Producer'),(3131,7531,3,'Producer'),(3131,8673,1,'Steadicam Operator'),(3131,9026,7,'Set Decoration'),(3131,9027,8,'Costume Design'),(3131,14716,6,'Music Editor'),(3131,16729,3,'Executive Producer'),(3131,28901,3,'Executive Producer'),(3131,30711,4,'Screenplay'),(3131,30712,3,'Executive Producer'),(3131,30713,3,'Executive Producer'),(3131,30714,3,'Executive Producer'),(3131,34336,3,'Producer'),(3131,34337,3,'Line Producer'),(3131,34338,3,'Line Producer'),(3131,34339,3,'Executive Producer'),(3131,34340,3,'Executive Producer'),(3131,72861,9,'Executive Music Producer'),(3131,1074163,9,'Stunt Coordinator'),(3131,1391398,6,'Music Editor'),(3131,1400081,1,'Steadicam Operator'),(3131,1402037,6,'Music Editor'),(3131,1422799,6,'Music Editor'),(3131,1444970,2,'Script Supervisor'),(3131,1534644,1,'Still Photographer'),(3131,1534645,1,'Still Photographer'),(9408,5359,6,'Original Music Composer'),(9408,7903,3,'Casting'),(9408,12905,4,'Screenplay'),(9408,12905,2,'Director'),(9408,56042,5,'Editor'),(9408,15774,4,'Screenplay'),(9408,15774,2,'Director'),(9408,58144,4,'Screenplay'),(9408,58421,4,'Screenplay'),(9408,58421,3,'Producer'),(9408,58421,4,'Story'),(9408,169941,4,'Story'),(9408,957354,7,'Production Design'),(9408,1081906,4,'Writer'),(9408,1081907,4,'Writer'),(9408,1118709,3,'Producer'),(9408,1127674,3,'Executive Producer'),(9408,1455541,10,'Animation'),(9408,1455613,10,'Animation'),(9890,330,5,'Editor'),(9890,1046,3,'Casting'),(9890,2997,3,'Producer'),(9890,16296,3,'Executive Producer'),(9890,5493,8,'Costume Design'),(9890,6489,6,'Original Music Composer'),(9890,7716,7,'Production Design'),(9890,7908,2,'Director'),(9890,13019,4,'Author'),(9890,15426,3,'Casting'),(9890,14929,3,'Producer'),(9890,17951,7,'Set Decoration'),(9890,32588,4,'Author'),(9890,58470,3,'Producer'),(9890,60011,3,'Executive Producer'),(9890,60012,1,'Director of Photography'),(9890,60010,3,'Producer'),(9890,60013,3,'Producer'),(9890,60014,7,'Art Direction'),(855,770,3,'Producer'),(855,947,6,'Original Music Composer'),(855,2444,3,'Executive Producer'),(855,2446,3,'Executive Producer'),(855,2448,3,'Associate Producer'),(855,578,2,'Director'),(855,578,3,'Producer'),(855,897,3,'Casting'),(855,930,3,'Executive Producer'),(855,930,3,'Unit Production Manager'),(855,944,7,'Production Design'),(855,950,5,'Editor'),(855,1129,1,'Director of Photography'),(855,5132,6,'Music Supervisor'),(855,5673,7,'Supervising Art Director'),(855,6060,10,'Special Effects Supervisor'),(855,7789,7,'Art Direction'),(855,8673,1,'Steadicam Operator'),(855,8646,7,'Art Direction'),(855,11271,8,'Costume Design'),(855,12785,3,'Associate Producer'),(855,12785,2,'First Assistant Director'),(855,40838,3,'Assistant Production Coordinator'),(855,12562,6,'Supervising ADR Editor'),(855,13166,6,'Sound Effects Editor'),(855,12782,4,'Novel'),(855,12783,4,'Screenplay'),(855,12786,3,'Executive Producer'),(855,12787,7,'Set Decoration'),(855,12788,8,'Costume Design'),(855,15004,3,'Executive In Charge Of Production'),(855,14764,6,'Sound Effects Editor'),(855,14765,6,'Supervising Sound Editor'),(855,16595,7,'Art Direction'),(855,34512,7,'Art Direction'),(855,19016,9,'Additional Music'),(855,23364,7,'Art Direction'),(855,63421,6,'Music Editor'),(855,60935,3,'Casting Associate'),(855,91123,1,'Aerial Camera (suggest in addition to Helicopter Camera)'),(855,91891,5,'Dialogue Editor'),(855,105780,6,'Production Sound Mixer'),(855,117226,9,'Property Master'),(855,138639,8,'Key Hair Stylist'),(855,570129,9,'Armorer'),(855,570136,2,'Script Supervisor'),(855,998152,3,'Production Supervisor'),(855,1116937,6,'Foley'),(855,1117347,9,'Armory Coordinator'),(855,1311960,6,'Boom Operator'),(855,1331983,8,'Wardrobe Supervisor'),(855,1335543,7,'Greensman'),(855,1337418,10,'Visual Effects Supervisor'),(855,1338372,6,'Foley'),(855,1342242,6,'Additional Sound Re-Recording Mixer'),(855,1352966,6,'Foley Editor'),(855,1367493,6,'Foley'),(855,1367667,6,'Sound Effects Editor'),(855,1373558,9,'Armorer'),(855,1378239,9,'Stunt Coordinator'),(855,1385884,2,'Script Supervisor'),(855,1388921,5,'First Assistant Editor'),(855,1392901,5,'Dialogue Editor'),(855,1394783,1,'Camera Operator'),(855,1398505,3,'Casting'),(855,1399141,6,'Sound Re-Recording Mixer'),(855,1399484,3,'Production Supervisor'),(855,1403545,11,'Electrician'),(855,1404200,8,'Key Makeup Artist'),(855,1404201,9,'Makeup Effects'),(855,1404202,3,'Production Manager'),(855,1404203,3,'Production Manager'),(855,1404204,3,'Production Manager'),(855,1404205,9,'Post Production Supervisor'),(855,1404206,7,'Art Department Coordinator'),(855,1404207,7,'Set Designer'),(855,1404208,7,'Set Designer'),(855,1404209,7,'Leadman'),(855,1404212,6,'Supervising Sound Editor'),(855,1404213,9,'Sound Recordist'),(855,1404214,5,'Dialogue Editor'),(855,1404215,6,'Sound Effects Editor'),(855,1404216,6,'Sound Effects Editor'),(855,1404217,6,'Sound Effects Editor'),(855,1404218,6,'Sound Re-Recording Mixer'),(855,1404219,9,'Special Effects Coordinator'),(855,1404220,9,'Special Effects Coordinator'),(855,1404221,10,'Visual Effects Supervisor'),(855,1404222,9,'Visual Effects Editor'),(855,1404223,9,'Visual Effects Editor'),(855,1404225,10,'Visual Effects Producer'),(855,1404230,1,'Still Photographer'),(855,1404231,11,'Chief Lighting Technician'),(855,1404232,8,'Set Costumer'),(855,1404233,8,'Set Costumer'),(855,1404234,9,'Transportation Coordinator'),(855,1404235,9,'Unit Publicist'),(855,1404238,3,'Location Manager'),(855,1404241,9,'Dialect Coach'),(855,1404243,3,'Location Manager'),(855,1404244,1,'Aerial Director of Photography'),(855,1404841,6,'ADR Editor'),(855,1405377,9,'Carpenter'),(855,1405382,6,'Supervising Dialogue Editor'),(855,1425484,9,'CG Supervisor'),(855,1444646,9,'Utility Stunts'),(855,1456373,5,'Associate Editor'),(855,1456381,5,'First Assistant Editor'),(855,1487590,4,'Storyboard'),(855,1510846,4,'Story Editor'),(855,1525014,9,'Stand In'),(855,1530166,6,'Music Supervisor'),(855,1532615,7,'Construction Coordinator'),(855,1535950,8,'Costume Coordinator'),(855,1536521,3,'Researcher'),(855,1536582,9,'Armorer'),(855,1536588,9,'Armorer'),(855,1536589,9,'Armorer'),(855,1536592,1,'First Assistant Camera'),(855,1536593,11,'Lighting Technician'),(855,1536594,10,'Visual Effects Coordinator'),(855,1550730,5,'Color Timer'),(855,1554018,7,'Painter'),(855,1554019,8,'Hairstylist'),(855,1554020,8,'Prosthetic Supervisor'),(855,1554023,9,'Second Unit'),(855,1554024,9,'Set Medic'),(855,1554025,9,'Set Production Assistant'),(855,1554026,9,'Stunts'),(855,1554028,9,'Transportation Captain'),(855,1554029,3,'Unit Production Manager'),(855,1554030,11,'Best Boy Electric'),(855,1554033,3,'Associate Producer'),(855,1554037,3,'Production Accountant'),(855,1554039,6,'First Assistant Sound Editor'),(855,1554041,6,'Orchestrator'),(855,1554044,6,'Sound Engineer'),(855,1554045,10,'3D Artist'),(855,1554046,10,'Digital Compositors'),(855,1554047,1,'Camera Technician'),(855,1554048,7,'Set Dresser'),(855,1580665,6,'Assistant Sound Editor'),(855,1592605,1,'Key Grip'),(855,1610679,11,'Gaffer'),(855,1685460,9,'Aerial Coordinator'),(855,1739747,7,'Assistant Property Master'),(855,1739760,1,'Camera Loader'),(855,1739761,1,'Dolly Grip'),(855,1739763,1,'Grip'),(855,1739770,8,'Makeup Artist'),(855,1739822,9,'Pilot'),(855,1739825,2,'Second Assistant Director'),(855,1739826,2,'Third Assistant Director'),(855,1739828,3,'Casting Assistant'),(855,1739829,6,'Musician'),(855,1739830,10,'2D Artist'),(18,59,4,'Screenplay'),(18,59,2,'Director'),(18,59,4,'Story'),(18,60,3,'Producer'),(18,61,4,'Screenplay'),(18,8374,3,'Co-Producer'),(18,8375,9,'Post Production Supervisor'),(18,8375,3,'Associate Producer'),(18,8376,6,'Sound Designer'),(18,996,6,'Original Music Composer'),(18,997,1,'Director of Photography'),(18,998,5,'Editor'),(18,1113,3,'Casting'),(18,1000,7,'Production Design'),(18,8378,7,'Art Direction'),(18,8378,9,'Visual Effects Art Director'),(18,8379,7,'Art Direction'),(18,8379,9,'Visual Effects Art Director'),(18,8380,7,'Art Direction'),(18,8381,7,'Art Direction'),(18,8382,7,'Art Direction'),(18,8383,7,'Set Decoration'),(18,8384,7,'Set Decoration'),(18,8385,8,'Costume Design'),(18,8386,3,'Production Manager'),(18,8387,3,'Unit Production Manager'),(18,8389,3,'Production Manager'),(18,8390,3,'Production Manager'),(18,8392,9,'Second Unit'),(18,8392,1,'Second Unit Director of Photography'),(18,3924,1,'Camera Operator'),(18,9441,6,'Foley'),(18,11173,10,'Creature Design'),(18,11225,7,'Assistant Art Director'),(18,11298,8,'Makeup Artist'),(18,11301,9,'Stunts'),(18,40749,2,'Script Supervisor'),(18,13168,6,'ADR & Dubbing'),(18,16177,6,'Sound Re-Recording Mixer'),(18,18775,9,'Stunt Coordinator'),(18,20296,5,'First Assistant Editor'),(18,22320,6,'Sound Engineer'),(18,23456,7,'Sculptor'),(18,59983,5,'First Assistant Editor'),(18,62460,7,'Conceptual Design'),(18,63601,7,'Assistant Art Director'),(18,75803,8,'Hairstylist'),(18,75804,3,'Location Manager'),(18,91090,9,'Sound Recordist'),(18,143915,6,'Sound Effects Editor'),(18,144848,2,'Assistant Director'),(18,548439,6,'Foley'),(18,548444,6,'Sound Effects Editor'),(18,555978,10,'Animation Supervisor'),(18,579430,9,'Sound Recordist'),(18,587903,2,'Assistant Director'),(18,943313,7,'Assistant Art Director'),(18,948789,6,'Music Supervisor'),(18,978114,6,'Boom Operator'),(18,1034754,7,'Set Designer'),(18,1074103,6,'Sound Effects Editor'),(18,1117347,9,'Armorer'),(18,1128252,2,'Assistant Director'),(18,1177814,2,'Second Assistant Director'),(18,1249773,8,'Makeup Department Head'),(18,1335179,7,'Art Department Coordinator'),(18,1346943,10,'Special Effects Supervisor'),(18,1367562,1,'Still Photographer'),(18,1368864,6,'Sound Re-Recording Mixer'),(18,1376514,6,'Sound Effects Editor'),(18,1392094,9,'Digital Effects Supervisor'),(18,1392984,9,'Utility Stunts'),(18,1394958,2,'First Assistant Director'),(18,1398110,11,'Gaffer'),(18,1400370,9,'Visual Effects Editor'),(18,1404213,9,'Sound Recordist'),(18,1404717,6,'ADR & Dubbing'),(18,1405717,6,'Sound Effects Editor'),(18,1406914,8,'Hairstylist'),(18,1407223,8,'Hairstylist'),(18,1407672,1,'Steadicam Operator'),(18,1407812,6,'Sound Effects Editor'),(18,1408361,11,'Best Boy Electric'),(18,1415630,10,'Visual Effects Supervisor'),(18,1417413,9,'Property Master'),(18,1427298,2,'Assistant Director'),(18,1434638,8,'Makeup Artist'),(18,1440801,7,'Construction Coordinator'),(18,1440806,7,'Construction Coordinator'),(18,1440811,9,'Sound Recordist'),(18,1440822,6,'Sound Designer'),(18,1440843,9,'Sequence Supervisor'),(18,1440844,9,'Sequence Supervisor'),(18,1440847,9,'Sequence Supervisor'),(18,1440848,9,'Sequence Supervisor'),(18,1440849,9,'Sequence Supervisor'),(18,1440850,9,'Second Unit Cinematographer'),(18,1440852,11,'Rigging Gaffer'),(18,1440853,5,'First Assistant Editor'),(18,1440854,3,'Location Manager'),(18,1446663,1,'Grip'),(18,1456365,8,'Makeup Artist'),(18,1465667,8,'Hairstylist'),(18,1471947,2,'First Assistant Director'),(18,1512798,2,'Assistant Director'),(18,1536572,9,'Carpenter'),(18,1546177,7,'Standby Painter'),(18,1551515,10,'Digital Compositors'),(18,1551985,10,'3D Coordinator'),(18,1591577,9,'Video Assist Operator'),(18,1608539,7,'Painter'),(18,1630675,5,'Color Timer'),(18,1700803,4,'Storyboard'),(18,1735467,9,'Production Controller'),(18,1821634,2,'Third Assistant Director'),(18,1857469,8,'Hairstylist'),(18,1857475,2,'Third Assistant Director'),(18,1857476,2,'Third Assistant Director'),(18,1857478,2,'Second Assistant Director'),(18,1857480,2,'Assistant Director'),(18,1881561,7,'Production Illustrator'),(18,1881562,1,'First Assistant Camera'),(18,1881563,1,'Key Grip'),(18,1881564,8,'Costume Supervisor'),(18,1881565,9,'Projection'),(18,1881566,9,'Propmaker'),(18,1881567,9,'Stand In'),(18,1881568,11,'Electrician'),(18,1881569,11,'Lighting Technician'),(18,1881570,3,'Production Accountant'),(18,1881571,3,'Production Coordinator'),(18,1881572,6,'Orchestrator'),(18,1881573,10,'Visual Effects Coordinator'),(18,1881574,10,'Visual Effects Producer'),(7980,8220,7,'Production Design'),(7980,2952,3,'Casting'),(7980,465,3,'Executive Producer'),(7980,474,3,'Casting'),(7980,488,3,'Executive Producer'),(7980,108,2,'Director'),(7980,108,4,'Screenplay'),(7980,108,3,'Producer'),(7980,126,4,'Screenplay'),(7980,126,3,'Producer'),(7980,128,4,'Screenplay'),(7980,128,3,'Producer'),(7980,1313,1,'Director of Photography'),(7980,1324,3,'Casting'),(7980,1326,3,'Casting'),(7980,1377,5,'Editor'),(7980,5215,8,'Costume Design'),(7980,3506,3,'Producer'),(7980,37317,6,'Original Music Composer'),(7980,42360,3,'Casting'),(7980,53491,4,'Novel'),(7980,82197,3,'Executive Producer'),(7980,208693,3,'Executive Producer'),(7980,1128252,3,'Producer'),(7980,1128253,3,'Producer'),(7980,1128254,3,'Producer'),(7980,1447503,10,'Modeling'),(12,7,4,'Screenplay'),(12,7,2,'Director'),(12,7,4,'Original Story'),(12,8,5,'Supervising Film Editor'),(12,8,2,'Co-Director'),(12,9,3,'Producer'),(12,10,4,'Screenplay'),(12,11,4,'Screenplay'),(12,7879,3,'Executive Producer'),(12,12914,5,'Editor'),(12,153,6,'Original Music Composer'),(12,2216,6,'Sound Designer'),(12,2216,6,'Supervising Sound Editor'),(12,2216,6,'Sound Re-Recording Mixer'),(12,7538,6,'Music Editor'),(12,7883,7,'Production Design'),(12,7891,10,'Visual Development'),(12,7892,9,'In Memory Of'),(12,7903,3,'Casting'),(12,7912,3,'Production Supervisor'),(12,7924,4,'Story'),(12,7925,10,'Visual Development'),(12,7927,7,'Art Direction'),(12,7929,10,'Animation'),(12,7943,10,'CG Painter'),(12,7944,10,'CG Painter'),(12,7946,10,'CG Painter'),(12,7948,10,'CG Painter'),(12,7949,7,'Art Direction'),(12,7952,7,'Art Direction'),(12,7960,7,'Sculptor'),(12,7963,10,'Visual Development'),(12,7967,10,'Visual Development'),(12,7972,10,'CG Painter'),(12,7988,1,'Director of Photography'),(12,8007,9,'CG Supervisor'),(12,8012,10,'Animation Director'),(12,8013,10,'Animation'),(12,8042,10,'Animation'),(12,8058,10,'Fix Animator'),(12,8059,10,'Animation Manager'),(12,8062,5,'Editorial Production Assistant'),(12,8066,9,'Second Film Editor'),(12,8071,5,'First Assistant Editor'),(12,8078,6,'Sound Effects Editor'),(12,8084,9,'CG Supervisor'),(12,8098,9,'CG Supervisor'),(12,8115,9,'CG Supervisor'),(12,8135,1,'Camera Supervisor'),(12,8153,9,'Post Production Supervisor'),(12,8155,9,'Projection'),(12,8158,6,'Supervising Sound Editor'),(12,8159,6,'Sound Effects Editor'),(12,8165,9,'Sound Design Assistant'),(12,12912,1,'Director of Photography'),(12,15893,6,'Sound Effects Editor'),(12,21198,4,'Story'),(12,32535,4,'Story'),(12,56270,9,'Second Film Editor'),(12,57673,3,'Casting'),(12,61419,3,'Casting'),(12,61747,4,'Story'),(12,72753,3,'Production Manager'),(12,76590,3,'Associate Producer'),(12,225975,4,'Storyboard'),(12,231202,9,'Supervising Animator'),(12,1092247,10,'Animation Director'),(12,1122225,9,'Temp Music Editor'),(12,1140576,10,'Animation'),(12,1211220,7,'Sculptor'),(12,1236458,4,'Storyboard'),(12,1260745,10,'Visual Development'),(12,1303001,7,'Art Direction'),(12,1335873,10,'Visual Development'),(12,1422411,6,'Foley Editor'),(12,1425978,6,'Sound Re-Recording Mixer'),(12,1451236,10,'Visual Development'),(12,1457647,4,'Story'),(12,1516156,9,'Second Film Editor'),(12,1516157,10,'CG Painter'),(12,1549209,6,'Orchestrator'),(12,1552873,5,'Color Timer'),(12,1556611,1,'Camera Technician'),(12,1556615,9,'Production Office Assistant'),(12,1556629,5,'Editorial Production Assistant'),(12,1556631,3,'Production Accountant'),(12,1556632,6,'ADR Editor'),(12,1556634,6,'Sound Editor'),(12,1556635,9,'Photoscience Manager'),(12,1556647,5,'Editorial Coordinator'),(12,1623548,10,'Character Designer'),(12,1711831,9,'CG Supervisor'),(12,1719095,10,'Fix Animator'),(12,1742751,1,'Camera Technician'),(12,1748698,9,'Supervising Technical Director'),(12,1759722,10,'Visual Development'),(12,1830788,9,'CG Supervisor'),(12,1830790,9,'CG Supervisor'),(12,1830791,9,'CG Supervisor'),(12,1830793,9,'CG Supervisor'),(12,1830810,10,'Visual Development'),(12,1830811,10,'Visual Development'),(12,1830812,5,'Editorial Production Assistant'),(12,1830814,9,'Production Office Assistant'),(122,123,3,'Producer'),(122,117,6,'Original Music Composer'),(122,108,2,'Director'),(122,108,3,'Producer'),(122,108,4,'Screenplay'),(122,1307,3,'Executive Producer'),(122,59839,3,'Executive Producer'),(122,1309,3,'Executive Producer'),(122,1311,3,'Executive Producer'),(122,129,4,'Novel'),(122,126,4,'Screenplay'),(122,128,4,'Screenplay'),(122,1313,1,'Director of Photography'),(122,1314,7,'Production Design'),(122,1316,7,'Art Direction'),(122,1318,7,'Art Direction'),(122,1319,7,'Art Direction'),(122,1321,7,'Conceptual Design'),(122,1322,8,'Costume Design'),(122,1323,8,'Costume Design'),(122,1324,3,'Casting'),(122,1325,3,'Casting'),(122,1326,3,'Casting'),(122,1373,7,'Set Decoration'),(122,1390,5,'Editor'),(122,61624,3,'Casting'),(122,1016176,3,'Casting'),(122,1401803,10,'3D Supervisor'),(122,1447518,9,'Stunts'),(121,123,3,'Producer'),(121,117,6,'Original Music Composer'),(121,108,4,'Screenplay'),(121,108,2,'Director'),(121,108,3,'Producer'),(121,1307,3,'Executive Producer'),(121,59839,3,'Executive Producer'),(121,1310,3,'Executive Producer'),(121,1309,3,'Executive Producer'),(121,1311,3,'Executive Producer'),(121,129,4,'Novel'),(121,126,4,'Screenplay'),(121,128,4,'Screenplay'),(121,1313,1,'Director of Photography'),(121,1314,7,'Production Design'),(121,1316,7,'Art Direction'),(121,1317,7,'Art Direction'),(121,1318,7,'Art Direction'),(121,1319,7,'Art Direction'),(121,1320,7,'Set Decoration'),(121,1321,7,'Set Decoration'),(121,1322,8,'Costume Design'),(121,1323,8,'Costume Design'),(121,1324,3,'Casting'),(121,1325,3,'Casting'),(121,1326,3,'Casting'),(121,1373,7,'Set Decoration'),(121,1374,6,'Original Music Composer'),(121,1376,5,'Editor'),(121,1377,5,'Editor'),(121,61624,3,'Casting'),(121,1016176,3,'Casting'),(121,1401803,10,'3D Supervisor'),(121,1447518,9,'Stunts'),(121,1453498,10,'Animation'),(121,1460602,9,'Compositors'),(1995,8381,7,'Art Direction'),(1995,490,3,'Producer'),(1995,899,5,'Editor'),(1995,1093,3,'Producer'),(1995,1325,3,'Casting'),(1995,1592,5,'Editor'),(1995,1732,5,'Editor'),(1995,1993,3,'Producer'),(1995,5912,6,'Original Music Composer'),(1995,2523,3,'Executive Producer'),(1995,2533,5,'Editor'),(1995,3501,3,'Casting'),(1995,7232,3,'Casting'),(1995,5021,9,'Supervising Art Director'),(1995,7786,3,'Casting'),(1995,10714,8,'Costume Design'),(1995,10497,9,'Supervising Art Director'),(1995,11402,4,'Story'),(1995,11403,4,'Story'),(1995,12786,2,'Director'),(1995,10819,7,'Production Design'),(1995,20507,7,'Set Decoration'),(1995,17629,1,'Director of Photography'),(1995,20505,4,'Screenplay'),(1995,20506,4,'Screenplay'),(1995,20513,3,'Executive Producer'),(1995,20514,3,'Producer'),(1995,20515,3,'Producer'),(1995,20540,3,'Casting'),(1995,22080,7,'Art Direction'),(1995,36591,8,'Assistant Costume Designer'),(1995,71579,7,'Art Direction'),(1995,1222910,4,'Story'),(1995,1287668,8,'Assistant Costume Designer'),(1995,1373729,2,'Script Supervisor'),(1995,1546757,9,'Armorer'),(1995,1551797,9,'Armorer'),(1995,1556432,7,'Art Direction'),(1995,1556433,7,'Art Department Coordinator'),(1995,1556436,2,'Script Supervisor'),(1995,1556438,10,'3D Supervisor'),(331,511,3,'Producer'),(331,488,3,'Executive Producer'),(331,489,3,'Producer'),(331,497,7,'Art Direction'),(331,1348,1,'Additional Camera'),(331,900,6,'Sound Designer'),(331,4782,4,'Characters'),(331,4945,2,'Director'),(331,4946,4,'Writer'),(331,4948,4,'Writer'),(331,4949,6,'Original Music Composer'),(331,4950,1,'Director of Photography'),(331,4951,5,'Editor'),(331,4952,3,'Casting'),(331,4953,7,'Production Design'),(331,10633,9,'Stunts'),(331,8164,6,'Foley'),(331,8279,7,'Assistant Art Director'),(331,8282,7,'Production Illustrator'),(331,13223,5,'Color Timer'),(331,13235,4,'Writer'),(331,14341,7,'Supervising Art Director'),(331,25458,9,'Sequence Supervisor'),(331,11376,8,'Costume Design'),(331,41898,7,'Set Decoration'),(331,42736,3,'Associate Producer'),(331,42736,3,'Production Manager'),(331,57398,3,'Unit Production Manager'),(331,61523,2,'Assistant Director'),(331,84962,3,'Production Coordinator'),(331,91941,9,'Unit Publicist'),(331,96746,1,'Steadicam Operator'),(331,104374,9,'Loader'),(331,1056660,11,'Best Boy Electric'),(331,1290740,3,'Casting'),(331,1305602,3,'Researcher'),(331,1327146,8,'Costume Supervisor'),(331,1334778,7,'Construction Coordinator'),(331,1334779,9,'Property Master'),(331,1339446,6,'Sound Effects Editor'),(331,1397483,3,'Associate Producer'),(331,1397846,10,'Visual Effects Supervisor'),(331,1399327,6,'Music Editor'),(331,1399899,1,'Helicopter Camera'),(331,1400082,1,'Still Photographer'),(331,1400548,7,'Sculptor'),(331,1402015,8,'Key Hair Stylist'),(331,1403418,9,'Transportation Coordinator'),(331,1405373,8,'Hairstylist'),(331,1405717,6,'Supervising Sound Editor'),(331,1408365,2,'Script Supervisor'),(331,1409281,8,'Set Costumer'),(331,1413092,6,'First Assistant Sound Editor'),(331,1413179,10,'Visual Effects Producer'),(331,1415620,9,'Visual Effects Editor'),(331,1415635,11,'Rigging Gaffer'),(331,1418481,10,'Animation Supervisor'),(331,1421666,7,'Art Department Coordinator'),(331,1422059,7,'Greensman'),(331,1423865,1,'Underwater Camera'),(331,1452634,5,'First Assistant Editor'),(331,1460621,10,'VFX Production Coordinator'),(331,1462675,9,'Stunt Coordinator'),(331,1463765,9,'Video Assist Operator'),(331,1509364,5,'Dialogue Editor'),(331,1525985,8,'Makeup Artist'),(331,1530870,9,'Post Production Supervisor'),(331,1538705,6,'Production Sound Mixer'),(331,1546810,9,'Special Effects Coordinator'),(331,1550576,1,'First Assistant Camera'),(331,1558221,3,'Production Supervisor'),(331,1567976,9,'Transportation Co-Captain'),(331,1570750,9,'Driver'),(331,1586946,6,'Boom Operator'),(331,1594959,11,'Rigging Grip'),(331,1594960,3,'Production Accountant'),(331,1611791,9,'Projection'),(331,1627959,4,'Storyboard'),(331,1627977,9,'Propmaker'),(331,1638040,9,'Studio Teachers'),(331,1640477,7,'Art Department Assistant'),(331,1640478,7,'Construction Foreman'),(331,1640479,7,'Set Decoration Buyer'),(331,1640482,7,'Set Designer'),(331,1640485,7,'Standby Painter'),(331,1640486,8,'Set Dressing Artist'),(331,1640487,9,'CG Supervisor'),(331,1640488,9,'Craft Service'),(331,1640489,9,'Makeup Effects'),(331,1640490,9,'Software Engineer'),(331,1640491,11,'Electrician'),(331,1640492,11,'Gaffer'),(331,1640493,11,'Lighting Technician'),(331,1640494,3,'Casting Associate'),(331,1640495,3,'Location Manager'),(331,1640909,10,'Digital Compositors'),(331,1640910,10,'Visual Effects'),(331,1640911,10,'Visual Effects Coordinator'),(331,1640915,9,'Sound Design Assistant'),(331,1640918,6,'Sound'),(8204,8376,6,'Sound Designer'),(8204,511,3,'Producer'),(8204,493,5,'Editor'),(8204,498,8,'Costume Design'),(8204,599,3,'Casting'),(8204,1729,6,'Original Music Composer'),(8204,4657,10,'Special Effects Supervisor'),(8204,6883,6,'Music Editor'),(8204,6922,7,'Art Direction'),(8204,7727,10,'Animation Supervisor'),(8204,8704,7,'Supervising Art Director'),(8204,9967,7,'Production Design'),(8204,8750,1,'Director of Photography'),(8204,9558,9,'Stunt Coordinator'),(8204,11300,10,'Visual Effects Supervisor'),(8204,13223,5,'Color Timer'),(8204,15445,9,'Special Sound Effects'),(8204,23545,3,'Casting'),(8204,46088,3,'Producer'),(8204,52845,4,'Screenplay'),(8204,52845,3,'Producer'),(8204,54050,2,'Director'),(8204,54051,4,'Screenplay'),(8204,54052,3,'Executive Producer'),(8204,54052,4,'Novel'),(8204,8312,3,'Executive Producer'),(8204,8312,4,'Novel'),(8204,60268,3,'Executive Producer'),(8204,102445,4,'Screenplay'),(8204,92246,3,'Production Coordinator'),(8204,93258,10,'Special Effects Supervisor'),(8204,140248,3,'Co-Producer'),(8204,176246,9,'Makeup Effects'),(8204,961452,8,'Costume Design'),(8204,1072821,9,'Transportation Co-Captain'),(8204,1102209,3,'Co-Producer'),(8204,1204225,7,'Set Designer'),(8204,1204836,5,'Dialogue Editor'),(8204,1257754,3,'Producer'),(8204,1324036,3,'Casting Associate'),(8204,1326401,8,'Makeup Department Head'),(8204,1327222,7,'Set Decoration'),(8204,1327907,7,'Art Direction'),(8204,1332292,5,'Assistant Editor'),(8204,1338976,6,'Sound Re-Recording Mixer'),(8204,1341268,10,'Visual Effects Producer'),(8204,1351413,9,'Dialect Coach'),(8204,1364410,5,'Dialogue Editor'),(8204,1364412,6,'Sound Effects Editor'),(8204,1370949,5,'Dialogue Editor'),(8204,1377225,10,'Visual Effects Supervisor'),(8204,1380382,7,'Art Direction'),(8204,1384362,7,'Set Designer'),(8204,1384399,3,'Location Manager'),(8204,1391751,7,'Set Designer'),(8204,1391756,7,'Set Designer'),(8204,1391763,9,'Property Master'),(8204,1391822,9,'Special Sound Effects'),(8204,1392106,1,'Still Photographer'),(8204,1394740,7,'Art Department Coordinator'),(8204,1394760,2,'Script Supervisor'),(8204,1397483,3,'Associate Producer'),(8204,1399326,6,'Music Editor'),(8204,1401273,9,'Unit Publicist'),(8204,1401687,6,'Sound Re-Recording Mixer'),(8204,1402032,1,'Camera Operator'),(8204,1402032,1,'Steadicam Operator'),(8204,1403706,1,'Camera Operator'),(8204,1409696,7,'Art Direction'),(8204,1409702,7,'Set Designer'),(8204,1436493,8,'Key Hair Stylist'),(8204,1447119,7,'Set Decoration'),(8204,1447120,7,'Set Decoration'),(8204,1458995,9,'Special Sound Effects'),(8204,1460643,10,'Visual Effects Coordinator'),(8204,1473756,3,'Production Manager'),(8204,1473756,3,'Co-Producer'),(8204,1477155,3,'Associate Producer'),(8204,1482882,7,'Set Designer'),(8204,1519865,7,'Art Department Coordinator'),(8204,1544670,5,'First Assistant Editor'),(8204,1550775,9,'Visual Effects Editor'),(8204,1611794,9,'Stunt Coordinator'),(8204,1684368,3,'Unit Manager'),(8204,1700837,9,'Transportation Captain'),(8204,1700839,9,'Transportation Coordinator'),(8204,1708290,7,'Set Designer'),(8204,1708304,8,'Hairstylist'),(8204,1725882,3,'Co-Producer'),(8204,1725883,5,'Additional Editing'),(8204,1725884,9,'Stunt Coordinator'),(8204,1725885,7,'Set Designer'),(8204,1725886,7,'Set Designer'),(8204,1725887,6,'Sound Mixer'),(8204,1725888,6,'Boom Operator'),(8204,1725889,8,'Assistant Costume Designer'),(8204,1725891,4,'Storyboard'),(8204,1725892,4,'Storyboard'),(8204,1725893,9,'Post Production Supervisor'),(9806,7879,3,'Executive Producer'),(9806,7880,3,'Associate Producer'),(9806,7883,7,'Art Direction'),(9806,7896,9,'Supervising Technical Director'),(9806,7901,3,'Associate Producer'),(9806,7901,3,'Production Manager'),(9806,7903,3,'Casting'),(9806,7929,10,'Animation'),(9806,7942,7,'Art Direction'),(9806,7942,10,'Shading'),(9806,7952,10,'Visual Effects'),(9806,7962,7,'Production Design'),(9806,7975,1,'Director of Photography'),(9806,7978,1,'Camera Operator'),(9806,7980,2,'Layout'),(9806,8003,9,'Production Artist'),(9806,8007,8,'Set Dressing Artist'),(9806,8012,9,'Supervising Animator'),(9806,8013,10,'Animation'),(9806,8042,10,'Animation'),(9806,8061,10,'Animation Department Coordinator'),(9806,8074,5,'First Assistant Editor'),(9806,8080,5,'Assistant Editor'),(9806,8089,10,'Modeling'),(9806,8104,1,'Director of Photography'),(9806,8109,11,'Master Lighting Artist'),(9806,8112,3,'Production Coordinator'),(9806,8147,3,'Production Office Coordinator'),(9806,8150,9,'Information Systems Manager'),(9806,8153,9,'Post Production Supervisor'),(9806,8155,9,'Projection'),(9806,8158,6,'Supervising Sound Editor'),(9806,8166,9,'Mix Technician'),(9806,15893,6,'Sound Effects Editor'),(9806,15895,10,'Shading'),(9806,15347,6,'Original Music Composer'),(9806,15354,6,'Music Editor'),(9806,7087,2,'Director'),(9806,7087,4,'Author'),(9806,42267,6,'Sound Designer'),(9806,57673,3,'Casting'),(9806,33340,3,'Producer'),(9806,59362,1,'Director of Photography'),(9806,59362,10,'Visual Effects'),(9806,59363,5,'Editor'),(9806,59745,3,'Casting'),(9806,61419,3,'Casting'),(9806,74811,6,'Scoring Mixer'),(9806,107704,10,'Animation'),(9806,143786,9,'Thanks'),(9806,1117781,9,'Thanks'),(9806,1140576,10,'Animation'),(9806,1203534,9,'Special Effects'),(9806,1249293,10,'Visual Development'),(9806,1260745,9,'Supervising Animator'),(9806,1262437,10,'Fix Animator'),(9806,1413172,6,'Foley'),(9806,1442510,10,'Special Effects Supervisor'),(9806,1450317,9,'Technical Supervisor'),(9806,1450347,4,'Storyboard'),(9806,1460426,11,'Lighting Manager'),(9806,1461369,6,'ADR & Dubbing'),(9806,1463239,7,'Set Designer'),(9806,1485788,10,'Simulation & Effects Artist'),(9806,1516157,7,'Art Department Coordinator'),(9806,1532774,6,'Orchestrator'),(9806,1552873,5,'Color Timer'),(9806,1703199,3,'Production Accountant'),(9806,1719067,9,'Craft Service'),(9806,1719077,9,'Security'),(9806,1719078,9,'Sequence Supervisor'),(9806,1719080,9,'Set Production Assistant'),(9806,1719082,9,'Software Engineer'),(9806,1719083,9,'Sound Recordist'),(9806,1719084,9,'Systems Administrators & Support'),(9806,1719085,2,'Script Supervisor'),(9806,1719088,11,'Lighting Artist'),(9806,1719089,11,'Lighting Technician'),(9806,1719095,10,'Animation Manager'),(9806,1719096,10,'Visual Effects Producer'),(9806,1719097,7,'Art Department Manager'),(9806,1719099,5,'Editorial Manager'),(9806,1719100,5,'Editorial Services'),(9806,1719101,10,'Modeling'),(9806,1719102,10,'CG Painter'),(1408,2044,1,'Director of Photography'),(1408,8383,7,'Set Decoration'),(1408,391,7,'Production Design'),(1408,3986,3,'Executive Producer'),(1408,7228,3,'Producer'),(1408,6044,3,'Casting'),(1408,10685,3,'Producer'),(1408,14590,8,'Costume Design'),(1408,16938,2,'Director'),(1408,16938,3,'Producer'),(1408,22706,3,'Producer'),(1408,22706,4,'Story'),(1408,21203,4,'Story'),(1408,20061,4,'Screenplay'),(1408,1224549,4,'Screenplay'),(1408,1368867,10,'Special Effects Supervisor'),(607,495,3,'Casting'),(607,488,3,'Executive Producer'),(607,531,6,'Original Music Composer'),(607,903,7,'Set Designer'),(607,1482,2,'First Assistant Director'),(607,1638,6,'Sound Designer'),(607,2212,3,'Producer'),(607,4032,7,'Set Decoration'),(607,10573,1,'Camera Operator'),(607,5133,7,'Production Design'),(607,5174,2,'Director'),(607,5490,3,'Casting'),(607,7146,7,'Art Direction'),(607,9614,1,'Director of Photography'),(607,8701,3,'Producer'),(607,8355,9,'Transportation Co-Captain'),(607,8682,7,'Painter'),(607,9612,4,'Screenplay'),(607,9613,4,'Novel'),(607,9615,5,'Editor'),(607,9616,8,'Costume Design'),(607,9617,8,'Makeup Artist'),(607,9618,7,'Set Designer'),(607,9619,6,'Supervising Sound Editor'),(607,9619,6,'Sound Re-Recording Mixer'),(607,9620,9,'Special Effects'),(607,9621,9,'Special Effects Coordinator'),(607,9622,10,'Visual Effects Supervisor'),(607,9622,9,'Second Unit Cinematographer'),(607,9623,9,'Stunts'),(607,9624,9,'Stunts'),(607,11113,9,'Second Unit Cinematographer'),(607,15315,6,'Music Editor'),(607,15317,10,'Visual Effects Coordinator'),(607,15335,9,'Stunt Coordinator'),(607,18123,8,'Assistant Costume Designer'),(607,20169,3,'Unit Production Manager'),(607,20169,3,'Co-Producer'),(607,42264,10,'Visual Effects Producer'),(607,30148,6,'Sound Designer'),(607,41591,1,'Camera Operator'),(607,113075,6,'Sound Designer'),(607,66690,8,'Hairstylist'),(607,60450,6,'Orchestrator'),(607,67596,1,'Aerial Camera'),(607,92375,6,'Foley'),(607,92376,6,'Foley'),(607,92377,6,'Sound Re-Recording Mixer'),(607,92380,6,'Sound Effects Editor'),(607,92387,6,'Assistant Sound Editor'),(607,73667,1,'Camera Operator'),(607,79535,9,'Executive Music Producer'),(607,223239,6,'Production Sound Mixer'),(607,224388,7,'Assistant Art Director'),(607,1096860,7,'Standby Painter'),(607,1217577,9,'Utility Stunts'),(607,1271933,9,'Unit Publicist'),(607,1324652,1,'Still Photographer'),(607,1328406,8,'Costume Supervisor'),(607,1328415,9,'Stand In'),(607,1337461,6,'Sound Re-Recording Mixer'),(607,1357070,9,'Transportation Captain'),(607,1377215,7,'Property Master'),(607,1395368,11,'Gaffer'),(607,1395373,2,'Script Supervisor'),(607,1401108,9,'Visual Effects Art Director'),(607,1404892,7,'Sculptor'),(607,1413153,7,'Construction Coordinator'),(607,1413159,7,'Leadman'),(607,1418399,9,'Second Unit Cinematographer'),(607,1422054,8,'Makeup Artist'),(607,1423864,4,'Storyboard'),(607,1424138,3,'Location Manager'),(607,1442512,9,'Visual Effects Editor'),(607,1445426,10,'Animation Supervisor'),(607,1445895,1,'Camera Operator'),(607,1447010,3,'Production Supervisor'),(607,1463491,9,'Digital Effects Supervisor'),(607,1465015,5,'First Assistant Editor'),(607,1477258,3,'Associate Producer'),(607,1534638,5,'Dialogue Editor'),(607,1535953,2,'Script Supervisor'),(607,1536386,11,'Rigging Grip'),(607,1536555,10,'Visual Effects Coordinator'),(607,1536771,8,'Key Hair Stylist'),(607,1546840,1,'Steadicam Operator'),(607,1547024,6,'Music Supervisor'),(607,1550186,10,'Creature Design'),(607,1550187,10,'Creature Design'),(607,1550188,9,'Digital Effects Supervisor'),(607,1550189,9,'Digital Effects Supervisor'),(607,1550190,10,'Special Effects Supervisor'),(607,1550191,1,'Camera Operator'),(607,1550194,11,'Rigging Gaffer'),(607,1550195,11,'Rigging Grip'),(607,1550196,1,'First Assistant Camera'),(607,1550197,1,'First Assistant Camera'),(607,1550198,1,'First Assistant Camera'),(607,1550199,8,'Set Costumer'),(607,1550200,5,'Dialogue Editor'),(607,1550201,6,'Sound Effects Editor'),(607,1554309,11,'Best Boy Electric'),(607,1562242,7,'Construction Foreman'),(607,1586934,9,'Video Assist Operator'),(607,1619972,7,'Production Illustrator'),(607,1622119,3,'Production Accountant'),(607,1630675,5,'Color Timer'),(607,1637977,7,'Greensman'),(607,1640488,9,'Craft Service'),(607,1695261,9,'Set Production Assistant'),(607,1738150,1,'Grip'),(607,1763771,11,'Lighting Technician'),(607,1794869,8,'Set Dressing Artist'),(607,1806750,11,'Electrician'),(607,1852095,6,'Boom Operator'),(607,1876351,7,'Location Scout'),(607,1876354,1,'Key Grip'),(607,1876355,9,'Carpenter'),(607,1876356,9,'Driver'),(607,1876357,9,'Propmaker'),(607,1876358,3,'Production Coordinator'),(607,1876359,10,'I/O Supervisor'),(863,7,4,'Screenplay'),(863,7,4,'Original Story'),(863,8,5,'Editor'),(863,8,2,'Co-Director'),(863,9,3,'Production Manager'),(863,7879,2,'Director'),(863,7879,4,'Original Story'),(863,12914,5,'Editor'),(863,1918,5,'Additional Editing'),(863,2216,6,'Sound Designer'),(863,2216,6,'Sound Re-Recording Mixer'),(863,7881,10,'Character Designer'),(863,7885,6,'Music'),(863,7885,6,'Orchestrator'),(863,7886,5,'Additional Editing'),(863,7888,10,'Visual Development'),(863,7892,9,'Supervising Animator'),(863,7893,10,'Animation'),(863,7894,11,'Lighting Supervisor'),(863,7898,7,'Set Dresser'),(863,7902,3,'Casting'),(863,7903,3,'Casting'),(863,7918,10,'Character Designer'),(863,7921,10,'Character Designer'),(863,7929,10,'Animation'),(863,7942,7,'Art Direction'),(863,7942,10,'Shading'),(863,7943,10,'CG Painter'),(863,7944,10,'CG Painter'),(863,7948,10,'CG Painter'),(863,7949,10,'CG Painter'),(863,7952,10,'CG Painter'),(863,7952,10,'Character Designer'),(863,7956,10,'Character Designer'),(863,7960,7,'Sculptor'),(863,7961,7,'Sculptor'),(863,7980,2,'Layout'),(863,7980,7,'Set Dresser'),(863,7981,2,'Layout'),(863,7984,2,'Layout'),(863,7995,10,'Animation'),(863,7996,10,'Animation'),(863,7998,10,'Animation'),(863,7999,10,'Animation'),(863,8002,7,'Set Dresser'),(863,8007,8,'Set Dressing Supervisor'),(863,8010,10,'Animation'),(863,8011,10,'Animation'),(863,8013,10,'Animation'),(863,8017,10,'Animation'),(863,8018,10,'Animation'),(863,8019,10,'Animation'),(863,8020,10,'Animation'),(863,8021,10,'Animation'),(863,8023,10,'Animation Director'),(863,8024,10,'Animation'),(863,8025,10,'Animation'),(863,8026,10,'Animation'),(863,8029,10,'Animation'),(863,8030,10,'Animation'),(863,8031,10,'Animation'),(863,8033,10,'Animation'),(863,8034,10,'Animation'),(863,8036,10,'Animation'),(863,8037,10,'Animation'),(863,8039,10,'Animation'),(863,8041,10,'Animation'),(863,8043,10,'Animation'),(863,8044,10,'Animation'),(863,8045,10,'Animation'),(863,8047,10,'Animation'),(863,8048,10,'Animation'),(863,8049,10,'Animation'),(863,8050,10,'Animation'),(863,8051,10,'Animation'),(863,8052,10,'Animation'),(863,8054,10,'Animation'),(863,8055,10,'Animation'),(863,8056,10,'Animation'),(863,8058,10,'Fix Animator'),(863,8063,5,'Additional Editing'),(863,8064,9,'Second Film Editor'),(863,8065,5,'Additional Editorial Assistant'),(863,8066,5,'Additional Editorial Assistant'),(863,8071,5,'Additional Editorial Assistant'),(863,8073,5,'Additional Editorial Assistant'),(863,8074,5,'Additional Editorial Assistant'),(863,8075,5,'Additional Editorial Assistant'),(863,8076,5,'Additional Editorial Assistant'),(863,8134,1,'Camera Department Manager'),(863,8135,1,'Camera Supervisor'),(863,8138,1,'Camera Technician'),(863,8142,3,'Production Accountant'),(863,8153,9,'Post Production Supervisor'),(863,8158,6,'Supervising Sound Editor'),(863,8159,6,'Sound Effects Editor'),(863,8172,6,'Supervising Music Editor'),(863,12890,4,'Original Story'),(863,12905,4,'Original Story'),(863,12905,2,'Co-Director'),(863,12905,10,'Character Designer'),(863,12905,10,'Animation'),(863,12906,4,'Screenplay'),(863,12907,4,'Screenplay'),(863,12908,4,'Screenplay'),(863,12909,3,'Producer'),(863,12910,3,'Executive Producer'),(863,12911,3,'Producer'),(863,12912,1,'Director of Photography'),(863,12913,5,'Editor'),(863,12915,7,'Production Design'),(863,12916,7,'Production Design'),(863,12916,10,'Character Designer'),(863,15893,6,'Sound Effects Editor'),(863,15894,6,'Sound Designer'),(863,16497,6,'Music Editor'),(863,7899,9,'Supervising Technical Director'),(863,21637,6,'Orchestrator'),(863,113055,5,'Additional Editing'),(863,84493,3,'ADR Voice Casting'),(863,78009,10,'Character Designer'),(863,189120,10,'Animation'),(863,231202,10,'Animation Director'),(863,384204,10,'Animation'),(863,555795,10,'Animation'),(863,953331,9,'Executive Music Producer'),(863,1092247,10,'Animation'),(863,1108501,5,'First Assistant Editor'),(863,1122223,9,'Temp Music Editor'),(863,1122225,9,'Temp Music Editor'),(863,1140576,10,'Animation'),(863,1205975,10,'Animation'),(863,1249957,10,'Animation'),(863,1258222,10,'Visual Development'),(863,1262197,10,'Animation'),(863,1321700,10,'Visual Development'),(863,1391429,10,'Animation'),(863,1397887,7,'Set Dresser'),(863,1401794,5,'Additional Editorial Assistant'),(863,1404532,5,'Additional Editorial Assistant'),(863,1406885,10,'Animation'),(863,1425978,6,'Sound Re-Recording Mixer'),(863,1429549,5,'Color Timer'),(863,1443479,3,'Production Office Coordinator'),(863,1458006,7,'Title Designer'),(863,1459760,2,'Layout'),(863,1462679,10,'Animation'),(863,1508427,10,'Animation Department Coordinator'),(863,1552883,6,'Foley Editor'),(863,1623540,6,'Orchestrator'),(863,1623548,10,'Character Designer'),(863,1645696,10,'Animation'),(863,1742751,1,'Camera Technician'),(863,1748691,10,'Animation'),(863,1748707,2,'Layout'),(863,1748716,5,'Additional Editorial Assistant'),(863,1748724,6,'Foley Editor'),(863,1749735,7,'Art Department Manager'),(863,1749736,7,'Assistant Art Director'),(863,1749739,7,'Art Department Coordinator'),(863,1749740,2,'Layout'),(863,1749741,2,'Layout'),(863,1749742,2,'Layout'),(863,1749746,10,'Animation'),(863,1749748,10,'Animation'),(863,1749749,10,'Animation'),(863,1749757,10,'Animation'),(863,1749765,10,'Animation'),(863,1749766,10,'Animation'),(863,1749773,10,'Fix Animator'),(863,1749775,5,'Additional Editorial Assistant'),(863,1749778,5,'Additional Editorial Assistant'),(5175,545,3,'Casting'),(5175,1098,5,'Editor'),(5175,2507,1,'Director of Photography'),(5175,2689,4,'Screenplay'),(5175,6584,7,'Production Design'),(5175,9217,6,'Original Music Composer'),(5175,17886,5,'Editor'),(5175,11091,2,'Director'),(5175,21634,4,'Characters'),(5175,21639,3,'Casting'),(2655,37,6,'Original Music Composer'),(2655,24,2,'Director'),(2655,24,3,'Producer'),(2655,30,3,'Producer'),(2655,30,1,'Second Unit Director of Photography'),(2655,36,1,'Director of Photography'),(2655,38,5,'Editor'),(2655,488,4,'Idea'),(2655,496,7,'Production Design'),(2655,2242,3,'Casting'),(2655,3976,11,'Gaffer'),(2655,4150,8,'Costume Design'),(2655,7236,7,'Assistant Art Director'),(2655,5162,3,'Executive Producer'),(2655,20585,7,'Set Decoration'),(2655,8794,7,'Art Direction'),(2655,10955,3,'Associate Producer'),(2655,10955,3,'Unit Production Manager'),(2655,8164,6,'Foley'),(2655,8679,7,'Production Design'),(2655,9048,4,'Screenplay'),(2655,11174,6,'Supervising Sound Editor'),(2655,11712,3,'Executive Producer'),(2655,15149,4,'Story'),(2655,18143,3,'Production Coordinator'),(2655,23779,3,'Producer'),(2655,23780,1,'Camera Operator'),(2655,23780,1,'Steadicam Operator'),(2655,23781,5,'First Assistant Editor'),(2655,42265,3,'Production Supervisor'),(2655,42267,6,'Sound Designer'),(2655,32490,8,'Hairstylist'),(2655,42358,3,'Associate Producer'),(2655,51983,3,'Casting Associate'),(2655,55441,1,'Additional Photography'),(2655,55227,6,'Production Sound Mixer'),(2655,55228,6,'Boom Operator'),(2655,60934,9,'Post-Production Manager'),(2655,109994,3,'Location Manager'),(2655,109245,9,'Craft Service'),(2655,116691,3,'Casting'),(2655,579405,9,'Sound Design Assistant'),(2655,957115,8,'Costume Design'),(2655,957889,7,'Art Direction'),(2655,1096366,9,'Digital Effects Supervisor'),(2655,1177850,1,'Still Photographer'),(2655,1262129,2,'Script Supervisor'),(2655,1271933,9,'Unit Publicist'),(2655,1280435,10,'Special Effects Supervisor'),(2655,1291698,3,'Researcher'),(2655,1318476,9,'Mix Technician'),(2655,1325650,7,'Art Direction'),(2655,1325655,8,'Costume Supervisor'),(2655,1334424,9,'Propmaker'),(2655,1371100,9,'Visual Effects Editor'),(2655,1376897,7,'Construction Coordinator'),(2655,1394306,6,'Music Editor'),(2655,1399328,9,'Transportation Coordinator'),(2655,1400905,5,'Dialogue Editor'),(2655,1401363,9,'Stunt Coordinator'),(2655,1402022,7,'Leadman'),(2655,1402031,10,'Visual Effects Supervisor'),(2655,1404535,10,'Visual Effects Coordinator'),(2655,1414182,6,'ADR Supervisor'),(2655,1414886,6,'Sound Effects Editor'),(2655,1417398,8,'Key Hair Stylist'),(2655,1419099,9,'Carpenter'),(2655,1429244,7,'Set Designer'),(2655,1534934,7,'Property Master'),(2655,1535441,8,'Makeup Artist'),(2655,1540470,5,'Color Timer'),(2655,1548635,9,'Special Effects Coordinator'),(2655,1549198,7,'Art Department Coordinator'),(2655,1555639,9,'Transportation Captain'),(2655,1558210,9,'Production Controller'),(2655,1586927,9,'Post Production Assistant'),(2655,1595461,7,'Standby Painter'),(2655,1637977,7,'Greensman'),(2655,1638028,9,'Set Medic'),(2655,1644480,9,'Software Engineer'),(2655,1648168,9,'Stunts'),(2655,1681469,9,'Picture Car Coordinator'),(2655,1681474,11,'Electrician'),(2655,1700116,8,'Set Costumer'),(2655,1713059,11,'Rigging Grip'),(2655,1738176,10,'Digital Compositors'),(2655,1744652,7,'Construction Foreman'),(2655,1744654,7,'Location Scout'),(2655,1744655,7,'Set Decoration'),(2655,1744657,1,'First Assistant Camera'),(2655,1744658,1,'Key Grip'),(2655,1744664,1,'Underwater Camera'),(2655,1744664,2,'First Assistant Director'),(2655,1744665,8,'Seamstress'),(2655,1744667,8,'Set Dressing Artist'),(2655,1744669,9,'Additional Music'),(2655,1744672,9,'Driver'),(2655,1744673,9,'Loader'),(2655,1744674,9,'Projection'),(2655,1744675,9,'Scenic Artist'),(2655,1744677,9,'Set Production Assistant'),(2655,1744679,9,'Stand In'),(2655,1744680,9,'Systems Administrators & Support'),(2655,1744683,9,'Utility Stunts'),(2655,1744684,9,'Video Assist Operator'),(2655,1745313,5,'Editorial Production Assistant'),(2655,1745314,11,'Best Boy Electric'),(2655,1745316,11,'Rigging Gaffer'),(2655,1745318,3,'Production Accountant'),(2655,1745319,6,'Assistant Sound Editor'),(2655,1745321,4,'Storyboard'),(8355,5714,2,'Director'),(8355,5716,4,'Screenplay'),(8355,5717,4,'Screenplay'),(8355,5719,3,'Producer'),(8355,5718,3,'Producer'),(8355,11098,6,'Original Music Composer'),(8355,56284,5,'Editor'),(8355,87059,10,'Animation Supervisor'),(4327,1300,4,'Screenplay'),(4327,1588,3,'Producer'),(4327,69597,3,'Producer'),(4327,10570,3,'Executive Producer'),(4327,10630,6,'Sound Effects Editor'),(4327,6959,3,'Casting'),(4327,36425,2,'Director'),(4327,13304,7,'Production Design'),(4327,10957,5,'Editor'),(4327,8523,1,'Director of Photography'),(4327,9612,4,'Screenplay'),(4327,12842,3,'Producer'),(4327,14348,7,'Set Decoration'),(4327,14349,7,'Art Direction'),(4327,14350,7,'Art Direction'),(4327,11372,5,'Editor'),(4327,28715,3,'Executive Producer'),(4327,31024,3,'Executive Producer'),(4327,36426,4,'Screenplay'),(4327,36427,3,'Executive Producer'),(4327,36428,1,'Director of Photography'),(4327,36429,8,'Costume Design'),(4327,961165,3,'Casting'),(4327,1325235,8,'Costume Supervisor'),(4327,1340007,6,'Music Editor'),(4327,1342669,2,'Script Supervisor'),(4327,1384367,5,'Dialogue Editor'),(4327,1395255,6,'Sound Re-Recording Mixer'),(4327,1395447,6,'Sound Effects Editor'),(4327,1400556,6,'Sound Effects Editor'),(4327,1401562,6,'Sound Re-Recording Mixer'),(4327,1413095,6,'Supervising Sound Editor'),(4327,1453185,1,'Still Photographer'),(4327,1459789,10,'Visual Effects'),(4327,1461183,6,'Music Editor'),(4327,1471726,6,'Music Supervisor'),(4327,1536633,5,'Dialogue Editor'),(4327,1546115,6,'Production Sound Mixer'),(1422,117,6,'Music'),(1422,287,3,'Producer'),(1422,1032,2,'Director'),(1422,1298,3,'Producer'),(1422,1638,6,'Supervising Sound Editor'),(1422,1638,6,'Sound Effects Editor'),(1422,2242,3,'Casting'),(1422,3661,5,'Editor'),(1422,3769,1,'Director of Photography'),(1422,5333,8,'Makeup Artist'),(1422,6191,7,'Set Decoration'),(1422,6942,9,'Actor\'s Assistant'),(1422,7531,2,'Assistant Director'),(1422,9027,8,'Costume Design'),(1422,9178,7,'Production Design'),(1422,13050,9,'Dialect Coach'),(1422,15528,9,'Special Effects Coordinator'),(1422,15845,8,'Makeup Artist'),(1422,16729,3,'Producer'),(1422,34510,4,'Screenplay'),(1422,21035,3,'Executive Producer'),(1422,21036,3,'Executive Producer'),(1422,23226,3,'Executive Producer'),(1422,35630,11,'Electrician'),(1422,60190,9,'Post Production Supervisor'),(1422,66718,4,'Screenplay'),(1422,66719,4,'Screenplay'),(1422,92376,6,'Foley'),(1422,92386,6,'ADR & Dubbing'),(1422,91072,3,'Location Manager'),(1422,117206,8,'Hairstylist'),(1422,186721,10,'Visual Effects Producer'),(1422,388770,6,'ADR & Dubbing'),(1422,995189,1,'Camera Operator'),(1422,1073780,10,'Visual Effects Supervisor'),(1422,1074163,9,'Stunt Coordinator'),(1422,1193637,7,'Set Decoration'),(1422,1315700,8,'Makeup Artist'),(1422,1317645,7,'Art Direction'),(1422,1328380,8,'Costume Supervisor'),(1422,1332210,8,'Makeup Artist'),(1422,1333223,5,'Dialogue Editor'),(1422,1333223,6,'Supervising Sound Editor'),(1422,1338670,8,'Hairstylist'),(1422,1378672,7,'Construction Coordinator'),(1422,1380443,5,'Dialogue Editor'),(1422,1386920,1,'Still Photographer'),(1422,1391591,1,'Camera Operator'),(1422,1400072,6,'Sound Re-Recording Mixer'),(1422,1400081,1,'Camera Operator'),(1422,1402015,8,'Hairstylist'),(1422,1402031,10,'Visual Effects Supervisor'),(1422,1402037,6,'Music Editor'),(1422,1402039,2,'Script Supervisor'),(1422,1402040,9,'Unit Publicist'),(1422,1406596,7,'Assistant Art Director'),(1422,1406898,6,'Sound Effects Editor'),(1422,1407009,8,'Hairstylist'),(1422,1407205,5,'Digital Intermediate'),(1422,1414994,9,'Property Master'),(1422,1419095,7,'Construction Coordinator'),(1422,1422795,8,'Makeup Artist'),(1422,1422796,7,'Art Department Coordinator'),(1422,1422797,7,'Assistant Art Director'),(1422,1422798,8,'Costume Supervisor'),(1422,1422799,6,'Music Editor'),(1422,1422800,9,'Transportation Coordinator'),(1422,1457637,9,'Special Effects'),(1422,1553887,6,'Foley'),(1422,1555017,9,'Special Effects'),(1422,1647723,9,'Stunts'),(7446,2445,3,'Producer'),(7446,15009,4,'Screenplay'),(7446,15009,3,'Executive Producer'),(7446,15009,4,'Story'),(7446,6410,3,'Casting'),(7446,2483,1,'Director of Photography'),(7446,3989,8,'Costume Design'),(7446,14608,7,'Set Designer'),(7446,7233,7,'Production Design'),(7446,10572,6,'Original Music Composer'),(7446,7399,4,'Screenplay'),(7446,7399,2,'Director'),(7446,7399,3,'Producer'),(7446,7399,4,'Story'),(7446,19156,3,'Casting'),(7446,8285,7,'Art Direction'),(7446,11508,7,'Art Direction'),(7446,14376,5,'Editor'),(7446,22302,3,'Producer'),(7446,33625,7,'Set Decoration'),(7446,52803,4,'Screenplay'),(7446,73823,3,'Associate Producer'),(7446,994550,7,'Title Designer'),(7446,1074886,3,'Producer'),(7446,1319135,7,'Set Designer'),(7446,1322481,7,'Set Designer'),(7446,1336716,10,'Visual Effects'),(7446,1344279,3,'Unit Production Manager'),(7446,1345624,3,'Location Manager'),(7446,1382498,3,'Production Supervisor'),(7446,1402013,3,'Location Manager'),(7446,1418491,2,'Script Supervisor'),(7446,1424154,7,'Set Designer'),(7446,1440737,3,'Casting Associate'),(7446,1777672,3,'Casting Assistant'),(7446,1777694,3,'Production Coordinator'),(1572,8376,6,'Sound Designer'),(1572,876,4,'Screenplay'),(1572,1090,2,'Director'),(1572,1090,3,'Producer'),(1572,4188,7,'Set Decoration'),(1572,7670,4,'Screenplay'),(1572,7714,6,'Original Music Composer'),(1572,7716,7,'Production Design'),(1572,7717,7,'Art Direction'),(1572,8752,5,'Editor'),(1572,9440,6,'Foley'),(1572,12882,3,'Executive Producer'),(1572,13932,3,'Casting'),(1572,17629,1,'Director of Photography'),(1572,17630,3,'Producer'),(1572,21220,3,'Co-Producer'),(1572,29067,8,'Makeup Artist'),(1572,29067,8,'Hairstylist'),(1572,36429,8,'Costume Design'),(1572,56967,3,'Executive Producer'),(1572,60014,7,'Assistant Art Director'),(1572,92393,9,'Special Effects Coordinator'),(1572,1128238,3,'Co-Producer'),(1572,1169459,10,'Visual Effects Producer'),(1572,1329414,7,'Art Direction'),(1572,1370949,6,'ADR & Dubbing'),(1572,1378227,6,'Sound Re-Recording Mixer'),(1572,1391571,6,'Sound Re-Recording Mixer'),(1572,1395330,7,'Set Designer'),(1572,1397881,8,'Hairstylist'),(1572,1399141,6,'Sound Re-Recording Mixer'),(1572,1399989,7,'Construction Coordinator'),(1572,1400819,9,'Visual Effects Art Director'),(1572,1410345,9,'Property Master'),(1572,1411706,3,'Associate Producer'),(1572,1422057,7,'Construction Coordinator'),(1572,1430210,8,'Hairstylist'),(1572,1430211,8,'Hairstylist'),(1572,1430212,8,'Makeup Artist'),(1572,1430213,8,'Makeup Artist'),(1572,1430229,9,'Property Master'),(1572,1430231,7,'Set Designer'),(1572,1430232,9,'Sound Recordist'),(1572,1430233,9,'Visual Effects Editor'),(1572,1430234,9,'Visual Effects Editor'),(1572,1430235,10,'Visual Effects Producer'),(1572,1430236,10,'Visual Effects Producer'),(1572,1430237,10,'Visual Effects Supervisor'),(1572,1460574,3,'Executive Producer'),(2253,498,8,'Costume Design'),(2253,3276,3,'Casting'),(2253,9199,7,'Production Design'),(2253,14608,7,'Supervising Art Director'),(2253,10953,3,'Producer'),(2253,8646,7,'Supervising Art Director'),(2253,9032,2,'Director'),(2253,9032,3,'Producer'),(2253,9033,4,'Screenplay'),(2253,9033,3,'Producer'),(2253,9039,6,'Original Music Composer'),(2253,9039,5,'Editor'),(2253,9039,3,'Executive Producer'),(2253,9040,1,'Director of Photography'),(2253,40752,7,'Art Direction'),(2253,12035,7,'Production Design'),(2253,15017,8,'Makeup Artist'),(2253,21846,7,'Set Decoration'),(2253,23228,4,'Screenplay'),(2253,1324460,7,'Supervising Art Director'),(2253,1324461,8,'Costume Supervisor'),(2253,1324462,8,'Costume Supervisor'),(2253,1368867,10,'Special Effects Supervisor'),(2253,1378226,6,'Sound Re-Recording Mixer'),(2253,1552521,9,'Stunts'),(2253,1690335,8,'Makeup Artist'),(2253,1690335,8,'Hairstylist'),(644,491,6,'Original Music Composer'),(644,2952,3,'Casting'),(644,488,4,'Screenplay'),(644,488,2,'Director'),(644,488,3,'Producer'),(644,489,3,'Producer'),(644,492,1,'Director of Photography'),(644,493,5,'Editor'),(644,496,7,'Production Design'),(644,555,7,'Set Decoration'),(644,2210,3,'Producer'),(644,2212,3,'Executive Producer'),(644,2216,6,'Sound Designer'),(644,2216,6,'Supervising Sound Editor'),(644,2530,8,'Costume Design'),(644,3993,10,'Visual Effects Supervisor'),(644,7236,7,'Assistant Art Director'),(644,5016,3,'Executive Producer'),(644,5338,6,'Sound Effects Editor'),(644,7764,6,'Supervising Sound Editor'),(644,8160,6,'Foley'),(644,8163,6,'Foley'),(644,8285,7,'Art Direction'),(644,8679,7,'Art Direction'),(644,9264,2,'First Assistant Director'),(644,9635,4,'Short Story'),(644,9636,4,'Screenstory'),(644,9639,7,'Art Direction'),(644,15893,6,'Sound Effects Editor'),(644,15017,8,'Makeup Artist'),(644,14350,7,'Set Designer'),(644,19863,7,'Assistant Art Director'),(644,20846,5,'First Assistant Editor'),(644,42265,3,'Production Supervisor'),(644,34526,7,'Sculptor'),(644,60109,3,'Casting Assistant'),(644,60261,9,'Animatronics Designer'),(644,66142,6,'Music Editor'),(644,75380,6,'Boom Operator'),(644,83071,2,'Second Assistant Director'),(644,91144,6,'Scoring Mixer'),(644,91146,6,'Orchestrator'),(644,93258,10,'Special Effects Supervisor'),(644,109994,3,'Location Manager'),(644,109245,9,'Craft Service'),(644,128103,3,'Unit Production Manager'),(644,142157,9,'Stunt Coordinator'),(644,162532,7,'Set Designer'),(644,202711,1,'Grip'),(644,210110,9,'Special Effects'),(644,406204,8,'Key Makeup Artist'),(644,936669,7,'Art Department Coordinator'),(644,963355,7,'Assistant Art Director'),(644,1095994,6,'Sound Mixer'),(644,1108501,9,'Visual Effects Editor'),(644,1171098,7,'Set Designer'),(644,1271735,7,'Assistant Art Director'),(644,1319750,7,'Set Designer'),(644,1321004,8,'Costume Supervisor'),(644,1325650,7,'Assistant Art Director'),(644,1327842,5,'Assistant Editor'),(644,1338976,6,'Sound Re-Recording Mixer'),(644,1339432,9,'Post Production Supervisor'),(644,1341850,7,'Set Designer'),(644,1341865,2,'Script Supervisor'),(644,1357070,9,'Transportation Coordinator'),(644,1376897,7,'Construction Coordinator'),(644,1378236,10,'Visual Effects Supervisor'),(644,1378726,9,'Dialect Coach'),(644,1378825,7,'Set Designer'),(644,1389139,1,'Still Photographer'),(644,1389534,5,'Dialogue Editor'),(644,1389540,11,'Chief Lighting Technician'),(644,1390534,10,'Visual Effects Producer'),(644,1392116,7,'Set Designer'),(644,1395463,1,'Camera Operator'),(644,1398972,1,'Underwater Camera'),(644,1400065,7,'Set Designer'),(644,1400847,8,'Key Hair Stylist'),(644,1400848,7,'Art Department Coordinator'),(644,1400849,9,'Property Master'),(644,1400852,7,'Sculptor'),(644,1400853,7,'Construction Foreman'),(644,1400854,7,'Greensman'),(644,1400855,7,'Greensman'),(644,1400856,7,'Greensman'),(644,1400857,7,'Greensman'),(644,1400905,5,'Dialogue Editor'),(644,1400906,6,'Sound Effects Editor'),(644,1401105,9,'Visual Effects Editor'),(644,1401106,10,'Visual Effects Supervisor'),(644,1401107,10,'Visual Effects Producer'),(644,1401108,9,'Visual Effects Art Director'),(644,1401109,1,'Camera Operator'),(644,1401109,1,'Steadicam Operator'),(644,1401117,3,'Publicist'),(644,1401118,9,'Choreographer'),(644,1405241,1,'Aerial Director of Photography'),(644,1414996,7,'Set Dresser'),(644,1425320,9,'Video Assist Operator'),(644,1426773,10,'Animation Supervisor'),(644,1429549,5,'Color Timer'),(644,1449172,6,'Foley Editor'),(644,1450333,3,'Assistant Production Coordinator'),(644,1456474,6,'ADR Supervisor'),(644,1463323,4,'Storyboard'),(644,1531566,9,'Carpenter'),(644,1550636,8,'Hairstylist'),(644,1561360,5,'Editorial Services'),(644,1570740,1,'Key Grip'),(644,1573468,10,'Digital Compositors'),(644,1586079,8,'Key Costumer'),(644,1595459,7,'Painter'),(644,1595460,7,'Production Illustrator'),(644,1595461,7,'Standby Painter'),(644,1595462,1,'First Assistant Camera'),(644,1595467,9,'Driver'),(644,1595468,1,'Camera Loader'),(644,1595469,9,'Makeup Effects'),(644,1595470,9,'Mix Technician'),(644,1595471,9,'Post Production Assistant'),(644,1595472,9,'Projection'),(644,1595473,9,'Propmaker'),(644,1595474,9,'Sequence Supervisor'),(644,1595475,9,'Set Production Assistant'),(644,1595476,9,'Stand In'),(644,1595477,9,'Stunts'),(644,1595478,9,'Utility Stunts'),(644,1595479,2,'Layout'),(644,1595482,11,'Best Boy Electric'),(644,1595483,11,'Electrician'),(644,1595484,11,'Gaffer'),(644,1595485,11,'Lighting Technician'),(644,1595486,11,'Rigging Gaffer'),(644,1595487,11,'Rigging Grip'),(644,1595488,3,'Production Accountant'),(644,1595489,3,'Production Coordinator'),(644,1595491,10,'3D Supervisor'),(644,1595492,10,'Visual Effects Coordinator'),(644,1705810,8,'Hair Supervisor'),(644,1733142,5,'Negative Cutter'),(644,1741194,6,'Musician'),(644,1776549,7,'Title Designer'),(644,1837365,7,'Assistant Property Master'),(644,1837424,1,'Dolly Grip'),(644,1837822,8,'Tailor'),(686,37,6,'Original Music Composer'),(686,24,2,'Director'),(686,24,3,'Producer'),(686,30,3,'Producer'),(686,30,9,'Second Unit Cinematographer'),(686,36,1,'Director of Photography'),(686,38,5,'Editor'),(686,497,7,'Assistant Art Director'),(686,498,8,'Costume Design'),(686,903,7,'Art Direction'),(686,1061,5,'Additional Editing'),(686,1324,3,'Casting'),(686,2162,3,'Executive Producer'),(686,3976,11,'Lighting Technician'),(686,3996,6,'Sound Re-Recording Mixer'),(686,4953,7,'Production Design'),(686,10295,4,'Screenplay'),(686,10296,4,'Screenplay'),(686,7537,6,'Sound Effects Editor'),(686,8158,5,'Dialogue Editor'),(686,8160,6,'Foley'),(686,8705,7,'Assistant Art Director'),(686,9439,6,'Foley'),(686,11166,6,'Orchestrator'),(686,11300,10,'Digital Compositors'),(686,10293,4,'Novel'),(686,10293,4,'Story'),(686,10293,3,'Co-Producer'),(686,11712,3,'Executive Producer'),(686,11712,3,'Unit Production Manager'),(686,14049,9,'Stunt Coordinator'),(686,14050,9,'Stunts'),(686,13050,9,'Dialect Coach'),(686,13930,2,'Assistant Director'),(686,15893,6,'Sound Effects Editor'),(686,42030,8,'Prosthetic Makeup Artist'),(686,21796,7,'Assistant Art Director'),(686,13434,7,'Art Direction'),(686,22486,9,'Property Master'),(686,23781,5,'First Assistant Editor'),(686,23787,8,'Makeup Artist'),(686,42267,6,'Sound Designer'),(686,42267,6,'Sound Re-Recording Mixer'),(686,42268,10,'Visual Effects Producer'),(686,42277,9,'Visual Effects Art Director'),(686,42283,5,'First Assistant Editor'),(686,32281,8,'Makeup Artist'),(686,42358,3,'Associate Producer'),(686,42359,5,'First Assistant Editor'),(686,42360,3,'Casting Associate'),(686,55227,6,'Production Sound Mixer'),(686,55228,6,'Boom Operator'),(686,61873,9,'Set Production Assistant'),(686,65643,1,'Camera Operator'),(686,72110,3,'Production Office Coordinator'),(686,83064,8,'Hairstylist'),(686,85216,9,'Video Assist Operator'),(686,111187,9,'Aerial Coordinator'),(686,109245,9,'Craft Service'),(686,138618,6,'Sound Re-Recording Mixer'),(686,237398,9,'Visual Effects Editor'),(686,404895,6,'Supervising Sound Editor'),(686,969743,7,'Set Designer'),(686,1068056,7,'Set Designer'),(686,1169459,10,'Visual Effects Producer'),(686,1171347,7,'Set Decoration'),(686,1174405,1,'First Assistant Camera'),(686,1177850,1,'Still Photographer'),(686,1190250,1,'Camera Operator'),(686,1224289,4,'Story'),(686,1224289,3,'Co-Producer'),(686,1262129,2,'Script Supervisor'),(686,1271932,10,'Visual Effects Supervisor'),(686,1271933,9,'Unit Publicist'),(686,1294897,11,'Gaffer'),(686,1318476,9,'Mix Technician'),(686,1323768,8,'Costume Supervisor'),(686,1324261,7,'Art Department Assistant'),(686,1327149,8,'Makeup Artist'),(686,1334782,7,'Set Designer'),(686,1364403,7,'Greensman'),(686,1368867,10,'Special Effects Supervisor'),(686,1389134,6,'Sound Effects Editor'),(686,1390520,7,'Set Designer'),(686,1391130,1,'Steadicam Operator'),(686,1391604,3,'Location Manager'),(686,1392109,8,'Set Costumer'),(686,1392136,10,'Visual Effects Supervisor'),(686,1394306,6,'Music Editor'),(686,1399147,3,'Location Manager'),(686,1399328,9,'Transportation Coordinator'),(686,1399635,10,'Visual Effects Supervisor'),(686,1399899,1,'Camera Technician'),(686,1400373,1,'Camera Operator'),(686,1400905,5,'Dialogue Editor'),(686,1402015,8,'Key Hair Stylist'),(686,1402016,8,'Hairstylist'),(686,1403524,9,'Visual Effects Editor'),(686,1405209,9,'Sequence Supervisor'),(686,1405373,8,'Hairstylist'),(686,1405727,8,'Set Costumer'),(686,1406384,8,'Makeup Artist'),(686,1406922,10,'Visual Effects Supervisor'),(686,1408326,9,'Visual Effects Editor'),(686,1412990,1,'Steadicam Operator'),(686,1413146,8,'Makeup Artist'),(686,1413149,7,'Art Department Coordinator'),(686,1413153,7,'Construction Coordinator'),(686,1413154,7,'Construction Foreman'),(686,1413156,7,'Construction Foreman'),(686,1413157,9,'Special Effects'),(686,1413158,7,'Greensman'),(686,1413159,7,'Leadman'),(686,1413160,7,'Set Designer'),(686,1413161,7,'Set Designer'),(686,1413162,7,'Set Designer'),(686,1413167,6,'Sound Effects Editor'),(686,1413169,6,'Sound Re-Recording Mixer'),(686,1413171,5,'Dialogue Editor'),(686,1413172,6,'ADR & Dubbing'),(686,1413174,9,'Special Effects Coordinator'),(686,1413175,9,'CG Supervisor'),(686,1413176,10,'Visual Effects Producer'),(686,1413178,9,'Sequence Supervisor'),(686,1413179,10,'Visual Effects Producer'),(686,1413180,9,'Sequence Supervisor'),(686,1413181,9,'Sequence Supervisor'),(686,1413182,9,'Sequence Supervisor'),(686,1413183,10,'Visual Effects Supervisor'),(686,1413185,10,'Visual Effects Supervisor'),(686,1413192,1,'Still Photographer'),(686,1413193,9,'Video Assist Operator'),(686,1413194,11,'Rigging Grip'),(686,1413195,8,'Costume Supervisor'),(686,1413196,8,'Set Costumer'),(686,1413197,8,'Set Costumer'),(686,1413198,3,'Location Manager'),(686,1413201,3,'Production Accountant'),(686,1413201,9,'Production Controller'),(686,1418019,7,'Conceptual Design'),(686,1477006,3,'Associate Producer'),(686,1508462,9,'Set Medic'),(686,1552346,8,'Assistant Costume Designer'),(686,1555639,9,'Transportation Captain'),(686,1556634,6,'Assistant Sound Editor'),(686,1564219,9,'Projection'),(686,1585001,6,'Sound Recordist'),(686,1591776,10,'Visual Effects Coordinator'),(686,1616460,9,'Propmaker'),(686,1617346,3,'Unit Manager'),(686,1622079,7,'Location Scout'),(686,1630675,5,'Color Timer'),(686,1644462,1,'Key Grip'),(686,1684307,7,'Standby Painter'),(686,1728549,9,'Software Engineer'),(686,1733530,9,'Driver'),(686,1737230,4,'Storyboard'),(686,1762503,10,'3D Artist'),(686,1808950,9,'Stand In'),(686,1852627,1,'Additional Photography'),(686,1852628,1,'Grip'),(686,1852630,8,'Set Dressing Artist'),(686,1852631,9,'Carpenter'),(686,1852632,9,'Digital Effects Supervisor'),(686,1852633,9,'Scenic Artist'),(686,1852635,9,'Technical Supervisor'),(686,1852636,9,'Transportation Co-Captain'),(686,1852651,11,'Electrician'),(686,1852652,3,'Production Coordinator'),(686,1852653,3,'Production Supervisor'),(686,1852654,10,'24 Frame Playback'),(686,1852656,10,'Mechanical Designer'),(9383,898,5,'Editor'),(9383,931,3,'Producer'),(9383,1530,3,'Casting'),(9383,1760,6,'Original Music Composer'),(9383,7735,8,'Costume Design'),(9383,5241,1,'Director of Photography'),(9383,10491,2,'Director'),(9383,7726,3,'Producer'),(9383,7725,3,'Co-Producer'),(9383,47926,3,'Executive Producer'),(9383,57532,4,'Screenplay'),(9383,57534,5,'Editor'),(9383,1510233,3,'Associate Producer'),(179,1046,3,'Casting'),(179,1213,6,'Original Music Composer'),(179,2043,4,'Storyboard'),(179,2226,2,'Director'),(179,2226,3,'Executive Producer'),(179,2236,3,'Producer'),(179,2238,3,'Producer'),(179,2239,3,'Executive Producer'),(179,2240,1,'Director of Photography'),(179,2241,5,'Editor'),(179,2242,3,'Casting'),(179,2243,7,'Production Design'),(179,2199,4,'Author'),(179,2260,4,'Author'),(179,2261,4,'Story'),(179,10576,7,'Art Direction'),(179,5163,2,'First Assistant Director'),(179,9150,3,'Co-Producer'),(179,9151,3,'Co-Producer'),(179,11113,9,'Second Unit Cinematographer'),(179,11713,7,'Supervising Art Director'),(179,12258,7,'Set Decoration'),(179,12579,1,'Still Photographer'),(179,15226,6,'Supervising Sound Editor'),(179,15333,10,'Special Effects Supervisor'),(179,23226,3,'Executive Producer'),(179,38084,8,'Costume Design'),(179,53478,3,'Unit Production Manager'),(179,57343,3,'Producer'),(179,31172,7,'Art Direction'),(179,91071,9,'Carpenter'),(179,91092,6,'Production Sound Mixer'),(179,91096,6,'Boom Operator'),(179,91109,9,'Video Assist Operator'),(179,91122,1,'Aerial Camera'),(179,91144,6,'Scoring Mixer'),(179,91834,9,'Stunts'),(179,122607,9,'Dialect Coach'),(179,143418,4,'Story'),(179,158916,6,'Sound Re-Recording Mixer'),(179,957361,1,'Camera Operator'),(179,958273,2,'Script Supervisor'),(179,959055,5,'First Assistant Editor'),(179,968175,7,'Assistant Art Director'),(179,1077782,6,'Foley'),(179,1177713,8,'Costume Supervisor'),(179,1192811,8,'Assistant Costume Designer'),(179,1281538,9,'Stunt Coordinator'),(179,1305774,7,'Art Department Coordinator'),(179,1333082,7,'Property Master'),(179,1342663,6,'Music Editor'),(179,1353528,8,'Makeup Artist'),(179,1377294,10,'Visual Effects Producer'),(179,1392131,6,'Sound Editor'),(179,1398132,3,'Casting Associate'),(179,1399061,5,'Dialogue Editor'),(179,1399909,7,'Set Designer'),(179,1399974,1,'Steadicam Operator'),(179,1401168,1,'Additional Camera'),(179,1402040,9,'Unit Publicist'),(179,1405814,6,'ADR Supervisor'),(179,1406611,7,'Construction Coordinator'),(179,1406848,8,'Set Costumer'),(179,1409819,8,'Key Hair Stylist'),(179,1411861,3,'Location Manager'),(179,1413031,3,'Co-Producer'),(179,1416432,11,'Rigging Gaffer'),(179,1417514,6,'Sound Effects Editor'),(179,1429324,9,'Transportation Coordinator'),(179,1436183,10,'Visual Effects Supervisor'),(179,1447937,5,'Editorial Production Assistant'),(179,1460569,1,'First Assistant Camera'),(179,1474332,4,'Author'),(179,1476342,3,'Co-Producer'),(179,1476343,3,'Line Producer'),(179,1526972,8,'Hairstylist'),(179,1532354,11,'Gaffer'),(179,1535781,11,'Best Boy Electric'),(179,1548698,6,'Orchestrator'),(179,1550727,9,'Transportation Co-Captain'),(179,1551665,6,'First Assistant Sound Editor'),(179,1561481,9,'Transportation Captain'),(179,1564277,3,'Executive In Charge Of Production'),(179,1569846,10,'Visual Effects'),(179,1573082,1,'Key Grip'),(179,1609860,6,'Sound Mixer'),(179,1685014,7,'Location Scout'),(179,1685015,3,'Production Accountant'),(179,1717515,7,'Leadman'),(179,1742063,9,'Post Production Supervisor'),(179,1781325,9,'Set Production Assistant'),(179,1782430,3,'Production Coordinator'),(179,1816560,7,'Art Department Assistant'),(179,1816565,1,'Grip'),(179,1816567,8,'Seamstress'),(179,1816568,8,'Set Dressing Artist'),(179,1816569,9,'Craft Service'),(179,1816571,1,'Camera Loader'),(179,1816574,9,'Scenic Artist'),(179,1816575,9,'Security'),(179,1816576,9,'Stand In'),(179,1816579,11,'Electrician'),(179,1816580,11,'Rigging Grip'),(179,1816581,3,'Production Manager'),(179,1816582,3,'Researcher'),(179,1816583,10,'Digital Compositors'),(179,1816585,10,'Visual Effects Coordinator'),(1996,37,6,'Original Music Composer'),(1996,493,5,'Editor'),(1996,1093,3,'Producer'),(1996,1325,3,'Casting'),(1996,1993,3,'Producer'),(1996,2209,2,'Director'),(1996,3501,3,'Casting'),(1996,6800,1,'Director of Photography'),(1996,10714,8,'Costume Design'),(1996,10819,7,'Production Design'),(1996,20507,7,'Set Decoration'),(1996,20516,4,'Screenplay'),(1535,1113,3,'Casting'),(1535,897,3,'Casting'),(1535,893,2,'Director'),(1535,931,3,'Producer'),(1535,2484,5,'Additional Editing'),(1535,4061,8,'Costume Design'),(1535,6668,5,'Editor'),(1535,5553,6,'Original Music Composer'),(1535,9820,7,'Art Direction'),(1535,11224,7,'Assistant Art Director'),(1535,15219,3,'Producer'),(1535,15348,1,'Director of Photography'),(1535,23453,7,'Assistant Art Director'),(1535,21203,4,'Screenplay'),(1535,21204,4,'Screenplay'),(1535,17400,7,'Production Design'),(1535,41336,7,'Set Decoration'),(1535,963705,8,'Assistant Costume Designer'),(1535,1325234,8,'Makeup Artist'),(1535,1389310,8,'Makeup Artist'),(1535,1389548,2,'Script Supervisor'),(1535,1393329,7,'Art Department Coordinator'),(1535,1394313,2,'Script Coordinator'),(1535,1413224,8,'Hairstylist'),(1535,1427823,8,'Hairstylist'),(1535,1525903,8,'Hairstylist'),(1535,1532215,9,'Armorer'),(1535,1536571,7,'Art Department Assistant'),(1535,1536572,9,'Carpenter'),(1535,1536573,7,'Construction Coordinator'),(1535,1536574,9,'Special Effects Coordinator'),(1535,1536575,10,'Special Effects Supervisor'),(2067,136,3,'Executive Producer'),(2067,2215,3,'Casting'),(2067,1092,4,'Screenplay'),(2067,1092,4,'Story'),(2067,1094,4,'Screenplay'),(2067,1094,4,'Story'),(2067,1150,2,'Director'),(2067,1258,1,'Director of Photography'),(2067,1259,6,'Original Music Composer'),(2067,3893,3,'Co-Producer'),(2067,2519,8,'Costume Design'),(2067,4953,7,'Production Design'),(2067,6045,7,'Art Direction'),(2067,9639,7,'Art Direction'),(2067,10766,5,'Editor'),(2067,21206,4,'Screenplay'),(2067,21205,4,'Story'),(2067,21210,10,'Animation'),(2067,42264,3,'Associate Producer'),(2067,25751,8,'Hairstylist'),(2067,27161,8,'Makeup Artist'),(2067,45861,3,'Producer'),(2067,57862,3,'Associate Producer'),(2067,59287,9,'Makeup Effects'),(2067,113982,3,'Co-Producer'),(2067,951922,9,'Makeup Effects'),(2067,956248,3,'Co-Producer'),(2067,1206190,9,'Makeup Effects'),(2067,1206191,9,'Makeup Effects'),(2067,1318445,8,'Makeup Artist'),(2067,1319747,8,'Costume Supervisor'),(2067,1392925,2,'Script Supervisor'),(2067,1408179,8,'Hairstylist'),(2067,1447497,10,'Visual Effects'),(2067,1475003,3,'Associate Producer'),(2277,669,7,'Production Design'),(2277,1729,6,'Original Music Composer'),(2277,7230,5,'Editor'),(2277,7231,5,'Editor'),(2277,8706,7,'Set Decoration'),(2277,10965,2,'Director'),(2277,10709,1,'Director of Photography'),(2277,20213,4,'Screenplay'),(2277,1447497,10,'Animation'),(2277,1447503,7,'Conceptual Design'),(4477,1047,5,'Editor'),(4477,1093,3,'Producer'),(4477,1156,3,'Casting'),(4477,1729,6,'Original Music Composer'),(4477,1993,3,'Executive Producer'),(4477,1994,3,'Producer'),(4477,3097,1,'Director of Photography'),(4477,3429,7,'Production Design'),(4477,4150,7,'Set Decoration'),(4477,4187,7,'Art Direction'),(4477,4188,7,'Set Decoration'),(4477,5584,5,'Editor'),(4477,6349,2,'Director'),(4477,7781,4,'Screenplay'),(4477,38340,3,'Executive Producer'),(4477,65616,4,'Screenplay'),(4477,74431,4,'Screenplay'),(8665,3,3,'Executive Producer'),(8665,122,6,'Music'),(8665,154,5,'Editor'),(8665,14392,2,'Director'),(8665,14392,3,'Producer'),(8665,7479,1,'Director of Photography'),(8665,12232,3,'Executive Producer'),(8665,20293,4,'Screenplay'),(8665,20295,3,'Executive Producer'),(8665,11302,3,'Producer'),(8665,55597,4,'Screenstory'),(8665,55599,3,'Producer'),(8665,55600,3,'Associate Producer'),(8665,55600,2,'First Assistant Director'),(8665,1007395,9,'Stunts'),(9387,8328,2,'Director'),(9387,8328,4,'Screenplay'),(9387,375,6,'Sound Effects Editor'),(9387,1152,4,'Screenplay'),(9387,4710,7,'Art Direction'),(9387,5398,3,'Executive Producer'),(9387,7728,6,'Original Music Composer'),(9387,7728,6,'Conductor'),(9387,7793,8,'Costume Design'),(9387,8928,2,'First Assistant Director'),(9387,9950,6,'Sound mixer'),(9387,12507,3,'Producer'),(9387,12882,3,'Producer'),(9387,32035,3,'Executive Producer'),(9387,16552,6,'Supervising Sound Editor'),(9387,16595,7,'Art Direction'),(9387,25195,7,'Production Design'),(9387,17002,2,'Second Assistant Director'),(9387,19567,9,'Second Unit'),(9387,19567,9,'Stunt Coordinator'),(9387,21518,7,'Set Decoration'),(9387,31345,7,'Construction Coordinator'),(9387,46008,5,'Editor'),(9387,57547,4,'Story'),(9387,57549,3,'Executive Producer'),(9387,57550,1,'Director of Photography'),(9387,58135,5,'Additional Editing'),(9387,92378,6,'Assistant Sound Editor'),(9387,74824,9,'Unit Publicist'),(9387,100847,2,'Continuity'),(9387,124463,9,'Makeup Effects'),(9387,136450,9,'Production Artist'),(9387,557528,6,'Foley'),(9387,566658,8,'Makeup Artist'),(9387,568117,4,'Story'),(9387,568117,3,'Associate Producer'),(9387,1057871,6,'Orchestrator'),(9387,1160347,1,'Additional Camera'),(9387,1302182,6,'Sound Re-Recording Mixer'),(9387,1338884,9,'Property Master'),(9387,1342603,3,'Production Office Coordinator'),(9387,1346943,10,'Special Effects Supervisor'),(9387,1378839,1,'Still Photographer'),(9387,1385899,9,'Stunts'),(9387,1386569,3,'Production Manager'),(9387,1394780,7,'Sculptor'),(9387,1427546,2,'Script Supervisor'),(9387,1433222,11,'Gaffer'),(9387,1445981,10,'Animation'),(9387,1454989,8,'Hairstylist'),(9387,1454989,8,'Makeup Supervisor'),(9387,1476501,5,'Supervising Film Editor'),(9387,1537245,7,'Art Direction'),(9387,1560107,9,'Transportation Captain'),(9387,1564440,8,'Hair Department Head'),(9387,1564443,9,'Unit Production Manager'),(9387,1564444,2,'Assistant Director'),(9387,1564449,9,'Propmaker'),(9387,1564469,7,'Set Decoration Buyer'),(9387,1564476,6,'Sound Editor'),(9387,1564482,5,'Dialogue Editor'),(9387,1564484,9,'Special Effects'),(9387,1564485,1,'Key Grip'),(9387,1564486,1,'Camera Operator'),(9387,1564489,8,'Assistant Costume Designer'),(9387,1564491,5,'Color Timer'),(9387,1564492,6,'Music Editor'),(9387,1564493,9,'Transportation Coordinator'),(9387,1564494,9,'Driver'),(9387,1564495,9,'Production Office Assistant'),(9387,1564496,3,'Production Accountant'),(9387,1564497,3,'Researcher'),(9387,1564500,3,'Location Manager'),(9387,1743905,8,'Wardrobe Supervisor'),(9387,1743906,9,'Animal Wrangler'),(9387,1743909,5,'Negative Cutter'),(9387,1743912,6,'Apprentice Sound Editor'),(921,153,6,'Original Music Composer'),(921,339,3,'Producer'),(921,548,7,'Production Design'),(921,2874,3,'Casting'),(921,3275,3,'Casting'),(921,4849,6,'Supervising Sound Editor'),(921,5575,4,'Screenplay'),(921,6159,2,'Director'),(921,6159,3,'Producer'),(921,6184,3,'Executive Producer'),(921,6186,3,'Unit Production Manager'),(921,6188,3,'Associate Producer'),(921,6189,5,'Editor'),(921,6190,5,'Editor'),(921,6876,3,'Casting Associate'),(921,7538,6,'Music Editor'),(921,8355,9,'Stunt Coordinator'),(921,8408,1,'Director of Photography'),(921,8411,8,'Costume Design'),(921,8419,2,'Assistant Director'),(921,14906,4,'Screenplay'),(921,14911,3,'Producer'),(921,14912,3,'Casting'),(921,14913,7,'Art Direction'),(921,14914,7,'Art Direction'),(921,14915,7,'Set Decoration'),(921,14917,8,'Hairstylist'),(921,14919,8,'Makeup Artist'),(921,14923,9,'Special Effects Coordinator'),(921,14924,10,'Visual Effects'),(921,14926,9,'Stunts'),(921,40375,3,'Co-Executive Producer'),(921,1039164,6,'Foley'),(921,1056758,10,'Visual Effects Producer'),(921,1070088,6,'Sound Re-Recording Mixer'),(921,1208908,1,'Still Photographer'),(921,1345635,2,'Script Supervisor'),(921,1395362,10,'Visual Effects'),(921,1395365,10,'Visual Effects Producer'),(921,1409824,8,'Wigmaker'),(921,1415964,6,'ADR & Dubbing'),(921,1423358,3,'Casting'),(921,1436522,3,'Casting'),(921,1524757,8,'Hair Department Head'),(921,1531142,3,'Unit Production Manager'),(4464,495,3,'Casting'),(4464,494,3,'Casting'),(4464,15841,5,'Editor'),(4464,664,3,'Producer'),(4464,892,1,'Director of Photography'),(4464,2219,3,'Executive Producer'),(4464,4504,3,'Executive Producer'),(4464,4507,3,'Executive Producer'),(4464,6045,7,'Art Direction'),(4464,19157,7,'Set Decoration'),(4464,7885,6,'Original Music Composer'),(4464,9269,7,'Production Design'),(4464,10970,8,'Costume Design'),(4464,42032,1,'Camera Operator'),(4464,24310,9,'Second Unit Cinematographer'),(4464,23964,2,'Director'),(4464,23964,4,'Screenplay'),(4464,23964,3,'Producer'),(4464,38268,4,'Novel'),(4464,38269,3,'Producer'),(4464,38270,3,'Executive Producer'),(4464,38271,3,'Executive Producer'),(4464,38410,1,'Camera Operator'),(4464,41188,8,'Costume Supervisor'),(4464,60712,9,'Second Unit Cinematographer'),(4464,11106,8,'Assistant Costume Designer'),(4464,93258,9,'Special Effects Coordinator'),(4464,957264,8,'Hairstylist'),(4464,1121742,8,'Assistant Costume Designer'),(4464,1177850,1,'Still Photographer'),(4464,1314465,8,'Makeup Department Head'),(4464,1360109,10,'Visual Effects Producer'),(4464,1371069,2,'Script Supervisor'),(4464,1392904,5,'Dialogue Editor'),(4464,1399316,11,'Gaffer'),(4464,1400081,1,'Steadicam Operator'),(4464,1400563,10,'Visual Effects Producer'),(4464,1400733,1,'Helicopter Camera'),(4464,1402016,8,'Hair Department Head'),(4464,1405382,5,'Dialogue Editor'),(4464,1406616,6,'ADR & Dubbing'),(4464,1415635,11,'Rigging Gaffer'),(4464,1416056,8,'Hairstylist'),(4464,1422795,8,'Makeup Artist'),(4464,1436192,11,'Gaffer'),(4464,1457704,2,'Script Supervisor'),(4464,1462855,8,'Costume Supervisor'),(4464,1463735,11,'Rigging Grip'),(4464,1516628,9,'Visual Effects Art Director'),(4464,1533794,10,'Visual Effects Supervisor'),(4464,1546806,7,'Art Department Coordinator'),(4464,1546808,7,'Art Department Coordinator'),(4464,1546809,10,'Special Effects Supervisor'),(4464,1546810,10,'Special Effects Supervisor'),(4464,1546811,10,'Visual Effects Coordinator'),(4464,1546812,9,'Visual Effects Editor'),(4464,1546813,1,'Camera Operator'),(4464,1546814,11,'Rigging Grip'),(4464,1546823,8,'Makeup Artist'),(4464,1546824,8,'Makeup Artist'),(664,356,1,'Director of Photography'),(664,371,1,'First Assistant Camera'),(664,488,3,'Executive Producer'),(664,489,3,'Producer'),(664,493,5,'Editor'),(664,2209,2,'Director'),(664,2211,3,'Executive Producer'),(664,2212,3,'Executive Producer'),(664,2529,7,'Set Decoration'),(664,3191,3,'Casting'),(664,7735,8,'Costume Design'),(664,4782,4,'Screenplay'),(664,4782,3,'Producer'),(664,10631,10,'Special Effects Supervisor'),(664,9987,3,'Producer'),(664,8701,3,'Executive Producer'),(664,9351,6,'Music Editor'),(664,9986,4,'Screenplay'),(664,9988,3,'Associate Producer'),(664,9989,6,'Original Music Composer'),(664,9990,7,'Production Design'),(664,9991,8,'Makeup Artist'),(664,9992,3,'Unit Production Manager'),(664,9993,9,'Post Production Supervisor'),(664,14040,7,'Supervising Art Director'),(664,15893,6,'Sound Effects Editor'),(664,17649,9,'Second Unit'),(664,18889,9,'Stunt Coordinator'),(664,19863,7,'Set Designer'),(664,20540,3,'Casting Associate'),(664,25453,10,'Visual Effects Supervisor'),(664,75002,6,'Music Supervisor'),(664,81729,2,'First Assistant Director'),(664,541478,3,'Production Accountant'),(664,554887,6,'Supervising Sound Editor'),(664,568641,6,'Boom Operator'),(664,928942,6,'Sound Re-Recording Mixer'),(664,932186,6,'Orchestrator'),(664,1271644,9,'Visual Effects Art Director'),(664,1334778,7,'Construction Coordinator'),(664,1339468,2,'Script Supervisor'),(664,1341781,6,'Sound Re-Recording Mixer'),(664,1341796,9,'Transportation Captain'),(664,1341856,6,'Foley'),(664,1342250,7,'Leadman'),(664,1345624,3,'Location Manager'),(664,1376512,7,'Property Master'),(664,1377131,1,'Camera Operator'),(664,1377132,1,'Steadicam Operator'),(664,1378171,6,'Sound Re-Recording Mixer'),(664,1378248,9,'Transportation Coordinator'),(664,1378830,10,'Visual Effects Coordinator'),(664,1389139,1,'Still Photographer'),(664,1400539,3,'Publicist'),(664,1404214,6,'Dialogue Editor'),(664,1404306,8,'Hairstylist'),(664,1408598,11,'Rigging Gaffer'),(664,1413087,7,'Art Department Coordinator'),(664,1433719,6,'Sound Editor'),(664,1436194,11,'Electrician'),(664,1442512,9,'Visual Effects Editor'),(664,1455625,10,'Visual Effects'),(664,1478858,10,'Visual Effects Producer'),(664,1511737,6,'Sound Mixer'),(664,1550834,11,'Rigging Grip'),(664,1552998,9,'Craft Service'),(664,1554975,6,'Music Supervisor'),(664,1589724,7,'Location Scout'),(664,1630675,5,'Color Timer'),(664,1633954,9,'Projection'),(664,1640909,10,'Digital Compositors'),(664,1646055,1,'Aerial Director of Photography'),(664,1684676,7,'Construction Foreman'),(664,1691954,1,'Grip'),(664,1737121,4,'Storyboard'),(664,1743747,7,'Production Illustrator'),(664,1765797,9,'Video Assist Operator'),(664,1778009,6,'Assistant Sound Editor'),(664,1798309,9,'Scenic Artist'),(664,1892484,7,'Assistant Art Director'),(664,1892485,7,'Greensman'),(664,1892486,7,'Painter'),(664,1892487,7,'Standby Painter'),(664,1892491,1,'Key Grip'),(664,1892494,8,'Set Dressing Artist'),(664,1892495,9,'Carpenter'),(664,1892496,9,'Driver'),(664,1892498,9,'Software Engineer'),(664,1892499,9,'Stunts'),(664,1892500,9,'Transportation Co-Captain'),(8358,37,6,'Original Music Composer'),(8358,24,2,'Director'),(8358,24,3,'Producer'),(8358,30,3,'Producer'),(8358,31,3,'Producer'),(8358,36,1,'Director of Photography'),(8358,38,5,'Editor'),(8358,142,4,'Screenplay'),(8358,1324,3,'Casting'),(8358,10955,3,'Associate Producer'),(8358,11712,3,'Executive Producer'),(8358,23779,3,'Producer'),(8358,42358,3,'Associate Producer'),(9836,1296,3,'Executive Producer'),(9836,11098,6,'Original Music Composer'),(9836,17610,3,'Casting'),(9836,20629,2,'Director'),(9836,20629,3,'Producer'),(9836,20629,4,'Writer'),(9836,11651,3,'Producer'),(9836,29018,3,'Executive Producer'),(9836,55474,4,'Writer'),(9836,58063,4,'Writer'),(9836,58063,2,'Co-Director'),(9836,58067,5,'Editor'),(9836,58140,3,'Producer'),(9836,59767,4,'Writer'),(9836,59767,2,'Co-Director'),(9836,59769,3,'Associate Producer'),(9836,59771,3,'Executive Producer'),(9836,59773,3,'Associate Producer'),(9836,59772,3,'Associate Producer'),(9836,59774,3,'Executive Producer'),(9836,59776,3,'Associate Producer'),(9836,59777,7,'Production Design'),(9836,59781,3,'Line Producer'),(9836,59779,1,'Director of Photography'),(9836,59779,2,'Layout'),(9836,59780,5,'Editor'),(9836,65644,6,'Orchestrator'),(9836,75148,6,'Sound Effects Editor'),(9836,75437,6,'Sound Re-Recording Mixer'),(9836,80623,9,'Choreographer'),(9836,88117,6,'Music Supervisor'),(9836,167789,7,'Supervising Art Director'),(9836,577468,6,'Sound Designer'),(9836,577468,6,'Supervising Sound Editor'),(9836,577468,6,'Sound Re-Recording Mixer'),(9836,970283,7,'Art Direction'),(9836,970287,10,'VFX Editor'),(9836,1002602,6,'Supervising Dialogue Editor'),(9836,1281965,5,'Assistant Editor'),(9836,1391715,6,'Sound Effects Editor'),(9836,1391721,5,'Dialogue Editor'),(9836,1392736,6,'Music Editor'),(9836,1394862,6,'Supervising Sound Effects Editor'),(9836,1401691,5,'Dialogue Editor'),(9836,1404326,6,'Music Editor'),(9836,1438652,5,'First Assistant Editor'),(9836,1495857,6,'Sound Re-Recording Mixer'),(9836,1518756,2,'First Assistant Director'),(9836,1539292,6,'Sound Effects Editor'),(9836,1552803,10,'Animation Director'),(9836,1585728,6,'Sound Effects Editor'),(9836,1616642,6,'Orchestrator'),(9836,1689963,6,'Music Editor'),(9836,1718276,5,'First Assistant Editor'),(9836,1722224,6,'Assistant Sound Editor'),(9836,1745202,9,'Choreographer'),(9836,1745216,11,'Lighting Supervisor'),(9836,1745222,7,'Assistant Art Director'),(9836,1745224,5,'Assistant Editor'),(9836,1745226,5,'Assistant Editor'),(9836,1745229,5,'Editorial Coordinator'),(9836,1745231,10,'Animation Supervisor'),(9836,1745232,3,'Production Manager'),(9836,1745243,6,'Sound Effects Editor'),(9836,1745243,5,'Dialogue Editor'),(9836,1745244,6,'Sound Effects Editor'),(9836,1745248,6,'Sound Effects Editor'),(9836,1745249,6,'Assistant Sound Editor'),(9836,1745258,6,'Orchestrator'),(2502,664,3,'Producer'),(2502,1325,3,'Casting'),(2502,1593,3,'Casting'),(2502,3501,3,'Casting'),(2502,5333,8,'Makeup Department Head'),(2502,8684,9,'Stunt Coordinator'),(2502,9646,5,'Editor'),(2502,10903,3,'Associate Producer'),(2502,11273,7,'Art Direction'),(2502,11274,7,'Art Direction'),(2502,40757,7,'Production Illustrator'),(2502,40764,9,'Property Master'),(2502,40771,1,'Camera Operator'),(2502,40789,11,'Rigging Gaffer'),(2502,40830,3,'Location Manager'),(2502,40833,7,'Location Scout'),(2502,40836,3,'Production Manager'),(2502,40860,9,'Transportation Coordinator'),(2502,40861,9,'Transportation Captain'),(2502,11098,6,'Original Music Composer'),(2502,11409,1,'Director of Photography'),(2502,11694,3,'Executive Producer'),(2502,12562,6,'ADR Supervisor'),(2502,13166,6,'Sound Effects Editor'),(2502,14764,6,'Sound Effects Editor'),(2502,14765,6,'Supervising Sound Editor'),(2502,16733,7,'Supervising Art Director'),(2502,19081,2,'First Assistant Director'),(2502,19242,4,'Screenplay'),(2502,19619,3,'Associate Producer'),(2502,24310,9,'Second Unit Cinematographer'),(2502,21846,7,'Set Decoration'),(2502,25606,4,'Novel'),(2502,25598,2,'Director'),(2502,27032,7,'Production Design'),(2502,25600,3,'Producer'),(2502,25604,3,'Producer'),(2502,29402,3,'Executive Producer'),(2502,29404,3,'Co-Producer'),(2502,29405,5,'Editor'),(2502,46292,9,'Second Unit Cinematographer'),(2502,54004,9,'Post Production Assistant'),(2502,113124,9,'Visual Effects Editor'),(2502,59055,3,'ADR Voice Casting'),(2502,59683,8,'Costume Design'),(2502,65610,2,'Third Assistant Director'),(2502,78981,3,'Casting Associate'),(2502,80424,7,'Art Direction'),(2502,91042,9,'Pilot'),(2502,113831,4,'Storyboard'),(2502,117206,8,'Hairstylist'),(2502,125886,3,'Production Manager'),(2502,139953,5,'Color Timer'),(2502,548437,5,'Dialogue Editor'),(2502,932446,9,'Visual Effects Editor'),(2502,956258,3,'Executive Producer'),(2502,971403,8,'Costume Supervisor'),(2502,998189,6,'Scoring Mixer'),(2502,1077782,6,'Foley'),(2502,1083451,9,'Stand In'),(2502,1115051,3,'Production Supervisor'),(2502,1117336,3,'Associate Producer'),(2502,1167225,3,'Production Supervisor'),(2502,1207542,9,'Picture Car Coordinator'),(2502,1332509,3,'Casting'),(2502,1332515,1,'Steadicam Operator'),(2502,1333089,8,'Costume Supervisor'),(2502,1335571,9,'Transportation Coordinator'),(2502,1339054,1,'Camera Operator'),(2502,1342658,5,'Dialogue Editor'),(2502,1377225,10,'Visual Effects Supervisor'),(2502,1377503,1,'Camera Operator'),(2502,1380002,1,'Still Photographer'),(2502,1389572,10,'Visual Effects Producer'),(2502,1391571,6,'Sound Mixer'),(2502,1392718,1,'Still Photographer'),(2502,1392909,10,'Visual Effects Supervisor'),(2502,1395027,9,'Digital Effects Supervisor'),(2502,1399313,10,'Visual Effects Coordinator'),(2502,1400092,1,'Aerial Director of Photography'),(2502,1400399,6,'Foley'),(2502,1402012,3,'Publicist'),(2502,1403636,6,'Foley Editor'),(2502,1403641,1,'Underwater Camera'),(2502,1403790,7,'Painter'),(2502,1403914,7,'Set Dresser'),(2502,1404212,6,'Supervising Sound Editor'),(2502,1404217,6,'Sound Effects Editor'),(2502,1404234,9,'Transportation Coordinator'),(2502,1404326,6,'Supervising Music Editor'),(2502,1405218,5,'Digital Intermediate'),(2502,1406390,6,'Sound Effects Editor'),(2502,1406396,9,'In Memory Of'),(2502,1406616,6,'ADR Editor'),(2502,1406774,7,'Art Department Coordinator'),(2502,1406775,7,'Art Department Coordinator'),(2502,1406776,10,'Visual Effects Producer'),(2502,1406778,9,'Stunt Coordinator'),(2502,1406779,1,'Camera Operator'),(2502,1406780,1,'Helicopter Camera'),(2502,1406782,11,'Gaffer'),(2502,1406783,11,'Gaffer'),(2502,1406785,3,'Location Manager'),(2502,1406785,1,'Additional Photography'),(2502,1406786,11,'Gaffer'),(2502,1406789,6,'Music Editor'),(2502,1406791,2,'Script Supervisor'),(2502,1406792,9,'Unit Publicist'),(2502,1406794,3,'Location Manager'),(2502,1411080,9,'Scenic Artist'),(2502,1411341,1,'Aerial Camera Technician'),(2502,1413033,7,'Lead Set Dresser'),(2502,1433073,8,'Key Costumer'),(2502,1433737,11,'Electrician'),(2502,1440272,5,'First Assistant Editor'),(2502,1440737,3,'Casting Assistant'),(2502,1442125,7,'Construction Coordinator'),(2502,1459784,7,'Title Designer'),(2502,1463390,6,'Production Sound Mixer'),(2502,1464445,1,'Key Grip'),(2502,1476769,9,'Post Production Supervisor'),(2502,1488269,6,'Boom Operator'),(2502,1545428,3,'Unit Production Manager'),(2502,1548698,6,'Conductor'),(2502,1571761,9,'Quality Control Supervisor'),(2502,1580617,7,'Art Department Assistant'),(2502,1580618,7,'Set Decoration Buyer'),(2502,1580619,7,'Standby Painter'),(2502,1580620,1,'First Assistant Camera'),(2502,1580621,9,'Additional Music'),(2502,1580622,9,'Carpenter'),(2502,1580623,9,'CG Supervisor'),(2502,1580624,9,'Chef'),(2502,1580625,9,'Driver'),(2502,1580626,9,'Loader'),(2502,1580627,9,'Set Medic'),(2502,1580628,9,'Set Production Assistant'),(2502,1580629,9,'Stunts'),(2502,1580630,9,'Technical Supervisor'),(2502,1580631,9,'Transportation Co-Captain'),(2502,1580632,9,'Video Assist Operator'),(2502,1580633,11,'Best Boy Electric'),(2502,1580634,11,'Lighting Technician'),(2502,1580635,11,'Rigging Grip'),(2502,1580636,3,'Production Accountant'),(2502,1580637,3,'Production Coordinator'),(2502,1580639,3,'Production Office Coordinator'),(2502,1580640,3,'Production Supervisor'),(2502,1580664,6,'Orchestrator'),(2502,1580665,6,'Assistant Sound Editor'),(2502,1580666,10,'Digital Compositors'),(2502,1580667,10,'Special Effects Supervisor'),(2502,1580668,3,'Unit Manager'),(2502,1590390,7,'Assistant Property Master'),(2502,1677710,1,'Dolly Grip'),(2502,1778457,1,'Grip'),(2502,1778463,2,'Second Assistant Director'),(2502,1778464,3,'Assistant Production Coordinator'),(2502,1778465,3,'Assistant Production Manager'),(2502,1778466,6,'Musician'),(9772,2447,3,'Associate Producer'),(9772,2447,2,'First Assistant Director'),(9772,1760,6,'Original Music Composer'),(9772,1761,6,'Orchestrator'),(9772,2874,3,'Casting'),(9772,3275,3,'Casting'),(9772,3769,1,'Director of Photography'),(9772,6581,5,'Editor'),(9772,4054,3,'Executive Producer'),(9772,5231,2,'Director'),(9772,5231,3,'Producer'),(9772,6877,7,'Production Design'),(9772,6881,8,'Costume Design'),(9772,6883,9,'Temp Music Editor'),(9772,6925,7,'Set Decoration'),(9772,9493,8,'Costume Supervisor'),(9772,11113,9,'Second Unit Cinematographer'),(9772,13587,7,'Supervising Art Director'),(9772,15219,3,'Executive Producer'),(9772,14753,3,'Production Manager'),(9772,14764,6,'Sound Effects Editor'),(9772,15847,9,'Special Effects Coordinator'),(9772,21548,10,'Visual Effects Supervisor'),(9772,21865,3,'Producer'),(9772,41587,3,'Producer'),(9772,49285,9,'Additional Music'),(9772,57532,4,'Author'),(9772,58327,3,'Producer'),(9772,58846,3,'Executive Producer'),(9772,65154,3,'Associate Producer'),(9772,122607,9,'Dialect Coach'),(9772,142157,9,'Stunt Coordinator'),(9772,548408,8,'Makeup Artist'),(9772,575769,9,'Transportation Co-Captain'),(9772,582808,1,'Still Photographer'),(9772,958273,2,'Script Supervisor'),(9772,1336024,9,'Animatronics Designer'),(9772,1338671,7,'Construction Coordinator'),(9772,1352969,6,'Supervising Sound Editor'),(9772,1389596,8,'Set Costumer'),(9772,1389598,6,'Music Editor'),(9772,1390522,7,'Property Master'),(9772,1391127,10,'Visual Effects Producer'),(9772,1391403,3,'Location Manager'),(9772,1392102,10,'Visual Effects Coordinator'),(9772,1403415,1,'Aerial Director of Photography'),(9772,1403633,9,'Post Production Supervisor'),(9772,1404215,6,'Sound Editor'),(9772,1405246,9,'Unit Publicist'),(9772,1405814,6,'ADR Supervisor'),(9772,1406390,6,'Dialogue Editor'),(9772,1422060,7,'Art Direction'),(9772,1423852,1,'Key Grip'),(9772,1432024,11,'Rigging Gaffer'),(9772,1447612,9,'Visual Effects Editor'),(9772,1455291,6,'First Assistant Sound Editor'),(9772,1531566,9,'Carpenter'),(9772,1536428,8,'Key Hair Stylist'),(9772,1536965,9,'Armorer'),(9772,1537540,3,'Production Coordinator'),(9772,1546582,7,'Set Designer'),(9772,1547897,6,'Sound Mixer'),(9772,1551706,6,'Foley Editor'),(9772,1552549,5,'Color Timer'),(9772,1552808,9,'Digital Effects Supervisor'),(9772,1558250,5,'First Assistant Editor'),(9772,1593975,7,'Painter'),(9772,1611791,9,'Projection'),(9772,1627977,9,'Propmaker'),(9772,1634479,9,'Driver'),(9772,1640488,9,'Craft Service'),(9772,1644820,9,'Picture Car Coordinator'),(9772,1651218,11,'Lighting Technician'),(9772,1678654,3,'Production Supervisor'),(9772,1702379,9,'Stunts'),(9772,1765662,7,'Art Direction'),(9772,1840293,10,'Digital Compositors'),(9772,1868235,7,'Construction Foreman'),(9772,1868236,7,'Greensman'),(9772,1868239,7,'Production Illustrator'),(9772,1868240,1,'Camera Department Manager'),(9772,1868241,1,'First Assistant Camera'),(9772,1868242,1,'Grip'),(9772,1868243,8,'Hairstylist'),(9772,1868245,8,'Set Dressing Artist'),(9772,1868256,9,'Software Engineer'),(9772,1868260,9,'Systems Administrators & Support'),(9772,1868261,9,'Transportation Captain'),(9772,1868262,9,'Transportation Coordinator'),(9772,1868265,9,'Video Assist Operator'),(9772,1868266,11,'Best Boy Electric'),(9772,1868267,11,'Electrician'),(9772,1868268,11,'Gaffer'),(9772,1868269,11,'Rigging Grip'),(9772,1868270,3,'Production Accountant'),(9772,1868271,6,'Boom Operator'),(9772,1868272,6,'Sound Engineer'),(9772,1868276,10,'3D Supervisor'),(9772,1868283,4,'Storyboard'),(9772,1868284,9,'Studio Teachers'),(161,495,3,'Casting'),(161,494,3,'Casting Associate'),(161,1296,3,'Executive Producer'),(161,1884,2,'Director'),(161,1884,1,'Director of Photography'),(161,1885,4,'Author'),(161,1886,4,'Screenplay'),(161,1887,4,'Author'),(161,1888,3,'Producer'),(161,1889,6,'Original Music Composer'),(161,1890,7,'Production Design'),(161,1891,5,'Editor'),(161,6341,3,'Executive Producer'),(161,6348,8,'Costume Design'),(161,14762,7,'Assistant Art Director'),(161,17115,5,'First Assistant Editor'),(161,17852,10,'3D Supervisor'),(161,21568,7,'Art Direction'),(161,21707,7,'Set Decoration'),(161,26191,6,'Music Programmer'),(161,113045,6,'Foley'),(161,113090,6,'Foley'),(161,66692,8,'Hair Department Head'),(161,57295,3,'Executive Producer'),(161,59809,3,'Co-Producer'),(161,61996,8,'Key Makeup Artist'),(161,92332,8,'Hairstylist'),(161,92347,7,'Greensman'),(161,91042,9,'Pilot'),(161,119665,2,'First Assistant Director'),(161,142161,9,'Stunt Coordinator'),(161,172477,9,'Animal Wrangler'),(161,214170,8,'Makeup Artist'),(161,967719,8,'Set Costumer'),(161,1096860,7,'Standby Painter'),(161,1117840,3,'Unit Production Manager'),(161,1130026,9,'Stunts'),(161,1298884,7,'Set Decoration Buyer'),(161,1303218,6,'Musician'),(161,1319166,8,'Makeup Department Head'),(161,1324421,8,'Key Costumer'),(161,1325234,8,'Makeup Artist'),(161,1335069,9,'Special Effects Coordinator'),(161,1335075,9,'Transportation Captain'),(161,1335078,6,'Sound Editor'),(161,1335127,6,'Supervising Sound Editor'),(161,1339206,8,'Assistant Costume Designer'),(161,1339445,7,'Construction Coordinator'),(161,1364411,6,'Boom Operator'),(161,1378687,9,'Property Master'),(161,1378825,7,'Set Designer'),(161,1391399,9,'Transportation Coordinator'),(161,1391605,2,'Script Supervisor'),(161,1392247,1,'Still Photographer'),(161,1392909,10,'Visual Effects Supervisor'),(161,1401995,11,'Lighting Technician'),(161,1403390,3,'Production Coordinator'),(161,1403479,1,'Steadicam Operator'),(161,1406766,1,'First Assistant Camera'),(161,1409825,3,'Production Supervisor'),(161,1409837,3,'Publicist'),(161,1409875,10,'Visual Effects Coordinator'),(161,1413136,9,'Production Controller'),(161,1414174,7,'Leadman'),(161,1418528,8,'Hairstylist'),(161,1421685,9,'CG Supervisor'),(161,1430558,3,'Production Manager'),(161,1433917,3,'Location Manager'),(161,1442116,7,'Art Department Coordinator'),(161,1463735,11,'Best Boy Electric'),(161,1471302,8,'Key Hair Stylist'),(161,1534973,7,'Painter'),(161,1536631,11,'Rigging Gaffer'),(161,1538449,9,'Craft Service'),(161,1549180,7,'Assistant Art Director'),(161,1549181,10,'Visual Effects Producer'),(161,1549187,1,'First Assistant Camera'),(161,1549188,8,'Costume Supervisor'),(161,1549189,8,'Set Costumer'),(161,1549194,8,'Hairstylist'),(161,1549227,11,'Rigging Grip'),(161,1549256,7,'Assistant Property Master'),(161,1552521,9,'Utility Stunts'),(161,1552810,9,'Visual Effects Editor'),(161,1555488,6,'Production Sound Mixer'),(161,1564997,3,'Executive In Charge Of Production'),(161,1569823,9,'Security'),(161,1610225,1,'Key Grip'),(161,1629519,7,'Art Department Assistant'),(161,1629522,7,'Set Dresser'),(161,1629523,9,'Carpenter'),(161,1629524,9,'Chef'),(161,1629525,9,'Driver'),(161,1629526,9,'Loader'),(161,1629527,9,'Post Production Assistant'),(161,1629528,9,'Post Production Supervisor'),(161,1629529,9,'Production Office Assistant'),(161,1629530,9,'Propmaker'),(161,1629531,9,'Set Medic'),(161,1629532,9,'Set Production Assistant'),(161,1629533,9,'Stand In'),(161,1629534,9,'Video Assist Operator'),(161,1629535,5,'Color Timer'),(161,1629536,11,'Electrician'),(161,1629537,3,'Production Accountant'),(161,1629538,6,'Assistant Sound Editor'),(161,1629539,10,'Digital Compositors'),(161,1629540,4,'Storyboard'),(161,1629541,9,'Translator'),(161,1647589,6,'Foley Editor'),(161,1739884,6,'Utility Sound'),(161,1740451,3,'Casting Assistant'),(161,1826567,11,'Chief Lighting Technician'),(161,1867193,7,'Set Decorating Coordinator'),(161,1867194,1,'Dolly Grip'),(161,1867195,1,'Grip'),(161,1867196,8,'Ager/Dyer'),(161,1867197,8,'Costume Illustrator'),(161,1867198,2,'Second Assistant Director'),(161,1867199,5,'Negative Cutter'),(161,1867200,3,'Assistant Production Coordinator'),(4523,36,1,'Director of Photography'),(4523,5174,3,'Producer'),(4523,15813,6,'Original Music Composer'),(4523,15813,6,'Songs'),(4523,15017,9,'Makeup Effects'),(4523,21968,3,'Executive Producer'),(4523,34484,5,'Editor'),(4523,15775,2,'Director'),(4523,42906,3,'Producer'),(4523,42907,3,'Executive Producer'),(4523,42908,3,'Executive Producer'),(4523,15779,5,'Editor'),(4523,42909,8,'Costume Design'),(4523,42910,6,'Songs'),(4523,56147,4,'Storyboard'),(4523,65534,10,'Animation'),(4523,1392461,4,'Screenplay'),(4523,1447301,10,'Animation'),(4523,1447357,10,'Visual Development'),(4523,1447556,9,'Compositors'),(4523,1447593,2,'Layout'),(4523,1450331,10,'Animation Supervisor'),(4523,1453594,10,'Animation'),(4523,1453943,11,'Lighting Technician'),(1581,947,6,'Original Music Composer'),(1581,1060,1,'Director of Photography'),(1581,2243,7,'Production Design'),(1581,3989,8,'Costume Design'),(1581,4186,5,'Editor'),(1581,11508,7,'Art Direction'),(1581,17698,2,'Director'),(1581,17698,4,'Screenplay'),(1581,17698,3,'Producer'),(1581,17699,3,'Producer'),(9798,770,3,'Producer'),(9798,2446,3,'Executive Producer'),(9798,541,5,'Editor'),(9798,547,3,'Casting'),(9798,795,7,'Art Direction'),(9798,894,6,'Original Music Composer'),(9798,893,2,'Director'),(9798,2528,7,'Art Direction'),(9798,3989,8,'Costume Design'),(9798,4701,3,'Executive Producer'),(9798,4710,7,'Production Design'),(9798,5553,6,'Original Music Composer'),(9798,11413,7,'Set Decoration'),(9798,15348,1,'Director of Photography'),(9798,21002,4,'Writer'),(9798,57864,3,'Executive Producer'),(9798,1380472,7,'Art Direction'),(9798,1402095,1,'Camera Operator'),(298,495,3,'Casting'),(298,497,7,'Supervising Art Director'),(298,1884,2,'Director'),(298,1884,1,'Director of Photography'),(298,1885,4,'Characters'),(298,1887,4,'Characters'),(298,1888,3,'Producer'),(298,1889,6,'Original Music Composer'),(298,1889,6,'Music Supervisor'),(298,1890,7,'Production Design'),(298,1891,5,'Editor'),(298,4061,8,'Costume Design'),(298,16304,4,'Screenplay'),(298,16305,4,'Screenplay'),(298,16306,5,'Additional Editing'),(298,8794,7,'Art Direction'),(298,21707,7,'Set Decoration'),(298,92332,8,'Hair Department Head'),(298,117206,8,'Hairstylist'),(298,1212071,3,'Casting Associate'),(298,1319166,8,'Makeup Department Head'),(298,1325234,8,'Makeup Artist'),(298,1329113,8,'Costume Supervisor'),(298,1333900,8,'Makeup Artist'),(298,1335069,9,'Special Effects Coordinator'),(298,1336716,10,'Visual Effects'),(298,1391605,2,'Script Supervisor'),(298,1392143,8,'Set Costumer'),(298,1392909,10,'Visual Effects Supervisor'),(298,1395360,8,'Set Costumer'),(298,1399313,10,'Visual Effects Coordinator'),(298,1413224,8,'Key Hair Stylist'),(298,1413225,8,'Key Hair Stylist'),(298,1415332,8,'Makeup Artist'),(298,1419812,5,'Dialogue Editor'),(298,1432032,8,'Key Hair Stylist'),(298,1436181,10,'Visual Effects Producer'),(298,1509355,8,'Hairstylist'),(298,1531874,8,'Makeup Artist'),(298,1533052,8,'Hairstylist'),(298,1551151,8,'Set Costumer'),(298,1551536,8,'Key Hair Stylist'),(298,1551537,8,'Makeup Artist'),(298,1551539,6,'Music Editor'),(298,1552521,9,'Stunts'),(7484,7881,2,'Director'),(7484,7903,3,'Casting'),(7484,15812,2,'Director'),(7484,31025,4,'Author'),(7484,52691,2,'Director'),(7484,52694,4,'Author'),(7484,52695,4,'Author'),(7484,1447400,7,'Art Direction'),(7484,1447474,10,'Animation'),(7484,1451229,7,'Art Direction'),(7484,1455461,11,'Lighting Technician'),(7484,1455613,10,'Animation'),(7484,1457930,10,'Animation'),(7484,1462665,2,'Layout'),(853,946,8,'Costume Design'),(853,1325,3,'Casting'),(853,1729,6,'Original Music Composer'),(853,2352,4,'Screenplay'),(853,2352,2,'Director'),(853,2352,3,'Producer'),(853,2358,4,'Screenplay'),(853,2358,3,'Executive Producer'),(853,2484,5,'Additional Editing'),(853,2596,1,'Director of Photography'),(853,7203,7,'Production Design'),(853,7786,3,'Casting'),(853,9819,7,'Set Designer'),(853,10972,6,'Sound Effects Editor'),(853,10908,7,'Art Direction'),(853,10788,7,'Art Direction'),(853,11272,7,'Set Designer'),(853,40754,7,'Art Department Coordinator'),(853,40789,11,'Rigging Gaffer'),(853,40830,3,'Location Manager'),(853,12754,3,'Executive Producer'),(853,12755,3,'Executive Producer'),(853,12756,3,'Producer'),(853,12757,3,'Executive Producer'),(853,12758,5,'Editor'),(853,12759,5,'Editor'),(853,10789,7,'Set Decoration'),(853,12760,8,'Costume Design'),(853,12761,6,'Sound Designer'),(853,12762,6,'Sound Editor'),(853,29067,8,'Hairstylist'),(853,122274,10,'Visual Effects Supervisor'),(853,587804,8,'Makeup Artist'),(853,587804,8,'Hairstylist'),(853,1179913,1,'Additional Photography'),(853,1181554,1,'Still Photographer'),(853,1194062,9,'Second Unit Cinematographer'),(853,1304081,1,'Helicopter Camera'),(853,1324461,8,'Costume Supervisor'),(853,1325211,7,'Art Direction'),(853,1331979,8,'Costume Supervisor'),(853,1332509,3,'Casting'),(853,1332515,1,'Camera Operator'),(853,1334489,7,'Art Direction'),(853,1335186,10,'Visual Effects Producer'),(853,1377503,1,'Camera Operator'),(853,1378169,6,'Sound Re-Recording Mixer'),(853,1392145,6,'Music Editor'),(853,1395025,6,'Dolby Consultant'),(853,1400380,8,'Costume Supervisor'),(853,1402238,9,'Property Master'),(853,1403638,10,'Visual Effects Producer'),(853,1406786,11,'Gaffer'),(853,1406837,10,'Visual Effects Producer'),(853,1407858,5,'Dialogue Editor'),(853,1411340,1,'Camera Operator'),(853,1411357,3,'Location Manager'),(853,1415957,9,'Stunt Coordinator'),(853,1417826,9,'Sequence Supervisor'),(853,1425381,9,'Scenic Artist'),(853,1425483,10,'Animation Supervisor'),(853,1429645,9,'Unit Publicist'),(853,1433005,8,'Hairstylist'),(853,1433008,7,'Construction Coordinator'),(853,1433021,6,'Sound Re-Recording Mixer'),(853,1433038,9,'Special Effects Coordinator'),(853,1433040,10,'Animation Supervisor'),(853,1433047,10,'Visual Effects Producer'),(853,1433051,10,'Visual Effects Producer'),(853,1433052,10,'Visual Effects Producer'),(853,1433055,10,'Visual Effects Producer'),(853,1433059,10,'Visual Effects Supervisor'),(853,1433063,9,'Stunt Coordinator'),(853,1433066,1,'Camera Operator'),(853,1433071,8,'Costume Supervisor'),(853,1433073,8,'Set Costumer'),(853,1433079,3,'Location Manager'),(9593,1226,7,'Art Direction'),(9593,1090,3,'Producer'),(9593,1090,2,'Director'),(9593,1100,3,'Executive Producer'),(9593,1108,4,'Screenplay'),(9593,11079,7,'Set Decoration'),(9593,2874,3,'Casting'),(9593,3275,3,'Casting'),(9593,3430,6,'Dialogue Editor'),(9593,3985,5,'Editor'),(9593,3991,6,'Boom Operator'),(9593,4501,1,'Director of Photography'),(9593,5015,2,'Assistant Director'),(9593,7714,6,'Original Music Composer'),(9593,8752,5,'Editor'),(9593,9255,8,'Costume Design'),(9593,14055,3,'Co-Producer'),(9593,15849,10,'Visual Effects Supervisor'),(9593,15358,9,'Stunt Coordinator'),(9593,13457,9,'Special Effects Coordinator'),(9593,17886,5,'Additional Editing'),(9593,18458,7,'Leadman'),(9593,11011,4,'Story'),(9593,21701,7,'Production Illustrator'),(9593,25748,7,'Art Direction'),(9593,40437,3,'Producer'),(9593,57872,4,'Story'),(9593,57910,4,'Screenplay'),(9593,83072,8,'Set Dressing Artist'),(9593,208403,9,'Set Medic'),(9593,950637,3,'Unit Production Manager'),(9593,956222,9,'Second Unit Cinematographer'),(9593,961533,7,'Production Design'),(9593,961534,7,'Assistant Art Director'),(9593,1002581,3,'Production Office Coordinator'),(9593,1338146,8,'Makeup Artist'),(9593,1355527,9,'Carpenter'),(9593,1360108,10,'Digital Compositors'),(9593,1376311,6,'Orchestrator'),(9593,1378162,7,'Construction Coordinator'),(9593,1379396,9,'Visual Effects Editor'),(9593,1390524,6,'Supervising Sound Effects Editor'),(9593,1391130,1,'Steadicam Operator'),(9593,1391387,6,'Supervising Sound Editor'),(9593,1395352,3,'Production Manager'),(9593,1400082,1,'Still Photographer'),(9593,1400559,11,'Electrician'),(9593,1403192,9,'Digital Effects Supervisor'),(9593,1408311,6,'Sound Effects Editor'),(9593,1410345,7,'Property Master'),(9593,1411166,8,'Hairstylist'),(9593,1411706,3,'Associate Producer'),(9593,1411706,3,'Location Manager'),(9593,1412705,10,'Visual Effects Producer'),(9593,1423834,7,'Sculptor'),(9593,1435578,7,'Construction Foreman'),(9593,1458533,6,'Music Editor'),(9593,1477267,3,'Co-Producer'),(9593,1485666,9,'Stunts'),(9593,1503891,9,'Stand In'),(9593,1538365,9,'Utility Stunts'),(9593,1545540,6,'Production Sound Mixer'),(9593,1546873,6,'Foley Editor'),(9593,1550801,11,'Rigging Grip'),(9593,1551226,1,'First Assistant Camera'),(9593,1551515,10,'3D Animator'),(9593,1579709,9,'Post Production Supervisor'),(9593,1586929,9,'Scenic Artist'),(9593,1646230,9,'Armorer'),(9593,1672567,10,'Animation Supervisor'),(9593,1684385,3,'Production Coordinator'),(9593,1701247,9,'Craft Service'),(9593,1704939,1,'Camera Operator'),(9593,1741629,1,'Key Grip'),(9593,1753783,9,'Studio Teachers'),(9593,1770873,1,'Grip'),(9593,1778009,6,'Assistant Sound Editor'),(9593,1803767,9,'Loader'),(9593,1855155,7,'Set Designer'),(9593,1877101,7,'Greensman'),(9593,1877102,7,'Painter'),(9593,1877103,7,'Standby Painter'),(9593,1877104,8,'Key Hair Stylist'),(9593,1877107,8,'Set Costumer'),(9593,1877112,9,'Driver'),(9593,1877115,9,'Propmaker'),(9593,1877133,9,'Set Production Assistant'),(9593,1877138,9,'Telecine Colorist'),(9593,1877139,9,'Transportation Captain'),(9593,1877140,9,'Transportation Co-Captain'),(9593,1877142,9,'Unit Publicist'),(9593,1877143,9,'Video Assist Operator'),(9593,1877145,11,'Best Boy Electric'),(9593,1877146,11,'Gaffer'),(9593,1877147,3,'Production Accountant'),(9593,1877149,10,'I/O Supervisor'),(9593,1877150,10,'Visual Effects Coordinator'),(1904,491,6,'Original Music Composer'),(1904,488,3,'Producer'),(1904,557,8,'Costume Design'),(1904,647,1,'Director of Photography'),(1904,6410,3,'Casting'),(1904,931,3,'Producer'),(1904,950,5,'Editor'),(1904,13064,3,'Casting'),(1904,11002,7,'Production Design'),(1904,15572,7,'Art Direction'),(1904,17633,2,'Director'),(1904,19852,4,'Screenplay'),(1904,19853,4,'Novel'),(1904,19862,3,'Producer'),(1904,19863,7,'Art Direction'),(9615,2519,8,'Costume Design'),(9615,2533,5,'Editor'),(9615,3184,3,'Executive Producer'),(9615,3184,3,'Unit Production Manager'),(9615,7232,3,'Casting'),(9615,7239,6,'Supervising Sound Editor'),(9615,7239,6,'Sound Designer'),(9615,5167,7,'Production Design'),(9615,6041,6,'Original Music Composer'),(9615,10958,7,'Set Decoration'),(9615,11874,3,'Producer'),(9615,19567,9,'Stunt Coordinator'),(9615,20540,3,'Casting'),(9615,24179,3,'Executive Producer'),(9615,54419,3,'Executive Producer'),(9615,58191,4,'Screenplay'),(9615,57029,3,'Co-Producer'),(9615,58189,2,'Director'),(9615,58192,1,'Director of Photography'),(9615,58193,5,'Editor'),(9615,58194,5,'Editor'),(9615,92302,7,'Art Direction'),(9615,92476,10,'Visual Effects Supervisor'),(9615,95834,6,'Music Editor'),(9615,978127,6,'Sound Re-Recording Mixer'),(9615,1115736,6,'Sound Designer'),(9615,1115736,6,'Supervising Sound Editor'),(9615,1273377,1,'Additional Photography'),(9615,1273377,1,'Camera Operator'),(9615,1322089,8,'Costume Supervisor'),(9615,1329417,8,'Makeup Department Head'),(9615,1345268,6,'Music Editor'),(9615,1352983,2,'Script Supervisor'),(9615,1387183,5,'Dialogue Editor'),(9615,1399889,6,'Music Editor'),(9615,1404288,1,'Camera Operator'),(9615,1406395,9,'Visual Effects Editor'),(9615,1407878,6,'Sound Effects Editor'),(9615,1408293,8,'Hair Department Head'),(9615,1412228,6,'Sound Effects Editor'),(9615,1412990,1,'Camera Operator'),(9615,1413453,6,'Sound Effects Editor'),(9615,1414561,2,'Script Supervisor'),(9615,1423865,1,'Camera Operator'),(9615,1428198,10,'Visual Effects Producer'),(9615,1433021,6,'Sound Re-Recording Mixer'),(9615,1439107,11,'Gaffer'),(9615,1456353,1,'Camera Operator'),(9615,1530166,9,'Executive Music Producer'),(9615,1547140,8,'Key Costumer'),(9615,1549433,5,'First Assistant Editor'),(9615,1552051,3,'Production Supervisor'),(9615,1552061,11,'Rigging Gaffer'),(9615,1552062,6,'Production Sound Mixer'),(9615,1552363,3,'Production Coordinator'),(9615,1574666,10,'Visual Effects Coordinator'),(9615,1648329,9,'Stunt Coordinator'),(297,153,6,'Original Music Composer'),(297,769,2,'Director'),(297,769,3,'Producer'),(297,908,5,'Editor'),(297,1046,3,'Casting'),(297,2242,3,'Casting'),(297,2366,7,'Production Design'),(297,4178,4,'Screenplay'),(297,4179,4,'Screenplay'),(297,4180,4,'Screenplay'),(297,4181,4,'Screenplay'),(297,4182,3,'Producer'),(297,4183,3,'Producer'),(297,4184,3,'Executive Producer'),(297,4185,1,'Director of Photography'),(297,4186,5,'Editor'),(297,4187,7,'Art Direction'),(297,4188,7,'Set Decoration'),(297,4189,8,'Costume Design'),(297,4190,8,'Costume Design'),(297,4191,9,'Special Effects'),(297,6996,3,'Casting Associate'),(297,7538,6,'Music Editor'),(297,8763,6,'Foley Editor'),(297,9418,6,'ADR Editor'),(297,15226,6,'Supervising Sound Editor'),(297,16177,6,'Sound Re-Recording Mixer'),(297,18084,1,'Camera Operator'),(297,18091,1,'Dolly Grip'),(297,18095,1,'Still Photographer'),(297,21079,6,'Foley Editor'),(297,35977,5,'First Assistant Editor'),(297,113086,6,'Foley Editor'),(297,57344,5,'First Assistant Editor'),(297,91096,6,'Boom Operator'),(297,95835,6,'Sound Effects Editor'),(297,148221,6,'Sound Effects Editor'),(297,214170,8,'Key Makeup Artist'),(297,230436,3,'ADR Voice Casting'),(297,1073838,8,'Makeup Artist'),(297,1227173,6,'Foley'),(297,1329114,8,'Wardrobe Supervisor'),(297,1333153,7,'Property Master'),(297,1345596,5,'Dialogue Editor'),(297,1360101,6,'Foley'),(297,1368864,6,'Sound Re-Recording Mixer'),(297,1377130,10,'Visual Effects Supervisor'),(297,1378672,7,'Construction Coordinator'),(297,1393558,7,'Leadman'),(297,1399061,5,'Dialogue Editor'),(297,1401593,1,'Aerial Director of Photography'),(297,1406572,8,'Hairstylist'),(297,1407016,6,'ADR Editor'),(297,1407029,11,'Gaffer'),(297,1414989,8,'Key Makeup Artist'),(297,1423861,6,'ADR Editor'),(297,1425810,8,'Key Hair Stylist'),(297,1443065,6,'Supervising ADR Editor'),(297,1462925,8,'Hair Department Head'),(297,1467080,2,'Script Supervisor'),(297,1468624,8,'Makeup Artist'),(297,1470183,8,'Makeup Artist'),(297,1527448,8,'Wardrobe Supervisor'),(297,1534951,8,'Wardrobe Supervisor'),(297,1544638,6,'Sound Re-Recording Mixer'),(297,1544639,6,'Music Editor'),(297,1549201,5,'Dialogue Editor'),(297,1555703,6,'ADR Editor'),(297,1565199,8,'Hairstylist'),(297,1565201,6,'Sound Effects Editor'),(297,1627989,9,'Visual Effects Editor'),(297,1733142,5,'Negative Cutter'),(297,1733212,1,'Key Grip'),(297,1776947,7,'Construction Coordinator'),(297,1776955,8,'Seamstress'),(297,1776957,8,'Seamstress'),(297,1776963,11,'Rigging Gaffer'),(297,1776971,6,'ADR Editor'),(297,1776973,6,'ADR Editor'),(297,1776983,6,'Sound Effects Editor'),(297,1776984,6,'Sound Effects Editor'),(297,1776988,6,'Sound Recordist'),(297,1776989,6,'Sound Recordist'),(9884,1202,3,'Producer'),(9884,1788,3,'Executive Producer'),(9884,2031,3,'Casting'),(9884,2123,4,'Screenplay'),(9884,5912,6,'Original Music Composer'),(9884,2532,3,'Casting'),(9884,2723,1,'Director of Photography'),(9884,3995,8,'Makeup Department Head'),(9884,4712,7,'Set Decoration'),(9884,5584,5,'Editor'),(9884,7357,3,'Local Casting'),(9884,8531,3,'Production Supervisor'),(9884,11813,3,'Producer'),(9884,12639,7,'Set Designer'),(9884,12989,2,'Director'),(9884,13017,3,'Executive Producer'),(9884,14753,3,'Unit Production Manager'),(9884,15842,5,'Editor'),(9884,13457,9,'Special Effects Coordinator'),(9884,16601,10,'Visual Effects Supervisor'),(9884,42024,9,'Stunt Coordinator'),(9884,20968,7,'Production Design'),(9884,21470,7,'Art Direction'),(9884,23868,7,'Set Decoration'),(9884,35664,2,'First Assistant Director'),(9884,41590,3,'Associate Producer'),(9884,41591,1,'Camera Operator'),(9884,53017,6,'Orchestrator'),(9884,55227,6,'Sound Mixer'),(9884,55228,6,'Boom Operator'),(9884,55651,6,'Music'),(9884,59986,4,'Screenplay'),(9884,59987,4,'Screenplay'),(9884,60102,6,'Music Programmer'),(9884,61156,3,'Co-Producer'),(9884,92336,8,'Prosthetic Supervisor'),(9884,92488,9,'Stand In'),(9884,74779,6,'Production Sound Mixer'),(9884,82158,3,'Casting Assistant'),(9884,95842,6,'Music Editor'),(9884,295924,10,'Visual Effects Producer'),(9884,589467,3,'Assistant Production Manager'),(9884,957361,9,'Second Unit Cinematographer'),(9884,1095093,8,'Hairstylist'),(9884,1096416,3,'ADR Voice Casting'),(9884,1102820,1,'Camera Operator'),(9884,1115051,3,'Production Supervisor'),(9884,1115051,3,'Associate Producer'),(9884,1115736,6,'Supervising Sound Editor'),(9884,1148757,10,'Animation Supervisor'),(9884,1153233,2,'Script Supervisor'),(9884,1174839,7,'Art Department Coordinator'),(9884,1206905,8,'Costume Design'),(9884,1294897,11,'Best Boy Electric'),(9884,1324261,7,'Assistant Art Director'),(9884,1327140,7,'Assistant Art Director'),(9884,1328139,8,'Key Costumer'),(9884,1329476,7,'Art Direction'),(9884,1335124,9,'Picture Car Coordinator'),(9884,1336197,6,'Music Editor'),(9884,1337659,9,'Transportation Captain'),(9884,1341783,6,'Foley'),(9884,1341854,6,'Sound Re-Recording Mixer'),(9884,1341858,6,'Sound Re-Recording Mixer'),(9884,1342626,6,'Sound Re-Recording Mixer'),(9884,1347759,7,'Location Scout'),(9884,1355525,5,'First Assistant Editor'),(9884,1355529,7,'Art Department Coordinator'),(9884,1355531,2,'Script Supervisor'),(9884,1357061,6,'Sound Designer'),(9884,1360097,5,'Dialogue Editor'),(9884,1361676,6,'Scoring Mixer'),(9884,1363349,6,'Sound Designer'),(9884,1371064,6,'Foley'),(9884,1377213,7,'Assistant Art Director'),(9884,1391694,5,'First Assistant Editor'),(9884,1391805,9,'Utility Stunts'),(9884,1392239,6,'Sound Editor'),(9884,1400332,7,'Set Designer'),(9884,1400346,1,'Camera Operator'),(9884,1400355,9,'Transportation Coordinator'),(9884,1401593,1,'Aerial Director of Photography'),(9884,1402488,11,'Lighting Technician'),(9884,1403537,10,'Visual Effects Supervisor'),(9884,1403537,10,'Visual Effects Producer'),(9884,1404551,9,'Dialect Coach'),(9884,1404903,6,'Supervising ADR Editor'),(9884,1407878,6,'Sound Effects Editor'),(9884,1409823,8,'Makeup Artist'),(9884,1411166,8,'Hair Department Head'),(9884,1411353,9,'Studio Teachers'),(9884,1412219,5,'First Assistant Editor'),(9884,1412221,7,'Art Direction'),(9884,1412223,8,'Key Hair Stylist'),(9884,1412224,8,'Key Makeup Artist'),(9884,1412225,7,'Set Designer'),(9884,1412226,7,'Set Designer'),(9884,1412227,6,'Sound Effects Editor'),(9884,1412228,6,'Sound Effects Editor'),(9884,1412233,9,'Sound Recordist'),(9884,1412242,6,'Dolby Consultant'),(9884,1412248,10,'Visual Effects Producer'),(9884,1412250,10,'Visual Effects Supervisor'),(9884,1412253,9,'Second Unit'),(9884,1412253,9,'Stunt Coordinator'),(9884,1412260,11,'Gaffer'),(9884,1412262,11,'Rigging Gaffer'),(9884,1412263,8,'Set Costumer'),(9884,1412267,3,'Location Manager'),(9884,1412272,3,'Location Manager'),(9884,1412274,3,'Location Manager'),(9884,1412275,9,'Unit Publicist'),(9884,1412276,3,'Location Manager'),(9884,1439066,10,'Digital Compositors'),(9884,1439872,6,'ADR Editor'),(9884,1444239,9,'Stunts'),(9884,1465491,3,'Production Coordinator'),(9884,1471198,3,'Associate Producer'),(9884,1473444,6,'First Assistant Sound Editor'),(9884,1534973,7,'Painter'),(9884,1536878,1,'Underwater Camera'),(9884,1538822,6,'Music Supervisor'),(9884,1546580,3,'Executive In Charge Of Production'),(9884,1560071,9,'Craft Service'),(9884,1564986,7,'Set Decoration Buyer'),(9884,1567952,9,'Projection'),(9884,1568646,1,'First Assistant Camera'),(9884,1568647,1,'Key Grip'),(9884,1568648,9,'Driver'),(9884,1568649,1,'Camera Loader'),(9884,1568650,7,'Assistant Property Master'),(9884,1568651,9,'Set Production Assistant'),(9884,1568652,9,'Video Assist Operator'),(9884,1568653,9,'Visual Effects Editor'),(9884,1568655,11,'Electrician'),(9884,1568656,11,'Rigging Grip'),(9884,1568657,3,'Production Accountant'),(9884,1568658,3,'Production Office Coordinator'),(9884,1568661,6,'Sound Engineer'),(9884,1568662,10,'3D Animator'),(9884,1569122,4,'Storyboard'),(9884,1610265,6,'Foley Editor'),(9884,1673211,9,'Marine Coordinator'),(9884,1685460,9,'Aerial Coordinator'),(9884,1733132,5,'Negative Cutter'),(9884,1739945,3,'Assistant Production Coordinator'),(9884,1744851,7,'Title Designer'),(9884,1744852,1,'Grip'),(9884,1744854,9,'Pilot'),(9884,1744855,2,'Second Assistant Director'),(9884,1744856,6,'Musician'),(9341,3687,6,'Sound Designer'),(9341,1597,6,'Sound Effects Editor'),(9341,3965,3,'Casting'),(9341,5056,5,'Editor'),(9341,6045,7,'Supervising Art Director'),(9341,19155,6,'Original Music Composer'),(9341,8753,3,'Casting'),(9341,8757,3,'Unit Production Manager'),(9341,9456,9,'Special Effects Coordinator'),(9341,11808,3,'Producer'),(9341,11808,4,'Writer'),(9341,11813,3,'Producer'),(9341,12384,7,'Set Decoration'),(9341,13035,3,'Location Manager'),(9341,13223,5,'Color Timer'),(9341,13224,6,'Dolby Consultant'),(9341,15148,2,'Director'),(9341,18788,8,'Makeup Artist'),(9341,10936,7,'Production Design'),(9341,19535,4,'Writer'),(9341,23969,1,'Director of Photography'),(9341,33284,8,'Costume Design'),(9341,39387,3,'Producer'),(9341,41188,8,'Costume Supervisor'),(9341,113043,6,'Foley Editor'),(9341,113098,9,'Special Effects Coordinator'),(9341,113190,10,'Visual Effects Producer'),(9341,61107,3,'Co-Producer'),(9341,62857,3,'Local Casting'),(9341,62858,3,'Casting'),(9341,113674,10,'Visual Effects Producer'),(9341,69717,1,'Camera Operator'),(9341,75876,8,'Costume Coordinator'),(9341,80824,6,'Sound Effects Editor'),(9341,83088,6,'Supervising ADR Editor'),(9341,92210,7,'Art Department Coordinator'),(9341,126871,11,'Lighting Supervisor'),(9341,141483,10,'Visual Effects Supervisor'),(9341,191865,9,'Stunts'),(9341,192854,9,'Picture Car Coordinator'),(9341,197930,9,'Stunt Coordinator'),(9341,200752,10,'Visual Effects Supervisor'),(9341,223991,7,'Art Direction'),(9341,230436,3,'ADR Voice Casting'),(9341,957821,8,'Key Makeup Artist'),(9341,978127,6,'Sound Re-Recording Mixer'),(9341,1034748,3,'Casting'),(9341,1043374,6,'Musician'),(9341,1063979,9,'Scenic Artist'),(9341,1148367,9,'Scenic Artist'),(9341,1177364,1,'Steadicam Operator'),(9341,1227173,6,'Foley'),(9341,1271607,9,'Video Assist Operator'),(9341,1285933,8,'Costume Supervisor'),(9341,1299201,8,'Makeup Artist'),(9341,1321589,8,'Costume Supervisor'),(9341,1321701,8,'Assistant Costume Designer'),(9341,1324015,7,'Art Department Coordinator'),(9341,1332186,8,'Hair Supervisor'),(9341,1339459,6,'Music Editor'),(9341,1344255,6,'Supervising Sound Editor'),(9341,1346314,10,'Digital Compositors'),(9341,1355973,3,'Location Manager'),(9341,1357061,6,'Sound Designer'),(9341,1357598,1,'Steadicam Operator'),(9341,1360101,6,'Foley'),(9341,1360110,10,'Visual Effects Supervisor'),(9341,1364399,11,'Chief Lighting Technician'),(9341,1368864,6,'Sound Re-Recording Mixer'),(9341,1372838,5,'Dialogue Editor'),(9341,1377234,5,'Digital Intermediate'),(9341,1377294,10,'Visual Effects Producer'),(9341,1378677,7,'Set Designer'),(9341,1378725,9,'Transportation Coordinator'),(9341,1384373,9,'Digital Effects Supervisor'),(9341,1384398,2,'Script Supervisor'),(9341,1387541,5,'Dialogue Editor'),(9341,1389130,7,'Art Department Assistant'),(9341,1391706,9,'Chef'),(9341,1392095,10,'Visual Effects Supervisor'),(9341,1392108,3,'Casting'),(9341,1392243,6,'Supervising Dialogue Editor'),(9341,1392907,10,'Visual Effects Producer'),(9341,1392915,1,'Still Photographer'),(9341,1394130,6,'Sound Re-Recording Mixer'),(9341,1394943,7,'Sculptor'),(9341,1395438,7,'Sculptor'),(9341,1396345,11,'Rigging Gaffer'),(9341,1396804,9,'Visual Effects Editor'),(9341,1399056,7,'Sculptor'),(9341,1400092,1,'Helicopter Camera'),(9341,1400733,1,'Aerial Director of Photography'),(9341,1401786,6,'Sound Effects Editor'),(9341,1403537,10,'Visual Effects Supervisor'),(9341,1403537,10,'Visual Effects Producer'),(9341,1404724,9,'Digital Effects Producer'),(9341,1404841,6,'ADR Editor'),(9341,1406782,11,'Gaffer'),(9341,1407804,8,'Hairstylist'),(9341,1407805,8,'Makeup Artist'),(9341,1407845,9,'Unit Publicist'),(9341,1407878,6,'Sound Effects Editor'),(9341,1408178,8,'Key Hair Stylist'),(9341,1409710,1,'Steadicam Operator'),(9341,1410337,9,'Scenic Artist'),(9341,1410346,7,'Construction Coordinator'),(9341,1410353,7,'Greensman'),(9341,1410573,10,'Visual Effects Producer'),(9341,1411265,5,'Dialogue Editor'),(9341,1411266,9,'Pyrotechnician'),(9341,1411275,9,'Transportation Coordinator'),(9341,1411856,6,'Music Editor'),(9341,1412699,6,'Sound Effects Editor'),(9341,1413437,9,'Property Master'),(9341,1413439,9,'Property Master'),(9341,1413440,7,'Leadman'),(9341,1413441,9,'Scenic Artist'),(9341,1413442,9,'Scenic Artist'),(9341,1413443,7,'Set Designer'),(9341,1413444,9,'Scenic Artist'),(9341,1413445,9,'Scenic Artist'),(9341,1413446,9,'Scenic Artist'),(9341,1413447,9,'Scenic Artist'),(9341,1413448,7,'Sculptor'),(9341,1413449,7,'Sculptor'),(9341,1413450,7,'Sculptor'),(9341,1413451,6,'Supervising Sound Editor'),(9341,1413452,9,'Sound Recordist'),(9341,1413453,6,'Sound Effects Editor'),(9341,1413456,6,'Foley'),(9341,1413457,9,'Special Effects Coordinator'),(9341,1413459,9,'CG Supervisor'),(9341,1413460,9,'CG Supervisor'),(9341,1413461,10,'Visual Effects Producer'),(9341,1413462,9,'CGI Supervisor'),(9341,1413463,10,'Visual Effects Producer'),(9341,1413464,9,'CGI Supervisor'),(9341,1413465,10,'Visual Effects Producer'),(9341,1413466,9,'CG Supervisor'),(9341,1413507,9,'Post Production Supervisor'),(9341,1413507,9,'Visual Effects Editor'),(9341,1413508,10,'Visual Effects Supervisor'),(9341,1413509,10,'Visual Effects Supervisor'),(9341,1413583,1,'Camera Operator'),(9341,1413587,9,'Second Unit Cinematographer'),(9341,1413588,11,'Gaffer'),(9341,1413589,11,'Rigging Gaffer'),(9341,1413590,9,'Video Assist Operator'),(9341,1413591,11,'Lighting Technician'),(9341,1413592,11,'Lighting Technician'),(9341,1413602,9,'Transportation Coordinator'),(9341,1413606,9,'Transportation Coordinator'),(9341,1413804,3,'Location Manager'),(9341,1413805,2,'Script Supervisor'),(9341,1413808,2,'Script Supervisor'),(9341,1413810,3,'Location Manager'),(9341,1413812,3,'Location Manager'),(9341,1413814,3,'Location Manager'),(9341,1413816,2,'Script Supervisor'),(9341,1413820,3,'Location Manager'),(9341,1413821,3,'Location Manager'),(9341,1428855,6,'Sound Editor'),(9341,1433021,6,'Additional Sound Re-Recording Mixer'),(9341,1436183,9,'Technical Supervisor'),(9341,1440877,10,'Special Effects Supervisor'),(9341,1445886,10,'Visual Effects Supervisor'),(9341,1457630,7,'Production Illustrator'),(9341,1531566,9,'Carpenter'),(9341,1548634,9,'Security'),(9341,1548698,6,'Orchestrator'),(9341,1550819,3,'Production Office Coordinator'),(9341,1559180,9,'Systems Administrators & Support'),(9341,1562947,7,'Assistant Art Director'),(9341,1566250,10,'3D Supervisor'),(9341,1568661,6,'Sound Engineer'),(9341,1568662,10,'3D Animator'),(9341,1570203,1,'Camera Technician'),(9341,1578659,6,'Sound Mixer'),(9341,1580636,3,'Production Accountant'),(9341,1582391,7,'Location Scout'),(9341,1582392,7,'Painter'),(9341,1582393,7,'Set Decoration Buyer'),(9341,1582394,1,'First Assistant Camera'),(9341,1582396,7,'Set Dresser'),(9341,1582397,9,'Driver'),(9341,1582398,9,'Loader'),(9341,1582399,9,'Projection'),(9341,1582400,9,'Propmaker'),(9341,1582401,9,'Set Medic'),(9341,1582402,9,'Set Production Assistant'),(9341,1582403,9,'Stand In'),(9341,1582404,9,'Transportation Captain'),(9341,1582405,9,'Transportation Co-Captain'),(9341,1582406,9,'Utility Stunts'),(9341,1582407,11,'Electrician'),(9341,1582408,11,'Rigging Grip'),(9341,1582409,3,'Casting Associate'),(9341,1582411,3,'Production Coordinator'),(9341,1582414,3,'Production Supervisor'),(9341,1582415,3,'Researcher'),(9341,1582416,6,'Boom Operator'),(9341,1582418,10,'I/O Supervisor'),(9341,1582425,10,'Visual Effects'),(9341,1582426,10,'Visual Effects Coordinator'),(9341,1582427,4,'Storyboard'),(9341,1582428,9,'Machinist'),(9341,1798059,7,'Assistant Property Master'),(9341,1798065,1,'Dolly Grip'),(9341,1798069,1,'Key Grip'),(9341,1798076,1,'Grip'),(9341,1798082,8,'Wardrobe Supervisor'),(9341,1798470,9,'Pilot'),(9341,1798471,2,'First Assistant Director'),(9341,1798472,2,'Second Assistant Director'),(9341,1798474,2,'Third Assistant Director'),(9341,1798480,3,'Assistant Production Coordinator'),(9341,1798482,3,'Casting Assistant'),(9341,1798486,6,'Assistant Sound Editor'),(9341,1798488,10,'2D Artist'),(9341,1798489,10,'3D Artist'),(9341,1798490,10,'3D Modeller'),(9341,1798492,10,'Roto Supervisor'),(9637,282,3,'Producer'),(9637,1215,2,'Director'),(9637,5914,3,'Casting'),(9637,3393,6,'Original Music Composer'),(9637,8299,3,'Executive Producer'),(9637,9346,9,'Property Master'),(9637,11900,3,'Co-Producer'),(9637,12619,8,'Wigmaker'),(9637,13584,5,'Editor'),(9637,13594,3,'Executive Producer'),(9637,13594,4,'Characters'),(9637,13620,3,'Executive Producer'),(9637,13620,4,'Characters'),(9637,15218,4,'Screenplay'),(9637,14764,6,'Sound Effects Editor'),(9637,54491,8,'Assistant Costume Designer'),(9637,21592,8,'Costume Design'),(9637,24184,7,'Art Direction'),(9637,28240,1,'Director of Photography'),(9637,10809,3,'Executive Producer'),(9637,58237,3,'Executive Producer'),(9637,18953,3,'Producer'),(9637,59792,3,'Associate Producer'),(9637,60266,3,'Production Manager'),(9637,62485,7,'Set Decoration'),(9637,67776,4,'Story'),(9637,86199,6,'Music Supervisor'),(9637,166753,9,'Stunt Coordinator'),(9637,166753,9,'Second Unit Cinematographer'),(9637,548435,6,'Foley'),(9637,1023289,6,'Music Editor'),(9637,1042213,10,'Animation Supervisor'),(9637,1096337,10,'3D Supervisor'),(9637,1097359,7,'Set Decoration'),(9637,1121617,3,'Unit Production Manager'),(9637,1121617,3,'Associate Producer'),(9637,1128347,7,'Production Design'),(9637,1142860,11,'Lighting Supervisor'),(9637,1173456,11,'Gaffer'),(9637,1217416,4,'Storyboard'),(9637,1243767,9,'Choreographer'),(9637,1305774,7,'Art Department Coordinator'),(9637,1328410,5,'First Assistant Editor'),(9637,1355543,8,'Costume Supervisor'),(9637,1389593,10,'Visual Effects Producer'),(9637,1391707,7,'Art Direction'),(9637,1391708,8,'Prosthetic Supervisor'),(9637,1392669,7,'Assistant Art Director'),(9637,1392718,1,'Still Photographer'),(9637,1405232,5,'Dialogue Editor'),(9637,1408346,10,'Visual Effects'),(9637,1412734,3,'Production Coordinator'),(9637,1412741,6,'Production Sound Mixer'),(9637,1412757,3,'Location Manager'),(9637,1412758,3,'Publicist'),(9637,1417972,6,'Supervising Sound Editor'),(9637,1418281,7,'Greensman'),(9637,1418314,2,'Script Supervisor'),(9637,1418814,1,'First Assistant Camera'),(9637,1419800,9,'CG Supervisor'),(9637,1422982,11,'Best Boy Electric'),(9637,1423757,6,'Sound Designer'),(9637,1435377,10,'VFX Supervisor'),(9637,1438638,8,'Makeup Artist'),(9637,1447474,10,'Animation'),(9637,1450347,7,'Art Department Manager'),(9637,1450347,7,'Production Illustrator'),(9637,1451682,10,'Visual Effects'),(9637,1454936,10,'Special Effects Supervisor'),(9637,1455541,10,'Animation'),(9637,1460504,10,'Animation Manager'),(9637,1460602,9,'Compositors'),(9637,1464344,3,'Executive In Charge Of Post Production'),(9637,1472651,3,'Associate Producer'),(9637,1483570,7,'Set Designer'),(9637,1536893,7,'Construction Coordinator'),(9637,1536897,8,'Set Costumer'),(9637,1546580,3,'Executive In Charge Of Production'),(9637,1549636,10,'Visual Effects Supervisor'),(9637,1552549,5,'Color Timer'),(9637,1552603,6,'Sound Engineer'),(9637,1569802,9,'Utility Stunts'),(9637,1580665,6,'First Assistant Sound Editor'),(9637,1582392,7,'Lead Painter'),(9637,1584257,4,'Storyboard'),(9637,1588683,6,'Boom Operator'),(9637,1588685,10,'Visual Effects Coordinator'),(9637,1604015,6,'Orchestrator'),(9637,1635060,3,'Unit Manager'),(9637,1671529,7,'Art Direction'),(9637,1671531,7,'Art Direction'),(9637,1671533,7,'Set Decoration'),(9637,1671535,7,'Set Decoration'),(9637,1671542,7,'Art Department Assistant'),(9637,1671547,7,'Construction Foreman'),(9637,1671551,7,'Sculptor'),(9637,1671559,1,'Grip'),(9637,1671561,8,'Hairstylist'),(9637,1671582,8,'Set Dressing Artist'),(9637,1671584,9,'Carpenter'),(9637,1671587,9,'Digital Effects Supervisor'),(9637,1671588,9,'Loader'),(9637,1671590,9,'Production Controller'),(9637,1671597,9,'Software Engineer'),(9637,1671598,9,'Sound Recordist'),(9637,1671599,9,'Stand In'),(9637,1671600,9,'Stunts'),(9637,1671601,9,'Systems Administrators & Support'),(9637,1671602,9,'Telecine Colorist'),(9637,1671603,9,'Visual Effects Editor'),(9637,1671606,11,'Lighting Technician'),(9637,1671607,11,'Rigging Gaffer'),(9637,1671616,3,'Production Accountant'),(9637,1671650,6,'Sound Mixer'),(9637,1671651,10,'Digital Compositors'),(9637,1671652,10,'Visual Development'),(9637,1671654,9,'Digital Producer'),(9637,1671655,10,'Modeling'),(9339,12865,5,'Editor'),(9339,2593,6,'Original Music Composer'),(9339,3276,3,'Casting'),(9339,4501,1,'Director of Photography'),(9339,4485,3,'Producer'),(9339,4485,4,'Writer'),(9339,4486,3,'Producer'),(9339,4486,4,'Writer'),(9339,11772,3,'Executive Producer'),(9339,11874,3,'Producer'),(9339,15017,8,'Makeup Artist'),(9339,19292,3,'Producer'),(9339,20821,3,'Producer'),(9339,56728,3,'Executive Producer'),(9339,57370,2,'Director'),(8247,376,3,'Producer'),(8247,907,8,'Costume Design'),(8247,1593,3,'Casting'),(8247,3893,4,'Screenplay'),(8247,7535,7,'Set Decoration'),(8247,7469,4,'Screenplay'),(8247,8678,7,'Production Design'),(8247,9639,7,'Supervising Art Director'),(8247,11098,6,'Music'),(8247,11657,5,'Editor'),(8247,11694,2,'Director'),(8247,11092,3,'Producer'),(8247,11092,4,'Screenplay'),(8247,11695,3,'Producer'),(8247,12374,3,'Unit Production Manager'),(8247,14913,7,'Art Direction'),(8247,15005,5,'Editor'),(8247,10836,7,'Supervising Art Director'),(8247,25058,5,'Additional Editing'),(8247,32487,8,'Hairstylist'),(8247,38657,3,'Producer'),(8247,49912,6,'Music Supervisor'),(8247,54164,1,'Director of Photography'),(8247,54163,3,'Executive Producer'),(8247,54267,3,'Executive Producer'),(8247,54268,3,'Executive Producer'),(8247,54269,3,'Executive Producer'),(8247,54271,5,'Editor'),(8247,54272,10,'Visual Effects Supervisor'),(8247,113046,6,'Sound Mixer'),(8247,113054,6,'Sound Effects Editor'),(8247,113073,6,'Sound Mixer'),(8247,113097,6,'Sound Designer'),(8247,64335,5,'Additional Editing'),(8247,66513,3,'Producer'),(8247,66513,3,'Associate Producer'),(8247,82132,3,'Unit Production Manager'),(8247,91161,3,'Co-Producer'),(8247,102343,8,'Makeup Artist'),(8247,142325,3,'Producer'),(8247,142325,3,'Associate Producer'),(8247,142325,9,'Stunt Coordinator'),(8247,190936,3,'Casting Associate'),(8247,933333,3,'Casting'),(8247,954164,3,'Producer'),(8247,989750,3,'Casting Associate'),(8247,1123819,4,'Novel'),(8247,1319467,8,'Makeup Department Head'),(8247,1340345,6,'Sound Designer'),(8247,1347722,8,'Makeup Department Head'),(8247,1364406,9,'Property Master'),(8247,1399505,1,'Camera Operator'),(8247,1399909,7,'Set Designer'),(8247,1399927,1,'Camera Operator'),(8247,1399927,1,'Steadicam Operator'),(8247,1401601,9,'Unit Publicist'),(8247,1403475,10,'Visual Effects Supervisor'),(8247,1404326,6,'Music Editor'),(8247,1404850,1,'Still Photographer'),(8247,1408670,7,'Assistant Art Director'),(8247,1423203,8,'Key Hair Stylist'),(8247,1425975,7,'Construction Coordinator'),(8247,1429245,10,'Special Effects Supervisor'),(8247,1442212,4,'Storyboard'),(8247,1449162,7,'Set Designer'),(8247,1449183,2,'Script Supervisor'),(8247,1465860,10,'Visual Effects Producer'),(8247,1526834,8,'Assistant Costume Designer'),(8247,1530756,8,'Costume Supervisor'),(8247,1545541,11,'Gaffer'),(8247,1548529,6,'Sound Mixer'),(8247,1548533,4,'Storyboard'),(8247,1552360,9,'Special Effects Coordinator'),(8247,1553269,4,'Storyboard'),(8247,1556313,9,'Stunt Coordinator'),(8247,1581500,8,'Assistant Costume Designer'),(8247,1651081,4,'Storyboard'),(8247,1652234,4,'Storyboard'),(8247,1701149,7,'Set Designer'),(8247,1701150,4,'Storyboard'),(8247,1701151,4,'Storyboard'),(8247,1701152,4,'Storyboard'),(8247,1701153,4,'Storyboard'),(8247,1701154,4,'Storyboard'),(8247,1701155,9,'Property Master'),(8247,1701156,8,'Costume Supervisor'),(8247,1701157,9,'Makeup Effects'),(8247,1701160,3,'Location Manager'),(8247,1701161,3,'Production Coordinator'),(1949,6055,7,'Set Decoration'),(1949,6961,8,'Costume Design'),(1949,7467,2,'Director'),(1949,7475,3,'Producer'),(1949,7481,3,'Casting'),(1949,7763,6,'Sound Designer'),(1949,7763,6,'Supervising Sound Editor'),(1949,7764,6,'Supervising Sound Editor'),(1949,8422,6,'Original Music Composer'),(1949,10688,1,'Director of Photography'),(1949,17455,5,'Editor'),(1949,21568,7,'Art Direction'),(1949,20204,4,'Screenplay'),(1949,20204,3,'Producer'),(1949,20205,4,'Book'),(1949,20206,3,'Producer'),(1949,20207,3,'Producer'),(1949,20208,3,'Producer'),(1949,20209,7,'Production Design'),(1949,52161,6,'Music Supervisor'),(1949,91059,3,'Unit Production Manager'),(1949,1122560,9,'Stunt Coordinator'),(1949,1172443,1,'Still Photographer'),(1949,1192700,6,'Music Supervisor'),(1949,1302619,8,'Makeup Artist'),(1949,1319843,8,'Makeup Department Head'),(1949,1322466,8,'Costume Supervisor'),(1949,1337458,6,'Sound mixer'),(1949,1360103,6,'Sound Effects Editor'),(1949,1378828,6,'Sound Re-Recording Mixer'),(1949,1387265,6,'Music Editor'),(1949,1389534,5,'Dialogue Editor'),(1949,1399117,6,'Sound Effects Editor'),(1949,1406614,6,'Sound Re-Recording Mixer'),(1949,1414289,11,'Rigging Gaffer'),(1949,1414537,8,'Hairstylist'),(1949,1415464,5,'Dialogue Editor'),(1949,1422418,6,'Music Editor'),(1949,1428582,8,'Hair Department Head'),(1949,1452614,8,'Key Hair Stylist'),(1949,1539947,3,'Executive Producer'),(1949,1547333,6,'Music Editor'),(1949,1547339,2,'Script Supervisor'),(8452,894,6,'Music'),(8452,1100,3,'Producer'),(8452,1724,2,'Director'),(8452,1730,3,'Casting'),(8452,3995,8,'Makeup Department Head'),(8452,6207,7,'Art Direction'),(8452,7723,3,'Producer'),(8452,9967,7,'Production Design'),(8452,9618,7,'Assistant Art Director'),(8452,10751,5,'Editor'),(8452,10752,5,'Editor'),(8452,13179,6,'Supervising Sound Editor'),(8452,13586,7,'Art Direction'),(8452,16736,6,'Supervising Sound Editor'),(8452,25195,7,'Assistant Art Director'),(8452,20206,3,'Producer'),(8452,21158,4,'Screenplay'),(8452,21159,4,'Screenplay'),(8452,33460,1,'Director of Photography'),(8452,53008,5,'Editor'),(8452,113194,9,'Stunts'),(8452,66688,7,'Set Designer'),(8452,60714,7,'Set Decoration'),(8452,62164,8,'Costume Design'),(8452,113674,10,'Visual Effects Producer'),(8452,158916,6,'Sound Re-Recording Mixer'),(8452,162532,7,'Set Designer'),(8452,548432,6,'Sound Re-Recording Mixer'),(8452,957310,7,'Production Design'),(8452,959549,7,'Art Direction'),(8452,1007395,9,'Stunts'),(8452,1068056,7,'Set Designer'),(8452,1327185,8,'Costume Supervisor'),(8452,1327186,8,'Costume Supervisor'),(8452,1352969,5,'Dialogue Editor'),(8452,1391697,9,'Stunt Coordinator'),(8452,1392893,9,'Property Master'),(8452,1392894,9,'Scenic Artist'),(8452,1392895,7,'Set Designer'),(8452,1392896,7,'Set Designer'),(8452,1392897,7,'Set Designer'),(8452,1392898,7,'Set Designer'),(8452,1392899,7,'Construction Coordinator'),(8452,1392901,5,'Dialogue Editor'),(8452,1392904,5,'Dialogue Editor'),(8452,1392906,10,'Visual Effects Producer'),(8452,1392907,10,'Visual Effects Producer'),(8452,1392908,10,'Visual Effects Producer'),(8452,1392909,10,'Visual Effects Supervisor'),(8452,1392911,10,'Visual Effects Supervisor'),(8452,1392915,1,'Still Photographer'),(8452,1392916,1,'Camera Operator'),(8452,1392919,6,'Music Editor'),(8452,1392922,3,'Location Manager'),(8452,1392925,2,'Script Supervisor'),(8452,1410526,10,'Visual Effects'),(310,206,3,'Producer'),(310,602,7,'Production Design'),(310,4500,6,'Original Music Composer'),(310,2399,3,'Casting'),(310,2400,3,'Casting'),(310,4489,4,'Screenplay'),(310,4489,3,'Executive Producer'),(310,4499,2,'Director'),(310,4499,3,'Producer'),(310,4501,1,'Director of Photography'),(310,4502,5,'Editor'),(310,4504,3,'Executive Producer'),(310,4505,3,'Producer'),(310,4506,3,'Producer'),(310,4485,3,'Producer'),(310,4485,4,'Screenplay'),(310,4485,4,'Story'),(310,4486,4,'Screenplay'),(310,4486,3,'Producer'),(310,4486,4,'Story'),(310,4507,3,'Executive Producer'),(310,7536,8,'Costume Design'),(310,12945,6,'Music Supervisor'),(310,12533,6,'Sound mixer'),(310,12587,6,'Boom Operator'),(310,15006,7,'Art Direction'),(310,15016,7,'Set Decoration'),(310,15017,8,'Makeup Artist'),(310,25201,10,'Visual Effects Supervisor'),(310,23550,8,'Makeup Department Head'),(310,58362,6,'Supervising Sound Editor'),(310,113051,6,'Sound Editor'),(310,66689,7,'Assistant Art Director'),(310,62544,3,'Associate Producer'),(310,92356,7,'Standby Painter'),(310,92470,10,'Animation Supervisor'),(310,79253,8,'Assistant Costume Designer'),(310,91144,6,'Scoring Mixer'),(310,91173,3,'Researcher'),(310,91905,1,'Dolly Grip'),(310,220032,2,'Second Assistant Director'),(310,228439,5,'Dialogue Editor'),(310,548429,9,'Sound Recordist'),(310,928939,3,'Associate Producer'),(310,928939,2,'First Assistant Director'),(310,957558,3,'Associate Producer'),(310,999687,9,'Stunts'),(310,1004282,9,'Unit Production Manager'),(310,1023366,9,'Additional Music'),(310,1023366,6,'Musician'),(310,1334779,9,'Property Master'),(310,1360761,7,'Set Dresser'),(310,1361755,9,'Set Production Assistant'),(310,1364410,6,'ADR Supervisor'),(310,1369033,9,'Stand In'),(310,1378173,1,'Still Photographer'),(310,1391130,1,'Steadicam Operator'),(310,1394971,1,'Camera Operator'),(310,1397850,11,'Chief Lighting Technician'),(310,1398854,7,'Construction Coordinator'),(310,1400372,9,'Second Unit'),(310,1400372,9,'Stunt Coordinator'),(310,1403498,3,'Location Manager'),(310,1404235,9,'Unit Publicist'),(310,1408392,1,'Aerial Camera'),(310,1413160,7,'Set Designer'),(310,1417400,8,'Hairstylist'),(310,1424533,6,'Production Sound Mixer'),(310,1427379,11,'Lighting Technician'),(310,1430234,10,'Visual Effects Producer'),(310,1457064,8,'Key Makeup Artist'),(310,1461372,6,'First Assistant Sound Editor'),(310,1463332,4,'Storyboard'),(310,1477799,9,'Transportation Coordinator'),(310,1521504,8,'Hair Department Head'),(310,1535727,8,'Key Hair Stylist'),(310,1548698,6,'Orchestrator'),(310,1550058,6,'Supervising Music Editor'),(310,1551049,7,'Art Department Coordinator'),(310,1551051,10,'Visual Effects Coordinator'),(310,1551057,11,'Rigging Grip'),(310,1552498,7,'Greensman'),(310,1553642,9,'Quality Control Supervisor'),(310,1560976,8,'Costume Supervisor'),(310,1562237,6,'Apprentice Sound Editor'),(310,1562244,9,'Special Effects Coordinator'),(310,1562980,7,'Art Department Assistant'),(310,1562992,7,'Construction Foreman'),(310,1562993,7,'Leadman'),(310,1562994,7,'Location Scout'),(310,1563433,1,'Additional Camera'),(310,1563434,1,'First Assistant Camera'),(310,1563435,1,'Grip'),(310,1563438,8,'Set Costumer'),(310,1563657,3,'Casting Assistant'),(310,1564212,9,'Cableman'),(310,1564213,9,'Craft Service'),(310,1564214,9,'Driver'),(310,1564215,1,'Camera Loader'),(310,1564216,9,'Picture Car Coordinator'),(310,1564217,9,'Post Production Assistant'),(310,1564219,9,'Projection'),(310,1564220,9,'Propmaker'),(310,1564221,9,'Security'),(310,1564224,9,'Set Medic'),(310,1564226,9,'Technical Supervisor'),(310,1564228,9,'Transportation Co-Captain'),(310,1564233,5,'Color Timer'),(310,1564239,5,'Digital Intermediate'),(310,1564242,5,'First Assistant Editor'),(310,1564244,11,'Best Boy Electric'),(310,1564245,11,'Electrician'),(310,1564246,11,'Rigging Gaffer'),(310,1564248,3,'Production Accountant'),(310,1564249,3,'Production Coordinator'),(310,1564250,6,'Foley'),(310,1564251,10,'24 Frame Playback'),(310,1632066,9,'Aerial Coordinator'),(310,1636660,8,'Key Costumer'),(310,1677824,6,'Foley Editor'),(310,1741629,1,'Key Grip'),(310,1741630,9,'Pilot'),(310,1741631,5,'Negative Cutter'),(310,1741632,3,'Assistant Production Coordinator'),(954,500,3,'Producer'),(954,508,4,'Screenplay'),(954,531,6,'Original Music Composer'),(954,669,7,'Production Design'),(954,900,6,'Sound Designer'),(954,1150,2,'Director'),(954,1258,1,'Director of Photography'),(954,1262,3,'Casting'),(954,2260,4,'Screenplay'),(954,2485,3,'Casting'),(954,3310,2,'First Assistant Director'),(954,4034,8,'Costume Design'),(954,7791,7,'Set Decoration'),(954,8158,6,'Dialogue Editor'),(954,9432,10,'Special Effects Supervisor'),(954,9183,3,'Producer'),(954,9028,3,'Location Manager'),(954,9159,6,'Sound Mixer'),(954,10976,9,'Stunt Coordinator'),(954,10197,7,'Supervising Art Director'),(954,11057,4,'Screenplay'),(954,13050,9,'Dialect Coach'),(954,15312,4,'Original Story'),(954,10766,5,'Editor'),(954,15314,8,'Makeup Artist'),(954,15315,6,'Music Editor'),(954,15316,9,'Special Effects'),(954,15317,10,'Visual Effects Coordinator'),(954,15318,9,'Stunts'),(954,16934,3,'Unit Manager'),(954,18989,7,'Art Direction'),(954,22059,3,'Casting Associate'),(954,22080,7,'Assistant Art Director'),(954,38335,6,'Orchestrator'),(954,42995,3,'Executive Producer'),(954,47846,9,'Second Unit'),(954,66689,7,'Set Designer'),(954,91123,1,'Aerial Camera'),(954,101608,9,'Makeup Effects'),(954,145171,3,'Production Accountant'),(954,150844,3,'Associate Producer'),(954,572622,6,'Supervising Sound Editor'),(954,947741,9,'Propmaker'),(954,983118,1,'Steadicam Operator'),(954,1300663,8,'Prosthetic Makeup Artist'),(954,1319198,8,'Set Costumer'),(954,1323281,8,'Costume Supervisor'),(954,1335873,9,'Visual Effects Art Director'),(954,1361170,1,'Still Photographer'),(954,1367653,10,'Digital Compositors'),(954,1394104,2,'Script Supervisor'),(954,1400906,6,'Sound Effects Editor'),(954,1401105,9,'Visual Effects Editor'),(954,1401796,10,'Visual Effects Supervisor'),(954,1416008,7,'Location Scout'),(954,1416013,3,'Production Manager'),(954,1427543,1,'Camera Operator'),(954,1446694,9,'Unit Publicist'),(954,1446996,6,'Foley'),(954,1475003,2,'First Assistant Director'),(954,1500872,9,'Loader'),(954,1546572,7,'Sculptor'),(954,1546757,9,'Armorer'),(954,1562248,5,'Color Timer'),(954,1573435,9,'Driver'),(954,1577958,10,'Visual Effects'),(954,1588463,11,'Gaffer'),(954,1629423,6,'Sound Recordist'),(954,1632585,7,'Production Illustrator'),(954,1645448,9,'Utility Stunts'),(954,1645456,6,'Boom Operator'),(954,1697623,3,'Unit Production Manager'),(954,1725268,8,'Assistant Costume Designer'),(954,1742063,9,'Post Production Supervisor'),(954,1749923,6,'Assistant Sound Editor'),(954,1751448,8,'Costume Design'),(954,1751470,9,'Digital Effects Supervisor'),(954,1761122,1,'Key Grip'),(954,1765818,10,'Visual Effects Producer'),(954,1886653,7,'Art Department Coordinator'),(954,1886654,1,'First Assistant Camera'),(954,1886655,1,'Grip'),(954,1886656,8,'Hairstylist'),(954,1886657,9,'Carpenter'),(954,1886658,9,'Software Engineer'),(954,1886659,9,'Special Effects Coordinator'),(954,1886660,9,'Transportation Captain'),(954,1886665,11,'Best Boy Electric'),(954,1886666,11,'Electrician'),(954,1886667,3,'Production Coordinator'),(954,1886670,10,'3D Modeller'),(364,510,2,'Director'),(364,510,3,'Producer'),(364,531,6,'Original Music Composer'),(364,541,5,'Editor'),(364,1899,3,'Producer'),(364,1919,1,'Director of Photography'),(364,3794,4,'Author'),(364,3806,3,'Casting'),(364,5128,4,'Story'),(364,5128,4,'Screenplay'),(364,5132,5,'Editor'),(364,5133,7,'Production Design'),(364,10949,3,'Executive Producer'),(364,17880,4,'Screenplay'),(364,406204,8,'Makeup Artist'),(364,1395269,10,'Visual Effects Supervisor'),(7518,21223,4,'Characters'),(7518,52845,2,'Director'),(7518,52845,4,'Screenplay'),(7518,52870,2,'Director'),(7518,52871,4,'Screenplay'),(7518,52872,4,'Screenplay'),(7518,52873,4,'Screenplay'),(7518,52874,4,'Characters'),(7518,87169,4,'Storyboard'),(7518,1447381,7,'Art Department Manager'),(7518,1452488,7,'Art Department Manager'),(7518,1460472,10,'Animation'),(7518,1460608,10,'Animation'),(9986,531,6,'Original Music Composer'),(9986,2242,3,'Casting'),(9986,2384,3,'Executive Producer'),(9986,3285,1,'Director of Photography'),(9986,5490,3,'Casting'),(9986,6192,8,'Costume Design'),(9986,6340,4,'Author'),(9986,17046,2,'Director'),(9986,17220,7,'Art Direction'),(9986,21379,7,'Production Design'),(9986,23544,5,'Editor'),(9986,52845,4,'Author'),(9986,58408,3,'Producer'),(9986,60268,3,'Executive Producer'),(9986,61479,4,'Author'),(9986,61480,4,'Author'),(9986,61481,3,'Executive Producer'),(9986,61482,3,'Executive Producer'),(9986,61484,5,'Editor'),(9986,61483,3,'Producer'),(9986,61486,7,'Art Direction'),(9986,61485,7,'Set Decoration'),(9986,1452991,10,'Animation'),(9986,1453943,11,'Lighting Technician'),(9986,1454032,10,'Animation'),(9986,1463785,10,'Animation'),(8656,36,1,'Additional Camera'),(8656,488,3,'Executive Producer'),(8656,1297,3,'Producer'),(8656,1729,6,'Original Music Composer'),(8656,2212,3,'Executive Producer'),(8656,3431,4,'Screenplay'),(8656,5059,7,'Production Design'),(8656,5322,3,'Producer'),(8656,10633,9,'Stunts'),(8656,6045,7,'Art Direction'),(8656,8153,5,'Editor'),(8656,9654,9,'Stunt Coordinator'),(8656,9639,7,'Art Direction'),(8656,9993,9,'Post Production Supervisor'),(8656,10616,1,'Director of Photography'),(8656,11712,3,'Executive Producer'),(8656,13223,5,'Color Timer'),(8656,13933,7,'Art Direction'),(8656,14350,7,'Set Designer'),(8656,16939,4,'Screenplay'),(8656,17816,5,'Editor'),(8656,19310,8,'Costume Design'),(8656,21718,7,'Art Direction'),(8656,21797,7,'Set Decoration'),(8656,42265,3,'Production Supervisor'),(8656,41080,3,'Casting'),(8656,51984,2,'Director'),(8656,113019,1,'Second Unit Director of Photography'),(8656,75231,3,'Associate Producer'),(8656,75231,3,'Unit Production Manager'),(8656,81731,7,'Assistant Art Director'),(8656,91891,5,'Dialogue Editor'),(8656,93258,9,'Special Effects Coordinator'),(8656,130533,1,'Camera Operator'),(8656,130533,1,'Steadicam Operator'),(8656,188270,9,'CG Supervisor'),(8656,969743,7,'Set Designer'),(8656,970529,10,'Visual Effects Producer'),(8656,1049321,6,'Sound Effects Editor'),(8656,1190244,2,'First Assistant Director'),(8656,1322087,8,'Makeup Department Head'),(8656,1324023,9,'Property Master'),(8656,1325573,3,'Casting'),(8656,1334424,9,'Propmaker'),(8656,1334782,7,'Set Designer'),(8656,1355530,7,'Sculptor'),(8656,1357044,4,'Storyboard'),(8656,1369047,2,'Script Coordinator'),(8656,1376897,7,'Construction Coordinator'),(8656,1378236,10,'Visual Effects Supervisor'),(8656,1391567,6,'Sound Designer'),(8656,1391583,1,'Still Photographer'),(8656,1392115,7,'Set Designer'),(8656,1392116,7,'Assistant Art Director'),(8656,1392117,7,'Assistant Art Director'),(8656,1392125,6,'Supervising Sound Editor'),(8656,1392126,6,'Foley'),(8656,1392127,5,'Dialogue Editor'),(8656,1392129,5,'Dialogue Editor'),(8656,1392130,5,'Dialogue Editor'),(8656,1392131,6,'Sound Effects Editor'),(8656,1392132,6,'Sound Effects Editor'),(8656,1392133,6,'Sound Effects Editor'),(8656,1392134,6,'Sound Effects Editor'),(8656,1392136,10,'Visual Effects Supervisor'),(8656,1392138,11,'Gaffer'),(8656,1392139,1,'Camera Operator'),(8656,1392141,8,'Costume Supervisor'),(8656,1392142,8,'Set Costumer'),(8656,1392143,8,'Set Costumer'),(8656,1392145,6,'Music Editor'),(8656,1392148,9,'Transportation Coordinator'),(8656,1392150,2,'Script Supervisor'),(8656,1392151,3,'Location Manager'),(8656,1399899,1,'Camera Technician'),(8656,1401593,1,'Aerial Director of Photography'),(8656,1401967,9,'Visual Effects Art Director'),(8656,1404533,9,'Digital Effects Supervisor'),(8656,1407228,9,'Utility Stunts'),(8656,1415453,7,'Greensman'),(8656,1424705,3,'Production Coordinator'),(8656,1424782,6,'Supervising Sound Editor'),(8656,1442512,9,'Visual Effects Editor'),(8656,1443065,6,'ADR Supervisor'),(8656,1452634,5,'First Assistant Editor'),(8656,1453675,11,'Best Boy Electric'),(8656,1533804,8,'Makeup Artist'),(8656,1552538,1,'Key Grip'),(8656,1563430,6,'Boom Operator'),(8656,1563908,6,'Sound'),(8656,1587816,9,'Driver'),(8656,1601883,9,'Post Production Assistant'),(8656,1602859,1,'Grip'),(8656,1622079,7,'Location Scout'),(8656,1629423,6,'Sound Recordist'),(8656,1633954,9,'Projection'),(8656,1634735,3,'Production Accountant'),(8656,1640911,10,'Visual Effects Coordinator'),(8656,1680472,9,'Technical Supervisor'),(8656,1721408,9,'Unit Publicist'),(8656,1778194,1,'First Assistant Camera'),(8656,1806701,7,'Construction Foreman'),(8656,1806704,7,'Leadman'),(8656,1806717,8,'Set Dressing Artist'),(8656,1806721,1,'Camera Loader'),(8656,1806737,9,'Systems Administrators & Support'),(8656,1806741,9,'Transportation Captain'),(8656,1806743,9,'Video Assist Operator'),(8656,1806748,11,'Electrician'),(8656,1806750,11,'Lighting Technician'),(8656,1806751,11,'Rigging Grip'),(8656,1806752,10,'Digital Compositors'),(8656,1806753,9,'Thanks'),(9291,457,4,'Story'),(9291,457,3,'Executive Producer'),(9291,561,3,'Casting'),(9291,12865,5,'Editor'),(9291,4501,1,'Director of Photography'),(9291,11772,3,'Executive Producer'),(9291,19292,3,'Executive Producer'),(9291,13426,2,'Director'),(9291,20822,6,'Original Music Composer'),(9291,20818,3,'Executive Producer'),(9291,20821,3,'Producer'),(9291,31094,3,'Executive Producer'),(9291,56728,3,'Executive Producer'),(9291,57336,4,'Screenplay'),(9291,62637,3,'Co-Producer'),(9291,71079,3,'Executive Producer'),(9291,963297,3,'Associate Producer'),(9291,1494980,3,'Associate Producer'),(9291,1746321,3,'Executive Producer'),(6964,947,6,'Music'),(6964,3769,9,'Cinematography'),(6964,17698,2,'Director'),(6964,17698,4,'Screenplay'),(6964,17698,3,'Producer'),(6964,17699,3,'Producer'),(6964,217371,6,'Music'),(9928,5713,2,'Director'),(9928,5714,2,'Director'),(9928,5720,3,'Executive Producer'),(9928,5718,3,'Producer'),(9928,5721,5,'Editor'),(9928,20643,3,'Producer'),(9928,11098,6,'Original Music Composer'),(9928,13194,5,'Digital Intermediate'),(9928,13223,5,'Color Timer'),(9928,13584,5,'Additional Editing'),(9928,13584,9,'Thanks'),(9928,27518,4,'Screenplay'),(9928,27519,4,'Screenplay'),(9928,45848,3,'Casting'),(9928,23766,4,'Screenplay'),(9928,23766,4,'Story'),(9928,40138,5,'First Assistant Editor'),(9928,113048,6,'Sound Recordist'),(9928,57025,4,'Story'),(9928,57026,4,'Story'),(9928,60678,3,'Producer'),(9928,60678,7,'Production Design'),(9928,92376,6,'Foley'),(9928,92386,5,'Dialogue Editor'),(9928,92389,6,'Sound Effects Editor'),(9928,71729,7,'Art Direction'),(9928,71730,3,'Co-Producer'),(9928,87059,10,'Animation'),(9928,229962,9,'Supervising Animator'),(9928,237759,2,'Script Coordinator'),(9928,569912,6,'Sound Re-Recording Mixer'),(9928,935043,7,'Conceptual Design'),(9928,1217416,4,'Storyboard'),(9928,1390523,6,'Sound Designer'),(9928,1404326,6,'Music Editor'),(9928,1447310,9,'Post Production Supervisor'),(9928,1447407,10,'Visual Development'),(9928,1453229,6,'Music Supervisor'),(9928,1453938,11,'Lighting Artist'),(9928,1470237,3,'Producer'),(9928,1536578,9,'CG Supervisor'),(9928,1547520,6,'First Assistant Sound Editor'),(9928,1550566,6,'Orchestrator'),(9928,1554594,6,'Scoring Mixer'),(9928,1569828,9,'Telecine Colorist'),(9928,1577463,2,'Layout'),(9928,1604010,3,'Production Accountant'),(9928,1604012,3,'Unit Production Manager'),(9928,1694608,11,'Master Lighting Artist'),(9928,1805170,9,'Software Engineer'),(9928,1805171,9,'Systems Administrators & Support'),(9928,1805174,11,'Lighting Artist'),(9928,1805175,11,'Lighting Supervisor'),(9928,1805177,11,'Lighting Technician'),(9928,1805189,3,'Production Coordinator'),(9928,1805190,3,'Production Supervisor'),(9928,1805192,10,'Visual Effects'),(9928,1805195,10,'Visual Effects Supervisor'),(754,123,3,'Producer'),(754,1202,3,'Executive Producer'),(754,3392,3,'Executive Producer'),(754,7735,8,'Costume Design'),(754,6668,5,'Editor'),(754,6044,3,'Casting'),(754,11411,7,'Production Design'),(754,11401,2,'Director'),(754,11402,3,'Co-Producer'),(754,11402,4,'Writer'),(754,11403,3,'Co-Producer'),(754,11403,4,'Writer'),(754,11404,3,'Producer'),(754,11405,3,'Producer'),(754,11408,3,'Associate Producer'),(754,11098,6,'Original Music Composer'),(754,11409,1,'Director of Photography'),(754,11410,5,'Editor'),(754,11412,7,'Art Direction'),(754,11413,7,'Set Decoration'),(754,11655,3,'Unit Production Manager'),(754,13166,6,'Sound Effects Editor'),(754,13179,6,'Sound Effects Editor'),(754,14093,3,'Executive Producer'),(754,14764,6,'Sound Effects Editor'),(754,14765,6,'Supervising Sound Editor'),(754,15331,6,'Sound Effects Editor'),(754,15332,6,'Supervising Sound Editor'),(754,15335,9,'Stunt Coordinator'),(754,56996,3,'Producer'),(754,71633,5,'Dialogue Editor'),(754,74974,5,'Dialogue Editor'),(754,1252535,5,'Dialogue Editor'),(754,1338976,6,'Sound Re-Recording Mixer'),(754,1341857,5,'Dialogue Editor'),(754,1387541,5,'Dialogue Editor'),(754,1387541,6,'Sound Editor'),(754,1390535,1,'Still Photographer'),(754,1398127,1,'Camera Operator'),(754,1401687,6,'Sound Re-Recording Mixer'),(754,1404216,6,'Sound Effects Editor'),(754,1405382,6,'Sound Effects Editor'),(754,1414549,6,'Sound Effects Editor'),(754,1417498,5,'Dialogue Editor'),(754,1429501,1,'Camera Operator'),(754,1459647,6,'Sound Re-Recording Mixer'),(754,1478953,2,'Script Supervisor'),(754,1511086,6,'Sound Effects Editor'),(754,1551213,6,'Production Sound Mixer'),(754,1551215,6,'Sound Effects Editor'),(754,1551216,6,'Sound Effects Editor'),(754,1551217,6,'Sound Re-Recording Mixer'),(754,1551218,3,'Production Coordinator'),(754,1551219,6,'Music Editor'),(4147,153,6,'Original Music Composer'),(4147,39,2,'Director'),(4147,39,3,'Producer'),(4147,8217,1,'Director of Photography'),(4147,8217,9,'In Memory Of'),(4147,495,3,'Casting'),(4147,460,11,'Chief Lighting Technician'),(4147,494,3,'Casting Associate'),(4147,555,7,'Set Decoration'),(4147,1297,3,'Producer'),(4147,4248,7,'Production Design'),(4147,2212,3,'Executive Producer'),(4147,3050,5,'Editor'),(4147,5545,2,'First Assistant Director'),(4147,7538,6,'Music Editor'),(4147,10955,3,'Associate Producer'),(4147,8285,7,'Art Direction'),(4147,8885,8,'Costume Design'),(4147,9558,9,'Utility Stunts'),(4147,11712,3,'Executive Producer'),(4147,15226,6,'Sound Editor'),(4147,15226,6,'Supervising Sound Editor'),(4147,14526,8,'Makeup Artist'),(4147,33625,7,'Leadman'),(4147,35019,4,'Novel'),(4147,35020,4,'Novel'),(4147,35021,4,'Screenplay'),(4147,54726,7,'Assistant Art Director'),(4147,59425,3,'Casting Consultant'),(4147,59837,5,'First Assistant Editor'),(4147,73420,5,'First Assistant Editor'),(4147,86585,1,'Grip'),(4147,108146,1,'First Assistant Camera'),(4147,122607,9,'Dialect Coach'),(4147,142157,9,'Stunt Coordinator'),(4147,230436,3,'ADR Voice Casting'),(4147,1073805,5,'Editorial Production Assistant'),(4147,1177850,1,'Still Photographer'),(4147,1187337,3,'Assistant Production Coordinator'),(4147,1191105,3,'Producer'),(4147,1203910,8,'Assistant Costume Designer'),(4147,1319750,7,'Assistant Art Director'),(4147,1321589,8,'Costume Supervisor'),(4147,1322017,7,'Assistant Art Director'),(4147,1339432,9,'Post Production Supervisor'),(4147,1341414,6,'Boom Operator'),(4147,1341851,7,'Construction Coordinator'),(4147,1352986,9,'Set Production Assistant'),(4147,1357066,1,'Camera Operator'),(4147,1368867,9,'Special Effects Coordinator'),(4147,1377215,9,'Property Master'),(4147,1391571,6,'Sound Re-Recording Mixer'),(4147,1392148,9,'Transportation Coordinator'),(4147,1400539,9,'Unit Publicist'),(4147,1402015,8,'Hairstylist'),(4147,1406922,10,'Visual Effects Supervisor'),(4147,1408301,6,'Sound Effects Editor'),(4147,1414292,3,'Production Accountant'),(4147,1414497,7,'Assistant Property Master'),(4147,1417869,7,'Set Decorating Coordinator'),(4147,1428132,9,'Propmaker'),(4147,1428226,8,'Key Costumer'),(4147,1443065,6,'Supervising ADR Editor'),(4147,1446993,7,'Set Dresser'),(4147,1464960,10,'3D Supervisor'),(4147,1470940,3,'Associate Producer'),(4147,1520594,7,'Set Designer'),(4147,1522745,8,'Set Costumer'),(4147,1524648,8,'Set Costumer'),(4147,1532706,8,'Seamstress'),(4147,1536965,9,'Armorer'),(4147,1546442,6,'Production Sound Mixer'),(4147,1548644,10,'Visual Effects Producer'),(4147,1549198,7,'Art Department Coordinator'),(4147,1549201,5,'Dialogue Editor'),(4147,1549202,9,'Visual Effects Editor'),(4147,1549203,8,'Assistant Costume Designer'),(4147,1549209,6,'Orchestrator'),(4147,1549210,9,'Choreographer'),(4147,1549211,9,'Choreographer'),(4147,1550073,6,'Foley Editor'),(4147,1551665,6,'Assistant Sound Editor'),(4147,1552188,5,'Color Timer'),(4147,1553613,7,'Construction Foreman'),(4147,1558192,7,'Art Department Assistant'),(4147,1558193,7,'Greensman'),(4147,1558195,7,'Location Scout'),(4147,1558196,7,'Painter'),(4147,1558197,7,'Standby Painter'),(4147,1558200,1,'Key Grip'),(4147,1558203,9,'Craft Service'),(4147,1558204,9,'Driver'),(4147,1558205,9,'Executive Music Producer'),(4147,1558206,1,'Camera Loader'),(4147,1558208,9,'Picture Car Coordinator'),(4147,1558210,9,'Production Controller'),(4147,1558211,9,'Production Office Assistant'),(4147,1558212,9,'Projection'),(4147,1558214,9,'Stand In'),(4147,1558216,9,'Stunts'),(4147,1558218,9,'Transportation Captain'),(4147,1558219,9,'Transportation Co-Captain'),(4147,1558221,9,'Unit Production Manager'),(4147,1558695,11,'Best Boy Electric'),(4147,1558696,11,'Electrician'),(4147,1558697,11,'Gaffer'),(4147,1558698,11,'Rigging Gaffer'),(4147,1558699,11,'Rigging Grip'),(4147,1558700,3,'Location Manager'),(4147,1558701,3,'Production Coordinator'),(4147,1558702,6,'Scoring Mixer'),(4147,1558705,6,'Sound Engineer'),(4147,1733142,5,'Negative Cutter'),(4147,1739971,6,'Musician'),(4147,1740448,1,'Dolly Grip'),(4147,1740449,2,'Second Assistant Director'),(4147,1740451,3,'Casting Assistant'),(1701,770,3,'Producer'),(1701,2446,3,'Executive Producer'),(1701,541,5,'Editor'),(1701,545,3,'Casting'),(1701,546,3,'Casting'),(1701,547,3,'Casting'),(1701,876,3,'Executive Producer'),(1701,894,6,'Original Music Composer'),(1701,899,5,'Editor'),(1701,3228,4,'Screenplay'),(1701,6800,1,'Director of Photography'),(1701,6901,7,'Art Direction'),(1701,8751,5,'Editor'),(1701,9989,6,'Original Music Composer'),(1701,10118,3,'Associate Producer'),(1701,10118,9,'Stunt Coordinator'),(1701,12786,2,'Director'),(1701,28862,7,'Set Decoration'),(1701,21155,3,'Executive Producer'),(1701,36428,1,'Camera Operator'),(1701,58424,3,'Executive Producer'),(1701,59710,8,'Costume Design'),(1701,1216871,3,'Executive Producer'),(1701,1344279,3,'Production Supervisor'),(1701,1378168,6,'Supervising Sound Editor'),(1701,1378240,1,'Still Photographer'),(1701,1394313,2,'Script Coordinator'),(1701,1398970,1,'Steadicam Operator'),(1701,1408278,8,'Key Hair Stylist'),(1701,1422074,2,'Script Supervisor'),(1701,1434221,8,'Costume Supervisor'),(1701,1445885,10,'Visual Effects Supervisor'),(1701,1447503,10,'Visual Effects'),(1701,1447503,4,'Storyboard'),(1701,1530166,6,'Music Supervisor'),(1701,1534907,3,'Production Supervisor'),(1701,1534908,3,'Production Coordinator'),(2289,1720,3,'Casting'),(2289,154,5,'Editor'),(2289,154,6,'Sound Re-Recording Mixer'),(2289,1307,3,'Executive Producer'),(2289,59839,3,'Executive Producer'),(2289,2226,3,'Producer'),(2289,2239,4,'Screenplay'),(2289,2239,2,'Director'),(2289,2366,7,'Production Design'),(2289,2702,1,'Director of Photography'),(2289,4187,7,'Supervising Art Director'),(2289,5488,6,'Original Music Composer'),(2289,5490,3,'Casting'),(2289,5493,8,'Costume Design'),(2289,8673,1,'Steadicam Operator'),(2289,9026,7,'Set Decoration'),(2289,10972,6,'Sound Effects Editor'),(2289,40823,6,'Foley'),(2289,12579,1,'Still Photographer'),(2289,13050,9,'Dialect Coach'),(2289,12761,6,'Supervising Sound Editor'),(2289,15906,3,'Producer'),(2289,15910,10,'Visual Effects Supervisor'),(2289,16595,7,'Art Direction'),(2289,18787,8,'Hairstylist'),(2289,23492,7,'Assistant Art Director'),(2289,23609,4,'Author'),(2289,23770,7,'Assistant Art Director'),(2289,25061,7,'Art Direction'),(2289,27220,7,'Art Direction'),(2289,37298,8,'Costume Design'),(2289,59533,8,'Costume Supervisor'),(2289,60583,3,'Production Manager'),(2289,62213,3,'Production Manager'),(2289,74985,11,'Gaffer'),(2289,937946,1,'Camera Operator'),(2289,958273,2,'Script Supervisor'),(2289,997132,7,'Art Direction'),(2289,1099266,7,'Assistant Art Director'),(2289,1184250,6,'ADR & Dubbing'),(2289,1189807,1,'Camera Operator'),(2289,1333082,9,'Property Master'),(2289,1336511,7,'Art Department Coordinator'),(2289,1336512,7,'Greensman'),(2289,1336513,7,'Set Designer'),(2289,1336514,7,'Art Department Coordinator'),(2289,1336515,7,'Art Department Coordinator'),(2289,1336516,7,'Construction Coordinator'),(2289,1336517,9,'Property Master'),(2289,1336518,9,'Propmaker'),(2289,1336519,7,'Construction Coordinator'),(2289,1346953,8,'Set Costumer'),(2289,1347760,9,'Dialect Coach'),(2289,1349046,6,'Sound Re-Recording Mixer'),(2289,1388877,9,'Stunt Coordinator'),(2289,1390382,6,'Music Editor'),(2289,1391591,1,'Camera Operator'),(2289,1395024,6,'Sound Re-Recording Mixer'),(2289,1400078,10,'Visual Effects Producer'),(2289,1400375,1,'Camera Operator'),(2289,1402040,3,'Publicist'),(2289,1402988,8,'Set Costumer'),(2289,1403638,10,'Visual Effects Producer'),(2289,1404233,8,'Set Costumer'),(2289,1404234,9,'Transportation Coordinator'),(2289,1405243,9,'Transportation Coordinator'),(2289,1407858,5,'Dialogue Editor'),(2289,1412081,8,'Makeup Artist'),(2289,1412082,7,'Assistant Art Director'),(2289,1412083,7,'Assistant Art Director'),(2289,1412084,7,'Assistant Art Director'),(2289,1412085,7,'Assistant Art Director'),(2289,1412086,7,'Leadman'),(2289,1412088,6,'Foley'),(2289,1412112,9,'Special Effects Coordinator'),(2289,1412113,1,'Still Photographer'),(2289,1412114,11,'Best Boy Electric'),(2289,1412115,9,'Video Assist Operator'),(2289,1412116,9,'Video Assist Operator'),(2289,1412117,9,'Video Assist Operator'),(2289,1412119,8,'Costume Supervisor'),(2289,1412120,6,'Music Editor'),(2289,1412122,9,'Transportation Coordinator'),(2289,1412124,3,'Location Manager'),(2289,1412126,2,'Script Supervisor'),(2289,1412127,9,'Legal Services'),(2289,1412128,9,'Legal Services'),(2289,1412129,9,'Legal Services'),(2289,1579180,1,'First Assistant Camera'),(9574,531,6,'Music'),(9574,1060,1,'Director of Photography'),(9574,4952,3,'Casting'),(9574,5836,4,'Screenplay'),(9574,11505,4,'Screenplay'),(9574,11505,3,'Producer'),(9574,8305,3,'Executive Producer'),(9574,45862,5,'Editor'),(9574,56911,2,'Director'),(9574,57642,5,'Editor'),(9574,58015,3,'Producer'),(9574,1447503,10,'Modeling'),(2300,8376,6,'Supervising Sound Editor'),(2300,1044,1,'Director of Photography'),(2300,1213,6,'Original Music Composer'),(2300,2874,3,'Casting'),(2300,3275,3,'Casting'),(2300,3989,8,'Costume Design'),(2300,7068,3,'Co-Producer'),(2300,7068,5,'Editor'),(2300,8858,3,'Producer'),(2300,9379,1,'Grip'),(2300,9444,6,'Foley'),(2300,10125,7,'Set Decoration'),(2300,13184,10,'Visual Effects Supervisor'),(2300,14710,4,'Writer'),(2300,14711,4,'Writer'),(2300,14715,3,'Co-Producer'),(2300,14715,3,'Unit Production Manager'),(2300,16737,6,'Music Editor'),(2300,23677,2,'Director'),(2300,26264,3,'Executive Producer'),(2300,26264,6,'Music Supervisor'),(2300,32403,7,'Production Design'),(2300,46084,8,'Costume Supervisor'),(2300,56643,4,'Writer'),(2300,57132,3,'Producer'),(2300,57601,3,'Producer'),(2300,61208,3,'Location Manager'),(2300,61398,4,'Writer'),(2300,62724,7,'Set Designer'),(2300,71046,3,'Line Producer'),(2300,73106,3,'Associate Producer'),(2300,75240,6,'Sound Re-Recording Mixer'),(2300,75628,8,'Makeup Artist'),(2300,91768,4,'Storyboard'),(2300,95828,7,'Art Department Coordinator'),(2300,13443,9,'Stunts'),(2300,118867,1,'First Assistant Camera'),(2300,146668,3,'Production Manager'),(2300,170706,9,'Stunt Coordinator'),(2300,240779,10,'Animation'),(2300,578729,8,'Key Hair Stylist'),(2300,936666,5,'First Assistant Editor'),(2300,936765,6,'Orchestrator'),(2300,1143388,7,'Sculptor'),(2300,1205985,10,'Animation'),(2300,1242138,2,'Script Supervisor'),(2300,1299533,9,'Supervising Animator'),(2300,1303184,6,'Sound Re-Recording Mixer'),(2300,1319844,8,'Assistant Costume Designer'),(2300,1341854,6,'Sound Re-Recording Mixer'),(2300,1341858,6,'Sound Re-Recording Mixer'),(2300,1342626,6,'Sound Re-Recording Mixer'),(2300,1377132,1,'Steadicam Operator'),(2300,1388862,7,'Property Master'),(2300,1395028,1,'Still Photographer'),(2300,1401562,6,'Sound Re-Recording Mixer'),(2300,1404305,8,'Key Makeup Artist'),(2300,1404761,7,'Production Illustrator'),(2300,1412195,6,'Sound Editor'),(2300,1412233,6,'Sound Recordist'),(2300,1421720,9,'Special Effects Coordinator'),(2300,1422064,6,'Sound Designer'),(2300,1422064,6,'Sound Effects Editor'),(2300,1436184,10,'Digital Compositors'),(2300,1445879,10,'Visual Effects Coordinator'),(2300,1447347,7,'Art Direction'),(2300,1447459,10,'Lead Animator'),(2300,1447511,10,'Animation'),(2300,1447554,10,'Visual Effects'),(2300,1447566,10,'Animation'),(2300,1451265,10,'Visual Development'),(2300,1451676,10,'Visual Effects'),(2300,1459895,9,'Visual Effects Editor'),(2300,1460439,10,'Animation'),(2300,1460488,10,'VFX Artist'),(2300,1461337,9,'Production Office Assistant'),(2300,1477240,3,'Executive Producer'),(2300,1477241,3,'Co-Producer'),(2300,1484706,8,'Set Dressing Artist'),(2300,1516079,10,'Visual Effects Producer'),(2300,1537540,10,'3D Coordinator'),(2300,1540340,1,'Camera Operator'),(2300,1549181,9,'Digital Producer'),(2300,1552873,5,'Color Timer'),(2300,1559479,6,'Production Sound Mixer'),(2300,1559615,9,'Driver'),(2300,1563430,6,'Boom Operator'),(2300,1591434,9,'Digital Effects Supervisor'),(2300,1595484,11,'Rigging Gaffer'),(2300,1614193,6,'Assistant Sound Editor'),(2300,1664278,6,'Production Sound Mixer'),(2300,1710565,11,'Best Boy Electric'),(2300,1741454,3,'Unit Manager'),(2300,1767023,5,'Supervising Film Editor'),(2300,1775928,5,'First Assistant Editor'),(2300,1814205,2,'First Assistant Director'),(2300,1840816,10,'Animation'),(2300,1855779,9,'Unit Publicist'),(2300,1870668,7,'Assistant Art Director'),(2300,1870670,7,'Greensman'),(2300,1870671,7,'Painter'),(2300,1870673,7,'Standby Painter'),(2300,1870674,1,'Additional Photography'),(2300,1870675,1,'Key Grip'),(2300,1870691,9,'Craft Service'),(2300,1870692,9,'Production Intern'),(2300,1870693,9,'Software Engineer'),(2300,1870695,9,'Systems Administrators & Support'),(2300,1870696,9,'Technical Supervisor'),(2300,1870697,9,'Transportation Co-Captain'),(2300,1870698,9,'Transportation Coordinator'),(2300,1870699,9,'Utility Stunts'),(2300,1870700,11,'Electrician'),(2300,1870702,3,'Production Coordinator'),(2300,1870704,10,'Visual Effects'),(2300,1870705,6,'Sound'),(8834,892,1,'Director of Photography'),(8834,1091,3,'Producer'),(8834,1225,6,'Original Music Composer'),(8834,3806,3,'Casting'),(8834,4723,4,'Writer'),(8834,7715,5,'Editor'),(8834,7187,2,'Director'),(8834,7187,3,'Producer'),(8834,9197,3,'Co-Producer'),(8834,12638,7,'Art Direction'),(8834,11001,5,'Editor'),(8834,22816,3,'Executive Producer'),(8834,57526,3,'Co-Producer'),(8834,57682,3,'Associate Producer'),(8834,225499,3,'Co-Producer'),(8834,1130137,3,'Associate Producer'),(8834,1457666,5,'Assistant Editor'),(6068,897,3,'Casting'),(6068,1044,1,'Director of Photography'),(6068,4504,3,'Producer'),(6068,7068,5,'Editor'),(6068,7185,3,'Casting'),(6068,13304,7,'Production Design'),(6068,8858,2,'Director'),(6068,8858,3,'Producer'),(6068,9255,8,'Costume Design'),(6068,14712,6,'Original Music Composer'),(6068,14348,7,'Set Decoration'),(6068,14349,7,'Supervising Art Director'),(6068,14350,7,'Art Direction'),(6068,14713,8,'Makeup Artist'),(6068,15333,9,'Special Effects Coordinator'),(6068,31646,4,'Screenplay'),(6068,1206905,8,'Costume Supervisor'),(6068,1415333,8,'Makeup Artist'),(6068,1417398,8,'Key Hair Stylist'),(6068,1435578,7,'Construction Coordinator'),(6068,1445885,10,'Visual Effects Supervisor'),(6068,1446549,2,'Script Supervisor'),(6068,1525544,8,'Hairstylist'),(6068,1535440,8,'Hairstylist'),(6068,1535441,8,'Makeup Artist'),(6068,1535952,3,'Casting Associate'),(6068,1536087,3,'Casting Associate'),(6068,1536373,9,'Special Effects Coordinator'),(6068,1536374,10,'Special Effects Supervisor'),(6068,1536376,10,'Visual Effects Producer'),(6068,1536378,8,'Costume Supervisor'),(6068,1536379,8,'Set Costumer'),(6068,1536380,9,'Choreographer'),(9023,947,6,'Original Music Composer'),(9023,12062,3,'Producer'),(9023,12079,2,'Director'),(9023,20801,4,'Screenplay'),(9023,56660,2,'Director'),(9023,56667,3,'Executive Producer'),(9023,56671,3,'Producer'),(9023,56678,5,'Editor'),(9023,56683,6,'Songs'),(9023,118713,10,'Animation'),(9023,1113194,10,'Animation'),(9023,1438901,2,'Layout'),(9023,1447338,10,'Animation'),(9023,1447381,10,'Animation'),(9023,1447385,10,'Animation'),(9023,1447593,2,'Layout'),(9023,1447594,10,'Animation'),(9023,1450331,10,'Animation Supervisor'),(9023,1451229,7,'Art Direction'),(9023,1453612,10,'Animation Supervisor'),(9023,1454032,10,'Animation'),(9023,1460201,10,'Animation'),(9023,1460462,10,'Animation'),(9023,1462665,2,'Layout'),(9023,1463252,2,'Layout'),(2157,2042,2,'Director'),(2157,2042,3,'Producer'),(2157,2044,1,'Director of Photography'),(2157,8384,7,'Set Decoration'),(2157,244,5,'Editor'),(2157,391,7,'Production Design'),(2157,598,3,'Casting'),(2157,668,3,'Casting'),(2157,4611,3,'Executive Producer'),(2157,4612,3,'Executive Producer'),(2157,4767,3,'Executive Producer'),(2157,5575,4,'Screenplay'),(2157,5575,3,'Producer'),(2157,6998,7,'Art Direction'),(2157,7506,4,'Screenplay'),(2157,8646,7,'Supervising Art Director'),(2157,8762,6,'Sound Effects Editor'),(2157,10788,7,'Art Direction'),(2157,15883,10,'Visual Effects Supervisor'),(2157,12761,6,'Supervising Sound Editor'),(2157,16177,6,'Sound Re-Recording Mixer'),(2157,20897,6,'Original Music Composer'),(2157,21374,3,'Casting'),(2157,22077,3,'Producer'),(2157,22078,3,'Producer'),(2157,22080,7,'Art Direction'),(2157,22081,8,'Costume Design'),(2157,65753,3,'Executive Producer'),(2157,57241,3,'Co-Producer'),(2157,101523,8,'Costume Supervisor'),(2157,240779,10,'Animation'),(2157,1227674,9,'Post Production Supervisor'),(2157,1240054,5,'Color Timer'),(2157,1317048,8,'Assistant Costume Designer'),(2157,1334493,9,'Craft Service'),(2157,1340122,9,'Digital Effects Supervisor'),(2157,1346943,10,'Special Effects Supervisor'),(2157,1353257,6,'Foley'),(2157,1367562,1,'Still Photographer'),(2157,1378217,6,'Sound Mixer'),(2157,1387244,6,'Sound Editor'),(2157,1393329,9,'Special Effects Coordinator'),(2157,1393335,11,'Best Boy Electric'),(2157,1394011,3,'Production Manager'),(2157,1394719,10,'I/O Supervisor'),(2157,1394749,10,'Visual Effects Producer'),(2157,1398085,9,'Property Master'),(2157,1400000,1,'Camera Operator'),(2157,1400073,9,'Visual Effects Editor'),(2157,1402919,9,'Stunt Coordinator'),(2157,1406190,6,'First Assistant Sound Editor'),(2157,1408311,5,'Dialogue Editor'),(2157,1408354,1,'Steadicam Operator'),(2157,1412242,6,'Dolby Consultant'),(2157,1415975,9,'Production Office Assistant'),(2157,1418002,6,'Music Editor'),(2157,1425764,9,'Studio Teachers'),(2157,1429645,9,'Unit Publicist'),(2157,1433231,10,'3D Supervisor'),(2157,1439742,9,'Lighting Camera'),(2157,1462919,2,'Script Supervisor'),(2157,1471947,3,'Associate Producer'),(2157,1471947,2,'Assistant Director'),(2157,1472641,3,'Co-Executive Producer'),(2157,1472642,3,'Co-Producer'),(2157,1510440,9,'Loader'),(2157,1540477,9,'Public Relations'),(2157,1551807,3,'Researcher'),(2157,1556433,7,'Art Department Coordinator'),(2157,1583824,3,'Production Coordinator'),(2157,1591553,7,'Production Illustrator'),(2157,1593076,8,'Hairstylist'),(2157,1602885,6,'Orchestrator'),(2157,1645426,7,'Construction Coordinator'),(2157,1645427,3,'Line Producer'),(2157,1645429,7,'Painter'),(2157,1645430,7,'Sculptor'),(2157,1645431,7,'Standby Painter'),(2157,1645432,1,'Grip'),(2157,1645433,1,'Underwater Camera'),(2157,1645434,8,'Costume Design'),(2157,1645435,8,'Makeup Artist'),(2157,1645436,8,'Prosthetic Supervisor'),(2157,1645437,9,'Carpenter'),(2157,1645438,9,'Driver'),(2157,1645439,9,'Post Production Assistant'),(2157,1645440,9,'Production Controller'),(2157,1645442,9,'Second Unit Cinematographer'),(2157,1645443,9,'Stand In'),(2157,1645445,9,'Stunts'),(2157,1645446,9,'Systems Administrators & Support'),(2157,1645447,3,'Unit Production Manager'),(2157,1645448,9,'Utility Stunts'),(2157,1645449,9,'Video Assist Operator'),(2157,1645451,5,'First Assistant Editor'),(2157,1645452,11,'Electrician'),(2157,1645453,11,'Gaffer'),(2157,1645454,11,'Rigging Gaffer'),(2157,1645456,6,'Boom Operator'),(2157,1645458,10,'Animation Supervisor'),(2157,1645459,10,'Digital Compositors'),(2157,1645460,10,'Visual Effects Coordinator'),(2157,1645464,4,'Storyboard'),(2157,1645469,3,'Unit Manager'),(2157,1842735,9,'Technical Supervisor'),(2135,122,6,'Original Music Composer'),(2135,3718,3,'Producer'),(2135,932,4,'Screenplay'),(2135,1095,1,'Director of Photography'),(2135,2212,3,'Producer'),(2135,2528,7,'Art Direction'),(2135,2530,8,'Costume Design'),(2135,6055,7,'Set Decoration'),(2135,6044,3,'Casting'),(2135,10957,5,'Editor'),(2135,7733,7,'Art Direction'),(2135,8678,7,'Production Design'),(2135,11624,4,'Novel'),(2135,14042,8,'Costume Design'),(2135,13586,7,'Art Direction'),(2135,21879,2,'Director'),(2135,1322087,8,'Makeup Department Head'),(2135,1322089,8,'Costume Supervisor'),(2135,1447557,9,'Compositors'),(9822,1729,6,'Original Music Composer'),(9822,2103,4,'Screenplay'),(9822,3238,4,'Screenplay'),(9822,9614,1,'Director of Photography'),(9822,7855,7,'Production Design'),(9822,7857,7,'Set Decoration'),(9822,11409,1,'Director of Photography'),(9822,11508,7,'Supervising Art Director'),(9822,12237,7,'Art Direction'),(9822,16178,9,'Special Effects'),(9822,10766,5,'Editor'),(9822,33485,2,'Director'),(9822,18457,3,'Casting'),(9822,33456,8,'Costume Design'),(9822,45861,3,'Producer'),(9822,59641,3,'Producer'),(9822,60283,7,'Art Direction'),(9822,1402095,1,'Camera Operator'),(9822,1460621,9,'Production Office Assistant'),(9822,1609931,7,'Set Decoration'),(9705,1721,5,'Editor'),(9705,1091,3,'Producer'),(9705,1296,3,'Executive Producer'),(9705,19155,6,'Original Music Composer'),(9705,14093,3,'Producer'),(9705,19290,1,'Director of Photography'),(9705,18185,4,'Author'),(9705,22816,3,'Executive Producer'),(9705,58498,2,'Director'),(9705,58657,3,'Producer'),(1656,286,3,'Producer'),(1656,488,3,'Executive Producer'),(1656,1317,7,'Art Direction'),(1656,1729,6,'Original Music Composer'),(1656,2212,3,'Producer'),(1656,2523,5,'Editor'),(1656,4504,3,'Executive Producer'),(1656,4507,3,'Executive Producer'),(1656,8701,3,'Producer'),(1656,10702,2,'Director'),(1656,10709,1,'Director of Photography'),(1656,11422,7,'Production Design'),(1656,11425,8,'Costume Design'),(1656,15345,4,'Screenplay'),(1656,15346,4,'Screenplay'),(1656,18457,3,'Casting'),(1656,18456,4,'Characters'),(1656,18458,7,'Set Decoration'),(1656,18459,7,'Art Direction'),(9678,12865,5,'Editor'),(9678,10815,1,'Director of Photography'),(9678,32593,2,'Director'),(9678,19292,4,'Author'),(9678,20821,3,'Producer'),(9678,29015,3,'Executive Producer'),(9678,56728,4,'Author'),(9678,71130,6,'Music Supervisor'),(9678,1402095,1,'Camera Operator'),(4442,280,2,'Director'),(4442,280,4,'Screenplay'),(4442,282,3,'Producer'),(4442,390,3,'Casting'),(4442,1304,8,'Costume Design'),(4442,1307,3,'Executive Producer'),(4442,59839,3,'Executive Producer'),(4442,11072,5,'Editor'),(4442,5333,8,'Makeup Designer'),(4442,6624,3,'Executive Producer'),(4442,15244,4,'Screenplay'),(4442,10721,10,'Visual Effects Supervisor'),(4442,8646,7,'Supervising Art Director'),(4442,8913,3,'Associate Producer'),(4442,9040,1,'Director of Photography'),(4442,11385,6,'Production Sound Mixer'),(4442,11268,3,'Unit Production Manager'),(4442,11269,6,'Original Music Composer'),(4442,40825,6,'Orchestrator'),(4442,12756,3,'Executive Producer'),(4442,15846,8,'Hair Designer'),(4442,15846,8,'Wig Designer'),(4442,19725,4,'Screenplay'),(4442,19727,1,'Additional Photography'),(4442,29608,3,'Co-Producer'),(4442,29610,8,'Prosthetic Makeup Artist'),(4442,32352,8,'Hairstylist'),(4442,37297,3,'Producer'),(4442,11018,7,'Production Design'),(4442,37298,8,'Costume Design'),(4442,37299,7,'Art Direction'),(4442,37301,7,'Art Direction'),(4442,62011,3,'Executive Producer'),(4442,64074,3,'Executive In Charge Of Post Production'),(4442,81834,3,'Executive Producer'),(4442,87680,9,'Second Unit Cinematographer'),(4442,81692,9,'Utility Stunts'),(4442,135662,1,'Steadicam Operator'),(4442,142094,3,'Co-Producer'),(4442,548431,9,'Cableman'),(4442,562654,9,'Thanks'),(4442,930532,7,'Art Direction'),(4442,1083451,9,'Stand In'),(4442,1271644,7,'Set Decoration'),(4442,1312810,6,'Sound Effects Editor'),(4442,1319198,8,'Costume Supervisor'),(4442,1327762,7,'Set Decoration'),(4442,1335543,7,'Greensman'),(4442,1336517,7,'Property Master'),(4442,1337419,6,'Music Editor'),(4442,1367808,9,'Armorer'),(4442,1393866,6,'Foley Editor'),(4442,1401569,10,'Visual Effects Producer'),(4442,1408354,1,'Camera Operator'),(4442,1409761,9,'Scenic Artist'),(4442,1411085,6,'Dolby Consultant'),(4442,1415980,10,'Visual Effects Coordinator'),(4442,1417999,8,'Set Costumer'),(4442,1421647,6,'Supervising Sound Editor'),(4442,1425514,9,'Transportation Coordinator'),(4442,1429645,9,'Unit Publicist'),(4442,1462919,2,'Script Supervisor'),(4442,1482822,1,'Additional Camera'),(4442,1484176,6,'Sound Mixer'),(4442,1531574,7,'Construction Coordinator'),(4442,1540471,6,'Music Supervisor'),(4442,1545996,5,'First Assistant Editor'),(4442,1548879,1,'First Assistant Camera'),(4442,1555370,11,'Rigging Grip'),(4442,1570218,3,'Production Manager'),(4442,1571980,10,'Special Effects Supervisor'),(4442,1579411,9,'Special Effects Coordinator'),(4442,1580624,9,'Chef'),(4442,1614064,6,'Boom Operator'),(4442,1621238,5,'Color Timer'),(4442,1632511,9,'Digital Effects Supervisor'),(4442,1712004,8,'Makeup Artist'),(4442,1720820,5,'Digital Intermediate'),(4442,1721835,2,'First Assistant Director'),(4442,1727806,9,'Visual Effects Editor'),(4442,1797178,9,'Additional Music'),(4442,1821143,1,'Camera Intern'),(4442,1865451,7,'Art Department Coordinator'),(4442,1865452,7,'Assistant Art Director'),(4442,1865453,7,'Painter'),(4442,1865454,7,'Production Illustrator'),(4442,1865455,7,'Sculptor'),(4442,1865456,7,'Standby Painter'),(4442,1865457,1,'Key Grip'),(4442,1865460,1,'Grip'),(4442,1865463,8,'Assistant Costume Designer'),(4442,1865468,8,'Seamstress'),(4442,1865469,8,'Set Dressing Artist'),(4442,1865470,9,'Animatronics Designer'),(4442,1865471,9,'Carpenter'),(4442,1865472,9,'Driver'),(4442,1865473,9,'Loader'),(4442,1865474,9,'Set Production Assistant'),(4442,1865475,9,'Stunt Coordinator'),(4442,1865476,9,'Systems Administrators & Support'),(4442,1865477,6,'Dialogue Editor'),(4442,1865478,11,'Best Boy Electric'),(4442,1865479,11,'Electrician'),(4442,1865480,11,'Gaffer'),(4442,1865481,11,'Lighting Artist'),(4442,1865482,11,'Rigging Gaffer'),(4442,1865484,3,'Location Manager'),(4442,1865485,3,'Production Coordinator'),(4442,1865486,6,'First Assistant Sound Editor'),(4442,1865487,10,'Digital Compositors'),(75,511,3,'Producer'),(75,307,1,'Director of Photography'),(75,510,2,'Director'),(75,510,3,'Producer'),(75,512,3,'Producer'),(75,513,4,'Screenplay'),(75,531,6,'Original Music Composer'),(75,533,6,'Additional Soundtrack'),(75,541,5,'Editor'),(75,545,3,'Casting'),(75,546,3,'Casting'),(75,547,3,'Casting'),(75,548,7,'Production Design'),(75,553,7,'Art Direction'),(75,555,7,'Set Decoration'),(75,557,8,'Costume Design'),(75,8023,10,'Animation'),(75,406204,8,'Makeup Artist'),(75,1401803,9,'Digital Effects Supervisor'),(75,1460602,10,'VFX Artist'),(75,1680739,9,'Stunts'),(9433,286,3,'Producer'),(9433,1095,1,'Director of Photography'),(9433,1254,3,'Producer'),(9433,1255,4,'Screenplay'),(9433,1760,6,'Original Music Composer'),(9433,7231,5,'Editor'),(9433,7256,2,'Director'),(5491,1263,3,'Casting'),(5491,3079,1,'Director of Photography'),(5491,5058,2,'Director'),(5491,8891,3,'Producer'),(5491,14093,3,'Producer'),(5491,18691,3,'Producer'),(5491,43607,4,'Screenplay'),(5491,43608,4,'Screenplay'),(5491,43609,6,'Original Music Composer'),(5491,43610,5,'Editor'),(5491,1450886,4,'Novel'),(5491,1455613,10,'Animation'),(9562,284,3,'Executive Producer'),(9562,1921,4,'Screenplay'),(9562,3175,5,'Editor'),(9562,7232,3,'Casting'),(9562,4782,4,'Novel'),(9562,5291,8,'Assistant Costume Designer'),(9562,6060,8,'Prosthetic Supervisor'),(9562,6064,9,'Stunts'),(9562,6041,6,'Original Music Composer'),(9562,7187,2,'Director'),(9562,7187,3,'Producer'),(9562,7200,3,'Producer'),(9562,10954,3,'Co-Producer'),(9562,8750,1,'Director of Photography'),(9562,40750,7,'Art Direction'),(9562,14336,9,'Unit Publicist'),(9562,17166,8,'Costume Design'),(9562,19291,7,'Production Design'),(9562,33017,9,'Second Unit Cinematographer'),(9562,20540,3,'Casting'),(9562,22816,3,'Producer'),(9562,30713,3,'Executive Producer'),(9562,41336,7,'Set Decoration'),(9562,46083,7,'Art Direction'),(9562,113044,5,'Dialogue Editor'),(9562,56737,3,'Executive Producer'),(9562,57546,4,'Screenplay'),(9562,75804,3,'Unit Production Manager'),(9562,75804,3,'Co-Producer'),(9562,77949,9,'Additional Music'),(9562,80424,7,'Art Direction'),(9562,92214,7,'Construction Coordinator'),(9562,95834,6,'Music Editor'),(9562,131516,3,'Associate Producer'),(9562,230001,1,'Still Photographer'),(9562,932446,9,'Visual Effects Editor'),(9562,957172,7,'Supervising Art Director'),(9562,970529,10,'Visual Effects Producer'),(9562,999672,9,'Stunt Coordinator'),(9562,1117347,9,'Armorer'),(9562,1172441,7,'Set Designer'),(9562,1319389,8,'Costume Supervisor'),(9562,1322137,8,'Costume Supervisor'),(9562,1322138,7,'Supervising Art Director'),(9562,1322139,7,'Art Direction'),(9562,1322140,7,'Art Direction'),(9562,1357044,7,'Production Illustrator'),(9562,1372884,1,'Steadicam Operator'),(9562,1399287,10,'Visual Effects Supervisor'),(9562,1400741,8,'Key Hair Stylist'),(9562,1407814,6,'Dolby Consultant'),(9562,1408305,6,'Sound Effects Editor'),(9562,1409703,4,'Storyboard'),(9562,1409712,1,'Helicopter Camera'),(9562,1417019,10,'24 Frame Playback'),(9562,1435660,5,'Additional Editing'),(9562,1440309,9,'Dialect Coach'),(9562,1441270,6,'First Assistant Sound Editor'),(9562,1460669,6,'Orchestrator'),(9562,1473323,3,'Associate Producer'),(9562,1486763,9,'Stand In'),(9562,1511803,9,'Post Production Supervisor'),(9562,1531246,9,'Makeup Effects'),(9562,1536553,10,'Visual Effects Coordinator'),(9562,1546458,6,'Supervising Sound Editor'),(9562,1546875,6,'Foley'),(9562,1551727,6,'Sound Mixer'),(9562,1556515,3,'Casting Associate'),(9562,1574635,1,'First Assistant Camera'),(9562,1574639,9,'Loader'),(9562,1574658,3,'Production Manager'),(9562,1576087,1,'Additional Camera'),(9562,1591301,8,'Makeup Artist'),(9562,1640356,9,'Special Effects Coordinator'),(9562,1681343,8,'Hairstylist'),(9562,1693469,7,'Art Department Coordinator'),(9562,1693470,7,'Assistant Art Director'),(9562,1693471,7,'Greensman'),(9562,1693472,7,'Leadman'),(9562,1693473,7,'Location Scout'),(9562,1693474,7,'Painter'),(9562,1693475,7,'Sculptor'),(9562,1693476,7,'Standby Painter'),(9562,1693479,1,'Underwater Camera'),(9562,1693480,8,'Set Costumer'),(9562,1693481,8,'Set Dressing Artist'),(9562,1693482,9,'Carpenter'),(9562,1693483,9,'CG Supervisor'),(9562,1693484,9,'Craft Service'),(9562,1693485,9,'Driver'),(9562,1693489,9,'Post Production Assistant'),(9562,1693490,9,'Projection'),(9562,1693491,9,'Propmaker'),(9562,1693492,9,'Property Master'),(9562,1693493,9,'Scenic Artist'),(9562,1693494,9,'Set Medic'),(9562,1693495,9,'Transportation Captain'),(9562,1693496,9,'Transportation Co-Captain'),(9562,1693497,9,'Transportation Coordinator'),(9562,1693498,9,'Utility Stunts'),(9562,1693499,9,'Video Assist Operator'),(9562,1693501,2,'Assistant Director'),(9562,1693502,5,'Color Timer'),(9562,1693503,11,'Electrician'),(9562,1693504,11,'Lighting Technician'),(9562,1693505,11,'Rigging Grip'),(9562,1693547,3,'Production Accountant'),(9562,1693548,3,'Production Coordinator'),(9562,1693549,3,'Production Supervisor'),(9562,1693550,6,'Boom Operator'),(9562,1693552,10,'3D Supervisor'),(9562,1693553,10,'Special Effects Supervisor'),(9562,1693561,3,'Finance'),(9562,1693566,3,'Unit Manager'),(9922,27,4,'Screenplay'),(9922,29,3,'Producer'),(9922,1213,6,'Original Music Composer'),(9922,1269,2,'Director'),(9922,1269,3,'Producer'),(9922,4723,4,'Screenplay'),(9922,5167,7,'Production Design'),(9922,6044,3,'Casting'),(9922,7847,3,'Producer'),(9922,8307,5,'Editor'),(9922,42116,3,'Line Producer'),(9922,58192,1,'Director of Photography'),(9922,60598,4,'Novel'),(9447,1313,1,'Director of Photography'),(9447,20629,2,'Director'),(9447,20629,4,'Screenplay'),(9447,20629,3,'Producer'),(9447,11651,3,'Producer'),(9447,58063,4,'Screenplay'),(9447,58064,4,'Screenplay'),(9447,58065,6,'Music'),(9447,58066,5,'Editor'),(9447,58067,5,'Editor'),(9447,59781,3,'Associate Producer'),(9447,1368867,10,'Special Effects Supervisor'),(9447,1447495,3,'Production Office Coordinator'),(8870,307,1,'Director of Photography'),(8870,1296,3,'Producer'),(8870,5912,6,'Original Music Composer'),(8870,2533,5,'Editor'),(8870,2953,3,'Casting'),(8870,6209,8,'Costume Design'),(8870,8299,3,'Executive Producer'),(8870,9343,7,'Production Design'),(8870,9344,7,'Art Direction'),(8870,9349,6,'Sound Designer'),(8870,9349,6,'Supervising Sound Editor'),(8870,9421,7,'Set Decoration'),(8870,9581,7,'Art Direction'),(8870,8939,8,'Makeup Artist'),(8870,17886,5,'Editor'),(8870,19241,4,'Screenplay'),(8870,24310,1,'Camera Operator'),(8870,20757,4,'Screenplay'),(8870,20757,3,'Executive Producer'),(8870,28241,6,'Orchestrator'),(8870,46077,3,'Producer'),(8870,46088,3,'Producer'),(8870,56154,2,'Director'),(8870,77512,3,'Executive Producer'),(8870,147288,1,'Grip'),(8870,166753,9,'Stunt Coordinator'),(8870,933417,3,'Production Accountant'),(8870,1121617,3,'Unit Production Manager'),(8870,1121617,3,'Associate Producer'),(8870,1153775,2,'Assistant Director'),(8870,1190662,3,'Production Coordinator'),(8870,1262771,9,'Stunts'),(8870,1330048,8,'Costume Supervisor'),(8870,1338152,6,'Sound Effects Editor'),(8870,1350133,9,'Special Effects Coordinator'),(8870,1364866,9,'Machinist'),(8870,1392244,9,'Sound Recordist'),(8870,1392670,3,'Unit Manager'),(8870,1392718,1,'Still Photographer'),(8870,1392737,2,'Script Supervisor'),(8870,1398883,8,'Assistant Costume Designer'),(8870,1401305,6,'Music Editor'),(8870,1403537,10,'Visual Effects Supervisor'),(8870,1404357,7,'Conceptual Design'),(8870,1405236,10,'Visual Effects Producer'),(8870,1408354,1,'Steadicam Operator'),(8870,1410574,9,'Visual Effects Editor'),(8870,1412741,6,'Production Sound Mixer'),(8870,1412758,9,'Unit Publicist'),(8870,1416157,9,'CG Supervisor'),(8870,1418265,8,'Hairstylist'),(8870,1428556,1,'First Assistant Camera'),(8870,1447557,9,'Compositors'),(8870,1458540,7,'Sculptor'),(8870,1459473,10,'Animation Supervisor'),(8870,1463300,4,'Storyboard'),(8870,1464344,3,'Executive In Charge Of Post Production'),(8870,1478854,6,'Foley'),(8870,1511803,9,'Post Production Supervisor'),(8870,1540353,10,'3D Supervisor'),(8870,1546580,3,'Executive In Charge Of Production'),(8870,1546585,6,'First Assistant Sound Editor'),(8870,1552549,5,'Color Timer'),(8870,1588683,6,'Boom Operator'),(8870,1609170,11,'Rigging Grip'),(8870,1610266,6,'Scoring Mixer'),(8870,1613277,9,'Transportation Captain'),(8870,1619111,7,'Production Illustrator'),(8870,1624169,11,'Rigging Gaffer'),(8870,1634439,9,'Utility Stunts'),(8870,1635038,11,'Best Boy Electric'),(8870,1642832,7,'Set Designer'),(8870,1724239,7,'Art Department Assistant'),(8870,1724240,7,'Construction Coordinator'),(8870,1724241,7,'Painter'),(8870,1724244,9,'Carpenter'),(8870,1724245,9,'Digital Effects Supervisor'),(8870,1724246,9,'Loader'),(8870,1724247,9,'Scenic Artist'),(8870,1724248,9,'Second Unit Cinematographer'),(8870,1724249,9,'Security'),(8870,1724250,9,'Systems Administrators & Support'),(8870,1724252,9,'Transportation Coordinator'),(8870,1724257,9,'Video Assist Operator'),(8870,1724263,11,'Electrician'),(8870,1724265,3,'Location Manager'),(8870,1724267,3,'Production Manager'),(8870,1724276,6,'Sound Editor'),(8870,1724279,10,'Digital Compositors'),(8870,1724280,10,'Special Effects Supervisor'),(8870,1724281,10,'Visual Effects'),(8870,1724282,10,'Visual Effects Coordinator'),(8870,1724287,9,'Digital Producer'),(9992,59,2,'Director'),(9992,59,3,'Producer'),(9992,59,4,'Novel'),(9992,59,4,'Writer'),(9992,996,6,'Original Music Composer'),(9992,997,1,'Director of Photography'),(9992,1113,3,'Casting'),(9992,20722,8,'Costume Design'),(9992,20296,5,'Editor'),(9992,35455,7,'Production Design'),(9992,53680,3,'Casting'),(9992,56234,3,'Producer'),(9992,56234,3,'Executive Producer'),(9992,56235,3,'Producer'),(9992,56231,5,'Editor'),(9992,61594,4,'Writer'),(9992,61596,4,'Characters'),(9992,61598,7,'Art Direction'),(9992,61598,4,'Characters'),(9992,61597,3,'Producer'),(9992,61600,7,'Set Decoration'),(9992,61599,7,'Art Direction'),(9992,61599,4,'Characters'),(9992,61601,4,'Characters'),(9992,1120480,5,'Editor'),(9992,1486198,3,'Casting'),(9992,1486200,2,'Script Supervisor'),(453,151,1,'Director of Photography'),(453,339,3,'Producer'),(453,548,7,'Production Design'),(453,1729,6,'Original Music Composer'),(453,2874,3,'Casting'),(453,3275,3,'Casting'),(453,4187,7,'Art Direction'),(453,4849,6,'Supervising Sound Editor'),(453,5283,3,'Executive Producer'),(453,5575,4,'Screenplay'),(453,6159,2,'Director'),(453,6159,3,'Producer'),(453,6160,4,'Author'),(453,6160,4,'Screenplay'),(453,6184,3,'Executive Producer'),(453,6185,3,'Producer'),(453,6186,3,'Producer'),(453,6187,3,'Executive Producer'),(453,6188,3,'Executive Producer'),(453,6189,5,'Editor'),(453,6190,5,'Editor'),(453,6191,7,'Set Decoration'),(453,6192,8,'Costume Design'),(453,34540,9,'Stunt Coordinator'),(453,59040,9,'Dialect Coach'),(453,64798,5,'Dialogue Editor'),(453,91051,8,'Hairstylist'),(453,91115,1,'Camera Operator'),(453,1023593,1,'Still Photographer'),(453,1321372,8,'Makeup Artist'),(453,1331649,8,'Costume Supervisor'),(453,1331650,8,'Costume Supervisor'),(453,1331651,8,'Costume Supervisor'),(453,1333153,9,'Property Master'),(453,1339326,5,'Dialogue Editor'),(453,1368864,6,'Sound Re-Recording Mixer'),(453,1392126,6,'Foley'),(453,1393455,2,'Script Supervisor'),(453,1394130,6,'Sound Re-Recording Mixer'),(453,1394958,10,'Visual Effects Producer'),(453,1395692,9,'Special Effects Coordinator'),(453,1399326,6,'Music Editor'),(453,1399479,9,'Unit Publicist'),(453,1399957,7,'Construction Coordinator'),(453,1400070,6,'Sound Effects Editor'),(453,1400368,9,'Sound Recordist'),(453,1401997,11,'Gaffer'),(453,1402069,7,'Leadman'),(453,1403511,9,'Post Production Supervisor'),(453,1403512,7,'Assistant Art Director'),(453,1403514,7,'Assistant Art Director'),(453,1403515,5,'Dialogue Editor'),(453,1403519,6,'Foley'),(453,1403521,6,'Sound Effects Editor'),(453,1403522,6,'Sound Effects Editor'),(453,1403524,9,'Visual Effects Editor'),(453,1403525,10,'Visual Effects Supervisor'),(453,1403526,1,'Camera Operator'),(453,1403528,11,'Best Boy Electric'),(453,1403529,3,'Location Manager'),(8587,8376,6,'Supervising Sound Editor'),(8587,947,6,'Original Music Composer'),(8587,671,6,'Supervising Sound Editor'),(8587,5721,5,'Supervising Film Editor'),(8587,7933,4,'Screenplay'),(8587,15812,2,'Director'),(8587,18898,2,'Director'),(8587,38792,4,'Screenplay'),(8587,51701,5,'Supervising Film Editor'),(8587,56041,4,'Screenplay'),(8587,56042,5,'Editor'),(8587,65534,10,'Animation Supervisor'),(8587,66193,7,'Production Design'),(8587,74975,6,'Sound Re-Recording Mixer'),(8587,74976,6,'Sound Re-Recording Mixer'),(8587,74978,6,'Sound Re-Recording Mixer'),(8587,1352979,6,'Supervising Music Editor'),(8587,1395352,3,'Production Manager'),(8587,1447357,4,'Story'),(8587,1447370,10,'Animation'),(8587,1447376,10,'Animation Supervisor'),(8587,1447436,2,'Layout'),(8587,1447483,2,'Layout'),(8587,1450331,10,'Animation Supervisor'),(8587,1455541,10,'Animation'),(8587,1459479,9,'Production Office Assistant'),(8587,1552189,9,'Supervising Animator'),(8587,1558107,10,'Animation'),(8587,1563747,9,'Supervising Animator'),(8587,1563751,9,'Supervising Animator'),(8587,1563922,3,'Casting'),(8587,1647589,6,'Sound Effects Editor'),(8587,1653447,7,'Art Direction'),(9533,531,6,'Original Music Composer'),(9533,1098,5,'Editor'),(9533,5398,3,'Producer'),(9533,11099,1,'Director of Photography'),(9533,16786,4,'Novel'),(9533,19051,3,'Producer'),(9533,11091,2,'Director'),(9533,57862,4,'Screenplay'),(9533,57864,3,'Executive Producer'),(2023,1213,6,'Original Music Composer'),(2023,4945,2,'Director'),(2023,4950,1,'Director of Photography'),(2023,4951,5,'Editor'),(2023,4952,3,'Casting'),(2023,6348,8,'Costume Design'),(2023,6923,7,'Supervising Art Director'),(2023,11300,10,'Visual Effects Supervisor'),(2023,11413,7,'Set Decoration'),(2023,16467,7,'Art Direction'),(2023,16737,6,'Supervising Music Editor'),(2023,17649,9,'Second Unit Cinematographer'),(2023,19284,7,'Production Design'),(2023,20801,4,'Screenplay'),(2023,20802,3,'Producer'),(2023,41736,3,'Co-Producer'),(2023,31518,3,'Associate Producer'),(2023,35664,2,'First Assistant Director'),(2023,41337,8,'Makeup Artist'),(2023,62215,3,'Casting Associate'),(2023,92352,7,'Set Dresser'),(2023,92358,7,'Leadman'),(2023,83087,6,'Sound Editor'),(2023,91144,6,'Scoring Mixer'),(2023,109129,9,'Makeup Effects'),(2023,116903,3,'Production Manager'),(2023,557443,7,'Art Direction'),(2023,1091813,8,'Costume Illustrator'),(2023,1172441,7,'Set Designer'),(2023,1173688,9,'Stunt Coordinator'),(2023,1302411,6,'Boom Operator'),(2023,1305602,7,'Assistant Art Director'),(2023,1338456,7,'Location Scout'),(2023,1339206,8,'Assistant Costume Designer'),(2023,1342619,7,'Painter'),(2023,1342663,6,'Music Editor'),(2023,1355529,7,'Art Department Coordinator'),(2023,1357067,8,'Set Costumer'),(2023,1364409,7,'Construction Coordinator'),(2023,1378218,7,'Greensman'),(2023,1378722,6,'First Assistant Sound Editor'),(2023,1392237,9,'Property Master'),(2023,1398083,7,'Art Department Assistant'),(2023,1398111,9,'Transportation Coordinator'),(2023,1399071,1,'Aerial Director of Photography'),(2023,1401107,10,'Visual Effects Producer'),(2023,1401884,7,'Sculptor'),(2023,1403698,7,'Draughtsman'),(2023,1405717,6,'Supervising Sound Editor'),(2023,1406614,6,'Sound Re-Recording Mixer'),(2023,1407223,8,'Hair Department Head'),(2023,1408292,8,'Hairstylist'),(2023,1408301,6,'Sound Effects Editor'),(2023,1408365,2,'Script Supervisor'),(2023,1412208,8,'Costume Supervisor'),(2023,1412215,9,'Unit Publicist'),(2023,1416584,9,'Special Effects Coordinator'),(2023,1435071,8,'Makeup Supervisor'),(2023,1443065,6,'ADR Supervisor'),(2023,1457938,10,'Digital Compositors'),(2023,1460499,10,'CG Animator'),(2023,1463475,10,'Roto Supervisor'),(2023,1472587,3,'Executive Producer'),(2023,1475892,3,'Assistant Production Manager'),(2023,1491704,8,'Prosthetic Supervisor'),(2023,1532597,8,'Key Costumer'),(2023,1534970,7,'Standby Painter'),(2023,1542802,9,'Post Production Supervisor'),(2023,1545428,3,'Unit Production Manager'),(2023,1548698,6,'Orchestrator'),(2023,1550166,6,'Production Sound Mixer'),(2023,1550576,1,'First Assistant Camera'),(2023,1552549,5,'Color Timer'),(2023,1553245,1,'Still Photographer'),(2023,1553268,10,'Visual Effects'),(2023,1564250,6,'Foley'),(2023,1569836,11,'Lighting Technician'),(2023,1571776,3,'Production Supervisor'),(2023,1578642,9,'Armorer'),(2023,1581162,3,'Production Coordinator'),(2023,1585000,9,'Set Medic'),(2023,1594920,9,'Carpenter'),(2023,1597191,9,'Craft Service'),(2023,1610272,6,'Music Programmer'),(2023,1624710,9,'Driver'),(2023,1627959,7,'Production Illustrator'),(2023,1627960,7,'Set Decoration Buyer'),(2023,1627961,1,'Camera Technician'),(2023,1627963,1,'Grip'),(2023,1627974,9,'Loader'),(2023,1627975,9,'Production Office Assistant'),(2023,1627977,9,'Propmaker'),(2023,1627982,9,'Scenic Artist'),(2023,1627983,9,'Stand In'),(2023,1627984,9,'Stunts'),(2023,1627985,9,'Transportation Captain'),(2023,1627986,9,'Utility Stunts'),(2023,1627988,9,'Video Assist Operator'),(2023,1627989,9,'Visual Effects Editor'),(2023,1627991,5,'First Assistant Editor'),(2023,1627992,11,'Best Boy Electric'),(2023,1627993,11,'Electrician'),(2023,1627994,11,'Gaffer'),(2023,1627995,11,'Rigging Gaffer'),(2023,1627996,11,'Rigging Grip'),(2023,1627997,3,'Location Manager'),(2023,1628004,3,'Researcher'),(2023,1628033,10,'Animation Supervisor'),(2023,1628034,10,'Special Effects Supervisor'),(2023,1628057,10,'Visual Effects Coordinator'),(2023,1632066,9,'Aerial Coordinator'),(2023,1667274,6,'Assistant Sound Editor'),(2023,1755689,8,'Ager/Dyer'),(2023,1840702,7,'Assistant Property Master'),(2023,1867129,1,'Dolly Grip'),(2023,1867136,9,'Animal Coordinator'),(2023,1867138,9,'Marine Coordinator'),(2023,1867156,9,'Techno Crane Operator'),(2023,1867157,2,'Second Assistant Director'),(2023,1867158,2,'Third Assistant Director'),(2023,1867160,3,'Casting Assistant'),(2023,1867167,6,'Musician'),(2023,1867191,10,'Creature Technical Director'),(584,903,7,'Art Direction'),(584,906,7,'Set Decoration'),(584,2507,1,'Director of Photography'),(584,2519,8,'Costume Design'),(584,2533,5,'Editor'),(584,6482,2,'Director'),(584,6489,6,'Original Music Composer'),(584,7865,4,'Screenplay'),(584,7865,4,'Story'),(584,8161,4,'Screenplay'),(584,8161,4,'Story'),(584,8162,4,'Story'),(584,8162,4,'Characters'),(584,8181,3,'Executive Producer'),(584,8182,3,'Co-Producer'),(584,9772,5,'Editor'),(584,11874,3,'Producer'),(584,13169,6,'First Assistant Sound Editor'),(584,15227,9,'Visual Effects Editor'),(584,18458,7,'Set Decoration'),(584,19567,9,'Second Unit Cinematographer'),(584,22145,7,'Production Design'),(584,34529,6,'Production Sound Mixer'),(584,54606,3,'Casting'),(584,57225,3,'Executive Producer'),(584,57347,3,'Unit Production Manager'),(584,60558,3,'Casting Associate'),(584,92467,10,'Visual Effects'),(584,122294,9,'Stunt Coordinator'),(584,142169,9,'Transportation Coordinator'),(584,548435,6,'Foley'),(584,555086,2,'Assistant Director'),(584,1015427,6,'Boom Operator'),(584,1049456,6,'Sound Editor'),(584,1137332,10,'Digital Compositors'),(584,1327178,8,'Costume Supervisor'),(584,1328144,7,'Assistant Art Director'),(584,1335461,10,'Visual Effects Supervisor'),(584,1352966,5,'Dialogue Editor'),(584,1368866,6,'Sound Designer'),(584,1386923,2,'Script Supervisor'),(584,1388849,7,'Construction Coordinator'),(584,1395022,6,'Supervising Sound Editor'),(584,1399894,9,'Unit Publicist'),(584,1400375,1,'Additional Camera'),(584,1401989,1,'Steadicam Operator'),(584,1403089,9,'Scenic Artist'),(584,1408392,1,'Helicopter Camera'),(584,1413452,9,'Sound Recordist'),(584,1428198,10,'Visual Effects Producer'),(584,1428229,6,'Music Editor'),(584,1440287,9,'Picture Car Coordinator'),(584,1464956,8,'Makeup Artist'),(584,1465623,8,'Hair Designer'),(584,1479421,10,'Visual Effects Supervisor'),(584,1523402,8,'Hairstylist'),(584,1530870,9,'Post Production Supervisor'),(584,1540470,5,'Color Timer'),(584,1546085,8,'Key Hair Stylist'),(584,1548463,6,'Sound Effects Editor'),(584,1549417,7,'Art Department Coordinator'),(584,1549418,8,'Set Dressing Artist'),(584,1549441,9,'Utility Stunts'),(584,1552603,6,'Sound Engineer'),(584,1552778,1,'First Assistant Camera'),(584,1557611,6,'Scoring Mixer'),(584,1559147,3,'Production Accountant'),(584,1564239,5,'Digital Intermediate'),(584,1566626,3,'Production Supervisor'),(584,1570736,7,'Location Scout'),(584,1570762,9,'Set Medic'),(584,1573115,10,'3D Supervisor'),(584,1573610,9,'Set Production Assistant'),(584,1596724,9,'Propmaker'),(584,1596739,11,'Electrician'),(584,1651220,11,'Rigging Gaffer'),(584,1673003,9,'Stunts'),(584,1701275,11,'Lighting Technician'),(584,1711710,10,'Visual Effects Coordinator'),(584,1722386,9,'Telecine Colorist'),(584,1726492,7,'Art Department Assistant'),(584,1726493,7,'Greensman'),(584,1726494,7,'Set Designer'),(584,1726495,1,'Camera Operator'),(584,1726496,1,'Grip'),(584,1726497,8,'Assistant Costume Designer'),(584,1726498,8,'Set Costumer'),(584,1726500,9,'Chef'),(584,1726501,9,'Craft Service'),(584,1726502,9,'Driver'),(584,1726503,9,'Loader'),(584,1726515,9,'Property Master'),(584,1726517,9,'Special Effects Coordinator'),(584,1726519,9,'Stand In'),(584,1726547,9,'Transportation Captain'),(584,1726548,9,'Transportation Co-Captain'),(584,1726550,9,'Video Assist Operator'),(584,1726552,11,'Gaffer'),(584,1726554,11,'Rigging Grip'),(584,1726558,3,'Location Manager'),(584,1726559,3,'Production Coordinator'),(584,1726560,3,'Production Manager'),(584,1726572,6,'Sound Mixer'),(584,1726580,10,'I/O Supervisor'),(584,1726581,4,'Storyboard'),(4858,1720,3,'Casting'),(4858,1091,3,'Producer'),(4858,1296,3,'Executive Producer'),(4858,5135,1,'Director of Photography'),(4858,5632,7,'Production Design'),(4858,7832,2,'Director'),(4858,7837,5,'Editor'),(4858,9039,6,'Original Music Composer'),(4858,11266,2,'Director'),(4858,11267,3,'Producer'),(4858,13245,5,'Editor'),(4858,21035,3,'Executive Producer'),(4858,21036,3,'Executive Producer'),(4858,29716,4,'Novel'),(4858,37162,3,'Executive Producer'),(4858,39725,4,'Screenplay'),(4858,39726,3,'Executive Producer'),(4858,39727,3,'Executive Producer'),(4858,958488,8,'Costume Design'),(4858,979152,3,'Producer'),(4858,1378226,6,'Sound Re-Recording Mixer'),(8698,1113,3,'Casting'),(8698,8379,7,'Lead Painter'),(8698,472,6,'Production Sound Mixer'),(8698,10816,5,'Editor'),(8698,738,3,'Executive Producer'),(8698,1525,3,'Producer'),(8698,1525,3,'Executive Producer'),(8698,3183,3,'Producer'),(8698,4249,3,'Casting'),(8698,6048,3,'Executive Producer'),(8698,6629,7,'Art Direction'),(8698,7020,6,'Original Music Composer'),(8698,8315,7,'Production Design'),(8698,11300,10,'Visual Effects Supervisor'),(8698,11272,7,'Art Direction'),(8698,11449,4,'Novel'),(8698,11457,7,'Art Direction'),(8698,13223,5,'Color Timer'),(8698,15317,10,'Visual Effects Coordinator'),(8698,15358,9,'Second Unit Cinematographer'),(8698,10836,7,'Art Direction'),(8698,33933,7,'Set Designer'),(8698,18715,3,'Assistant Production Coordinator'),(8698,10837,7,'Art Direction'),(8698,31908,8,'Hairstylist'),(8698,34967,3,'Associate Producer'),(8698,40268,1,'Director of Photography'),(8698,52805,3,'Unit Production Manager'),(8698,52805,3,'Co-Producer'),(8698,10808,2,'Director'),(8698,56113,4,'Screenplay'),(8698,113048,9,'Sound Recordist'),(8698,77784,3,'Researcher'),(8698,91775,6,'Music Programmer'),(8698,165734,9,'Dialect Coach'),(8698,957970,7,'Set Decoration'),(8698,958488,8,'Costume Design'),(8698,959549,7,'Set Designer'),(8698,962164,7,'Draughtsman'),(8698,1031469,9,'Fight Choreographer'),(8698,1073780,9,'Digital Effects Supervisor'),(8698,1117947,5,'First Assistant Editor'),(8698,1159914,6,'Dolby Consultant'),(8698,1268981,9,'Visual Effects Art Director'),(8698,1323281,8,'Costume Supervisor'),(8698,1325897,8,'Costume Illustrator'),(8698,1337455,7,'Construction Coordinator'),(8698,1342650,7,'Art Department Coordinator'),(8698,1373172,1,'Camera Operator'),(8698,1378226,6,'Sound Re-Recording Mixer'),(8698,1378695,6,'Sound Effects Editor'),(8698,1384367,5,'Dialogue Editor'),(8698,1390524,6,'Supervising Sound Editor'),(8698,1390527,6,'ADR Editor'),(8698,1393351,6,'Scoring Mixer'),(8698,1395258,10,'Pyrotechnic Supervisor'),(8698,1398934,1,'Steadicam Operator'),(8698,1399057,6,'ADR Supervisor'),(8698,1399501,9,'Scenic Artist'),(8698,1399643,9,'Unit Publicist'),(8698,1403545,11,'Rigging Gaffer'),(8698,1404344,3,'Production Manager'),(8698,1404357,7,'Conceptual Design'),(8698,1404547,9,'Transportation Coordinator'),(8698,1406190,6,'Assistant Sound Editor'),(8698,1406759,10,'2D Supervisor'),(8698,1408825,1,'Still Photographer'),(8698,1409759,3,'Assistant Production Manager'),(8698,1411540,9,'Visual Effects Editor'),(8698,1417999,8,'Set Costumer'),(8698,1422810,7,'Sculptor'),(8698,1428191,10,'3D Artist'),(8698,1434638,8,'Makeup Artist'),(8698,1440497,2,'Script Supervisor'),(8698,1444239,9,'Stunt Coordinator'),(8698,1454757,10,'Creature Design'),(8698,1456385,3,'Location Manager'),(8698,1466997,8,'Prosthetic Supervisor'),(8698,1471199,3,'Line Producer'),(8698,1534687,9,'Additional Music'),(8698,1536878,1,'Underwater Camera'),(8698,1536949,8,'Wigmaker'),(8698,1537144,6,'Music Editor'),(8698,1544669,6,'Foley'),(8698,1546755,9,'Armorer'),(8698,1555373,6,'Boom Operator'),(8698,1559163,10,'I/O Supervisor'),(8698,1562239,9,'Post Production Supervisor'),(8698,1569563,9,'Post Production Assistant'),(8698,1569802,9,'Stunts'),(8698,1570204,1,'Key Grip'),(8698,1570208,7,'Set Dresser'),(8698,1573080,10,'Special Effects Supervisor'),(8698,1574117,8,'Assistant Costume Designer'),(8698,1582772,9,'Pyrotechnician'),(8698,1586332,11,'Rigging Grip'),(8698,1602865,9,'Driver'),(8698,1605393,4,'Novel'),(8698,1605394,7,'Art Department Assistant'),(8698,1605395,7,'Leadman'),(8698,1605396,3,'Line Producer'),(8698,1605397,7,'Painter'),(8698,1605399,7,'Production Illustrator'),(8698,1605400,1,'First Assistant Camera'),(8698,1605401,8,'Hair Designer'),(8698,1605402,9,'CG Supervisor'),(8698,1605403,9,'Loader'),(8698,1605404,9,'Propmaker'),(8698,1605405,9,'Property Master'),(8698,1605406,9,'Set Medic'),(8698,1605407,9,'Set Production Assistant'),(8698,1605408,9,'Special Effects Coordinator'),(8698,1605410,9,'Technical Supervisor'),(8698,1605411,9,'Systems Administrators & Support'),(8698,1605412,9,'Video Assist Operator'),(8698,1605883,11,'Best Boy Electric'),(8698,1605884,11,'Electrician'),(8698,1605886,11,'Gaffer'),(8698,1605887,11,'Lighting Artist'),(8698,1605888,11,'Lighting Technician'),(8698,1605889,3,'Executive In Charge Of Production'),(8698,1605890,3,'Production Accountant'),(8698,1605891,3,'Production Coordinator'),(8698,1605892,3,'Production Supervisor'),(8698,1605893,6,'Orchestrator'),(8698,1605894,10,'Animation Supervisor'),(8698,1605895,10,'Digital Compositors'),(8698,1605896,10,'Visual Effects'),(8698,1605897,10,'Visual Effects Producer'),(8698,1605898,4,'Storyboard'),(8698,1605899,10,'Modeling'),(8698,1605900,10,'CG Painter'),(8698,1605901,3,'Unit Manager'),(8698,1656076,6,'Musician'),(8698,1721835,2,'First Assistant Director'),(8698,1733142,5,'Negative Cutter'),(8698,1738171,8,'Tailor'),(8698,1740487,7,'Title Designer'),(8698,1745955,1,'Dolly Grip'),(8698,1854354,7,'Assistant Property Master'),(8698,1854357,1,'Grip'),(8698,1854358,8,'Key Set Costumer'),(8698,1854359,9,'Marine Coordinator'),(8698,1854360,2,'Second Assistant Director'),(8698,1854361,3,'Casting Assistant'),(8698,1854362,6,'Foley Editor'),(8698,1854363,6,'Utility Sound'),(8698,1854365,10,'3D Modeller'),(8698,1854366,10,'CG Animator'),(8698,1854367,10,'Creature Technical Director'),(602,3964,7,'Production Design'),(602,6046,2,'Director'),(602,6046,4,'Screenplay'),(602,6051,5,'Editor'),(602,6055,7,'Leadman'),(602,6489,6,'Original Music Composer'),(602,8676,4,'Screenplay'),(602,8676,3,'Producer'),(602,8677,1,'Director of Photography'),(602,8678,7,'Production Design'),(602,8679,7,'Art Direction'),(602,8680,7,'Set Decoration'),(602,8681,8,'Costume Design'),(602,8682,9,'Special Effects'),(602,8683,10,'Visual Effects'),(602,8684,9,'Stunts'),(602,9618,7,'Set Designer'),(602,14761,7,'Art Department Coordinator'),(602,21812,3,'Casting'),(602,27100,10,'Visual Effects Supervisor'),(602,27952,10,'Visual Effects Supervisor'),(602,38022,7,'Assistant Art Director'),(602,38022,7,'Set Designer'),(602,58855,3,'Casting'),(602,56387,1,'Camera Operator'),(602,91060,9,'Property Master'),(602,578767,6,'Boom Operator'),(602,582808,1,'Still Photographer'),(602,1116937,6,'Foley'),(602,1183147,1,'Camera Operator'),(602,1203683,3,'Casting'),(602,1204836,6,'Supervising Sound Editor'),(602,1322423,8,'Set Costumer'),(602,1341850,7,'Set Designer'),(602,1341856,6,'Foley'),(602,1342629,2,'Script Supervisor'),(602,1355878,6,'Supervising Sound Editor'),(602,1377215,9,'Property Master'),(602,1391564,7,'Construction Coordinator'),(602,1391565,7,'Set Designer'),(602,1391566,7,'Set Designer'),(602,1391567,6,'Sound Designer'),(602,1391570,9,'Sound Recordist'),(602,1391571,6,'Sound Re-Recording Mixer'),(602,1391572,6,'Sound Re-Recording Mixer'),(602,1391576,10,'Visual Effects Producer'),(602,1391581,9,'Systems Administrators & Support'),(602,1391583,1,'Still Photographer'),(602,1391585,11,'Gaffer'),(602,1391586,11,'Gaffer'),(602,1391591,1,'Camera Operator'),(602,1391593,1,'Steadicam Operator'),(602,1391594,1,'Steadicam Operator'),(602,1391597,8,'Costume Supervisor'),(602,1391598,8,'Costume Supervisor'),(602,1391599,8,'Costume Supervisor'),(602,1391600,9,'Transportation Coordinator'),(602,1391601,9,'Transportation Coordinator'),(602,1391602,9,'Choreographer'),(602,1391603,3,'Location Manager'),(602,1391604,3,'Location Manager'),(602,1391605,2,'Script Supervisor'),(602,1391606,2,'Script Supervisor'),(330,491,6,'Original Music Composer'),(330,488,2,'Director'),(330,489,3,'Executive Producer'),(330,490,3,'Producer'),(330,492,1,'Director of Photography'),(330,493,5,'Editor'),(330,496,7,'Production Design'),(330,508,4,'Screenplay'),(330,508,9,'Second Unit Cinematographer'),(330,900,9,'Sound Design Assistant'),(330,2210,3,'Associate Producer'),(330,2211,3,'Producer'),(330,2216,6,'Sound Designer'),(330,2874,3,'Casting'),(330,3275,3,'Casting'),(330,4782,4,'Author'),(330,10632,9,'Stunt Coordinator'),(330,7764,6,'Supervising Sound Editor'),(330,8679,7,'Art Direction'),(330,9264,2,'Assistant Director'),(330,11300,10,'Digital Compositors'),(330,13223,5,'Color Timer'),(330,15893,6,'Sound Effects Editor'),(330,14657,6,'Foley'),(330,42265,3,'Production Supervisor'),(330,34526,7,'Sculptor'),(330,38022,7,'Art Direction'),(330,65711,7,'Set Decoration'),(330,66142,6,'Music Editor'),(330,75231,3,'Unit Production Manager'),(330,75380,6,'Sound'),(330,76014,3,'Casting Associate'),(330,81731,7,'Art Direction'),(330,91146,6,'Orchestrator'),(330,13443,9,'Stunts'),(330,276769,9,'Unit Publicist'),(330,957889,7,'Production Illustrator'),(330,1329759,8,'Costume Supervisor'),(330,1335873,9,'Visual Effects Art Director'),(330,1339432,9,'Post Production Supervisor'),(330,1341865,2,'Script Supervisor'),(330,1354808,11,'Rigging Grip'),(330,1357070,9,'Transportation Coordinator'),(330,1376897,7,'Construction Coordinator'),(330,1389127,7,'Assistant Art Director'),(330,1389139,1,'Still Photographer'),(330,1394491,9,'Transportation Co-Captain'),(330,1395262,10,'Visual Effects Producer'),(330,1398903,11,'Best Boy Electric'),(330,1400849,9,'Property Master'),(330,1401105,9,'Visual Effects Editor'),(330,1401109,1,'Steadicam Operator'),(330,1403415,1,'Helicopter Camera'),(330,1411857,9,'Dialect Coach'),(330,1412188,8,'Key Hair Stylist'),(330,1412985,6,'First Assistant Sound Editor'),(330,1414502,7,'Leadman'),(330,1425978,6,'Sound Re-Recording Mixer'),(330,1432030,3,'Location Manager'),(330,1435576,8,'Hairstylist'),(330,1446987,7,'Art Department Coordinator'),(330,1455952,1,'Camera Intern'),(330,1462669,9,'Set Production Assistant'),(330,1532249,8,'Makeup Artist'),(330,1537139,5,'Dialogue Editor'),(330,1544670,5,'First Assistant Editor'),(330,1551104,11,'Rigging Gaffer'),(330,1551485,9,'Picture Car Coordinator'),(330,1556514,9,'Transportation Captain'),(330,1558210,9,'Production Controller'),(330,1586929,9,'Scenic Artist'),(330,1595461,7,'Standby Painter'),(330,1595470,9,'Mix Technician'),(330,1595472,9,'Projection'),(330,1595485,11,'Electrician'),(330,1633949,9,'Craft Service'),(330,1637976,7,'Construction Foreman'),(330,1637977,7,'Greensman'),(330,1637978,7,'Painter'),(330,1637979,7,'Set Designer'),(330,1637980,1,'Grip'),(330,1637981,8,'Set Costumer'),(330,1637982,8,'Set Dressing Artist'),(330,1637983,9,'Carpenter'),(330,1638014,9,'Chef'),(330,1638015,9,'Driver'),(330,1638016,9,'Loader'),(330,1638018,9,'Post Production Assistant'),(330,1638020,9,'Propmaker'),(330,1638025,9,'Sequence Supervisor'),(330,1638028,9,'Set Medic'),(330,1638030,9,'Stand In'),(330,1638032,9,'Utility Stunts'),(330,1638033,3,'Production Accountant'),(330,1638034,3,'Production Coordinator'),(330,1638036,10,'Visual Effects Coordinator'),(330,1638040,9,'Studio Teachers'),(953,947,6,'Original Music Composer'),(953,671,6,'Supervising Sound Editor'),(953,7316,4,'Writer'),(953,12090,3,'Casting'),(953,15814,5,'Editor'),(953,15815,5,'Editor'),(953,18863,2,'Director'),(953,18863,4,'Writer'),(953,18864,2,'Director'),(953,18864,4,'Writer'),(953,30871,9,'Additional Music'),(953,52845,9,'Creative Consultant'),(953,113087,6,'Sound Engineer'),(953,56671,3,'Producer'),(953,56678,5,'Editor'),(953,64443,3,'Co-Producer'),(953,64444,7,'Art Direction'),(953,68463,9,'Post-Production Manager'),(953,928422,10,'Visual Development'),(953,1034755,9,'Post Production Supervisor'),(953,1106862,3,'Production Manager'),(953,1176124,4,'Writer'),(953,1265060,3,'Unit Manager'),(953,1368884,6,'Music Editor'),(953,1377373,3,'Casting Associate'),(953,1397895,3,'Production Supervisor'),(953,1411521,6,'Sound Recordist'),(953,1412498,3,'Production Accountant'),(953,1448071,10,'Animation Supervisor'),(953,1450331,10,'Animation Supervisor'),(953,1454757,7,'Sculptor'),(953,1458995,6,'Sound Effects Editor'),(953,1459879,9,'Supervising Animator'),(953,1460431,5,'First Assistant Editor'),(953,1460608,10,'Animation'),(953,1543204,7,'Set Designer'),(953,1552873,5,'Color Timer'),(953,1554041,6,'Orchestrator'),(953,1561989,6,'Assistant Sound Editor'),(953,1564250,6,'Foley'),(953,1604018,9,'Translator'),(953,1677816,9,'Production Controller'),(953,1677818,10,'Visual Effects Supervisor'),(953,1750279,3,'Production Supervisor'),(953,1780681,7,'Production Design'),(953,1851489,7,'Production Illustrator'),(953,1851490,9,'Post Production Assistant'),(953,1851491,9,'Software Engineer'),(953,1851492,9,'Systems Administrators & Support'),(953,1851493,11,'Lighting Artist'),(953,1851494,3,'Production Coordinator'),(953,1851495,10,'Visual Effects'),(953,1851496,5,'Additional Editing'),(953,1851497,10,'Animation Production Assistant'),(953,1851498,9,'Supervising Technical Director'),(9693,2952,3,'Casting'),(9693,8374,3,'Producer'),(9693,1113,3,'Casting'),(9693,1253,7,'Production Design'),(9693,2889,6,'Sound Designer'),(9693,2889,6,'Supervising Sound Editor'),(9693,3996,6,'Sound Re-Recording Mixer'),(9693,4185,1,'Director of Photography'),(9693,9024,7,'Supervising Art Director'),(9693,9162,8,'Hairstylist'),(9693,9162,8,'Makeup Artist'),(9693,11218,2,'Director'),(9693,11218,5,'Editor'),(9693,11218,4,'Screenplay'),(9693,11229,6,'Supervising Sound Editor'),(9693,10125,7,'Set Decoration'),(9693,12785,2,'Assistant Director'),(9693,40823,6,'Foley'),(9693,13194,5,'Digital Intermediate'),(9693,15219,3,'Producer'),(9693,15220,3,'Producer'),(9693,21204,4,'Screenplay'),(9693,23401,5,'Editor'),(9693,23456,9,'Makeup Effects'),(9693,23773,7,'Art Direction'),(9693,30463,7,'Art Direction'),(9693,32403,7,'Production Design'),(9693,41587,3,'Executive Producer'),(9693,57699,9,'Second Unit Cinematographer'),(9693,58588,4,'Screenplay'),(9693,58846,3,'Executive Producer'),(9693,58847,3,'Producer'),(9693,58848,3,'Producer'),(9693,58849,3,'Producer'),(9693,58850,6,'Original Music Composer'),(9693,79207,4,'Screenplay'),(9693,79209,4,'Screenplay'),(9693,91882,5,'Dialogue Editor'),(9693,194881,7,'Assistant Art Director'),(9693,920732,4,'Novel'),(9693,973271,3,'Producer'),(9693,983309,7,'Art Direction'),(9693,1017789,1,'Camera Operator'),(9693,1066819,3,'Unit Production Manager'),(9693,1084741,9,'Visual Effects Editor'),(9693,1104780,7,'Art Direction'),(9693,1130884,9,'Scenic Artist'),(9693,1205448,8,'Costume Design'),(9693,1322138,7,'Supervising Art Director'),(9693,1326461,8,'Costume Supervisor'),(9693,1334490,8,'Hairstylist'),(9693,1334490,8,'Makeup Artist'),(9693,1335178,9,'Makeup Effects'),(9693,1335179,7,'Art Department Coordinator'),(9693,1335180,7,'Construction Coordinator'),(9693,1335181,9,'Property Master'),(9693,1335182,6,'Sound Effects Editor'),(9693,1335183,6,'Sound Effects Editor'),(9693,1335184,9,'Special Effects Coordinator'),(9693,1335186,10,'Visual Effects Producer'),(9693,1335198,10,'Visual Effects Producer'),(9693,1335199,9,'Visual Effects Editor'),(9693,1335543,7,'Greensman'),(9693,1337412,6,'Foley'),(9693,1388877,9,'Stunt Coordinator'),(9693,1390372,1,'Camera Operator'),(9693,1392609,6,'Sound Re-Recording Mixer'),(9693,1393448,1,'Still Photographer'),(9693,1395709,6,'Sound Re-Recording Mixer'),(9693,1398110,11,'Gaffer'),(9693,1401728,10,'Visual Effects Producer'),(9693,1405243,9,'Transportation Coordinator'),(9693,1407823,5,'Digital Intermediate'),(9693,1408353,9,'Stunt Coordinator'),(9693,1408362,11,'Rigging Gaffer'),(9693,1410182,8,'Hairstylist'),(9693,1410182,8,'Makeup Artist'),(9693,1410183,3,'Production Manager'),(9693,1410184,9,'Scenic Artist'),(9693,1410185,9,'CG Supervisor'),(9693,1410186,10,'Visual Effects Producer'),(9693,1410187,10,'Visual Effects Producer'),(9693,1410188,10,'Visual Effects Supervisor'),(9693,1410189,10,'Animation'),(9693,1410190,10,'Animation'),(9693,1410191,10,'Animation'),(9693,1410192,10,'Animation'),(9693,1410193,10,'Animation Supervisor'),(9693,1410195,1,'Camera Operator'),(9693,1410196,5,'Digital Intermediate'),(9693,1410197,3,'Location Manager'),(9693,1410199,2,'Script Supervisor'),(9693,1410200,3,'Location Manager'),(9693,1410202,3,'Location Manager'),(9693,1410203,9,'Dialect Coach'),(9693,1410204,2,'Script Supervisor'),(9693,1410205,2,'Script Supervisor'),(9693,1410206,3,'Location Manager'),(9693,1520056,5,'Digital Intermediate'),(9693,1551777,8,'Assistant Costume Designer'),(9693,1574576,9,'Post Production Supervisor'),(9693,1593085,9,'Driver'),(8909,8374,3,'Producer'),(8909,531,6,'Original Music Composer'),(8909,4504,3,'Executive Producer'),(8909,4507,3,'Executive Producer'),(8909,4875,7,'Art Direction'),(8909,6051,5,'Editor'),(8909,6044,3,'Casting'),(8909,7865,4,'Screenplay'),(8909,8161,4,'Screenplay'),(8909,8410,7,'Set Decoration'),(8909,11002,7,'Production Design'),(8909,15572,7,'Supervising Art Director'),(8909,33933,7,'Art Direction'),(8909,24310,1,'Director of Photography'),(8909,19863,7,'Art Direction'),(8909,20720,3,'Producer'),(8909,23430,2,'Director'),(8909,23485,3,'Producer'),(8909,29400,3,'Executive Producer'),(8909,30247,8,'Costume Design'),(8909,41892,3,'Executive Producer'),(8909,56238,3,'Producer'),(8909,58191,4,'Screenplay'),(8909,73453,3,'Executive Producer'),(8909,60890,3,'Executive Producer'),(8909,1325197,8,'Costume Supervisor'),(8909,1325198,8,'Costume Supervisor'),(9802,2324,3,'Casting'),(9802,770,3,'Producer'),(9802,947,6,'Original Music Composer'),(9802,738,3,'Executive Producer'),(9802,771,3,'Producer'),(9802,865,2,'Director'),(9802,892,1,'Director of Photography'),(9802,896,7,'Production Design'),(9802,3192,3,'Casting'),(9802,6581,5,'Editor'),(9802,5132,6,'Music Editor'),(9802,10118,9,'Stunt Coordinator'),(9802,13588,7,'Set Decoration'),(9802,42034,6,'Sound Re-Recording Mixer'),(9802,24049,4,'Screenplay'),(9802,24050,3,'Executive Producer'),(9802,57263,6,'Original Music Composer'),(9802,57652,3,'Executive Producer'),(9802,59331,4,'Screenplay'),(9802,59332,4,'Screenplay'),(9802,59710,8,'Costume Design'),(9802,1206905,8,'Costume Supervisor'),(9802,1347755,6,'Music Editor'),(9802,1378168,6,'Supervising Sound Editor'),(9802,1378171,6,'Sound Re-Recording Mixer'),(9802,1378240,1,'Still Photographer'),(9802,1400738,2,'Script Supervisor'),(9802,1447503,10,'Modeling'),(9802,1531867,2,'Script Supervisor'),(9802,1547897,6,'Sound mixer'),(950,5714,2,'Director'),(950,5719,3,'Producer'),(950,11098,6,'Original Music Composer'),(950,15768,5,'Editor'),(950,239,4,'Screenplay'),(950,15769,10,'Visual Effects'),(950,15770,10,'Visual Effects'),(950,1217416,4,'Storyboard'),(950,1447310,9,'Post Production Supervisor'),(950,1453938,11,'Lighting Artist'),(1824,356,1,'Director of Photography'),(1824,322,3,'Producer'),(1824,371,1,'First Assistant Camera'),(1824,12865,5,'Editor'),(1824,1588,3,'Producer'),(1824,2528,7,'Assistant Art Director'),(1824,3276,3,'Casting'),(1824,4064,9,'Stunt Coordinator'),(1824,4769,3,'Executive Producer'),(1824,4769,3,'Unit Production Manager'),(1824,6737,3,'Executive Producer'),(1824,8274,7,'Set Decoration'),(1824,9967,9,'Second Unit'),(1824,9423,6,'Supervising Sound Editor'),(1824,15018,6,'Music Editor'),(1824,13426,2,'Director'),(1824,19294,4,'Screenplay'),(1824,20822,6,'Original Music Composer'),(1824,20821,3,'Producer'),(1824,20826,8,'Costume Design'),(1824,32903,7,'Production Design'),(1824,46592,7,'Art Direction'),(1824,113097,6,'Supervising Sound Effects Editor'),(1824,71130,6,'Music Supervisor'),(1824,113674,10,'Visual Effects Producer'),(1824,66119,3,'Co-Producer'),(1824,92352,7,'Set Dresser'),(1824,71079,3,'Executive Producer'),(1824,73916,6,'ADR Supervisor'),(1824,74800,1,'Key Grip'),(1824,75377,8,'Makeup Artist'),(1824,75380,6,'Boom Operator'),(1824,106053,9,'Propmaker'),(1824,139686,7,'Conceptual Illustrator'),(1824,552351,8,'Hair Department Head'),(1824,963297,3,'Associate Producer'),(1824,1108768,1,'Additional Camera'),(1824,1125158,3,'Production Supervisor'),(1824,1172441,7,'Set Designer'),(1824,1191540,11,'Electrician'),(1824,1235227,7,'Location Scout'),(1824,1321589,8,'Costume Supervisor'),(1824,1327384,3,'Co-Producer'),(1824,1339815,8,'Key Makeup Artist'),(1824,1357068,8,'Set Costumer'),(1824,1376570,9,'Craft Service'),(1824,1377131,1,'Camera Operator'),(1824,1393443,5,'Dialogue Editor'),(1824,1397737,9,'Transportation Coordinator'),(1824,1399071,1,'Aerial Director of Photography'),(1824,1405385,10,'Visual Effects Supervisor'),(1824,1406105,9,'Visual Effects Editor'),(1824,1407233,8,'Assistant Costume Designer'),(1824,1409837,9,'Unit Publicist'),(1824,1415007,6,'ADR Editor'),(1824,1416898,6,'Foley Editor'),(1824,1424160,6,'Sound Effects Editor'),(1824,1425917,9,'Digital Effects Supervisor'),(1824,1447582,7,'Leadman'),(1824,1451296,4,'Storyboard'),(1824,1451615,3,'Casting Associate'),(1824,1451639,7,'Art Department Coordinator'),(1824,1451653,6,'Sound Effects Editor'),(1824,1453185,1,'Still Photographer'),(1824,1457729,2,'Script Supervisor'),(1824,1458988,8,'Makeup Department Head'),(1824,1531874,8,'Makeup Artist'),(1824,1532691,7,'Construction Coordinator'),(1824,1533052,8,'Hairstylist'),(1824,1538435,6,'Music Editor'),(1824,1546084,8,'Assistant Costume Designer'),(1824,1546085,8,'Key Hair Stylist'),(1824,1546086,6,'Production Sound Mixer'),(1824,1546088,3,'Production Coordinator'),(1824,1548665,7,'Greensman'),(1824,1548668,7,'Painter'),(1824,1548670,7,'Standby Painter'),(1824,1548672,1,'Grip'),(1824,1548676,9,'Carpenter'),(1824,1548677,9,'Driver'),(1824,1548678,9,'Property Master'),(1824,1548681,9,'Set Medic'),(1824,1548682,9,'Transportation Captain'),(1824,1548683,9,'Video Assist Operator'),(1824,1548684,5,'Color Timer'),(1824,1548685,11,'Lighting Technician'),(1824,1548686,11,'Rigging Grip'),(1824,1548687,3,'Location Manager'),(1824,1548688,3,'Production Accountant'),(1824,1548691,10,'Visual Effects Coordinator'),(1824,1548693,7,'Art Department Assistant'),(1824,1548694,9,'Sound Recordist'),(1824,1548695,9,'Software Engineer'),(1824,1548696,9,'Telecine Colorist'),(1824,1548697,2,'Assistant Director'),(1824,1548698,6,'Orchestrator'),(1824,1570241,6,'Assistant Sound Editor'),(1824,1622612,9,'Stunts'),(1824,1733126,7,'Title Designer'),(1824,1733128,1,'Camera Loader'),(1824,1733129,1,'Dolly Grip'),(1824,1733130,2,'First Assistant Director'),(1824,1733131,2,'Second Assistant Director'),(1824,1733132,5,'Negative Cutter'),(1824,1733133,3,'Assistant Production Coordinator'),(1824,1733134,3,'Casting Assistant'),(1824,1733136,6,'Musician'),(1824,1733137,6,'Utility Sound'),(2976,5329,7,'Production Design'),(2976,6192,8,'Costume Design'),(2976,11699,1,'Director of Photography'),(2976,10367,4,'Screenplay'),(2976,11708,4,'Screenplay'),(2976,29214,9,'Associate Choreographer'),(2976,17219,3,'Executive Producer'),(2976,20739,2,'Director'),(2976,29205,3,'Unit Production Manager'),(2976,29206,3,'Unit Production Manager'),(2976,29207,3,'Producer'),(2976,29208,3,'Executive In Charge Of Production'),(2976,29210,3,'Executive In Charge Of Post Production'),(2976,29211,9,'Post Production Supervisor'),(2976,29213,2,'Second Assistant Director'),(2976,29215,9,'Associate Choreographer'),(2976,29216,9,'Associate Choreographer'),(2976,29217,9,'Makeup Effects'),(2976,29218,8,'Hairstylist'),(2976,29219,7,'Art Direction'),(2976,1389139,1,'Still Photographer'),(2976,1484538,2,'Script Supervisor'),(2976,1647465,9,'Executive in Charge of Finance'),(332,4759,2,'Director'),(332,11011,4,'Screenplay'),(332,26978,4,'Story'),(332,1236253,4,'Screenplay'),(332,1236253,4,'Story'),(332,1447497,10,'Visual Effects'),(332,1813644,9,'Stunts'),(594,491,6,'Original Music Composer'),(594,495,3,'Casting'),(594,373,6,'Sound Effects Editor'),(594,488,2,'Director'),(594,488,3,'Producer'),(594,492,1,'Director of Photography'),(594,493,5,'Editor'),(594,1303,7,'Production Design'),(594,2212,3,'Producer'),(594,2689,4,'Screenplay'),(594,6997,3,'Casting'),(594,8706,7,'Set Decoration'),(594,7418,8,'Costume Design'),(594,8701,3,'Producer'),(594,8685,3,'Executive Producer'),(594,8685,4,'Writer'),(594,8686,4,'Screenplay'),(594,8702,3,'Executive Producer'),(594,8703,3,'Executive Producer'),(594,8704,7,'Art Direction'),(594,8705,7,'Art Direction'),(594,8707,8,'Costume Design'),(594,8708,6,'Supervising Sound Editor'),(594,9971,6,'Supervising Sound Editor'),(594,14763,8,'Makeup Artist'),(594,14526,8,'Makeup Artist'),(594,32355,8,'Makeup Artist'),(594,32883,8,'Makeup Artist'),(594,58363,6,'Sound Effects Editor'),(594,52193,6,'ADR & Dubbing'),(594,113045,6,'Foley'),(594,113055,5,'Dialogue Editor'),(594,113090,6,'Foley'),(594,69586,6,'Sound Effects Editor'),(594,75378,8,'Key Hair Stylist'),(594,93258,10,'Special Effects Supervisor'),(594,555329,8,'Makeup Artist'),(594,1032536,10,'Visual Effects Supervisor'),(594,1172443,1,'Still Photographer'),(594,1212071,3,'Casting Associate'),(594,1255687,9,'Choreographer'),(594,1319136,8,'Makeup Artist'),(594,1322089,8,'Costume Supervisor'),(594,1323090,8,'Makeup Department Head'),(594,1327842,5,'First Assistant Editor'),(594,1341865,2,'Script Supervisor'),(594,1347761,2,'Script Supervisor'),(594,1377215,9,'Property Master'),(594,1377228,1,'Steadicam Operator'),(594,1391591,1,'Camera Operator'),(594,1394740,7,'Art Department Coordinator'),(594,1395463,1,'Camera Operator'),(594,1403537,10,'Visual Effects Producer'),(594,1404306,8,'Hair Department Head'),(594,1406789,6,'Music Editor'),(594,1410149,8,'Hairstylist'),(594,1425343,6,'ADR & Dubbing'),(594,1435576,8,'Hairstylist'),(594,1442148,10,'Visual Effects Supervisor'),(594,1476175,1,'First Assistant Camera'),(594,1481282,7,'Art Department Coordinator'),(594,1512745,11,'Rigging Gaffer'),(594,1544670,5,'First Assistant Editor'),(594,1549274,8,'Key Hair Stylist'),(594,1551102,9,'Property Master'),(594,1551103,11,'Rigging Gaffer'),(594,1551104,11,'Rigging Gaffer'),(594,1551109,5,'Digital Intermediate'),(6538,31,3,'Producer'),(6538,1213,6,'Original Music Composer'),(6538,4183,3,'Executive Producer'),(6538,5342,2,'Director'),(6538,5582,1,'Director of Photography'),(6538,6491,5,'Editor'),(6538,6492,5,'Editor'),(6538,8885,8,'Costume Design'),(6538,13520,4,'Screenplay'),(6538,27098,3,'Producer'),(1125,495,3,'Casting'),(1125,555,7,'Set Decoration'),(1125,8703,3,'Executive Producer'),(1125,9020,3,'Producer'),(1125,9439,6,'Foley'),(1125,9440,6,'Foley'),(1125,10685,3,'Producer'),(1125,15557,2,'Director'),(1125,15557,4,'Screenplay'),(1125,15558,4,'Musical'),(1125,15559,1,'Director of Photography'),(1125,15560,5,'Editor'),(1125,15571,6,'Original Music Composer'),(1125,11002,7,'Production Design'),(1125,15572,7,'Supervising Art Director'),(1125,15573,8,'Costume Design'),(1125,62723,5,'Digital Intermediate'),(1125,83088,5,'Dialogue Editor'),(1125,117867,6,'Sound Effects Editor'),(1125,168214,8,'Makeup Artist'),(1125,960696,9,'Second Unit Cinematographer'),(1125,963705,8,'Assistant Costume Designer'),(1125,1073307,5,'First Assistant Editor'),(1125,1196351,3,'Casting Associate'),(1125,1212071,3,'Casting Associate'),(1125,1299130,11,'Gaffer'),(1125,1322017,7,'Assistant Art Director'),(1125,1328407,8,'Costume Supervisor'),(1125,1335122,6,'Sound Effects Editor'),(1125,1340773,2,'Script Supervisor'),(1125,1347321,9,'Choreographer'),(1125,1347763,1,'Camera Operator'),(1125,1355532,2,'Script Supervisor'),(1125,1378162,7,'Construction Coordinator'),(1125,1378246,8,'Set Costumer'),(1125,1389127,7,'Assistant Art Director'),(1125,1389139,1,'Still Photographer'),(1125,1390518,7,'Set Designer'),(1125,1391571,6,'Sound Re-Recording Mixer'),(1125,1394953,5,'Digital Intermediate'),(1125,1399141,6,'Sound Re-Recording Mixer'),(1125,1400066,7,'Set Designer'),(1125,1400535,1,'Steadicam Operator'),(1125,1400553,7,'Set Designer'),(1125,1403408,10,'Visual Effects Producer'),(1125,1404763,5,'Dialogue Editor'),(1125,1406080,8,'Key Hair Stylist'),(1125,1406130,8,'Set Costumer'),(1125,1408278,8,'Hairstylist'),(1125,1409245,5,'Digital Intermediate'),(1125,1412186,8,'Makeup Artist'),(1125,1412189,8,'Hairstylist'),(1125,1412213,9,'Choreographer'),(1125,1412699,6,'Sound Effects Editor'),(1125,1413090,9,'Property Master'),(1125,1424894,8,'Hair Department Head'),(1125,1425395,6,'Music Editor'),(1125,1428833,9,'Script'),(1125,1428855,6,'Sound Designer'),(1125,1428855,6,'Supervising Sound Editor'),(1125,1484536,3,'Casting'),(1125,1526464,8,'Makeup Department Head'),(1125,1526464,8,'Makeup Designer'),(1125,1532232,8,'Key Hair Stylist'),(1125,1533028,11,'Rigging Gaffer'),(1125,1536949,8,'Wigmaker'),(1125,1537206,8,'Hairstylist'),(1125,1537500,6,'Music Supervisor'),(1125,1546115,6,'Production Sound Mixer'),(1125,1549073,11,'Gaffer'),(1125,1550830,9,'Special Effects Coordinator'),(1125,1551514,7,'Art Department Coordinator'),(1125,1551515,10,'Visual Effects Supervisor'),(1125,1551516,11,'Gaffer'),(1125,1551517,11,'Gaffer'),(1125,1551518,1,'Additional Photography'),(1125,1551520,8,'Set Costumer'),(1125,1551521,6,'Music Editor'),(1125,1551522,9,'Associate Choreographer'),(1125,1551523,6,'ADR & Dubbing'),(1125,1551525,8,'Hairstylist'),(1125,1551528,8,'Key Hair Stylist'),(1125,1551530,8,'Makeup Artist'),(1125,1551531,8,'Makeup Artist'),(1125,1551532,5,'Digital Intermediate'),(1125,1559224,6,'Music Supervisor'),(4551,518,3,'Producer'),(4551,904,1,'Director of Photography'),(4551,2235,4,'Novel'),(4551,2235,3,'Executive Producer'),(4551,5381,3,'Producer'),(4551,5382,3,'Producer'),(4551,7068,5,'Editor'),(4551,7855,7,'Production Design'),(4551,11098,6,'Original Music Composer'),(4551,11508,7,'Art Direction'),(4551,8305,3,'Producer'),(4551,37932,2,'Director'),(4551,37932,3,'Executive Producer'),(4551,37933,4,'Screenplay'),(4551,38020,3,'Executive Producer'),(4551,38021,7,'Set Decoration'),(4551,38022,7,'Art Direction'),(4551,1119658,5,'First Assistant Editor'),(612,491,6,'Original Music Composer'),(612,27,4,'Screenplay'),(612,474,3,'Casting'),(612,488,2,'Director'),(612,488,3,'Producer'),(612,489,3,'Producer'),(612,490,3,'Producer'),(612,492,1,'Director of Photography'),(612,493,5,'Editor'),(612,496,7,'Production Design'),(612,498,8,'Costume Design'),(612,670,6,'Sound Designer'),(612,8795,7,'Art Direction'),(612,5664,3,'Producer'),(612,7764,6,'Sound Mixer'),(612,8794,7,'Art Direction'),(612,8780,4,'Screenplay'),(612,1031561,3,'Casting'),(612,1312252,3,'Casting'),(612,1327842,5,'Additional Editing'),(612,1338976,6,'Sound Mixer'),(612,1400906,6,'Sound Mixer'),(9567,8220,7,'Production Design'),(9567,8221,7,'Art Direction'),(9567,947,6,'Original Music Composer'),(9567,948,6,'Original Music Composer'),(9567,5914,3,'Casting'),(9567,3987,5,'Editor'),(9567,3989,8,'Costume Design'),(9567,5132,6,'Supervising Music Editor'),(9567,10631,10,'Special Effects Supervisor'),(9567,5545,2,'First Assistant Director'),(9567,9987,3,'Producer'),(9567,8281,7,'Assistant Art Director'),(9567,9493,8,'Costume Supervisor'),(9567,13223,5,'Color Timer'),(9567,36105,6,'Music Programmer'),(9567,17451,3,'Associate Producer'),(9567,21003,3,'Associate Producer'),(9567,20842,3,'Producer'),(9567,18265,1,'Director of Photography'),(9567,19666,4,'Screenplay'),(9567,20406,1,'Aerial Director of Photography'),(9567,20907,2,'Director'),(9567,18311,3,'Executive Producer'),(9567,21984,7,'Set Decoration'),(9567,31143,3,'Producer'),(9567,46592,7,'Set Designer'),(9567,53636,3,'Casting Associate'),(9567,57988,4,'Screenplay'),(9567,58135,5,'Editor'),(9567,83074,9,'Armorer'),(9567,75653,7,'Set Designer'),(9567,84049,9,'Stunts'),(9567,86907,9,'Post Production Supervisor'),(9567,91941,9,'Unit Publicist'),(9567,117867,6,'Supervising Sound Editor'),(9567,118945,6,'ADR Editor'),(9567,126409,6,'Musician'),(9567,144303,9,'Utility Stunts'),(9567,162532,7,'Assistant Art Director'),(9567,230436,3,'ADR Voice Casting'),(9567,932186,6,'Orchestrator'),(9567,958691,7,'Set Designer'),(9567,970529,10,'Visual Effects Producer'),(9567,1050930,5,'Dialogue Editor'),(9567,1117747,3,'Production Coordinator'),(9567,1129481,11,'Best Boy Electric'),(9567,1255970,3,'Co-Producer'),(9567,1255970,3,'Unit Production Manager'),(9567,1316292,8,'Prosthetic Makeup Artist'),(9567,1329417,8,'Makeup Department Head'),(9567,1335078,6,'Foley Editor'),(9567,1341801,2,'Script Supervisor'),(9567,1378217,9,'Property Master'),(9567,1378218,7,'Greensman'),(9567,1378219,9,'Property Master'),(9567,1378220,7,'Leadman'),(9567,1378221,7,'Art Department Coordinator'),(9567,1378222,7,'Construction Coordinator'),(9567,1378223,7,'Greensman'),(9567,1378224,7,'Set Designer'),(9567,1378225,5,'Dialogue Editor'),(9567,1378226,6,'Sound Re-Recording Mixer'),(9567,1378227,6,'Sound Re-Recording Mixer'),(9567,1378228,6,'Sound Re-Recording Mixer'),(9567,1378229,6,'Boom Operator'),(9567,1378231,6,'Sound Effects Editor'),(9567,1378231,6,'Sound Designer'),(9567,1378236,10,'Visual Effects Supervisor'),(9567,1378237,9,'Visual Effects Editor'),(9567,1378239,9,'Stunt Coordinator'),(9567,1378239,9,'Second Unit Cinematographer'),(9567,1378240,1,'Still Photographer'),(9567,1378241,1,'Camera Operator'),(9567,1378242,1,'Camera Operator'),(9567,1378244,8,'Key Set Costumer'),(9567,1378246,8,'Set Costumer'),(9567,1378247,6,'Music Editor'),(9567,1378248,9,'Transportation Coordinator'),(9567,1378248,9,'Aerial Coordinator'),(9567,1378249,9,'Translator'),(9567,1378250,9,'Studio Teachers'),(9567,1399899,1,'Camera Technician'),(9567,1408278,8,'Hairstylist'),(9567,1411259,8,'Key Makeup Artist'),(9567,1414488,8,'Key Hair Stylist'),(9567,1432024,11,'Rigging Gaffer'),(9567,1432921,9,'Additional Music'),(9567,1435657,11,'Gaffer'),(9567,1451245,1,'Camera Department Manager'),(9567,1458084,9,'Makeup Effects'),(9567,1463298,7,'Construction Foreman'),(9567,1463803,8,'Tailor'),(9567,1464344,3,'Executive In Charge Of Post Production'),(9567,1472332,3,'Associate Producer'),(9567,1480687,3,'Researcher'),(9567,1509364,6,'ADR Supervisor'),(9567,1536553,10,'Visual Effects Coordinator'),(9567,1546088,3,'Assistant Production Coordinator'),(9567,1546115,6,'Production Sound Mixer'),(9567,1548694,9,'Sound Recordist'),(9567,1548695,9,'Software Engineer'),(9567,1550240,1,'Key Grip'),(9567,1551487,5,'First Assistant Editor'),(9567,1552506,1,'First Assistant Camera'),(9567,1566301,6,'Scoring Mixer'),(9567,1583828,4,'Storyboard'),(9567,1600621,9,'Security'),(9567,1614149,7,'Art Department Assistant'),(9567,1614160,1,'Additional Photography'),(9567,1614171,8,'Makeup Artist'),(9567,1614174,9,'Driver'),(9567,1614177,9,'Projection'),(9567,1614178,9,'Propmaker'),(9567,1614181,9,'Set Medic'),(9567,1614182,9,'Set Production Assistant'),(9567,1614183,9,'Stand In'),(9567,1614184,9,'Transportation Captain'),(9567,1614185,9,'Transportation Co-Captain'),(9567,1614187,11,'Electrician'),(9567,1614188,11,'Rigging Grip'),(9567,1614189,3,'Location Manager'),(9567,1614190,3,'Production Accountant'),(9567,1614193,6,'Assistant Sound Editor'),(9567,1614199,10,'Digital Compositors'),(9567,1622113,11,'Chief Lighting Technician'),(9567,1680472,10,'Visual Effects'),(9567,1685460,9,'Pilot'),(9567,1733132,5,'Negative Cutter'),(9567,1740449,2,'Second Assistant Director'),(9567,1754774,6,'Playback Singer'),(9567,1855089,7,'Assistant Property Master'),(9567,1855090,7,'Set Dresser'),(9567,1855091,1,'Dolly Grip'),(9567,1855093,1,'Grip'),(9567,1855095,8,'Ager/Dyer'),(9567,1855096,8,'Key Costumer'),(9567,1855097,9,'Animal Coordinator'),(9567,1855098,3,'Casting Assistant'),(2539,3388,2,'Director'),(2539,3388,4,'Author'),(2539,3388,3,'Producer'),(2539,947,6,'Original Music Composer'),(2539,6410,3,'Co-Producer'),(2539,5914,3,'Casting'),(2539,2702,1,'Director of Photography'),(2539,3175,5,'Editor'),(2539,3175,3,'Co-Producer'),(2539,5167,7,'Production Design'),(2539,6187,3,'Co-Producer'),(2539,6187,2,'Assistant Director'),(2539,19157,7,'Set Decoration'),(2539,8762,6,'Sound Effects Editor'),(2539,9043,8,'Costume Design'),(2539,40795,9,'Unit Publicist'),(2539,11712,3,'Executive Producer'),(2539,14192,8,'Makeup Designer'),(2539,13189,5,'Color Timer'),(2539,19971,8,'Costume Design'),(2539,17699,9,'Second Unit Cinematographer'),(2539,20228,6,'Foley'),(2539,22486,7,'Property Master'),(2539,25906,5,'Editor'),(2539,53636,3,'Casting Associate'),(2539,57572,3,'Producer'),(2539,63935,9,'Stunt Coordinator'),(2539,67994,3,'Producer'),(2539,92302,7,'Art Direction'),(2539,83082,6,'Boom Operator'),(2539,91059,3,'Unit Production Manager'),(2539,108146,1,'First Assistant Camera'),(2539,136008,6,'ADR & Dubbing'),(2539,229801,8,'Key Makeup Artist'),(2539,960380,3,'Casting'),(2539,1118709,10,'Visual Effects Producer'),(2539,1187337,3,'Production Office Coordinator'),(2539,1245707,9,'Driver'),(2539,1291698,3,'Researcher'),(2539,1323077,8,'Costume Supervisor'),(2539,1354410,3,'Location Manager'),(2539,1355526,7,'Leadman'),(2539,1357059,5,'Dialogue Editor'),(2539,1367672,11,'Gaffer'),(2539,1368884,6,'Music Editor'),(2539,1369047,2,'Script Coordinator'),(2539,1377228,1,'Camera Operator'),(2539,1378833,7,'Location Scout'),(2539,1388849,7,'Construction Coordinator'),(2539,1392247,1,'Still Photographer'),(2539,1395290,2,'Script Supervisor'),(2539,1401593,1,'Aerial Director of Photography'),(2539,1407229,1,'Steadicam Operator'),(2539,1411637,9,'Additional Music'),(2539,1413161,7,'Set Designer'),(2539,1415622,9,'Visual Effects Editor'),(2539,1418487,5,'Digital Intermediate'),(2539,1428582,8,'Hair Department Head'),(2539,1429255,9,'Studio Teachers'),(2539,1432024,11,'Rigging Gaffer'),(2539,1435660,5,'First Assistant Editor'),(2539,1441270,6,'Assistant Sound Editor'),(2539,1444923,11,'Electrician'),(2539,1452614,8,'Key Hair Stylist'),(2539,1463663,9,'Stunts'),(2539,1463843,9,'Transportation Captain'),(2539,1470336,3,'Executive Producer'),(2539,1470337,3,'Associate Producer'),(2539,1470338,3,'Casting'),(2539,1473448,9,'Loader'),(2539,1538705,6,'Sound Mixer'),(2539,1546458,6,'Supervising Sound Editor'),(2539,1546808,7,'Art Department Coordinator'),(2539,1548668,7,'Painter'),(2539,1551163,11,'Rigging Grip'),(2539,1551515,10,'Visual Effects Supervisor'),(2539,1551520,8,'Set Costumer'),(2539,1554041,6,'Orchestrator'),(2539,1558701,3,'Production Coordinator'),(2539,1559586,6,'Music Supervisor'),(2539,1569559,9,'Digital Effects Supervisor'),(2539,1570779,5,'Editorial Coordinator'),(2539,1577483,9,'Score Engineer'),(2539,1585177,9,'Video Assist Operator'),(2539,1585185,11,'Best Boy Electric'),(2539,1592431,9,'Dialect Coach'),(2539,1594963,7,'Art Department Assistant'),(2539,1600114,6,'Scoring Mixer'),(2539,1604955,8,'Assistant Costume Designer'),(2539,1614190,3,'Production Accountant'),(2539,1634231,1,'Grip'),(2539,1636423,8,'Makeup Artist'),(2539,1699137,9,'Craft Service'),(2539,1733530,9,'Transportation Coordinator'),(2539,1752973,4,'Storyboard'),(2539,1763243,7,'Construction Foreman'),(2539,1763245,7,'Greensman'),(2539,1763697,8,'Set Dressing Artist'),(2539,1763698,9,'Choreographer'),(2539,1763700,9,'Propmaker'),(2539,1763701,9,'Scenic Artist'),(2539,1763764,9,'Set Medic'),(2539,1763765,9,'Set Production Assistant'),(2539,1763766,9,'Software Engineer'),(2539,1763767,9,'Stand In'),(2539,1763771,11,'Lighting Technician'),(2539,1763776,10,'Digital Compositors'),(2539,1763778,9,'Translator'),(2539,1767194,8,'Hairstylist'),(9297,24,3,'Executive Producer'),(9297,30,3,'Producer'),(9297,488,3,'Executive Producer'),(9297,1324,3,'Casting'),(9297,4953,7,'Production Design'),(9297,9434,10,'Visual Effects'),(9297,14192,8,'Makeup Artist'),(9297,14341,7,'Art Direction'),(9297,19310,8,'Costume Design'),(9297,23779,3,'Producer'),(9297,23785,8,'Makeup Artist'),(9297,42265,3,'Line Producer'),(9297,34892,4,'Screenplay'),(9297,40545,1,'Director of Photography'),(9297,41898,7,'Set Decoration'),(9297,42360,3,'Casting'),(9297,44029,5,'Editor'),(9297,57193,2,'Director'),(9297,57194,4,'Screenplay'),(9297,57195,4,'Screenplay'),(9297,57196,6,'Original Music Composer'),(9297,82152,5,'Editor'),(9297,95747,9,'Stunts'),(9297,93258,9,'Special Effects'),(9297,94534,3,'Executive Producer'),(9297,937231,3,'Associate Producer'),(9297,937235,10,'Visual Development'),(9297,961609,7,'Art Direction'),(9297,1217686,10,'Animation'),(9297,1330567,8,'Costume Supervisor'),(9297,1354804,10,'Animation'),(9297,1400371,9,'Stunts'),(9297,1423865,1,'Camera Operator'),(9297,1425338,1,'Camera Operator'),(9297,1435377,2,'Layout'),(9297,1439726,10,'Animation'),(9297,1442214,10,'Animation'),(9297,1447474,10,'Animation'),(9297,1452643,8,'Hair Setup'),(9297,1453550,7,'Conceptual Design'),(9297,1454030,10,'Animation'),(9297,1454031,10,'Animation'),(9297,1455459,10,'Visual Effects'),(9297,1455461,11,'Lighting Artist'),(9297,1455542,10,'Animation'),(9297,1455600,10,'Animation'),(9297,1455604,10,'Animation'),(9297,1460488,7,'Art Department Manager'),(9297,1462665,2,'Layout'),(9297,1462666,2,'Layout'),(9297,1462667,8,'Hairstylist'),(9297,1462668,8,'Makeup Artist'),(9297,1462669,3,'Associate Producer'),(9297,1462670,9,'Motion Capture Artist'),(9297,1462671,9,'Motion Capture Artist'),(9297,1462672,10,'Animation'),(9297,1462673,9,'Stunts'),(9297,1462674,9,'Stunts'),(9297,1462675,9,'Stunt Coordinator'),(9297,1462676,10,'Animation'),(9297,1462677,10,'Animation'),(9297,1462678,10,'Animation'),(9297,1462679,10,'Animation'),(9297,1462680,10,'Animation'),(9297,1462681,10,'Animation'),(9297,1462682,10,'Animation'),(9297,1462683,10,'Animation Supervisor'),(9297,1462684,10,'Animation'),(9297,1462685,10,'Animation Manager'),(9297,1462686,10,'Animation'),(9297,1462687,10,'Animation'),(9297,1462688,10,'Animation'),(9297,1462689,2,'Layout'),(9297,1462690,10,'Animation'),(9297,1462691,10,'Animation'),(9297,1462692,10,'Animation'),(9297,1462693,10,'Animation'),(9297,1462694,9,'Technical Supervisor'),(9297,1462695,10,'Animation'),(9297,1462696,10,'Animation'),(9297,1462697,8,'Costume Design'),(9297,1462698,8,'Costume Design'),(9297,1462699,1,'Camera Operator'),(9297,1462700,9,'Video Assist Operator'),(9297,1462701,1,'Camera Operator'),(9297,1462702,1,'Camera Operator'),(9297,1462703,1,'Camera Operator'),(9297,1462704,1,'Camera Operator'),(9297,1462705,9,'Visual Effects Editor'),(9297,1462707,11,'Lighting Technician'),(9297,1462706,11,'Lighting Technician'),(9297,1462708,9,'Technical Supervisor'),(9297,1462709,11,'Lighting Technician'),(3172,3188,7,'Production Design'),(3172,1484,3,'Casting'),(3172,8246,2,'Director'),(3172,8246,3,'Producer'),(3172,5166,5,'Editor'),(3172,19155,6,'Original Music Composer'),(3172,10956,2,'First Assistant Director'),(3172,7857,7,'Set Decoration'),(3172,8158,6,'ADR Editor'),(3172,8164,6,'Foley'),(3172,9255,8,'Costume Design'),(3172,10398,3,'Associate Producer'),(3172,11508,7,'Art Direction'),(3172,12948,9,'Second Unit'),(3172,12948,9,'Stunt Coordinator'),(3172,15893,6,'Sound Effects Editor'),(3172,11099,1,'Director of Photography'),(3172,16731,3,'Producer'),(3172,16731,3,'Executive Producer'),(3172,21003,3,'Associate Producer'),(3172,20842,3,'Producer'),(3172,21220,3,'Executive Producer'),(3172,21478,3,'Producer'),(3172,30394,8,'Hairstylist'),(3172,15795,4,'Screenplay'),(3172,15795,3,'Executive Producer'),(3172,31708,3,'Producer'),(3172,31709,3,'Producer'),(3172,31710,3,'Producer'),(3172,41677,3,'Casting Associate'),(3172,57465,3,'Executive Producer'),(3172,60086,9,'Post Production Supervisor'),(3172,60569,3,'Location Manager'),(3172,91932,9,'Pilot'),(3172,95142,8,'Makeup Artist'),(3172,122607,9,'Dialect Coach'),(3172,138617,5,'Dialogue Editor'),(3172,958691,7,'Set Designer'),(3172,1096860,7,'Standby Painter'),(3172,1280435,9,'Special Effects Coordinator'),(3172,1299201,8,'Makeup Department Head'),(3172,1321940,9,'Transportation Coordinator'),(3172,1323092,8,'Costume Supervisor'),(3172,1327030,6,'Sound Re-Recording Mixer'),(3172,1338834,6,'Boom Operator'),(3172,1342254,11,'Chief Lighting Technician'),(3172,1355532,2,'Script Supervisor'),(3172,1378244,8,'Set Costumer'),(3172,1388862,9,'Property Master'),(3172,1400535,1,'Steadicam Operator'),(3172,1400733,1,'Aerial Director of Photography'),(3172,1400906,6,'Sound Designer'),(3172,1401758,7,'Construction Coordinator'),(3172,1403479,1,'First Assistant Camera'),(3172,1406090,7,'Leadman'),(3172,1408706,6,'Supervising Music Editor'),(3172,1408723,9,'Driver'),(3172,1409831,1,'Camera Operator'),(3172,1409837,9,'Unit Publicist'),(3172,1414886,6,'Foley Editor'),(3172,1417496,9,'Set Medic'),(3172,1423747,7,'Art Department Coordinator'),(3172,1429549,5,'Color Timer'),(3172,1445828,9,'Set Production Assistant'),(3172,1455028,3,'Production Supervisor'),(3172,1470937,3,'Co-Producer'),(3172,1470938,3,'Co-Producer'),(3172,1522736,7,'Set Decoration Buyer'),(3172,1524757,8,'Hair Department Head'),(3172,1536000,11,'Lighting Technician'),(3172,1536972,1,'Additional Camera'),(3172,1538449,9,'Craft Service'),(3172,1548698,6,'Conductor'),(3172,1552882,6,'Supervising Sound Editor'),(3172,1553235,7,'Construction Foreman'),(3172,1553237,7,'Greensman'),(3172,1553239,7,'Painter'),(3172,1553244,1,'Key Grip'),(3172,1553245,1,'Still Photographer'),(3172,1553246,8,'Key Hair Stylist'),(3172,1553247,9,'Additional Music'),(3172,1553248,9,'Carpenter'),(3172,1553251,9,'Executive Music Producer'),(3172,1553252,1,'Camera Loader'),(3172,1553253,9,'Picture Car Coordinator'),(3172,1553254,9,'Propmaker'),(3172,1553255,9,'Scenic Artist'),(3172,1553257,9,'Stand In'),(3172,1553258,9,'Stunts'),(3172,1553259,9,'Transportation Captain'),(3172,1553260,5,'First Assistant Editor'),(3172,1553261,11,'Electrician'),(3172,1553262,11,'Rigging Grip'),(3172,1553263,3,'Assistant Production Coordinator'),(3172,1553264,6,'Music Editor'),(3172,1553265,6,'Production Sound Mixer'),(3172,1553268,10,'Visual Effects'),(3172,1553269,4,'Storyboard'),(3172,1738161,7,'Assistant Property Master'),(3172,1738162,7,'Set Dresser'),(3172,1738163,1,'Dolly Grip'),(3172,1738164,1,'Grip'),(3172,1738165,6,'Musician'),(3172,1738166,6,'Utility Sound'),(6520,154,5,'Editor'),(6520,668,3,'Casting'),(6520,933,4,'Story'),(6520,933,4,'Screenplay'),(6520,1760,6,'Original Music Composer'),(6520,2723,1,'Director of Photography'),(6520,3415,2,'Director'),(6520,3415,3,'Producer'),(6520,12681,3,'Executive Producer'),(6520,13321,7,'Production Design'),(6520,18350,3,'Producer'),(6520,25455,3,'Executive Producer'),(6520,52872,4,'Story'),(6520,52873,4,'Story'),(6520,60097,3,'Executive Producer'),(6520,1122033,3,'Producer'),(1439,2545,3,'Producer'),(1439,1528,6,'Original Music Composer'),(1439,2019,4,'Screenplay'),(1439,2020,4,'Screenplay'),(1439,3311,3,'Casting'),(1439,5060,7,'Set Decoration'),(1439,8750,1,'Director of Photography'),(1439,17162,3,'Producer'),(1439,17164,5,'Editor'),(1439,17165,7,'Production Design'),(1439,17166,8,'Costume Design'),(1439,17167,2,'Director'),(1439,17168,4,'Novel'),(1439,17169,6,'Original Music Composer'),(1439,1235306,3,'Unit Production Manager'),(2026,62,3,'Producer'),(2026,1324,3,'Casting'),(2026,2949,6,'Original Music Composer'),(2026,4232,3,'Producer'),(2026,4182,3,'Executive Producer'),(2026,6048,3,'Producer'),(2026,13017,3,'Executive Producer'),(2026,21003,3,'Associate Producer'),(2026,20842,3,'Producer'),(2026,36624,8,'Costume Design'),(2026,20840,4,'Screenplay'),(2026,20841,4,'Novel'),(2026,20844,1,'Director of Photography'),(2026,20845,5,'Editor'),(2026,20846,5,'Editor'),(2026,21220,3,'Co-Producer'),(2026,42360,3,'Casting'),(2026,51451,3,'Executive Producer'),(2026,51452,3,'Executive Producer'),(2026,61046,3,'Co-Producer'),(2026,61049,3,'Co-Producer'),(2026,61050,3,'Co-Producer'),(2026,59704,3,'Co-Producer'),(2026,1011158,2,'Director'),(7450,900,6,'Sound Designer'),(7450,900,6,'Sound Re-Recording Mixer'),(7450,1300,4,'Screenplay'),(7450,5912,6,'Original Music Composer'),(7450,6209,8,'Costume Design'),(7450,12881,2,'Director'),(7450,12881,3,'Producer'),(7450,12891,4,'Screenplay'),(7450,13596,3,'Producer'),(7450,45702,5,'Editor'),(7450,42262,6,'Music Supervisor'),(7450,28241,6,'Original Music Composer'),(7450,40345,2,'Director'),(7450,40345,3,'Producer'),(7450,53344,5,'Editor'),(7450,57437,4,'Story'),(7450,33885,5,'Editor'),(7450,60270,7,'Production Design'),(7450,71536,6,'Supervising Sound Editor'),(7450,95842,6,'Music Editor'),(7450,141462,4,'Story'),(7450,1215761,4,'Screenplay'),(7450,1322149,3,'Casting'),(7450,1322150,7,'Art Direction'),(7450,1414886,6,'Sound Effects Editor'),(7450,1425978,6,'Sound Re-Recording Mixer'),(7450,1447377,10,'Animation'),(7450,1447426,9,'Visual Effects Editor'),(7450,1447594,10,'Animation'),(7450,1447599,10,'Visual Development'),(7450,1450364,2,'Layout'),(7450,1460462,10,'Animation'),(7450,1460472,10,'Animation'),(7450,1460481,2,'Layout'),(7450,1460548,10,'Animation'),(7450,1460644,9,'Visual Effects Editor'),(7450,1462810,10,'Animation'),(7450,1463183,9,'Compositors'),(7450,1463185,9,'Compositors'),(7450,1463190,9,'Compositors'),(7450,1463245,2,'Layout'),(7450,1463249,10,'Visual Development'),(9425,4014,2,'Director'),(9425,601,7,'Production Design'),(9425,1888,3,'Producer'),(9425,3961,5,'Editor'),(9425,4700,3,'Producer'),(9425,6044,3,'Casting'),(9425,6800,1,'Director of Photography'),(9425,6881,8,'Costume Design'),(9425,7191,4,'Screenplay'),(9425,9493,8,'Costume Supervisor'),(9425,9639,7,'Art Direction'),(9425,14714,8,'Key Hair Stylist'),(9425,23352,8,'Makeup Artist'),(9425,30148,10,'Visual Effects Supervisor'),(9425,41898,7,'Set Decoration'),(9425,49285,6,'Original Music Composer'),(9425,57432,9,'Second Unit Cinematographer'),(9425,81731,7,'Assistant Art Director'),(9425,1142860,9,'Sequence Supervisor'),(9425,1196709,3,'Casting Associate'),(9425,1316599,8,'Makeup Artist'),(9425,1319193,8,'Costume Supervisor'),(9425,1370916,2,'Script Supervisor'),(9425,1377134,8,'Set Costumer'),(9425,1389596,8,'Set Costumer'),(9425,1392911,10,'Visual Effects Supervisor'),(9425,1397846,10,'Visual Effects Supervisor'),(9425,1399876,1,'Still Photographer'),(9425,1403490,6,'Music Editor'),(9425,1408598,11,'Rigging Gaffer'),(9425,1409721,6,'Music Editor'),(9425,1421724,10,'Visual Effects Producer'),(9425,1421729,9,'Visual Effects Editor'),(9425,1422056,7,'Assistant Art Director'),(9425,1431053,10,'Visual Effects Coordinator'),(9425,1446682,10,'Visual Effects Producer'),(9425,1532606,9,'Armorer'),(9425,1538440,11,'Rigging Gaffer'),(9425,1550284,1,'Camera Operator'),(9425,1566830,9,'Armorer'),(9425,1566831,6,'Orchestrator'),(9425,1566832,1,'Camera Operator'),(9425,1566833,11,'Rigging Grip'),(9425,1566834,10,'Animation'),(9425,1566835,9,'Digital Effects Supervisor'),(9425,1566836,9,'Visual Effects Editor'),(9425,1566837,10,'Visual Effects Producer'),(9425,1566838,10,'Visual Effects Producer'),(9425,1566839,10,'Visual Effects Supervisor'),(9741,136,3,'Producer'),(9741,498,8,'Costume Design'),(9741,1213,6,'Original Music Composer'),(9741,1213,6,'Orchestrator'),(9741,1809,5,'Editor'),(9741,4148,7,'Set Decoration'),(9741,4504,3,'Executive Producer'),(9741,4507,3,'Executive Producer'),(9741,5664,3,'Producer'),(9741,5669,3,'Casting'),(9741,9624,9,'Stunt Coordinator'),(9741,11614,2,'Director'),(9741,11614,3,'Producer'),(9741,11614,4,'Writer'),(9741,11620,7,'Production Design'),(9741,11412,7,'Art Direction'),(9741,16732,1,'Director of Photography'),(9741,32492,8,'Key Hair Stylist'),(9741,53302,9,'In Memory Of'),(9741,59287,9,'Makeup Effects'),(9741,107372,9,'Makeup Effects'),(9741,91115,1,'Steadicam Operator'),(9741,136008,6,'ADR Supervisor'),(9741,142152,8,'Key Makeup Artist'),(9741,549995,1,'Dolly Grip'),(9741,958273,2,'Script Supervisor'),(9741,958493,2,'First Assistant Director'),(9741,1050930,6,'Dialogue Editor'),(9741,1077782,6,'Foley'),(9741,1299405,6,'Dialogue Editor'),(9741,1311507,10,'Special Effects Supervisor'),(9741,1323768,8,'Costume Supervisor'),(9741,1333980,7,'Property Master'),(9741,1341403,6,'Sound Designer'),(9741,1341404,6,'Foley'),(9741,1367662,7,'Leadman'),(9741,1378240,1,'Still Photographer'),(9741,1389568,7,'Construction Coordinator'),(9741,1389575,3,'Location Manager'),(9741,1407711,11,'Chief Lighting Technician'),(9741,1410583,1,'Underwater Director of Photography'),(9741,1417515,6,'Sound Effects Editor'),(9741,1427543,1,'Camera Operator'),(9741,1530327,6,'Orchestrator'),(9741,1534668,6,'Music Editor'),(9741,1546157,7,'Construction Foreman'),(9741,1546875,6,'Foley Editor'),(9741,1562588,6,'Boom Operator'),(9741,1573110,3,'Production Coordinator'),(9741,1674649,7,'Greensman'),(9741,1674650,1,'Key Grip'),(9741,1674651,8,'Tailor'),(9741,1711995,5,'First Assistant Editor'),(9741,1882259,10,'Visual Effects Coordinator'),(9741,1882262,8,'Tailor'),(9741,1882264,8,'Tailor'),(8688,508,4,'Screenplay'),(8688,508,4,'Story'),(8688,1150,2,'Director'),(8688,1150,3,'Producer'),(8688,1150,4,'Story'),(8688,1258,1,'Director of Photography'),(8688,1264,5,'Editor'),(8688,8704,7,'Art Direction'),(8688,9622,10,'Visual Effects Supervisor'),(8688,11382,6,'Original Music Composer'),(8688,11408,3,'Associate Producer'),(8688,15528,9,'Special Effects Coordinator'),(8688,21517,3,'Casting'),(8688,42264,10,'Visual Effects Producer'),(8688,32882,8,'Makeup Artist'),(8688,34540,9,'Stunt Coordinator'),(8688,57652,3,'Executive Producer'),(8688,60892,7,'Production Design'),(8688,73951,6,'Supervising Sound Editor'),(8688,92214,9,'Carpenter'),(8688,91834,9,'Stunts'),(8688,98101,2,'First Assistant Director'),(8688,238673,1,'Second Unit Director of Photography'),(8688,405004,6,'Sound Mixer'),(8688,961452,8,'Costume Design'),(8688,983118,1,'Steadicam Operator'),(8688,1204523,9,'Thanks'),(8688,1248029,9,'Stand In'),(8688,1280313,5,'First Assistant Editor'),(8688,1322140,7,'Art Direction'),(8688,1324028,9,'Scenic Artist'),(8688,1330121,7,'Art Direction'),(8688,1372110,3,'Location Manager'),(8688,1384394,9,'Transportation Coordinator'),(8688,1391747,7,'Construction Coordinator'),(8688,1391759,7,'Property Master'),(8688,1395682,1,'Still Photographer'),(8688,1402034,11,'Lighting Technician'),(8688,1403501,5,'Dialogue Editor'),(8688,1403521,6,'Sound Effects Editor'),(8688,1404548,2,'Script Supervisor'),(8688,1406057,9,'Unit Publicist'),(8688,1407014,7,'Leadman'),(8688,1409694,7,'Set Decoration'),(8688,1427543,1,'Camera Operator'),(8688,1434615,6,'Dolby Consultant'),(8688,1440877,10,'Special Effects Supervisor'),(8688,1452705,7,'Assistant Art Director'),(8688,1458531,6,'Foley Editor'),(8688,1475003,3,'Associate Producer'),(8688,1521104,8,'Wigmaker'),(8688,1534640,8,'Hairstylist'),(8688,1536555,10,'Visual Effects Coordinator'),(8688,1545949,3,'Unit Production Manager'),(8688,1547379,6,'Music Editor'),(8688,1562248,5,'Color Timer'),(8688,1594914,1,'Key Grip'),(8688,1594983,1,'First Assistant Camera'),(8688,1648032,11,'Rigging Gaffer'),(8688,1684368,3,'Unit Manager'),(8688,1693497,9,'Transportation Captain'),(8688,1705318,3,'Production Manager'),(8688,1761401,9,'Driver'),(8688,1788352,7,'Art Department Assistant'),(8688,1788355,1,'Grip'),(8688,1788356,9,'Craft Service'),(8688,1788357,9,'Loader'),(8688,1788358,9,'Set Production Assistant'),(8688,1788359,9,'Transportation Co-Captain'),(8688,1788362,9,'Video Assist Operator'),(8688,1788363,9,'Visual Effects Editor'),(8688,1788365,11,'Best Boy Electric'),(8688,1788366,11,'Electrician'),(8688,1788367,11,'Gaffer'),(8688,1788368,3,'Casting Associate'),(8688,1788394,3,'Production Coordinator'),(8688,1788395,6,'Boom Operator'),(8688,1788396,10,'Digital Compositors'),(8676,36,1,'Director of Photography'),(8676,1322,8,'Costume Design'),(8676,1528,6,'Original Music Composer'),(8676,7790,7,'Art Direction'),(8676,14377,3,'Casting'),(8676,25142,5,'Editor'),(8676,17167,4,'Screenplay'),(8676,17167,2,'Director'),(8676,32349,7,'Production Design'),(8676,55985,5,'Editor'),(8676,68694,4,'Screenplay'),(8676,68694,4,'Story'),(8676,68695,4,'Screenplay'),(8676,68695,4,'Story'),(8676,58470,3,'Producer'),(8676,58471,3,'Executive Producer'),(8676,58471,3,'Unit Production Manager'),(8676,60935,3,'Casting'),(8676,65377,3,'Producer'),(8676,69739,3,'Executive Producer'),(8676,63515,3,'Producer'),(8676,962431,7,'Art Direction'),(8676,1104780,7,'Supervising Art Director'),(8676,1121617,3,'Co-Producer'),(8676,1412734,3,'Unit Production Manager'),(4349,531,6,'Original Music Composer'),(4349,638,3,'Producer'),(4349,1482,3,'Executive Producer'),(4349,2031,3,'Casting'),(4349,2532,3,'Casting'),(4349,5545,3,'Producer'),(4349,7146,7,'Production Design'),(4349,11653,3,'Executive Producer'),(4349,11001,5,'Editor'),(4349,18265,1,'Director of Photography'),(4349,18617,5,'Editor'),(4349,19282,3,'Producer'),(4349,36602,2,'Director'),(4349,36603,4,'Screenplay'),(4349,36605,8,'Costume Design'),(4349,55049,3,'Casting'),(4349,50769,3,'Executive Producer'),(4349,54419,3,'Executive Producer'),(4349,114408,3,'Executive Producer'),(4349,1128232,3,'Producer'),(4349,1128233,3,'Producer'),(4349,1457666,5,'Assistant Editor'),(9718,11409,1,'Director of Photography'),(9718,23659,4,'Author'),(9718,23659,3,'Executive Producer'),(9718,39993,6,'Original Music Composer'),(9718,41039,3,'Producer'),(9718,41079,5,'Editor'),(9718,54419,3,'Executive Producer'),(9718,55710,2,'Director'),(9718,55710,4,'Author'),(9718,55710,3,'Executive Producer'),(9718,68603,3,'Executive Producer'),(9718,61107,3,'Executive Producer'),(9718,61397,3,'Producer'),(9718,68605,3,'Executive Producer'),(197,606,8,'Costume Design'),(197,1729,6,'Original Music Composer'),(197,2460,4,'Author'),(197,2460,4,'Screenplay'),(197,2461,2,'Director'),(197,2461,3,'Producer'),(197,2483,1,'Director of Photography'),(197,2484,5,'Editor'),(197,2485,3,'Casting'),(197,2486,7,'Production Design'),(197,2487,3,'Producer'),(197,2488,3,'Producer'),(197,3193,6,'Sound Effects Editor'),(197,7204,7,'Art Direction'),(197,7791,7,'Set Decoration'),(197,8747,3,'Executive Producer'),(197,11298,8,'Makeup Artist'),(197,15878,7,'Assistant Art Director'),(197,14764,6,'Sound Effects Editor'),(197,14765,6,'Supervising Sound Editor'),(197,15327,7,'Art Direction'),(197,16736,6,'Supervising Sound Editor'),(197,19291,7,'Supervising Art Director'),(197,18889,9,'Stunt Coordinator'),(197,33103,8,'Makeup Artist'),(197,43161,3,'Production Manager'),(197,63371,3,'Location Manager'),(197,142285,3,'Producer'),(197,142325,9,'Stunt Coordinator'),(197,151305,3,'Producer'),(197,1065246,11,'Electrician'),(197,1118383,11,'Electrician'),(197,1249773,8,'Makeup Artist'),(197,1332515,1,'Camera Operator'),(197,1333239,7,'Art Direction'),(197,1333240,7,'Art Direction'),(197,1335181,9,'Property Master'),(197,1341856,6,'Foley'),(197,1346943,9,'Special Effects'),(197,1373728,11,'Gaffer'),(197,1386920,1,'Still Photographer'),(197,1394974,1,'Camera Operator'),(197,1399326,6,'Music Editor'),(197,1401599,3,'Location Manager'),(197,1404212,6,'First Assistant Sound Editor'),(197,1405243,9,'Transportation Captain'),(197,1405382,6,'Sound Effects Editor'),(197,1406826,6,'Sound Effects Editor'),(197,1406913,8,'Hairstylist'),(197,1406914,8,'Hairstylist'),(197,1406915,7,'Art Department Coordinator'),(197,1406916,7,'Assistant Art Director'),(197,1406917,7,'Assistant Art Director'),(197,1406918,7,'Assistant Art Director'),(197,1406920,7,'Sculptor'),(197,1406921,6,'ADR & Dubbing'),(197,1406922,10,'Visual Effects Supervisor'),(197,1406923,10,'Visual Effects Producer'),(197,1406925,5,'First Assistant Editor'),(197,1406926,9,'Transportation Coordinator'),(197,1406927,9,'Unit Publicist'),(197,1406929,3,'Location Manager'),(197,1406930,3,'Location Manager'),(197,1534134,9,'Stunts'),(197,1608539,9,'Transportation Captain'),(197,1638257,8,'Prosthetic Supervisor'),(197,1674567,5,'Color Timer'),(25,153,6,'Original Music Composer'),(25,39,2,'Director'),(25,39,3,'Producer'),(25,135,3,'Producer'),(25,136,3,'Producer'),(25,142,4,'Author'),(25,148,4,'Author'),(25,151,1,'Director of Photography'),(25,152,6,'Original Music Composer'),(25,154,5,'Editor'),(35,197,2,'Director'),(35,5741,4,'Screenplay'),(35,5741,3,'Producer'),(35,3388,4,'Screenplay'),(35,3388,3,'Producer'),(35,7088,4,'Screenplay'),(35,947,6,'Original Music Composer'),(35,5721,5,'Editor'),(35,239,4,'Screenplay'),(35,39056,10,'Animation'),(35,57572,3,'Producer'),(35,58178,4,'Screenplay'),(35,6056,4,'Screenplay'),(35,162931,4,'Screenplay'),(35,162931,3,'Producer'),(35,165791,4,'Screenplay'),(35,165810,4,'Screenplay'),(35,165810,3,'Producer'),(35,165828,4,'Screenplay'),(35,165843,4,'Screenplay'),(35,193307,3,'Producer'),(35,963556,4,'Screenplay'),(35,963557,7,'Art Direction'),(35,1128337,3,'Producer'),(35,1128338,3,'Producer'),(35,1128339,3,'Producer'),(35,1128340,3,'Producer'),(35,1128341,3,'Executive Producer'),(35,1219059,3,'Producer'),(35,1229003,10,'Animation Director'),(35,1376902,6,'Supervising Sound Editor'),(35,1395352,3,'Co-Producer'),(35,1400088,6,'Supervising Music Editor'),(35,1447310,9,'Post Production Supervisor'),(35,1447342,2,'Assistant Director'),(35,1447375,10,'Animation'),(35,1447376,10,'Animation'),(35,1447383,10,'Animation'),(35,1447450,2,'Layout'),(35,1447458,2,'Layout'),(35,1447459,2,'Layout'),(35,1447473,2,'Layout'),(35,1447474,2,'Layout'),(35,1447478,2,'Layout'),(35,1447481,2,'Layout'),(35,1447482,2,'Layout'),(35,1447511,2,'Layout'),(35,1447541,9,'Compositors'),(35,1447547,9,'Compositors'),(35,1447548,9,'Compositors'),(35,1447549,9,'Compositors'),(35,1447551,9,'Compositors'),(35,1447554,9,'Compositors'),(35,1447555,9,'Compositors'),(35,1447594,2,'Layout'),(35,1448998,9,'Compositors'),(35,1448999,9,'Compositors'),(35,1449000,9,'Compositors'),(35,1453044,2,'Layout'),(35,1454249,2,'Layout'),(35,1457214,10,'Animation'),(35,1459506,5,'Editorial Services'),(35,1460442,2,'Layout'),(35,1460475,2,'Layout'),(35,1460481,2,'Layout'),(35,1460514,9,'Compositors'),(1997,469,6,'Original Music Composer'),(1997,2352,2,'Director'),(1997,2352,4,'Screenplay'),(1997,2352,3,'Producer'),(1997,2358,4,'Screenplay'),(1997,2359,3,'Producer'),(1997,12758,5,'Editor'),(1997,17063,8,'Costume Design'),(1997,20524,1,'Director of Photography'),(1997,20525,7,'Production Design'),(1997,1371285,10,'VFX Supervisor'),(6947,136,3,'Producer'),(6947,151,1,'Director of Photography'),(6947,1213,6,'Original Music Composer'),(6947,2997,3,'Producer'),(6947,5361,5,'Editor'),(6947,5493,8,'Costume Design'),(6947,5669,3,'Casting'),(6947,7537,6,'Sound Designer'),(6947,7537,6,'Supervising Sound Editor'),(6947,8168,9,'Sound Recordist'),(6947,9622,10,'Visual Effects Supervisor'),(6947,9624,9,'Stunt Coordinator'),(6947,11614,2,'Director'),(6947,11614,3,'Producer'),(6947,11614,4,'Writer'),(6947,11713,7,'Assistant Art Director'),(6947,17950,7,'Art Direction'),(6947,17992,6,'Sound Mixer'),(6947,18787,8,'Key Hair Stylist'),(6947,21984,7,'Set Decoration'),(6947,25832,7,'Art Direction'),(6947,56518,7,'Production Design'),(6947,56697,7,'Assistant Art Director'),(6947,59533,8,'Costume Supervisor'),(6947,62062,7,'Assistant Art Director'),(6947,92377,6,'Sound Re-Recording Mixer'),(6947,92470,10,'Animation Supervisor'),(6947,91069,9,'Second Unit'),(6947,91069,4,'Storyboard'),(6947,91115,1,'Camera Operator'),(6947,138617,6,'Foley Editor'),(6947,142152,8,'Key Makeup Artist'),(6947,230436,3,'ADR Voice Casting'),(6947,232158,6,'Music Supervisor'),(6947,557528,6,'Foley'),(6947,566666,9,'Loader'),(6947,589968,1,'Dolly Grip'),(6947,936765,6,'Orchestrator'),(6947,958273,2,'Script Supervisor'),(6947,958493,2,'First Assistant Director'),(6947,1017377,3,'Casting Associate'),(6947,1127740,9,'Property Master'),(6947,1128126,3,'Associate Producer'),(6947,1229586,9,'Craft Service'),(6947,1309482,10,'Creature Design'),(6947,1311507,9,'Special Effects'),(6947,1311507,10,'Special Effects Supervisor'),(6947,1324829,7,'Supervising Art Director'),(6947,1332186,8,'Hair Designer'),(6947,1339446,6,'Supervising Sound Editor'),(6947,1339446,6,'Sound Designer'),(6947,1344279,3,'Unit Production Manager'),(6947,1367296,9,'Makeup Effects'),(6947,1376901,5,'Dialogue Editor'),(6947,1376902,6,'ADR Supervisor'),(6947,1378240,1,'Still Photographer'),(6947,1389555,7,'Assistant Art Director'),(6947,1389568,7,'Construction Coordinator'),(6947,1389570,6,'Foley'),(6947,1389572,10,'Visual Effects Producer'),(6947,1389573,9,'Transportation Coordinator'),(6947,1389573,9,'In Memory Of'),(6947,1389574,9,'Choreographer'),(6947,1389575,3,'Location Manager'),(6947,1389806,6,'Vocal Coach'),(6947,1395033,8,'Set Costumer'),(6947,1399117,6,'Sound Effects Editor'),(6947,1401997,11,'Chief Lighting Technician'),(6947,1403528,11,'Best Boy Electric'),(6947,1406756,5,'First Assistant Editor'),(6947,1411413,6,'Production Sound Mixer'),(6947,1418487,5,'Digital Intermediate'),(6947,1424185,9,'Unit Publicist'),(6947,1462853,2,'Second Assistant Director'),(6947,1464521,11,'Rigging Gaffer'),(6947,1470182,8,'Hairstylist'),(6947,1521491,8,'Makeup Artist'),(6947,1534668,6,'Supervising Music Editor'),(6947,1546881,11,'Rigging Grip'),(6947,1548698,6,'Conductor'),(6947,1551950,9,'Post Production Supervisor'),(6947,1571761,9,'Quality Control Supervisor'),(6947,1573072,7,'Art Department Assistant'),(6947,1573074,7,'Construction Foreman'),(6947,1573076,7,'Greensman'),(6947,1573077,7,'Leadman'),(6947,1573079,7,'Painter'),(6947,1573080,7,'Sculptor'),(6947,1573081,1,'First Assistant Camera'),(6947,1573082,1,'Key Grip'),(6947,1573083,8,'Assistant Costume Designer'),(6947,1573087,8,'Seamstress'),(6947,1573088,7,'Set Dresser'),(6947,1573089,9,'Chef'),(6947,1573090,9,'Driver'),(6947,1573091,9,'Mix Technician'),(6947,1573094,9,'Post Production Assistant'),(6947,1573095,9,'Production Intern'),(6947,1573097,9,'Projection'),(6947,1573098,9,'Scenic Artist'),(6947,1573099,9,'Security'),(6947,1573100,9,'Set Medic'),(6947,1573101,9,'Set Production Assistant'),(6947,1573103,9,'Stand In'),(6947,1573104,9,'Transportation Co-Captain'),(6947,1573105,9,'Video Assist Operator'),(6947,1573106,5,'Color Timer'),(6947,1573107,11,'Electrician'),(6947,1573109,3,'Production Accountant'),(6947,1573110,3,'Production Coordinator'),(6947,1573111,3,'Production Supervisor'),(6947,1573113,6,'Boom Operator'),(6947,1573115,10,'3D Artist'),(6947,1573116,9,'Studio Teachers'),(6947,1739962,5,'Negative Cutter'),(6947,1761865,8,'Ager/Dyer'),(6947,1761871,9,'Animal Wrangler'),(6947,1761902,3,'Assistant Production Coordinator'),(6947,1761921,6,'Musician'),(6947,1761933,10,'Roto Supervisor'),(6947,1775018,10,'Digital Compositors'),(3050,1260,7,'Production Design'),(3050,2043,3,'Producer'),(3050,4952,3,'Casting'),(3050,17144,3,'Producer'),(3050,14341,7,'Production Design'),(3050,21068,6,'Original Music Composer'),(3050,11372,5,'Editor'),(3050,31024,2,'Director'),(3050,31025,4,'Screenplay'),(3050,31026,4,'Screenplay'),(3050,31027,1,'Director of Photography'),(2675,136,3,'Producer'),(2675,136,3,'Unit Production Manager'),(2675,489,3,'Executive Producer'),(2675,664,3,'Producer'),(2675,1213,6,'Original Music Composer'),(2675,16300,1,'Director of Photography'),(2675,5493,8,'Costume Design'),(2675,5669,3,'Casting'),(2675,10958,7,'Set Decoration'),(2675,9622,10,'Visual Effects Supervisor'),(2675,9624,9,'Stunt Coordinator'),(2675,11614,2,'Director'),(2675,11614,3,'Producer'),(2675,11614,4,'Writer'),(2675,11620,7,'Production Design'),(2675,17992,6,'Sound Mixer'),(2675,18513,8,'Assistant Costume Designer'),(2675,21568,7,'Art Direction'),(2675,25453,10,'Visual Effects'),(2675,32492,8,'Key Hair Stylist'),(2675,53685,5,'Editor'),(2675,67596,1,'First Assistant Camera'),(2675,91069,4,'Storyboard'),(2675,91069,9,'Second Unit Cinematographer'),(2675,91115,1,'Camera Operator'),(2675,91144,6,'Scoring Mixer'),(2675,136008,6,'ADR & Dubbing'),(2675,142152,8,'Makeup Artist'),(2675,958273,2,'Script Supervisor'),(2675,1050930,5,'Dialogue Editor'),(2675,1128126,3,'Executive In Charge Of Production'),(2675,1173410,5,'First Assistant Editor'),(2675,1311507,9,'Special Effects'),(2675,1311507,10,'Special Effects Supervisor'),(2675,1333980,9,'Property Master'),(2675,1340318,6,'Foley'),(2675,1341403,6,'Sound Designer'),(2675,1341403,6,'Supervising Sound Editor'),(2675,1377222,6,'Sound Effects Editor'),(2675,1378240,1,'Still Photographer'),(2675,1389555,7,'Assistant Art Director'),(2675,1389568,7,'Construction Coordinator'),(2675,1389575,3,'Location Manager'),(2675,1400368,9,'Sound Recordist'),(2675,1406780,1,'Helicopter Camera'),(2675,1406906,9,'Unit Publicist'),(2675,1412119,8,'Costume Supervisor'),(2675,1426772,10,'Visual Effects Producer'),(2675,1445426,10,'Animation Supervisor'),(2675,1447602,6,'First Assistant Sound Editor'),(2675,1469631,7,'Art Department Coordinator'),(2675,1534668,6,'Music Editor'),(2675,1536551,9,'Visual Effects Editor'),(2675,1540470,5,'Color Timer'),(2675,1546187,11,'Rigging Gaffer'),(2675,1548698,6,'Orchestrator'),(2675,1549420,1,'Camera Technician'),(2675,1552203,3,'Production Accountant'),(2675,1573077,7,'Leadman'),(2675,1573098,9,'Scenic Artist'),(2675,1573104,9,'Transportation Co-Captain'),(2675,1573110,3,'Production Coordinator'),(2675,1573113,6,'Boom Operator'),(2675,1596288,8,'Set Dressing Artist'),(2675,1657914,11,'Best Boy Electric'),(2675,1674646,7,'Art Department Assistant'),(2675,1674648,7,'Construction Foreman'),(2675,1674649,7,'Greensman'),(2675,1674650,1,'Grip'),(2675,1674651,8,'Seamstress'),(2675,1674652,9,'Carpenter'),(2675,1674653,9,'Craft Service'),(2675,1674654,9,'Driver'),(2675,1674655,9,'Post Production Supervisor'),(2675,1674656,9,'Projection'),(2675,1674657,9,'Sequence Supervisor'),(2675,1674658,9,'Set Medic'),(2675,1674659,9,'Set Production Assistant'),(2675,1674660,9,'Stand In'),(2675,1674661,9,'Transportation Coordinator'),(2675,1674662,9,'Video Assist Operator'),(2675,1674663,2,'Assistant Director'),(2675,1674665,11,'Electrician'),(2675,1674666,11,'Rigging Grip'),(2675,1674667,3,'Casting Associate'),(2675,1674668,3,'Production Supervisor'),(2675,1674669,3,'Researcher'),(2675,1674670,10,'Digital Compositors'),(809,1705,9,'Creative Consultant'),(809,5524,4,'Screenplay'),(809,5524,2,'Director'),(809,5524,4,'Story'),(809,5542,5,'Editor'),(809,5549,8,'Costume Design'),(809,5553,6,'Original Music Composer'),(809,11174,6,'Supervising Sound Editor'),(809,12081,4,'Novel'),(809,12062,3,'Executive Producer'),(809,12106,3,'Producer'),(809,12090,3,'Casting'),(809,12071,7,'Production Design'),(809,12107,3,'Producer'),(809,12079,2,'Director'),(809,12080,2,'Director'),(809,12080,9,'Additional Dialogue'),(809,12083,4,'Screenplay'),(809,12084,4,'Screenplay'),(809,12085,4,'Screenplay'),(809,12087,3,'Producer'),(809,12092,7,'Art Direction'),(809,12095,9,'Additional Dialogue'),(809,12098,9,'Additional Dialogue'),(809,42267,6,'Sound Designer'),(809,44217,4,'Characters'),(809,68463,9,'Post-Production Manager'),(809,87169,4,'Storyboard'),(809,91015,6,'Sound Engineer'),(809,118489,9,'Additional Dialogue'),(809,120695,6,'Music Supervisor'),(809,933498,9,'Systems Administrators & Support'),(809,1001706,9,'Additional Music'),(809,1077844,9,'Additional Dialogue'),(809,1159914,6,'Dolby Consultant'),(809,1335620,10,'Animation Director'),(809,1335621,9,'Post Production Supervisor'),(809,1377373,3,'Casting Associate'),(809,1401149,10,'Visual Effects Coordinator'),(809,1401687,6,'Sound Mixer'),(809,1411521,9,'Sound Recordist'),(809,1412985,6,'Sound Effects Editor'),(809,1416298,10,'Visual Effects Supervisor'),(809,1435591,7,'Production Illustrator'),(809,1448071,10,'Animation Director'),(809,1450331,9,'Supervising Animator'),(809,1450331,10,'Animation Supervisor'),(809,1460608,10,'Animation'),(809,1463182,10,'VFX Artist'),(809,1463188,10,'VFX Artist'),(809,1463642,5,'Editorial Coordinator'),(809,1508441,11,'Lighting Artist'),(809,1531504,6,'Music Editor'),(809,1546437,5,'Editor'),(809,1552873,5,'Color Timer'),(809,1554041,6,'Orchestrator'),(809,1608893,6,'Foley'),(809,1677814,7,'Set Designer'),(809,1677816,9,'Production Controller'),(809,1677820,9,'Second Film Editor'),(809,1678634,4,'Story'),(809,1678635,7,'Sculptor'),(809,1678639,9,'Projection'),(809,1678642,9,'Sequence Supervisor'),(809,1678645,9,'Software Engineer'),(809,1678649,2,'Layout'),(809,1678651,5,'Editorial Production Assistant'),(809,1678652,5,'First Assistant Editor'),(809,1678653,3,'Production Coordinator'),(809,1678654,3,'Production Manager'),(809,1678655,3,'Production Supervisor'),(809,1678675,10,'Digital Compositors'),(920,7879,4,'Screenplay'),(920,7879,2,'Director'),(920,7879,4,'Original Story'),(920,7878,3,'Producer'),(920,7885,6,'Original Music Composer'),(920,7887,3,'Associate Producer'),(920,7889,7,'Production Design'),(920,7894,1,'Director of Photography'),(920,7897,9,'Supervising Technical Director'),(920,7911,4,'Screenplay'),(920,7911,2,'Director'),(920,7911,2,'Script Supervisor'),(920,7911,4,'Original Story'),(920,7940,3,'Production Manager'),(920,7960,7,'Sculptor'),(920,7988,1,'Director of Photography'),(920,8010,9,'Supervising Animator'),(920,8011,9,'Supervising Animator'),(920,8063,5,'Editor'),(920,8079,5,'Editorial Manager'),(920,8158,6,'Supervising Sound Editor'),(920,8159,6,'Sound Effects Editor'),(920,8165,6,'Sound Effects Editor'),(920,8172,6,'Music Editor'),(920,12915,7,'Production Design'),(920,15892,4,'Screenplay'),(920,15893,6,'Sound Effects Editor'),(920,15894,6,'Sound Designer'),(920,15894,6,'Supervising Sound Editor'),(920,15895,9,'Special Effects'),(920,15896,10,'Visual Effects Supervisor'),(920,57673,3,'Casting'),(920,953331,9,'Executive Music Producer'),(920,958088,4,'Screenplay'),(920,958088,4,'Original Story'),(920,1117779,4,'Screenplay'),(920,1117780,4,'Screenplay'),(920,1425978,6,'Sound Re-Recording Mixer'),(920,1450317,9,'Manager of Operations'),(920,1545449,2,'Script Supervisor'),(4806,68602,3,'Producer'),(4806,1201,2,'Director'),(4806,1213,6,'Original Music Composer'),(4806,5670,7,'Production Design'),(4806,4907,7,'Set Decoration'),(4806,7262,1,'Director of Photography'),(4806,7534,3,'Casting'),(4806,9184,3,'Producer'),(4806,9196,3,'Producer'),(4806,8885,8,'Costume Design'),(4806,11713,7,'Art Direction'),(4806,12970,5,'Editor'),(4806,18389,3,'Producer'),(4806,21118,1,'Steadicam Operator'),(4806,41697,4,'Screenplay'),(4806,41698,4,'Novel'),(4806,46785,8,'Assistant Costume Designer'),(4806,83089,6,'Sound Effects Editor'),(4806,999716,9,'Stunt Coordinator'),(4806,1183391,1,'Still Photographer'),(4806,1264811,6,'Music Editor'),(4806,1303184,6,'Sound Re-Recording Mixer'),(4806,1342663,6,'Music Editor'),(4806,1400558,6,'Supervising Sound Editor'),(4806,1401562,6,'Sound Re-Recording Mixer'),(4806,1404218,6,'Sound Re-Recording Mixer'),(4806,1414289,11,'Rigging Gaffer'),(4806,1428595,6,'Sound Effects Editor'),(4806,1480099,2,'Script Supervisor'),(4806,1521508,8,'Costume Supervisor'),(4806,1530166,6,'Music Supervisor'),(4806,1538079,3,'Production Coordinator'),(7451,1720,3,'Casting'),(7451,541,5,'Editor'),(7451,10816,5,'Editor'),(7451,2519,8,'Costume Design'),(7451,4501,1,'Director of Photography'),(7451,4854,3,'Associate Producer'),(7451,4856,3,'Associate Producer'),(7451,10631,10,'Special Effects Supervisor'),(7451,10632,9,'Stunt Coordinator'),(7451,10632,9,'Second Unit Cinematographer'),(7451,7535,7,'Set Decoration'),(7451,8277,3,'Executive Producer'),(7451,8288,3,'Unit Production Manager'),(7451,8705,7,'Art Direction'),(7451,10753,7,'Supervising Art Director'),(7451,11812,3,'Co-Producer'),(7451,11814,3,'Executive Producer'),(7451,11874,3,'Producer'),(7451,14046,9,'Special Effects Coordinator'),(7451,14712,6,'Original Music Composer'),(7451,14712,6,'Conductor'),(7451,12835,3,'Executive Producer'),(7451,13245,5,'Editor'),(7451,33931,1,'Camera Operator'),(7451,18878,2,'Director'),(7451,23651,7,'Production Design'),(7451,23454,7,'Art Direction'),(7451,42265,3,'Production Manager'),(7451,25729,3,'Casting'),(7451,41082,7,'Set Decoration'),(7451,53345,4,'Screenplay'),(7451,53346,3,'Casting'),(7451,54272,10,'Visual Effects Supervisor'),(7451,55227,6,'Production Sound Mixer'),(7451,60791,3,'Executive Producer'),(7451,62481,3,'Associate Producer'),(7451,66740,5,'First Assistant Editor'),(7451,92467,10,'Visual Effects Supervisor'),(7451,92470,10,'Animation Supervisor'),(7451,76054,7,'Set Designer'),(7451,102343,8,'Makeup Artist'),(7451,109994,3,'Production Supervisor'),(7451,138631,7,'Sculptor'),(7451,936765,6,'Orchestrator'),(7451,938105,9,'Visual Effects Editor'),(7451,960759,8,'Assistant Costume Designer'),(7451,969743,7,'Set Designer'),(7451,1115736,6,'Sound Designer'),(7451,1115736,6,'Supervising Sound Editor'),(7451,1128490,6,'Scoring Mixer'),(7451,1158477,2,'Script Supervisor'),(7451,1192526,7,'Art Department Assistant'),(7451,1219858,9,'Video Assist Operator'),(7451,1231721,10,'24 Frame Playback'),(7451,1319198,8,'Costume Supervisor'),(7451,1319747,8,'Costume Supervisor'),(7451,1327149,8,'Makeup Department Head'),(7451,1328822,7,'Assistant Art Director'),(7451,1334782,7,'Set Designer'),(7451,1335078,6,'Sound Effects Editor'),(7451,1341798,3,'Location Manager'),(7451,1347755,6,'Music Editor'),(7451,1352958,7,'Set Designer'),(7451,1357061,6,'Sound Designer'),(7451,1377234,5,'Digital Intermediate'),(7451,1385883,9,'Scenic Artist'),(7451,1385883,7,'Assistant Art Director'),(7451,1390350,7,'Set Designer'),(7451,1392233,7,'Art Department Coordinator'),(7451,1392236,7,'Construction Coordinator'),(7451,1392237,9,'Property Master'),(7451,1392239,5,'Dialogue Editor'),(7451,1392242,5,'Dialogue Editor'),(7451,1392243,5,'Dialogue Editor'),(7451,1392245,1,'Still Photographer'),(7451,1392246,1,'Camera Operator'),(7451,1392247,1,'Still Photographer'),(7451,1392248,8,'Set Costumer'),(7451,1392249,9,'Transportation Coordinator'),(7451,1392250,9,'Transportation Coordinator'),(7451,1392251,9,'Dialect Coach'),(7451,1394958,10,'Visual Effects Producer'),(7451,1399899,1,'Camera Technician'),(7451,1401771,9,'Transportation Co-Captain'),(7451,1404235,9,'Unit Publicist'),(7451,1407721,8,'Wigmaker'),(7451,1408845,9,'Picture Car Coordinator'),(7451,1413201,9,'Production Controller'),(7451,1416092,8,'Hairstylist'),(7451,1425503,11,'Rigging Gaffer'),(7451,1438477,11,'Gaffer'),(7451,1447557,9,'Compositors'),(7451,1455486,2,'Assistant Director'),(7451,1462925,8,'Hair Department Head'),(7451,1464344,3,'Executive In Charge Of Post Production'),(7451,1473444,6,'First Assistant Sound Editor'),(7451,1473757,3,'Co-Producer'),(7451,1530166,6,'Music Supervisor'),(7451,1548665,7,'Greensman'),(7451,1555005,9,'Set Medic'),(7451,1564233,5,'Color Timer'),(7451,1565942,7,'Standby Painter'),(7451,1565944,1,'First Assistant Camera'),(7451,1565945,11,'Best Boy Electric'),(7451,1568661,6,'Sound Engineer'),(7451,1570204,1,'Grip'),(7451,1575769,10,'3D Supervisor'),(7451,1586332,11,'Rigging Grip'),(7451,1586336,8,'Seamstress'),(7451,1605403,9,'Loader'),(7451,1605411,9,'Systems Administrators & Support'),(7451,1644012,3,'Production Coordinator'),(7451,1667948,6,'Foley'),(7451,1688599,9,'Driver'),(7451,1695270,11,'Electrician'),(7451,1697586,9,'Post Production Supervisor'),(7451,1699152,3,'Unit Manager'),(7451,1700803,4,'Storyboard'),(7451,1701212,7,'Location Scout'),(7451,1701214,1,'Additional Camera'),(7451,1701237,1,'Helicopter Camera'),(7451,1701240,8,'Set Dressing Artist'),(7451,1701244,9,'Armorer'),(7451,1701245,9,'Carpenter'),(7451,1701246,9,'Chef'),(7451,1701247,9,'Craft Service'),(7451,1701248,9,'Propmaker'),(7451,1701251,9,'Security'),(7451,1701253,9,'Set Production Assistant'),(7451,1701254,9,'Software Engineer'),(7451,1701273,9,'Transportation Captain'),(7451,1701274,9,'Utility Stunts'),(7451,1701275,11,'Lighting Technician'),(7451,1701276,6,'Boom Operator'),(7451,1701277,10,'Digital Compositors'),(7451,1701278,10,'Visual Effects'),(7451,1701279,10,'Visual Effects Coordinator'),(7451,1701280,9,'Translator'),(7451,1701281,9,'Digital Producer'),(3595,339,3,'Producer'),(3595,1729,6,'Original Music Composer'),(3595,2874,3,'Casting'),(3595,2989,4,'Screenplay'),(3595,2997,3,'Producer'),(3595,3275,3,'Casting'),(3595,6159,2,'Director'),(3595,6184,3,'Executive Producer'),(3595,6189,5,'Editor'),(3595,6190,5,'Editor'),(3595,6192,8,'Costume Design'),(3595,7855,7,'Production Design'),(3595,17220,7,'Art Direction'),(3595,17221,7,'Set Decoration'),(3595,33236,4,'Screenplay'),(3595,33238,1,'Director of Photography'),(879,491,6,'Original Music Composer'),(879,8215,3,'Producer'),(879,391,7,'Production Design'),(879,488,2,'Director'),(879,489,3,'Producer'),(879,493,5,'Editor'),(879,664,3,'Producer'),(879,1060,1,'Director of Photography'),(879,2211,3,'Producer'),(879,2874,3,'Casting'),(879,3275,3,'Casting'),(879,10295,4,'Author'),(879,10295,3,'Executive Producer'),(879,14687,4,'Author'),(879,14692,4,'Author'),(879,14693,3,'Producer'),(879,14693,4,'Author'),(879,14694,3,'Producer'),(879,14695,3,'Producer'),(879,14696,3,'Executive Producer'),(879,14697,3,'Casting'),(879,406204,8,'Makeup Artist'),(1573,551,3,'Associate Producer'),(1573,1091,3,'Producer'),(1573,1093,3,'Producer'),(1573,1096,7,'Production Design'),(1573,1097,3,'Casting'),(1573,1726,4,'Screenplay'),(1573,1993,3,'Executive Producer'),(1573,2523,5,'Editor'),(1573,4699,3,'Co-Producer'),(1573,6880,7,'Set Decoration'),(1573,7681,3,'Producer'),(1573,7714,6,'Original Music Composer'),(1573,7719,8,'Costume Design'),(1573,9441,6,'Foley'),(1573,11409,1,'Director of Photography'),(1573,12849,8,'Costume Supervisor'),(1573,11001,5,'First Assistant Editor'),(1573,14492,7,'Set Designer'),(1573,16650,5,'Editor'),(1573,16938,2,'Director'),(1573,20514,3,'Executive Producer'),(1573,20840,4,'Screenplay'),(1573,21796,7,'Set Designer'),(1573,13434,7,'Assistant Art Director'),(1573,25459,10,'Visual Effects Supervisor'),(1573,27156,7,'Art Direction'),(1573,41591,1,'Camera Operator'),(1573,51697,9,'Visual Effects Editor'),(1573,55245,1,'Still Photographer'),(1573,60712,1,'Camera Operator'),(1573,66167,6,'ADR & Dubbing'),(1573,101427,9,'Makeup Effects'),(1573,91243,9,'Stunt Coordinator'),(1573,117406,7,'Construction Coordinator'),(1573,119310,2,'Script Supervisor'),(1573,1102820,1,'Camera Operator'),(1573,1116937,6,'Foley'),(1573,1118402,9,'Special Effects Coordinator'),(1573,1216735,8,'Hairstylist'),(1573,1231299,1,'Camera Operator'),(1573,1316296,8,'Makeup Artist'),(1573,1335587,8,'Costume Supervisor'),(1573,1337123,7,'Set Designer'),(1573,1338832,6,'Sound Re-Recording Mixer'),(1573,1368865,6,'Supervising Sound Editor'),(1573,1391570,9,'Sound Recordist'),(1573,1398123,6,'Sound Re-Recording Mixer'),(1573,1398855,6,'Sound Re-Recording Mixer'),(1573,1401259,6,'Supervising Sound Editor'),(1573,1401265,9,'Second Unit Cinematographer'),(1573,1405703,9,'Makeup Effects'),(1573,1412990,1,'Camera Operator'),(1573,1422058,9,'Property Master'),(1573,1422061,6,'ADR & Dubbing'),(1573,1423858,8,'Hairstylist'),(1573,1423987,8,'Makeup Artist'),(1573,1423988,7,'Art Department Coordinator'),(1573,1423989,7,'Assistant Art Director'),(1573,1423996,7,'Set Designer'),(1573,1423997,7,'Set Designer'),(1573,1424126,9,'Sound Recordist'),(1573,1424127,6,'Dolby Consultant'),(1573,1424128,6,'Sound Re-Recording Mixer'),(1573,1424129,6,'Sound Re-Recording Mixer'),(1573,1424130,6,'Sound Re-Recording Mixer'),(1573,1424133,9,'Visual Effects Art Director'),(1573,1424134,10,'Visual Effects Producer'),(1573,1424135,11,'Rigging Gaffer'),(1573,1424136,9,'Transportation Coordinator'),(1573,1424137,2,'Script Supervisor'),(1573,1424138,3,'Location Manager'),(1573,1424139,9,'Unit Publicist'),(1573,1641795,4,'Novel'),(9257,11423,7,'Production Design'),(9257,818,4,'Screenplay'),(9257,908,5,'Editor'),(9257,7232,3,'Casting'),(9257,7239,6,'Sound Effects Editor'),(9257,5379,3,'Producer'),(9257,10632,9,'Second Unit Cinematographer'),(9257,10632,9,'Stunt Coordinator'),(9257,10633,9,'Stunts'),(9257,5581,6,'Original Music Composer'),(9257,8762,5,'Dialogue Editor'),(9257,40795,9,'Unit Publicist'),(9257,11874,3,'Producer'),(9257,13145,9,'Loader'),(9257,14654,3,'Unit Production Manager'),(9257,19769,4,'Screenplay'),(9257,10832,1,'Director of Photography'),(9257,20540,3,'Casting'),(9257,21697,3,'Producer'),(9257,21698,6,'Scoring Mixer'),(9257,23787,8,'Makeup Department Head'),(9257,47640,2,'Director'),(9257,46084,8,'Costume Design'),(9257,51612,3,'Executive Producer'),(9257,54160,7,'Art Direction'),(9257,15749,4,'Characters'),(9257,57025,4,'Story'),(9257,57026,4,'Story'),(9257,57027,3,'Executive Producer'),(9257,57028,3,'Co-Producer'),(9257,57029,3,'Co-Producer'),(9257,11063,7,'Set Decoration'),(9257,83656,2,'Assistant Director'),(9257,95844,9,'Transportation Coordinator'),(9257,95846,2,'Script Supervisor'),(9257,102343,8,'Makeup Artist'),(9257,484529,7,'Art Department Coordinator'),(9257,1085294,3,'Production Supervisor'),(9257,1172443,1,'Still Photographer'),(9257,1191540,11,'Electrician'),(9257,1249289,4,'Storyboard'),(9257,1261385,8,'Costume Supervisor'),(9257,1345633,9,'Studio Teachers'),(9257,1361755,9,'Set Production Assistant'),(9257,1368825,6,'Sound Mixer'),(9257,1378244,8,'Set Costumer'),(9257,1388879,6,'Music Editor'),(9257,1391594,1,'Camera Operator'),(9257,1393390,10,'Visual Effects Supervisor'),(9257,1393456,9,'Dialect Coach'),(9257,1397023,10,'Digital Compositors'),(9257,1401257,7,'Greensman'),(9257,1401992,9,'Video Assist Operator'),(9257,1404541,1,'Steadicam Operator'),(9257,1404920,1,'Helicopter Camera'),(9257,1408290,8,'Hair Department Head'),(9257,1412228,6,'Production Sound Mixer'),(9257,1416157,9,'CG Supervisor'),(9257,1418063,11,'Gaffer'),(9257,1422058,9,'Armorer'),(9257,1424167,6,'Sound Designer'),(9257,1424908,11,'Rigging Gaffer'),(9257,1425917,9,'Digital Effects Supervisor'),(9257,1425917,10,'Visual Effects Producer'),(9257,1460669,6,'Orchestrator'),(9257,1473314,3,'Executive Producer'),(9257,1534976,9,'Carpenter'),(9257,1541694,6,'Music Supervisor'),(9257,1548461,5,'First Assistant Editor'),(9257,1548685,11,'Lighting Technician'),(9257,1548694,9,'Sound Recordist'),(9257,1551937,8,'Assistant Costume Designer'),(9257,1552012,9,'Property Master'),(9257,1556515,3,'Casting Associate'),(9257,1564250,6,'Foley'),(9257,1569558,9,'Craft Service'),(9257,1585015,10,'3D Supervisor'),(9257,1594927,9,'Stand In'),(9257,1619998,11,'Best Boy Electric'),(9257,1638721,7,'Location Scout'),(9257,1647714,1,'First Assistant Camera'),(9257,1684303,7,'Painter'),(9257,1684992,9,'Propmaker'),(9257,1688587,7,'Construction Coordinator'),(9257,1688589,7,'Set Designer'),(9257,1688590,7,'Standby Painter'),(9257,1688593,1,'Grip'),(9257,1688597,8,'Hairstylist'),(9257,1688598,8,'Set Dressing Artist'),(9257,1688599,9,'Driver'),(9257,1688600,9,'Picture Car Coordinator'),(9257,1688602,9,'Utility Stunts'),(9257,1688603,5,'Digital Intermediate'),(9257,1688604,11,'Rigging Grip'),(9257,1688605,3,'Location Manager'),(9257,1688606,3,'Production Accountant'),(9257,1688607,3,'Production Coordinator'),(9257,1688608,6,'Boom Operator'),(9257,1688609,6,'First Assistant Sound Editor'),(9257,1688610,6,'Sound'),(1903,500,3,'Producer'),(1903,2483,1,'Director of Photography'),(1903,4186,5,'Editor'),(1903,10574,5,'Editor'),(1903,9183,3,'Producer'),(1903,11802,8,'Costume Design'),(1903,11649,2,'Director'),(1903,11649,4,'Screenplay'),(1903,11649,3,'Producer'),(1903,11656,6,'Original Music Composer'),(1903,11658,3,'Casting'),(1903,15335,9,'Stunt Coordinator'),(1903,19850,7,'Production Design'),(1903,958273,2,'Script Supervisor'),(1903,1341865,2,'Script Supervisor'),(9697,136,3,'Producer'),(9697,1357,1,'Director of Photography'),(9697,1213,6,'Original Music Composer'),(9697,5669,3,'Casting'),(9697,7537,6,'Sound Designer'),(9697,8160,6,'Foley'),(9697,8163,6,'Foley'),(9697,9624,9,'Stunt Coordinator'),(9697,9441,6,'Foley'),(9697,11802,8,'Costume Design'),(9697,11614,4,'Screenplay'),(9697,11614,2,'Director'),(9697,11614,3,'Producer'),(9697,11614,4,'Author'),(9697,11456,7,'Production Design'),(9697,18900,7,'Art Direction'),(9697,21984,7,'Set Decoration'),(9697,53685,5,'Editor'),(9697,92377,6,'Sound Re-Recording Mixer'),(9697,142152,8,'Makeup Department Head'),(9697,142165,6,'Music Editor'),(9697,957889,7,'Art Direction'),(9697,992965,2,'Script Supervisor'),(9697,1127740,9,'Property Master'),(9697,1311507,9,'Special Effects Coordinator'),(9697,1319750,7,'Set Designer'),(9697,1339446,6,'Supervising Sound Editor'),(9697,1360094,7,'Set Designer'),(9697,1367495,6,'Boom Operator'),(9697,1378240,1,'Still Photographer'),(9697,1378825,7,'Set Designer'),(9697,1378826,7,'Art Department Coordinator'),(9697,1378828,6,'Sound Re-Recording Mixer'),(9697,1378829,10,'Visual Effects Supervisor'),(9697,1378830,10,'Visual Effects Producer'),(9697,1378831,1,'Steadicam Operator'),(9697,1378832,8,'Set Costumer'),(9697,1378833,3,'Location Manager'),(9697,1813644,9,'Stunts'),(395,4014,2,'Director'),(395,4014,4,'Screenplay'),(395,907,8,'Costume Design'),(395,915,3,'Producer'),(395,1092,4,'Author'),(395,1094,4,'Author'),(395,1723,3,'Producer'),(395,1851,5,'Editor'),(395,2043,3,'Producer'),(395,4854,3,'Co-Producer'),(395,4856,3,'Co-Producer'),(395,5045,4,'Screenplay'),(395,5046,4,'Screenplay'),(395,5053,3,'Producer'),(395,5430,6,'Original Music Composer'),(395,5432,1,'Director of Photography'),(395,5438,7,'Production Design'),(395,6040,3,'Executive Producer'),(395,9148,3,'Production Supervisor'),(395,9822,7,'Supervising Art Director'),(395,11167,7,'Assistant Art Director'),(395,10903,3,'Associate Producer'),(395,11270,7,'Set Decoration'),(395,11272,7,'Set Designer'),(395,40750,7,'Set Designer'),(395,40751,7,'Set Designer'),(395,11457,7,'Art Direction'),(395,40832,3,'Executive Producer'),(395,21272,5,'Additional Editing'),(395,19619,3,'Associate Producer'),(395,23457,9,'Makeup Effects'),(395,25456,3,'Co-Producer'),(395,25457,3,'Unit Production Manager'),(395,25729,3,'Casting'),(395,49829,5,'First Assistant Editor'),(395,51457,9,'Makeup Effects'),(395,56632,6,'Orchestrator'),(395,58005,9,'Second Unit Cinematographer'),(395,58190,3,'Executive Producer'),(395,60934,9,'Post-Production Manager'),(395,67201,9,'Visual Effects Editor'),(395,70955,3,'Associate Producer'),(395,74089,7,'Conceptual Design'),(395,111879,6,'Sound Re-Recording Mixer'),(395,117213,9,'Makeup Effects'),(395,117220,7,'Sculptor'),(395,240629,9,'Dialect Coach'),(395,544391,9,'Driver'),(395,548431,6,'Boom Operator'),(395,1042814,10,'Visual Effects Supervisor'),(395,1049272,10,'Visual Effects Supervisor'),(395,1090150,8,'Key Hair Stylist'),(395,1090150,8,'Makeup Artist'),(395,1099017,9,'Propmaker'),(395,1104780,7,'Art Direction'),(395,1107759,3,'Location Manager'),(395,1159914,6,'Dolby Consultant'),(395,1319628,9,'Post Production Supervisor'),(395,1324126,7,'Art Direction'),(395,1328822,7,'Art Direction'),(395,1328823,7,'Art Direction'),(395,1337411,6,'Music Editor'),(395,1337412,6,'Foley'),(395,1338845,9,'Sound Recordist'),(395,1357044,7,'Conceptual Design'),(395,1360274,6,'Sound Effects Editor'),(395,1378728,2,'Script Supervisor'),(395,1379051,9,'Digital Effects Supervisor'),(395,1379983,5,'Dialogue Editor'),(395,1388874,3,'Line Producer'),(395,1392249,3,'Unit Manager'),(395,1392706,10,'Visual Effects Producer'),(395,1393302,6,'Supervising Sound Editor'),(395,1393302,6,'Sound Re-Recording Mixer'),(395,1393303,6,'Supervising Sound Editor'),(395,1395269,10,'Visual Effects Supervisor'),(395,1398505,3,'Casting'),(395,1398908,7,'Art Department Coordinator'),(395,1398913,9,'Property Master'),(395,1398914,7,'Leadman'),(395,1398918,6,'Foley'),(395,1398920,6,'Foley'),(395,1398923,6,'Sound Re-Recording Mixer'),(395,1398924,10,'Visual Effects Producer'),(395,1398927,10,'Visual Effects Producer'),(395,1398929,10,'Visual Effects Producer'),(395,1398930,10,'Visual Effects Producer'),(395,1398932,9,'Stunt Coordinator'),(395,1398933,1,'Still Photographer'),(395,1398934,1,'Steadicam Operator'),(395,1398934,1,'Camera Operator'),(395,1398935,11,'Gaffer'),(395,1398936,9,'Transportation Coordinator'),(395,1402099,10,'Visual Effects'),(395,1403545,11,'Rigging Gaffer'),(395,1406988,9,'Unit Publicist'),(395,1411095,10,'Modeling'),(395,1416949,6,'Sound Editor'),(395,1417821,3,'Production Coordinator'),(395,1448323,9,'CG Supervisor'),(395,1453612,10,'Animation'),(395,1455486,2,'Assistant Director'),(395,1461631,10,'Visual Effects Coordinator'),(395,1477203,3,'Associate Producer'),(395,1484176,6,'Production Sound Mixer'),(395,1494530,9,'CGI Supervisor'),(395,1529027,8,'Hair Designer'),(395,1529027,8,'Makeup Designer'),(395,1529502,10,'Special Effects Supervisor'),(395,1548634,9,'Security'),(395,1554878,8,'Set Dressing Supervisor'),(395,1554992,1,'First Assistant Camera'),(395,1555005,9,'Set Medic'),(395,1555370,11,'Rigging Grip'),(395,1570204,1,'Grip'),(395,1577649,9,'Stunts'),(395,1583797,9,'Post Production Assistant'),(395,1586337,9,'Loader'),(395,1586393,3,'Production Manager'),(395,1591775,10,'I/O Supervisor'),(395,1605412,9,'Video Assist Operator'),(395,1613313,10,'Digital Compositors'),(395,1647668,5,'Digital Intermediate'),(395,1707586,7,'Painter'),(395,1707587,9,'Legal Services'),(395,1707588,9,'Set Production Assistant'),(395,1707599,11,'Electrician'),(395,1707601,11,'Lighting Artist'),(395,1707603,3,'Casting Associate'),(395,1707604,3,'Production Accountant'),(395,1707605,3,'Researcher'),(395,1707609,10,'3D Supervisor'),(395,1707611,9,'Translator'),(395,1707612,9,'Translator'),(395,1707613,9,'Translator'),(395,1707614,9,'Translator'),(395,1707615,9,'Translator'),(200,796,7,'Set Decoration'),(200,1760,6,'Original Music Composer'),(200,2033,5,'Editor'),(200,2083,7,'Production Design'),(200,2381,3,'Producer'),(200,2383,3,'Producer'),(200,2387,3,'Producer'),(200,2388,2,'Director'),(200,2397,8,'Costume Design'),(200,2399,3,'Casting'),(200,2400,3,'Casting'),(200,2504,3,'Executive Producer'),(200,2507,1,'Director of Photography'),(200,2508,7,'Art Direction'),(200,2514,4,'Screenplay'),(200,2514,3,'Producer'),(200,2519,8,'Costume Design'),(200,2522,6,'Additional Soundtrack'),(200,1319747,8,'Costume Supervisor'),(200,1551320,9,'Sound Recordist'),(587,8215,3,'Producer'),(587,8216,3,'Producer'),(587,2215,3,'Casting'),(587,510,2,'Director'),(587,531,6,'Original Music Composer'),(587,541,5,'Editor'),(587,555,7,'Set Decoration'),(587,557,8,'Costume Design'),(587,1297,3,'Producer'),(587,1300,4,'Screenplay'),(587,1301,1,'Director of Photography'),(587,4248,7,'Production Design'),(587,5132,6,'Music Supervisor'),(587,8272,4,'Author'),(587,8275,3,'Associate Producer'),(587,8275,2,'First Assistant Director'),(587,8277,3,'Executive Producer'),(587,8279,7,'Art Direction'),(587,8280,7,'Art Direction'),(587,8281,7,'Art Direction'),(587,8282,7,'Art Direction'),(587,8285,7,'Art Direction'),(587,8287,8,'Key Set Costumer'),(587,8288,3,'Unit Production Manager'),(587,9619,6,'Supervising Sound Editor'),(587,9651,6,'Sound Effects Designer'),(587,9654,9,'Stunt Coordinator'),(587,10066,8,'Makeup Artist'),(587,14193,10,'Special Effects Supervisor'),(587,13189,5,'Color Timer'),(587,13194,5,'Digital Intermediate'),(587,15315,6,'Music Editor'),(587,42034,6,'Sound mixer'),(587,18900,7,'Assistant Art Director'),(587,51841,1,'Still Photographer'),(587,61573,4,'Storyboard'),(587,80840,1,'Grip'),(587,80840,11,'Rigging Grip'),(587,122607,9,'Dialect Coach'),(587,143913,6,'Supervising ADR Editor'),(587,931858,10,'Character Designer'),(587,936765,6,'Orchestrator'),(587,1096344,8,'Makeup Artist'),(587,1106751,9,'Second Unit'),(587,1180471,1,'Still Photographer'),(587,1322089,8,'Costume Supervisor'),(587,1325234,8,'Makeup Department Head'),(587,1330582,7,'Leadman'),(587,1341851,7,'Construction Coordinator'),(587,1342654,6,'Boom Operator'),(587,1344274,9,'Transportation Coordinator'),(587,1355972,9,'Chef'),(587,1367505,6,'Sound Effects Editor'),(587,1367680,9,'Choreographer'),(587,1368825,6,'Sound Mixer'),(587,1378825,7,'Set Designer'),(587,1378826,8,'Set Dressing Supervisor'),(587,1379051,9,'CGI Supervisor'),(587,1384367,5,'Dialogue Editor'),(587,1394010,9,'Digital Effects Supervisor'),(587,1395438,7,'Sculptor'),(587,1400082,1,'Still Photographer'),(587,1400375,1,'Camera Operator'),(587,1400849,9,'Property Master'),(587,1401264,1,'Steadicam Operator'),(587,1402038,3,'Location Manager'),(587,1403091,7,'Greensman'),(587,1403399,9,'Special Effects'),(587,1403403,9,'Systems Administrators & Support'),(587,1403525,10,'Visual Effects Supervisor'),(587,1406105,9,'Visual Effects Editor'),(587,1413124,11,'Rigging Gaffer'),(587,1413169,6,'Scoring Mixer'),(587,1414996,7,'Set Dresser'),(587,1415965,6,'Supervising Dialogue Editor'),(587,1416013,3,'Production Accountant'),(587,1418359,9,'Stunts'),(587,1421678,10,'Digital Compositors'),(587,1428137,7,'Leadman'),(587,1429252,5,'First Assistant Editor'),(587,1437160,10,'Visual Effects Producer'),(587,1441674,10,'Visual Effects Coordinator'),(587,1449993,8,'Hairstylist'),(587,1462691,10,'Animation'),(587,1463703,11,'Electrician'),(587,1464420,9,'Supervising Animator'),(587,1469560,9,'Unit Publicist'),(587,1479807,2,'Script Supervisor'),(587,1530322,6,'Foley Editor'),(587,1534226,11,'Gaffer'),(587,1538258,9,'Makeup Effects'),(587,1548694,9,'Sound Recordist'),(587,1549198,7,'Art Department Coordinator'),(587,1552027,6,'Production Sound Mixer'),(587,1552531,3,'Casting Associate'),(587,1553613,7,'Construction Foreman'),(587,1553614,7,'Painter'),(587,1553615,1,'First Assistant Camera'),(587,1553616,8,'Assistant Costume Designer'),(587,1553617,8,'Hair Department Head'),(587,1553618,8,'Seamstress'),(587,1553619,8,'Set Costumer'),(587,1553621,9,'Carpenter'),(587,1553622,9,'Craft Service'),(587,1553623,9,'Driver'),(587,1553624,9,'Loader'),(587,1553625,9,'Picture Car Coordinator'),(587,1553626,9,'Post Production Assistant'),(587,1553627,9,'Production Office Assistant'),(587,1553628,9,'Projection'),(587,1553629,9,'Propmaker'),(587,1553630,9,'Scenic Artist'),(587,1553631,9,'Set Production Assistant'),(587,1553632,9,'Stand In'),(587,1553633,9,'Utility Stunts'),(587,1553634,11,'Lighting Technician'),(587,1553635,3,'Production Coordinator'),(587,1553636,6,'Assistant Sound Editor'),(587,1553639,10,'3D Supervisor'),(587,1553640,10,'Visual Effects'),(587,1553641,9,'Prop Maker'),(587,1553642,9,'Quality Control Supervisor'),(587,1586169,3,'Casting Assistant'),(587,1604352,9,'Title Graphics'),(587,1733019,6,'Musician'),(587,1733132,5,'Negative Cutter'),(587,1736214,1,'Dolly Grip'),(587,1738167,7,'Assistant Property Master'),(587,1738168,7,'Title Designer'),(587,1738169,1,'Key Grip'),(587,1738170,8,'Costume Illustrator'),(587,1738171,8,'Tailor'),(587,1738172,2,'Second Assistant Director'),(587,1738173,2,'Third Assistant Director'),(587,1738174,3,'Assistant Production Coordinator'),(587,1738175,3,'Assistant Production Manager'),(587,1738176,10,'Visual Effects Technical Director'),(2756,37,6,'Original Music Composer'),(2756,563,6,'Supervising Sound Editor'),(2756,869,3,'Producer'),(2756,1530,3,'Casting'),(2756,2710,4,'Screenplay'),(2756,2710,2,'Director'),(2756,3987,5,'Editor'),(2756,5059,7,'Production Design'),(2756,8706,7,'Set Decoration'),(2756,9649,7,'Set Designer'),(2756,9990,7,'Art Direction'),(2756,11508,7,'Assistant Art Director'),(2756,14042,8,'Costume Supervisor'),(2756,14197,9,'Stunts'),(2756,14663,9,'Stunt Coordinator'),(2756,10853,5,'Editor'),(2756,25195,7,'Conceptual Design'),(2756,42032,1,'First Assistant Camera'),(2756,21118,1,'Steadicam Operator'),(2756,22107,8,'Costume Design'),(2756,30148,3,'Producer'),(2756,30149,1,'Director of Photography'),(2756,37428,7,'Set Designer'),(2756,44813,6,'Orchestrator'),(2756,54160,7,'Set Designer'),(2756,64196,5,'Editor'),(2756,62142,3,'Production Coordinator'),(2756,70250,2,'Assistant Director'),(2756,74775,7,'Construction Coordinator'),(2756,75001,5,'Color Timer'),(2756,84851,10,'Visual Effects Supervisor'),(2756,91906,1,'Key Grip'),(2756,97724,10,'Visual Effects Supervisor'),(2756,109032,8,'Set Dressing Artist'),(2756,117842,6,'Sound Designer'),(2756,164801,9,'Property Master'),(2756,671520,7,'Sculptor'),(2756,964220,7,'Painter'),(2756,1116937,6,'Foley'),(2756,1155668,10,'Visual Effects Coordinator'),(2756,1178205,9,'Craft Service'),(2756,1219615,3,'Production Manager'),(2756,1219991,7,'Supervising Art Director'),(2756,1285007,9,'Additional Music'),(2756,1328150,7,'Art Direction'),(2756,1328151,8,'Makeup Artist'),(2756,1333481,3,'Production Supervisor'),(2756,1338830,6,'Sound Re-Recording Mixer'),(2756,1338832,6,'Sound Re-Recording Mixer'),(2756,1341808,6,'Sound Re-Recording Mixer'),(2756,1379396,9,'Visual Effects Editor'),(2756,1389588,7,'Construction Foreman'),(2756,1391570,9,'Sound Recordist'),(2756,1392907,10,'Visual Effects Producer'),(2756,1394306,6,'Music Editor'),(2756,1395158,7,'Leadman'),(2756,1395248,7,'Art Department Coordinator'),(2756,1395252,9,'Property Master'),(2756,1395253,7,'Sculptor'),(2756,1395254,9,'Scenic Artist'),(2756,1395255,6,'Foley'),(2756,1395256,6,'Foley'),(2756,1395257,9,'Special Effects Coordinator'),(2756,1395258,9,'Special Effects Coordinator'),(2756,1395259,10,'Visual Effects Producer'),(2756,1395261,9,'Visual Effects Editor'),(2756,1395262,10,'Visual Effects Producer'),(2756,1395263,10,'Visual Effects Producer'),(2756,1395266,10,'Visual Effects Supervisor'),(2756,1395269,10,'Visual Effects Supervisor'),(2756,1395275,1,'Still Photographer'),(2756,1395276,1,'Camera Operator'),(2756,1395277,1,'Camera Operator'),(2756,1395278,1,'Underwater Camera'),(2756,1395279,11,'Gaffer'),(2756,1395280,11,'Gaffer'),(2756,1395281,1,'Steadicam Operator'),(2756,1395287,11,'Gaffer'),(2756,1395289,9,'Transportation Coordinator'),(2756,1395290,2,'Script Supervisor'),(2756,1398855,6,'Sound Re-Recording Mixer'),(2756,1400817,10,'Animation Supervisor'),(2756,1405717,6,'Assistant Sound Editor'),(2756,1416435,9,'Video Assist Operator'),(2756,1487479,9,'Unit Publicist'),(2756,1524757,8,'Hairstylist'),(2756,1545540,6,'Sound mixer'),(2756,1552545,9,'Propmaker'),(2756,1565211,6,'Boom Operator'),(2756,1633954,9,'Editorial Staff'),(2756,1640689,4,'Storyboard'),(2756,1691214,11,'Best Boy Electric'),(2756,1776286,1,'Grip'),(2756,1842402,7,'Production Illustrator'),(2756,1842405,7,'Standby Painter'),(2756,1842411,9,'Carpenter'),(2756,1842432,9,'Driver'),(2756,1842439,9,'Set Production Assistant'),(2756,1842441,9,'Stand In'),(2756,1842444,9,'Transportation Captain'),(2756,1842468,11,'Electrician'),(2756,1842469,11,'Lighting Supervisor'),(2756,1842470,11,'Rigging Grip'),(2756,1842472,3,'Casting Associate'),(2756,1842475,3,'Location Manager'),(2756,1842477,3,'Production Accountant'),(2756,1842531,6,'Sound Editor'),(9882,151,1,'Director of Photography'),(9882,736,4,'Screenplay'),(9882,2162,3,'Producer'),(9882,5912,6,'Original Music Composer'),(9882,2484,5,'Editor'),(9882,9199,7,'Production Design'),(9882,14608,7,'Supervising Art Director'),(9882,4148,7,'Set Decoration'),(9882,10575,7,'Assistant Art Director'),(9882,5286,3,'Co-Producer'),(9882,5286,3,'Unit Production Manager'),(9882,5493,8,'Costume Design'),(9882,9181,2,'Director'),(9882,9181,3,'Producer'),(9882,9181,4,'Screenplay'),(9882,9408,6,'Sound Editor'),(9882,13050,9,'Dialect Coach'),(9882,15526,8,'Hairstylist'),(9882,13458,9,'Stunt Coordinator'),(9882,17950,7,'Art Direction'),(9882,18513,8,'Assistant Costume Designer'),(9882,21517,3,'Casting'),(9882,23349,3,'Casting'),(9882,28241,6,'Orchestrator'),(9882,52193,6,'ADR Supervisor'),(9882,59978,4,'Screenplay'),(9882,59979,3,'Executive Producer'),(9882,91115,1,'Steadicam Operator'),(9882,102430,10,'Visual Effects Producer'),(9882,108147,11,'Electrician'),(9882,136008,5,'Dialogue Editor'),(9882,564056,9,'Carpenter'),(9882,957361,9,'Second Unit Cinematographer'),(9882,1027737,3,'Associate Producer'),(9882,1032536,10,'Visual Effects Supervisor'),(9882,1215672,10,'Visual Effects'),(9882,1318092,9,'Special Effects Coordinator'),(9882,1321372,8,'Prosthetic Makeup Artist'),(9882,1347759,7,'Location Scout'),(9882,1361676,6,'Scoring Mixer'),(9882,1378672,7,'Construction Coordinator'),(9882,1389624,6,'Music Editor'),(9882,1391678,6,'Assistant Sound Editor'),(9882,1393787,7,'Art Department Assistant'),(9882,1395358,9,'Scenic Artist'),(9882,1398946,6,'Supervising Sound Editor'),(9882,1401307,9,'Unit Publicist'),(9882,1404215,6,'Sound Designer'),(9882,1406053,9,'Video Assist Operator'),(9882,1406083,7,'Art Department Coordinator'),(9882,1406084,7,'Property Master'),(9882,1407014,7,'Leadman'),(9882,1414994,9,'Picture Car Coordinator'),(9882,1437273,8,'Key Hair Stylist'),(9882,1464521,11,'Rigging Gaffer'),(9882,1521518,8,'Makeup Artist'),(9882,1534907,3,'Production Supervisor'),(9882,1536878,1,'Underwater Camera'),(9882,1537448,9,'Loader'),(9882,1544931,1,'Additional Camera'),(9882,1546881,11,'Rigging Grip'),(9882,1548587,9,'Transportation Coordinator'),(9882,1550191,1,'Camera Operator'),(9882,1552201,6,'Sound Mixer'),(9882,1562239,9,'Post Production Supervisor'),(9882,1625919,9,'Security'),(9882,1714916,1,'Aerial Camera'),(9882,1717160,3,'Production Coordinator'),(9882,1717525,9,'Stunts'),(9882,1747927,11,'Best Boy Electric'),(9882,1748870,3,'Executive In Charge Of Production'),(9882,1754420,7,'Set Designer'),(9882,1759860,3,'Location Manager'),(9882,1774046,11,'Gaffer'),(9882,1774546,7,'Construction Foreman'),(9882,1774549,1,'Key Grip'),(9882,1774550,8,'Set Costumer'),(9882,1774551,8,'Set Dressing Artist'),(9882,1774552,9,'Driver'),(9882,1774553,9,'Propmaker'),(9882,1774560,9,'Set Medic'),(9882,1774562,9,'Systems Administrators & Support'),(9882,1774870,2,'Assistant Director'),(9882,1774871,3,'Production Accountant'),(9882,1774872,6,'Foley'),(9882,1774880,10,'Digital Compositors'),(9882,1774882,10,'Special Effects Supervisor'),(2270,1113,3,'Casting'),(2270,957,4,'Screenplay'),(2270,957,2,'Director'),(2270,957,3,'Producer'),(2270,1114,5,'Editor'),(2270,10952,3,'Producer'),(2270,7790,7,'Supervising Art Director'),(2270,9776,3,'Producer'),(2270,9776,3,'Co-Producer'),(2270,9823,7,'Set Decoration'),(2270,11271,8,'Costume Design'),(2270,23453,7,'Art Direction'),(2270,22161,1,'Director of Photography'),(2270,23651,7,'Production Design'),(2270,23446,3,'Producer'),(2270,23446,4,'Novel'),(2270,23447,4,'Screenplay'),(2270,23449,3,'Producer'),(2270,23451,6,'Music'),(2270,35388,3,'Executive Producer'),(2270,35389,3,'Executive Producer'),(2270,23772,7,'Art Direction'),(2270,26196,8,'Makeup Artist'),(2270,26196,8,'Hairstylist'),(2270,42736,3,'Executive Producer'),(2270,42736,3,'Unit Production Manager'),(2270,67201,9,'Visual Effects Editor'),(2270,122274,10,'Visual Effects Supervisor'),(2270,142325,9,'Stunt Coordinator'),(2270,225791,3,'Production Coordinator'),(2270,963336,3,'Executive Producer'),(2270,967950,3,'Associate Producer'),(2270,1066776,6,'Music Supervisor'),(2270,1285933,8,'Assistant Costume Designer'),(2270,1319752,8,'Costume Supervisor'),(2270,1319753,8,'Costume Supervisor'),(2270,1327029,6,'Production Sound Mixer'),(2270,1335181,9,'Property Master'),(2270,1338220,6,'Sound Designer'),(2270,1340007,6,'Music Editor'),(2270,1388877,9,'Stunt Coordinator'),(2270,1388897,1,'Camera Operator'),(2270,1389139,1,'Still Photographer'),(2270,1390388,2,'Script Supervisor'),(2270,1392609,6,'Sound Re-Recording Mixer'),(2270,1394011,10,'Visual Effects Producer'),(2270,1398112,9,'Choreographer'),(2270,1405798,1,'Camera Operator'),(2270,1406187,9,'Scenic Artist'),(2270,1408369,3,'Location Manager'),(2270,1408796,3,'Unit Production Manager'),(2270,1409295,5,'Dialogue Editor'),(2270,1411320,8,'Makeup Artist'),(2270,1411320,8,'Hairstylist'),(2270,1416939,8,'Assistant Costume Designer'),(2270,1422853,9,'Visual Effects Editor'),(2270,1430074,8,'Makeup Artist'),(2270,1430074,8,'Hairstylist'),(2270,1548152,5,'First Assistant Editor'),(2270,1561994,7,'Art Department Coordinator'),(2270,1614106,8,'Makeup Artist'),(2270,1614106,8,'Hairstylist'),(2270,1614109,8,'Hair Designer'),(2270,1614109,8,'Makeup Designer'),(2270,1635163,9,'Post Production Supervisor'),(2270,1637816,3,'Unit Production Manager'),(2270,1637823,10,'Special Effects Supervisor'),(2270,1637824,10,'Special Effects Supervisor'),(2270,1637825,3,'Location Manager'),(2270,1637826,7,'Art Direction'),(978,491,6,'Original Music Composer'),(978,8374,3,'Producer'),(978,6410,3,'Casting'),(978,2352,2,'Director'),(978,2352,3,'Producer'),(978,2596,1,'Director of Photography'),(978,3311,3,'Casting'),(978,8680,7,'Set Decoration'),(978,12107,3,'Producer'),(978,12758,5,'Editor'),(978,14587,4,'Novel'),(978,14588,4,'Screenplay'),(978,14589,7,'Production Design'),(978,14590,8,'Costume Design'),(3132,120,1,'Director of Photography'),(3132,770,3,'Producer'),(3132,2444,3,'Producer'),(3132,2446,3,'Executive Producer'),(3132,547,3,'Casting'),(3132,894,6,'Original Music Composer'),(3132,898,5,'Editor'),(3132,6392,8,'Costume Design'),(3132,3184,3,'Executive Producer'),(3132,5572,2,'Director'),(3132,19157,7,'Set Decoration'),(3132,11224,7,'Art Direction'),(3132,11457,7,'Art Direction'),(3132,11713,7,'Art Direction'),(3132,17886,5,'Editor'),(3132,20292,7,'Production Design'),(3132,31646,3,'Producer'),(3132,31646,4,'Screenplay'),(3132,71342,4,'Story'),(3132,76480,4,'Screenplay'),(3132,1176795,4,'Story'),(3132,1176795,3,'Executive Producer'),(3132,1455486,2,'Assistant Director'),(3132,1634572,3,'Executive Producer'),(8814,3960,1,'Director of Photography'),(8814,3995,8,'Makeup Artist'),(8814,6377,6,'Original Music Composer'),(8814,10952,3,'Producer'),(8814,8410,7,'Set Decoration'),(8814,10908,7,'Supervising Art Director'),(8814,10754,7,'Production Design'),(8814,12756,3,'Executive Producer'),(8814,15436,10,'Visual Effects Supervisor'),(8814,10765,2,'Director'),(8814,17880,4,'Screenplay'),(8814,21351,5,'Editor'),(8814,37298,8,'Costume Design'),(8814,47333,3,'Producer'),(8814,57264,4,'Screenplay'),(8814,141357,10,'Visual Effects Supervisor'),(8814,1037310,1,'Camera Operator'),(8814,1319198,8,'Costume Supervisor'),(8814,1325895,9,'Visual Effects Editor'),(8814,1334489,7,'Art Direction'),(8814,1334491,7,'Art Department Coordinator'),(8814,1334494,7,'Construction Coordinator'),(8814,1335195,10,'Visual Effects Supervisor'),(8814,1335556,6,'Supervising Sound Editor'),(8814,1336517,9,'Property Master'),(8814,1393324,9,'CG Supervisor'),(8814,1394130,6,'Sound Re-Recording Mixer'),(8814,1395449,10,'Visual Effects Producer'),(8814,1398934,1,'Steadicam Operator'),(8814,1398935,11,'Gaffer'),(8814,1398936,9,'Transportation Coordinator'),(8814,1399033,9,'Second Unit Cinematographer'),(8814,1402934,1,'Camera Operator'),(8814,1403800,6,'Foley'),(8814,1404539,9,'Stunt Coordinator'),(8814,1406988,9,'Unit Publicist'),(8814,1408204,6,'Foley'),(8814,1408373,6,'Sound Effects Editor'),(8814,1408378,6,'Sound Effects Editor'),(8814,1408793,8,'Makeup Artist'),(8814,1408799,6,'Sound Effects Editor'),(8814,1409294,5,'Dialogue Editor'),(8814,1411079,7,'Assistant Art Director'),(8814,1413451,6,'Supervising Sound Editor'),(8814,1413808,2,'Script Supervisor'),(8814,1415977,10,'Visual Effects Producer'),(8814,1425409,8,'Hairstylist'),(8814,1425410,8,'Hairstylist'),(8814,1425411,8,'Hairstylist'),(8814,1425413,8,'Makeup Artist'),(8814,1425477,6,'Dolby Consultant'),(8814,1425480,5,'Dialogue Editor'),(8814,1425481,6,'Sound Re-Recording Mixer'),(8814,1425482,10,'Animation Supervisor'),(8814,1425483,9,'CG Supervisor'),(8814,1425484,9,'CG Supervisor'),(8814,1425486,10,'Creature Design'),(8814,1425487,9,'Visual Effects Editor'),(8814,1425488,10,'Visual Effects Producer'),(8814,1425490,9,'Sequence Supervisor'),(8814,1425491,9,'Stunt Coordinator'),(8814,1425492,1,'Camera Operator'),(8814,1425500,1,'Camera Operator'),(8814,1425502,1,'Still Photographer'),(8814,1425503,11,'Gaffer'),(8814,1425504,11,'Gaffer'),(8814,1425505,11,'Rigging Gaffer'),(8814,1425507,11,'Rigging Gaffer'),(8814,1425509,8,'Costume Supervisor'),(8814,1425510,8,'Set Costumer'),(8814,1425511,8,'Set Costumer'),(8814,1425512,5,'Digital Intermediate'),(8814,1425513,6,'Music Editor'),(8814,1425514,9,'Transportation Coordinator'),(8814,1425515,2,'Script Supervisor'),(8814,1425519,3,'Location Manager'),(8427,11409,1,'Director of Photography'),(8427,21068,6,'Original Music Composer'),(8427,21158,4,'Screenplay'),(8427,21159,4,'Screenplay'),(8427,11372,5,'Editor'),(8427,31024,2,'Director'),(8427,31024,3,'Producer'),(8427,54904,4,'Screenplay'),(8427,57176,5,'Editor'),(8427,1007395,9,'Stunts'),(5137,1999,6,'Original Music Composer'),(5137,2624,3,'Casting'),(5137,6882,6,'Music Editor'),(5137,9159,6,'Sound Mixer'),(5137,9642,3,'Producer'),(5137,11300,10,'Visual Effects Supervisor'),(5137,12507,3,'Executive Producer'),(5137,13189,5,'Color Timer'),(5137,18250,3,'Producer'),(5137,23544,5,'Editor'),(5137,41378,2,'Director'),(5137,41378,4,'Writer'),(5137,41381,3,'Producer'),(5137,41382,3,'Producer'),(5137,41383,3,'Executive Producer'),(5137,41384,3,'Executive Producer'),(5137,25585,3,'Co-Producer'),(5137,41385,3,'Co-Producer'),(5137,41386,3,'Associate Producer'),(5137,41387,1,'Director of Photography'),(5137,41388,3,'Casting'),(5137,41389,7,'Production Design'),(5137,41389,8,'Costume Design'),(5137,41390,7,'Art Direction'),(5137,75115,1,'Grip'),(5137,83087,5,'Dialogue Editor'),(5137,83090,6,'Sound Designer'),(5137,83090,6,'Supervising Sound Editor'),(5137,92085,7,'Art Department Coordinator'),(5137,106933,9,'Utility Stunts'),(5137,117206,8,'Key Hair Stylist'),(5137,404709,8,'Hairstylist'),(5137,931858,9,'Visual Effects Art Director'),(5137,1032072,9,'Stunt Coordinator'),(5137,1125188,9,'Executive Visual Effects Producer'),(5137,1237135,3,'Production Coordinator'),(5137,1250729,8,'Costume Design'),(5137,1271607,9,'Video Assist Operator'),(5137,1378398,4,'Storyboard'),(5137,1385884,2,'Script Supervisor'),(5137,1403534,9,'Property Master'),(5137,1405242,5,'Digital Intermediate'),(5137,1409235,11,'Lighting Supervisor'),(5137,1411266,9,'Special Effects Coordinator'),(5137,1412460,5,'Editorial Services'),(5137,1413460,9,'Digital Effects Supervisor'),(5137,1415617,6,'Sound Effects Editor'),(5137,1422978,6,'ADR & Dubbing'),(5137,1425502,1,'Still Photographer'),(5137,1430497,1,'Camera Operator'),(5137,1436181,10,'Visual Effects Producer'),(5137,1447497,10,'Animation'),(5137,1447549,10,'Color Designer'),(5137,1447557,9,'Compositors'),(5137,1447612,9,'Visual Effects Editor'),(5137,1449000,9,'Compositors'),(5137,1455461,11,'Lighting Technician'),(5137,1455613,10,'Animation'),(5137,1460488,9,'Compositors'),(5137,1460669,6,'Orchestrator'),(5137,1462820,3,'Supervising Producer'),(5137,1483221,9,'CG Supervisor'),(5137,1536575,10,'Special Effects Supervisor'),(5137,1551906,11,'Rigging Grip'),(5137,1555680,9,'Additional Music'),(5137,1569426,9,'Armorer'),(5137,1578664,9,'Supervising Technical Director'),(5137,1580627,9,'Set Medic'),(5137,1588684,10,'Digital Compositors'),(5137,1611822,10,'Visual Effects Coordinator'),(5137,1614068,11,'Rigging Gaffer'),(5137,1615800,9,'Sequence Supervisor'),(5137,1677824,6,'Foley'),(5137,1685991,6,'Boom Operator'),(5137,1709342,7,'Conceptual Design'),(5137,1709343,7,'Set Designer'),(5137,1709344,7,'Standby Painter'),(5137,1709345,1,'First Assistant Camera'),(5137,1709346,8,'Assistant Costume Designer'),(5137,1709348,8,'Makeup Artist'),(5137,1709350,9,'Driver'),(5137,1709351,9,'Loader'),(5137,1709352,9,'Makeup Effects'),(5137,1709353,9,'Post Production Assistant'),(5137,1709354,9,'Post Production Supervisor'),(5137,1709355,9,'Software Engineer'),(5137,1709356,9,'Stand In'),(5137,1709357,9,'Stunts'),(5137,1709358,9,'Systems Administrators & Support'),(5137,1709359,3,'Production Manager'),(5137,1709359,2,'Assistant Director'),(5137,1709360,5,'Editorial Coordinator'),(5137,1710258,5,'First Assistant Editor'),(5137,1710259,11,'Best Boy Electric'),(5137,1710260,11,'Gaffer'),(5137,1710261,11,'Lighting Artist'),(5137,1710262,3,'Casting Associate'),(5137,1710263,3,'Production Supervisor'),(5137,1710264,3,'Researcher'),(5137,1710265,6,'First Assistant Sound Editor'),(5137,1710266,10,'3D Supervisor'),(5137,1710267,10,'Animation Supervisor'),(5137,1710268,10,'I/O Supervisor'),(5137,1710269,10,'Visual Effects'),(5137,1710270,9,'Digital Producer'),(3093,8383,7,'Set Decoration'),(3093,391,7,'Production Design'),(3093,960,6,'Original Music Composer'),(3093,6392,8,'Costume Design'),(3093,10492,4,'Author'),(3093,10969,3,'Casting'),(3093,30365,2,'Director'),(3093,30457,4,'Author'),(3093,30458,4,'Author'),(3093,30459,1,'Director of Photography'),(3093,30460,5,'Editor'),(3093,30461,5,'Editor'),(3093,30463,7,'Co-Art Director'),(3093,194881,7,'Art Department Manager'),(4614,1597,6,'Sound Designer'),(4614,1760,6,'Original Music Composer'),(4614,11079,7,'Set Decoration'),(4614,45543,4,'Screenplay'),(4614,7230,5,'Editor'),(4614,7230,5,'Additional Editing'),(4614,7231,5,'Editor'),(4614,4611,3,'Producer'),(4614,4657,10,'Special Effects Supervisor'),(4614,6044,3,'Casting'),(4614,6045,7,'Supervising Art Director'),(4614,8704,7,'Art Direction'),(4614,9559,9,'Stunts'),(4614,9269,7,'Production Design'),(4614,9271,7,'Art Direction'),(4614,13030,9,'Special Effects Coordinator'),(4614,13223,5,'Color Timer'),(4614,17829,7,'Supervising Art Director'),(4614,19567,9,'Stunt Coordinator'),(4614,23968,2,'Director'),(4614,23969,1,'Director of Photography'),(4614,29378,4,'Screenplay'),(4614,38568,4,'Screenplay'),(4614,38568,3,'Executive Producer'),(4614,51923,7,'Art Direction'),(4614,51982,3,'Casting Associate'),(4614,113043,6,'Foley'),(4614,60284,8,'Costume Design'),(4614,69925,6,'Songs'),(4614,92344,4,'Storyboard'),(4614,77949,9,'Additional Music'),(4614,92214,7,'Construction Coordinator'),(4614,572030,3,'Casting'),(4614,1190889,3,'Executive Producer'),(4614,1231182,3,'Production Supervisor'),(4614,1302645,6,'Boom Operator'),(4614,1314881,8,'Makeup Department Head'),(4614,1322139,7,'Assistant Art Director'),(4614,1325886,7,'Art Direction'),(4614,1338148,7,'Set Designer'),(4614,1345635,2,'Script Supervisor'),(4614,1350133,2,'Assistant Director'),(4614,1368864,6,'Sound Re-Recording Mixer'),(4614,1372838,5,'Dialogue Editor'),(4614,1377131,1,'Camera Operator'),(4614,1384365,9,'Scenic Artist'),(4614,1391761,7,'Sculptor'),(4614,1391763,9,'Property Master'),(4614,1395025,6,'Dolby Consultant'),(4614,1401297,1,'Camera Technician'),(4614,1401601,9,'Unit Publicist'),(4614,1401806,1,'Still Photographer'),(4614,1404313,9,'Visual Effects Editor'),(4614,1404844,10,'Visual Effects Supervisor'),(4614,1407878,6,'Sound Effects Editor'),(4614,1410568,9,'Sound Recordist'),(4614,1411272,1,'Steadicam Operator'),(4614,1411517,7,'Greensman'),(4614,1413451,6,'Supervising Sound Editor'),(4614,1413587,9,'Second Unit Cinematographer'),(4614,1417400,8,'Hairstylist'),(4614,1419718,8,'Key Hair Stylist'),(4614,1424186,3,'Location Manager'),(4614,1428140,7,'Leadman'),(4614,1494644,11,'Gaffer'),(4614,1508462,9,'Set Medic'),(4614,1536878,1,'First Assistant Camera'),(4614,1551815,6,'Orchestrator'),(4614,1552205,6,'First Assistant Sound Editor'),(4614,1561842,6,'Production Sound Mixer'),(4614,1568661,6,'Sound Engineer'),(4614,1569847,10,'Visual Effects Coordinator'),(4614,1570750,9,'Driver'),(4614,1574648,9,'Video Assist Operator'),(4614,1574652,11,'Lighting Technician'),(4614,1574652,9,'Utility Stunts'),(4614,1584973,8,'Set Dressing Artist'),(4614,1587343,1,'Grip'),(4614,1590106,11,'Rigging Gaffer'),(4614,1593084,9,'Systems Administrators & Support'),(4614,1605892,3,'Production Coordinator'),(4614,1611810,11,'Electrician'),(4614,1620012,10,'I/O Supervisor'),(4614,1631591,7,'Art Department Assistant'),(4614,1631592,7,'Art Department Coordinator'),(4614,1631594,7,'Location Scout'),(4614,1631595,7,'Production Illustrator'),(4614,1631597,1,'Helicopter Camera'),(4614,1631600,8,'Assistant Costume Designer'),(4614,1631601,8,'Hair Department Head'),(4614,1631602,8,'Makeup Artist'),(4614,1631605,9,'CG Supervisor'),(4614,1631606,9,'Craft Service'),(4614,1631607,9,'Loader'),(4614,1631608,9,'Production Office Assistant'),(4614,1631609,9,'Set Production Assistant'),(4614,1631610,9,'Stand In'),(4614,1631611,9,'Transportation Coordinator'),(4614,1631612,3,'Unit Production Manager'),(4614,1631613,11,'Best Boy Electric'),(4614,1631620,11,'Rigging Grip'),(4614,1631621,3,'Production Accountant'),(4614,1631622,3,'Production Manager'),(4614,1631623,3,'Researcher'),(4614,1631628,6,'Sound Mixer'),(4614,1632136,10,'Digital Compositors'),(4614,1632137,10,'Visual Effects Producer'),(4614,1632138,9,'Visual Effects Art Director'),(9824,469,6,'Original Music Composer'),(9824,1093,3,'Producer'),(9824,1258,1,'Director of Photography'),(9824,1993,3,'Producer'),(9824,3987,5,'Editor'),(9824,6044,3,'Casting'),(9824,10819,7,'Production Design'),(9824,40832,3,'Producer'),(9824,10809,3,'Executive Producer'),(9824,59646,2,'Director'),(9824,59647,4,'Novel'),(9824,59648,4,'Writer'),(9824,1451463,3,'Co-Producer'),(9008,27,4,'Screenplay'),(9008,1718,7,'Production Design'),(9008,638,4,'Screenplay'),(9008,638,2,'Director'),(9008,638,3,'Producer'),(9008,639,3,'Producer'),(9008,15841,5,'Editor'),(9008,10816,5,'Editor'),(9008,897,3,'Casting'),(9008,948,6,'Original Music Composer'),(9008,6688,8,'Costume Design'),(9008,6964,9,'Special Effects Coordinator'),(9008,9025,7,'Art Direction'),(9008,11099,1,'Director of Photography'),(9008,15843,7,'Supervising Art Director'),(9008,13458,9,'Stunt Coordinator'),(9008,17220,7,'Art Direction'),(9008,17816,5,'Editor'),(9008,36824,7,'Art Direction'),(9008,55998,6,'Original Music Composer'),(9008,72546,3,'Line Producer'),(9008,91065,7,'Construction Coordinator'),(9008,162532,7,'Assistant Art Director'),(9008,212137,2,'Assistant Director'),(9008,212137,3,'Co-Producer'),(9008,944682,3,'Associate Producer'),(9008,957799,8,'Assistant Costume Designer'),(9008,1075261,10,'Visual Effects Supervisor'),(9008,1371069,2,'Script Supervisor'),(9008,1393455,2,'Script Supervisor'),(9008,1403432,7,'Construction Coordinator'),(9008,1412188,8,'Hairstylist'),(9008,1412205,1,'Still Photographer'),(9008,1414518,10,'Digital Compositors'),(9008,1414541,8,'Makeup Artist'),(9008,1428974,3,'Unit Production Manager'),(9008,1433705,7,'Assistant Art Director'),(9008,1524189,8,'Set Costumer'),(9008,1535307,8,'Set Costumer'),(9008,1535952,3,'Casting Associate'),(9008,1536396,8,'Assistant Costume Designer'),(9008,1536398,8,'Set Costumer'),(1844,8374,3,'Executive Producer'),(1844,1113,3,'Casting'),(1844,8381,7,'Supervising Art Director'),(1844,8382,7,'Art Direction'),(1844,8384,7,'Set Decoration'),(1844,8386,3,'Production Supervisor'),(1844,142,4,'Screenplay'),(1844,376,3,'Executive Producer'),(1844,391,7,'Production Design'),(1844,738,3,'Producer'),(1844,4034,8,'Costume Design'),(1844,4249,3,'Casting'),(1844,5056,5,'Editor'),(1844,5144,4,'Screenplay'),(1844,5144,3,'Executive Producer'),(1844,5144,4,'Story'),(1844,5489,3,'Casting'),(1844,6060,10,'Special Effects Supervisor'),(1844,19155,6,'Original Music Composer'),(1844,8646,7,'Art Direction'),(1844,9854,6,'Supervising Sound Editor'),(1844,11225,7,'Assistant Art Director'),(1844,10199,8,'Makeup Artist'),(1844,10709,1,'Director of Photography'),(1844,10686,3,'Producer'),(1844,40693,9,'Utility Stunts'),(1844,40796,1,'Still Photographer'),(1844,40818,6,'Sound Re-Recording Mixer'),(1844,14461,9,'Stunts'),(1844,15026,2,'Assistant Director'),(1844,15358,9,'Stunt Coordinator'),(1844,15358,9,'Second Unit Cinematographer'),(1844,15148,2,'Director'),(1844,42263,9,'Digital Effects Supervisor'),(1844,47288,3,'Unit Production Manager'),(1844,60107,3,'Casting'),(1844,67675,3,'Producer'),(1844,67675,4,'Story'),(1844,104392,10,'Visual Effects Coordinator'),(1844,75802,8,'Hair Department Head'),(1844,76003,9,'Dialect Coach'),(1844,223505,6,'Assistant Sound Editor'),(1844,256928,10,'Visual Effects Supervisor'),(1844,1105636,3,'Location Manager'),(1844,1159914,6,'Dolby Consultant'),(1844,1327144,7,'Assistant Art Director'),(1844,1335179,7,'Art Department Coordinator'),(1844,1342595,6,'Boom Operator'),(1844,1373729,2,'Script Supervisor'),(1844,1401599,3,'Location Manager'),(1844,1403634,7,'Sculptor'),(1844,1404219,9,'Special Effects Coordinator'),(1844,1408816,1,'Camera Operator'),(1844,1408850,9,'Unit Publicist'),(1844,1410546,7,'Standby Painter'),(1844,1413507,5,'First Assistant Editor'),(1844,1415946,8,'Makeup Artist'),(1844,1415957,9,'Stunt Coordinator'),(1844,1422818,6,'Music Editor'),(1844,1425530,8,'Assistant Costume Designer'),(1844,1428506,1,'Steadicam Operator'),(1844,1430408,8,'Makeup Department Head'),(1844,1447019,11,'Electrician'),(1844,1453613,4,'Storyboard'),(1844,1460640,1,'Key Grip'),(1844,1467002,9,'Choreographer'),(1844,1532215,9,'Armorer'),(1844,1536557,11,'Gaffer'),(1844,1538374,2,'Script Coordinator'),(1844,1576017,6,'Sound Mixer'),(1844,1583799,9,'Scenic Artist'),(1844,1591769,3,'Unit Manager'),(1844,1592616,3,'Production Accountant'),(1844,1593072,7,'Art Direction'),(1844,1602729,5,'Dialogue Editor'),(1844,1602885,6,'Orchestrator'),(1844,1621238,5,'Color Timer'),(1844,1621243,6,'Foley'),(1844,1645459,10,'Digital Compositors'),(1844,1651235,9,'Score Engineer'),(1844,1662344,9,'Property Master'),(1844,1662360,3,'Production Coordinator'),(1844,1700803,4,'Storyboard'),(1844,1700807,8,'Makeup Artist'),(1844,1700809,8,'Hairstylist'),(1844,1700816,3,'Location Manager'),(1844,1710264,3,'Researcher'),(1844,1734650,11,'Rigging Gaffer'),(1844,1739826,9,'Set Production Assistant'),(1844,1770641,7,'Leadman'),(1844,1770642,7,'Painter'),(1844,1770643,1,'Camera Technician'),(1844,1770646,1,'First Assistant Camera'),(1844,1770648,1,'Underwater Camera'),(1844,1770650,9,'Carpenter'),(1844,1770651,9,'Craft Service'),(1844,1770654,9,'Loader'),(1844,1770659,9,'Transportation Coordinator'),(1844,1770660,9,'Video Assist Operator'),(1844,1770662,11,'Best Boy Electric'),(1844,1770669,3,'Location Manager'),(1844,1770670,3,'Production Manager'),(1844,1770672,10,'3D Animator'),(1844,1770674,10,'Animation Supervisor'),(1844,1770675,9,'Thanks'),(846,3989,8,'Costume Design'),(846,9968,7,'Set Decoration'),(846,12228,3,'Casting'),(846,12523,2,'Director'),(846,12524,4,'Screenplay'),(846,12524,3,'Producer'),(846,12524,4,'Story'),(846,12627,4,'Story'),(846,12629,3,'Associate Producer'),(846,12631,3,'Executive Producer'),(846,12632,3,'Producer'),(846,12633,6,'Original Music Composer'),(846,12634,1,'Director of Photography'),(846,12635,5,'Editor'),(846,12637,7,'Production Design'),(846,12638,7,'Art Direction'),(846,12639,7,'Art Direction'),(9703,5398,3,'Producer'),(9703,9152,6,'Original Music Composer'),(9703,12507,3,'Producer'),(9703,16787,3,'Producer'),(9703,19051,3,'Producer'),(9703,21339,4,'Author'),(9703,21340,4,'Author'),(9703,58656,2,'Director'),(9703,59983,5,'Editor'),(9703,59984,1,'Director of Photography'),(857,491,6,'Original Music Composer'),(857,2215,3,'Casting'),(857,284,3,'Producer'),(857,488,3,'Producer'),(857,488,2,'Director'),(857,492,1,'Director of Photography'),(857,493,5,'Editor'),(857,498,8,'Costume Design'),(857,2210,3,'Co-Producer'),(857,2216,6,'Sound Designer'),(857,2486,7,'Production Design'),(857,6048,3,'Producer'),(857,6060,10,'Special Effects Supervisor'),(857,7764,6,'Supervising Sound Editor'),(857,9987,3,'Producer'),(857,7849,7,'Set Decoration'),(857,8159,9,'Sound Design Assistant'),(857,8401,3,'Associate Producer'),(857,8401,3,'Production Manager'),(857,9264,2,'Assistant Director'),(857,10880,7,'Art Direction'),(857,12832,4,'Screenplay'),(857,15328,7,'Assistant Art Director'),(857,14657,6,'Foley'),(857,19291,7,'Supervising Art Director'),(857,20846,5,'First Assistant Editor'),(857,21983,3,'Co-Producer'),(857,25453,10,'Visual Effects Supervisor'),(857,60579,7,'Art Direction'),(857,61361,7,'Art Direction'),(857,66142,6,'Music Editor'),(857,75380,6,'Boom Operator'),(857,75804,3,'Associate Producer'),(857,91146,6,'Orchestrator'),(857,89426,9,'Mix Technician'),(857,132566,7,'Production Illustrator'),(857,142325,9,'Stunt Coordinator'),(857,404709,8,'Hairstylist'),(857,1095994,6,'Sound Mixer'),(857,1117347,9,'Armorer'),(857,1118383,11,'Electrician'),(857,1249773,8,'Makeup Artist'),(857,1322142,7,'Art Direction'),(857,1327842,5,'Assistant Editor'),(857,1339432,9,'Post Production Supervisor'),(857,1341865,2,'Script Supervisor'),(857,1354926,9,'Stunts'),(857,1389139,1,'Still Photographer'),(857,1403544,1,'First Assistant Camera'),(857,1404219,9,'Special Effects Coordinator'),(857,1405243,9,'Transportation Captain'),(857,1413042,3,'Location Manager'),(857,1417842,9,'Driver'),(857,1418480,9,'Visual Effects Art Director'),(857,1419114,9,'Dialect Coach'),(857,1422400,8,'Set Costumer'),(857,1425978,6,'Sound Re-Recording Mixer'),(857,1429549,5,'Color Timer'),(857,1456474,6,'ADR & Dubbing'),(857,1466988,9,'Unit Publicist'),(857,1478858,10,'Visual Effects Producer'),(857,1530363,9,'Visual Effects Editor'),(857,1535097,1,'Grip'),(857,1537139,5,'Dialogue Editor'),(857,1546756,9,'Stand In'),(857,1558210,9,'Production Controller'),(857,1561994,7,'Art Department Coordinator'),(857,1576007,1,'Helicopter Camera'),(857,1583799,9,'Utility Stunts'),(857,1586927,9,'Post Production Assistant'),(857,1593085,9,'Transportation Coordinator'),(857,1614160,1,'Additional Photography'),(857,1631609,9,'Set Production Assistant'),(857,1662298,7,'Art Department Assistant'),(857,1662299,7,'Construction Coordinator'),(857,1662300,7,'Painter'),(857,1662301,7,'Sculptor'),(857,1662303,1,'Camera Operator'),(857,1662311,8,'Assistant Costume Designer'),(857,1662313,8,'Costume Supervisor'),(857,1662318,8,'Prosthetic Supervisor'),(857,1662320,8,'Seamstress'),(857,1662324,8,'Set Dressing Artist'),(857,1662328,9,'Carpenter'),(857,1662332,9,'Chef'),(857,1662334,9,'Craft Service'),(857,1662341,9,'Loader'),(857,1662342,9,'Makeup Effects'),(857,1662344,9,'Property Master'),(857,1662351,9,'Video Assist Operator'),(857,1662357,11,'Best Boy Electric'),(857,1662359,3,'Production Accountant'),(857,1662360,3,'Production Coordinator'),(857,1662377,4,'Storyboard'),(857,1662380,9,'Machinist'),(3981,37,6,'Original Music Composer'),(3981,1060,1,'Director of Photography'),(3981,1530,3,'Casting'),(3981,2243,7,'Production Design'),(3981,2487,3,'Producer'),(3981,3965,3,'Casting'),(3981,7735,8,'Costume Design'),(3981,7236,7,'Assistant Art Director'),(3981,8794,7,'Art Direction'),(3981,9966,5,'Additional Editing'),(3981,8747,3,'Executive Producer'),(3981,9991,8,'Makeup Artist'),(3981,13223,5,'Color Timer'),(3981,13588,7,'Set Decoration'),(3981,17698,2,'Director'),(3981,17698,3,'Producer'),(3981,17699,4,'Storyboard'),(3981,17699,9,'Second Unit Cinematographer'),(3981,17699,3,'Co-Producer'),(3981,20297,5,'Editor'),(3981,21514,6,'Orchestrator'),(3981,28041,8,'Assistant Costume Designer'),(3981,29019,7,'Art Direction'),(3981,33437,3,'Producer'),(3981,34481,3,'Producer'),(3981,34482,3,'Executive Producer'),(3981,34483,3,'Executive Producer'),(3981,34484,5,'Editor'),(3981,34528,3,'Production Coordinator'),(3981,41324,8,'Costume Supervisor'),(3981,51302,9,'Stunts'),(3981,113046,6,'Sound Effects Editor'),(3981,59963,3,'Producer'),(3981,63352,4,'Screenplay'),(3981,63352,4,'Story'),(3981,63353,4,'Story'),(3981,91142,6,'Music Supervisor'),(3981,95828,7,'Art Department Coordinator'),(3981,103957,7,'Construction Coordinator'),(3981,137900,4,'Screenplay'),(3981,137901,4,'Story'),(3981,1029026,3,'Unit Production Manager'),(3981,1076157,10,'Visual Effects Coordinator'),(3981,1276817,7,'Set Designer'),(3981,1290740,3,'Casting Associate'),(3981,1291698,3,'Researcher'),(3981,1345608,9,'Stunt Coordinator'),(3981,1352959,8,'Makeup Department Head'),(3981,1376818,6,'Foley'),(3981,1386920,1,'Still Photographer'),(3981,1392093,10,'Digital Compositors'),(3981,1398982,9,'Unit Publicist'),(3981,1401353,8,'Key Hair Stylist'),(3981,1401884,7,'Sculptor'),(3981,1408326,9,'Visual Effects Editor'),(3981,1413176,9,'Executive Visual Effects Producer'),(3981,1417415,7,'Property Master'),(3981,1425911,6,'Dolby Consultant'),(3981,1442097,8,'Hairstylist'),(3981,1462925,8,'Hair Department Head'),(3981,1535398,1,'Steadicam Operator'),(3981,1546458,6,'Supervising Sound Editor'),(3981,1548694,9,'Sound Recordist'),(3981,1553857,5,'Dialogue Editor'),(3981,1558193,7,'Greensman'),(3981,1566253,10,'Visual Effects Supervisor'),(3981,1634403,2,'Assistant Director'),(3981,1635458,6,'Production Sound Mixer'),(3981,1637983,9,'Carpenter'),(3981,1735726,11,'Rigging Grip'),(3981,1737226,7,'Art Department Assistant'),(3981,1737228,7,'Location Scout'),(3981,1737229,7,'Painter'),(3981,1737230,7,'Production Illustrator'),(3981,1737232,1,'First Assistant Camera'),(3981,1737233,8,'Set Costumer'),(3981,1737234,8,'Set Dressing Artist'),(3981,1737810,9,'Choreographer'),(3981,1737811,9,'Digital Effects Supervisor'),(3981,1737812,9,'Driver'),(3981,1737813,9,'Loader'),(3981,1737814,9,'Post Production Assistant'),(3981,1737815,9,'Propmaker'),(3981,1737818,9,'Set Medic'),(3981,1737819,9,'Set Production Assistant'),(3981,1737820,9,'Stand In'),(3981,1737821,9,'Transportation Coordinator'),(3981,1737822,9,'Video Assist Operator'),(3981,1737824,11,'Electrician'),(3981,1737825,3,'Location Manager'),(3981,1737828,3,'Production Supervisor'),(3981,1737829,6,'Boom Operator'),(3981,1737830,6,'Assistant Sound Editor'),(3981,1737834,10,'Visual Effects Producer'),(3981,1737836,9,'Thanks'),(425,3393,6,'Original Music Composer'),(425,5713,2,'Director'),(425,5714,2,'Co-Director'),(425,5715,4,'Screenplay'),(425,5715,4,'Story'),(425,5716,4,'Screenplay'),(425,5717,4,'Screenplay'),(425,5719,3,'Producer'),(425,5720,3,'Executive Producer'),(425,5718,3,'Associate Producer'),(425,5721,5,'Editor'),(425,9651,6,'Sound Effects Editor'),(425,13223,5,'Color Timer'),(425,15768,5,'Associate Editor'),(425,53899,3,'Casting Associate'),(425,113048,9,'Sound Recordist'),(425,60270,7,'Background Designer'),(425,92376,6,'Foley'),(425,71800,9,'Post Production Supervisor'),(425,83085,6,'ADR Editor'),(425,87059,10,'Animation'),(425,87059,9,'Additional Writing'),(425,229962,9,'Additional Writing'),(425,562307,9,'Additional Writing'),(425,930567,4,'Storyboard'),(425,1099438,6,'Musician'),(425,1308375,6,'Foley Editor'),(425,1361676,6,'Scoring Mixer'),(425,1390523,6,'Sound Designer'),(425,1390523,6,'Supervising Sound Editor'),(425,1392919,6,'Music Editor'),(425,1447407,10,'Visual Development'),(425,1498603,7,'Production Design'),(425,1547520,6,'First Assistant Sound Editor'),(425,1562259,6,'Sound Engineer'),(425,1604000,9,'Additional Writing'),(425,1604000,10,'Lead Animator'),(425,1604001,9,'Additional Writing'),(425,1604002,9,'Additional Writing'),(425,1604003,7,'Set Dresser'),(425,1604004,9,'Additional Music'),(425,1604005,9,'Sequence Supervisor'),(425,1604006,9,'Systems Administrators & Support'),(425,1604007,2,'Layout'),(425,1604008,5,'First Assistant Editor'),(425,1604009,11,'Lighting Technician'),(425,1604010,3,'Production Accountant'),(425,1604011,3,'Production Coordinator'),(425,1604012,3,'Production Manager'),(425,1604013,3,'Production Supervisor'),(425,1604014,3,'Researcher'),(425,1604015,6,'Orchestrator'),(425,1604016,10,'Digital Compositors'),(425,1604018,9,'Translator'),(425,1604020,10,'Modeling'),(425,1733142,5,'Negative Cutter'),(425,1854350,3,'Assistant Production Manager'),(425,1854352,6,'Apprentice Sound Editor'),(6171,1720,3,'Casting'),(6171,348,4,'Screenplay'),(6171,1213,6,'Original Music Composer'),(6171,2243,7,'Production Design'),(6171,2702,1,'Director of Photography'),(6171,3027,4,'Novel'),(6171,8844,2,'Director'),(6171,8844,4,'Screenplay'),(6171,8844,3,'Producer'),(6171,16329,3,'Producer'),(6171,6207,7,'Construction Coordinator'),(6171,9966,5,'Editor'),(6171,11300,10,'Visual Effects Supervisor'),(6171,11713,7,'Supervising Art Director'),(6171,11822,7,'Set Decoration'),(6171,13050,9,'Dialect Coach'),(6171,15017,8,'Makeup Department Head'),(6171,42034,6,'Sound Re-Recording Mixer'),(6171,18926,3,'Production Manager'),(6171,33456,8,'Costume Design'),(6171,22061,7,'Art Direction'),(6171,40614,7,'Assistant Art Director'),(6171,25453,10,'Visual Effects Supervisor'),(6171,48457,5,'Editor'),(6171,112656,8,'Makeup Artist'),(6171,112657,8,'Hairstylist'),(6171,112660,9,'Makeup Effects'),(6171,25405,9,'Makeup Effects'),(6171,83083,6,'ADR & Dubbing'),(6171,91886,5,'Dialogue Editor'),(6171,95841,5,'First Assistant Editor'),(6171,97617,9,'Makeup Effects'),(6171,229167,9,'Stunt Coordinator'),(6171,970003,9,'Second Unit Cinematographer'),(6171,1007395,9,'Stunts'),(6171,1023364,10,'Visual Effects Producer'),(6171,1070152,9,'Property Master'),(6171,1265391,2,'Script Supervisor'),(6171,1271920,9,'Special Effects Coordinator'),(6171,1309482,10,'Creature Design'),(6171,1319153,7,'Set Designer'),(6171,1319634,1,'Camera Operator'),(6171,1328137,7,'Art Direction'),(6171,1338372,6,'Foley'),(6171,1341789,10,'Visual Effects Supervisor'),(6171,1342663,6,'Music Editor'),(6171,1344264,6,'Sound Designer'),(6171,1367493,6,'Foley'),(6171,1367494,6,'Sound Effects Editor'),(6171,1378171,6,'Sound Re-Recording Mixer'),(6171,1378689,9,'Scenic Artist'),(6171,1391699,1,'Still Photographer'),(6171,1392916,1,'Camera Operator'),(6171,1394942,7,'Greensman'),(6171,1394974,1,'Camera Operator'),(6171,1400012,9,'Unit Publicist'),(6171,1401105,9,'Visual Effects Editor'),(6171,1401391,9,'Scenic Artist'),(6171,1401395,9,'Property Master'),(6171,1401595,11,'Gaffer'),(6171,1403438,6,'ADR & Dubbing'),(6171,1403440,6,'Sound Designer'),(6171,1404225,10,'Visual Effects Producer'),(6171,1406596,7,'Assistant Art Director'),(6171,1407805,9,'Makeup Effects'),(6171,1408182,7,'Set Designer'),(6171,1408183,7,'Set Designer'),(6171,1410328,9,'Makeup Effects'),(6171,1417400,8,'Hairstylist'),(6171,1418404,11,'Rigging Gaffer'),(6171,1425900,9,'Makeup Effects'),(6171,1425911,6,'Dolby Consultant'),(6171,1426760,7,'Set Decoration'),(6171,1426761,8,'Hairstylist'),(6171,1426762,8,'Makeup Artist'),(6171,1426763,7,'Greensman'),(6171,1426764,7,'Greensman'),(6171,1426765,7,'Greensman'),(6171,1426766,9,'Scenic Artist'),(6171,1426769,9,'CG Supervisor'),(6171,1426770,9,'Visual Effects Editor'),(6171,1426772,10,'Visual Effects Producer'),(6171,1426773,10,'Animation Supervisor'),(6171,1426774,9,'Stunt Coordinator'),(6171,1426781,9,'Transportation Coordinator'),(6171,1426782,2,'Script Supervisor'),(6171,1426783,3,'Location Manager'),(6171,1579180,1,'First Assistant Camera'),(603,123,3,'Executive Producer'),(603,1091,3,'Producer'),(603,1262,3,'Casting'),(603,1296,3,'Executive Producer'),(603,4671,5,'Editor'),(603,4949,6,'Original Music Composer'),(603,6209,8,'Costume Design'),(603,6411,7,'Set Designer'),(603,9341,1,'Director of Photography'),(603,10950,3,'Executive Producer'),(603,8299,3,'Executive Producer'),(603,9339,2,'Director'),(603,9339,3,'Executive Producer'),(603,9339,4,'Writer'),(603,9340,2,'Director'),(603,9340,3,'Executive Producer'),(603,9340,4,'Writer'),(603,9342,3,'Casting'),(603,9343,7,'Production Design'),(603,9344,7,'Art Direction'),(603,9345,7,'Art Direction'),(603,9346,7,'Set Decoration'),(603,9349,6,'Sound Designer'),(603,9349,6,'Supervising Sound Editor'),(603,9351,6,'Music Editor'),(603,9357,9,'Stunt Coordinator'),(603,9420,7,'Assistant Art Director'),(603,9593,10,'Special Effects Supervisor'),(603,113051,6,'Sound Effects Editor'),(603,57526,3,'Co-Producer'),(603,62740,3,'Associate Producer'),(603,88435,3,'Unit Production Manager'),(603,88435,3,'Associate Producer'),(603,91093,5,'Dialogue Editor'),(603,105108,10,'Visual Effects Supervisor'),(603,143915,6,'Sound Effects Editor'),(603,1338152,6,'Sound Effects Editor'),(603,1341854,6,'Sound Re-Recording Mixer'),(603,1341858,6,'Sound Re-Recording Mixer'),(603,1342626,6,'Sound Re-Recording Mixer'),(603,1378225,5,'Dialogue Editor'),(603,1391711,7,'Set Designer'),(603,1392669,7,'Assistant Art Director'),(603,1392681,7,'Set Designer'),(603,1392692,7,'Set Designer'),(603,1392718,1,'Still Photographer'),(603,1392719,1,'Camera Operator'),(603,1392719,1,'Steadicam Operator'),(603,1392722,11,'Gaffer'),(603,1412758,3,'Publicist'),(603,1418264,8,'Hairstylist'),(603,1418270,7,'Assistant Art Director'),(603,1434214,9,'Visual Effects Editor'),(603,1454936,10,'Special Effects Supervisor'),(603,1470969,9,'Property Master'),(603,1470982,2,'Script Supervisor'),(603,1536539,8,'Makeup Artist'),(603,1537143,6,'Music Editor'),(603,1569080,3,'Location Manager'),(603,1575727,7,'Set Decoration'),(603,1578018,1,'Camera Operator'),(603,1619685,8,'Costume Supervisor'),(603,1711544,7,'Art Department Coordinator'),(603,1711545,7,'Set Designer'),(603,1711546,7,'Set Designer'),(603,1711547,7,'Set Decoration'),(603,1711549,9,'Sound Recordist'),(603,1711550,6,'Boom Operator'),(603,1711551,6,'Boom Operator'),(603,1711553,9,'Special Effects Coordinator'),(603,1711577,3,'Production Coordinator'),(568,142,4,'Screenplay'),(568,339,3,'Producer'),(568,339,9,'Executive Music Producer'),(568,437,7,'Art Direction'),(568,671,6,'Sound Effects Editor'),(568,1060,1,'Director of Photography'),(568,1729,6,'Original Music Composer'),(568,2874,3,'Casting'),(568,3275,3,'Casting'),(568,4505,3,'Associate Producer'),(568,6159,2,'Director'),(568,6184,3,'Executive Producer'),(568,6184,9,'Second Unit Cinematographer'),(568,6187,3,'Associate Producer'),(568,6188,3,'Associate Producer'),(568,6189,5,'Editor'),(568,6190,5,'Editor'),(568,6192,8,'Costume Design'),(568,7854,4,'Screenplay'),(568,7855,7,'Production Design'),(568,7856,7,'Art Direction'),(568,7857,7,'Set Decoration'),(568,7858,8,'Makeup Artist'),(568,7859,9,'Special Effects Coordinator'),(568,7860,10,'Visual Effects'),(568,7860,9,'Systems Administrators & Support'),(568,7861,4,'Novel'),(568,7852,4,'Novel'),(568,7864,9,'Stunts'),(568,13165,6,'Sound Re-Recording Mixer'),(568,13930,2,'Assistant Director'),(568,18125,8,'Assistant Costume Designer'),(568,31122,3,'Unit Production Manager'),(568,83786,9,'Thanks'),(568,91144,6,'Scoring Mixer'),(568,108146,1,'First Assistant Camera'),(568,554887,6,'Supervising Sound Editor'),(568,1108989,5,'First Assistant Editor'),(568,1144716,7,'Art Department Coordinator'),(568,1183391,1,'Still Photographer'),(568,1249293,4,'Storyboard'),(568,1299200,7,'Construction Coordinator'),(568,1328406,8,'Costume Supervisor'),(568,1335122,9,'Special Sound Effects'),(568,1339326,5,'Dialogue Editor'),(568,1341805,9,'Property Master'),(568,1342619,7,'Painter'),(568,1345595,6,'Sound Re-Recording Mixer'),(568,1378228,6,'Sound Re-Recording Mixer'),(568,1392094,9,'Digital Effects Supervisor'),(568,1393455,2,'Script Supervisor'),(568,1394958,3,'Production Coordinator'),(568,1395451,10,'Visual Effects Producer'),(568,1397837,7,'Set Designer'),(568,1399328,9,'Transportation Coordinator'),(568,1400362,3,'Production Supervisor'),(568,1400364,7,'Set Designer'),(568,1400365,7,'Leadman'),(568,1400366,5,'Dialogue Editor'),(568,1400367,5,'Dialogue Editor'),(568,1400368,9,'Sound Recordist'),(568,1400369,6,'Sound Re-Recording Mixer'),(568,1400370,9,'Visual Effects Editor'),(568,1400371,9,'Stunt Coordinator'),(568,1400372,9,'Stunt Coordinator'),(568,1400373,1,'Camera Operator'),(568,1400374,1,'Camera Operator'),(568,1400375,1,'Camera Operator'),(568,1400380,8,'Set Costumer'),(568,1400383,9,'Studio Teachers'),(568,1400384,9,'Unit Publicist'),(568,1400384,3,'Publicist'),(568,1400385,3,'Location Manager'),(568,1402015,8,'Key Hair Stylist'),(568,1402031,10,'Visual Effects Supervisor'),(568,1405373,8,'Hairstylist'),(568,1462281,6,'Orchestrator'),(568,1462700,9,'Video Assist Operator'),(568,1534668,6,'Music Editor'),(568,1554354,9,'Set Medic'),(568,1555639,9,'Transportation Captain'),(568,1564149,1,'Steadicam Operator'),(568,1596321,6,'Foley Editor'),(568,1597183,11,'Rigging Grip'),(568,1633944,1,'Key Grip'),(568,1635458,6,'Sound Mixer'),(568,1691213,11,'Electrician'),(568,1724281,11,'Gaffer'),(568,1735467,9,'Production Controller'),(568,1746540,8,'Set Dressing Artist'),(568,1851155,3,'Casting Associate'),(568,1852066,7,'Art Department Assistant'),(568,1852067,7,'Construction Foreman'),(568,1852068,7,'Greensman'),(568,1852071,1,'Camera Technician'),(568,1852075,1,'Grip'),(568,1852078,8,'Seamstress'),(568,1852081,9,'Craft Service'),(568,1852084,9,'Driver'),(568,1852085,9,'Loader'),(568,1852086,9,'Propmaker'),(568,1852087,9,'Set Production Assistant'),(568,1852089,5,'Color Timer'),(568,1852091,11,'Best Boy Electric'),(568,1852094,11,'Rigging Gaffer'),(568,1852095,6,'Boom Operator'),(568,1852096,10,'Digital Compositors'),(568,1852097,10,'Special Effects Supervisor'),(568,1852098,10,'Visual Effects Coordinator'),(568,1852099,9,'Machinist'),(9021,1097,3,'Casting'),(9021,2626,7,'Production Design'),(9021,2723,1,'Director of Photography'),(9021,4664,4,'Screenplay'),(9021,9204,6,'Original Music Composer'),(9021,18387,5,'Editor'),(9021,20908,3,'Producer'),(9021,21146,3,'Producer'),(9021,27583,5,'Editor'),(9021,50094,9,'Stunt Coordinator'),(9021,15045,2,'Director'),(9021,56643,4,'Screenplay'),(9021,56644,3,'Producer'),(9021,56645,3,'Executive Producer'),(9021,56646,3,'Executive Producer'),(9021,56647,3,'Executive Producer'),(9021,56648,3,'Executive Producer'),(9021,60714,7,'Set Decoration'),(9021,74976,6,'Sound Re-Recording Mixer'),(9021,74978,6,'Sound Re-Recording Mixer'),(9021,83091,6,'Sound Re-Recording Mixer'),(9021,111213,6,'Music Supervisor'),(9021,1371063,8,'Costume Design'),(9021,1372884,1,'Camera Operator'),(9021,1372884,1,'Steadicam Operator'),(9021,1376276,6,'Music Editor'),(9021,1376277,6,'Music Editor'),(9021,1378168,6,'Supervising Sound Editor'),(9021,1394973,1,'Still Photographer'),(9021,1397300,2,'Script Supervisor'),(9021,1400558,6,'Sound Designer'),(9021,1400558,6,'Supervising Sound Editor'),(9021,1407016,5,'Dialogue Editor'),(9021,1415618,6,'Sound Effects Editor'),(9021,1536550,6,'Sound Effects Editor'),(9021,1536880,6,'Sound Effects Editor'),(9021,1561882,6,'Sound mixer'),(9489,6410,3,'Casting'),(9489,1528,6,'Original Music Composer'),(9489,3104,6,'Production Sound Mixer'),(9489,3175,5,'Editor'),(9489,7200,3,'Producer'),(9489,8885,8,'Costume Design'),(9489,9248,4,'Screenplay'),(9489,9248,2,'Director'),(9489,9248,3,'Producer'),(9489,15433,5,'Dialogue Editor'),(9489,17221,7,'Set Decoration'),(9489,23226,3,'Executive Producer'),(9489,23759,7,'Production Design'),(9489,23969,1,'Director of Photography'),(9489,57678,4,'Screenplay'),(9489,57678,3,'Executive Producer'),(9489,57677,4,'Theatre Play'),(9489,57682,3,'Executive Producer'),(9489,60135,7,'Set Decoration'),(9489,62061,7,'Art Direction'),(9489,92371,6,'Supervising Sound Editor'),(9489,92371,6,'Sound Re-Recording Mixer'),(9489,92377,6,'Sound Re-Recording Mixer'),(9489,92380,6,'Sound Effects Editor'),(9489,92391,5,'Dialogue Editor'),(9489,223989,3,'Unit Production Manager'),(9489,958273,2,'Script Supervisor'),(9489,1194262,1,'Still Photographer'),(9489,1393558,7,'Greensman'),(9489,1406904,5,'First Assistant Editor'),(9489,1468026,7,'Art Direction'),(9489,1547379,6,'Music Supervisor'),(9342,1705,4,'Screenplay'),(9342,1705,4,'Story'),(9342,1706,4,'Screenplay'),(9342,1706,4,'Story'),(9342,488,3,'Executive Producer'),(9342,1729,6,'Original Music Composer'),(9342,2212,3,'Executive Producer'),(9342,2986,3,'Producer'),(9342,8701,3,'Executive Producer'),(9342,10702,2,'Director'),(9342,10709,1,'Director of Photography'),(9342,11813,3,'Producer'),(9342,17399,5,'Editor'),(9342,18456,4,'Novel'),(9342,57377,4,'Story'),(9342,57378,4,'Screenplay'),(5551,190,2,'Director'),(5551,190,3,'Producer'),(5551,195,6,'Original Music Composer'),(5551,356,1,'Director of Photography'),(5551,369,7,'Production Design'),(5551,384,5,'Editor'),(5551,423,3,'Casting'),(5551,370,7,'Art Direction'),(5551,375,6,'Supervising Sound Editor'),(5551,461,8,'Costume Design'),(5551,900,6,'Sound Designer'),(5551,900,6,'Sound Re-Recording Mixer'),(5551,14342,7,'Set Decoration'),(5551,29525,3,'Producer'),(5551,44064,4,'Screenplay'),(5551,44065,4,'Screenplay'),(5551,113044,5,'Dialogue Editor'),(5551,113055,5,'Dialogue Editor'),(5551,83088,5,'Dialogue Editor'),(5551,128103,3,'Unit Production Manager'),(5551,1368865,6,'Supervising Sound Editor'),(5551,1377125,5,'Dialogue Editor'),(5551,1377126,6,'Boom Operator'),(5551,1377140,2,'Script Supervisor'),(5551,1378828,6,'Sound Re-Recording Mixer'),(5551,1458579,6,'Production Sound Mixer'),(5551,1464344,3,'Executive In Charge Of Production'),(5551,1538430,1,'Still Photographer'),(9350,1096,7,'Production Design'),(9350,3986,3,'Executive Producer'),(9350,3995,8,'Makeup Department Head'),(9350,7735,8,'Costume Design'),(9350,7726,3,'Producer'),(9350,7715,5,'Editor'),(9350,5492,7,'Art Direction'),(9350,5673,7,'Assistant Art Director'),(9350,6044,3,'Casting'),(9350,6880,7,'Set Decoration'),(9350,7020,6,'Original Music Composer'),(9350,10703,4,'Screenplay'),(9350,10703,4,'Screenstory'),(9350,16483,4,'Screenplay'),(9350,16938,2,'Director'),(9350,16938,3,'Producer'),(9350,21516,1,'Director of Photography'),(9350,25061,7,'Art Direction'),(9350,27156,7,'Art Direction'),(9350,34336,3,'Production Manager'),(9350,57401,4,'Author'),(9350,74323,8,'Makeup Department Head'),(9350,1182551,7,'Set Decoration'),(9350,1206190,9,'Makeup Effects'),(9350,1333931,9,'Property Master'),(9350,1336513,7,'Set Designer'),(9350,1395269,10,'Visual Effects Supervisor'),(9350,1411166,8,'Hairstylist'),(9350,1411170,3,'Production Supervisor'),(9208,2044,1,'Director of Photography'),(9208,947,6,'Original Music Composer'),(9208,4186,5,'Editor'),(9208,6048,3,'Producer'),(9208,8751,5,'Editor'),(9208,8752,5,'Editor'),(9208,11401,2,'Director'),(9208,11404,3,'Producer'),(9208,21206,4,'Screenplay'),(9208,32532,3,'Executive Producer'),(9208,21983,3,'Producer'),(9208,35510,3,'Producer'),(9208,56995,3,'Executive Producer'),(9208,56996,3,'Executive Producer'),(9208,56998,3,'Executive Producer'),(9208,56999,3,'Executive Producer'),(9208,1451661,9,'Compositors'),(4244,12962,2,'Director'),(4244,12962,3,'Producer'),(4244,21003,3,'Producer'),(4244,20842,3,'Executive Producer'),(4244,17629,1,'Camera Operator'),(4244,18350,3,'Producer'),(4244,21220,3,'Executive Producer'),(4244,35664,3,'Producer'),(4244,35664,2,'Assistant Director'),(4244,35665,3,'Producer'),(4244,35666,3,'Producer'),(4244,36805,4,'Writer'),(4244,999690,9,'Stunts'),(4244,1090382,9,'Stand In'),(4244,1129737,9,'Stand In'),(4244,1327842,5,'Assistant Editor'),(4244,1462675,9,'Utility Stunts'),(4244,1492753,6,'Orchestrator'),(4244,1548698,6,'Orchestrator'),(4244,1648100,1,'Grip'),(4244,1768130,6,'Original Music Composer'),(1852,4023,3,'Casting'),(1852,1152,2,'Director'),(1852,2161,3,'Producer'),(1852,5914,3,'Casting'),(1852,3192,3,'Casting'),(1852,3285,1,'Director of Photography'),(1852,4151,8,'Set Costumer'),(1852,5328,3,'Casting'),(1852,5381,3,'Producer'),(1852,5382,3,'Producer'),(1852,6051,5,'Editor'),(1852,7045,6,'Original Music Composer'),(1852,8285,7,'Art Direction'),(1852,12258,7,'Set Decoration'),(1852,16551,8,'Hairstylist'),(1852,19689,3,'Casting'),(1852,20292,7,'Production Design'),(1852,20295,3,'Producer'),(1852,32282,8,'Hair Department Head'),(1852,41324,8,'Costume Design'),(1852,53645,5,'Editor'),(1852,989235,4,'Writer'),(1852,1319743,8,'Makeup Designer'),(1852,1326407,8,'Costume Supervisor'),(1852,1341861,8,'Set Costumer'),(1852,1406893,8,'Key Hair Stylist'),(1852,1421237,8,'Makeup Artist'),(1852,1525975,8,'Assistant Costume Designer'),(1852,1525977,8,'Set Costumer'),(1852,1525979,8,'Set Costumer'),(1852,1525985,8,'Makeup Artist'),(345,2215,3,'Casting'),(345,240,2,'Director'),(345,240,4,'Screenplay'),(345,240,3,'Producer'),(345,5013,4,'Writer'),(345,5014,4,'Screenplay'),(345,5015,3,'Producer'),(345,5016,3,'Executive Producer'),(345,5017,6,'Original Music Composer'),(345,5018,1,'Director of Photography'),(345,5019,5,'Editor'),(345,5019,6,'Sound Mixer'),(345,5020,3,'Casting'),(345,5021,7,'Production Design'),(345,5022,7,'Production Design'),(345,1340118,6,'Sound Mixer'),(345,1561880,6,'Sound Mixer'),(345,1877116,6,'Sound Mixer'),(1880,8328,4,'Screenplay'),(1880,8328,2,'Director'),(1880,1728,1,'Director of Photography'),(1880,7728,6,'Original Music Composer'),(1880,12882,3,'Producer'),(1880,17399,5,'Editor'),(1880,19423,3,'Executive Producer'),(1880,19736,3,'Producer'),(1880,8300,4,'Screenplay'),(1880,8300,4,'Story'),(9440,8621,5,'Editor'),(9440,3769,1,'Director of Photography'),(9440,5342,2,'Director'),(9440,5342,3,'Producer'),(9440,6918,6,'Original Music Composer'),(9440,8880,3,'Producer'),(9440,14093,3,'Producer'),(9440,58251,4,'Screenplay'),(6795,2952,3,'Casting'),(6795,508,4,'Screenplay'),(6795,3113,1,'Director of Photography'),(6795,4500,6,'Original Music Composer'),(6795,4767,3,'Producer'),(6795,13304,7,'Production Design'),(6795,9184,3,'Producer'),(6795,9551,8,'Costume Design'),(6795,11455,5,'Editor'),(6795,14348,7,'Set Decoration'),(6795,14349,7,'Supervising Art Director'),(6795,14350,7,'Art Direction'),(6795,15277,2,'Director'),(6795,42356,4,'Novel'),(6795,42357,3,'Producer'),(6795,51296,4,'Screenplay'),(6795,68016,6,'Orchestrator'),(6795,117409,8,'Makeup Department Head'),(6795,134564,8,'Makeup Artist'),(6795,1190241,8,'Costume Supervisor'),(6795,1408293,8,'Hairstylist'),(6795,1471302,8,'Hairstylist'),(6795,1471304,9,'Unit Publicist'),(6795,1471306,2,'Script Supervisor'),(550,376,3,'Executive Producer'),(550,605,8,'Costume Design'),(550,1254,3,'Producer'),(550,1303,7,'Production Design'),(550,7237,7,'Set Decoration'),(550,5714,10,'Animation Supervisor'),(550,7467,2,'Director'),(550,7537,6,'Sound Effects Editor'),(550,7468,4,'Novel'),(550,7469,4,'Screenplay'),(550,7474,3,'Producer'),(550,7475,3,'Producer'),(550,7477,6,'Original Music Composer'),(550,7478,6,'Original Music Composer'),(550,7479,1,'Director of Photography'),(550,7480,5,'Editor'),(550,7481,3,'Casting'),(550,7763,6,'Sound Editor'),(550,7763,6,'Sound Designer'),(550,7764,6,'Sound Editor'),(550,8850,3,'Unit Production Manager'),(550,12371,9,'Utility Stunts'),(550,10855,7,'Art Direction'),(550,34528,3,'Production Supervisor'),(550,37925,1,'Camera Operator'),(550,51333,11,'Gaffer'),(550,60937,7,'Assistant Art Director'),(550,83072,7,'Leadman'),(550,169628,9,'Stunts'),(550,423640,5,'First Assistant Editor'),(550,554001,9,'Thanks'),(550,562696,7,'Art Department Assistant'),(550,578767,6,'Boom Operator'),(550,1002652,10,'Visual Effects Supervisor'),(550,1172443,1,'Still Photographer'),(550,1181128,9,'Additional Music'),(550,1325234,8,'Makeup Artist'),(550,1325655,8,'Costume Supervisor'),(550,1327146,8,'Set Costumer'),(550,1341851,7,'Construction Coordinator'),(550,1341856,6,'Foley'),(550,1342072,9,'Special Effects Coordinator'),(550,1342601,10,'Digital Compositors'),(550,1352424,9,'Mix Technician'),(550,1357044,7,'Production Illustrator'),(550,1376902,6,'ADR Supervisor'),(550,1378726,9,'Dialect Coach'),(550,1389534,5,'Dialogue Editor'),(550,1390518,7,'Set Designer'),(550,1397810,7,'Sculptor'),(550,1398980,9,'Transportation Coordinator'),(550,1401109,1,'Steadicam Operator'),(550,1403191,10,'Visual Effects Producer'),(550,1404546,6,'Music Editor'),(550,1408290,8,'Hairstylist'),(550,1413224,8,'Key Hair Stylist'),(550,1422059,7,'Greensman'),(550,1440848,10,'Visual Effects'),(550,1447557,9,'Compositors'),(550,1463313,4,'Storyboard'),(550,1463325,7,'Construction Foreman'),(550,1474687,3,'Associate Producer'),(550,1493771,1,'First Assistant Camera'),(550,1511710,6,'Sound Mixer'),(550,1521769,2,'Script Supervisor'),(550,1530086,3,'Casting Associate'),(550,1532597,8,'Set Costumer'),(550,1533533,7,'Conceptual Design'),(550,1535124,9,'Stunt Coordinator'),(550,1536630,3,'Production Coordinator'),(550,1548670,7,'Standby Painter'),(550,1552215,11,'Rigging Gaffer'),(550,1552549,5,'Color Timer'),(550,1552998,9,'Craft Service'),(550,1554372,3,'Researcher'),(550,1559615,9,'Driver'),(550,1585177,9,'Set Production Assistant'),(550,1586924,9,'Transportation Captain'),(550,1599632,9,'Post Production Supervisor'),(550,1614187,11,'Lighting Technician'),(550,1622111,11,'Best Boy Electric'),(550,1646055,1,'Aerial Camera'),(550,1693424,8,'Assistant Costume Designer'),(550,1708007,8,'Set Dressing Artist'),(550,1728281,7,'Painter'),(550,1735467,9,'Production Controller'),(550,1735477,9,'Video Assist Operator'),(550,1749891,7,'Art Department Coordinator'),(550,1749892,7,'Location Scout'),(550,1749896,8,'Prosthetic Makeup Artist'),(550,1749897,9,'CG Supervisor'),(550,1749899,9,'Loader'),(550,1749901,9,'Post Production Assistant'),(550,1749902,9,'Production Office Assistant'),(550,1749904,9,'Propmaker'),(550,1749906,7,'Property Master'),(550,1749907,9,'Set Medic'),(550,1749908,9,'Software Engineer'),(550,1749910,9,'Stand In'),(550,1749916,9,'Systems Administrators & Support'),(550,1749920,11,'Rigging Grip'),(550,1749921,3,'Location Manager'),(550,1749922,3,'Production Accountant'),(550,1749923,6,'Assistant Sound Editor'),(550,1749924,10,'3D Animator'),(550,1749925,10,'Visual Effects Coordinator'),(550,1749926,9,'Sound Design Assistant'),(9292,541,5,'Editor'),(9292,551,3,'Producer'),(9292,908,5,'Editor'),(9292,1091,3,'Producer'),(9292,1726,4,'Screenplay'),(9292,5128,4,'Screenplay'),(9292,7145,2,'Director'),(9292,7714,6,'Original Music Composer'),(9292,11099,1,'Director of Photography'),(9292,17169,3,'Executive Producer'),(9292,21220,3,'Producer'),(9292,10933,3,'Producer'),(257,970,3,'Casting'),(257,3556,2,'Director'),(257,3556,3,'Producer'),(257,3557,4,'Novel'),(257,3558,4,'Screenplay'),(257,3559,3,'Producer'),(257,3560,3,'Producer'),(257,3561,1,'Director of Photography'),(257,3562,6,'Original Music Composer'),(257,3563,7,'Production Design'),(257,3564,5,'Editor'),(257,6688,8,'Costume Design'),(257,11457,7,'Art Direction'),(257,41336,7,'Set Decoration'),(257,1288056,2,'Script Supervisor'),(257,1460418,7,'Art Direction'),(9947,376,3,'Producer'),(9947,1221,3,'Casting'),(9947,2293,4,'Characters'),(9947,5362,3,'Casting'),(9947,5363,3,'Casting'),(9947,7624,3,'Executive Producer'),(9947,7626,3,'Producer'),(9947,10850,3,'Co-Producer'),(9947,10956,3,'Co-Producer'),(9947,9651,6,'Sound Designer'),(9947,11819,7,'Production Design'),(9947,13223,5,'Color Timer'),(9947,12523,2,'Director'),(9947,12922,3,'Producer'),(9947,11001,5,'Editor'),(9947,16837,3,'Executive Producer'),(9947,16837,4,'Characters'),(9947,16599,6,'Music Editor'),(9947,11011,4,'Writer'),(9947,23486,6,'Original Music Composer'),(9947,23787,8,'Makeup Artist'),(9947,42264,10,'Visual Effects Producer'),(9947,24192,6,'Music Supervisor'),(9947,27157,7,'Art Direction'),(9947,27910,6,'Orchestrator'),(9947,32200,7,'Assistant Art Director'),(9947,60712,1,'Director of Photography'),(9947,11106,8,'Costume Design'),(9947,112662,3,'Unit Production Manager'),(9947,60711,3,'Executive Producer'),(9947,113054,6,'First Assistant Sound Editor'),(9947,113057,6,'Boom Operator'),(9947,113086,6,'Foley'),(9947,113093,6,'Sound mixer'),(9947,42111,9,'Second Unit Cinematographer'),(9947,60599,7,'Production Illustrator'),(9947,60708,4,'Writer'),(9947,60707,4,'Writer'),(9947,60710,3,'Associate Producer'),(9947,60713,3,'Casting'),(9947,60714,7,'Set Decoration'),(9947,62841,3,'Production Manager'),(9947,91161,3,'Production Supervisor'),(9947,172874,9,'Stunt Coordinator'),(9947,208675,9,'Stunts'),(9947,530734,11,'Electrician'),(9947,545844,11,'Gaffer'),(9947,1046115,5,'Additional Editing'),(9947,1182909,8,'Hairstylist'),(9947,1194085,2,'Layout'),(9947,1249293,4,'Storyboard'),(9947,1305741,8,'Assistant Costume Designer'),(9947,1322089,8,'Costume Supervisor'),(9947,1334184,9,'Property Master'),(9947,1338976,6,'Sound Re-Recording Mixer'),(9947,1368861,7,'Construction Coordinator'),(9947,1382059,11,'Best Boy Electric'),(9947,1389130,7,'Art Department Coordinator'),(9947,1391699,1,'Still Photographer'),(9947,1392925,2,'Script Supervisor'),(9947,1394340,6,'Sound Effects Editor'),(9947,1394936,7,'Set Designer'),(9947,1394973,1,'Additional Photography'),(9947,1397687,9,'Carpenter'),(9947,1398946,6,'Supervising Sound Editor'),(9947,1399899,1,'Helicopter Camera'),(9947,1400007,3,'Production Coordinator'),(9947,1401604,8,'Wigmaker'),(9947,1401687,6,'Sound Re-Recording Mixer'),(9947,1407805,8,'Prosthetic Supervisor'),(9947,1407827,9,'Unit Publicist'),(9947,1408196,9,'Picture Car Coordinator'),(9947,1408346,10,'Visual Effects'),(9947,1410337,9,'Scenic Artist'),(9947,1411521,9,'Sound Recordist'),(9947,1413450,7,'Sculptor'),(9947,1416435,9,'Video Assist Operator'),(9947,1426770,9,'Visual Effects Editor'),(9947,1428222,10,'Visual Effects Coordinator'),(9947,1441347,9,'Makeup Effects'),(9947,1456359,9,'Dialect Coach'),(9947,1462605,9,'Digital Producer'),(9947,1466442,2,'Assistant Director'),(9947,1511063,6,'Scoring Mixer'),(9947,1531492,9,'Post Production Supervisor'),(9947,1552396,5,'Dialogue Editor'),(9947,1559030,9,'Security'),(9947,1559145,3,'Casting Associate'),(9947,1582418,10,'I/O Supervisor'),(9947,1585165,1,'Grip'),(9947,1587979,11,'Rigging Grip'),(9947,1590413,10,'Visual Effects Supervisor'),(9947,1599642,9,'Driver'),(9947,1601622,10,'Animation Supervisor'),(9947,1622456,10,'Digital Compositors'),(9947,1678977,9,'Utility Stunts'),(9947,1727660,3,'Production Accountant'),(9947,1730050,7,'Greensman'),(9947,1730052,7,'Location Scout'),(9947,1730053,1,'Camera Operator'),(9947,1730054,1,'First Assistant Camera'),(9947,1730055,1,'Steadicam Operator'),(9947,1730057,1,'Underwater Camera'),(9947,1730066,9,'CG Supervisor'),(9947,1730068,9,'Digital Effects Supervisor'),(9947,1730077,9,'Post Production Assistant'),(9947,1730081,9,'Systems Administrators & Support'),(9947,1730082,9,'Transportation Coordinator'),(9947,1730088,5,'Digital Intermediate'),(9947,1730089,5,'Editorial Production Assistant'),(9947,1730094,11,'Lighting Supervisor'),(189,2294,2,'Director'),(189,2294,3,'Producer'),(189,2294,5,'Editor'),(189,2294,6,'Original Music Composer'),(189,2294,1,'Director of Photography'),(189,1307,3,'Executive Producer'),(189,59839,3,'Executive Producer'),(189,2293,2,'Director'),(189,2293,4,'Writer'),(189,2293,3,'Executive Producer'),(189,2293,9,'Graphic Novel Illustrator'),(189,5914,3,'Casting'),(189,9439,6,'Foley'),(189,20489,7,'Production Design'),(189,20490,8,'Costume Design'),(189,23285,9,'Stunt Coordinator'),(189,25453,10,'Visual Effects Supervisor'),(189,85960,6,'Sound Designer'),(189,85960,6,'Sound Effects Editor'),(189,217470,8,'Hairstylist'),(189,995348,9,'Choreographer'),(189,999284,6,'Original Music Composer'),(189,1000909,10,'Visual Effects Supervisor'),(189,1040895,3,'Producer'),(189,1040896,3,'Producer'),(189,1040898,3,'Producer'),(189,1067066,10,'Animation Director'),(189,1106272,3,'Producer'),(189,1371064,6,'Foley'),(189,1383010,3,'Producer'),(189,1386903,7,'Set Designer'),(189,1387248,10,'Visual Effects Supervisor'),(189,1396802,9,'Visual Effects Editor'),(189,1399866,9,'Visual Effects Editor'),(189,1401122,7,'Production Design'),(189,1401123,7,'Set Decoration'),(189,1401125,7,'Set Decoration'),(189,1401126,8,'Wigmaker'),(189,1401127,8,'Makeup Artist'),(189,1401128,3,'Production Supervisor'),(189,1401129,7,'Art Department Coordinator'),(189,1401130,9,'Property Master'),(189,1401131,7,'Leadman'),(189,1401133,6,'Supervising Sound Editor'),(189,1401133,6,'Sound Re-Recording Mixer'),(189,1401134,6,'Sound Designer'),(189,1401135,6,'Sound Designer'),(189,1401136,6,'Supervising Sound Editor'),(189,1401137,9,'Visual Effects Editor'),(189,1401138,9,'Visual Effects Art Director'),(189,1401139,10,'Visual Effects Supervisor'),(189,1401140,9,'Visual Effects Editor'),(189,1401141,9,'Visual Effects Editor'),(189,1401142,10,'Visual Effects Supervisor'),(189,1401143,9,'Visual Effects Editor'),(189,1401144,9,'Visual Effects Editor'),(189,1401145,10,'Visual Effects Supervisor'),(189,1401146,9,'Visual Effects Editor'),(189,1401147,9,'Visual Effects Editor'),(189,1401148,10,'Visual Effects Supervisor'),(189,1401149,10,'Visual Effects Producer'),(189,1401150,10,'Visual Effects Producer'),(189,1401151,1,'Still Photographer'),(189,1401152,1,'Camera Operator'),(189,1401153,11,'Lighting Technician'),(189,1401154,9,'Dialect Coach'),(189,1401155,2,'Script Supervisor'),(189,1401156,9,'Unit Publicist'),(1427,673,4,'Screenplay'),(1427,673,3,'Producer'),(1427,1071,4,'Screenplay'),(1427,1071,2,'Director'),(1427,1071,6,'Original Music Composer'),(1427,1075,6,'Original Music Composer'),(1427,1076,6,'Original Music Composer'),(1427,1077,1,'Director of Photography'),(1427,1851,5,'Editor'),(1427,2355,4,'Screenplay'),(1427,4697,3,'Executive Producer'),(1427,5637,4,'Novel'),(1427,6891,3,'Executive Producer'),(1427,6895,3,'Executive Producer'),(1427,8803,3,'Executive In Charge Of Production'),(1427,11604,7,'Production Design'),(1427,11606,6,'Sound Editor'),(1427,11606,6,'Sound mixer'),(1427,14623,6,'Sound mixer'),(1427,15910,10,'Visual Effects Supervisor'),(1427,16887,6,'Foley'),(1427,17063,8,'Costume Design'),(1427,17080,3,'Executive Producer'),(1427,17081,3,'Executive Producer'),(1427,17083,3,'Executive Producer'),(1427,17084,8,'Makeup Artist'),(1427,17085,3,'Production Manager'),(1427,17086,6,'Sound Director'),(1427,53643,3,'Producer'),(818,9042,7,'Set Decoration'),(818,1719,3,'Casting'),(818,2445,3,'Producer'),(818,2445,3,'Unit Production Manager'),(818,546,3,'Casting'),(818,550,3,'Producer'),(818,551,3,'Producer'),(818,1227,3,'Producer'),(818,3416,3,'Producer'),(818,6328,9,'Stunts Coordinator'),(818,6737,2,'Director'),(818,6742,10,'Visual Effects'),(818,6742,9,'Visual Effects Editor'),(818,8172,6,'Supervising Music Editor'),(818,8273,7,'Supervising Art Director'),(818,9204,6,'Original Music Composer'),(818,9361,11,'Chief Lighting Technician'),(818,9370,1,'Key Grip'),(818,9573,1,'Director of Photography'),(818,10395,5,'Editor'),(818,10396,7,'Production Design'),(818,12073,4,'Screenplay'),(818,12073,3,'Producer'),(818,14042,8,'Costume Design'),(818,14172,4,'Screenplay'),(818,14192,8,'Makeup Artist'),(818,14192,8,'Makeup Designer'),(818,14194,10,'Visual Effects Supervisor'),(818,14377,3,'Casting'),(818,14376,5,'Editor'),(818,14378,7,'Art Direction'),(818,14381,8,'Makeup Artist'),(818,14382,6,'Supervising Sound Editor'),(818,14383,6,'Music Editor'),(818,14385,9,'Stunts'),(818,20228,6,'Foley'),(818,10830,3,'Executive Producer'),(818,29208,3,'Executive In Charge Of Production'),(818,29210,3,'Executive In Charge Of Post Production'),(818,57430,3,'Executive Producer'),(818,61108,3,'Casting Associate'),(818,65706,3,'Co-Producer'),(818,92356,7,'Standby Painter'),(818,71527,9,'Second Unit'),(818,71527,3,'Associate Producer'),(818,90148,6,'ADR & Dubbing'),(818,106118,11,'Rigging Grip'),(818,118944,6,'Sound Effects Editor'),(818,229801,8,'Key Makeup Artist'),(818,406204,8,'Makeup Artist'),(818,551903,8,'Prosthetic Supervisor'),(818,957799,8,'Costume Illustrator'),(818,1106260,9,'Aerial Coordinator'),(818,1108575,3,'Casting Assistant'),(818,1175790,9,'Production Controller'),(818,1291650,9,'Transportation Coordinator'),(818,1294352,6,'Musician'),(818,1299405,5,'Dialogue Editor'),(818,1323090,8,'Makeup Department Head'),(818,1324652,1,'Still Photographer'),(818,1327073,1,'Grip'),(818,1339436,7,'Set Designer'),(818,1342241,9,'Property Master'),(818,1342669,2,'Script Supervisor'),(818,1355529,7,'Art Department Coordinator'),(818,1364403,7,'Greensman'),(818,1364409,7,'Construction Coordinator'),(818,1378220,7,'Leadman'),(818,1400739,9,'Unit Publicist'),(818,1401353,8,'Hair Department Head'),(818,1402013,3,'Location Manager'),(818,1402501,9,'Loader'),(818,1403415,1,'Aerial Director of Photography'),(818,1404225,10,'Visual Effects Producer'),(818,1405241,1,'Aerial Camera (suggest in addition to Helicopter Camera)'),(818,1408192,1,'Steadicam Operator'),(818,1409268,3,'Production Supervisor'),(818,1409268,3,'Associate Producer'),(818,1409282,9,'Picture Car Coordinator'),(818,1413452,9,'Sound Recordist'),(818,1420154,6,'ADR Supervisor'),(818,1424152,7,'Art Department Assistant'),(818,1433021,6,'Sound Re-Recording Mixer'),(818,1441270,6,'Assistant Sound Editor'),(818,1442097,8,'Key Hair Stylist'),(818,1449899,9,'Executive Music Producer'),(818,1455294,8,'Costume Supervisor'),(818,1463422,9,'Special Effects Coordinator'),(818,1463694,7,'Assistant Property Master'),(818,1463824,6,'Orchestrator'),(818,1466245,6,'Sound mixer'),(818,1471726,6,'Music Supervisor'),(818,1526465,8,'Key Costumer'),(818,1534821,4,'Storyboard'),(818,1536385,11,'Rigging Gaffer'),(818,1548683,9,'Video Assist Operator'),(818,1548684,5,'Color Timer'),(818,1550064,8,'Set Costumer'),(818,1550576,1,'First Assistant Camera'),(818,1550829,6,'Production Sound Mixer'),(818,1552011,9,'Post Production Supervisor'),(818,1552932,7,'Construction Foreman'),(818,1552933,7,'Painter'),(818,1552934,7,'Sculptor'),(818,1552935,1,'Camera Operator'),(818,1552990,8,'Hairstylist'),(818,1552997,9,'Choreographer'),(818,1552998,9,'Craft Service'),(818,1553000,9,'Driver'),(818,1553001,9,'Post Production Assistant'),(818,1553003,9,'Production Office Assistant'),(818,1553004,9,'Projection'),(818,1553005,9,'Propmaker'),(818,1553006,9,'Security'),(818,1553007,9,'Set Medic'),(818,1553008,9,'Set Production Assistant'),(818,1553009,9,'Stand In'),(818,1553010,9,'Technical Supervisor'),(818,1553011,9,'Transportation Captain'),(818,1553012,9,'Utility Stunts'),(818,1553013,2,'First Assistant Director'),(818,1553014,5,'First Assistant Editor'),(818,1553015,11,'Best Boy Electric'),(818,1553016,11,'Electrician'),(818,1553017,11,'Gaffer'),(818,1553022,3,'Production Accountant'),(818,1553023,3,'Production Coordinator'),(818,1553025,6,'Boom Operator'),(818,1553026,6,'First Assistant Sound Editor'),(818,1574122,10,'CG Animator'),(818,1610492,6,'Utility Sound'),(818,1647465,9,'Executive in Charge of Finance'),(818,1648028,1,'Camera Loader'),(818,1669267,9,'Stunts'),(818,1733142,5,'Negative Cutter'),(818,1738148,7,'Set Dresser'),(818,1738149,7,'Title Designer'),(818,1738150,1,'Dolly Grip'),(818,1738151,9,'Animal Wrangler'),(818,1738152,9,'Pilot'),(818,1738153,2,'Second Assistant Director'),(818,1738154,3,'Assistant Production Coordinator'),(818,1738155,6,'ADR Editor'),(818,1738157,10,'2D Artist'),(329,491,6,'Original Music Composer'),(329,488,2,'Director'),(329,489,3,'Producer'),(329,490,3,'Associate Producer'),(329,493,5,'Editor'),(329,496,7,'Production Design'),(329,508,4,'Screenplay'),(329,900,9,'Sound Design Assistant'),(329,1060,1,'Director of Photography'),(329,1761,6,'Orchestrator'),(329,2211,3,'Producer'),(329,2216,6,'Sound Designer'),(329,2874,3,'Casting'),(329,3275,3,'Casting'),(329,4782,4,'Screenplay'),(329,4782,4,'Novel'),(329,45762,3,'Other'),(329,7764,6,'Supervising Sound Editor'),(329,7727,10,'Visual Effects'),(329,8158,5,'Dialogue Editor'),(329,8276,6,'Sound Effects Editor'),(329,9968,7,'Set Decoration'),(329,8679,7,'Art Direction'),(329,12631,3,'Associate Producer'),(329,14697,3,'Casting Associate'),(329,15893,6,'Sound Effects Editor'),(329,14657,6,'Foley'),(329,43891,1,'Additional Photography'),(329,62583,1,'Camera Operator'),(329,87130,10,'Visual Effects Supervisor'),(329,65674,10,'Visual Effects Producer'),(329,66142,6,'Music Editor'),(329,92342,2,'Assistant Director'),(329,92479,9,'Stunt Coordinator'),(329,92479,9,'Second Unit Cinematographer'),(329,75380,6,'Boom Operator'),(329,83075,7,'Construction Foreman'),(329,91144,6,'Scoring Mixer'),(329,91937,3,'Production Office Coordinator'),(329,139086,2,'Assistant Director'),(329,590967,9,'Production Controller'),(329,1095994,6,'Sound Mixer'),(329,1095994,9,'Sound Recordist'),(329,1186326,3,'Unit Production Manager'),(329,1213770,3,'Location Manager'),(329,1312670,11,'Gaffer'),(329,1329759,8,'Costume Supervisor'),(329,1341865,2,'Script Supervisor'),(329,1345604,9,'Systems Administrators & Support'),(329,1357070,9,'Transportation Coordinator'),(329,1376897,7,'Construction Coordinator'),(329,1389127,7,'Set Designer'),(329,1390517,7,'Assistant Art Director'),(329,1392245,1,'Still Photographer'),(329,1397882,9,'Transportation Captain'),(329,1400548,7,'Sculptor'),(329,1400849,9,'Property Master'),(329,1401786,6,'Sound Effects Editor'),(329,1403415,1,'Helicopter Camera'),(329,1412756,9,'Visual Effects Editor'),(329,1415453,7,'Greensman'),(329,1424127,6,'Dolby Consultant'),(329,1425978,6,'Sound Re-Recording Mixer'),(329,1453289,10,'Visual Effects Coordinator'),(329,1453514,10,'Visual Effects'),(329,1456696,9,'Compositors'),(329,1463301,9,'Carpenter'),(329,1533588,9,'Propmaker'),(329,1537139,5,'Dialogue Editor'),(329,1589724,7,'Location Scout'),(329,1595460,7,'Art Direction'),(329,1595461,7,'Standby Painter'),(329,1627989,5,'Editorial Coordinator'),(329,1633931,7,'Art Department Coordinator'),(329,1633933,7,'Leadman'),(329,1633934,7,'Production Illustrator'),(329,1633943,1,'First Assistant Camera'),(329,1633944,1,'Grip'),(329,1633948,8,'Set Dressing Artist'),(329,1633949,9,'Craft Service'),(329,1633950,9,'Driver'),(329,1633951,9,'Loader'),(329,1633952,9,'Post Production Assistant'),(329,1633953,9,'Production Office Assistant'),(329,1633954,9,'Projection'),(329,1633955,9,'Security'),(329,1633956,9,'Software Engineer'),(329,1633957,9,'Stand In'),(329,1633958,9,'Stunts'),(329,1633959,9,'Unit Publicist'),(329,1633960,2,'Layout'),(329,1634725,5,'Color Timer'),(329,1634727,11,'Best Boy Electric'),(329,1634728,11,'Electrician'),(329,1634729,11,'Lighting Technician'),(329,1634730,11,'Rigging Gaffer'),(329,1634731,11,'Rigging Grip'),(329,1634733,3,'Executive In Charge Of Production'),(329,1634735,3,'Production Accountant'),(329,1634736,3,'Production Coordinator'),(329,1634737,3,'Production Manager'),(329,1634738,3,'Production Supervisor'),(329,1634739,10,'Digital Compositors'),(329,1634740,10,'I/O Supervisor'),(329,1634742,9,'Visual Effects Art Director'),(9331,8328,4,'Screenplay'),(9331,1095,1,'Director of Photography'),(9331,1729,6,'Original Music Composer'),(9331,2260,4,'Screenplay'),(9331,7231,5,'Editor'),(9331,4611,3,'Producer'),(9331,4612,3,'Producer'),(9331,6044,3,'Casting'),(9331,13015,2,'Director'),(9331,18855,3,'Co-Producer'),(9331,38568,4,'Novel'),(9331,59906,4,'Screenplay'),(9331,1034749,3,'Associate Producer'),(9072,434,3,'Casting'),(9072,436,3,'Casting'),(9072,3310,5,'Editor'),(9072,5059,7,'Production Design'),(9072,6899,1,'Director of Photography'),(9072,9562,4,'Screenplay'),(9072,9562,3,'Producer'),(9072,15434,9,'Special Effects Coordinator'),(9072,42030,9,'Animatronic and Prosthetic Effects'),(9072,20822,6,'Music'),(9072,21258,9,'Special Effects Coordinator'),(9072,27160,8,'Costume Design'),(9072,35689,2,'Director'),(9072,35689,4,'Screenplay'),(9072,35689,3,'Producer'),(9072,35690,4,'Screenplay'),(9072,35690,3,'Producer'),(9072,10858,7,'Set Decoration'),(9072,113038,7,'Art Department Coordinator'),(9072,56908,3,'Producer'),(9072,57225,3,'Producer'),(9072,60282,3,'Casting'),(9072,947682,3,'Casting'),(9072,1208435,8,'Makeup Department Head'),(9072,1325645,5,'Editor'),(9072,1397687,9,'Carpenter'),(9072,1401605,8,'Key Hair Stylist'),(9072,1418266,9,'Makeup Effects'),(9072,1441277,9,'Property Master'),(9072,1460786,2,'Script Supervisor'),(9072,1479279,7,'Art Direction'),(9072,1532232,8,'Hair Department Head'),(9072,1532310,7,'Set Decoration'),(9072,1532311,9,'Carpenter'),(9072,1532316,8,'Makeup Artist'),(9072,1532317,9,'Makeup Effects'),(3536,7213,2,'Director'),(3536,7238,8,'Costume Design'),(3536,5244,7,'Production Design'),(3536,5398,3,'Producer'),(3536,5673,7,'Art Direction'),(3536,6880,7,'Set Decoration'),(3536,10957,5,'Editor'),(3536,8848,7,'Production Design'),(3536,11409,1,'Director of Photography'),(3536,14762,7,'Art Direction'),(3536,19769,4,'Screenplay'),(3536,19051,3,'Producer'),(3536,21363,3,'Casting'),(3536,21467,6,'Original Music Composer'),(3536,22129,4,'Screenplay'),(3536,25061,7,'Art Direction'),(3536,1182551,7,'Set Decoration'),(3536,1323629,8,'Costume Supervisor'),(3536,1368867,9,'Special Effects Coordinator'),(9087,2702,1,'Director of Photography'),(9087,3026,2,'Director'),(9087,3026,3,'Producer'),(9087,3032,5,'Editor'),(9087,9251,6,'Music'),(9087,13520,4,'Screenplay'),(9955,8222,8,'Costume Design'),(9955,2447,3,'Producer'),(9955,1919,1,'Director of Photography'),(9955,7237,7,'Set Decoration'),(9955,10572,6,'Original Music Composer'),(9955,7399,3,'Producer'),(9955,8274,7,'Set Decoration'),(9955,9646,5,'Editor'),(9955,11655,3,'Executive Producer'),(9955,14377,3,'Casting'),(9955,22302,3,'Producer'),(9955,28635,3,'Producer'),(9955,53811,7,'Production Design'),(9955,60924,4,'Author'),(9955,60922,2,'Director'),(9955,60926,4,'Author'),(9955,60923,2,'Director'),(9955,60928,4,'Author'),(9955,60931,4,'Author'),(9955,60929,3,'Producer'),(9955,60932,4,'Author'),(9955,60935,3,'Casting'),(9955,60933,3,'Producer'),(9955,60934,3,'Producer'),(9955,60937,7,'Art Direction'),(1271,2122,5,'Editor'),(1271,2293,4,'Author'),(1271,2293,3,'Executive Producer'),(1271,2293,9,'Graphic Novel Illustrator'),(1271,5392,8,'Costume Design'),(1271,6053,7,'Set Decoration'),(1271,6037,10,'Visual Effects Supervisor'),(1271,6038,10,'Visual Effects Supervisor'),(1271,6232,3,'Casting'),(1271,6874,3,'Executive Producer'),(1271,8704,7,'Supervising Art Director'),(1271,9967,7,'Production Design'),(1271,11420,3,'Producer'),(1271,15217,2,'Director'),(1271,15217,4,'Screenplay'),(1271,15221,6,'Original Music Composer'),(1271,15225,6,'Music Editor'),(1271,15226,6,'Supervising Sound Editor'),(1271,15357,10,'Visual Effects Producer'),(1271,17284,1,'Director of Photography'),(1271,17285,4,'Screenplay'),(1271,17610,3,'Casting'),(1271,17611,3,'Casting'),(1271,17612,3,'Casting'),(1271,17613,7,'Art Direction'),(1271,20908,3,'Producer'),(1271,37685,10,'Visual Effects Producer'),(1271,54211,3,'Executive Producer'),(1271,54212,3,'Executive Producer'),(1271,113097,6,'Sound Designer'),(1271,113097,6,'Sound Effects Editor'),(1271,113122,10,'Visual Effects Supervisor'),(1271,113137,10,'Visual Effects Supervisor'),(1271,113140,10,'Visual Effects Producer'),(1271,113145,10,'Visual Effects Supervisor'),(1271,60245,3,'Executive Producer'),(1271,65377,3,'Producer'),(1271,79243,3,'Executive Producer'),(1271,92235,9,'Stunt Coordinator'),(1271,92237,1,'Camera Operator'),(1271,1075261,10,'Visual Effects Supervisor'),(1271,1077782,6,'Foley'),(1271,1102071,3,'Executive Producer'),(1271,1204225,7,'Set Designer'),(1271,1272667,4,'Screenplay'),(1271,1272668,4,'Novel'),(1271,1327222,7,'Set Decoration'),(1271,1327907,7,'Art Direction'),(1271,1327909,8,'Makeup Department Head'),(1271,1327910,8,'Costume Supervisor'),(1271,1342658,5,'Dialogue Editor'),(1271,1368885,9,'Transportation Coordinator'),(1271,1374169,6,'Foley'),(1271,1384358,7,'Set Designer'),(1271,1384394,9,'Transportation Coordinator'),(1271,1391725,10,'Visual Effects Producer'),(1271,1391751,7,'Set Designer'),(1271,1391756,7,'Set Designer'),(1271,1391759,9,'Property Master'),(1271,1391760,7,'Sculptor'),(1271,1392099,10,'Visual Effects Producer'),(1271,1392106,1,'Still Photographer'),(1271,1392906,10,'Visual Effects Producer'),(1271,1393390,10,'Visual Effects Supervisor'),(1271,1394739,7,'Art Department Coordinator'),(1271,1394740,7,'Art Department Coordinator'),(1271,1394742,9,'Property Master'),(1271,1394743,7,'Sculptor'),(1271,1394744,7,'Sculptor'),(1271,1394745,7,'Sculptor'),(1271,1394746,7,'Greensman'),(1271,1394747,5,'Dialogue Editor'),(1271,1394748,9,'Special Effects Coordinator'),(1271,1394749,10,'Visual Effects Producer'),(1271,1394750,10,'Visual Effects Producer'),(1271,1394751,10,'Visual Effects Producer'),(1271,1394752,10,'Visual Effects Producer'),(1271,1394753,9,'Visual Effects Editor'),(1271,1394754,10,'Visual Effects Supervisor'),(1271,1394755,10,'Visual Effects Supervisor'),(1271,1394756,1,'Camera Operator'),(1271,1394756,1,'Steadicam Operator'),(1271,1394757,11,'Gaffer'),(1271,1394759,3,'Location Manager'),(1271,1394761,9,'Choreographer'),(1271,1394762,9,'Studio Teachers'),(1271,1447543,10,'Visual Effects'),(693,9042,7,'Set Decoration'),(693,380,3,'Producer'),(693,6410,3,'Casting'),(693,892,1,'Director of Photography'),(693,3305,3,'Producer'),(693,6045,7,'Art Direction'),(693,6737,2,'Director'),(693,6737,3,'Producer'),(693,6742,5,'Additional Editing'),(693,7885,6,'Original Music Composer'),(693,8172,9,'Additional Music'),(693,10385,4,'Screenplay'),(693,10387,4,'Screenplay'),(693,10390,3,'Executive Producer'),(693,10391,3,'Associate Producer'),(693,10392,3,'Executive Producer'),(693,10393,5,'Editor'),(693,10394,5,'Editor'),(693,10395,5,'Editor'),(693,10395,3,'Co-Producer'),(693,10396,7,'Production Design'),(693,10397,8,'Costume Design'),(693,10398,3,'Unit Production Manager'),(693,14194,10,'Visual Effects Supervisor'),(693,14382,6,'Supervising Sound Editor'),(693,14767,10,'Special Effects Supervisor'),(693,42032,1,'Camera Operator'),(693,17869,4,'Characters'),(693,17870,4,'Characters'),(693,17871,4,'Screenplay'),(693,24510,8,'Makeup Artist'),(693,92356,7,'Standby Painter'),(693,81963,7,'Assistant Art Director'),(693,108146,1,'First Assistant Camera'),(693,142157,9,'Second Unit Cinematographer'),(693,142157,9,'Stunt Coordinator'),(693,229801,8,'Makeup Department Head'),(693,589942,8,'Hair Department Head'),(693,1299405,5,'Dialogue Editor'),(693,1324409,8,'Costume Supervisor'),(693,1339436,7,'Set Designer'),(693,1341797,9,'Transportation Captain'),(693,1342241,7,'Property Master'),(693,1364409,7,'Construction Coordinator'),(693,1377239,2,'Script Supervisor'),(693,1400384,9,'Unit Publicist'),(693,1400733,1,'Aerial Director of Photography'),(693,1406235,9,'Makeup Effects'),(693,1407721,8,'Wigmaker'),(693,1408301,6,'Sound Effects Editor'),(693,1413452,6,'Sound Recordist'),(693,1415635,11,'Rigging Gaffer'),(693,1416433,9,'Video Assist Operator'),(693,1432587,7,'Leadman'),(693,1433998,8,'Hairstylist'),(693,1436196,9,'Picture Car Coordinator'),(693,1437304,11,'Gaffer'),(693,1445820,8,'Key Hair Stylist'),(693,1463770,1,'Key Grip'),(693,1477799,9,'Transportation Coordinator'),(693,1530870,9,'Post Production Supervisor'),(693,1532594,8,'Set Costumer'),(693,1534821,7,'Storyboard Designer'),(693,1535954,3,'Production Coordinator'),(693,1537179,1,'Still Photographer'),(693,1550829,6,'Production Sound Mixer'),(693,1552932,7,'Construction Foreman'),(693,1553026,6,'First Assistant Sound Editor'),(693,1555644,7,'Art Department Coordinator'),(693,1564248,3,'Production Accountant'),(693,1567949,8,'Assistant Costume Designer'),(693,1569561,9,'Loader'),(693,1569566,9,'Scenic Artist'),(693,1586640,6,'Foley'),(693,1601603,9,'Animatronic and Prosthetic Effects'),(693,1608877,9,'Craft Service'),(693,1619089,9,'Propmaker'),(693,1623540,6,'Orchestrator'),(693,1648131,9,'Stand In'),(693,1652448,7,'Greensman'),(693,1662775,3,'Executive In Charge Of Production'),(693,1674309,9,'Stunts'),(693,1680620,5,'Color Timer'),(693,1739884,6,'Boom Operator'),(693,1740451,3,'Casting Associate'),(693,1760805,7,'Art Department Assistant'),(693,1760806,7,'Painter'),(693,1761059,8,'Set Dressing Artist'),(693,1761060,9,'Carpenter'),(693,1761061,9,'Driver'),(693,1761062,9,'Post Production Assistant'),(693,1761063,9,'Set Production Assistant'),(693,1761064,2,'Assistant Director'),(693,1761065,11,'Best Boy Electric'),(693,1761066,11,'Electrician'),(693,1761067,11,'Lighting Technician'),(693,1761068,11,'Rigging Grip'),(693,1761070,6,'Sound Mixer'),(693,1761077,9,'Studio Teachers'),(497,153,6,'Original Music Composer'),(497,8376,6,'Supervising Sound Editor'),(497,3718,3,'Producer'),(497,1262,3,'Casting'),(497,3027,4,'Novel'),(497,3027,9,'Thanks'),(497,4027,4,'Screenplay'),(497,4027,2,'Director'),(497,4027,3,'Producer'),(497,6581,5,'Editor'),(497,6584,7,'Production Design'),(497,10629,7,'Supervising Art Director'),(497,6800,1,'Director of Photography'),(497,6801,7,'Set Decoration'),(497,6802,8,'Costume Design'),(497,7538,6,'Music Editor'),(497,13063,3,'Casting Associate'),(497,14526,8,'Makeup Artist'),(497,53898,5,'Assistant Editor'),(497,22059,3,'Casting Associate'),(497,23787,8,'Makeup Artist'),(497,62543,2,'Assistant Director'),(497,1378173,1,'Still Photographer'),(497,1378226,6,'Sound Re-Recording Mixer'),(497,1378229,6,'Boom Operator'),(497,1392142,8,'Set Costumer'),(497,1397846,10,'Visual Effects Supervisor'),(497,1398970,1,'Camera Operator'),(497,1398970,1,'Steadicam Operator'),(497,1399996,6,'Sound Re-Recording Mixer'),(497,1399997,6,'Sound Re-Recording Mixer'),(497,1402117,9,'Stunts'),(497,1418453,8,'Hairstylist'),(497,1419114,9,'Dialect Coach'),(497,1434225,2,'Script Supervisor'),(497,1442499,8,'Key Hair Stylist'),(497,1460499,10,'Animation'),(497,1532253,7,'Art Department Coordinator'),(497,1546115,6,'Sound Mixer'),(497,1546454,3,'Unit Production Manager'),(497,1549174,11,'Rigging Gaffer'),(497,1549499,9,'Stand In'),(497,1552549,5,'Color Timer'),(497,1558250,5,'First Assistant Editor'),(497,1622631,11,'Gaffer'),(497,1622634,3,'Production Coordinator'),(497,1628605,10,'Animation'),(497,1676879,1,'Grip'),(9982,11,9,'Additional Dialogue'),(9982,630,2,'Layout'),(9982,4500,6,'Original Music Composer'),(9982,7903,3,'Casting'),(9982,12945,6,'Music Editor'),(9982,40347,5,'Editor'),(9982,52694,4,'Screenplay'),(9982,52695,4,'Screenplay'),(9982,54515,9,'Choreographer'),(9982,59745,3,'Casting'),(9982,61414,4,'Story'),(9982,61415,9,'Additional Dialogue'),(9982,61413,4,'Screenplay'),(9982,61416,3,'Associate Producer'),(9982,61411,2,'Director'),(9982,61411,4,'Story'),(9982,61419,3,'Casting'),(9982,61417,3,'Producer'),(9982,61420,7,'Art Direction'),(9982,61421,7,'Production Design'),(9982,61422,7,'Co-Art Director'),(9982,73306,10,'Visual Development'),(9982,112609,6,'Sound Re-Recording Mixer'),(9982,1210381,10,'Visual Effects Supervisor'),(9982,1312090,10,'Visual Development'),(9982,1341141,6,'Music Editor'),(9982,1364417,6,'Sound Re-Recording Mixer'),(9982,1400558,6,'Sound Designer'),(9982,1400558,6,'Supervising Sound Editor'),(9982,1415617,6,'Sound Effects Editor'),(9982,1417516,6,'Sound Effects Editor'),(9982,1428901,10,'Animation Supervisor'),(9982,1447423,10,'Visual Development'),(9982,1447483,2,'Layout'),(9982,1447503,10,'Visual Development'),(9982,1450357,10,'Visual Development'),(9982,1451279,2,'Layout'),(9982,1452489,2,'Layout'),(9982,1455566,10,'Visual Development'),(9982,1461357,9,'CG Supervisor'),(9982,1461363,2,'Layout'),(9982,1461397,2,'Layout'),(9982,1461410,10,'Visual Development'),(9982,1550058,6,'Music Editor'),(9982,1578644,10,'Visual Development'),(9982,1610869,5,'Color Timer'),(9982,1615775,2,'Layout'),(9982,1615780,10,'Visual Development'),(9982,1615792,2,'Layout'),(9982,1713391,9,'CG Supervisor'),(9982,1713392,9,'Technical Supervisor'),(9982,1713393,3,'Production Manager'),(9982,1713397,10,'Visual Development'),(9982,1713398,10,'Visual Development'),(9982,1713399,10,'Visual Development'),(9982,1713400,10,'Visual Development'),(9982,1713401,10,'Visual Development'),(9982,1713402,10,'Visual Development'),(9982,1713403,10,'Visual Development'),(9982,1713404,10,'Visual Development'),(9982,1713405,10,'Visual Development'),(9982,1713406,10,'Visual Development'),(9982,1713703,2,'Layout'),(9982,1713704,2,'Layout'),(9982,1713705,3,'Production Accountant'),(2501,36,1,'Additional Photography'),(2501,1000,7,'Production Design'),(2501,664,3,'Executive Producer'),(2501,1593,3,'Casting'),(2501,2186,3,'Casting Associate'),(2501,4854,3,'Associate Producer'),(2501,4856,3,'Associate Producer'),(2501,11098,6,'Original Music Composer'),(2501,11409,1,'Director of Photography'),(2501,11657,5,'Editor'),(2501,11694,2,'Director'),(2501,11694,3,'Producer'),(2501,12562,6,'Supervising ADR Editor'),(2501,11308,6,'Music Editor'),(2501,13166,6,'Sound Effects Editor'),(2501,12916,9,'Marine Coordinator'),(2501,12997,3,'Producer'),(2501,14764,6,'Sound Effects Editor'),(2501,14765,6,'Supervising Sound Editor'),(2501,15348,1,'Additional Photography'),(2501,16369,10,'Special Effects Supervisor'),(2501,16370,9,'Special Effects Coordinator'),(2501,17063,8,'Costume Design'),(2501,17649,9,'Second Unit'),(2501,19242,4,'Screenplay'),(2501,23396,7,'Supervising Art Director'),(2501,25453,10,'Visual Effects Supervisor'),(2501,25606,4,'Author'),(2501,25606,3,'Executive Producer'),(2501,25618,4,'Screenplay'),(2501,25600,3,'Producer'),(2501,25600,2,'First Assistant Director'),(2501,29404,3,'Co-Producer'),(2501,25729,3,'Casting'),(2501,42686,10,'Visual Effects Producer'),(2501,49912,6,'Music Supervisor'),(2501,53346,3,'Local Casting'),(2501,113124,9,'Visual Effects Editor'),(2501,59374,9,'Stunts'),(2501,92468,1,'Camera Operator'),(2501,92470,10,'Lead Animator'),(2501,92475,10,'Visual Effects Producer'),(2501,87314,5,'First Assistant Editor'),(2501,91891,5,'Dialogue Editor'),(2501,117206,8,'Key Hair Stylist'),(2501,238393,9,'Stunts'),(2501,423556,6,'Production Sound Mixer'),(2501,548427,9,'Property Master'),(2501,548437,5,'Dialogue Editor'),(2501,773968,8,'Hairstylist'),(2501,1054325,9,'Stunt Coordinator'),(2501,1081428,9,'Legal Services'),(2501,1106663,5,'First Assistant Editor'),(2501,1231721,10,'24 Frame Playback'),(2501,1297458,1,'Camera Loader'),(2501,1319198,8,'Set Costumer'),(2501,1323281,8,'Costume Supervisor'),(2501,1333077,7,'Art Direction'),(2501,1333078,7,'Set Decoration'),(2501,1333079,8,'Costume Supervisor'),(2501,1333080,8,'Costume Supervisor'),(2501,1333081,9,'Property Master'),(2501,1337638,7,'Assistant Art Director'),(2501,1338372,6,'Foley'),(2501,1342650,7,'Art Department Coordinator'),(2501,1345595,6,'Sound Re-Recording Mixer'),(2501,1352966,6,'Foley Editor'),(2501,1364410,6,'ADR Editor'),(2501,1367493,6,'Foley'),(2501,1367667,6,'Sound Effects Editor'),(2501,1387570,1,'Still Photographer'),(2501,1391571,6,'Sound Re-Recording Mixer'),(2501,1392249,9,'Transportation Coordinator'),(2501,1392901,5,'Dialogue Editor'),(2501,1393882,9,'Stunt Coordinator'),(2501,1398934,1,'Steadicam Operator'),(2501,1400092,1,'Aerial Director of Photography'),(2501,1404203,3,'Production Manager'),(2501,1404212,6,'Supervising Sound Editor'),(2501,1404214,5,'Dialogue Editor'),(2501,1404235,9,'Unit Publicist'),(2501,1404548,2,'Script Supervisor'),(2501,1405382,5,'Dialogue Editor'),(2501,1406384,8,'Key Makeup Artist'),(2501,1406385,9,'Makeup Effects'),(2501,1406386,3,'Production Supervisor'),(2501,1406388,6,'Sound Effects Editor'),(2501,1406389,6,'Sound Effects Editor'),(2501,1406390,6,'Sound Effects Editor'),(2501,1406395,9,'Visual Effects Editor'),(2501,1406396,10,'Visual Effects Supervisor'),(2501,1406397,10,'Visual Effects Producer'),(2501,1406402,9,'Stunt Coordinator'),(2501,1406404,1,'Steadicam Operator'),(2501,1406405,1,'Aerial Camera'),(2501,1406408,11,'Gaffer'),(2501,1406411,3,'Location Manager'),(2501,1406412,3,'Location Manager'),(2501,1406414,3,'Location Manager'),(2501,1411341,1,'Aerial Camera Technician'),(2501,1449989,1,'First Assistant Camera'),(2501,1459784,7,'Title Designer'),(2501,1476769,9,'Post Production Supervisor'),(2501,1533035,9,'Armorer'),(2501,1533174,8,'Prosthetic Makeup Artist'),(2501,1537141,3,'Production Coordinator'),(2501,1544424,1,'Grip'),(2501,1550374,5,'Color Timer'),(2501,1550691,8,'Makeup Artist'),(2501,1552195,5,'Associate Editor'),(2501,1552603,6,'Sound Engineer'),(2501,1554041,6,'Orchestrator'),(2501,1566301,6,'Scoring Mixer'),(2501,1573419,7,'Construction Coordinator'),(2501,1573420,7,'Location Scout'),(2501,1573421,7,'Painter'),(2501,1573422,7,'Set Decoration Buyer'),(2501,1573423,7,'Standby Painter'),(2501,1573424,1,'Key Grip'),(2501,1573430,9,'Additional Music'),(2501,1573431,9,'Carpenter'),(2501,1573432,9,'CG Supervisor'),(2501,1573435,9,'Driver'),(2501,1573437,9,'Picture Car Coordinator'),(2501,1573438,9,'Post Production Assistant'),(2501,1573441,9,'Set Production Assistant'),(2501,1573442,9,'Stand In'),(2501,1573443,9,'Transportation Captain'),(2501,1573445,3,'Unit Production Manager'),(2501,1573448,9,'Video Assist Operator'),(2501,1573451,11,'Best Boy Electric'),(2501,1573453,11,'Electrician'),(2501,1573458,3,'Production Accountant'),(2501,1573464,6,'Boom Operator'),(2501,1573468,10,'Digital Compositors'),(2501,1573471,10,'Visual Effects Coordinator'),(2501,1573474,4,'Storyboard'),(2501,1580665,6,'Assistant Sound Editor'),(2501,1602319,3,'ADR Voice Casting'),(2501,1733142,5,'Negative Cutter'),(2501,1738113,9,'Pilot'),(2501,1761984,2,'Second Assistant Director'),(2501,1761985,2,'Third Assistant Director'),(2501,1761991,3,'Assistant Production Coordinator'),(2501,1761993,3,'Assistant Production Manager'),(2501,1761995,3,'Casting Assistant'),(2501,1762004,6,'Musician'),(710,996,6,'Original Music Composer'),(710,1459,6,'Songs'),(710,9856,4,'Characters'),(710,8524,7,'Production Design'),(710,5056,5,'Editor'),(710,5062,6,'Music Editor'),(710,8526,7,'Set Decoration'),(710,9854,6,'Supervising Sound Editor'),(710,10710,7,'Art Direction'),(710,10714,8,'Costume Design'),(710,10788,7,'Assistant Art Director'),(710,10493,3,'Executive Producer'),(710,10496,3,'Casting'),(710,10666,3,'Producer'),(710,10702,2,'Director'),(710,10703,4,'Story'),(710,10704,4,'Screenplay'),(710,10705,4,'Screenplay'),(710,10706,3,'Producer'),(710,10709,1,'Director of Photography'),(710,10711,7,'Art Direction'),(710,10712,7,'Art Direction'),(710,40747,1,'Camera Operator'),(710,40818,6,'Sound Re-Recording Mixer'),(710,18457,3,'Casting'),(710,38362,5,'Dialogue Editor'),(710,69678,3,'Producer'),(710,1081073,10,'Special Effects Supervisor'),(710,1189807,1,'Camera Operator'),(710,1325211,7,'Supervising Art Director'),(710,1340118,6,'Sound Re-Recording Mixer'),(710,1392704,10,'Visual Effects Coordinator'),(710,1398136,2,'Script Supervisor'),(710,1408816,1,'Camera Operator'),(710,1413507,9,'Visual Effects Editor'),(710,1425502,1,'Still Photographer'),(710,1427545,1,'Still Photographer'),(710,1485317,1,'Camera Operator'),(710,1532215,9,'Armorer'),(710,1561880,6,'Sound Re-Recording Mixer'),(710,1576017,6,'Sound Recordist'),(710,1593072,7,'Assistant Art Director'),(710,1727828,7,'Construction Coordinator'),(710,1727833,11,'Gaffer'),(710,1727834,11,'Gaffer'),(710,1727835,11,'Gaffer'),(2275,348,4,'Screenplay'),(2275,899,5,'Editor'),(2275,1225,6,'Music'),(2275,4611,3,'Producer'),(2275,6044,3,'Casting'),(2275,6881,8,'Costume Design'),(2275,8867,7,'Set Decoration'),(2275,9493,8,'Costume Supervisor'),(2275,12786,2,'Director'),(2275,14093,3,'Executive Producer'),(2275,16614,7,'Production Design'),(2275,17629,1,'Director of Photography'),(2275,52469,3,'Associate Producer'),(2275,60862,3,'Associate Producer'),(2275,61097,7,'Art Direction'),(2275,83658,7,'Art Direction'),(2275,141682,4,'Screenplay'),(2275,1034749,3,'Associate Producer'),(2275,1190889,3,'Co-Producer'),(2275,1190889,3,'Unit Production Manager'),(2275,1605381,4,'Novel'),(2275,1655191,8,'Costume Supervisor'),(2275,1655192,2,'Script Supervisor'),(9837,947,6,'Original Music Composer'),(9837,488,3,'Producer'),(9837,1788,4,'Screenplay'),(9837,12062,3,'Producer'),(9837,12065,3,'Producer'),(9837,12066,3,'Producer'),(9837,21879,2,'Director'),(9837,37078,4,'Screenplay'),(9837,42910,6,'Songs'),(9837,44113,2,'Director'),(9837,44119,5,'Editor'),(9837,59803,2,'Director'),(9837,60250,10,'Visual Development'),(9837,61297,3,'Production Manager'),(9837,118713,10,'Animation'),(9837,1447298,9,'Supervising Animator'),(9837,1447355,10,'Animation'),(9837,1447381,10,'Animation'),(9837,1447385,10,'Animation'),(9837,1447593,2,'Layout'),(9837,1447594,10,'Animation'),(9837,1450331,10,'Animation'),(9837,1451229,10,'Visual Development'),(9837,1451683,10,'Visual Effects'),(9837,1460497,10,'Visual Effects'),(9837,1462665,2,'Layout'),(9837,1812677,2,'Script Coordinator'),(9654,497,7,'Art Direction'),(9654,559,1,'Director of Photography'),(9654,2236,3,'Executive Producer'),(9654,2238,3,'Executive Producer'),(9654,6581,5,'Editor'),(9654,6048,5,'Dialogue Editor'),(9654,7494,3,'Casting'),(9654,9819,7,'Assistant Art Director'),(9654,10118,9,'Stunt Coordinator'),(9654,10118,9,'Second Unit Cinematographer'),(9654,11098,6,'Music'),(9654,13223,5,'Color Timer'),(9654,15331,6,'Sound Editor'),(9654,15332,6,'Supervising Sound Editor'),(9654,53899,3,'Casting Associate'),(9654,18143,3,'Production Supervisor'),(9654,29405,5,'Editor'),(9654,32349,7,'Production Design'),(9654,34527,9,'Post Production Supervisor'),(9654,37932,2,'Director'),(9654,38021,7,'Set Decoration'),(9654,40471,8,'Costume Design'),(9654,49912,6,'Music Supervisor'),(9654,56258,4,'Screenplay'),(9654,56260,4,'Screenplay'),(9654,58152,4,'Original Story'),(9654,58470,3,'Producer'),(9654,58471,3,'Executive Producer'),(9654,58471,3,'Unit Production Manager'),(9654,58472,3,'Executive Producer'),(9654,66568,3,'Associate Producer'),(9654,91042,1,'Helicopter Camera'),(9654,91331,10,'Visual Effects'),(9654,139953,5,'Digital Intermediate'),(9654,566671,3,'Location Manager'),(9654,582808,1,'Still Photographer'),(9654,957495,6,'Sound Effects Editor'),(9654,1119466,2,'Assistant Director'),(9654,1128228,3,'Line Producer'),(9654,1176343,6,'Foley'),(9654,1319412,7,'Art Direction'),(9654,1330048,8,'Costume Supervisor'),(9654,1335075,9,'Transportation Captain'),(9654,1346314,10,'Digital Compositors'),(9654,1357066,1,'Steadicam Operator'),(9654,1390353,6,'First Assistant Sound Editor'),(9654,1398972,1,'Underwater Camera'),(9654,1399859,7,'Leadman'),(9654,1399890,9,'Transportation Co-Captain'),(9654,1403537,10,'Visual Effects Supervisor'),(9654,1404326,6,'Music Editor'),(9654,1407849,9,'Set Medic'),(9654,1410568,9,'Sound Recordist'),(9654,1411535,10,'Visual Effects Producer'),(9654,1413153,7,'Construction Coordinator'),(9654,1413154,7,'Construction Foreman'),(9654,1413466,9,'CGI Supervisor'),(9654,1415620,9,'Visual Effects Editor'),(9654,1416438,2,'Script Supervisor'),(9654,1419119,9,'Unit Publicist'),(9654,1419120,5,'Additional Editing'),(9654,1421666,7,'Art Department Coordinator'),(9654,1432024,11,'Rigging Gaffer'),(9654,1452632,1,'Camera Operator'),(9654,1460431,5,'First Assistant Editor'),(9654,1462918,8,'Hairstylist'),(9654,1463656,9,'Utility Stunts'),(9654,1524668,8,'Hair Designer'),(9654,1530166,6,'Music Supervisor'),(9654,1532594,8,'Set Costumer'),(9654,1546814,9,'Video Assist Operator'),(9654,1549175,11,'Rigging Grip'),(9654,1551328,6,'Production Sound Mixer'),(9654,1551528,8,'Key Hair Stylist'),(9654,1553258,9,'Stunts'),(9654,1559180,9,'Systems Administrators & Support'),(9654,1559546,7,'Set Decoration'),(9654,1563430,6,'Boom Operator'),(9654,1567968,4,'Storyboard'),(9654,1571711,9,'Carpenter'),(9654,1580621,9,'Additional Music'),(9654,1580664,6,'Orchestrator'),(9654,1597191,9,'Craft Service'),(9654,1600114,6,'Scoring Mixer'),(9654,1608867,9,'Propmaker'),(9654,1624710,9,'Driver'),(9654,1644469,9,'Post Production Assistant'),(9654,1661581,3,'Production Manager'),(9654,1691933,7,'Location Scout'),(9654,1691934,7,'Painter'),(9654,1691936,7,'Set Designer'),(9654,1691937,7,'Standby Painter'),(9654,1691938,1,'First Assistant Camera'),(9654,1691939,1,'Grip'),(9654,1691942,8,'Makeup Artist'),(9654,1691943,8,'Set Dressing Artist'),(9654,1691944,9,'CG Supervisor'),(9654,1691947,9,'Loader'),(9654,1691948,9,'Property Master'),(9654,1691949,9,'Set Production Assistant'),(9654,1691950,9,'Special Effects Coordinator'),(9654,1691951,9,'Stand In'),(9654,1691952,9,'Technical Supervisor'),(9654,1691954,11,'Best Boy Electric'),(9654,1691955,11,'Electrician'),(9654,1691956,11,'Gaffer'),(9654,1691957,11,'Lighting Technician'),(9654,1691960,3,'Production Accountant'),(9654,1691961,3,'Production Coordinator'),(9654,1691963,6,'Sound Mixer'),(9654,1691974,10,'3D Supervisor'),(9654,1691975,10,'Special Effects Supervisor'),(9654,1691976,10,'Visual Effects Coordinator'),(9654,1691977,3,'Unit Manager'),(9654,1691978,9,'Thanks'),(2642,6493,3,'Casting'),(2642,8862,1,'Director of Photography'),(2642,10440,5,'Editor'),(2642,11098,6,'Original Music Composer'),(2642,18277,3,'Producer'),(2642,18323,2,'Director'),(2642,18323,4,'Screenplay'),(8916,1705,9,'Creative Consultant'),(8916,947,9,'Executive Music Producer'),(8916,493,9,'Thanks'),(8916,671,6,'Supervising Sound Editor'),(8916,3288,4,'Screenplay'),(8916,3289,4,'Screenplay'),(8916,5132,6,'Music Editor'),(8916,5553,6,'Original Music Composer'),(8916,11098,6,'Original Music Composer'),(8916,12106,3,'Producer'),(8916,12065,3,'Executive Producer'),(8916,12066,3,'Executive Producer'),(8916,12067,3,'Production Manager'),(8916,12090,3,'Casting'),(8916,12087,9,'Thanks'),(8916,18863,2,'Director'),(8916,20739,9,'Choreographer'),(8916,32532,3,'Producer'),(8916,52870,2,'Director'),(8916,56268,4,'Screenplay'),(8916,56269,3,'Producer'),(8916,56270,5,'Editor'),(8916,64444,7,'Production Illustrator'),(8916,143915,6,'Sound Editor'),(8916,574003,3,'Production Supervisor'),(8916,933498,9,'Systems Administrators & Support'),(8916,935634,9,'Thanks'),(8916,986011,3,'Executive Producer'),(8916,1049272,10,'Animation'),(8916,1096416,3,'Casting'),(8916,1264811,6,'Music Editor'),(8916,1264811,9,'Thanks'),(8916,1339432,9,'Post Production Supervisor'),(8916,1341781,6,'Sound Mixer'),(8916,1352979,6,'Music Editor'),(8916,1353148,10,'Animation'),(8916,1377373,3,'Casting'),(8916,1398947,6,'Foley'),(8916,1400536,5,'First Assistant Editor'),(8916,1404546,6,'Music Editor'),(8916,1404749,9,'Thanks'),(8916,1410568,6,'Sound Recordist'),(8916,1416298,10,'Visual Effects Supervisor'),(8916,1440822,9,'Special Sound Effects'),(8916,1450347,4,'Storyboard'),(8916,1454757,7,'Sculptor'),(8916,1531504,6,'Sound'),(8916,1552873,5,'Color Timer'),(8916,1586922,9,'Additional Music'),(8916,1595460,7,'Production Design'),(8916,1677816,9,'Production Controller'),(8916,1678655,5,'Editorial Coordinator'),(8916,1748683,9,'Supervising Animator'),(8916,1780681,7,'Art Direction'),(8916,1780705,7,'Set Designer'),(8916,1780706,2,'Layout'),(8916,1780707,11,'Lighting Artist'),(8916,1780708,11,'Lighting Supervisor'),(8916,1780709,3,'Production Coordinator'),(8916,1780710,3,'Researcher'),(8916,1780711,6,'Assistant Sound Editor'),(8916,1780712,6,'Orchestrator'),(8916,1780713,10,'3D Modeller'),(8916,1780714,10,'Visual Effects'),(8916,1780715,10,'Visual Effects Coordinator'),(8916,1780716,9,'Supervising Technical Director'),(2119,770,3,'Producer'),(2119,947,6,'Original Music Composer'),(2119,541,5,'Editor'),(2119,771,3,'Producer'),(2119,893,2,'Director'),(2119,909,5,'Editor'),(2119,908,5,'Editor'),(2119,2046,5,'Editor'),(2119,2486,7,'Art Direction'),(2119,4710,7,'Art Direction'),(2119,4712,7,'Set Decoration'),(2119,4713,8,'Costume Design'),(2119,5490,3,'Casting'),(2119,11057,4,'Screenplay'),(2119,12634,1,'Director of Photography'),(2119,21012,5,'Editor'),(2119,21755,5,'Editor'),(9641,4500,6,'Music'),(9641,5708,1,'Director of Photography'),(9641,17825,3,'Producer'),(9641,20739,2,'Director'),(9641,20739,3,'Producer'),(9641,20742,3,'Producer'),(9641,29206,3,'Producer'),(9641,52696,4,'Screenplay'),(9641,58266,3,'Producer'),(9641,58267,5,'Editor'),(9641,217371,6,'Music'),(5994,531,6,'Original Music Composer'),(5994,1098,5,'Editor'),(5994,15219,3,'Producer'),(5994,11099,1,'Director of Photography'),(5994,11091,2,'Director'),(5994,47050,4,'Screenplay'),(5994,47051,4,'Screenplay'),(5994,47052,3,'Producer'),(5994,47053,3,'Producer'),(5994,47054,3,'Producer'),(9563,3188,7,'Production Design'),(9563,932,4,'Screenplay'),(9563,1152,4,'Screenplay'),(9563,1152,2,'Director'),(9563,1152,3,'Executive Producer'),(9563,5914,3,'Casting'),(9563,2529,7,'Set Decoration'),(9563,3184,3,'Producer'),(9563,3192,3,'Casting'),(9563,5379,3,'Producer'),(9563,7187,3,'Executive Producer'),(9563,7200,3,'Producer'),(9563,7418,8,'Costume Design'),(9563,8408,1,'Director of Photography'),(9563,12131,7,'Art Direction'),(9563,20297,5,'Editor'),(9563,20569,7,'Set Decoration'),(9563,25058,5,'Editor'),(9563,35059,6,'Original Music Composer'),(9563,38780,6,'Original Music Composer'),(9563,57978,5,'Editor'),(9563,57977,5,'Editor'),(9563,158916,6,'Sound Re-Recording Mixer'),(9563,548432,6,'Sound Re-Recording Mixer'),(9563,548437,5,'Dialogue Editor'),(9563,1322089,8,'Costume Supervisor'),(9563,1352969,6,'Supervising Sound Editor'),(9563,1367667,6,'Sound Effects Editor'),(9563,1378755,6,'Sound Re-Recording Mixer'),(9563,1392081,6,'Sound Effects Editor'),(9563,1392901,5,'Dialogue Editor'),(9563,1399861,6,'Sound Re-Recording Mixer'),(9563,1400072,6,'Sound Re-Recording Mixer'),(9563,1403636,5,'Dialogue Editor'),(9563,1405232,5,'Dialogue Editor'),(9563,1405382,5,'Dialogue Editor'),(9563,1406826,6,'Sound Effects Editor'),(9563,1412452,6,'Supervising Sound Editor'),(9563,1423757,6,'Sound Effects Editor'),(9563,1445842,1,'Still Photographer'),(9563,1469339,2,'Script Supervisor'),(9563,1533072,8,'Assistant Costume Designer'),(9563,1535951,6,'Sound Effects Editor'),(9563,1552062,6,'Production Sound Mixer'),(547,153,6,'Original Music Composer'),(547,27,4,'Screenplay'),(547,149,1,'Director of Photography'),(547,1047,5,'Editor'),(547,1484,3,'Casting'),(547,1731,5,'Editor'),(547,2163,4,'Screenplay'),(547,2243,7,'Production Design'),(547,3190,5,'Editor'),(547,4135,2,'Director'),(547,4135,3,'Producer'),(547,4146,3,'Producer'),(547,4148,7,'Set Decoration'),(547,4150,8,'Costume Design'),(547,7534,3,'Casting'),(547,7529,6,'Original Music Composer'),(547,7530,3,'Executive Producer'),(547,7531,3,'Producer'),(547,7532,3,'Producer'),(547,7533,6,'Original Music Composer'),(547,7535,7,'Set Decoration'),(547,7536,8,'Costume Design'),(547,7537,6,'Sound Designer'),(547,7538,6,'Music Editor'),(547,7539,6,'Original Music Composer'),(547,47870,4,'Author'),(1538,1707,4,'Writer'),(1538,638,2,'Director'),(1538,638,3,'Producer'),(1538,647,1,'Director of Photography'),(1538,10816,5,'Editor'),(1538,6410,3,'Casting'),(1538,1213,6,'Original Music Composer'),(1538,5779,7,'Production Design'),(1538,4027,3,'Executive Producer'),(1538,5011,3,'Associate Producer'),(1538,6348,8,'Costume Design'),(1538,19156,3,'Casting Associate'),(1538,8576,9,'Additional Music'),(1538,9615,5,'Editor'),(1538,11801,7,'Set Decoration'),(1538,12255,3,'Executive Producer'),(1538,26713,3,'Executive Producer'),(1538,13458,9,'Stunt Coordinator'),(1538,13457,9,'Special Effects Coordinator'),(1538,53900,7,'Assistant Art Director'),(1538,19290,1,'Director of Photography'),(1538,19291,7,'Art Direction'),(1538,42030,9,'Makeup Effects'),(1538,17962,3,'Associate Producer'),(1538,17962,3,'Unit Production Manager'),(1538,19863,7,'Set Designer'),(1538,23788,8,'Prosthetic Supervisor'),(1538,54797,3,'Executive Producer'),(1538,59932,3,'Casting Associate'),(1538,59564,3,'Unit Production Manager'),(1538,62560,7,'Assistant Art Director'),(1538,92487,9,'Stunts'),(1538,72113,10,'Visual Effects Producer'),(1538,76016,7,'Assistant Art Director'),(1538,77365,3,'Researcher'),(1538,94544,9,'Additional Music'),(1538,108801,1,'Additional Camera'),(1538,164801,9,'Property Master'),(1538,212137,3,'Co-Producer'),(1538,212137,2,'Assistant Director'),(1538,449627,9,'Video Assist Operator'),(1538,554533,6,'Boom Operator'),(1538,575769,9,'Transportation Coordinator'),(1538,578778,10,'Visual Effects Supervisor'),(1538,579077,8,'Makeup Artist'),(1538,904450,5,'First Assistant Editor'),(1538,938105,9,'Visual Effects Editor'),(1538,944682,3,'Associate Producer'),(1538,946579,3,'Producer'),(1538,967719,8,'Set Costumer'),(1538,1102816,1,'Additional Camera'),(1538,1116937,6,'Foley'),(1538,1118728,3,'Associate Producer'),(1538,1118728,9,'Second Unit Cinematographer'),(1538,1174105,7,'Location Scout'),(1538,1249773,8,'Makeup Artist'),(1538,1326114,8,'Makeup Department Head'),(1538,1335078,6,'Sound Editor'),(1538,1335239,5,'Color Timer'),(1538,1341815,2,'Script Supervisor'),(1538,1342656,5,'Dialogue Editor'),(1538,1352985,3,'Location Manager'),(1538,1357043,7,'Set Designer'),(1538,1357067,8,'Costume Supervisor'),(1538,1372885,6,'Music Editor'),(1538,1378220,7,'Leadman'),(1538,1389611,7,'Art Department Coordinator'),(1538,1399141,6,'Sound Re-Recording Mixer'),(1538,1400519,10,'Visual Effects Coordinator'),(1538,1401109,1,'Camera Operator'),(1538,1401109,1,'Steadicam Operator'),(1538,1403390,3,'Production Coordinator'),(1538,1403415,1,'Helicopter Camera'),(1538,1403432,7,'Construction Coordinator'),(1538,1404218,6,'Sound Re-Recording Mixer'),(1538,1404533,10,'Visual Effects Supervisor'),(1538,1407685,5,'Assistant Editor'),(1538,1408401,5,'Assistant Editor'),(1538,1409831,1,'Camera Operator'),(1538,1411520,7,'Painter'),(1538,1411541,5,'Digital Intermediate'),(1538,1412186,8,'Makeup Artist'),(1538,1412187,8,'Hair Department Head'),(1538,1412188,8,'Hairstylist'),(1538,1412189,8,'Hairstylist'),(1538,1412190,8,'Hairstylist'),(1538,1412195,6,'Sound Designer'),(1538,1412195,6,'Supervising Sound Editor'),(1538,1412199,9,'Special Effects'),(1538,1412200,9,'Special Effects'),(1538,1412201,10,'Visual Effects Producer'),(1538,1412201,10,'Visual Effects Supervisor'),(1538,1412202,10,'Visual Effects Supervisor'),(1538,1412205,1,'Still Photographer'),(1538,1412206,11,'Gaffer'),(1538,1412207,11,'Best Boy Electric'),(1538,1412211,9,'Picture Car Coordinator'),(1538,1412213,9,'Choreographer'),(1538,1412214,3,'Location Manager'),(1538,1412215,3,'Publicist'),(1538,1412216,9,'Translator'),(1538,1412218,5,'First Assistant Editor'),(1538,1412219,5,'First Assistant Editor'),(1538,1412460,5,'Editorial Services'),(1538,1433743,6,'Music Supervisor'),(1538,1461178,9,'Steadycam'),(1538,1463299,9,'Propmaker'),(1538,1463834,9,'Transportation Co-Captain'),(1538,1464787,9,'Utility Stunts'),(1538,1473444,6,'First Assistant Sound Editor'),(1538,1528165,3,'Casting Associate'),(1538,1532597,8,'Assistant Costume Designer'),(1538,1532772,5,'First Assistant Editor'),(1538,1536949,8,'Wigmaker'),(1538,1536976,9,'Post Production Assistant'),(1538,1545540,6,'Production Sound Mixer'),(1538,1546852,9,'Armorer'),(1538,1548698,6,'Orchestrator'),(1538,1553244,1,'Grip'),(1538,1564544,6,'Sound Mixer'),(1538,1569559,9,'Digital Effects Supervisor'),(1538,1569566,9,'Scenic Artist'),(1538,1577057,9,'Post Production Supervisor'),(1538,1618412,11,'Rigging Grip'),(1538,1680472,10,'Visual Effects'),(1538,1684977,7,'Standby Painter'),(1538,1695270,11,'Electrician'),(1538,1700116,8,'Set Costumer'),(1538,1700117,9,'Post Production Supervisor'),(1538,1700118,5,'Assistant Editor'),(1538,1700119,5,'Assistant Editor'),(1538,1701247,9,'Craft Service'),(1538,1706212,1,'First Assistant Camera'),(1538,1706214,9,'Driver'),(1538,1706217,9,'Security'),(1538,1706218,9,'Set Production Assistant'),(1538,1706219,9,'Stand In'),(1538,1706220,9,'Transportation Captain'),(1538,1706222,11,'Lighting Technician'),(1538,1706223,3,'Production Accountant'),(1538,1706226,10,'Digital Compositors'),(1538,1706228,9,'Thanks'),(9334,497,7,'Art Direction'),(9334,908,5,'Editor'),(9334,4500,6,'Original Music Composer'),(9334,7232,3,'Casting'),(9334,4953,7,'Production Design'),(9334,7775,4,'Screenplay'),(9334,7775,3,'Producer'),(9334,7775,4,'Characters'),(9334,7779,3,'Producer'),(9334,7780,3,'Producer'),(9334,7793,8,'Costume Design'),(9334,26713,2,'Director'),(9334,26714,1,'Director of Photography'),(9334,14341,7,'Art Direction'),(9334,20540,3,'Casting'),(9334,41898,7,'Set Decoration'),(9334,57341,4,'Screenplay'),(9334,10995,4,'Screenplay'),(9334,57342,3,'Executive Producer'),(9334,57343,3,'Producer'),(9334,57344,5,'Editor'),(9334,1332245,9,'Stunts'),(8914,894,6,'Original Music Composer'),(8914,1296,3,'Executive Producer'),(8914,2533,5,'Editor'),(8914,3995,8,'Makeup Department Head'),(8914,4772,3,'Casting Associate'),(8914,7715,5,'Editor'),(8914,5575,3,'Producer'),(8914,6063,10,'Visual Effects Producer'),(8914,6866,3,'Unit Production Manager'),(8914,6870,3,'Executive Producer'),(8914,6877,7,'Production Design'),(8914,6883,6,'Music Editor'),(8914,8531,3,'Production Supervisor'),(8914,9439,6,'Foley'),(8914,9558,9,'Utility Stunts'),(8914,14771,9,'Stunt Coordinator'),(8914,11001,5,'Additional Editing'),(8914,16601,10,'Visual Effects Supervisor'),(8914,16739,10,'Visual Effects Supervisor'),(8914,21070,7,'Supervising Art Director'),(8914,16938,2,'Director'),(8914,28862,7,'Set Decoration'),(8914,18989,7,'Assistant Art Director'),(8914,21351,5,'Editor'),(8914,13434,7,'Supervising Art Director'),(8914,23653,3,'Casting'),(8914,23867,7,'Art Direction'),(8914,32487,8,'Hairstylist'),(8914,40471,8,'Costume Design'),(8914,40546,1,'Camera Operator'),(8914,46083,7,'Assistant Art Director'),(8914,47052,3,'Producer'),(8914,47053,3,'Producer'),(8914,56257,4,'Screenplay'),(8914,56258,4,'Screenplay'),(8914,56260,4,'Screenplay'),(8914,57432,9,'Second Unit Cinematographer'),(8914,58192,1,'Director of Photography'),(8914,60219,9,'Visual Effects Editor'),(8914,62085,1,'Additional Camera'),(8914,65839,3,'Co-Producer'),(8914,92359,7,'Set Designer'),(8914,74768,2,'Assistant Director'),(8914,74768,3,'Associate Producer'),(8914,74989,1,'Steadicam Operator'),(8914,102343,8,'Makeup Artist'),(8914,141483,10,'Visual Effects Supervisor'),(8914,590075,7,'Production Design'),(8914,961111,7,'Art Direction'),(8914,1069830,3,'Unit Manager'),(8914,1102139,9,'Production Office Assistant'),(8914,1127957,9,'Visual Effects Editor'),(8914,1130137,9,'Post Production Supervisor'),(8914,1154553,3,'Executive Producer'),(8914,1206905,8,'Costume Supervisor'),(8914,1234428,3,'Associate Producer'),(8914,1273377,1,'Camera Operator'),(8914,1311616,8,'Prosthetic Makeup Artist'),(8914,1335048,9,'Digital Effects Supervisor'),(8914,1337123,7,'Assistant Art Director'),(8914,1342626,6,'Sound Re-Recording Mixer'),(8914,1355526,7,'Leadman'),(8914,1376818,6,'Foley'),(8914,1377133,1,'Still Photographer'),(8914,1377214,7,'Construction Coordinator'),(8914,1377235,9,'Transportation Coordinator'),(8914,1377241,3,'Location Manager'),(8914,1378219,9,'Property Master'),(8914,1387544,2,'Script Supervisor'),(8914,1388879,6,'Music Editor'),(8914,1389585,7,'Set Designer'),(8914,1392125,6,'Supervising Sound Editor'),(8914,1392127,5,'Dialogue Editor'),(8914,1392129,5,'Dialogue Editor'),(8914,1392130,6,'Sound Effects Editor'),(8914,1392134,6,'Sound Effects Editor'),(8914,1392925,2,'Script Supervisor'),(8914,1398972,1,'Underwater Camera'),(8914,1399636,10,'Visual Effects Supervisor'),(8914,1400812,6,'ADR & Dubbing'),(8914,1400849,9,'Property Master'),(8914,1401273,9,'Unit Publicist'),(8914,1401593,1,'Camera Operator'),(8914,1405236,10,'Visual Effects Producer'),(8914,1406110,10,'Visual Effects Supervisor'),(8914,1407681,9,'Sound Recordist'),(8914,1409271,6,'Sound Effects Editor'),(8914,1409750,9,'Visual Effects Editor'),(8914,1411166,8,'Key Hair Stylist'),(8914,1421665,8,'Set Costumer'),(8914,1421666,7,'Art Department Coordinator'),(8914,1421667,7,'Assistant Art Director'),(8914,1421668,7,'Set Designer'),(8914,1421670,6,'Supervising Sound Editor'),(8914,1421671,9,'Visual Effects Editor'),(8914,1421672,10,'Visual Effects Producer'),(8914,1421673,9,'Visual Effects Editor'),(8914,1421677,10,'Visual Effects Producer'),(8914,1421678,9,'CG Supervisor'),(8914,1421679,10,'Visual Effects Supervisor'),(8914,1421680,9,'CG Supervisor'),(8914,1421681,10,'Animation'),(8914,1421682,10,'Animation'),(8914,1421683,10,'Animation'),(8914,1421684,10,'Animation Supervisor'),(8914,1421685,9,'CGI Supervisor'),(8914,1421686,1,'Camera Operator'),(8914,1421687,1,'Camera Operator'),(8914,1429549,5,'Color Timer'),(8914,1434274,7,'Sculptor'),(8914,1440848,10,'Visual Effects'),(8914,1458273,7,'Construction Foreman'),(8914,1474777,3,'Producer'),(8914,1513639,10,'Special Effects Supervisor'),(8914,1526455,3,'Production Manager'),(8914,1547129,11,'Rigging Gaffer'),(8914,1551666,6,'Orchestrator'),(8914,1551870,6,'Production Sound Mixer'),(8914,1559580,11,'Rigging Grip'),(8914,1564997,3,'Executive In Charge Of Production'),(8914,1575753,11,'Electrician'),(8914,1578170,1,'Grip'),(8914,1578189,3,'Production Accountant'),(8914,1619076,7,'Standby Painter'),(8914,1648065,9,'Driver'),(8914,1684304,7,'Production Illustrator'),(8914,1685017,6,'Boom Operator'),(8914,1685460,9,'Aerial Coordinator'),(8914,1691207,9,'Stunts'),(8914,1724282,10,'Visual Effects Coordinator'),(8914,1741742,11,'Best Boy Electric'),(8914,1760138,9,'Special Effects Coordinator'),(8914,1767302,3,'Production Office Coordinator'),(8914,1768099,1,'First Assistant Camera'),(8914,1777221,8,'Assistant Costume Designer'),(8914,1777227,8,'Set Dressing Artist'),(8914,1777235,9,'Additional Music'),(8914,1777237,9,'Projection'),(8914,1777238,9,'Set Medic'),(8914,1777239,9,'Set Production Assistant'),(8914,1777240,9,'Transportation Captain'),(8914,1777241,9,'Video Assist Operator'),(8914,1778004,11,'Gaffer'),(8914,1778006,11,'Lighting Technician'),(8914,1778009,6,'Assistant Sound Editor'),(8914,1778010,10,'Digital Compositors'),(8914,1778013,4,'Storyboard'),(8914,1778015,10,'Mechanical Designer'),(8645,136,3,'Producer'),(8645,1213,6,'Original Music Composer'),(8645,16300,1,'Director of Photography'),(8645,3987,5,'Editor'),(8645,4504,3,'Executive Producer'),(8645,4507,3,'Executive Producer'),(8645,10571,3,'Line Producer'),(8645,5664,3,'Producer'),(8645,5669,3,'Casting'),(8645,9269,7,'Production Design'),(8645,11614,4,'Screenplay'),(8645,11614,2,'Director'),(8645,11614,3,'Producer'),(8645,53677,3,'Executive Producer'),(8645,958493,3,'Producer'),(8645,964318,3,'Executive Producer'),(8645,966473,3,'Producer'),(8645,1017377,3,'Casting'),(8645,1128126,3,'Producer'),(9509,376,3,'Producer'),(9509,897,3,'Casting'),(9509,893,2,'Director'),(9509,893,5,'Editor'),(9509,893,3,'Producer'),(9509,4061,8,'Costume Design'),(9509,4701,3,'Executive Producer'),(9509,6668,5,'Editor'),(9509,4710,7,'Production Design'),(9509,4723,4,'Screenplay'),(9509,5553,6,'Original Music Composer'),(9509,5553,6,'Conductor'),(9509,8531,3,'Production Manager'),(9509,8577,1,'Camera Operator'),(9509,11695,3,'Producer'),(9509,13223,5,'Color Timer'),(9509,12787,7,'Set Decoration'),(9509,15526,8,'Hairstylist'),(9509,16573,6,'ADR Editor'),(9509,19290,1,'Director of Photography'),(9509,23867,7,'Art Direction'),(9509,33290,9,'Additional Music'),(9509,58363,6,'Sound Effects Editor'),(9509,41591,1,'Steadicam Operator'),(9509,40546,1,'Camera Operator'),(9509,57153,3,'Unit Production Manager'),(9509,57153,3,'Co-Producer'),(9509,57154,3,'Executive Producer'),(9509,57767,4,'Novel'),(9509,60577,3,'Associate Producer'),(9509,60579,7,'Production Design'),(9509,60934,9,'Post-Production Manager'),(9509,92378,6,'Supervising ADR Editor'),(9509,69586,6,'Sound Effects Editor'),(9509,84392,9,'Technical Supervisor'),(9509,84392,3,'Associate Producer'),(9509,94470,3,'Casting Associate'),(9509,117222,7,'Assistant Property Master'),(9509,117226,9,'Property Master'),(9509,230436,3,'ADR Voice Casting'),(9509,579405,9,'Special Sound Effects'),(9509,960380,3,'Local Casting'),(9509,988844,7,'Construction Coordinator'),(9509,1001706,6,'Music Programmer'),(9509,1018635,9,'Stunts'),(9509,1106260,9,'Pilot'),(9509,1176343,6,'Foley Editor'),(9509,1186279,1,'Steadicam Operator'),(9509,1204244,5,'First Assistant Editor'),(9509,1318886,8,'Wardrobe Supervisor'),(9509,1326407,8,'Key Costumer'),(9509,1326460,7,'Assistant Art Director'),(9509,1331893,7,'Assistant Art Director'),(9509,1335071,9,'Special Effects Coordinator'),(9509,1337418,10,'Visual Effects Supervisor'),(9509,1337659,9,'Transportation Captain'),(9509,1337661,9,'Driver'),(9509,1338372,6,'Foley'),(9509,1339460,6,'Supervising Music Editor'),(9509,1357059,5,'Dialogue Editor'),(9509,1371069,2,'Script Supervisor'),(9509,1377213,7,'Assistant Art Director'),(9509,1378068,8,'Makeup Artist'),(9509,1378168,6,'Supervising Sound Editor'),(9509,1390535,1,'Still Photographer'),(9509,1393405,6,'Music Editor'),(9509,1394313,2,'Script Coordinator'),(9509,1398933,1,'Still Photographer'),(9509,1400347,1,'Underwater Camera'),(9509,1400355,9,'Transportation Coordinator'),(9509,1400808,9,'Property Master'),(9509,1402095,1,'Camera Operator'),(9509,1402896,10,'Visual Effects Supervisor'),(9509,1403415,1,'Aerial Director of Photography'),(9509,1403488,5,'Digital Intermediate'),(9509,1408305,6,'Sound Effects Editor'),(9509,1408311,5,'Dialogue Editor'),(9509,1412206,11,'Gaffer'),(9509,1412214,3,'Location Manager'),(9509,1412460,5,'Editorial Services'),(9509,1412482,7,'Set Decoration Buyer'),(9509,1413091,5,'Dialogue Editor'),(9509,1414517,5,'First Assistant Editor'),(9509,1415965,6,'Supervising Dialogue Editor'),(9509,1417515,6,'Sound Effects Editor'),(9509,1422058,9,'Armorer'),(9509,1425502,1,'Still Photographer'),(9509,1427823,8,'Hairstylist'),(9509,1427823,8,'Makeup Supervisor'),(9509,1428857,6,'Boom Operator'),(9509,1443067,6,'ADR & Dubbing'),(9509,1446164,9,'Stunt Coordinator'),(9509,1466468,3,'Researcher'),(9509,1478857,9,'Visual Effects Editor'),(9509,1492644,2,'First Assistant Director'),(9509,1512767,1,'Additional Camera'),(9509,1531492,9,'Post Production Supervisor'),(9509,1532606,9,'Armorer'),(9509,1536550,6,'Sound Effects Editor'),(9509,1536872,7,'Art Department Coordinator'),(9509,1536877,11,'Rigging Gaffer'),(9509,1536878,1,'Underwater Camera'),(9509,1536880,6,'Supervising Sound Editor'),(9509,1546115,6,'Production Sound Mixer'),(9509,1550241,1,'First Assistant Camera'),(9509,1553636,6,'Assistant Sound Editor'),(9509,1560071,9,'Craft Service'),(9509,1569563,9,'Post Production Assistant'),(9509,1578163,7,'Art Department Assistant'),(9509,1578164,7,'Greensman'),(9509,1578165,7,'Leadman'),(9509,1578166,7,'Location Scout'),(9509,1578167,7,'Painter'),(9509,1578168,7,'Standby Painter'),(9509,1578170,1,'Key Grip'),(9509,1578171,7,'Set Dresser'),(9509,1578172,8,'Wigmaker'),(9509,1578173,9,'Cableman'),(9509,1578174,9,'Carpenter'),(9509,1578175,1,'Camera Loader'),(9509,1578176,9,'Picture Car Coordinator'),(9509,1578177,9,'Projection'),(9509,1578178,9,'Set Medic'),(9509,1578179,9,'Set Production Assistant'),(9509,1578181,9,'Unit Publicist'),(9509,1578182,9,'Video Assist Operator'),(9509,1578185,11,'Best Boy Electric'),(9509,1578186,11,'Electrician'),(9509,1578187,11,'Rigging Grip'),(9509,1578189,3,'Production Accountant'),(9509,1578190,3,'Production Coordinator'),(9509,1578191,3,'Production Office Coordinator'),(9509,1578192,6,'Music Supervisor'),(9509,1578201,6,'Orchestrator'),(9509,1578203,10,'24 Frame Playback'),(9509,1578204,10,'I/O Supervisor'),(9509,1578205,9,'Studio Teachers'),(9509,1578206,3,'Unit Manager'),(9509,1730606,1,'Dolly Grip'),(9509,1733142,5,'Negative Cutter'),(9509,1739828,3,'Casting Assistant'),(9509,1772193,1,'Grip'),(9509,1772194,8,'Tailor'),(9509,1772196,9,'Aerial Coordinator'),(9509,1772197,9,'Animal Wrangler'),(9509,1772198,2,'Second Assistant Director'),(9509,1772201,6,'Musician'),(9384,546,3,'Casting'),(9384,4953,7,'Production Design'),(9384,10572,6,'Original Music Composer'),(9384,5575,3,'Producer'),(9384,6112,4,'Screenplay'),(9384,6112,4,'Story'),(9384,7399,3,'Executive Producer'),(9384,10953,3,'Executive Producer'),(9384,8279,7,'Set Designer'),(9384,9043,8,'Costume Design'),(9384,14377,3,'Casting'),(9384,12619,8,'Wigmaker'),(9384,14753,3,'Associate Producer'),(9384,14753,3,'Unit Production Manager'),(9384,14341,7,'Supervising Art Director'),(9384,22302,3,'Producer'),(9384,52161,6,'Music Supervisor'),(9384,11102,7,'Assistant Art Director'),(9384,41898,7,'Set Decoration'),(9384,47052,3,'Producer'),(9384,47053,3,'Producer'),(9384,53683,5,'Editor'),(9384,54164,1,'Director of Photography'),(9384,57130,2,'Director'),(9384,57130,4,'Screenplay'),(9384,57536,4,'Characters'),(9384,57536,3,'Producer'),(9384,57538,4,'Screenplay'),(9384,59833,3,'Associate Producer'),(9384,61108,3,'Casting Associate'),(9384,83066,8,'Key Hair Stylist'),(9384,83656,2,'Assistant Director'),(9384,85216,9,'Video Assist Operator'),(9384,93887,9,'Stunt Coordinator'),(9384,93887,9,'Second Unit Cinematographer'),(9384,102343,8,'Makeup Artist'),(9384,117217,4,'Storyboard'),(9384,554533,6,'Boom Operator'),(9384,959114,3,'Production Coordinator'),(9384,961616,4,'Story'),(9384,1004624,9,'Property Master'),(9384,1008052,6,'Music Editor'),(9384,1192700,6,'Music Supervisor'),(9384,1323077,8,'Costume Supervisor'),(9384,1335156,5,'Color Timer'),(9384,1338379,9,'Transportation Coordinator'),(9384,1340977,8,'Set Dressing Artist'),(9384,1341808,6,'Sound Re-Recording Mixer'),(9384,1378169,6,'Sound Re-Recording Mixer'),(9384,1378218,7,'Greensman'),(9384,1378228,6,'Sound Re-Recording Mixer'),(9384,1378241,1,'Camera Operator'),(9384,1378721,8,'Set Costumer'),(9384,1390539,2,'Script Supervisor'),(9384,1392127,5,'Dialogue Editor'),(9384,1392131,6,'Sound Editor'),(9384,1397823,6,'Foley'),(9384,1398880,9,'Picture Car Coordinator'),(9384,1399061,5,'Dialogue Editor'),(9384,1399859,7,'Leadman'),(9384,1403415,1,'Helicopter Camera'),(9384,1403633,9,'Post Production Supervisor'),(9384,1408192,1,'Camera Operator'),(9384,1409271,6,'Sound Effects Editor'),(9384,1413081,8,'Hairstylist'),(9384,1413134,9,'Unit Publicist'),(9384,1413153,7,'Construction Coordinator'),(9384,1417514,6,'Sound Designer'),(9384,1417514,6,'Supervising Sound Editor'),(9384,1418487,5,'Digital Intermediate'),(9384,1418826,1,'Still Photographer'),(9384,1429255,9,'Studio Teachers'),(9384,1443065,6,'ADR & Dubbing'),(9384,1460782,5,'First Assistant Editor'),(9384,1463364,9,'Propmaker'),(9384,1463422,9,'Special Effects Coordinator'),(9384,1463656,9,'Utility Stunts'),(9384,1464344,3,'Executive In Charge Of Post Production'),(9384,1545168,6,'Scoring Mixer'),(9384,1545540,6,'Sound mixer'),(9384,1545541,11,'Gaffer'),(9384,1548698,6,'Orchestrator'),(9384,1551483,3,'Production Accountant'),(9384,1551653,9,'Post Production Assistant'),(9384,1552521,9,'Stunts'),(9384,1552997,9,'Choreographer'),(9384,1564997,3,'Executive In Charge Of Production'),(9384,1565944,1,'First Assistant Camera'),(9384,1567909,10,'Visual Effects Supervisor'),(9384,1569558,9,'Craft Service'),(9384,1596307,9,'Set Medic'),(9384,1600111,11,'Rigging Grip'),(9384,1604955,8,'Assistant Costume Designer'),(9384,1608876,9,'Carpenter'),(9384,1619091,9,'Set Production Assistant'),(9384,1636375,3,'Location Manager'),(9384,1651210,1,'Grip'),(9384,1687124,7,'Art Department Coordinator'),(9384,1687125,7,'Construction Foreman'),(9384,1687126,7,'Painter'),(9384,1687136,9,'Driver'),(9384,1687137,9,'Loader'),(9384,1687138,9,'Production Intern'),(9384,1687141,9,'Scenic Artist'),(9384,1687145,9,'Transportation Captain'),(9384,1687153,11,'Best Boy Electric'),(9384,1687154,11,'Electrician'),(9384,1687157,3,'Production Office Coordinator'),(9384,1687161,6,'First Assistant Sound Editor'),(9279,3393,6,'Original Music Composer'),(9279,4057,5,'Editor'),(9279,10965,3,'Producer'),(9279,11222,3,'Producer'),(9279,13581,2,'Director'),(9279,13584,5,'Editor'),(9279,14536,1,'Director of Photography'),(9279,17828,3,'Producer'),(9279,19176,5,'Editor'),(9279,52042,3,'Producer'),(9279,57117,4,'Screenplay'),(9279,1451661,9,'Compositors'),(1487,472,6,'Sound Mixer'),(1487,1093,3,'Producer'),(1487,1993,3,'Producer'),(1487,3113,1,'Director of Photography'),(1487,3962,8,'Costume Design'),(1487,7229,6,'Original Music Composer'),(1487,7535,7,'Set Decoration'),(1487,7537,6,'Sound Designer'),(1487,8159,6,'Sound Effects Editor'),(1487,8166,9,'Mix Technician'),(1487,10908,7,'Art Direction'),(1487,10754,7,'Production Design'),(1487,11272,7,'Art Direction'),(1487,40751,7,'Set Designer'),(1487,10789,7,'Set Decoration'),(1487,10833,5,'Editor'),(1487,10828,2,'Director'),(1487,10828,4,'Screenplay'),(1487,10829,3,'Executive Producer'),(1487,10829,3,'Unit Production Manager'),(1487,66266,4,'Comic Book'),(1487,66266,3,'Co-Executive Producer'),(1487,40832,3,'Producer'),(1487,8313,3,'Casting'),(1487,29609,7,'Assistant Art Director'),(1487,50237,3,'Production Manager'),(1487,52452,6,'Music Supervisor'),(1487,62215,3,'Casting Associate'),(1487,104044,10,'Visual Effects Supervisor'),(1487,91136,5,'First Assistant Editor'),(1487,125898,1,'Camera Operator'),(1487,935910,9,'Documentation & Support'),(1487,939171,4,'Storyboard'),(1487,1014937,9,'Additional Music'),(1487,1034754,7,'Art Direction'),(1487,1125188,9,'Executive Visual Effects Producer'),(1487,1293492,8,'Makeup Designer'),(1487,1325917,7,'Supervising Art Director'),(1487,1339446,6,'Supervising Sound Editor'),(1487,1345600,9,'CG Supervisor'),(1487,1346943,10,'Special Effects Supervisor'),(1487,1351723,9,'Sound Recordist'),(1487,1361676,6,'Scoring Mixer'),(1487,1387570,1,'Still Photographer'),(1487,1389534,5,'Dialogue Editor'),(1487,1398934,1,'Steadicam Operator'),(1487,1399122,6,'Dolby Consultant'),(1487,1402255,11,'Electrician'),(1487,1403545,11,'Rigging Gaffer'),(1487,1404353,9,'Property Master'),(1487,1404539,9,'Stunt Coordinator'),(1487,1404547,9,'Transportation Coordinator'),(1487,1404549,2,'Script Supervisor'),(1487,1404552,9,'Stand In'),(1487,1404553,3,'Publicist'),(1487,1404714,7,'Sculptor'),(1487,1409240,1,'First Assistant Camera'),(1487,1425503,11,'Gaffer'),(1487,1436943,10,'Visual Effects Supervisor'),(1487,1442215,7,'Conceptual Design'),(1487,1453594,10,'Animation'),(1487,1463388,6,'First Assistant Sound Editor'),(1487,1471023,8,'Hairstylist'),(1487,1473983,4,'Screenstory'),(1487,1483221,9,'Sequence Supervisor'),(1487,1483841,9,'Stunts'),(1487,1525328,10,'Animation Supervisor'),(1487,1525892,8,'Makeup Artist'),(1487,1546564,9,'Makeup Effects'),(1487,1546757,9,'Armorer'),(1487,1548698,6,'Orchestrator'),(1487,1553264,6,'Music Editor'),(1487,1555371,3,'Production Accountant'),(1487,1555373,6,'Boom Operator'),(1487,1559163,10,'I/O Supervisor'),(1487,1569824,9,'Set Medic'),(1487,1570208,8,'Set Dressing Artist'),(1487,1571761,9,'Quality Control Supervisor'),(1487,1584241,9,'Post Production Supervisor'),(1487,1586336,8,'Seamstress'),(1487,1589728,6,'Foley'),(1487,1605403,9,'Loader'),(1487,1605412,9,'Video Assist Operator'),(1487,1605901,3,'Unit Manager'),(1487,1701248,9,'Propmaker'),(1487,1703014,9,'Visual Effects Editor'),(1487,1707611,7,'Art Department Coordinator'),(1487,1708341,7,'Location Scout'),(1487,1708342,7,'Production Design'),(1487,1708343,1,'Additional Camera'),(1487,1708344,1,'Grip'),(1487,1708345,8,'Costume Supervisor'),(1487,1708346,8,'Prosthetic Supervisor'),(1487,1708347,9,'Digital Effects Supervisor'),(1487,1708348,9,'Driver'),(1487,1708354,9,'Post Production Assistant'),(1487,1708355,9,'Production Controller'),(1487,1708356,9,'Transportation Captain'),(1487,1708358,2,'Assistant Director'),(1487,1708359,5,'Digital Intermediate'),(1487,1708360,5,'Editorial Production Assistant'),(1487,1708365,3,'Executive In Charge Of Production'),(1487,1708366,3,'Location Manager'),(1487,1708366,3,'Production Supervisor'),(1487,1708367,3,'Production Coordinator'),(1487,1708374,6,'Sound Editor'),(1487,1708376,10,'3D Supervisor'),(1487,1708377,10,'Digital Compositors'),(1487,1708378,10,'Visual Effects'),(1487,1708379,10,'Visual Effects Producer'),(1487,1708380,9,'Machinist'),(9422,8217,1,'Director of Photography'),(9422,2952,3,'Casting'),(9422,531,6,'Original Music Composer'),(9422,2260,4,'Screenplay'),(9422,2260,2,'Director'),(9422,2260,3,'Producer'),(9422,2997,3,'Producer'),(9422,4135,3,'Producer'),(9422,5329,7,'Production Design'),(9422,7530,3,'Producer'),(9422,10957,5,'Editor'),(9422,19971,8,'Costume Design'),(9422,39124,7,'Set Decoration'),(9422,1427384,2,'Script Supervisor'),(9422,1468014,9,'Unit Publicist'),(4824,284,3,'Executive Producer'),(4824,896,7,'Production Design'),(4824,905,7,'Art Direction'),(4824,1225,6,'Original Music Composer'),(4824,1484,3,'Casting'),(4824,7227,3,'Executive Producer'),(4824,6048,3,'Executive Producer'),(4824,7781,3,'Producer'),(4824,7779,3,'Producer'),(4824,7780,3,'Producer'),(4824,8674,1,'Camera Operator'),(4824,8677,1,'Director of Photography'),(4824,8885,8,'Costume Design'),(4824,8970,5,'Editor'),(4824,11297,8,'Hairstylist'),(4824,10497,7,'Art Direction'),(4824,10677,7,'Assistant Art Director'),(4824,16343,6,'ADR Supervisor'),(4824,17990,6,'Music Editor'),(4824,20406,1,'Aerial Director of Photography'),(4824,20757,4,'Screenplay'),(4824,30365,2,'Director'),(4824,30365,3,'Producer'),(4824,41898,7,'Set Decoration'),(4824,52878,9,'Thanks'),(4824,61361,7,'Art Direction'),(4824,63913,3,'Executive Producer'),(4824,63913,3,'Executive In Charge Of Production'),(4824,92477,10,'Digital Compositors'),(4824,74766,8,'Key Hair Stylist'),(4824,85122,6,'Sound Effects Editor'),(4824,136008,5,'Dialogue Editor'),(4824,274869,9,'Second Unit Cinematographer'),(4824,548435,6,'Foley'),(4824,999672,1,'Grip'),(4824,1023593,1,'Still Photographer'),(4824,1235306,3,'Unit Production Manager'),(4824,1319843,8,'Makeup Artist'),(4824,1326398,7,'Art Direction'),(4824,1331649,8,'Costume Supervisor'),(4824,1341403,6,'Supervising Sound Editor'),(4824,1342595,6,'Boom Operator'),(4824,1367566,2,'Script Supervisor'),(4824,1370841,7,'Property Master'),(4824,1389541,11,'Gaffer'),(4824,1408191,10,'Animation Supervisor'),(4824,1410546,7,'Standby Painter'),(4824,1425491,9,'Stunt Coordinator'),(4824,1428506,1,'Steadicam Operator'),(4824,1429245,10,'Special Effects Supervisor'),(4824,1440801,7,'Construction Coordinator'),(4824,1447984,3,'Unit Manager'),(4824,1458076,7,'Location Scout'),(4824,1464524,9,'Transportation Captain'),(4824,1476769,3,'Associate Producer'),(4824,1545169,6,'Orchestrator'),(4824,1552188,5,'Color Timer'),(4824,1552498,7,'Greensman'),(4824,1554027,3,'Production Coordinator'),(4824,1558200,1,'Key Grip'),(4824,1576017,6,'Production Sound Mixer'),(4824,1590106,11,'Best Boy Electric'),(4824,1593095,3,'Location Manager'),(4824,1614066,3,'Production Manager'),(4824,1619094,9,'Unit Publicist'),(4824,1662377,4,'Storyboard'),(4824,1727304,3,'Production Accountant'),(4824,1743186,8,'Assistant Costume Designer'),(4824,1761401,9,'Driver'),(4824,1778009,6,'Assistant Sound Editor'),(4824,1806627,9,'Set Production Assistant'),(4824,1816131,9,'Carpenter'),(4824,1834907,7,'Art Department Coordinator'),(4824,1834908,7,'Leadman'),(4824,1834909,7,'Painter'),(4824,1834910,1,'Camera Technician'),(4824,1834911,1,'First Assistant Camera'),(4824,1834912,8,'Set Costumer'),(4824,1834913,8,'Set Dressing Artist'),(4824,1834914,9,'CG Supervisor'),(4824,1834921,9,'Picture Car Coordinator'),(4824,1834922,9,'Post Production Assistant'),(4824,1834924,9,'Propmaker'),(4824,1834927,9,'Stand In'),(4824,1834928,9,'Stunts'),(4824,1834929,9,'Transportation Coordinator'),(4824,1834930,9,'Video Assist Operator'),(4824,1834931,2,'First Assistant Director'),(4824,1834932,5,'First Assistant Editor'),(4824,1834933,11,'Electrician'),(4824,1834934,6,'Music Supervisor'),(4824,1834935,10,'Visual Effects Coordinator'),(9620,584,4,'Author'),(9620,904,1,'Director of Photography'),(9620,2043,3,'Producer'),(9620,6044,3,'Casting'),(9620,6877,7,'Production Design'),(9620,6881,8,'Costume Design'),(9620,40795,3,'Publicist'),(9620,11401,2,'Director'),(9620,11401,3,'Producer'),(9620,11404,3,'Producer'),(9620,11098,6,'Original Music Composer'),(9620,14764,6,'Sound Effects Editor'),(9620,14765,6,'Supervising Sound Editor'),(9620,11001,5,'Editor'),(9620,15335,9,'Second Unit Cinematographer'),(9620,16551,8,'Hair Designer'),(9620,18926,3,'Production Manager'),(9620,20516,4,'Screenplay'),(9620,21351,5,'Additional Editing'),(9620,11021,7,'Set Decoration'),(9620,29405,5,'Editor'),(9620,34527,9,'Post Production Supervisor'),(9620,53813,7,'Art Direction'),(9620,91144,6,'Scoring Mixer'),(9620,548429,9,'Sound Recordist'),(9620,932186,6,'Orchestrator'),(9620,946092,3,'Producer'),(9620,1118402,9,'Special Effects Coordinator'),(9620,1190889,3,'Executive Producer'),(9620,1190889,3,'Unit Production Manager'),(9620,1222761,3,'Executive Producer'),(9620,1227173,6,'Foley'),(9620,1229074,2,'Assistant Director'),(9620,1229074,3,'Co-Producer'),(9620,1271607,9,'Video Assist Operator'),(9620,1334485,6,'Sound Designer'),(9620,1346314,10,'Digital Compositors'),(9620,1366708,9,'Stand In'),(9620,1378677,7,'Assistant Art Director'),(9620,1378725,9,'Transportation Coordinator'),(9620,1382059,11,'Best Boy Electric'),(9620,1391679,5,'Dialogue Editor'),(9620,1401593,1,'Helicopter Camera'),(9620,1401594,1,'Still Photographer'),(9620,1401604,8,'Wigmaker'),(9620,1404742,1,'Additional Camera'),(9620,1404752,9,'Transportation Coordinator'),(9620,1410353,7,'Greensman'),(9620,1410573,10,'Visual Effects Producer'),(9620,1410581,1,'Camera Operator'),(9620,1413462,9,'CG Supervisor'),(9620,1415631,10,'3D Supervisor'),(9620,1421695,7,'Construction Coordinator'),(9620,1423864,7,'Production Illustrator'),(9620,1425824,11,'Gaffer'),(9620,1428202,9,'Stunt Coordinator'),(9620,1438621,1,'Steadicam Operator'),(9620,1441238,8,'Key Hair Stylist'),(9620,1441271,8,'Hairstylist'),(9620,1441364,11,'Rigging Gaffer'),(9620,1447636,3,'Location Manager'),(9620,1448423,7,'Art Department Coordinator'),(9620,1457666,5,'Assistant Editor'),(9620,1472640,3,'Co-Producer'),(9620,1478953,2,'Script Supervisor'),(9620,1484198,10,'Visual Effects Coordinator'),(9620,1548639,3,'Unit Manager'),(9620,1549445,6,'Sound Engineer'),(9620,1551219,6,'Music Editor'),(9620,1552205,6,'First Assistant Sound Editor'),(9620,1559140,5,'First Assistant Editor'),(9620,1559180,9,'Systems Administrators & Support'),(9620,1562248,5,'Color Timer'),(9620,1564732,6,'Sound Mixer'),(9620,1580621,9,'Additional Music'),(9620,1580636,3,'Production Accountant'),(9620,1593506,11,'Electrician'),(9620,1644457,7,'Conceptual Design'),(9620,1644460,7,'Leadman'),(9620,1644461,1,'First Assistant Camera'),(9620,1644462,1,'Grip'),(9620,1644463,8,'Makeup Artist'),(9620,1644464,8,'Set Costumer'),(9620,1644465,8,'Set Dressing Artist'),(9620,1644466,9,'Carpenter'),(9620,1644467,9,'Craft Service'),(9620,1644468,9,'Digital Effects Supervisor'),(9620,1644469,9,'Post Production Assistant'),(9620,1644470,9,'Property Master'),(9620,1644471,9,'Security'),(9620,1644472,9,'Stunts'),(9620,1644473,9,'Transportation Co-Captain'),(9620,1644474,9,'Utility Stunts'),(9620,1644476,11,'Lighting Artist'),(9620,1644477,11,'Lighting Technician'),(9620,1644478,11,'Rigging Grip'),(9620,1644479,3,'Production Coordinator'),(9620,1644480,3,'Researcher'),(9620,1644481,6,'Boom Operator'),(9620,1644531,10,'Visual Effects'),(9620,1644532,10,'Visual Effects Supervisor'),(9620,1644533,4,'Storyboard'),(9302,153,6,'Music'),(9302,8677,1,'Director of Photography'),(9302,9578,3,'Producer'),(9302,14189,5,'Editor'),(9302,18250,2,'Director'),(9302,18250,3,'Producer'),(9302,57219,4,'Screenplay'),(9302,57220,4,'Screenplay'),(3512,376,3,'Producer'),(3512,908,5,'Editor'),(3512,949,3,'Casting'),(3512,1203,4,'Characters'),(3512,1222,7,'Production Design'),(3512,4699,3,'Producer'),(3512,7728,6,'Original Music Composer'),(3512,11476,8,'Costume Design'),(3512,18257,1,'Director of Photography'),(3512,27548,4,'Screenplay'),(3512,32277,2,'Director'),(3512,32278,4,'Screenplay'),(3512,32279,7,'Co-Art Director'),(3512,13435,7,'Set Decoration'),(3512,32280,8,'Makeup Artist'),(3512,32281,8,'Makeup Artist'),(3512,32282,8,'Hairstylist'),(3512,32283,8,'Makeup Artist'),(3512,32284,8,'Makeup Artist'),(3512,32285,8,'Makeup Artist'),(8078,796,7,'Set Decoration'),(8078,915,3,'Producer'),(8078,1723,3,'Producer'),(8078,2240,1,'Director of Photography'),(8078,2419,2,'Director'),(8078,2425,5,'Editor'),(8078,2530,8,'Costume Design'),(8078,2624,3,'Casting'),(8078,10205,3,'Producer'),(8078,4586,10,'Visual Effects Supervisor'),(8078,5053,3,'Producer'),(8078,6045,7,'Art Direction'),(8078,9432,9,'Special Effects Coordinator'),(8078,9360,1,'Still Photographer'),(8078,9817,7,'Production Design'),(8078,12891,4,'Screenplay'),(8078,13371,5,'Dialogue Editor'),(8078,56765,6,'Sound Designer'),(8078,21962,6,'Music'),(8078,24959,7,'Set Designer'),(8078,35510,3,'Producer'),(8078,32490,8,'Hair Designer'),(8078,37925,1,'Camera Operator'),(8078,43615,10,'Visual Effects Supervisor'),(8078,52193,6,'ADR Supervisor'),(8078,59769,10,'Visual Effects Producer'),(8078,71300,7,'Sculptor'),(8078,74775,9,'Propmaker'),(8078,74794,11,'Rigging Gaffer'),(8078,112572,9,'Stunt Coordinator'),(8078,210110,3,'Character Technical Supervisor'),(8078,1128347,7,'Assistant Art Director'),(8078,1198658,7,'Supervising Art Director'),(8078,1202850,7,'Sculptor'),(8078,1202850,8,'Makeup Artist'),(8078,1321004,8,'Costume Supervisor'),(8078,1322017,7,'Set Designer'),(8078,1322481,7,'Set Designer'),(8078,1329061,8,'Makeup Department Head'),(8078,1338372,6,'Foley'),(8078,1338374,6,'Sound Re-Recording Mixer'),(8078,1347775,2,'Script Supervisor'),(8078,1367493,6,'Foley'),(8078,1367505,6,'Foley Editor'),(8078,1368872,10,'Visual Effects Supervisor'),(8078,1372078,8,'Key Hair Stylist'),(8078,1378169,6,'Sound Re-Recording Mixer'),(8078,1390518,7,'Set Designer'),(8078,1390523,6,'Sound Effects Editor'),(8078,1390524,6,'Sound Effects Editor'),(8078,1390527,5,'Dialogue Editor'),(8078,1391564,7,'Construction Coordinator'),(8078,1391565,7,'Set Designer'),(8078,1395258,10,'Pyrotechnic Supervisor'),(8078,1397317,9,'Property Master'),(8078,1398939,7,'Art Department Coordinator'),(8078,1398941,7,'Leadman'),(8078,1398942,7,'Set Designer'),(8078,1398943,7,'Leadman'),(8078,1398944,7,'Sculptor'),(8078,1398945,7,'Sculptor'),(8078,1398946,6,'Supervising Sound Editor'),(8078,1398947,6,'Foley'),(8078,1398948,9,'Sound Recordist'),(8078,1398952,9,'Sound Recordist'),(8078,1398958,9,'Visual Effects Editor'),(8078,1398963,10,'Visual Effects Producer'),(8078,1398970,1,'Steadicam Operator'),(8078,1398972,1,'Underwater Camera'),(8078,1398979,6,'Music Editor'),(8078,1398980,9,'Transportation Coordinator'),(8078,1398982,3,'Publicist'),(8078,1414541,8,'Makeup Artist'),(8078,1434170,8,'Key Costumer'),(8078,1441380,8,'Hairstylist'),(8078,1496412,6,'Sound Effects Designer'),(8078,1548461,5,'First Assistant Editor'),(8078,1604020,10,'Modeling'),(8078,1622111,11,'Best Boy Electric'),(8078,1684307,7,'Painter'),(8078,1733514,11,'Chief Lighting Technician'),(8078,1738169,1,'Key Grip'),(8078,1776971,6,'ADR Editor'),(8078,1813019,9,'Propmaker'),(8078,1836618,2,'Assistant Director'),(8078,1852095,6,'Boom Operator'),(8078,1883535,2,'First Assistant Director'),(8078,1883538,9,'Propmaker'),(8078,1883558,9,'Pyrotechnician'),(8078,1883564,1,'Dolly Grip'),(8078,1883570,5,'Assistant Editor'),(7485,6037,10,'Visual Effects'),(7485,10952,3,'Producer'),(7485,9989,6,'Original Music Composer'),(7485,19241,4,'Screenstory'),(7485,19241,4,'Writer'),(7485,20907,2,'Director'),(7485,52707,4,'Novel'),(7485,1007395,9,'Stunts'),(7485,1378226,6,'Sound Re-Recording Mixer'),(7485,1813644,9,'Stunts'),(6435,37,6,'Original Music Composer'),(6435,1296,3,'Executive Producer'),(6435,1899,3,'Producer'),(6435,2171,2,'Director'),(6435,5337,5,'Dialogue Editor'),(6435,16328,4,'Screenplay'),(6435,5575,4,'Screenplay'),(6435,8846,1,'Director of Photography'),(6435,9360,1,'Still Photographer'),(6435,10970,8,'Costume Design'),(6435,15432,6,'Supervising Sound Editor'),(6435,19852,4,'Screenplay'),(6435,19852,3,'Co-Producer'),(6435,23285,9,'Stunt Coordinator'),(6435,21147,5,'Editor'),(6435,41188,8,'Costume Supervisor'),(6435,51680,4,'Novel'),(6435,57634,3,'Executive Producer'),(6435,57634,3,'Unit Production Manager'),(6435,62517,7,'Production Design'),(6435,108143,6,'Production Sound Mixer'),(6435,1298096,7,'Set Decoration'),(6435,1338374,6,'Sound Re-Recording Mixer'),(6435,1375099,6,'Sound Re-Recording Mixer'),(6435,1377221,6,'Boom Operator'),(6435,1380443,5,'Dialogue Editor'),(6435,1395463,1,'Camera Operator'),(6435,1399970,5,'Dialogue Editor'),(6435,1400072,6,'Sound Re-Recording Mixer'),(6435,1400371,9,'Stunt Coordinator'),(6435,1401109,1,'Camera Operator'),(6435,1401109,1,'Steadicam Operator'),(6435,1434225,2,'Script Supervisor'),(6435,1449899,6,'Music Supervisor'),(6435,1538306,6,'Sound Re-Recording Mixer'),(6278,1297,3,'Producer'),(6278,1999,6,'Original Music Composer'),(6278,3311,3,'Casting'),(6278,4504,3,'Producer'),(6278,4507,3,'Producer'),(6278,5707,3,'Producer'),(6278,7049,6,'Sound Effects Editor'),(6278,7024,9,'Second Unit'),(6278,7203,7,'Production Design'),(6278,7783,1,'Director of Photography'),(6278,40747,1,'Additional Photography'),(6278,40749,2,'Script Supervisor'),(6278,40765,1,'Camera Operator'),(6278,40793,1,'Helicopter Camera'),(6278,40793,2,'Third Assistant Director'),(6278,10880,7,'Art Direction'),(6278,12523,2,'Director'),(6278,10789,7,'Set Decoration'),(6278,12788,3,'Production Accountant'),(6278,13930,3,'Associate Producer'),(6278,13930,2,'First Assistant Director'),(6278,15514,7,'Art Department Assistant'),(6278,17399,5,'Editor'),(6278,42006,3,'Line Producer'),(6278,18989,7,'Supervising Art Director'),(6278,18991,6,'Sound Mixer'),(6278,56765,6,'Sound Designer'),(6278,21635,3,'Executive Producer'),(6278,23451,9,'Additional Music'),(6278,29606,4,'Screenplay'),(6278,43153,7,'Assistant Art Director'),(6278,43161,3,'Unit Production Manager'),(6278,56136,5,'Editor'),(6278,51557,3,'Casting'),(6278,113104,10,'Special Effects Supervisor'),(6278,113117,10,'Visual Effects Coordinator'),(6278,113194,9,'Stunt Coordinator'),(6278,58279,5,'First Assistant Editor'),(6278,58719,3,'Co-Producer'),(6278,58870,3,'Co-Producer'),(6278,63674,3,'Casting Assistant'),(6278,107415,3,'Co-Producer'),(6278,117232,6,'Sound Re-Recording Mixer'),(6278,141358,9,'Aerial Coordinator'),(6278,567973,8,'Costume Design'),(6278,953724,3,'Co-Producer'),(6278,957581,6,'Supervising Sound Editor'),(6278,1029064,2,'Second Assistant Director'),(6278,1081074,9,'Stunts'),(6278,1119520,3,'Location Manager'),(6278,1173302,7,'Art Direction'),(6278,1191105,3,'Co-Producer'),(6278,1196741,4,'Writer'),(6278,1222602,11,'Gaffer'),(6278,1252225,3,'Co-Producer'),(6278,1328823,7,'Art Direction'),(6278,1334165,9,'Property Master'),(6278,1340007,6,'Music Editor'),(6278,1342643,9,'Transportation Coordinator'),(6278,1357598,1,'Steadicam Operator'),(6278,1392587,7,'Set Designer'),(6278,1404834,7,'Conceptual Design'),(6278,1405021,9,'Pyrotechnician'),(6278,1405241,1,'Aerial Director of Photography'),(6278,1407849,8,'Makeup Artist'),(6278,1407859,9,'Special Effects Coordinator'),(6278,1428901,10,'Animation Supervisor'),(6278,1428911,8,'Makeup Designer'),(6278,1429549,5,'Color Timer'),(6278,1431061,10,'Visual Effects Producer'),(6278,1447497,11,'Lighting Artist'),(6278,1451387,7,'Art Department Manager'),(6278,1458557,1,'Still Photographer'),(6278,1460669,6,'Orchestrator'),(6278,1462394,9,'Unit Publicist'),(6278,1463304,4,'Storyboard'),(6278,1465618,7,'Draughtsman'),(6278,1533794,10,'Visual Effects Supervisor'),(6278,1535097,1,'Key Grip'),(6278,1536112,6,'Dolby Consultant'),(6278,1536114,8,'Hairstylist'),(6278,1537036,3,'Production Manager'),(6278,1545391,6,'Foley'),(6278,1550775,9,'Visual Effects Editor'),(6278,1553168,11,'Rigging Gaffer'),(6278,1562800,3,'Production Coordinator'),(6278,1566106,10,'Lead Animator'),(6278,1578635,7,'Location Scout'),(6278,1578637,7,'Painter'),(6278,1578638,7,'Production Illustrator'),(6278,1578639,7,'Sculptor'),(6278,1578640,7,'Standby Painter'),(6278,1578641,1,'First Assistant Camera'),(6278,1578642,9,'Armorer'),(6278,1578643,9,'Carpenter'),(6278,1578644,9,'CG Supervisor'),(6278,1578645,9,'Digital Effects Supervisor'),(6278,1578646,9,'Driver'),(6278,1578647,9,'Post Production Assistant'),(6278,1578648,9,'Stand In'),(6278,1578649,9,'Technical Supervisor'),(6278,1578650,9,'Video Assist Operator'),(6278,1578652,11,'Electrician'),(6278,1578653,3,'Casting Associate'),(6278,1578655,3,'Researcher'),(6278,1578657,6,'ADR & Dubbing'),(6278,1578658,6,'Boom Operator'),(6278,1578659,6,'Production Sound Mixer'),(6278,1578660,10,'3D Artist'),(6278,1578661,10,'Creature Design'),(6278,1578662,10,'Digital Compositors'),(6278,1578663,10,'I/O Supervisor'),(6278,1578664,10,'Visual Effects'),(6278,1578665,4,'Story'),(6278,1740487,7,'Title Designer'),(6278,1772969,7,'Assistant Property Master'),(6278,1772972,1,'Grip'),(6278,1772973,8,'Wardrobe Supervisor'),(6278,1772974,9,'Pilot'),(6278,1772975,3,'Assistant Production Coordinator'),(6278,1772976,6,'Musician'),(6278,1772977,10,'Roto Supervisor'),(9849,7727,10,'Visual Effects Supervisor'),(9849,18281,2,'Director'),(9849,11371,1,'Director of Photography'),(9849,56054,4,'Screenplay'),(9849,56055,4,'Screenplay'),(9849,63999,3,'Producer'),(5820,2952,3,'Casting'),(5820,376,3,'Producer'),(5820,1921,4,'Screenplay'),(5820,1921,3,'Co-Producer'),(5820,3392,3,'Producer'),(5820,7735,8,'Costume Design'),(5820,10832,1,'Director of Photography'),(5820,19872,7,'Production Design'),(5820,23420,3,'Executive Producer'),(5820,23486,6,'Original Music Composer'),(5820,23545,3,'Casting'),(5820,47640,2,'Director'),(5820,47641,4,'Novel'),(5820,47642,5,'Editor'),(5820,107420,7,'Set Decoration'),(5820,162522,9,'Stunt Coordinator'),(5820,1314894,7,'Art Direction'),(5820,1391699,1,'Still Photographer'),(5820,1394984,6,'Music Editor'),(5820,1398932,9,'Stunt Coordinator'),(5820,1457487,2,'Script Supervisor'),(5820,1472450,3,'Producer'),(5820,1518503,8,'Key Hair Stylist'),(5820,1541694,6,'Music Supervisor'),(5820,1734499,7,'Set Decoration'),(201,796,7,'Set Decoration'),(201,904,1,'Director of Photography'),(201,932,4,'Screenplay'),(201,1760,6,'Original Music Composer'),(201,2031,3,'Casting'),(201,2083,7,'Production Design'),(201,2381,3,'Producer'),(201,2383,3,'Producer'),(201,2397,8,'Costume Design'),(201,2399,3,'Casting'),(201,2504,3,'Executive Producer'),(201,2523,2,'Director'),(201,2527,7,'Art Direction'),(201,2528,7,'Art Direction'),(201,2529,7,'Set Decoration'),(201,2530,8,'Costume Design'),(201,2532,3,'Casting'),(201,2533,5,'Editor'),(201,1319749,8,'Costume Supervisor'),(9932,313,1,'Director of Photography'),(9932,1296,3,'Executive Producer'),(9932,1524,4,'Screenplay'),(9932,1524,2,'Director'),(9932,1889,6,'Music'),(9932,3305,3,'Producer'),(9932,8246,3,'Executive Producer'),(9932,5327,5,'Editor'),(9932,7904,3,'Executive Producer'),(9932,16731,3,'Producer'),(9932,18268,4,'Screenplay'),(9932,30711,4,'Screenplay'),(9932,37933,4,'Screenplay'),(9932,41018,3,'Executive Producer'),(9932,41893,3,'Executive Producer'),(8838,339,3,'Producer'),(8838,1225,9,'Additional Music'),(8838,2100,4,'Screenplay'),(8838,2103,4,'Screenplay'),(8838,2289,6,'Original Music Composer'),(8838,5283,3,'Producer'),(8838,6185,3,'Co-Producer'),(8838,6494,7,'Production Design'),(8838,6875,5,'Editor'),(8838,8870,8,'Key Makeup Artist'),(8838,9165,1,'Director of Photography'),(8838,11802,8,'Costume Design'),(8838,40795,9,'Unit Publicist'),(8838,14096,3,'Casting'),(8838,19466,7,'Set Decoration'),(8838,10837,7,'Art Direction'),(8838,23213,2,'Director'),(8838,30394,8,'Key Hair Stylist'),(8838,38022,7,'Assistant Art Director'),(8838,39038,7,'Art Direction'),(8838,49831,3,'Executive Producer'),(8838,56052,4,'Novel'),(8838,56053,3,'Executive Producer'),(8838,58088,5,'First Assistant Editor'),(8838,61107,3,'Unit Production Manager'),(8838,61481,3,'Co-Producer'),(8838,62546,3,'Casting Associate'),(8838,65592,9,'Post Production Supervisor'),(8838,74768,3,'Associate Producer'),(8838,74768,2,'First Assistant Director'),(8838,80157,6,'Production Sound Mixer'),(8838,87371,3,'Production Accountant'),(8838,103957,7,'Construction Coordinator'),(8838,117243,6,'Sound Editor'),(8838,207199,9,'Carpenter'),(8838,1139092,3,'Location Manager'),(8838,1210255,9,'Studio Teachers'),(8838,1328406,8,'Costume Supervisor'),(8838,1335852,7,'Art Department Coordinator'),(8838,1341781,6,'Sound Mixer'),(8838,1344273,6,'Music Editor'),(8838,1376818,6,'Foley'),(8838,1377130,10,'Visual Effects Supervisor'),(8838,1380036,7,'Property Master'),(8838,1386903,7,'Set Designer'),(8838,1404761,7,'Production Illustrator'),(8838,1407354,6,'Supervising Sound Editor'),(8838,1411275,9,'Transportation Coordinator'),(8838,1411293,1,'Still Photographer'),(8838,1416434,9,'Video Assist Operator'),(8838,1424151,8,'Makeup Artist'),(8838,1425491,9,'Stunt Coordinator'),(8838,1428857,6,'Boom Operator'),(8838,1532706,8,'Seamstress'),(8838,1534609,6,'Music Supervisor'),(8838,1534908,3,'Production Coordinator'),(8838,1536968,11,'Rigging Gaffer'),(8838,1546147,7,'Set Decoration Buyer'),(8838,1552998,9,'Craft Service'),(8838,1562841,9,'Special Effects Coordinator'),(8838,1595492,10,'Visual Effects Coordinator'),(8838,1604463,6,'Scoring Mixer'),(8838,1627977,9,'Propmaker'),(8838,1693502,5,'Color Timer'),(8838,1695255,11,'Rigging Grip'),(8838,1726500,9,'Chef'),(8838,1746552,1,'First Assistant Camera'),(8838,1763582,9,'Set Production Assistant'),(8838,1783646,9,'Set Medic'),(8838,1786491,7,'Location Scout'),(8838,1795409,1,'Grip'),(8838,1798486,6,'Assistant Sound Editor'),(8838,1803768,7,'Painter'),(8838,1809055,7,'Art Department Assistant'),(8838,1809067,7,'Construction Foreman'),(8838,1809068,7,'Greensman'),(8838,1809076,7,'Standby Painter'),(8838,1809077,1,'Key Grip'),(8838,1809078,8,'Set Dressing Artist'),(8838,1809080,9,'Driver'),(8838,1809081,1,'Camera Loader'),(8838,1809082,9,'Projection'),(8838,1809083,9,'Stunts'),(8838,1809084,9,'Transportation Co-Captain'),(8838,1809085,9,'Utility Stunts'),(8838,1809086,9,'Visual Effects Editor'),(8838,1809089,5,'Editorial Production Assistant'),(8838,1809090,11,'Best Boy Electric'),(8838,1809091,11,'Electrician'),(8838,1809092,10,'Visual Effects Producer'),(4958,495,3,'Casting'),(4958,794,7,'Art Direction'),(4958,494,3,'Casting Associate'),(4958,2359,3,'Producer'),(4958,2948,3,'Producer'),(4958,3190,5,'Editor'),(4958,3562,6,'Original Music Composer'),(4958,3769,1,'Director of Photography'),(4958,4135,3,'Producer'),(4958,4135,2,'Director'),(4958,5491,7,'Production Design'),(4958,6801,7,'Set Decoration'),(4958,7531,3,'Producer'),(4958,7532,3,'Executive Producer'),(4958,8680,7,'Set Decoration'),(4958,10970,8,'Costume Design'),(4958,11713,7,'Art Direction'),(4958,25210,4,'Screenplay'),(4958,41017,4,'Novel'),(4958,41018,3,'Producer'),(4958,66690,8,'Hairstylist'),(4958,91053,8,'Hairstylist'),(4958,587969,2,'Script Supervisor'),(4958,1299201,8,'Makeup Artist'),(4958,1316599,8,'Makeup Artist'),(4958,1338222,8,'Set Costumer'),(4958,1389310,8,'Makeup Department Head'),(4958,1399955,7,'Art Department Coordinator'),(4958,1407223,8,'Hair Department Head'),(4958,1548989,3,'Casting Associate'),(4958,1548990,8,'Set Costumer'),(4958,1548991,8,'Set Costumer'),(4958,1548992,8,'Set Costumer'),(4958,1548993,8,'Seamstress'),(786,4197,7,'Art Direction'),(786,2483,1,'Director of Photography'),(786,4186,5,'Editor'),(786,9987,3,'Producer'),(786,8274,7,'Set Decoration'),(786,11802,8,'Costume Design'),(786,11649,2,'Director'),(786,11649,4,'Screenplay'),(786,11649,3,'Producer'),(786,11652,3,'Producer'),(786,11653,3,'Producer'),(786,11654,3,'Producer'),(786,11655,3,'Producer'),(786,11656,6,'Original Music Composer'),(786,11657,5,'Editor'),(786,11658,3,'Casting'),(9513,2043,3,'Producer'),(9513,12892,4,'Screenplay'),(9513,12893,4,'Screenplay'),(9513,20823,1,'Director of Photography'),(9513,23486,6,'Original Music Composer'),(9513,49903,2,'Director'),(9513,49907,3,'Executive Producer'),(9513,56336,4,'Novel'),(9513,56337,3,'Executive Producer'),(9513,57769,5,'Editor'),(9513,1447547,9,'Compositors'),(8413,4014,2,'Director'),(8413,4016,3,'Producer'),(8413,8380,7,'Art Direction'),(8413,945,7,'Set Decoration'),(8413,1093,3,'Producer'),(8413,1325,3,'Casting'),(8413,1993,3,'Producer'),(8413,3961,5,'Editor'),(8413,3965,3,'Casting'),(8413,5061,8,'Costume Design'),(8413,6060,10,'Special Effects Supervisor'),(8413,7714,6,'Original Music Composer'),(8413,7783,1,'Director of Photography'),(8413,7786,3,'Casting'),(8413,7788,7,'Art Direction'),(8413,7787,7,'Art Direction'),(8413,9024,7,'Supervising Art Director'),(8413,11273,7,'Set Designer'),(8413,40765,1,'Camera Operator'),(8413,18775,9,'Stunt Coordinator'),(8413,25758,3,'Casting Associate'),(8413,29611,10,'Special Effects Supervisor'),(8413,55753,4,'Writer'),(8413,55754,3,'Executive Producer'),(8413,71579,7,'Art Direction'),(8413,80424,7,'Art Direction'),(8413,590075,7,'Production Design'),(8413,948631,3,'Executive Producer'),(8413,986687,7,'Art Direction'),(8413,1319160,8,'Costume Supervisor'),(8413,1325917,7,'Art Direction'),(8413,1335045,6,'Music Editor'),(8413,1335179,9,'Special Effects Coordinator'),(8413,1403490,6,'Music Editor'),(8413,1404861,5,'Dialogue Editor'),(8413,1404875,2,'Script Supervisor'),(8413,1410153,5,'Dialogue Editor'),(8413,1428506,1,'Steadicam Operator'),(8413,1434635,8,'Hairstylist'),(8413,1434635,8,'Makeup Artist'),(8413,1434637,8,'Hairstylist'),(8413,1434638,8,'Makeup Artist'),(8413,1434639,8,'Makeup Artist'),(8413,1434642,9,'Makeup Effects'),(8413,1434643,9,'Makeup Effects'),(8413,1434644,7,'Art Department Coordinator'),(8413,1434645,7,'Construction Coordinator'),(8413,1458533,6,'Music Editor'),(8413,1463142,2,'Script Supervisor'),(8413,1497784,6,'Music Supervisor'),(8413,1536575,10,'Special Effects Supervisor'),(8413,1640866,6,'Sound Effects Editor'),(8413,1647681,10,'Visual Effects Supervisor'),(8413,1772338,5,'Dialogue Editor'),(8413,1815292,6,'Sound Designer'),(8413,1833493,2,'First Assistant Director'),(8413,1833497,5,'Dialogue Editor'),(8413,1833501,10,'Special Effects Supervisor'),(8413,1833510,1,'Camera Operator'),(9676,3686,3,'Casting'),(9676,507,4,'Screenplay'),(9676,1150,2,'Director'),(9676,1254,3,'Producer'),(9676,1264,5,'Editor'),(9676,2366,7,'Production Design'),(9676,4140,6,'Original Music Composer'),(9676,12235,1,'Director of Photography'),(9676,12787,7,'Set Decoration'),(9676,18862,4,'Novel'),(9676,16336,3,'Casting'),(9676,17166,8,'Costume Design'),(9676,17209,3,'Producer'),(9676,21122,6,'Music Editor'),(9676,32355,8,'Makeup Artist'),(9676,56032,3,'Producer'),(9676,57901,3,'Producer'),(9676,92479,9,'Stunt Coordinator'),(9676,76016,7,'Art Direction'),(9676,85513,3,'Location Manager'),(9676,85960,6,'Sound Designer'),(9676,85961,6,'Sound Effects Editor'),(9676,112345,9,'Stunt Coordinator'),(9676,234685,9,'Choreographer'),(9676,983118,1,'Camera Operator'),(9676,1069627,1,'Camera Operator'),(9676,1172443,1,'Still Photographer'),(9676,1299200,7,'Construction Coordinator'),(9676,1304276,6,'Foley'),(9676,1317128,8,'Hairstylist'),(9676,1324125,8,'Set Costumer'),(9676,1324409,8,'Costume Supervisor'),(9676,1330586,8,'Makeup Artist'),(9676,1335069,9,'Special Effects Coordinator'),(9676,1340346,5,'Dialogue Editor'),(9676,1350233,7,'Art Department Coordinator'),(9676,1378826,7,'Art Department Coordinator'),(9676,1382929,9,'Stunt Coordinator'),(9676,1389609,8,'Makeup Artist'),(9676,1396246,3,'Casting'),(9676,1398934,1,'Steadicam Operator'),(9676,1399287,10,'Visual Effects Supervisor'),(9676,1401287,6,'Sound Effects Editor'),(9676,1401288,6,'Sound Effects Editor'),(9676,1401290,6,'Sound Re-Recording Mixer'),(9676,1401331,11,'Gaffer'),(9676,1401373,3,'Publicist'),(9676,1405220,9,'Unit Publicist'),(9676,1407705,6,'Sound Re-Recording Mixer'),(9676,1408316,6,'ADR & Dubbing'),(9676,1409220,6,'Sound Re-Recording Mixer'),(9676,1412260,11,'Gaffer'),(9676,1412601,8,'Makeup Artist'),(9676,1412604,8,'Makeup Artist'),(9676,1412606,1,'Camera Operator'),(9676,1413808,2,'Script Supervisor'),(9676,1418528,8,'Hairstylist'),(9676,1433992,8,'Hairstylist'),(9676,1433996,8,'Hairstylist'),(9676,1433998,8,'Hairstylist'),(9676,1434011,7,'Art Department Coordinator'),(9676,1434014,9,'Property Master'),(9676,1434016,7,'Assistant Art Director'),(9676,1434159,9,'Special Effects Coordinator'),(9676,1434161,10,'Visual Effects Producer'),(9676,1434165,1,'Camera Operator'),(9676,1434166,1,'Still Photographer'),(9676,1434170,8,'Set Costumer'),(9676,1434171,8,'Set Costumer'),(9676,1434172,9,'Transportation Coordinator'),(9676,1434173,3,'Location Manager'),(9676,1434174,9,'Studio Teachers'),(9664,894,6,'Original Music Composer'),(9664,1325,3,'Casting'),(9664,3501,3,'Casting'),(9664,5322,3,'Executive Producer'),(9664,7049,6,'Sound Effects Editor'),(9664,7786,3,'Casting'),(9664,8676,3,'Producer'),(9664,9161,8,'Hairstylist'),(9664,9161,8,'Makeup Artist'),(9664,9162,8,'Hairstylist'),(9664,9162,8,'Makeup Artist'),(9664,11229,6,'Supervising Sound Editor'),(9664,10124,7,'Set Decoration'),(9664,12920,4,'Screenplay'),(9664,16465,5,'Editor'),(9664,16684,6,'Supervising Sound Editor'),(9664,23422,1,'Director of Photography'),(9664,27818,8,'Costume Design'),(9664,32349,7,'Production Design'),(9664,52452,6,'Music Supervisor'),(9664,52453,6,'Music Supervisor'),(9664,57138,2,'Director'),(9664,58436,4,'Author'),(9664,58437,4,'Author'),(9664,65456,3,'Executive Producer'),(9664,68390,3,'Producer'),(9664,68391,3,'Executive Producer'),(9664,65457,3,'Executive Producer'),(9664,68393,5,'Editor'),(9664,71577,7,'Art Direction'),(9664,80424,7,'Art Direction'),(9664,122274,10,'Visual Effects Supervisor'),(9664,199526,6,'Music Editor'),(9664,999561,6,'Sound Designer'),(9664,1024842,9,'Visual Effects Editor'),(9664,1104780,9,'Supervising Art Director'),(9664,1233684,10,'Visual Effects Supervisor'),(9664,1293367,1,'Underwater Camera'),(9664,1334490,8,'Makeup Artist'),(9664,1335559,6,'Music Editor'),(9664,1335562,6,'Sound Effects Editor'),(9664,1380002,1,'Still Photographer'),(9664,1385884,2,'Script Supervisor'),(9664,1388877,9,'Stunt Coordinator'),(9664,1390368,1,'Camera Operator'),(9664,1392627,10,'Visual Effects Supervisor'),(9664,1393300,6,'Foley'),(9664,1393365,1,'Steadicam Operator'),(9664,1395024,6,'Sound Re-Recording Mixer'),(9664,1395709,6,'Sound Re-Recording Mixer'),(9664,1398108,1,'Camera Operator'),(9664,1400078,10,'Visual Effects Producer'),(9664,1408384,10,'Visual Effects Supervisor'),(9664,1408855,10,'Visual Effects Coordinator'),(9664,1410187,10,'Visual Effects Producer'),(9664,1425487,9,'Visual Effects Editor'),(9664,1425551,10,'Visual Effects Coordinator'),(9664,1427823,8,'Makeup Designer'),(9664,1448323,9,'CG Supervisor'),(9664,1461635,5,'First Assistant Editor'),(9664,1530262,8,'Costume Supervisor'),(9664,1541461,6,'Music Supervisor'),(9664,1546757,9,'Armorer'),(9664,1551911,9,'CG Supervisor'),(9664,1553166,9,'CG Supervisor'),(9664,1557546,9,'Armorer'),(9664,1557574,7,'Art Department Coordinator'),(9664,1557577,10,'3D Supervisor'),(9664,1557578,9,'Armorer'),(9664,1557581,9,'Armorer'),(9664,1557582,11,'Gaffer'),(9664,1557583,9,'CGI Supervisor'),(9664,1557584,10,'Animation'),(9664,1557585,10,'Animation'),(9664,1557586,10,'Animation'),(9664,1557587,10,'Animation'),(9664,1557588,10,'Visual Effects Producer'),(9664,1557590,10,'Visual Effects Producer'),(9664,1557591,5,'Dialogue Editor'),(9664,1557595,8,'Hairstylist'),(9664,1557600,5,'First Assistant Editor'),(2100,903,7,'Art Direction'),(2100,1760,6,'Original Music Composer'),(2100,2121,3,'Casting'),(2100,2887,6,'Original Music Composer'),(2100,3965,3,'Casting'),(2100,4950,1,'Director of Photography'),(2100,11001,5,'Editor'),(2100,10819,7,'Production Design'),(2100,21206,4,'Screenplay'),(2100,19046,7,'Production Design'),(2100,21526,2,'Director'),(2100,21527,4,'Screenplay'),(2100,12940,5,'Editor'),(2100,21528,7,'Production Design'),(2100,1460574,3,'Producer'),(9009,3656,1,'Director of Photography'),(9009,1262,3,'Casting'),(9009,3287,7,'Production Design'),(9009,5628,6,'Original Music Composer'),(9009,8574,2,'Director'),(9009,8578,5,'Editor'),(9009,10426,3,'Co-Producer'),(9009,11453,4,'Screenplay'),(9009,21035,3,'Producer'),(9009,21036,3,'Producer'),(9009,27786,4,'Novel'),(9009,42306,3,'Casting'),(9009,56569,3,'Executive Producer'),(9009,69227,3,'Producer'),(9009,962119,3,'Casting'),(9009,968496,3,'Associate Producer'),(9009,1363604,3,'Casting'),(2309,293,1,'Director of Photography'),(2309,474,9,'Thanks'),(2309,1325,3,'Casting'),(2309,1978,2,'Director'),(2309,3501,3,'Casting'),(2309,5664,3,'Producer'),(2309,6380,8,'Costume Design'),(2309,9154,5,'Editor'),(2309,23426,8,'Makeup Artist'),(2309,23768,3,'Producer'),(2309,23765,4,'Novel'),(2309,23765,3,'Producer'),(2309,23766,4,'Screenplay'),(2309,23769,7,'Set Designer'),(2309,23770,7,'Art Direction'),(2309,23771,7,'Art Direction'),(2309,23772,7,'Art Direction'),(2309,23773,7,'Art Direction'),(2309,23774,8,'Makeup Artist'),(2309,1319120,8,'Costume Supervisor'),(2309,1389548,2,'Script Supervisor'),(2309,1408853,2,'Script Supervisor'),(2309,1425515,2,'Script Supervisor'),(2309,1427523,9,'Unit Publicist'),(2309,1467002,9,'Choreographer'),(2309,1467004,9,'Thanks'),(2309,1838468,9,'Stunts'),(8285,2293,4,'Screenplay'),(8285,2293,2,'Director'),(8285,3393,6,'Original Music Composer'),(8285,3965,3,'Casting'),(8285,9341,1,'Director of Photography'),(8285,10949,3,'Producer'),(8285,10951,3,'Executive Producer'),(8285,20743,3,'Producer'),(8285,40513,3,'Executive Producer'),(8285,54777,3,'Casting'),(8285,83875,4,'Author'),(8285,56362,3,'Producer'),(8285,62511,3,'Executive Producer'),(8285,220273,3,'Producer'),(8285,957243,7,'Art Direction'),(8285,964321,3,'Producer'),(8285,964664,3,'Executive Producer'),(8285,964665,3,'Executive Producer'),(8285,965626,5,'Editor'),(8285,1018091,3,'Line Producer'),(8285,1034748,3,'Casting'),(8285,1125188,3,'Producer'),(8285,1128350,3,'Executive Producer'),(8285,1424894,8,'Hair Department Head'),(2312,23799,2,'Director'),(2312,23800,4,'Screenplay'),(2312,23800,4,'Novel'),(2312,23801,4,'Screenplay'),(2312,23808,1,'Director of Photography'),(2312,23809,5,'Editor'),(2312,23810,5,'Editor'),(2312,23814,7,'Set Decoration'),(2312,23815,8,'Costume Design'),(2312,23816,8,'Costume Design'),(2312,23817,8,'Makeup Artist'),(2312,23818,8,'Makeup Artist'),(2312,23819,8,'Makeup Artist'),(2312,40603,3,'Producer'),(2312,40605,3,'Executive Producer'),(2312,40606,3,'Executive Producer'),(2312,40609,3,'Producer'),(2312,40610,3,'Producer'),(2312,40607,3,'Producer'),(2312,40608,3,'Producer'),(2312,23806,6,'Music'),(2312,40613,6,'Music'),(2312,23812,7,'Production Design'),(2312,40614,7,'Art Direction'),(2312,42172,4,'Screenplay'),(2312,23811,3,'Casting'),(2312,43901,3,'Producer'),(2312,53648,3,'Casting'),(9839,286,3,'Producer'),(9839,1729,6,'Original Music Composer'),(9839,5379,3,'Producer'),(9839,7203,7,'Production Design'),(9839,8680,7,'Set Decoration'),(9839,10702,2,'Director'),(9839,10709,1,'Director of Photography'),(9839,12754,3,'Executive Producer'),(9839,12756,3,'Producer'),(9839,18457,3,'Casting'),(9839,17829,7,'Art Direction'),(9839,18263,4,'Author'),(9839,19690,7,'Art Direction'),(9839,33288,9,'Post Production Supervisor'),(9839,41892,3,'Executive Producer'),(9839,58096,5,'Editor'),(9839,59791,3,'Associate Producer'),(9839,59792,3,'Producer'),(9839,59793,8,'Costume Design'),(9839,75575,3,'Production Manager'),(9839,92246,3,'Production Coordinator'),(9839,552034,3,'Casting Assistant'),(9839,1087309,3,'Casting Assistant'),(9839,1384399,3,'Location Manager'),(9839,1462919,2,'Script Supervisor'),(9839,1642433,3,'Producer'),(9839,1697631,3,'Unit Production Manager'),(9839,1818543,3,'Production Supervisor'),(9839,1818546,3,'Production Manager'),(9839,1818549,3,'Location Manager'),(9839,1818551,3,'Production Coordinator'),(9713,37,6,'Original Music Composer'),(9713,2691,4,'Screenplay'),(9713,7783,1,'Director of Photography'),(9713,18356,2,'Director'),(9713,58718,3,'Executive Producer'),(9713,58719,3,'Executive Producer'),(9713,58720,5,'Editor'),(9007,8376,6,'Sound Designer'),(9007,599,3,'Casting'),(9007,2212,3,'Producer'),(9007,5633,7,'Set Decoration'),(9007,8701,3,'Producer'),(9007,11708,4,'Screenplay'),(9007,13031,9,'Stunt Coordinator'),(9007,12970,5,'Editor'),(9007,18268,4,'Screenplay'),(9007,24190,6,'Original Music Composer'),(9007,24190,6,'Conductor'),(9007,35760,7,'Set Designer'),(9007,54050,2,'Director'),(9007,56324,1,'Director of Photography'),(9007,61107,3,'Executive Producer'),(9007,67160,1,'Camera Operator'),(9007,92329,8,'Makeup Department Head'),(9007,72113,10,'Visual Effects Producer'),(9007,77130,3,'Producer'),(9007,77130,4,'Novel'),(9007,484529,7,'Art Department Coordinator'),(9007,960323,8,'Costume Design'),(9007,1102046,3,'Producer'),(9007,1124107,7,'Production Design'),(9007,1126348,3,'Location Manager'),(9007,1194471,1,'Still Photographer'),(9007,1223099,6,'Supervising ADR Editor'),(9007,1278542,9,'Pilot'),(9007,1319135,7,'Art Direction'),(9007,1321000,8,'Costume Supervisor'),(9007,1335122,6,'Sound Effects Editor'),(9007,1345596,6,'Dialogue Editor'),(9007,1367676,6,'Music Editor'),(9007,1400855,7,'Greensman'),(9007,1403395,7,'Lead Painter'),(9007,1404697,9,'Stunt Coordinator'),(9007,1412188,8,'Key Hair Stylist'),(9007,1412201,10,'Visual Effects Supervisor'),(9007,1412202,10,'Visual Effects Supervisor'),(9007,1428125,8,'Hairstylist'),(9007,1432577,8,'Key Makeup Artist'),(9007,1434767,2,'First Assistant Director'),(9007,1435194,6,'Music Editor'),(9007,1435689,7,'Construction Coordinator'),(9007,1445895,1,'Steadicam Operator'),(9007,1479807,2,'Script Supervisor'),(9007,1522363,10,'Special Effects Supervisor'),(9007,1549015,9,'Propmaker'),(9007,1562950,8,'Key Makeup Artist'),(9007,1593975,7,'Painter'),(9007,1594987,11,'Gaffer'),(9007,1619107,3,'Production Coordinator'),(9007,1701769,6,'Boom Operator'),(9007,1764736,8,'Key Costumer'),(9007,1777891,6,'Foley Editor'),(9007,1865862,6,'Orchestrator'),(9007,1868880,1,'Key Grip'),(9007,1877901,7,'Greensman'),(9007,1877902,9,'Propmaker'),(9007,1877903,10,'Visual Effects Coordinator'),(9007,1877904,10,'Visual Effects Coordinator'),(9007,1877907,5,'First Assistant Editor'),(9007,1877912,6,'Orchestrator'),(9007,1877913,7,'Title Designer'),(889,8215,3,'Producer'),(889,1593,3,'Casting'),(889,3393,6,'Original Music Composer'),(889,8705,7,'Art Direction'),(889,11080,4,'Screenplay'),(889,11081,4,'Screenplay'),(889,13581,2,'Director'),(889,13584,5,'Editor'),(889,13586,7,'Production Design'),(889,13594,3,'Executive Producer'),(889,13614,4,'Screenplay'),(889,13615,4,'Screenplay'),(889,13619,3,'Producer'),(889,13620,3,'Executive Producer'),(889,13621,3,'Executive Producer'),(889,13622,1,'Director of Photography'),(889,13626,7,'Set Decoration'),(889,13628,8,'Costume Design'),(1370,3719,7,'Art Direction'),(1370,1760,6,'Original Music Composer'),(1370,4673,3,'Casting'),(1370,4710,7,'Art Direction'),(1370,4981,5,'Editor'),(1370,10118,9,'Stunts'),(1370,10187,7,'Production Design'),(1370,12687,7,'Art Direction'),(1370,12882,3,'Producer'),(1370,15358,9,'Stunt Coordinator'),(1370,16483,4,'Screenplay'),(1370,13457,9,'Special Effects'),(1370,16589,2,'Director'),(1370,16590,4,'Screenplay'),(1370,16592,1,'Director of Photography'),(1370,16593,5,'Editor'),(1370,16594,5,'Editor'),(1370,13432,5,'Editor'),(1370,16595,7,'Art Direction'),(1370,16596,8,'Costume Design'),(1370,16597,8,'Makeup Artist'),(1370,16598,8,'Hairstylist'),(1370,16599,6,'Music Editor'),(1370,16600,6,'Sound Editor'),(1370,16601,10,'Visual Effects Supervisor'),(4942,1461,2,'Director'),(4942,1461,3,'Producer'),(4942,1891,5,'Editor'),(4942,2226,3,'Executive Producer'),(4942,7885,6,'Original Music Composer'),(4942,9967,7,'Production Design'),(4942,9040,1,'Director of Photography'),(4942,13626,7,'Set Decoration'),(4942,18789,3,'Executive Producer'),(4942,18789,3,'Unit Production Manager'),(4942,20802,3,'Producer'),(4942,20908,3,'Executive Producer'),(4942,21146,3,'Executive Producer'),(4942,31511,3,'Producer'),(4942,57989,4,'Screenplay'),(4942,57990,4,'Screenplay'),(4942,132209,3,'Production Supervisor'),(4942,554887,6,'Sound Effects Editor'),(4942,1015922,2,'Script Supervisor'),(4942,1074163,9,'Stunt Coordinator'),(4942,1227175,6,'Sound Effects Editor'),(4942,1324652,1,'Still Photographer'),(4942,1378225,5,'Dialogue Editor'),(4942,1402071,6,'Sound Re-Recording Mixer'),(4942,1404716,6,'Supervising Sound Editor'),(4942,1404717,6,'Supervising Sound Editor'),(4942,1404718,5,'Dialogue Editor'),(4942,1417514,6,'Sound Effects Editor'),(4942,1425343,5,'Dialogue Editor'),(1813,376,3,'Producer'),(1813,1213,6,'Original Music Composer'),(1813,1732,5,'Editor'),(1813,10950,3,'Executive Producer'),(1813,11772,3,'Executive Producer'),(1813,10764,3,'Producer'),(1813,12050,3,'Producer'),(1813,14096,3,'Casting'),(1813,10765,1,'Director of Photography'),(1813,17630,3,'Executive Producer'),(1813,18596,2,'Director'),(1813,18596,3,'Executive Producer'),(1813,19240,4,'Novel'),(1813,19241,4,'Screenplay'),(1813,19242,4,'Screenplay'),(1813,21517,3,'Casting'),(1813,1673596,3,'Executive Producer'),(8840,4710,7,'Production Design'),(8840,6688,8,'Costume Design'),(8840,6347,3,'Casting'),(8840,7727,10,'Creature Design'),(8840,12507,3,'Producer'),(8840,12511,7,'Set Decoration'),(8840,14712,6,'Original Music Composer'),(8840,10833,5,'Editor'),(8840,18878,2,'Director'),(8840,25061,7,'Supervising Art Director'),(8840,28240,1,'Director of Photography'),(8840,56058,4,'Screenplay'),(8840,56059,3,'Executive Producer'),(8840,56059,4,'Screenplay'),(8840,56060,3,'Executive Producer'),(8840,570136,2,'Script Supervisor'),(8840,1481830,7,'Art Direction'),(8840,1481831,8,'Costume Design'),(1722,294,5,'Editor'),(1722,469,6,'Original Music Composer'),(1722,668,3,'Casting'),(1722,1253,7,'Production Design'),(1722,2236,3,'Producer'),(1722,2238,3,'Producer'),(1722,2483,1,'Director of Photography'),(1722,8401,3,'Producer'),(1722,15539,4,'Screenplay'),(1722,18844,2,'Director'),(1722,18845,4,'Novel'),(1722,18846,3,'Producer'),(13,37,6,'Original Music Composer'),(13,24,2,'Director'),(13,26,4,'Novel'),(13,27,4,'Screenplay'),(13,28,3,'Producer'),(13,29,3,'Producer'),(13,30,3,'Producer'),(13,36,1,'Director of Photography'),(13,38,5,'Editor'),(13,37832,7,'Greensman'),(13,496,7,'Production Design'),(13,498,8,'Costume Design'),(13,555,7,'Set Decoration'),(13,2242,3,'Casting'),(13,3992,6,'Supervising Sound Editor'),(13,8794,7,'Assistant Art Director'),(13,10955,2,'Assistant Director'),(13,8160,6,'Foley'),(13,8274,7,'Leadman'),(13,8679,7,'Art Direction'),(13,11113,9,'Second Unit Cinematographer'),(13,11412,7,'Assistant Art Director'),(13,14049,9,'Stunt Coordinator'),(13,13930,2,'Assistant Director'),(13,15004,3,'Co-Producer'),(13,18095,1,'Still Photographer'),(13,22486,9,'Property Master'),(13,23781,5,'Assistant Editor'),(13,23782,9,'Visual Effects Art Director'),(13,42267,6,'Sound Re-Recording Mixer'),(13,42268,10,'Visual Effects Producer'),(13,42268,9,'Visual Effects Editor'),(13,42269,10,'Visual Effects Supervisor'),(13,42283,5,'First Assistant Editor'),(13,23972,7,'Art Direction'),(13,26986,8,'Makeup Artist'),(13,38022,7,'Set Designer'),(13,41082,7,'Leadman'),(13,42358,9,'Post Production Supervisor'),(13,55227,6,'Production Sound Mixer'),(13,74765,8,'Makeup Artist'),(13,82240,9,'Thanks'),(13,134930,9,'Property Master'),(13,175037,6,'ADR & Dubbing'),(13,237398,9,'Visual Effects Editor'),(13,1017376,1,'Camera Operator'),(13,1041458,9,'Thanks'),(13,1178899,8,'Makeup Artist'),(13,1271928,9,'CG Supervisor'),(13,1271932,9,'CG Supervisor'),(13,1271933,9,'Unit Publicist'),(13,1323768,8,'Costume Supervisor'),(13,1325650,7,'Set Designer'),(13,1328406,8,'Costume Supervisor'),(13,1341851,7,'Construction Coordinator'),(13,1358074,8,'Hairstylist'),(13,1368867,10,'Special Effects Supervisor'),(13,1386913,10,'Visual Effects'),(13,1389555,7,'Set Designer'),(13,1391604,3,'Location Manager'),(13,1394306,6,'Music Editor'),(13,1399116,6,'Sound Effects Editor'),(13,1399328,9,'Transportation Coordinator'),(13,1400813,5,'Dialogue Editor'),(13,1400905,5,'Dialogue Editor'),(13,1412188,8,'Hair Designer'),(13,1413169,6,'Sound Re-Recording Mixer'),(13,1413172,6,'ADR & Dubbing'),(13,1413196,8,'Set Costumer'),(13,1415465,6,'Sound Effects Editor'),(13,1419114,9,'Dialect Coach'),(13,1434225,2,'Script Supervisor'),(13,1438399,5,'Dialogue Editor'),(13,1446985,8,'Hairstylist'),(13,1446986,8,'Hairstylist'),(13,1446987,7,'Art Department Coordinator'),(13,1446988,7,'Art Department Coordinator'),(13,1446989,7,'Assistant Art Director'),(13,1446990,7,'Greensman'),(13,1446991,7,'Greensman'),(13,1446992,7,'Greensman'),(13,1446993,7,'Leadman'),(13,1446994,7,'Leadman'),(13,1446995,7,'Set Designer'),(13,1446996,6,'Foley'),(13,1447007,8,'Set Costumer'),(13,1447008,8,'Set Costumer'),(13,1447009,9,'Choreographer'),(13,1447010,3,'Location Manager'),(13,1447011,3,'Location Manager'),(13,1477006,9,'Post Production Supervisor'),(13,1521392,9,'Special Effects'),(13,1555028,1,'Additional Photography'),(6477,376,3,'Executive Producer'),(6477,2033,5,'Editor'),(6477,10569,3,'Executive Producer'),(6477,6044,3,'Casting'),(6477,239,4,'Screenplay'),(6477,239,4,'Story'),(6477,20823,1,'Director of Photography'),(6477,30696,3,'Producer'),(6477,49903,2,'Director'),(6477,49904,4,'Screenplay'),(6477,49905,4,'Screenplay'),(6477,49906,3,'Producer'),(6477,49907,3,'Executive Producer'),(6477,49908,3,'Executive Producer'),(6477,49909,7,'Production Design'),(6477,49910,6,'Songs'),(6477,49911,6,'Original Music Composer'),(6477,49912,6,'Music Supervisor'),(6477,49913,8,'Costume Design'),(6477,1447317,10,'Animation'),(6477,1453022,10,'Animation'),(6477,1455461,11,'Lighting Technician'),(6477,1455462,11,'Lighting Technician'),(6477,1455613,10,'Animation'),(1597,380,3,'Producer'),(1597,1484,3,'Casting'),(1597,2043,4,'Storyboard'),(1597,3305,3,'Producer'),(1597,4949,6,'Orchestrator'),(1597,5708,1,'Director of Photography'),(1597,6737,2,'Director'),(1597,6737,3,'Producer'),(1597,7885,6,'Original Music Composer'),(1597,8172,6,'Music Editor'),(1597,8411,8,'Costume Supervisor'),(1597,10385,4,'Screenplay'),(1597,10390,3,'Co-Producer'),(1597,10392,3,'Producer'),(1597,10395,5,'Editor'),(1597,10396,7,'Production Design'),(1597,10398,3,'Production Manager'),(1597,14194,10,'Visual Effects Supervisor'),(1597,14376,5,'Editor'),(1597,14382,6,'Supervising Sound Editor'),(1597,17220,7,'Art Direction'),(1597,17869,4,'Original Story'),(1597,17869,3,'Associate Producer'),(1597,17870,4,'Original Story'),(1597,17871,4,'Screenplay'),(1597,17873,7,'Set Decoration'),(1597,17992,6,'Sound Mixer'),(1597,18095,1,'Still Photographer'),(1597,22219,3,'Casting Associate'),(1597,52161,6,'Music Supervisor'),(1597,41076,3,'Co-Producer'),(1597,71527,9,'Second Unit Cinematographer'),(1597,74985,11,'Gaffer'),(1597,91153,9,'Transportation Captain'),(1597,91834,9,'Stunts'),(1597,216837,3,'Associate Producer'),(1597,555143,3,'Location Manager'),(1597,932179,7,'Location Scout'),(1597,1074163,9,'Stunt Coordinator'),(1597,1333153,7,'Property Master'),(1597,1345973,2,'Assistant Director'),(1597,1348642,9,'Scenic Artist'),(1597,1393455,2,'Script Supervisor'),(1597,1395367,11,'Best Boy Electric'),(1597,1399479,3,'Publicist'),(1597,1406611,7,'Construction Coordinator'),(1597,1412081,8,'Makeup Artist'),(1597,1413092,6,'Assistant Sound Editor'),(1597,1446671,7,'Greensman'),(1597,1455028,3,'Production Coordinator'),(1597,1458530,6,'Boom Operator'),(1597,1468618,8,'Hairstylist'),(1597,1474681,3,'Associate Producer'),(1597,1509396,1,'Key Grip'),(1597,1512745,11,'Rigging Gaffer'),(1597,1523419,8,'Key Hair Stylist'),(1597,1524179,7,'Art Department Coordinator'),(1597,1530870,9,'Post Production Supervisor'),(1597,1537850,9,'Special Effects Coordinator'),(1597,1538314,8,'Assistant Costume Designer'),(1597,1546458,6,'Sound Effects Editor'),(1597,1553014,5,'First Assistant Editor'),(1597,1553857,5,'Dialogue Editor'),(1597,1555028,1,'First Assistant Camera'),(1597,1562248,5,'Color Timer'),(1597,1586927,9,'Post Production Assistant'),(1597,1619976,9,'Carpenter'),(1597,1674660,9,'Stand In'),(1597,1704240,9,'Loader'),(1597,1743228,7,'Assistant Art Director'),(1597,1743229,7,'Construction Foreman'),(1597,1743260,8,'Set Dressing Artist'),(1597,1743262,9,'Choreographer'),(1597,1743263,9,'Craft Service'),(1597,1743264,9,'Driver'),(1597,1743265,9,'Projection'),(1597,1743266,9,'Set Medic'),(1597,1743267,9,'Set Production Assistant'),(1597,1743268,6,'Sound Recordist'),(1597,1743273,9,'Transportation Co-Captain'),(1597,1743274,9,'Utility Stunts'),(1597,1743275,11,'Electrician'),(1597,1743277,11,'Rigging Grip'),(1597,1743278,6,'Foley'),(1924,491,6,'Original Music Composer'),(1924,243,1,'Director of Photography'),(1924,1263,3,'Casting'),(1924,2523,5,'Editor'),(1924,3083,4,'Screenplay'),(1924,3083,4,'Story'),(1924,7190,4,'Writer'),(1924,6728,4,'Screenplay'),(1924,6729,4,'Screenplay'),(1924,7187,2,'Director'),(1924,20007,4,'Characters'),(1924,20008,4,'Characters'),(1924,20009,3,'Executive Producer'),(1924,20010,3,'Producer'),(1924,28841,5,'Editor'),(1924,55279,4,'Screenplay'),(1924,157703,9,'Second Unit'),(1924,568911,7,'Production Design'),(1924,1430394,3,'Associate Producer'),(9327,3393,6,'Music'),(9327,3663,3,'Executive Producer'),(9327,4489,4,'Screenplay'),(9327,4499,2,'Director'),(9327,4499,4,'Screenplay'),(9327,5283,3,'Executive Producer'),(9327,11506,1,'Director of Photography'),(9327,15005,5,'Editor'),(9327,56189,3,'Executive Producer'),(9327,57327,4,'Screenplay'),(9327,57328,4,'Screenplay'),(8488,1528,6,'Original Music Composer'),(8488,2888,3,'Producer'),(8488,8846,1,'Director of Photography'),(8488,25142,5,'Editor'),(8488,17167,2,'Director'),(8488,46080,3,'Producer'),(8488,55984,4,'Screenplay'),(8488,55985,5,'Editor'),(8273,298,3,'Producer'),(8273,434,3,'Casting'),(8273,436,3,'Casting'),(8273,1594,3,'Casting Associate'),(8273,2995,5,'Editor'),(8273,3288,3,'Executive Producer'),(8273,3289,3,'Executive Producer'),(8273,6048,5,'Dialogue Editor'),(8273,6627,3,'Producer'),(8273,15436,10,'Visual Effects Supervisor'),(8273,20745,8,'Costume Design'),(8273,21584,3,'Producer'),(8273,21584,4,'Screenplay'),(8273,21584,4,'Characters'),(8273,21585,3,'Producer'),(8273,21586,3,'Producer'),(8273,23486,6,'Original Music Composer'),(8273,43891,1,'Director of Photography'),(8273,54584,2,'Director'),(8273,54585,7,'Production Design'),(8273,57084,3,'Executive Producer'),(8273,57084,3,'Unit Production Manager'),(8273,59055,3,'ADR Voice Casting'),(8273,61570,9,'Stunt Coordinator'),(8273,63673,7,'Set Decoration'),(8273,108882,6,'Production Sound Mixer'),(8273,137483,6,'Orchestrator'),(8273,227227,6,'Music Supervisor'),(8273,231419,9,'Propmaker'),(8273,232458,9,'Stunts'),(8273,448477,3,'Associate Producer'),(8273,1141675,3,'Location Manager'),(8273,1208355,7,'Art Direction'),(8273,1219858,9,'Technical Supervisor'),(8273,1271793,9,'Special Effects Coordinator'),(8273,1317044,8,'Makeup Department Head'),(8273,1319744,8,'Costume Supervisor'),(8273,1334424,9,'Propmaker'),(8273,1334782,7,'Set Designer'),(8273,1341781,6,'Sound mixer'),(8273,1351327,6,'Boom Operator'),(8273,1371001,2,'First Assistant Director'),(8273,1387244,6,'Supervising Sound Editor'),(8273,1387246,6,'Foley'),(8273,1392085,6,'ADR Editor'),(8273,1392250,9,'Transportation Captain'),(8273,1398982,9,'Unit Publicist'),(8273,1399324,8,'Set Costumer'),(8273,1401566,10,'Visual Effects Producer'),(8273,1407823,5,'Digital Intermediate'),(8273,1408134,8,'Key Hair Stylist'),(8273,1411258,8,'Makeup Department Head'),(8273,1414532,2,'Script Supervisor'),(8273,1418823,7,'Construction Foreman'),(8273,1434207,7,'Greensman'),(8273,1434621,1,'Camera Operator'),(8273,1435194,6,'Music Editor'),(8273,1437798,8,'Makeup Artist'),(8273,1443053,7,'Construction Coordinator'),(8273,1451296,4,'Storyboard'),(8273,1511063,6,'Scoring Mixer'),(8273,1532196,7,'Art Department Coordinator'),(8273,1532197,8,'Set Costumer'),(8273,1532198,8,'Set Costumer'),(8273,1532199,8,'Key Makeup Artist'),(8273,1536461,3,'Assistant Production Coordinator'),(8273,1537119,3,'Production Coordinator'),(8273,1546101,6,'Sound Effects Editor'),(8273,1546856,6,'Supervising ADR Editor'),(8273,1548698,6,'Conductor'),(8273,1552165,7,'Assistant Art Director'),(8273,1552166,7,'Leadman'),(8273,1552167,7,'Painter'),(8273,1552168,7,'Standby Painter'),(8273,1552169,1,'First Assistant Camera'),(8273,1552170,1,'Grip'),(8273,1552171,1,'Steadicam Operator'),(8273,1552172,1,'Still Photographer'),(8273,1552173,9,'Craft Service'),(8273,1552174,9,'Dialect Coach'),(8273,1552176,9,'Driver'),(8273,1552177,9,'Loader'),(8273,1552178,9,'Post Production Assistant'),(8273,1552179,9,'Post Production Supervisor'),(8273,1552180,9,'Production Intern'),(8273,1552181,9,'Property Master'),(8273,1552182,9,'Set Production Assistant'),(8273,1552184,9,'Sound Recordist'),(8273,1552186,9,'Transportation Coordinator'),(8273,1552187,9,'Video Assist Operator'),(8273,1552195,5,'First Assistant Editor'),(8273,1552197,11,'Electrician'),(8273,1552198,11,'Chief Lighting Technician'),(8273,1552199,11,'Rigging Gaffer'),(8273,1552200,11,'Rigging Grip'),(8273,1552203,3,'Production Accountant'),(8273,1552204,6,'First Assistant Sound Editor'),(8273,1552208,10,'Visual Effects Coordinator'),(8273,1552209,9,'Compositors'),(8273,1552216,9,'Cableman'),(8273,1733136,6,'Musician'),(8273,1735766,7,'Assistant Property Master'),(8273,1735767,7,'Set Dresser'),(8273,1735768,1,'Camera Loader'),(8273,1735769,1,'Dolly Grip'),(8273,1735770,1,'Key Grip'),(8273,1735829,2,'Second Assistant Director'),(8273,1735831,6,'Foley Editor'),(8273,1735834,6,'Supervising Music Editor'),(8273,1735835,10,'3D Animator'),(8839,488,3,'Executive Producer'),(8839,490,3,'Producer'),(8839,493,5,'Editor'),(8839,13589,8,'Costume Design'),(8839,1060,1,'Director of Photography'),(8839,1729,6,'Original Music Composer'),(8839,2211,3,'Executive Producer'),(8839,4953,7,'Art Direction'),(8839,5059,7,'Production Design'),(8839,13585,3,'Casting'),(8839,11887,2,'Director'),(8839,13588,7,'Set Decoration'),(8839,56054,4,'Author'),(8839,56055,4,'Author'),(8839,56056,3,'Executive Producer'),(8839,64949,10,'Animation Director'),(8839,97000,10,'Animation Director'),(8839,119310,2,'Script Supervisor'),(8839,1338674,7,'Art Direction'),(8839,1341865,2,'Script Supervisor'),(8839,1456511,10,'Animation Supervisor'),(8839,1456512,10,'Animation Supervisor'),(7303,37,6,'Original Music Composer'),(7303,999,3,'Casting'),(7303,3429,7,'Production Design'),(7303,3996,6,'Sound Re-Recording Mixer'),(7303,4180,4,'Screenplay'),(7303,4869,5,'Editor'),(7303,8677,1,'Director of Photography'),(7303,8885,8,'Costume Design'),(7303,11505,4,'Story'),(7303,15004,3,'Executive Producer'),(7303,17221,7,'Set Decoration'),(7303,18344,3,'Producer'),(7303,52161,6,'Music Supervisor'),(7303,37406,7,'Art Direction'),(7303,38939,3,'Unit Production Manager'),(7303,38939,3,'Co-Producer'),(7303,39819,2,'Director'),(7303,39828,5,'Associate Editor'),(7303,52004,3,'Producer'),(7303,60450,6,'Orchestrator'),(7303,66733,3,'Executive Producer'),(7303,70592,3,'Producer'),(7303,72974,2,'First Assistant Director'),(7303,75628,8,'Key Makeup Artist'),(7303,110542,5,'First Assistant Editor'),(7303,91069,4,'Storyboard'),(7303,91151,9,'Transportation Captain'),(7303,91835,9,'Stunt Coordinator'),(7303,91908,1,'First Assistant Camera'),(7303,106962,6,'Sound Effects Editor'),(7303,992965,2,'Script Supervisor'),(7303,1023712,7,'Assistant Property Master'),(7303,1072607,6,'Music Editor'),(7303,1327030,6,'Sound Re-Recording Mixer'),(7303,1328380,8,'Wardrobe Supervisor'),(7303,1331176,5,'Assistant Editor'),(7303,1347730,7,'Property Master'),(7303,1394306,6,'Music Editor'),(7303,1395368,11,'Chief Lighting Technician'),(7303,1399453,7,'Assistant Art Director'),(7303,1399479,9,'Unit Publicist'),(7303,1400535,1,'Camera Operator'),(7303,1400535,1,'Steadicam Operator'),(7303,1403529,3,'Location Manager'),(7303,1404217,6,'Sound Editor'),(7303,1405321,8,'Makeup Artist'),(7303,1406571,8,'Key Hair Stylist'),(7303,1406596,7,'Assistant Art Director'),(7303,1406895,7,'Assistant Art Director'),(7303,1406897,7,'Leadman'),(7303,1407027,1,'Still Photographer'),(7303,1408779,5,'Dialogue Editor'),(7303,1415964,6,'ADR Editor'),(7303,1416821,8,'Wardrobe Supervisor'),(7303,1444909,8,'Hairstylist'),(7303,1449184,9,'Dialect Coach'),(7303,1457688,3,'Casting'),(7303,1457690,8,'Makeup Artist'),(7303,1471014,8,'Makeup Artist'),(7303,1472169,6,'Supervising Sound Editor'),(7303,1537850,9,'Special Effects Coordinator'),(7303,1547520,6,'Assistant Sound Editor'),(7303,1550812,5,'Assistant Editor'),(7303,1551185,3,'Production Coordinator'),(7303,1551345,6,'ADR Editor'),(7303,1552201,6,'Sound Mixer'),(7303,1560110,5,'Color Timer'),(7303,1561360,6,'Assistant Sound Editor'),(7303,1648055,9,'Transportation Co-Captain'),(7303,1661642,9,'Choreographer'),(7303,1684313,8,'Hairstylist'),(7303,1733212,1,'Key Grip'),(7303,1742034,2,'Second Assistant Director'),(7303,1742042,3,'Production Accountant'),(7303,1742047,8,'Assistant Costume Designer'),(7303,1742050,8,'Hairstylist'),(7303,1742054,6,'Boom Operator'),(7303,1742058,7,'Art Department Coordinator'),(7303,1742061,3,'Casting Assistant'),(7303,1742063,9,'Post Production Supervisor'),(7303,1742067,5,'Assistant Editor'),(7303,1742071,6,'Assistant Sound Editor'),(8963,120,1,'Director of Photography'),(8963,770,3,'Producer'),(8963,947,6,'Original Music Composer'),(8963,541,5,'Editor'),(8963,547,3,'Casting'),(8963,771,3,'Producer'),(8963,795,7,'Art Direction'),(8963,896,7,'Production Design'),(8963,893,2,'Director'),(8963,2118,7,'Set Decoration'),(8963,2528,7,'Art Direction'),(8963,4701,3,'Associate Producer'),(8963,4702,3,'Executive Producer'),(8963,5132,6,'Music Editor'),(8963,11695,3,'Executive Producer'),(8963,12040,8,'Costume Design'),(8963,4727,7,'Art Direction'),(8963,52171,4,'Story'),(8963,52171,4,'Screenplay'),(8963,55227,6,'Sound mixer'),(8963,554159,4,'Story'),(8963,1242978,3,'Executive Producer'),(8963,1338374,6,'Sound Re-Recording Mixer'),(8963,1378168,6,'Supervising Sound Editor'),(8963,1378169,6,'Sound Re-Recording Mixer'),(8963,1378171,6,'Sound Re-Recording Mixer'),(8963,1388879,6,'Music Editor'),(8963,1395275,1,'Still Photographer'),(8963,1422074,2,'Script Supervisor'),(8963,1447503,10,'Modeling'),(8963,1534236,1,'Still Photographer'),(8963,1548126,8,'Costume Supervisor'),(1402,29,3,'Producer'),(1402,2215,3,'Casting'),(1402,432,1,'Director of Photography'),(1402,2888,3,'Producer'),(1402,13304,7,'Production Design'),(1402,13031,9,'Utility Stunts'),(1402,14753,3,'Unit Production Manager'),(1402,14348,7,'Set Decoration'),(1402,14349,7,'Art Direction'),(1402,15573,8,'Costume Design'),(1402,20646,2,'Director'),(1402,20647,4,'Screenplay'),(1402,20648,6,'Original Music Composer'),(1402,20649,5,'Editor'),(1402,56094,3,'Executive Producer'),(1402,66690,8,'Hairstylist'),(1402,57027,3,'Unit Production Manager'),(1402,72051,9,'Thanks'),(1402,83656,2,'Assistant Director'),(1402,117409,8,'Hairstylist'),(1402,134564,8,'Makeup Artist'),(1402,168214,8,'Makeup Artist'),(1402,964509,5,'Assistant Editor'),(1402,1339453,9,'Stunt Coordinator'),(1402,1392621,5,'First Assistant Editor'),(1402,1400082,1,'Still Photographer'),(1402,1406080,8,'Hairstylist'),(1402,1419119,9,'Unit Publicist'),(1402,1424894,8,'Makeup Department Head'),(1402,1480099,2,'Script Supervisor'),(1402,1480687,7,'Art Department Coordinator'),(1402,1532610,1,'First Assistant Camera'),(1402,1546458,6,'Supervising Sound Editor'),(1402,1627324,6,'Orchestrator'),(9315,339,3,'Producer'),(9315,1729,6,'Original Music Composer'),(9315,3965,3,'Casting'),(9315,10573,1,'Director of Photography'),(9315,17399,5,'Editor'),(9315,21807,4,'Screenplay'),(9315,40375,3,'Executive Producer'),(9315,57270,2,'Director'),(9315,57271,4,'Screenplay'),(9315,963843,7,'Art Department Manager'),(9315,1034748,3,'Casting'),(9315,1409284,2,'Script Supervisor'),(8984,1259,6,'Music'),(8984,45543,4,'Screenplay'),(8984,3960,1,'Director of Photography'),(8984,8246,2,'Director'),(8984,8246,3,'Producer'),(8984,5166,5,'Editor'),(795,282,3,'Producer'),(795,283,3,'Producer'),(795,376,3,'Producer'),(795,2303,4,'Screenplay'),(795,2305,4,'Author'),(795,2306,4,'Screenplay'),(795,2702,1,'Director of Photography'),(795,3394,5,'Editor'),(795,9199,7,'Set Designer'),(795,5488,6,'Original Music Composer'),(795,11887,2,'Director'),(795,11898,4,'Screenplay'),(795,11899,3,'Producer'),(795,11900,3,'Producer'),(24,2294,9,'Thanks'),(24,138,2,'Director'),(24,138,4,'Characters'),(24,138,4,'Writer'),(24,2545,3,'Producer'),(24,139,4,'Characters'),(24,149,1,'Director of Photography'),(24,156,5,'Editor'),(24,2539,3,'Casting Associate'),(24,3685,3,'Casting'),(24,3685,3,'Associate Producer'),(24,3686,3,'Casting'),(24,3687,6,'Sound Designer'),(24,1307,3,'Executive Producer'),(24,59839,3,'Executive Producer'),(24,5779,7,'Production Design'),(24,3193,6,'Supervising Sound Editor'),(24,6444,7,'Production Design'),(24,150,6,'Original Music Composer'),(24,6062,6,'Sound Editor'),(24,9333,8,'Key Makeup Artist'),(24,11801,7,'Set Decoration'),(24,12183,3,'Executive Producer'),(24,13166,6,'Sound Effects Editor'),(24,17117,7,'Set Decoration'),(24,16498,9,'Special Effects Coordinator'),(24,16551,8,'Makeup Artist'),(24,16551,8,'Hairstylist'),(24,20489,9,'Property Master'),(24,16849,3,'Executive Producer'),(24,22054,9,'Utility Stunts'),(24,39012,9,'Thanks'),(24,50462,8,'Costume Design'),(24,54250,3,'Associate Producer'),(24,54252,3,'Executive Producer'),(24,56341,10,'Animation'),(24,59287,9,'Makeup Effects'),(24,59473,5,'First Assistant Editor'),(24,61076,7,'Art Direction'),(24,71432,10,'Animation'),(24,75485,8,'Hairstylist'),(24,107372,9,'Makeup Effects'),(24,90505,7,'Art Direction'),(24,107668,10,'Animation Director'),(24,235120,7,'Art Department Manager'),(24,235120,10,'Character Designer'),(24,235121,3,'Producer'),(24,548439,6,'Foley'),(24,548445,6,'Foley'),(24,551534,7,'Art Direction'),(24,551822,7,'Set Designer'),(24,589970,11,'Gaffer'),(24,983118,1,'Steadicam Operator'),(24,1067814,3,'Casting Assistant'),(24,1085258,10,'Visual Effects Supervisor'),(24,1148341,9,'Second Unit Cinematographer'),(24,1172442,7,'Set Designer'),(24,1206191,8,'Makeup Designer'),(24,1219858,9,'Video Assist Operator'),(24,1261622,10,'Animation'),(24,1290012,3,'Production Manager'),(24,1309945,8,'Costume Design'),(24,1329418,8,'Costume Supervisor'),(24,1339447,6,'Boom Operator'),(24,1342658,5,'Dialogue Editor'),(24,1352966,5,'Dialogue Editor'),(24,1352969,6,'Supervising Sound Editor'),(24,1386920,1,'Still Photographer'),(24,1387259,8,'Set Costumer'),(24,1389607,7,'Art Direction'),(24,1389608,7,'Art Direction'),(24,1389609,8,'Makeup Department Head'),(24,1389610,7,'Set Designer'),(24,1389611,7,'Art Department Coordinator'),(24,1389613,5,'Dialogue Editor'),(24,1389614,6,'Sound Designer'),(24,1389616,9,'Special Effects Coordinator'),(24,1389620,10,'Visual Effects Supervisor'),(24,1389621,9,'Stunt Coordinator'),(24,1389623,8,'Costume Supervisor'),(24,1389624,6,'Music Editor'),(24,1389625,9,'Transportation Coordinator'),(24,1389626,3,'Location Manager'),(24,1389629,3,'Location Manager'),(24,1399141,6,'Sound Re-Recording Mixer'),(24,1400812,6,'ADR Supervisor'),(24,1403434,7,'Leadman'),(24,1407721,8,'Wigmaker'),(24,1414289,11,'Rigging Gaffer'),(24,1415650,9,'Unit Publicist'),(24,1420151,7,'Assistant Property Master'),(24,1445974,7,'Art Department Assistant'),(24,1456632,10,'Animation'),(24,1456816,10,'Animation'),(24,1456817,10,'Animation'),(24,1456818,10,'Animation'),(24,1456819,10,'Animation Manager'),(24,1456820,10,'Animation'),(24,1456821,10,'Animation'),(24,1456822,10,'Animation'),(24,1472261,3,'Associate Producer'),(24,1485553,1,'Grip'),(24,1524757,8,'Key Hair Stylist'),(24,1537867,3,'Assistant Production Coordinator'),(24,1545447,6,'Music Supervisor'),(24,1545448,6,'Music Supervisor'),(24,1547309,6,'Production Sound Mixer'),(24,1549445,6,'Sound Engineer'),(24,1551159,7,'Greensman'),(24,1552497,7,'Construction Coordinator'),(24,1552513,9,'Carpenter'),(24,1552518,7,'Construction Foreman'),(24,1563906,3,'Unit Production Manager'),(24,1565951,9,'Armorer'),(24,1569556,7,'Painter'),(24,1569825,9,'Set Production Assistant'),(24,1599609,8,'Costume Design'),(24,1599611,8,'Costume Design'),(24,1599612,7,'Assistant Art Director'),(24,1599613,7,'Lead Painter'),(24,1599614,7,'Location Scout'),(24,1599615,7,'Production Illustrator'),(24,1599616,7,'Standby Painter'),(24,1599617,1,'First Assistant Camera'),(24,1599618,1,'Key Grip'),(24,1599623,7,'Set Dresser'),(24,1599624,9,'Additional Music'),(24,1599625,9,'Craft Service'),(24,1599627,9,'Driver'),(24,1599630,9,'Picture Car Coordinator'),(24,1599631,9,'Post Production Assistant'),(24,1599632,9,'Post Production Supervisor'),(24,1599637,9,'Propmaker'),(24,1599638,9,'Scenic Artist'),(24,1599639,9,'Set Medic'),(24,1599640,9,'Stand In'),(24,1599641,9,'Stunts'),(24,1599642,9,'Transportation Co-Captain'),(24,1599643,3,'Unit Production Manager'),(24,1599645,5,'Digital Intermediate'),(24,1599646,11,'Best Boy Electric'),(24,1599647,11,'Electrician'),(24,1599648,11,'Lighting Technician'),(24,1599649,11,'Rigging Grip'),(24,1599651,3,'Production Accountant'),(24,1599652,3,'Production Coordinator'),(24,1599653,6,'Assistant Sound Editor'),(24,1599654,10,'Digital Compositors'),(24,1599655,10,'Special Effects Supervisor'),(24,1599656,6,'Sound'),(24,1600104,1,'Camera Loader'),(24,1658526,3,'Location Manager'),(24,1707448,6,'Foley Editor'),(24,1802558,6,'Utility Sound'),(24,1840115,1,'Dolly Grip'),(24,1840118,9,'Fight Choreographer'),(24,1840120,2,'First Assistant Director'),(24,1840121,2,'Second Assistant Director'),(24,1840122,2,'Third Assistant Director'),(24,1840123,5,'Negative Cutter'),(24,1840127,3,'Assistant Production Manager'),(393,2294,6,'Original Music Composer'),(393,138,2,'Director'),(393,138,4,'Screenplay'),(393,138,4,'Characters'),(393,2545,3,'Producer'),(393,139,4,'Characters'),(393,149,1,'Director of Photography'),(393,156,5,'Editor'),(393,2537,9,'Fight Choreographer'),(393,3685,3,'Casting'),(393,3685,3,'Associate Producer'),(393,3686,3,'Casting'),(393,3687,6,'Supervising Sound Editor'),(393,20494,9,'Stunts'),(393,1307,3,'Executive Producer'),(393,59839,3,'Executive Producer'),(393,5779,7,'Production Design'),(393,3193,6,'Supervising Sound Editor'),(393,6444,7,'Production Design'),(393,150,6,'Original Music Composer'),(393,150,9,'Additional Music'),(393,6062,6,'Sound Editor'),(393,11801,7,'Set Decoration'),(393,13166,6,'Sound Designer'),(393,16498,9,'Special Effects Coordinator'),(393,16551,8,'Hairstylist'),(393,20489,9,'Property Master'),(393,16849,3,'Executive Producer'),(393,50462,8,'Costume Design'),(393,54252,3,'Executive Producer'),(393,61048,3,'Production Supervisor'),(393,59473,5,'First Assistant Editor'),(393,61076,7,'Art Direction'),(393,76016,7,'Assistant Art Director'),(393,84557,5,'Editorial Production Assistant'),(393,548439,6,'Foley'),(393,548445,6,'Foley'),(393,589970,11,'Gaffer'),(393,983118,1,'Steadicam Operator'),(393,1031810,6,'Sound Designer'),(393,1085258,10,'Visual Effects Supervisor'),(393,1172442,7,'Set Designer'),(393,1206190,9,'Makeup Effects'),(393,1219858,9,'Video Assist Operator'),(393,1309945,8,'Costume Design'),(393,1335156,5,'Color Timer'),(393,1339447,6,'Boom Operator'),(393,1342658,5,'Dialogue Editor'),(393,1352966,5,'Dialogue Editor'),(393,1352969,6,'Supervising Sound Editor'),(393,1386920,1,'Still Photographer'),(393,1387259,8,'Set Costumer'),(393,1389609,8,'Makeup Department Head'),(393,1389610,7,'Set Designer'),(393,1389611,7,'Art Department Coordinator'),(393,1389616,9,'Special Effects Coordinator'),(393,1389621,9,'Stunt Coordinator'),(393,1389623,8,'Costume Supervisor'),(393,1389624,6,'Music Editor'),(393,1389625,9,'Transportation Coordinator'),(393,1389626,3,'Location Manager'),(393,1390516,7,'Sculptor'),(393,1399141,6,'Sound Re-Recording Mixer'),(393,1400812,6,'ADR Supervisor'),(393,1402036,5,'Digital Intermediate'),(393,1403434,7,'Leadman'),(393,1406826,6,'Sound Effects Editor'),(393,1411075,8,'Wigmaker'),(393,1414289,11,'Rigging Gaffer'),(393,1415650,9,'Unit Publicist'),(393,1416798,8,'Hair Designer'),(393,1420146,8,'Makeup Artist'),(393,1420151,7,'Assistant Property Master'),(393,1472261,3,'Associate Producer'),(393,1524757,8,'Key Hair Stylist'),(393,1537867,3,'Assistant Production Coordinator'),(393,1545448,6,'Music Supervisor'),(393,1547309,6,'Production Sound Mixer'),(393,1548698,6,'Orchestrator'),(393,1549445,6,'Sound Engineer'),(393,1551159,7,'Greensman'),(393,1552497,7,'Construction Coordinator'),(393,1552513,9,'Carpenter'),(393,1552518,7,'Construction Foreman'),(393,1560097,9,'Set Production Assistant'),(393,1560107,9,'Transportation Captain'),(393,1563906,3,'Production Manager'),(393,1565951,9,'Armorer'),(393,1599613,7,'Lead Painter'),(393,1599616,7,'Standby Painter'),(393,1599617,1,'First Assistant Camera'),(393,1599618,1,'Key Grip'),(393,1599623,7,'Set Dresser'),(393,1599625,9,'Craft Service'),(393,1599627,9,'Driver'),(393,1599630,9,'Picture Car Coordinator'),(393,1599631,6,'Sound'),(393,1599632,9,'Post Production Supervisor'),(393,1599637,9,'Propmaker'),(393,1599638,9,'Scenic Artist'),(393,1599639,9,'Set Medic'),(393,1599642,9,'Transportation Co-Captain'),(393,1599643,3,'Unit Production Manager'),(393,1599646,11,'Best Boy Electric'),(393,1599647,11,'Lighting Technician'),(393,1599652,3,'Production Coordinator'),(393,1599655,10,'Special Effects Supervisor'),(393,1600099,3,'Line Producer'),(393,1600100,7,'Painter'),(393,1600101,7,'Production Illustrator'),(393,1600104,1,'Camera Loader'),(393,1600105,9,'Production Controller'),(393,1600106,9,'Security'),(393,1600107,9,'Stand In'),(393,1600108,9,'Systems Administrators & Support'),(393,1600109,9,'Utility Stunts'),(393,1600110,11,'Electrician'),(393,1600111,11,'Rigging Grip'),(393,1600112,3,'Casting Associate'),(393,1600114,6,'Scoring Mixer'),(393,1600115,10,'Digital Compositors'),(393,1600116,4,'Storyboard'),(393,1600117,3,'Unit Manager'),(393,1762004,6,'Musician'),(393,1815438,1,'Grip'),(393,1840115,1,'Dolly Grip'),(393,1840123,5,'Negative Cutter'),(393,1840135,8,'Ager/Dyer'),(393,1840136,2,'Second Assistant Director'),(393,1840138,6,'Assistant Sound Editor'),(9618,799,6,'Original Music Composer'),(9618,6490,1,'Director of Photography'),(9618,16650,5,'Editor'),(9618,56186,4,'Screenplay'),(9618,58728,2,'Director'),(9618,58729,2,'Director'),(9618,58730,5,'Editor'),(9374,37,6,'Original Music Composer'),(9374,24,2,'Director'),(9374,24,3,'Producer'),(9374,30,3,'Producer'),(9374,38,5,'Editor'),(9374,508,4,'Author'),(9374,1060,1,'Director of Photography'),(9374,1495632,4,'Writer'),(8584,4504,3,'Producer'),(8584,4507,3,'Producer'),(8584,8425,5,'Editor'),(8584,14712,6,'Original Music Composer'),(8584,15348,1,'Director of Photography'),(8584,18897,3,'Executive Producer'),(8584,18923,4,'Screenplay'),(8584,18924,4,'Screenplay'),(8584,21635,3,'Producer'),(8584,46076,2,'Director'),(8584,56719,3,'Executive Producer'),(8584,56720,3,'Executive Producer'),(8584,1402095,1,'Camera Operator'),(2320,1091,3,'Producer'),(2320,1092,3,'Producer'),(2320,1092,4,'Writer'),(2320,1094,3,'Producer'),(2320,1094,4,'Writer'),(2320,1760,6,'Original Music Composer'),(2320,2031,3,'Casting'),(2320,2523,2,'Director'),(2320,2523,5,'Editor'),(2320,2532,3,'Casting'),(2320,2533,5,'Editor'),(2320,6584,7,'Production Design'),(2320,4061,8,'Costume Design'),(2320,4696,3,'Associate Producer'),(2320,4699,3,'Executive Producer'),(2320,7715,5,'Editor'),(2320,10629,7,'Art Direction'),(2320,8867,7,'Set Decoration'),(2320,11001,5,'Editor'),(2320,21351,5,'Editor'),(2320,21516,1,'Director of Photography'),(2320,1521293,3,'Co-Producer'),(1729,1348,3,'Producer'),(1729,1592,5,'Editor'),(1729,1633,1,'Director of Photography'),(1729,4952,3,'Casting'),(1729,12507,3,'Executive Producer'),(1729,18898,2,'Director'),(1729,18899,9,'Martial Arts Choreographer'),(1729,18899,3,'Executive Producer'),(1729,20801,4,'Writer'),(1729,20802,3,'Producer'),(1729,24179,3,'Executive Producer'),(1729,40513,3,'Executive Producer'),(1729,41385,3,'Line Producer'),(1729,52600,7,'Production Design'),(1729,54419,3,'Executive Producer'),(1729,56720,3,'Executive Producer'),(1729,72104,3,'Producer'),(1729,109429,3,'Executive Producer'),(1729,225635,6,'Original Music Composer'),(1729,1127906,3,'Executive Producer'),(1729,1127907,3,'Line Producer'),(1729,1127908,3,'Line Producer'),(1729,1127909,3,'Line Producer'),(1729,1127910,3,'Casting'),(1729,1413232,3,'Production Manager'),(8077,8381,7,'Art Direction'),(8077,669,7,'Production Design'),(8077,912,4,'Screenplay'),(8077,915,4,'Screenplay'),(8077,915,3,'Producer'),(8077,1723,4,'Screenplay'),(8077,1723,3,'Producer'),(8077,2530,8,'Costume Design'),(8077,3192,3,'Casting'),(8077,3311,3,'Casting'),(8077,10205,3,'Producer'),(8077,5053,3,'Producer'),(8077,5056,5,'Editor'),(8077,5581,6,'Original Music Composer'),(8077,7467,2,'Director'),(8077,10197,7,'Supervising Art Director'),(8077,10199,8,'Makeup Department Head'),(8077,40765,1,'Camera Operator'),(8077,18775,9,'Stunt Coordinator'),(8077,18989,7,'Assistant Art Director'),(8077,21516,1,'Director of Photography'),(8077,21548,10,'Visual Effects Producer'),(8077,75804,3,'Location Manager'),(8077,137125,6,'Sound Re-Recording Mixer'),(8077,210110,9,'Special Effects'),(8077,939183,5,'Editor'),(8077,1170025,6,'Foley'),(8077,1191181,8,'Costume Design'),(8077,1328733,7,'Set Decoration'),(8077,1338832,6,'Sound Re-Recording Mixer'),(8077,1342592,9,'Scenic Artist'),(8077,1378839,1,'Still Photographer'),(8077,1391564,7,'Construction Coordinator'),(8077,1391570,9,'Sound Recordist'),(8077,1395731,11,'Gaffer'),(8077,1398115,9,'Property Master'),(8077,1398118,7,'Construction Coordinator'),(8077,1398119,7,'Sculptor'),(8077,1398120,6,'Supervising Sound Editor'),(8077,1398121,6,'Sound Designer'),(8077,1398123,6,'Sound Re-Recording Mixer'),(8077,1398125,9,'Visual Effects Editor'),(8077,1398127,1,'Camera Operator'),(8077,1398128,1,'Camera Operator'),(8077,1398130,1,'Steadicam Operator'),(8077,1398131,11,'Gaffer'),(8077,1398136,2,'Script Supervisor'),(8818,2240,1,'Director of Photography'),(8818,8879,3,'Producer'),(8818,9163,5,'Editor'),(8818,9168,4,'Screenplay'),(8818,9168,2,'Director'),(8818,9168,3,'Producer'),(8818,56967,3,'Producer'),(8818,65360,6,'Music'),(8818,72743,4,'Screenplay'),(8195,1255,4,'Screenplay'),(8195,2031,3,'Casting'),(8195,2190,7,'Art Direction'),(8195,2532,3,'Casting'),(8195,2596,1,'Director of Photography'),(8195,7297,8,'Set Costumer'),(8195,10471,3,'Casting'),(8195,12509,5,'Editor'),(8195,13776,2,'Director'),(8195,14901,8,'Costume Design'),(8195,21946,9,'Utility Stunts'),(8195,34858,7,'Production Design'),(8195,43609,6,'Original Music Composer'),(8195,49284,3,'Producer'),(8195,108656,2,'Script Supervisor'),(8195,108846,4,'Screenplay'),(8195,108846,4,'Story'),(8195,117217,4,'Storyboard'),(8195,423556,6,'Sound Recordist'),(8195,957442,8,'Assistant Costume Designer'),(8195,993543,3,'Associate Producer'),(8195,1317558,7,'Set Decoration'),(8195,1338371,6,'Sound Effects Editor'),(8195,1371064,6,'Foley'),(8195,1372884,1,'Camera Operator'),(8195,1372884,1,'Steadicam Operator'),(8195,1376276,6,'Music Editor'),(8195,1400074,10,'Digital Compositors'),(8195,1406405,1,'Aerial Camera'),(8195,1407212,3,'Unit Production Manager'),(8195,1407220,1,'First Assistant Camera'),(8195,1425491,9,'Stunt Coordinator'),(8195,1433208,6,'Sound Designer'),(8195,1433208,6,'Supervising Sound Editor'),(8195,1474722,3,'Executive Producer'),(8195,1531277,9,'Stunts'),(8195,1538315,3,'Casting Associate'),(8195,1550844,9,'Special Effects Coordinator'),(8195,1553621,9,'Carpenter'),(8195,1553623,9,'Driver'),(8195,1573420,7,'Location Scout'),(8195,1573464,6,'Boom Operator'),(8195,1581129,9,'Armorer'),(8195,1634725,5,'Color Timer'),(8195,1661539,3,'Production Accountant'),(8195,1721835,2,'First Assistant Director'),(8195,1727745,3,'Production Coordinator'),(8195,1740563,6,'Orchestrator'),(8195,1770091,7,'Art Department Coordinator'),(8195,1770092,7,'Assistant Art Director'),(8195,1770093,7,'Construction Coordinator'),(8195,1770094,7,'Construction Foreman'),(8195,1770096,7,'Leadman'),(8195,1770098,7,'Set Designer'),(8195,1770099,7,'Standby Painter'),(8195,1770102,1,'Grip'),(8195,1770105,1,'Still Photographer'),(8195,1770107,8,'Hairstylist'),(8195,1770108,8,'Key Hair Stylist'),(8195,1770109,8,'Makeup Artist'),(8195,1770110,8,'Prosthetic Makeup Artist'),(8195,1770111,8,'Set Dressing Artist'),(8195,1770112,9,'Craft Service'),(8195,1770113,9,'Loader'),(8195,1770114,9,'Picture Car Coordinator'),(8195,1770115,7,'Property Master'),(8195,1770116,9,'Set Medic'),(8195,1770117,9,'Set Production Assistant'),(8195,1770118,9,'Transportation Captain'),(8195,1770119,9,'Transportation Coordinator'),(8195,1770120,9,'Unit Publicist'),(8195,1770121,9,'Video Assist Operator'),(8195,1770122,3,'Location Manager'),(8195,1770123,6,'Assistant Sound Editor'),(8195,1770124,9,'Thanks'),(1792,7414,5,'Editor'),(1792,1589,6,'Original Music Composer'),(1792,7415,3,'Casting'),(1792,7395,4,'Screenplay'),(1792,7395,2,'Director'),(1792,7395,3,'Producer'),(1792,7396,4,'Screenplay'),(1792,7396,2,'Director'),(1792,7396,3,'Producer'),(1792,7407,3,'Producer'),(1792,7408,3,'Producer'),(1792,15348,1,'Director of Photography'),(1792,58290,6,'Original Music Composer'),(1792,58291,5,'Editor'),(3580,190,2,'Director'),(3580,190,6,'Music'),(3580,190,3,'Producer'),(3580,195,6,'Orchestrator'),(3580,384,5,'Editor'),(3580,339,3,'Producer'),(3580,371,1,'First Assistant Camera'),(3580,460,1,'Director of Photography'),(3580,461,8,'Costume Design'),(3580,795,7,'Production Design'),(3580,1484,3,'Casting'),(3580,4746,3,'Producer'),(3580,6159,3,'Producer'),(3580,19863,7,'Art Direction'),(3580,33045,4,'Screenplay'),(3580,40375,3,'Executive Producer'),(3580,41892,3,'Executive Producer'),(3580,63946,3,'Executive Producer'),(3580,65711,7,'Set Decoration'),(3580,66226,9,'Stunt Coordinator'),(3580,74319,5,'Editor'),(3580,935490,3,'Casting Associate'),(3580,935492,10,'Special Effects Supervisor'),(3580,1377130,10,'Visual Effects Supervisor'),(3580,1377131,1,'Steadicam Operator'),(3580,1408706,6,'Music Editor'),(3580,1418453,8,'Hairstylist'),(3580,1443038,8,'Makeup Artist'),(3580,1457890,3,'Executive Producer'),(3580,1517894,9,'Utility Stunts'),(3580,1538127,5,'Assistant Editor'),(3580,1559640,2,'Assistant Director'),(9566,28,3,'Producer'),(9566,120,1,'Director of Photography'),(9566,123,3,'Executive Producer'),(9566,947,6,'Original Music Composer'),(9566,893,2,'Director'),(9566,2242,3,'Casting'),(9566,4701,3,'Executive Producer'),(9566,4702,3,'Executive Producer'),(9566,6668,5,'Editor'),(9566,5167,7,'Production Design'),(9566,6192,8,'Costume Design'),(9566,8411,8,'Costume Design'),(9566,11880,5,'Editor'),(9566,15308,6,'Music Supervisor'),(9566,57986,4,'Screenplay'),(9566,57987,4,'Novel'),(9566,1298096,7,'Set Decoration'),(9566,1352979,6,'Music Editor'),(9566,1422074,2,'Script Supervisor'),(9566,1534236,1,'Still Photographer'),(9566,1534237,8,'Makeup Department Head'),(9833,1576,9,'Choreographer'),(9833,943,9,'Cinematography'),(9833,5056,5,'Editor'),(9833,5572,2,'Director'),(9833,5572,4,'Screenplay'),(9833,10497,7,'Art Direction'),(9833,13009,8,'Costume Design'),(9833,14474,4,'Novel'),(9833,18986,7,'Production Design'),(9833,65360,4,'Screenplay'),(9833,65360,3,'Producer'),(9833,580273,9,'Associate Choreographer'),(9833,943313,7,'Art Direction'),(9833,957666,7,'Set Decoration'),(9833,1234026,9,'Choreographer'),(9833,1319134,8,'Costume Supervisor'),(9833,1355763,9,'Choreographer'),(9833,1376807,6,'Music Editor'),(9833,1385874,3,'Casting'),(9833,1385883,7,'Assistant Art Director'),(9833,1385884,2,'Script Supervisor'),(9833,1385885,6,'Music Editor'),(4517,933,4,'Screenplay'),(4517,1251,1,'Director of Photography'),(4517,3050,5,'Editor'),(4517,5288,6,'Original Music Composer'),(4517,7045,6,'Original Music Composer'),(4517,8410,7,'Set Decoration'),(4517,10976,9,'Stunt Coordinator'),(4517,11295,3,'Casting'),(4517,40765,1,'Additional Camera'),(4517,13009,8,'Costume Design'),(4517,16343,6,'Supervising Sound Editor'),(4517,11018,7,'Production Design'),(4517,37301,7,'Supervising Art Director'),(4517,37630,2,'Director'),(4517,37631,4,'Screenplay'),(4517,37755,5,'Editor'),(4517,71579,7,'Art Direction'),(4517,75119,8,'Set Costumer'),(4517,117238,6,'Sound Re-Recording Mixer'),(4517,123471,9,'Scenic Artist'),(4517,930532,7,'Art Direction'),(4517,962164,7,'Art Direction'),(4517,1032069,3,'Production Manager'),(4517,1233684,10,'Visual Effects Supervisor'),(4517,1319134,8,'Costume Supervisor'),(4517,1330586,8,'Hairstylist'),(4517,1334420,7,'Art Direction'),(4517,1338287,6,'Music Editor'),(4517,1342606,2,'Script Supervisor'),(4517,1373694,7,'Art Direction'),(4517,1384386,10,'Visual Effects Supervisor'),(4517,1390350,7,'Assistant Art Director'),(4517,1391525,6,'Foley'),(4517,1392627,10,'Visual Effects Supervisor'),(4517,1398085,9,'Property Master'),(4517,1398089,7,'Greensman'),(4517,1405795,6,'Sound Re-Recording Mixer'),(4517,1405796,5,'Dialogue Editor'),(4517,1406187,9,'Scenic Artist'),(4517,1406200,9,'Unit Publicist'),(4517,1406847,1,'Camera Operator'),(4517,1408812,9,'Visual Effects Editor'),(4517,1410182,8,'Hairstylist'),(4517,1411064,8,'Makeup Artist'),(4517,1411106,8,'Set Costumer'),(4517,1411107,8,'Set Costumer'),(4517,1411323,8,'Makeup Artist'),(4517,1411339,9,'CG Supervisor'),(4517,1413042,3,'Location Manager'),(4517,1415042,1,'Steadicam Operator'),(4517,1415961,7,'Art Department Coordinator'),(4517,1415975,10,'Visual Effects Producer'),(4517,1416001,9,'Dialect Coach'),(4517,1416468,1,'Camera Operator'),(4517,1421657,1,'Still Photographer'),(4517,1425394,5,'First Assistant Editor'),(4517,1428506,1,'Steadicam Operator'),(4517,1429639,9,'Second Unit Cinematographer'),(4517,1430113,8,'Hairstylist'),(4517,1430115,8,'Makeup Artist'),(4517,1430123,9,'Scenic Artist'),(4517,1430124,7,'Sculptor'),(4517,1430125,7,'Sculptor'),(4517,1430126,7,'Sculptor'),(4517,1430127,7,'Sculptor'),(4517,1430184,10,'Visual Effects Producer'),(4517,1430188,1,'Camera Operator'),(4517,1430190,8,'Set Costumer'),(4517,1430191,9,'Choreographer'),(4517,1430192,3,'Location Manager'),(4517,1430193,3,'Location Manager'),(8202,68602,3,'Executive Producer'),(8202,869,3,'Producer'),(8202,5912,6,'Original Music Composer'),(8202,3953,3,'Producer'),(8202,6875,5,'Editor'),(8202,7262,1,'Director of Photography'),(8202,10969,3,'Casting'),(8202,10903,3,'Producer'),(8202,10905,3,'Producer'),(8202,15426,3,'Casting'),(8202,19872,7,'Production Design'),(8202,28249,4,'Characters'),(8202,31094,3,'Executive Producer'),(8202,53278,5,'Editor'),(8202,54025,2,'Director'),(8202,54047,4,'Screenplay'),(8202,54048,4,'Screenplay'),(8202,54049,3,'Producer'),(8202,60706,5,'Editor'),(8202,120606,3,'Producer'),(8202,1746321,3,'Producer'),(2841,2419,2,'Director'),(2841,2419,4,'Screenplay'),(2841,2420,4,'Screenplay'),(2841,2423,1,'Director of Photography'),(2841,2425,5,'Editor'),(2841,5628,6,'Original Music Composer'),(2841,13839,7,'Production Design'),(2841,19773,7,'Set Decoration'),(802,240,2,'Director'),(802,240,4,'Screenplay'),(802,3349,3,'Producer'),(802,3349,4,'Screenplay'),(802,4360,6,'Original Music Composer'),(802,10339,1,'Director of Photography'),(802,12007,4,'Novel'),(802,12008,6,'Music'),(802,12009,5,'Editor'),(242,154,5,'Editor'),(242,1776,4,'Screenplay'),(242,1776,2,'Director'),(242,1776,3,'Producer'),(242,2870,3,'Producer'),(242,2871,3,'Producer'),(242,2872,6,'Original Music Composer'),(242,3274,5,'Editor'),(242,2875,7,'Production Design'),(242,2874,3,'Casting'),(242,2988,5,'Editor'),(242,3083,4,'Screenplay'),(242,3097,1,'Director of Photography'),(242,3219,3,'Producer'),(242,3220,3,'Producer'),(242,3221,3,'Producer'),(242,3222,3,'Producer'),(242,3275,3,'Casting'),(242,3276,3,'Casting'),(242,3277,9,'Sound Recordist'),(242,3278,6,'Music Editor'),(242,4659,9,'Special Effects'),(242,5671,8,'Costume Design'),(242,8432,9,'Stunt Coordinator'),(9621,2483,1,'Director of Photography'),(9621,5668,5,'Editor'),(9621,11649,4,'Screenplay'),(9621,11649,2,'Director'),(9621,11656,6,'Original Music Composer'),(9621,1368867,9,'Special Effects Coordinator'),(1819,887,3,'Producer'),(1819,1214,1,'Director of Photography'),(1819,3965,3,'Casting'),(1819,10572,6,'Original Music Composer'),(1819,8181,3,'Executive Producer'),(1819,14189,5,'Editor'),(1819,12568,7,'Set Decoration'),(1819,19271,2,'Director'),(1819,19272,2,'Director'),(1819,19273,4,'Screenplay'),(1819,19282,3,'Producer'),(1819,19283,5,'Editor'),(1819,19284,7,'Production Design'),(1819,19285,8,'Costume Design'),(1819,19286,3,'Executive Producer'),(1819,19288,3,'Executive Producer'),(1819,1034748,3,'Casting'),(8536,243,1,'Director of Photography'),(8536,669,7,'Art Direction'),(8536,1263,3,'Casting'),(8536,3083,4,'Screenplay'),(8536,3083,4,'Story'),(8536,7190,9,'Creative Consultant'),(8536,6728,4,'Screenplay'),(8536,7791,7,'Set Decoration'),(8536,9823,7,'Set Decoration'),(8536,9918,7,'Production Design'),(8536,10200,7,'Art Direction'),(8536,10472,7,'Art Direction'),(8536,10496,3,'Casting'),(8536,10586,2,'Director'),(8536,11837,8,'Makeup Artist'),(8536,14456,1,'Director of Photography'),(8536,12806,3,'Production Manager'),(8536,16589,1,'Camera Operator'),(8536,20007,4,'Characters'),(8536,20008,4,'Characters'),(8536,20009,3,'Executive Producer'),(8536,20010,3,'Producer'),(8536,20105,1,'Other'),(8536,20110,6,'Sound Editor'),(8536,21964,8,'Costume Design'),(8536,24675,1,'Camera Operator'),(8536,29538,5,'Editor'),(8536,55279,4,'Screenplay'),(8536,57892,6,'Original Music Composer'),(8536,57241,3,'Production Supervisor'),(8536,71765,2,'Assistant Director'),(8536,13493,10,'Special Effects Supervisor'),(8536,75796,2,'Assistant Director'),(8536,130214,10,'Special Effects Supervisor'),(8536,157703,2,'Other'),(8536,224003,3,'Production Supervisor'),(8536,224397,7,'Supervising Art Director'),(8536,236020,3,'Production Manager'),(8536,568911,7,'Production Design'),(8536,960135,8,'Costume Design'),(8536,986346,7,'Art Direction'),(8536,1213681,2,'Other'),(8536,1340060,1,'Camera Operator'),(8536,1342604,3,'Unit Manager'),(8536,1369391,3,'Finance'),(8536,1391115,1,'Other'),(8536,1399030,6,'Sound Mixer'),(8536,1406726,2,'Assistant Director'),(8536,1406978,1,'Camera Operator'),(8536,1432526,1,'Camera Operator'),(8536,1458398,3,'Production Manager'),(8536,1467116,2,'Assistant Director'),(8536,1477568,2,'Assistant Director'),(8536,1590914,1,'Camera Operator'),(8536,1697230,10,'Visual Effects Supervisor'),(8536,1697232,3,'Production Accountant'),(8536,1697233,3,'Other'),(8536,1697235,1,'Camera Operator'),(8536,1697237,2,'Assistant Director'),(8536,1697239,2,'Assistant Director'),(8046,3117,7,'Production Design'),(8046,605,8,'Costume Design'),(8046,769,4,'Screenplay'),(8046,769,2,'Director'),(8046,769,3,'Producer'),(8046,909,5,'Editor'),(8046,2242,3,'Casting'),(8046,2950,1,'Director of Photography'),(8046,6341,3,'Executive Producer'),(8046,10390,3,'Associate Producer'),(8046,11098,6,'Original Music Composer'),(8046,14382,5,'Dialogue Editor'),(8046,18095,1,'Still Photographer'),(8046,33455,7,'Art Direction'),(8046,20802,3,'Producer'),(8046,53645,5,'Editor'),(8046,113046,6,'Supervising Sound Editor'),(8046,142161,9,'Stunt Coordinator'),(8046,957368,7,'Set Decoration'),(8046,1117840,3,'Associate Producer'),(8046,1194472,11,'Gaffer'),(8046,1300755,6,'Sound Effects Editor'),(8046,1347755,6,'Music Editor'),(8046,1357059,5,'Dialogue Editor'),(8046,1377239,2,'Script Supervisor'),(8046,1415965,5,'Dialogue Editor'),(8046,1511710,6,'Production Sound Mixer'),(1717,2952,3,'Casting'),(1717,1729,6,'Original Music Composer'),(1717,2260,2,'Director'),(1717,2260,4,'Writer'),(1717,2260,3,'Producer'),(1717,3561,1,'Director of Photography'),(1717,6494,7,'Production Design'),(1717,10957,5,'Editor'),(1717,11714,8,'Costume Design'),(1717,18799,4,'Novel'),(1717,20206,3,'Producer'),(1717,59567,7,'Set Decoration'),(1717,62559,3,'Producer'),(1717,86594,8,'Makeup Artist'),(1717,460575,8,'Hairstylist'),(1717,1094395,7,'Art Direction'),(1717,1318806,8,'Makeup Department Head'),(1717,1391597,8,'Costume Supervisor'),(1717,1408849,3,'Publicist'),(1717,1427384,2,'Script Supervisor'),(1717,1442116,7,'Art Department Coordinator'),(1717,1462855,8,'Costume Supervisor'),(1717,1472505,8,'Hairstylist'),(479,2989,4,'Author'),(479,2997,3,'Producer'),(479,6039,4,'Author'),(479,6482,2,'Director'),(479,6482,3,'Producer'),(479,6482,4,'Author'),(479,6483,4,'Author'),(479,6488,3,'Producer'),(479,6489,6,'Original Music Composer'),(479,6490,1,'Director of Photography'),(479,6491,5,'Editor'),(479,6492,5,'Editor'),(479,6493,3,'Casting'),(479,6494,7,'Production Design'),(479,6542,6,'Original Music Composer'),(479,73834,3,'Executive Producer'),(9444,671,6,'Supervising Sound Editor'),(9444,3393,6,'Original Music Composer'),(9444,7903,3,'Casting Associate'),(9444,12881,2,'Director'),(9444,12881,3,'Producer'),(9444,15895,10,'Animation'),(9444,40345,2,'Director'),(9444,40345,3,'Producer'),(9444,53344,5,'Editor'),(9444,58092,4,'Screenplay'),(9444,33885,5,'Editor'),(9444,65599,4,'Screenplay'),(9444,65600,4,'Screenplay'),(9444,87169,10,'Animation'),(9444,181904,4,'Screenplay'),(9444,949768,3,'Executive Producer'),(9444,1048377,4,'Adaptation'),(9444,1114889,3,'Producer'),(9444,1391570,6,'Sound Recordist'),(9444,1391572,6,'Sound Re-Recording Mixer'),(9444,1416155,6,'Sound Re-Recording Mixer'),(9444,1433021,6,'Sound Re-Recording Mixer'),(9444,1447319,4,'Storyboard'),(9444,1447599,2,'Layout'),(9444,1450364,2,'Layout'),(9444,1460481,2,'Layout'),(9444,1461861,2,'Layout'),(9444,1462780,10,'Animation Director'),(9444,1462783,10,'Animation'),(9444,1462784,9,'Compositors'),(9444,1462787,10,'Animation'),(9444,1462788,10,'Animation Department Coordinator'),(9444,1462789,10,'Animation Department Coordinator'),(9444,1462793,10,'Animation Supervisor'),(9444,1462794,10,'Animation'),(9444,1462795,10,'Animation'),(9444,1462796,10,'Animation'),(9444,1462797,2,'Layout'),(9444,1462798,10,'Animation'),(9444,1462799,2,'Layout'),(9444,1462805,10,'Animation'),(9444,1462806,2,'Layout'),(9444,1462808,10,'Animation'),(9444,1462809,10,'Animation'),(9444,1462810,10,'Animation'),(9444,1463183,9,'Compositors'),(9444,1463185,9,'Compositors'),(9444,1463239,2,'Layout'),(9444,1463241,2,'Layout'),(9444,1463243,2,'Layout'),(9444,1463242,2,'Layout'),(9444,1463244,2,'Layout'),(9444,1463245,2,'Layout'),(9444,1463246,2,'Layout'),(9444,1463247,2,'Layout'),(9444,1463248,2,'Layout'),(9444,1463249,2,'Layout'),(9444,1463250,2,'Layout'),(9444,1463251,2,'Layout'),(9444,1463252,2,'Layout'),(9444,1563922,3,'Casting'),(9444,1615256,7,'Production Design'),(9444,1813642,3,'Production Manager'),(824,1720,3,'Casting'),(824,1095,1,'Director of Photography'),(824,3050,5,'Editor'),(824,5486,3,'Producer'),(824,6201,4,'Screenplay'),(824,6201,2,'Director'),(824,6201,3,'Producer'),(824,6203,7,'Production Design'),(824,6203,8,'Costume Design'),(824,6203,3,'Producer'),(824,6204,3,'Producer'),(824,6208,7,'Set Decoration'),(824,6211,4,'Screenplay'),(824,7045,6,'Original Music Composer'),(824,12201,3,'Producer'),(824,12202,3,'Producer'),(824,12203,3,'Casting'),(824,12204,7,'Art Direction'),(824,12205,8,'Costume Design'),(3683,142,4,'Screenplay'),(3683,190,2,'Director'),(3683,190,3,'Producer'),(3683,190,6,'Original Music Composer'),(3683,369,7,'Production Design'),(3683,3719,7,'Set Designer'),(3683,384,5,'Editor'),(3683,370,7,'Art Direction'),(3683,375,6,'Supervising Sound Editor'),(3683,455,4,'Screenplay'),(3683,460,1,'Director of Photography'),(3683,461,8,'Costume Design'),(3683,488,3,'Producer'),(3683,4746,3,'Producer'),(3683,14342,7,'Set Decoration'),(3683,113044,5,'Dialogue Editor'),(3683,92378,6,'ADR & Dubbing'),(3683,74323,8,'Makeup Department Head'),(3683,83066,8,'Hairstylist'),(3683,554888,6,'Sound Effects Editor'),(3683,589942,8,'Hairstylist'),(3683,935492,9,'Special Effects Coordinator'),(3683,991724,9,'Special Effects Coordinator'),(3683,1183129,7,'Leadman'),(3683,1263143,9,'Property Master'),(3683,1299405,5,'Dialogue Editor'),(3683,1303054,3,'Casting'),(3683,1338372,6,'Foley'),(3683,1341854,6,'Sound Re-Recording Mixer'),(3683,1341858,6,'Sound Re-Recording Mixer'),(3683,1342626,6,'Sound Re-Recording Mixer'),(3683,1367493,6,'Foley'),(3683,1368865,6,'Supervising Sound Editor'),(3683,1377122,7,'Art Department Coordinator'),(3683,1377124,7,'Set Designer'),(3683,1377125,5,'Dialogue Editor'),(3683,1378228,6,'Sound Re-Recording Mixer'),(3683,1395447,6,'Sound Designer'),(3683,1407878,6,'Sound Effects Editor'),(3683,1408301,6,'Sound Effects Editor'),(3683,1408311,5,'Dialogue Editor'),(3683,1411517,7,'Greensman'),(3683,1413091,5,'Dialogue Editor'),(3683,1417398,8,'Hairstylist'),(3683,1423000,9,'Special Effects Coordinator'),(3683,1428132,7,'Construction Coordinator'),(3683,1428595,6,'Sound Effects Editor'),(3683,1443032,8,'Hairstylist'),(3683,1443033,8,'Hairstylist'),(3683,1443034,8,'Makeup Artist'),(3683,1443036,8,'Makeup Artist'),(3683,1443038,8,'Makeup Artist'),(3683,1443039,8,'Makeup Artist'),(3683,1443053,7,'Construction Coordinator'),(3683,1443059,7,'Leadman'),(3683,1443060,7,'Sculptor'),(3683,1443065,6,'ADR & Dubbing'),(3683,1443067,6,'ADR & Dubbing'),(3683,1443090,10,'Animation'),(3683,1447543,10,'Visual Effects'),(1950,27,4,'Screenplay'),(1950,27,4,'Story'),(1950,323,2,'Director'),(1950,323,4,'Screenplay'),(1950,323,3,'Producer'),(1950,329,3,'Producer'),(1950,329,6,'Music Supervisor'),(1950,331,5,'Editor'),(1950,605,8,'Costume Design'),(1950,4197,7,'Production Design'),(1950,1262,3,'Casting'),(1950,1296,3,'Executive Producer'),(1950,1899,3,'Producer'),(1950,3193,6,'Supervising Sound Editor'),(1950,7235,7,'Art Direction'),(1950,19155,6,'Original Music Composer'),(1950,8274,7,'Set Decoration'),(1950,9573,1,'Director of Photography'),(1950,16498,9,'Special Effects Coordinator'),(1950,18093,1,'First Assistant Camera'),(1950,46942,5,'Editor'),(1950,52015,3,'Co-Producer'),(1950,92301,3,'Unit Production Manager'),(1950,118945,5,'Dialogue Editor'),(1950,957495,6,'Sound Re-Recording Mixer'),(1950,963887,9,'Stunt Coordinator'),(1950,1252535,5,'Dialogue Editor'),(1950,1318982,1,'Camera Operator'),(1950,1319744,8,'Costume Supervisor'),(1950,1341405,5,'Dialogue Editor'),(1950,1352966,5,'Dialogue Editor'),(1950,1368864,6,'Sound Re-Recording Mixer'),(1950,1368866,6,'Sound Effects Editor'),(1950,1371069,2,'Script Supervisor'),(1950,1377133,1,'Still Photographer'),(1950,1392081,6,'Sound Effects Editor'),(1950,1394130,6,'Sound Re-Recording Mixer'),(1950,1395281,1,'Steadicam Operator'),(1950,1395463,1,'Camera Operator'),(1950,1398863,6,'Music Editor'),(1950,1407878,6,'Sound Effects Editor'),(1950,1411856,6,'Music Editor'),(1950,1436624,7,'Art Department Coordinator'),(1950,1439749,5,'First Assistant Editor'),(1950,1550576,1,'First Assistant Camera'),(1950,1552027,6,'Sound mixer'),(1950,1553017,11,'Gaffer'),(1950,1559512,1,'Camera Operator'),(640,491,6,'Music'),(640,495,3,'Casting'),(640,488,2,'Director'),(640,488,3,'Producer'),(640,492,1,'Director of Photography'),(640,493,5,'Editor'),(640,494,3,'Casting Associate'),(640,2212,3,'Producer'),(640,2689,4,'Screenplay'),(640,14608,7,'Assistant Art Director'),(640,4064,9,'Stunt Coordinator'),(640,4769,3,'Co-Executive Producer'),(640,7418,8,'Costume Design'),(640,19157,7,'Set Decoration'),(640,8701,3,'Executive Producer'),(640,9971,6,'Supervising Sound Editor'),(640,9261,4,'Book'),(640,9262,4,'Book'),(640,9263,3,'Executive Producer'),(640,9264,3,'Associate Producer'),(640,9264,2,'First Assistant Director'),(640,9266,3,'Co-Producer'),(640,9267,3,'Executive Producer'),(640,9268,3,'Executive Producer'),(640,9269,7,'Production Design'),(640,9270,7,'Art Direction'),(640,14526,8,'Makeup Artist'),(640,16498,9,'Special Effects Coordinator'),(640,17979,7,'Set Decoration'),(640,20846,5,'First Assistant Editor'),(640,21796,7,'Set Designer'),(640,23787,8,'Makeup Artist'),(640,113055,5,'Dialogue Editor'),(640,59055,3,'ADR Voice Casting'),(640,66142,6,'Music Editor'),(640,75380,6,'Boom Operator'),(640,83071,2,'Second Assistant Director'),(640,963355,7,'Set Designer'),(640,1095994,6,'Production Sound Mixer'),(640,1121874,3,'Unit Production Manager'),(640,1125158,3,'Production Supervisor'),(640,1249773,8,'Makeup Department Head'),(640,1293479,9,'Stunt Coordinator'),(640,1319137,8,'Key Costumer'),(640,1322015,8,'Makeup Artist'),(640,1322089,8,'Costume Supervisor'),(640,1327842,5,'Assistant Editor'),(640,1338976,6,'Sound Re-Recording Mixer'),(640,1339432,9,'Post Production Supervisor'),(640,1341865,2,'Script Supervisor'),(640,1347759,7,'Location Scout'),(640,1355526,7,'Leadman'),(640,1367505,6,'Sound Effects Editor'),(640,1368863,7,'Set Designer'),(640,1378687,7,'Property Master'),(640,1384367,5,'Dialogue Editor'),(640,1386920,1,'Still Photographer'),(640,1389540,11,'Chief Lighting Technician'),(640,1391678,6,'Assistant Sound Editor'),(640,1395463,1,'Camera Operator'),(640,1397737,9,'Transportation Coordinator'),(640,1398946,6,'Supervising Sound Editor'),(640,1398970,1,'Camera Operator'),(640,1398970,1,'Steadicam Operator'),(640,1400740,7,'Location Scout'),(640,1401687,6,'Sound Re-Recording Mixer'),(640,1402015,8,'Hair Department Head'),(640,1402016,8,'Hairstylist'),(640,1402896,10,'Visual Effects Supervisor'),(640,1404225,10,'Visual Effects Producer'),(640,1404306,8,'Key Hair Stylist'),(640,1405373,8,'Hairstylist'),(640,1419114,9,'Dialect Coach'),(640,1422795,8,'Makeup Artist'),(640,1429549,5,'Color Timer'),(640,1435689,7,'Construction Coordinator'),(640,1449946,6,'First Assistant Sound Editor'),(640,1493161,3,'Casting Assistant'),(640,1544669,6,'Sound Effects Editor'),(640,1544670,5,'First Assistant Editor'),(640,1546806,7,'Art Department Coordinator'),(640,1548682,9,'Transportation Co-Captain'),(640,1549257,10,'3D Supervisor'),(640,1549259,10,'Visual Effects Supervisor'),(640,1549260,8,'Assistant Costume Designer'),(640,1549273,8,'Key Set Costumer'),(640,1551104,11,'Rigging Gaffer'),(640,1552019,9,'Transportation Captain'),(640,1564535,9,'Transportation Co-Captain'),(640,1570740,1,'Key Grip'),(640,1598765,3,'Production Coordinator'),(640,1622121,9,'Unit Publicist'),(640,1733142,5,'Negative Cutter'),(640,1733188,1,'Dolly Grip'),(640,1754062,7,'Title Designer'),(640,1754063,7,'Title Designer'),(640,1754415,8,'Key Set Costumer'),(640,1754416,8,'Makeup Artist'),(640,1754417,8,'Hairstylist'),(640,1754418,3,'Production Accountant'),(640,1754419,3,'Location Manager'),(640,1754420,7,'Set Designer'),(640,1770888,9,'Compositors'),(9767,312,6,'Music'),(9767,4937,3,'Producer'),(9767,4937,4,'Story'),(9767,6389,1,'Director of Photography'),(9767,11455,5,'Editor'),(9767,12708,3,'Executive Producer'),(9767,59026,2,'Director'),(9767,17816,5,'Editor'),(9767,19282,3,'Producer'),(9767,28401,3,'Executive Producer'),(9767,59027,4,'Screenplay'),(9767,59027,4,'Story'),(9767,59027,3,'Co-Producer'),(9767,59028,4,'Screenplay'),(9767,59028,4,'Story'),(9767,59028,3,'Co-Producer'),(9767,964030,3,'Associate Producer'),(9767,991902,3,'Associate Producer'),(6519,2445,3,'Executive Producer'),(6519,1296,3,'Executive Producer'),(6519,5914,3,'Casting'),(6519,5387,1,'Director of Photography'),(6519,5387,9,'Cinematography'),(6519,5388,5,'Editor'),(6519,6062,6,'Foley Editor'),(6519,6112,4,'Screenplay'),(6519,6112,4,'Story'),(6519,10394,5,'Editor'),(6519,11877,7,'Production Design'),(6519,19659,6,'Original Music Composer'),(6519,29018,3,'Executive Producer'),(6519,41551,3,'Producer'),(6519,52049,2,'Director'),(6519,52049,5,'Editor'),(6519,60503,3,'Casting'),(6519,61523,2,'First Assistant Director'),(6519,65736,7,'Set Decoration'),(6519,74980,10,'Special Effects Supervisor'),(6519,112521,7,'Art Direction'),(6519,162284,4,'Characters'),(6519,935719,8,'Costume Design'),(6519,1087360,6,'Music Supervisor'),(6519,1127824,4,'Story'),(6519,1263143,7,'Property Master'),(6519,1330612,8,'Makeup Department Head'),(6519,1336516,7,'Construction Coordinator'),(6519,1340345,6,'Sound Effects Editor'),(6519,1344264,6,'Sound Effects Editor'),(6519,1357063,9,'Stunt Coordinator'),(6519,1371676,1,'Camera Operator'),(6519,1377502,1,'Still Photographer'),(6519,1389591,10,'Visual Effects Producer'),(6519,1392127,6,'Dialogue Editor'),(6519,1400835,2,'Script Supervisor'),(6519,1401358,6,'Dialogue Editor'),(6519,1403438,6,'ADR & Dubbing'),(6519,1403439,6,'Supervising Sound Editor'),(6519,1403440,6,'Sound Designer'),(6519,1403443,6,'Sound Effects Editor'),(6519,1404290,11,'Gaffer'),(6519,1404546,6,'Music Editor'),(6519,1406839,9,'Stunt Coordinator'),(6519,1407229,1,'Camera Operator'),(6519,1407747,3,'Location Manager'),(6519,1410579,10,'Visual Effects Supervisor'),(6519,1412233,6,'Sound Recordist'),(6519,1412308,7,'Art Department Coordinator'),(6519,1413223,7,'Art Direction'),(6519,1413583,1,'Camera Operator'),(6519,1417010,7,'Set Designer'),(6519,1422071,11,'Gaffer'),(6519,1440306,8,'Costume Supervisor'),(6519,1447543,9,'Digital Effects Supervisor'),(6519,1457712,8,'Hair Department Head'),(6519,1523402,8,'Key Hair Stylist'),(6519,1529591,1,'Camera Operator'),(6519,1549321,6,'Boom Operator'),(6519,1560055,8,'Key Makeup Artist'),(6519,1567214,7,'Leadman'),(6519,1596745,3,'Production Coordinator'),(6519,1691197,1,'Key Grip'),(6519,1735481,7,'Construction Foreman'),(6519,1741091,1,'Dolly Grip'),(6519,1889176,7,'Set Designer'),(6519,1889177,9,'Propmaker'),(6519,1889189,6,'Boom Operator'),(6519,1889190,6,'Dialogue Editor'),(6519,1889191,10,'Visual Effects Producer'),(6519,1889192,11,'Rigging Gaffer'),(6519,1889198,8,'Seamstress'),(8741,947,6,'Original Music Composer'),(8741,909,5,'Editor'),(8741,1221,3,'Casting'),(8741,2483,1,'Director of Photography'),(8741,5632,7,'Production Design'),(8741,8528,3,'Producer'),(8741,11657,5,'Editor'),(8741,33195,7,'Art Direction'),(8741,24803,3,'Executive Producer'),(8741,30715,2,'Director'),(8741,30715,4,'Screenplay'),(8741,53683,5,'Editor'),(8741,55868,4,'Novel'),(8741,55869,3,'Producer'),(8741,55870,3,'Producer'),(8741,55871,3,'Producer'),(8741,62484,7,'Set Decoration'),(8741,62485,7,'Set Decoration'),(8741,928371,8,'Costume Design'),(8741,1321694,8,'Costume Supervisor'),(1850,518,3,'Producer'),(1850,6410,3,'Casting'),(1850,3394,5,'Editor'),(1850,3974,2,'Director'),(1850,5361,5,'Editor'),(1850,5381,3,'Producer'),(1850,5382,3,'Producer'),(1850,6348,8,'Costume Design'),(1850,6494,7,'Production Design'),(1850,6957,6,'Original Music Composer'),(1850,7130,4,'Screenplay'),(1850,7131,4,'Screenplay'),(1850,15017,8,'Makeup Artist'),(1850,17439,6,'Original Music Composer'),(1850,19464,1,'Director of Photography'),(1850,19466,7,'Set Decoration'),(1850,10837,7,'Art Direction'),(1850,19467,5,'Editor'),(1850,406204,8,'Makeup Department Head'),(524,149,1,'Director of Photography'),(524,1032,4,'Screenplay'),(524,1032,2,'Director'),(524,2242,3,'Casting'),(524,2366,7,'Production Design'),(524,3661,5,'Editor'),(524,7163,4,'Screenplay'),(524,7163,4,'Novel'),(524,7170,3,'Producer'),(524,7531,3,'Producer'),(2123,7414,5,'Editor'),(2123,2691,3,'Executive Producer'),(2123,6114,3,'Co-Producer'),(2123,7415,3,'Casting'),(2123,7395,4,'Screenplay'),(2123,7395,2,'Director'),(2123,7395,3,'Producer'),(2123,7396,4,'Screenplay'),(2123,7396,2,'Director'),(2123,7396,3,'Producer'),(2123,7407,3,'Producer'),(2123,7408,3,'Executive Producer'),(2123,7409,3,'Co-Producer'),(2123,7411,3,'Associate Producer'),(2123,7412,3,'Co-Producer'),(2123,7413,1,'Director of Photography'),(2123,7416,7,'Art Direction'),(2123,7417,7,'Set Decoration'),(2123,9652,9,'Animatronic and Prosthetic Effects'),(2123,12772,9,'Stunt Coordinator'),(2123,20745,8,'Costume Design'),(2123,21800,4,'Screenplay'),(2123,21801,6,'Original Music Composer'),(2123,29206,3,'Unit Production Manager'),(2123,11312,9,'Stunts'),(2123,113045,6,'Foley'),(2123,63956,1,'Additional Photography'),(2123,59090,9,'Stand In'),(2123,60661,3,'Associate Producer'),(2123,92336,8,'Prosthetic Makeup Artist'),(2123,91941,9,'Unit Publicist'),(2123,113664,9,'Second Unit Cinematographer'),(2123,142152,8,'Makeup Artist'),(2123,223243,7,'Set Designer'),(2123,932118,7,'Production Design'),(2123,957558,3,'Associate Producer'),(2123,961093,2,'Assistant Director'),(2123,993536,5,'First Assistant Editor'),(2123,1126348,3,'Location Manager'),(2123,1181954,7,'Property Master'),(2123,1231742,6,'Original Music Composer'),(2123,1321000,8,'Costume Supervisor'),(2123,1367505,6,'Sound Effects Editor'),(2123,1401989,1,'Steadicam Operator'),(2123,1404213,6,'Sound Recordist'),(2123,1412112,9,'Special Effects Coordinator'),(2123,1417398,8,'Hairstylist'),(2123,1417994,11,'Gaffer'),(2123,1418286,5,'Dialogue Editor'),(2123,1421681,10,'Visual Effects Supervisor'),(2123,1422800,9,'Transportation Captain'),(2123,1423865,1,'Underwater Camera'),(2123,1425343,6,'Supervising Sound Editor'),(2123,1457816,8,'Set Costumer'),(2123,1460768,1,'Still Photographer'),(2123,1522737,7,'Art Department Coordinator'),(2123,1532709,7,'Construction Coordinator'),(2123,1534687,6,'Music Editor'),(2123,1545951,6,'Sound Mixer'),(2123,1546047,6,'Music Supervisor'),(2123,1547136,8,'Key Hair Stylist'),(2123,1552070,3,'Associate Producer'),(2123,1552177,9,'Loader'),(2123,1552528,11,'Electrician'),(2123,1552529,11,'Rigging Gaffer'),(2123,1561481,9,'Transportation Coordinator'),(2123,1562248,5,'Color Timer'),(2123,1564221,9,'Security'),(2123,1570749,9,'Craft Service'),(2123,1594981,1,'Camera Operator'),(2123,1610261,3,'Production Accountant'),(2123,1681353,9,'Driver'),(2123,1711217,3,'Production Coordinator'),(2123,1744654,7,'Location Scout'),(2123,1748848,7,'Assistant Art Director'),(2123,1748849,7,'Construction Foreman'),(2123,1748850,7,'Greensman'),(2123,1748851,1,'First Assistant Camera'),(2123,1748852,1,'Key Grip'),(2123,1748853,8,'Seamstress'),(2123,1748854,8,'Set Dressing Artist'),(2123,1748855,9,'Carpenter'),(2123,1748856,9,'Chef'),(2123,1748857,9,'Makeup Effects'),(2123,1748858,9,'Picture Car Coordinator'),(2123,1748859,9,'Post Production Supervisor'),(2123,1748860,9,'Projection'),(2123,1748861,9,'Propmaker'),(2123,1748862,9,'Scenic Artist'),(2123,1748863,9,'Set Medic'),(2123,1748864,9,'Set Production Assistant'),(2123,1748865,5,'Editorial Production Assistant'),(2123,1748866,11,'Best Boy Electric'),(2123,1748867,11,'Best Boy Electric'),(2123,1748868,11,'Rigging Grip'),(2123,1748869,3,'Casting Associate'),(2123,1748870,3,'Executive In Charge Of Production'),(2123,1748871,3,'Production Supervisor'),(2123,1748872,6,'Boom Operator'),(2123,1748873,6,'Assistant Sound Editor'),(2123,1748874,6,'Sound Editor'),(2123,1748875,10,'Visual Effects Producer'),(2123,1748876,9,'Score Engineer'),(9907,4500,6,'Original Music Composer'),(9907,4489,2,'Director'),(9907,4489,3,'Producer'),(9907,4489,4,'Author'),(9907,60264,3,'Producer'),(9907,60265,3,'Producer'),(9907,60263,3,'Producer'),(9907,60267,3,'Executive Producer'),(9907,60268,3,'Executive Producer'),(9907,60266,3,'Producer'),(9907,60269,5,'Editor'),(9907,60270,7,'Production Design'),(9907,60270,7,'Art Direction'),(9907,68016,6,'Orchestrator'),(9907,1447362,10,'Animation'),(9907,1447450,2,'Layout'),(9907,1447481,10,'Animation'),(9907,1447499,7,'Art Department Manager'),(9907,1447551,9,'Compositors'),(9907,1457635,9,'Special Effects'),(9969,376,3,'Producer'),(9969,5362,3,'Casting'),(9969,5363,3,'Casting'),(9969,5490,3,'Casting'),(9969,7413,1,'Director of Photography'),(9969,9204,6,'Original Music Composer'),(9969,10397,8,'Costume Design'),(9969,10766,5,'Editor'),(9969,25365,3,'Casting'),(9969,40374,3,'Producer'),(9969,10858,7,'Set Decoration'),(9969,52600,7,'Production Design'),(9969,58144,4,'Author'),(9969,59445,3,'Casting'),(9969,60070,3,'Executive Producer'),(9969,61173,4,'Author'),(9969,61174,4,'Author'),(9969,61175,2,'Director'),(9969,61175,3,'Producer'),(9969,61177,7,'Art Direction'),(808,1705,4,'Author'),(808,1705,3,'Co-Producer'),(808,1706,4,'Author'),(808,1706,3,'Co-Producer'),(808,947,9,'Thanks'),(808,488,3,'Executive Producer'),(808,493,9,'Thanks'),(808,3193,6,'Sound Effects Editor'),(808,5524,2,'Director'),(808,5542,5,'Editor'),(808,5549,8,'Costume Design'),(808,5553,6,'Original Music Composer'),(808,11098,6,'Original Music Composer'),(808,12058,2,'Director'),(808,12081,4,'Novel'),(808,12061,4,'Author'),(808,12062,3,'Producer'),(808,12106,3,'Producer'),(808,12065,3,'Executive Producer'),(808,12066,3,'Executive Producer'),(808,12067,3,'Associate Producer'),(808,12090,3,'Casting'),(808,12070,7,'Production Design'),(808,12071,7,'Art Direction'),(808,12072,7,'Art Direction'),(808,12107,3,'Producer'),(808,12080,9,'Additional Dialogue'),(808,12083,4,'Author'),(808,12087,3,'Co-Executive Producer'),(808,12095,9,'Additional Dialogue'),(808,12098,9,'Additional Dialogue'),(808,12099,9,'Supervising Animator'),(808,16736,6,'Supervising Sound Editor'),(808,32532,9,'Thanks'),(808,56978,9,'Thanks'),(808,60250,3,'Other'),(808,61977,7,'Production Illustrator'),(808,14995,9,'Thanks'),(808,106253,9,'Post-Production Manager'),(808,574003,2,'Layout'),(808,933498,9,'Systems Administrators & Support'),(808,1269499,9,'Projection'),(808,1299484,10,'Visual Effects'),(808,1377373,3,'Casting Associate'),(808,1404546,6,'Music Editor'),(808,1406616,6,'ADR & Dubbing'),(808,1411521,9,'Sound Recordist'),(808,1416298,10,'Visual Effects Supervisor'),(808,1447347,3,'Other'),(808,1451229,3,'Production Accountant'),(808,1455291,6,'First Assistant Sound Editor'),(808,1532731,10,'Visual Effects'),(808,1546437,9,'Second Film Editor'),(808,1552873,5,'Color Timer'),(808,1573430,9,'Additional Music'),(808,1595460,6,'Orchestrator'),(808,1674658,3,'Production Supervisor'),(808,1677813,7,'Sculptor'),(808,1677814,7,'Set Designer'),(808,1677815,9,'Post Production Supervisor'),(808,1677816,9,'Production Controller'),(808,1677818,9,'Sequence Supervisor'),(808,1677819,5,'Editorial Coordinator'),(808,1677820,5,'First Assistant Editor'),(808,1677821,11,'Lighting Artist'),(808,1677822,3,'Production Coordinator'),(808,1677823,3,'Production Manager'),(808,1677824,6,'Foley'),(808,1677825,6,'Music Supervisor'),(808,1677826,6,'Sound Mixer'),(808,1677827,10,'I/O Supervisor'),(808,1677828,10,'Visual Development'),(808,1677829,4,'Storyboard'),(808,1677831,10,'Modeling'),(808,1677832,10,'Animation Director'),(808,1677833,9,'Supervising Technical Director'),(8367,2182,4,'Screenplay'),(8367,2182,3,'Producer'),(8367,2184,3,'Producer'),(8367,2185,4,'Screenplay'),(8367,2185,3,'Producer'),(8367,7714,6,'Original Music Composer'),(8367,8307,5,'Editor'),(8367,8306,1,'Director of Photography'),(8367,8300,2,'Director'),(9390,3388,3,'Producer'),(9390,492,1,'Director of Photography'),(9390,4186,5,'Editor'),(9390,10685,3,'Producer'),(9390,11649,2,'Director'),(9390,11649,3,'Producer'),(9390,11649,4,'Writer'),(9390,57570,3,'Executive Producer'),(9390,57572,3,'Producer'),(2898,3388,4,'Screenplay'),(2898,3388,2,'Director'),(2898,3388,3,'Producer'),(2898,947,6,'Music'),(2898,6410,3,'Casting'),(2898,4197,7,'Set Decoration'),(2898,887,3,'Associate Producer'),(2898,1527,1,'Director of Photography'),(2898,3175,5,'Editor'),(2898,6187,2,'Assistant Director'),(2898,8419,2,'Assistant Director'),(2898,16474,9,'Stunt Coordinator'),(2898,33456,8,'Costume Design'),(2898,35508,9,'Thanks'),(2898,28780,4,'Screenplay'),(2898,28780,4,'Story'),(2898,52600,7,'Production Design'),(2898,67994,9,'Thanks'),(2898,91124,3,'Casting'),(2898,230436,3,'Casting'),(2898,932186,6,'Orchestrator'),(2898,963798,5,'Assistant Editor'),(2898,1099700,9,'Stunts'),(2898,1193637,2,'Other'),(2898,1302620,2,'Other'),(2898,1319383,7,'Art Direction'),(2898,1378165,9,'Property Master'),(2898,1378173,1,'Still Photographer'),(2898,1378202,9,'Stunts Coordinator'),(2898,1378368,9,'Title Graphics'),(2898,1411258,8,'Hairstylist'),(2898,1442518,2,'Script Supervisor'),(2898,1531878,8,'Makeup Artist'),(2898,1537431,11,'Lighting Technician'),(2898,1546458,6,'Supervising Sound Editor'),(2022,12865,5,'Editor'),(2022,3276,3,'Casting'),(2022,14348,7,'Set Decoration'),(2022,32593,2,'Director'),(2022,20822,6,'Original Music Composer'),(2022,20820,3,'Producer'),(2022,20821,3,'Producer'),(2022,20823,1,'Director of Photography'),(2022,20824,7,'Production Design'),(2022,20825,7,'Art Direction'),(2022,20826,8,'Costume Design'),(2022,56728,4,'Screenplay'),(462,153,6,'Original Music Composer'),(462,518,3,'Producer'),(462,1884,2,'Director'),(462,1890,7,'Production Design'),(462,5381,3,'Producer'),(462,5382,3,'Producer'),(462,6340,4,'Writer'),(462,6341,3,'Executive Producer'),(462,6342,3,'Co-Producer'),(462,6344,3,'Executive Producer'),(462,6345,1,'Director of Photography'),(462,6346,5,'Editor'),(462,6347,3,'Casting'),(462,6348,8,'Costume Design'),(462,6922,7,'Art Direction'),(462,7538,6,'Music Editor'),(462,7952,11,'Rigging Grip'),(462,19661,5,'First Assistant Editor'),(462,21568,7,'Assistant Art Director'),(462,21707,7,'Set Decoration'),(462,51922,3,'Casting Associate'),(462,113045,6,'Foley'),(462,113090,6,'Foley'),(462,92347,7,'Greensman'),(462,83082,6,'Boom Operator'),(462,119665,2,'Assistant Director'),(462,122607,9,'Dialect Coach'),(462,142161,9,'Stunt Coordinator'),(462,158916,6,'Sound Re-Recording Mixer'),(462,214170,8,'Makeup Artist'),(462,548433,6,'Sound Recordist'),(462,589973,1,'Camera Operator'),(462,967719,8,'Set Costumer'),(462,1117840,3,'Unit Production Manager'),(462,1159914,6,'Dolby Consultant'),(462,1328407,8,'Costume Supervisor'),(462,1335069,9,'Special Effects'),(462,1335075,9,'Transportation Captain'),(462,1335127,6,'Supervising Sound Editor'),(462,1335127,6,'Sound Re-Recording Mixer'),(462,1339445,7,'Construction Coordinator'),(462,1357067,8,'Set Costumer'),(462,1378220,7,'Leadman'),(462,1378749,7,'Set Designer'),(462,1391399,9,'Transportation Coordinator'),(462,1391605,2,'Script Supervisor'),(462,1392116,7,'Set Designer'),(462,1392247,1,'Still Photographer'),(462,1392909,10,'Visual Effects Supervisor'),(462,1399890,9,'Transportation Co-Captain'),(462,1404716,5,'Dialogue Editor'),(462,1406766,1,'First Assistant Camera'),(462,1409825,3,'Production Coordinator'),(462,1409837,9,'Unit Publicist'),(462,1413092,6,'Assistant Sound Editor'),(462,1413169,6,'Scoring Mixer'),(462,1418528,8,'Hair Designer'),(462,1433917,3,'Location Manager'),(462,1457712,8,'Hair Department Head'),(462,1490062,9,'Set Production Assistant'),(462,1530082,6,'Music Supervisor'),(462,1537540,10,'Visual Effects Producer'),(462,1538705,6,'Production Sound Mixer'),(462,1549062,9,'Propmaker'),(462,1549172,8,'Set Costumer'),(462,1549180,7,'Art Department Coordinator'),(462,1549189,8,'Set Costumer'),(462,1549209,6,'Orchestrator'),(462,1550601,9,'Property Master'),(462,1550603,11,'Rigging Gaffer'),(462,1553246,8,'Hairstylist'),(462,1554352,9,'Projection'),(462,1569823,9,'Security'),(462,1629524,9,'Chef'),(462,1629528,9,'Post Production Supervisor'),(462,1629535,5,'Color Timer'),(462,1681341,1,'Grip'),(462,1721987,8,'Hairstylist'),(462,1721988,8,'Hairstylist'),(462,1721989,9,'Post Production Assistant'),(462,1722374,9,'Carpenter'),(462,1735465,9,'Loader'),(462,1746560,9,'Driver'),(462,1752259,11,'Gaffer'),(462,1769259,7,'Art Department Assistant'),(462,1769260,7,'Painter'),(462,1769321,7,'Standby Painter'),(462,1769324,8,'Set Dressing Artist'),(462,1769325,9,'Craft Service'),(462,1769327,9,'Production Intern'),(462,1769334,9,'Set Medic'),(462,1769338,9,'Stand In'),(462,1769345,11,'Best Boy Electric'),(462,1769346,11,'Electrician'),(462,1769349,3,'Production Accountant'),(462,1769350,3,'Production Supervisor'),(462,1769354,10,'Digital Compositors'),(462,1769356,9,'Studio Teachers'),(9919,1527,1,'Director of Photography'),(9919,2162,3,'Producer'),(9919,3393,6,'Music'),(9919,14189,5,'Editor'),(9919,12288,3,'Producer'),(9919,18281,2,'Director'),(9919,52042,3,'Producer'),(9919,58552,4,'Screenplay'),(9919,60534,4,'Screenplay'),(9919,60543,4,'Screenplay'),(9919,60554,3,'Producer'),(628,294,5,'Editor'),(628,1046,3,'Casting'),(628,1301,1,'Director of Photography'),(628,1302,3,'Casting'),(628,2366,7,'Production Design'),(628,5581,6,'Original Music Composer'),(628,9018,4,'Author'),(628,9018,4,'Screenplay'),(628,9020,3,'Producer'),(628,9021,3,'Producer'),(628,9022,3,'Producer'),(628,9023,5,'Editor'),(628,9024,7,'Art Direction'),(628,9025,7,'Art Direction'),(628,9026,7,'Set Decoration'),(628,9027,8,'Costume Design'),(628,9028,3,'Unit Production Manager'),(628,17016,2,'Director'),(9441,491,6,'Original Music Composer'),(9441,28,3,'Producer'),(9441,1095,1,'Director of Photography'),(9441,1204,3,'Executive Producer'),(9441,2242,3,'Casting'),(9441,4038,3,'Executive Producer'),(9441,7230,5,'First Assistant Editor'),(9441,7231,5,'Editor'),(9441,5144,3,'Executive Producer'),(9441,10965,2,'Director'),(9441,10965,3,'Producer'),(9441,11222,3,'Producer'),(9441,11711,3,'Associate Producer'),(9441,17828,3,'Producer'),(9441,17992,6,'Sound Mixer'),(9441,18173,7,'Set Decoration'),(9441,19464,1,'Camera Operator'),(9441,21379,7,'Production Design'),(9441,42267,6,'Sound Re-Recording Mixer'),(9441,36429,8,'Costume Design'),(9441,52192,1,'Camera Operator'),(9441,57465,3,'Executive Producer'),(9441,58234,4,'Screenplay'),(9441,62061,7,'Art Direction'),(9441,66142,6,'Supervising Music Editor'),(9441,1023289,6,'Music Editor'),(9441,1381730,3,'Executive Producer'),(9441,1393455,2,'Script Supervisor'),(9441,1399116,6,'Supervising Sound Editor'),(9441,1400906,6,'Sound Effects Editor'),(9441,1412081,8,'Key Makeup Artist'),(9441,1412113,1,'Still Photographer'),(9441,1425978,6,'Sound Re-Recording Mixer'),(9441,1521022,8,'Key Hair Stylist'),(9441,1748724,6,'Sound Effects Editor'),(9441,1834089,3,'Executive Producer'),(388,339,3,'Producer'),(388,548,7,'Production Design'),(388,4446,3,'Executive Producer'),(388,4867,1,'Director of Photography'),(388,5281,2,'Director'),(388,5282,4,'Writer'),(388,5283,3,'Executive Producer'),(388,5284,3,'Executive Producer'),(388,5285,3,'Executive Producer'),(388,5286,3,'Unit Production Manager'),(388,5286,3,'Co-Producer'),(388,5287,6,'Original Music Composer'),(388,5289,5,'Editor'),(388,5290,3,'Casting'),(388,5291,8,'Costume Design'),(388,15528,10,'Special Effects Supervisor'),(388,17950,7,'Art Direction'),(388,18173,7,'Set Decoration'),(388,18747,5,'Additional Editing'),(388,1207434,8,'Costume Supervisor'),(388,1253648,9,'Stunt Coordinator'),(388,1404290,11,'Gaffer'),(388,1486764,2,'Script Supervisor'),(388,1551041,6,'Production Sound Mixer'),(388,1565211,6,'Boom Operator'),(388,1602362,11,'Best Boy Electric'),(2112,2487,3,'Producer'),(2112,3806,3,'Casting'),(2112,4723,2,'Director'),(2112,4723,4,'Screenplay'),(2112,6923,7,'Art Direction'),(2112,8747,3,'Executive Producer'),(2112,10365,7,'Production Design'),(2112,11452,4,'Screenplay'),(2112,11001,5,'Editor'),(2112,14352,8,'Costume Design'),(2112,18889,9,'Second Unit Cinematographer'),(2112,18889,9,'Stunt Coordinator'),(2112,20720,3,'Unit Production Manager'),(2112,21514,6,'Original Music Composer'),(2112,21514,6,'Orchestrator'),(2112,21672,4,'Novel'),(2112,21673,1,'Director of Photography'),(2112,21674,7,'Set Decoration'),(2112,56324,1,'Additional Photography'),(2112,91931,3,'Production Accountant'),(2112,552471,9,'Transportation Captain'),(2112,1099033,11,'Rigging Gaffer'),(2112,1115114,6,'Sound Editor'),(2112,1319743,8,'Makeup Artist'),(2112,1323077,8,'Set Costumer'),(2112,1332599,8,'Costume Supervisor'),(2112,1364399,11,'Gaffer'),(2112,1370800,7,'Set Designer'),(2112,1386920,1,'Still Photographer'),(2112,1389137,9,'Transportation Coordinator'),(2112,1389575,3,'Location Manager'),(2112,1391130,1,'Steadicam Operator'),(2112,1407225,7,'Construction Foreman'),(2112,1408187,6,'Foley'),(2112,1412223,8,'Hairstylist'),(2112,1413452,6,'Sound Recordist'),(2112,1419106,11,'Electrician'),(2112,1422074,2,'Script Supervisor'),(2112,1432909,5,'Dialogue Editor'),(2112,1511737,6,'Production Sound Mixer'),(2112,1531565,7,'Art Department Coordinator'),(2112,1536965,9,'Armorer'),(2112,1543758,11,'Rigging Grip'),(2112,1552022,2,'First Assistant Director'),(2112,1552039,3,'Casting Associate'),(2112,1552545,9,'Propmaker'),(2112,1558196,7,'Painter'),(2112,1562248,5,'Color Timer'),(2112,1566278,9,'Video Assist Operator'),(2112,1569823,9,'Security'),(2112,1604463,6,'Scoring Mixer'),(2112,1629532,9,'Set Production Assistant'),(2112,1670662,3,'Production Manager'),(2112,1683722,9,'Stunts'),(2112,1693553,10,'Special Effects Supervisor'),(2112,1760569,1,'Grip'),(2112,1783635,7,'Art Department Assistant'),(2112,1783636,7,'Construction Coordinator'),(2112,1783637,7,'Leadman'),(2112,1783638,7,'Standby Painter'),(2112,1783639,1,'First Assistant Camera'),(2112,1783640,8,'Set Dressing Artist'),(2112,1783641,9,'Craft Service'),(2112,1783642,9,'Driver'),(2112,1783643,9,'Loader'),(2112,1783644,7,'Property Master'),(2112,1783645,9,'Scenic Artist'),(2112,1783646,9,'Set Medic'),(2112,1783647,9,'Unit Publicist'),(2112,1783648,9,'Utility Stunts'),(2112,1783650,5,'First Assistant Editor'),(2112,1783709,11,'Best Boy Electric'),(2112,1783711,3,'Production Coordinator'),(2112,1783712,6,'Boom Operator'),(2112,1783713,6,'First Assistant Sound Editor'),(6877,2484,5,'Editor'),(6877,2997,3,'Producer'),(6877,17751,3,'Producer'),(6877,24190,6,'Original Music Composer'),(6877,46076,2,'Director'),(6877,51327,4,'Screenplay'),(6877,51328,4,'Screenplay'),(6877,51333,1,'Director of Photography'),(8920,1060,1,'Director of Photography'),(8920,2043,3,'Producer'),(8920,8880,3,'Executive Producer'),(8920,12892,4,'Screenplay'),(8920,12893,4,'Screenplay'),(8920,18357,2,'Director'),(8920,31124,6,'Original Music Composer'),(8920,23486,6,'Original Music Composer'),(8920,45862,5,'Editor'),(8920,56336,4,'Author'),(8920,56337,3,'Executive Producer'),(8920,1448601,10,'Animation'),(6950,873,4,'Screenplay'),(6950,1213,6,'Original Music Composer'),(6950,2122,5,'Editor'),(6950,3394,5,'Editor'),(6950,3769,1,'Director of Photography'),(6950,7231,5,'Editor'),(6950,5231,2,'Director'),(6950,5231,3,'Producer'),(6950,6870,3,'Executive Producer'),(6950,6877,7,'Production Design'),(6950,10764,3,'Producer'),(6950,12050,3,'Executive Producer'),(6950,53004,4,'Screenplay'),(752,1113,3,'Casting'),(752,8382,7,'Supervising Art Director'),(752,1091,3,'Producer'),(752,6874,3,'Executive Producer'),(752,7052,9,'Stunts'),(752,20643,3,'Producer'),(752,7783,1,'Director of Photography'),(752,8528,3,'Producer'),(752,9339,4,'Screenplay'),(752,9339,3,'Producer'),(752,9340,4,'Screenplay'),(752,9340,3,'Producer'),(752,9343,7,'Production Design'),(752,8939,8,'Makeup Artist'),(752,9154,5,'Editor'),(752,11266,2,'Director'),(752,11267,3,'Associate Producer'),(752,11268,3,'Co-Producer'),(752,10903,3,'Co-Producer'),(752,10905,3,'Co-Producer'),(752,11269,6,'Original Music Composer'),(752,11270,7,'Set Decoration'),(752,11271,8,'Costume Design'),(752,11272,7,'Art Direction'),(752,11273,7,'Art Direction'),(752,11274,7,'Art Direction'),(752,12785,2,'Assistant Director'),(752,16716,9,'Stunts'),(752,40644,9,'Stunts Coordinator'),(752,40645,9,'Stunt Coordinator'),(752,40684,9,'Stunts Coordinator'),(752,40690,9,'Stunts'),(752,40691,9,'Stunts'),(752,40692,9,'Stunts'),(752,40693,9,'Stunts'),(752,40694,9,'Stunts'),(752,40695,9,'Stunts'),(752,40696,9,'Stunts'),(752,40697,9,'Stunts'),(752,40698,9,'Stunts'),(752,40699,9,'Stunts'),(752,40700,9,'Stunts'),(752,40701,9,'Stunts'),(752,40702,9,'Stunts'),(752,40704,9,'Stunts'),(752,40705,9,'Stunts'),(752,40706,9,'Stunts'),(752,40707,9,'Stunts'),(752,40708,9,'Stunts'),(752,40709,9,'Stunts'),(752,40710,9,'Stunts'),(752,40711,9,'Stunts'),(752,40712,9,'Stunts'),(752,40713,9,'Stunts'),(752,40714,9,'Stunts'),(752,40715,9,'Stunts'),(752,40716,9,'Stunts'),(752,40717,9,'Stunts'),(752,40718,9,'Stunts'),(752,40719,9,'Stunts'),(752,40720,9,'Stunts'),(752,40721,9,'Stunts'),(752,40722,9,'Stunts'),(752,40723,9,'Stunts'),(752,40724,9,'Stunts'),(752,40725,9,'Stunts'),(752,38605,9,'Stunts'),(752,40726,9,'Stunts'),(752,40727,9,'Stunts'),(752,40728,9,'Stunts'),(752,40729,9,'Stunts'),(752,40730,9,'Stunts'),(752,40731,9,'Stunts'),(752,40732,9,'Stunts'),(752,40733,9,'Stunts'),(752,40734,9,'Stunts'),(752,32865,9,'Stunts'),(752,40735,9,'Stunts'),(752,40736,9,'Stunts'),(752,40737,9,'Stunts'),(752,40738,9,'Stunts'),(752,40739,9,'Stunts'),(752,40740,9,'Stunts'),(752,40741,9,'Stunts'),(752,40742,9,'Stunts'),(752,40743,9,'Stunts'),(752,40744,9,'Stunts'),(752,40745,9,'Stunts'),(752,40746,9,'Stunts'),(752,40747,9,'Second Unit'),(752,40748,9,'Dialect Coach'),(752,40749,2,'Script Supervisor'),(752,40750,7,'Art Direction'),(752,40751,7,'Assistant Art Director'),(752,40752,7,'Assistant Art Director'),(752,40753,7,'Assistant Art Director'),(752,40754,7,'Art Department Coordinator'),(752,40755,7,'Set Decoration Buyer'),(752,40756,7,'Set Decoration Buyer'),(752,40757,7,'Conceptual Design'),(752,40758,7,'Conceptual Design'),(752,40759,7,'Production Illustrator'),(752,40760,9,'Picture Car Coordinator'),(752,40761,7,'Standby Painter'),(752,40762,7,'Art Department Assistant'),(752,40763,7,'Art Department Assistant'),(752,40764,9,'Property Master'),(752,40765,1,'Camera Operator'),(752,40766,1,'Additional Camera'),(752,40771,1,'Additional Camera'),(752,40772,6,'Production Sound Mixer'),(752,40773,6,'Boom Operator'),(752,40774,9,'Cableman'),(752,40776,9,'Set Production Assistant'),(752,40777,9,'Video Assist Operator'),(752,40778,11,'Gaffer'),(752,40779,11,'Best Boy Electrician'),(752,40780,11,'Electrician'),(752,40781,11,'Electrician'),(752,40782,11,'Electrician'),(752,40783,11,'Electrician'),(752,40784,11,'Electrician'),(752,40785,11,'Electrician'),(752,40786,11,'Electrician'),(752,40787,11,'Electrician'),(752,40788,11,'Electrician'),(752,40789,11,'Rigging Gaffer'),(752,40790,1,'Grip'),(752,40791,1,'Grip'),(752,40792,1,'Grip'),(752,40793,1,'Grip'),(752,40794,1,'Grip'),(752,40795,9,'Unit Publicist'),(752,40796,1,'Still Photographer'),(752,40800,8,'Set Costumer'),(752,40801,8,'Set Costumer'),(752,40802,8,'Hairstylist'),(752,40803,8,'Makeup Artist'),(752,40803,8,'Hairstylist'),(752,40804,9,'Special Effects Coordinator'),(752,40805,5,'First Assistant Editor'),(752,40809,9,'Post Production Assistant'),(752,40810,6,'Supervising Sound Editor'),(752,40810,6,'Sound Designer'),(752,40811,6,'Sound Designer'),(752,40812,6,'Sound Effects Editor'),(752,40813,5,'Dialogue Editor'),(752,40814,6,'ADR & Dubbing'),(752,40815,6,'Foley'),(752,40816,6,'Foley'),(752,40817,6,'Sound Editor'),(752,40818,6,'Sound Re-Recording Mixer'),(752,40819,6,'Sound Re-Recording Mixer'),(752,40820,6,'ADR & Dubbing'),(752,40822,6,'Foley'),(752,40823,6,'Foley'),(752,40824,6,'Foley'),(752,40825,6,'Music'),(752,40826,6,'Music'),(752,40827,6,'Music Editor'),(752,40830,3,'Location Manager'),(752,40831,3,'Location Manager'),(752,40833,7,'Location Scout'),(752,40836,3,'Production Manager'),(752,40838,3,'Production Manager'),(752,40840,3,'Production Manager'),(752,40842,3,'Production Manager'),(752,40846,3,'Production Accountant'),(752,40848,3,'Production Accountant'),(752,40850,9,'Set Medic'),(752,40851,9,'Set Medic'),(752,40852,9,'Stand In'),(752,40853,9,'Stand In'),(752,40854,9,'Stand In'),(752,40855,9,'Stand In'),(752,40856,9,'Stand In'),(752,40857,9,'Stand In'),(752,40858,9,'Stand In'),(752,40859,9,'Stand In'),(752,40860,9,'Transportation Coordinator'),(752,40861,9,'Transportation Captain'),(752,40862,9,'Second Unit'),(752,26196,8,'Hairstylist'),(752,64568,9,'Stunts'),(752,101523,8,'Costume Supervisor'),(752,127409,4,'Novel'),(752,587804,8,'Hairstylist'),(752,1349076,5,'Color Timer'),(752,1380003,2,'Script Supervisor'),(752,1416481,5,'Digital Intermediate'),(752,1456365,8,'Makeup Artist'),(752,1551913,9,'Sequence Supervisor'),(752,1593101,6,'Sound Engineer'),(752,1677710,1,'Grip'),(6038,3311,3,'Casting'),(6038,4504,3,'Producer'),(6038,4507,3,'Producer'),(6038,6688,8,'Costume Design'),(6038,7732,7,'Production Design'),(6038,7783,1,'Director of Photography'),(6038,14457,5,'Editor'),(6038,14712,6,'Original Music Composer'),(6038,18923,4,'Screenplay'),(6038,18924,4,'Screenplay'),(6038,42994,2,'Director'),(6038,1096443,3,'Casting'),(6038,1404549,2,'Script Supervisor'),(6038,1455486,2,'Assistant Director'),(6038,1583827,10,'Visual Effects Supervisor'),(9975,6159,3,'Producer'),(9975,11402,4,'Story'),(9975,13596,3,'Producer'),(9975,39056,10,'Lead Animator'),(9975,40375,3,'Executive Producer'),(9975,44064,4,'Screenplay'),(9975,44064,4,'Story'),(9975,59706,6,'Original Music Composer'),(9975,61295,3,'Executive Producer'),(9975,61290,2,'Director'),(9975,61292,3,'Line Producer'),(9975,61291,4,'Book'),(9975,61294,3,'Producer'),(9975,61296,4,'Book'),(9975,61297,3,'Executive Producer'),(9975,61298,5,'Editor'),(9975,61300,7,'Production Design'),(9975,61299,3,'Executive Producer'),(9975,91768,4,'Storyboard'),(9975,1447298,10,'Lead Animator'),(9975,1447301,10,'Animation'),(9975,1447336,10,'Lead Animator'),(9975,1447375,4,'Storyboard'),(9975,1447376,10,'Lead Animator'),(9975,1447380,10,'Animation'),(9975,1447386,10,'Animation'),(9975,1447473,10,'Character Designer'),(9975,1447473,10,'Lead Animator'),(9975,1447476,2,'Layout'),(9975,1447478,10,'Animation'),(9975,1447504,4,'Storyboard'),(9975,1447556,2,'Layout'),(9975,1447564,10,'Animation'),(9975,1447576,10,'Visual Effects Supervisor'),(9975,1447599,2,'Layout'),(9975,1448082,7,'Prop Designer'),(9975,1450331,10,'Animation Supervisor'),(9975,1451229,10,'Visual Development'),(9975,1451661,10,'Visual Effects Supervisor'),(9975,1451684,10,'Animation'),(9975,1453498,10,'Character Designer'),(9975,1453536,10,'Animation'),(9975,1454249,4,'Storyboard'),(9975,1454249,10,'Lead Animator'),(9975,1457625,4,'Storyboard'),(9975,1457930,10,'Animation'),(9975,1460481,2,'Layout'),(9975,1460529,3,'Production Manager'),(9975,1460548,10,'Animation'),(9975,1461156,10,'Animation'),(9975,1461840,4,'Storyboard'),(9975,1462665,2,'Layout'),(2251,4023,3,'Casting'),(2251,1718,7,'Production Design'),(2251,142,4,'Screenplay'),(2251,376,3,'Executive Producer'),(2251,3192,3,'Casting'),(2251,7735,8,'Costume Design'),(2251,5328,3,'Casting'),(2251,6346,5,'Editor'),(2251,7270,2,'Director'),(2251,7270,3,'Producer'),(2251,7630,4,'Screenplay'),(2251,10717,1,'Director of Photography'),(2251,17220,7,'Art Direction'),(2251,17221,7,'Set Decoration'),(2251,22680,6,'Music'),(2251,23226,3,'Producer'),(2251,32489,8,'Makeup Artist'),(2251,61928,3,'Executive Producer'),(2251,62778,3,'Casting'),(2251,958273,2,'Script Supervisor'),(2251,1329529,8,'Makeup Artist'),(2251,1401353,8,'Hairstylist'),(2251,1425810,8,'Hairstylist'),(2251,1471015,7,'Art Department Coordinator'),(2251,1525168,8,'Set Costumer'),(2251,1702253,3,'Executive Producer'),(231,2952,3,'Casting'),(231,1113,3,'Casting'),(231,1000,7,'Production Design'),(231,8386,3,'Associate Producer'),(231,1461,3,'Executive Producer'),(231,1635,5,'Editor'),(231,1884,3,'Executive Producer'),(231,2945,4,'Screenplay'),(231,2945,2,'Director'),(231,2946,3,'Producer'),(231,2947,3,'Producer'),(231,2948,3,'Producer'),(231,2949,6,'Original Music Composer'),(231,2950,1,'Director of Photography'),(231,2951,3,'Casting'),(231,2953,3,'Casting'),(231,2985,4,'Book'),(231,4061,8,'Costume Design'),(231,5333,8,'Makeup Department Head'),(231,13626,7,'Set Decoration'),(231,16734,7,'Set Decoration'),(231,28632,3,'Executive Producer'),(231,31519,3,'Executive Producer'),(231,92332,8,'Hairstylist'),(231,117206,8,'Hairstylist'),(231,992965,2,'Script Supervisor'),(231,1177850,1,'Still Photographer'),(231,1329061,8,'Makeup Artist'),(231,1330048,8,'Costume Supervisor'),(231,1335127,6,'Supervising Sound Editor'),(231,1335127,6,'Sound Re-Recording Mixer'),(231,1342650,7,'Art Department Coordinator'),(231,1364410,6,'Sound Editor'),(231,1388877,9,'Stunt Coordinator'),(231,1400535,1,'Camera Operator'),(231,1400535,1,'Steadicam Operator'),(231,1404230,1,'Still Photographer'),(231,1417516,6,'Sound Editor'),(231,1425343,6,'Sound Editor'),(231,1432022,10,'Visual Effects Supervisor'),(231,1470159,8,'Makeup Artist'),(231,1512150,3,'Associate Producer'),(231,1536633,6,'Sound Editor'),(231,1538430,1,'Still Photographer'),(231,1552027,6,'Sound mixer'),(231,1552035,6,'Music Editor'),(231,1552040,1,'Still Photographer'),(231,1552044,3,'Associate Producer'),(9754,2949,6,'Original Music Composer'),(9754,22061,7,'Art Direction'),(9754,33315,2,'Director'),(9754,41587,3,'Producer'),(9754,42633,5,'Editor'),(9754,58327,3,'Producer'),(9754,59984,1,'Director of Photography'),(9754,58904,4,'Author'),(9754,67759,3,'Producer'),(66,190,2,'Director'),(66,190,3,'Producer'),(66,190,6,'Original Music Composer'),(66,195,6,'Original Music Composer'),(66,356,1,'Director of Photography'),(66,369,7,'Production Design'),(66,384,5,'Editor'),(66,423,3,'Casting'),(66,347,3,'Executive Producer'),(66,348,4,'Screenplay'),(66,355,4,'Novel'),(66,370,7,'Art Direction'),(66,371,1,'First Assistant Camera'),(66,373,6,'Sound Effects Editor'),(66,375,6,'Sound Editor'),(66,379,6,'Music Editor'),(66,168769,3,'Producer'),(66,1102089,3,'Producer'),(4421,551,3,'Producer'),(4421,578,2,'Director'),(4421,578,3,'Producer'),(4421,944,7,'Production Design'),(4421,949,3,'Casting'),(4421,950,5,'Editor'),(4421,11079,7,'Set Decoration'),(4421,3416,3,'Producer'),(4421,4504,3,'Producer'),(4421,7020,6,'Original Music Composer'),(4421,7719,8,'Costume Design'),(4421,8285,7,'Art Direction'),(4421,22100,1,'Director of Photography'),(4421,28239,4,'Screenplay'),(4421,37208,4,'Screenplay'),(4421,577752,3,'Casting'),(2649,322,3,'Producer'),(2649,117,6,'Original Music Composer'),(2649,7213,3,'Executive Producer'),(2649,7214,4,'Writer'),(2649,7215,4,'Writer'),(2649,7467,2,'Director'),(2649,7475,3,'Producer'),(2649,7480,5,'Editor'),(2649,7848,7,'Production Design'),(2649,10688,1,'Director of Photography'),(2649,14538,3,'Casting'),(588,3962,8,'Costume Design'),(588,3964,10,'Creature Design'),(588,8297,4,'Writer'),(588,4697,3,'Producer'),(588,7800,3,'Casting'),(588,8296,2,'Director'),(588,8299,3,'Executive Producer'),(588,8301,3,'Executive Producer'),(588,8301,6,'Music'),(588,8303,3,'Producer'),(588,8315,7,'Production Design'),(588,8317,5,'Editor'),(588,8320,6,'Music'),(588,8352,10,'Creature Design'),(588,8355,10,'Creature Design'),(588,8356,9,'Stunts'),(588,8357,9,'Stunts'),(588,8358,9,'Stunts'),(588,8359,9,'Stunts'),(588,8360,9,'Stunts'),(588,8361,9,'Stunts'),(588,8362,9,'Stunts'),(588,8363,9,'Stunts'),(588,8365,9,'Stunts'),(588,8366,9,'Stunts'),(588,8368,9,'Stunts'),(588,8369,3,'Production Manager'),(588,8369,3,'Line Producer'),(588,8370,5,'First Assistant Editor'),(588,8371,9,'Second Unit'),(588,8372,10,'Creature Design'),(588,8373,10,'Creature Design'),(588,8409,10,'Creature Design'),(588,8673,1,'Camera Operator'),(588,8674,1,'Camera Operator'),(588,8675,1,'Camera Loader'),(588,8811,10,'Creature Design'),(588,40268,1,'Director of Photography'),(9631,376,3,'Producer'),(9631,5912,6,'Music'),(9631,6668,5,'Editor'),(9631,5490,3,'Casting'),(9631,6878,7,'Art Direction'),(9631,8523,1,'Director of Photography'),(9631,9775,8,'Makeup Artist'),(9631,13166,6,'Sound Effects Editor'),(9631,14342,7,'Set Decoration'),(9631,13458,9,'Stunt Coordinator'),(9631,15356,10,'Special Effects Supervisor'),(9631,22135,7,'Production Design'),(9631,8305,3,'Executive Producer'),(9631,31710,3,'Producer'),(9631,37932,2,'Director'),(9631,53120,4,'Screenplay'),(9631,58226,3,'Executive Producer'),(9631,58227,3,'Executive Producer'),(9631,58228,4,'Screenplay'),(9631,62643,8,'Costume Design'),(9631,62739,3,'Unit Production Manager'),(9631,83066,8,'Hairstylist'),(9631,106243,9,'Stand In'),(9631,548451,9,'Digital Effects Supervisor'),(9631,1029026,3,'Unit Production Manager'),(9631,1236036,2,'Assistant Director'),(9631,1377502,1,'Still Photographer'),(9631,1395290,2,'Script Supervisor'),(9631,1407721,8,'Wigmaker'),(9631,1588279,1,'Grip'),(9631,1588280,5,'Color Timer'),(306,772,4,'Author'),(306,772,4,'Screenplay'),(306,774,4,'Author'),(306,774,4,'Screenplay'),(306,1097,3,'Casting'),(306,1726,4,'Author'),(306,4610,2,'Director'),(306,4611,3,'Producer'),(306,4612,3,'Producer'),(306,4613,6,'Original Music Composer'),(306,4614,1,'Director of Photography'),(306,4615,5,'Editor'),(306,4616,7,'Production Design'),(306,56189,3,'Executive Producer'),(928,488,3,'Executive Producer'),(928,13589,8,'Costume Design'),(928,1760,6,'Original Music Composer'),(928,3806,3,'Casting'),(928,3988,7,'Art Direction'),(928,4600,2,'Director'),(928,10064,7,'Production Design'),(928,10965,4,'Screenplay'),(928,13584,5,'Editor'),(928,16154,3,'Producer'),(928,16156,1,'Director of Photography'),(928,16163,9,'Stunt Coordinator'),(928,16175,3,'Casting'),(928,16176,7,'Set Decoration'),(928,16177,6,'Sound Editor'),(928,16178,9,'Special Effects'),(928,16179,10,'Visual Effects Supervisor'),(6623,947,6,'Original Music Composer'),(6623,930,3,'Producer'),(6623,2212,3,'Producer'),(6623,3191,3,'Casting'),(6623,7232,3,'Casting Associate'),(6623,5059,7,'Production Design'),(6623,8701,3,'Executive Producer'),(6623,8153,5,'First Assistant Editor'),(6623,8153,9,'Visual Effects Editor'),(6623,9993,9,'Post Production Supervisor'),(6623,10616,1,'Director of Photography'),(6623,12948,9,'Second Unit Cinematographer'),(6623,14460,9,'Special Effects Coordinator'),(6623,13588,7,'Set Decoration'),(6623,17816,5,'Editor'),(6623,19993,3,'Casting'),(6623,20540,3,'Casting'),(6623,27425,9,'Dialect Coach'),(6623,30383,3,'Executive Producer'),(6623,32490,8,'Hair Designer'),(6623,47333,3,'Co-Executive Producer'),(6623,51984,2,'Director'),(6623,52171,4,'Screenplay'),(6623,51804,10,'Visual Effects Supervisor'),(6623,92332,8,'Key Hair Stylist'),(6623,74767,3,'Unit Production Manager'),(6623,74767,3,'Co-Producer'),(6623,91891,9,'Special Sound Effects'),(6623,227102,3,'Co-Producer'),(6623,227105,3,'Co-Producer'),(6623,570129,9,'Armorer'),(6623,570132,11,'Electrician'),(6623,932186,6,'Orchestrator'),(6623,996401,7,'Art Department Coordinator'),(6623,1015485,8,'Costume Supervisor'),(6623,1074163,9,'Stunt Coordinator'),(6623,1324023,7,'Property Master'),(6623,1334782,7,'Set Designer'),(6623,1341856,6,'Foley'),(6623,1352979,6,'Music Editor'),(6623,1391583,1,'Still Photographer'),(6623,1392125,6,'Supervising Sound Editor'),(6623,1392127,5,'Dialogue Editor'),(6623,1392131,6,'Sound Effects Editor'),(6623,1398859,11,'Gaffer'),(6623,1403533,3,'Production Manager'),(6623,1403545,11,'Best Boy Electric'),(6623,1403641,1,'Underwater Camera'),(6623,1404533,9,'Digital Effects Supervisor'),(6623,1411075,8,'Wigmaker'),(6623,1413106,3,'Production Coordinator'),(6623,1417883,8,'Set Costumer'),(6623,1421923,9,'Unit Publicist'),(6623,1432587,7,'Leadman'),(6623,1439682,9,'Utility Stunts'),(6623,1463332,4,'Storyboard'),(6623,1467275,2,'Script Supervisor'),(6623,1531905,9,'Loader'),(6623,1532767,10,'Special Effects Supervisor'),(6623,1539805,8,'Makeup Artist'),(6623,1546232,9,'Security'),(6623,1549260,8,'Assistant Costume Designer'),(6623,1551025,6,'Production Sound Mixer'),(6623,1558210,9,'Production Controller'),(6623,1599803,6,'Sound Mixer'),(6623,1599948,8,'Set Dressing Artist'),(6623,1617471,7,'Assistant Art Director'),(6623,1629423,6,'Sound Recordist'),(6623,1630675,5,'Color Timer'),(6623,1637089,2,'First Assistant Director'),(6623,1648110,3,'Location Manager'),(6623,1680472,9,'Technical Supervisor'),(6623,1765790,9,'Picture Car Coordinator'),(6623,1780713,10,'3D Modeller'),(6623,1794221,6,'Boom Operator'),(6623,1827673,7,'Set Decoration'),(6623,1827675,7,'Construction Coordinator'),(6623,1827676,7,'Construction Foreman'),(6623,1827677,1,'Additional Photography'),(6623,1827678,1,'First Assistant Camera'),(6623,1827679,1,'Key Grip'),(6623,1827680,1,'Grip'),(6623,1827681,8,'Hairstylist'),(6623,1827683,9,'Carpenter'),(6623,1827692,9,'Scenic Artist'),(6623,1827695,9,'Set Production Assistant'),(6623,1827698,9,'Stunts'),(6623,1827699,9,'Transportation Co-Captain'),(6623,1827706,3,'Production Accountant'),(6623,1827708,6,'First Assistant Sound Editor'),(6623,1827709,6,'First Assistant Sound Editor'),(6623,1827712,3,'Unit Manager'),(1577,4014,4,'Screenplay'),(1577,4014,3,'Producer'),(1577,4016,3,'Producer'),(1577,4017,3,'Executive Producer'),(1577,4020,1,'Director of Photography'),(1577,4022,3,'Casting'),(1577,673,3,'Executive Producer'),(1577,4697,3,'Executive Producer'),(1577,5908,1,'Director of Photography'),(1577,8303,3,'Producer'),(1577,8320,6,'Original Music Composer'),(1577,8355,9,'Stunt Coordinator'),(1577,12707,8,'Costume Design'),(1577,15230,9,'Stunts'),(1577,17080,3,'Executive Producer'),(1577,17649,2,'Director'),(1577,31516,3,'Executive Producer'),(1577,40835,7,'Production Design'),(1577,42306,3,'Casting'),(1577,43609,9,'Additional Music'),(1577,49809,5,'Editor'),(1577,58257,6,'Orchestrator'),(1577,62121,7,'Set Decoration'),(1577,67982,3,'Associate Producer'),(1577,83347,9,'Post Production Supervisor'),(1577,132626,10,'Visual Effects Coordinator'),(1577,224391,3,'Line Producer'),(1577,543697,9,'Production Office Assistant'),(1577,1002652,10,'Visual Effects Supervisor'),(1577,1066776,6,'Music Supervisor'),(1577,1126355,3,'Associate Producer'),(1577,1167760,9,'CG Supervisor'),(1577,1208920,2,'Script Supervisor'),(1577,1282804,9,'Choreographer'),(1577,1304276,6,'Foley'),(1577,1319467,8,'Makeup Artist'),(1577,1322019,7,'Art Direction'),(1577,1337457,6,'Boom Operator'),(1577,1338287,6,'Music Editor'),(1577,1340345,6,'Sound Designer'),(1577,1340345,6,'Supervising Sound Editor'),(1577,1364796,6,'First Assistant Sound Editor'),(1577,1364801,6,'Sound Editor'),(1577,1364803,3,'Location Manager'),(1577,1399502,9,'Scenic Artist'),(1577,1399925,9,'Visual Effects Editor'),(1577,1401283,7,'Assistant Art Director'),(1577,1401284,7,'Set Designer'),(1577,1401288,6,'Sound Effects Editor'),(1577,1408665,8,'Key Hair Stylist'),(1577,1408814,1,'Camera Operator'),(1577,1409220,6,'Sound Re-Recording Mixer'),(1577,1409240,1,'First Assistant Camera'),(1577,1412598,7,'Location Scout'),(1577,1415157,9,'Unit Publicist'),(1577,1415188,9,'Systems Administrators & Support'),(1577,1434166,1,'Still Photographer'),(1577,1447212,2,'Assistant Director'),(1577,1448082,6,'Production Sound Mixer'),(1577,1449163,7,'Construction Coordinator'),(1577,1456359,9,'Dialect Coach'),(1577,1530192,9,'Armorer'),(1577,1538708,1,'Steadicam Operator'),(1577,1548695,9,'Software Engineer'),(1577,1551654,9,'Set Medic'),(1577,1553166,9,'Sequence Supervisor'),(1577,1590109,3,'Production Accountant'),(1577,1600613,1,'Grip'),(1577,1613291,5,'Digital Intermediate'),(1577,1614062,7,'Art Direction'),(1577,1644476,11,'Lighting Artist'),(1577,1651080,7,'Painter'),(1577,1651081,7,'Sculptor'),(1577,1651086,1,'Helicopter Camera'),(1577,1651096,9,'Craft Service'),(1577,1651098,9,'Digital Effects Supervisor'),(1577,1651100,9,'Driver'),(1577,1651102,9,'Makeup Effects'),(1577,1651104,9,'Second Unit Cinematographer'),(1577,1652207,9,'Utility Stunts'),(1577,1652208,9,'Video Assist Operator'),(1577,1652209,11,'Best Boy Electric'),(1577,1652210,11,'Electrician'),(1577,1652211,11,'Gaffer'),(1577,1652214,11,'Rigging Gaffer'),(1577,1652217,11,'Rigging Grip'),(1577,1652218,3,'Production Coordinator'),(1577,1652219,3,'Production Manager'),(1577,1652220,3,'Researcher'),(1577,1652229,10,'3D Supervisor'),(1577,1652231,10,'Digital Compositors'),(1577,1652232,10,'Visual Effects'),(1577,1652233,10,'Visual Effects Producer'),(1577,1652234,4,'Storyboard'),(9801,2236,3,'Producer'),(9801,2238,3,'Producer'),(9801,16328,4,'Screenplay'),(9801,5489,3,'Casting'),(9801,5553,6,'Original Music Composer'),(9801,7018,4,'Screenplay'),(9801,7783,1,'Director of Photography'),(9801,9150,3,'Executive Producer'),(9801,9151,3,'Executive Producer'),(9801,9153,7,'Production Design'),(9801,9155,4,'Screenplay'),(9801,9155,4,'Novel'),(9801,9156,4,'Screenplay'),(9801,9157,3,'Producer'),(9801,9161,8,'Makeup Artist'),(9801,9161,8,'Hairstylist'),(9801,11227,8,'Costume Design'),(9801,40748,9,'Dialect Coach'),(9801,40810,6,'Supervising Sound Editor'),(9801,40812,6,'First Assistant Sound Editor'),(9801,40815,6,'Foley'),(9801,40816,6,'Sound Effects Editor'),(9801,14376,5,'Editor'),(9801,17599,3,'Line Producer'),(9801,20237,2,'Director'),(9801,44006,9,'Stunt Coordinator'),(9801,30463,7,'Art Direction'),(9801,50147,3,'Producer'),(9801,67204,7,'Set Decoration'),(9801,75578,3,'Casting Associate'),(9801,123471,9,'Propmaker'),(9801,223202,6,'Music Supervisor'),(9801,223203,10,'Visual Effects Supervisor'),(9801,223238,10,'Visual Effects Producer'),(9801,223246,9,'Visual Effects Editor'),(9801,1001706,9,'Additional Music'),(9801,1102197,3,'Production Supervisor'),(9801,1117369,3,'Line Producer'),(9801,1117370,3,'Line Producer'),(9801,1199741,6,'Music Editor'),(9801,1222602,11,'Gaffer'),(9801,1312190,8,'Assistant Costume Designer'),(9801,1326461,8,'Costume Supervisor'),(9801,1327029,6,'Sound Mixer'),(9801,1334429,9,'Property Master'),(9801,1339060,9,'Post Production Supervisor'),(9801,1346934,7,'Supervising Art Director'),(9801,1387786,7,'Art Department Coordinator'),(9801,1398089,7,'Greensman'),(9801,1406200,9,'Unit Publicist'),(9801,1412460,5,'Editorial Services'),(9801,1417821,10,'Visual Effects Coordinator'),(9801,1421657,1,'Still Photographer'),(9801,1427823,8,'Hair Designer'),(9801,1428506,1,'Steadicam Operator'),(9801,1430073,7,'Art Department Assistant'),(9801,1458422,9,'Scenic Artist'),(9801,1461635,5,'First Assistant Editor'),(9801,1473992,6,'Original Music Composer'),(9801,1535097,1,'Grip'),(9801,1553168,11,'Rigging Gaffer'),(9801,1564277,3,'Executive In Charge Of Production'),(9801,1576007,1,'Helicopter Camera'),(9801,1576013,9,'Driver'),(9801,1576029,3,'Production Accountant'),(9801,1578201,6,'Orchestrator'),(9801,1632585,4,'Storyboard'),(9801,1637823,10,'Special Effects Supervisor'),(9801,1713263,7,'Construction Foreman'),(9801,1713264,7,'Leadman'),(9801,1713265,7,'Painter'),(9801,1713266,7,'Standby Painter'),(9801,1713267,1,'First Assistant Camera'),(9801,1713268,9,'Carpenter'),(9801,1713691,9,'Sound Recordist'),(9801,1713692,9,'Stand In'),(9801,1713693,9,'Video Assist Operator'),(9801,1713694,2,'Assistant Director'),(9801,1713695,5,'Digital Intermediate'),(9801,1713696,11,'Best Boy Electric'),(9801,1713697,11,'Electrician'),(9801,1713698,3,'Location Manager'),(9801,1713699,3,'Production Coordinator'),(9801,1713700,3,'Production Manager'),(9801,1713701,10,'Digital Compositors'),(9801,1713702,6,'Dolby Consultant'),(2116,1262,3,'Casting'),(2116,5912,6,'Original Music Composer'),(2116,9774,7,'Set Decoration'),(2116,11874,3,'Producer'),(2116,10815,1,'Director of Photography'),(2116,13061,3,'Casting Associate'),(2116,15526,8,'Hairstylist'),(2116,15573,8,'Costume Design'),(2116,21589,7,'Production Design'),(2116,21712,2,'Director'),(2116,21713,4,'Screenplay'),(2116,21714,3,'Producer'),(2116,21717,5,'Editor'),(2116,21718,7,'Art Direction'),(2116,28241,6,'Orchestrator'),(2116,29436,6,'Musician'),(2116,33256,3,'Producer'),(2116,34529,6,'Production Sound Mixer'),(2116,37436,3,'Executive Producer'),(2116,39455,3,'Local Casting'),(2116,51386,6,'Music Programmer'),(2116,66133,3,'Associate Producer'),(2116,66821,3,'Executive Producer'),(2116,83143,3,'Executive Producer'),(2116,83143,3,'Unit Production Manager'),(2116,86201,3,'Executive Producer'),(2116,91864,4,'Storyboard'),(2116,143913,6,'ADR Supervisor'),(2116,143919,6,'Sound Re-Recording Mixer'),(2116,146352,9,'Stunt Coordinator'),(2116,223243,7,'Assistant Art Director'),(2116,229810,8,'Hairstylist'),(2116,929274,3,'Associate Producer'),(2116,1015427,6,'Boom Operator'),(2116,1018034,3,'Production Supervisor'),(2116,1236036,2,'Assistant Director'),(2116,1288345,3,'Assistant Production Manager'),(2116,1334400,9,'Property Master'),(2116,1334481,7,'Set Designer'),(2116,1364402,7,'Construction Foreman'),(2116,1364409,7,'Construction Coordinator'),(2116,1368866,6,'Sound Designer'),(2116,1368866,6,'Sound Effects Editor'),(2116,1377234,5,'Digital Intermediate'),(2116,1378068,8,'Makeup Artist'),(2116,1391598,8,'Key Costumer'),(2116,1395022,6,'Supervising Sound Editor'),(2116,1398859,11,'Chief Lighting Technician'),(2116,1400338,9,'Sound Recordist'),(2116,1401109,1,'Camera Operator'),(2116,1401305,6,'Music Editor'),(2116,1402095,1,'Camera Operator'),(2116,1403089,9,'Scenic Artist'),(2116,1403490,6,'Music Editor'),(2116,1404193,9,'Picture Car Coordinator'),(2116,1404217,6,'Foley'),(2116,1406390,6,'Sound Effects Editor'),(2116,1415333,8,'Key Makeup Artist'),(2116,1428834,5,'Color Timer'),(2116,1458006,7,'Title Designer'),(2116,1463364,9,'Propmaker'),(2116,1465623,8,'Key Hair Stylist'),(2116,1470637,3,'Associate Producer'),(2116,1525317,8,'Makeup Artist'),(2116,1537676,2,'Second Assistant Director'),(2116,1546873,6,'ADR Editor'),(2116,1548261,2,'Script Supervisor'),(2116,1548262,1,'Still Photographer'),(2116,1548266,5,'Dialogue Editor'),(2116,1548267,3,'Production Coordinator'),(2116,1548277,10,'Visual Effects Supervisor'),(2116,1549417,7,'Art Department Coordinator'),(2116,1549418,7,'Leadman'),(2116,1549419,7,'Standby Painter'),(2116,1549420,1,'First Assistant Camera'),(2116,1549421,1,'Key Grip'),(2116,1549422,9,'Craft Service'),(2116,1549423,9,'Driver'),(2116,1549424,9,'Loader'),(2116,1549425,9,'Security'),(2116,1549426,9,'Set Medic'),(2116,1549427,9,'Set Production Assistant'),(2116,1549428,9,'Special Effects Coordinator'),(2116,1549429,9,'Transportation Captain'),(2116,1549430,9,'Transportation Coordinator'),(2116,1549431,9,'Unit Publicist'),(2116,1549432,9,'Visual Effects Editor'),(2116,1549433,5,'First Assistant Editor'),(2116,1549434,11,'Electrician'),(2116,1549435,11,'Rigging Grip'),(2116,1549436,3,'Location Manager'),(2116,1549437,10,'Visual Effects Producer'),(2116,1549438,10,'Visual Effects Coordinator'),(2116,1549439,1,'Camera Intern'),(2116,1549440,9,'Mixing Engineer'),(2116,1549441,9,'Utility Stunts'),(2116,1549441,9,'Marine Coordinator'),(2116,1549442,9,'Chef'),(2116,1549444,11,'Gaffer'),(2116,1549445,6,'Sound Engineer'),(2116,1656409,2,'First Assistant Director'),(2116,1724860,7,'Set Dresser'),(2116,1733142,5,'Negative Cutter'),(2116,1733187,7,'Assistant Property Master'),(2116,1733188,1,'Dolly Grip'),(2116,1733189,1,'Grip'),(2116,1733190,9,'Pilot'),(2116,1733191,3,'Assistant Production Coordinator'),(2116,1733192,3,'Casting Assistant'),(9624,711,3,'Executive Producer'),(9624,1728,1,'Director of Photography'),(9624,2621,3,'Producer'),(9624,7728,6,'Original Music Composer'),(9624,16650,5,'Editor'),(9624,23880,2,'Director'),(9624,23880,3,'Producer'),(9624,58204,4,'Screenplay'),(9624,58205,4,'Screenplay'),(9624,58206,3,'Producer'),(9624,58207,3,'Executive Producer'),(9624,58208,5,'Editor'),(1907,8384,7,'Set Decoration'),(1907,2034,2,'Director'),(1907,2035,3,'Producer'),(1907,2036,4,'Novel'),(1907,2240,1,'Director of Photography'),(1907,5628,6,'Original Music Composer'),(1907,8999,4,'Screenplay'),(1907,9006,8,'Costume Design'),(1907,10876,3,'Producer'),(1907,19872,7,'Production Design'),(4599,1201,2,'Director'),(4599,1214,1,'Director of Photography'),(4599,1262,3,'Casting'),(4599,4500,6,'Music'),(4599,13061,3,'Casting Associate'),(4599,12970,5,'Editor'),(4599,42037,9,'Property Master'),(4599,21141,6,'Music Editor'),(4599,21478,3,'Producer'),(4599,31710,3,'Producer'),(4599,38411,7,'Production Design'),(4599,38412,5,'Editor'),(4599,38413,7,'Set Decoration'),(4599,38414,7,'Art Direction'),(4599,38415,3,'Executive Producer'),(4599,38416,3,'Executive Producer'),(4599,38418,4,'Screenplay'),(4599,38419,4,'Screenplay'),(4599,38693,4,'Story'),(4599,38694,4,'Story'),(4599,46082,7,'Set Designer'),(4599,53478,3,'Unit Production Manager'),(4599,62758,3,'Co-Producer'),(4599,74978,6,'Sound Re-Recording Mixer'),(4599,75376,8,'Key Hair Stylist'),(4599,83061,3,'Co-Producer'),(4599,83082,6,'Boom Operator'),(4599,83087,5,'Dialogue Editor'),(4599,83090,6,'Supervising Sound Editor'),(4599,83091,6,'Sound Re-Recording Mixer'),(4599,83092,9,'Special Effects Coordinator'),(4599,91093,5,'Dialogue Editor'),(4599,142152,8,'Makeup Artist'),(4599,543194,8,'Costume Design'),(4599,548412,8,'Makeup Artist'),(4599,936194,8,'Makeup Department Head'),(4599,983595,7,'Art Department Coordinator'),(4599,999716,9,'Stunt Coordinator'),(4599,1183391,1,'Still Photographer'),(4599,1331648,8,'Hair Department Head'),(4599,1335156,5,'Color Timer'),(4599,1357066,1,'Camera Operator'),(4599,1357066,1,'Steadicam Operator'),(4599,1374605,7,'Set Designer'),(4599,1378751,7,'Set Designer'),(4599,1386856,9,'Choreographer'),(4599,1402015,8,'Hairstylist'),(4599,1404326,6,'Music Editor'),(4599,1415618,6,'Sound Effects Editor'),(4599,1453321,9,'Unit Publicist'),(4599,1480099,2,'Script Supervisor'),(4599,1521508,8,'Costume Supervisor'),(4599,1536363,8,'Key Hair Stylist'),(4599,1538031,6,'Music Editor'),(4599,1538705,6,'Sound Mixer'),(4599,1545949,3,'Unit Production Manager'),(4599,1556310,6,'Music Supervisor'),(4599,1706970,3,'Associate Producer'),(4599,1706976,8,'Assistant Costume Designer'),(4599,1706979,9,'Schedule Coordinator'),(4599,1706980,9,'Post Production Supervisor'),(4599,1706981,9,'Post Production Assistant'),(4599,1706982,3,'Production Supervisor'),(9879,117,6,'Original Music Composer'),(9879,1227,3,'Casting'),(9879,4188,7,'Set Decoration'),(9879,5582,1,'Director of Photography'),(9879,6346,5,'Editor'),(9879,8885,8,'Costume Design'),(9879,10441,7,'Production Design'),(9879,17491,3,'Production Supervisor'),(9879,18857,6,'Sound Mixer'),(9879,31143,3,'Producer'),(9879,41550,4,'Screenplay'),(9879,41550,2,'Director'),(9879,41550,3,'Producer'),(9879,59970,3,'Executive Producer'),(9879,92377,6,'Sound Re-Recording Mixer'),(9879,73951,5,'Dialogue Editor'),(9879,142155,5,'Dialogue Editor'),(9879,1165678,3,'Production Coordinator'),(9879,1183452,1,'Still Photographer'),(9879,1183454,2,'Script Supervisor'),(9879,1325650,7,'Art Direction'),(9879,1337461,6,'Sound Re-Recording Mixer'),(9879,1339326,5,'Dialogue Editor'),(9879,1416584,9,'Special Effects Coordinator'),(9879,1472169,6,'Supervising Sound Editor'),(9879,1546902,6,'Boom Operator'),(9879,1637030,4,'Novel'),(9879,1637031,6,'Music Supervisor'),(9691,1052,6,'Sound Re-Recording Mixer'),(9691,1091,3,'Producer'),(9691,2486,7,'Production Design'),(9691,3028,3,'Producer'),(9691,3029,3,'Producer'),(9691,3175,5,'Editor'),(9691,3806,3,'Casting'),(9691,4716,5,'Dialogue Editor'),(9691,4723,4,'Screenplay'),(9691,5710,8,'Costume Design'),(9691,5398,3,'Executive Producer'),(9691,7187,2,'Director'),(9691,7187,3,'Producer'),(9691,7200,3,'Executive Producer'),(9691,7849,7,'Set Decoration'),(9691,9339,4,'Author'),(9691,9339,4,'Screenplay'),(9691,9340,4,'Author'),(9691,9340,4,'Screenplay'),(9691,9989,6,'Music'),(9691,11412,7,'Art Direction'),(9691,12235,1,'Director of Photography'),(9691,15327,7,'Art Direction'),(9691,19291,7,'Supervising Art Director'),(9691,42034,6,'Sound Re-Recording Mixer'),(9691,22816,3,'Producer'),(9691,29525,3,'Producer'),(9691,40594,7,'Set Designer'),(9691,49286,5,'Editor'),(9691,165734,9,'Dialect Coach'),(9691,233500,3,'Production Supervisor'),(9691,1299201,8,'Makeup Artist'),(9691,1316296,8,'Makeup Artist'),(9691,1322089,8,'Costume Supervisor'),(9691,1330109,7,'Art Direction'),(9691,1341138,6,'Sound Re-Recording Mixer'),(9691,1341808,6,'Sound Re-Recording Mixer'),(9691,1341854,6,'Sound Re-Recording Mixer'),(9691,1341858,6,'Sound Re-Recording Mixer'),(9691,1342626,6,'Sound Re-Recording Mixer'),(9691,1360094,7,'Set Designer'),(9691,1376818,6,'Foley'),(9691,1376901,5,'Dialogue Editor'),(9691,1386920,1,'Still Photographer'),(9691,1392129,5,'Dialogue Editor'),(9691,1398194,6,'Sound Effects Editor'),(9691,1399140,6,'Sound Re-Recording Mixer'),(9691,1401251,8,'Hairstylist'),(9691,1401252,7,'Art Department Coordinator'),(9691,1401253,9,'Property Master'),(9691,1401254,7,'Set Designer'),(9691,1401255,7,'Set Designer'),(9691,1401256,7,'Leadman'),(9691,1401257,7,'Greensman'),(9691,1401258,5,'Dialogue Editor'),(9691,1401259,6,'Supervising Sound Editor'),(9691,1401260,6,'Foley'),(9691,1401262,9,'Stunt Coordinator'),(9691,1401263,1,'Camera Operator'),(9691,1401264,1,'Camera Operator'),(9691,1401265,1,'Helicopter Camera'),(9691,1401266,1,'Additional Camera'),(9691,1401267,11,'Lighting Technician'),(9691,1401268,11,'Lighting Technician'),(9691,1401269,11,'Lighting Technician'),(9691,1401270,8,'Set Costumer'),(9691,1401271,8,'Set Costumer'),(9691,1401272,3,'Location Manager'),(9691,1401273,9,'Unit Publicist'),(9691,1607177,9,'Production Office Assistant'),(9691,1718730,9,'Special Effects Coordinator'),(1248,950,5,'Editor'),(1248,3563,7,'Production Design'),(1248,5398,3,'Producer'),(1248,6688,8,'Costume Design'),(1248,11457,7,'Art Direction'),(1248,12455,6,'Original Music Composer'),(1248,16785,2,'Director'),(1248,16786,4,'Screenplay'),(1248,16786,4,'Novel'),(1248,16787,3,'Producer'),(1248,16346,5,'Editor'),(1248,22161,1,'Director of Photography'),(1248,19051,3,'Producer'),(1248,19993,3,'Casting'),(1248,23451,6,'Original Music Composer'),(1248,25729,3,'Casting'),(1248,960832,7,'Supervising Art Director'),(1248,1327762,7,'Set Decoration'),(1248,1464973,2,'Script Supervisor'),(9573,190,2,'Director'),(9573,190,3,'Producer'),(9573,195,6,'Original Music Composer'),(9573,369,7,'Production Design'),(9573,384,5,'Editor'),(9573,423,3,'Casting'),(9573,370,7,'Art Direction'),(9573,373,6,'Sound Effects Editor'),(9573,460,1,'Director of Photography'),(9573,461,8,'Costume Design'),(9573,900,6,'Sound Re-Recording Mixer'),(9573,3996,6,'Sound Re-Recording Mixer'),(9573,4723,4,'Screenplay'),(9573,4745,3,'Producer'),(9573,4746,3,'Executive Producer'),(9573,14342,7,'Set Decoration'),(9573,113044,5,'Dialogue Editor'),(9573,57993,4,'Novel'),(9573,62030,6,'Sound Effects Editor'),(9573,66226,9,'Stunt Coordinator'),(9573,74319,5,'Assistant Editor'),(9573,579405,6,'Sound Effects Editor'),(9573,1377127,5,'Dialogue Editor'),(9573,1377131,1,'Steadicam Operator'),(9573,1377133,1,'Still Photographer'),(9573,1377140,2,'Script Supervisor'),(9573,1392242,5,'Dialogue Editor'),(9573,1407878,6,'Sound Effects Editor'),(9573,1412227,6,'Sound Effects Editor'),(9573,1428595,6,'Sound Effects Editor'),(9573,1440230,6,'Sound Effects Editor'),(9573,1538123,6,'Sound Effects Editor'),(9573,1538127,5,'Assistant Editor'),(4959,1071,2,'Director'),(4959,1071,6,'Music'),(4959,1075,6,'Music'),(4959,1076,6,'Music'),(4959,1077,1,'Director of Photography'),(4959,1078,5,'Editor'),(4959,18952,4,'Screenplay'),(4959,1393558,7,'Leadman'),(421,2997,3,'Producer'),(421,3264,3,'Executive Producer'),(421,4148,7,'Set Decoration'),(421,5670,7,'Production Design'),(421,5655,4,'Screenplay'),(421,5655,2,'Director'),(421,5655,3,'Producer'),(421,5656,4,'Screenplay'),(421,5664,3,'Producer'),(421,5665,3,'Producer'),(421,5666,6,'Original Music Composer'),(421,5667,1,'Director of Photography'),(421,5668,5,'Editor'),(421,5669,3,'Casting'),(421,5671,8,'Costume Design'),(421,5672,7,'Art Direction'),(421,5673,7,'Art Direction'),(421,5674,7,'Art Direction'),(421,1353148,10,'Animation'),(421,1450347,5,'Editorial Manager'),(421,1452917,10,'Animation Supervisor'),(2252,224,2,'Director'),(2252,307,1,'Director of Photography'),(2252,310,5,'Editor'),(2252,117,6,'Original Music Composer'),(2252,466,3,'Executive Producer'),(2252,6998,7,'Supervising Art Director'),(2252,7800,3,'Casting'),(2252,8315,7,'Production Design'),(2252,11301,9,'Stunts'),(2252,13551,8,'Costume Design'),(2252,15727,3,'Co-Producer'),(2252,16363,3,'Casting'),(2252,20182,3,'Producer'),(2252,20228,6,'Foley'),(2252,20229,6,'Foley'),(2252,21378,3,'Producer'),(2252,23227,4,'Screenplay'),(2252,43558,3,'Executive Producer'),(2252,43559,3,'Executive Producer'),(2252,43560,3,'Executive Producer'),(2252,68748,6,'Supervising Sound Editor'),(2252,91882,5,'Dialogue Editor'),(2252,91886,6,'Supervising Sound Editor'),(2252,141358,9,'Stunt Coordinator'),(2252,558230,5,'Dialogue Editor'),(2252,1327762,7,'Set Decoration'),(2252,1338291,2,'Script Supervisor'),(2252,1379044,9,'Scenic Artist'),(2252,1393883,1,'Still Photographer'),(2252,1402037,6,'Music Editor'),(2252,1403739,5,'Digital Intermediate'),(2252,1407705,6,'Sound Re-Recording Mixer'),(2252,1409225,6,'Sound Effects Editor'),(2252,1409298,9,'Stunt Coordinator'),(2252,1413907,6,'Sound Re-Recording Mixer'),(2252,1415042,1,'Steadicam Operator'),(2252,1415151,10,'Visual Effects Supervisor'),(2252,1418443,5,'Digital Intermediate'),(2252,1419264,10,'Visual Effects Producer'),(2252,1426836,7,'Assistant Art Director'),(2252,1428469,8,'Hairstylist'),(2252,1428470,8,'Makeup Artist'),(2252,1428471,8,'Makeup Artist'),(2252,1428473,7,'Property Master'),(2252,1428478,9,'Scenic Artist'),(2252,1428480,6,'Dolby Consultant'),(2252,1428506,1,'Steadicam Operator'),(2252,1428509,3,'Location Manager'),(2252,1428510,3,'Location Manager'),(2252,1428511,9,'Unit Publicist'),(2252,1638372,7,'Art Direction'),(9770,27436,2,'Director'),(9770,16403,5,'Editor'),(9770,153,6,'Music'),(9770,10764,3,'Producer'),(9770,12050,3,'Producer'),(9770,20683,1,'Director of Photography'),(9770,59633,4,'Screenplay'),(9770,59634,4,'Screenplay'),(9923,2215,3,'Casting'),(9923,15841,5,'Editor'),(9923,893,2,'Director'),(9923,893,3,'Producer'),(9923,1577,4,'Author'),(9923,4697,3,'Producer'),(9923,6668,5,'Editor'),(9923,5553,6,'Original Music Composer'),(9923,10122,3,'Executive Producer'),(9923,11700,7,'Art Direction'),(9923,14378,7,'Art Direction'),(9923,15348,1,'Director of Photography'),(9923,34511,3,'Executive Producer'),(9923,20687,4,'Author'),(9923,10830,3,'Executive Producer'),(9923,31516,3,'Executive Producer'),(9923,53182,7,'Set Decoration'),(9923,60576,3,'Producer'),(9923,60575,3,'Executive Producer'),(9923,60577,3,'Producer'),(9923,60578,3,'Executive Producer'),(9923,60579,7,'Production Design'),(9923,60580,8,'Costume Design'),(9923,1210259,8,'Hairstylist'),(9923,1322015,8,'Makeup Artist'),(9923,1371069,2,'Script Supervisor'),(9923,1394313,2,'Script Coordinator'),(9923,1403532,8,'Makeup Department Head'),(9923,1463140,8,'Hairstylist'),(9275,518,2,'Director'),(9275,3393,6,'Original Music Composer'),(9275,5580,3,'Producer'),(9275,6347,3,'Casting'),(9275,10395,5,'Editor'),(9275,19464,1,'Director of Photography'),(9275,29525,3,'Producer'),(9275,57107,4,'Screenplay'),(9275,406204,8,'Makeup Artist'),(9548,551,3,'Associate Producer'),(9548,908,5,'Editor'),(9548,1091,3,'Producer'),(9548,1096,7,'Production Design'),(9548,1097,3,'Casting'),(9548,2045,3,'Casting Associate'),(9548,4694,3,'Production Coordinator'),(9548,4699,3,'Producer'),(9548,4699,3,'Unit Production Manager'),(9548,5128,4,'Screenplay'),(9548,7719,8,'Costume Design'),(9548,11409,1,'Director of Photography'),(9548,14492,7,'Set Designer'),(9548,16563,9,'Pilot'),(9548,16938,2,'Director'),(9548,20514,3,'Executive Producer'),(9548,27156,7,'Art Direction'),(9548,39110,7,'Set Decoration'),(9548,57908,4,'Characters'),(9548,57909,4,'Screenplay'),(9548,57910,4,'Screenplay'),(9548,57911,6,'Original Music Composer'),(9548,122089,7,'Set Designer'),(9548,141400,9,'Pilot'),(9548,1509828,3,'Location Manager'),(9548,1511734,3,'Location Manager'),(9548,1544695,2,'Script Supervisor'),(9548,1559586,6,'Music Supervisor'),(9548,1800242,9,'Pilot'),(9548,1806132,7,'Title Designer'),(9548,1849297,6,'Music Supervisor'),(9548,1849298,6,'Music Supervisor'),(1900,495,3,'Casting'),(1900,8377,6,'Original Music Composer'),(1900,494,3,'Casting Associate'),(1900,1884,2,'Director'),(1900,1884,1,'Director of Photography'),(1900,1890,7,'Production Design'),(1900,1891,5,'Editor'),(1900,2945,4,'Screenplay'),(1900,4061,8,'Costume Design'),(1900,9617,8,'Makeup Department Head'),(1900,9181,3,'Producer'),(1900,9182,3,'Producer'),(1900,15193,6,'Music'),(1900,21705,4,'Screenplay'),(1900,21706,3,'Producer'),(1900,21568,7,'Art Direction'),(1900,21707,7,'Set Decoration'),(1900,66692,8,'Hair Department Head'),(1900,1318886,8,'Costume Supervisor'),(1900,1339445,7,'Construction Coordinator'),(1900,1391605,2,'Script Supervisor'),(1900,1418528,8,'Hair Department Head'),(1900,1420312,8,'Makeup Artist'),(1900,1442116,7,'Art Department Coordinator'),(1900,1471302,8,'Hairstylist'),(89,1,3,'Executive Producer'),(89,1,5,'Editor'),(89,1,4,'Characters'),(89,491,6,'Original Music Composer'),(89,488,2,'Director'),(89,493,5,'Editor'),(89,498,8,'Costume Design'),(89,598,3,'Casting'),(89,648,4,'Characters'),(89,664,3,'Executive Producer'),(89,664,9,'Second Unit'),(89,666,1,'Director of Photography'),(89,670,6,'Sound Designer'),(89,711,3,'Producer'),(89,715,7,'Production Design'),(89,735,3,'Producer'),(89,736,4,'Story'),(89,737,4,'Screenplay'),(89,750,3,'Casting'),(89,751,3,'Casting'),(89,752,3,'Casting'),(89,83791,9,'Second Unit'),(89,7024,9,'Stunts'),(89,7791,7,'Set Decoration'),(89,8922,8,'Costume Design'),(89,10213,9,'Stunts'),(89,10754,7,'Art Direction'),(89,15358,9,'Stunt Coordinator'),(89,14657,6,'Sound Effects Editor'),(89,29296,1,'Additional Photography'),(89,32355,8,'Makeup Artist'),(89,32487,8,'Hairstylist'),(89,61523,2,'Assistant Director'),(89,102595,9,'Stunts'),(89,1042415,9,'Special Effects'),(89,1377235,9,'Transportation Captain'),(89,1400821,3,'Production Coordinator'),(89,1401105,9,'Visual Effects Editor'),(89,1415465,6,'Sound Editor'),(89,1415957,9,'Stunts'),(89,1445972,10,'Special Effects Supervisor'),(89,1564469,7,'Set Decoration'),(89,1572559,9,'Driver'),(89,1608539,9,'Driver'),(89,1629006,10,'Special Effects Supervisor'),(89,1657664,1,'Grip'),(9481,8216,3,'Executive Producer'),(9481,1151,3,'Producer'),(9481,2122,5,'Editor'),(9481,3960,1,'Additional Photography'),(9481,4501,1,'Director of Photography'),(9481,7001,10,'Special Effects Supervisor'),(9481,7045,6,'Original Music Composer'),(9481,9817,7,'Production Design'),(9481,9819,7,'Assistant Art Director'),(9481,13015,2,'Director'),(9481,17611,3,'Casting'),(9481,17829,7,'Supervising Art Director'),(9481,30034,11,'Rigging Gaffer'),(9481,30598,3,'Casting'),(9481,58855,3,'Casting'),(9481,41081,7,'Art Direction'),(9481,40288,7,'Set Decoration'),(9481,56109,3,'Producer'),(9481,57649,4,'Novel'),(9481,57650,4,'Screenplay'),(9481,57651,3,'Executive Producer'),(9481,57652,3,'Producer'),(9481,63659,5,'First Assistant Editor'),(9481,65238,1,'Additional Photography'),(9481,71279,5,'Additional Editing'),(9481,71577,7,'Set Designer'),(9481,111181,6,'Music Supervisor'),(9481,79185,8,'Prosthetic Makeup Artist'),(9481,80824,6,'Sound Editor'),(9481,92220,6,'Boom Operator'),(9481,92234,9,'Stunt Coordinator'),(9481,92236,1,'Key Grip'),(9481,91055,3,'Production Manager'),(9481,91128,8,'Costume Supervisor'),(9481,91171,3,'Location Manager'),(9481,91834,9,'Stunts'),(9481,131119,3,'Associate Producer'),(9481,142162,9,'Stunt Coordinator'),(9481,554009,10,'Visual Effects Supervisor'),(9481,961452,8,'Costume Design'),(9481,1115736,6,'Supervising Sound Editor'),(9481,1203683,3,'Casting'),(9481,1203684,3,'Casting'),(9481,1281538,9,'Stunt Coordinator'),(9481,1332622,7,'Set Decoration'),(9481,1332623,7,'Set Decoration'),(9481,1332626,8,'Costume Supervisor'),(9481,1338372,6,'Foley'),(9481,1341854,6,'Sound Re-Recording Mixer'),(9481,1341858,6,'Sound Re-Recording Mixer'),(9481,1342626,6,'Sound Re-Recording Mixer'),(9481,1360097,5,'Dialogue Editor'),(9481,1367493,6,'Foley'),(9481,1384394,9,'Transportation Coordinator'),(9481,1384396,9,'Transportation Captain'),(9481,1391747,7,'Construction Coordinator'),(9481,1391748,7,'Construction Coordinator'),(9481,1392106,1,'Still Photographer'),(9481,1392145,6,'Music Editor'),(9481,1397850,11,'Gaffer'),(9481,1400375,1,'Camera Operator'),(9481,1401168,1,'Camera Operator'),(9481,1402017,8,'Key Hair Stylist'),(9481,1402023,7,'Art Department Coordinator'),(9481,1402034,11,'Best Boy Electric'),(9481,1402073,1,'Still Photographer'),(9481,1403085,9,'Property Master'),(9481,1403707,11,'Gaffer'),(9481,1405203,9,'Sound Recordist'),(9481,1405806,8,'Makeup Artist'),(9481,1405807,9,'Makeup Effects'),(9481,1405808,3,'Production Manager'),(9481,1405809,7,'Construction Coordinator'),(9481,1405810,9,'Property Master'),(9481,1405811,6,'Supervising Sound Editor'),(9481,1405813,5,'Dialogue Editor'),(9481,1405814,6,'ADR & Dubbing'),(9481,1405815,9,'Special Effects Coordinator'),(9481,1405816,10,'Visual Effects Producer'),(9481,1406050,1,'Camera Operator'),(9481,1406051,1,'Still Photographer'),(9481,1406052,9,'Video Assist Operator'),(9481,1406053,9,'Video Assist Operator'),(9481,1406054,9,'Video Assist Operator'),(9481,1406055,11,'Gaffer'),(9481,1406056,3,'Location Manager'),(9481,1406057,9,'Unit Publicist'),(9481,1406058,2,'Script Supervisor'),(9481,1464344,3,'Executive In Charge Of Post Production'),(9481,1473444,6,'First Assistant Sound Editor'),(9481,1535470,9,'Craft Service'),(9481,1545774,10,'Digital Compositors'),(9481,1548695,9,'Software Team Lead'),(9481,1552201,6,'Production Sound Mixer'),(9481,1555021,2,'Script Supervisor'),(9481,1564233,5,'Color Timer'),(9481,1573663,9,'Post Production Assistant'),(9481,1574632,9,'Carpenter'),(9481,1574657,3,'Production Coordinator'),(9481,1631600,8,'Assistant Costume Designer'),(9481,1631613,11,'Rigging Grip'),(9481,1684368,3,'Unit Manager'),(9481,1704255,3,'Production Accountant'),(9481,1744675,9,'Scenic Artist'),(9481,1761396,7,'Painter'),(9481,1761397,1,'First Assistant Camera'),(9481,1761398,1,'Aerial Camera'),(9481,1761399,8,'Hairstylist'),(9481,1761400,8,'Set Dressing Artist'),(9481,1761401,9,'Driver'),(9481,1761402,9,'Loader'),(9481,1761403,9,'Second Unit Cinematographer'),(9481,1761404,9,'Set Production Assistant'),(9481,1761405,9,'Stand In'),(9481,1761406,2,'Assistant Director'),(9481,1761407,11,'Electrician'),(9481,1761408,11,'Lighting Technician'),(9481,1761459,3,'Researcher'),(9481,1761468,10,'Visual Effects Coordinator'),(9481,1761469,4,'Storyboard'),(4547,117,6,'Music'),(4547,508,3,'Producer'),(4547,508,4,'Writer'),(4547,605,8,'Costume Design'),(4547,944,7,'Production Design'),(4547,2240,1,'Director of Photography'),(4547,7467,2,'Director'),(4547,7475,3,'Producer'),(4547,7480,5,'Editor'),(4547,7481,3,'Casting'),(4547,7763,6,'Sound Designer'),(4547,8158,5,'Dialogue Editor'),(4547,8684,9,'Stunt Coordinator'),(4547,9007,8,'Makeup Artist'),(4547,9025,7,'Art Direction'),(4547,11413,7,'Set Decoration'),(4547,11700,7,'Art Direction'),(4547,12770,3,'Unit Production Manager'),(4547,16497,6,'Music Editor'),(4547,17217,2,'First Assistant Director'),(4547,17455,5,'Editor'),(4547,18458,7,'Set Decoration'),(4547,21122,6,'Music Editor'),(4547,35974,3,'Producer'),(4547,37925,1,'Director of Photography'),(4547,37926,3,'Producer'),(4547,66696,3,'Production Coordinator'),(4547,57638,5,'Assistant Editor'),(4547,83064,8,'Hairstylist'),(4547,109870,9,'Makeup Effects'),(4547,108152,9,'Transportation Captain'),(4547,151007,7,'Storyboard Designer'),(4547,572622,6,'ADR Editor'),(4547,589970,11,'Chief Lighting Technician'),(4547,957928,6,'Sound Re-Recording Mixer'),(4547,958540,9,'Makeup Effects'),(4547,1172443,1,'Still Photographer'),(4547,1319744,8,'Costume Supervisor'),(4547,1327030,6,'Sound Re-Recording Mixer'),(4547,1376902,6,'ADR Editor'),(4547,1378229,6,'Boom Operator'),(4547,1389534,5,'Dialogue Editor'),(4547,1395290,2,'Script Supervisor'),(4547,1399117,6,'Sound Effects Editor'),(4547,1400905,5,'Dialogue Editor'),(4547,1401263,1,'Camera Operator'),(4547,1406614,6,'Sound Re-Recording Mixer'),(4547,1409273,10,'Visual Effects Supervisor'),(4547,1413087,7,'Art Department Coordinator'),(4547,1415626,10,'Visual Effects Coordinator'),(4547,1474687,3,'Associate Producer'),(4547,1486851,5,'Assistant Editor'),(4547,1532402,6,'Music Editor'),(4547,1546115,6,'Production Sound Mixer'),(4547,1550618,1,'Camera Operator'),(4547,1551326,8,'Key Hair Stylist'),(4547,1599632,9,'Post Production Supervisor'),(4547,1641217,6,'Music Editor'),(4547,1646349,3,'Production Accountant'),(4547,1713075,5,'Color Timer'),(4547,1749906,7,'Property Master'),(4547,1758614,2,'Second Assistant Director'),(4547,1758616,8,'Key Makeup Artist'),(4547,1758622,3,'Casting Assistant'),(4547,1758623,9,'Sound Design Assistant'),(4547,1758624,9,'Sound Design Assistant'),(4547,1758629,10,'Visual Effects Producer'),(6415,282,3,'Producer'),(6415,1225,6,'Original Music Composer'),(6415,1296,3,'Executive Producer'),(6415,5914,3,'Casting'),(6415,2707,3,'Producer'),(6415,4588,3,'Producer'),(6415,5957,7,'Set Decoration'),(6415,6209,8,'Costume Design'),(6415,9040,1,'Director of Photography'),(6415,9545,3,'Casting'),(6415,12131,7,'Art Direction'),(6415,17883,4,'Screenplay'),(6415,17883,2,'Director'),(6415,17886,5,'Editor'),(6415,19850,7,'Production Design'),(6415,51679,4,'Author'),(6415,1322016,8,'Costume Supervisor'),(6415,1322017,7,'Art Direction'),(9896,3117,7,'Production Design'),(9896,3415,2,'Director'),(9896,3415,3,'Producer'),(9896,7735,8,'Costume Design'),(9896,7779,3,'Producer'),(9896,11098,6,'Original Music Composer'),(9896,21223,5,'Editor'),(9896,11371,1,'Director of Photography'),(9896,52042,3,'Executive Producer'),(9896,55373,4,'Screenplay'),(9896,60097,3,'Producer'),(9896,63784,3,'Casting'),(9896,230138,3,'Casting'),(9896,1442554,2,'Script Supervisor'),(167,495,3,'Casting'),(167,494,3,'Casting Associate'),(167,943,1,'Director of Photography'),(167,1093,3,'Producer'),(167,1978,2,'Director'),(167,1993,3,'Producer'),(167,1994,3,'Producer'),(167,1995,3,'Executive Producer'),(167,1997,4,'Screenplay'),(167,1998,4,'Novel'),(167,1999,6,'Original Music Composer'),(167,4032,7,'Set Decoration'),(167,4869,5,'Editor'),(167,9648,7,'Art Direction'),(167,9043,8,'Costume Design'),(167,9360,1,'Still Photographer'),(167,11113,1,'Camera Operator'),(167,14378,7,'Assistant Art Director'),(167,23769,7,'Production Design'),(167,36428,1,'Camera Operator'),(167,74323,8,'Makeup Artist'),(167,83066,8,'Hairstylist'),(167,555978,9,'CGI Supervisor'),(167,957264,8,'Hairstylist'),(167,1318092,9,'Special Effects Coordinator'),(167,1323090,8,'Makeup Artist'),(167,1323768,8,'Costume Supervisor'),(167,1340007,6,'Music Editor'),(167,1387212,7,'Art Department Coordinator'),(167,1392093,10,'Visual Effects Supervisor'),(167,1392101,10,'Visual Effects Producer'),(167,1392127,5,'Dialogue Editor'),(167,1392129,5,'Dialogue Editor'),(167,1393449,1,'Steadicam Operator'),(167,1395276,1,'Camera Operator'),(167,1400738,2,'Script Supervisor'),(167,1411800,8,'Makeup Artist'),(167,1413196,8,'Set Costumer'),(167,1431630,1,'Steadicam Operator'),(167,1435689,7,'Construction Coordinator'),(167,1463140,8,'Hair Department Head'),(167,1464516,9,'Property Master'),(167,1465623,8,'Key Hair Stylist'),(167,1521506,8,'Makeup Department Head'),(167,1523419,8,'Key Hair Stylist'),(167,1524668,8,'Hairstylist'),(167,1527448,8,'Costume Supervisor'),(167,1532198,8,'Set Costumer'),(167,1549170,8,'Costume Supervisor'),(167,1549171,8,'Set Costumer'),(167,1549172,8,'Set Costumer'),(167,1549173,8,'Makeup Artist'),(167,1549174,11,'Rigging Gaffer'),(167,1549175,11,'Rigging Grip'),(167,1549176,11,'Rigging Grip'),(167,1549177,11,'Rigging Grip'),(167,1549178,11,'Rigging Grip'),(167,1549179,11,'Rigging Grip'),(1636,1226,7,'Production Design'),(1636,553,7,'Art Direction'),(1636,1524,2,'Director'),(1636,1524,4,'Screenplay'),(1636,1524,3,'Producer'),(1636,1525,3,'Producer'),(1636,3393,6,'Original Music Composer'),(1636,7494,3,'Casting'),(1636,7495,3,'Casting'),(1636,9341,1,'Director of Photography'),(1636,8880,3,'Executive Producer'),(1636,11413,7,'Set Decoration'),(1636,14042,8,'Costume Design'),(1636,18267,4,'Screenplay'),(1636,18268,4,'Screenplay'),(1636,18274,3,'Producer'),(1636,18275,3,'Producer'),(1636,18276,5,'Editor'),(1636,1813644,9,'Stunts'),(2148,1776,4,'Screenplay'),(2148,1776,2,'Director'),(2148,2289,6,'Original Music Composer'),(2148,2988,5,'Editor'),(2148,3286,7,'Art Direction'),(2148,4188,7,'Set Decoration'),(2148,12017,7,'Production Design'),(2148,5582,1,'Director of Photography'),(2148,5671,8,'Costume Design'),(2148,7534,3,'Casting'),(2148,12288,3,'Producer'),(2148,12638,7,'Art Direction'),(2148,13723,7,'Set Decoration'),(2148,17949,5,'Editor'),(2148,22000,4,'Screenplay'),(2148,22001,4,'Novel'),(2148,22003,3,'Casting'),(5176,366,2,'Director'),(5176,409,3,'Producer'),(5176,432,1,'Director of Photography'),(5176,433,5,'Editor'),(5176,434,3,'Casting'),(5176,436,3,'Casting'),(5176,2235,4,'Story'),(5176,7229,6,'Music'),(5176,7236,7,'Production Design'),(5176,7237,7,'Set Decoration'),(5176,7865,4,'Screenplay'),(5176,8161,4,'Screenplay'),(5176,15845,8,'Makeup Artist'),(5176,14566,9,'Thanks'),(5176,16618,9,'Stunt Coordinator'),(5176,24179,3,'Executive Producer'),(5176,28401,3,'Unit Production Manager'),(5176,28402,3,'Associate Producer'),(5176,32797,8,'Costume Design'),(5176,35582,2,'Assistant Director'),(5176,54419,3,'Executive Producer'),(5176,113041,6,'Foley'),(5176,113045,6,'Foley'),(5176,113086,6,'Foley'),(5176,113090,6,'Foley'),(5176,56094,9,'Other'),(5176,66692,8,'Hair Department Head'),(5176,59812,9,'Second Unit Cinematographer'),(5176,60665,3,'Casting'),(5176,115328,4,'Screenplay'),(5176,210056,8,'Set Dressing Artist'),(5176,936841,7,'Art Direction'),(5176,957264,8,'Hairstylist'),(5176,1032536,10,'Visual Effects Supervisor'),(5176,1172414,1,'Still Photographer'),(5176,1179272,2,'Script Supervisor'),(5176,1223192,7,'Art Department Coordinator'),(5176,1279912,8,'Assistant Costume Designer'),(5176,1298625,11,'Gaffer'),(5176,1316003,8,'Makeup Department Head'),(5176,1318982,1,'Camera Operator'),(5176,1319744,8,'Costume Supervisor'),(5176,1327146,8,'Set Costumer'),(5176,1333969,8,'Set Costumer'),(5176,1367505,6,'Sound Effects Editor'),(5176,1373432,10,'Visual Effects Producer'),(5176,1373433,10,'Visual Effects Supervisor'),(5176,1377132,1,'Steadicam Operator'),(5176,1377220,9,'Thanks'),(5176,1378724,6,'Music Editor'),(5176,1395275,1,'Still Photographer'),(5176,1399287,10,'Visual Effects Supervisor'),(5176,1400540,2,'Script Supervisor'),(5176,1401644,9,'Post Production Supervisor'),(5176,1407232,11,'Rigging Gaffer'),(5176,1407363,10,'Visual Effects Coordinator'),(5176,1407696,5,'Digital Intermediate'),(5176,1407713,8,'Set Costumer'),(5176,1409817,8,'Key Hair Stylist'),(5176,1412971,8,'Key Hair Stylist'),(5176,1415503,8,'Assistant Costume Designer'),(5176,1415610,9,'Property Master'),(5176,1416061,1,'Camera Operator'),(5176,1416153,6,'Sound Designer'),(5176,1422412,9,'Special Effects Coordinator'),(5176,1448421,8,'Makeup Artist'),(5176,1449994,6,'First Assistant Sound Editor'),(5176,1454536,5,'Dialogue Editor'),(5176,1459895,5,'Digital Intermediate'),(5176,1460749,5,'Assistant Editor'),(5176,1531504,9,'Thanks'),(5176,1532197,8,'Set Costumer'),(5176,1532597,8,'Assistant Costume Designer'),(5176,1532598,8,'Set Costumer'),(5176,1532599,8,'Set Costumer'),(5176,1532600,8,'Seamstress'),(5176,1532601,8,'Seamstress'),(5176,1532604,3,'Casting Associate'),(5176,1532605,3,'Casting Associate'),(5176,1532606,9,'Armorer'),(5176,1532609,1,'First Assistant Camera'),(5176,1532610,1,'First Assistant Camera'),(5176,1532611,1,'First Assistant Camera'),(5176,1532612,11,'Rigging Grip'),(5176,1532613,1,'First Assistant Camera'),(5176,1532614,6,'Foley'),(5176,1532615,7,'Construction Coordinator'),(5176,1532616,9,'Carpenter'),(5176,1532617,9,'Carpenter'),(5176,1532619,5,'Digital Intermediate'),(5176,1532620,9,'Visual Effects Editor'),(5176,1638721,7,'Location Scout'),(5176,1706641,1,'Grip'),(5176,1706642,11,'Lighting Technician'),(1389,518,3,'Producer'),(1389,1884,2,'Director'),(1389,1889,6,'Original Music Composer'),(1389,2199,4,'Screenplay'),(1389,2235,4,'Novel'),(1389,5174,3,'Executive Producer'),(1389,5506,1,'Director of Photography'),(1389,5381,3,'Producer'),(1389,5382,3,'Producer'),(1389,6341,3,'Executive Producer'),(1389,6346,5,'Editor'),(1389,15017,8,'Makeup Artist'),(9894,1298,3,'Executive Producer'),(9894,7399,2,'Director'),(9894,9647,5,'Editor'),(9894,8859,3,'Executive Producer'),(9894,9039,6,'Music'),(9894,41039,3,'Producer'),(9894,50728,3,'Producer'),(9894,56988,1,'Director of Photography'),(9894,59354,3,'Producer'),(9894,60082,4,'Screenplay'),(9894,60083,3,'Executive Producer'),(7504,3079,1,'Director of Photography'),(7504,4760,2,'Director'),(7504,4760,4,'Screenplay'),(7504,4760,3,'Producer'),(7504,5288,6,'Original Music Composer'),(7504,53382,4,'Novel'),(7504,53383,3,'Producer'),(8592,37,6,'Original Music Composer'),(8592,7202,1,'Director of Photography'),(8592,531,6,'Music'),(8592,3175,5,'Editor'),(8592,6449,2,'Director'),(8592,6449,3,'Producer'),(8592,11080,4,'Screenplay'),(8592,11081,4,'Screenplay'),(8592,116100,10,'Animation Director'),(913,517,3,'Producer'),(913,1090,2,'Director'),(913,5709,7,'Production Design'),(913,6191,7,'Set Decoration'),(913,8752,5,'Editor'),(913,10494,6,'Original Music Composer'),(913,11708,4,'Screenplay'),(913,13927,4,'Screenplay'),(913,13928,3,'Producer'),(913,13929,3,'Producer'),(913,13930,3,'Producer'),(913,13931,1,'Director of Photography'),(913,13932,3,'Casting'),(913,13933,7,'Art Direction'),(913,1393558,7,'Leadman'),(913,1462891,8,'Costume Design'),(1368,375,6,'Sound Editor'),(1368,798,8,'Costume Design'),(1368,1760,6,'Original Music Composer'),(1368,2082,1,'Director of Photography'),(1368,3986,3,'Executive Producer'),(1368,3986,9,'Presenter'),(1368,7203,7,'Production Design'),(1368,12948,9,'Stunt Coordinator'),(1368,12948,9,'Second Unit'),(1368,12882,3,'Producer'),(1368,16483,4,'Screenplay'),(1368,16544,2,'Director'),(1368,16545,4,'Original Story'),(1368,16546,4,'Screenplay'),(1368,16547,4,'Screenplay'),(1368,16548,5,'Editor'),(1368,16549,7,'Set Decoration'),(1368,16550,8,'Hairstylist'),(1368,16551,8,'Makeup Artist'),(1368,16552,6,'Supervising Sound Editor'),(1368,13457,9,'Special Effects Coordinator'),(1368,16553,9,'Stunts'),(1368,16563,9,'Pilot'),(1368,16565,2,'First Assistant Director'),(1368,11369,3,'Co-Executive Producer'),(1368,28163,9,'Craft Service'),(1368,56967,3,'Executive Producer'),(1368,61142,9,'Unit Publicist'),(1368,92378,6,'Assistant Sound Editor'),(1368,91245,6,'Orchestrator'),(1368,136450,4,'Storyboard'),(1368,183220,8,'Wardrobe Supervisor'),(1368,557528,6,'Foley'),(1368,1086160,3,'Casting Associate'),(1368,1121654,2,'Third Assistant Director'),(1368,1195353,1,'Helicopter Camera'),(1368,1221444,7,'Art Department Coordinator'),(1368,1237456,7,'Construction Coordinator'),(1368,1258222,1,'Dolly Grip'),(1368,1314441,6,'Boom Operator'),(1368,1378169,6,'Sound Re-Recording Mixer'),(1368,1394973,1,'Still Photographer'),(1368,1395368,11,'Gaffer'),(1368,1410585,11,'Lighting Technician'),(1368,1431104,9,'Transportation Coordinator'),(1368,1440875,9,'Sound Recordist'),(1368,1512254,9,'Script'),(1368,1548281,1,'Camera Operator'),(1368,1550379,7,'Greensman'),(1368,1550380,1,'First Assistant Camera'),(1368,1550382,1,'Key Grip'),(1368,1550384,9,'Carpenter'),(1368,1550387,9,'Driver'),(1368,1550395,3,'Location Manager'),(1368,1550397,3,'Production Accountant'),(1368,1550398,3,'Production Office Coordinator'),(1368,1550399,6,'Sound mixer'),(1368,1733195,2,'Second Assistant Director'),(1368,1733196,6,'Apprentice Sound Editor'),(593,8452,2,'Director'),(593,8452,4,'Screenplay'),(593,8453,4,'Novel'),(593,8458,3,'Producer'),(593,8461,6,'Original Music Composer'),(593,8462,1,'Director of Photography'),(593,8463,5,'Editor'),(593,8465,5,'Editor'),(593,8466,7,'Production Design'),(593,8467,8,'Costume Design'),(593,1111972,4,'Screenplay'),(593,1204438,6,'Original Music Composer'),(593,1632781,1,'Camera Operator'),(593,1632782,4,'Script Editor'),(593,1632783,4,'Script Editor'),(593,1632784,11,'Lighting Technician'),(593,1632785,9,'Special Effects'),(593,1632786,6,'Sound Designer'),(593,1632787,7,'Set Decoration'),(593,1632788,7,'Set Decoration'),(593,1632789,8,'Makeup Artist'),(5393,7902,3,'Casting'),(5393,10905,3,'Producer'),(5393,12107,3,'Producer'),(5393,31093,10,'Animation Director'),(5393,31093,2,'Director'),(5393,41286,3,'Executive Producer'),(5393,43084,3,'Executive Producer'),(5393,43085,3,'Producer'),(5393,43086,3,'Line Producer'),(5393,43087,3,'Producer'),(5393,43088,3,'Producer'),(5393,43089,3,'Producer'),(5393,43090,3,'Producer'),(5393,43091,4,'Screenplay'),(5393,43092,9,'Additional Writing'),(5393,43093,3,'Executive Producer'),(5393,43094,3,'Executive Producer'),(5393,43095,3,'Executive Producer'),(5393,43096,3,'Executive Producer'),(5393,43097,3,'Executive Producer'),(5393,43098,3,'Executive Producer'),(5393,43099,7,'Production Design'),(5393,43100,5,'Editor'),(5393,43101,1,'Director of Photography'),(5393,43102,10,'Animation Director'),(5393,43103,6,'Music'),(5393,43104,6,'Music'),(5393,43105,9,'Additional Music'),(5393,43106,9,'Additional Music'),(5393,43107,9,'Additional Music'),(5393,43108,9,'Additional Music'),(5393,133293,2,'Director'),(5393,142587,2,'Director'),(5393,142587,10,'Animation Director'),(5393,1356774,3,'Producer'),(5393,1450986,10,'Animation'),(5393,1460200,10,'Animation'),(5393,1463785,10,'Modeling'),(9095,8374,3,'Co-Producer'),(9095,1046,3,'Casting'),(9095,1301,1,'Director of Photography'),(9095,1528,6,'Original Music Composer'),(9095,11072,5,'Editor'),(9095,3224,2,'Director'),(9095,5491,7,'Production Design'),(9095,12952,4,'Screenplay'),(9095,12954,3,'Producer'),(9095,19993,3,'Casting'),(9095,21643,3,'Producer'),(9095,52033,3,'Producer'),(9095,56969,3,'Executive Producer'),(9095,1558115,4,'Novel'),(8874,3274,5,'Editor'),(8874,1213,6,'Original Music Composer'),(8874,3045,2,'Director'),(8874,3415,3,'Producer'),(8874,5144,4,'Screenplay'),(8874,5144,3,'Producer'),(8874,8703,3,'Executive Producer'),(8874,8862,1,'Director of Photography'),(8874,20924,5,'Editor'),(8874,25455,3,'Executive Producer'),(320,525,2,'Director'),(320,558,6,'Original Music Composer'),(320,559,1,'Director of Photography'),(320,563,5,'Editor'),(320,599,3,'Casting'),(320,1461,3,'Executive Producer'),(320,1884,3,'Executive Producer'),(320,2707,3,'Producer'),(320,4588,3,'Producer'),(320,5284,3,'Executive Producer'),(320,11818,7,'Art Direction'),(320,15327,7,'Production Design'),(320,28632,3,'Associate Producer'),(320,47285,3,'Producer'),(320,47286,3,'Producer'),(320,50094,9,'Stunt Coordinator'),(320,60714,7,'Set Decoration'),(320,62860,8,'Costume Design'),(320,77512,3,'Executive Producer'),(320,944480,4,'Screenplay'),(320,956249,3,'Associate Producer'),(320,1318219,1,'Steadicam Operator'),(320,1387544,2,'Script Supervisor'),(320,1391700,11,'Gaffer'),(320,1392915,1,'Still Photographer'),(320,1399141,6,'Sound Re-Recording Mixer'),(320,1403490,6,'Music Editor'),(320,1404218,6,'Sound Re-Recording Mixer'),(320,1404716,6,'Supervising Sound Editor'),(320,1404717,6,'Supervising Sound Editor'),(320,1404718,5,'Dialogue Editor'),(320,1525907,8,'Assistant Costume Designer'),(320,1531859,7,'Art Department Coordinator'),(320,1552332,11,'Rigging Gaffer'),(320,1556703,5,'Dialogue Editor'),(320,1560647,3,'Production Coordinator'),(320,1560648,6,'Sound mixer'),(320,1560651,6,'Boom Operator'),(320,1560664,9,'Special Effects Coordinator'),(320,1560665,8,'Costume Supervisor'),(199,796,7,'Set Decoration'),(199,1760,6,'Original Music Composer'),(199,2083,7,'Production Design'),(199,2381,3,'Producer'),(199,2383,3,'Producer'),(199,2385,4,'Screenplay'),(199,2386,4,'Screenplay'),(199,2388,2,'Director'),(199,2397,8,'Costume Design'),(199,2399,3,'Casting'),(199,2400,3,'Casting'),(199,2504,3,'Executive Producer'),(199,2507,1,'Director of Photography'),(199,2511,5,'Editor'),(199,2512,5,'Editor'),(199,2508,7,'Art Direction'),(199,22107,8,'Costume Design'),(199,1319746,8,'Costume Supervisor'),(1624,339,3,'Producer'),(1624,602,7,'Production Design'),(1624,4500,6,'Original Music Composer'),(1624,2399,3,'Casting'),(1624,2400,3,'Casting'),(1624,4499,2,'Director'),(1624,4502,5,'First Assistant Editor'),(1624,4502,9,'Visual Effects Editor'),(1624,4505,3,'Executive Producer'),(1624,4506,3,'Executive Producer'),(1624,4506,3,'Unit Production Manager'),(1624,7069,9,'Studio Teachers'),(1624,7536,8,'Costume Design'),(1624,12945,6,'Music Supervisor'),(1624,12533,6,'Sound Mixer'),(1624,12587,6,'Boom Operator'),(1624,13223,5,'Color Timer'),(1624,15436,10,'Visual Effects Supervisor'),(1624,15005,5,'Editor'),(1624,15016,7,'Set Decoration'),(1624,18194,4,'Writer'),(1624,18195,4,'Writer'),(1624,31027,1,'Director of Photography'),(1624,58362,6,'Supervising Sound Editor'),(1624,11312,9,'Stunts'),(1624,113052,6,'First Assistant Sound Editor'),(1624,62545,3,'Location Manager'),(1624,65824,7,'Set Designer'),(1624,74980,9,'Special Effects Coordinator'),(1624,228439,6,'Dialogue Editor'),(1624,578778,10,'Visual Effects Producer'),(1624,957202,8,'Key Makeup Artist'),(1624,1231306,7,'Greensman'),(1624,1319166,8,'Makeup Artist'),(1624,1324652,1,'Still Photographer'),(1624,1334778,7,'Construction Foreman'),(1624,1342629,2,'Script Supervisor'),(1624,1377230,1,'Camera Operator'),(1624,1398854,7,'Construction Coordinator'),(1624,1399899,1,'Camera Technician'),(1624,1400372,9,'Stunt Coordinator'),(1624,1400372,9,'Second Unit Cinematographer'),(1624,1409231,6,'Sound Recordist'),(1624,1413224,8,'Hairstylist'),(1624,1446658,7,'Art Direction'),(1624,1463375,4,'Storyboard'),(1624,1477799,9,'Transportation Captain'),(1624,1478860,9,'Digital Effects Supervisor'),(1624,1530327,6,'Orchestrator'),(1624,1549001,7,'Art Department Coordinator'),(1624,1549188,8,'Costume Supervisor'),(1624,1549431,9,'Unit Publicist'),(1624,1550778,1,'Steadicam Operator'),(1624,1552518,9,'Propmaker'),(1624,1553013,2,'First Assistant Director'),(1624,1562993,7,'Leadman'),(1624,1564221,9,'Security'),(1624,1564250,6,'Foley'),(1624,1568650,7,'Property Master'),(1624,1596291,9,'Chef'),(1624,1596307,9,'Set Medic'),(1624,1602859,1,'Grip'),(1624,1632066,9,'Aerial Coordinator'),(1624,1692667,3,'Production Supervisor'),(1624,1692679,3,'Production Coordinator'),(1624,1746552,1,'First Assistant Camera'),(1624,1766004,7,'Assistant Art Director'),(1624,1769325,9,'Craft Service'),(1624,1809090,11,'Best Boy Electric'),(1624,1870767,1,'Key Grip'),(1624,1870768,8,'Key Hair Stylist'),(1624,1870770,8,'Set Dressing Artist'),(1624,1870771,9,'Cableman'),(1624,1870772,9,'Driver'),(1624,1870774,9,'Set Production Assistant'),(1624,1870775,9,'Stand In'),(1624,1870777,9,'Transportation Coordinator'),(1624,1870781,11,'Electrician'),(1624,1870782,11,'Rigging Gaffer'),(1624,1870783,3,'Casting Associate'),(1624,1870784,6,'Music Editor'),(888,8215,3,'Producer'),(888,488,3,'Executive Producer'),(888,489,3,'Executive Producer'),(888,490,3,'Producer'),(888,13589,8,'Costume Design'),(888,1060,1,'Director of Photography'),(888,1726,4,'Screenplay'),(888,2211,3,'Executive Producer'),(888,6877,7,'Production Design'),(888,13585,3,'Casting'),(888,8679,7,'Art Direction'),(888,13581,2,'Director'),(888,13582,4,'Screenplay'),(888,13583,4,'Screenplay'),(888,13584,5,'Editor'),(888,13586,7,'Art Direction'),(888,13587,7,'Art Direction'),(888,13588,7,'Set Decoration'),(888,13594,3,'Executive Producer'),(888,13594,4,'Story'),(888,13596,3,'Executive Producer'),(888,13620,3,'Executive Producer'),(888,13620,4,'Story'),(888,129308,4,'Screenplay'),(888,130319,4,'Screenplay'),(888,149366,4,'Story'),(888,558639,4,'Story'),(888,558640,6,'Original Music Composer'),(888,558641,6,'Original Music Composer'),(888,558642,6,'Sound Director'),(888,558643,6,'Sound Director'),(4256,561,3,'Casting'),(4256,1260,7,'Production Design'),(4256,1307,3,'Executive Producer'),(4256,59839,3,'Executive Producer'),(4256,6207,7,'Construction Coordinator'),(4256,6742,5,'First Assistant Editor'),(4256,7181,3,'Producer'),(4256,7413,1,'Director of Photography'),(4256,9562,4,'Characters'),(4256,10395,5,'Editor'),(4256,10397,8,'Costume Design'),(4256,11822,7,'Set Decoration'),(4256,12987,2,'Director'),(4256,14457,5,'Editor'),(4256,14382,6,'Sound Designer'),(4256,21801,6,'Music Editor'),(4256,23739,6,'Original Music Composer'),(4256,35690,4,'Characters'),(4256,35692,4,'Characters'),(4256,35693,4,'Characters'),(4256,35694,4,'Characters'),(4256,35734,4,'Characters'),(4256,35796,4,'Screenplay'),(4256,12991,4,'Screenplay'),(4256,35797,7,'Art Direction'),(4256,113194,9,'Stunts'),(4256,56593,9,'Second Unit Cinematographer'),(4256,61654,6,'Music Supervisor'),(4256,62011,3,'Executive Producer'),(4256,15756,3,'Executive Producer'),(4256,64074,3,'Executive In Charge Of Production'),(4256,67809,3,'Unit Manager'),(4256,70955,3,'Co-Producer'),(4256,70955,3,'Unit Production Manager'),(4256,129988,8,'Set Costumer'),(4256,417960,5,'Color Timer'),(4256,450321,3,'Associate Producer'),(4256,557806,9,'Utility Stunts'),(4256,959742,3,'Casting Associate'),(4256,1007395,9,'Stunt Coordinator'),(4256,1115942,3,'Associate Producer'),(4256,1299405,5,'Dialogue Editor'),(4256,1313786,7,'Production Illustrator'),(4256,1333988,9,'Property Master'),(4256,1390234,8,'Prosthetic Supervisor'),(4256,1391689,9,'Special Effects Coordinator'),(4256,1391702,9,'Transportation Coordinator'),(4256,1392899,7,'Construction Foreman'),(4256,1394942,7,'Greensman'),(4256,1401604,8,'Wigmaker'),(4256,1404709,7,'Set Designer'),(4256,1404715,9,'Carpenter'),(4256,1404845,10,'Visual Effects Producer'),(4256,1408197,3,'Location Manager'),(4256,1408301,6,'Sound Effects Editor'),(4256,1408718,10,'Visual Effects Supervisor'),(4256,1409231,9,'Sound Recordist'),(4256,1410328,9,'Makeup Effects'),(4256,1413091,6,'Sound Editor'),(4256,1413095,6,'Supervising Sound Editor'),(4256,1421758,9,'Unit Publicist'),(4256,1441369,11,'Rigging Gaffer'),(4256,1448426,7,'Art Department Assistant'),(4256,1448616,1,'Steadicam Operator'),(4256,1532749,10,'Special Effects Supervisor'),(4256,1546761,7,'Art Department Coordinator'),(4256,1548634,9,'Security'),(4256,1550775,9,'Visual Effects Editor'),(4256,1560648,6,'Production Sound Mixer'),(4256,1560651,6,'Boom Operator'),(4256,1580636,3,'Production Accountant'),(4256,1582428,1,'Helicopter Camera'),(4256,1586397,6,'Orchestrator'),(4256,1665700,9,'Post Production Supervisor'),(4256,1667911,7,'Assistant Art Director'),(4256,1667912,7,'Lead Painter'),(4256,1667913,7,'Location Scout'),(4256,1667914,7,'Painter'),(4256,1667915,7,'Sculptor'),(4256,1667916,7,'Standby Painter'),(4256,1667917,1,'First Assistant Camera'),(4256,1667918,1,'Grip'),(4256,1667919,1,'Still Photographer'),(4256,1667920,8,'Assistant Costume Designer'),(4256,1667921,8,'Costume Supervisor'),(4256,1667922,8,'Hairstylist'),(4256,1667923,8,'Key Hair Stylist'),(4256,1667924,8,'Set Dressing Artist'),(4256,1667925,9,'Additional Music'),(4256,1667926,9,'Chef'),(4256,1667927,9,'Craft Service'),(4256,1667928,9,'Digital Effects Supervisor'),(4256,1667929,9,'Driver'),(4256,1667930,9,'Picture Car Coordinator'),(4256,1667931,9,'Post Production Assistant'),(4256,1667932,9,'Production Office Assistant'),(4256,1667933,9,'Projection'),(4256,1667934,9,'Scenic Artist'),(4256,1667935,9,'Stand In'),(4256,1667936,9,'Systems Administrators & Support'),(4256,1667937,9,'Transportation Captain'),(4256,1667938,9,'Transportation Co-Captain'),(4256,1667939,9,'Video Assist Operator'),(4256,1667940,2,'Assistant Director'),(4256,1667942,11,'Best Boy Electric'),(4256,1667943,11,'Gaffer'),(4256,1667944,11,'Lighting Technician'),(4256,1667945,11,'Rigging Grip'),(4256,1667946,3,'Production Coordinator'),(4256,1667947,6,'First Assistant Sound Editor'),(4256,1667948,6,'Foley'),(4256,1667950,10,'Animation Supervisor'),(4256,1667951,10,'Digital Compositors'),(4256,1667952,10,'Visual Effects Coordinator'),(4256,1667953,4,'Storyboard'),(4256,1667954,9,'Machinist'),(4256,1667955,9,'Score Engineer'),(4256,1667956,6,'Songs'),(1493,2215,3,'Casting'),(1493,909,5,'Editor'),(1493,1296,3,'Executive Producer'),(1493,1999,6,'Original Music Composer'),(1493,5633,7,'Set Decoration'),(1493,6328,9,'Stunt Coordinator'),(1493,10066,8,'Makeup Department Head'),(1493,8862,1,'Director of Photography'),(1493,16466,7,'Production Design'),(1493,18277,3,'Producer'),(1493,18281,2,'Director'),(1493,18135,3,'Executive Producer'),(1493,18323,4,'Writer'),(1493,18323,3,'Executive Producer'),(1493,62061,7,'Art Direction'),(1493,62365,4,'Writer'),(1493,62365,3,'Co-Producer'),(1493,62366,4,'Writer'),(1493,957115,8,'Costume Design'),(1493,978673,7,'Set Decoration'),(1493,1095093,8,'Key Hair Stylist'),(1493,1164426,11,'Gaffer'),(1493,1183391,1,'Still Photographer'),(1493,1378757,6,'Supervising Sound Editor'),(1493,1406137,2,'Script Supervisor'),(1493,1407340,8,'Hairstylist'),(1493,1438381,8,'Key Hair Stylist'),(1493,1443033,8,'Hairstylist'),(1493,1461605,8,'Makeup Artist'),(1493,1533052,8,'Hairstylist'),(1493,1535323,6,'Music Supervisor'),(9944,639,3,'Producer'),(9944,906,7,'Set Decoration'),(9944,1047,5,'Editor'),(9944,1156,3,'Casting'),(9944,1729,6,'Original Music Composer'),(9944,3105,6,'Sound Re-Recording Mixer'),(9944,4183,3,'Unit Production Manager'),(9944,4187,7,'Art Direction'),(9944,5582,1,'Director of Photography'),(9944,6349,2,'Director'),(9944,6349,4,'Screenplay'),(9944,6349,3,'Producer'),(9944,8885,8,'Costume Design'),(9944,15432,5,'Dialogue Editor'),(9944,15433,5,'Dialogue Editor'),(9944,11060,4,'Novel'),(9944,18857,6,'Production Sound Mixer'),(9944,20968,7,'Production Design'),(9944,21729,7,'Set Decoration'),(9944,38340,3,'Associate Producer'),(9944,58720,5,'Editor'),(9944,92371,6,'Supervising Sound Editor'),(9944,92371,6,'Sound Re-Recording Mixer'),(9944,92386,5,'Dialogue Editor'),(9944,74792,1,'Steadicam Operator'),(9944,142157,9,'Stunt Coordinator'),(9944,958273,2,'Script Supervisor'),(9944,1400369,6,'Sound Re-Recording Mixer'),(9944,1459590,1,'Camera Operator'),(9944,1536262,11,'Rigging Gaffer'),(9944,1538430,1,'Still Photographer'),(9944,1546902,6,'Boom Operator'),(9944,1561444,6,'Sound Re-Recording Mixer'),(9944,1561473,5,'First Assistant Editor'),(7350,892,1,'Director of Photography'),(7350,2874,3,'Casting'),(7350,3026,3,'Producer'),(7350,3026,2,'Director'),(7350,3032,5,'Editor'),(7350,3275,3,'Casting'),(7350,8274,7,'Set Decoration'),(7350,9025,7,'Set Designer'),(7350,9250,3,'Executive Producer'),(7350,9250,3,'Unit Production Manager'),(7350,9251,6,'Music'),(7350,13177,6,'Sound Re-Recording Mixer'),(7350,13179,6,'Sound Re-Recording Mixer'),(7350,14753,3,'Unit Production Manager'),(7350,15331,6,'Sound Editor'),(7350,16736,6,'ADR Supervisor'),(7350,42032,1,'Camera Operator'),(7350,35498,3,'Producer'),(7350,33456,8,'Costume Design'),(7350,23550,8,'Makeup Department Head'),(7350,23788,8,'Prosthetic Makeup Artist'),(7350,27541,3,'Producer'),(7350,52597,3,'Producer'),(7350,52599,3,'Executive Producer'),(7350,52599,4,'Writer'),(7350,52598,3,'Executive Producer'),(7350,52600,7,'Production Design'),(7350,57077,3,'Co-Producer'),(7350,57077,2,'First Assistant Director'),(7350,63935,9,'Stunt Coordinator'),(7350,75379,2,'Second Assistant Director'),(7350,83075,7,'Construction Coordinator'),(7350,86907,9,'Post Production Supervisor'),(7350,160927,6,'Music Editor'),(7350,930663,6,'ADR Editor'),(7350,1197278,3,'Casting Assistant'),(7350,1332210,8,'Makeup Artist'),(7350,1338379,9,'Transportation Coordinator'),(7350,1338670,8,'Hairstylist'),(7350,1341794,8,'Costume Supervisor'),(7350,1342241,7,'Property Master'),(7350,1355532,2,'Script Supervisor'),(7350,1378224,7,'Set Designer'),(7350,1387183,5,'Dialogue Editor'),(7350,1389591,10,'Visual Effects Producer'),(7350,1392083,6,'Sound Editor'),(7350,1392896,7,'Assistant Art Director'),(7350,1399316,11,'Chief Lighting Technician'),(7350,1404230,1,'Still Photographer'),(7350,1405232,5,'Dialogue Editor'),(7350,1405246,9,'Unit Publicist'),(7350,1415635,11,'Rigging Gaffer'),(7350,1417400,8,'Hairstylist'),(7350,1424138,3,'Location Manager'),(7350,1426762,8,'Makeup Artist'),(7350,1461169,6,'First Assistant Sound Editor'),(7350,1463770,1,'Key Grip'),(7350,1493864,7,'Art Direction'),(7350,1521504,8,'Hair Department Head'),(7350,1532735,8,'Key Hair Stylist'),(7350,1550830,9,'Special Effects Coordinator'),(7350,1552190,5,'Assistant Editor'),(7350,1564997,3,'Executive In Charge Of Production'),(7350,1565113,7,'Art Department Coordinator'),(7350,1616516,8,'Key Makeup Artist'),(7350,1687145,9,'Transportation Captain'),(7350,1704257,6,'Boom Operator'),(7350,1733132,5,'Negative Cutter'),(7350,1752926,10,'VFX Editor'),(7350,1752929,6,'Production Sound Mixer'),(7350,1752933,9,'Cableman'),(7350,1752949,8,'Key Costumer'),(7350,1752955,6,'Assistant Sound Editor'),(7350,1752957,3,'Production Accountant'),(7350,1752965,9,'Transportation Co-Captain'),(7350,1752973,4,'Storyboard'),(7350,1752978,5,'Color Timer'),(9869,1095,1,'Director of Photography'),(9869,1729,6,'Original Music Composer'),(9869,2122,5,'Editor'),(9869,7231,5,'Editor'),(9869,4611,3,'Producer'),(9869,4612,3,'Producer'),(9869,13015,2,'Director'),(9869,15304,4,'Screenplay'),(9869,38568,4,'Author'),(9869,59906,4,'Screenplay'),(4379,1720,3,'Casting'),(4379,298,3,'Producer'),(4379,3393,6,'Original Music Composer'),(4379,4502,5,'Editor'),(4379,6209,8,'Costume Design'),(4379,6628,7,'Production Design'),(4379,8523,1,'Director of Photography'),(4379,16731,3,'Producer'),(4379,10837,7,'Art Direction'),(4379,20223,3,'Producer'),(4379,32796,5,'Editor'),(4379,36797,2,'Director'),(4379,36798,4,'Screenplay'),(4379,36799,6,'Original Music Composer'),(4379,36800,7,'Set Decoration'),(2034,8220,7,'Production Design'),(2034,1296,3,'Executive Producer'),(2034,5914,3,'Casting'),(2034,3987,5,'Editor'),(2034,9989,6,'Original Music Composer'),(2034,19769,4,'Screenplay'),(2034,19769,3,'Co-Producer'),(2034,18265,1,'Director of Photography'),(2034,19012,3,'Executive Producer'),(2034,20907,2,'Director'),(2034,20908,3,'Producer'),(2034,21146,3,'Producer'),(2034,35178,3,'Co-Producer'),(2034,86907,3,'Associate Producer'),(2034,956462,3,'Co-Producer'),(2034,957799,8,'Costume Design'),(2034,982722,2,'Script Supervisor'),(2034,1332245,9,'Stunts'),(2034,1471726,6,'Music Supervisor'),(2034,1529457,8,'Costume Supervisor'),(926,495,3,'Casting'),(926,494,3,'Casting Associate'),(926,602,7,'Production Design'),(926,2889,6,'Sound Designer'),(926,3393,6,'Original Music Composer'),(926,3393,6,'Orchestrator'),(926,3996,6,'Sound Re-Recording Mixer'),(926,5162,3,'Producer'),(926,8276,6,'Supervising Sound Editor'),(926,8885,8,'Costume Design'),(926,12040,8,'Assistant Costume Designer'),(926,12945,6,'Music Supervisor'),(926,14193,9,'Special Effects Coordinator'),(926,13140,1,'Director of Photography'),(926,15002,2,'Director'),(926,15003,4,'Screenplay'),(926,15004,3,'Producer'),(926,15004,3,'Unit Production Manager'),(926,15005,5,'Editor'),(926,15006,7,'Art Direction'),(926,15016,7,'Set Decoration'),(926,15017,8,'Makeup Artist'),(926,15018,6,'Music Editor'),(926,15021,9,'Special Effects'),(926,15022,10,'Visual Effects Supervisor'),(926,15023,10,'Visual Effects'),(926,15024,9,'Stunt Coordinator'),(926,15026,9,'Utility Stunts'),(926,32490,8,'Hairstylist'),(926,41386,4,'Screenplay'),(926,406204,8,'Makeup Department Head'),(926,557528,6,'Foley'),(926,1321589,8,'Costume Supervisor'),(926,1327030,6,'Sound Re-Recording Mixer'),(926,1327149,8,'Makeup Artist'),(926,1338670,8,'Hair Department Head'),(926,1389570,6,'Foley'),(926,1392134,6,'ADR & Dubbing'),(926,1394129,6,'Sound Effects Editor'),(926,1400812,6,'ADR & Dubbing'),(926,1400905,5,'Dialogue Editor'),(926,1405814,6,'ADR & Dubbing'),(926,1414177,6,'Sound Effects Editor'),(926,1446545,6,'Sound Effects Editor'),(926,1449173,5,'Dialogue Editor'),(926,1549001,7,'Art Department Coordinator'),(4248,546,3,'Casting'),(4248,1305,6,'Music Editor'),(4248,1307,3,'Executive Producer'),(4248,59839,3,'Executive Producer'),(4248,6899,1,'Director of Photography'),(4248,9646,5,'Editor'),(4248,9651,6,'Sound Effects Editor'),(4248,8761,6,'Foley'),(4248,9562,4,'Screenplay'),(4248,9562,4,'Characters'),(4248,9562,3,'Co-Executive Producer'),(4248,14039,7,'Production Design'),(4248,14041,7,'Set Decoration'),(4248,14377,3,'Casting'),(4248,13596,6,'Production Sound Mixer'),(4248,15434,9,'Special Effects Coordinator'),(4248,19449,3,'Unit Production Manager'),(4248,19449,9,'Second Unit Cinematographer'),(4248,19449,3,'Co-Executive Producer'),(4248,20297,5,'Editor'),(4248,11372,5,'Editor'),(4248,23653,3,'Casting'),(4248,29217,8,'Makeup Designer'),(4248,35546,9,'Stunt Coordinator'),(4248,35689,2,'Director'),(4248,35690,4,'Screenplay'),(4248,35690,4,'Characters'),(4248,35690,3,'Co-Executive Producer'),(4248,35692,4,'Characters'),(4248,35693,4,'Characters'),(4248,35694,4,'Characters'),(4248,35696,3,'Producer'),(4248,35734,4,'Characters'),(4248,35741,4,'Screenplay'),(4248,35744,4,'Screenplay'),(4248,35746,4,'Screenplay'),(4248,35748,4,'Screenplay'),(4248,35751,4,'Screenplay'),(4248,35753,6,'Original Music Composer'),(4248,35760,7,'Art Direction'),(4248,35764,8,'Costume Design'),(4248,35766,8,'Costume Design'),(4248,56908,3,'Co-Executive Producer'),(4248,57225,3,'Co-Executive Producer'),(4248,60515,3,'Associate Producer'),(4248,61108,3,'Casting Associate'),(4248,15756,3,'Executive Producer'),(4248,67603,3,'Associate Producer'),(4248,28285,6,'Orchestrator'),(4248,121896,9,'Set Production Assistant'),(4248,552427,3,'Co-Executive Producer'),(4248,928942,6,'Sound Re-Recording Mixer'),(4248,955406,9,'Stunts'),(4248,1171245,7,'Set Designer'),(4248,1202352,9,'Visual Effects Editor'),(4248,1208435,8,'Makeup Department Head'),(4248,1271061,10,'Visual Effects Supervisor'),(4248,1299405,5,'Dialogue Editor'),(4248,1327146,8,'Costume Supervisor'),(4248,1361676,6,'Scoring Mixer'),(4248,1390234,8,'Makeup Artist'),(4248,1392136,10,'Visual Effects Supervisor'),(4248,1393390,10,'Visual Effects Supervisor'),(4248,1394323,9,'Chef'),(4248,1399635,10,'Visual Effects Supervisor'),(4248,1403396,7,'Leadman'),(4248,1404722,10,'Visual Effects Coordinator'),(4248,1408305,6,'Sound Effects Editor'),(4248,1413095,6,'Supervising Sound Editor'),(4248,1414748,9,'Stand In'),(4248,1415629,9,'Digital Effects Supervisor'),(4248,1422054,8,'Makeup Department Head'),(4248,1425980,9,'Sequence Supervisor'),(4248,1425990,9,'Executive Visual Effects Producer'),(4248,1440240,10,'Visual Effects Supervisor'),(4248,1452750,5,'First Assistant Editor'),(4248,1455461,9,'Compositors'),(4248,1459789,10,'Visual Effects'),(4248,1472650,3,'Executive Producer'),(4248,1478934,2,'Script Supervisor'),(4248,1532232,8,'Hair Department Head'),(4248,1532757,8,'Key Hair Stylist'),(4248,1534236,1,'Still Photographer'),(4248,1536633,6,'Sound Editor'),(4248,1537500,6,'Music Supervisor'),(4248,1537501,6,'Music Editor'),(4248,1537510,11,'Electrician'),(4248,1537538,6,'Sound Effects Editor'),(4248,1537540,10,'Visual Effects Producer'),(4248,1537541,10,'Visual Effects Producer'),(4248,1548851,9,'Additional Music'),(4248,1552014,9,'Set Medic'),(4248,1552061,11,'Rigging Gaffer'),(4248,1553255,9,'Scenic Artist'),(4248,1597212,3,'Location Manager'),(4248,1616772,11,'Rigging Grip'),(4248,1627977,9,'Propmaker'),(4248,1639718,8,'Assistant Costume Designer'),(4248,1640493,11,'Lighting Technician'),(4248,1667229,7,'Art Department Assistant'),(4248,1667231,7,'Art Department Coordinator'),(4248,1667232,7,'Assistant Art Director'),(4248,1667233,7,'Construction Foreman'),(4248,1667234,7,'Location Scout'),(4248,1667237,7,'Painter'),(4248,1667238,1,'Grip'),(4248,1667242,8,'Hairstylist'),(4248,1667243,8,'Set Costumer'),(4248,1667244,8,'Set Dressing Artist'),(4248,1667247,9,'Carpenter'),(4248,1667248,9,'CG Supervisor'),(4248,1667249,9,'Driver'),(4248,1667250,9,'Loader'),(4248,1667251,9,'Makeup Effects'),(4248,1667252,9,'Post Production Assistant'),(4248,1667253,9,'Production Office Assistant'),(4248,1667254,9,'Property Master'),(4248,1667261,9,'Transportation Coordinator'),(4248,1667262,9,'Video Assist Operator'),(4248,1667263,2,'Assistant Director'),(4248,1667264,11,'Best Boy Electric'),(4248,1667265,11,'Gaffer'),(4248,1667271,3,'Production Accountant'),(4248,1667272,3,'Production Coordinator'),(4248,1667273,6,'Boom Operator'),(4248,1667274,6,'First Assistant Sound Editor'),(4248,1667275,10,'Digital Compositors'),(7214,894,6,'Original Music Composer'),(7214,7232,3,'Casting'),(7214,20540,3,'Casting'),(7214,31094,3,'Executive Producer'),(7214,52038,2,'Director'),(7214,52038,3,'Executive Producer'),(7214,53175,4,'Screenplay'),(7214,53176,4,'Screenplay'),(7214,53177,3,'Producer'),(7214,53178,3,'Producer'),(7214,53179,3,'Executive Producer'),(7214,53180,3,'Executive Producer'),(7214,25831,7,'Production Design'),(7214,25832,7,'Art Direction'),(7214,53182,7,'Set Decoration'),(7214,53183,8,'Costume Design'),(7214,1424894,8,'Hairstylist'),(7214,1746321,3,'Producer'),(1537,2997,3,'Producer'),(1537,5361,5,'Editor'),(1537,6489,6,'Original Music Composer'),(1537,7017,2,'Director'),(1537,8408,1,'Director of Photography'),(1537,9178,7,'Production Design'),(1537,16939,4,'Screenplay'),(1537,21178,4,'Screenplay'),(9360,561,3,'Casting Associate'),(9360,2287,1,'Director of Photography'),(9360,4064,9,'Stunt Coordinator'),(9360,5175,5,'Editor'),(9360,6044,3,'Casting'),(9360,7713,3,'Co-Producer'),(9360,7713,9,'Second Unit Cinematographer'),(9360,8708,6,'Supervising Sound Editor'),(9360,9370,1,'Key Grip'),(9360,11080,4,'Author'),(9360,11081,4,'Author'),(9360,11081,3,'Producer'),(9360,14712,6,'Original Music Composer'),(9360,14653,8,'Makeup Artist'),(9360,10819,7,'Production Design'),(9360,10820,7,'Art Direction'),(9360,16598,8,'Key Hair Stylist'),(9360,19046,7,'Set Decoration'),(9360,42277,9,'Visual Effects Art Director'),(9360,42291,10,'Visual Effects Coordinator'),(9360,26648,2,'Director'),(9360,55019,1,'Aerial Camera'),(9360,56889,6,'Orchestrator'),(9360,57437,4,'Author'),(9360,57440,3,'Producer'),(9360,57442,3,'Producer'),(9360,57443,3,'Producer'),(9360,57445,3,'Executive Producer'),(9360,58471,3,'Unit Production Manager'),(9360,58375,3,'Associate Producer'),(9360,92302,7,'Assistant Art Director'),(9360,143913,6,'ADR Supervisor'),(9360,548435,6,'Foley'),(9360,567283,6,'Dialogue Editor'),(9360,933518,3,'Production Manager'),(9360,1086456,4,'Storyboard'),(9360,1138195,3,'Line Producer'),(9360,1190244,2,'First Assistant Director'),(9360,1225876,3,'Production Accountant'),(9360,1378224,7,'Set Designer'),(9360,1391126,10,'Visual Effects Producer'),(9360,1398972,1,'Underwater Camera'),(9360,1399126,9,'Stunts'),(9360,1413192,1,'Still Photographer'),(9360,1415620,9,'Visual Effects Editor'),(9360,1421685,9,'Supervising Technical Director'),(9360,1429549,5,'Color Timer'),(9360,1440289,3,'Location Manager'),(9360,1440306,8,'Set Costumer'),(9360,1442506,7,'Leadman'),(9360,1442566,10,'Special Effects Supervisor'),(9360,1443053,7,'Construction Coordinator'),(9360,1454536,6,'Sound Effects Editor'),(9360,1456374,10,'Visual Effects Supervisor'),(9360,1463846,9,'Driver'),(9360,1535398,1,'Steadicam Operator'),(9360,1536544,8,'Hairstylist'),(9360,1550619,6,'Music Editor'),(9360,1551328,6,'Sound Mixer'),(9360,1585162,7,'Standby Painter'),(9360,1600101,7,'Production Illustrator'),(9360,1627994,11,'Gaffer'),(9360,1722384,9,'Set Medic'),(9360,1786618,3,'Production Coordinator'),(9360,1790559,9,'Transportation Co-Captain'),(9360,1837075,7,'Property Master'),(9360,1868245,8,'Set Dressing Artist'),(9360,1877754,8,'Costume Design'),(9360,1877799,7,'Greensman'),(9360,1877800,7,'Painter'),(9360,1877801,7,'Sculptor'),(9360,1877802,1,'Camera Operator'),(9360,1877803,1,'First Assistant Camera'),(9360,1877804,1,'Grip'),(9360,1877808,9,'Animatronic and Prosthetic Effects'),(9360,1877809,9,'Craft Service'),(9360,1877810,9,'Loader'),(9360,1877812,9,'Propmaker'),(9360,1877813,9,'Software Engineer'),(9360,1877814,9,'Stand In'),(9360,1877815,9,'Transportation Captain'),(9360,1877818,9,'Unit Publicist'),(9360,1877819,9,'Video Assist Operator'),(9360,1877820,11,'Lighting Technician'),(9360,1877821,6,'Boom Operator'),(9360,1877822,6,'First Assistant Sound Editor'),(9360,1877825,10,'Visual Effects'),(6282,770,3,'Producer'),(6282,2446,3,'Producer'),(6282,15841,5,'Editor'),(6282,897,3,'Casting'),(6282,2243,7,'Production Design'),(6282,3989,8,'Costume Design'),(6282,5132,6,'Music Supervisor'),(6282,13588,7,'Set Decoration'),(6282,15528,10,'Special Effects Supervisor'),(6282,29019,7,'Art Direction'),(6282,48980,2,'Director'),(6282,59972,4,'Writer'),(6282,95828,7,'Art Department Coordinator'),(6282,103957,7,'Construction Coordinator'),(6282,558105,6,'Original Music Composer'),(6282,1330048,8,'Costume Supervisor'),(6282,1406611,7,'Construction Coordinator'),(6282,1413111,10,'Visual Effects Producer'),(6282,1422065,9,'Special Effects Coordinator'),(6282,1434603,8,'Key Hair Stylist'),(6282,1469634,2,'Script Supervisor'),(6282,1527917,8,'Hairstylist'),(6282,1530166,6,'Music Supervisor'),(6282,1534893,6,'Music Supervisor'),(6282,1535952,3,'Casting Associate'),(6282,1536515,8,'Assistant Costume Designer'),(6282,1536516,8,'Costume Supervisor'),(6282,1536518,8,'Set Costumer'),(6282,1536521,3,'Researcher'),(6282,1536522,8,'Makeup Artist'),(6282,1536523,8,'Makeup Artist'),(508,498,8,'Costume Design'),(508,668,3,'Casting'),(508,1253,7,'Production Design'),(508,2236,3,'Producer'),(508,2238,3,'Producer'),(508,3310,5,'Editor'),(508,7018,4,'Screenplay'),(508,7018,2,'Director'),(508,7019,3,'Producer'),(508,7045,6,'Original Music Composer'),(508,7049,6,'Music Editor'),(508,7050,9,'Special Effects'),(508,7051,10,'Visual Effects'),(508,7052,9,'Stunts'),(508,7021,1,'Director of Photography'),(508,217371,6,'Music'),(9487,7,4,'Screenplay'),(9487,7,2,'Director'),(9487,7,4,'Story'),(9487,8,5,'Editor'),(9487,7879,2,'Director'),(9487,7879,4,'Story'),(9487,7878,3,'Producer'),(9487,7885,6,'Original Music Composer'),(9487,7903,3,'Casting'),(9487,7911,4,'Story'),(9487,8023,10,'Animation'),(9487,12912,1,'Director of Photography'),(9487,57670,4,'Screenplay'),(9487,57671,4,'Screenplay'),(9487,57673,3,'Producer'),(9487,384204,10,'Animation'),(9487,1140576,10,'Animation'),(9487,1371609,11,'Lighting Technician'),(9487,1447357,10,'Visual Development'),(768,3182,3,'Producer'),(768,3183,3,'Producer'),(768,5336,8,'Makeup Artist'),(768,6209,8,'Costume Design'),(768,7020,6,'Original Music Composer'),(768,7537,6,'Sound Designer'),(768,9337,8,'Hairstylist'),(768,9573,1,'Director of Photography'),(768,11447,2,'Director'),(768,11448,2,'Director'),(768,11449,4,'Novel'),(768,11451,4,'Novel'),(768,11452,4,'Screenplay'),(768,11453,4,'Screenplay'),(768,11454,5,'Editor'),(768,11455,5,'Editor'),(768,11456,7,'Production Design'),(768,11457,7,'Art Direction'),(768,11458,3,'Casting'),(768,11459,3,'Casting'),(768,11460,7,'Set Decoration'),(768,15314,8,'Makeup Artist'),(768,15314,8,'Hairstylist'),(768,25201,10,'Visual Effects'),(768,16994,6,'Sound Effects Editor'),(768,33933,7,'Set Designer'),(768,113045,6,'Foley'),(768,113048,9,'Sound Recordist'),(768,113073,6,'Sound Re-Recording Mixer'),(768,113089,9,'Sound Recordist'),(768,113090,6,'Foley'),(768,92329,8,'Makeup Artist'),(768,92467,10,'Visual Effects'),(768,92470,10,'Animation'),(768,1189807,1,'Camera Operator'),(768,1319134,8,'Costume Supervisor'),(768,1325198,8,'Set Costumer'),(768,1377220,6,'Sound Re-Recording Mixer'),(768,1390527,5,'Dialogue Editor'),(768,1397693,2,'Script Supervisor'),(768,1398933,1,'Still Photographer'),(768,1398935,11,'Gaffer'),(768,1399057,5,'Dialogue Editor'),(768,1399643,3,'Publicist'),(768,1401561,9,'Sound Recordist'),(768,1402257,3,'Location Manager'),(768,1403490,6,'Music Editor'),(768,1403576,8,'Hairstylist'),(768,1404356,7,'Assistant Art Director'),(768,1406098,6,'Supervising Sound Editor'),(768,1407672,1,'Steadicam Operator'),(768,1416155,6,'Sound Re-Recording Mixer'),(768,1417999,8,'Set Costumer'),(768,1425343,6,'ADR & Dubbing'),(768,1449929,8,'Hairstylist'),(768,1449932,8,'Hairstylist'),(768,1449934,7,'Art Department Coordinator'),(768,1449936,9,'Property Master'),(768,1449937,9,'Scenic Artist'),(768,1449943,6,'Sound Designer'),(768,1449946,6,'First Assistant Sound Editor'),(768,1449949,10,'Visual Effects'),(768,1449958,9,'Stunt Coordinator'),(768,1449969,8,'Set Costumer'),(768,1449970,8,'Set Costumer'),(2636,904,1,'Director of Photography'),(2636,1097,3,'Casting'),(2636,1888,3,'Producer'),(2636,2289,6,'Original Music Composer'),(2636,4147,7,'Production Design'),(2636,7417,7,'Set Decoration'),(2636,10970,8,'Costume Design'),(2636,17149,7,'Art Direction'),(2636,21811,5,'Editor'),(2636,26648,2,'Director'),(2636,26649,4,'Screenplay'),(2636,1217663,4,'Novel'),(2636,1319404,8,'Costume Supervisor'),(2636,1319405,8,'Costume Supervisor'),(9981,282,3,'Executive Producer'),(9981,546,3,'Casting'),(9981,2995,5,'Editor'),(9981,4064,9,'Stunt Coordinator'),(9981,4140,6,'Original Music Composer'),(9981,4769,3,'Executive Producer'),(9981,14377,3,'Casting'),(9981,14385,9,'Stunt Coordinator'),(9981,13626,7,'Set Decoration'),(9981,20745,8,'Costume Design'),(9981,21795,7,'Art Direction'),(9981,11372,5,'Editor'),(9981,24192,6,'Music Supervisor'),(9981,41039,3,'Executive Producer'),(9981,43891,1,'Director of Photography'),(9981,54584,2,'Director'),(9981,54585,7,'Production Design'),(9981,56643,4,'Writer'),(9981,61397,3,'Producer'),(9981,61398,4,'Writer'),(9981,61396,3,'Producer'),(9981,1302618,8,'Makeup Department Head'),(9981,1439107,11,'Gaffer'),(9981,1457729,2,'Script Supervisor'),(9981,1461177,1,'Still Photographer'),(9981,1529590,1,'Camera Operator'),(9981,1529591,1,'Camera Operator'),(7453,971,5,'Editor'),(7453,4504,3,'Producer'),(7453,4507,3,'Producer'),(7453,6737,3,'Producer'),(7453,6866,3,'Co-Producer'),(7453,21635,3,'Producer'),(7453,38802,6,'Original Music Composer'),(7453,51557,3,'Casting'),(7453,52842,2,'Director'),(7453,52843,4,'Screenplay'),(7453,52843,3,'Executive Producer'),(7453,52843,4,'Novel'),(7453,52845,4,'Screenplay'),(7453,53354,1,'Director of Photography'),(7453,58719,3,'Co-Producer'),(7453,58870,3,'Executive Producer'),(7453,72898,3,'Co-Producer'),(7453,1349345,3,'Producer'),(7453,1349346,3,'Executive Producer'),(7737,4014,4,'Screenplay'),(7737,4014,3,'Producer'),(7737,4016,3,'Producer'),(7737,4017,3,'Producer'),(7737,673,3,'Producer'),(7737,971,5,'Editor'),(7737,1324,3,'Casting'),(7737,2148,6,'Original Music Composer'),(7737,4697,3,'Producer'),(7737,5432,1,'Director of Photography'),(7737,8681,8,'Costume Design'),(7737,9821,7,'Art Direction'),(7737,15365,3,'Executive Producer'),(7737,16985,7,'Production Design'),(7737,17080,3,'Executive Producer'),(7737,31516,3,'Executive Producer'),(7737,42360,3,'Casting'),(7737,52968,2,'Director'),(7737,110697,3,'Line Producer'),(7737,1018096,7,'Set Decoration'),(7737,1316543,8,'Makeup Department Head'),(8987,323,2,'Director'),(8987,1760,6,'Original Music Composer'),(8987,2950,1,'Director of Photography'),(8987,6051,5,'Editor'),(8987,11813,3,'Producer'),(8987,10770,3,'Producer'),(8987,56491,4,'Screenplay'),(9759,3276,3,'Casting'),(9759,4755,2,'Director'),(9759,6880,7,'Set Decoration'),(9759,8676,3,'Producer'),(9759,9039,6,'Original Music Composer'),(9759,15356,9,'Special Effects Coordinator'),(9759,16618,9,'Stunt Coordinator'),(9759,19266,4,'Story'),(9759,21140,5,'Editor'),(9759,10830,3,'Executive Producer'),(9759,29208,3,'Executive In Charge Of Production'),(9759,34968,3,'Executive Producer'),(9759,39032,3,'Producer'),(9759,46084,8,'Costume Design'),(9759,46592,7,'Art Direction'),(9759,58191,4,'Screenplay'),(9759,57430,3,'Executive Producer'),(9759,57432,1,'Director of Photography'),(9759,65690,3,'Executive Producer'),(9759,74779,6,'Sound Mixer'),(9759,75806,3,'Unit Production Manager'),(9759,158916,6,'Sound Re-Recording Mixer'),(9759,223990,7,'Production Design'),(9759,1223099,5,'Dialogue Editor'),(9759,1342657,6,'Sound Effects Editor'),(9759,1352966,5,'Dialogue Editor'),(9759,1367037,3,'Co-Producer'),(9759,1377240,2,'Script Supervisor'),(9759,1384393,6,'Music Editor'),(9759,1394131,6,'Sound Re-Recording Mixer'),(9759,1395275,1,'Still Photographer'),(9759,1401372,9,'Transportation Coordinator'),(9759,1441250,6,'Supervising Sound Editor'),(9759,1460782,5,'Assistant Editor'),(9759,1562004,7,'Art Department Coordinator'),(9759,1562005,3,'Associate Producer'),(9759,1562006,3,'Associate Producer'),(9759,1562008,6,'Boom Operator'),(9486,1251,1,'Director of Photography'),(9486,1999,6,'Original Music Composer'),(9486,2236,3,'Producer'),(9486,2238,3,'Producer'),(9486,7791,2,'Director'),(9486,7791,4,'Author'),(9486,8401,3,'Producer'),(9486,17254,5,'Editor'),(9486,10783,4,'Author'),(9486,10782,4,'Author'),(9486,21075,4,'Author'),(9906,31,3,'Producer'),(9906,4500,6,'Original Music Composer'),(9906,7902,3,'Casting'),(9906,7921,1,'Director of Photography'),(9906,27098,3,'Producer'),(9906,54211,3,'Executive Producer'),(9906,54212,3,'Executive Producer'),(9906,60237,2,'Director'),(9906,60237,3,'Producer'),(9906,60237,4,'Author'),(9906,60238,3,'Executive Producer'),(9906,60239,3,'Executive Producer'),(9906,60241,4,'Author'),(9906,60245,3,'Executive Producer'),(9906,60244,3,'Producer'),(9906,60246,3,'Executive Producer'),(9906,60248,3,'Producer'),(9906,60247,5,'Editor'),(9906,60249,7,'Art Direction'),(9906,60250,7,'Production Design'),(9906,60250,3,'Production Manager'),(9906,68016,6,'Orchestrator'),(9906,1447476,7,'Art Department Manager'),(841,8382,7,'Assistant Art Director'),(841,2530,8,'Costume Design'),(841,3179,6,'Music Editor'),(841,3275,3,'Casting'),(841,4710,7,'Art Direction'),(841,5602,4,'Screenplay'),(841,5602,2,'Director'),(841,5629,1,'Director of Photography'),(841,5398,3,'Executive Producer'),(841,12508,6,'Original Music Composer'),(841,8928,3,'Associate Producer'),(841,12506,4,'Novel'),(841,12507,3,'Producer'),(841,12509,5,'Editor'),(841,12510,7,'Production Design'),(841,12511,7,'Set Decoration'),(841,12512,7,'Set Decoration'),(841,15893,6,'Sound Editor'),(841,16595,7,'Supervising Art Director'),(841,56765,6,'Sound Editor'),(841,27205,8,'Makeup Artist'),(841,55229,6,'Sound Re-Recording Mixer'),(841,92229,9,'Special Effects Coordinator'),(841,553937,9,'Makeup Effects'),(841,928942,6,'Sound Re-Recording Mixer'),(841,1117303,6,'Sound Designer'),(841,1219991,7,'Assistant Art Director'),(841,1335122,6,'Foley'),(841,1338884,9,'Property Master'),(841,1378171,6,'Sound Re-Recording Mixer'),(841,1391387,6,'Foley'),(841,1427532,8,'Hairstylist'),(841,1427533,8,'Makeup Artist'),(841,1427534,8,'Wigmaker'),(841,1427535,7,'Assistant Art Director'),(841,1427536,7,'Assistant Art Director'),(841,1427537,7,'Sculptor'),(841,1427538,7,'Sculptor'),(841,1427541,9,'Stunt Coordinator'),(841,1427542,1,'Camera Operator'),(841,1427543,1,'Camera Operator'),(841,1427544,1,'Camera Operator'),(841,1427545,1,'Still Photographer'),(841,1427546,2,'Script Supervisor'),(841,1427547,9,'Dialect Coach'),(841,1593813,11,'Gaffer'),(4688,16403,5,'Editor'),(4688,550,3,'Producer'),(4688,2423,1,'Director of Photography'),(4688,5581,6,'Music'),(4688,11812,3,'Executive Producer'),(4688,16391,2,'Director'),(4688,18910,4,'Screenplay'),(4688,38937,4,'Screenplay'),(4688,38938,3,'Producer'),(4688,38939,3,'Producer'),(4148,153,6,'Music'),(4148,39,2,'Director'),(4148,8219,5,'Editor'),(4148,495,3,'Casting'),(4148,135,3,'Producer'),(4148,151,1,'Director of Photography'),(4148,2242,3,'Casting'),(4148,2860,3,'Producer'),(4148,2997,3,'Producer'),(4148,5337,5,'Dialogue Editor'),(4148,7538,6,'Music Editor'),(4148,8885,8,'Costume Design'),(4148,9178,7,'Production Design'),(4148,15435,10,'Visual Effects Supervisor'),(4148,27040,7,'Art Direction'),(4148,17220,7,'Art Direction'),(4148,17951,7,'Set Decoration'),(4148,52161,6,'Music Supervisor'),(4148,66941,6,'Orchestrator'),(4148,66721,4,'Screenplay'),(4148,92391,5,'Dialogue Editor'),(4148,935490,3,'Casting Associate'),(4148,1172608,4,'Novel'),(4148,1317645,7,'Art Direction'),(4148,1321374,8,'Costume Supervisor'),(4148,1342669,2,'Script Supervisor'),(4148,1367680,9,'Choreographer'),(4148,1387429,9,'Special Effects Coordinator'),(4148,1422796,7,'Art Department Coordinator'),(4148,1522371,7,'Art Department Coordinator'),(4148,1525956,8,'Seamstress'),(4148,1549203,8,'Assistant Costume Designer'),(4148,1551947,10,'Visual Effects Producer'),(4148,1551948,8,'Assistant Costume Designer'),(4148,1551949,8,'Seamstress'),(4148,1551950,3,'Researcher'),(2207,122,6,'Original Music Composer'),(2207,7187,2,'Director'),(2207,8751,5,'Editor'),(2207,15222,7,'Production Design'),(2207,15223,7,'Set Decoration'),(2207,17209,3,'Producer'),(2207,17211,3,'Producer'),(2207,22814,4,'Screenplay'),(2207,22814,4,'Writer'),(2207,22815,3,'Producer'),(2207,22816,3,'Producer'),(2207,22818,1,'Director of Photography'),(2207,22819,8,'Costume Design'),(9381,997,1,'Director of Photography'),(9381,2406,4,'Screenplay'),(9381,2406,2,'Director'),(9381,474,3,'Casting'),(9381,10118,9,'Stunt Coordinator'),(9381,11457,7,'Art Direction'),(9381,16928,3,'Producer'),(9381,16933,7,'Art Direction'),(9381,20507,7,'Set Decoration'),(9381,23453,7,'Art Direction'),(9381,34513,7,'Supervising Art Director'),(9381,17428,6,'Sound Designer'),(9381,17428,6,'Foley'),(9381,34005,7,'Art Direction'),(9381,23982,8,'Costume Design'),(9381,25729,3,'Casting'),(9381,56835,3,'Producer'),(9381,59371,5,'Editor'),(9381,59372,7,'Production Design'),(9381,72266,4,'Screenplay'),(9381,72267,4,'Novel'),(9381,72268,6,'Music'),(9381,72269,3,'Production Supervisor'),(9381,62439,9,'Choreographer'),(9381,61996,8,'Makeup Artist'),(9381,92237,1,'Camera Operator'),(9381,125898,1,'Camera Operator'),(9381,146352,9,'Stunt Coordinator'),(9381,967607,7,'Assistant Art Director'),(9381,1015894,3,'Casting'),(9381,1049333,6,'Music Editor'),(9381,1115279,1,'Helicopter Camera'),(9381,1180471,1,'Still Photographer'),(9381,1327025,10,'Visual Effects Supervisor'),(9381,1328822,7,'Art Direction'),(9381,1328822,7,'Assistant Art Director'),(9381,1330898,7,'Art Direction'),(9381,1330899,7,'Art Direction'),(9381,1330900,7,'Art Direction'),(9381,1330904,7,'Art Direction'),(9381,1330905,7,'Art Direction'),(9381,1330906,7,'Set Decoration'),(9381,1330908,7,'Set Decoration'),(9381,1330910,8,'Costume Supervisor'),(9381,1337422,2,'Script Supervisor'),(9381,1349129,3,'Production Manager'),(9381,1392249,9,'Transportation Coordinator'),(9381,1398092,9,'Sound Recordist'),(9381,1398098,10,'Visual Effects Producer'),(9381,1398908,7,'Art Department Coordinator'),(9381,1398914,9,'Property Master'),(9381,1402234,8,'Makeup Artist'),(9381,1402235,3,'Production Manager'),(9381,1402237,9,'Property Master'),(9381,1402238,9,'Property Master'),(9381,1402240,7,'Set Designer'),(9381,1402244,9,'Sound Recordist'),(9381,1402245,6,'Supervising Sound Editor'),(9381,1402245,6,'Sound Re-Recording Mixer'),(9381,1402246,6,'Sound Re-Recording Mixer'),(9381,1402247,6,'Sound Effects Editor'),(9381,1402248,9,'Visual Effects Editor'),(9381,1402249,10,'Visual Effects Supervisor'),(9381,1402251,1,'Camera Operator'),(9381,1402252,1,'Steadicam Operator'),(9381,1402253,1,'Underwater Camera'),(9381,1402254,11,'Gaffer'),(9381,1402255,11,'Gaffer'),(9381,1402256,5,'Digital Intermediate'),(9381,1402257,3,'Location Manager'),(9381,1402259,3,'Location Manager'),(9381,1718185,1,'Camera Operator'),(9625,894,6,'Original Music Composer'),(9625,10947,4,'Screenplay'),(9625,8847,5,'Editor'),(9625,23880,3,'Producer'),(9625,58183,3,'Executive Producer'),(9625,58206,3,'Producer'),(9625,35155,2,'Director'),(9625,58209,1,'Director of Photography'),(9304,1524,2,'Director'),(9304,1524,3,'Producer'),(9304,1528,6,'Original Music Composer'),(9304,1530,3,'Casting'),(9304,1531,5,'Editor'),(9304,7716,7,'Production Design'),(9304,8862,1,'Director of Photography'),(9304,19971,8,'Costume Design'),(9304,27518,4,'Screenplay'),(9304,27519,4,'Screenplay'),(9304,18276,5,'Editor'),(9304,33711,7,'Set Decoration'),(9304,23620,8,'Makeup Artist'),(9304,46082,7,'Art Direction'),(9304,55200,4,'Screenplay'),(9304,57223,4,'Screenplay'),(9304,57225,3,'Producer'),(9304,83066,8,'Hairstylist'),(9304,1409284,2,'Script Supervisor'),(5955,122,6,'Original Music Composer'),(5955,947,6,'Original Music Composer'),(5955,2228,2,'Director'),(5955,2228,3,'Producer'),(5955,8303,3,'Executive Producer'),(5955,8969,1,'Director of Photography'),(5955,13227,5,'Editor'),(5955,12734,4,'Novel'),(5955,14538,3,'Casting'),(5955,18691,3,'Producer'),(5955,21479,3,'Executive Producer'),(5955,22061,7,'Art Direction'),(5955,46811,4,'Screenplay'),(5955,46812,4,'Screenplay'),(5955,46813,3,'Finance'),(5955,46813,3,'Producer'),(5955,959360,7,'Production Design'),(9899,1214,1,'Director of Photography'),(9899,1527,1,'Director of Photography'),(9899,5670,7,'Production Design'),(9899,9647,5,'Editor'),(9899,14639,3,'Producer'),(9899,14639,4,'Screenplay'),(9899,14640,4,'Screenplay'),(9899,15901,3,'Producer'),(9899,60014,7,'Art Direction'),(9899,60129,2,'Director'),(9899,60131,3,'Producer'),(9899,60130,3,'Producer'),(9899,60132,3,'Casting'),(9899,60133,6,'Original Music Composer'),(9899,60135,7,'Set Decoration'),(9899,60134,8,'Costume Design'),(9826,737,4,'Screenplay'),(9826,2488,3,'Producer'),(9826,12288,3,'Producer'),(9826,18254,2,'Director'),(9826,52042,3,'Executive Producer'),(9826,1551320,9,'Sound Recordist'),(9457,1052,6,'Sound Re-Recording Mixer'),(9457,1760,6,'Original Music Composer'),(9457,5363,3,'Casting'),(9457,5546,9,'Visual Effects Editor'),(9457,6878,7,'Art Direction'),(9457,7775,2,'Director'),(9457,7775,4,'Writer'),(9457,7784,5,'Editor'),(9457,8681,8,'Costume Design'),(9457,8752,5,'Editor'),(9457,8763,5,'Dialogue Editor'),(9457,10685,3,'Producer'),(9457,11772,3,'Executive Producer'),(9457,11822,7,'Set Decoration'),(9457,12614,9,'Makeup Effects'),(9457,16161,6,'Music Editor'),(9457,56765,6,'Sound Designer'),(9457,22135,7,'Production Design'),(9457,23349,3,'Casting'),(9457,23487,1,'Camera Operator'),(9457,30148,10,'Visual Effects Supervisor'),(9457,37434,1,'Director of Photography'),(9457,49826,3,'Producer'),(9457,53813,7,'Art Direction'),(9457,67653,9,'Second Unit Cinematographer'),(9457,69365,1,'Camera Operator'),(9457,75294,8,'Makeup Artist'),(9457,91094,6,'Foley'),(9457,91095,6,'Foley'),(9457,91123,1,'Helicopter Camera'),(9457,91122,1,'Helicopter Camera'),(9457,184986,7,'Assistant Art Director'),(9457,223991,7,'Art Department Coordinator'),(9457,957581,6,'Supervising Sound Editor'),(9457,999716,9,'Stunt Coordinator'),(9457,1184250,6,'ADR & Dubbing'),(9457,1217703,7,'Assistant Art Director'),(9457,1245922,3,'Associate Producer'),(9457,1293526,1,'Camera Operator'),(9457,1322129,7,'Set Decoration'),(9457,1357611,8,'Costume Design'),(9457,1371064,6,'Foley'),(9457,1378725,9,'Transportation Coordinator'),(9457,1387544,2,'Script Supervisor'),(9457,1389134,6,'Supervising Sound Editor'),(9457,1390518,7,'Set Designer'),(9457,1392116,7,'Set Designer'),(9457,1392893,9,'Property Master'),(9457,1392894,9,'Scenic Artist'),(9457,1393422,3,'Location Manager'),(9457,1394924,6,'Sound Re-Recording Mixer'),(9457,1397275,8,'Makeup Artist'),(9457,1398972,1,'Underwater Camera'),(9457,1399287,10,'Visual Effects Supervisor'),(9457,1400354,9,'Visual Effects Editor'),(9457,1401594,1,'Still Photographer'),(9457,1401801,9,'CG Supervisor'),(9457,1407685,5,'First Assistant Editor'),(9457,1410337,9,'Scenic Artist'),(9457,1410346,7,'Construction Coordinator'),(9457,1410589,2,'Script Supervisor'),(9457,1415464,6,'Sound Effects Editor'),(9457,1421693,8,'Hairstylist'),(9457,1421695,7,'Construction Coordinator'),(9457,1421696,7,'Sculptor'),(9457,1421706,6,'Sound Re-Recording Mixer'),(9457,1421720,9,'Special Effects Coordinator'),(9457,1421721,9,'Special Effects Coordinator'),(9457,1421722,9,'Special Effects Coordinator'),(9457,1421723,9,'Special Effects Coordinator'),(9457,1421724,10,'Visual Effects Producer'),(9457,1421725,9,'CG Supervisor'),(9457,1421726,10,'Visual Effects Supervisor'),(9457,1421729,9,'Visual Effects Editor'),(9457,1421731,1,'Camera Operator'),(9457,1421739,1,'Camera Operator'),(9457,1421741,1,'Camera Operator'),(9457,1421749,8,'Set Costumer'),(9457,1421754,9,'Transportation Coordinator'),(9457,1421755,2,'Script Supervisor'),(9457,1421758,9,'Unit Publicist'),(9457,1447503,10,'Modeling'),(1494,607,4,'Screenplay'),(1494,607,2,'Director'),(1494,1351,3,'Producer'),(1494,1353,3,'Producer'),(1494,1358,7,'Production Design'),(1494,1619,4,'Screenplay'),(1494,12455,6,'Original Music Composer'),(1494,17331,4,'Screenplay'),(1494,17333,4,'Screenplay'),(1494,17359,10,'Visual Effects'),(1494,17378,8,'Costume Design'),(1494,17379,5,'Editor'),(1494,17395,4,'Author'),(1494,57913,1,'Director of Photography'),(1494,1445966,6,'Sound Designer'),(2185,1213,6,'Original Music Composer'),(2185,5174,2,'Director'),(2185,5174,3,'Producer'),(2185,9645,1,'Director of Photography'),(2185,9647,5,'Editor'),(2185,52053,4,'Screenplay'),(6639,294,5,'Editor'),(6639,3656,1,'Director of Photography'),(6639,2948,3,'Executive Producer'),(6639,3558,4,'Screenplay'),(6639,8576,6,'Original Music Composer'),(6639,10723,2,'Director'),(6639,11714,8,'Costume Design'),(6639,50983,4,'Novel'),(6639,50984,3,'Producer'),(6639,50987,3,'Executive Producer'),(6639,50988,3,'Executive Producer'),(6639,50989,3,'Executive Producer'),(6639,50990,3,'Executive Producer'),(6639,50991,3,'Executive Producer'),(6639,50992,3,'Executive Producer'),(6639,50993,3,'Executive Producer'),(5503,1044,1,'Director of Photography'),(5503,1213,6,'Original Music Composer'),(5503,7671,4,'Screenplay'),(5503,2031,3,'Casting'),(5503,2532,3,'Casting'),(5503,5580,3,'Co-Producer'),(5503,5584,5,'Editor'),(5503,8428,8,'Costume Design'),(5503,11475,7,'Art Direction'),(5503,10764,3,'Producer'),(5503,12989,2,'Director'),(5503,15842,5,'Editor'),(5503,16601,10,'Visual Effects Supervisor'),(5503,16614,7,'Production Design'),(5503,18387,5,'Editor'),(5503,21725,3,'Executive Producer'),(5503,28239,4,'Screenplay'),(5503,28239,4,'Story'),(5503,36038,3,'Unit Production Manager'),(5503,43777,3,'Executive Producer'),(5503,43777,4,'Characters'),(5503,53291,5,'Editor'),(5503,57076,3,'Co-Producer'),(5503,58208,5,'Editor'),(5503,69895,3,'Co-Producer'),(5503,958460,7,'Set Decoration'),(5503,1412250,1,'Camera Operator'),(5503,1567079,3,'Unit Production Manager'),(5503,1628600,8,'Costume Supervisor'),(5503,1630675,5,'Color Timer'),(5503,1654393,5,'Editor'),(819,491,6,'Original Music Composer'),(819,322,3,'Producer'),(819,949,3,'Casting'),(819,3769,1,'Director of Photography'),(819,8246,2,'Director'),(819,8246,4,'Screenplay'),(819,8246,3,'Producer'),(819,5166,5,'Editor'),(819,9178,7,'Production Design'),(819,9255,8,'Costume Design'),(819,12253,4,'Novel'),(819,12253,3,'Producer'),(819,12255,3,'Executive Producer'),(819,12256,3,'Producer'),(819,12257,7,'Art Direction'),(819,12258,7,'Set Decoration'),(1369,798,8,'Costume Design'),(1369,898,5,'Editor'),(1369,1098,5,'Editor'),(1369,1760,6,'Original Music Composer'),(1369,2710,4,'Screenplay'),(1369,6603,1,'Director of Photography'),(1369,8848,7,'Set Decoration'),(1369,8870,8,'Makeup Artist'),(1369,10187,7,'Production Design'),(1369,12882,3,'Producer'),(1369,16161,6,'Music Editor'),(1369,16483,4,'Screenplay'),(1369,16552,6,'Supervising Sound Editor'),(1369,13457,9,'Special Effects Coordinator'),(1369,16566,2,'Director'),(1369,16567,5,'Editor'),(1369,16568,5,'Editor'),(1369,16569,5,'Editor'),(1369,16570,3,'Casting'),(1369,16571,7,'Set Decoration'),(1369,16572,8,'Hairstylist'),(1369,16573,6,'Sound Editor'),(1369,16574,9,'Special Effects'),(1369,16575,9,'Stunt Coordinator'),(1369,16576,9,'Stunts'),(1369,16577,9,'Stunts'),(9623,557,8,'Costume Design'),(9623,1213,6,'Original Music Composer'),(9623,11472,3,'Producer'),(9623,12926,5,'Editor'),(9623,13622,1,'Director of Photography'),(9623,18069,2,'Director'),(9623,18330,3,'Producer'),(9623,57465,3,'Executive Producer'),(9623,57862,4,'Screenplay'),(9623,58203,4,'Novel'),(834,68602,3,'Producer'),(834,3950,2,'Director'),(834,3952,3,'Producer'),(834,3953,3,'Producer'),(834,3954,3,'Producer'),(834,3957,3,'Executive Producer'),(834,3958,3,'Executive Producer'),(834,3962,8,'Costume Design'),(834,3964,7,'Production Design'),(834,3965,3,'Casting'),(834,7229,6,'Original Music Composer'),(834,7230,5,'Editor'),(834,12374,3,'Producer'),(834,12382,1,'Director of Photography'),(834,12383,7,'Art Direction'),(834,12384,7,'Set Decoration'),(834,54777,3,'Casting'),(834,1034748,3,'Casting'),(834,1248221,3,'Executive Producer'),(834,1248221,4,'Screenplay'),(711,738,3,'Producer'),(711,4475,5,'Editor'),(711,5216,2,'Director'),(711,9425,6,'Music'),(711,10683,4,'Screenplay'),(711,10684,3,'Producer'),(711,10685,3,'Producer'),(711,10686,3,'Producer'),(711,10687,3,'Producer'),(711,10688,1,'Director of Photography'),(509,668,3,'Casting'),(509,3310,5,'Editor'),(509,5491,7,'Production Design'),(509,7018,4,'Screenplay'),(509,7019,3,'Producer'),(509,7017,2,'Director'),(509,7020,6,'Original Music Composer'),(509,7021,1,'Director of Photography'),(509,7022,8,'Costume Design'),(509,7023,9,'Special Effects'),(509,7024,9,'Stunts'),(7443,2359,3,'Executive Producer'),(7443,2485,3,'Casting'),(7443,5553,6,'Original Music Composer'),(7443,7314,2,'Director'),(7443,7314,3,'Producer'),(7443,7314,4,'Story'),(7443,7313,10,'Animation'),(7443,7316,9,'Additional Dialogue'),(7443,11098,6,'Original Music Composer'),(7443,12058,4,'Storyboard'),(7443,12062,3,'Executive Producer'),(7443,12079,4,'Storyboard'),(7443,12095,4,'Storyboard'),(7443,21879,4,'Storyboard'),(7443,53304,2,'Director'),(7443,53304,3,'Producer'),(7443,53304,4,'Story'),(7443,53329,3,'Producer'),(7443,53331,1,'Director of Photography'),(7443,53332,1,'Director of Photography'),(7443,52845,4,'Screenplay'),(7443,59803,4,'Storyboard'),(7443,109189,10,'Animation Supervisor'),(7443,109190,10,'Animation'),(7443,172733,5,'Editor'),(7443,190401,9,'Additional Dialogue'),(7443,554218,10,'Animation'),(7443,565297,10,'Animation'),(7443,587314,10,'Animation'),(7443,954958,10,'Animation'),(7443,980168,4,'Storyboard'),(7443,982685,3,'Producer'),(7443,1082203,3,'Line Producer'),(7443,1120755,3,'Producer'),(7443,1120756,5,'Editor'),(7443,1120757,5,'Editor'),(7443,1215807,10,'Animation'),(7443,1308837,10,'Animation'),(7443,1308881,10,'Animation'),(7443,1308887,10,'Animation'),(7443,1345578,3,'Executive Producer'),(7443,1401375,10,'Animation'),(7443,1444273,10,'Animation'),(7443,1448042,10,'Animation'),(7443,1453503,10,'Animation'),(7443,1453519,10,'Animation'),(7443,1453521,10,'Animation'),(7443,1453601,10,'Animation'),(7443,1453649,10,'Animation'),(7443,1453962,10,'Animation'),(7443,1453974,10,'Animation'),(7443,1454669,10,'Animation'),(7443,1454670,10,'Animation'),(7443,1454689,10,'Animation'),(7443,1454696,10,'Animation'),(7443,1454697,10,'Animation'),(7443,1454698,4,'Storyboard'),(7443,1454699,10,'Animation'),(7443,1454701,10,'Animation'),(7443,1454703,10,'Animation'),(7443,1454705,2,'Layout'),(7443,1454707,10,'Animation'),(7443,1454708,10,'Animation'),(7443,1454710,10,'Animation'),(7443,1454711,4,'Storyboard'),(7443,1454712,10,'Animation'),(7443,1454713,10,'Animation'),(7443,1454714,4,'Storyboard'),(7443,1454715,10,'Animation'),(7443,1454716,4,'Storyboard'),(7443,1454717,10,'Animation'),(7443,1454718,10,'Animation'),(7443,1454719,10,'Animation'),(7443,1454720,10,'Animation'),(7443,1454721,10,'Animation'),(7443,1454722,4,'Storyboard'),(5966,518,3,'Producer'),(5966,3285,1,'Director of Photography'),(5966,3310,5,'Editor'),(5966,10572,6,'Original Music Composer'),(5966,5381,3,'Producer'),(5966,5382,3,'Producer'),(5966,12598,11,'Gaffer'),(5966,12923,3,'Executive Producer'),(5966,17871,2,'Director'),(5966,17871,4,'Writer'),(5966,23550,8,'Makeup Artist'),(5966,28636,7,'Production Design'),(5966,29207,2,'First Assistant Director'),(5966,52161,6,'Music Supervisor'),(5966,46942,5,'Editor'),(5966,46943,3,'Casting'),(5966,47294,8,'Costume Design'),(5966,51987,7,'Art Direction'),(5966,63935,9,'Stunt Coordinator'),(5966,75377,8,'Key Makeup Artist'),(5966,75624,9,'Choreographer'),(5966,83724,3,'Casting Associate'),(5966,91059,3,'Unit Production Manager'),(5966,95832,7,'Assistant Property Master'),(5966,230436,3,'ADR Voice Casting'),(5966,936841,7,'Set Designer'),(5966,958278,7,'Set Decoration'),(5966,1172442,7,'Set Designer'),(5966,1188380,3,'Executive Producer'),(5966,1301634,11,'Electrician'),(5966,1319137,8,'Costume Supervisor'),(5966,1319843,8,'Makeup Department Head'),(5966,1326091,8,'Key Costumer'),(5966,1339459,6,'Music Editor'),(5966,1344264,5,'Dialogue Editor'),(5966,1377228,1,'Steadicam Operator'),(5966,1377228,1,'Camera Operator'),(5966,1386906,7,'Construction Coordinator'),(5966,1391605,2,'Script Supervisor'),(5966,1392615,3,'Location Manager'),(5966,1395463,1,'Camera Operator'),(5966,1403438,6,'Supervising Sound Editor'),(5966,1403443,5,'Dialogue Editor'),(5966,1405728,8,'Key Costumer'),(5966,1408367,9,'Unit Publicist'),(5966,1409821,8,'Hairstylist'),(5966,1409821,8,'Makeup Artist'),(5966,1415342,3,'Production Coordinator'),(5966,1417412,7,'Leadman'),(5966,1428582,8,'Hair Department Head'),(5966,1435194,6,'Supervising Music Editor'),(5966,1439749,5,'Associate Editor'),(5966,1439766,7,'Property Master'),(5966,1446987,7,'Art Department Coordinator'),(5966,1452614,8,'Key Hair Stylist'),(5966,1473758,3,'Associate Producer'),(5966,1476175,1,'First Assistant Camera'),(5966,1511737,6,'Sound Mixer'),(5966,1530086,3,'Casting Associate'),(5966,1530870,9,'Post Production Supervisor'),(5966,1533073,8,'Hairstylist'),(5966,1537179,1,'Still Photographer'),(5966,1551222,6,'Production Sound Mixer'),(5966,1552873,5,'Color Timer'),(5966,1554041,6,'Orchestrator'),(5966,1555667,8,'Set Costumer'),(5966,1559095,9,'Special Effects Coordinator'),(5966,1561180,6,'Assistant Sound Editor'),(5966,1593989,6,'Music Editor'),(5966,1597956,1,'First Assistant Camera'),(5966,1673528,9,'Choreographer'),(5966,1701713,7,'Art Department Assistant'),(5966,1701736,1,'Key Grip'),(5966,1701742,9,'Craft Service'),(5966,1701752,9,'Transportation Captain'),(5966,1701753,9,'Transportation Co-Captain'),(5966,1701758,5,'First Assistant Editor'),(5966,1701765,3,'Production Accountant'),(5966,1701769,6,'Boom Operator'),(5966,1701770,6,'Assistant Sound Editor'),(5966,1701771,6,'Foley Editor'),(5966,1733142,5,'Negative Cutter'),(5966,1764094,5,'Assistant Editor'),(5966,1769350,9,'Transportation Coordinator'),(5966,1791939,1,'Camera Loader'),(5966,1830046,2,'Second Assistant Director'),(5966,1830057,8,'Set Costumer'),(5966,1830063,11,'Rigging Gaffer'),(5966,1830066,7,'Storyboard Designer'),(8095,3258,9,'Sound Recordist'),(8095,10536,6,'Original Music Composer'),(8095,7205,7,'Set Designer'),(8095,7646,3,'Producer'),(8095,7688,7,'Set Decoration'),(8095,7690,3,'Production Manager'),(8095,9061,7,'Art Direction'),(8095,9587,7,'Set Decoration'),(8095,9803,9,'Sound Recordist'),(8095,10601,2,'Director'),(8095,10601,4,'Screenplay'),(8095,13270,1,'Director of Photography'),(8095,14962,5,'Editor'),(8095,22088,7,'Art Direction'),(8095,24797,8,'Costume Design'),(8095,25806,8,'Makeup Artist'),(8095,30106,7,'Art Direction'),(8095,30208,4,'Screenplay'),(8095,31843,4,'Screenplay'),(8095,38229,8,'Costume Design'),(8095,40052,1,'Camera Operator'),(8095,66641,1,'Camera Operator'),(8095,93962,7,'Art Direction'),(8095,142625,9,'Choreographer'),(8095,1000433,7,'Art Direction'),(8095,1005573,7,'Art Direction'),(8095,1118234,4,'Novel'),(8095,1118235,3,'Executive Producer'),(8095,1118257,7,'Production Design'),(8095,1207585,7,'Assistant Art Director'),(8095,1335586,7,'Set Decoration'),(8095,1338850,2,'Assistant Director'),(8095,1378839,1,'Still Photographer'),(8095,1411150,8,'Hairstylist'),(8095,1411152,3,'Production Manager'),(8095,1411156,9,'Scenic Artist'),(8095,1411160,2,'Script Supervisor'),(2637,68602,3,'Producer'),(2637,3189,5,'Editor'),(2637,3953,3,'Producer'),(2637,6923,7,'Art Direction'),(2637,7494,3,'Casting'),(2637,7495,3,'Casting'),(2637,10365,7,'Production Design'),(2637,11676,2,'Director'),(2637,17765,1,'Director of Photography'),(2637,20172,8,'Costume Design'),(2637,27547,4,'Novel'),(2637,27548,4,'Screenplay'),(2637,27549,3,'Producer'),(2637,59429,7,'Set Decoration'),(2637,161787,9,'Stunt Coordinator'),(2637,1172414,1,'Still Photographer'),(2637,1401989,1,'Steadicam Operator'),(2637,1492941,2,'Script Supervisor'),(2637,1565007,6,'Production Sound Mixer'),(709,8380,7,'Art Direction'),(709,2874,3,'Casting'),(709,3275,3,'Casting'),(709,9856,4,'Characters'),(709,9861,3,'Producer'),(709,8524,7,'Production Design'),(709,7714,6,'Original Music Composer'),(709,8526,7,'Set Decoration'),(709,9858,4,'Screenplay'),(709,10179,2,'Director'),(709,10493,3,'Producer'),(709,10495,5,'Editor'),(709,10666,3,'Associate Producer'),(709,10668,1,'Director of Photography'),(709,10676,6,'Songs'),(709,10677,7,'Art Direction'),(709,10678,8,'Costume Design'),(709,69678,4,'Screenplay'),(709,69678,3,'Producer'),(2749,11423,7,'Production Design'),(2749,2073,3,'Casting'),(2749,7238,8,'Costume Design'),(2749,4607,9,'Stunts'),(2749,10575,7,'Art Direction'),(2749,5291,8,'Assistant Costume Designer'),(2749,6044,3,'Casting'),(2749,6468,3,'Producer'),(2749,6626,1,'Director of Photography'),(2749,8432,9,'Stunts'),(2749,9351,6,'Music Editor'),(2749,9568,9,'Stunts'),(2749,15208,3,'Producer'),(2749,16551,8,'Makeup Artist'),(2749,17218,2,'Assistant Director'),(2749,18095,1,'Still Photographer'),(2749,19452,5,'Editor'),(2749,56765,6,'Sound Designer'),(2749,56765,6,'Sound Re-Recording Mixer'),(2749,21560,7,'Set Designer'),(2749,22077,3,'Executive In Charge Of Production'),(2749,22233,1,'Grip'),(2749,23787,8,'Makeup Artist'),(2749,10866,9,'Thanks'),(2749,27846,2,'Director'),(2749,27846,3,'Producer'),(2749,27846,4,'Writer'),(2749,28154,3,'Producer'),(2749,28155,6,'Original Music Composer'),(2749,28155,6,'Orchestrator'),(2749,28156,6,'Original Music Composer'),(2749,28156,6,'Orchestrator'),(2749,29210,3,'Executive In Charge Of Post Production'),(2749,34540,9,'Stunts'),(2749,45381,9,'Stunts'),(2749,46393,9,'Thanks'),(2749,53593,9,'Stunts'),(2749,58257,6,'Orchestrator'),(2749,60130,3,'Unit Production Manager'),(2749,11095,2,'Assistant Director'),(2749,11095,3,'Associate Producer'),(2749,62063,7,'Set Decoration'),(2749,92329,8,'Makeup Artist'),(2749,92354,8,'Set Dressing Artist'),(2749,92355,8,'Set Dressing Artist'),(2749,92488,9,'Stunts'),(2749,92502,9,'Stunts'),(2749,92503,9,'Stunts'),(2749,70052,3,'Executive Producer'),(2749,71521,9,'Stunts'),(2749,80157,6,'Sound Mixer'),(2749,11063,7,'Set Decoration'),(2749,91243,9,'Stunt Coordinator'),(2749,106933,9,'Stunts'),(2749,108146,1,'First Assistant Camera'),(2749,142159,9,'Stunts'),(2749,142162,9,'Stunts'),(2749,177205,9,'Stunts'),(2749,188773,9,'Stunts'),(2749,195303,9,'Driver'),(2749,206398,9,'Stunts'),(2749,230019,1,'Director of Photography'),(2749,440767,2,'Script Supervisor'),(2749,999693,9,'Stunts'),(2749,1019062,9,'Propmaker'),(2749,1020527,5,'Color Timer'),(2749,1035777,9,'Stand In'),(2749,1046600,5,'First Assistant Editor'),(2749,1070138,8,'Makeup Artist'),(2749,1116937,6,'Foley'),(2749,1178665,7,'Assistant Art Director'),(2749,1185373,7,'Leadman'),(2749,1190936,9,'Driver'),(2749,1214872,9,'Set Production Assistant'),(2749,1215672,9,'Visual Effects Editor'),(2749,1231235,9,'Stunts'),(2749,1238393,9,'Thanks'),(2749,1249289,4,'Storyboard'),(2749,1279727,9,'Stunts'),(2749,1299201,8,'Makeup Artist'),(2749,1318092,10,'Special Effects Supervisor'),(2749,1323076,8,'Makeup Artist'),(2749,1327407,1,'Grip'),(2749,1332245,9,'Stunts'),(2749,1333903,8,'Set Costumer'),(2749,1336514,7,'Art Department Coordinator'),(2749,1339468,2,'Script Supervisor'),(2749,1342242,6,'Sound Re-Recording Mixer'),(2749,1372093,11,'Lighting Technician'),(2749,1378751,7,'Set Designer'),(2749,1387429,9,'Special Effects'),(2749,1391122,8,'Set Dressing Artist'),(2749,1391697,9,'Stunts'),(2749,1395281,1,'Camera Operator'),(2749,1395358,9,'Scenic Artist'),(2749,1397823,6,'Foley'),(2749,1399126,9,'Stunts'),(2749,1400371,9,'Stunts'),(2749,1400536,5,'First Assistant Editor'),(2749,1401354,3,'Production Coordinator'),(2749,1402077,11,'Electrician'),(2749,1404815,9,'Stunts'),(2749,1405326,11,'Electrician'),(2749,1406053,9,'Video Assist Operator'),(2749,1406084,9,'Property Master'),(2749,1406854,3,'Location Manager'),(2749,1407014,7,'Leadman'),(2749,1407237,9,'Transportation Captain'),(2749,1408191,10,'Visual Effects Supervisor'),(2749,1414994,9,'Property Master'),(2749,1416432,11,'Electrician'),(2749,1416434,9,'Video Assist Operator'),(2749,1416435,9,'Video Assist Operator'),(2749,1419106,11,'Electrician'),(2749,1428834,5,'Color Timer'),(2749,1431630,1,'Camera Operator'),(2749,1431630,1,'Steadicam Operator'),(2749,1435657,11,'Lighting Technician'),(2749,1442504,7,'Construction Coordinator'),(2749,1446678,9,'Sound Recordist'),(2749,1449158,9,'Makeup Effects'),(2749,1454076,9,'Stunts'),(2749,1455294,8,'Costume Supervisor'),(2749,1456721,9,'Stunts'),(2749,1469634,2,'Script Supervisor'),(2749,1490952,9,'Driver'),(2749,1492753,6,'Orchestrator'),(2749,1510481,9,'Stunts'),(2749,1513524,9,'Stand In'),(2749,1513523,9,'Stunts'),(2749,1530091,9,'Stunts'),(2749,1531472,9,'Special Effects Coordinator'),(2749,1531504,6,'Music Editor'),(2749,1535541,6,'Sound Mixer'),(2749,1535816,3,'Unit Production Manager'),(2749,1542406,9,'Stunts'),(2749,1550388,9,'Driver'),(2749,1550725,9,'Stunts'),(2749,1550727,9,'Transportation Coordinator'),(2749,1552000,9,'Thanks'),(2749,1552518,9,'Propmaker'),(2749,1553268,10,'Visual Effects'),(2749,1554594,6,'Scoring Mixer'),(2749,1555495,9,'Cableman'),(2749,1558206,9,'Loader'),(2749,1559957,9,'Special Effects'),(2749,1560906,3,'Production Coordinator'),(2749,1569843,6,'Scoring Mixer'),(2749,1577057,9,'Post Production Supervisor'),(2749,1605363,8,'Makeup Artist'),(2749,1614187,11,'Rigging Gaffer'),(2749,1619976,7,'Construction Foreman'),(2749,1621233,7,'Painter'),(2749,1624607,9,'Post Production Supervisor'),(2749,1624607,3,'Associate Producer'),(2749,1647465,9,'Production Controller'),(2749,1647710,1,'Grip'),(2749,1647987,8,'Makeup Artist'),(2749,1647988,8,'Makeup Artist'),(2749,1647989,8,'Key Hair Stylist'),(2749,1647990,3,'Production Supervisor'),(2749,1647990,3,'Production Accountant'),(2749,1647991,3,'Unit Production Manager'),(2749,1647992,3,'Production Supervisor'),(2749,1647993,2,'Assistant Director'),(2749,1647994,9,'Propmaker'),(2749,1647995,9,'Propmaker'),(2749,1647996,9,'Property Master'),(2749,1647997,9,'Propmaker'),(2749,1647998,9,'Propmaker'),(2749,1647999,8,'Set Dressing Artist'),(2749,1648000,9,'Propmaker'),(2749,1648001,7,'Painter'),(2749,1648002,7,'Construction Coordinator'),(2749,1648003,7,'Assistant Art Director'),(2749,1648004,7,'Construction Foreman'),(2749,1648005,7,'Leadman'),(2749,1648006,9,'Propmaker'),(2749,1648007,9,'Propmaker'),(2749,1648008,9,'Propmaker'),(2749,1648009,7,'Painter'),(2749,1648010,7,'Construction Foreman'),(2749,1648011,7,'Construction Foreman'),(2749,1648012,7,'Standby Painter'),(2749,1648015,9,'Propmaker'),(2749,1648016,9,'Propmaker'),(2749,1648017,9,'Propmaker'),(2749,1648018,6,'Boom Operator'),(2749,1648019,6,'Boom Operator'),(2749,1648020,6,'Sound'),(2749,1648021,3,'Production Manager'),(2749,1648022,10,'Visual Effects Coordinator'),(2749,1648023,10,'Visual Effects Producer'),(2749,1648024,11,'Best Boy Electric'),(2749,1648025,11,'Best Boy Electric'),(2749,1648026,1,'Director of Photography'),(2749,1648027,11,'Lighting Technician'),(2749,1648028,9,'Loader'),(2749,1648029,7,'Location Scout'),(2749,1648030,9,'Production Intern'),(2749,1648031,9,'Production Office Assistant'),(2749,1648032,11,'Rigging Gaffer'),(2749,1648033,9,'Second Unit Cinematographer'),(2749,1648034,8,'Set Costumer'),(2749,1648035,9,'Transportation Coordinator'),(2749,1648036,9,'Unit Publicist'),(2749,1648037,9,'Craft Service'),(2749,1648038,9,'Craft Service'),(2749,1648039,9,'Craft Service'),(2749,1648040,9,'Craft Service'),(2749,1648041,9,'Driver'),(2749,1648042,9,'Driver'),(2749,1648043,9,'Driver'),(2749,1648044,9,'Driver'),(2749,1648045,9,'Driver'),(2749,1648046,9,'Driver'),(2749,1648047,9,'Driver'),(2749,1648048,9,'Driver'),(2749,1648049,9,'Driver'),(2749,1648050,9,'Driver'),(2749,1648051,9,'Driver'),(2749,1648052,9,'Driver'),(2749,1648053,9,'Driver'),(2749,1648054,9,'Driver'),(2749,1648055,9,'Driver'),(2749,1648056,9,'Driver'),(2749,1648057,9,'Driver'),(2749,1648058,9,'Driver'),(2749,1648059,9,'Driver'),(2749,1648060,9,'Driver'),(2749,1648061,9,'Driver'),(2749,1648062,9,'Driver'),(2749,1648063,9,'Driver'),(2749,1648064,9,'Driver'),(2749,1648065,9,'Driver'),(2749,1648066,9,'Driver'),(2749,1648067,9,'Driver'),(2749,1648068,9,'Driver'),(2749,1648069,9,'Driver'),(2749,1648070,9,'Driver'),(2749,1648071,9,'Driver'),(2749,1648072,9,'Driver'),(2749,1648073,9,'Driver'),(2749,1648074,9,'Driver'),(2749,1648075,9,'Driver'),(2749,1648076,9,'Driver'),(2749,1648077,9,'Driver'),(2749,1648078,9,'Driver'),(2749,1648079,9,'Driver'),(2749,1648080,9,'Driver'),(2749,1648081,9,'Driver'),(2749,1648082,9,'Driver'),(2749,1648083,9,'Driver'),(2749,1648084,9,'Driver'),(2749,1648085,9,'Driver'),(2749,1648086,9,'Driver'),(2749,1648087,11,'Electrician'),(2749,1648088,11,'Electrician'),(2749,1648089,11,'Electrician'),(2749,1648090,11,'Electrician'),(2749,1648091,11,'Electrician'),(2749,1648092,11,'Electrician'),(2749,1648093,11,'Electrician'),(2749,1648094,11,'Electrician'),(2749,1648095,11,'Electrician'),(2749,1648096,1,'First Assistant Camera'),(2749,1648097,1,'First Assistant Camera'),(2749,1648098,1,'Grip'),(2749,1648099,1,'Grip'),(2749,1648100,1,'Grip'),(2749,1648101,1,'Grip'),(2749,1648102,1,'Grip'),(2749,1648103,1,'Grip'),(2749,1648104,1,'Grip'),(2749,1648105,1,'Grip'),(2749,1648106,1,'Grip'),(2749,1648107,1,'Grip'),(2749,1648108,1,'Grip'),(2749,1648109,3,'Location Manager'),(2749,1648110,3,'Location Manager'),(2749,1648111,3,'Location Manager'),(2749,1648112,9,'Post Production Assistant'),(2749,1648113,9,'Post Production Assistant'),(2749,1648114,9,'Post Production Assistant'),(2749,1648115,3,'Production Coordinator'),(2749,1648116,3,'Production Coordinator'),(2749,1648117,11,'Rigging Grip'),(2749,1648118,11,'Rigging Grip'),(2749,1648119,11,'Rigging Grip'),(2749,1648120,11,'Rigging Grip'),(2749,1648121,11,'Rigging Grip'),(2749,1648122,11,'Rigging Grip'),(2749,1648123,11,'Rigging Grip'),(2749,1648124,9,'Set Medic'),(2749,1648125,9,'Set Medic'),(2749,1648126,9,'Set Medic'),(2749,1648127,9,'Set Production Assistant'),(2749,1648128,9,'Set Production Assistant'),(2749,1648129,9,'Set Production Assistant'),(2749,1648130,9,'Stand In'),(2749,1648131,9,'Stand In'),(2749,1648132,9,'Stand In'),(2749,1648133,9,'Title Graphics'),(2749,1648134,9,'Title Graphics'),(2749,1648135,9,'Transportation Captain'),(2749,1648136,9,'Transportation Captain'),(2749,1648137,9,'Transportation Co-Captain'),(2749,1648138,9,'Transportation Co-Captain'),(2749,1648139,9,'Transportation Co-Captain'),(2749,1648140,9,'Special Effects'),(2749,1648141,9,'Special Effects'),(2749,1648142,9,'Special Effects'),(2749,1648143,9,'Special Effects'),(2749,1648144,9,'Special Effects'),(2749,1648145,9,'Special Effects'),(2749,1648146,9,'Special Effects'),(2749,1648147,9,'Special Effects'),(2749,1648148,9,'Thanks'),(2749,1648149,9,'Thanks'),(2749,1648150,9,'Thanks'),(2749,1648151,9,'Thanks'),(2749,1648152,9,'Thanks'),(2749,1648153,9,'Thanks'),(2749,1648154,9,'Thanks'),(2749,1648155,9,'Thanks'),(2749,1648156,9,'Thanks'),(2749,1648157,9,'Stunts'),(2749,1648158,9,'Stunts'),(2749,1648159,9,'Stunts'),(2749,1648160,9,'Stunts'),(2749,1648161,9,'Stunts'),(2749,1648162,9,'Stunts'),(2749,1648163,9,'Stunts'),(2749,1648164,9,'Stunts'),(2749,1648165,9,'Stunts'),(2749,1648166,9,'Stunts'),(2749,1648167,9,'Stunts'),(2749,1648168,9,'Stunts'),(9607,37,6,'Original Music Composer'),(9607,898,5,'Editor'),(9607,2359,3,'Producer'),(9607,4501,1,'Director of Photography'),(9607,9612,4,'Screenplay'),(9607,8965,3,'Producer'),(9607,58164,2,'Director'),(9607,58165,2,'Director'),(9607,58166,4,'Screenplay'),(9607,58167,4,'Screenplay'),(9607,1460602,10,'Visual Effects'),(1830,2963,3,'Producer'),(1830,4671,5,'Editor'),(1830,6044,3,'Casting'),(1830,6891,3,'Producer'),(1830,8685,2,'Director'),(1830,8685,4,'Screenplay'),(1830,8685,3,'Producer'),(1830,8576,6,'Original Music Composer'),(1830,18956,3,'Producer'),(1830,20305,3,'Producer'),(1830,37767,3,'Producer'),(1830,36859,3,'Producer'),(1830,37768,7,'Production Design'),(1830,23849,7,'Art Direction'),(1830,36624,8,'Costume Design'),(1830,1043831,1,'Director of Photography'),(79,607,2,'Director'),(79,607,3,'Producer'),(79,607,4,'Author'),(79,1334,4,'Author'),(79,1335,4,'Author'),(79,1348,3,'Line Producer'),(79,1349,3,'Executive Producer'),(79,1351,3,'Producer'),(79,1353,3,'Executive Producer'),(79,1355,3,'Producer'),(79,1357,1,'Director of Photography'),(79,1360,6,'Original Music Composer'),(79,1361,5,'Editor'),(79,1362,5,'Editor'),(79,1363,5,'Editor'),(79,1358,7,'Production Design'),(79,1364,7,'Production Design'),(79,21907,8,'Costume Design'),(79,72023,1,'Additional Camera'),(65,275,1,'Director of Photography'),(65,323,2,'Director'),(65,323,3,'Producer'),(65,324,4,'Author'),(65,330,5,'Editor'),(65,331,5,'Editor'),(65,339,3,'Producer'),(65,340,3,'Producer'),(65,1262,3,'Casting'),(65,1890,7,'Production Design'),(65,5154,9,'Transportation Captain'),(65,9349,6,'Supervising Sound Editor'),(65,15525,8,'Key Makeup Artist'),(65,15328,7,'Art Direction'),(65,21707,7,'Set Decoration'),(65,40375,3,'Executive Producer'),(65,40471,8,'Costume Design'),(65,53393,3,'Unit Production Manager'),(65,62639,3,'Co-Producer'),(65,62640,3,'Executive Producer'),(65,92347,7,'Greensman'),(65,83089,6,'Sound Effects Editor'),(65,91092,6,'Production Sound Mixer'),(65,91096,6,'Boom Operator'),(65,110262,5,'First Assistant Editor'),(65,120606,3,'Executive Producer'),(65,138379,7,'Leadman'),(65,143894,2,'First Assistant Director'),(65,169628,9,'Stunt Coordinator'),(65,548412,8,'Makeup Artist'),(65,562684,7,'Set Dresser'),(65,1023593,1,'Still Photographer'),(65,1077381,6,'Sound Effects'),(65,1096860,7,'Standby Painter'),(65,1097795,1,'Grip'),(65,1271735,7,'Set Designer'),(65,1298991,1,'First Assistant Camera'),(65,1315700,8,'Makeup Supervisor'),(65,1330048,8,'Costume Supervisor'),(65,1339445,7,'Construction Coordinator'),(65,1364239,7,'Art Department Assistant'),(65,1378687,9,'Property Master'),(65,1393455,2,'Script Supervisor'),(65,1393858,9,'Stunts'),(65,1395902,11,'Chief Lighting Technician'),(65,1398863,6,'Music Editor'),(65,1399632,6,'Sound Effects Editor'),(65,1404214,6,'Supervising Dialogue Editor'),(65,1409831,1,'Camera Operator'),(65,1417019,9,'Transportation Coordinator'),(65,1424894,8,'Key Hair Stylist'),(65,1425831,1,'Steadicam Operator'),(65,1427570,6,'Assistant Sound Editor'),(65,1432028,3,'Location Manager'),(65,1436199,9,'Unit Publicist'),(65,1439431,5,'Color Timer'),(65,1440309,9,'Dialect Coach'),(65,1461371,6,'Foley'),(65,1478854,6,'Foley Editor'),(65,1537540,5,'Digital Intermediate'),(65,1544638,6,'Sound Re-Recording Mixer'),(65,1546585,6,'First Assistant Sound Editor'),(65,1549054,7,'Art Department Coordinator'),(65,1549055,7,'Construction Foreman'),(65,1549056,7,'Painter'),(65,1549057,9,'Craft Service'),(65,1549059,9,'Driver'),(65,1549062,9,'Propmaker'),(65,1549063,9,'Scenic Artist'),(65,1549064,9,'Security'),(65,1549065,9,'Sound Recordist'),(65,1549066,9,'Special Effects Coordinator'),(65,1549069,3,'Unit Production Manager'),(65,1549071,11,'Electrician'),(65,1549072,11,'Lighting Technician'),(65,1549073,11,'Rigging Gaffer'),(65,1549074,3,'Casting Associate'),(65,1549075,3,'Production Accountant'),(65,1549077,4,'Storyboard'),(65,1549078,9,'Set Production Assistant'),(65,1549079,9,'Technical Supervisor'),(65,1549080,3,'Production Office Coordinator'),(65,1733138,7,'Assistant Property Master'),(65,1733139,1,'Camera Loader'),(65,1733140,1,'Dolly Grip'),(65,1733141,8,'Key Costumer'),(65,1733142,5,'Negative Cutter'),(65,1733143,3,'Assistant Production Coordinator'),(65,1733144,3,'Casting Assistant'),(65,1733145,5,'Dialogue Editor'),(65,1733146,6,'Utility Sound'),(65,1734699,2,'Second Assistant Director'),(9476,472,6,'Production Sound Mixer'),(9476,6410,3,'Casting'),(9476,1225,6,'Original Music Composer'),(9476,2626,7,'Production Design'),(9476,4723,2,'Director'),(9476,4723,3,'Producer'),(9476,4723,4,'Writer'),(9476,10203,9,'Fight Choreographer'),(9476,11001,5,'Editor'),(9476,33017,9,'Second Unit'),(9476,33017,9,'Stunt Coordinator'),(9476,20065,1,'Director of Photography'),(9476,25054,3,'Producer'),(9476,51612,3,'Producer'),(9476,63131,7,'Art Direction'),(9476,112875,6,'ADR Supervisor'),(9476,119115,7,'Set Decoration'),(9476,119116,7,'Set Decoration'),(9476,119117,8,'Costume Design'),(9476,238637,3,'Production Accountant'),(9476,548431,6,'Boom Operator'),(9476,554888,6,'Sound Effects Designer'),(9476,957282,3,'Local Casting'),(9476,960074,6,'Sound Effects Editor'),(9476,1046115,5,'First Assistant Editor'),(9476,1077835,9,'Stunts'),(9476,1204836,6,'Sound Effects Editor'),(9476,1327792,8,'Costume Supervisor'),(9476,1338311,6,'Foley Editor'),(9476,1341138,6,'Sound Re-Recording Mixer'),(9476,1349536,8,'Wardrobe Supervisor'),(9476,1352979,6,'Music Editor'),(9476,1360097,5,'Dialogue Editor'),(9476,1377503,1,'Steadicam Operator'),(9476,1387570,1,'Still Photographer'),(9476,1388899,1,'Additional Camera'),(9476,1391572,6,'Sound Re-Recording Mixer'),(9476,1397822,6,'Supervising Sound Editor'),(9476,1398913,9,'Property Master'),(9476,1400092,1,'Aerial Director of Photography'),(9476,1401703,9,'Digital Effects Supervisor'),(9476,1403762,10,'Visual Effects Producer'),(9476,1404221,10,'Visual Effects Supervisor'),(9476,1408672,6,'ADR Editor'),(9476,1410205,2,'Script Supervisor'),(9476,1425503,11,'Electrician'),(9476,1425514,9,'Transportation Captain'),(9476,1430188,1,'First Assistant Camera'),(9476,1438477,11,'Chief Lighting Technician'),(9476,1443977,8,'Makeup Artist'),(9476,1463196,7,'Set Designer'),(9476,1463375,4,'Storyboard'),(9476,1464518,9,'Visual Effects Editor'),(9476,1500281,7,'Assistant Property Master'),(9476,1545169,6,'Orchestrator'),(9476,1548694,9,'Sound Recordist'),(9476,1551913,10,'Digital Compositors'),(9476,1562248,5,'Color Timer'),(9476,1570200,7,'Set Decoration Buyer'),(9476,1570201,7,'Standby Painter'),(9476,1570202,1,'Camera Operator'),(9476,1570203,1,'Camera Technician'),(9476,1570206,8,'Assistant Costume Designer'),(9476,1570207,8,'Key Hair Stylist'),(9476,1570207,8,'Key Makeup Artist'),(9476,1570208,7,'Set Dresser'),(9476,1570210,9,'Armorer'),(9476,1570212,9,'Cableman'),(9476,1570213,9,'Choreographer'),(9476,1570214,1,'Camera Loader'),(9476,1570216,9,'Set Production Assistant'),(9476,1570217,9,'Special Effects Coordinator'),(9476,1570218,3,'Unit Production Manager'),(9476,1570219,9,'Unit Publicist'),(9476,1570220,9,'Video Assist Operator'),(9476,1570221,2,'Assistant Director'),(9476,1570222,3,'Casting Associate'),(9476,1570224,3,'Location Manager'),(9476,1570227,3,'Production Coordinator'),(9476,1570229,3,'Production Manager'),(9476,1570230,3,'Production Supervisor'),(9476,1570240,6,'Foley'),(9476,1570241,6,'Assistant Sound Editor'),(9476,1570242,10,'Special Effects Supervisor'),(9476,1570244,10,'Visual Effects'),(9476,1611814,6,'Apprentice Sound Editor'),(9476,1614109,8,'Makeup Supervisor'),(9476,1708739,3,'Casting Assistant'),(9476,1733019,6,'Musician'),(9476,1733132,5,'Negative Cutter'),(9476,1745954,1,'Key Grip'),(9476,1745955,1,'Grip'),(9476,1745974,2,'First Assistant Director'),(9476,1745975,2,'Second Assistant Director'),(9476,1745986,3,'Assistant Production Coordinator'),(745,2952,3,'Casting'),(745,136,3,'Executive Producer'),(745,136,3,'Unit Production Manager'),(745,489,3,'Producer'),(745,498,8,'Costume Design'),(745,664,3,'Producer'),(745,1213,6,'Original Music Composer'),(745,1890,7,'Art Direction'),(745,16300,1,'Director of Photography'),(745,6583,3,'Casting Associate'),(745,5327,5,'Editor'),(745,5327,9,'Second Unit Cinematographer'),(745,5664,3,'Producer'),(745,10958,7,'Set Decoration'),(745,9624,9,'Stunt Coordinator'),(745,11614,2,'Director'),(745,11614,4,'Writer'),(745,11620,7,'Production Design'),(745,13075,9,'Studio Teachers'),(745,13306,8,'Prosthetic Supervisor'),(745,32492,8,'Key Hair Stylist'),(745,60109,3,'Casting Associate'),(745,60190,9,'Post Production Supervisor'),(745,73667,1,'Additional Photography'),(745,84962,3,'Production Coordinator'),(745,91069,4,'Storyboard'),(745,91115,1,'Camera Operator'),(745,122260,9,'Stunts'),(745,936765,6,'Orchestrator'),(745,958493,2,'Assistant Director'),(745,1065246,11,'Electrician'),(745,1278542,9,'Aerial Coordinator'),(745,1323768,8,'Costume Supervisor'),(745,1373506,9,'Thanks'),(745,1378726,9,'Dialect Coach'),(745,1389568,7,'Construction Coordinator'),(745,1389575,3,'Location Manager'),(745,1399876,1,'Still Photographer'),(745,1406904,5,'First Assistant Editor'),(745,1407223,8,'Hairstylist'),(745,1407711,11,'Lighting Technician'),(745,1408779,5,'Dialogue Editor'),(745,1412081,8,'Makeup Artist'),(745,1415465,6,'Sound Effects Editor'),(745,1418489,9,'Unit Publicist'),(745,1424151,8,'Makeup Artist'),(745,1440877,10,'Special Effects Supervisor'),(745,1458403,7,'Set Decoration Buyer'),(745,1459199,7,'Property Master'),(745,1468015,2,'Script Supervisor'),(745,1472169,6,'Sound Designer'),(745,1472169,6,'Supervising Sound Editor'),(745,1494761,2,'Assistant Director'),(745,1525908,5,'Assistant Editor'),(745,1534484,7,'Assistant Art Director'),(745,1534668,6,'Music Editor'),(745,1536376,10,'Visual Effects Producer'),(745,1546167,9,'Systems Administrators & Support'),(745,1546187,11,'Rigging Gaffer'),(745,1548277,9,'Digital Effects Supervisor'),(745,1548587,9,'Driver'),(745,1552201,6,'Sound Mixer'),(745,1552201,6,'Supervising Sound Editor'),(745,1562588,6,'Boom Operator'),(745,1573098,9,'Scenic Artist'),(745,1573100,9,'Set Medic'),(745,1573104,9,'Transportation Co-Captain'),(745,1573105,9,'Video Assist Operator'),(745,1573109,3,'Production Accountant'),(745,1587366,9,'Security'),(745,1622498,6,'Music'),(745,1657914,11,'Best Boy Electric'),(745,1674649,7,'Greensman'),(745,1674650,1,'Key Grip'),(745,1674660,9,'Stand In'),(745,1674661,9,'Transportation Coordinator'),(745,1674668,3,'Production Supervisor'),(745,1748860,9,'Projection'),(745,1755974,7,'Leadman'),(745,1755975,7,'Sculptor'),(745,1755978,1,'First Assistant Camera'),(745,1755980,8,'Set Dressing Artist'),(745,1755982,9,'Carpenter'),(745,1755983,9,'Craft Service'),(745,1755984,9,'Post Production Assistant'),(745,1755987,5,'Color Timer'),(745,1756510,11,'Rigging Grip'),(745,1756519,6,'Assistant Sound Editor'),(745,1756520,6,'Foley Editor'),(1885,61,4,'Screenplay'),(1885,897,3,'Casting'),(1885,1888,3,'Producer'),(1885,10494,6,'Original Music Composer'),(1885,11476,8,'Costume Design'),(1885,16160,8,'Hairstylist'),(1885,16176,7,'Set Decoration'),(1885,14843,1,'Director of Photography'),(1885,16513,2,'Director'),(1885,16513,5,'Editor'),(1885,16516,3,'Casting'),(1885,16517,7,'Production Design'),(1885,23913,5,'Editor'),(1885,23914,5,'Editor'),(1885,960923,3,'Casting'),(1885,1193327,2,'Script Supervisor'),(1885,1443053,7,'Construction Coordinator'),(1885,1456489,8,'Makeup Artist'),(1885,1531472,9,'Special Effects'),(1885,1534429,8,'Costume Design'),(165,37,6,'Original Music Composer'),(165,24,2,'Director'),(165,24,4,'Characters'),(165,24,4,'Story'),(165,30,3,'Associate Producer'),(165,38,5,'Editor'),(165,488,3,'Executive Producer'),(165,489,3,'Executive Producer'),(165,496,7,'Production Design'),(165,498,8,'Costume Design'),(165,598,3,'Casting'),(165,602,7,'Set Decoration'),(165,664,3,'Executive Producer'),(165,751,3,'Casting'),(165,752,3,'Casting'),(165,1058,3,'Producer'),(165,1058,4,'Screenplay'),(165,1058,4,'Characters'),(165,1058,4,'Story'),(165,1059,3,'Producer'),(165,1060,1,'Director of Photography'),(165,1061,5,'Editor'),(165,15843,7,'Art Direction'),(165,76701,8,'Hairstylist'),(165,1162118,8,'Hairstylist'),(165,1358074,8,'Hairstylist'),(165,1358075,8,'Makeup Artist'),(165,1358076,8,'Makeup Artist'),(165,1551349,9,'Video Assist Operator'),(1645,376,3,'Producer'),(1645,1262,3,'Casting'),(1645,2241,5,'Editor'),(1645,5572,2,'Director'),(1645,5575,4,'Screenplay'),(1645,5581,6,'Original Music Composer'),(1645,11620,7,'Production Design'),(1645,17629,1,'Director of Photography'),(1645,18349,3,'Producer'),(1645,18350,3,'Producer'),(1645,11060,3,'Producer'),(1645,11060,4,'Novel'),(1645,35664,3,'Associate Producer'),(4257,12936,4,'Screenplay'),(4257,12987,2,'Director'),(4257,18276,5,'Editor'),(4257,21223,5,'Editor'),(4257,23739,6,'Original Music Composer'),(4257,11371,1,'Director of Photography'),(4257,35796,4,'Screenplay'),(4257,35796,3,'Producer'),(4257,12991,4,'Screenplay'),(4257,113194,9,'Stunts'),(4234,409,3,'Producer'),(4234,434,3,'Casting'),(4234,436,3,'Casting Associate'),(4234,7229,6,'Original Music Composer'),(4234,5140,2,'Director'),(4234,5957,7,'Set Decoration'),(4234,15244,4,'Screenplay'),(4234,7856,7,'Set Designer'),(4234,9573,1,'Director of Photography'),(4234,21641,7,'Art Direction'),(4234,26458,3,'Producer'),(4234,26458,4,'Characters'),(4234,35581,3,'Producer'),(4234,27226,5,'Editor'),(4234,35594,8,'Costume Design'),(4234,66692,8,'Hair Department Head'),(4234,1392233,7,'Art Department Coordinator'),(4234,1392907,10,'Visual Effects Producer'),(4234,1393390,10,'Visual Effects Supervisor'),(4234,1398118,7,'Construction Coordinator'),(4234,1400540,2,'Script Supervisor'),(4234,1413509,10,'Visual Effects Supervisor'),(4234,1422412,9,'Special Effects Coordinator'),(4234,1435688,8,'Makeup Department Head'),(196,37,6,'Original Music Composer'),(196,24,2,'Director'),(196,24,4,'Story'),(196,24,4,'Characters'),(196,30,3,'Associate Producer'),(196,38,5,'Editor'),(196,488,3,'Executive Producer'),(196,489,3,'Executive Producer'),(196,496,7,'Production Design'),(196,498,8,'Costume Design'),(196,598,3,'Casting'),(196,664,3,'Executive Producer'),(196,751,3,'Casting'),(196,752,3,'Casting'),(196,1058,3,'Producer'),(196,1058,4,'Screenplay'),(196,1058,4,'Characters'),(196,1058,4,'Story'),(196,1059,3,'Producer'),(196,1060,1,'Director of Photography'),(196,1061,5,'Editor'),(196,8679,7,'Art Direction'),(196,15843,7,'Art Direction'),(196,1171347,7,'Set Decoration'),(6114,1776,2,'Director'),(6114,1776,3,'Producer'),(6114,1400,6,'Original Music Composer'),(6114,1544,4,'Novel'),(6114,2486,7,'Production Design'),(6114,2873,5,'Editor'),(6114,3219,3,'Producer'),(6114,3769,1,'Director of Photography'),(6114,10295,4,'Screenplay'),(6114,11413,7,'Set Decoration'),(6114,66266,7,'Conceptual Illustrator'),(6114,10781,3,'Executive Producer'),(6114,56765,6,'Sound Designer'),(6114,57031,3,'Executive Producer'),(6114,958722,8,'Costume Design'),(1213,1720,3,'Casting Associate'),(1213,154,5,'Editor'),(1213,154,6,'Sound Re-Recording Mixer'),(1213,8330,3,'Producer'),(1213,2226,3,'Executive Producer'),(1213,2239,2,'Director'),(1213,2239,4,'Screenplay'),(1213,2702,1,'Director of Photography'),(1213,3177,6,'Sound Re-Recording Mixer'),(1213,5022,7,'Production Design'),(1213,5338,6,'Sound Effects Editor'),(1213,5485,3,'Co-Producer'),(1213,5486,3,'Associate Producer'),(1213,5487,3,'Line Producer'),(1213,5488,6,'Original Music Composer'),(1213,5490,3,'Casting'),(1213,5493,8,'Costume Design'),(1213,5672,7,'Art Direction'),(1213,7050,10,'Special Effects Supervisor'),(1213,7069,6,'Supervising Sound Editor'),(1213,8753,3,'Casting'),(1213,10497,7,'Supervising Art Director'),(1213,11385,6,'Sound Mixer'),(1213,11388,7,'Set Decoration'),(1213,12579,1,'Still Photographer'),(1213,13050,9,'Dialect Coach'),(1213,12491,4,'Novel'),(1213,15906,3,'Producer'),(1213,15907,8,'Makeup Artist'),(1213,15908,8,'Hairstylist'),(1213,15909,9,'Special Effects Coordinator'),(1213,15910,10,'Visual Effects Supervisor'),(1213,15911,9,'Stunt Coordinator'),(1213,15913,9,'Stunts'),(1213,30669,6,'Boom Operator'),(1213,38804,3,'Co-Producer'),(1213,74985,11,'Gaffer'),(1213,79146,3,'Casting'),(1213,117206,8,'Hair Department Head'),(1213,543194,8,'Costume Design'),(1213,589494,8,'Hairstylist'),(1213,958273,2,'Script Supervisor'),(1213,1336515,7,'Art Department Assistant'),(1213,1400813,5,'Dialogue Editor'),(1213,1402040,9,'Unit Publicist'),(1213,1404200,9,'Makeup Effects'),(1213,1406614,6,'Sound Re-Recording Mixer'),(1213,1412085,7,'Assistant Art Director'),(1213,1413171,5,'Dialogue Editor'),(1213,1414090,8,'Makeup Department Head'),(1213,1558255,6,'Sound Effects Editor'),(1213,1564492,6,'Music Editor'),(1213,1602327,8,'Hair Designer'),(1213,1625624,3,'Location Manager'),(1213,1672771,3,'Unit Production Manager'),(1213,1672772,6,'Music Supervisor'),(1213,1672775,4,'Storyboard'),(1213,1672776,9,'Special Effects Coordinator'),(9036,36,1,'Director of Photography'),(9036,664,2,'Director'),(9036,3965,3,'Casting'),(9036,4140,6,'Music'),(9036,4504,3,'Producer'),(9036,4507,3,'Producer'),(9036,29405,5,'Editor'),(9036,411398,4,'Writer'),(9036,957310,7,'Production Design'),(9036,1034748,3,'Casting'),(9036,1546584,9,'Scenic Artist'),(9036,1579180,1,'First Assistant Camera'),(9361,38,5,'Editor'),(9361,638,2,'Director'),(9361,638,4,'Screenplay'),(9361,638,3,'Producer'),(9361,897,3,'Casting'),(9361,4187,7,'Art Direction'),(9361,4700,3,'Executive Producer'),(9361,7020,6,'Music'),(9361,7203,7,'Production Design'),(9361,7850,8,'Costume Design'),(9361,8306,1,'Additional Photography'),(9361,8680,7,'Set Decoration'),(9361,13166,6,'Sound Effects Editor'),(9361,14712,6,'Music'),(9361,13933,7,'Assistant Art Director'),(9361,14764,6,'Sound Effects Editor'),(9361,11099,1,'Director of Photography'),(9361,15842,5,'Editor'),(9361,13457,9,'Special Effects Coordinator'),(9361,16736,6,'Sound Designer'),(9361,18350,3,'Producer'),(9361,37406,7,'Assistant Art Director'),(9361,49909,7,'Art Direction'),(9361,55241,9,'Special Effects Coordinator'),(9361,113073,6,'Sound Re-Recording Mixer'),(9361,113090,6,'Foley'),(9361,57447,4,'Screenplay'),(9361,57450,4,'Novel'),(9361,91115,1,'Steadicam Operator'),(9361,91903,11,'Gaffer'),(9361,91913,11,'Best Boy Electric'),(9361,118945,6,'ADR & Dubbing'),(9361,1056657,6,'ADR & Dubbing'),(9361,1116937,6,'Foley'),(9361,1128243,4,'Adaptation'),(9361,1341856,6,'Foley'),(9361,1367662,7,'Set Decoration'),(9361,1368864,6,'Sound Re-Recording Mixer'),(9361,1377220,6,'Sound Re-Recording Mixer'),(9361,1377230,1,'Camera Operator'),(9361,1392084,6,'Supervising Sound Effects Editor'),(9361,1400372,9,'Stunt Coordinator'),(9361,1403636,5,'Dialogue Editor'),(9361,1404308,7,'Construction Coordinator'),(9361,1408359,1,'Steadicam Operator'),(9361,1408672,6,'ADR & Dubbing'),(9361,1409831,1,'First Assistant Camera'),(9361,1412205,1,'Still Photographer'),(9361,1413000,8,'Set Costumer'),(9361,1418021,6,'ADR & Dubbing'),(9361,1421239,9,'Armorer'),(9361,1425823,9,'Second Unit Cinematographer'),(9361,1433705,7,'Assistant Art Director'),(9361,1530449,8,'Costume Supervisor'),(9361,1535307,8,'Set Costumer'),(9361,1535395,1,'Camera Operator'),(9361,1535398,1,'Steadicam Operator'),(9361,1535399,1,'First Assistant Camera'),(9361,1535403,6,'ADR & Dubbing'),(1677,3561,1,'Director of Photography'),(1677,7045,6,'Original Music Composer'),(1677,10420,7,'Production Design'),(1677,14096,3,'Casting'),(1677,14765,6,'Supervising Sound Editor'),(1677,10766,5,'Editor'),(1677,15573,8,'Costume Design'),(1677,18596,2,'Director'),(1677,18596,4,'Story'),(1677,18596,3,'Producer'),(1677,18597,4,'Screenplay'),(1677,18597,4,'Story'),(1677,18789,3,'Line Producer'),(1677,19466,7,'Set Decoration'),(1677,53299,3,'Producer'),(1677,53300,3,'Producer'),(1677,62929,3,'Executive Producer'),(1677,63906,6,'Music Supervisor'),(1677,70646,3,'Co-Producer'),(1677,406354,3,'Production Supervisor'),(1677,548437,5,'Dialogue Editor'),(1677,550473,9,'Stunt Coordinator'),(1677,565261,3,'Executive Producer'),(1677,960282,7,'Art Direction'),(1677,1342658,5,'Dialogue Editor'),(1677,1344278,2,'Script Supervisor'),(1677,1402047,7,'Art Department Coordinator'),(1677,1404212,6,'Supervising Sound Editor'),(1677,1406080,8,'Hair Department Head'),(1677,1424894,8,'Hairstylist'),(1677,1454535,7,'Supervising Art Director'),(1677,1536545,8,'Makeup Department Head'),(1677,1548262,1,'Still Photographer'),(1677,1551930,3,'Producer'),(1677,1551931,3,'Co-Producer'),(1677,1551932,3,'Co-Producer'),(187,2294,2,'Director'),(187,2294,1,'Director of Photography'),(187,2294,5,'Editor'),(187,2294,6,'Original Music Composer'),(187,2294,1,'Camera Operator'),(187,2294,6,'Sound Re-Recording Mixer'),(187,2294,10,'Visual Effects Supervisor'),(187,138,2,'Special Guest Director'),(187,1307,3,'Executive Producer'),(187,59839,3,'Executive Producer'),(187,2293,2,'Director'),(187,2293,4,'Author'),(187,2293,4,'Writer'),(187,2293,9,'Graphic Novel Illustrator'),(187,2293,4,'Comic Book'),(187,5911,3,'Producer'),(187,4500,6,'Original Music Composer'),(187,5912,6,'Original Music Composer'),(187,5913,3,'Casting'),(187,5914,3,'Casting'),(187,12619,8,'Wigmaker'),(187,13223,5,'Color Timer'),(187,20464,7,'Assistant Art Director'),(187,20489,7,'Art Direction'),(187,20489,9,'Property Master'),(187,20490,8,'Costume Supervisor'),(187,23285,9,'Stunt Coordinator'),(187,51302,9,'Utility Stunts'),(187,53636,3,'Casting Associate'),(187,57111,3,'Line Producer'),(187,63291,3,'Unit Production Manager'),(187,63292,7,'Art Direction'),(187,63292,7,'Set Decoration'),(187,104044,9,'Digital Effects Supervisor'),(187,85960,6,'Sound Effects Editor'),(187,104925,3,'Executive In Charge Of Post Production'),(187,144146,8,'Makeup Department Head'),(187,217470,8,'Makeup Artist'),(187,217470,8,'Hairstylist'),(187,230725,9,'Additional Music'),(187,949208,3,'Publicist'),(187,1014919,1,'Camera Operator'),(187,1127209,7,'Set Decoration'),(187,1181682,9,'CG Supervisor'),(187,1181711,8,'Set Costumer'),(187,1206191,8,'Makeup Designer'),(187,1224272,9,'Special Effects Coordinator'),(187,1335874,7,'Conceptual Design'),(187,1340345,6,'Sound Designer'),(187,1341414,6,'Boom Operator'),(187,1398123,6,'Sound Re-Recording Mixer'),(187,1400344,10,'Visual Effects Coordinator'),(187,1401123,7,'Leadman'),(187,1401136,6,'Music Editor'),(187,1401136,6,'Supervising Sound Editor'),(187,1401151,1,'Still Photographer'),(187,1401155,2,'Script Supervisor'),(187,1407347,7,'Construction Coordinator'),(187,1410203,9,'Dialect Coach'),(187,1420148,7,'Art Department Coordinator'),(187,1420161,8,'Set Costumer'),(187,1420166,9,'Transportation Coordinator'),(187,1438396,9,'Scenic Artist'),(187,1458444,9,'Stunts'),(187,1523481,7,'Set Designer'),(187,1538703,3,'Production Coordinator'),(187,1546442,6,'Production Sound Mixer'),(187,1550566,6,'Orchestrator'),(187,1564584,5,'Dialogue Editor'),(187,1616036,9,'Post Production Supervisor'),(187,1616036,10,'Visual Effects Producer'),(187,1685556,2,'First Assistant Director'),(187,1709360,5,'Editorial Coordinator'),(187,1710267,10,'Animation Supervisor'),(187,1741171,5,'First Assistant Editor'),(187,1813066,6,'Foley Editor'),(187,1818724,7,'Art Department Assistant'),(187,1851790,9,'Propmaker'),(187,1851795,8,'Set Dressing Artist'),(187,1851798,7,'Construction Foreman'),(187,1878060,1,'Key Grip'),(187,1884318,7,'Painter'),(187,1884319,1,'First Assistant Camera'),(187,1884320,1,'Grip'),(187,1884321,8,'Seamstress'),(187,1884323,9,'Carpenter'),(187,1884324,9,'Chef'),(187,1884325,9,'Craft Service'),(187,1884326,9,'Driver'),(187,1884327,9,'Set Medic'),(187,1884328,9,'Set Production Assistant'),(187,1884329,9,'Stand In'),(187,1884331,9,'Transportation Captain'),(187,1884335,9,'Visual Effects Editor'),(187,1884339,5,'Digital Intermediate'),(187,1884342,11,'Rigging Grip'),(187,1884343,3,'Production Accountant'),(187,1884365,10,'3D Animator'),(187,1884366,10,'Digital Compositors'),(7461,2523,5,'Editor'),(7461,6208,7,'Production Design'),(7461,11874,3,'Producer'),(7461,19770,3,'Executive Producer'),(7461,24179,3,'Executive Producer'),(7461,43141,2,'Director'),(7461,52680,4,'Writer'),(7461,52681,3,'Executive Producer'),(7461,52682,8,'Costume Design'),(7461,72268,6,'Original Music Composer'),(7461,1043831,1,'Director of Photography'),(9889,7414,5,'Editor'),(9889,7395,2,'Director'),(9889,7395,4,'Screenplay'),(9889,7395,3,'Producer'),(9889,7396,2,'Director'),(9889,7396,4,'Screenplay'),(9889,7396,3,'Producer'),(9889,7407,3,'Producer'),(9889,7408,3,'Producer'),(9889,8523,1,'Director of Photography'),(9889,58188,5,'Editor'),(9889,60006,4,'Screenplay'),(9889,60009,6,'Music'),(9889,932118,7,'Production Design'),(820,491,6,'Original Music Composer'),(820,2324,3,'Casting'),(820,149,1,'Director of Photography'),(820,376,3,'Executive Producer'),(820,3188,7,'Production Design'),(820,945,7,'Set Decoration'),(820,950,5,'Editor'),(820,1152,2,'Director'),(820,1152,4,'Screenplay'),(820,1152,3,'Producer'),(820,2621,3,'Producer'),(820,3184,3,'Producer'),(820,3191,3,'Casting'),(820,3192,3,'Casting'),(820,3193,6,'Sound Effects Editor'),(820,3989,8,'Costume Design'),(820,4064,9,'Stunt Coordinator'),(820,4186,5,'Editor'),(820,11306,8,'Makeup Artist'),(820,5386,9,'Post Production Supervisor'),(820,7531,3,'Producer'),(820,7531,2,'Assistant Director'),(820,12127,4,'Novel'),(820,12128,4,'Novel'),(820,12130,4,'Screenplay'),(820,12131,7,'Art Direction'),(820,10880,7,'Art Direction'),(820,14764,5,'Dialogue Editor'),(820,17960,2,'Assistant Director'),(820,21118,1,'Steadicam Operator'),(820,66142,6,'Music Editor'),(820,92488,9,'Utility Stunts'),(820,74783,9,'Special Effects'),(820,589954,9,'Special Effects Coordinator'),(820,1015792,9,'Special Effects'),(820,1050930,5,'Dialogue Editor'),(820,1352969,6,'Supervising Sound Editor'),(820,1372838,5,'Dialogue Editor'),(820,1378756,5,'Dialogue Editor'),(820,1379396,10,'Visual Effects'),(820,1389624,6,'Sound Effects Editor'),(820,1403636,5,'Dialogue Editor'),(820,1404230,1,'Still Photographer'),(820,1408311,5,'Dialogue Editor'),(820,1408608,6,'Sound Effects Editor'),(820,1409773,5,'Dialogue Editor'),(820,1416054,8,'Key Hair Stylist'),(820,1416061,9,'Second Unit'),(820,1417972,6,'Supervising Sound Editor'),(820,1418286,5,'Dialogue Editor'),(820,1418528,8,'Hairstylist'),(820,1428582,8,'Hairstylist'),(820,1434214,5,'Assistant Editor'),(820,1434225,2,'Script Supervisor'),(820,1446560,10,'Special Effects Supervisor'),(820,1457712,8,'Hairstylist'),(820,1536262,11,'Rigging Gaffer'),(820,1536361,5,'Dialogue Editor'),(820,1536362,8,'Hairstylist'),(820,1536363,8,'Hairstylist'),(820,1536364,8,'Makeup Artist'),(820,1536365,8,'Makeup Artist'),(820,1536366,8,'Makeup Artist'),(820,1536367,8,'Makeup Artist'),(820,1546907,9,'Driver'),(820,1550205,8,'Costume Design'),(820,1552549,5,'Color Timer'),(820,1554309,11,'Electrician'),(820,1743157,3,'Publicist'),(6073,2545,3,'Producer'),(6073,37,6,'Original Music Composer'),(6073,120,1,'Director of Photography'),(6073,1704,2,'Director'),(6073,1722,5,'Editor'),(6073,2215,3,'Casting'),(6073,557,8,'Costume Design'),(6073,49825,4,'Screenplay'),(6073,49826,3,'Producer'),(6073,1478953,2,'Script Supervisor'),(8007,2043,3,'Producer'),(8007,3180,4,'Writer'),(8007,4949,6,'Original Music Composer'),(8007,8683,11,'Gaffer'),(8007,9651,6,'Supervising Sound Editor'),(8007,9651,6,'Sound Designer'),(8007,12028,2,'Director'),(8007,12035,7,'Supervising Art Director'),(8007,12040,8,'Costume Design'),(8007,15327,7,'Production Design'),(8007,34512,7,'Art Direction'),(8007,11011,4,'Writer'),(8007,45702,5,'Editor'),(8007,29942,3,'Casting'),(8007,41388,3,'Casting'),(8007,52193,5,'Dialogue Editor'),(8007,53648,3,'Casting'),(8007,53841,1,'Director of Photography'),(8007,106962,6,'Sound Effects Editor'),(8007,143919,6,'Sound Re-Recording Mixer'),(8007,180576,10,'Visual Effects Supervisor'),(8007,570136,2,'Script Supervisor'),(8007,960832,7,'Art Direction'),(8007,1085575,7,'Construction Coordinator'),(8007,1341789,10,'Visual Effects Supervisor'),(8007,1345268,6,'Music Editor'),(8007,1391697,9,'Stunt Coordinator'),(8007,1393390,10,'Visual Effects Supervisor'),(8007,1398108,1,'Camera Operator'),(8007,1398933,1,'Still Photographer'),(8007,1398934,1,'Steadicam Operator'),(8007,1402240,7,'Set Designer'),(8007,1403415,1,'Helicopter Camera'),(8007,1403532,8,'Makeup Artist'),(8007,1403533,3,'Production Manager'),(8007,1403534,9,'Property Master'),(8007,1403535,5,'Dialogue Editor'),(8007,1403536,9,'Sound Recordist'),(8007,1403537,10,'Visual Effects Supervisor'),(8007,1403538,9,'Visual Effects Editor'),(8007,1403539,10,'Visual Effects Supervisor'),(8007,1403540,9,'Visual Effects Editor'),(8007,1403541,10,'Visual Effects Supervisor'),(8007,1403542,10,'Visual Effects Supervisor'),(8007,1403543,10,'Visual Effects Producer'),(8007,1403544,1,'Camera Operator'),(8007,1403545,11,'Best Boy Electric'),(8007,1403546,1,'Camera Operator'),(8007,1403547,9,'Video Assist Operator'),(8007,1403548,2,'Script Supervisor'),(8007,1403549,3,'Location Manager'),(8007,1403550,9,'Unit Publicist'),(4380,3032,5,'Editor'),(4380,5488,6,'Original Music Composer'),(4380,36806,5,'Editor'),(4380,33455,7,'Art Direction'),(4380,24256,1,'Director of Photography'),(4380,32347,6,'Original Music Composer'),(4380,36615,3,'Producer'),(4380,36804,2,'Director'),(4380,36805,4,'Screenplay'),(4380,36807,3,'Casting'),(4380,25365,3,'Casting'),(4380,36808,7,'Production Design'),(4380,36809,8,'Costume Design'),(1124,525,2,'Director'),(1124,525,4,'Screenplay'),(1124,525,3,'Producer'),(1124,527,4,'Screenplay'),(1124,535,3,'Location Manager'),(1124,554,3,'Producer'),(1124,556,3,'Producer'),(1124,558,6,'Original Music Composer'),(1124,559,1,'Director of Photography'),(1124,561,3,'Casting'),(1124,3904,5,'Editor'),(1124,10199,8,'Makeup Department Head'),(1124,15327,7,'Production Design'),(1124,15328,7,'Art Direction'),(1124,15554,4,'Novel'),(1124,33288,9,'Post Production Supervisor'),(1124,44633,3,'Executive Producer'),(1124,44634,3,'Executive Producer'),(1124,62543,2,'Assistant Director'),(1124,77512,3,'Executive Producer'),(1124,81687,9,'Stunt Coordinator'),(1124,113913,3,'Associate Producer'),(1124,91893,9,'Special Effects Coordinator'),(1124,138618,6,'Sound Re-Recording Mixer'),(1124,189761,9,'Thanks'),(1124,230436,6,'ADR & Dubbing'),(1124,567973,8,'Costume Design'),(1124,579077,8,'Makeup Artist'),(1124,589942,8,'Hairstylist'),(1124,962222,3,'Executive Producer'),(1124,1050930,5,'Dialogue Editor'),(1124,1062825,1,'Grip'),(1124,1121874,3,'Unit Production Manager'),(1124,1163303,3,'Casting'),(1124,1177850,1,'Still Photographer'),(1124,1327025,10,'Visual Effects Supervisor'),(1124,1327030,6,'Sound Re-Recording Mixer'),(1124,1340318,6,'Sound Effects Editor'),(1124,1341403,6,'Sound Designer'),(1124,1341403,6,'Supervising Sound Editor'),(1124,1367508,2,'Script Supervisor'),(1124,1377222,6,'Sound Effects Editor'),(1124,1389609,8,'Makeup Artist'),(1124,1390535,1,'Still Photographer'),(1124,1392109,8,'Set Costumer'),(1124,1403490,6,'Music Editor'),(1124,1404205,9,'Post Production Supervisor'),(1124,1404541,1,'Steadicam Operator'),(1124,1407721,8,'Wigmaker'),(1124,1408714,8,'Makeup Artist'),(1124,1417398,8,'Hair Department Head'),(1124,1443032,8,'Hairstylist'),(1124,1513801,7,'Set Decoration'),(1124,1532612,11,'Rigging Grip'),(1124,1550636,8,'Hairstylist'),(1124,1550832,6,'Sound mixer'),(1124,1550836,3,'Production Supervisor'),(1124,1564997,3,'Executive In Charge Of Production'),(1579,1729,6,'Original Music Composer'),(1579,2461,2,'Director'),(1579,2461,3,'Producer'),(1579,2461,4,'Writer'),(1579,2486,7,'Production Design'),(1579,2487,3,'Producer'),(1579,4501,1,'Director of Photography'),(1579,6883,6,'Music Editor'),(1579,8752,5,'Editor'),(1579,8758,9,'Post-Production Manager'),(1579,8762,5,'Dialogue Editor'),(1579,9419,6,'Supervising Sound Effects Editor'),(1579,9419,6,'Sound Designer'),(1579,17655,4,'Writer'),(1579,17655,3,'Co-Producer'),(1579,17674,3,'Casting'),(1579,17675,8,'Costume Design'),(1579,17676,7,'Art Direction'),(1579,17677,7,'Art Direction'),(1579,42006,3,'Executive Producer'),(1579,42006,3,'Unit Production Manager'),(1579,42007,3,'Executive Producer'),(1579,42024,9,'Stunts Coordinator'),(1579,42027,8,'Makeup Artist'),(1579,42028,8,'Makeup Artist'),(1579,42029,10,'Visual Effects Supervisor'),(1579,42030,9,'Animatronic and Prosthetic Effects'),(1579,42032,1,'Camera Operator'),(1579,42034,6,'Sound mixer'),(1579,42035,6,'Supervising Sound Editor'),(1579,42036,6,'Supervising Sound Editor'),(1579,42039,11,'Best Boy Electric'),(1579,18889,9,'Stunt Coordinator'),(1579,40546,1,'Camera Operator'),(1579,113045,6,'Foley'),(1579,113090,6,'Foley'),(1579,589402,2,'Assistant Director'),(1579,1153846,10,'Visual Effects Producer'),(1579,1329476,7,'Supervising Art Director'),(1579,1329477,8,'Costume Supervisor'),(1579,1377213,7,'Set Designer'),(1579,1378171,6,'Sound mixer'),(1579,1386920,1,'Still Photographer'),(1579,1389625,9,'Transportation Coordinator'),(1579,1391130,1,'Additional Camera'),(1579,1395025,6,'Dolby Consultant'),(1579,1397850,11,'Gaffer'),(1579,1399326,6,'Music Editor'),(1579,1400081,1,'Steadicam Operator'),(1579,1400332,7,'Set Designer'),(1579,1400333,7,'Sculptor'),(1579,1400334,7,'Sculptor'),(1579,1400335,7,'Sculptor'),(1579,1400336,7,'Construction Coordinator'),(1579,1400337,9,'Scenic Artist'),(1579,1400338,9,'Sound Recordist'),(1579,1400339,9,'Sound Recordist'),(1579,1400342,10,'Visual Effects Producer'),(1579,1400343,10,'Visual Effects Producer'),(1579,1400344,10,'Visual Effects Producer'),(1579,1400345,10,'Visual Effects Producer'),(1579,1400346,1,'Camera Operator'),(1579,1400347,1,'Underwater Camera'),(1579,1400348,1,'Steadicam Operator'),(1579,1400349,1,'Steadicam Operator'),(1579,1400350,8,'Set Costumer'),(1579,1400351,8,'Set Costumer'),(1579,1400352,8,'Set Costumer'),(1579,1400353,8,'Set Costumer'),(1579,1400354,5,'Digital Intermediate'),(1579,1400355,9,'Transportation Coordinator'),(1579,1400357,9,'Choreographer'),(1579,1400358,3,'Location Manager'),(1579,1400359,3,'Publicist'),(1579,1401642,8,'Wigmaker'),(1579,1407848,8,'Hairstylist'),(1579,1412276,3,'Location Manager'),(1579,1643668,8,'Prosthetic Supervisor'),(708,2289,6,'Original Music Composer'),(708,9856,4,'Characters'),(708,9861,3,'Producer'),(708,8524,7,'Production Design'),(708,6891,9,'Transportation Captain'),(708,8526,7,'Set Decoration'),(708,9858,4,'Screenplay'),(708,10179,2,'Director'),(708,10198,8,'Costume Design'),(708,10200,7,'Art Direction'),(708,10493,3,'Producer'),(708,10495,5,'Editor'),(708,10496,3,'Casting'),(708,10612,5,'Editor'),(708,10666,3,'Associate Producer'),(708,10668,1,'Director of Photography'),(708,69678,4,'Screenplay'),(708,69678,3,'Producer'),(9930,1530,3,'Casting'),(9930,1531,5,'Editor'),(9930,4712,7,'Set Decoration'),(9930,7068,5,'Editor'),(9930,7182,6,'Original Music Composer'),(9930,8858,2,'Director'),(9930,8858,3,'Producer'),(9930,8860,3,'Executive Producer'),(9930,8862,1,'Director of Photography'),(9930,8885,8,'Costume Design'),(9930,11080,4,'Screenplay'),(9930,11081,4,'Screenplay'),(9930,8866,7,'Production Design'),(9930,35499,7,'Art Direction'),(9930,30918,5,'Editor'),(9930,57601,3,'Executive Producer'),(9930,956983,3,'Casting'),(1586,508,4,'Screenplay'),(1586,508,2,'Director'),(1586,561,3,'Casting'),(1586,1551,6,'Original Music Composer'),(1586,3027,4,'Novel'),(1586,9041,7,'Production Design'),(1586,13932,3,'Casting'),(1586,15432,6,'Supervising Sound Editor'),(1586,15435,7,'Title Designer'),(1586,17765,1,'Director of Photography'),(1586,17766,5,'Editor'),(1586,17767,6,'Original Music Composer'),(1586,21103,6,'Sound Re-Recording Mixer'),(1586,21968,3,'Executive Producer'),(1586,29458,8,'Prosthetic Supervisor'),(1586,32884,8,'Wigmaker'),(1586,35974,3,'Producer'),(1586,40320,7,'Art Direction'),(1586,59424,9,'Additional Music'),(1586,60896,3,'Unit Production Manager'),(1586,83085,6,'Sound Effects Editor'),(1586,91069,4,'Storyboard'),(1586,142165,6,'Music Editor'),(1586,405004,6,'Sound'),(1586,417960,5,'Color Timer'),(1586,961452,8,'Costume Design'),(1586,1194082,10,'Visual Effects Producer'),(1586,1241026,6,'Foley Editor'),(1586,1310039,7,'Set Decoration'),(1586,1327910,8,'Costume Supervisor'),(1586,1330749,9,'Stunts'),(1586,1336188,8,'Makeup Artist'),(1586,1363843,7,'Set Dresser'),(1586,1384366,6,'Boom Operator'),(1586,1391759,9,'Property Master'),(1586,1405807,9,'Makeup Effects'),(1586,1406051,1,'Still Photographer'),(1586,1409709,11,'Gaffer'),(1586,1409714,11,'Rigging Gaffer'),(1586,1409717,9,'Video Assist Operator'),(1586,1409723,9,'Transportation Captain'),(1586,1411846,1,'Camera Operator'),(1586,1415964,6,'ADR Supervisor'),(1586,1431164,6,'Scoring Mixer'),(1586,1436481,9,'Set Medic'),(1586,1436493,8,'Key Hair Stylist'),(1586,1436494,8,'Key Makeup Artist'),(1586,1462820,3,'Supervising Producer'),(1586,1531576,5,'Dialogue Editor'),(1586,1548694,9,'Sound Recordist'),(1586,1551515,10,'Visual Effects Supervisor'),(1586,1554041,6,'Orchestrator'),(1586,1578662,10,'Digital Compositors'),(1586,1590080,1,'Key Grip'),(1586,1611781,7,'Construction Coordinator'),(1586,1611782,7,'Set Designer'),(1586,1611785,1,'First Assistant Camera'),(1586,1611787,8,'Assistant Costume Designer'),(1586,1611788,9,'Carpenter'),(1586,1611789,9,'CG Supervisor'),(1586,1611790,9,'Driver'),(1586,1611791,9,'Projection'),(1586,1611792,9,'Set Production Assistant'),(1586,1611793,9,'Stand In'),(1586,1611794,9,'Stunt Coordinator'),(1586,1611806,9,'Transportation Coordinator'),(1586,1611807,9,'Visual Effects Editor'),(1586,1611808,2,'First Assistant Director'),(1586,1611809,5,'Editorial Production Assistant'),(1586,1611810,11,'Electrician'),(1586,1611811,3,'Casting Associate'),(1586,1611812,3,'Location Manager'),(1586,1611813,3,'Production Coordinator'),(1586,1611814,6,'Assistant Sound Editor'),(1586,1611822,10,'Visual Effects Coordinator'),(1586,1611823,3,'Unit Manager'),(1586,1733132,5,'Negative Cutter'),(1586,1854994,1,'Dolly Grip'),(1586,1854995,1,'Grip'),(1586,1854996,8,'Wardrobe Supervisor'),(1586,1854997,2,'Second Assistant Director'),(1586,1854998,3,'Casting Assistant'),(2044,1296,3,'Executive Producer'),(2044,3394,5,'Editor'),(2044,3562,6,'Original Music Composer'),(2044,5340,6,'Music Editor'),(2044,6412,7,'Set Decoration'),(2044,10950,3,'Executive Producer'),(2044,14042,8,'Costume Design'),(2044,15327,7,'Production Design'),(2044,21031,2,'Director'),(2044,21032,4,'Screenplay'),(2044,21035,3,'Producer'),(2044,21036,3,'Producer'),(2044,21039,1,'Director of Photography'),(2044,21040,5,'Editor'),(2044,29018,3,'Executive Producer'),(2044,57634,3,'Executive Producer'),(2044,86593,8,'Hair Department Head'),(2044,564949,3,'Co-Producer'),(2044,1023289,6,'Music Editor'),(2044,1323760,8,'Makeup Department Head'),(2044,1327404,9,'Stunt Coordinator'),(2044,1390538,2,'Script Supervisor'),(2044,1411293,1,'Still Photographer'),(2044,1413120,1,'Steadicam Operator'),(2044,1416093,8,'Hairstylist'),(2044,1424707,11,'Rigging Gaffer'),(2044,1442499,8,'Hairstylist'),(2044,1461605,8,'Makeup Artist'),(2044,1471726,6,'Music Supervisor'),(2044,1534467,8,'Makeup Artist'),(9913,1720,3,'Casting'),(9913,3687,6,'Sound Designer'),(9913,1978,2,'Director'),(9913,1978,3,'Producer'),(9913,1999,6,'Original Music Composer'),(9913,3184,3,'Executive Producer'),(9913,3184,3,'Unit Production Manager'),(9913,4061,8,'Costume Design'),(9913,4186,5,'Editor'),(9913,5381,3,'Producer'),(9913,5382,3,'Producer'),(9913,5489,9,'Thanks'),(9913,15244,4,'Writer'),(9913,8432,9,'Stunt Coordinator'),(9913,14378,7,'Art Direction'),(9913,14764,6,'Sound Effects Editor'),(9913,15348,1,'Director of Photography'),(9913,23769,7,'Production Design'),(9913,34526,7,'Sculptor'),(9913,37297,3,'Producer'),(9913,60385,7,'Set Decoration'),(9913,223244,9,'Post Production Supervisor'),(9913,403314,10,'Special Effects Supervisor'),(9913,957264,8,'Key Hair Stylist'),(9913,1025337,9,'Propmaker'),(9913,1172443,1,'Still Photographer'),(9913,1318886,8,'Costume Supervisor'),(9913,1322017,7,'Assistant Art Director'),(9913,1336507,9,'Transportation Coordinator'),(9913,1341398,7,'Art Department Coordinator'),(9913,1352969,6,'Supervising Sound Editor'),(9913,1357044,4,'Storyboard'),(9913,1357068,8,'Set Costumer'),(9913,1378218,7,'Greensman'),(9913,1378220,7,'Leadman'),(9913,1391565,7,'Set Designer'),(9913,1393372,7,'Construction Foreman'),(9913,1393457,3,'Location Manager'),(9913,1395014,7,'Property Master'),(9913,1396886,3,'Producer'),(9913,1400535,1,'Camera Operator'),(9913,1400535,1,'Steadicam Operator'),(9913,1400812,6,'ADR Supervisor'),(9913,1401593,1,'Aerial Director of Photography'),(9913,1402015,8,'Hairstylist'),(9913,1403433,7,'Painter'),(9913,1405232,5,'Dialogue Editor'),(9913,1406763,10,'Visual Effects Producer'),(9913,1412242,6,'Dolby Consultant'),(9913,1414153,11,'Best Boy Electric'),(9913,1428898,9,'CG Supervisor'),(9913,1435689,7,'Construction Coordinator'),(9913,1453321,3,'Publicist'),(9913,1460669,6,'Orchestrator'),(9913,1463801,8,'Seamstress'),(9913,1464787,9,'Stunts'),(9913,1469339,2,'Script Supervisor'),(9913,1493771,1,'First Assistant Camera'),(9913,1532248,8,'Makeup Artist'),(9913,1545168,6,'Scoring Mixer'),(9913,1552051,3,'Production Supervisor'),(9913,1552062,6,'Sound Mixer'),(9913,1552215,11,'Rigging Gaffer'),(9913,1562008,6,'Boom Operator'),(9913,1567906,10,'I/O Supervisor'),(9913,1569558,9,'Craft Service'),(9913,1590413,10,'Visual Effects Supervisor'),(9913,1646252,3,'Production Coordinator'),(9913,1648023,3,'Production Manager'),(9913,1693553,9,'Special Effects Coordinator'),(9913,1701724,7,'Standby Painter'),(9913,1707448,6,'Foley'),(9913,1718080,3,'Production Accountant'),(9913,1769324,8,'Set Dressing Artist'),(9913,1775721,1,'Key Grip'),(9913,1821945,9,'Set Medic'),(9913,1842154,11,'Lighting Technician'),(9913,1860805,7,'Art Department Assistant'),(9913,1860807,7,'Leadman'),(9913,1860828,1,'Grip'),(9913,1860834,9,'Carpenter'),(9913,1860836,9,'Choreographer'),(9913,1860842,9,'Driver'),(9913,1860843,9,'Loader'),(9913,1860846,9,'Production Intern'),(9913,1860848,9,'Stand In'),(9913,1860849,9,'Transportation Captain'),(9913,1860850,9,'Video Assist Operator'),(9913,1860851,2,'First Assistant Director'),(9913,1860859,5,'Editorial Production Assistant'),(9913,1860860,5,'First Assistant Editor'),(9913,1860861,11,'Electrician'),(9913,1860862,11,'Gaffer'),(9913,1860863,11,'Rigging Grip'),(9913,1860864,3,'Casting Associate'),(9913,1860865,6,'Music Supervisor'),(9913,1860867,10,'Digital Compositors'),(9913,1860868,10,'Visual Effects Coordinator'),(9913,1860869,9,'Set Production Intern'),(4970,24,3,'Producer'),(4970,2406,2,'Director'),(4970,599,3,'Casting'),(4970,1091,3,'Producer'),(4970,4657,10,'Special Effects Supervisor'),(4970,4867,1,'Director of Photography'),(4970,6209,8,'Costume Design'),(4970,8303,3,'Executive Producer'),(4970,8355,9,'Stunt Coordinator'),(4970,8704,7,'Art Direction'),(4970,9430,6,'Supervising Sound Editor'),(4970,9039,6,'Original Music Composer'),(4970,17611,3,'Local Casting'),(4970,17613,7,'Assistant Art Director'),(4970,16573,6,'ADR Editor'),(4970,19379,5,'Editor'),(4970,19656,4,'Screenplay'),(4970,29458,9,'Makeup Effects'),(4970,37162,3,'Producer'),(4970,39726,3,'Executive Producer'),(4970,40287,3,'Producer'),(4970,40288,7,'Set Decoration'),(4970,40289,3,'Executive Producer'),(4970,113044,5,'Dialogue Editor'),(4970,62740,3,'Co-Producer'),(4970,62743,7,'Production Design'),(4970,92378,6,'ADR Supervisor'),(4970,73720,6,'Orchestrator'),(4970,75240,6,'Sound Re-Recording Mixer'),(4970,92237,1,'Camera Operator'),(4970,112682,9,'Second Unit Cinematographer'),(4970,137198,3,'Casting Associate'),(4970,189655,2,'First Assistant Director'),(4970,405004,6,'Sound Mixer');
INSERT INTO `movie_crew` VALUES (4970,946610,3,'Line Producer'),(4970,985774,3,'Unit Production Manager'),(4970,1081053,6,'Sound Designer'),(4970,1119658,5,'First Assistant Editor'),(4970,1190592,9,'Additional Music'),(4970,1281881,8,'Assistant Costume Designer'),(4970,1319844,8,'Costume Supervisor'),(4970,1340318,6,'Sound Effects Editor'),(4970,1343930,6,'Musician'),(4970,1377125,6,'Supervising Dialogue Editor'),(4970,1379172,8,'Key Makeup Artist'),(4970,1384366,6,'Boom Operator'),(4970,1384393,6,'Music Editor'),(4970,1391747,7,'Construction Coordinator'),(4970,1391751,7,'Set Designer'),(4970,1394742,7,'Set Dresser'),(4970,1398972,1,'Underwater Director of Photography'),(4970,1400338,9,'Sound Recordist'),(4970,1400556,6,'Foley Editor'),(4970,1402111,6,'Additional Sound Re-Recording Mixer'),(4970,1403537,10,'Visual Effects Supervisor'),(4970,1403707,11,'Rigging Gaffer'),(4970,1404724,10,'Visual Effects Producer'),(4970,1407356,9,'Digital Effects Supervisor'),(4970,1408342,10,'Digital Compositors'),(4970,1408680,1,'Underwater Camera'),(4970,1409703,4,'Storyboard'),(4970,1409717,9,'Video Assist Operator'),(4970,1418489,9,'Unit Publicist'),(4970,1419721,9,'Set Production Assistant'),(4970,1420574,1,'Additional Camera'),(4970,1429549,5,'Color Timer'),(4970,1445986,1,'Still Photographer'),(4970,1447125,7,'Art Department Coordinator'),(4970,1447157,9,'Transportation Coordinator'),(4970,1457487,2,'Script Supervisor'),(4970,1458105,9,'Post Production Supervisor'),(4970,1464344,3,'Executive In Charge Of Post Production'),(4970,1471945,3,'Co-Producer'),(4970,1471946,3,'Associate Producer'),(4970,1482837,6,'First Assistant Sound Editor'),(4970,1513531,11,'Rigging Grip'),(4970,1519906,9,'Driver'),(4970,1536183,8,'Key Hair Stylist'),(4970,1548695,9,'Software Engineer'),(4970,1560899,6,'Sound Editor'),(4970,1590077,7,'Production Illustrator'),(4970,1590079,1,'First Assistant Camera'),(4970,1590080,1,'Key Grip'),(4970,1590081,8,'Hairstylist'),(4970,1590082,8,'Makeup Artist'),(4970,1590083,9,'Craft Service'),(4970,1590087,9,'Loader'),(4970,1590089,7,'Assistant Property Master'),(4970,1590092,9,'Scenic Artist'),(4970,1590094,9,'Set Medic'),(4970,1590096,9,'Stunts'),(4970,1590099,9,'Transportation Captain'),(4970,1590100,9,'Visual Effects Editor'),(4970,1590102,5,'Digital Intermediate'),(4970,1590103,5,'First Assistant Editor'),(4970,1590104,11,'Best Boy Electric'),(4970,1590105,11,'Electrician'),(4970,1590106,11,'Gaffer'),(4970,1590107,11,'Lighting Technician'),(4970,1590108,3,'Location Manager'),(4970,1590109,3,'Production Accountant'),(4970,1590110,3,'Production Coordinator'),(4970,1590111,3,'Production Supervisor'),(4970,1590112,3,'Researcher'),(4970,1590122,10,'Visual Effects'),(4970,1590123,10,'Visual Effects Coordinator'),(4970,1590125,3,'Unit Manager'),(4970,1622612,9,'Stunts'),(4970,1733132,5,'Negative Cutter'),(4970,1836414,1,'Dolly Grip'),(4970,1836417,1,'Grip'),(4970,1836418,8,'Ager/Dyer'),(4970,1836421,2,'Second Assistant Director'),(4970,1836423,2,'Third Assistant Director'),(4970,1836436,3,'Assistant Production Manager'),(4970,1836437,3,'Casting Assistant'),(4970,1836439,6,'Assistant Sound Editor'),(9096,897,3,'Casting'),(9096,738,3,'Executive Producer'),(9096,1090,2,'Director'),(9096,1095,1,'Director of Photography'),(9096,1760,6,'Original Music Composer'),(9096,2691,4,'Screenplay'),(9096,5175,5,'Editor'),(9096,7719,8,'Costume Design'),(9096,15350,5,'Editor'),(9096,23868,7,'Set Decoration'),(9096,56967,3,'Producer'),(9096,56965,4,'Screenplay'),(9096,56966,3,'Producer'),(9096,56968,5,'Editor'),(9096,958278,7,'Art Direction'),(9096,988844,7,'Construction Coordinator'),(9096,1007395,9,'Special Effects'),(9096,1342617,7,'Production Design'),(9096,1535282,7,'Art Direction'),(440,915,3,'Producer'),(440,1092,4,'Characters'),(440,1094,4,'Characters'),(440,1723,3,'Producer'),(440,2043,3,'Producer'),(440,5045,4,'Characters'),(440,5046,4,'Characters'),(440,5362,3,'Casting'),(440,5363,3,'Casting'),(440,6037,2,'Director'),(440,6037,10,'Visual Effects Supervisor'),(440,6038,2,'Director'),(440,6039,4,'Screenplay'),(440,6041,6,'Original Music Composer'),(440,6042,1,'Director of Photography'),(440,6043,5,'Editor'),(440,6044,3,'Casting'),(440,6045,7,'Production Design'),(440,12205,8,'Costume Design'),(440,16177,6,'Sound Re-Recording Mixer'),(440,22061,7,'Supervising Art Director'),(440,113194,9,'Stunts'),(440,53114,7,'Set Decoration'),(440,229908,7,'Set Designer'),(440,548433,9,'Sound Recordist'),(440,1007395,9,'Stunt Coordinator'),(440,1311175,7,'Assistant Art Director'),(440,1324015,7,'Assistant Art Director'),(440,1338372,6,'Foley'),(440,1345268,6,'Music Editor'),(440,1367493,6,'Foley'),(440,1377220,6,'Sound Re-Recording Mixer'),(440,1377230,1,'Camera Operator'),(440,1378717,11,'Gaffer'),(440,1384372,9,'Visual Effects Editor'),(440,1387544,2,'Script Supervisor'),(440,1389130,7,'Art Department Coordinator'),(440,1390524,6,'Supervising Sound Editor'),(440,1391689,9,'Special Effects Coordinator'),(440,1397267,1,'Camera Operator'),(440,1399045,7,'Construction Coordinator'),(440,1399046,7,'Construction Coordinator'),(440,1399047,9,'Property Master'),(440,1399048,9,'Scenic Artist'),(440,1399049,9,'Scenic Artist'),(440,1399050,9,'Scenic Artist'),(440,1399051,9,'Scenic Artist'),(440,1399052,9,'Scenic Artist'),(440,1399053,9,'Scenic Artist'),(440,1399054,9,'Scenic Artist'),(440,1399055,7,'Sculptor'),(440,1399056,7,'Sculptor'),(440,1399057,6,'Supervising Sound Editor'),(440,1399061,5,'Dialogue Editor'),(440,1399062,9,'Visual Effects Editor'),(440,1399063,10,'Visual Effects Supervisor'),(440,1399064,10,'Visual Effects Supervisor'),(440,1399065,10,'Visual Effects Producer'),(440,1399066,1,'Still Photographer'),(440,1399067,11,'Best Boy Electric'),(440,1399068,1,'Underwater Camera'),(440,1399069,9,'Transportation Coordinator'),(440,1399070,3,'Location Manager'),(440,1399071,1,'Helicopter Camera'),(440,1457635,9,'Digital Effects Supervisor'),(440,1548642,6,'Sound mixer'),(440,1560789,3,'Production Coordinator'),(8224,1262,3,'Casting'),(8224,2950,1,'Director of Photography'),(8224,5359,6,'Original Music Composer'),(8224,5572,2,'Director'),(8224,5572,3,'Producer'),(8224,5583,5,'Editor'),(8224,11408,3,'Co-Producer'),(8224,12047,4,'Screenplay'),(8224,12051,7,'Production Design'),(8224,70778,3,'Executive Producer'),(8224,70778,3,'Unit Production Manager'),(8224,27672,9,'Additional Music'),(8224,35974,3,'Producer'),(8224,42909,8,'Costume Design'),(8224,37926,3,'Producer'),(8224,54160,7,'Art Direction'),(8224,113055,5,'Dialogue Editor'),(8224,58257,6,'Orchestrator'),(8224,61825,7,'Assistant Art Director'),(8224,65711,7,'Set Decoration'),(8224,91071,7,'Construction Coordinator'),(8224,91834,9,'Stunts'),(8224,196269,9,'Stunt Coordinator'),(8224,548435,6,'Foley'),(8224,1320911,8,'Makeup Artist'),(8224,1333626,11,'Best Boy Electric'),(8224,1339465,9,'Transportation Coordinator'),(8224,1344255,6,'Sound Editor'),(8224,1345624,3,'Location Manager'),(8224,1358149,7,'Set Designer'),(8224,1372095,8,'Set Costumer'),(8224,1378229,6,'Boom Operator'),(8224,1380036,7,'Property Master'),(8224,1391593,1,'Steadicam Operator'),(8224,1395731,8,'Key Set Costumer'),(8224,1404235,3,'Publicist'),(8224,1406612,7,'Leadman'),(8224,1411856,6,'Music Editor'),(8224,1413451,6,'Supervising Sound Editor'),(8224,1417415,8,'Set Dressing Artist'),(8224,1430232,6,'Sound Recordist'),(8224,1460017,9,'Second Unit Cinematographer'),(8224,1463386,9,'Propmaker'),(8224,1464344,3,'Executive In Charge Of Post Production'),(8224,1533708,3,'Production Supervisor'),(8224,1534640,8,'Hairstylist'),(8224,1538374,2,'Script Coordinator'),(8224,1546115,6,'Sound'),(8224,1550818,9,'Stand In'),(8224,1551025,6,'Sound Mixer'),(8224,1552039,3,'Casting Associate'),(8224,1553026,6,'Assistant Sound Editor'),(8224,1554310,1,'First Assistant Camera'),(8224,1556512,6,'Sound Effects Editor'),(8224,1563882,10,'Special Effects Supervisor'),(8224,1568661,6,'Sound Engineer'),(8224,1614186,2,'First Assistant Director'),(8224,1639068,9,'Special Effects Coordinator'),(8224,1684382,11,'Electrician'),(8224,1684385,3,'Production Coordinator'),(8224,1732504,5,'Color Timer'),(8224,1738170,8,'Costume Illustrator'),(8224,1739544,9,'Driver'),(8224,1743185,3,'Production Accountant'),(8224,1769259,7,'Art Department Assistant'),(8224,1824569,1,'Key Grip'),(8224,1826567,11,'Gaffer'),(8224,1832413,7,'Art Department Coordinator'),(8224,1832416,1,'Grip'),(8224,1832417,1,'Still Photographer'),(8224,1832418,8,'Costume Supervisor'),(8224,1832422,9,'Craft Service'),(8224,1832425,3,'Production Office Coordinator'),(8224,1832427,9,'Transportation Co-Captain'),(8224,1832428,11,'Lighting Technician'),(8224,1832429,11,'Rigging Gaffer'),(8224,1832430,11,'Rigging Grip'),(8457,7716,7,'Production Design'),(8457,11505,4,'Story'),(8457,16158,3,'Producer'),(8457,32593,2,'Director'),(8457,17765,1,'Director of Photography'),(8457,33711,7,'Set Decoration'),(8457,18322,3,'Producer'),(8457,19274,4,'Screenplay'),(8457,19285,8,'Costume Design'),(8457,20297,5,'Editor'),(8457,23486,6,'Original Music Composer'),(8457,41039,3,'Producer'),(8457,52042,3,'Executive Producer'),(8457,55098,4,'Screenplay'),(8457,59838,7,'Art Direction'),(8457,1119658,5,'First Assistant Editor'),(8457,1377239,2,'Script Supervisor'),(8457,1461177,1,'Still Photographer'),(8457,1552521,9,'Stunts'),(8850,508,4,'Screenplay'),(8850,1151,3,'Producer'),(8850,1258,1,'Director of Photography'),(8850,6875,5,'Editor'),(8850,42149,3,'Producer'),(8850,52968,2,'Director'),(8850,56109,3,'Producer'),(1833,283,6,'Music'),(1833,380,3,'Producer'),(1833,3305,3,'Producer'),(1833,5582,9,'Second Unit Cinematographer'),(1833,8428,8,'Costume Design'),(1833,9646,5,'Editor'),(1833,9041,7,'Production Design'),(1833,10965,2,'Director'),(1833,10965,3,'Producer'),(1833,11222,3,'Producer'),(1833,11711,3,'Producer'),(1833,12568,7,'Set Decoration'),(1833,12631,3,'Executive Producer'),(1833,17828,3,'Producer'),(1833,19311,4,'Screenplay'),(1833,19312,4,'Author'),(1833,19313,3,'Executive Producer'),(1833,19314,3,'Producer'),(1833,19315,3,'Executive Producer'),(1833,19316,3,'Executive Producer'),(1833,19317,3,'Executive Producer'),(1833,19318,6,'Music'),(1833,19319,6,'Music'),(1833,19320,6,'Music'),(1833,19321,7,'Set Decoration'),(8970,1527,1,'Director of Photography'),(8970,9251,6,'Original Music Composer'),(8970,13584,5,'Editor'),(8970,18323,4,'Screenplay'),(8970,54967,2,'Director'),(9306,859,3,'Casting'),(9306,10816,5,'Editor'),(9306,11624,4,'Novel'),(9306,12846,1,'Director of Photography'),(9306,12993,3,'Executive Producer'),(9306,13776,2,'Director'),(9306,32035,3,'Producer'),(9306,33195,7,'Art Direction'),(9306,40438,6,'Original Music Composer'),(9306,42175,4,'Screenplay'),(9306,42175,2,'Director'),(9306,62743,7,'Production Design'),(9306,68775,4,'Screenplay'),(9306,70052,3,'Executive Producer'),(9306,82152,5,'Editor'),(1921,8220,7,'Production Design'),(1921,1202,3,'Producer'),(1921,6345,1,'Director of Photography'),(1921,6346,5,'Editor'),(1921,19155,6,'Original Music Composer'),(1921,10950,3,'Producer'),(1921,9169,3,'Producer'),(1921,14041,7,'Set Decoration'),(1921,19971,8,'Costume Design'),(1921,16467,7,'Art Direction'),(1921,19969,2,'Director'),(1921,19970,4,'Screenplay'),(1921,19972,3,'Producer'),(1921,19973,3,'Executive Producer'),(1921,91053,8,'Hairstylist'),(1921,1322509,2,'Script Supervisor'),(1921,1339459,6,'Music Editor'),(1921,1347755,6,'Music Editor'),(1921,1409721,6,'Music Editor'),(1921,1538822,6,'Music Supervisor'),(1683,2042,2,'Director'),(1683,2044,1,'Director of Photography'),(1683,24,3,'Producer'),(1683,1091,3,'Producer'),(1683,2953,3,'Casting'),(1683,6348,8,'Costume Design'),(1683,18617,5,'Editor'),(1683,21962,6,'Original Music Composer'),(1683,22038,4,'Screenplay'),(1683,22038,4,'Scenario Writer'),(1683,22039,4,'Screenplay'),(1683,22039,4,'Scenario Writer'),(1683,37162,3,'Producer'),(1683,62739,3,'Producer'),(1683,1316543,8,'Makeup Department Head'),(1683,1336716,10,'Visual Effects'),(1683,1527742,4,'Story'),(203,1032,2,'Director'),(203,1032,3,'Producer'),(203,1032,4,'Screenplay'),(203,2552,3,'Executive Producer'),(203,2553,3,'Producer'),(203,2554,4,'Screenplay'),(203,2583,1,'Director of Photography'),(203,2585,6,'Original Music Composer'),(203,2588,5,'Editor'),(1887,1776,3,'Executive Producer'),(1887,2871,3,'Executive Producer'),(1887,1769,2,'Director'),(1887,1769,4,'Screenplay'),(1887,1769,3,'Producer'),(1887,1777,3,'Producer'),(1887,1781,1,'Director of Photography'),(1887,1782,5,'Editor'),(1887,1783,7,'Production Design'),(1887,4406,3,'Casting'),(1887,8795,7,'Art Direction'),(1887,5671,8,'Costume Design'),(1887,10969,3,'Casting'),(1887,16338,7,'Art Direction'),(1887,19770,3,'Producer'),(1887,19771,3,'Line Producer'),(1887,19772,3,'Executive Producer'),(1887,19773,7,'Set Decoration'),(1887,63958,8,'Shoe Design'),(1887,233130,6,'Original Music Composer'),(6071,2866,5,'Editor'),(6071,2989,4,'Screenplay'),(6071,7020,6,'Original Music Composer'),(6071,23393,2,'Director'),(6071,23393,3,'Producer'),(6071,49823,4,'Screenplay'),(6071,49069,1,'Director of Photography'),(2687,348,4,'Screenplay'),(2687,596,7,'Set Designer'),(2687,906,7,'Set Decoration'),(2687,11770,2,'Director'),(2687,11815,3,'Producer'),(2687,12846,1,'Additional Camera'),(2687,15356,9,'Special Effects Coordinator'),(2687,18651,5,'Editor'),(2687,13434,7,'Art Direction'),(2687,23580,3,'Casting'),(2687,26976,4,'Novel'),(2687,26977,4,'Screenplay'),(2687,26978,4,'Screenplay'),(2687,26980,3,'Producer'),(2687,26981,6,'Original Music Composer'),(2687,26984,8,'Costume Design'),(2687,26985,8,'Makeup Artist'),(2687,26986,8,'Makeup Artist'),(2687,11310,9,'Special Effects Coordinator'),(2687,26987,9,'Special Effects Coordinator'),(2687,26988,9,'Special Effects Coordinator'),(2687,26989,9,'Special Effects Coordinator'),(2687,26990,9,'Special Effects Coordinator'),(2687,26991,10,'Visual Effects Supervisor'),(194,2401,3,'Producer'),(194,2402,3,'Producer'),(194,2404,3,'Producer'),(194,2419,4,'Author'),(194,2419,2,'Director'),(194,2420,4,'Author'),(194,2420,4,'Dialogue'),(194,2421,3,'Co-Producer'),(194,2422,6,'Original Music Composer'),(194,2422,6,'Musician'),(194,2423,1,'Director of Photography'),(194,2424,3,'Casting'),(194,2425,5,'Editor'),(194,2425,6,'Music Editor'),(194,40766,1,'Steadicam Operator'),(194,13839,7,'Production Design'),(194,16347,9,'Stunts'),(194,16372,9,'Stunts Coordinator'),(194,16233,7,'Art Direction'),(194,17531,1,'Camera Operator'),(194,24006,6,'Sound Re-Recording Mixer'),(194,47815,8,'Costume Design'),(194,49191,10,'Visual Effects Supervisor'),(194,63128,5,'Assistant Editor'),(194,64209,9,'Post Production Supervisor'),(194,123827,9,'Thanks'),(194,960658,3,'Casting Associate'),(194,1034044,7,'Set Dresser'),(194,1125824,5,'Assistant Editor'),(194,1127891,5,'Editorial Services'),(194,1175850,1,'Still Photographer'),(194,1321897,7,'Set Decoration'),(194,1351727,6,'Assistant Sound Editor'),(194,1365211,2,'Assistant Director'),(194,1399914,6,'Sound Effects'),(194,1399994,6,'Sound Effects Editor'),(194,1406402,9,'Stunts'),(194,1415038,3,'Unit Production Manager'),(194,1449979,8,'Makeup Artist'),(194,1468621,8,'Key Hair Stylist'),(194,1470641,3,'Casting'),(194,1535767,6,'Foley'),(194,1536196,6,'Sound mixer'),(194,1537500,9,'Executive Music Producer'),(194,1542917,5,'Color Timer'),(194,1544434,6,'Music'),(194,1547720,6,'Sound Editor'),(194,1551188,2,'Script Supervisor'),(194,1551956,7,'Art Department Assistant'),(194,1551957,7,'Assistant Art Director'),(194,1551958,7,'Construction Coordinator'),(194,1551959,7,'Location Scout'),(194,1551960,7,'Painter'),(194,1551961,1,'First Assistant Camera'),(194,1551962,1,'Key Grip'),(194,1551964,8,'Assistant Costume Designer'),(194,1551965,8,'Hairstylist'),(194,1551966,8,'Key Makeup Artist'),(194,1551967,9,'Carpenter'),(194,1551968,9,'Driver'),(194,1551969,9,'Special Effects Coordinator'),(194,1551970,2,'First Assistant Director'),(194,1551971,11,'Electrician'),(194,1551972,11,'Gaffer'),(194,1551973,3,'Production Accountant'),(194,1551975,3,'Production Coordinator'),(194,1551976,6,'ADR & Dubbing'),(194,1551977,6,'Boom Operator'),(194,1551979,10,'Special Effects Supervisor'),(194,1551981,10,'Visual Effects Producer'),(194,1551982,7,'Sculptor'),(194,1551983,9,'Executive Music Producer'),(194,1551985,10,'3D Supervisor'),(194,1635274,9,'Stunts'),(194,1635277,9,'Stunts'),(194,1638955,10,'3D Artist'),(194,1735709,1,'Dolly Grip'),(194,1735710,1,'Grip'),(194,1735712,2,'Second Assistant Director'),(194,1735713,3,'Casting Assistant'),(8849,1428,6,'Original Music Composer'),(8849,6392,8,'Costume Design'),(8849,6044,3,'Casting'),(8849,7779,3,'Executive Producer'),(8849,11098,6,'Original Music Composer'),(8849,17791,1,'Director of Photography'),(8849,21342,3,'Executive Producer'),(8849,36619,5,'Editor'),(8849,56106,4,'Screenplay'),(8849,56106,2,'Director'),(8849,56106,3,'Producer'),(8849,56107,4,'Screenplay'),(8849,56107,3,'Producer'),(8849,56108,4,'Theatre Play'),(8849,57124,6,'Original Music Composer'),(8849,59859,7,'Production Design'),(8849,1367566,2,'Script Supervisor'),(8849,1465066,7,'Set Decoration'),(9544,4020,1,'Director of Photography'),(9544,15303,3,'Executive Producer'),(9544,16685,10,'Special Effects Supervisor'),(9544,18691,3,'Executive Producer'),(9544,21224,9,'Special Effects Coordinator'),(9544,21479,3,'Executive Producer'),(9544,24257,5,'Editor'),(9544,25755,3,'Casting'),(9544,25757,3,'Casting'),(9544,27135,6,'Supervising Sound Editor'),(9544,22006,7,'Art Direction'),(9544,32355,8,'Makeup Artist'),(9544,36007,7,'Set Decoration'),(9544,42129,3,'Executive Producer'),(9544,43676,3,'Executive Producer'),(9544,56032,3,'Producer'),(9544,56032,4,'Story'),(9544,57898,2,'Director'),(9544,57899,4,'Screenplay'),(9544,57901,3,'Executive Producer'),(9544,57902,6,'Original Music Composer'),(9544,57900,3,'Producer'),(9544,75104,10,'Visual Effects Producer'),(9544,117229,6,'Sound Designer'),(9544,239806,7,'Art Department Coordinator'),(9544,562664,7,'Production Design'),(9544,982778,3,'Casting'),(9544,1335048,10,'Visual Effects Producer'),(9544,1335049,10,'Visual Effects Producer'),(9544,1340117,6,'Dolby Consultant'),(9544,1398923,6,'Sound Re-Recording Mixer'),(9544,1401145,10,'Visual Effects Supervisor'),(9544,1404840,6,'Sound Re-Recording Mixer'),(9544,1409724,9,'Picture Car Coordinator'),(9544,1416466,11,'Gaffer'),(9544,1416951,6,'Sound Re-Recording Mixer'),(9544,1419613,2,'Script Supervisor'),(9544,1422818,6,'Music Editor'),(9544,1424940,1,'Still Photographer'),(9544,1424942,3,'Location Manager'),(9544,1433055,10,'Visual Effects Supervisor'),(9544,1433055,1,'Additional Photography'),(9544,1433203,9,'Scenic Artist'),(9544,1433623,9,'Visual Effects Editor'),(9544,1440472,7,'Art Direction'),(9544,1440475,7,'Set Decoration'),(9544,1440477,7,'Set Decoration'),(9544,1440478,7,'Assistant Art Director'),(9544,1440479,9,'Property Master'),(9544,1440480,9,'Scenic Artist'),(9544,1440481,6,'ADR & Dubbing'),(9544,1440483,9,'Visual Effects Art Director'),(9544,1440484,10,'Visual Effects Producer'),(9544,1440486,10,'Visual Effects Supervisor'),(9544,1440487,10,'Visual Effects Supervisor'),(9544,1440490,10,'Visual Effects Supervisor'),(9544,1440492,10,'Visual Effects Supervisor'),(9544,1440493,10,'Visual Effects Supervisor'),(9544,1440494,1,'Steadicam Operator'),(9544,1440496,6,'Music Editor'),(9544,1440497,2,'Script Supervisor'),(9544,1440498,3,'Location Manager'),(9544,1650190,2,'First Assistant Director'),(7288,518,2,'Director'),(7288,69597,3,'Producer'),(7288,6347,3,'Casting'),(7288,7399,3,'Producer'),(7288,19464,1,'Director of Photography'),(7288,22302,3,'Producer'),(7288,34883,3,'Producer'),(7288,52314,4,'Screenplay'),(4965,33,3,'Producer'),(4965,2324,3,'Casting'),(4965,561,3,'Casting'),(4965,584,4,'Story'),(4965,2950,1,'Director of Photography'),(4965,3228,4,'Adaptation'),(4965,4140,6,'Original Music Composer'),(4965,4769,3,'Producer'),(4965,5501,2,'Director'),(4965,5501,3,'Producer'),(4965,7784,5,'Editor'),(4965,15244,4,'Screenplay'),(4965,21271,5,'Editor'),(4965,22056,3,'Producer'),(4965,28239,4,'Screenplay'),(4965,35594,8,'Costume Design'),(4965,40273,4,'Screenplay'),(4965,1332245,9,'Stunts'),(4965,1455613,10,'Animation'),(1272,2070,5,'Editor'),(1272,960,6,'Music'),(1272,2034,2,'Director'),(1272,2035,3,'Producer'),(1272,2036,4,'Screenplay'),(1272,2071,7,'Production Design'),(1272,2073,3,'Casting'),(1272,4249,3,'Casting'),(1272,26192,1,'Director of Photography'),(1272,26194,7,'Set Decoration'),(1272,141570,8,'Costume Design'),(1272,1285933,8,'Costume Supervisor'),(1272,1346934,7,'Supervising Art Director'),(9978,4018,3,'Producer'),(9978,6891,3,'Producer'),(9978,6895,3,'Executive Producer'),(9978,7793,8,'Costume Design'),(9978,11224,7,'Art Direction'),(9978,10497,7,'Art Direction'),(9978,15246,3,'Producer'),(9978,15247,3,'Producer'),(9978,34004,1,'Director of Photography'),(9978,29909,3,'Executive Producer'),(9978,10878,5,'Editor'),(9978,61360,3,'Line Producer'),(9978,61354,4,'Author'),(9978,61354,3,'Executive Producer'),(9978,61353,3,'Executive Producer'),(9978,61357,2,'Director'),(9978,61359,3,'Associate Producer'),(9978,61361,7,'Production Design'),(9978,1319197,7,'Set Decoration'),(9978,1578596,3,'Casting'),(9978,1714546,6,'Original Music Composer'),(8271,3965,3,'Casting'),(8271,8858,3,'Executive Producer'),(8271,17749,1,'Director of Photography'),(8271,17767,6,'Music'),(8271,40256,2,'Director'),(8271,42633,5,'Editor'),(8271,54248,4,'Screenplay'),(8271,20977,4,'Screenplay'),(8271,54249,3,'Producer'),(8271,54250,3,'Producer'),(8271,54251,3,'Producer'),(8271,54252,3,'Producer'),(8271,57601,3,'Producer'),(8271,60284,8,'Costume Design'),(8271,60283,7,'Production Design'),(8271,203950,9,'Stunts'),(8271,1034748,3,'Casting'),(8271,1345635,2,'Script Supervisor'),(5353,6392,8,'Costume Design'),(5353,5162,3,'Producer'),(5353,6800,1,'Director of Photography'),(5353,9184,3,'Producer'),(5353,20292,7,'Production Design'),(5353,21717,5,'Editor'),(5353,24190,6,'Music'),(5353,44740,2,'Director'),(5353,44740,4,'Screenplay'),(5353,44741,3,'Producer'),(9495,4023,3,'Casting'),(9495,120,1,'Director of Photography'),(9495,1303,7,'Production Design'),(9495,5912,6,'Original Music Composer'),(9495,3186,6,'Music'),(9495,3192,3,'Casting'),(9495,8528,3,'Associate Producer'),(9495,15842,5,'Editor'),(9495,32035,3,'Producer'),(9495,21085,3,'Producer'),(9495,21085,2,'Director'),(9495,23926,5,'Editor'),(9495,32797,8,'Costume Design'),(9495,39973,3,'Producer'),(9495,57708,3,'Executive Producer'),(9495,57707,3,'Producer'),(9495,57702,4,'Novel'),(9495,57703,4,'Screenplay'),(9495,57704,3,'Executive Producer'),(9495,1127814,3,'Producer'),(9495,1127815,3,'Producer'),(9495,1217663,4,'Screenplay'),(9495,1521752,8,'Costume Supervisor'),(9495,1521753,8,'Set Costumer'),(9495,1521754,2,'Script Supervisor'),(1257,7145,2,'Director'),(1257,11506,1,'Director of Photography'),(1257,16852,4,'Screenplay'),(1257,16853,4,'Screenplay'),(1257,16853,3,'Producer'),(1257,16854,3,'Producer'),(1257,25138,3,'Executive Producer'),(1257,25139,3,'Executive Producer'),(1257,25140,7,'Production Design'),(1257,25141,5,'Editor'),(1257,25142,5,'Editor'),(1257,19971,8,'Costume Design'),(1257,25143,6,'Music'),(1257,1382732,3,'Executive Producer'),(8842,2952,3,'Casting'),(8842,356,1,'Director of Photography'),(8842,7714,6,'Original Music Composer'),(8842,15524,8,'Costume Design'),(8842,17764,2,'Director'),(8842,18389,3,'Producer'),(8842,21055,5,'Editor'),(8842,24051,3,'Producer'),(8842,42306,3,'Casting'),(8842,56511,4,'Screenplay'),(8842,62121,7,'Set Decoration'),(8842,1327912,7,'Production Design'),(8842,1345635,2,'Script Supervisor'),(8842,1381336,7,'Art Direction'),(8842,1418489,9,'Unit Publicist'),(9531,597,3,'Casting'),(9531,598,3,'Casting'),(9531,6728,4,'Screenplay'),(9531,9918,7,'Production Design'),(9531,10496,3,'Casting'),(9531,10586,2,'Director'),(9531,14456,1,'Director of Photography'),(9531,20007,4,'Characters'),(9531,20008,4,'Characters'),(9531,20009,3,'Executive Producer'),(9531,20010,3,'Producer'),(9531,29538,5,'Editor'),(9531,55279,4,'Screenplay'),(9531,57892,6,'Original Music Composer'),(9531,1458398,3,'Associate Producer'),(9531,1600363,9,'Stunts'),(9099,37,6,'Music'),(9099,339,3,'Producer'),(9099,11958,1,'Director of Photography'),(9099,21217,2,'Director'),(9099,55373,4,'Screenplay'),(9099,56972,5,'Editor'),(9488,2294,2,'Director'),(9488,2294,4,'Screenplay'),(9488,2294,3,'Producer'),(9488,2294,6,'Original Music Composer'),(9488,2294,1,'Director of Photography'),(9488,2294,5,'Editor'),(9488,2294,7,'Production Design'),(9488,2294,6,'Sound Re-Recording Mixer'),(9488,2294,6,'Sound Effects Editor'),(9488,1307,3,'Executive Producer'),(9488,59839,3,'Executive Producer'),(9488,5911,3,'Producer'),(9488,4500,6,'Original Music Composer'),(9488,5914,3,'Casting'),(9488,10630,6,'Supervising Sound Editor'),(9488,11425,8,'Costume Design'),(9488,20464,7,'Set Dresser'),(9488,20489,7,'Property Master'),(9488,57111,3,'Line Producer'),(9488,57111,3,'Unit Production Manager'),(9488,59475,7,'Art Direction'),(9488,63292,7,'Set Decoration'),(9488,95823,3,'Executive In Charge Of Production'),(9488,1001361,2,'Second Assistant Director'),(9488,1127209,7,'Leadman'),(9488,1335078,6,'Sound Effects Editor'),(9488,1341414,6,'Boom Operator'),(9488,1378828,6,'Sound Re-Recording Mixer'),(9488,1382886,7,'Art Department Coordinator'),(9488,1389858,6,'Assistant Sound Editor'),(9488,1397817,9,'Carpenter'),(9488,1398123,6,'Sound Re-Recording Mixer'),(9488,1400556,6,'Foley Editor'),(9488,1401122,7,'Assistant Property Master'),(9488,1401123,7,'Set Dresser'),(9488,1401125,7,'Set Decoration Buyer'),(9488,1403633,9,'Post Production Supervisor'),(9488,1407347,7,'Construction Coordinator'),(9488,1420148,7,'Art Department Assistant'),(9488,1433719,6,'Sound Effects Editor'),(9488,1438379,7,'Supervising Art Director'),(9488,1438395,7,'Construction Foreman'),(9488,1546442,6,'Production Sound Mixer'),(9488,1564584,5,'Dialogue Editor'),(9488,1571711,9,'Carpenter'),(9488,1571713,7,'Set Dresser'),(9488,1616410,7,'Set Designer'),(9488,1638224,7,'Set Dresser'),(9488,1685556,2,'First Assistant Director'),(9488,1851788,9,'Carpenter'),(9488,1851790,9,'Carpenter'),(9488,1851791,9,'Carpenter'),(9488,1851792,9,'Carpenter'),(9488,1851793,9,'Carpenter'),(9488,1851794,9,'Carpenter'),(9488,1851795,7,'Set Dresser'),(9488,1851796,7,'Set Dresser'),(9488,1851797,7,'Set Dresser'),(9488,1851798,7,'Construction Foreman'),(9488,1851799,7,'Painter'),(9488,1851800,9,'Prop Maker'),(9488,1851801,7,'Construction Foreman'),(9488,1851802,7,'Construction Foreman'),(9488,1851803,6,'Sound Effects Editor'),(193,796,7,'Set Decoration'),(193,1153,1,'Director of Photography'),(193,2033,5,'Editor'),(193,2083,7,'Production Design'),(193,2380,2,'Director'),(193,2381,3,'Producer'),(193,2383,3,'Producer'),(193,2384,3,'Executive Producer'),(193,2385,4,'Screenplay'),(193,2386,4,'Screenplay'),(193,2396,7,'Art Direction'),(193,2397,8,'Costume Design'),(193,2398,6,'Original Music Composer'),(193,2399,3,'Casting'),(193,2400,3,'Casting'),(1957,7236,7,'Art Direction'),(1957,13673,5,'Editor'),(1957,6489,6,'Music'),(1957,9351,6,'Music Editor'),(1957,11472,3,'Producer'),(1957,19971,8,'Costume Design'),(1957,17749,1,'Director of Photography'),(1957,18330,3,'Producer'),(1957,10781,2,'Director'),(1957,20170,3,'Casting'),(1957,20213,4,'Writer'),(1957,20214,7,'Production Design'),(1957,25460,9,'Stunts'),(1957,39124,7,'Set Decoration'),(1957,54252,3,'Executive Producer'),(1957,113055,5,'Dialogue Editor'),(1957,113073,6,'Sound Re-Recording Mixer'),(1957,58257,6,'Orchestrator'),(1957,67490,9,'Cableman'),(1957,25549,3,'Casting'),(1957,91156,2,'Second Assistant Director'),(1957,112498,3,'Unit Production Manager'),(1957,95814,3,'Co-Producer'),(1957,95830,7,'Property Master'),(1957,95833,6,'Sound Mixer'),(1957,95846,2,'Script Supervisor'),(1957,142325,9,'Stunt Coordinator'),(1957,936841,7,'Assistant Art Director'),(1957,957264,8,'Hairstylist'),(1957,963355,7,'Set Designer'),(1957,1017376,1,'Camera Operator'),(1957,1299200,7,'Construction Coordinator'),(1957,1329418,8,'Costume Supervisor'),(1957,1338456,3,'Location Manager'),(1957,1377125,6,'ADR Supervisor'),(1957,1377220,6,'Sound Re-Recording Mixer'),(1957,1378765,1,'Still Photographer'),(1957,1384367,5,'Dialogue Editor'),(1957,1398946,6,'Supervising Sound Editor'),(1957,1401786,6,'Sound Effects Editor'),(1957,1403423,5,'Color Timer'),(1957,1405321,8,'Makeup Artist'),(1957,1406190,6,'Assistant Sound Editor'),(1957,1408364,5,'First Assistant Editor'),(1957,1425513,6,'Music Editor'),(1957,1433622,5,'Assistant Editor'),(1957,1449946,6,'Assistant Sound Editor'),(1957,1458077,9,'Unit Publicist'),(1957,1463140,8,'Hair Department Head'),(1957,1465623,8,'Key Hair Stylist'),(1957,1494760,2,'First Assistant Director'),(1957,1511086,6,'ADR Editor'),(1957,1521506,8,'Makeup Department Head'),(1957,1546875,6,'Foley Editor'),(1957,1549173,8,'Key Makeup Artist'),(1957,1549637,9,'Special Effects Coordinator'),(1957,1552215,11,'Rigging Gaffer'),(1957,1552218,9,'Transportation Co-Captain'),(1957,1552219,9,'Transportation Captain'),(1957,1688606,3,'Production Accountant'),(1957,1741874,1,'Key Grip'),(1957,1741896,6,'Boom Operator'),(1957,1741900,3,'Casting Assistant'),(1957,1741901,6,'Assistant Sound Editor'),(5852,852,5,'Editor'),(5852,2875,7,'Production Design'),(5852,1059,3,'Executive Producer'),(5852,1296,3,'Producer'),(5852,2031,3,'Casting'),(5852,2532,3,'Casting'),(5852,7229,6,'Original Music Composer'),(5852,8303,3,'Executive Producer'),(5852,18691,3,'Producer'),(5852,21479,3,'Executive Producer'),(5852,29219,7,'Art Direction'),(5852,33238,1,'Director of Photography'),(5852,38083,3,'Producer'),(5852,46085,2,'Director'),(5852,46086,4,'Writer'),(5852,46087,3,'Producer'),(5852,46088,3,'Producer'),(5852,46090,3,'Producer'),(5852,46091,3,'Line Producer'),(5852,60284,8,'Costume Design'),(5852,1467298,7,'Set Decoration'),(622,2875,7,'Production Design'),(622,1400,6,'Original Music Composer'),(622,1530,3,'Casting'),(622,2190,7,'Art Direction'),(622,2240,1,'Director of Photography'),(622,3556,4,'Screenplay'),(622,3556,2,'Director'),(622,3556,3,'Producer'),(622,3564,5,'Editor'),(622,8908,4,'Novel'),(622,8909,4,'Screenplay'),(622,8911,3,'Producer'),(622,8912,3,'Producer'),(622,8913,3,'Executive Producer'),(622,8915,3,'Executive Producer'),(622,8917,3,'Producer'),(622,8918,3,'Producer'),(622,8919,3,'Producer'),(622,8920,3,'Line Producer'),(622,8921,7,'Set Decoration'),(622,8922,8,'Costume Design'),(622,8923,3,'Production Manager'),(622,1026261,4,'Screenplay'),(1091,511,3,'Associate Producer'),(1091,796,7,'Set Decoration'),(1091,1060,1,'Director of Photography'),(1091,1259,6,'Original Music Composer'),(1091,1767,5,'Editor'),(1091,7186,7,'Production Design'),(1091,16210,6,'Supervising Sound Editor'),(1091,11770,2,'Director'),(1091,11813,3,'Producer'),(1091,14653,9,'Makeup Effects'),(1091,15406,4,'Screenplay'),(1091,15407,3,'Co-Producer'),(1091,15408,3,'Executive Producer'),(1091,15409,3,'Casting'),(1091,15410,7,'Art Direction'),(1091,10770,3,'Producer'),(1091,62164,8,'Costume Supervisor'),(1091,62583,1,'Camera Operator'),(1091,101608,9,'Makeup Effects'),(1091,928942,6,'Sound Re-Recording Mixer'),(1091,1077434,9,'Pilot'),(1091,1258222,1,'Dolly Grip'),(1091,1269306,6,'Sound Effects Editor'),(1091,1271804,1,'Camera Operator'),(1091,1296181,1,'Key Grip'),(1091,1321695,8,'Costume Supervisor'),(1091,1321696,8,'Costume Supervisor'),(1091,1344273,6,'Music Editor'),(1091,1376512,9,'Property Master'),(1091,1376513,7,'Leadman'),(1091,1376514,6,'Supervising Sound Editor'),(1091,1376515,11,'Gaffer'),(1091,1376516,11,'Best Boy Electric'),(1091,1376517,2,'Script Supervisor'),(1091,1384398,2,'Script Supervisor'),(1091,1413602,11,'Gaffer'),(1091,1429045,4,'Story'),(1091,1537471,1,'Dolly Grip'),(1091,1752055,9,'Pilot'),(1091,1752057,9,'Pilot'),(1091,1752062,1,'Key Grip'),(4944,555,7,'Set Decoration'),(4944,1223,2,'Director'),(4944,1223,3,'Producer'),(4944,1223,4,'Screenplay'),(4944,1223,5,'Editor'),(4944,1224,2,'Director'),(4944,1224,3,'Producer'),(4944,1224,4,'Screenplay'),(4944,1224,5,'Editor'),(4944,1225,6,'Original Music Composer'),(4944,1484,3,'Casting'),(4944,2236,3,'Executive Producer'),(4944,2238,3,'Executive Producer'),(4944,4185,1,'Director of Photography'),(4944,10575,7,'Production Design'),(4944,7418,8,'Costume Design'),(4944,32904,7,'Art Direction'),(4944,44482,3,'Executive Producer'),(4944,44482,3,'Unit Production Manager'),(4944,51737,3,'Producer'),(4944,91071,7,'Construction Coordinator'),(4944,122260,9,'Stunts'),(4944,1395692,9,'Special Effects'),(4944,1535737,3,'Production Supervisor'),(4944,1537443,9,'Title Graphics'),(4944,1564277,3,'Executive In Charge Of Post Production'),(4944,1571649,2,'Assistant Director'),(4944,1576967,9,'Transportation Captain'),(334,312,6,'Original Music Composer'),(334,1809,5,'Editor'),(334,1809,3,'Producer'),(334,2950,1,'Director of Photography'),(334,4064,9,'Stunt Coordinator'),(334,4762,4,'Screenplay'),(334,4762,2,'Director'),(334,4762,3,'Producer'),(334,4767,3,'Executive Producer'),(334,4768,3,'Executive Producer'),(334,4769,3,'Producer'),(334,4770,3,'Producer'),(334,4771,6,'Songs'),(334,4772,3,'Casting'),(334,21747,7,'Production Design'),(334,41082,7,'Set Decoration'),(334,40471,7,'Production Design'),(334,40471,8,'Costume Design'),(334,67695,6,'Music Editor'),(334,91147,6,'Music Supervisor'),(334,130533,1,'Steadicam Operator'),(334,136008,5,'Dialogue Editor'),(334,215486,9,'Additional Music'),(334,548408,8,'Makeup Artist'),(334,1050930,5,'Dialogue Editor'),(334,1249773,8,'Makeup Artist'),(334,1299405,5,'Dialogue Editor'),(334,1336061,3,'Production Supervisor'),(334,1341403,6,'Sound Designer'),(334,1341403,6,'Supervising Sound Editor'),(334,1352983,2,'Script Supervisor'),(334,1360100,6,'Sound Effects Editor'),(334,1378226,6,'Sound Re-Recording Mixer'),(334,1378228,6,'Sound Re-Recording Mixer'),(334,1378828,6,'Sound Re-Recording Mixer'),(334,1397731,1,'Steadicam Operator'),(334,1399996,6,'Sound Re-Recording Mixer'),(334,1411293,1,'Still Photographer'),(334,1415333,8,'Makeup Artist'),(334,1428582,8,'Key Hair Stylist'),(334,1533066,8,'Key Hair Stylist'),(334,1534468,11,'Rigging Gaffer'),(334,1546442,6,'Sound mixer'),(334,1559546,7,'Art Department Coordinator'),(8966,19850,2,'Director'),(8966,56855,4,'Screenplay'),(8966,56856,4,'Novel'),(8470,545,3,'Casting'),(8470,2145,3,'Producer'),(8470,2147,3,'Producer'),(8470,6392,8,'Costume Design'),(8470,4767,3,'Executive Producer'),(8470,6453,5,'Editor'),(8470,8419,2,'First Assistant Director'),(8470,11151,2,'Director'),(8470,12526,3,'Executive Producer'),(8470,15526,8,'Hairstylist'),(8470,40384,6,'Original Music Composer'),(8470,17749,1,'Director of Photography'),(8470,21639,3,'Casting'),(8470,22077,3,'Executive In Charge Of Production'),(8470,23547,7,'Set Decoration'),(8470,34856,3,'Co-Producer'),(8470,55313,4,'Screenplay'),(8470,55313,3,'Co-Producer'),(8470,65753,3,'Executive Producer'),(8470,60087,7,'Production Design'),(8470,69744,3,'Co-Executive Producer'),(8470,81687,9,'Stunt Coordinator'),(8470,60032,3,'Unit Production Manager'),(8470,60032,3,'Co-Producer'),(8470,76152,6,'Orchestrator'),(8470,230436,3,'ADR Voice Casting'),(8470,548435,6,'Foley'),(8470,548450,10,'3D Supervisor'),(8470,932748,9,'Stunts'),(8470,936321,3,'Unit Manager'),(8470,936674,3,'Casting Associate'),(8470,1000157,3,'Co-Executive Producer'),(8470,1094388,6,'Music Programmer'),(8470,1208906,11,'Best Boy Electric'),(8470,1302621,2,'Second Assistant Director'),(8470,1317673,7,'Art Direction'),(8470,1326717,8,'Set Costumer'),(8470,1337452,9,'Property Master'),(8470,1337457,6,'Boom Operator'),(8470,1337466,10,'Special Effects Supervisor'),(8470,1372880,6,'ADR Supervisor'),(8470,1376276,6,'Music Editor'),(8470,1378828,6,'Sound Re-Recording Mixer'),(8470,1383561,7,'Art Direction'),(8470,1389000,7,'Construction Coordinator'),(8470,1391760,7,'Standby Painter'),(8470,1395370,7,'Construction Foreman'),(8470,1399877,1,'Camera Operator'),(8470,1399877,1,'Steadicam Operator'),(8470,1400072,6,'Sound Re-Recording Mixer'),(8470,1403423,5,'Color Timer'),(8470,1405232,5,'Dialogue Editor'),(8470,1406826,6,'Sound Effects Editor'),(8470,1408702,11,'Rigging Gaffer'),(8470,1426004,9,'Studio Teachers'),(8470,1428511,9,'Unit Publicist'),(8470,1429531,6,'ADR Editor'),(8470,1436525,1,'Still Photographer'),(8470,1447161,3,'Assistant Production Manager'),(8470,1449149,8,'Key Hair Stylist'),(8470,1457487,2,'Script Supervisor'),(8470,1530192,9,'Armorer'),(8470,1538376,9,'Post Production Supervisor'),(8470,1548532,8,'Key Makeup Artist'),(8470,1549425,9,'Security'),(8470,1550067,5,'First Assistant Editor'),(8470,1550344,6,'Production Sound Mixer'),(8470,1551053,1,'Aerial Director of Photography'),(8470,1551667,4,'Storyboard'),(8470,1553010,9,'Technical Supervisor'),(8470,1553022,3,'Production Accountant'),(8470,1573468,10,'Digital Compositors'),(8470,1584577,3,'Assistant Production Coordinator'),(8470,1587376,9,'Transportation Coordinator'),(8470,1598733,7,'Art Department Coordinator'),(8470,1598734,7,'Assistant Art Director'),(8470,1598735,7,'Leadman'),(8470,1598736,7,'Painter'),(8470,1598737,1,'First Assistant Camera'),(8470,1598739,8,'Seamstress'),(8470,1598740,7,'Set Dresser'),(8470,1598742,9,'Additional Music'),(8470,1598744,9,'Carpenter'),(8470,1598745,9,'Chef'),(8470,1598746,9,'Craft Service'),(8470,1598747,9,'Driver'),(8470,1598748,9,'Picture Car Coordinator'),(8470,1598749,9,'Production Office Assistant'),(8470,1598750,9,'Scenic Artist'),(8470,1598751,9,'Set Medic'),(8470,1598752,9,'Set Production Assistant'),(8470,1598753,9,'Stand In'),(8470,1598755,9,'Video Assist Operator'),(8470,1598756,2,'Assistant Director'),(8470,1598757,5,'Editorial Production Assistant'),(8470,1598758,11,'Electrician'),(8470,1598759,11,'Gaffer'),(8470,1598760,11,'Chief Lighting Technician'),(8470,1598761,11,'Rigging Grip'),(8470,1598762,3,'Location Manager'),(8470,1598764,3,'Production Coordinator'),(8470,1598765,3,'Production Office Coordinator'),(8470,1598766,3,'Production Supervisor'),(8470,1598767,7,'Gun Wrangler'),(8470,1647465,9,'Production Controller'),(8470,1652217,1,'Dolly Grip'),(8470,1720841,5,'Associate Editor'),(8470,1733132,5,'Negative Cutter'),(8470,1776549,7,'Title Designer'),(8470,1840062,7,'Assistant Property Master'),(8470,1840066,1,'Camera Loader'),(8470,1840072,1,'Key Grip'),(8470,1840074,1,'Grip'),(8470,1840075,8,'Makeup Artist'),(8470,1840077,9,'Pilot'),(8470,1840078,2,'Third Assistant Director'),(8470,1840093,3,'Casting Assistant'),(8470,1840112,6,'Utility Sound'),(2163,7213,2,'Director'),(2163,7213,4,'Screenplay'),(2163,5398,3,'Producer'),(2163,7728,6,'Original Music Composer'),(2163,8306,1,'Director of Photography'),(2163,11001,5,'Editor'),(2163,19051,3,'Producer'),(2163,20787,8,'Costume Design'),(2163,21351,5,'Editor'),(2163,21363,3,'Casting'),(2163,21797,7,'Set Decoration'),(2163,22008,7,'Production Design'),(2163,22129,4,'Screenplay'),(2163,22130,7,'Art Direction'),(2163,111904,3,'Executive Producer'),(2163,1402283,3,'Executive Producer'),(2155,37,6,'Original Music Composer'),(2155,493,5,'Editor'),(2155,1262,3,'Casting'),(2155,6627,3,'Producer'),(2155,15244,4,'Screenplay'),(2155,12509,5,'Editor'),(2155,13776,2,'Director'),(2155,14901,8,'Costume Design'),(2155,22056,3,'Producer'),(2155,22057,1,'Director of Photography'),(2155,22058,3,'Casting'),(2155,22059,3,'Casting'),(2155,22060,7,'Set Designer'),(2155,10857,7,'Art Direction'),(2155,22061,7,'Art Direction'),(2155,11021,7,'Set Decoration'),(8409,356,1,'Director of Photography'),(8409,851,6,'Original Music Composer'),(8409,851,6,'Music'),(8409,2122,5,'Editor'),(8409,2874,3,'Casting'),(8409,3275,3,'Casting'),(8409,12835,3,'Producer'),(8409,14339,5,'Editor'),(8409,37932,2,'Director'),(8409,37932,3,'Producer'),(8409,54868,4,'Screenplay'),(8409,54869,4,'Screenplay'),(8409,54870,3,'Producer'),(8409,54871,3,'Producer'),(8409,54872,3,'Producer'),(8409,54873,3,'Producer'),(8409,75654,8,'Costume Design'),(782,518,3,'Producer'),(782,557,8,'Costume Design'),(782,6410,3,'Casting'),(782,1129,1,'Director of Photography'),(782,5381,3,'Producer'),(782,5382,3,'Producer'),(782,8685,2,'Director'),(782,8685,4,'Screenplay'),(782,9337,8,'Hairstylist'),(782,9456,9,'Special Effects Coordinator'),(782,9270,7,'Art Direction'),(782,10759,6,'Original Music Composer'),(782,11625,5,'Editor'),(782,20292,7,'Production Design'),(782,21148,7,'Set Designer'),(782,32644,8,'Makeup Artist'),(782,53182,7,'Set Decoration'),(782,113073,6,'Sound Re-Recording Mixer'),(782,56791,1,'Camera Operator'),(782,92334,8,'Hairstylist'),(782,78395,9,'Stunt Coordinator'),(782,85122,5,'Dialogue Editor'),(782,406204,8,'Makeup Artist'),(782,548445,6,'Foley'),(782,1075261,10,'Visual Effects Supervisor'),(782,1077782,6,'Foley'),(782,1299405,5,'Dialogue Editor'),(782,1321589,8,'Costume Supervisor'),(782,1341403,6,'Supervising Sound Editor'),(782,1368863,7,'Set Designer'),(782,1375739,8,'Makeup Artist'),(782,1377220,6,'Sound Re-Recording Mixer'),(782,1395447,6,'Sound Effects Editor'),(782,1397317,9,'Property Master'),(782,1399636,10,'Visual Effects Supervisor'),(782,1404324,10,'Visual Effects Supervisor'),(782,1405378,7,'Leadman'),(782,1453173,8,'Hairstylist'),(782,1453174,7,'Construction Coordinator'),(782,1453175,6,'ADR & Dubbing'),(782,1453185,1,'Still Photographer'),(9776,2632,4,'Author'),(9776,2632,2,'Director'),(9776,2632,3,'Producer'),(9776,6490,1,'Director of Photography'),(9776,24177,3,'Producer'),(9776,34484,5,'Editor'),(9776,59164,4,'Author'),(9776,59164,3,'Producer'),(9776,63976,6,'Original Music Composer'),(817,9042,7,'Set Decoration'),(817,2445,3,'Producer'),(817,546,3,'Casting'),(817,550,3,'Producer'),(817,551,3,'Producer'),(817,1227,3,'Producer'),(817,3416,3,'Producer'),(817,6050,1,'Director of Photography'),(817,6737,2,'Director'),(817,9648,7,'Art Direction'),(817,9204,6,'Original Music Composer'),(817,9417,6,'Sound Effects Editor'),(817,9427,6,'Supervising Sound Editor'),(817,10395,5,'Editor'),(817,10396,7,'Production Design'),(817,12073,4,'Screenplay'),(817,12073,3,'Producer'),(817,14189,5,'Editor'),(817,14042,8,'Costume Design'),(817,14049,9,'Stunt Coordinator'),(817,14172,4,'Screenplay'),(817,14192,8,'Makeup Artist'),(817,14193,9,'Special Effects'),(817,14194,10,'Visual Effects Supervisor'),(817,14197,9,'Stunts'),(817,14377,3,'Casting'),(268,244,5,'Editor'),(268,293,1,'Director of Photography'),(268,510,2,'Director'),(268,531,6,'Original Music Composer'),(268,913,4,'Screenplay'),(268,3794,4,'Characters'),(268,3804,3,'Producer'),(268,3805,3,'Producer'),(268,3806,3,'Casting'),(268,3807,7,'Production Design'),(268,3795,4,'Screenplay'),(268,10949,3,'Executive Producer'),(943,61,4,'Screenplay'),(943,737,4,'Screenplay'),(943,1091,3,'Producer'),(943,2209,1,'Director of Photography'),(943,2585,6,'Original Music Composer'),(943,3806,3,'Casting'),(943,4699,3,'Producer'),(943,7187,2,'Director'),(943,7187,3,'Producer'),(943,7714,6,'Original Music Composer'),(943,10064,7,'Production Design'),(943,14337,3,'Producer'),(943,14322,6,'Original Music Composer'),(943,14335,3,'Producer'),(943,14336,3,'Producer'),(943,11370,6,'Original Music Composer'),(943,14339,5,'Editor'),(943,14340,5,'Editor'),(943,14341,7,'Art Direction'),(943,14342,7,'Set Decoration'),(350,28,3,'Producer'),(350,2242,3,'Casting'),(350,4437,7,'Set Decoration'),(350,5065,2,'Director'),(350,10567,4,'Screenplay'),(350,10568,4,'Author'),(350,10569,3,'Executive Producer'),(350,10570,3,'Executive Producer'),(350,10571,3,'Line Producer'),(350,10572,6,'Original Music Composer'),(350,10573,1,'Director of Photography'),(350,10574,5,'Editor'),(350,10575,7,'Production Design'),(350,8795,7,'Art Direction'),(350,10576,7,'Art Direction'),(350,10577,8,'Costume Design'),(350,10578,3,'Unit Production Manager'),(350,10579,3,'Unit Production Manager'),(152,1744,2,'Director'),(152,602,7,'Set Decoration'),(152,1096,7,'Art Direction'),(152,1745,3,'Producer'),(152,1746,4,'Story'),(152,1747,4,'Screenplay'),(152,1760,6,'Original Music Composer'),(152,1761,6,'Original Music Composer'),(152,1762,1,'Director of Photography'),(152,1765,7,'Production Design'),(152,1767,5,'Editor'),(152,1768,3,'Casting'),(152,16252,3,'Producer'),(152,1763,7,'Art Direction'),(152,1802,7,'Art Direction'),(152,1801,8,'Costume Design'),(152,406204,8,'Makeup Artist'),(1598,1045,6,'Music'),(1598,369,7,'Production Design'),(1598,370,7,'Art Direction'),(1598,380,3,'Producer'),(1598,488,3,'Executive Producer'),(1598,489,3,'Executive Producer'),(1598,664,3,'Executive Producer'),(1598,1032,2,'Director'),(1598,2242,3,'Casting'),(1598,3661,5,'Editor'),(1598,5629,1,'Director of Photography'),(1598,6192,8,'Costume Design'),(1598,7170,3,'Producer'),(1598,7531,2,'Assistant Director'),(1598,9619,6,'Supervising Sound Editor'),(1598,10066,8,'Makeup Artist'),(1598,15431,9,'Makeup Effects'),(1598,14716,6,'Music Editor'),(1598,17877,7,'Set Decoration'),(1598,17879,4,'Screenplay'),(1598,17879,4,'Novel'),(1598,17880,4,'Screenplay'),(1598,18095,1,'Still Photographer'),(1598,92386,5,'Dialogue Editor'),(1598,1319701,3,'Casting'),(1598,1323090,8,'Makeup Artist'),(1598,1323090,8,'Hairstylist'),(1598,1409832,11,'Gaffer'),(1598,1416088,9,'Special Effects Coordinator'),(1598,1425810,8,'Hairstylist'),(1598,1427543,1,'Camera Operator'),(1598,1457633,9,'Stunt Coordinator'),(1598,1523402,8,'Hairstylist'),(1598,1525317,8,'Makeup Artist'),(1598,1534620,11,'Rigging Gaffer'),(1598,1534622,2,'Script Supervisor'),(1598,1549583,8,'Assistant Costume Designer'),(1598,1728594,9,'Stunts'),(1598,1743157,3,'Publicist'),(8065,6410,3,'Casting'),(8065,4767,3,'Producer'),(8065,6628,7,'Production Design'),(8065,8523,1,'Director of Photography'),(8065,16618,9,'Stunt Coordinator'),(8065,10837,7,'Art Direction'),(8065,11091,3,'Executive Producer'),(8065,33281,3,'Executive Producer'),(8065,34050,4,'Screenplay'),(8065,36797,2,'Director'),(8065,37933,4,'Screenplay'),(8065,52682,8,'Costume Design'),(8065,54417,3,'Producer'),(8065,54418,4,'Novel'),(8065,54419,3,'Executive Producer'),(8065,11017,5,'Editor'),(8065,54420,6,'Music'),(8065,1398863,6,'Music Editor'),(8065,1405232,5,'Dialogue Editor'),(8065,1459723,9,'Special Effects Coordinator'),(8065,1551515,10,'Visual Effects Supervisor'),(8065,1555702,6,'Sound Effects Editor'),(409,154,5,'Editor'),(409,1307,3,'Executive Producer'),(409,59839,3,'Executive Producer'),(409,1310,3,'Producer'),(409,2239,4,'Screenplay'),(409,2239,2,'Director'),(409,2702,1,'Director of Photography'),(409,5484,3,'Executive Producer'),(409,5485,3,'Producer'),(409,5486,3,'Producer'),(409,5487,3,'Line Producer'),(409,5488,6,'Original Music Composer'),(409,5489,3,'Casting'),(409,5490,3,'Casting'),(409,5491,7,'Production Design'),(409,5492,7,'Art Direction'),(409,5493,8,'Costume Design'),(409,5495,4,'Novel'),(409,543194,8,'Costume Design'),(2118,323,4,'Screenplay'),(2118,323,2,'Director'),(2118,323,3,'Producer'),(2118,376,3,'Producer'),(2118,1262,3,'Casting'),(2118,1760,6,'Original Music Composer'),(2118,3453,3,'Executive Producer'),(2118,4152,9,'Special Effects Coordinator'),(2118,7237,7,'Set Decoration'),(2118,4723,4,'Screenplay'),(2118,4723,3,'Co-Producer'),(2118,6062,6,'Foley Editor'),(2118,6875,5,'Editor'),(2118,7952,1,'Grip'),(2118,9269,7,'Production Design'),(2118,11815,3,'Executive Producer'),(2118,16161,6,'Music Editor'),(2118,11099,1,'Director of Photography'),(2118,18862,4,'Novel'),(2118,18349,3,'Producer'),(2118,19310,8,'Costume Design'),(2118,21747,7,'Art Direction'),(2118,21118,1,'Steadicam Operator'),(2118,22059,3,'Casting Associate'),(2118,113055,5,'Dialogue Editor'),(2118,58088,5,'First Assistant Editor'),(2118,60569,3,'Location Manager'),(2118,81687,9,'Stunts'),(2118,75127,8,'Makeup Artist'),(2118,91245,6,'Orchestrator'),(2118,169628,9,'Stunt Coordinator'),(2118,230436,3,'Casting'),(2118,1016007,9,'Stunts'),(2118,1172443,1,'Still Photographer'),(2118,1298897,9,'Special Effects Coordinator'),(2118,1319844,8,'Costume Supervisor'),(2118,1327842,5,'Assistant Editor'),(2118,1378368,9,'Title Graphics'),(2118,1378687,7,'Property Master'),(2118,1392142,8,'Set Costumer'),(2118,1395290,2,'Script Supervisor'),(2118,1403479,1,'First Assistant Camera'),(2118,1406396,10,'Visual Effects Supervisor'),(2118,1407354,6,'Sound Designer'),(2118,1409831,1,'Camera Operator'),(2118,1411293,1,'Still Photographer'),(2118,1412242,6,'Dolby Consultant'),(2118,1413451,6,'Supervising Sound Effects Editor'),(2118,1414518,10,'Visual Effects'),(2118,1418453,8,'Key Hair Stylist'),(2118,1419114,9,'Dialect Coach'),(2118,1435689,7,'Construction Coordinator'),(2118,1458054,2,'Script Supervisor'),(2118,1463390,6,'Production Sound Mixer'),(2118,1536971,9,'Loader'),(2118,1538365,9,'Stunts'),(2118,1546454,3,'Unit Production Manager'),(2118,1549499,9,'Stand In'),(2118,1552549,5,'Color Timer'),(2118,1553244,1,'Key Grip'),(2118,1553262,11,'Rigging Grip'),(2118,1553622,9,'Craft Service'),(2118,1554344,9,'Armorer'),(2118,1556512,6,'Sound Effects Editor'),(2118,1578185,11,'Electrician'),(2118,1593975,7,'Painter'),(2118,1603908,6,'Scoring Mixer'),(2118,1638721,3,'Location Manager'),(2118,1648018,6,'Boom Operator'),(2118,1665903,3,'Production Accountant'),(2118,1748479,6,'Assistant Sound Editor'),(2118,1750212,9,'Chef'),(2118,1765462,9,'Transportation Coordinator'),(2118,1778013,4,'Storyboard'),(2118,1786666,7,'Set Designer'),(2118,1792875,7,'Construction Foreman'),(2118,1809076,7,'Standby Painter'),(2118,1855766,7,'Art Department Coordinator'),(2118,1855767,7,'Greensman'),(2118,1855768,8,'Hairstylist'),(2118,1855769,8,'Seamstress'),(2118,1855770,8,'Set Dressing Artist'),(2118,1855771,9,'Carpenter'),(2118,1855772,9,'Driver'),(2118,1855773,9,'Production Controller'),(2118,1855774,3,'Production Office Coordinator'),(2118,1855775,9,'Propmaker'),(2118,1855776,9,'Set Production Assistant'),(2118,1855777,9,'Transportation Captain'),(2118,1855778,9,'Transportation Co-Captain'),(2118,1855779,9,'Unit Publicist'),(2118,1855780,9,'Utility Stunts'),(2118,1855781,9,'Video Assist Operator'),(2118,1855782,2,'First Assistant Director'),(2118,1855785,3,'Production Supervisor'),(9348,2031,3,'Casting'),(9348,2532,3,'Casting'),(9348,3973,3,'Associate Producer'),(9348,3973,2,'Assistant Director'),(9348,3987,5,'Editor'),(9348,4608,9,'Stunts'),(9348,19155,6,'Original Music Composer'),(9348,19155,6,'Orchestrator'),(9348,9968,7,'Set Decoration'),(9348,9654,9,'Stunts'),(9348,10067,9,'Special Effects Coordinator'),(9348,11507,7,'Production Design'),(9348,11508,7,'Art Direction'),(9348,10765,1,'Director of Photography'),(9348,21370,2,'Director'),(9348,26984,8,'Costume Design'),(9348,41188,8,'Costume Supervisor'),(9348,46087,6,'Music Supervisor'),(9348,49284,3,'Producer'),(9348,57396,4,'Author'),(9348,57396,3,'Producer'),(9348,57398,3,'Executive Producer'),(9348,57398,3,'Unit Production Manager'),(9348,65238,1,'Director of Photography'),(9348,91901,9,'Stunts'),(9348,579077,8,'Makeup Department Head'),(9348,968316,9,'Stunts'),(9348,1332245,9,'Stunts'),(9348,1436539,9,'Stunts'),(9348,1441226,3,'Casting Associate'),(9348,1442499,8,'Hair Department Head'),(9348,1462675,9,'Stunts'),(9348,1531504,6,'Sound Effects Editor'),(9348,1548698,6,'Orchestrator'),(9348,1554594,6,'Scoring Mixer'),(9348,1562248,5,'Color Timer'),(9348,1596819,6,'Sound Re-Recording Mixer'),(9348,1600539,5,'Assistant Editor'),(9348,1648134,9,'Title Graphics'),(9348,1656421,11,'Lighting Technician'),(9348,1680472,10,'Visual Effects'),(9348,1735007,9,'Stunts'),(9348,1768144,7,'Painter'),(377,5140,4,'Screenplay'),(377,5140,2,'Director'),(377,13663,3,'Producer'),(377,13664,3,'Producer'),(377,13665,3,'Executive Producer'),(377,13667,3,'Executive Producer'),(377,13668,3,'Producer'),(377,13669,6,'Original Music Composer'),(377,13670,1,'Director of Photography'),(377,13672,5,'Editor'),(377,13673,5,'Editor'),(377,13674,3,'Casting'),(377,13675,7,'Production Design'),(377,13677,7,'Set Decoration'),(377,13678,8,'Costume Design'),(8843,1720,3,'Casting'),(8843,2445,3,'Producer'),(8843,117,6,'Original Music Composer'),(8843,10816,5,'Editor'),(8843,6328,9,'Stunt Coordinator'),(8843,6854,4,'Screenplay'),(8843,11878,7,'Set Decoration'),(8843,12619,8,'Wigmaker'),(8843,17457,8,'Costume Design'),(8843,29401,3,'Executive Producer'),(8843,46082,7,'Supervising Art Director'),(8843,56515,3,'Producer'),(8843,56516,3,'Executive Producer'),(8843,56517,1,'Director of Photography'),(8843,56518,7,'Production Design'),(8843,56519,5,'Editor'),(8843,56512,2,'Director'),(8843,76054,7,'Set Designer'),(8843,83121,8,'Wigmaker'),(8843,142165,6,'Music Editor'),(8843,551903,8,'Makeup Artist'),(8843,589974,1,'Still Photographer'),(8843,957264,8,'Hairstylist'),(8843,958722,8,'Costume Design'),(8843,964327,3,'Production Supervisor'),(8843,969743,7,'Set Designer'),(8843,1002652,10,'Visual Effects Supervisor'),(8843,1116937,6,'Foley'),(8843,1271644,7,'Assistant Art Director'),(8843,1291650,9,'Transportation Coordinator'),(8843,1319744,8,'Costume Supervisor'),(8843,1323090,8,'Makeup Artist'),(8843,1324829,7,'Art Direction'),(8843,1327146,8,'Set Costumer'),(8843,1334778,7,'Construction Coordinator'),(8843,1334779,9,'Property Master'),(8843,1334782,7,'Set Designer'),(8843,1334783,7,'Sculptor'),(8843,1334784,7,'Art Department Coordinator'),(8843,1334787,10,'Visual Effects'),(8843,1334788,10,'Visual Effects'),(8843,1341808,6,'Sound Re-Recording Mixer'),(8843,1378226,6,'Sound Re-Recording Mixer'),(8843,1391376,8,'Set Costumer'),(8843,1392125,6,'Supervising Sound Editor'),(8843,1392127,5,'Dialogue Editor'),(8843,1392134,6,'Sound Designer'),(8843,1397823,6,'Foley'),(8843,1399996,6,'Sound Re-Recording Mixer'),(8843,1400847,8,'Hairstylist'),(8843,1403415,1,'Helicopter Camera'),(8843,1404540,1,'Camera Operator'),(8843,1409267,8,'Wigmaker'),(8843,1409268,3,'Production Supervisor'),(8843,1409269,7,'Leadman'),(8843,1409270,6,'ADR & Dubbing'),(8843,1409271,6,'Sound Designer'),(8843,1409273,10,'Visual Effects Supervisor'),(8843,1409277,9,'CG Supervisor'),(8843,1409279,9,'Second Unit Cinematographer'),(8843,1409280,11,'Rigging Gaffer'),(8843,1409281,8,'Set Costumer'),(8843,1409282,9,'Picture Car Coordinator'),(8843,1409283,9,'Unit Publicist'),(8843,1409284,2,'Script Supervisor'),(8843,1409285,3,'Location Manager'),(9313,307,1,'Director of Photography'),(9313,2122,5,'Editor'),(9313,2460,4,'Screenplay'),(9313,2460,2,'Director'),(9313,2460,3,'Producer'),(9313,2488,3,'Executive Producer'),(9313,11386,8,'Costume Design'),(9313,24840,4,'Novel'),(9313,42995,3,'Producer'),(9313,52897,3,'Producer'),(9313,57261,3,'Producer'),(9313,57263,6,'Original Music Composer'),(1273,19499,2,'Director'),(1273,19499,4,'Writer'),(1273,19500,3,'Producer'),(1273,19501,3,'Producer'),(1273,19502,4,'Characters'),(1273,19503,4,'Characters'),(1273,22298,1,'Director of Photography'),(1273,22299,5,'Editor'),(1273,22300,7,'Production Design'),(1273,1451676,9,'Visual Effects Editor'),(1273,1459790,2,'Layout'),(1883,548,7,'Production Design'),(1883,10576,7,'Art Direction'),(1883,5281,4,'Screenplay'),(1883,5281,2,'Director'),(1883,5281,3,'Producer'),(1883,5287,6,'Original Music Composer'),(1883,5289,5,'Editor'),(1883,15521,1,'Director of Photography'),(1883,15522,3,'Casting'),(1883,15524,8,'Costume Design'),(1883,17862,6,'Music Supervisor'),(1883,18748,7,'Set Decoration'),(1883,19741,4,'Book'),(1883,19742,4,'Book'),(1883,19743,4,'Screenplay'),(1883,68493,3,'Producer'),(1883,1486764,2,'Script Supervisor'),(2959,1296,3,'Executive Producer'),(2959,1527,1,'Director of Photography'),(2959,7035,5,'Editor'),(2959,20206,3,'Producer'),(2959,20207,3,'Producer'),(2959,20208,3,'Executive Producer'),(2959,23486,6,'Original Music Composer'),(2959,29009,2,'Director'),(2959,29010,4,'Screenplay'),(2959,29011,4,'Screenplay'),(2959,29012,4,'Screenplay'),(2959,29014,3,'Producer'),(2959,29015,3,'Producer'),(2959,29016,3,'Executive Producer'),(2959,29017,3,'Executive Producer'),(2959,29018,3,'Executive Producer'),(2959,29019,7,'Production Design'),(2959,1539947,3,'Co-Producer'),(9957,9545,3,'Casting'),(9957,11772,3,'Executive Producer'),(9957,11812,3,'Producer'),(9957,17494,2,'Director'),(9957,19292,3,'Producer'),(9957,20818,4,'Author'),(9957,20821,3,'Producer'),(9957,20824,7,'Production Design'),(9957,32903,7,'Art Direction'),(9957,32907,3,'Producer'),(9957,32907,4,'Author'),(9957,33283,5,'Editor'),(9957,11371,1,'Director of Photography'),(9957,35766,8,'Costume Design'),(9957,60945,3,'Executive Producer'),(9957,60150,6,'Original Music Composer'),(9957,60155,7,'Art Direction'),(9957,60946,3,'Casting'),(9957,60947,5,'Editor'),(9366,949,3,'Producer'),(9366,45543,4,'Screenplay'),(9366,8246,3,'Producer'),(9366,5162,3,'Producer'),(9366,5164,3,'Producer'),(9366,9152,6,'Original Music Composer'),(9366,10723,2,'Director'),(9366,10725,5,'Editor'),(9366,11958,1,'Director of Photography'),(9366,57456,4,'Novel'),(9366,57457,4,'Novel'),(9366,57464,3,'Executive Producer'),(9366,57465,3,'Executive Producer'),(1576,3122,3,'Production Coordinator'),(1576,4014,2,'Director'),(1576,4014,4,'Screenplay'),(1576,4014,3,'Producer'),(1576,4016,3,'Producer'),(1576,4017,3,'Executive Producer'),(1576,4022,3,'Casting'),(1576,673,3,'Producer'),(1576,3708,9,'Stunt Coordinator'),(1576,1851,5,'Editor'),(1576,7229,6,'Original Music Composer'),(1576,4697,3,'Producer'),(1576,5432,1,'Director of Photography'),(1576,5432,1,'Camera Operator'),(1576,5438,8,'Costume Design'),(1576,5438,7,'Production Design'),(1576,7788,7,'Supervising Art Director'),(1576,9315,6,'Original Music Composer'),(1576,40766,1,'Steadicam Operator'),(1576,14623,6,'Sound Re-Recording Mixer'),(1576,17085,3,'Unit Production Manager'),(1576,17086,6,'Sound Mixer'),(1576,23457,8,'Prosthetic Supervisor'),(1576,25456,3,'Co-Producer'),(1576,31516,3,'Executive Producer'),(1576,37077,2,'Assistant Director'),(1576,56827,9,'Additional Music'),(1576,58005,9,'Second Unit Cinematographer'),(1576,67982,3,'Executive Producer'),(1576,71802,9,'Loader'),(1576,73922,7,'Art Department Manager'),(1576,117220,7,'Sculptor'),(1576,587804,8,'Hairstylist'),(1576,936194,8,'Makeup Artist'),(1576,936446,9,'Property Master'),(1576,958507,3,'Executive Producer'),(1576,1066776,6,'Music Supervisor'),(1576,1334435,9,'Animatronic and Prosthetic Effects'),(1576,1335182,6,'ADR & Dubbing'),(1576,1338143,6,'Foley'),(1576,1354916,7,'Production Illustrator'),(1576,1361676,9,'Technical Supervisor'),(1576,1365690,3,'Associate Producer'),(1576,1398505,3,'Casting'),(1576,1405231,9,'Makeup Effects'),(1576,1406584,8,'Hairstylist'),(1576,1406774,7,'Art Department Coordinator'),(1576,1410749,6,'Dolby Consultant'),(1576,1433005,8,'Makeup Artist'),(1576,1433214,9,'Post Production Supervisor'),(1576,1434148,7,'Art Direction'),(1576,1434166,1,'Still Photographer'),(1576,1434642,9,'Animatronic and Prosthetic Effects'),(1576,1453613,4,'Storyboard'),(1576,1463142,2,'Script Supervisor'),(1576,1464445,1,'Grip'),(1576,1465066,7,'Set Decoration'),(1576,1472643,3,'Line Producer'),(1576,1529024,8,'Hairstylist'),(1576,1529026,7,'Assistant Art Director'),(1576,1530231,9,'Special Effects Coordinator'),(1576,1530231,10,'Special Effects Supervisor'),(1576,1548695,9,'Software Engineer'),(1576,1598690,6,'Sound Editor'),(1576,1613316,3,'Production Manager'),(1576,1614101,6,'Supervising Sound Editor'),(1576,1647655,7,'Construction Coordinator'),(1576,1647656,7,'Leadman'),(1576,1647656,9,'Carpenter'),(1576,1647657,7,'Location Scout'),(1576,1647659,7,'Standby Painter'),(1576,1647660,1,'First Assistant Camera'),(1576,1647661,9,'Choreographer'),(1576,1647662,9,'Driver'),(1576,1647664,9,'Production Office Assistant'),(1576,1647665,9,'Set Medic'),(1576,1647666,9,'Stunts'),(1576,1647667,9,'Unit Publicist'),(1576,1647668,9,'Visual Effects Editor'),(1576,1647669,5,'Color Timer'),(1576,1647670,5,'First Assistant Editor'),(1576,1647671,11,'Best Boy Electric'),(1576,1647672,11,'Electrician'),(1576,1647673,11,'Gaffer'),(1576,1647674,3,'Production Accountant'),(1576,1647675,3,'Researcher'),(1576,1647677,6,'Boom Operator'),(1576,1647678,6,'Sound Designer'),(1576,1647679,10,'3D Supervisor'),(1576,1647680,10,'Visual Effects Coordinator'),(1576,1647681,10,'Visual Effects Producer'),(1576,1647682,3,'Unit Manager'),(609,488,4,'Screenplay'),(609,488,3,'Producer'),(609,488,4,'Story'),(609,489,3,'Associate Producer'),(609,493,5,'Editor'),(609,597,3,'Casting'),(609,598,3,'Casting'),(609,599,3,'Casting'),(609,664,3,'Producer'),(609,671,6,'Supervising Sound Editor'),(609,1760,6,'Original Music Composer'),(609,2507,1,'Director of Photography'),(609,9974,9,'Stunt Coordinator'),(609,10051,2,'Director'),(609,10056,4,'Screenplay'),(609,10058,4,'Screenplay'),(609,10064,7,'Production Design'),(609,10065,7,'Set Decoration'),(609,10066,8,'Makeup Artist'),(609,9337,8,'Makeup Artist'),(609,10067,9,'Special Effects'),(609,10078,9,'Stunts'),(609,1100798,10,'Visual Effects'),(609,1395269,10,'Animation Supervisor'),(609,1424133,10,'Visual Effects'),(609,1458349,10,'Animation'),(5516,151,1,'Director of Photography'),(5516,555,7,'Set Decoration'),(5516,1223,4,'Screenplay'),(5516,1223,2,'Director'),(5516,1223,5,'Editor'),(5516,1223,3,'Producer'),(5516,1224,4,'Screenplay'),(5516,1224,2,'Director'),(5516,1224,5,'Editor'),(5516,1224,3,'Producer'),(5516,1225,6,'Original Music Composer'),(5516,1484,3,'Casting'),(5516,4248,7,'Production Design'),(5516,5174,3,'Producer'),(5516,7418,8,'Costume Design'),(5516,8285,7,'Supervising Art Director'),(5516,9621,9,'Special Effects Coordinator'),(5516,17990,6,'Music Editor'),(5516,21008,4,'Screenplay'),(5516,42906,3,'Producer'),(5516,40141,6,'Sound Effects Editor'),(5516,43850,6,'Music'),(5516,43851,6,'Music'),(5516,45861,3,'Producer'),(5516,388770,5,'Dialogue Editor'),(5516,1281538,9,'Stunt Coordinator'),(5516,1394984,6,'Music Editor'),(5516,1401968,10,'Visual Effects Supervisor'),(5516,1402027,5,'Dialogue Editor'),(5516,1496412,6,'Sound Effects Editor'),(423,970,3,'Casting'),(423,1400,6,'Original Music Composer'),(423,3556,2,'Director'),(423,3556,3,'Producer'),(423,3558,4,'Screenplay'),(423,3559,3,'Producer'),(423,3560,3,'Producer'),(423,3561,1,'Director of Photography'),(423,3563,7,'Production Design'),(423,3564,5,'Editor'),(423,6635,4,'Novel'),(423,6688,8,'Costume Design'),(423,10903,3,'Production Supervisor'),(423,16716,9,'Special Effects Coordinator'),(423,40861,9,'Transportation Coordinator'),(423,19919,3,'Casting'),(423,23584,7,'Set Decoration'),(423,32099,8,'Hairstylist'),(423,32017,8,'Makeup Artist'),(423,41114,7,'Set Decoration'),(423,41853,3,'Location Manager'),(423,44645,3,'Casting'),(423,68584,3,'Production Manager'),(423,142165,6,'Music Editor'),(423,936916,3,'Production Manager'),(423,960832,7,'Art Direction'),(423,1041802,9,'Stunts'),(423,1061537,9,'Creative Consultant'),(423,1180471,1,'Still Photographer'),(423,1288056,2,'Script Supervisor'),(423,1335888,9,'Driver'),(423,1337468,6,'Music Editor'),(423,1358022,10,'Visual Effects Producer'),(423,1380004,2,'Assistant Director'),(423,1404840,6,'Sound Mixer'),(423,1415957,9,'Stunt Coordinator'),(423,1435272,2,'Assistant Director'),(423,1487478,7,'Construction Coordinator'),(423,1547720,6,'Sound Editor'),(423,1580668,3,'Production Manager'),(423,1602319,3,'Casting'),(423,1610205,2,'Assistant Director'),(423,1632390,5,'Assistant Editor'),(423,1638144,9,'Thanks'),(423,1653201,10,'Color Designer'),(2447,5359,6,'Original Music Composer'),(2447,5506,1,'Director of Photography'),(2447,5672,7,'Production Design'),(2447,6040,3,'Producer'),(2447,8756,8,'Costume Design'),(2447,8765,9,'Special Effects'),(2447,10683,4,'Screenplay'),(2447,10683,3,'Executive Producer'),(2447,17315,3,'Executive Producer'),(2447,17886,5,'Editor'),(2447,19850,2,'Director'),(2447,19850,3,'Executive Producer'),(2447,10830,3,'Executive Producer'),(2447,25046,3,'Producer'),(2447,25054,3,'Executive Producer'),(2447,25058,5,'Editor'),(2447,25060,8,'Makeup Artist'),(2447,25061,7,'Art Direction'),(2447,25063,7,'Set Decoration'),(2447,25066,9,'Stunts Coordinator'),(2447,25068,9,'Stunts Coordinator'),(2288,2997,3,'Executive Producer'),(2288,4183,3,'Executive Producer'),(2288,5342,2,'Director'),(2288,5342,3,'Producer'),(2288,5493,8,'Costume Design'),(2288,5582,1,'Director of Photography'),(2288,6476,3,'Producer'),(2288,6491,5,'Editor'),(2288,6492,5,'Editor'),(2288,8448,3,'Executive Producer'),(2288,8406,3,'Producer'),(2288,36695,7,'Production Design'),(2288,18274,2,'Assistant Director'),(2288,18274,3,'Co-Producer'),(2288,23606,4,'Screenplay'),(2288,23606,4,'Theatre Play'),(2288,49345,7,'Art Direction'),(2288,65457,3,'Co-Executive Producer'),(2288,60190,3,'Associate Producer'),(2288,66552,7,'Set Decoration'),(2288,67202,7,'Art Direction'),(2288,142165,6,'Music Editor'),(2288,171297,3,'Casting'),(2288,1065913,3,'Co-Executive Producer'),(2288,1317305,8,'Makeup Artist'),(2288,1337394,7,'Art Direction'),(2288,1337468,6,'Music Editor'),(2288,1393551,9,'Stunt Coordinator'),(2288,1395373,2,'Script Supervisor'),(2288,1403876,10,'Visual Effects Supervisor'),(2288,1407850,3,'Unit Production Manager'),(2288,1408354,1,'Steadicam Operator'),(2288,1428470,8,'Hairstylist'),(2288,1459917,9,'Special Effects'),(2288,1533060,5,'Assistant Editor'),(2288,1537443,9,'Title Graphics'),(2288,1541841,1,'Still Photographer'),(2288,1553887,6,'Foley'),(2288,1608539,9,'Special Effects'),(2288,1637823,10,'Special Effects Supervisor'),(2288,1648110,3,'Unit Production Manager'),(2288,1673059,9,'Stand In'),(2288,1673230,9,'Unit Publicist'),(2288,1673231,10,'Visual Effects'),(169,2042,2,'Director'),(169,37,6,'Original Music Composer'),(169,2044,1,'Director of Photography'),(169,596,7,'Production Design'),(169,898,5,'Editor'),(169,906,7,'Set Decoration'),(169,1091,3,'Producer'),(169,1092,4,'Characters'),(169,1092,4,'Writer'),(169,1093,3,'Producer'),(169,1094,4,'Characters'),(169,1094,4,'Writer'),(169,1097,3,'Casting'),(169,2043,3,'Producer'),(169,2045,3,'Casting'),(169,2046,5,'Editor'),(169,10630,6,'Sound Effects Editor'),(169,10956,2,'First Assistant Director'),(169,7719,8,'Costume Design'),(169,16177,6,'Sound Editor'),(169,14350,7,'Set Designer'),(169,21118,1,'Steadicam Operator'),(169,21796,7,'Set Designer'),(169,26988,10,'Special Effects Supervisor'),(169,33284,8,'Costume Supervisor'),(169,44813,6,'Orchestrator'),(169,46082,7,'Art Direction'),(169,54272,10,'Visual Effects Supervisor'),(169,66167,6,'ADR Supervisor'),(169,93887,9,'Stunt Coordinator'),(169,102721,6,'ADR Editor'),(169,117867,6,'Sound Effects Editor'),(169,121342,6,'Sound Effects Editor'),(169,136450,10,'Creature Design'),(169,137125,6,'Sound Re-Recording Mixer'),(169,143917,6,'Sound Effects Editor'),(169,554009,10,'VFX Supervisor'),(169,1050929,10,'Visual Effects Coordinator'),(169,1106260,9,'Pilot'),(169,1139092,3,'Location Manager'),(169,1197676,6,'Dialogue Editor'),(169,1216735,8,'Hairstylist'),(169,1226653,1,'Camera Operator'),(169,1316296,8,'Makeup Designer'),(169,1325655,8,'Key Costumer'),(169,1335122,6,'Sound Effects Editor'),(169,1338832,6,'Sound Re-Recording Mixer'),(169,1376514,6,'Sound Effects Editor'),(169,1394306,6,'Music Editor'),(169,1395275,1,'Still Photographer'),(169,1398120,6,'Supervising Dialogue Editor'),(169,1398123,6,'Sound Re-Recording Mixer'),(169,1401255,7,'Set Designer'),(169,1404714,7,'Sculptor'),(169,1410345,7,'Property Master'),(169,1412195,6,'Sound Editor'),(169,1423772,3,'Location Manager'),(169,1424130,6,'Sound Re-Recording Mixer'),(169,1431975,2,'Script Supervisor'),(169,1435071,8,'Makeup Supervisor'),(169,1439426,6,'Sound Effects Editor'),(169,1534846,7,'Construction Coordinator'),(169,1548676,9,'Carpenter'),(169,1550240,1,'Key Grip'),(169,1553254,9,'Propmaker'),(169,1562802,6,'Dialogue Editor'),(169,1562804,6,'ADR Editor'),(169,1594907,9,'Propmaker'),(169,1677829,7,'Conceptual Design'),(169,1706677,11,'Gaffer'),(169,1807197,6,'Sound Mixer'),(169,1807201,6,'Sound Re-Recording Mixer'),(169,1840042,3,'Production Coordinator'),(169,1877158,8,'Hairstylist'),(169,1877159,8,'Makeup Artist'),(169,1877160,7,'Set Designer'),(169,1877161,7,'Set Dresser'),(169,1877165,6,'Sound Effects Editor'),(169,1877166,6,'Boom Operator'),(169,1877170,11,'Lighting Technician'),(169,1877171,11,'Best Boy Electric'),(169,1877172,11,'Best Boy Electric'),(169,1877173,5,'First Assistant Editor'),(8090,68602,3,'Producer'),(8090,11079,7,'Set Decoration'),(8090,3953,3,'Producer'),(8090,3954,3,'Producer'),(8090,3958,3,'Executive Producer'),(8090,3965,3,'Casting'),(8090,19155,6,'Music'),(8090,13017,3,'Producer'),(8090,17812,2,'Director'),(8090,17816,5,'Editor'),(8090,36624,8,'Costume Design'),(8090,19464,1,'Director of Photography'),(8090,52790,3,'Producer'),(8090,54772,3,'Producer'),(8090,54773,3,'Producer'),(8090,54774,3,'Producer'),(8090,54776,7,'Production Design'),(8090,54777,3,'Casting'),(8090,54779,4,'Screenplay'),(8090,54780,4,'Screenplay'),(8090,54781,4,'Screenplay'),(8090,936194,8,'Makeup Department Head'),(8090,1034748,3,'Casting'),(8090,1324419,7,'Art Direction'),(8090,1324421,8,'Costume Supervisor'),(3604,7753,1,'Director of Photography'),(3604,5398,3,'Producer'),(3604,9247,7,'Set Designer'),(3604,9247,7,'Art Direction'),(3604,17281,2,'Director'),(3604,10931,4,'Screenplay'),(3604,31931,5,'Editor'),(3604,33313,4,'Characters'),(3604,33314,4,'Adaptation'),(3604,33319,6,'Original Music Composer'),(3604,84527,6,'Music'),(3604,84530,6,'Music'),(3604,84532,6,'Music'),(3604,928828,6,'Music'),(9541,2952,3,'Casting'),(9541,1307,3,'Executive Producer'),(9541,59839,3,'Executive Producer'),(9541,6624,3,'Executive Producer'),(9541,12235,1,'Director of Photography'),(9541,16491,3,'Casting'),(9541,19303,4,'Screenplay'),(9541,19303,2,'Director'),(9541,19303,5,'Editor'),(9541,19303,3,'Executive Producer'),(9541,20503,5,'Editor'),(9541,20503,3,'Producer'),(9541,23654,7,'Production Design'),(9541,23739,6,'Original Music Composer'),(9541,57894,5,'Editor'),(9541,224389,7,'Set Decoration'),(9541,957570,8,'Costume Design'),(9541,1224107,2,'Script Supervisor'),(9541,1275452,7,'Art Direction'),(9541,1333088,8,'Costume Supervisor'),(9541,1447164,9,'Unit Publicist'),(9541,1469631,7,'Art Department Coordinator'),(9541,1469634,2,'Script Supervisor'),(8197,190,2,'Director'),(8197,190,3,'Producer'),(8197,195,6,'Original Music Composer'),(8197,356,1,'Director of Photography'),(8197,384,5,'Editor'),(8197,423,3,'Casting'),(8197,54039,4,'Novel'),(8197,54040,4,'Screenplay'),(8197,54045,3,'Producer'),(8197,54046,3,'Executive Producer'),(8836,3985,5,'Editor'),(8836,5362,3,'Casting'),(8836,5363,3,'Casting'),(8836,6044,3,'Casting'),(8836,12524,4,'Screenplay'),(8836,12524,2,'Director'),(8836,12524,3,'Producer'),(8836,12627,4,'Screenplay'),(8836,12627,3,'Producer'),(8836,12633,6,'Original Music Composer'),(8836,12706,7,'Production Design'),(8836,15022,9,'Second Unit'),(8836,15022,10,'Visual Effects Supervisor'),(8836,25200,10,'Visual Effects Supervisor'),(8836,21257,8,'Makeup Artist'),(8836,60712,1,'Director of Photography'),(8836,62163,7,'Art Direction'),(8836,77204,7,'Set Decoration'),(8836,11106,8,'Costume Design'),(8836,112656,8,'Makeup Department Head'),(8836,112657,8,'Hairstylist'),(8836,112658,9,'Makeup Effects'),(8836,112659,9,'Makeup Effects'),(8836,112660,9,'Makeup Effects'),(8836,77206,9,'Makeup Effects'),(8836,112661,9,'Makeup Effects'),(8836,112662,3,'Production Manager'),(8836,113012,3,'Production Manager'),(8836,113013,9,'Post-Production Manager'),(8836,75870,9,'Second Unit'),(8836,60711,3,'Executive Producer'),(8836,60711,3,'Unit Production Manager'),(8836,113014,9,'Post Production Supervisor'),(8836,113017,9,'Second Unit'),(8836,113018,9,'Second Unit'),(8836,113019,9,'Second Unit'),(8836,113023,9,'Property Master'),(8836,113024,8,'Set Dressing Artist'),(8836,113025,8,'Set Dressing Artist'),(8836,113026,8,'Set Dressing Artist'),(8836,113027,7,'Set Decoration'),(8836,113028,7,'Set Designer'),(8836,113029,8,'Set Dressing Artist'),(8836,113030,8,'Set Dressing Artist'),(8836,75874,7,'Assistant Art Director'),(8836,113031,9,'Property Master'),(8836,113032,9,'Property Master'),(8836,113033,7,'Set Decoration'),(8836,113034,9,'Property Master'),(8836,113035,8,'Set Dressing Artist'),(8836,113036,7,'Construction Coordinator'),(8836,113037,7,'Construction Foreman'),(8836,113038,7,'Art Department Coordinator'),(8836,113039,4,'Storyboard'),(8836,113040,6,'Sound mixer'),(8836,113041,6,'Foley'),(8836,113042,6,'Sound Editor'),(8836,113043,6,'Foley'),(8836,113044,5,'Dialogue Editor'),(8836,113045,6,'Foley'),(8836,113046,6,'Sound Re-Recording Mixer'),(8836,113047,6,'ADR & Dubbing'),(8836,113048,9,'Sound Recordist'),(8836,113049,6,'Sound Editor'),(8836,113050,6,'ADR & Dubbing'),(8836,113051,6,'Sound Effects Editor'),(8836,113052,6,'First Assistant Sound Editor'),(8836,113054,6,'Sound Effects Editor'),(8836,113055,6,'ADR & Dubbing'),(8836,113057,6,'Boom Operator'),(8836,113061,6,'Sound Editor'),(8836,113066,6,'Boom Operator'),(8836,113067,6,'ADR & Dubbing'),(8836,113072,9,'Sound Recordist'),(8836,113073,6,'Sound Re-Recording Mixer'),(8836,113075,6,'Sound Designer'),(8836,113076,9,'Sound Recordist'),(8836,113086,6,'Sound Designer'),(8836,113087,6,'Sound Engineer'),(8836,113088,6,'ADR & Dubbing'),(8836,113089,9,'Sound Recordist'),(8836,113090,6,'Foley'),(8836,113091,9,'Cableman'),(8836,113092,9,'Sound Recordist'),(8836,113093,6,'Sound mixer'),(8836,113094,6,'ADR & Dubbing'),(8836,113095,6,'ADR & Dubbing'),(8836,113096,6,'ADR & Dubbing'),(8836,113097,6,'Sound Designer'),(8836,113098,9,'Special Effects'),(8836,113099,9,'Special Effects'),(8836,113100,9,'Special Effects'),(8836,113101,9,'Special Effects'),(8836,113103,9,'Special Effects'),(8836,113104,9,'Special Effects Coordinator'),(8836,113106,9,'Special Effects'),(8836,113108,9,'Special Effects'),(8836,113109,9,'CG Supervisor'),(8836,113110,9,'Compositors'),(8836,113111,9,'Compositors'),(8836,113112,10,'CG Painter'),(8836,113113,9,'Compositors'),(8836,113114,9,'Compositors'),(8836,113115,10,'Visual Effects'),(8836,113116,9,'Department Administrator'),(8836,113117,10,'Visual Effects'),(8836,113118,10,'Visual Effects'),(8836,113119,9,'Compositors'),(8836,113120,10,'Simulation & Effects Production Assistant'),(8836,113121,10,'CG Painter'),(8836,113122,10,'Visual Effects Supervisor'),(8836,113123,10,'Visual Effects Supervisor'),(8836,113124,9,'Visual Effects Editor'),(8836,113125,9,'Compositors'),(8836,113126,9,'CG Supervisor'),(8836,113127,9,'Compositors'),(8836,113128,9,'Compositors'),(8836,113129,9,'Compositors'),(8836,113130,10,'Visual Effects Producer'),(8836,113131,9,'Compositors'),(8836,113132,9,'Compositors'),(8836,113133,9,'Compositors'),(8836,113134,10,'Simulation & Effects Production Assistant'),(8836,113135,10,'CG Painter'),(8836,113136,10,'CG Painter'),(8836,113137,10,'Visual Effects'),(8836,113138,10,'Visual Effects Producer'),(8836,113139,10,'Visual Effects Producer'),(8836,113140,10,'Visual Effects Producer'),(8836,113141,9,'Compositors'),(8836,113142,10,'CG Painter'),(8836,113143,10,'Simulation & Effects Artist'),(8836,113144,9,'Compositors'),(8836,113145,9,'Compositors'),(8836,113146,10,'CG Painter'),(8836,113147,9,'Compositors'),(8836,113148,9,'Compositors'),(8836,113149,9,'Compositors'),(8836,113150,10,'Visual Effects Producer'),(8836,113152,9,'CG Supervisor'),(8836,113153,10,'Simulation & Effects Production Assistant'),(8836,113154,10,'CG Painter'),(8836,113155,10,'Visual Effects Producer'),(8836,113156,10,'Visual Effects Supervisor'),(8836,113157,9,'Compositors'),(8836,113158,9,'Executive Visual Effects Producer'),(8836,113159,9,'Compositors'),(8836,113160,10,'Visual Effects'),(8836,113161,3,'Production Supervisor'),(8836,113164,10,'Visual Effects'),(8836,113165,9,'Compositors'),(8836,113166,10,'CG Painter'),(8836,113167,9,'Compositors'),(8836,113168,10,'Visual Effects Producer'),(8836,113170,10,'Visual Effects Producer'),(8836,113172,9,'Compositors'),(8836,113174,9,'Compositors'),(8836,113175,9,'Compositors'),(8836,113178,9,'Compositors'),(8836,113180,9,'CG Supervisor'),(8836,113181,9,'Compositors'),(8836,113183,3,'Administration'),(8836,113184,10,'Simulation & Effects Production Assistant'),(8836,113185,9,'Compositors'),(8836,113186,10,'CG Painter'),(8836,113187,9,'Compositors'),(8836,113188,10,'CG Painter'),(8836,113189,9,'Compositors'),(8836,113190,10,'Visual Effects'),(8836,113191,9,'Compositors'),(8836,113192,9,'Stunts'),(8836,113193,9,'Stunts'),(8836,113194,9,'Stunts'),(8836,113195,9,'Stunts'),(8836,113196,9,'Stunts'),(8836,113197,9,'Stunts'),(8836,113198,9,'Stunts'),(8836,113199,9,'Stunts'),(8836,113200,9,'Stunts'),(8836,113201,9,'Stunts'),(8836,113202,9,'Stunts'),(8836,113203,9,'Stunt Coordinator'),(8836,113204,9,'Stunts Coordinator'),(8836,113205,9,'Stunts'),(8836,113206,9,'Stunts'),(8836,113207,9,'Stunts'),(8836,113208,9,'Stunts'),(8836,113209,9,'Stunts'),(8836,113210,9,'Stunts'),(8836,113211,9,'Stunts'),(8836,113212,1,'Grip'),(8836,113213,11,'Gaffer'),(8836,31175,1,'Director of Photography'),(8836,113214,1,'Camera Intern'),(8836,113215,1,'Director of Photography'),(8836,113216,1,'Director of Photography'),(8836,113217,1,'Director of Photography'),(8836,113218,1,'Director of Photography'),(8836,113219,9,'Video Assist Operator'),(8836,113220,1,'Director of Photography'),(9093,149,1,'Director of Photography'),(9093,1729,6,'Original Music Composer'),(9093,2484,5,'Editor'),(9093,12233,3,'Executive Producer'),(9093,12233,3,'Producer'),(9093,17600,3,'Producer'),(9093,20064,3,'Executive Producer'),(9093,22056,3,'Producer'),(9093,34693,3,'Producer'),(9093,37630,2,'Director'),(9093,52171,4,'Screenplay'),(9093,56959,4,'Novel'),(9093,56960,4,'Screenplay'),(9093,56961,3,'Producer'),(9093,948439,3,'Co-Producer'),(849,307,1,'Director of Photography'),(849,244,5,'Editor'),(849,1729,6,'Original Music Composer'),(849,2485,3,'Casting'),(849,7788,7,'Art Direction'),(849,10641,7,'Production Design'),(849,10642,7,'Art Direction'),(849,10643,7,'Set Decoration'),(849,9955,8,'Costume Design'),(849,12804,2,'Director'),(849,12805,4,'Screenplay'),(849,12806,3,'Producer'),(849,12807,3,'Executive Producer'),(849,12808,3,'Producer'),(849,12810,7,'Art Direction'),(4515,2952,3,'Casting'),(4515,500,3,'Executive Producer'),(4515,1301,1,'Director of Photography'),(4515,4135,2,'Director'),(4515,4135,3,'Producer'),(4515,4140,6,'Music'),(4515,4186,5,'Editor'),(4515,7418,8,'Costume Design'),(4515,19157,7,'Set Decoration'),(4515,9183,3,'Executive Producer'),(4515,20292,7,'Production Design'),(4515,34848,3,'Producer'),(4515,36603,3,'Producer'),(4515,36603,4,'Writer'),(4515,39922,3,'Producer'),(4515,39923,7,'Art Direction'),(4515,1552521,9,'Stunts'),(6575,1589,6,'Original Music Composer'),(6575,3184,3,'Producer'),(6575,38412,5,'Editor'),(6575,41039,3,'Producer'),(6575,41039,4,'Screenplay'),(6575,41081,7,'Production Design'),(6575,41084,8,'Costume Design'),(6575,51851,2,'Director'),(6575,51851,3,'Producer'),(6575,51851,4,'Screenplay'),(6575,51852,3,'Executive Producer'),(6575,51853,1,'Director of Photography'),(6575,51854,5,'Editor'),(6440,4023,3,'Casting'),(6440,1806,4,'Novel'),(6440,3192,3,'Casting'),(6440,4148,7,'Set Decoration'),(6440,5306,2,'Director'),(6440,5308,4,'Screenplay'),(6440,5325,3,'Producer'),(6440,5327,5,'Editor'),(6440,5328,3,'Casting'),(6440,5329,3,'Producer'),(6440,5332,8,'Costume Design'),(6440,19155,6,'Original Music Composer'),(6440,11472,3,'Producer'),(6440,16425,1,'Director of Photography'),(6440,18784,7,'Art Direction'),(6440,60014,7,'Art Direction'),(6440,74323,8,'Makeup Artist'),(6440,83066,8,'Hairstylist'),(6440,1033793,3,'Producer'),(6440,1415333,8,'Makeup Artist'),(6440,1423204,8,'Makeup Artist'),(6440,1425973,7,'Art Department Coordinator'),(6440,1484538,2,'Script Supervisor'),(6440,1524757,8,'Hairstylist'),(8967,287,3,'Producer'),(8967,330,5,'Editor'),(8967,6410,3,'Casting'),(8967,909,5,'Editor'),(8967,2949,6,'Original Music Composer'),(8967,3190,5,'Editor'),(8967,4185,1,'Director of Photography'),(8967,5632,7,'Production Design'),(8967,6883,6,'Music Editor'),(8967,8528,3,'Producer'),(8967,8578,5,'Editor'),(8967,40766,1,'Camera Operator'),(8967,16398,3,'Producer'),(8967,20458,3,'Producer'),(8967,30715,2,'Director'),(8967,30715,4,'Writer'),(8967,46588,3,'Producer'),(8967,63292,7,'Set Decoration'),(8967,69229,5,'Editor'),(8967,958488,8,'Costume Design'),(8967,1043954,3,'Executive Producer'),(8967,1325234,8,'Makeup Artist'),(8967,1372211,9,'Stunt Coordinator'),(8967,1377133,1,'Still Photographer'),(8967,1400835,2,'Script Supervisor'),(8967,1420147,8,'Makeup Department Head'),(8967,1438381,8,'Hair Department Head'),(8967,1475160,3,'Casting'),(8967,1531204,6,'Music Supervisor'),(8967,1531362,11,'Gaffer'),(8967,1531365,8,'Costume Supervisor'),(9616,4249,3,'Casting'),(9616,4723,4,'Screenplay'),(9616,4723,2,'Director'),(9616,4723,3,'Producer'),(9616,6713,3,'Executive Producer'),(9616,40838,3,'Assistant Production Coordinator'),(9616,14695,3,'Producer'),(9616,11001,5,'Editor'),(9616,15355,9,'Special Effects Coordinator'),(9616,15911,9,'Second Unit'),(9616,15911,9,'Stunt Coordinator'),(9616,19727,1,'Director of Photography'),(9616,21830,7,'Production Design'),(9616,25063,7,'Lead Set Dresser'),(9616,30081,8,'Makeup Designer'),(9616,32350,7,'Set Decoration'),(9616,50772,6,'Original Music Composer'),(9616,58190,3,'Executive Producer'),(9616,60917,7,'Art Direction'),(9616,112875,6,'ADR Supervisor'),(9616,119117,8,'Costume Design'),(9616,119183,9,'Stunts'),(9616,237057,9,'Driver'),(9616,423556,6,'Production Sound Mixer'),(9616,589494,8,'Key Hair Stylist'),(9616,957282,3,'Local Casting'),(9616,1051646,1,'Camera Operator'),(9616,1133968,6,'Orchestrator'),(9616,1318874,8,'Makeup Department Head'),(9616,1327792,8,'Wardrobe Supervisor'),(9616,1352979,6,'Music Editor'),(9616,1391572,6,'Sound Re-Recording Mixer'),(9616,1392095,10,'Visual Effects Supervisor'),(9616,1394747,6,'Foley'),(9616,1397822,6,'Supervising Sound Editor'),(9616,1398933,1,'Still Photographer'),(9616,1404222,9,'Visual Effects Editor'),(9616,1404225,10,'Visual Effects Producer'),(9616,1413590,9,'Video Assist Operator'),(9616,1413804,3,'Unit Manager'),(9616,1418059,6,'Assistant Sound Editor'),(9616,1422979,6,'Sound Effects Editor'),(9616,1424155,6,'ADR Editor'),(9616,1433719,6,'Sound Editor'),(9616,1437959,9,'Makeup Effects'),(9616,1442136,10,'3D Supervisor'),(9616,1444971,9,'Transportation Captain'),(9616,1471207,3,'Co-Producer'),(9616,1475987,3,'Casting Assistant'),(9616,1510429,7,'Co-Art Director'),(9616,1551913,10,'Digital Compositors'),(9616,1562239,9,'Post Production Supervisor'),(9616,1562248,5,'Color Timer'),(9616,1569563,9,'Post Production Assistant'),(9616,1570217,10,'Special Effects Supervisor'),(9616,1570219,9,'Unit Publicist'),(9616,1571782,10,'Visual Effects Coordinator'),(9616,1573464,6,'Boom Operator'),(9616,1574113,7,'Leadman'),(9616,1574114,7,'Painter'),(9616,1574115,7,'Set Decoration Buyer'),(9616,1574117,8,'Assistant Costume Designer'),(9616,1574118,8,'Makeup Artist'),(9616,1574119,8,'Set Costumer'),(9616,1574120,8,'Set Dressing Artist'),(9616,1574121,9,'Carpenter'),(9616,1574122,10,'CG Animator'),(9616,1574123,9,'Loader'),(9616,1574125,9,'Property Master'),(9616,1574126,9,'Propmaker'),(9616,1574127,9,'Scenic Artist'),(9616,1574128,9,'Set Production Assistant'),(9616,1574129,9,'Sound Recordist'),(9616,1574131,9,'Transportation Coordinator'),(9616,1574132,3,'Unit Production Manager'),(9616,1574133,2,'First Assistant Director'),(9616,1574134,11,'Electrician'),(9616,1574136,3,'Location Manager'),(9616,1574138,3,'Production Accountant'),(9616,1574140,3,'Production Coordinator'),(9616,1574144,10,'Visual Effects'),(9616,1574145,4,'Storyboard'),(9616,1574146,3,'Finance'),(9616,1762711,7,'Set Dresser'),(9616,1762712,2,'Second Assistant Director'),(9726,474,3,'Casting'),(9726,563,5,'Editor'),(9726,578,2,'Director'),(9726,578,3,'Producer'),(9726,4406,3,'Casting'),(9726,20507,7,'Production Design'),(9726,23453,7,'Art Direction'),(9726,19058,8,'Costume Design'),(9726,32354,8,'Hairstylist'),(9726,54745,7,'Set Decoration'),(9726,58789,4,'Author'),(9726,58790,4,'Author'),(9726,63421,6,'Original Music Composer'),(9726,63422,1,'Director of Photography'),(9726,63601,7,'Art Direction'),(9726,91941,9,'Unit Publicist'),(9726,1404200,8,'Makeup Artist'),(9726,1419166,7,'Art Department Coordinator'),(9726,1462919,2,'Script Supervisor'),(9702,2624,3,'Casting'),(9702,5709,7,'Production Design'),(9702,6479,3,'Casting'),(9702,10640,5,'Editor'),(9702,10494,6,'Original Music Composer'),(9702,19971,8,'Costume Design'),(9702,10832,1,'Director of Photography'),(9702,18596,2,'Director'),(9702,18596,3,'Producer'),(9702,25748,7,'Art Direction'),(9702,53634,3,'Producer'),(9702,57650,4,'Screenplay'),(9702,58652,4,'Story'),(9702,58653,4,'Screenplay'),(9702,67834,4,'Screenplay'),(9702,961022,7,'Set Decoration'),(9311,673,3,'Producer'),(9311,5553,6,'Original Music Composer'),(9311,17080,3,'Producer'),(9311,17815,4,'Screenplay'),(9311,19684,2,'Director'),(9311,23331,1,'Director of Photography'),(9311,23332,5,'Editor'),(9311,53074,3,'Producer'),(9311,57247,4,'Novel'),(9280,4023,3,'Casting'),(9280,997,1,'Director of Photography'),(9280,1002,7,'Set Decoration'),(9280,1150,2,'Director'),(9280,1150,4,'Writer'),(9280,1264,5,'Editor'),(9280,3192,3,'Casting'),(9280,3221,3,'Producer'),(9280,5328,3,'Casting'),(9280,11382,6,'Original Music Composer'),(9280,16787,3,'Producer'),(9280,20722,8,'Costume Design'),(9280,57120,3,'Executive Producer'),(9280,60892,7,'Production Design'),(9280,957202,8,'Makeup Artist'),(9280,958092,7,'Art Direction'),(9280,1043298,2,'Script Supervisor'),(9280,1406384,8,'Makeup Artist'),(9280,1433706,8,'Hairstylist'),(9280,1525165,7,'Art Department Coordinator'),(1969,59,4,'Writer'),(1969,59,3,'Producer'),(1969,61,4,'Writer'),(1969,996,6,'Original Music Composer'),(1969,997,9,'Cinematography'),(1969,949,3,'Casting'),(1969,17674,3,'Casting'),(1969,20307,2,'Director'),(1969,20308,2,'Director'),(1969,23728,3,'Producer'),(1969,35455,7,'Production Design'),(1969,57279,3,'Producer'),(1969,62434,5,'Editor'),(1969,62468,3,'Line Producer'),(1969,1120514,7,'Art Direction'),(1381,8374,3,'Producer'),(1381,330,5,'Editor'),(1381,376,3,'Producer'),(1381,5914,3,'Casting'),(1381,4657,9,'Special Effects Coordinator'),(1381,4867,1,'Director of Photography'),(1381,6057,8,'Costume Design'),(1381,6377,6,'Original Music Composer'),(1381,6431,2,'Director'),(1381,6431,4,'Author'),(1381,6431,4,'Screenplay'),(1381,6468,3,'Executive Producer'),(1381,8704,7,'Supervising Art Director'),(1381,9546,7,'Production Design'),(1381,9555,6,'Sound Designer'),(1381,9557,6,'Sound Designer'),(1381,16499,10,'Visual Effects Supervisor'),(1381,17613,7,'Art Direction'),(1381,16836,4,'Author'),(1381,23545,3,'Casting'),(1381,30034,11,'Rigging Gaffer'),(1381,38805,9,'Visual Effects Editor'),(1381,76003,9,'Dialect Coach'),(1381,92237,1,'Camera Operator'),(1381,1204225,7,'Set Designer'),(1381,1268981,10,'Visual Effects Supervisor'),(1381,1293479,9,'Stunt Coordinator'),(1381,1304276,6,'Foley'),(1381,1319389,8,'Costume Supervisor'),(1381,1327222,7,'Set Decoration'),(1381,1327907,7,'Art Direction'),(1381,1337464,6,'Sound Re-Recording Mixer'),(1381,1337469,6,'Music Editor'),(1381,1340345,6,'Sound Designer'),(1381,1340346,6,'ADR & Dubbing'),(1381,1364796,6,'First Assistant Sound Editor'),(1381,1384359,7,'Set Designer'),(1381,1391751,7,'Set Designer'),(1381,1391756,7,'Set Designer'),(1381,1391762,7,'Assistant Art Director'),(1381,1392106,1,'Still Photographer'),(1381,1394740,7,'Art Department Coordinator'),(1381,1394742,9,'Property Master'),(1381,1394748,9,'Special Effects Coordinator'),(1381,1394751,10,'Visual Effects Producer'),(1381,1394757,11,'Gaffer'),(1381,1394760,2,'Script Supervisor'),(1381,1398972,1,'Underwater Camera'),(1381,1400354,5,'Digital Intermediate'),(1381,1401600,9,'Dialect Coach'),(1381,1401790,10,'Visual Effects Producer'),(1381,1402029,10,'Visual Effects Supervisor'),(1381,1406794,3,'Location Manager'),(1381,1418487,5,'Digital Intermediate'),(1381,1420574,9,'Second Unit Cinematographer'),(1381,1438616,10,'Visual Effects Supervisor'),(1381,1445370,5,'Dialogue Editor'),(1381,1447119,7,'Set Decoration'),(1381,1447120,7,'Set Decoration'),(1381,1447121,8,'Hairstylist'),(1381,1447122,8,'Makeup Artist'),(1381,1447124,8,'Makeup Artist'),(1381,1447125,7,'Art Department Coordinator'),(1381,1447128,7,'Greensman'),(1381,1447131,7,'Greensman'),(1381,1447136,7,'Set Designer'),(1381,1447142,9,'Sound Recordist'),(1381,1447143,10,'Animation'),(1381,1447144,10,'Animation'),(1381,1447146,10,'Animation'),(1381,1447147,10,'Visual Effects Producer'),(1381,1447148,10,'Visual Effects Producer'),(1381,1447149,10,'Visual Effects Supervisor'),(1381,1447150,10,'Visual Effects Supervisor'),(1381,1447151,10,'Visual Effects Supervisor'),(1381,1447152,10,'Visual Effects Supervisor'),(1381,1447153,3,'Casting'),(1381,1447155,5,'First Assistant Editor'),(1381,1447156,5,'First Assistant Editor'),(1381,1447157,9,'Transportation Coordinator'),(1381,1447161,3,'Location Manager'),(1381,1447162,3,'Location Manager'),(1381,1447164,9,'Unit Publicist'),(2162,947,6,'Original Music Composer'),(2162,4700,3,'Producer'),(2162,11098,6,'Original Music Composer'),(2162,18457,3,'Casting'),(2162,17979,7,'Set Decoration'),(2162,22100,2,'Director'),(2162,22101,4,'Screenplay'),(2162,22102,4,'Screenplay'),(2162,22103,1,'Director of Photography'),(2162,22104,5,'Editor'),(2162,22105,7,'Set Designer'),(2162,22106,7,'Art Direction'),(2162,22107,8,'Costume Design'),(2162,1401803,9,'Technical Supervisor'),(2900,2624,3,'Casting'),(2900,5549,8,'Costume Design'),(2900,19157,7,'Set Decoration'),(2900,9965,1,'Director of Photography'),(2900,9204,6,'Original Music Composer'),(2900,9270,7,'Art Direction'),(2900,20292,7,'Production Design'),(2900,29524,2,'Director'),(2900,29524,4,'Screenplay'),(2900,29525,3,'Producer'),(2900,113124,10,'Visual Effects Supervisor'),(2900,25830,3,'Casting'),(2900,92359,7,'Set Designer'),(2900,92376,6,'Foley'),(2900,92388,6,'Foley'),(2900,75624,9,'Choreographer'),(2900,91171,3,'Location Manager'),(2900,117842,6,'Supervising Sound Editor'),(2900,983118,1,'Steadicam Operator'),(2900,1299201,8,'Makeup Department Head'),(2900,1338840,2,'Script Supervisor'),(2900,1355526,7,'Leadman'),(2900,1368863,7,'Set Designer'),(2900,1371100,9,'Visual Effects Editor'),(2900,1376276,6,'Music Editor'),(2900,1378217,9,'Property Master'),(2900,1378222,7,'Construction Coordinator'),(2900,1390523,6,'Sound Effects Editor'),(2900,1395276,1,'Camera Operator'),(2900,1400072,6,'Sound Re-Recording Mixer'),(2900,1400564,10,'Visual Effects Producer'),(2900,1401353,8,'Hairstylist'),(2900,1401354,3,'Production Supervisor'),(2900,1401355,7,'Art Department Coordinator'),(2900,1401357,7,'Construction Coordinator'),(2900,1401358,5,'Dialogue Editor'),(2900,1401360,9,'Special Effects Coordinator'),(2900,1401362,10,'Visual Effects Supervisor'),(2900,1401363,9,'Stunt Coordinator'),(2900,1401364,1,'Camera Operator'),(2900,1401365,9,'Video Assist Operator'),(2900,1401366,11,'Lighting Technician'),(2900,1401367,11,'Lighting Technician'),(2900,1401368,8,'Set Costumer'),(2900,1401371,8,'Set Costumer'),(2900,1401372,9,'Transportation Coordinator'),(2900,1401373,9,'Unit Publicist'),(2900,1401374,3,'Location Manager'),(881,149,1,'Director of Photography'),(881,2874,3,'Casting'),(881,3026,2,'Director'),(881,3026,3,'Producer'),(881,3030,3,'Producer'),(881,3032,5,'Editor'),(881,3275,3,'Casting'),(881,5322,3,'Producer'),(881,7530,3,'Executive Producer'),(881,13304,7,'Production Design'),(881,9249,3,'Co-Producer'),(881,9249,3,'Production Manager'),(881,9250,3,'Co-Producer'),(881,9251,6,'Music'),(881,9255,8,'Costume Design'),(881,13520,4,'Screenplay'),(881,13520,4,'Theatre Play'),(881,13521,3,'Executive Producer'),(881,13522,5,'Editor'),(881,14762,7,'Set Designer'),(881,14349,7,'Art Direction'),(881,13436,8,'Makeup Department Head'),(881,21118,1,'Steadicam Operator'),(881,21795,7,'Set Designer'),(881,24956,1,'Second Unit Director of Photography'),(881,57077,2,'First Assistant Director'),(881,66519,5,'First Assistant Editor'),(881,214170,8,'Makeup Artist'),(881,578729,8,'Hair Department Head'),(881,583098,5,'Assistant Editor'),(881,589970,11,'Chief Lighting Technician'),(881,1171347,7,'Set Decoration'),(881,1195610,3,'Production Coordinator'),(881,1265263,2,'Second Assistant Director'),(881,1323090,8,'Makeup Artist'),(881,1355532,2,'Script Supervisor'),(881,1400849,7,'Property Master'),(881,1401363,9,'Stunt Coordinator'),(881,1404540,1,'Camera Operator'),(881,1412219,5,'Assistant Editor'),(881,1425810,8,'Hairstylist'),(881,1462918,8,'Hairstylist'),(881,1535425,7,'Construction Coordinator'),(881,1619077,1,'Key Grip'),(881,1711837,9,'Transportation Coordinator'),(881,1743180,9,'Post Production Supervisor'),(881,1751461,1,'First Assistant Camera'),(881,1752929,6,'Sound Mixer'),(881,1759859,3,'Production Coordinator'),(881,1759860,3,'Location Manager'),(881,1759861,9,'Special Effects Coordinator'),(881,1759862,7,'Construction Foreman'),(9600,1215,2,'Director'),(9600,17144,3,'Producer'),(9600,12970,5,'Editor'),(9600,13584,5,'Editor'),(9600,78029,3,'Executive Producer'),(9600,21068,6,'Original Music Composer'),(9600,53840,1,'Director of Photography'),(9600,58144,4,'Screenplay'),(9600,58143,4,'Screenplay'),(9600,58145,3,'Executive Producer'),(9600,17313,3,'Producer'),(326,894,6,'Original Music Composer'),(326,2723,1,'Director of Photography'),(326,4755,2,'Director'),(326,6044,3,'Casting'),(326,12066,3,'Executive Producer'),(326,10853,5,'Editor'),(326,19656,4,'Screenplay'),(326,23415,8,'Costume Design'),(326,60285,7,'Set Decoration'),(326,60596,7,'Art Direction'),(326,223990,7,'Production Design'),(326,1387544,2,'Script Supervisor'),(326,1393405,6,'Music Editor'),(326,1399066,1,'Still Photographer'),(326,1407229,1,'Camera Operator'),(326,1407229,1,'Steadicam Operator'),(326,1560760,4,'Screenplay'),(326,1560760,4,'Story'),(326,1560762,4,'Story'),(7220,869,3,'Producer'),(7220,876,2,'Director'),(7220,876,4,'Writer'),(7220,6891,3,'Co-Producer'),(7220,6895,3,'Executive Producer'),(7220,7416,7,'Art Direction'),(7220,7624,3,'Executive Producer'),(7220,7626,3,'Producer'),(7220,10850,3,'Executive Producer'),(7220,10703,4,'Writer'),(7220,11410,5,'Editor'),(7220,18457,3,'Casting'),(7220,20305,3,'Executive Producer'),(7220,24192,6,'Music Supervisor'),(7220,27181,6,'Music'),(7220,34858,7,'Production Design'),(7220,37925,1,'Director of Photography'),(7220,39455,3,'Casting'),(7220,39456,3,'Casting'),(7220,47288,3,'Executive Producer'),(7220,47288,3,'Unit Production Manager'),(7220,52469,3,'Associate Producer'),(7220,11106,8,'Costume Design'),(7220,56171,3,'Executive Producer'),(7220,60706,5,'Editor'),(7220,60862,3,'Associate Producer'),(7220,92479,9,'Stunt Coordinator'),(7220,74766,8,'Hair Department Head'),(7220,76805,7,'Art Direction'),(7220,35287,4,'Characters'),(7220,11063,7,'Set Decoration'),(7220,117217,4,'Storyboard'),(7220,134930,7,'Set Decoration Buyer'),(7220,143893,8,'Makeup Artist'),(7220,223243,7,'Set Designer'),(7220,230436,3,'ADR Voice Casting'),(7220,932179,3,'Location Manager'),(7220,937174,3,'Co-Producer'),(7220,983446,7,'Set Decoration Buyer'),(7220,1172893,9,'Post Production Supervisor'),(7220,1319384,8,'Key Makeup Artist'),(7220,1335219,6,'Supervising Sound Editor'),(7220,1367494,6,'Sound Effects Editor'),(7220,1367666,6,'Assistant Sound Editor'),(7220,1370800,7,'Set Designer'),(7220,1378750,7,'Assistant Art Director'),(7220,1382250,6,'Music Editor'),(7220,1389601,2,'Script Supervisor'),(7220,1391122,7,'Set Dresser'),(7220,1392907,10,'Visual Effects Producer'),(7220,1393406,9,'Transportation Coordinator'),(7220,1394131,6,'Sound Re-Recording Mixer'),(7220,1395368,11,'Gaffer'),(7220,1399130,1,'Still Photographer'),(7220,1399861,6,'Sound Re-Recording Mixer'),(7220,1400093,6,'Sound Effects Editor'),(7220,1400741,8,'Hairstylist'),(7220,1410119,9,'Picture Car Coordinator'),(7220,1412452,6,'Supervising Sound Editor'),(7220,1412702,6,'Sound Effects Editor'),(7220,1412704,5,'Dialogue Editor'),(7220,1413509,10,'Visual Effects Supervisor'),(7220,1416067,11,'Rigging Gaffer'),(7220,1416826,9,'Unit Publicist'),(7220,1423866,1,'Camera Operator'),(7220,1428595,6,'Sound Effects Editor'),(7220,1432026,5,'First Assistant Editor'),(7220,1460569,1,'First Assistant Camera'),(7220,1463765,9,'Video Assist Operator'),(7220,1490943,9,'Property Master'),(7220,1490943,9,'Armorer'),(7220,1528387,8,'Makeup Artist'),(7220,1528387,8,'Hairstylist'),(7220,1532709,7,'Construction Coordinator'),(7220,1535398,1,'Steadicam Operator'),(7220,1549418,7,'Leadman'),(7220,1549428,9,'Special Effects Coordinator'),(7220,1551870,6,'Sound Mixer'),(7220,1560110,5,'Color Timer'),(7220,1570751,1,'Camera Loader'),(7220,1573598,8,'Key Hair Stylist'),(7220,1573601,9,'Driver'),(7220,1573601,9,'Security'),(7220,1573605,7,'Assistant Property Master'),(7220,1573614,2,'First Assistant Director'),(7220,1573618,3,'Production Accountant'),(7220,1573619,3,'Production Coordinator'),(7220,1573621,3,'Production Supervisor'),(7220,1573625,6,'Sound Engineer'),(7220,1701758,5,'Assistant Editor'),(7220,1707102,10,'24 Frame Playback'),(7220,1707105,11,'Rigging Grip'),(7220,1707107,6,'Boom Operator'),(7220,1707110,8,'Seamstress'),(7220,1707112,8,'Makeup Artist'),(7220,1707113,8,'Hair Department Head'),(7220,1707115,7,'Art Department Coordinator'),(7220,1707118,7,'Set Decoration Buyer'),(7220,1707120,3,'Production Accountant'),(7220,1707125,9,'Picture Car Coordinator'),(7220,1707126,9,'Transportation Captain'),(7220,1707128,9,'Transportation Co-Captain'),(7220,1707140,5,'Assistant Editor'),(7220,1745942,2,'Second Assistant Director'),(7220,1748025,9,'Marine Coordinator'),(7220,1762646,7,'Title Designer'),(7220,1762647,1,'Key Grip'),(7220,1762648,1,'Grip'),(7220,1762649,8,'Ager/Dyer'),(7220,1762663,3,'Assistant Production Coordinator'),(7220,1762664,3,'Casting Assistant'),(7220,1762665,6,'Musician'),(9763,2545,3,'Executive Producer'),(9763,1113,3,'Casting'),(9763,5912,6,'Original Music Composer'),(9763,3082,7,'Production Design'),(9763,8401,3,'Producer'),(9763,11114,5,'Editor'),(9763,18910,4,'Screenplay'),(9763,23773,7,'Art Direction'),(9763,33279,2,'Director'),(9763,38937,4,'Screenplay'),(9763,42632,1,'Director of Photography'),(9763,53680,3,'Casting'),(9763,58987,3,'Producer'),(9763,58987,4,'Story'),(9763,58987,4,'Screenplay'),(9763,58988,4,'Screenplay'),(9763,58988,4,'Story'),(9763,59525,3,'Producer'),(9763,69505,3,'Executive Producer'),(9763,1342606,2,'Script Supervisor'),(1892,1,4,'Screenplay'),(1892,1,3,'Executive Producer'),(1892,1,4,'Story'),(1892,491,6,'Original Music Composer'),(1892,665,3,'Producer'),(1892,8844,4,'Screenplay'),(1892,7727,10,'Creature Design'),(1892,7727,8,'Makeup Designer'),(1892,8934,9,'Cinematography'),(1892,10668,9,'Cinematography'),(1892,19800,2,'Director'),(1892,1424133,10,'Visual Effects'),(8055,151,1,'Director of Photography'),(8055,468,2,'Director'),(8055,474,3,'Casting'),(8055,2226,3,'Producer'),(8055,2239,3,'Producer'),(8055,4222,3,'Casting'),(8055,5493,8,'Costume Design'),(8055,6097,7,'Supervising Art Director'),(8055,6208,7,'Production Design'),(8055,8403,4,'Screenplay'),(8055,8969,1,'Director of Photography'),(8055,9022,3,'Producer'),(8055,11880,5,'Editor'),(8055,17561,7,'Art Direction'),(8055,20063,3,'Producer'),(8055,52552,7,'Art Direction'),(8055,54121,4,'Novel'),(8055,63832,7,'Set Decoration'),(8055,86594,8,'Makeup Artist'),(8055,1012907,7,'Art Direction'),(8055,1045816,6,'Original Music Composer'),(8055,1078304,5,'Digital Intermediate'),(8055,1177711,7,'Art Direction'),(8055,1177712,7,'Set Decoration'),(8055,1177713,8,'Costume Design'),(8055,1338291,2,'Script Supervisor'),(8055,1408850,9,'Unit Publicist'),(8055,1427381,6,'Music Editor'),(8055,1458984,2,'Script Supervisor'),(9294,153,6,'Music'),(9294,432,1,'Director of Photography'),(9294,12962,2,'Director'),(9294,12970,5,'Editor'),(9294,14093,3,'Executive Producer'),(9294,15004,3,'Executive Producer'),(9294,17797,3,'Producer'),(9294,46086,4,'Screenplay'),(9294,71324,3,'Producer'),(9294,1551320,9,'Sound Recordist'),(9647,531,6,'Music'),(9647,1044,1,'Director of Photography'),(9647,1254,3,'Producer'),(9647,2241,5,'Editor'),(9647,7187,2,'Director'),(9647,7187,3,'Producer'),(9647,10640,5,'Editor'),(9647,10450,4,'Screenplay'),(9647,28866,4,'Screenplay'),(9647,40437,3,'Executive Producer'),(9353,909,5,'Editor'),(9353,70851,3,'Producer'),(9353,9249,3,'Executive Producer'),(9353,11425,8,'Costume Design'),(9353,32036,7,'Production Design'),(9353,17735,3,'Producer'),(9353,17735,4,'Writer'),(9353,40545,1,'Director of Photography'),(9353,53925,4,'Screenplay'),(9353,53925,2,'Director'),(9353,53925,4,'Author'),(9353,57408,4,'Screenplay'),(9353,57408,4,'Author'),(7305,489,3,'Producer'),(7305,493,5,'Editor'),(7305,15841,5,'Editor'),(7305,664,2,'Director'),(7305,669,7,'Production Design'),(7305,711,3,'Producer'),(7305,751,3,'Casting'),(7305,1213,6,'Original Music Composer'),(7305,5708,1,'Director of Photography'),(7305,10197,7,'Art Direction'),(7305,26095,4,'Screenplay'),(7305,52417,4,'Novel'),(7305,10858,7,'Set Decoration'),(7305,1007395,9,'Stunt Coordinator'),(3594,1262,3,'Casting'),(3594,4867,1,'Director of Photography'),(3594,5553,6,'Original Music Composer'),(3594,5572,2,'Director'),(3594,5583,5,'Editor'),(3594,8411,8,'Costume Design'),(3594,9543,3,'Producer'),(3594,15017,8,'Makeup Department Head'),(3594,28636,7,'Production Design'),(3594,33234,4,'Screenplay'),(3594,33624,3,'Producer'),(3594,33625,7,'Set Decoration'),(59,224,2,'Director'),(59,298,3,'Producer'),(59,305,4,'Screenplay'),(59,306,4,'Novel'),(59,307,1,'Director of Photography'),(59,310,5,'Editor'),(59,117,6,'Original Music Composer'),(59,4484,4,'Novel'),(59,6629,7,'Art Direction'),(59,7800,3,'Casting'),(59,8315,7,'Production Design'),(59,13551,8,'Costume Design'),(59,15229,9,'Stunt Coordinator'),(59,17315,3,'Executive Producer'),(59,20223,3,'Producer'),(59,10830,3,'Executive Producer'),(59,27710,3,'Executive Producer'),(59,62241,3,'Co-Producer'),(59,65702,3,'Executive Producer'),(59,68748,6,'Supervising Sound Editor'),(59,113982,3,'Executive Producer'),(59,91886,6,'Supervising Sound Editor'),(59,134932,6,'Sound Re-Recording Mixer'),(59,558230,5,'Dialogue Editor'),(59,957970,7,'Set Decoration'),(59,960477,3,'Executive Producer'),(59,1340919,2,'Script Supervisor'),(59,1380387,6,'Sound Effects Editor'),(59,1392106,1,'Still Photographer'),(59,1402037,6,'Music Editor'),(59,1407705,6,'Sound Re-Recording Mixer'),(59,1413907,6,'Sound Re-Recording Mixer'),(59,1428469,8,'Key Hair Stylist'),(59,1544338,6,'Music Supervisor'),(59,1544379,3,'Unit Production Manager'),(9335,59,3,'Producer'),(9335,59,4,'Author'),(9335,59,4,'Characters'),(9335,61,4,'Author'),(9335,61,4,'Characters'),(9335,18865,2,'Director'),(9335,24310,1,'Director of Photography'),(9335,21932,3,'Producer'),(9335,50954,6,'Original Music Composer'),(9335,51514,5,'Editor'),(9335,56231,5,'Editor'),(9335,57279,2,'Assistant Director'),(9335,57347,3,'Executive Producer'),(9335,57348,1,'Director of Photography'),(9335,83688,3,'Associate Producer'),(9335,212137,3,'Associate Producer'),(9335,1477203,3,'Associate Producer'),(8649,149,1,'Director of Photography'),(8649,1032,2,'Director'),(8649,1035,4,'Screenplay'),(8649,1638,6,'Sound Effects Designer'),(8649,2043,4,'Storyboard'),(8649,2242,3,'Casting'),(8649,2366,7,'Production Design'),(8649,2997,3,'Producer'),(8649,3661,5,'Editor'),(8649,4187,7,'Art Direction'),(8649,6690,10,'Visual Effects Producer'),(8649,6192,8,'Costume Design'),(8649,6488,3,'Associate Producer'),(8649,7170,3,'Producer'),(8649,7182,6,'Original Music Composer'),(8649,7182,6,'Conductor'),(8649,7531,3,'Co-Producer'),(8649,7531,2,'First Assistant Director'),(8649,11408,3,'Associate Producer'),(8649,11473,3,'Executive Producer'),(8649,11473,3,'Unit Production Manager'),(8649,15430,8,'Hairstylist'),(8649,18095,1,'Still Photographer'),(8649,18524,3,'Co-Producer'),(8649,18857,6,'Sound Mixer'),(8649,21969,3,'Casting Associate'),(8649,26678,3,'ADR Voice Casting'),(8649,11303,3,'Executive Producer'),(8649,58185,1,'Dolly Grip'),(8649,92375,6,'Foley Editor'),(8649,92386,6,'ADR Editor'),(8649,71800,9,'Post Production Supervisor'),(8649,99426,5,'Dialogue Editor'),(8649,142155,5,'Dialogue Editor'),(8649,218277,4,'Novel'),(8649,983118,1,'Steadicam Operator'),(8649,1074163,9,'Stunt Coordinator'),(8649,1127740,9,'Property Master'),(8649,1315679,7,'Set Decoration'),(8649,1320911,8,'Key Makeup Artist'),(8649,1333223,6,'Supervising Sound Editor'),(8649,1377130,10,'Visual Effects Supervisor'),(8649,1395368,11,'Gaffer'),(8649,1400072,6,'Sound Re-Recording Mixer'),(8649,1402039,2,'Script Supervisor'),(8649,1404903,6,'Supervising ADR Editor'),(8649,1417414,7,'Construction Coordinator'),(8649,1437273,8,'Key Hair Stylist'),(8649,1458534,3,'Publicist'),(8649,1470185,8,'Wardrobe Supervisor'),(8649,1505468,9,'Driver'),(8649,1510273,11,'Electrician'),(8649,1521104,8,'Wigmaker'),(8649,1534638,6,'Music Editor'),(8649,1534640,8,'Hairstylist'),(8649,1534641,8,'Makeup Artist'),(8649,1534642,8,'Makeup Artist'),(8649,1534643,3,'Production Supervisor'),(8649,1536554,10,'Visual Effects Coordinator'),(8649,1536974,6,'Foley'),(8649,1546902,6,'Boom Operator'),(8649,1548284,1,'Camera Operator'),(8649,1550194,11,'Rigging Gaffer'),(8649,1550718,1,'First Assistant Camera'),(8649,1550719,1,'Grip'),(8649,1550721,9,'Carpenter'),(8649,1550722,9,'Chef'),(8649,1550723,9,'Set Medic'),(8649,1550724,9,'Special Effects Coordinator'),(8649,1550725,9,'Stunts'),(8649,1550727,9,'Transportation Captain'),(8649,1550728,9,'Unit Publicist'),(8649,1550729,9,'Visual Effects Editor'),(8649,1550730,5,'Color Timer'),(8649,1550732,5,'First Assistant Editor'),(8649,1550733,11,'Best Boy Electric'),(8649,1550801,11,'Rigging Grip'),(8649,1550802,3,'Location Manager'),(8649,1550811,6,'Orchestrator'),(8649,1550812,6,'Assistant Sound Editor'),(8649,1550817,9,'Production Office Assistant'),(8649,1550818,9,'Stand In'),(8649,1550820,9,'Production Intern'),(8649,1550821,9,'Transportation Co-Captain'),(8649,1733209,7,'Assistant Property Master'),(8649,1733210,7,'Set Dresser'),(8649,1733211,1,'Camera Loader'),(8649,1733212,1,'Key Grip'),(8649,1733213,8,'Key Costumer'),(8649,1733214,2,'Second Assistant Director'),(8649,1733215,3,'Assistant Production Coordinator'),(8649,1733216,6,'Apprentice Sound Editor'),(3587,1721,5,'Editor'),(3587,376,3,'Producer'),(3587,1530,3,'Casting'),(3587,7535,7,'Set Decoration'),(3587,7630,4,'Screenplay'),(3587,10639,1,'Director of Photography'),(3587,9251,6,'Original Music Composer'),(3587,13563,2,'Director'),(3587,13563,3,'Producer'),(3587,19310,8,'Costume Design'),(3587,33611,3,'Producer'),(3587,33612,7,'Art Direction'),(182,153,6,'Music'),(182,495,3,'Casting'),(182,497,7,'Art Direction'),(182,1884,2,'Director'),(182,1884,1,'Director of Photography'),(182,1884,5,'Editor'),(182,1890,7,'Production Design'),(182,2217,4,'Novel'),(182,45543,4,'Screenplay'),(182,4061,8,'Costume Design'),(182,7538,6,'Music Editor'),(182,21707,7,'Set Decoration'),(182,22486,9,'Property Master'),(182,113045,6,'Foley'),(182,113090,6,'Foley'),(182,63190,5,'First Assistant Editor'),(182,92332,8,'Hair Department Head'),(182,548437,5,'Dialogue Editor'),(182,589973,1,'Camera Operator'),(182,1128115,9,'Choreographer'),(182,1194472,11,'Lighting Technician'),(182,1196351,3,'Casting Associate'),(182,1212071,3,'Casting Associate'),(182,1319166,8,'Makeup Department Head'),(182,1324652,1,'Still Photographer'),(182,1329113,8,'Costume Supervisor'),(182,1333900,8,'Makeup Artist'),(182,1335069,9,'Special Effects Coordinator'),(182,1335127,6,'Sound Designer'),(182,1335127,6,'Sound Re-Recording Mixer'),(182,1339445,7,'Construction Coordinator'),(182,1389609,8,'Makeup Artist'),(182,1392909,10,'Visual Effects Supervisor'),(182,1411109,5,'Digital Intermediate'),(182,1413224,8,'Key Hair Stylist'),(182,1414174,7,'Leadman'),(182,1436181,10,'Visual Effects Producer'),(182,1442116,7,'Art Department Coordinator'),(182,1476175,1,'First Assistant Camera'),(182,1524757,8,'Hairstylist'),(182,1534978,9,'Carpenter'),(182,1536631,11,'Rigging Gaffer'),(182,1549227,11,'Rigging Grip'),(182,1551139,10,'Visual Effects Coordinator'),(182,1551150,8,'Set Costumer'),(182,1551151,8,'Set Costumer'),(182,1551152,9,'Choreographer'),(182,1551155,8,'Key Hair Stylist'),(182,1551159,7,'Greensman'),(182,1551160,9,'Carpenter'),(182,1551162,11,'Rigging Grip'),(182,1551163,11,'Rigging Grip'),(182,1551164,11,'Rigging Grip'),(5494,43673,2,'Director'),(5494,43673,4,'Screenplay'),(5494,43674,4,'Screenplay'),(5494,43675,3,'Producer'),(5494,43676,3,'Producer'),(5494,38309,6,'Original Music Composer'),(5494,43677,1,'Director of Photography'),(5494,43678,5,'Editor'),(5494,15806,5,'Editor'),(5494,43679,3,'Casting'),(28,154,5,'Editor'),(28,154,6,'Sound Designer'),(28,1776,2,'Director'),(28,1776,4,'Screenplay'),(28,1776,3,'Producer'),(28,1776,6,'Music'),(28,8327,4,'Novel'),(28,8328,4,'Screenplay'),(28,2870,3,'Producer'),(28,2871,3,'Producer'),(28,8330,3,'Producer'),(28,8331,3,'Producer'),(28,8333,3,'Producer'),(28,3170,3,'Producer'),(28,2872,6,'Original Music Composer'),(28,7202,1,'Director of Photography'),(28,3274,5,'Editor'),(28,852,5,'Editor'),(28,8337,3,'Casting'),(28,3176,3,'Casting'),(28,2875,7,'Production Design'),(28,794,7,'Art Direction'),(28,8339,7,'Set Decoration'),(28,8340,8,'Makeup Artist'),(28,8342,8,'Makeup Artist'),(28,8344,3,'Production Manager'),(28,123,3,'Production Manager'),(28,8346,2,'Assistant Director'),(28,511,2,'Assistant Director'),(28,795,7,'Assistant Art Director'),(28,2889,6,'Sound Re-Recording Mixer'),(28,3177,6,'Sound Re-Recording Mixer'),(28,3178,6,'Sound Recordist'),(28,8643,9,'Additional Writing'),(28,8643,4,'Writer'),(28,19567,9,'Stunt Coordinator'),(28,81538,9,'Title Graphics'),(28,52838,9,'Thanks'),(28,96912,9,'Special Effects Coordinator'),(28,1059619,6,'Sound Editor'),(28,1172042,6,'Musician'),(28,1189045,6,'Sound Editor'),(28,1298944,1,'Camera Operator'),(28,1391387,5,'Assistant Editor'),(28,1402117,9,'Stunts'),(28,1407197,6,'Sound Editor'),(28,1411001,1,'First Assistant Camera'),(28,1437276,1,'Still Photographer'),(28,1625347,2,'Assistant Director'),(2054,6479,3,'Casting'),(2054,7714,6,'Original Music Composer'),(2054,8428,8,'Costume Design'),(2054,8708,6,'Supervising Sound Editor'),(2054,9184,3,'Executive Producer'),(2054,9196,3,'Producer'),(2054,11409,1,'Director of Photography'),(2054,14713,8,'Makeup Artist'),(2054,15308,6,'Music Supervisor'),(2054,18356,2,'Director'),(2054,18389,3,'Producer'),(2054,19309,7,'Set Decoration'),(2054,21101,4,'Screenplay'),(2054,21101,3,'Executive Producer'),(2054,21102,3,'Producer'),(2054,21103,6,'Supervising Sound Editor'),(2054,11373,7,'Art Direction'),(2054,38412,5,'First Assistant Editor'),(2054,42357,3,'Unit Production Manager'),(2054,42357,3,'Co-Producer'),(2054,55228,6,'Boom Operator'),(2054,58720,5,'Editor'),(2054,71245,3,'Production Supervisor'),(2054,72258,9,'Stunt Coordinator'),(2054,83085,6,'Sound Editor'),(2054,122464,6,'Sound Editor'),(2054,957353,2,'First Assistant Director'),(2054,1377132,1,'Steadicam Operator'),(2054,1395016,7,'Construction Coordinator'),(2054,1397738,2,'Script Supervisor'),(2054,1398127,1,'Camera Operator'),(2054,1401255,7,'Set Designer'),(2054,1406616,6,'ADR Editor'),(2054,1409270,6,'Supervising ADR Editor'),(2054,1415329,8,'Hairstylist'),(2054,1415618,6,'Sound Editor'),(2054,1424151,8,'Makeup Artist'),(2054,1434894,7,'Property Master'),(2054,1442519,3,'Location Manager'),(2054,1456476,6,'Sound Editor'),(2054,1456487,8,'Key Hair Stylist'),(2054,1458533,6,'Supervising Music Editor'),(2054,1521767,7,'Production Design'),(2054,1536538,3,'Production Coordinator'),(2054,1536540,8,'Hairstylist'),(2054,1536541,8,'Makeup Artist'),(2054,1536542,1,'Still Photographer'),(2054,1536543,3,'Co-Producer'),(2054,1568647,1,'Key Grip'),(2054,1594987,11,'Chief Lighting Technician'),(2054,1602876,11,'Best Boy Electric'),(2054,1628600,8,'Costume Supervisor'),(2054,1657664,1,'Dolly Grip'),(2054,1789398,9,'Special Effects Coordinator'),(2054,1881500,7,'Set Designer'),(2054,1881503,1,'Dolly Grip'),(2054,1881504,9,'Choreographer'),(606,668,3,'Casting'),(606,1531,5,'Editor'),(606,2226,2,'Director'),(606,2226,3,'Producer'),(606,2241,5,'Editor'),(606,2289,6,'Original Music Composer'),(606,5671,8,'Costume Design'),(606,7068,5,'Editor'),(606,7789,7,'Art Direction'),(606,10634,4,'Novel'),(606,10635,4,'Novel'),(606,10636,4,'Novel'),(606,10637,4,'Screenplay'),(606,10639,1,'Director of Photography'),(606,10640,5,'Editor'),(606,10641,7,'Production Design'),(606,10642,7,'Art Direction'),(606,10643,7,'Art Direction'),(606,10644,7,'Set Decoration'),(606,10645,8,'Makeup Artist'),(606,10646,9,'Special Effects'),(698,2289,6,'Original Music Composer'),(698,9856,4,'Novel'),(698,9861,3,'Producer'),(698,9904,3,'Casting'),(698,7791,7,'Set Decoration'),(698,9869,7,'Production Design'),(698,9917,6,'Songs'),(698,10076,2,'Director'),(698,10179,5,'Editor'),(698,10466,4,'Screenplay'),(698,10467,3,'Producer'),(698,10470,1,'Director of Photography'),(698,10471,3,'Casting'),(698,10472,7,'Art Direction'),(698,10473,7,'Art Direction'),(698,10474,8,'Costume Design'),(698,10666,2,'Assistant Director'),(698,1166842,9,'Stunts'),(6488,488,3,'Executive Producer'),(6488,489,3,'Producer'),(6488,493,5,'Editor'),(6488,664,2,'Director'),(6488,664,3,'Executive Producer'),(6488,7020,6,'Original Music Composer'),(6488,9196,3,'Co-Executive Producer'),(6488,17880,4,'Screenplay'),(6488,18389,3,'Co-Executive Producer'),(6488,30149,1,'Director of Photography'),(6488,33281,3,'Associate Producer'),(6488,51346,4,'Screenplay'),(6488,51346,3,'Co-Executive Producer'),(6488,52042,3,'Producer'),(8012,495,3,'Casting'),(8012,518,3,'Producer'),(8012,2199,4,'Screenplay'),(8012,2235,4,'Novel'),(8012,5174,2,'Director'),(8012,5381,3,'Producer'),(8012,5382,3,'Producer'),(8012,5490,3,'Casting'),(8012,6191,7,'Set Decoration'),(8012,6394,6,'Original Music Composer'),(8012,6940,6,'Music Supervisor'),(8012,9614,1,'Director of Photography'),(8012,11802,8,'Costume Design'),(8012,11412,7,'Art Direction'),(8012,16466,7,'Production Design'),(8012,1280314,5,'First Assistant Editor'),(8012,1321004,8,'Costume Supervisor'),(8012,1338146,8,'Makeup Artist'),(8012,1397881,8,'Hairstylist'),(8012,1453174,7,'Construction Coordinator'),(8012,1458759,8,'Assistant Costume Designer'),(8012,1477790,8,'Set Costumer'),(8012,1527434,5,'Dialogue Editor'),(8012,1534237,8,'Makeup Department Head'),(8012,1535452,7,'Art Department Coordinator'),(8012,1536363,8,'Key Hair Stylist'),(1574,531,6,'Original Music Composer'),(1574,557,8,'Costume Design'),(1574,647,1,'Director of Photography'),(1574,9154,5,'Editor'),(1574,14915,7,'Set Decoration'),(1574,15426,3,'Casting'),(1574,15557,4,'Screenplay'),(1574,11002,7,'Production Design'),(1574,17633,2,'Director'),(1574,17634,3,'Producer'),(1574,17635,3,'Casting'),(1574,17636,7,'Art Direction'),(1574,66777,4,'Screenplay'),(9032,900,6,'Sound Re-Recording Mixer'),(9032,12865,5,'Editor'),(9032,3276,3,'Casting'),(9032,4188,7,'Set Decoration'),(9032,10570,3,'Executive Producer'),(9032,10815,1,'Director of Photography'),(9032,13166,6,'Sound Effects Editor'),(9032,17494,2,'Director'),(9032,17992,6,'Sound Mixer'),(9032,19292,4,'Screenplay'),(9032,19292,3,'Executive Producer'),(9032,20822,6,'Original Music Composer'),(9032,20820,3,'Producer'),(9032,20821,3,'Producer'),(9032,20824,7,'Production Design'),(9032,20826,8,'Costume Design'),(9032,29015,3,'Executive Producer'),(9032,113073,6,'Sound Re-Recording Mixer'),(9032,56728,4,'Screenplay'),(9032,71130,6,'Music Supervisor'),(9032,204761,4,'Screenplay'),(9032,204761,4,'Story'),(9032,275201,7,'Art Direction'),(9032,548437,5,'Dialogue Editor'),(9032,1074163,9,'Stunt Coordinator'),(9032,1372092,9,'Stunt Coordinator'),(9032,1391583,1,'Still Photographer'),(9032,1405232,5,'Dialogue Editor'),(9032,1406826,6,'Sound Effects Editor'),(9032,1408359,1,'Camera Operator'),(9032,1408359,1,'Steadicam Operator'),(9032,1417972,6,'Supervising Sound Editor'),(9032,1423757,6,'Sound Effects Editor'),(9032,1467080,2,'Script Supervisor'),(9032,1533708,3,'Production Supervisor'),(9032,1538435,6,'Music Editor'),(9032,1613969,3,'Unit Production Manager'),(9032,1613970,6,'Music Editor'),(2770,298,3,'Co-Producer'),(2770,562,6,'Sound Editor'),(2770,562,6,'Supervising Sound Editor'),(2770,1593,3,'Casting'),(2770,1594,3,'Casting'),(2770,2995,5,'Editor'),(2770,3288,3,'Executive Producer'),(2770,3289,3,'Executive Producer'),(2770,5635,5,'Dialogue Editor'),(2770,6627,3,'Producer'),(2770,7409,2,'Director'),(2770,7413,1,'Director of Photography'),(2770,9444,6,'Foley Editor'),(2770,13229,1,'Key Grip'),(2770,12772,9,'Second Unit'),(2770,12923,3,'Co-Producer'),(2770,21584,4,'Screenplay'),(2770,21584,3,'Executive Producer'),(2770,21585,3,'Producer'),(2770,21586,3,'Producer'),(2770,21587,6,'Original Music Composer'),(2770,21587,6,'Orchestrator'),(2770,23930,8,'Hair Department Head'),(2770,24527,9,'Driver'),(2770,26990,10,'Special Effects Supervisor'),(2770,48353,3,'Associate Producer'),(2770,49913,8,'Costume Design'),(2770,59055,3,'ADR Voice Casting'),(2770,63956,1,'Camera Operator'),(2770,113642,4,'Story'),(2770,91059,3,'Unit Production Manager'),(2770,91927,9,'Property Master'),(2770,146143,9,'Stunt Coordinator'),(2770,575769,9,'Transportation Coordinator'),(2770,993536,5,'Editor'),(2770,1049325,6,'ADR Supervisor'),(2770,1317044,8,'Makeup Department Head'),(2770,1346330,10,'Digital Compositors'),(2770,1360099,6,'Apprentice Sound Editor'),(2770,1387490,6,'Boom Operator'),(2770,1390538,2,'Script Supervisor'),(2770,1408191,10,'Visual Effects Producer'),(2770,1412211,9,'Picture Car Coordinator'),(2770,1413452,9,'Sound Recordist'),(2770,1416439,7,'Location Scout'),(2770,1418411,5,'First Assistant Editor'),(2770,1433021,6,'Sound Re-Recording Mixer'),(2770,1435194,6,'Music Editor'),(2770,1437798,8,'Makeup Artist'),(2770,1440289,3,'Location Manager'),(2770,1442509,9,'Special Effects Coordinator'),(2770,1446658,7,'Production Design'),(2770,1450006,7,'Art Department Coordinator'),(2770,1455028,3,'Assistant Production Coordinator'),(2770,1460571,9,'Set Production Assistant'),(2770,1463834,9,'Transportation Captain'),(2770,1507141,9,'Stand In'),(2770,1538448,9,'Transportation Co-Captain'),(2770,1545951,6,'Sound mixer'),(2770,1549431,3,'Publicist'),(2770,1550284,1,'Steadicam Operator'),(2770,1552172,1,'Still Photographer'),(2770,1552203,3,'Production Accountant'),(2770,1552495,7,'Art Direction'),(2770,1552497,7,'Construction Coordinator'),(2770,1552498,7,'Greensman'),(2770,1552499,7,'Standby Painter'),(2770,1552499,7,'Painter'),(2770,1552500,7,'Production Illustrator'),(2770,1552503,7,'Set Decoration'),(2770,1552504,7,'Set Designer'),(2770,1552506,1,'First Assistant Camera'),(2770,1552507,1,'Grip'),(2770,1552511,8,'Costume Supervisor'),(2770,1552512,8,'Hairstylist'),(2770,1552513,9,'Carpenter'),(2770,1552514,9,'Craft Service'),(2770,1552515,1,'Camera Loader'),(2770,1552516,9,'Post Production Assistant'),(2770,1552517,9,'Post Production Supervisor'),(2770,1552518,9,'Propmaker'),(2770,1552519,9,'Set Medic'),(2770,1552521,9,'Stunts'),(2770,1552522,9,'Video Assist Operator'),(2770,1552523,2,'First Assistant Director'),(2770,1552524,5,'Color Timer'),(2770,1552525,11,'Best Boy Electric'),(2770,1552526,11,'Electrician'),(2770,1552527,11,'Gaffer'),(2770,1552528,11,'Lighting Technician'),(2770,1552529,11,'Rigging Gaffer'),(2770,1552530,11,'Rigging Grip'),(2770,1552531,3,'Casting Associate'),(2770,1552532,3,'Production Coordinator'),(2770,1552533,6,'Music Supervisor'),(2770,1552534,9,'Additional Music'),(2770,1552535,5,'Editorial Production Assistant'),(2770,1724867,6,'ADR Editor'),(2770,1724868,6,'Assistant Sound Editor'),(2770,1733134,3,'Casting Assistant'),(2770,1735766,7,'Assistant Property Master'),(2770,1736212,7,'Set Dresser'),(2770,1736213,7,'Title Designer'),(2770,1736214,1,'Dolly Grip'),(2770,1736215,9,'Marine Coordinator'),(2770,1736216,9,'Pilot'),(2770,1736217,2,'Second Assistant Director'),(2770,1736218,5,'Negative Cutter'),(2770,1736222,6,'Musician'),(862,7,4,'Screenplay'),(862,7,4,'Original Story'),(862,7,10,'Character Designer'),(862,8,5,'Editor'),(862,7879,2,'Director'),(862,7879,4,'Original Story'),(862,2216,6,'Sound Designer'),(862,2216,6,'Sound Re-Recording Mixer'),(862,4949,6,'Orchestrator'),(862,7069,6,'Sound Effects Editor'),(862,7882,10,'Animation'),(862,7883,7,'Art Direction'),(862,7885,6,'Orchestrator'),(862,7885,6,'Music'),(862,7885,6,'Songs'),(862,7887,10,'Visual Effects Supervisor'),(862,7889,10,'Character Designer'),(862,7892,10,'Animation'),(862,7893,10,'Animation Director'),(862,7902,3,'Casting Consultant'),(862,7911,4,'Original Story'),(862,7918,10,'Animation'),(862,7918,10,'Character Designer'),(862,7949,10,'CG Painter'),(862,7961,7,'Sculptor'),(862,8010,10,'Animation'),(862,8017,10,'Animation'),(862,8025,10,'Animation'),(862,8029,10,'Animation'),(862,8035,10,'Animation'),(862,8044,10,'Animation'),(862,8049,10,'Animation'),(862,8050,10,'Animation'),(862,8067,6,'Assistant Sound Editor'),(862,8276,6,'Supervising Sound Editor'),(862,12890,4,'Original Story'),(862,12890,9,'Supervising Animator'),(862,12891,4,'Screenplay'),(862,12892,4,'Screenplay'),(862,12893,4,'Screenplay'),(862,12894,3,'Producer'),(862,12895,3,'Executive Producer'),(862,12896,3,'Producer'),(862,12897,3,'Executive Producer'),(862,12905,10,'Animation Director'),(862,12909,3,'Production Supervisor'),(862,12912,11,'Lighting Supervisor'),(862,12915,10,'CG Painter'),(862,12915,10,'Character Designer'),(862,15894,9,'Sound Design Assistant'),(862,7899,11,'Lighting Supervisor'),(862,84493,3,'ADR Voice Casting'),(862,78009,10,'Animation'),(862,555795,10,'Animation'),(862,587314,10,'Animation'),(862,953331,9,'Executive Music Producer'),(862,1088034,10,'Character Designer'),(862,1168870,5,'Editor'),(862,1176752,10,'Character Designer'),(862,1184140,10,'Animation'),(862,1336438,5,'Assistant Editor'),(862,1372885,6,'Music Editor'),(862,1406878,10,'Visual Effects'),(862,1414177,6,'Assistant Sound Editor'),(862,1414182,6,'ADR Editor'),(862,1425978,6,'Sound Re-Recording Mixer'),(862,1426773,10,'Animation'),(862,1429549,5,'Color Timer'),(862,1443471,7,'Set Dresser'),(862,1447465,10,'Character Designer'),(862,1453514,10,'Animation'),(862,1454030,10,'Animation'),(862,1454034,10,'Animation'),(862,1458006,7,'Title Designer'),(862,1468014,9,'Unit Publicist'),(862,1509559,10,'Animation'),(862,1552883,6,'Foley Editor'),(862,1589729,5,'Assistant Editor'),(862,1629419,9,'Post Production Supervisor'),(862,1739962,5,'Negative Cutter'),(862,1748513,5,'Negative Cutter'),(862,1748557,9,'Supervising Technical Director'),(862,1748682,10,'Animation'),(862,1748683,10,'Animation'),(862,1748684,10,'Animation'),(862,1748688,10,'Animation'),(862,1748689,10,'Animation'),(862,1748691,10,'Animation'),(862,1748698,10,'Visual Effects'),(862,1748699,10,'Visual Effects'),(862,1748701,10,'Visual Effects'),(862,1748703,10,'Visual Effects'),(862,1748705,7,'Sculptor'),(862,1748706,10,'Character Designer'),(862,1748707,2,'Layout'),(862,1748709,2,'Layout'),(862,1748710,7,'Set Dresser'),(862,1748711,7,'Set Dresser'),(862,1748712,5,'Editorial Manager'),(862,1748716,5,'Assistant Editor'),(862,1748717,5,'Assistant Editor'),(862,1748718,5,'Editorial Coordinator'),(862,1748719,3,'Production Coordinator'),(862,1748720,3,'Production Coordinator'),(862,1748724,6,'Assistant Sound Editor'),(862,1748725,6,'Assistant Sound Editor'),(1637,2209,2,'Director'),(1637,7735,8,'Costume Design'),(1637,6048,3,'Producer'),(1637,7716,7,'Production Design'),(1637,7717,7,'Art Direction'),(1637,8752,5,'Editor'),(1637,9989,6,'Original Music Composer'),(1637,10765,1,'Director of Photography'),(1637,21206,4,'Screenplay'),(1637,33711,7,'Set Decoration'),(1669,912,4,'Screenplay'),(1669,1090,2,'Director'),(1669,2031,3,'Casting'),(1669,2209,1,'Director of Photography'),(1669,4611,3,'Producer'),(1669,10629,7,'Art Direction'),(1669,5584,5,'Editor'),(1669,7728,6,'Original Music Composer'),(1669,8752,5,'Editor'),(1669,38568,4,'Novel'),(1669,59906,4,'Screenplay'),(1669,66754,3,'Executive Producer'),(1669,955091,3,'Executive Producer'),(9472,546,3,'Casting'),(9472,10572,6,'Original Music Composer'),(9472,5957,7,'Set Decoration'),(9472,6738,3,'Production Supervisor'),(9472,7399,3,'Producer'),(9472,9456,9,'Special Effects Coordinator'),(9472,9558,9,'Stunts'),(9472,10393,5,'Editor'),(9472,10397,8,'Costume Design'),(9472,11475,7,'Production Design'),(9472,14377,3,'Casting'),(9472,14382,6,'Supervising Sound Editor'),(9472,13140,1,'Director of Photography'),(9472,19663,7,'Assistant Art Director'),(9472,11372,5,'Editor'),(9472,22302,3,'Producer'),(9472,23888,10,'Visual Effects'),(9472,41592,7,'Art Direction'),(9472,57633,2,'Director'),(9472,57633,4,'Author'),(9472,57634,3,'Executive Producer'),(9472,57634,9,'Unit Publicist'),(9472,57635,3,'Executive Producer'),(9472,61108,3,'Casting'),(9472,63935,9,'Stunt Coordinator'),(9472,67490,9,'Video Assist Operator'),(9472,92345,7,'Construction Coordinator'),(9472,92759,9,'Post Production Assistant'),(9472,110532,2,'First Assistant Director'),(9472,193127,9,'Choreographer'),(9472,545842,2,'Second Assistant Director'),(9472,548429,9,'Sound Recordist'),(9472,935278,3,'Casting Assistant'),(9472,960407,5,'Assistant Editor'),(9472,1042639,9,'Set Production Assistant'),(9472,1043374,6,'Musician'),(9472,1126348,3,'Location Manager'),(9472,1192700,6,'Music Supervisor'),(9472,1261680,1,'Grip'),(9472,1316292,8,'Makeup Artist'),(9472,1324409,8,'Costume Supervisor'),(9472,1357059,5,'Dialogue Editor'),(9472,1388862,9,'Property Master'),(9472,1391600,9,'Transportation Captain'),(9472,1399917,6,'Foley'),(9472,1400339,9,'Temp Sound Editor'),(9472,1401807,11,'Lighting Technician'),(9472,1403418,9,'Transportation Coordinator'),(9472,1408293,8,'Hairstylist'),(9472,1408301,6,'Sound Effects Editor'),(9472,1409877,6,'Music Editor'),(9472,1418403,11,'Rigging Gaffer'),(9472,1420165,9,'Visual Effects Editor'),(9472,1441270,6,'Assistant Sound Editor'),(9472,1443065,6,'ADR Supervisor'),(9472,1450713,3,'Executive In Charge Of Production'),(9472,1463357,9,'Propmaker'),(9472,1471304,3,'Publicist'),(9472,1473448,9,'Loader'),(9472,1532594,8,'Set Costumer'),(9472,1537179,1,'Still Photographer'),(9472,1537687,10,'Special Effects Supervisor'),(9472,1545168,6,'Scoring Mixer'),(9472,1546457,6,'Supervising Music Editor'),(9472,1548698,6,'Orchestrator'),(9472,1551727,6,'Sound Mixer'),(9472,1553026,6,'First Assistant Sound Editor'),(9472,1562248,5,'Color Timer'),(9472,1562259,9,'Score Engineer'),(9472,1562804,6,'Foley Editor'),(9472,1567890,8,'Hair Department Head'),(9472,1567900,6,'Boom Operator'),(9472,1567901,9,'Second Unit'),(9472,1567903,1,'Additional Photography'),(9472,1567906,10,'I/O Manager'),(9472,1567909,10,'Visual Effects Supervisor'),(9472,1567911,10,'Digital Compositors'),(9472,1567920,11,'Rigging Grip'),(9472,1567921,1,'First Assistant Camera'),(9472,1567923,1,'Camera Operator'),(9472,1567924,11,'Electrician'),(9472,1567926,11,'Best Boy Electrician'),(9472,1567949,8,'Assistant Costume Designer'),(9472,1567952,9,'Projection'),(9472,1567956,3,'Production Accountant'),(9472,1567957,7,'Location Scout'),(9472,1567958,7,'Background Designer'),(9472,1567959,9,'Stand In'),(9472,1567960,3,'Production Coordinator'),(9472,1567961,9,'Craft Service'),(9472,1567963,9,'Chef'),(9472,1567964,9,'Security'),(9472,1567965,3,'Associate Producer'),(9472,1567966,7,'Set Designer'),(9472,1567968,4,'Storyboard'),(9472,1567969,7,'Painter'),(9472,1567970,9,'Carpenter'),(9472,1567971,7,'Leadman'),(9472,1567973,9,'Special Effects'),(9472,1567974,5,'First Assistant Editor'),(9472,1567975,9,'Driver'),(9472,1567976,9,'Transportation Co-Captain'),(9472,1677236,9,'Utility Stunts'),(9472,1733142,5,'Negative Cutter'),(9472,1744410,7,'Set Dresser'),(9472,1744412,7,'Title Designer'),(9472,1744415,1,'Dolly Grip'),(9472,1744424,1,'Key Grip'),(9472,1744426,3,'Assistant Production Coordinator'),(2907,1901,4,'Screenplay'),(2907,2997,3,'Producer'),(2907,5174,2,'Director'),(2907,16331,1,'Director of Photography'),(2907,5490,3,'Casting'),(2907,6453,5,'Editor'),(2907,9615,5,'Editor'),(2907,9251,6,'Original Music Composer'),(2907,15843,7,'Art Direction'),(2907,20169,3,'Executive Producer'),(2907,29529,4,'Screenplay'),(2907,11061,7,'Production Design'),(2907,69660,4,'Characters'),(9273,4489,2,'Director'),(9273,4489,4,'Screenplay'),(9273,4507,3,'Executive Producer'),(9273,4700,3,'Producer'),(9273,6490,1,'Director of Photography'),(9273,14457,5,'Editor'),(9273,29901,4,'Characters'),(9273,43393,6,'Original Music Composer'),(9273,57097,3,'Producer'),(9273,57098,3,'Producer'),(9273,1007395,9,'Stunt Coordinator'),(9880,11423,7,'Production Design'),(9880,1201,2,'Director'),(9880,4500,6,'Original Music Composer'),(9880,8677,1,'Director of Photography'),(9880,8851,3,'Producer'),(9880,12970,5,'Editor'),(9880,38415,3,'Producer'),(9880,59973,3,'Producer'),(9880,59971,4,'Novel'),(9880,59972,4,'Screenplay'),(2925,2997,3,'Producer'),(2925,6191,7,'Set Decoration'),(2925,6328,9,'Stunt Coordinator'),(2925,6490,1,'Director of Photography'),(2925,6491,5,'Editor'),(2925,6492,5,'Associate Editor'),(2925,6493,3,'Casting'),(2925,8868,8,'Costume Design'),(2925,9251,6,'Music'),(2925,9251,6,'Music Supervisor'),(2925,16466,7,'Production Design'),(2925,21585,3,'Associate Producer'),(2925,21968,3,'Executive Producer'),(2925,21968,3,'Production Manager'),(2925,28904,2,'Director'),(2925,68319,4,'Screenplay'),(2925,32490,8,'Hairstylist'),(2925,58360,7,'Assistant Art Director'),(2925,56697,7,'Art Direction'),(2925,56755,9,'Choreographer'),(2925,11303,3,'Executive Producer'),(2925,60012,1,'Camera Operator'),(2925,60107,3,'Casting Assistant'),(2925,68614,9,'Post Production Supervisor'),(2925,92377,6,'Sound Re-Recording Mixer'),(2925,71556,3,'Production Coordinator'),(2925,73951,6,'Sound Editor'),(2925,83064,8,'Hairstylist'),(2925,91069,4,'Storyboard'),(2925,91071,7,'Construction Coordinator'),(2925,142152,8,'Makeup Artist'),(2925,142155,6,'Sound Editor'),(2925,142156,6,'Boom Operator'),(2925,223239,6,'Sound Mixer'),(2925,1123059,3,'Location Manager'),(2925,1206767,7,'Assistant Art Director'),(2925,1271259,5,'Negative Cutter'),(2925,1333607,8,'Costume Supervisor'),(2925,1337469,6,'Music Editor'),(2925,1378760,9,'Special Effects Coordinator'),(2925,1391597,8,'Costume Supervisor'),(2925,1395369,1,'Still Photographer'),(2925,1402026,6,'ADR Editor'),(2925,1403521,6,'Sound Editor'),(2925,1407197,6,'Supervising Sound Editor'),(2925,1449180,11,'Chief Lighting Technician'),(2925,1456487,8,'Hairstylist'),(2925,1456489,8,'Makeup Artist'),(2925,1458531,6,'Foley Editor'),(2925,1476342,2,'First Assistant Director'),(2925,1486764,2,'Script Supervisor'),(2925,1547379,6,'Music Editor'),(2925,1550728,9,'Unit Publicist'),(2925,1552035,6,'Music Programmer'),(2925,1553561,2,'Second Assistant Director'),(2925,1565212,7,'Art Department Coordinator'),(2925,1576967,9,'Transportation Captain'),(2925,1648135,9,'Transportation Co-Captain'),(2925,1680639,5,'Color Timer'),(2925,1712088,8,'Hairstylist'),(2925,1717530,9,'Cableman'),(2925,1748870,3,'Co-Producer'),(2925,1763256,4,'Novel'),(2925,1763589,3,'Associate Producer'),(2925,1763590,3,'Associate Producer'),(2925,1763592,7,'Property Master'),(2925,1763593,4,'Storyboard'),(2925,1763595,8,'Makeup Artist'),(2925,1763596,8,'Makeup Artist'),(2925,1763599,8,'Assistant Costume Designer'),(2925,1763600,6,'Assistant Sound Editor'),(2925,1763601,6,'Foley Editor'),(807,4023,3,'Casting'),(807,117,6,'Original Music Composer'),(807,605,8,'Costume Design'),(807,4197,7,'Set Decoration'),(807,944,7,'Production Design'),(807,2122,5,'Additional Editing'),(807,2240,1,'Director of Photography'),(807,3192,3,'Casting'),(807,6581,5,'Editor'),(807,4768,3,'Co-Executive Producer'),(807,5290,3,'Casting Assistant'),(807,5328,3,'Casting'),(807,6955,9,'Thanks'),(807,7467,2,'Director'),(807,7537,9,'Sound Design Assistant'),(807,7475,9,'Thanks'),(807,7763,6,'Sound Designer'),(807,7763,6,'Sound Effects Editor'),(807,11420,3,'Executive Producer'),(807,11815,3,'Executive Producer'),(807,10764,3,'Producer'),(807,12047,4,'Screenplay'),(807,12048,3,'Producer'),(807,12050,3,'Executive Producer'),(807,12051,7,'Art Direction'),(807,14046,10,'Special Effects Supervisor'),(807,12639,7,'Set Designer'),(807,12775,3,'Executive In Charge Of Post Production'),(807,15315,6,'Music Editor'),(807,14660,9,'Special Effects Coordinator'),(807,10820,7,'Assistant Art Director'),(807,16563,1,'Additional Photography'),(807,27039,3,'Casting Associate'),(807,18782,3,'Associate Producer'),(807,19747,5,'Dialogue Editor'),(807,37925,1,'Camera Operator'),(807,65753,3,'Co-Executive Producer'),(807,57076,3,'Co-Producer'),(807,69895,3,'Co-Producer'),(807,79783,7,'Leadman'),(807,91056,9,'Post Production Supervisor'),(807,91057,3,'Executive In Charge Of Production'),(807,91133,9,'Post Production Supervisor'),(807,112526,3,'Unit Production Manager'),(807,101608,9,'Makeup Effects'),(807,950637,3,'Line Producer'),(807,957581,6,'Supervising Sound Editor'),(807,957990,8,'Makeup Artist'),(807,1025337,7,'Construction Foreman'),(807,1313815,8,'Set Costumer'),(807,1325234,8,'Makeup Department Head'),(807,1325650,7,'Set Designer'),(807,1325655,8,'Costume Supervisor'),(807,1377235,9,'Transportation Coordinator'),(807,1378207,9,'Transportation Captain'),(807,1378229,6,'Boom Operator'),(807,1392142,8,'Set Costumer'),(807,1398970,1,'Steadicam Operator'),(807,1399996,6,'Sound Re-Recording Mixer'),(807,1399997,6,'Sound Re-Recording Mixer'),(807,1400364,7,'Set Designer'),(807,1401354,3,'Production Coordinator'),(807,1404878,8,'Hair Designer'),(807,1406124,1,'Camera Operator'),(807,1411293,1,'Still Photographer'),(807,1412204,1,'Steadicam Operator'),(807,1442535,9,'Stunt Coordinator'),(807,1458993,8,'Makeup Artist'),(807,1522742,3,'Casting Assistant'),(807,1537103,7,'Art Department Coordinator'),(807,1542917,5,'Color Timer'),(807,1544639,6,'Music Editor'),(807,1546115,6,'Production Sound Mixer'),(807,1549263,6,'Orchestrator'),(807,1551320,9,'Sound Recordist'),(807,1558238,3,'Unit Production Manager'),(807,1558240,3,'Location Manager'),(807,1558241,1,'First Assistant Camera'),(807,1558242,10,'Visual Effects Supervisor'),(807,1558250,5,'First Assistant Editor'),(807,1558253,5,'Dialogue Editor'),(807,1558254,6,'Sound Effects Editor'),(807,1558255,6,'Sound Effects Editor'),(807,1558256,6,'Sound Re-Recording Mixer'),(807,1558257,9,'Sound Recordist'),(807,1558258,6,'Orchestrator'),(807,1558267,3,'Co-Producer'),(807,1588279,11,'Rigging Grip'),(807,1595467,9,'Driver'),(807,1598650,5,'Color Timer'),(807,1629423,9,'Sound Recordist'),(322,190,2,'Director'),(322,190,3,'Producer'),(322,190,6,'Original Music Composer'),(322,384,5,'Editor'),(322,423,3,'Casting'),(322,460,1,'Director of Photography'),(322,461,8,'Costume Design'),(322,1296,3,'Executive Producer'),(322,4722,4,'Author'),(322,4723,4,'Author'),(322,4745,3,'Producer'),(322,4746,3,'Producer'),(322,1375530,3,'Casting Associate'),(70,190,2,'Director'),(70,190,3,'Producer'),(70,190,6,'Original Music Composer'),(70,195,6,'Orchestrator'),(70,369,7,'Production Design'),(70,384,5,'Editor'),(70,423,3,'Casting'),(70,370,7,'Art Direction'),(70,371,1,'First Assistant Camera'),(70,375,6,'Sound Editor'),(70,379,6,'Music Editor'),(70,455,4,'Screenplay'),(70,455,3,'Producer'),(70,68602,3,'Producer'),(70,457,3,'Producer'),(70,459,6,'Additional Soundtrack'),(70,460,1,'Director of Photography'),(70,461,8,'Costume Design'),(70,3953,3,'Executive Producer'),(70,4746,3,'Executive Producer'),(70,4746,2,'Assistant Director'),(70,12587,6,'Boom Operator'),(70,14342,7,'Set Decoration'),(70,33525,9,'Additional Music'),(70,113044,5,'Dialogue Editor'),(70,113051,6,'Sound Effects Editor'),(70,63946,3,'Unit Production Manager'),(70,66226,9,'Stunt Coordinator'),(70,83073,8,'Set Dressing Artist'),(70,92378,6,'ADR & Dubbing'),(70,74319,5,'First Assistant Editor'),(70,74800,1,'Grip'),(70,83066,8,'Key Hair Stylist'),(70,137064,3,'Co-Producer'),(70,935490,3,'Casting Associate'),(70,935492,9,'Special Effects Coordinator'),(70,1086878,4,'Story'),(70,1154461,9,'Stunts'),(70,1178615,10,'Visual Effects'),(70,1181576,11,'Lighting Technician'),(70,1263143,7,'Property Master'),(70,1329113,8,'Costume Supervisor'),(70,1349968,11,'Rigging Gaffer'),(70,1377122,7,'Art Department Coordinator'),(70,1377124,7,'Set Designer'),(70,1377125,6,'Supervising Sound Editor'),(70,1377131,1,'Camera Operator'),(70,1377131,1,'Steadicam Operator'),(70,1377133,1,'Still Photographer'),(70,1377136,5,'Color Timer'),(70,1377140,2,'Script Supervisor'),(70,1377237,9,'Studio Teachers'),(70,1394569,11,'Electrician'),(70,1406397,9,'Digital Producer'),(70,1407876,6,'First Assistant Sound Editor'),(70,1417400,8,'Hairstylist'),(70,1426762,8,'Makeup Artist'),(70,1443053,7,'Construction Coordinator'),(70,1443059,7,'Leadman'),(70,1458579,6,'Sound Mixer'),(70,1530544,9,'Stand In'),(70,1534976,9,'Carpenter'),(70,1538127,5,'Assistant Editor'),(70,1548686,11,'Rigging Grip'),(70,1551218,3,'Production Coordinator'),(70,1554594,6,'Scoring Mixer'),(70,1559640,2,'Assistant Director'),(70,1564250,6,'Foley'),(70,1571782,10,'Visual Effects Coordinator'),(70,1599627,9,'Driver'),(70,1648077,9,'Transportation Captain'),(70,1737233,8,'Set Costumer'),(70,1765454,9,'Craft Service'),(70,1765456,9,'Loader'),(70,1765457,9,'Production Office Assistant'),(70,1765459,9,'Propmaker'),(70,1765460,9,'Set Production Assistant'),(70,1765461,9,'Transportation Co-Captain'),(70,1765462,9,'Transportation Coordinator'),(70,1765464,11,'Best Boy Electric'),(70,1765465,3,'Production Accountant'),(9535,117,6,'Original Music Composer'),(9535,1296,3,'Executive Producer'),(9535,1524,2,'Director'),(9535,1524,4,'Screenplay'),(9535,3305,3,'Producer'),(9535,5361,5,'Editor'),(9535,7262,1,'Director of Photography'),(9535,7904,3,'Executive Producer'),(9535,16731,3,'Producer'),(9535,18268,4,'Screenplay'),(9535,18276,5,'Editor'),(9535,30711,4,'Screenplay'),(9535,41018,3,'Executive Producer'),(6557,1217,5,'Editor'),(6557,2031,3,'Casting'),(6557,2532,3,'Casting'),(6557,7234,7,'Production Design'),(6557,4504,3,'Producer'),(6557,4507,3,'Producer'),(6557,4909,7,'Set Decoration'),(6557,10567,4,'Writer'),(6557,5708,1,'Director of Photography'),(6557,14712,6,'Music'),(6557,29214,2,'Director'),(6557,14764,6,'Sound Effects Editor'),(6557,16493,7,'Construction Foreman'),(6557,21146,3,'Executive Producer'),(6557,21635,3,'Producer'),(6557,29216,9,'Choreographer'),(6557,50459,3,'Executive Producer'),(6557,50460,3,'Executive Producer'),(6557,50461,3,'Executive Producer'),(6557,50462,8,'Costume Design'),(6557,54514,6,'Music Supervisor'),(6557,68227,9,'Thanks'),(6557,958087,7,'Art Direction'),(6557,1020061,8,'Assistant Costume Designer'),(6557,1320911,8,'Makeup Department Head'),(6557,1333222,9,'Stunt Coordinator'),(6557,1334462,7,'Construction Coordinator'),(6557,1342658,5,'Dialogue Editor'),(6557,1355535,3,'Casting Associate'),(6557,1364417,6,'Sound Re-Recording Mixer'),(6557,1384393,6,'Music Editor'),(6557,1393558,7,'Leadman'),(6557,1394131,6,'Sound Re-Recording Mixer'),(6557,1395360,9,'Property Master'),(6557,1399022,8,'Costume Supervisor'),(6557,1399287,10,'Visual Effects Supervisor'),(6557,1404212,6,'Supervising Sound Editor'),(6557,1407027,1,'Still Photographer'),(6557,1407363,10,'Visual Effects Coordinator'),(6557,1416795,7,'Art Direction'),(6557,1434161,10,'Visual Effects Producer'),(6557,1435194,6,'Music Editor'),(6557,1458530,6,'Boom Operator'),(6557,1484538,2,'Script Supervisor'),(6557,1532072,7,'Art Department Coordinator'),(6557,1546957,3,'Production Supervisor'),(6557,1546957,3,'Location Manager'),(6557,1551025,6,'Production Sound Mixer'),(6557,1627483,8,'Hair Department Head'),(6557,1662774,3,'Unit Production Manager'),(6557,1662775,3,'Executive In Charge Of Production'),(6557,1662777,3,'Casting Associate'),(4476,1729,6,'Original Music Composer'),(4476,2483,1,'Director of Photography'),(4476,2484,5,'Editor'),(4476,9199,7,'Production Design'),(4476,8527,8,'Costume Design'),(4476,9181,2,'Director'),(4476,9181,3,'Producer'),(4476,9182,3,'Producer'),(4476,21517,3,'Casting'),(4476,21864,4,'Screenplay'),(4476,21864,3,'Producer'),(4476,37426,4,'Novel'),(4476,37427,4,'Screenplay'),(4476,37428,7,'Art Direction'),(4476,37429,7,'Set Decoration'),(4476,543201,7,'Art Direction'),(4476,1007395,9,'Stunts'),(2755,13235,2,'Director'),(2755,13235,4,'Screenplay'),(2755,16471,8,'Key Hair Stylist'),(2755,37023,7,'Art Direction'),(2755,24190,6,'Original Music Composer'),(2755,27886,4,'Author'),(2755,35508,3,'Producer'),(2755,35509,3,'Producer'),(2755,35510,3,'Executive Producer'),(2755,31270,3,'Executive Producer'),(2755,35511,1,'Director of Photography'),(2755,32796,5,'Editor'),(2755,35512,7,'Production Design'),(2755,35513,7,'Set Decoration'),(2755,35514,8,'Costume Design'),(2755,35166,7,'Art Direction'),(2755,43615,10,'Visual Effects Supervisor'),(2755,1318445,8,'Makeup Artist'),(2755,1338670,8,'Hairstylist'),(2755,1416438,2,'Script Supervisor'),(2755,1418406,8,'Set Costumer'),(2755,1531875,8,'Costume Supervisor'),(2755,1531876,8,'Set Costumer'),(2755,1531877,8,'Set Costumer'),(2755,1531878,8,'Makeup Artist'),(9598,1313,1,'Director of Photography'),(9598,20629,4,'Screenplay'),(9598,20629,3,'Producer'),(9598,11651,3,'Producer'),(9598,11650,5,'Editor'),(9598,46299,4,'Novel'),(9598,58065,6,'Original Music Composer'),(9598,58066,5,'Editor'),(9598,58137,4,'Screenplay'),(9598,58137,2,'Director'),(9598,58140,3,'Producer'),(9870,22043,1,'Director of Photography'),(9870,41039,3,'Producer'),(9870,41076,3,'Producer'),(9870,41088,4,'Screenplay'),(9870,46942,5,'Editor'),(9870,52042,3,'Executive Producer'),(9870,53012,6,'Music'),(9870,52934,2,'Director'),(9870,59918,3,'Executive Producer'),(8292,1999,9,'Additional Music'),(8292,6482,2,'Director'),(8292,6489,6,'Original Music Composer'),(8292,10952,3,'Producer'),(8292,9772,5,'Editor'),(8292,9430,6,'Sound Effects Editor'),(8292,15524,8,'Costume Design'),(8292,17629,1,'Director of Photography'),(8292,17636,7,'Art Direction'),(8292,22145,7,'Production Design'),(8292,23545,3,'Casting'),(8292,23547,7,'Set Decoration'),(8292,49831,3,'Executive Producer'),(8292,49831,3,'Unit Production Manager'),(8292,53641,5,'Editor'),(8292,54606,3,'Casting'),(8292,34672,4,'Writer'),(8292,76713,9,'Post Production Supervisor'),(8292,84768,4,'Writer'),(8292,1002652,10,'Visual Effects Supervisor'),(8292,1188916,3,'Executive Producer'),(8292,1208908,1,'Still Photographer'),(8292,1302176,5,'Additional Editing'),(8292,1317044,8,'Makeup Artist'),(8292,1337455,7,'Construction Coordinator'),(8292,1339219,3,'Location Manager'),(8292,1341813,6,'Music Editor'),(8292,1341854,6,'Sound Re-Recording Mixer'),(8292,1341858,6,'Sound Re-Recording Mixer'),(8292,1342626,6,'Sound Re-Recording Mixer'),(8292,1372838,5,'Dialogue Editor'),(8292,1390364,10,'Visual Effects Producer'),(8292,1391679,5,'Dialogue Editor'),(8292,1392084,6,'Sound Effects Editor'),(8292,1393405,6,'Music Editor'),(8292,1395022,6,'Supervising Sound Editor'),(8292,1399632,6,'Sound Effects Editor'),(8292,1399927,1,'Camera Operator'),(8292,1399927,1,'Steadicam Operator'),(8292,1401601,9,'Unit Publicist'),(8292,1411265,5,'Dialogue Editor'),(8292,1419264,10,'Visual Effects Producer'),(8292,1423209,9,'Property Master'),(8292,1449149,8,'Hairstylist'),(8292,1449162,7,'Set Designer'),(8292,1449183,2,'Script Supervisor'),(8292,1452634,9,'Visual Effects Editor'),(8292,1454536,5,'Dialogue Editor'),(8292,1457895,3,'Production Manager'),(8292,1535322,10,'Special Effects Supervisor'),(8292,1537720,3,'Production Coordinator'),(8292,1540645,3,'Casting Associate'),(8292,1560905,6,'Music Supervisor'),(8292,1562476,6,'Sound Mixer'),(8292,1676165,6,'Boom Operator'),(8292,1676177,8,'Costume Supervisor'),(8292,1676182,7,'Set Designer'),(8780,2952,3,'Casting'),(8780,14172,4,'Screenplay'),(8780,14172,2,'Director'),(8780,12970,5,'Editor'),(8780,52160,3,'Producer'),(8780,56158,3,'Producer'),(8780,56324,1,'Director of Photography'),(8780,56325,6,'Original Music Composer'),(8780,56326,3,'Executive Producer'),(8780,56327,3,'Executive Producer'),(9715,2162,3,'Executive Producer'),(9715,2178,2,'Director'),(9715,18277,3,'Executive Producer'),(9715,10771,6,'Original Music Composer'),(9715,47283,4,'Screenplay'),(4133,5724,3,'Producer'),(4133,2952,3,'Casting'),(4133,313,1,'Director of Photography'),(4133,818,4,'Screenplay'),(4133,5912,6,'Original Music Composer'),(4133,2947,3,'Executive Producer'),(4133,4767,3,'Executive Producer'),(4133,10958,7,'Set Decoration'),(4133,8287,8,'Set Costumer'),(4133,11151,4,'Screenplay'),(4133,15332,6,'Supervising Sound Editor'),(4133,18689,3,'Associate Producer'),(4133,18689,3,'Production Supervisor'),(4133,32796,5,'Editor'),(4133,34849,2,'Director'),(4133,34849,3,'Producer'),(4133,34851,4,'Book'),(4133,34848,3,'Associate Producer'),(4133,34854,3,'Line Producer'),(4133,34856,3,'Associate Producer'),(4133,34857,3,'Producer'),(4133,34858,7,'Production Design'),(4133,34859,7,'Art Direction'),(4133,40471,8,'Costume Design'),(4133,158916,6,'Sound Re-Recording Mixer'),(4133,406204,8,'Makeup Artist'),(4133,548432,6,'Sound Re-Recording Mixer'),(4133,548438,5,'Dialogue Editor'),(4133,589974,1,'Still Photographer'),(4133,1247414,3,'Producer'),(4133,1344278,2,'Script Supervisor'),(4133,1378752,7,'Art Department Coordinator'),(4133,1390353,6,'Supervising Sound Editor'),(4133,1400537,6,'Music Editor'),(4133,1403636,5,'Dialogue Editor'),(4133,1416096,8,'Makeup Department Head'),(4133,1530082,6,'Music Supervisor'),(4133,1552201,6,'Production Sound Mixer'),(4133,1562262,6,'Boom Operator'),(172,796,7,'Set Decoration'),(172,1748,2,'Director'),(172,1760,6,'Original Music Composer'),(172,1791,3,'Producer'),(172,2033,5,'Editor'),(172,2075,4,'Screenplay'),(172,2082,1,'Director of Photography'),(172,2083,7,'Production Design'),(172,2084,3,'Casting'),(172,1803758,10,'Special Effects Supervisor'),(707,945,7,'Set Decoration'),(707,2289,6,'Original Music Composer'),(707,9856,4,'Characters'),(707,9861,3,'Producer'),(707,8524,7,'Production Design'),(707,8934,1,'Director of Photography'),(707,9858,4,'Screenplay'),(707,10179,2,'Director'),(707,10198,8,'Costume Design'),(707,10493,3,'Producer'),(707,10496,3,'Casting'),(707,10497,7,'Art Direction'),(707,10612,5,'Editor'),(707,10666,2,'Assistant Director'),(707,69678,4,'Screenplay'),(707,69678,3,'Producer'),(533,7314,2,'Director'),(533,7314,4,'Screenplay'),(533,7314,4,'Characters'),(533,7314,3,'Producer'),(533,7657,6,'Original Music Composer'),(533,7313,2,'Director'),(533,7313,4,'Screenplay'),(533,7315,4,'Screenplay'),(533,7316,4,'Screenplay'),(533,15779,5,'Editor'),(533,43385,7,'Art Direction'),(533,44645,3,'Casting'),(533,53304,3,'Producer'),(533,53329,3,'Producer'),(533,53331,9,'Cinematography'),(533,64152,4,'Storyboard'),(533,70041,3,'Executive Producer'),(533,109189,10,'Animation Supervisor'),(533,109190,10,'Animation'),(533,118713,10,'Animation'),(533,142094,9,'Post Production Supervisor'),(533,554219,10,'Animation'),(533,982961,3,'Casting'),(533,1082203,3,'Producer'),(533,1119833,3,'Producer'),(533,1119834,9,'Cinematography'),(533,1119835,5,'Editor'),(533,1119836,5,'Editor'),(533,1119837,7,'Production Design'),(533,1215807,10,'Animation'),(533,1308887,10,'Animation'),(533,1345578,3,'Executive Producer'),(533,1357599,6,'Music Editor'),(533,1397895,9,'Thanks'),(533,1444273,10,'Animation'),(533,1449205,10,'Animation'),(533,1453503,10,'Animation'),(533,1453512,10,'Animation'),(533,1453519,10,'Animation'),(533,1453616,10,'Animation'),(533,1453631,10,'Animation'),(533,1453647,10,'Animation'),(533,1453649,10,'Animation'),(533,1453962,10,'Animation'),(533,1454650,10,'Animation'),(533,1454661,10,'Animation'),(533,1454668,10,'Animation'),(533,1454669,10,'Animation'),(533,1454670,10,'Animation'),(533,1454671,10,'Animation'),(533,1454683,10,'Animation'),(533,1454689,10,'Animation'),(533,1454690,10,'Animation'),(533,1454692,10,'Animation'),(533,1454697,10,'Animation'),(533,1454715,10,'Animation'),(533,1454718,10,'Animation'),(533,1454723,10,'Animation'),(533,1454725,10,'Animation'),(533,1454726,10,'Animation'),(533,1454728,10,'Animation'),(533,1454730,10,'Animation'),(533,1454732,10,'Animation'),(533,1454734,10,'Animation'),(533,1454736,10,'Animation'),(533,1454737,10,'Animation'),(533,1487173,2,'Assistant Director'),(533,1553640,10,'Visual Effects'),(533,1602319,3,'Casting'),(6023,28,3,'Producer'),(6023,2163,2,'Director'),(6023,2163,4,'Screenplay'),(6023,7234,7,'Production Design'),(6023,5668,5,'Editor'),(6023,11098,6,'Original Music Composer'),(6023,47283,4,'Screenplay'),(6023,47284,4,'Novel'),(6023,47285,3,'Producer'),(6023,47286,3,'Producer'),(6023,47287,3,'Producer'),(6023,47288,3,'Executive Producer'),(6023,47289,3,'Executive Producer'),(6023,47290,3,'Executive Producer'),(6023,47291,3,'Executive Producer'),(6023,47292,3,'Executive Producer'),(6023,47293,1,'Director of Photography'),(6023,47294,8,'Costume Design'),(6439,4140,6,'Original Music Composer'),(6439,28240,1,'Director of Photography'),(6439,47285,3,'Producer'),(6439,50582,2,'Director'),(6439,50582,4,'Author'),(6439,51700,4,'Screenplay'),(6439,51700,4,'Author'),(6439,51701,5,'Editor'),(4347,474,3,'Casting'),(4347,2236,3,'Producer'),(4347,2238,3,'Producer'),(4347,3285,1,'Director of Photography'),(4347,11269,6,'Original Music Composer'),(4347,12952,4,'Screenplay'),(4347,36588,2,'Director'),(4347,36589,4,'Novel'),(4347,36590,5,'Editor'),(4347,36591,8,'Costume Design'),(4347,36656,7,'Production Design'),(4347,36657,7,'Art Direction'),(4347,36658,7,'Set Decoration'),(4347,10882,9,'Thanks'),(4347,57569,9,'Stunt Coordinator'),(4347,142097,3,'Production Accountant'),(4347,1027825,7,'Art Direction'),(4347,1108835,3,'Casting'),(4347,1127893,2,'Assistant Director'),(4347,1173302,7,'Supervising Art Director'),(4347,1229106,1,'Other'),(4347,1343898,6,'Sound Re-Recording Mixer'),(4347,1349076,5,'Color Timer'),(4347,1409764,6,'Supervising Sound Editor'),(4347,1415951,8,'Makeup Artist'),(4347,1416481,5,'Digital Intermediate'),(4347,1525892,8,'Hairstylist'),(4347,1539834,3,'Unit Manager'),(4347,1564277,3,'Executive In Charge Of Production'),(4347,1569472,3,'Production Manager'),(4347,1569473,9,'Post Production Supervisor'),(4105,947,6,'Original Music Composer'),(4105,578,2,'Director'),(4105,796,7,'Set Decoration'),(4105,1047,5,'Editor'),(4105,1221,3,'Casting'),(4105,2083,7,'Art Direction'),(4105,2209,1,'Director of Photography'),(4105,2999,7,'Art Direction'),(4105,7735,8,'Costume Design'),(4105,4188,7,'Set Decoration'),(4105,14342,7,'Set Decoration'),(4105,17400,7,'Production Design'),(4105,17630,3,'Unit Production Manager'),(4105,17877,7,'Set Decoration'),(4105,19893,4,'Author'),(4105,34692,4,'Author'),(4105,34692,3,'Executive Producer'),(4105,34693,3,'Producer'),(4105,34694,3,'Executive Producer'),(4105,34695,3,'Producer'),(4105,34696,3,'Line Producer'),(4105,35491,3,'Casting Associate'),(4105,25830,3,'Casting Assistant'),(4105,76160,3,'Unit Production Manager'),(4105,91042,9,'Pilot'),(4105,113225,3,'Associate Producer'),(4105,553347,3,'Location Manager'),(4105,1262129,2,'Script Supervisor'),(4105,1278542,9,'Pilot'),(4105,1453320,3,'Location Manager'),(4105,1551963,3,'Unit Production Manager'),(4105,1645977,3,'Location Manager'),(4105,1685817,3,'Casting'),(4105,1691936,7,'Set Designer'),(4105,1782974,3,'Unit Production Manager'),(4105,1805997,7,'Set Designer'),(4105,1805998,7,'Set Designer'),(4105,1806126,3,'Location Manager'),(4105,1806127,3,'Location Manager'),(4105,1806128,3,'Location Manager'),(4105,1806129,3,'Location Manager'),(4105,1806130,3,'Location Manager'),(4105,1806132,7,'Title Designer'),(3933,510,2,'Director'),(3933,510,4,'Characters'),(3933,510,3,'Producer'),(3933,531,6,'Original Music Composer'),(3933,541,5,'Editor'),(3933,1300,4,'Screenplay'),(3933,1303,7,'Production Design'),(3933,1901,4,'Screenplay'),(3933,5489,3,'Casting'),(3933,7537,6,'Sound Designer'),(3933,7902,3,'Casting'),(3933,7911,3,'Executive Producer'),(3933,27486,1,'Director of Photography'),(3933,34891,2,'Director'),(3933,34892,4,'Screenplay'),(3933,34893,4,'Characters'),(3933,34894,3,'Producer'),(3933,34895,3,'Executive Producer'),(3933,34896,5,'Editor'),(3933,34897,7,'Art Direction'),(3933,34898,7,'Set Decoration'),(3933,34899,3,'Production Manager'),(3933,44645,3,'Casting'),(3933,75578,3,'Casting Associate'),(3933,154705,4,'Storyboard'),(3933,240779,10,'Animation'),(3933,384204,10,'Animation'),(3933,553920,10,'Animation'),(3933,959668,3,'Associate Producer'),(3933,963843,7,'Art Department Manager'),(3933,1117950,9,'Post Production Supervisor'),(3933,1198798,10,'Animation'),(3933,1198798,4,'Storyboard'),(3933,1218548,4,'Storyboard'),(3933,1308887,10,'Animation'),(3933,1337417,10,'Visual Development'),(3933,1401375,10,'Animation'),(3933,1447338,4,'Storyboard'),(3933,1447370,10,'Animation'),(3933,1448037,7,'Art Department Manager'),(3933,1448041,10,'Animation'),(3933,1448042,10,'Animation'),(3933,1448043,10,'Animation'),(3933,1448045,10,'Animation'),(3933,1448047,10,'Animation'),(3933,1448050,5,'Color Timer'),(3933,1448052,10,'Animation'),(3933,1448053,10,'Animation'),(3933,1448057,7,'Art Department Manager'),(3933,1448058,10,'Animation'),(3933,1448060,10,'Animation Production Assistant'),(3933,1448061,10,'Animation'),(3933,1448063,10,'Animation'),(3933,1448065,10,'Animation'),(3933,1448066,10,'Animation'),(3933,1448069,10,'Animation Production Assistant'),(3933,1448070,10,'Animation'),(3933,1448071,10,'Animation'),(3933,1448072,10,'Animation'),(3933,1448073,10,'Animation'),(3933,1448074,10,'Animation'),(3933,1448075,7,'Art Department Manager'),(3933,1448076,10,'Animation'),(3933,1448077,10,'Animation Department Coordinator'),(3933,1448078,10,'Animation'),(3933,1450347,4,'Storyboard'),(3933,1451229,10,'Visual Development'),(3933,1451296,4,'Storyboard'),(3933,1451298,4,'Storyboard'),(3933,1451299,4,'Storyboard'),(3933,1451301,7,'Art Department Manager'),(3933,1451302,4,'Storyboard'),(3933,1531911,5,'Editor'),(3933,1544903,6,'ADR & Dubbing'),(3933,1571982,1,'First Assistant Camera'),(3933,1602319,3,'Casting'),(3933,1769887,3,'Associate Producer'),(9918,770,3,'Producer'),(9918,1720,3,'Casting'),(9918,2444,3,'Executive Producer'),(9918,2446,3,'Executive Producer'),(9918,2448,3,'Producer'),(9918,894,6,'Original Music Composer'),(9918,904,1,'Director of Photography'),(9918,8752,5,'Editor'),(9918,16467,7,'Art Direction'),(9918,32403,7,'Production Design'),(9918,37429,7,'Set Decoration'),(9918,46784,1,'Director of Photography'),(9918,52016,8,'Costume Design'),(9918,60496,2,'Director'),(9918,60500,3,'Executive Producer'),(9918,60497,4,'Author'),(9918,60499,4,'Author'),(9918,60502,5,'Editor'),(9918,60501,3,'Casting'),(9918,60504,3,'Casting'),(9918,60503,3,'Casting'),(9918,1424894,8,'Hairstylist'),(9266,339,3,'Producer'),(9266,2214,6,'Original Music Composer'),(9266,5283,3,'Producer'),(9266,6412,7,'Set Decoration'),(9266,57082,4,'Screenplay'),(9266,57082,2,'Director'),(9266,27154,1,'Director of Photography'),(9266,36605,8,'Costume Design'),(9266,52088,7,'Production Design'),(9266,57083,4,'Screenplay'),(9266,57084,3,'Executive Producer'),(9266,57085,3,'Executive Producer'),(9266,57086,3,'Executive Producer'),(9266,57087,5,'Editor'),(9266,66569,7,'Art Direction'),(9266,91147,6,'Music Supervisor'),(9266,1377240,2,'Script Supervisor'),(9266,1533793,8,'Key Hair Stylist'),(1262,6410,3,'Casting'),(1262,19156,3,'Casting'),(1262,12995,2,'Director'),(1262,13000,1,'Director of Photography'),(1262,13005,5,'Editor'),(1262,23539,4,'Screenplay'),(1262,20030,9,'Thanks'),(1262,20569,7,'Set Decoration'),(1262,19755,7,'Production Design'),(1262,40839,6,'Music'),(1262,52451,3,'Executive In Charge Of Production'),(1262,53757,3,'Unit Production Manager'),(1262,86591,7,'Art Direction'),(1262,86597,2,'Assistant Director'),(1262,1029026,3,'Unit Production Manager'),(1262,1254828,9,'Post Production Supervisor'),(1262,1311133,8,'Costume Design'),(1262,1357817,6,'Original Music Composer'),(1262,1558200,1,'Grip'),(1262,1558700,3,'Location Manager'),(1262,1563754,2,'Other'),(1262,1563756,2,'Assistant Director'),(1262,1563757,2,'Assistant Director'),(4513,1707,4,'Screenplay'),(4513,1319,7,'Art Direction'),(4513,1326,3,'Casting'),(4513,5914,3,'Casting'),(4513,6630,7,'Set Decoration'),(4513,7623,3,'Producer'),(4513,11359,3,'Producer'),(4513,40832,3,'Executive Producer'),(4513,23541,3,'Producer'),(4513,40383,3,'Executive Producer'),(4513,27571,2,'Director'),(4513,27572,4,'Screenplay'),(4513,27576,1,'Director of Photography'),(4513,27577,5,'Editor'),(4513,37622,4,'Screenplay'),(4513,37622,4,'Novel'),(4513,40834,3,'Executive Producer'),(4513,40835,7,'Production Design'),(4513,40837,8,'Costume Design'),(4513,40839,6,'Original Music Composer'),(4513,40839,6,'Music Supervisor'),(4513,73880,7,'Leadman'),(4513,132639,9,'Stunt Coordinator'),(4513,1115683,8,'Costume Supervisor'),(4513,1182834,6,'Sound Designer'),(4513,1182834,6,'Supervising Sound Editor'),(4513,1251023,9,'Visual Effects Editor'),(4513,1322019,7,'Art Direction'),(4513,1330358,2,'Script Supervisor'),(4513,1330561,7,'Assistant Art Director'),(4513,1391730,1,'Still Photographer'),(4513,1394060,7,'Set Designer'),(4513,1394061,7,'Set Designer'),(4513,1394063,7,'Art Department Coordinator'),(4513,1394064,9,'Property Master'),(4513,1394065,5,'Dialogue Editor'),(4513,1394066,6,'Foley'),(4513,1394067,10,'Visual Effects Producer'),(4513,1394068,10,'Visual Effects Producer'),(4513,1394069,10,'Visual Effects Supervisor'),(4513,1394070,10,'Visual Effects Supervisor'),(4513,1394071,1,'Still Photographer'),(4513,1394072,1,'Camera Operator'),(4513,1394073,1,'Camera Operator'),(4513,1394075,6,'Music Editor'),(4513,1447503,10,'Modeling'),(4513,1447518,9,'Stunts'),(4513,1447543,10,'Visual Effects'),(4513,1460588,9,'Special Effects'),(7278,376,3,'Executive Producer'),(7278,1260,7,'Production Design'),(7278,33283,5,'Editor'),(7278,35694,2,'Director'),(7278,35694,4,'Screenplay'),(7278,35694,3,'Producer'),(7278,35734,2,'Director'),(7278,35734,4,'Screenplay'),(7278,35734,3,'Producer'),(7278,49911,6,'Music'),(7278,52259,3,'Producer'),(7278,52260,1,'Director of Photography'),(7278,52261,8,'Costume Design'),(7278,1693424,8,'Assistant Costume Designer'),(9013,794,7,'Production Design'),(9013,8339,7,'Set Decoration'),(9013,531,6,'Original Music Composer'),(9013,541,5,'Editor'),(9013,897,3,'Casting'),(9013,769,2,'Director'),(9013,769,3,'Producer'),(9013,795,7,'Art Direction'),(9013,909,5,'Editor'),(9013,908,5,'Editor'),(9013,6490,1,'Director of Photography'),(9013,7185,3,'Casting'),(9013,13410,10,'Special Effects Supervisor'),(9013,9255,8,'Costume Design'),(9013,21792,4,'Screenplay'),(9013,75250,8,'Costume Supervisor'),(9013,1377239,2,'Script Supervisor'),(9013,1473722,3,'Casting Associate'),(9013,1534846,7,'Construction Coordinator'),(865,799,6,'Original Music Composer'),(865,1097,3,'Casting'),(865,1726,4,'Author'),(865,1732,5,'Editor'),(865,2032,7,'Production Design'),(865,2397,8,'Costume Design'),(865,3027,4,'Author'),(865,3031,1,'Director of Photography'),(865,3995,8,'Makeup Department Head'),(865,8752,5,'Editor'),(865,12988,2,'Director'),(865,12992,3,'Producer'),(865,12993,3,'Producer'),(865,12994,6,'Original Music Composer'),(865,21725,3,'Executive Producer'),(865,27583,5,'Editor'),(865,1099099,3,'Executive Producer'),(865,1551320,9,'Sound Recordist'),(9823,26714,2,'Director'),(9823,43518,4,'Screenplay'),(9823,43518,3,'Producer'),(9823,57256,9,'Creator'),(9823,57257,9,'Creator'),(9823,59644,4,'Screenplay'),(9766,894,6,'Original Music Composer'),(9766,11874,3,'Producer'),(9766,13245,5,'Editor'),(9766,18500,2,'Director'),(9766,18697,3,'Executive Producer'),(9766,24179,3,'Executive Producer'),(9766,48548,3,'Producer'),(9766,48550,4,'Author'),(9766,54419,3,'Executive Producer'),(9766,57546,4,'Author'),(9766,58183,3,'Executive Producer'),(9766,69506,1,'Director of Photography'),(9452,7202,1,'Director of Photography'),(9452,2875,7,'Production Design'),(9452,546,3,'Casting'),(9452,547,3,'Casting'),(9452,639,3,'Producer'),(9452,906,7,'Set Decoration'),(9452,909,5,'Editor'),(9452,1259,6,'Original Music Composer'),(9452,5671,8,'Costume Design'),(9452,6449,4,'Screenplay'),(9452,6449,2,'Director'),(9452,6449,3,'Producer'),(9452,7200,3,'Producer'),(9452,21012,5,'Editor'),(9452,58028,4,'Screenplay'),(9452,83118,8,'Key Hair Stylist'),(9452,1330048,8,'Costume Supervisor'),(9452,1355532,2,'Script Supervisor'),(9452,1389139,1,'Still Photographer'),(9452,1404230,1,'Still Photographer'),(9452,1535953,2,'Script Supervisor'),(9452,1535954,3,'Production Coordinator'),(9452,1535956,7,'Art Direction'),(9452,1535958,3,'Production Supervisor'),(9271,3953,3,'Producer'),(9271,19155,6,'Original Music Composer'),(9271,13017,3,'Executive Producer'),(9271,21348,4,'Screenplay'),(9271,42119,1,'Director of Photography'),(9271,57090,2,'Director'),(9271,57091,5,'Editor'),(9271,57092,5,'Editor'),(4474,36,1,'Director of Photography'),(4474,376,3,'Producer'),(4474,561,3,'Casting'),(4474,3429,7,'Production Design'),(4474,7068,5,'Editor'),(4474,8858,2,'Director'),(4474,9551,8,'Costume Design'),(4474,10548,5,'Editor'),(4474,17951,7,'Set Decoration'),(4474,20822,6,'Original Music Composer'),(4474,20401,4,'Screenplay'),(4474,23420,3,'Executive Producer'),(4474,35974,3,'Producer'),(4474,37406,7,'Art Direction'),(4474,1457666,5,'Assistant Editor'),(9920,122,6,'Music'),(9920,7239,6,'Supervising Sound Editor'),(9920,7239,6,'Sound Effects Designer'),(9920,10630,6,'Sound Editor'),(9920,6959,3,'Casting'),(9920,8681,8,'Costume Design'),(9920,13165,6,'Sound Re-Recording Mixer'),(9920,13927,2,'Director'),(9920,13927,4,'Writer'),(9920,16404,7,'Supervising Art Director'),(9920,17676,7,'Set Designer'),(9920,19449,3,'Executive Producer'),(9920,19449,3,'Unit Production Manager'),(9920,26731,1,'Director of Photography'),(9920,46287,8,'Makeup Artist'),(9920,46287,8,'Hairstylist'),(9920,49826,3,'Producer'),(9920,60513,3,'Co-Producer'),(9920,60515,3,'Executive Producer'),(9920,60514,3,'Line Producer'),(9920,60517,3,'Line Producer'),(9920,60519,3,'Executive Producer'),(9920,60521,5,'Editor'),(9920,60522,3,'Executive Producer'),(9920,60520,3,'Co-Producer'),(9920,60523,7,'Production Design'),(9920,60525,7,'Set Decoration'),(9920,60524,7,'Art Direction'),(9920,60532,10,'Visual Effects Producer'),(9920,75685,2,'First Assistant Director'),(9920,78779,6,'Sound Mixer'),(9920,554887,6,'Supervising Sound Editor'),(9920,957391,3,'Production Supervisor'),(9920,961165,3,'Casting'),(9920,1077782,9,'Special Sound Effects'),(9920,1199134,6,'Boom Operator'),(9920,1280070,9,'Additional Music'),(9920,1299405,6,'Sound Editor'),(9920,1319467,8,'Makeup Artist'),(9920,1380002,1,'Still Photographer'),(9920,1392084,6,'ADR Editor'),(9920,1392969,6,'Sound Re-Recording Mixer'),(9920,1395447,6,'Sound Effects Designer'),(9920,1403710,2,'Script Supervisor'),(9920,1404546,6,'Music Editor'),(9920,1404553,9,'Unit Publicist'),(9920,1405237,10,'Visual Effects Producer'),(9920,1421720,9,'Special Effects Coordinator'),(9920,1433718,6,'Sound Editor'),(9920,1435655,9,'Stunt Coordinator'),(9920,1437893,1,'Camera Operator'),(9920,1458533,6,'Music Editor'),(9920,1528385,8,'Hairstylist'),(9920,1547771,5,'First Assistant Editor'),(9920,1647811,3,'Local Casting'),(9920,1758840,2,'Second Assistant Director'),(9920,1758847,10,'Visual Effects Supervisor'),(9920,1758848,3,'Production Supervisor'),(9920,1758850,3,'Production Manager'),(9920,1758851,3,'Production Manager'),(9920,1758856,3,'Production Manager'),(9920,1758858,7,'Set Designer'),(9920,1758949,7,'Art Department Coordinator'),(9920,1758950,7,'Art Department Coordinator'),(9920,1758966,1,'Camera Operator'),(9920,1758967,8,'Set Costumer'),(9920,1758970,8,'Assistant Costume Designer'),(9920,1758972,8,'Key Hair Stylist'),(9920,1758972,8,'Key Makeup Artist'),(9920,1758979,11,'Chief Lighting Technician'),(9920,1758986,11,'Rigging Gaffer'),(9920,1758988,1,'Key Grip'),(9920,1758991,3,'Production Coordinator'),(9920,1758997,3,'Local Casting'),(9920,1758998,3,'Casting Associate'),(9920,1821349,10,'Special Effects Supervisor'),(8978,4023,3,'Casting'),(8978,1264,5,'Editor'),(8978,5912,6,'Original Music Composer'),(8978,3192,3,'Casting'),(8978,5328,3,'Casting'),(8978,8303,3,'Executive Producer'),(8978,8355,9,'Stunt Coordinator'),(8978,8369,3,'Unit Production Manager'),(8978,8370,2,'First Assistant Director'),(8978,8811,9,'Video Assist Operator'),(8978,11770,4,'Screenplay'),(8978,13194,5,'Digital Intermediate'),(8978,19112,3,'Producer'),(8978,20908,3,'Producer'),(8978,22819,8,'Costume Design'),(8978,23545,3,'Casting'),(8978,40835,7,'Production Design'),(8978,53120,4,'Screenplay'),(8978,53120,3,'Co-Producer'),(8978,58324,2,'Director'),(8978,58325,1,'Director of Photography'),(8978,62121,7,'Set Decoration'),(8978,83347,9,'Post Production Supervisor'),(8978,85960,6,'Sound Designer'),(8978,85960,6,'Supervising Sound Editor'),(8978,85961,6,'Sound Effects Editor'),(8978,936451,3,'Executive Producer'),(8978,960707,8,'Costume Design'),(8978,1002161,3,'Producer'),(8978,1002652,10,'Visual Effects Supervisor'),(8978,1035176,3,'Casting Associate'),(8978,1078710,9,'Software Engineer'),(8978,1120532,7,'Art Department Coordinator'),(8978,1186277,3,'Executive Producer'),(8978,1286355,8,'Key Hair Stylist'),(8978,1296185,6,'Orchestrator'),(8978,1304276,6,'Foley'),(8978,1315700,8,'Makeup Artist'),(8978,1322019,7,'Art Direction'),(8978,1330117,8,'Costume Supervisor'),(8978,1330118,9,'Utility Stunts'),(8978,1337455,7,'Construction Coordinator'),(8978,1337457,6,'Boom Operator'),(8978,1340345,6,'Sound Designer'),(8978,1340345,6,'Supervising Sound Editor'),(8978,1340919,2,'Script Supervisor'),(8978,1364796,6,'Assistant Sound Editor'),(8978,1364803,3,'Location Manager'),(8978,1394282,10,'Visual Effects Supervisor'),(8978,1395361,6,'Dolby Consultant'),(8978,1399502,9,'Scenic Artist'),(8978,1401282,7,'Assistant Art Director'),(8978,1401283,7,'Set Designer'),(8978,1401284,7,'Set Designer'),(8978,1401285,9,'Scenic Artist'),(8978,1401286,9,'Property Master'),(8978,1401287,6,'Sound Effects Editor'),(8978,1401288,6,'Sound Effects Editor'),(8978,1401289,9,'Sound Recordist'),(8978,1401290,6,'Sound Re-Recording Mixer'),(8978,1401291,9,'Special Effects Coordinator'),(8978,1401292,10,'Visual Effects Producer'),(8978,1401293,11,'Gaffer'),(8978,1401294,11,'Gaffer'),(8978,1401295,1,'Camera Operator'),(8978,1401296,1,'Camera Operator'),(8978,1401297,1,'Camera Operator'),(8978,1401298,1,'Steadicam Operator'),(8978,1401300,1,'Additional Camera'),(8978,1401305,6,'Music Editor'),(8978,1401307,9,'Unit Publicist'),(8978,1401309,2,'Script Supervisor'),(8978,1408673,10,'Pyrotechnic Supervisor'),(8978,1415151,9,'Digital Effects Supervisor'),(8978,1471726,6,'Music Supervisor'),(8978,1530192,9,'Armorer'),(8978,1531898,10,'Special Effects Supervisor'),(8978,1551661,11,'Best Boy Electric'),(8978,1560110,5,'Color Timer'),(8978,1569843,6,'Scoring Mixer'),(8978,1598737,1,'First Assistant Camera'),(8978,1600613,1,'Key Grip'),(8978,1605895,10,'Digital Compositors'),(8978,1651080,7,'Painter'),(8978,1652229,10,'3D Animator'),(8978,1663929,9,'Compositors'),(8978,1701154,4,'Storyboard'),(8978,1704380,3,'Production Coordinator'),(8978,1733237,1,'Aerial Camera'),(8978,1820037,7,'Location Scout'),(8978,1820038,1,'Grip'),(8978,1820039,8,'Hairstylist'),(8978,1820040,9,'Carpenter'),(8978,1820041,9,'CG Supervisor'),(8978,1820042,9,'Craft Service'),(8978,1820043,9,'Picture Car Coordinator'),(8978,1820044,9,'Stand In'),(8978,1820045,9,'Stunts'),(8978,1820046,9,'Systems Administrators & Support'),(8978,1820048,11,'Rigging Gaffer'),(8978,1820050,3,'Production Accountant'),(8978,1820051,3,'Publicist'),(8978,1820052,6,'Production Sound Mixer'),(8978,1820053,6,'Sound'),(8869,1296,3,'Producer'),(8869,6046,3,'Executive Producer'),(8869,6052,3,'Casting'),(8869,7443,3,'Production Coordinator'),(8869,8676,3,'Producer'),(8869,9039,6,'Original Music Composer'),(8869,14385,9,'Stunt Coordinator'),(8869,13166,6,'Sound Effects Editor'),(8869,15430,8,'Key Hair Stylist'),(8869,14764,6,'Sound Effects Editor'),(8869,15365,3,'Co-Producer'),(8869,15365,3,'Unit Production Manager'),(8869,21615,7,'Production Design'),(8869,21866,7,'Art Direction'),(8869,26986,8,'Makeup Department Head'),(8869,28925,10,'Visual Effects Supervisor'),(8869,29929,9,'Makeup Effects'),(8869,37038,6,'Orchestrator'),(8869,36623,7,'Set Decoration'),(8869,52016,8,'Costume Design'),(8869,52452,6,'Music Supervisor'),(8869,54212,3,'Executive Producer'),(8869,31175,1,'Director of Photography'),(8869,56150,2,'Director'),(8869,56150,4,'Screenplay'),(8869,56150,4,'Story'),(8869,34218,4,'Screenplay'),(8869,56151,3,'Executive Producer'),(8869,57117,4,'Story'),(8869,73720,6,'Conductor'),(8869,75465,9,'In Memory Of'),(8869,106647,9,'Stunts'),(8869,143919,6,'Sound Re-Recording Mixer'),(8869,402272,1,'Additional Photography'),(8869,548429,6,'ADR & Dubbing'),(8869,548439,6,'Foley'),(8869,937093,9,'Additional Music'),(8869,958787,3,'Casting'),(8869,1031810,6,'Sound Effects Editor'),(8869,1043374,6,'Musician'),(8869,1076157,10,'Visual Effects Coordinator'),(8869,1116038,3,'Production Accountant'),(8869,1231084,3,'Casting Associate'),(8869,1303184,6,'Sound Re-Recording Mixer'),(8869,1325353,7,'Construction Coordinator'),(8869,1327403,9,'Carpenter'),(8869,1338380,5,'Editor'),(8869,1340738,6,'Boom Operator'),(8869,1349452,2,'First Assistant Director'),(8869,1374169,6,'Foley'),(8869,1384393,6,'Music Editor'),(8869,1390525,6,'Sound Effects Editor'),(8869,1392085,6,'Sound Editor'),(8869,1392094,10,'Visual Effects Supervisor'),(8869,1393365,1,'Steadicam Operator'),(8869,1402545,8,'Makeup Artist'),(8869,1405382,5,'Dialogue Editor'),(8869,1406390,6,'Sound Effects Editor'),(8869,1408326,9,'Visual Effects Editor'),(8869,1408721,1,'Still Photographer'),(8869,1414549,6,'Supervising Sound Editor'),(8869,1415640,8,'Costume Supervisor'),(8869,1423018,8,'Key Set Costumer'),(8869,1429241,7,'Art Department Coordinator'),(8869,1429242,9,'Property Master'),(8869,1429243,7,'Leadman'),(8869,1429244,7,'Set Designer'),(8869,1429245,9,'Special Effects Coordinator'),(8869,1429246,10,'Animation Supervisor'),(8869,1429247,10,'Visual Effects Producer'),(8869,1429248,10,'Visual Effects Supervisor'),(8869,1429249,1,'Camera Operator'),(8869,1429250,1,'Camera Operator'),(8869,1429251,8,'Set Costumer'),(8869,1429252,5,'First Assistant Editor'),(8869,1429253,2,'Script Supervisor'),(8869,1429255,9,'Studio Teachers'),(8869,1429256,9,'Unit Publicist'),(8869,1429257,3,'Location Manager'),(8869,1459187,8,'Hairstylist'),(8869,1493890,2,'Second Assistant Director'),(8869,1511063,6,'Scoring Mixer'),(8869,1552536,7,'Standby Painter'),(8869,1552537,1,'First Assistant Camera'),(8869,1552538,1,'Key Grip'),(8869,1552540,9,'Craft Service'),(8869,1552541,9,'Digital Effects Supervisor'),(8869,1552542,9,'Driver'),(8869,1552543,9,'Picture Car Coordinator'),(8869,1552544,9,'Post Production Supervisor'),(8869,1552545,9,'Propmaker'),(8869,1552546,9,'Set Medic'),(8869,1552547,9,'Set Production Assistant'),(8869,1552548,9,'Transportation Captain'),(8869,1552549,5,'Color Timer'),(8869,1552596,6,'Production Sound Mixer'),(8869,1552603,6,'Sound Engineer'),(8869,1552605,10,'Digital Compositors'),(8869,1552606,10,'Special Effects Supervisor'),(8869,1552607,4,'Storyboard'),(8869,1669267,9,'Stunts'),(8869,1733132,5,'Negative Cutter'),(8869,1738084,7,'Assistant Property Master'),(8869,1738085,7,'Set Dresser'),(8869,1738123,9,'Animal Wrangler'),(8869,1738125,11,'Underwater Gaffer'),(8869,1738126,3,'Assistant Production Coordinator'),(8869,1738128,10,'3D Artist'),(3489,1999,6,'Original Music Composer'),(3489,2033,5,'Editor'),(3489,2624,3,'Casting'),(3489,8162,4,'Screenplay'),(3489,8162,3,'Producer'),(3489,9004,7,'Production Design'),(3489,12707,8,'Costume Design'),(3489,17209,3,'Producer'),(3489,17210,3,'Producer'),(3489,17211,3,'Producer'),(3489,18250,2,'Director'),(3489,18250,3,'Producer'),(3489,23464,1,'Director of Photography'),(3489,32197,3,'Producer'),(3489,23811,3,'Casting'),(3489,32200,7,'Production Design'),(3489,32201,7,'Set Decoration'),(3489,1546584,7,'Standby Painter'),(9701,278,6,'Original Music Composer'),(9701,1262,3,'Casting'),(9701,2986,3,'Executive Producer'),(9701,6468,3,'Producer'),(9701,8969,1,'Director of Photography'),(9701,15287,2,'Director'),(9701,15291,5,'Editor'),(9701,31519,3,'Executive Producer'),(9701,58644,4,'Author'),(9701,58645,4,'Author'),(9701,69895,3,'Executive Producer'),(9701,69896,3,'Executive Producer'),(2122,8340,8,'Makeup Artist'),(2122,4500,6,'Original Music Composer'),(2122,13585,3,'Casting'),(2122,8653,6,'Production Sound Mixer'),(2122,15333,10,'Special Effects Supervisor'),(2122,21003,3,'Associate Producer'),(2122,20842,3,'Producer'),(2122,18691,3,'Producer'),(2122,21218,4,'Characters'),(2122,21219,3,'Producer'),(2122,21220,3,'Producer'),(2122,21479,3,'Executive Producer'),(2122,21617,8,'Costume Design'),(2122,26502,2,'Director'),(2122,21792,4,'Screenplay'),(2122,21793,1,'Director of Photography'),(2122,21794,5,'Editor'),(2122,21795,7,'Production Design'),(2122,21796,7,'Art Direction'),(2122,21797,7,'Set Decoration'),(2122,36146,3,'Co-Producer'),(2122,36616,3,'Executive Producer'),(2122,36618,3,'Executive Producer'),(2122,38083,3,'Co-Producer'),(2122,57965,3,'Unit Production Manager'),(2122,57965,3,'Line Producer'),(2122,60784,3,'Executive Producer'),(2122,60786,3,'Associate Producer'),(2122,60787,3,'Associate Producer'),(2122,60839,9,'Legal Services'),(2122,81687,9,'Stunt Coordinator'),(2122,75797,6,'Supervising Sound Editor'),(2122,83075,7,'Construction Coordinator'),(2122,86595,8,'Key Hair Stylist'),(2122,91144,6,'Scoring Mixer'),(2122,104832,3,'Co-Executive Producer'),(2122,119482,1,'Camera Operator'),(2122,150194,9,'Stunts'),(2122,939455,3,'Executive Producer'),(2122,1190244,2,'Assistant Director'),(2122,1219858,9,'Video Assist Operator'),(2122,1304276,6,'Foley'),(2122,1319747,8,'Costume Supervisor'),(2122,1324833,9,'Post Production Supervisor'),(2122,1338134,6,'Sound'),(2122,1339463,9,'Transportation Captain'),(2122,1345624,3,'Location Manager'),(2122,1364422,10,'Digital Compositors'),(2122,1364801,6,'First Assistant Sound Editor'),(2122,1377236,9,'Studio Teachers'),(2122,1398176,8,'Set Costumer'),(2122,1398460,6,'Sound Effects Editor'),(2122,1418002,6,'Music Editor'),(2122,1421255,9,'Transportation Coordinator'),(2122,1424151,8,'Makeup Artist'),(2122,1427078,3,'Casting Associate'),(2122,1428122,8,'Hairstylist'),(2122,1457708,2,'Script Supervisor'),(2122,1471304,9,'Unit Publicist'),(2122,1536542,1,'Still Photographer'),(2122,1537168,3,'Production Coordinator'),(2122,1538449,9,'Craft Service'),(2122,1549637,9,'Special Effects Coordinator'),(2122,1550240,1,'Grip'),(2122,1550566,6,'Orchestrator'),(2122,1560110,5,'Color Timer'),(2122,1562262,6,'Boom Operator'),(2122,1570747,9,'Armorer'),(2122,1574632,9,'Carpenter'),(2122,1587383,6,'Music Supervisor'),(2122,1608789,3,'Production Supervisor'),(2122,1637978,7,'Painter'),(2122,1667231,7,'Assistant Art Director'),(2122,1681470,9,'Transportation Co-Captain'),(2122,1681479,3,'Production Accountant'),(2122,1705105,7,'Art Department Assistant'),(2122,1705105,9,'Set Production Assistant'),(2122,1705109,1,'First Assistant Camera'),(2122,1705110,1,'Steadicam Operator'),(2122,1705112,8,'Prosthetic Supervisor'),(2122,1705114,8,'Set Dressing Artist'),(2122,1705118,9,'Chef'),(2122,1705121,9,'Driver'),(2122,1705124,9,'Loader'),(2122,1705127,9,'Picture Car Coordinator'),(2122,1705131,9,'Set Medic'),(2122,1705137,9,'Stand In'),(2122,1705139,5,'First Assistant Editor'),(2122,1705140,11,'Best Boy Electric'),(2122,1705142,11,'Electrician'),(2122,1705143,11,'Lighting Technician'),(2122,1705144,11,'Rigging Grip'),(2122,1758616,8,'Key Makeup Artist'),(9042,68602,3,'Producer'),(9042,1076,6,'Music'),(9042,3189,5,'Editor'),(9042,3958,10,'Visual Effects Supervisor'),(9042,3962,8,'Costume Design'),(9042,3964,10,'Creature Design'),(9042,3965,3,'Casting'),(9042,7406,3,'Producer'),(9042,9349,6,'Supervising Sound Editor'),(9042,9357,9,'Stunt Coordinator'),(9042,9430,6,'Sound Effects Editor'),(9042,13165,6,'Sound Re-Recording Mixer'),(9042,12654,7,'Set Decoration'),(9042,15330,8,'Makeup Department Head'),(9042,16595,7,'Production Design'),(9042,20228,6,'Foley'),(9042,20229,6,'Foley'),(9042,23492,7,'Art Direction'),(9042,47205,3,'Casting'),(9042,44179,2,'Director'),(9042,56785,4,'Screenplay'),(9042,56786,1,'Director of Photography'),(9042,60409,7,'Art Direction'),(9042,91327,3,'Production Supervisor'),(9042,1034748,3,'Casting'),(9042,1270175,1,'Underwater Camera'),(9042,1334504,7,'Art Department Coordinator'),(9042,1334508,7,'Art Direction'),(9042,1334511,9,'Prop Maker'),(9042,1334512,7,'Construction Coordinator'),(9042,1334514,7,'Sculptor'),(9042,1334515,7,'Sculptor'),(9042,1334516,7,'Sculptor'),(9042,1334517,6,'Music Editor'),(9042,1341786,6,'Sound Effects Editor'),(9042,1346957,2,'Script Supervisor'),(9042,1357342,9,'Stunt Coordinator'),(9042,1389625,9,'Transportation Coordinator'),(9042,1389626,3,'Location Manager'),(9042,1392737,2,'Script Supervisor'),(9042,1395023,6,'Sound Effects Editor'),(9042,1399565,1,'Camera Operator'),(9042,1399569,3,'Location Manager'),(9042,1399632,6,'ADR & Dubbing'),(9042,1400343,10,'Visual Effects Producer'),(9042,1401196,1,'Still Photographer'),(9042,1402900,1,'Camera Operator'),(9042,1402975,9,'Transportation Coordinator'),(9042,1402978,9,'Scenic Artist'),(9042,1405238,1,'Camera Operator'),(9042,1407693,11,'Gaffer'),(9042,1409224,1,'Camera Operator'),(9042,1409227,8,'Hairstylist'),(9042,1409229,9,'Scenic Artist'),(9042,1409231,9,'Sound Recordist'),(9042,1409233,10,'Visual Effects Producer'),(9042,1409234,10,'Visual Effects Producer'),(9042,1409235,10,'Visual Effects Producer'),(9042,1409236,10,'Visual Effects Supervisor'),(9042,1409237,10,'Animation'),(9042,1409238,1,'Steadicam Operator'),(9042,1409240,1,'Additional Photography'),(9042,1409241,11,'Best Boy Electric'),(9042,1409242,9,'Video Assist Operator'),(9042,1409243,9,'Video Assist Operator'),(9042,1409244,5,'Digital Intermediate'),(9042,1409245,5,'Digital Intermediate'),(9042,1409246,5,'First Assistant Editor'),(9042,1448601,10,'Animation'),(1947,4023,3,'Casting'),(1947,2488,3,'Producer'),(1947,3192,3,'Casting'),(1947,5306,2,'Director'),(1947,5325,3,'Producer'),(1947,5327,5,'Editor'),(1947,5328,3,'Casting'),(1947,5329,7,'Production Design'),(1947,5362,3,'Casting'),(1947,5363,3,'Casting'),(1947,16425,1,'Director of Photography'),(1947,18784,7,'Art Direction'),(1947,20183,4,'Screenplay'),(1947,20184,4,'Screenplay'),(1947,28163,7,'Set Decoration'),(1947,60068,6,'Music'),(1947,62860,8,'Costume Design'),(1947,1378728,2,'Script Supervisor'),(1947,1389310,8,'Makeup Artist'),(1947,1393423,5,'First Assistant Editor'),(1947,1405321,8,'Makeup Artist'),(1947,1417400,8,'Hairstylist'),(1947,1425969,8,'Hair Department Head'),(1947,1425973,7,'Art Department Coordinator'),(1947,1444909,8,'Hairstylist'),(1947,1446192,8,'Makeup Designer'),(1947,1525902,3,'Producer'),(1947,1525903,8,'Hairstylist'),(1947,1525904,9,'Carpenter'),(1947,1525905,9,'Carpenter'),(1947,1525906,9,'Special Effects Coordinator'),(1947,1525907,8,'Assistant Costume Designer'),(1947,1525908,5,'First Assistant Editor'),(1947,1579180,1,'First Assistant Camera'),(8054,280,4,'Screenplay'),(8054,280,2,'Director'),(8054,374,4,'Screenplay'),(8054,5359,6,'Music'),(8054,8320,6,'Music'),(8054,11823,8,'Costume Design'),(8054,19727,9,'Cinematography'),(8054,62120,7,'Production Design'),(9989,1527,1,'Director of Photography'),(9989,2031,3,'Casting'),(9989,2357,4,'Writer'),(9989,2532,3,'Casting'),(9989,4671,5,'Editor'),(9989,4949,6,'Original Music Composer'),(9989,6468,3,'Producer'),(9989,7791,2,'Director'),(9989,7690,3,'Executive Producer'),(9989,11822,7,'Set Decoration'),(9989,15208,3,'Producer'),(9989,27038,3,'Executive Producer'),(9989,19850,7,'Production Design'),(9989,21478,3,'Executive Producer'),(9989,8305,3,'Producer'),(9989,31710,3,'Executive Producer'),(9989,60282,3,'Casting'),(9989,61539,8,'Costume Design'),(9989,61538,7,'Art Direction'),(9989,1007395,9,'Stunt Coordinator'),(9989,1546584,7,'Standby Painter'),(9665,391,7,'Production Design'),(9665,1729,6,'Original Music Composer'),(9665,2484,5,'Editor'),(9665,5629,1,'Director of Photography'),(9665,7781,4,'Screenplay'),(9665,8646,7,'Supervising Art Director'),(9665,9181,2,'Director'),(9665,11413,7,'Set Decoration'),(9665,11508,7,'Art Direction'),(9665,16736,6,'Sound Designer'),(9665,25201,10,'Visual Effects'),(9665,21517,3,'Casting'),(9665,27963,3,'Producer'),(9665,37428,7,'Assistant Art Director'),(9665,113090,6,'Foley'),(9665,62643,8,'Costume Design'),(9665,92393,9,'Special Effects Coordinator'),(9665,92467,10,'Visual Effects'),(9665,91854,8,'Makeup Artist'),(9665,156869,9,'Stunt Coordinator'),(9665,1001708,9,'Property Master'),(9665,1172443,1,'Still Photographer'),(9665,1192644,11,'Gaffer'),(9665,1324884,8,'Costume Supervisor'),(9665,1338372,6,'Foley'),(9665,1341858,6,'Sound Re-Recording Mixer'),(9665,1378068,8,'Makeup Department Head'),(9665,1378170,6,'Sound Re-Recording Mixer'),(9665,1399326,6,'Music Editor'),(9665,1399997,6,'Sound Re-Recording Mixer'),(9665,1400736,9,'Transportation Coordinator'),(9665,1401758,7,'Construction Coordinator'),(9665,1406921,6,'ADR & Dubbing'),(9665,1416054,8,'Hairstylist'),(9665,1419921,1,'Camera Operator'),(9665,1422978,6,'ADR & Dubbing'),(9665,1453321,3,'Publicist'),(9665,1458045,8,'Hairstylist'),(9665,1458046,8,'Makeup Artist'),(9665,1458047,6,'Foley'),(9665,1458049,9,'Second Unit Cinematographer'),(9665,1458054,2,'Script Supervisor'),(9665,1458056,2,'Script Supervisor'),(9665,1458058,9,'Public Relations'),(311,376,3,'Producer'),(311,1259,6,'Original Music Composer'),(311,1304,8,'Costume Design'),(311,3662,3,'Casting'),(311,4385,2,'Director'),(311,4385,4,'Screenplay'),(311,4655,7,'Production Design'),(311,4656,9,'Special Effects'),(311,4657,9,'Special Effects'),(311,4658,9,'Special Effects'),(311,4659,9,'Special Effects'),(311,4660,9,'Special Effects'),(311,4661,9,'Stunts'),(311,4668,4,'Screenplay'),(311,4669,3,'Executive Producer'),(311,4670,5,'Editor'),(311,4671,5,'Editor'),(311,4673,3,'Casting'),(311,4674,1,'Director of Photography'),(311,4675,1,'Director of Photography'),(311,4676,1,'Camera Operator'),(311,4677,11,'Lighting Technician'),(311,4678,6,'Sound Designer'),(311,4667,4,'Screenplay'),(311,32048,4,'Screenplay'),(311,50818,4,'Screenplay'),(311,69973,4,'Screenplay'),(311,138247,9,'Additional Dialogue'),(311,234556,4,'Screenplay'),(311,1344882,4,'Novel'),(6016,1302,3,'Casting'),(6016,3831,4,'Screenplay'),(6016,3996,6,'Sound Re-Recording Mixer'),(6016,4034,8,'Costume Design'),(6016,5581,6,'Original Music Composer'),(6016,8969,1,'Director of Photography'),(6016,9021,3,'Producer'),(6016,17016,4,'Screenplay'),(6016,17016,2,'Director'),(6016,40796,1,'Still Photographer'),(6016,12685,5,'Editor'),(6016,14228,4,'Novel'),(6016,16343,6,'Supervising Sound Editor'),(6016,16344,5,'Dialogue Editor'),(6016,29688,3,'Producer'),(6016,18986,7,'Production Design'),(6016,47333,3,'Producer'),(6016,1198735,7,'Set Decoration'),(6016,1317558,7,'Set Decoration'),(6016,1319160,8,'Costume Supervisor'),(6016,1338127,1,'First Assistant Camera'),(6016,1394104,2,'Script Supervisor'),(6016,1406905,6,'Music Editor'),(6016,1413035,1,'Steadicam Operator'),(6016,1425530,8,'Co-Costume Designer'),(6016,1453238,5,'First Assistant Editor'),(6016,1462065,8,'Hair Designer'),(6016,1544338,6,'Music Supervisor'),(6016,1545391,6,'Sound Re-Recording Mixer'),(6016,1545392,1,'First Assistant Camera'),(2008,122,6,'Original Music Composer'),(2008,1633,1,'Director of Photography'),(2008,10106,3,'Producer'),(2008,20638,3,'Producer'),(2008,20639,3,'Producer'),(2008,20640,2,'Director'),(2008,20640,4,'Screenplay'),(2008,20641,3,'Producer'),(2008,20642,3,'Executive Producer'),(2008,20655,3,'Producer'),(2008,1636750,3,'Production Manager'),(9053,4014,3,'Producer'),(9053,1203,4,'Author'),(9053,35452,2,'Director'),(9053,49809,5,'Editor'),(9053,56826,4,'Author'),(9053,56827,6,'Music'),(9053,1131449,7,'Art Direction'),(9053,1758851,3,'Unit Production Manager'),(4512,151,1,'Director of Photography'),(4512,3718,3,'Producer'),(4512,287,3,'Producer'),(4512,578,3,'Producer'),(4512,1809,5,'Editor'),(4512,5634,7,'Set Designer'),(4512,6390,5,'Editor'),(4512,34511,3,'Executive Producer'),(4512,20458,3,'Producer'),(4512,37618,2,'Director'),(4512,37618,4,'Screenplay'),(4512,39514,4,'Novel'),(4512,39515,3,'Producer'),(4512,39516,6,'Music'),(4512,39517,6,'Music'),(1874,2425,5,'Editor'),(1874,2596,1,'Director of Photography'),(1874,3192,3,'Casting'),(1874,11269,6,'Original Music Composer'),(1874,19695,3,'Producer'),(1874,19684,2,'Director'),(1874,19685,4,'Novel'),(1874,19686,4,'Novel'),(1874,19687,4,'Screenplay'),(1874,19689,3,'Casting'),(1874,19690,7,'Art Direction'),(1874,19691,7,'Production Design'),(1874,19692,8,'Costume Design'),(1874,19693,5,'First Assistant Editor'),(1874,19694,3,'Producer'),(1874,19696,3,'Producer'),(1874,19697,3,'Producer'),(69,366,2,'Director'),(69,366,4,'Screenplay'),(69,407,4,'Screenplay'),(69,408,3,'Producer'),(69,409,3,'Producer'),(69,410,3,'Executive Producer'),(69,414,3,'Unit Production Manager'),(69,414,3,'Executive Producer'),(69,432,1,'Director of Photography'),(69,433,5,'Editor'),(69,434,3,'Casting'),(69,436,3,'Casting'),(69,437,7,'Production Design'),(69,1483,9,'Executive Music Producer'),(69,1483,6,'Original Music Composer'),(69,7717,7,'Art Direction'),(69,9360,1,'Still Photographer'),(69,11308,6,'Music Editor'),(69,32797,8,'Costume Design'),(69,35582,2,'Assistant Director'),(69,113055,5,'Dialogue Editor'),(69,113073,6,'Sound Re-Recording Mixer'),(69,66692,8,'Hair Department Head'),(69,61089,3,'Production Supervisor'),(69,71560,7,'Set Decoration'),(69,81687,9,'Stunt Coordinator'),(69,75708,2,'Assistant Director'),(69,83088,5,'Dialogue Editor'),(69,84678,4,'Book'),(69,223239,6,'Production Sound Mixer'),(69,230247,3,'Associate Producer'),(69,1032536,10,'Visual Effects Supervisor'),(69,1169459,10,'Visual Effects Producer'),(69,1193336,2,'Assistant Director'),(69,1279912,8,'Assistant Costume Designer'),(69,1316003,8,'Makeup Department Head'),(69,1319158,8,'Set Costumer'),(69,1327146,8,'Costume Supervisor'),(69,1333900,8,'Makeup Artist'),(69,1339455,8,'Set Costumer'),(69,1352959,8,'Makeup Artist'),(69,1361069,7,'Location Scout'),(69,1373433,10,'Digital Compositors'),(69,1377220,6,'Sound Re-Recording Mixer'),(69,1390536,6,'Music Editor'),(69,1400540,2,'Script Supervisor'),(69,1401606,8,'Key Hair Stylist'),(69,1401644,9,'Post Production Supervisor'),(69,1402038,3,'Location Manager'),(69,1414984,10,'Color Designer'),(69,1416153,6,'Supervising Sound Editor'),(69,1422412,10,'Special Effects Supervisor'),(69,1484966,8,'Hairstylist'),(69,1523481,7,'Art Direction'),(69,1530090,2,'Assistant Director'),(69,1532197,8,'Set Costumer'),(69,1532301,3,'Casting Associate'),(69,1532305,7,'Art Department Coordinator'),(69,1552521,9,'Stunts'),(69,1599614,3,'Location Manager'),(69,1640492,11,'Rigging Gaffer'),(69,1665465,9,'Stunts'),(69,1680299,11,'Electrician'),(69,1680300,1,'Grip'),(69,1680301,11,'Electrician'),(4967,2952,3,'Casting'),(4967,819,2,'Director'),(4967,819,3,'Producer'),(4967,548,7,'Production Design'),(4967,605,8,'Costume Design'),(4967,6191,7,'Set Decoration'),(4967,7182,6,'Original Music Composer'),(4967,14457,5,'Editor'),(4967,13017,3,'Producer'),(4967,17950,7,'Art Direction'),(4967,19464,1,'Director of Photography'),(4967,40277,4,'Screenplay'),(4967,40277,3,'Producer'),(4967,1316529,8,'Makeup Artist'),(4967,1389601,2,'Script Supervisor'),(4967,1399479,9,'Unit Publicist'),(4967,1415080,8,'Makeup Artist'),(4967,1422796,7,'Art Department Coordinator'),(4967,1468618,8,'Hairstylist'),(9449,8381,7,'Supervising Art Director'),(9449,2236,3,'Producer'),(9449,2238,3,'Producer'),(9449,5335,8,'Hairstylist'),(9449,5553,6,'Original Music Composer'),(9449,9153,7,'Production Design'),(9449,10710,7,'Art Direction'),(9449,16363,3,'Casting'),(9449,18357,2,'Director'),(9449,27814,4,'Novel'),(9449,27903,5,'Editor'),(9449,51296,4,'Screenplay'),(9449,56891,3,'Producer'),(9449,58034,4,'Screenplay'),(9449,58035,1,'Director of Photography'),(9449,60479,8,'Costume Design'),(9449,1385880,1,'Director of Photography'),(9449,1411073,8,'Wigmaker'),(9449,1462103,7,'Set Decoration'),(9449,1462104,8,'Hairstylist'),(4912,202,4,'Screenplay'),(4912,1307,3,'Executive Producer'),(4912,59839,3,'Executive Producer'),(4912,1461,2,'Director'),(4912,1484,3,'Casting'),(4912,1884,3,'Executive Producer'),(4912,1891,5,'Editor'),(4912,6057,8,'Costume Design'),(4912,6624,3,'Executive Producer'),(4912,9967,7,'Production Design'),(4912,9040,1,'Director of Photography'),(4912,29524,3,'Executive Producer'),(4912,29525,3,'Producer'),(4912,39991,4,'Novel'),(4912,39992,3,'Executive Producer'),(4912,39993,6,'Original Music Composer'),(9667,1461,3,'Producer'),(9667,1884,3,'Producer'),(9667,2946,3,'Executive Producer'),(9667,3804,3,'Producer'),(9667,6891,3,'Executive Producer'),(9667,7481,8,'Costume Design'),(9667,7481,3,'Casting'),(9667,9573,1,'Director of Photography'),(9667,20305,3,'Executive Producer'),(9667,28632,3,'Executive Producer'),(9667,31515,3,'Executive Producer'),(9667,31520,3,'Executive Producer'),(9667,37317,6,'Original Music Composer'),(9667,40307,2,'Director'),(9667,54971,4,'Author'),(9667,57087,5,'Editor'),(9667,58446,4,'Author'),(9667,68691,3,'Executive Producer'),(9667,68692,3,'Executive Producer'),(9667,68693,3,'Executive Producer'),(812,1705,4,'Screenplay'),(812,1706,4,'Screenplay'),(812,16390,3,'Co-Producer'),(812,3430,6,'Sound Editor'),(812,7890,7,'Background Designer'),(812,15810,2,'Director'),(812,15810,4,'Screenplay'),(812,15810,3,'Producer'),(812,15811,2,'Director'),(812,15811,4,'Screenplay'),(812,15811,3,'Producer'),(812,15812,4,'Story'),(812,15813,6,'Original Music Composer'),(812,15813,6,'Songs'),(812,15815,5,'Editor'),(812,15818,3,'Production Manager'),(812,15893,6,'Sound Editor'),(812,15227,5,'Assistant Editor'),(812,16177,6,'Sound Editor'),(812,27005,10,'Visual Effects Supervisor'),(812,15775,4,'Story'),(812,58829,4,'Story'),(812,61420,7,'Background Designer'),(812,61422,7,'Background Designer'),(812,61677,4,'Story'),(812,61795,5,'Dialogue Editor'),(812,62049,6,'Songs'),(812,65531,9,'Supervising Animator'),(812,65531,4,'Characters'),(812,65534,9,'Supervising Animator'),(812,66193,4,'Story'),(812,67397,6,'Orchestrator'),(812,70287,9,'Supervising Animator'),(812,72743,6,'Songs'),(812,15778,4,'Story'),(812,74298,4,'Story'),(812,74298,10,'Visual Development'),(812,74975,6,'Sound Re-Recording Mixer'),(812,74976,6,'Sound Re-Recording Mixer'),(812,74978,6,'Sound Re-Recording Mixer'),(812,15780,2,'Layout'),(812,115755,9,'Supervising Animator'),(812,139474,9,'Supervising Animator'),(812,226011,2,'Layout'),(812,952327,4,'Story'),(812,960965,3,'Co-Producer'),(812,1083425,4,'Story'),(812,1083426,4,'Story'),(812,1106549,9,'Post Production Supervisor'),(812,1209841,4,'Story'),(812,1210381,9,'CGI Supervisor'),(812,1335122,6,'Sound Editor'),(812,1403538,5,'Assistant Editor'),(812,1404717,5,'Dialogue Editor'),(812,1429549,5,'Color Timer'),(812,1447347,7,'Art Direction'),(812,1447429,7,'Background Designer'),(812,1447465,4,'Characters'),(812,1447598,2,'Layout'),(812,1451228,10,'Visual Development'),(812,1451272,2,'Layout'),(812,1454698,9,'Supervising Animator'),(812,1457631,4,'Characters'),(812,1457631,4,'Story'),(812,1461397,2,'Layout'),(812,1462616,4,'Story'),(812,1462624,4,'Story'),(812,1552486,9,'Supervising Animator'),(812,1554429,7,'Background Designer'),(812,1555333,7,'Background Designer'),(812,1558107,9,'Supervising Animator'),(812,1562840,6,'Sound Editor'),(812,1603908,9,'Sound Recordist'),(812,1603908,6,'Sound Mixer'),(812,1615257,7,'Background Designer'),(812,1615284,2,'Layout'),(812,1615285,7,'Background Designer'),(812,1615286,7,'Background Designer'),(812,1615290,7,'Background Designer'),(812,1615296,4,'Story'),(812,1615297,3,'Casting'),(812,1672761,6,'Supervising Sound Editor'),(812,1713397,7,'Background Designer'),(812,1713400,7,'Background Designer'),(812,1719664,7,'Production Design'),(812,1719667,4,'Story'),(812,1719689,2,'Layout'),(812,1719690,2,'Layout'),(812,1719691,7,'Background Designer'),(812,1719692,7,'Background Designer'),(812,1719693,7,'Background Designer'),(812,1719695,7,'Background Designer'),(812,1719699,7,'Background Designer'),(812,1719702,10,'Visual Development'),(812,1719703,5,'Assistant Editor'),(812,1719704,5,'Assistant Editor'),(812,1719705,5,'Assistant Editor'),(812,1719707,5,'Assistant Editor'),(812,1719713,9,'Choreographer'),(812,1719714,3,'Casting Associate'),(87,1,3,'Executive Producer'),(87,1,5,'Editor'),(87,1,4,'Story'),(87,1,4,'Characters'),(87,491,6,'Original Music Composer'),(87,488,2,'Director'),(87,489,3,'Associate Producer'),(87,493,5,'Editor'),(87,597,3,'Casting'),(87,598,3,'Casting'),(87,599,3,'Casting'),(87,648,4,'Characters'),(87,664,3,'Executive Producer'),(87,664,9,'Second Unit'),(87,666,1,'Director of Photography'),(87,668,3,'Casting'),(87,670,6,'Sound Designer'),(87,686,4,'Screenplay'),(87,687,4,'Screenplay'),(87,711,3,'Producer'),(87,715,7,'Production Design'),(87,7727,10,'Visual Effects'),(87,7791,7,'Set Decoration'),(87,8922,8,'Costume Design'),(87,52042,3,'Location Manager'),(87,1424133,10,'Visual Effects'),(87,1750145,7,'Art Direction'),(2043,2215,3,'Casting'),(2043,1760,6,'Original Music Composer'),(2043,2507,1,'Director of Photography'),(2043,2519,8,'Costume Design'),(2043,7230,5,'Editor'),(2043,7231,5,'Editor'),(2043,5167,7,'Production Design'),(2043,5322,3,'Producer'),(2043,7256,2,'Director'),(2043,21022,4,'Novel'),(2043,21023,4,'Screenplay'),(2043,21024,3,'Producer'),(2043,21026,6,'Sound Designer'),(2043,11021,7,'Set Decoration'),(2043,46785,8,'Costume Supervisor'),(2043,53813,7,'Art Direction'),(2043,957821,8,'Makeup Department Head'),(2043,1362798,2,'Assistant Director'),(2043,1384398,2,'Script Supervisor'),(2043,1410327,8,'Hairstylist'),(2043,1417400,8,'Hairstylist'),(2043,1458993,8,'Makeup Artist'),(2043,1479276,7,'Art Department Coordinator'),(2043,1479277,7,'Art Department Coordinator'),(2043,1479278,7,'Assistant Art Director'),(2043,1479279,7,'Assistant Art Director'),(2043,1479280,8,'Costume Supervisor'),(1428,2294,2,'Director'),(1428,2294,4,'Screenplay'),(1428,2294,5,'Editor'),(1428,2294,6,'Original Music Composer'),(1428,2294,3,'Producer'),(1428,2294,9,'Cinematography'),(1428,2294,7,'Production Design'),(1428,2294,6,'Sound Re-Recording Mixer'),(1428,2294,6,'Sound Effects Editor'),(1428,5911,3,'Producer'),(1428,5914,3,'Casting'),(1428,10630,6,'Sound Designer'),(1428,11425,8,'Costume Design'),(1428,19449,3,'Co-Producer'),(1428,19449,3,'Unit Production Manager'),(1428,20498,3,'Producer'),(1428,61056,7,'Set Decoration'),(1428,60515,3,'Co-Producer'),(1428,95823,3,'Executive In Charge Of Production'),(1428,143917,6,'Sound Effects Editor'),(1428,144146,8,'Makeup Department Head'),(1428,954600,3,'Co-Producer'),(1428,1070123,8,'Hairstylist'),(1428,1070123,8,'Makeup Artist'),(1428,1204836,5,'Dialogue Editor'),(1428,1329805,7,'Art Direction'),(1428,1335078,6,'Sound Effects Editor'),(1428,1377213,7,'Assistant Art Director'),(1428,1398123,6,'Sound Re-Recording Mixer'),(1428,1401122,7,'Property Master'),(1428,1403633,9,'Post Production Supervisor'),(1428,1431015,7,'Construction Coordinator'),(1428,1433719,6,'Sound Designer'),(1428,1520393,6,'Boom Operator'),(1428,1535727,8,'Hair Department Head'),(1428,1548694,6,'Sound Recordist'),(1428,1550832,6,'Production Sound Mixer'),(1428,1563899,6,'Boom Operator'),(1428,1564584,5,'Dialogue Editor'),(1428,1596321,6,'Foley Editor'),(1428,1606651,7,'Standby Painter'),(1428,1685556,2,'First Assistant Director'),(1428,1760138,9,'Special Effects Coordinator'),(1428,1836192,7,'Set Dresser'),(1428,1851741,7,'Set Decoration'),(1428,1851742,8,'Makeup Artist'),(1428,1851743,2,'Second Assistant Director'),(1428,1851744,7,'Assistant Property Master'),(1428,1851746,7,'Assistant Property Master'),(1428,1851751,9,'Special Effects Coordinator'),(562,1090,2,'Director'),(562,1091,3,'Producer'),(562,1093,3,'Producer'),(562,1097,3,'Casting'),(562,1099,5,'Editor'),(562,1726,4,'Screenplay'),(562,7671,4,'Screenplay'),(562,1993,3,'Associate Producer'),(562,2045,3,'Casting Associate'),(562,2209,1,'Director of Photography'),(562,7715,5,'Editor'),(562,7670,4,'Novel'),(562,7681,3,'Executive Producer'),(562,7713,3,'Producer'),(562,7713,3,'Unit Production Manager'),(562,7714,6,'Original Music Composer'),(562,7716,7,'Production Design'),(562,7717,7,'Art Direction'),(562,7718,7,'Set Decoration'),(562,7719,8,'Costume Design'),(562,12849,8,'Costume Supervisor'),(562,16177,6,'Foley'),(562,16179,9,'Visual Effects Editor'),(562,16652,7,'Assistant Art Director'),(562,21548,10,'Visual Effects Producer'),(562,61838,9,'Stunts'),(562,69129,9,'Stunts'),(562,91243,9,'Stunt Coordinator'),(562,91312,6,'Foley'),(562,118944,5,'Dialogue Editor'),(562,161787,9,'Stunts'),(562,554887,6,'Sound Effects Editor'),(562,949558,8,'Makeup Artist'),(562,1009842,1,'Camera Operator'),(562,1118402,9,'Special Effects Coordinator'),(562,1216735,8,'Hairstylist'),(562,1227173,6,'Foley'),(562,1231235,9,'Stunts'),(562,1316296,8,'Makeup Department Head'),(562,1332017,9,'Stunts'),(562,1335587,8,'Set Costumer'),(562,1338830,6,'Sound Re-Recording Mixer'),(562,1338832,6,'Sound Re-Recording Mixer'),(562,1378161,7,'Assistant Art Director'),(562,1391570,9,'Sound Recordist'),(562,1398855,6,'Sound Re-Recording Mixer'),(562,1410345,9,'Property Master'),(562,1411170,3,'Location Manager'),(562,1411293,1,'Still Photographer'),(562,1411521,9,'Sound Recordist'),(562,1412617,6,'ADR & Dubbing'),(562,1416581,6,'Sound Effects Editor'),(562,1422057,7,'Construction Coordinator'),(562,1423858,8,'Hairstylist'),(562,1423859,7,'Set Designer'),(562,1423860,7,'Set Designer'),(562,1423861,5,'Dialogue Editor'),(562,1423862,6,'Dolby Consultant'),(562,1423863,6,'Sound Effects Editor'),(562,1423864,9,'Visual Effects Art Director'),(562,1423865,1,'Camera Operator'),(562,1423866,1,'Camera Operator'),(562,1423867,1,'Still Photographer'),(562,1423868,11,'Gaffer'),(562,1423869,8,'Set Costumer'),(562,1423871,9,'Transportation Coordinator'),(562,1423873,9,'Picture Car Coordinator'),(562,1423874,3,'Location Manager'),(562,1423987,8,'Makeup Artist'),(562,1458533,6,'Supervising Sound Editor'),(562,1463843,9,'Picture Car Coordinator'),(562,1559493,10,'Visual Effects'),(562,1566391,9,'Transportation Captain'),(562,1576419,9,'Stunts'),(562,1632066,9,'Stunts'),(924,971,5,'Editor'),(924,1593,3,'Casting'),(924,2507,1,'Director of Photography'),(924,14999,4,'Screenplay'),(924,6045,7,'Production Design'),(924,9424,8,'Prosthetic Supervisor'),(924,9427,6,'Sound Effects Editor'),(924,9456,9,'Special Effects'),(924,13194,5,'Digital Intermediate'),(924,13551,8,'Costume Design'),(924,13621,3,'Executive Producer'),(924,14923,9,'Special Effects Coordinator'),(924,15000,3,'Producer'),(924,15217,2,'Director'),(924,15218,4,'Screenplay'),(924,15219,3,'Producer'),(924,15220,3,'Producer'),(924,15221,6,'Original Music Composer'),(924,15222,7,'Art Direction'),(924,15223,7,'Set Decoration'),(924,15224,3,'Unit Production Manager'),(924,15225,6,'Music Editor'),(924,15226,6,'Supervising Sound Editor'),(924,15227,9,'Visual Effects Editor'),(924,15229,9,'Stunt Coordinator'),(924,15230,9,'Stunts'),(924,50216,6,'Music'),(924,41587,3,'Executive Producer'),(924,44087,1,'Camera Operator'),(924,58846,3,'Executive Producer'),(924,59055,3,'ADR Voice Casting'),(924,139953,5,'Color Timer'),(924,994550,7,'Title Designer'),(924,1002652,10,'Visual Effects Supervisor'),(924,1012984,8,'Costume Supervisor'),(924,1035176,3,'Casting Assistant'),(924,1077782,6,'Foley'),(924,1146540,8,'Hairstylist'),(924,1167760,9,'CG Supervisor'),(924,1177336,1,'Steadicam Operator'),(924,1181767,9,'Makeup Effects'),(924,1337473,9,'Transportation Coordinator'),(924,1337666,8,'Set Costumer'),(924,1340919,2,'Script Supervisor'),(924,1364792,8,'Key Makeup Artist'),(924,1368864,6,'Sound mixer'),(924,1368878,9,'Choreographer'),(924,1368878,9,'Stunt Coordinator'),(924,1373428,6,'Musician'),(924,1390524,6,'Sound Editor'),(924,1394571,6,'ADR Editor'),(924,1399061,5,'Dialogue Editor'),(924,1399930,3,'Location Manager'),(924,1401286,9,'Property Master'),(924,1401292,10,'Visual Effects Producer'),(924,1408679,1,'Camera Operator'),(924,1408680,1,'Underwater Camera'),(924,1410568,9,'Sound Recordist'),(924,1415151,10,'Visual Effects'),(924,1415188,9,'Systems Administrators & Support'),(924,1418411,5,'First Assistant Editor'),(924,1419268,11,'Gaffer'),(924,1419269,11,'Rigging Gaffer'),(924,1425970,8,'Key Hair Stylist'),(924,1436502,7,'Set Dresser'),(924,1440737,3,'Casting Associate'),(924,1447601,6,'Assistant Sound Editor'),(924,1470640,3,'Co-Producer'),(924,1498167,9,'Second Unit'),(924,1518503,8,'Hair Department Head'),(924,1523591,1,'Key Grip'),(924,1526462,8,'Makeup Artist'),(924,1531896,9,'Armorer'),(924,1531900,7,'Construction Coordinator'),(924,1537718,3,'Production Coordinator'),(924,1538822,6,'Music Supervisor'),(924,1545438,9,'Post Production Supervisor'),(924,1546856,6,'ADR & Dubbing'),(924,1548529,6,'Production Sound Mixer'),(924,1548531,8,'Assistant Costume Designer'),(924,1548532,8,'Makeup Department Head'),(924,1548533,7,'Assistant Art Director'),(924,1548698,6,'Conductor'),(924,1551647,7,'Set Designer'),(924,1551648,1,'Additional Photography'),(924,1551649,1,'First Assistant Camera'),(924,1551650,9,'Carpenter'),(924,1551651,9,'Craft Service'),(924,1551652,9,'Driver'),(924,1551653,9,'Post Production Assistant'),(924,1551654,9,'Set Medic'),(924,1551655,9,'Set Production Assistant'),(924,1551657,9,'Technical Supervisor'),(924,1551658,9,'Utility Stunts'),(924,1551659,9,'Video Assist Operator'),(924,1551660,2,'Assistant Director'),(924,1551661,11,'Lighting Technician'),(924,1551662,3,'Production Accountant'),(924,1551663,3,'Publicist'),(924,1551664,6,'Boom Operator'),(924,1551665,6,'First Assistant Sound Editor'),(924,1551666,6,'Orchestrator'),(924,1551667,4,'Storyboard'),(924,1551668,7,'Set Decoration Buyer'),(924,1551675,3,'Researcher'),(924,1551676,10,'Pyrotechnic Supervisor'),(924,1652229,10,'3D Artist'),(924,1667948,6,'Foley Editor'),(924,1733142,5,'Negative Cutter'),(924,1733231,7,'Assistant Property Master'),(924,1733232,1,'Dolly Grip'),(924,1733234,1,'Grip'),(924,1733236,9,'Marine Coordinator'),(924,1733237,9,'Pilot'),(924,1733238,2,'First Assistant Director'),(924,1733240,2,'Second Assistant Director'),(924,1733241,2,'Third Assistant Director'),(924,1733243,3,'Assistant Production Coordinator'),(924,1733247,10,'3D Animator'),(924,1733248,10,'Visual Effects Designer'),(2018,5344,3,'Executive Producer'),(2018,11506,1,'Director of Photography'),(2018,11625,5,'Editor'),(2018,12568,7,'Set Designer'),(2018,15427,7,'Production Design'),(2018,15306,3,'Producer'),(2018,15307,3,'Producer'),(2018,19679,3,'Casting'),(2018,19680,3,'Casting'),(2018,20739,2,'Director'),(2018,20740,4,'Screenplay'),(2018,20741,4,'Screenplay'),(2018,20742,3,'Producer'),(2018,20743,3,'Producer'),(2018,20744,6,'Original Music Composer'),(2018,20744,6,'Songs'),(2018,20745,8,'Costume Design'),(9428,887,3,'Executive Producer'),(9428,887,4,'Writer'),(9428,1809,5,'Editor'),(9428,5779,7,'Production Design'),(9428,2997,3,'Producer'),(9428,3177,6,'Sound Re-Recording Mixer'),(9428,3264,3,'Executive Producer'),(9428,5655,2,'Director'),(9428,5655,3,'Producer'),(9428,5655,4,'Writer'),(9428,5664,3,'Producer'),(9428,5666,6,'Original Music Composer'),(9428,5667,1,'Director of Photography'),(9428,5669,3,'Casting'),(9428,11113,1,'Camera Operator'),(9428,15432,6,'Supervising Sound Editor'),(9428,15433,6,'Sound Effects Editor'),(9428,19285,8,'Costume Design'),(9428,52161,6,'Music Supervisor'),(9428,72964,3,'Unit Production Manager'),(9428,1018480,7,'Art Direction'),(9428,1332423,1,'Still Photographer'),(9428,1337464,6,'Sound Re-Recording Mixer'),(9428,1375099,6,'Sound Re-Recording Mixer'),(9428,1399970,6,'Sound Effects Editor'),(9428,1410954,6,'Sound mixer'),(9428,1414532,2,'Script Supervisor'),(9428,1427381,6,'Music Editor'),(9428,1445479,5,'Dialogue Editor'),(9428,1446687,1,'Additional Camera'),(9428,1531576,5,'Dialogue Editor'),(9428,1550727,9,'Transportation Co-Captain'),(9428,1552357,9,'Special Effects Coordinator'),(9428,1561481,9,'Transportation Captain'),(9428,1561482,6,'Sound Re-Recording Mixer'),(2832,37,6,'Original Music Composer'),(2832,366,2,'Director'),(2832,409,3,'Producer'),(2832,432,1,'Director of Photography'),(2832,434,3,'Casting'),(2832,436,3,'Casting'),(2832,11079,7,'Set Decoration'),(2832,5670,7,'Production Design'),(2832,10575,7,'Art Direction'),(2832,6051,5,'Editor'),(2832,23872,8,'Makeup Artist'),(2832,28399,4,'Writer'),(2832,28401,3,'Executive Producer'),(2832,28402,3,'Associate Producer'),(2832,32797,8,'Costume Design'),(2832,1032536,10,'Visual Effects Supervisor'),(2832,1169459,10,'Visual Effects Producer'),(2832,1253687,8,'Set Costumer'),(2832,1316003,8,'Makeup Department Head'),(2832,1316296,8,'Makeup Department Head'),(2832,1378752,7,'Art Department Coordinator'),(2832,1395255,6,'Sound Designer'),(2832,1400540,2,'Script Supervisor'),(2832,1404724,10,'Visual Effects Producer'),(2832,1412208,8,'Costume Supervisor'),(2832,1422412,9,'Special Effects Coordinator'),(2832,1531870,8,'Hairstylist'),(2832,1532195,8,'Key Hair Stylist'),(699,9856,4,'Characters'),(699,9861,3,'Producer'),(699,9864,6,'Original Music Composer'),(699,8524,7,'Production Design'),(699,8934,1,'Director of Photography'),(699,9858,4,'Screenplay'),(699,10179,2,'Director'),(699,10340,3,'Casting'),(699,10493,3,'Producer'),(699,10494,6,'Original Music Composer'),(699,10495,5,'Editor'),(699,10496,3,'Casting'),(699,10497,7,'Art Direction'),(699,10498,7,'Set Decoration'),(699,10499,8,'Costume Design'),(699,69678,4,'Screenplay'),(699,69678,3,'Executive Producer'),(9778,37,6,'Music'),(9778,7414,5,'Editor'),(9778,4023,3,'Casting'),(9778,3192,3,'Casting'),(9778,5328,3,'Casting'),(9778,9004,7,'Art Direction'),(9778,15306,3,'Producer'),(9778,15307,3,'Executive Producer'),(9778,19679,3,'Casting'),(9778,19680,3,'Casting'),(9778,24256,1,'Director of Photography'),(9778,36615,3,'Producer'),(9778,36804,2,'Director'),(9778,36808,7,'Production Design'),(9778,46589,8,'Costume Design'),(9778,58789,4,'Screenplay'),(9778,60284,8,'Costume Design'),(9778,558227,8,'Makeup Artist'),(9778,1320911,8,'Makeup Department Head'),(9778,1405321,8,'Makeup Artist'),(9778,1415080,8,'Makeup Artist'),(9778,1425973,7,'Art Department Coordinator'),(9778,1456487,8,'Hairstylist'),(9778,1468618,8,'Hairstylist'),(9778,1471015,7,'Art Department Coordinator'),(9778,1484538,2,'Script Supervisor'),(9778,1524659,8,'Hairstylist'),(8831,4140,6,'Original Music Composer'),(8831,7623,3,'Producer'),(8831,11410,5,'Editor'),(8831,40832,3,'Executive Producer'),(8831,10936,7,'Production Design'),(8831,18885,7,'Art Direction'),(8831,20249,4,'Screenplay'),(8831,33284,8,'Costume Design'),(8831,37710,2,'Director'),(8831,37710,1,'Director of Photography'),(8831,56032,3,'Producer'),(8831,91366,3,'Casting'),(8831,1322129,7,'Set Decoration'),(8831,1322130,8,'Costume Supervisor'),(8831,1384398,2,'Script Supervisor'),(9398,546,3,'Casting'),(9398,2043,4,'Storyboard'),(9398,2997,3,'Producer'),(9398,4183,3,'Unit Production Manager'),(9398,4183,3,'Co-Producer'),(9398,4190,8,'Costume Design'),(9398,6489,6,'Original Music Composer'),(9398,6738,3,'Associate Producer'),(9398,7399,4,'Screenplay'),(9398,7399,2,'Director'),(9398,7399,3,'Producer'),(9398,7399,4,'Characters'),(9398,10390,2,'Assistant Director'),(9398,14194,10,'Visual Effects Supervisor'),(9398,14377,3,'Casting'),(9398,14376,5,'Editor'),(9398,13596,6,'Sound Mixer'),(9398,16498,9,'Special Effects Coordinator'),(9398,17871,4,'Screenplay'),(9398,21148,7,'Art Direction'),(9398,22302,3,'Producer'),(9398,32490,8,'Hair Designer'),(9398,52161,6,'Music Supervisor'),(9398,46943,3,'Casting'),(9398,54164,1,'Director of Photography'),(9398,58257,6,'Orchestrator'),(9398,57603,4,'Screenplay'),(9398,57603,4,'Characters'),(9398,57604,3,'Executive Producer'),(9398,11303,3,'Executive Producer'),(9398,57605,3,'Executive Producer'),(9398,61108,3,'Casting Associate'),(9398,62517,7,'Production Design'),(9398,92347,7,'Greensman'),(9398,91092,6,'Production Sound Mixer'),(9398,146143,9,'Stunt Coordinator'),(9398,229801,8,'Makeup Artist'),(9398,1008052,6,'Music Editor'),(9398,1177850,1,'Still Photographer'),(9398,1192700,6,'Music Supervisor'),(9398,1269611,9,'Stand In'),(9398,1311133,8,'Assistant Costume Designer'),(9398,1344264,6,'Supervising Sound Editor'),(9398,1360108,10,'Digital Compositors'),(9398,1378221,7,'Art Department Coordinator'),(9398,1386317,9,'Stunts'),(9398,1393455,2,'Script Supervisor'),(9398,1395330,7,'Assistant Art Director'),(9398,1400375,1,'Helicopter Camera'),(9398,1403440,6,'Sound Editor'),(9398,1404838,5,'Dialogue Editor'),(9398,1406053,9,'Video Assist Operator'),(9398,1409821,8,'Makeup Designer'),(9398,1412242,6,'Dolby Consultant'),(9398,1413452,9,'Sound Recordist'),(9398,1420160,1,'Steadicam Operator'),(9398,1425980,9,'Sequence Supervisor'),(9398,1433348,3,'Location Manager'),(9398,1442142,10,'Visual Effects Coordinator'),(9398,1460019,1,'Camera Operator'),(9398,1460739,8,'Hairstylist'),(9398,1470185,8,'Costume Supervisor'),(9398,1472426,1,'Additional Photography'),(9398,1535098,9,'Additional Music'),(9398,1535413,7,'Construction Coordinator'),(9398,1537540,10,'Visual Effects Producer'),(9398,1550197,1,'Additional Camera'),(9398,1550728,9,'Unit Publicist'),(9398,1562248,5,'Color Timer'),(9398,1605411,9,'Systems Administrators & Support'),(9398,1625919,9,'Security'),(9398,1701766,3,'Production Coordinator'),(9398,1704229,7,'Set Decoration'),(9398,1704231,7,'Location Scout'),(9398,1704232,7,'Set Designer'),(9398,1704233,1,'First Assistant Camera'),(9398,1704234,8,'Set Costumer'),(9398,1704235,8,'Set Dressing Artist'),(9398,1704236,8,'Wigmaker'),(9398,1704237,9,'Carpenter'),(9398,1704238,9,'Choreographer'),(9398,1704239,9,'Craft Service'),(9398,1704240,9,'Loader'),(9398,1704241,9,'Property Master'),(9398,1704242,9,'Scenic Artist'),(9398,1704243,9,'Set Medic'),(9398,1704251,9,'Transportation Co-Captain'),(9398,1704252,9,'Transportation Coordinator'),(9398,1704253,11,'Electrician'),(9398,1704254,11,'Rigging Grip'),(9398,1704255,3,'Production Accountant'),(9398,1704257,6,'Boom Operator'),(9398,1704258,6,'First Assistant Sound Editor'),(9398,1704259,6,'Foley'),(9398,1704260,6,'Sound Effects Editor'),(3638,1296,3,'Executive Producer'),(3638,1551,6,'Music'),(3638,7262,1,'Director of Photography'),(3638,18903,4,'Original Story'),(3638,33433,2,'Director'),(3638,33434,4,'Screenplay'),(3638,33435,3,'Producer'),(3638,33436,3,'Producer'),(3638,33437,3,'Executive Producer'),(3638,33438,5,'Editor'),(3638,33439,8,'Costume Design'),(4348,474,3,'Casting'),(4348,2236,3,'Producer'),(4348,2238,3,'Producer'),(4348,11269,6,'Original Music Composer'),(4348,21378,3,'Producer'),(4348,23543,1,'Director of Photography'),(4348,32982,4,'Novel'),(4348,36588,2,'Director'),(4348,36590,5,'Editor'),(4348,36591,8,'Costume Design'),(4348,36652,4,'Screenplay'),(4348,36656,7,'Production Design'),(4348,36657,7,'Art Direction'),(4348,36658,7,'Set Decoration'),(4348,1173302,7,'Supervising Art Director'),(4348,1319120,8,'Costume Supervisor'),(4348,1326460,7,'Art Direction'),(4348,1376808,2,'Script Supervisor'),(4348,1430074,8,'Hairstylist'),(4348,1465667,8,'Hairstylist'),(78,473,1,'Additional Photography'),(78,578,2,'Director'),(78,581,3,'Producer'),(78,584,4,'Novel'),(78,584,9,'Thanks'),(78,583,4,'Screenplay'),(78,594,1,'Director of Photography'),(78,595,6,'Original Music Composer'),(78,596,7,'Production Design'),(78,597,3,'Casting'),(78,598,3,'Casting'),(78,599,3,'Casting'),(78,600,5,'Editor'),(78,601,7,'Art Direction'),(78,602,7,'Set Decoration'),(78,603,7,'Set Decoration'),(78,605,8,'Costume Design'),(78,606,8,'Costume Design'),(78,1590,1,'Additional Photography'),(78,4712,7,'Set Decoration'),(78,7191,4,'Screenplay'),(78,50237,3,'Production Manager'),(78,55244,3,'Publicist'),(78,60283,7,'Production Illustrator'),(78,91875,6,'Sound mixer'),(78,999716,9,'Stunt Coordinator'),(78,1390535,1,'Still Photographer'),(78,1404757,7,'Assistant Art Director'),(78,1404758,7,'Construction Coordinator'),(78,1404759,9,'Property Master'),(78,1404760,7,'Production Illustrator'),(78,1404761,7,'Production Illustrator'),(78,1404763,5,'Dialogue Editor'),(78,1404764,6,'Sound Editor'),(78,1404765,1,'Camera Operator'),(78,1404766,1,'Camera Operator'),(78,1404767,1,'Camera Operator'),(2001,73421,3,'Producer'),(2001,1400,6,'Original Music Composer'),(2001,5669,3,'Casting'),(2001,6468,3,'Producer'),(2001,13240,3,'Producer'),(2001,17453,1,'Director of Photography'),(2001,20561,4,'Screenplay'),(2001,20561,2,'Director'),(2001,20567,3,'Producer'),(2001,20568,5,'Editor'),(2001,20569,7,'Production Design'),(2001,20570,7,'Set Decoration'),(2001,31515,3,'Executive Producer'),(2001,31520,3,'Executive Producer'),(2001,60187,3,'Executive Producer'),(2001,60187,3,'Unit Production Manager'),(2001,80788,3,'Co-Producer'),(2001,957566,3,'Production Supervisor'),(2001,1017377,3,'Casting Associate'),(2001,1123133,7,'Location Scout'),(2001,1319040,3,'Co-Producer'),(2001,1389555,7,'Art Direction'),(2001,1395687,2,'Script Supervisor'),(2001,1400835,2,'Script Supervisor'),(2001,1471022,8,'Costume Design'),(2001,1697586,9,'Post Production Supervisor'),(2001,1738174,3,'Production Coordinator'),(2001,1738175,3,'Associate Producer'),(2001,1781735,9,'Post Production Supervisor'),(2001,1781736,7,'Location Scout'),(2001,1781737,3,'Location Manager'),(9746,151,1,'Director of Photography'),(9746,1032,2,'Director'),(9746,1551,6,'Original Music Composer'),(9746,2242,3,'Casting'),(9746,2366,7,'Production Design'),(9746,2366,8,'Costume Design'),(9746,3661,5,'Editor'),(9746,7170,3,'Producer'),(9746,9964,4,'Screenplay'),(9746,9964,3,'Co-Producer'),(9746,9026,7,'Set Decoration'),(9746,34336,3,'Executive Producer'),(9746,92391,5,'Dialogue Editor'),(9746,142165,6,'Music Editor'),(9746,1333223,6,'Supervising Sound Editor'),(9746,1400072,6,'Sound Re-Recording Mixer'),(9746,1408354,1,'Steadicam Operator'),(9746,1417021,2,'Script Supervisor'),(9746,1555162,6,'Sound mixer'),(700,2289,6,'Original Music Composer'),(700,9856,4,'Characters'),(700,9861,3,'Producer'),(700,8524,7,'Production Design'),(700,8934,1,'Director of Photography'),(700,9858,4,'Screenplay'),(700,10179,2,'Director'),(700,10198,8,'Costume Design'),(700,10493,3,'Producer'),(700,10496,3,'Casting'),(700,10497,7,'Art Direction'),(700,10515,4,'Screenplay'),(700,10612,5,'Editor'),(700,10613,5,'Editor'),(700,10614,7,'Set Decoration'),(700,10666,2,'Assistant Director'),(700,69678,4,'Screenplay'),(700,69678,3,'Executive Producer'),(4964,3184,3,'Producer'),(4964,6389,1,'Director of Photography'),(4964,6742,5,'Editor'),(4964,19274,3,'Executive Producer'),(4964,38022,7,'Art Direction'),(4964,41039,2,'Director'),(4964,41039,4,'Screenplay'),(4964,41039,3,'Producer'),(4964,41076,3,'Producer'),(4964,41077,6,'Original Music Composer'),(4964,41079,5,'Editor'),(4964,41080,3,'Casting'),(4964,41081,7,'Production Design'),(4964,41082,7,'Set Decoration'),(4964,41084,8,'Costume Design'),(4964,54734,3,'Executive Producer'),(4964,84848,6,'Original Music Composer'),(1259,1551,6,'Original Music Composer'),(1259,2635,3,'Casting'),(1259,2997,3,'Producer'),(1259,6491,5,'Editor'),(1259,6492,5,'Editor'),(1259,8448,3,'Producer'),(1259,8969,1,'Director of Photography'),(1259,9022,3,'Executive Producer'),(1259,36693,2,'Director'),(1259,36694,3,'Casting'),(1259,36695,7,'Production Design'),(1259,36695,8,'Costume Design'),(1259,36696,7,'Set Decoration'),(1259,23606,4,'Screenplay'),(1259,1171372,4,'Novel'),(5125,322,3,'Producer'),(5125,647,1,'Director of Photography'),(5125,6410,3,'Casting'),(5125,5392,8,'Costume Design'),(5125,6514,2,'Script Supervisor'),(5125,19156,3,'Casting'),(5125,8646,7,'Supervising Art Director'),(5125,13079,2,'Director'),(5125,13082,6,'Original Music Composer'),(5125,13083,6,'Original Music Composer'),(5125,13085,5,'Editor'),(5125,16467,7,'Supervising Art Director'),(5125,19284,7,'Production Design'),(5125,32491,8,'Hairstylist'),(5125,41326,3,'Producer'),(5125,41327,3,'Producer'),(5125,41328,3,'Executive Producer'),(5125,41329,3,'Producer'),(5125,41330,3,'Executive Producer'),(5125,41331,3,'Producer'),(5125,11000,3,'Executive Producer'),(5125,41332,3,'Producer'),(5125,41334,7,'Art Direction'),(5125,41335,7,'Art Direction'),(5125,41336,7,'Set Designer'),(5125,41337,8,'Hairstylist'),(5125,55049,3,'Casting'),(5125,53346,3,'Casting'),(5125,92329,8,'Makeup Artist'),(5125,1196742,4,'Writer'),(5125,1355529,7,'Art Department Coordinator'),(5125,1413224,8,'Hairstylist'),(5125,1414091,8,'Makeup Artist'),(5125,1486841,8,'Hairstylist'),(5125,1486842,8,'Hairstylist'),(5125,1486843,8,'Makeup Artist'),(174,1788,4,'Screenplay'),(174,1788,2,'Director'),(174,2025,7,'Art Direction'),(174,2083,7,'Production Design'),(174,2093,3,'Producer'),(174,2095,3,'Producer'),(174,2104,4,'Screenplay'),(174,2116,1,'Director of Photography'),(174,2118,7,'Set Decoration'),(174,2119,8,'Costume Design'),(174,2120,6,'Original Music Composer'),(174,2121,3,'Casting'),(174,2122,5,'Editor'),(174,2123,5,'Editor'),(9583,2952,3,'Casting'),(9583,437,7,'Production Design'),(9583,1483,6,'Original Music Composer'),(9583,1527,1,'Director of Photography'),(9583,4868,5,'Editor'),(9583,7435,6,'Original Music Composer'),(9583,7717,7,'Art Direction'),(9583,11652,3,'Executive Producer'),(9583,17397,2,'Director'),(9583,17397,4,'Screenplay'),(9583,18350,3,'Producer'),(9583,28780,4,'Adaptation'),(9583,73931,3,'Executive Producer'),(9583,11005,7,'Set Decoration'),(9583,57634,3,'Executive Producer'),(9583,58069,4,'Novel'),(9583,58070,3,'Producer'),(9583,58071,3,'Executive Producer'),(9583,543194,8,'Costume Design'),(9583,1469343,2,'Script Supervisor'),(9583,1469344,9,'Unit Publicist'),(9437,2241,5,'Editor'),(9437,3965,3,'Casting'),(9437,4140,6,'Original Music Composer'),(9437,5322,3,'Producer'),(9437,5501,2,'Director'),(9437,5508,7,'Production Design'),(9437,7690,3,'Executive Producer'),(9437,21271,5,'Editor'),(9437,21022,4,'Novel'),(9437,21024,3,'Producer'),(9437,58002,4,'Screenplay'),(9437,58292,1,'Director of Photography'),(9437,57642,5,'Editor'),(9437,69668,3,'Producer'),(9437,958772,3,'Casting'),(525,603,7,'Set Decoration'),(525,707,4,'Author'),(525,1261,7,'Set Decoration'),(525,4610,2,'Director'),(525,4610,4,'Author'),(525,7181,3,'Producer'),(525,7182,6,'Original Music Composer'),(525,7183,1,'Director of Photography'),(525,7184,5,'Editor'),(525,7185,3,'Casting'),(525,7186,7,'Production Design'),(525,7211,8,'Costume Design'),(525,8859,3,'Executive Producer'),(525,55226,2,'Script Supervisor'),(525,55228,6,'Boom Operator'),(525,55232,1,'Camera Operator'),(525,122106,9,'Special Effects'),(525,122106,9,'Stunt Coordinator'),(525,122131,3,'Production Supervisor'),(525,122132,1,'Camera Operator'),(525,122133,1,'Camera Operator'),(245,380,3,'Producer'),(245,1251,1,'Director of Photography'),(245,1253,7,'Production Design'),(245,2236,3,'Producer'),(245,2238,3,'Producer'),(245,3225,4,'Screenplay'),(245,3225,4,'Novel'),(245,3288,4,'Screenplay'),(245,3288,2,'Director'),(245,3289,4,'Screenplay'),(245,3289,2,'Director'),(245,3290,4,'Screenplay'),(245,3304,3,'Producer'),(245,3305,3,'Producer'),(245,3310,5,'Editor'),(245,3311,3,'Casting'),(245,3314,6,'Original Music Composer'),(9825,434,3,'Casting'),(9825,436,3,'Casting Associate'),(9825,9039,6,'Music'),(9825,14193,10,'Special Effects Supervisor'),(9825,10766,5,'Editor'),(9825,27160,8,'Costume Design'),(9825,35797,7,'Art Direction'),(9825,44993,5,'Editor'),(9825,10858,7,'Set Decoration'),(9825,56324,1,'Director of Photography'),(9825,113208,9,'Stunts'),(9825,58712,2,'Director'),(9825,59649,3,'Producer'),(9825,59650,4,'Screenplay'),(9825,59650,3,'Producer'),(9825,105791,9,'Stunts'),(9825,229167,9,'Stunts'),(9825,229167,9,'Stunt Coordinator'),(9825,957310,7,'Production Design'),(9825,994754,9,'Stunts'),(9825,1075026,9,'Special Effects Coordinator'),(9825,1075026,9,'Stunts'),(9825,1232945,9,'Stunts'),(9825,1233162,9,'Stunts'),(9825,1248077,9,'Stunts'),(9825,1378728,2,'Script Supervisor'),(9825,1404306,8,'Hairstylist'),(9825,1417685,9,'Stunts'),(9825,1440898,8,'Makeup Department Head'),(9825,1441266,8,'Set Costumer'),(9825,1531563,7,'Art Department Coordinator'),(9825,1531564,8,'Assistant Costume Designer'),(9825,1546584,7,'Painter'),(9825,1868929,9,'Stunts'),(9825,1868930,9,'Stunts'),(9825,1868931,9,'Stunts'),(9825,1868932,9,'Stunts'),(9825,1868934,9,'Stunts'),(186,2291,2,'Director'),(186,3965,3,'Casting'),(186,6891,3,'Producer'),(186,11958,1,'Director of Photography'),(186,20305,3,'Producer'),(186,20305,6,'Original Music Composer'),(186,20224,3,'Producer'),(186,36134,3,'Producer'),(186,38523,7,'Production Design'),(186,45055,5,'Editor'),(186,56171,3,'Producer'),(186,207213,3,'Producer'),(186,959883,3,'Producer'),(186,961452,8,'Costume Design'),(186,1034748,3,'Casting'),(186,1222279,4,'Screenplay'),(9549,3274,5,'Editor'),(9549,8339,7,'Set Decoration'),(9549,648,4,'Screenplay'),(9549,648,2,'Director'),(9549,1047,5,'Editor'),(9549,1263,3,'Casting'),(9549,4506,3,'Executive Producer'),(9549,8432,9,'Stunt Coordinator'),(9549,8750,1,'Director of Photography'),(9549,10494,6,'Original Music Composer'),(9549,11472,3,'Producer'),(9549,16514,3,'Producer'),(9549,21244,5,'Editor'),(9549,26988,10,'Special Effects Supervisor'),(9549,32403,7,'Production Design'),(9549,34484,5,'Editor'),(9549,57949,4,'Novel'),(9549,57950,5,'Editor'),(9549,74792,1,'Steadicam Operator'),(9549,960971,7,'Set Decoration'),(9549,1323719,1,'Steadicam Operator'),(9549,1487530,2,'Script Supervisor'),(9549,1635458,6,'Production Sound Mixer'),(2666,120,1,'Director of Photography'),(2666,859,3,'Casting'),(2666,3893,4,'Screenplay'),(2666,3964,7,'Production Design'),(2666,4767,3,'Executive Producer'),(2666,7020,6,'Original Music Composer'),(2666,8299,3,'Producer'),(2666,8299,10,'Visual Effects Supervisor'),(2666,9342,3,'Casting'),(2666,9345,7,'Art Direction'),(2666,9357,9,'Stunt Coordinator'),(2666,9421,9,'Property Master'),(2666,11266,2,'Assistant Director'),(2666,15842,5,'Editor'),(2666,21085,2,'Director'),(2666,21085,4,'Screenplay'),(2666,21085,3,'Producer'),(2666,21085,4,'Story'),(2666,23649,4,'Screenplay'),(2666,27749,7,'Production Design'),(2666,27750,8,'Costume Design'),(2666,29419,3,'Casting'),(2666,56786,1,'Camera Operator'),(2666,57857,3,'Executive Producer'),(2666,62484,7,'Art Direction'),(2666,75148,6,'Sound Effects Editor'),(2666,88115,3,'Line Producer'),(2666,961143,8,'Hairstylist'),(2666,961143,8,'Makeup Artist'),(2666,1292186,6,'Sound Re-Recording Mixer'),(2666,1321694,8,'Costume Supervisor'),(2666,1391525,6,'Foley'),(2666,1392667,7,'Construction Coordinator'),(2666,1392668,7,'Art Department Coordinator'),(2666,1392669,7,'Assistant Art Director'),(2666,1392670,7,'Assistant Art Director'),(2666,1392672,7,'Sculptor'),(2666,1392673,7,'Sculptor'),(2666,1392674,7,'Sculptor'),(2666,1392675,7,'Sculptor'),(2666,1392676,7,'Sculptor'),(2666,1392677,7,'Sculptor'),(2666,1392681,7,'Set Designer'),(2666,1392682,7,'Set Designer'),(2666,1392684,7,'Set Designer'),(2666,1392692,7,'Set Designer'),(2666,1392698,6,'Foley'),(2666,1392699,5,'Dialogue Editor'),(2666,1392700,6,'Sound Re-Recording Mixer'),(2666,1392702,6,'Sound Re-Recording Mixer'),(2666,1392704,10,'Visual Effects Supervisor'),(2666,1392704,10,'Visual Effects Producer'),(2666,1392706,10,'Visual Effects Supervisor'),(2666,1392706,10,'Visual Effects Producer'),(2666,1392717,9,'Stunt Coordinator'),(2666,1392718,1,'Still Photographer'),(2666,1392719,1,'Steadicam Operator'),(2666,1392719,1,'Camera Operator'),(2666,1392722,11,'Gaffer'),(2666,1392727,3,'Casting'),(2666,1392736,6,'Music Editor'),(2666,1392737,2,'Script Supervisor'),(2666,1416918,8,'Hairstylist'),(2666,1416919,8,'Hairstylist'),(2666,1416920,6,'Sound Effects Editor'),(8080,1044,1,'Director of Photography'),(8080,3965,3,'Casting'),(8080,5167,7,'Production Design'),(8080,6377,6,'Music'),(8080,9183,3,'Producer'),(8080,17279,2,'Director'),(8080,17886,5,'Editor'),(8080,11011,4,'Screenplay'),(8080,21807,4,'Screenplay'),(8080,53785,3,'Producer'),(8080,67810,5,'Editor'),(8080,1034748,3,'Casting'),(8080,1409284,2,'Script Supervisor'),(5126,736,2,'Director'),(5126,1112,7,'Production Design'),(5126,5667,1,'Director of Photography'),(5126,12970,5,'Editor'),(5126,13596,3,'Producer'),(5126,40384,6,'Music'),(5126,17162,3,'Producer'),(5126,41319,4,'Screenplay'),(5126,41321,4,'Screenplay'),(5126,41323,3,'Producer'),(5126,41324,8,'Costume Design'),(1613,15732,7,'Production Design'),(1613,16363,3,'Casting'),(1613,17268,2,'Director'),(1613,29686,4,'Screenplay'),(1613,29687,3,'Producer'),(1613,29688,3,'Producer'),(1613,29689,3,'Producer'),(1613,29691,6,'Original Music Composer'),(1613,29692,1,'Director of Photography'),(1613,29693,5,'Editor'),(1613,29694,8,'Costume Design'),(1613,29695,7,'Set Decoration'),(1613,29696,7,'Set Decoration'),(1613,32487,8,'Hairstylist'),(1613,67202,7,'Art Direction'),(1613,102343,8,'Makeup Artist'),(1613,1337394,7,'Art Direction'),(1613,1340919,2,'Script Supervisor'),(1613,1376048,7,'Supervising Art Director'),(1613,1405805,9,'Unit Publicist'),(1613,1407721,8,'Wigmaker'),(8944,380,3,'Producer'),(8944,1254,4,'Author'),(8944,1254,4,'Writer'),(8944,1254,3,'Producer'),(8944,3305,3,'Producer'),(8944,8246,2,'Director'),(8944,8246,3,'Producer'),(8944,8911,3,'Producer'),(8944,15017,8,'Makeup Department Head'),(8944,19113,1,'Director of Photography'),(8944,31515,3,'Producer'),(8944,31520,3,'Producer'),(8944,53757,3,'Producer'),(8944,55177,6,'Music'),(6957,4495,4,'Screenplay'),(6957,29216,9,'Associate Choreographer'),(6957,41039,4,'Screenplay'),(6957,41039,2,'Director'),(6957,41039,3,'Producer'),(6957,41079,5,'Editor'),(6957,53012,6,'Original Music Composer'),(1934,372,4,'Screenplay'),(1934,469,6,'Original Music Composer'),(1934,1307,3,'Executive Producer'),(1934,59839,3,'Producer'),(1934,5489,3,'Casting'),(1934,9181,3,'Producer'),(1934,9027,8,'Costume Design'),(1934,10788,7,'Art Direction'),(1934,11460,7,'Set Decoration'),(1934,18844,2,'Director'),(1934,20061,4,'Screenplay'),(1934,20061,3,'Producer'),(1934,20062,3,'Producer'),(1934,20063,3,'Producer'),(1934,20064,3,'Executive Producer'),(1934,20065,1,'Director of Photography'),(1934,20066,5,'Editor'),(951,339,3,'Producer'),(951,903,7,'Set Designer'),(951,1044,1,'Director of Photography'),(951,5709,7,'Production Design'),(951,7068,5,'Editor'),(951,7068,3,'Associate Producer'),(951,7185,3,'Casting'),(951,8858,2,'Director'),(951,8858,3,'Producer'),(951,8860,3,'Executive Producer'),(951,9255,8,'Costume Design'),(951,10548,5,'Editor'),(951,11375,7,'Set Decoration'),(951,14712,6,'Original Music Composer'),(951,14350,7,'Art Direction'),(951,14709,4,'Author'),(951,14709,4,'Screenplay'),(951,14710,4,'Screenplay'),(951,14711,4,'Screenplay'),(951,14713,8,'Makeup Artist'),(951,14714,8,'Hairstylist'),(951,14715,3,'Unit Production Manager'),(951,14715,3,'Associate Producer'),(951,14716,6,'Music Editor'),(951,14717,6,'Supervising Sound Editor'),(951,14719,9,'Special Effects'),(951,14720,9,'Stunts'),(951,57601,3,'Executive Producer'),(951,61208,3,'Location Manager'),(951,1139092,3,'Location Manager'),(951,1171097,7,'Set Designer'),(951,1200171,3,'Casting Associate'),(951,1371069,2,'Script Supervisor'),(951,1429244,7,'Set Designer'),(951,1785310,3,'Production Coordinator'),(9454,1113,3,'Casting'),(9454,1528,6,'Music'),(9454,3311,3,'Casting'),(9454,5334,8,'Makeup Artist'),(9454,6340,4,'Screenplay'),(9454,8846,1,'Director of Photography'),(9454,11297,8,'Key Hair Stylist'),(9454,17164,5,'Editor'),(9454,17166,8,'Costume Design'),(9454,17167,4,'Screenplay'),(9454,17167,2,'Director'),(9454,17167,3,'Producer'),(9454,32985,7,'Production Design'),(9454,44217,4,'Novel'),(9454,56671,3,'Producer'),(9454,58011,4,'Screenplay'),(9454,58013,3,'Producer'),(9454,71579,7,'Art Direction'),(9454,117226,7,'Property Master'),(9454,157948,6,'ADR Editor'),(9454,1235306,3,'Production Coordinator'),(9454,1322137,8,'Wardrobe Supervisor'),(9454,1324126,7,'Art Direction'),(9454,1327762,7,'Set Decoration'),(9454,1335045,6,'Music Editor'),(9454,1335543,7,'Greensman'),(9454,1389547,9,'Dialect Coach'),(9454,1390372,1,'Camera Operator'),(9454,1402919,9,'Stunt Coordinator'),(9454,1405239,1,'Camera Operator'),(9454,1414090,8,'Key Makeup Artist'),(9454,1414091,8,'Makeup Artist'),(9454,1422795,8,'Makeup Artist'),(9454,1424935,5,'Dialogue Editor'),(9454,1445867,8,'Hairstylist'),(9454,1551468,7,'Art Direction'),(9454,1605169,8,'Hairstylist'),(9454,1689556,1,'Still Photographer'),(9454,1712004,8,'Makeup Artist'),(9454,1732756,8,'Hairstylist'),(9454,1772338,6,'Foley Editor'),(9454,1815292,6,'Supervising Sound Editor'),(9454,1817211,2,'First Assistant Director'),(9454,1848093,8,'Makeup Artist'),(9454,1848094,8,'Makeup Artist'),(9454,1848105,1,'Steadicam Operator'),(2055,3718,3,'Producer'),(2055,1269,2,'Director'),(2055,1269,3,'Producer'),(2055,2359,3,'Producer'),(2055,5362,3,'Casting'),(2055,5363,3,'Casting'),(2055,6044,3,'Casting'),(2055,7714,6,'Original Music Composer'),(2055,7793,8,'Costume Design'),(2055,21114,4,'Novel'),(2055,21115,4,'Writer'),(2055,21118,1,'Director of Photography'),(2055,21119,5,'Editor'),(2055,21120,5,'Editor'),(2055,21122,6,'Music Editor'),(2055,435006,3,'Casting'),(1551,1213,6,'Original Music Composer'),(1551,1262,3,'Casting'),(1551,2209,1,'Director of Photography'),(1551,2997,3,'Executive Producer'),(1551,3392,3,'Producer'),(1551,4713,8,'Costume Design'),(1551,8706,7,'Set Decoration'),(1551,5572,2,'Director'),(1551,8708,6,'Supervising Sound Editor'),(1551,9971,6,'Supervising Sound Editor'),(1551,8747,3,'Unit Production Manager'),(1551,14339,5,'Editor'),(1551,16737,6,'Music Editor'),(1551,56973,3,'Executive Producer'),(1551,56973,4,'Writer'),(1551,58183,3,'Executive Producer'),(1551,71339,3,'Producer'),(1551,406204,8,'Makeup Artist'),(1551,961533,7,'Production Design'),(1551,1344278,2,'Script Supervisor'),(1551,1400741,8,'Hairstylist'),(1551,1536514,6,'Music Supervisor'),(1551,1536528,3,'Production Coordinator'),(1551,1536529,9,'Stunt Coordinator'),(5902,243,1,'Director of Photography'),(5902,348,4,'Screenplay'),(5902,3777,3,'Producer'),(5902,6584,7,'Production Design'),(5902,4786,2,'Director'),(5902,11862,3,'Producer'),(5902,12509,5,'Editor'),(5902,14141,3,'Casting'),(5902,14930,6,'Original Music Composer'),(5902,20135,3,'Associate Producer'),(5902,46470,4,'Novel'),(5902,1120113,3,'Producer'),(9358,561,3,'Casting'),(9358,3193,6,'Sound Designer'),(9358,4755,2,'Director'),(9358,5362,3,'Casting'),(9358,5363,3,'Casting'),(9358,13166,6,'Sound Effects Editor'),(9358,15331,6,'Sound Effects Editor'),(9358,16618,9,'Stunt Coordinator'),(9358,20218,4,'Screenplay'),(9358,20219,4,'Screenplay'),(9358,21140,5,'Editor'),(9358,21585,3,'Producer'),(9358,21586,3,'Producer'),(9358,10830,3,'Executive Producer'),(9358,23812,7,'Art Direction'),(9358,26981,6,'Original Music Composer'),(9358,27160,8,'Costume Design'),(9358,35699,7,'Set Decoration'),(9358,57429,4,'Characters'),(9358,57429,3,'Executive Producer'),(9358,57430,3,'Executive Producer'),(9358,57431,3,'Executive Producer'),(9358,57432,1,'Director of Photography'),(9358,143924,9,'Visual Effects Editor'),(9358,158916,6,'Sound Re-Recording Mixer'),(9358,548432,6,'Sound Re-Recording Mixer'),(9358,548439,6,'Foley'),(9358,548445,6,'Foley'),(9358,968264,1,'Still Photographer'),(9358,1136056,7,'Production Design'),(9358,1314457,8,'Hairstylist'),(9358,1319153,7,'Assistant Art Director'),(9358,1339987,7,'Greensman'),(9358,1342658,5,'Dialogue Editor'),(9358,1352966,5,'Dialogue Editor'),(9358,1368866,6,'Sound Effects Editor'),(9358,1378701,9,'Special Effects Coordinator'),(9358,1379160,1,'Camera Operator'),(9358,1387544,2,'Script Supervisor'),(9358,1391703,3,'Location Manager'),(9358,1392081,6,'Sound Effects Editor'),(9358,1392085,5,'Dialogue Editor'),(9358,1399054,9,'Scenic Artist'),(9358,1399071,1,'Helicopter Camera'),(9358,1400812,6,'ADR & Dubbing'),(9358,1404731,10,'Visual Effects Supervisor'),(9358,1404841,6,'ADR & Dubbing'),(9358,1407813,6,'Sound Effects Editor'),(9358,1407839,9,'Stunt Coordinator'),(9358,1408194,8,'Set Costumer'),(9358,1409743,1,'Camera Operator'),(9358,1410583,1,'Underwater Camera'),(9358,1411856,6,'Music Editor'),(9358,1415634,9,'Second Unit Cinematographer'),(9358,1421693,8,'Hairstylist'),(9358,1421731,1,'Camera Operator'),(9358,1421758,9,'Unit Publicist'),(9358,1423757,6,'Sound Effects Editor'),(9358,1425917,10,'Visual Effects Supervisor'),(9358,1431104,9,'Transportation Coordinator'),(9358,1441271,8,'Hairstylist'),(9358,1441272,8,'Makeup Artist'),(9358,1441273,8,'Makeup Artist'),(9358,1441275,7,'Art Department Coordinator'),(9358,1441277,9,'Property Master'),(9358,1441278,7,'Construction Coordinator'),(9358,1441279,7,'Greensman'),(9358,1441280,7,'Lead Painter'),(9358,1441281,7,'Lead Painter'),(9358,1441282,9,'Scenic Artist'),(9358,1441283,9,'Scenic Artist'),(9358,1441284,9,'Scenic Artist'),(9358,1441285,9,'Scenic Artist'),(9358,1441286,7,'Leadman'),(9358,1441287,9,'Scenic Artist'),(9358,1441288,7,'Set Designer'),(9358,1441289,7,'Set Designer'),(9358,1441320,9,'Special Effects Coordinator'),(9358,1441321,9,'CG Supervisor'),(9358,1441322,9,'CGI Supervisor'),(9358,1441323,10,'Visual Effects Producer'),(9358,1441324,11,'Gaffer'),(9358,1441325,1,'Camera Operator'),(9358,1441326,11,'Rigging Gaffer'),(9358,1441327,8,'Costume Supervisor'),(9358,1441328,8,'Set Costumer'),(9358,1441329,5,'First Assistant Editor'),(9358,1441330,9,'Picture Car Coordinator'),(134,151,1,'Director of Photography'),(134,555,7,'Set Decoration'),(134,1223,4,'Screenplay'),(134,1223,2,'Director'),(134,1223,5,'Editor'),(134,1224,4,'Screenplay'),(134,1224,5,'Editor'),(134,1224,3,'Producer'),(134,1228,5,'Editor'),(134,1482,3,'Co-Producer'),(134,1483,6,'Original Music Composer'),(134,1484,3,'Casting'),(134,4248,7,'Production Design'),(134,1638,6,'Sound Designer'),(134,2236,3,'Executive Producer'),(134,2238,3,'Executive Producer'),(134,7418,8,'Costume Design'),(134,8285,7,'Art Direction'),(134,9619,6,'Supervising Sound Editor'),(134,9619,6,'Sound Re-Recording Mixer'),(134,9621,9,'Special Effects Coordinator'),(134,44482,3,'Associate Producer'),(134,99426,5,'Dialogue Editor'),(134,223239,6,'Production Sound Mixer'),(134,587969,2,'Script Supervisor'),(134,1322089,8,'Costume Supervisor'),(134,1324652,1,'Still Photographer'),(134,1333223,5,'Dialogue Editor'),(134,1390523,6,'Music Editor'),(134,1390523,6,'Sound Re-Recording Mixer'),(134,1395255,6,'Sound Re-Recording Mixer'),(134,1552157,3,'Production Supervisor'),(134,1711837,9,'Transportation Co-Captain'),(1901,1251,1,'Director of Photography'),(1901,1593,3,'Casting'),(1901,3288,3,'Producer'),(1901,3289,2,'Director'),(1901,3289,4,'Screenplay'),(1901,3289,3,'Producer'),(1901,5388,5,'Editor'),(1901,33454,6,'Original Music Composer'),(1901,21266,6,'Original Music Composer'),(1901,21747,7,'Production Design'),(1901,33455,7,'Art Direction'),(1901,27266,7,'Set Decoration'),(1901,33456,8,'Costume Design'),(7445,153,6,'Original Music Composer'),(7445,2952,3,'Casting'),(7445,1011,4,'Writer'),(7445,1012,4,'Writer'),(7445,4434,1,'Director of Photography'),(7445,4767,3,'Producer'),(7445,6590,3,'Producer'),(7445,7538,6,'Music Editor'),(7445,8794,7,'Production Design'),(7445,9619,6,'Sound Re-Recording Mixer'),(7445,9439,6,'Foley'),(7445,9440,6,'Foley'),(7445,9813,4,'Screenplay'),(7445,13227,5,'Editor'),(7445,42037,9,'Property Master'),(7445,53334,2,'Director'),(7445,54419,3,'Producer'),(7445,54873,3,'Executive Producer'),(7445,60070,3,'Executive Producer'),(7445,60578,3,'Executive Producer'),(7445,60665,3,'Casting'),(7445,15282,3,'Producer'),(7445,67975,3,'Executive Producer'),(7445,72104,3,'Executive Producer'),(7445,72106,3,'Producer'),(7445,72113,10,'Visual Effects Supervisor'),(7445,589954,9,'Special Effects Coordinator'),(7445,589974,1,'Still Photographer'),(7445,958835,8,'Costume Design'),(7445,964509,5,'First Assistant Editor'),(7445,1001708,7,'Art Direction'),(7445,1012801,7,'Set Decoration'),(7445,1117438,3,'Producer'),(7445,1127909,3,'Production Supervisor'),(7445,1332200,8,'Set Costumer'),(7445,1333900,8,'Makeup Department Head'),(7445,1333901,7,'Set Designer'),(7445,1333902,3,'Casting'),(7445,1333903,8,'Costume Supervisor'),(7445,1377220,6,'Sound Re-Recording Mixer'),(7445,1378749,7,'Set Designer'),(7445,1391387,6,'Supervising Sound Editor'),(7445,1394762,9,'Studio Teachers'),(7445,1400506,5,'Digital Intermediate'),(7445,1400519,10,'Visual Effects Producer'),(7445,1406131,8,'Set Costumer'),(7445,1407223,8,'Hairstylist'),(7445,1407224,7,'Art Department Coordinator'),(7445,1407225,7,'Construction Coordinator'),(7445,1407226,7,'Leadman'),(7445,1407227,6,'Sound Effects Editor'),(7445,1407227,6,'Sound Re-Recording Mixer'),(7445,1407228,9,'Stunt Coordinator'),(7445,1407229,1,'Camera Operator'),(7445,1407230,1,'Camera Operator'),(7445,1407231,1,'Helicopter Camera'),(7445,1407232,11,'Lighting Technician'),(7445,1407233,8,'Costume Design'),(7445,1407234,8,'Costume Design'),(7445,1407235,5,'Digital Intermediate'),(7445,1407236,5,'First Assistant Editor'),(7445,1407237,9,'Transportation Coordinator'),(7445,1407238,2,'Script Supervisor'),(7445,1407239,9,'Unit Publicist'),(7445,1407240,3,'Location Manager'),(2057,275,1,'Director of Photography'),(2057,1899,3,'Producer'),(2057,5287,6,'Original Music Composer'),(2057,7748,4,'Screenplay'),(2057,7748,4,'Novel'),(2057,21136,4,'Screenplay'),(2057,21136,2,'Director'),(2057,21138,3,'Producer'),(2057,21139,3,'Producer'),(2057,21140,5,'Editor'),(2057,21141,6,'Music Editor'),(8011,22007,4,'Story'),(8011,32870,4,'Screenplay'),(8011,42177,9,'Cinematography'),(8011,53867,4,'Story'),(8011,53599,2,'Director'),(9092,371,1,'Camera Operator'),(9092,606,8,'Costume Design'),(9092,7790,7,'Art Direction'),(9092,9184,3,'Executive Producer'),(9092,9185,3,'Producer'),(9092,9196,3,'Executive Producer'),(9092,9039,6,'Original Music Composer'),(9092,9153,7,'Production Design'),(9092,9822,7,'Assistant Art Director'),(9092,11270,7,'Set Decoration'),(9092,11714,8,'Costume Design'),(9092,13168,6,'ADR & Dubbing'),(9092,18389,3,'Executive Producer'),(9092,20170,3,'Casting'),(9092,20775,3,'Casting'),(9092,10935,5,'Editor'),(9092,25012,1,'Director of Photography'),(9092,29067,8,'Makeup Artist'),(9092,56956,2,'Director'),(9092,56957,4,'Screenplay'),(9092,56958,4,'Screenplay'),(9092,74975,6,'Sound Re-Recording Mixer'),(9092,25549,3,'Casting Associate'),(9092,91094,6,'Foley'),(9092,91095,6,'Foley'),(9092,102339,10,'Visual Effects Supervisor'),(9092,119116,9,'Property Master'),(9092,125898,9,'Second Unit Cinematographer'),(9092,1014908,2,'Script Supervisor'),(9092,1322112,8,'Makeup Artist'),(9092,1332515,1,'Steadicam Operator'),(9092,1385884,2,'Script Supervisor'),(9092,1392907,10,'Visual Effects Producer'),(9092,1400000,1,'Camera Operator'),(9092,1406914,8,'Key Hair Stylist'),(9092,1412986,10,'Special Effects Supervisor'),(9092,1415987,1,'Still Photographer'),(9092,1422976,8,'Assistant Costume Designer'),(9092,1438477,11,'Gaffer'),(9092,1458416,8,'Hairstylist'),(9092,1535216,6,'Music Editor'),(9092,1564476,5,'Dialogue Editor'),(9092,1644790,11,'Gaffer'),(9092,1644791,11,'Gaffer'),(9092,1644792,9,'Visual Effects Editor'),(9092,1644793,6,'Foley'),(9092,1644794,7,'Assistant Art Director'),(9092,1644795,5,'First Assistant Editor'),(2779,1046,3,'Casting'),(2779,1243,2,'Director'),(2779,1243,4,'Screenplay'),(2779,1252,5,'Editor'),(2779,1265,3,'Producer'),(2779,1268,3,'Executive Producer'),(2779,6990,3,'Producer'),(2779,15426,3,'Casting'),(2779,23966,7,'Production Design'),(2779,28001,1,'Director of Photography'),(2779,28041,8,'Costume Design'),(1985,405,6,'Original Music Composer'),(1985,2071,7,'Production Design'),(1985,4584,3,'Executive Producer'),(1985,8557,2,'Director'),(1985,8571,3,'Executive Producer'),(1985,8577,1,'Director of Photography'),(1985,10704,4,'Screenplay'),(1985,10903,3,'Producer'),(1985,40728,9,'Stunt Coordinator'),(1985,11880,5,'Editor'),(1985,15727,3,'Producer'),(1985,17428,6,'Foley'),(1985,19619,3,'Producer'),(1985,19993,3,'Casting'),(1985,20422,4,'Novel'),(1985,20423,3,'Producer'),(1985,20424,8,'Costume Design'),(1985,43559,3,'Executive Producer'),(1985,43560,3,'Executive Producer'),(1985,23425,7,'Supervising Art Director'),(1985,24130,9,'Property Master'),(1985,26193,7,'Art Direction'),(1985,26194,7,'Set Decoration'),(1985,28921,3,'Production Manager'),(1985,65455,3,'Executive Producer'),(1985,55303,1,'Camera Operator'),(1985,117229,6,'Sound Effects Editor'),(1985,124702,11,'Rigging Gaffer'),(1985,1120084,3,'Executive Producer'),(1985,1120085,3,'Executive Producer'),(1985,1270110,3,'Production Manager'),(1985,1273354,9,'Stunt Coordinator'),(1985,1332509,3,'Casting'),(1985,1335183,6,'Foley'),(1985,1338275,9,'Property Master'),(1985,1338276,9,'Property Master'),(1985,1338277,9,'Property Master'),(1985,1338278,6,'Boom Operator'),(1985,1338279,6,'Foley'),(1985,1338281,6,'Supervising Sound Editor'),(1985,1338283,10,'Visual Effects Producer'),(1985,1338284,9,'Compositors'),(1985,1338285,10,'Visual Effects Producer'),(1985,1338286,3,'Casting'),(1985,1338287,6,'Music Editor'),(1985,1338288,9,'Transportation Coordinator'),(1985,1338289,9,'Transportation Coordinator'),(1985,1338291,2,'Script Supervisor'),(1985,1393448,1,'Still Photographer'),(1985,1395024,6,'Sound Re-Recording Mixer'),(1985,1406915,3,'Production Manager'),(1985,1409683,1,'Camera Operator'),(1985,1409734,6,'Sound Re-Recording Mixer'),(1985,1413028,8,'Hairstylist'),(1985,1413028,8,'Makeup Artist'),(1985,1413030,8,'Makeup Artist'),(1985,1413031,3,'Production Manager'),(1985,1413032,7,'Assistant Art Director'),(1985,1413033,7,'Leadman'),(1985,1413034,9,'Visual Effects Editor'),(1985,1413035,1,'Camera Operator'),(1985,1413035,1,'Steadicam Operator'),(1985,1413036,11,'Gaffer'),(1985,1413037,1,'Helicopter Camera'),(1985,1413038,11,'Rigging Gaffer'),(1985,1413040,11,'Rigging Gaffer'),(1985,1413041,5,'First Assistant Editor'),(1985,1413042,3,'Location Manager'),(1985,1413043,3,'Location Manager'),(1985,1413044,3,'Location Manager'),(1985,1413045,3,'Location Manager'),(1985,1413046,3,'Location Manager'),(615,4500,6,'Original Music Composer'),(615,2461,2,'Director'),(615,2461,3,'Producer'),(615,2461,4,'Screenplay'),(615,2487,3,'Producer'),(615,8746,4,'Screenplay'),(615,8747,3,'Producer'),(615,8748,3,'Executive Producer'),(615,8749,6,'Original Music Composer'),(615,8750,1,'Director of Photography'),(615,8751,5,'Editor'),(615,8752,5,'Editor'),(615,8753,3,'Casting'),(615,8754,7,'Production Design'),(615,8755,7,'Set Decoration'),(615,8756,8,'Costume Design'),(615,8757,3,'Unit Production Manager'),(615,8758,9,'Post Production Supervisor'),(615,8759,6,'Sound mixer'),(615,8760,6,'Music Editor'),(615,8761,6,'Foley'),(615,8762,6,'Sound Editor'),(615,8762,5,'Dialogue Editor'),(615,8763,6,'Foley Editor'),(615,8764,6,'Sound Designer'),(615,8765,9,'Special Effects'),(615,8765,10,'Special Effects Supervisor'),(615,8766,1,'Director of Photography'),(615,13189,5,'Color Timer'),(615,13197,5,'Digital Intermediate'),(615,13224,6,'Dolby Consultant'),(615,15355,9,'Special Effects Coordinator'),(615,42029,9,'Second Unit Cinematographer'),(615,42029,10,'Visual Effects Supervisor'),(615,42030,10,'Visual Effects Designer'),(615,42036,6,'Supervising Sound Editor'),(615,23365,8,'Key Makeup Artist'),(615,25066,9,'Stunt Coordinator'),(615,32352,8,'Hairstylist'),(615,32353,8,'Key Hair Stylist'),(615,52452,6,'Music Supervisor'),(615,104044,10,'Digital Compositors'),(615,119183,9,'Stunts'),(615,142370,1,'First Assistant Camera'),(615,236182,9,'Compositors'),(615,582825,11,'Best Boy Electric'),(615,936765,6,'Orchestrator'),(615,1059528,9,'Additional Music'),(615,1072156,9,'Translator'),(615,1125478,3,'Location Manager'),(615,1177364,1,'Steadicam Operator'),(615,1300755,6,'Sound Effects Editor'),(615,1336513,7,'Assistant Art Director'),(615,1391571,6,'Sound Re-Recording Mixer'),(615,1401795,9,'Digital Effects Supervisor'),(615,1404357,7,'Conceptual Design'),(615,1420154,6,'ADR Supervisor'),(615,1431999,8,'Wigmaker'),(615,1432473,7,'Painter'),(615,1438464,2,'Script Supervisor'),(615,1444966,3,'Casting Assistant'),(615,1451548,9,'Makeup Effects'),(615,1461183,6,'Supervising Music Editor'),(615,1541273,6,'Sound Engineer'),(615,1548694,9,'Sound Recordist'),(615,1551653,9,'Post Production Assistant'),(615,1553642,9,'Quality Control Supervisor'),(615,1574132,3,'Unit Manager'),(615,1574133,2,'First Assistant Director'),(615,1574140,3,'Production Coordinator'),(615,1577078,10,'I/O Supervisor'),(615,1577079,9,'Manager of Operations'),(615,1607580,7,'Art Direction'),(615,1607581,7,'Art Direction'),(615,1607582,7,'Art Direction'),(615,1607631,7,'Art Department Coordinator'),(615,1607632,7,'Greensman'),(615,1607633,7,'Standby Painter'),(615,1607634,1,'Key Grip'),(615,1607635,1,'Still Photographer'),(615,1607636,8,'Assistant Costume Designer'),(615,1607637,8,'Makeup Artist'),(615,1607638,8,'Prosthetic Makeup Artist'),(615,1607639,8,'Key Set Costumer'),(615,1607641,9,'Armorer'),(615,1607642,9,'Carpenter'),(615,1607643,9,'Driver'),(615,1607644,9,'Loader'),(615,1607645,9,'Production Office Assistant'),(615,1607646,9,'Property Master'),(615,1607647,9,'Security'),(615,1607648,9,'Set Production Assistant'),(615,1607649,9,'Telecine Colorist'),(615,1607650,9,'Transportation Captain'),(615,1607651,9,'Transportation Coordinator'),(615,1607652,9,'Video Assist Operator'),(615,1607653,9,'Visual Effects Editor'),(615,1607654,5,'Editorial Production Assistant'),(615,1607655,11,'Electrician'),(615,1607656,11,'Gaffer'),(615,1607657,11,'Lighting Technician'),(615,1607658,11,'Rigging Gaffer'),(615,1607659,3,'Production Accountant'),(615,1607666,6,'Boom Operator'),(615,1607667,6,'Assistant Sound Editor'),(615,1607669,10,'Visual Effects Coordinator'),(615,1607670,4,'Storyboard'),(615,1607671,6,'Vocal Coach'),(615,1675777,10,'CG Animator'),(615,1740563,6,'Conductor'),(615,1854434,7,'Assistant Property Master'),(615,1854435,7,'Set Dresser'),(615,1854436,1,'Additional Still Photographer'),(615,1854437,1,'Grip'),(615,1854439,8,'Set Costumer'),(615,1854440,2,'Second Assistant Director'),(615,1854441,3,'Assistant Production Coordinator'),(615,1854442,6,'Assistant Music Supervisor'),(615,1854455,6,'Musician'),(788,794,7,'Production Design'),(788,117,6,'Original Music Composer'),(788,1095,1,'Director of Photography'),(788,1215,5,'Editor'),(788,2157,3,'Producer'),(788,2874,3,'Casting'),(788,3275,3,'Casting'),(788,10965,2,'Director'),(788,11222,3,'Producer'),(788,11413,7,'Set Decoration'),(788,11706,4,'Novel'),(788,11707,4,'Screenplay'),(788,11708,4,'Screenplay'),(788,11709,3,'Producer'),(788,11710,3,'Executive Producer'),(788,11711,3,'Associate Producer'),(788,11712,3,'Producer'),(788,11713,7,'Art Direction'),(788,11714,8,'Costume Design'),(788,406204,8,'Makeup Artist'),(788,1447383,10,'Animation'),(380,947,6,'Original Music Composer'),(380,602,7,'Set Decoration'),(380,949,3,'Casting'),(380,1260,7,'Art Direction'),(380,2211,3,'Co-Producer'),(380,2211,3,'Unit Production Manager'),(380,2702,1,'Director of Photography'),(380,2889,6,'Sound Designer'),(380,3804,3,'Executive Producer'),(380,3805,3,'Executive Producer'),(380,4150,8,'Costume Design'),(380,4504,9,'Thanks'),(380,8246,2,'Director'),(380,5143,4,'Screenplay'),(380,5143,4,'Story'),(380,5144,4,'Screenplay'),(380,5162,3,'Producer'),(380,5163,3,'Associate Producer'),(380,5163,2,'Assistant Director'),(380,5164,3,'Associate Producer'),(380,5166,5,'Editor'),(380,5167,7,'Production Design'),(380,5712,6,'Music Editor'),(380,6912,9,'Thanks'),(380,10955,2,'Assistant Director'),(380,14436,8,'Makeup Artist'),(380,26986,8,'Makeup Artist'),(380,60086,5,'Assistant Editor'),(380,74975,6,'Sound Re-Recording Mixer'),(380,74976,6,'Sound Re-Recording Mixer'),(380,74978,6,'Sound Re-Recording Mixer'),(380,75214,9,'Thanks'),(380,108143,6,'Sound Mixer'),(380,136080,9,'Sound Recordist'),(380,548445,6,'Sound Editor'),(380,559913,2,'Script Supervisor'),(380,1197676,6,'Sound Editor'),(380,1206905,8,'Set Costumer'),(380,1228794,1,'Camera Operator'),(380,1271929,9,'Unit Publicist'),(380,1329759,8,'Set Costumer'),(380,1338670,8,'Hairstylist'),(380,1372885,6,'Music Editor'),(380,1390535,1,'Still Photographer'),(380,1398946,6,'Sound Editor'),(380,1402038,3,'Location Manager'),(380,1423866,1,'Camera Operator'),(380,1429549,5,'Color Timer'),(380,1440288,3,'Location Manager'),(380,1463424,9,'Special Effects'),(380,1532068,2,'Assistant Director'),(380,1547773,8,'Assistant Costume Designer'),(380,1553251,6,'Music Supervisor'),(380,1562802,6,'Sound Editor'),(380,1562803,6,'Supervising Sound Editor'),(380,1562804,6,'Sound Editor'),(380,1562806,6,'Sound Editor'),(380,1593391,9,'Stand In'),(8681,59,4,'Screenplay'),(8681,59,3,'Producer'),(8681,61,4,'Screenplay'),(8681,2045,3,'Casting'),(8681,2186,3,'Casting'),(8681,5436,9,'Stunts'),(8681,18186,3,'Producer'),(8681,20722,8,'Costume Design'),(8681,35453,2,'Director'),(8681,35455,7,'Production Design'),(8681,54807,9,'Stunts'),(8681,55772,3,'Producer'),(8681,55773,6,'Original Music Composer'),(8681,55774,1,'Director of Photography'),(8681,61600,7,'Set Decoration'),(8681,62434,5,'Editor'),(8681,1077833,9,'Stunts'),(8681,1077835,9,'Stunts'),(8681,1321357,8,'Costume Design'),(8681,1321358,8,'Makeup Department Head'),(8681,1321359,8,'Costume Supervisor'),(8681,1366197,9,'Stunts'),(8681,1564021,9,'Stunts'),(8681,1670734,9,'Stunts'),(8681,1863801,9,'Stunts'),(8681,1863802,9,'Stunts'),(8681,1863803,9,'Stunts'),(8681,1863804,9,'Stunts'),(8681,1863805,9,'Stunts'),(8681,1863807,9,'Stunts'),(619,37,6,'Original Music Composer'),(619,1269,3,'Producer'),(619,3985,5,'Editor'),(619,4142,3,'Casting'),(619,8844,4,'Screenplay'),(619,8844,3,'Producer'),(619,7847,3,'Producer'),(619,7848,7,'Production Design'),(619,7849,7,'Set Decoration'),(619,8279,7,'Set Designer'),(619,8843,2,'Director'),(619,8845,6,'Original Music Composer'),(619,8846,1,'Director of Photography'),(619,8847,5,'Editor'),(619,8848,7,'Art Direction'),(619,8849,8,'Costume Design'),(619,8850,3,'Production Manager'),(619,15225,6,'Music Editor'),(619,14753,9,'Transportation Coordinator'),(619,42034,6,'Sound Re-Recording Mixer'),(619,22486,9,'Property Master'),(619,23550,8,'Makeup Artist'),(619,41591,1,'Steadicam Operator'),(619,74980,9,'Special Effects Coordinator'),(619,78395,9,'Stunt Coordinator'),(619,101427,9,'Makeup Effects'),(619,91094,6,'Foley'),(619,91854,8,'Makeup Artist'),(619,108143,6,'Sound Designer'),(619,117867,6,'Supervising Sound Editor'),(619,143915,6,'Supervising Sound Editor'),(619,1050930,5,'Dialogue Editor'),(619,1293529,1,'Still Photographer'),(619,1322017,7,'Set Designer'),(619,1332599,8,'Costume Supervisor'),(619,1339445,7,'Construction Coordinator'),(619,1344273,6,'Music Editor'),(619,1357066,1,'Steadicam Operator'),(619,1368018,6,'Foley'),(619,1399996,6,'Sound Re-Recording Mixer'),(619,1399997,6,'Sound Re-Recording Mixer'),(619,1400738,2,'Script Supervisor'),(619,1401117,9,'Unit Publicist'),(619,1405703,9,'Makeup Effects'),(619,1405704,8,'Hairstylist'),(619,1405708,7,'Set Designer'),(619,1405711,7,'Greensman'),(619,1405717,5,'Dialogue Editor'),(619,1405722,1,'Camera Operator'),(619,1405723,1,'Camera Operator'),(619,1405725,9,'Video Assist Operator'),(619,1405726,11,'Lighting Technician'),(619,1405727,8,'Set Costumer'),(619,1405728,8,'Set Costumer'),(619,1405729,3,'Location Manager'),(619,1405730,9,'Choreographer'),(424,491,6,'Original Music Composer'),(424,488,2,'Director'),(424,488,3,'Producer'),(424,492,1,'Director of Photography'),(424,493,5,'Editor'),(424,930,3,'Producer'),(424,1046,3,'Casting'),(424,2260,4,'Screenplay'),(424,2211,3,'Producer'),(424,3563,7,'Production Design'),(424,6685,4,'Novel'),(424,6687,3,'Casting'),(424,6688,8,'Costume Design'),(424,6689,9,'Special Effects'),(424,6690,10,'Visual Effects'),(424,6691,9,'Stunt Coordinator'),(424,9971,6,'Supervising Sound Editor'),(424,9441,6,'Foley'),(424,18265,11,'Gaffer'),(424,113090,6,'Foley'),(424,62583,1,'Camera Operator'),(424,66142,6,'Music Editor'),(424,960737,7,'Art Direction'),(424,1031561,3,'Casting'),(424,1116937,6,'Foley'),(424,1312252,3,'Casting'),(424,1317873,3,'Casting'),(424,1317874,3,'Casting'),(424,1376818,6,'Foley'),(424,1376819,6,'Supervising Sound Editor'),(424,1376821,10,'Visual Effects Supervisor'),(424,1389139,1,'Still Photographer'),(424,1487476,7,'Art Direction'),(424,1487477,7,'Construction Coordinator'),(424,1487478,7,'Construction Coordinator'),(424,1487479,9,'Unit Publicist'),(6466,3687,6,'Sound Designer'),(6466,545,3,'Casting'),(6466,5912,6,'Original Music Composer'),(6466,5140,4,'Characters'),(6466,5140,4,'Writer'),(6466,13663,3,'Executive Producer'),(6466,5583,5,'Editor'),(6466,6062,6,'Foley Editor'),(6466,9417,6,'Sound Effects Editor'),(6466,11822,7,'Set Decoration'),(6466,17268,2,'Director'),(6466,17765,1,'Director of Photography'),(6466,21639,3,'Casting'),(6466,23414,7,'Art Direction'),(6466,28241,6,'Orchestrator'),(6466,29208,3,'Executive In Charge Of Production'),(6466,33256,3,'Executive Producer'),(6466,34968,3,'Executive Producer'),(6466,35475,3,'Producer'),(6466,38685,4,'Characters'),(6466,41899,3,'Unit Production Manager'),(6466,51908,4,'Screenplay'),(6466,51909,4,'Screenplay'),(6466,57135,9,'Second Unit Cinematographer'),(6466,57356,3,'Assistant Production Manager'),(6466,59099,7,'Assistant Property Master'),(6466,62857,3,'Local Casting'),(6466,63101,3,'Casting Associate'),(6466,92385,11,'Rigging Gaffer'),(6466,91341,11,'Chief Lighting Technician'),(6466,157841,1,'Camera Operator'),(6466,158916,6,'Sound Re-Recording Mixer'),(6466,197930,9,'Stunt Coordinator'),(6466,200670,10,'Lead Animator'),(6466,229828,7,'Assistant Art Director'),(6466,230135,9,'Special Effects Coordinator'),(6466,417960,5,'Color Timer'),(6466,548432,6,'Sound Re-Recording Mixer'),(6466,548435,6,'Sound Editor'),(6466,548437,6,'ADR Editor'),(6466,548439,6,'Foley'),(6466,548445,6,'Foley'),(6466,589961,9,'Stunt Coordinator'),(6466,933507,9,'Fight Choreographer'),(6466,957310,7,'Production Design'),(6466,960600,8,'Costume Design'),(6466,1175790,9,'Production Controller'),(6466,1194379,9,'Second Unit Cinematographer'),(6466,1202352,9,'Visual Effects Editor'),(6466,1235815,9,'Stunt Coordinator'),(6466,1247046,10,'3D Artist'),(6466,1296181,1,'Key Grip'),(6466,1311122,6,'Boom Operator'),(6466,1311276,6,'Musician'),(6466,1333988,9,'Property Master'),(6466,1335041,7,'Construction Coordinator'),(6466,1354112,9,'Production Office Assistant'),(6466,1373435,6,'Sound Effects Editor'),(6466,1376276,9,'Temp Music Editor'),(6466,1378719,8,'Set Costumer'),(6466,1392095,10,'Visual Effects Supervisor'),(6466,1393390,10,'Visual Effects Supervisor'),(6466,1394131,6,'Sound Re-Recording Mixer'),(6466,1394445,10,'Visual Effects Producer'),(6466,1396415,8,'Prosthetic Supervisor'),(6466,1396510,2,'Script Supervisor'),(6466,1398177,6,'Sound Effects Editor'),(6466,1399066,1,'Still Photographer'),(6466,1399068,1,'Underwater Camera'),(6466,1399871,10,'Visual Effects Coordinator'),(6466,1401305,6,'Music Editor'),(6466,1401556,7,'Sculptor'),(6466,1401559,7,'Construction Foreman'),(6466,1401631,5,'Dialogue Editor'),(6466,1403461,10,'3D Animator'),(6466,1403475,10,'Visual Effects Producer'),(6466,1404704,9,'Post Production Supervisor'),(6466,1407359,9,'Visual Effects Art Director'),(6466,1407845,9,'Unit Publicist'),(6466,1408776,7,'Lead Painter'),(6466,1409730,9,'Scenic Artist'),(6466,1409743,1,'Camera Operator'),(6466,1413097,9,'CGI Supervisor'),(6466,1413115,10,'Visual Effects Producer'),(6466,1414748,9,'Stand In'),(6466,1427438,2,'Continuity'),(6466,1437304,11,'Gaffer'),(6466,1441250,6,'Supervising Sound Editor'),(6466,1441259,11,'Best Boy Electric'),(6466,1441321,9,'CG Supervisor'),(6466,1441321,9,'Marine Coordinator'),(6466,1441345,8,'Key Makeup Artist'),(6466,1448419,8,'Key Hair Stylist'),(6466,1448420,8,'Hairstylist'),(6466,1448421,8,'Makeup Artist'),(6466,1448422,8,'Makeup Artist'),(6466,1448423,7,'Art Department Coordinator'),(6466,1448424,7,'Assistant Art Director'),(6466,1448426,7,'Art Department Assistant'),(6466,1448427,7,'Greensman'),(6466,1448428,9,'Scenic Artist'),(6466,1448601,10,'Animation'),(6466,1448603,9,'Visual Effects Editor'),(6466,1448607,10,'Visual Effects Supervisor'),(6466,1448611,1,'Camera Operator'),(6466,1448614,1,'Camera Operator'),(6466,1448616,1,'Camera Operator'),(6466,1448617,5,'First Assistant Editor'),(6466,1448618,9,'Transportation Coordinator'),(6466,1448620,3,'Location Manager'),(6466,1451245,1,'Camera Department Manager'),(6466,1459784,10,'Animation'),(6466,1459784,7,'Title Designer'),(6466,1459785,1,'Grip'),(6466,1459786,1,'Grip'),(6466,1459787,9,'Technical Supervisor'),(6466,1459788,9,'Compositors'),(6466,1459788,10,'Digital Compositors'),(6466,1459789,9,'Digital Effects Supervisor'),(6466,1459790,10,'Animation'),(6466,1463785,10,'VFX Artist'),(6466,1464960,10,'3D Supervisor'),(6466,1525602,9,'Post Production Assistant'),(6466,1546584,7,'Standby Painter'),(6466,1548661,11,'Electrician'),(6466,1549445,6,'Sound Engineer'),(6466,1559030,9,'Security'),(6466,1587962,3,'Executive Producer'),(6466,1587964,7,'Painter'),(6466,1587965,7,'Production Illustrator'),(6466,1587966,1,'First Assistant Camera'),(6466,1587967,7,'Set Dresser'),(6466,1587968,9,'Additional Music'),(6466,1587969,9,'Craft Service'),(6466,1587970,9,'Driver'),(6466,1587972,9,'Stunts'),(6466,1587973,9,'Systems Administrators & Support'),(6466,1587974,9,'Telecine Colorist'),(6466,1587976,9,'Utility Stunts'),(6466,1587977,9,'Video Assist Operator'),(6466,1587979,11,'Rigging Grip'),(6466,1587980,3,'Production Accountant'),(6466,1587981,3,'Production Coordinator'),(6466,1647465,9,'Executive in Charge of Finance'),(6466,1673850,2,'Second Assistant Director'),(6466,1733036,1,'Dolly Grip'),(6466,1733132,5,'Negative Cutter'),(6466,1752955,6,'Assistant Sound Editor'),(6466,1771287,3,'Assistant Production Coordinator'),(6466,1836287,2,'First Assistant Director'),(6466,1836288,2,'Third Assistant Director'),(6466,1836292,3,'Casting Assistant'),(6466,1836298,6,'Conductor'),(6466,1836300,10,'Roto Supervisor'),(7191,497,7,'Art Direction'),(7191,7735,8,'Costume Design'),(7191,8274,7,'Set Decoration'),(7191,9776,10,'Visual Effects Producer'),(7191,11001,5,'Editor'),(7191,15344,3,'Producer'),(7191,20228,6,'Foley'),(7191,20229,6,'Foley'),(7191,32278,2,'Director'),(7191,11102,7,'Set Designer'),(7191,47506,4,'Screenplay'),(7191,28977,3,'Producer'),(7191,51985,3,'Executive Producer'),(7191,51986,3,'Executive Producer'),(7191,36224,1,'Director of Photography'),(7191,51987,7,'Production Design'),(7191,58188,9,'Visual Effects Editor'),(7191,112289,9,'Video Assist Operator'),(7191,150010,3,'Producer'),(7191,484529,7,'Art Department Coordinator'),(7191,765144,3,'Casting'),(7191,1206190,8,'Makeup Artist'),(7191,1282566,10,'Animation Supervisor'),(7191,1316599,8,'Makeup Department Head'),(7191,1321589,8,'Costume Supervisor'),(7191,1331650,8,'Costume Supervisor'),(7191,1333220,9,'Property Master'),(7191,1338976,6,'Sound Re-Recording Mixer'),(7191,1339445,7,'Construction Coordinator'),(7191,1371444,9,'Production Office Assistant'),(7191,1371676,1,'Camera Operator'),(7191,1376899,5,'Dialogue Editor'),(7191,1377502,1,'Still Photographer'),(7191,1389133,6,'Sound Designer'),(7191,1389133,6,'Supervising Sound Editor'),(7191,1389134,6,'Sound Designer'),(7191,1389134,6,'Supervising Sound Editor'),(7191,1391678,9,'Sound Recordist'),(7191,1393001,9,'Sound Recordist'),(7191,1393441,6,'Dolby Consultant'),(7191,1393449,1,'Camera Operator'),(7191,1399116,6,'Sound Effects Editor'),(7191,1399561,9,'Visual Effects Editor'),(7191,1399638,9,'Stunt Coordinator'),(7191,1399640,9,'Transportation Coordinator'),(7191,1400488,9,'Scenic Artist'),(7191,1400555,7,'Set Designer'),(7191,1401606,8,'Hairstylist'),(7191,1401687,6,'Sound Re-Recording Mixer'),(7191,1403421,2,'Script Supervisor'),(7191,1406759,10,'Visual Effects Supervisor'),(7191,1406836,9,'Visual Effects Editor'),(7191,1409245,5,'Digital Intermediate'),(7191,1409877,6,'Music Editor'),(7191,1410187,10,'Visual Effects Producer'),(7191,1411501,8,'Makeup Artist'),(7191,1411503,8,'Hairstylist'),(7191,1411508,8,'Hairstylist'),(7191,1411509,7,'Set Designer'),(7191,1411512,9,'Property Master'),(7191,1411517,7,'Greensman'),(7191,1411518,7,'Leadman'),(7191,1411519,7,'Leadman'),(7191,1411520,9,'Scenic Artist'),(7191,1411521,9,'Sound Recordist'),(7191,1411522,6,'Sound Effects Editor'),(7191,1411523,9,'Special Effects Coordinator'),(7191,1411526,10,'Visual Effects Supervisor'),(7191,1411527,9,'CG Supervisor'),(7191,1411530,9,'Visual Effects Editor'),(7191,1411532,9,'Visual Effects Editor'),(7191,1411533,9,'CG Supervisor'),(7191,1411534,10,'Visual Effects Producer'),(7191,1411535,10,'Visual Effects Producer'),(7191,1411538,1,'Camera Operator'),(7191,1411539,8,'Set Costumer'),(7191,1411540,5,'Digital Intermediate'),(7191,1411541,5,'Digital Intermediate'),(7191,1411542,9,'Picture Car Coordinator'),(7191,1411544,3,'Location Manager'),(7191,1411545,3,'Location Manager'),(7191,1415650,9,'Unit Publicist'),(7191,1453943,11,'Lighting Technician'),(7191,1457666,5,'Assistant Editor'),(1497,1263,3,'Casting'),(1497,4950,1,'Director of Photography'),(1497,8751,5,'Editor'),(1497,8933,6,'Original Music Composer'),(1497,11294,7,'Production Design'),(1497,19500,3,'Producer'),(1497,19502,4,'Characters'),(1497,19503,4,'Characters'),(1497,46323,3,'Executive Producer'),(1497,59649,2,'Director'),(1497,175502,4,'Writer'),(1497,200992,3,'Producer'),(1497,1122495,3,'Producer'),(1497,1334481,7,'Art Direction'),(117,852,5,'Editor'),(117,1150,2,'Director'),(117,1254,3,'Producer'),(117,1255,4,'Writer'),(117,1256,4,'Novel'),(117,1257,4,'Novel'),(117,1258,1,'Director of Photography'),(117,1259,6,'Original Music Composer'),(117,1260,7,'Art Direction'),(117,1261,7,'Set Decoration'),(117,1262,3,'Casting'),(117,1264,5,'Editor'),(117,4701,2,'Assistant Director'),(117,7719,8,'Costume Design'),(117,14880,6,'Sound Re-Recording Mixer'),(117,92479,9,'Stunt Coordinator'),(117,72974,2,'Assistant Director'),(117,74823,2,'Script Supervisor'),(117,238673,3,'Location Manager'),(117,957760,5,'Editorial Services'),(117,1213543,2,'Assistant Director'),(117,1354109,3,'Associate Producer'),(117,1354109,3,'Unit Production Manager'),(117,1368867,9,'Special Effects Coordinator'),(117,1453173,8,'Hairstylist'),(117,1458993,8,'Makeup Artist'),(117,1558200,1,'Grip'),(117,1561591,2,'Assistant Director'),(117,1591739,9,'Stunts'),(117,1592134,6,'Music Supervisor'),(117,1639865,9,'Transportation Captain'),(6977,151,1,'Director of Photography'),(6977,555,7,'Set Decoration'),(6977,1223,4,'Screenplay'),(6977,1223,2,'Director'),(6977,1223,3,'Producer'),(6977,1223,5,'Editor'),(6977,1224,4,'Screenplay'),(6977,1224,2,'Director'),(6977,1224,3,'Producer'),(6977,1224,5,'Editor'),(6977,1225,6,'Original Music Composer'),(6977,1484,3,'Casting'),(6977,2997,3,'Producer'),(6977,10575,7,'Production Design'),(6977,6488,3,'Executive Producer'),(6977,7418,8,'Costume Design'),(6977,9619,6,'Supervising Sound Editor'),(6977,9619,6,'Sound Re-Recording Mixer'),(6977,9621,9,'Special Effects Coordinator'),(6977,9651,6,'Sound Re-Recording Mixer'),(6977,9651,6,'Sound Designer'),(6977,17990,6,'Music Editor'),(6977,44482,3,'Executive Producer'),(6977,51736,4,'Author'),(6977,51737,3,'Producer'),(6977,223239,6,'Sound mixer'),(6977,587969,2,'Script Supervisor'),(6977,1017240,8,'Assistant Costume Designer'),(6977,1223192,7,'Art Department Coordinator'),(6977,1276817,7,'Art Direction'),(6977,1281538,9,'Stunt Coordinator'),(6977,1319137,8,'Costume Supervisor'),(6977,1325234,8,'Makeup Department Head'),(6977,1395255,6,'Sound Re-Recording Mixer'),(6977,1395275,1,'Still Photographer'),(6977,1410149,8,'Hair Department Head'),(6977,1535737,3,'Production Supervisor'),(6977,1537867,3,'Production Coordinator'),(6977,1546856,5,'Dialogue Editor'),(6977,1552218,9,'Transportation Coordinator'),(6977,1555880,9,'Transportation Captain'),(634,2236,3,'Producer'),(634,2238,3,'Producer'),(634,5489,3,'Casting'),(634,7018,4,'Screenplay'),(634,7262,1,'Director of Photography'),(634,10646,10,'Special Effects Supervisor'),(634,9006,8,'Costume Design'),(634,9148,3,'Production Supervisor'),(634,9149,3,'Line Producer'),(634,9150,3,'Co-Producer'),(634,9151,3,'Co-Producer'),(634,9152,6,'Original Music Composer'),(634,9153,7,'Production Design'),(634,9154,5,'Editor'),(634,9155,3,'Executive Producer'),(634,9155,4,'Novel'),(634,9155,4,'Screenplay'),(634,9156,4,'Screenplay'),(634,9157,3,'Producer'),(634,9158,2,'Director'),(634,9159,6,'Sound mixer'),(634,9160,6,'Music Editor'),(634,9161,8,'Makeup Artist'),(634,9162,8,'Makeup Artist'),(634,40810,6,'Supervising Sound Editor'),(634,40811,6,'Assistant Sound Editor'),(634,40813,6,'ADR Editor'),(634,40818,6,'Sound Re-Recording Mixer'),(634,15512,7,'Set Decoration Buyer'),(634,22968,8,'Wardrobe Supervisor'),(634,30463,7,'Assistant Art Director'),(634,59372,7,'Art Direction'),(634,75578,3,'Casting Assistant'),(634,75580,7,'Set Decoration'),(634,168328,4,'Storyboard'),(634,195366,6,'Boom Operator'),(634,223202,6,'Music Supervisor'),(634,223238,10,'Visual Effects Coordinator'),(634,1181554,1,'Still Photographer'),(634,1234395,9,'Second Unit Cinematographer'),(634,1262529,9,'Stand In'),(634,1314937,1,'First Assistant Camera'),(634,1318478,8,'Assistant Costume Designer'),(634,1335195,10,'Visual Effects Supervisor'),(634,1339060,9,'Post Production Supervisor'),(634,1346934,7,'Supervising Art Director'),(634,1363081,2,'First Assistant Director'),(634,1393301,6,'Foley'),(634,1402096,1,'Steadicam Operator'),(634,1403637,9,'Visual Effects Editor'),(634,1404870,3,'Unit Manager'),(634,1405241,1,'Aerial Camera'),(634,1406200,9,'Unit Publicist'),(634,1418317,3,'Production Coordinator'),(634,1424574,2,'Continuity'),(634,1427823,8,'Hair Designer'),(634,1428473,7,'Property Master'),(634,1429643,2,'Script Supervisor'),(634,1433047,10,'Visual Effects Producer'),(634,1440487,9,'Digital Effects Supervisor'),(634,1477563,3,'Location Manager'),(634,1534114,9,'Stunts Coordinator'),(634,1548132,6,'Songs'),(634,1564277,3,'Executive In Charge Of Production'),(634,1575987,7,'Art Department Assistant'),(634,1575989,7,'Construction Coordinator'),(634,1575990,7,'Painter'),(634,1575992,7,'Standby Painter'),(634,1575994,1,'Additional Photography'),(634,1575995,1,'Camera Operator'),(634,1576005,1,'Key Grip'),(634,1576007,1,'Helicopter Camera'),(634,1576009,8,'Makeup Designer'),(634,1576010,8,'Set Dressing Production Assistant'),(634,1576011,9,'Carpenter'),(634,1576012,9,'Choreographer'),(634,1576013,9,'Driver'),(634,1576017,6,'Sound Recordist'),(634,1576021,9,'Technical Supervisor'),(634,1576024,9,'Video Assist Operator'),(634,1576025,5,'Color Timer'),(634,1576026,5,'First Assistant Editor'),(634,1576027,11,'Electrician'),(634,1576028,11,'Gaffer'),(634,1576029,3,'Production Accountant'),(634,1576030,3,'Production Manager'),(634,1576031,6,'Orchestrator'),(634,1576032,6,'Dolby Consultant'),(634,1767018,7,'Title Designer'),(634,1767778,1,'Camera Loader'),(634,1767779,1,'Grip'),(634,1767780,2,'Second Assistant Director'),(634,1767781,2,'Third Assistant Director'),(634,1767782,3,'ADR Voice Casting'),(634,1767785,6,'Foley Editor'),(634,1767790,6,'Musician'),(392,4023,3,'Casting'),(392,293,1,'Director of Photography'),(392,414,3,'Executive Producer'),(392,1307,3,'Executive Producer'),(392,59839,3,'Executive Producer'),(392,3192,3,'Casting'),(392,3562,6,'Original Music Composer'),(392,5306,2,'Director'),(392,5307,4,'Novel'),(392,5307,4,'Screenplay'),(392,5308,4,'Screenplay'),(392,5322,3,'Producer'),(392,5323,3,'Producer'),(392,5324,3,'Producer'),(392,5325,3,'Producer'),(392,5326,3,'Executive Producer'),(392,5327,5,'Editor'),(392,5328,3,'Casting'),(392,5329,7,'Production Design'),(392,5330,7,'Art Direction'),(392,5331,7,'Set Decoration'),(392,5332,8,'Costume Design'),(392,5333,8,'Makeup Artist'),(392,5334,8,'Makeup Artist'),(392,5335,8,'Makeup Artist'),(392,5336,8,'Makeup Artist'),(392,5337,6,'Sound Editor'),(392,5338,6,'Sound Designer'),(392,5339,6,'ADR & Dubbing'),(392,5340,6,'Music Editor'),(392,40796,1,'Still Photographer'),(392,1262550,1,'Camera Operator'),(392,1322137,8,'Costume Supervisor'),(392,1367566,2,'Script Supervisor'),(392,1400000,1,'Camera Operator'),(392,1400092,1,'Helicopter Camera'),(392,1523868,7,'Art Department Coordinator'),(392,1523869,9,'Second Unit Cinematographer'),(2085,2953,3,'Casting'),(2085,9769,6,'Original Music Composer'),(2085,10765,2,'Director'),(2085,21348,4,'Screenplay'),(2085,21349,4,'Screenplay'),(2085,21351,5,'Editor'),(2085,22818,1,'Director of Photography'),(794,7753,1,'Director of Photography'),(794,1760,6,'Original Music Composer'),(794,2523,5,'Editor'),(794,4611,3,'Executive Producer'),(794,7187,2,'Director'),(794,7199,3,'Producer'),(794,8943,9,'Special Effects'),(794,10337,3,'Producer'),(794,10340,3,'Casting'),(794,11441,6,'Additional Soundtrack'),(794,11834,4,'Screenplay'),(794,11836,7,'Art Direction'),(794,11837,8,'Makeup Artist'),(794,11838,3,'Production Manager'),(794,11959,8,'Set Dressing Artist'),(794,15358,9,'Stunts'),(794,14750,8,'Hairstylist'),(794,29061,8,'Costume Supervisor'),(794,91245,6,'Orchestrator'),(794,605021,9,'Stunt Coordinator'),(794,1090257,5,'Assistant Editor'),(794,1213681,2,'Assistant Director'),(794,1377118,7,'Assistant Art Director'),(794,1378839,1,'Still Photographer'),(794,1406968,9,'Property Master'),(794,1411160,9,'Other'),(794,1513639,9,'Special Effects'),(794,1537287,3,'Location Manager'),(794,1562723,11,'Electrician'),(794,1575391,2,'Assistant Director'),(794,1575395,9,'Property Master'),(794,1575400,1,'Camera Operator'),(9286,561,3,'Casting'),(9286,5362,3,'Casting'),(9286,5363,3,'Casting'),(9286,13166,6,'Sound Effects Editor'),(9286,12706,7,'Production Design'),(9286,21585,3,'Producer'),(9286,21586,3,'Producer'),(9286,26981,6,'Original Music Composer'),(9286,42121,4,'Screenplay'),(9286,42121,3,'Producer'),(9286,62163,7,'Art Direction'),(9286,113028,7,'Set Designer'),(9286,113032,9,'Property Master'),(9286,113036,7,'Construction Coordinator'),(9286,57134,4,'Screenplay'),(9286,57134,2,'Director'),(9286,57134,3,'Producer'),(9286,57135,1,'Director of Photography'),(9286,25862,5,'Editor'),(9286,62859,7,'Assistant Art Director'),(9286,223994,8,'Hairstylist'),(9286,548437,6,'ADR & Dubbing'),(9286,548437,5,'Dialogue Editor'),(9286,957495,6,'Sound Effects Editor'),(9286,960600,8,'Costume Design'),(9286,968264,1,'Still Photographer'),(9286,1007395,9,'Stunt Coordinator'),(9286,1031810,6,'Sound Effects Editor'),(9286,1092901,9,'Visual Effects Editor'),(9286,1326723,8,'Costume Supervisor'),(9286,1339987,7,'Greensman'),(9286,1342657,6,'Sound Designer'),(9286,1352966,6,'ADR & Dubbing'),(9286,1364417,6,'Sound Re-Recording Mixer'),(9286,1378453,5,'Dialogue Editor'),(9286,1391692,10,'Visual Effects Producer'),(9286,1392898,7,'Set Designer'),(9286,1394131,6,'Sound Re-Recording Mixer'),(9286,1394282,10,'Visual Effects Supervisor'),(9286,1394752,10,'Visual Effects Producer'),(9286,1397174,9,'Special Effects Coordinator'),(9286,1399069,9,'Transportation Coordinator'),(9286,1399633,10,'Visual Effects Producer'),(9286,1399635,10,'Visual Effects Supervisor'),(9286,1400374,1,'Camera Operator'),(9286,1401605,8,'Hairstylist'),(9286,1401631,5,'Dialogue Editor'),(9286,1404706,9,'Makeup Effects'),(9286,1404841,6,'ADR & Dubbing'),(9286,1407805,9,'Makeup Effects'),(9286,1407827,9,'Unit Publicist'),(9286,1408790,3,'Location Manager'),(9286,1410186,10,'Visual Effects Producer'),(9286,1411856,6,'Music Editor'),(9286,1412703,6,'Sound Effects Editor'),(9286,1425328,5,'First Assistant Editor'),(9286,1426324,10,'Visual Effects Supervisor'),(9286,1426770,9,'Visual Effects Editor'),(9286,1441250,6,'Supervising Sound Editor'),(9286,1441261,9,'Second Unit Cinematographer'),(9286,1441279,7,'Greensman'),(9286,1441321,9,'CG Supervisor'),(9286,1441341,7,'Set Decoration'),(9286,1441344,8,'Makeup Artist'),(9286,1441345,8,'Makeup Artist'),(9286,1441347,9,'Makeup Effects'),(9286,1441348,9,'Makeup Effects'),(9286,1441349,9,'Property Master'),(9286,1441351,7,'Sculptor'),(9286,1441352,7,'Sculptor'),(9286,1441353,7,'Sculptor'),(9286,1441354,9,'Scenic Artist'),(9286,1441355,7,'Set Decoration Buyer'),(9286,1441356,9,'Special Effects Coordinator'),(9286,1441357,9,'CG Supervisor'),(9286,1441358,9,'CG Supervisor'),(9286,1441361,10,'Visual Effects Producer'),(9286,1441362,10,'Visual Effects Supervisor'),(9286,1441363,10,'Visual Effects Supervisor'),(9286,1441364,11,'Gaffer'),(9286,1441365,1,'Steadicam Operator'),(9286,1441367,1,'Steadicam Operator'),(9286,1441368,1,'Additional Camera'),(9286,1441369,11,'Rigging Gaffer'),(9286,1441370,9,'Picture Car Coordinator'),(9286,1441372,2,'Script Supervisor'),(9286,1441373,2,'Script Supervisor'),(9286,1494205,9,'CG Supervisor'),(9286,1700673,1,'Other'),(1265,1044,1,'Director of Photography'),(1265,1315,5,'Editor'),(1265,7227,3,'Producer'),(1265,36697,2,'Director'),(1265,36698,4,'Screenplay'),(1265,36699,4,'Novel'),(1265,54487,3,'Producer'),(1265,54488,3,'Producer'),(1265,40384,6,'Original Music Composer'),(1265,54489,3,'Casting'),(1265,54490,7,'Production Design'),(1265,54491,8,'Costume Design'),(866,7790,7,'Art Direction'),(866,9153,7,'Production Design'),(866,12995,2,'Director'),(866,12996,4,'Screenplay'),(866,12997,3,'Producer'),(866,12998,3,'Producer'),(866,13000,1,'Director of Photography'),(866,13002,4,'Author'),(866,13002,4,'Screenplay'),(866,13005,5,'Editor'),(866,13008,7,'Set Decoration'),(866,13009,8,'Costume Design'),(866,22680,6,'Original Music Composer'),(8699,23659,4,'Author'),(8699,17883,3,'Executive Producer'),(8699,11371,1,'Director of Photography'),(8699,39993,6,'Music'),(8699,41039,3,'Producer'),(8699,41076,3,'Executive Producer'),(8699,41079,5,'Editor'),(8699,55710,2,'Director'),(769,1032,2,'Director'),(769,1032,4,'Screenplay'),(769,2242,3,'Casting'),(769,3661,5,'Editor'),(769,3769,1,'Director of Photography'),(769,4188,7,'Set Decoration'),(769,10573,1,'First Assistant Camera'),(769,6866,3,'Production Accountant'),(769,7163,4,'Screenplay'),(769,7163,4,'Book'),(769,7170,3,'Executive Producer'),(769,7531,2,'First Assistant Director'),(769,7493,6,'Assistant Sound Editor'),(769,9619,6,'Supervising Sound Editor'),(769,9178,7,'Production Design'),(769,11113,1,'Camera Operator'),(769,11472,3,'Producer'),(769,11473,3,'Associate Producer'),(769,11473,3,'Unit Production Manager'),(769,11474,5,'Editor'),(769,11475,7,'Art Direction'),(769,11476,8,'Costume Design'),(769,15426,3,'Casting Assistant'),(769,16551,8,'Hairstylist'),(769,16551,8,'Makeup Artist'),(769,18127,2,'Script Supervisor'),(769,18857,6,'Production Sound Mixer'),(769,19460,7,'Title Designer'),(769,32490,8,'Hairstylist'),(769,92386,5,'Dialogue Editor'),(769,99426,5,'Dialogue Editor'),(769,112576,5,'First Assistant Editor'),(769,142162,9,'Stunt Coordinator'),(769,388770,5,'Dialogue Editor'),(769,543384,6,'Assistant Sound Editor'),(769,983118,1,'Steadicam Operator'),(769,1078050,7,'Title Designer'),(769,1308375,6,'Foley Editor'),(769,1378068,8,'Makeup Artist'),(769,1400072,6,'Sound Re-Recording Mixer'),(769,1406756,5,'Assistant Editor'),(769,1407027,1,'Still Photographer'),(769,1411523,9,'Special Effects'),(769,1414994,7,'Property Master'),(769,1437273,8,'Hairstylist'),(769,1449180,11,'Chief Lighting Technician'),(769,1458527,8,'Makeup Artist'),(769,1458528,7,'Construction Coordinator'),(769,1458530,9,'Sound Recordist'),(769,1458531,5,'Dialogue Editor'),(769,1458533,6,'Music Editor'),(769,1458534,9,'Unit Publicist'),(769,1458535,3,'Location Manager'),(769,1546902,6,'Boom Operator'),(769,1620010,6,'Foley Editor'),(769,1701297,2,'Second Assistant Director'),(769,1701310,8,'Assistant Costume Designer'),(769,1762315,6,'ADR Editor'),(769,1762317,6,'Assistant Sound Editor'),(769,1762320,6,'Assistant Sound Editor'),(769,1762322,8,'Assistant Costume Designer'),(769,1762323,8,'Wardrobe Supervisor'),(769,1762325,1,'Key Grip'),(769,1762328,3,'Production Office Coordinator'),(769,1762329,7,'Set Dresser'),(769,1762331,9,'Transportation Captain'),(769,1762332,9,'Transportation Co-Captain'),(111,852,5,'Editor'),(111,8346,2,'Assistant Director'),(111,1150,2,'Director'),(111,1151,3,'Producer'),(111,1152,4,'Screenplay'),(111,1153,1,'Director of Photography'),(111,1154,6,'Original Music Composer'),(111,1155,7,'Production Design'),(111,1156,3,'Casting'),(111,1157,5,'Editor'),(111,10632,9,'Stunts'),(111,5634,8,'Costume Design'),(111,9337,8,'Hairstylist'),(111,11882,3,'Casting'),(111,13347,4,'Novel'),(111,13436,8,'Makeup Artist'),(111,23702,7,'Art Direction'),(111,26988,9,'Special Effects'),(111,34101,9,'Stunts'),(111,57652,3,'Executive Producer'),(111,43010,9,'Stunts'),(111,61838,9,'Stunts'),(111,92479,9,'Stunts'),(111,75250,8,'Set Costumer'),(111,161787,9,'Stunts'),(111,166543,9,'Stunts'),(111,957760,5,'Assistant Editor'),(111,958383,7,'Set Decoration'),(111,1027067,8,'Hairstylist'),(111,1081358,8,'Set Costumer'),(111,1195390,9,'Projection'),(111,1354109,3,'Unit Production Manager'),(111,1403399,9,'Special Effects'),(111,1404230,1,'Still Photographer'),(111,1407197,6,'ADR & Dubbing'),(111,1424000,9,'Thanks'),(111,1475003,2,'Assistant Director'),(111,1549025,9,'Stunts'),(111,1554342,8,'Set Costumer'),(111,1609399,6,'Supervising Sound Editor'),(111,1628600,8,'Set Costumer'),(111,1728594,9,'Stunts'),(746,7202,1,'Director of Photography'),(746,1155,7,'Production Design'),(746,2721,3,'Producer'),(746,3056,3,'Producer'),(746,3078,6,'Original Music Composer'),(746,4956,2,'Director'),(746,4956,4,'Screenplay'),(746,5819,1,'Still Photographer'),(746,11386,8,'Costume Design'),(746,11379,4,'Screenplay'),(746,11380,3,'Producer'),(746,11381,3,'Producer'),(746,11382,6,'Original Music Composer'),(746,11383,5,'Editor'),(746,11384,6,'Sound Designer'),(746,11385,6,'Sound Designer'),(746,11387,4,'Screenplay'),(746,11388,7,'Production Design'),(746,11400,4,'Author'),(746,11903,3,'Casting'),(746,23364,7,'Art Direction'),(746,25061,7,'Art Direction'),(746,105330,9,'Special Effects'),(746,550631,8,'Hair Designer'),(746,1076281,6,'Music'),(746,1165239,7,'Art Direction'),(746,1272361,2,'Assistant Director'),(746,1343811,3,'Production Supervisor'),(746,1348145,9,'Title Graphics'),(746,1393786,3,'Production Manager'),(746,1404200,8,'Makeup Artist'),(746,1409764,5,'Assistant Editor'),(746,1574576,9,'Post Production Supervisor'),(746,1656603,2,'Continuity'),(746,1699004,9,'Unit Publicist'),(9416,66,3,'Executive Producer'),(9416,3960,1,'Director of Photography'),(9416,9217,6,'Original Music Composer'),(9416,12892,4,'Screenplay'),(9416,12893,4,'Screenplay'),(9416,13718,3,'Producer'),(9416,11091,2,'Director'),(9416,58690,3,'Producer'),(7345,1809,5,'Editor'),(7345,2950,1,'Director of Photography'),(7345,2997,3,'Executive Producer'),(7345,4762,4,'Screenplay'),(7345,4762,3,'Producer'),(7345,4762,2,'Director'),(7345,4769,3,'Producer'),(7345,4770,3,'Producer'),(7345,4772,3,'Casting'),(7345,5632,7,'Production Design'),(7345,8680,7,'Set Decoration'),(7345,9624,9,'Stunt Coordinator'),(7345,17863,6,'Music Supervisor'),(7345,34854,9,'Thanks'),(7345,40471,8,'Costume Design'),(7345,52563,4,'Novel'),(7345,54758,3,'Executive Producer'),(7345,67695,6,'Music Editor'),(7345,74333,6,'Original Music Composer'),(7345,91133,9,'Thanks'),(7345,958921,7,'Art Direction'),(7345,1102140,2,'Assistant Director'),(7345,1125158,3,'Production Supervisor'),(7345,1177850,1,'Still Photographer'),(7345,1324652,1,'Still Photographer'),(7345,1329417,8,'Makeup Department Head'),(7345,1339432,9,'Post Production Supervisor'),(7345,1341860,8,'Costume Supervisor'),(7345,1345635,2,'Script Supervisor'),(7345,1395902,11,'Lighting Technician'),(7345,1408293,8,'Hair Department Head'),(7345,1439431,5,'Color Timer'),(7345,1463287,2,'Assistant Director'),(7345,1531362,11,'Rigging Gaffer'),(7345,1531865,9,'Stunt Coordinator'),(7345,1552521,9,'Stunts'),(7345,1651762,9,'Post Production Supervisor'),(9779,1527,1,'Director of Photography'),(9779,1899,3,'Producer'),(9779,2120,6,'Original Music Composer'),(9779,7035,5,'Editor'),(9779,22061,7,'Art Direction'),(9779,57678,4,'Author'),(9779,29009,2,'Director'),(9779,47285,3,'Producer'),(9779,47286,3,'Producer'),(9779,59186,4,'Author'),(9779,59187,4,'Author'),(9779,59973,3,'Producer'),(9779,74038,3,'Executive Producer'),(9779,66963,3,'Executive Producer'),(9779,74039,3,'Executive Producer'),(2140,59,4,'Screenplay'),(2140,59,3,'Producer'),(2140,61,4,'Screenplay'),(2140,997,1,'Director of Photography'),(2140,1966,7,'Production Design'),(2140,7045,6,'Original Music Composer'),(2140,21931,2,'Director'),(2140,21932,3,'Producer'),(2140,21933,3,'Producer'),(2140,21934,6,'Original Music Composer'),(2140,21935,5,'Editor'),(2140,21936,3,'Casting'),(2140,21937,3,'Casting'),(2140,21938,3,'Casting'),(2140,21939,3,'Casting'),(2140,21940,8,'Costume Design'),(2140,21941,8,'Costume Design'),(590,468,2,'Director'),(590,471,7,'Production Design'),(590,1551,6,'Original Music Composer'),(590,2485,3,'Casting'),(590,2997,3,'Producer'),(590,3285,1,'Director of Photography'),(590,5493,8,'Costume Design'),(590,6998,7,'Art Direction'),(590,6999,7,'Set Decoration'),(590,8401,3,'Producer'),(590,8401,3,'Executive Producer'),(590,8402,4,'Novel'),(590,8403,4,'Screenplay'),(590,8448,3,'Producer'),(590,8449,3,'Producer'),(590,8307,5,'Editor'),(590,8450,3,'Casting'),(590,1116795,6,'Music'),(9655,7200,3,'Producer'),(9655,9645,1,'Director of Photography'),(9655,12940,5,'Editor'),(9655,40589,4,'Author'),(9655,46324,6,'Original Music Composer'),(9655,58375,2,'Director'),(9655,58376,3,'Producer'),(9655,58376,4,'Author'),(9655,1546584,7,'Lead Painter'),(1268,2236,3,'Producer'),(1268,2238,3,'Producer'),(1268,16356,2,'Director'),(1268,16357,4,'Screenplay'),(1268,16358,4,'Story'),(1268,16359,4,'Screenplay'),(1268,16360,3,'Producer'),(1268,16361,1,'Director of Photography'),(1268,16362,5,'Editor'),(1268,16363,3,'Casting'),(1268,16364,7,'Production Design'),(1268,16365,8,'Makeup Artist'),(1268,16366,8,'Makeup Department Head'),(1268,16367,6,'Sound Editor'),(1268,16368,6,'Music Editor'),(1268,16369,9,'Special Effects'),(1268,16370,9,'Special Effects Coordinator'),(1268,16371,10,'Visual Effects'),(1268,16347,9,'Stunt Coordinator'),(1268,16372,9,'Stunts'),(1268,16463,6,'Music'),(5123,943,1,'Director of Photography'),(5123,2031,3,'Casting'),(5123,2184,3,'Producer'),(5123,2241,5,'Editor'),(5123,2532,3,'Casting'),(5123,2867,7,'Production Design'),(5123,3658,3,'Executive Producer'),(5123,3658,3,'Unit Production Manager'),(5123,10295,4,'Screenplay'),(5123,9989,6,'Original Music Composer'),(5123,41289,3,'Executive Producer'),(5123,14692,4,'Screenplay'),(5123,14692,4,'Story'),(5123,39594,7,'Art Direction'),(5123,41285,2,'Director'),(5123,41286,3,'Executive Producer'),(5123,41287,3,'Executive Producer'),(5123,41288,3,'Executive Producer'),(5123,60194,7,'Set Decoration'),(5123,1311133,8,'Costume Design'),(5123,1347761,2,'Script Supervisor'),(5123,1353527,4,'Story'),(5123,1353528,8,'Makeup Artist'),(5123,1353529,8,'Hairstylist'),(5123,1407210,3,'Location Manager'),(5123,1599010,3,'Production Supervisor'),(5123,1662777,3,'Casting Associate'),(5123,1740487,7,'Title Designer'),(5123,1778351,7,'Location Scout'),(5123,1781846,3,'Associate Producer'),(5123,1781848,3,'Casting Associate'),(4518,1251,1,'Director of Photography'),(4518,2236,3,'Producer'),(4518,2238,3,'Producer'),(4518,3050,5,'Editor'),(4518,5330,7,'Art Direction'),(4518,7791,7,'Set Decoration'),(4518,8943,9,'Special Effects Coordinator'),(4518,9160,6,'Music Editor'),(4518,13009,8,'Costume Design'),(4518,11002,7,'Production Design'),(4518,16343,6,'Supervising Sound Editor'),(4518,29418,3,'Casting'),(4518,29419,3,'Casting'),(4518,37630,2,'Director'),(4518,37631,4,'Screenplay'),(4518,37756,3,'Producer'),(4518,37757,6,'Original Music Composer'),(4518,10878,5,'First Assistant Editor'),(4518,71577,7,'Set Designer'),(4518,122274,10,'Visual Effects Supervisor'),(4518,1106167,9,'Stunt Coordinator'),(4518,1181554,1,'Still Photographer'),(4518,1332186,8,'Makeup Artist'),(4518,1332186,8,'Hairstylist'),(4518,1342592,9,'Scenic Artist'),(4518,1393119,6,'Sound Re-Recording Mixer'),(4518,1398085,9,'Property Master'),(4518,1416447,8,'Hairstylist'),(4518,1416447,8,'Makeup Artist'),(4518,1425481,6,'Sound Re-Recording Mixer'),(4518,1429626,8,'Hairstylist'),(4518,1429627,8,'Hairstylist'),(4518,1429628,8,'Hairstylist'),(4518,1429629,8,'Hairstylist'),(4518,1429631,7,'Art Department Coordinator'),(4518,1429632,7,'Assistant Art Director'),(4518,1429633,7,'Sculptor'),(4518,1429634,7,'Sculptor'),(4518,1429635,1,'Camera Operator'),(4518,1429636,1,'Camera Operator'),(4518,1429638,11,'Gaffer'),(4518,1429639,9,'Second Unit Cinematographer'),(4518,1429641,5,'First Assistant Editor'),(4518,1429642,9,'Transportation Coordinator'),(4518,1429643,2,'Script Supervisor'),(4518,1429644,9,'Choreographer'),(4518,1429645,9,'Unit Publicist'),(4518,1429646,3,'Location Manager'),(6116,21677,3,'Producer'),(6116,29418,3,'Casting'),(6116,29419,3,'Casting'),(6116,47974,2,'Director'),(6116,47974,3,'Producer'),(6116,47976,4,'Idea'),(6116,47977,4,'Screenplay'),(6116,47978,3,'Producer'),(6116,47979,3,'Producer'),(6116,47981,1,'Director of Photography'),(6116,47982,5,'Editor'),(278,153,6,'Original Music Composer'),(278,151,1,'Director of Photography'),(278,1317,8,'Key Hair Stylist'),(278,2026,7,'Art Direction'),(278,3027,4,'Novel'),(278,3965,3,'Casting'),(278,4027,2,'Director'),(278,4027,4,'Writer'),(278,4028,3,'Producer'),(278,6581,5,'Editor'),(278,6583,3,'Casting'),(278,6584,7,'Production Design'),(278,4054,3,'Executive Producer'),(278,4054,3,'Unit Production Manager'),(278,5710,8,'Costume Design'),(278,6801,7,'Set Decoration'),(278,7538,6,'Music Editor'),(278,40120,1,'Grip'),(278,46347,3,'Executive Producer'),(278,61381,3,'Production Supervisor'),(278,74823,2,'Script Supervisor'),(278,77295,2,'Assistant Director'),(278,91941,9,'Unit Publicist'),(278,106117,2,'Assistant Director'),(278,108147,11,'Best Boy Electric'),(278,127314,9,'Stunt Coordinator'),(278,230436,6,'ADR & Dubbing'),(278,237921,9,'Stunts'),(278,957990,8,'Makeup Artist'),(278,1123794,2,'Assistant Director'),(278,1185588,9,'Transportation Captain'),(278,1278542,1,'Aerial Camera'),(278,1311828,9,'Special Effects'),(278,1319490,8,'Makeup Artist'),(278,1325119,6,'Additional Soundtrack'),(278,1376818,6,'Foley'),(278,1378229,6,'Boom Operator'),(278,1392236,7,'Construction Coordinator'),(278,1392250,9,'Transportation Coordinator'),(278,1400821,10,'Visual Effects Producer'),(278,1401262,9,'Stunts'),(278,1401997,11,'Gaffer'),(278,1405708,7,'Set Designer'),(278,1413169,6,'Scoring Mixer'),(278,1424155,6,'ADR Supervisor'),(278,1432028,3,'Location Manager'),(278,1432028,3,'Production Supervisor'),(278,1439690,6,'Sound Editor'),(278,1455403,6,'Supervising Sound Editor'),(278,1464521,11,'Rigging Gaffer'),(278,1470182,8,'Hairstylist'),(278,1541839,6,'ADR & Dubbing'),(278,1546115,6,'Production Sound Mixer'),(278,1549209,6,'Orchestrator'),(278,1550237,9,'Sound Recordist'),(278,1551320,9,'Sound Recordist'),(278,1552549,5,'Color Timer'),(278,1555028,9,'Cinematography'),(278,1558250,5,'Assistant Editor'),(278,1573081,9,'Cinematography'),(278,1611791,9,'Projection'),(278,1621232,9,'Propmaker'),(278,1712066,1,'Still Photographer'),(278,1771822,7,'Art Department Assistant'),(278,1771823,7,'Assistant Art Director'),(278,1771824,7,'Construction Foreman'),(278,1771825,7,'Painter'),(278,1771827,7,'Standby Painter'),(278,1771830,1,'First Assistant Camera'),(278,1771831,1,'Key Grip'),(278,1771832,1,'Steadicam Operator'),(278,1771834,8,'Seamstress'),(278,1771836,8,'Set Dressing Artist'),(278,1771838,9,'Carpenter'),(278,1771839,9,'Craft Service'),(278,1771840,9,'Driver'),(278,1771841,9,'Executive Music Producer'),(278,1771842,9,'Loader'),(278,1771843,9,'Picture Car Coordinator'),(278,1771844,3,'Production Office Coordinator'),(278,1771847,7,'Property Master'),(278,1771850,9,'Set Production Assistant'),(278,1771855,9,'Video Assist Operator'),(278,1771858,5,'First Assistant Editor'),(278,1771859,11,'Electrician'),(278,1771861,11,'Rigging Grip'),(278,1771862,3,'Production Accountant'),(278,1771864,6,'Assistant Sound Editor'),(278,1771866,4,'Storyboard'),(278,1771867,9,'Thanks'),(9290,7728,6,'Original Music Composer'),(9290,18254,2,'Director'),(9290,57147,4,'Characters'),(9290,57147,3,'Producer'),(9290,57151,4,'Screenplay'),(9290,57153,3,'Producer'),(9290,57154,3,'Producer'),(9290,57156,3,'Producer'),(9290,57157,3,'Executive Producer'),(9290,57159,3,'Executive Producer'),(9290,57160,3,'Executive Producer'),(9290,57161,1,'Director of Photography'),(9290,57162,1,'Director of Photography'),(9290,57164,5,'Editor'),(8976,1593,3,'Casting'),(8976,6412,7,'Set Decoration'),(8976,15315,6,'Music Editor'),(8976,24248,2,'Director'),(8976,24256,1,'Director of Photography'),(8976,41587,3,'Producer'),(8976,39993,6,'Original Music Composer'),(8976,52088,7,'Production Design'),(8976,52016,8,'Costume Design'),(8976,56459,4,'Author'),(8976,56461,3,'Producer'),(8976,61484,5,'Editor'),(8976,66569,7,'Art Direction'),(8976,86199,6,'Music Supervisor'),(8976,999716,9,'Stunt Coordinator'),(8976,1087512,6,'Music Editor'),(8976,1293529,1,'Still Photographer'),(8976,1342669,2,'Script Supervisor'),(8976,1367666,6,'Sound Editor'),(8976,1387265,6,'Music Editor'),(8976,1392901,5,'Dialogue Editor'),(8976,1394131,6,'Sound Re-Recording Mixer'),(8976,1399861,6,'Sound Re-Recording Mixer'),(8976,1399877,1,'Steadicam Operator'),(8976,1401353,8,'Hair Department Head'),(8976,1412228,6,'Sound mixer'),(8976,1412452,6,'Supervising Sound Editor'),(8976,1412702,6,'Sound Effects Editor'),(8976,1444953,8,'Makeup Department Head'),(8976,1538138,8,'Costume Supervisor'),(8976,1538139,3,'Production Coordinator'),(8976,1538140,3,'Production Coordinator'),(8976,1538146,6,'Music Supervisor'),(9469,313,1,'Director of Photography'),(9469,548,7,'Production Design'),(9469,4446,3,'Producer'),(9469,5281,4,'Screenplay'),(9469,5281,3,'Producer'),(9469,5281,2,'Director'),(9469,5289,5,'Editor'),(9469,27039,3,'Casting'),(9469,27041,8,'Costume Design'),(9469,20838,7,'Set Decoration'),(9469,57683,6,'Music'),(9469,57684,6,'Music'),(9469,548849,7,'Art Direction'),(9469,1614965,1,'Director of Photography'),(1909,1776,3,'Producer'),(1909,3219,3,'Producer'),(1909,7714,6,'Original Music Composer'),(1909,12509,5,'Editor'),(1909,25140,7,'Production Design'),(1909,10829,3,'Producer'),(1909,25210,4,'Screenplay'),(1909,25210,2,'Director'),(1909,25211,6,'Original Music Composer'),(1909,25212,1,'Director of Photography'),(1909,23905,3,'Casting'),(1909,25213,8,'Costume Design'),(8051,312,6,'Original Music Composer'),(8051,2216,6,'Sound Designer'),(8051,2950,1,'Director of Photography'),(8051,4762,2,'Director'),(8051,4762,4,'Screenplay'),(8051,4762,3,'Producer'),(8051,4769,3,'Producer'),(8051,4770,3,'Producer'),(8051,4772,3,'Casting'),(8051,21747,7,'Production Design'),(8051,33455,7,'Art Direction'),(8051,40471,8,'Costume Design'),(8051,53683,5,'Editor'),(8051,1378828,6,'Sound Designer'),(8051,1400906,6,'Sound Designer'),(9352,3563,7,'Production Design'),(9352,4844,3,'Unit Production Manager'),(9352,4844,3,'Co-Producer'),(9352,4854,3,'Associate Producer'),(9352,4856,3,'Associate Producer'),(9352,8858,3,'Executive Producer'),(9352,11457,7,'Art Direction'),(9352,12228,3,'Casting'),(9352,15314,8,'Key Makeup Artist'),(9352,17164,5,'Editor'),(9352,33933,7,'Art Direction'),(9352,21079,6,'Supervising Sound Editor'),(9352,23739,6,'Original Music Composer'),(9352,25729,3,'Local Casting'),(9352,28240,1,'Director of Photography'),(9352,54249,3,'Producer'),(9352,54251,3,'Executive Producer'),(9352,113043,6,'Foley'),(9352,113048,9,'Sound Recordist'),(9352,113087,6,'Sound Engineer'),(9352,57132,3,'Producer'),(9352,57405,2,'Director'),(9352,57405,4,'Writer'),(9352,57406,3,'Producer'),(9352,57406,4,'Writer'),(9352,57406,2,'Co-Director'),(9352,57407,3,'Producer'),(9352,57407,4,'Writer'),(9352,57407,2,'Co-Director'),(9352,57601,3,'Executive Producer'),(9352,63533,3,'Casting'),(9352,91133,9,'Post Production Supervisor'),(9352,96389,9,'Second Unit Cinematographer'),(9352,116076,10,'Animation Director'),(9352,117217,4,'Storyboard'),(9352,200670,10,'3D Artist'),(9352,223128,3,'Production Coordinator'),(9352,548431,9,'Cableman'),(9352,570136,2,'Script Supervisor'),(9352,960832,7,'Art Direction'),(9352,1085296,3,'Casting Associate'),(9352,1107759,3,'Location Manager'),(9352,1181409,3,'Casting Assistant'),(9352,1304249,8,'Makeup Artist'),(9352,1322483,3,'Casting'),(9352,1322483,8,'Costume Design'),(9352,1323281,8,'Costume Supervisor'),(9352,1328822,7,'Assistant Art Director'),(9352,1335156,5,'Color Timer'),(9352,1373172,1,'Camera Operator'),(9352,1378756,6,'Sound Editor'),(9352,1391692,10,'Visual Effects Producer'),(9352,1392249,9,'Transportation Coordinator'),(9352,1394768,1,'Steadicam Operator'),(9352,1398908,7,'Art Department Coordinator'),(9352,1398914,7,'Leadman'),(9352,1401606,8,'Hair Department Head'),(9352,1404234,9,'Picture Car Coordinator'),(9352,1404244,1,'Helicopter Camera'),(9352,1405220,9,'Unit Publicist'),(9352,1411526,10,'Visual Effects Supervisor'),(9352,1416155,6,'Sound Re-Recording Mixer'),(9352,1434575,6,'Sound Mixer'),(9352,1461183,6,'Supervising Music Editor'),(9352,1469626,7,'Set Decoration'),(9352,1484175,7,'Set Decoration'),(9352,1516265,8,'Costume Design'),(9352,1530322,6,'Foley Editor'),(9352,1551675,3,'Researcher'),(9352,1552051,3,'Production Supervisor'),(9352,1552396,5,'Dialogue Editor'),(9352,1554878,7,'Set Dresser'),(9352,1555670,8,'Key Hair Stylist'),(9352,1558210,9,'Production Controller'),(9352,1573435,9,'Driver'),(9352,1576007,9,'Pilot'),(9352,1577475,6,'Assistant Sound Editor'),(9352,1581745,2,'Second Assistant Director'),(9352,1586327,3,'Casting'),(9352,1586329,7,'Set Designer'),(9352,1586330,7,'Standby Painter'),(9352,1586331,1,'First Assistant Camera'),(9352,1586332,1,'Key Grip'),(9352,1586333,1,'Still Photographer'),(9352,1586334,8,'Assistant Costume Designer'),(9352,1586335,8,'Hairstylist'),(9352,1586336,8,'Seamstress'),(9352,1586337,1,'Camera Loader'),(9352,1586338,9,'Post Production Assistant'),(9352,1586339,9,'Property Master'),(9352,1586340,9,'Scenic Artist'),(9352,1586342,9,'Special Effects Coordinator'),(9352,1586343,9,'Stand In'),(9352,1586345,9,'Stunt Coordinator'),(9352,1586347,9,'Stunts'),(9352,1586381,9,'Supervising Animator'),(9352,1586382,9,'Transportation Captain'),(9352,1586385,2,'First Assistant Director'),(9352,1586386,5,'First Assistant Editor'),(9352,1586387,11,'Best Boy Electric'),(9352,1586388,11,'Electrician'),(9352,1586389,11,'Gaffer'),(9352,1586390,11,'Rigging Gaffer'),(9352,1586391,11,'Rigging Grip'),(9352,1586392,3,'Production Accountant'),(9352,1586393,3,'Production Manager'),(9352,1586394,6,'ADR & Dubbing'),(9352,1586395,6,'Boom Operator'),(9352,1586396,6,'Music Supervisor'),(9352,1586397,6,'Orchestrator'),(9352,1586398,6,'Production Sound Mixer'),(9352,1586399,6,'Sound Effects Editor'),(9352,1586400,10,'Digital Compositors'),(9352,1586401,10,'Visual Effects'),(9352,1733142,5,'Negative Cutter'),(9352,1741194,6,'Musician'),(9352,1768426,3,'Script Researcher'),(9352,1804884,1,'Dolly Grip'),(9352,1804885,1,'Grip'),(9352,1823512,2,'Third Assistant Director'),(9352,1823519,3,'Assistant Production Coordinator'),(1831,8221,7,'Art Direction'),(1831,68602,3,'Producer'),(1831,1262,3,'Casting'),(1831,5506,1,'Director of Photography'),(1831,6875,5,'Editor'),(1831,9041,7,'Production Design'),(1831,11708,3,'Producer'),(1831,19304,2,'Director'),(1831,19305,4,'Screenplay'),(1831,19308,3,'Producer'),(1831,19309,7,'Set Decoration'),(1831,19310,8,'Costume Design'),(9787,1254,3,'Executive Producer'),(9787,4319,4,'Author'),(9787,5506,1,'Director of Photography'),(9787,5666,6,'Original Music Composer'),(9787,7467,3,'Executive Producer'),(9787,19850,2,'Director'),(9787,23541,3,'Executive Producer'),(9787,67846,5,'Editor'),(9787,69414,3,'Producer'),(6978,511,3,'Producer'),(6978,1060,1,'Director of Photography'),(6978,1732,5,'Editor'),(6978,7186,7,'Production Design'),(6978,8751,5,'Editor'),(6978,9579,3,'Executive Producer'),(6978,11770,2,'Director'),(6978,11770,6,'Original Music Composer'),(6978,11903,3,'Casting'),(6978,15445,6,'Original Music Composer'),(6978,18179,4,'Adaptation'),(6978,21725,3,'Executive Producer'),(6978,27583,5,'Editor'),(6978,53025,4,'Screenplay'),(6978,53026,7,'Art Direction'),(6978,94089,3,'Producer'),(6978,165827,3,'Producer'),(6978,1582654,4,'Screenplay'),(1770,5581,6,'Original Music Composer'),(1770,7789,7,'Art Direction'),(1770,10644,7,'Production Design'),(1770,8969,1,'Director of Photography'),(1770,9021,3,'Producer'),(1770,9024,7,'Production Design'),(1770,9027,8,'Costume Design'),(1770,17016,2,'Director'),(1770,17016,4,'Screenplay'),(1770,12685,5,'Editor'),(1770,18984,5,'Editor'),(1770,18986,7,'Production Design'),(1770,18988,7,'Production Design'),(1770,18989,7,'Production Design'),(1770,18991,6,'Production Sound Mixer'),(8988,2952,3,'Casting'),(8988,5779,7,'Production Design'),(8988,2836,2,'Director'),(8988,2836,3,'Producer'),(8988,2836,4,'Writer'),(8988,2997,3,'Producer'),(8988,3989,8,'Costume Design'),(8988,6488,3,'Producer'),(8988,8969,1,'Director of Photography'),(8988,11801,7,'Set Decoration'),(8988,11098,6,'Original Music Composer'),(8988,11880,5,'Editor'),(8988,120606,3,'Producer'),(8988,960673,7,'Art Direction'),(8988,1223862,4,'Writer'),(8988,1389611,7,'Art Department Coordinator'),(8988,1390538,2,'Script Supervisor'),(8988,1398982,9,'Unit Publicist'),(8988,1400539,9,'Unit Publicist'),(9903,284,3,'Executive Producer'),(9903,1225,6,'Original Music Composer'),(9903,4232,3,'Producer'),(9903,4190,8,'Costume Design'),(9903,5306,2,'Director'),(9903,5325,3,'Producer'),(9903,5327,5,'Editor'),(9903,6048,3,'Producer'),(9903,15426,3,'Casting'),(9903,16425,1,'Director of Photography'),(9903,17635,3,'Casting'),(9903,39594,7,'Art Direction'),(9903,60189,3,'Producer'),(9903,60188,4,'Book'),(9903,60185,4,'Screenplay'),(9903,60186,3,'Co-Producer'),(9903,60190,3,'Associate Producer'),(9903,60187,3,'Executive Producer'),(9903,60192,3,'Co-Producer'),(9903,60191,3,'Producer'),(9903,60193,7,'Production Design'),(9903,60194,7,'Set Decoration'),(9903,72110,3,'Production Supervisor'),(9903,1043368,9,'Special Effects Coordinator'),(9903,1122210,7,'Art Department Coordinator'),(9903,1418398,1,'Camera Operator'),(9903,1418398,1,'Steadicam Operator'),(9903,1431630,1,'Camera Operator'),(9903,1431630,1,'Steadicam Operator'),(9903,1464541,2,'Script Supervisor'),(9903,1526823,6,'Music Supervisor'),(9903,1538430,1,'Still Photographer'),(9903,1552201,6,'Sound Mixer'),(9903,1657380,8,'Hair Department Head'),(9912,123,3,'Executive Producer'),(9912,1221,3,'Casting'),(9912,1315,5,'Editor'),(9912,54490,7,'Production Design'),(9912,16614,7,'Production Design'),(9912,21370,4,'Author'),(9912,21370,2,'Director'),(9912,21370,3,'Producer'),(9912,22103,1,'Director of Photography'),(9912,25292,3,'Producer'),(9912,28156,6,'Original Music Composer'),(9912,40837,8,'Costume Design'),(9912,38696,3,'Line Producer'),(9912,38701,7,'Art Direction'),(9912,60057,7,'Set Decoration'),(9912,60357,3,'Executive Producer'),(9912,60356,3,'Executive Producer'),(9912,60355,3,'Line Producer'),(9912,60358,3,'Executive Producer'),(9912,60360,3,'Executive Producer'),(9912,60359,3,'Producer'),(9912,60362,3,'Casting'),(9912,60363,7,'Art Direction'),(9912,60364,7,'Set Decoration'),(9912,60365,3,'Casting'),(9912,60366,8,'Costume Design'),(9067,2182,3,'Producer'),(9067,2185,3,'Producer'),(9067,5912,6,'Music'),(9067,7217,4,'Screenplay'),(9067,13432,5,'Editor'),(9067,42119,1,'Director of Photography'),(9067,56891,2,'Director'),(9067,56892,3,'Producer'),(9067,1356774,10,'Animation'),(9067,1447400,7,'Background Designer'),(8338,1302,3,'Casting'),(8338,4583,3,'Producer'),(8338,6057,8,'Costume Design'),(8338,7800,3,'Casting'),(8338,8557,2,'Director'),(8338,8562,3,'Producer'),(8338,8565,3,'Producer'),(8338,8577,1,'Director of Photography'),(8338,8578,5,'Editor'),(8338,8579,7,'Production Design'),(8338,20173,4,'Screenplay'),(8338,20423,3,'Executive Producer'),(8338,54566,4,'Novel'),(8338,72758,3,'Producer'),(8338,65455,3,'Executive Producer'),(8338,72760,3,'Executive Producer'),(8338,72761,3,'Executive Producer'),(8338,72762,3,'Executive Producer'),(8338,136074,3,'Line Producer'),(8338,141743,3,'Producer'),(8338,563192,3,'Producer'),(8338,1027125,3,'Producer'),(8338,1027126,3,'Producer'),(8338,1041958,3,'Producer'),(8338,1120532,3,'Producer'),(8338,1120534,3,'Line Producer'),(8338,1120535,6,'Original Music Composer'),(8338,1176214,7,'Art Direction'),(8338,1361529,3,'Associate Producer'),(8338,1429596,6,'Sound Designer'),(8338,1877087,7,'Production Design'),(9729,5359,6,'Original Music Composer'),(9729,12068,4,'Novel'),(9729,20182,3,'Producer'),(9729,29218,8,'Key Hair Stylist'),(9729,35332,5,'Editor'),(9729,47291,3,'Executive Producer'),(9729,47292,3,'Executive Producer'),(9729,55612,1,'Director of Photography'),(9729,56205,4,'Screenplay'),(9729,56205,2,'Director'),(9729,56205,3,'Executive Producer'),(9729,70090,3,'Executive Producer'),(9729,100120,6,'Sound Re-Recording Mixer'),(9729,558225,8,'Costume Design'),(9729,958043,7,'Production Design'),(9729,1066776,6,'Music Supervisor'),(9729,1322465,8,'Assistant Costume Designer'),(9729,1390382,6,'Music Editor'),(9729,1394104,2,'Script Supervisor'),(9729,1421657,1,'Still Photographer'),(9729,1537718,3,'Production Manager'),(9729,1537719,3,'Production Coordinator'),(9729,1537720,3,'Production Coordinator'),(9729,1537721,1,'Still Photographer'),(9729,1537722,6,'Sound Re-Recording Mixer'),(859,1301,1,'Director of Photography'),(859,1301,5,'Editor'),(859,1528,6,'Original Music Composer'),(859,3224,2,'Director'),(859,5491,7,'Art Direction'),(859,11386,8,'Costume Design'),(859,11879,4,'Author'),(859,11879,4,'Screenplay'),(859,12952,4,'Screenplay'),(859,12954,3,'Producer'),(859,12955,3,'Producer'),(859,12961,7,'Art Direction'),(168,796,7,'Set Decoration'),(168,2027,6,'Original Music Composer'),(168,1749,2,'Director'),(168,1801,8,'Costume Design'),(168,1788,4,'Screenplay'),(168,1791,3,'Producer'),(168,1791,4,'Screenplay'),(168,2019,4,'Screenplay'),(168,2020,4,'Screenplay'),(168,2024,7,'Art Direction'),(168,2025,7,'Art Direction'),(168,2026,7,'Art Direction'),(168,2026,7,'Production Design'),(168,2031,3,'Casting'),(168,2032,7,'Production Design'),(168,2033,5,'Editor'),(168,9614,1,'Director of Photography'),(1246,4849,6,'Supervising Sound Editor'),(1246,7494,3,'Casting'),(1246,8274,7,'Set Decoration'),(1246,10494,6,'Original Music Composer'),(1246,16483,4,'Screenplay'),(1246,16483,2,'Director'),(1246,16485,3,'Producer'),(1246,16486,3,'Producer'),(1246,16487,3,'Producer'),(1246,16489,1,'Director of Photography'),(1246,16490,5,'Editor'),(1246,16491,3,'Casting'),(1246,16492,7,'Production Design'),(1246,16493,7,'Art Direction'),(1246,16494,7,'Art Direction'),(1246,16495,8,'Costume Design'),(1246,16496,8,'Makeup Artist'),(1246,16497,6,'Music Editor'),(1246,16498,9,'Special Effects'),(1246,16499,10,'Visual Effects Supervisor'),(1246,16500,9,'Stunts'),(1246,16500,9,'Stunt Coordinator'),(1246,207419,3,'Producer'),(4233,409,3,'Producer'),(4233,434,3,'Casting'),(4233,7229,6,'Original Music Composer'),(4233,5140,2,'Director'),(4233,9573,1,'Director of Photography'),(4233,14041,7,'Set Decoration'),(4233,15427,7,'Production Design'),(4233,15428,7,'Art Direction'),(4233,31131,8,'Set Costumer'),(4233,26458,4,'Screenplay'),(4233,26458,4,'Characters'),(4233,35581,3,'Producer'),(4233,27226,5,'Editor'),(4233,35583,8,'Costume Design'),(4233,168214,8,'Makeup Artist'),(4233,1271793,9,'Special Effects Coordinator'),(4233,1316003,8,'Makeup Artist'),(4233,1412330,8,'Set Costumer'),(4233,1435688,8,'Makeup Department Head'),(4233,1458883,8,'Hair Department Head'),(4233,1473981,2,'Script Supervisor'),(4233,1531230,8,'Set Costumer'),(4233,1531232,7,'Art Department Coordinator'),(4233,1531233,8,'Key Hair Stylist'),(4233,1531234,8,'Hairstylist'),(4233,1531235,8,'Makeup Artist'),(2069,601,7,'Production Design'),(2069,13585,3,'Casting'),(2069,8303,3,'Co-Producer'),(2069,14712,6,'Original Music Composer'),(2069,14714,8,'Hairstylist'),(2069,21003,3,'Associate Producer'),(2069,18691,3,'Executive Producer'),(2069,21217,2,'Director'),(2069,21218,4,'Screenplay'),(2069,21219,3,'Producer'),(2069,21220,3,'Producer'),(2069,21221,6,'Original Music Composer'),(2069,21222,1,'Director of Photography'),(2069,21223,5,'Editor'),(2069,21224,9,'Special Effects Coordinator'),(2069,21479,3,'Executive Producer'),(2069,36618,3,'Co-Producer'),(2069,58362,6,'Supervising Sound Editor'),(2069,52341,3,'Local Casting'),(2069,113051,6,'Sound Effects Editor'),(2069,79620,9,'Set Medic'),(2069,114409,3,'Line Producer'),(2069,143924,5,'First Assistant Editor'),(2069,256170,9,'Stunt Coordinator'),(2069,947841,7,'Location Scout'),(2069,957172,7,'Art Direction'),(2069,985774,3,'Unit Production Manager'),(2069,1096416,3,'ADR Voice Casting'),(2069,1128263,2,'Third Assistant Director'),(2069,1223099,6,'Foley Editor'),(2069,1319968,9,'Post Production Supervisor'),(2069,1322139,7,'Draughtsman'),(2069,1327907,7,'Assistant Art Director'),(2069,1338371,6,'Supervising Dialogue Editor'),(2069,1363849,6,'Boom Operator'),(2069,1364410,6,'ADR Editor'),(2069,1364417,6,'Sound Re-Recording Mixer'),(2069,1409712,1,'Camera Operator'),(2069,1409724,9,'Picture Car Coordinator'),(2069,1424151,8,'Makeup Artist'),(2069,1425911,6,'Dolby Consultant'),(2069,1439431,5,'Color Timer'),(2069,1457391,7,'Set Decoration'),(2069,1457392,8,'Costume Design'),(2069,1457393,8,'Key Makeup Artist'),(2069,1457395,2,'Script Supervisor'),(2069,1457897,2,'First Assistant Director'),(2069,1461372,6,'First Assistant Sound Editor'),(2069,1486763,9,'Stand In'),(2069,1513392,3,'Casting Assistant'),(2069,1525209,7,'Art Department Coordinator'),(2069,1556630,6,'Music Editor'),(2069,1564250,6,'Foley'),(2069,1574632,9,'Carpenter'),(2069,1574635,1,'First Assistant Camera'),(2069,1587336,3,'Co-Producer'),(2069,1587337,3,'Executive Producer'),(2069,1587340,7,'Art Department Assistant'),(2069,1587341,7,'Construction Foreman'),(2069,1587342,7,'Painter'),(2069,1587343,1,'Key Grip'),(2069,1587344,1,'Still Photographer'),(2069,1587347,8,'Assistant Costume Designer'),(2069,1587351,7,'Set Dresser'),(2069,1587359,9,'Driver'),(2069,1587360,1,'Camera Loader'),(2069,1587363,9,'Production Controller'),(2069,1587364,9,'Property Master'),(2069,1587365,9,'Scenic Artist'),(2069,1587366,9,'Security'),(2069,1587374,9,'Stunts'),(2069,1587376,9,'Transportation Coordinator'),(2069,1587377,11,'Best Boy Electric'),(2069,1587378,11,'Electrician'),(2069,1587379,11,'Gaffer'),(2069,1587380,3,'Production Accountant'),(2069,1587381,3,'Production Coordinator'),(2069,1587382,3,'Publicist'),(2069,1587383,6,'Music Supervisor'),(2069,1587384,6,'Production Sound Mixer'),(2069,1587385,3,'Unit Manager'),(2069,1630809,9,'Marine Coordinator'),(2069,1733132,5,'Negative Cutter'),(2069,1762793,1,'Dolly Grip'),(2069,1835638,7,'Assistant Set Dresser'),(2069,1835639,1,'Grip'),(2069,1836262,2,'Second Assistant Director'),(2069,1836270,6,'Apprentice Sound Editor'),(1788,597,3,'Casting'),(1788,598,3,'Casting'),(1788,599,3,'Casting'),(1788,1728,1,'Director of Photography'),(1788,18378,2,'Director'),(1788,6347,3,'Casting'),(1788,9255,8,'Costume Design'),(1788,10766,5,'Editor'),(1788,35496,4,'Screenplay'),(1788,35497,3,'Producer'),(1788,35498,3,'Producer'),(1788,35499,7,'Production Design'),(1788,35500,7,'Set Decoration'),(1788,1433549,2,'Script Supervisor'),(177,280,2,'Director'),(177,293,1,'Director of Photography'),(177,1528,6,'Original Music Composer'),(177,1530,3,'Casting'),(177,2161,3,'Producer'),(177,2162,3,'Producer'),(177,2163,4,'Writer'),(177,11072,5,'Editor'),(177,11079,7,'Set Decoration'),(177,6392,8,'Costume Design'),(177,10441,7,'Production Design'),(177,1144658,7,'Art Direction'),(3600,719,6,'Supervising Sound Editor'),(3600,1097,3,'Casting'),(3600,9776,9,'Post Production Supervisor'),(3600,11697,3,'Producer'),(3600,11874,3,'Producer'),(3600,15308,6,'Music Supervisor'),(3600,16497,6,'Music Editor'),(3600,16618,9,'Stunt Coordinator'),(3600,19309,7,'Set Decoration'),(3600,20214,7,'Production Design'),(3600,21866,7,'Art Direction'),(3600,21962,6,'Original Music Composer'),(3600,23788,8,'Prosthetic Makeup Artist'),(3600,33255,4,'Characters'),(3600,33256,3,'Producer'),(3600,33279,2,'Director'),(3600,33280,4,'Screenplay'),(3600,33281,3,'Producer'),(3600,33281,3,'Unit Production Manager'),(3600,33282,1,'Director of Photography'),(3600,33283,5,'Editor'),(3600,33284,8,'Costume Design'),(3600,34854,3,'Line Producer'),(3600,55228,6,'Boom Operator'),(3600,57027,2,'First Assistant Director'),(3600,57260,10,'Visual Effects Supervisor'),(3600,61055,7,'Assistant Art Director'),(3600,60947,5,'First Assistant Editor'),(3600,548435,6,'Foley'),(3600,567283,6,'Sound Editor'),(3600,1017789,1,'Camera Operator'),(3600,1181220,9,'Utility Stunts'),(3600,1326170,7,'Art Direction'),(3600,1335062,8,'Set Dressing Artist'),(3600,1341805,7,'Property Master'),(3600,1344278,2,'Script Supervisor'),(3600,1400468,7,'Art Department Coordinator'),(3600,1400542,3,'Production Supervisor'),(3600,1400815,9,'Special Effects Coordinator'),(3600,1404230,1,'Still Photographer'),(3600,1405196,1,'First Assistant Camera'),(3600,1413129,9,'Transportation Captain'),(3600,1420328,3,'Location Manager'),(3600,1424185,9,'Unit Publicist'),(3600,1428227,8,'Set Costumer'),(3600,1433723,10,'Visual Effects'),(3600,1435605,8,'Costume Supervisor'),(3600,1447601,6,'Assistant Sound Editor'),(3600,1471726,6,'Music Supervisor'),(3600,1534218,1,'Steadicam Operator'),(3600,1534220,10,'Visual Effects Coordinator'),(3600,1534222,8,'Key Hair Stylist'),(3600,1548928,10,'Digital Compositors'),(3600,1549066,10,'Special Effects Supervisor'),(3600,1550566,6,'Orchestrator'),(3600,1551213,6,'Sound Mixer'),(3600,1560071,9,'Craft Service'),(3600,1560113,11,'Gaffer'),(3600,1568657,3,'Production Accountant'),(3600,1600101,7,'Production Illustrator'),(3600,1648024,11,'Electrician'),(3600,1717519,8,'Makeup Artist'),(3600,1735493,6,'Sound Engineer'),(3600,1750216,9,'Transportation Co-Captain'),(3600,1752978,5,'Color Timer'),(3600,1786666,7,'Set Designer'),(3600,1792874,7,'Art Department Assistant'),(3600,1792875,7,'Construction Coordinator'),(3600,1792876,7,'Location Scout'),(3600,1792877,1,'Key Grip'),(3600,1792880,8,'Hairstylist'),(3600,1792881,9,'Driver'),(3600,1792882,9,'Propmaker'),(3600,1792883,9,'Set Medic'),(3600,1792884,9,'Stunts'),(3600,1792888,11,'Best Boy Electric'),(3600,1792891,11,'Lighting Technician'),(3600,1792893,3,'Production Coordinator'),(2621,5149,4,'Screenplay'),(2621,5149,2,'Director'),(2621,8862,1,'Director of Photography'),(2621,27530,4,'Screenplay'),(3558,356,1,'Director of Photography'),(3558,366,2,'Director'),(3558,366,4,'Screenplay'),(3558,409,3,'Producer'),(3558,434,3,'Casting'),(3558,931,3,'Producer'),(3558,1920,3,'Executive Producer'),(3558,2947,3,'Co-Producer'),(3558,2947,3,'Unit Production Manager'),(3558,5359,6,'Original Music Composer'),(3558,9360,1,'Still Photographer'),(3558,10365,7,'Production Design'),(3558,19863,7,'Set Designer'),(3558,32796,5,'Editor'),(3558,32793,4,'Novel'),(3558,32793,3,'Associate Producer'),(3558,32794,4,'Screenplay'),(3558,32795,4,'Screenplay'),(3558,32797,8,'Costume Design'),(3558,66692,8,'Hairstylist'),(3558,63293,7,'Art Direction'),(3558,74766,8,'Hair Department Head'),(3558,957368,7,'Set Decoration'),(3558,1002919,8,'Assistant Costume Designer'),(3558,1050930,5,'Dialogue Editor'),(3558,1208437,8,'Makeup Artist'),(3558,1316003,8,'Makeup Artist'),(3558,1317036,6,'Sound Effects Editor'),(3558,1341138,6,'Sound Re-Recording Mixer'),(3558,1377132,1,'Camera Operator'),(3558,1391572,6,'Sound Re-Recording Mixer'),(3558,1402022,7,'Leadman'),(3558,1405717,6,'Supervising Sound Editor'),(3558,1411856,6,'Music Editor'),(3558,1413095,5,'Dialogue Editor'),(3558,1418489,9,'Unit Publicist'),(3558,1435688,8,'Makeup Department Head'),(3558,1453274,8,'Hairstylist'),(3558,1458992,8,'Key Hair Stylist'),(3558,1473981,2,'Script Supervisor'),(3558,1481286,8,'Hairstylist'),(3558,1524757,8,'Hairstylist'),(3558,1559637,9,'Stunt Coordinator'),(3558,1562248,5,'Color Timer'),(3558,1714573,3,'Executive Producer'),(3558,1714583,6,'Boom Operator'),(3558,1714589,7,'Set Designer'),(6478,52035,4,'Screenplay'),(6478,1979,2,'Director'),(6478,1979,4,'Screenplay'),(6478,1979,3,'Producer'),(6478,16732,1,'Director of Photography'),(6478,28157,5,'Editor'),(6478,52036,3,'Producer'),(4935,7879,3,'Executive Producer'),(4935,608,2,'Director'),(4935,608,4,'Screenplay'),(4935,608,3,'Executive Producer'),(4935,627,3,'Producer'),(4935,631,3,'Producer'),(4935,636,6,'Original Music Composer'),(4935,1417,3,'Producer'),(4935,19596,1,'Director of Photography'),(4935,1697,5,'Editor'),(4935,19598,7,'Art Direction'),(4935,19599,10,'Animation'),(4935,19601,10,'Animation'),(4935,40222,4,'Novel'),(4935,40454,3,'Producer'),(4935,40455,7,'Art Direction'),(4935,1456616,10,'Animation Director'),(4935,1456632,10,'Animation'),(4935,1456825,10,'Animation'),(4935,1456826,10,'Animation'),(4935,1460783,10,'Animation Manager'),(1891,1,5,'Editor'),(1891,1,3,'Executive Producer'),(1891,1,4,'Story'),(1891,12401,3,'Producer'),(1891,12401,2,'Assistant Director'),(1891,491,6,'Original Music Composer'),(1891,8337,3,'Casting'),(1891,307,1,'Director of Photography'),(1891,390,3,'Casting'),(1891,665,3,'Producer'),(1891,669,7,'Production Design'),(1891,711,3,'Associate Producer'),(1891,2551,5,'Editor'),(1891,4298,4,'Screenplay'),(1891,5059,7,'Art Direction'),(1891,5061,8,'Costume Design'),(1891,8844,4,'Screenplay'),(1891,7727,10,'Animation'),(1891,7727,9,'Makeup Effects'),(1891,7778,3,'Production Manager'),(1891,8526,7,'Set Decoration'),(1891,9402,9,'Special Effects'),(1891,10880,7,'Art Direction'),(1891,10766,5,'Editor'),(1891,10930,2,'Director'),(1891,21548,10,'Visual Effects'),(1891,29061,8,'Costume Supervisor'),(1891,53587,9,'Stunt Coordinator'),(1891,66251,3,'Production Supervisor'),(1891,68127,6,'Sound Editor'),(1891,75445,9,'Stunts'),(1891,136024,8,'Makeup Artist'),(1891,202711,9,'Stunts'),(1891,948389,3,'Associate Producer'),(1891,964699,9,'Stand In'),(1891,1125548,7,'Art Direction'),(1891,1212168,9,'Stunts'),(1891,1213681,2,'Assistant Director'),(1891,1229106,9,'Stunts'),(1891,1271059,9,'Stunts'),(1891,1336275,6,'Orchestrator'),(1891,1424133,1,'Camera Operator'),(1891,1427545,1,'Still Photographer'),(1891,1548711,3,'Casting'),(1891,1572549,9,'Stunts'),(1891,1572550,10,'Visual Effects'),(1891,1572559,9,'Driver'),(1891,1575391,2,'Assistant Director'),(1891,1588463,11,'Gaffer'),(1891,1629006,9,'Special Effects'),(1891,1784246,8,'Wardrobe Supervisor'),(9737,770,3,'Producer'),(9737,6410,3,'Casting'),(9737,771,3,'Producer'),(9737,865,2,'Director'),(9737,1096,7,'Production Design'),(9737,6668,5,'Editor'),(9737,9989,6,'Original Music Composer'),(9737,11473,3,'Executive Producer'),(9737,11695,3,'Executive Producer'),(9737,23905,3,'Casting'),(9737,20840,4,'Screenplay'),(9737,21792,4,'Story'),(9737,24969,9,'Stunts'),(9737,37434,1,'Director of Photography'),(9737,41898,7,'Set Decoration'),(9737,44991,4,'Screenplay'),(9737,44992,4,'Screenplay'),(9737,59710,8,'Costume Design'),(9737,957803,7,'Art Direction'),(9737,1207311,8,'Makeup Artist'),(9532,561,3,'Casting'),(9532,3193,6,'Supervising Sound Editor'),(9532,21585,3,'Producer'),(9532,21586,3,'Producer'),(9532,25021,8,'Makeup Department Head'),(9532,26981,6,'Original Music Composer'),(9532,27160,8,'Costume Design'),(9532,34887,7,'Set Designer'),(9532,35797,7,'Art Direction'),(9532,42121,4,'Screenplay'),(9532,42121,3,'Producer'),(9532,57134,2,'Director'),(9532,57134,4,'Screenplay'),(9532,57135,1,'Director of Photography'),(9532,57429,4,'Screenplay'),(9532,57430,3,'Executive Producer'),(9532,57857,3,'Executive Producer'),(9532,57858,5,'Editor'),(9532,60285,7,'Set Decoration'),(9532,60596,7,'Set Designer'),(9532,548439,6,'Foley'),(9532,548445,6,'Foley'),(9532,957310,7,'Production Design'),(9532,968264,1,'Still Photographer'),(9532,1007395,9,'Stunt Coordinator'),(9532,1223099,5,'Dialogue Editor'),(9532,1319153,7,'Set Designer'),(9532,1333988,9,'Property Master'),(9532,1334485,6,'Sound Effects Editor'),(9532,1335219,6,'Sound Effects Editor'),(9532,1368866,6,'Sound Effects Editor'),(9532,1378755,6,'Sound Re-Recording Mixer'),(9532,1392904,5,'Dialogue Editor'),(9532,1393390,10,'Visual Effects Supervisor'),(9532,1399582,2,'Script Supervisor'),(9532,1399635,10,'Visual Effects Producer'),(9532,1399861,6,'Sound Re-Recording Mixer'),(9532,1400374,1,'Camera Operator'),(9532,1400407,1,'Still Photographer'),(9532,1401560,7,'Construction Coordinator'),(9532,1401604,8,'Wigmaker'),(9532,1401631,6,'ADR & Dubbing'),(9532,1402216,11,'Gaffer'),(9532,1403524,9,'Visual Effects Editor'),(9532,1406390,5,'Dialogue Editor'),(9532,1406826,6,'Sound Effects Editor'),(9532,1407813,6,'Sound Effects Editor'),(9532,1407827,9,'Unit Publicist'),(9532,1408392,1,'Camera Operator'),(9532,1411856,6,'Music Editor'),(9532,1413602,9,'Transportation Coordinator'),(9532,1414549,6,'Sound Effects Editor'),(9532,1423757,6,'Sound Effects Editor'),(9532,1425328,5,'First Assistant Editor'),(9532,1441238,8,'Hairstylist'),(9532,1441241,7,'Art Department Coordinator'),(9532,1441245,7,'Assistant Art Director'),(9532,1441246,7,'Greensman'),(9532,1441247,7,'Greensman'),(9532,1441248,7,'Set Decoration Buyer'),(9532,1441250,6,'Supervising Sound Editor'),(9532,1441251,9,'Special Effects Coordinator'),(9532,1441259,11,'Gaffer'),(9532,1441260,1,'Camera Operator'),(9532,1441261,1,'Camera Operator'),(9532,1441262,11,'Rigging Gaffer'),(9532,1441266,8,'Set Costumer'),(9532,1441267,8,'Set Costumer'),(9532,1441268,9,'Picture Car Coordinator'),(9532,1441269,3,'Location Manager'),(9532,1441270,3,'Location Manager'),(9532,1546584,7,'Standby Painter'),(2787,5912,6,'Music'),(2787,5914,3,'Casting'),(2787,3964,10,'Creature Design'),(2787,13673,5,'Editor'),(2787,9184,3,'Executive Producer'),(2787,9185,3,'Producer'),(2787,9196,3,'Executive Producer'),(2787,9545,3,'Casting'),(2787,15894,6,'Sound Designer'),(2787,33195,7,'Art Direction'),(2787,28239,2,'Director'),(2787,28239,4,'Screenplay'),(2787,28240,1,'Director of Photography'),(2787,28241,6,'Orchestrator'),(2787,29085,7,'Set Decoration'),(2787,29086,7,'Leadman'),(2787,29087,8,'Makeup Artist'),(2787,113044,5,'Dialogue Editor'),(2787,61483,3,'Executive Producer'),(2787,61624,3,'Local Casting'),(2787,62143,9,'Thanks'),(2787,62745,9,'Property Master'),(2787,62743,7,'Production Design'),(2787,63920,4,'Screenplay'),(2787,63920,4,'Story'),(2787,63921,4,'Screenplay'),(2787,63921,4,'Story'),(2787,75683,8,'Costume Design'),(2787,79143,3,'Unit Production Manager'),(2787,95842,6,'Music Editor'),(2787,122274,10,'Visual Effects Supervisor'),(2787,138900,8,'Makeup Supervisor'),(2787,138900,8,'Hair Supervisor'),(2787,579405,6,'Assistant Sound Editor'),(2787,928588,3,'Casting Assistant'),(2787,979175,1,'Steadicam Operator'),(2787,979175,1,'Camera Operator'),(2787,993165,6,'Assistant Sound Editor'),(2787,1173456,11,'Best Boy Electric'),(2787,1327030,6,'Sound Re-Recording Mixer'),(2787,1378828,6,'Sound Re-Recording Mixer'),(2787,1391711,7,'Set Designer'),(2787,1392667,7,'Construction Foreman'),(2787,1392676,7,'Sculptor'),(2787,1393323,3,'Production Coordinator'),(2787,1399116,6,'Supervising Sound Editor'),(2787,1399117,9,'Sound Design Assistant'),(2787,1402733,7,'Assistant Art Director'),(2787,1412741,9,'Sound Recordist'),(2787,1412745,9,'Second Unit Cinematographer'),(2787,1412746,1,'Camera Operator'),(2787,1412758,9,'Unit Publicist'),(2787,1414178,6,'Assistant Sound Editor'),(2787,1414182,6,'ADR Editor'),(2787,1415465,6,'Sound Effects Editor'),(2787,1418312,8,'Costume Supervisor'),(2787,1418813,9,'Stunt Coordinator'),(2787,1433622,5,'First Assistant Editor'),(2787,1436963,6,'Sound Effects Editor'),(2787,1445873,6,'ADR Editor'),(2787,1446545,5,'Dialogue Editor'),(2787,1449172,5,'Dialogue Editor'),(2787,1454930,8,'Prosthetic Makeup Artist'),(2787,1454936,10,'Special Effects Supervisor'),(2787,1483570,7,'Set Designer'),(2787,1548684,5,'Color Timer'),(2787,1552883,6,'Foley Editor'),(2787,1555377,4,'Storyboard'),(2787,1564277,3,'Executive In Charge Of Production'),(2787,1584249,2,'First Assistant Director'),(2787,1588669,7,'Construction Coordinator'),(2787,1588683,6,'Boom Operator'),(2787,1589728,6,'Assistant Sound Editor'),(2787,1667091,9,'Post Production Supervisor'),(2787,1697487,4,'Storyboard'),(2787,1730954,7,'Art Department Coordinator'),(2787,1730955,7,'Painter'),(2787,1730956,7,'Standby Painter'),(2787,1730959,1,'Still Photographer'),(2787,1730960,8,'Hairstylist'),(2787,1730962,8,'Set Dressing Artist'),(2787,1730964,9,'Armorer'),(2787,1730966,9,'Dialect Coach'),(2787,1730967,9,'Legal Services'),(2787,1730969,9,'Propmaker'),(2787,1730972,9,'Visual Effects Editor'),(2787,1730975,3,'Location Manager'),(2787,1730976,6,'Sound Effects Editor'),(2787,1730979,9,'Studio Teachers'),(2787,1730984,9,'Thanks'),(2787,1737118,2,'Second Assistant Director'),(2787,1737120,7,'Standby Painter'),(2787,1737121,4,'Storyboard'),(2787,1737125,3,'Production Accountant'),(2787,1737126,1,'Camera Operator'),(2787,1737128,11,'Gaffer'),(2787,1737129,1,'Grip'),(2787,1737130,6,'Boom Operator'),(2787,1737131,2,'Script Supervisor'),(2787,1737132,2,'Third Assistant Director'),(2787,1737133,5,'Assistant Editor'),(2787,1737134,5,'Assistant Editor'),(2787,1737136,3,'Casting Assistant'),(2787,1737137,3,'Casting Assistant'),(2787,1737139,7,'Painter'),(580,796,7,'Set Decoration'),(580,1261,7,'Set Decoration'),(580,2528,7,'Art Direction'),(580,6357,6,'Original Music Composer'),(580,7186,7,'Production Design'),(580,8554,4,'Screenplay'),(580,15663,2,'Director'),(580,15663,3,'Producer'),(580,16205,4,'Screenplay'),(580,16206,1,'Director of Photography'),(580,16207,5,'Editor'),(580,13585,3,'Casting'),(580,16209,8,'Makeup Artist'),(580,16208,8,'Hairstylist'),(580,16210,6,'Supervising Sound Editor'),(580,16211,9,'Special Effects Coordinator'),(580,16212,9,'Stunts'),(580,1559470,3,'Associate Producer'),(9819,8222,8,'Costume Design'),(9819,380,3,'Producer'),(9819,2997,3,'Producer'),(9819,3305,3,'Producer'),(9819,3562,6,'Original Music Composer'),(9819,5329,7,'Production Design'),(9819,6493,3,'Casting'),(9819,8970,5,'Editor'),(9819,15433,6,'Dialogue Editor'),(9819,17988,6,'Supervising Sound Editor'),(9819,18091,1,'Dolly Grip'),(9819,18095,1,'Still Photographer'),(9819,21149,6,'Music Editor'),(9819,32490,8,'Hair Designer'),(9819,33238,1,'Director of Photography'),(9819,38416,2,'First Assistant Director'),(9819,39124,7,'Set Decoration'),(9819,57705,2,'Script Supervisor'),(9819,59635,2,'Director'),(9819,59636,4,'Screenplay'),(9819,60012,1,'Camera Operator'),(9819,60014,7,'Art Direction'),(9819,91073,7,'Leadman'),(9819,91096,6,'Boom Operator'),(9819,142159,9,'Stunt Coordinator'),(9819,936765,6,'Orchestrator'),(9819,1069801,5,'First Assistant Editor'),(9819,1333153,7,'Property Master'),(9819,1347735,7,'Construction Coordinator'),(9819,1395368,11,'Chief Lighting Technician'),(9819,1408316,6,'ADR Editor'),(9819,1458527,8,'Makeup Artist'),(9819,1517631,7,'Art Department Coordinator'),(9819,1534951,8,'Wardrobe Supervisor'),(9819,1549261,8,'Wardrobe Supervisor'),(9819,1648110,3,'Location Manager'),(9819,1816567,8,'Seamstress'),(9819,1879199,7,'Construction Foreman'),(9819,1879201,6,'Dialogue Editor'),(9819,1879202,6,'Foley Editor'),(9819,1879203,6,'Dialogue Editor'),(9819,1879208,5,'First Assistant Editor'),(9819,1879209,6,'Music Supervisor'),(2453,7728,6,'Original Music Composer'),(2453,18254,2,'Director'),(2453,27005,4,'Screenplay'),(2453,27005,3,'Producer'),(2453,27006,3,'Producer'),(2453,27007,6,'Original Music Composer'),(2453,28240,1,'Director of Photography'),(2453,239179,5,'Editor'),(2453,1052422,3,'Line Producer'),(2453,1108529,3,'Producer'),(6973,151,1,'Director of Photography'),(6973,190,9,'Thanks'),(6973,455,2,'Director'),(6973,455,4,'Screenplay'),(6973,455,3,'Producer'),(6973,4140,6,'Music'),(6973,7232,3,'Casting'),(6973,11696,3,'Producer'),(6973,11697,3,'Executive Producer'),(6973,13177,6,'Sound Re-Recording Mixer'),(6973,13179,6,'Sound Re-Recording Mixer'),(6973,13223,5,'Color Timer'),(6973,15331,6,'Sound Effects Editor'),(6973,20540,3,'Casting'),(6973,25068,9,'Stunts'),(6973,38081,3,'Producer'),(6973,38083,3,'Executive Producer'),(6973,51686,4,'Story'),(6973,51687,3,'Producer'),(6973,51688,3,'Producer'),(6973,51689,3,'Executive Producer'),(6973,51690,3,'Executive Producer'),(6973,51691,3,'Executive Producer'),(6973,25550,7,'Production Design'),(6973,51692,5,'Editor'),(6973,51693,8,'Costume Design'),(6973,54511,3,'Executive Producer'),(6973,61523,2,'Assistant Director'),(6973,112307,7,'Set Decoration'),(6973,74973,6,'Boom Operator'),(6973,1059586,8,'Prosthetic Supervisor'),(6973,1161231,9,'Stunts Coordinator'),(6973,1164294,5,'Assistant Editor'),(6973,1172441,7,'Art Direction'),(6973,1213742,9,'Thanks'),(6973,1269670,8,'Makeup Department Head'),(6973,1317041,8,'Makeup Artist'),(6973,1345635,2,'Script Supervisor'),(6973,1352966,5,'Dialogue Editor'),(6973,1352969,6,'Supervising Sound Editor'),(6973,1399141,6,'Sound Re-Recording Mixer'),(6973,1406080,8,'Key Hair Stylist'),(6973,1406138,9,'Unit Publicist'),(6973,1407813,6,'Sound Effects Editor'),(6973,1412223,8,'Hair Department Head'),(6973,1413453,6,'Sound Effects Editor'),(6973,1425971,8,'Key Hair Stylist'),(6973,1444923,11,'Rigging Gaffer'),(6973,1452618,7,'Art Department Coordinator'),(6973,1509357,3,'Production Supervisor'),(6973,1526508,8,'Wigmaker'),(6973,1531492,9,'Post Production Supervisor'),(6973,1573081,1,'First Assistant Camera'),(6973,1648134,9,'Title Graphics'),(6973,1706639,1,'Grip'),(6973,1706641,11,'Electrician'),(6973,1706642,11,'Lighting Technician'),(6973,1712004,8,'Makeup Artist'),(3021,1307,3,'Executive Producer'),(3021,59839,3,'Executive Producer'),(3021,3027,4,'Original Story'),(3021,5488,6,'Music'),(3021,7130,4,'Screenplay'),(3021,7131,4,'Screenplay'),(3021,10952,3,'Producer'),(3021,8307,5,'Editor'),(3021,21655,1,'Director of Photography'),(3021,22968,8,'Costume Design'),(3021,28636,7,'Production Design'),(3021,29605,2,'Director'),(3021,29606,4,'Screenplay'),(3021,29608,3,'Executive Producer'),(3021,29609,7,'Art Direction'),(3021,29610,8,'Makeup Artist'),(3021,29611,9,'Special Effects'),(3021,33625,7,'Set Decoration'),(3021,58357,3,'Unit Production Manager'),(3021,49345,7,'Art Direction'),(3021,53680,3,'Casting'),(3021,65753,3,'Executive Producer'),(3021,1117950,9,'Post Production Supervisor'),(3021,1285953,7,'Set Decoration'),(3021,1390539,2,'Script Supervisor'),(3021,1402942,7,'Location Scout'),(3021,1409309,3,'Unit Manager'),(3021,1440497,2,'Script Supervisor'),(3021,1486198,3,'Casting Assistant'),(3021,1596781,3,'Unit Production Manager'),(3021,1640354,3,'Location Manager'),(3021,1640634,3,'Associate Producer'),(3021,1656672,3,'Production Supervisor'),(3021,1781382,3,'Production Coordinator'),(3021,1781760,3,'Associate Producer'),(3021,1781761,3,'Associate Producer'),(3021,1781768,3,'Unit Production Manager'),(3021,1781769,3,'Casting Associate'),(3021,1781770,3,'Location Manager'),(3021,1781771,3,'Location Manager'),(3021,1781774,7,'Location Scout'),(3021,1781776,7,'Location Scout'),(3021,1781777,7,'Title Designer'),(3021,1781780,3,'Production Coordinator'),(957,719,6,'Original Music Composer'),(957,1263,3,'Casting'),(957,1765,7,'Art Direction'),(957,2084,3,'Casting'),(957,6584,7,'Production Design'),(957,3987,5,'Editor'),(957,5490,3,'Casting'),(957,14639,4,'Screenplay'),(957,14639,2,'Director'),(957,14639,3,'Producer'),(957,14640,4,'Screenplay'),(957,14641,4,'Screenplay'),(957,14642,1,'Director of Photography'),(957,14652,7,'Set Decoration'),(957,14653,8,'Makeup Artist'),(957,14654,3,'Production Manager'),(957,14657,6,'Sound Effects Editor'),(957,14660,9,'Special Effects'),(957,14662,10,'Visual Effects'),(957,14663,9,'Stunt Coordinator'),(957,14667,9,'Stunts'),(957,21968,3,'Producer'),(251,154,5,'Editor'),(251,154,6,'Sound Re-Recording Mixer'),(251,1051,8,'Costume Design'),(251,2704,6,'Original Music Composer'),(251,2723,1,'Director of Photography'),(251,2874,3,'Casting'),(251,3275,3,'Casting'),(251,3415,2,'Director'),(251,3427,3,'Producer'),(251,3428,3,'Producer'),(251,3429,7,'Production Design'),(251,3430,6,'Sound Editor'),(251,3431,4,'Author'),(251,9775,8,'Makeup Artist'),(251,10394,5,'Dialogue Editor'),(251,16615,7,'Set Decoration'),(251,21070,7,'Art Direction'),(251,56765,6,'Sound Re-Recording Mixer'),(251,21548,10,'Visual Effects Supervisor'),(251,23782,9,'Visual Effects Art Director'),(251,30391,8,'Makeup Artist'),(251,52691,10,'Animation'),(251,65238,1,'Camera Operator'),(251,83067,8,'Hairstylist'),(251,91243,9,'Stunt Coordinator'),(251,93887,9,'Stunt Coordinator'),(251,928942,6,'Sound Re-Recording Mixer'),(251,1170025,6,'Foley'),(251,1315648,8,'Makeup Artist'),(251,1341405,5,'Dialogue Editor'),(251,1341855,6,'Foley'),(251,1378751,7,'Set Designer'),(251,1380036,9,'Property Master'),(251,1395262,10,'Visual Effects Producer'),(251,1397731,1,'Steadicam Operator'),(251,1400561,10,'Visual Effects Supervisor'),(251,1400820,10,'Visual Effects Supervisor'),(251,1401105,9,'Visual Effects Editor'),(251,1411293,1,'Still Photographer'),(251,1424127,6,'Dolby Consultant'),(251,1425842,11,'Gaffer'),(251,1445981,10,'Visual Effects Supervisor'),(251,1453274,8,'Hairstylist'),(251,1453276,7,'Construction Coordinator'),(251,1453277,9,'Property Master'),(251,1453278,7,'Leadman'),(251,1453281,9,'Sound Recordist'),(251,1453282,9,'Sound Recordist'),(251,1453284,10,'Animation'),(251,1453285,10,'Animation'),(251,1453286,10,'Animation'),(251,1453288,10,'Animation'),(251,1453289,10,'Animation Supervisor'),(251,1453291,10,'Animation Supervisor'),(251,1453296,9,'Visual Effects Editor'),(251,1453308,9,'Second Unit Cinematographer'),(251,1453316,8,'Costume Supervisor'),(251,1453318,9,'Transportation Coordinator'),(251,1453319,2,'Script Supervisor'),(251,1453320,3,'Location Manager'),(251,1453321,9,'Unit Publicist'),(544,7414,5,'Editor'),(544,6114,3,'Unit Production Manager'),(544,6114,3,'Co-Producer'),(544,7415,3,'Casting'),(544,7395,2,'Director'),(544,7395,3,'Executive Producer'),(544,7395,4,'Screenplay'),(544,7396,2,'Director'),(544,7396,3,'Executive Producer'),(544,7396,4,'Screenplay'),(544,7397,4,'Screenplay'),(544,7398,4,'Screenplay'),(544,7405,3,'Producer'),(544,7406,3,'Producer'),(544,7407,3,'Producer'),(544,7408,3,'Producer'),(544,7409,3,'Co-Producer'),(544,7409,2,'First Assistant Director'),(544,7411,3,'Associate Producer'),(544,7412,3,'Associate Producer'),(544,7413,1,'Director of Photography'),(544,7416,7,'Art Direction'),(544,7417,7,'Set Decoration'),(544,7418,8,'Costume Design'),(544,12772,9,'Stunt Coordinator'),(544,21933,6,'Music Supervisor'),(544,29206,3,'Production Supervisor'),(544,29217,9,'Animatronics Designer'),(544,113041,6,'Foley Editor'),(544,91941,9,'Unit Publicist'),(544,113664,1,'Second Unit Director of Photography'),(544,139767,6,'Original Music Composer'),(544,142152,8,'Makeup Artist'),(544,993536,5,'First Assistant Editor'),(544,1181954,7,'Property Master'),(544,1367508,2,'Script Supervisor'),(544,1376714,8,'Costume Supervisor'),(544,1390523,6,'Sound Effects Editor'),(544,1390524,6,'Sound Editor'),(544,1395025,6,'Dolby Consultant'),(544,1413091,5,'Dialogue Editor'),(544,1413095,6,'Supervising Sound Editor'),(544,1416086,8,'Set Dressing Artist'),(544,1417994,11,'Gaffer'),(544,1438914,7,'Construction Foreman'),(544,1440811,6,'Sound Engineer'),(544,1460768,1,'Still Photographer'),(544,1527917,8,'Key Hair Stylist'),(544,1532709,7,'Construction Coordinator'),(544,1545951,6,'Sound Mixer'),(544,1549428,9,'Special Effects Coordinator'),(544,1549436,3,'Location Manager'),(544,1552506,1,'First Assistant Camera'),(544,1556518,8,'Set Costumer'),(544,1562248,5,'Color Timer'),(544,1568216,3,'Casting Associate'),(544,1570748,9,'Carpenter'),(544,1570749,9,'Craft Service'),(544,1573619,3,'Production Coordinator'),(544,1748859,9,'Post Production Supervisor'),(544,1748866,11,'Rigging Gaffer'),(544,1748870,3,'Executive In Charge Of Production'),(544,1748872,6,'Boom Operator'),(544,1771253,1,'Key Grip'),(544,1775940,7,'Set Designer'),(544,1778009,6,'Assistant Sound Editor'),(544,1780203,7,'Art Department Coordinator'),(544,1780204,7,'Greensman'),(544,1780207,7,'Leadman'),(544,1780209,7,'Location Scout'),(544,1780211,1,'Grip'),(544,1780214,8,'Hairstylist'),(544,1780215,8,'Seamstress'),(544,1780216,9,'Dialect Coach'),(544,1780217,9,'Driver'),(544,1780218,9,'Makeup Effects'),(544,1780219,9,'Post Production Assistant'),(544,1780220,9,'Projection'),(544,1780221,9,'Propmaker'),(544,1780222,9,'Scenic Artist'),(544,1780223,9,'Set Production Assistant'),(544,1780224,6,'Sound Recordist'),(544,1780226,9,'Transportation Co-Captain'),(544,1780227,9,'Transportation Coordinator'),(544,1780228,11,'Best Boy Electric'),(544,1780229,11,'Electrician'),(544,1780230,11,'Rigging Grip'),(544,1780231,3,'Production Accountant'),(544,1780233,10,'Digital Compositors'),(544,1780237,9,'Score Engineer'),(688,190,2,'Director'),(688,190,3,'Producer'),(688,190,6,'Original Music Composer'),(688,195,6,'Original Music Composer'),(688,356,1,'Director of Photography'),(688,384,5,'Editor'),(688,347,3,'Producer'),(688,489,3,'Producer'),(688,1484,3,'Casting'),(688,2163,4,'Screenplay'),(688,9269,7,'Production Design'),(688,10378,4,'Novel'),(688,168769,3,'Producer'),(783,1302,3,'Casting'),(783,1528,6,'Music'),(783,7757,7,'Supervising Art Director'),(783,4786,2,'Director'),(783,4786,3,'Producer'),(783,5061,8,'Costume Design'),(783,5491,7,'Production Design'),(783,6491,5,'Editor'),(783,6801,7,'Set Decoration'),(783,11845,4,'Screenplay'),(783,11847,1,'Director of Photography'),(783,11848,1,'Director of Photography'),(783,11862,3,'Executive Producer'),(783,12810,7,'Art Direction'),(783,13745,6,'Music'),(783,15846,8,'Hairstylist'),(783,24680,6,'ADR & Dubbing'),(783,24681,9,'Sound Recordist'),(783,63913,3,'Producer'),(783,165708,10,'Visual Effects'),(783,231355,8,'Costume Design'),(783,1003649,3,'Associate Producer'),(783,1035289,7,'Art Direction'),(783,1090257,5,'Assistant Editor'),(783,1575391,2,'Assistant Director'),(783,1593085,9,'Transportation Captain'),(783,1602727,9,'Stunt Coordinator'),(783,1606848,8,'Makeup Artist'),(783,1629006,10,'Special Effects Supervisor'),(783,1629423,9,'Sound Recordist'),(1642,4140,6,'Music'),(1642,7214,4,'Screenplay'),(1642,7215,4,'Screenplay'),(1642,11472,2,'Director'),(1642,11472,3,'Producer'),(1642,18330,3,'Producer'),(277,8382,7,'Supervising Art Director'),(277,68602,3,'Producer'),(277,905,7,'Production Design'),(277,970,3,'Casting'),(277,2214,6,'Original Music Composer'),(277,3950,2,'Director'),(277,3950,4,'Story'),(277,3952,4,'Story'),(277,3952,3,'Associate Producer'),(277,3953,3,'Producer'),(277,3954,3,'Producer'),(277,3954,3,'Unit Production Manager'),(277,3955,3,'Executive Producer'),(277,3956,3,'Executive Producer'),(277,3957,3,'Executive Producer'),(277,3958,3,'Executive Producer'),(277,3959,3,'Executive Producer'),(277,3960,1,'Director of Photography'),(277,3961,5,'Editor'),(277,3962,8,'Costume Design'),(277,3963,6,'Sound Designer'),(277,3964,7,'Production Design'),(277,3964,10,'Creature Design'),(277,3965,3,'Casting'),(277,3973,9,'Second Unit'),(277,3973,2,'Assistant Director'),(277,5019,5,'Additional Editing'),(277,12654,7,'Set Decoration'),(277,16234,7,'Art Direction'),(277,23619,8,'Makeup Artist'),(277,54777,3,'Casting Associate'),(277,62875,3,'Production Supervisor'),(277,80886,6,'Music Supervisor'),(277,146143,9,'Second Unit Cinematographer'),(277,146143,9,'Stunt Coordinator'),(277,220059,3,'Production Accountant'),(277,225939,3,'Production Manager'),(277,548435,6,'Sound Mixer'),(277,563867,1,'Camera Operator'),(277,1034748,3,'Casting'),(277,1177771,8,'Set Dressing Artist'),(277,1201945,6,'Sound Editor'),(277,1208473,7,'Construction Coordinator'),(277,1248221,4,'Screenplay'),(277,1248221,4,'Story'),(277,1248221,3,'Associate Producer'),(277,1281998,8,'Hairstylist'),(277,1323629,8,'Costume Supervisor'),(277,1346943,10,'Special Effects Supervisor'),(277,1367820,9,'Post Production Supervisor'),(277,1378398,9,'Makeup Effects'),(277,1381067,6,'Sound Designer'),(277,1387570,1,'Still Photographer'),(277,1392907,10,'Visual Effects Producer'),(277,1401714,10,'Visual Effects Supervisor'),(277,1402934,1,'Steadicam Operator'),(277,1403417,5,'Digital Intermediate'),(277,1404553,9,'Unit Publicist'),(277,1410749,6,'Dolby Consultant'),(277,1413588,1,'Underwater Camera'),(277,1416481,9,'Visual Effects Editor'),(277,1418393,9,'Post Production Assistant'),(277,1418508,8,'Prosthetic Supervisor'),(277,1419199,10,'Visual Effects Coordinator'),(277,1425492,1,'First Assistant Camera'),(277,1425504,11,'Gaffer'),(277,1431999,8,'Wigmaker'),(277,1452756,3,'Location Manager'),(277,1463142,2,'Script Supervisor'),(277,1463313,4,'Storyboard'),(277,1485319,7,'Sculptor'),(277,1529499,6,'Sound Effects Editor'),(277,1546757,9,'Armorer'),(277,1548694,9,'Sound Recordist'),(277,1550619,6,'Music Editor'),(277,1555004,9,'Production Controller'),(277,1640092,9,'Stunts'),(277,1640135,9,'Set Medic'),(277,1677572,7,'Conceptual Design'),(277,1697987,7,'Art Department Coordinator'),(277,1697989,7,'Set Designer'),(277,1697990,7,'Standby Painter'),(277,1697991,1,'Grip'),(277,1697992,8,'Key Hair Stylist'),(277,1697993,9,'Carpenter'),(277,1697995,9,'Driver'),(277,1697997,9,'Loader'),(277,1697998,9,'Property Master'),(277,1697999,9,'Security'),(277,1698002,9,'Special Effects Coordinator'),(277,1698003,9,'Transportation Captain'),(277,1698004,3,'Unit Production Manager'),(277,1698005,9,'Utility Stunts'),(277,1698006,9,'Video Assist Operator'),(277,1698007,11,'Electrician'),(277,1698011,3,'Production Coordinator'),(277,1698012,6,'Boom Operator'),(277,1698013,6,'Foley'),(277,1698014,10,'3D Supervisor'),(277,1698016,10,'Digital Compositors'),(277,1698017,10,'Visual Effects'),(277,1698018,9,'Thanks'),(8999,2952,3,'Casting'),(8999,1707,4,'Screenplay'),(8999,1307,3,'Executive Producer'),(8999,59839,3,'Executive Producer'),(8999,1999,6,'Original Music Composer'),(8999,6624,3,'Executive Producer'),(8999,10952,3,'Producer'),(8999,10717,1,'Camera Operator'),(8999,8307,5,'Editor'),(8999,40754,7,'Art Department Coordinator'),(8999,22968,8,'Costume Design'),(8999,28636,7,'Production Design'),(8999,29605,2,'Director'),(8999,33625,7,'Set Decoration'),(8999,49345,7,'Art Direction'),(8999,117206,8,'Hairstylist'),(8999,570227,4,'Novel'),(8999,1285953,7,'Set Decoration'),(8999,1325234,8,'Makeup Artist'),(8999,1338291,2,'Script Supervisor'),(8999,1408850,9,'Unit Publicist'),(8999,1640634,3,'Associate Producer'),(2294,1307,3,'Executive Producer'),(2294,59839,3,'Executive Producer'),(2294,5549,8,'Costume Design'),(2294,6624,3,'Executive Producer'),(2294,10958,7,'Set Decoration'),(2294,13622,1,'Director of Photography'),(2294,15894,6,'Sound Designer'),(2294,15894,6,'Sound Re-Recording Mixer'),(2294,19303,4,'Screenplay'),(2294,19303,2,'Director'),(2294,19303,5,'Editor'),(2294,19303,4,'Characters'),(2294,18689,3,'Production Supervisor'),(2294,20503,5,'Editor'),(2294,20503,3,'Producer'),(2294,20503,4,'Storyboard'),(2294,20503,9,'Second Unit Cinematographer'),(2294,23653,3,'Casting'),(2294,23654,7,'Production Design'),(2294,23739,6,'Original Music Composer'),(2294,45837,2,'Second Assistant Director'),(2294,47277,3,'Unit Production Manager'),(2294,115102,3,'Executive In Charge Of Production'),(2294,57894,5,'First Assistant Editor'),(2294,62142,3,'Co-Producer'),(2294,67490,9,'Video Assist Operator'),(2294,74591,9,'Post Production Supervisor'),(2294,75366,5,'Color Timer'),(2294,80298,9,'Stunt Coordinator'),(2294,100473,9,'Animatronics Designer'),(2294,113832,7,'Lead Painter'),(2294,124660,2,'Script Supervisor'),(2294,175688,9,'Visual Effects Editor'),(2294,404895,6,'Supervising Sound Editor'),(2294,548441,6,'Sound Mixer'),(2294,936669,7,'Art Department Coordinator'),(2294,1096345,8,'Hair Department Head'),(2294,1210178,9,'Makeup Effects'),(2294,1275452,7,'Art Direction'),(2294,1281269,9,'Animatronics Supervisor'),(2294,1294897,11,'Gaffer'),(2294,1323289,8,'Wardrobe Supervisor'),(2294,1352424,9,'Mix Technician'),(2294,1371676,1,'Camera Operator'),(2294,1387191,3,'Location Manager'),(2294,1389534,5,'Dialogue Editor'),(2294,1389610,7,'Set Designer'),(2294,1389625,9,'Transportation Coordinator'),(2294,1391594,1,'Steadicam Operator'),(2294,1397687,7,'Set Decoration'),(2294,1397846,10,'Visual Effects Supervisor'),(2294,1400019,7,'Sculptor'),(2294,1400566,10,'Visual Effects Producer'),(2294,1400814,6,'Dolby Consultant'),(2294,1400905,5,'Dialogue Editor'),(2294,1404880,8,'Wig Designer'),(2294,1413169,6,'Scoring Mixer'),(2294,1413172,6,'ADR Editor'),(2294,1414177,6,'Sound Effects Editor'),(2294,1415465,6,'Sound Effects Editor'),(2294,1418017,11,'Best Boy Electric'),(2294,1436174,9,'CG Supervisor'),(2294,1454383,6,'Foley'),(2294,1455292,1,'Camera Operator'),(2294,1458065,8,'Makeup Department Head'),(2294,1498490,1,'Grip'),(2294,1523457,8,'Makeup Artist'),(2294,1531504,6,'Music Editor'),(2294,1537179,1,'Still Photographer'),(2294,1537500,6,'Music Supervisor'),(2294,1538218,7,'Construction Coordinator'),(2294,1538714,6,'Music Supervisor'),(2294,1538715,3,'Production Coordinator'),(2294,1538797,1,'First Assistant Camera'),(2294,1544734,2,'First Assistant Director'),(2294,1548635,9,'Stunts'),(2294,1548635,9,'Special Effects Coordinator'),(2294,1561360,5,'Editorial Services'),(2294,1571780,10,'3D Artist'),(2294,1580521,10,'Visual Effects Coordinator'),(2294,1586397,6,'Orchestrator'),(2294,1596279,7,'Construction Foreman'),(2294,1596280,7,'Leadman'),(2294,1596281,7,'Painter'),(2294,1596283,7,'Standby Painter'),(2294,1596285,1,'Key Grip'),(2294,1596286,8,'Key Hair Stylist'),(2294,1596287,8,'Key Makeup Artist'),(2294,1596288,7,'Set Dresser'),(2294,1596291,9,'Chef'),(2294,1596292,9,'Craft Service'),(2294,1596293,9,'Driver'),(2294,1596294,9,'Legal Services'),(2294,1596295,1,'Camera Loader'),(2294,1596296,9,'Post Production Assistant'),(2294,1596299,9,'Projection'),(2294,1596301,9,'Propmaker'),(2294,1596303,9,'Scenic Artist'),(2294,1596307,9,'Set Medic'),(2294,1596308,9,'Set Production Assistant'),(2294,1596309,9,'Stand In'),(2294,1596311,9,'Systems Administrators & Support'),(2294,1596314,11,'Electrician'),(2294,1596316,11,'Lighting Technician'),(2294,1596317,11,'Rigging Gaffer'),(2294,1596318,3,'Casting Associate'),(2294,1596320,3,'Production Accountant'),(2294,1596322,6,'Boom Operator'),(2294,1596323,6,'First Assistant Sound Editor'),(2294,1596325,10,'3D Supervisor'),(2294,1596326,10,'Digital Compositors'),(2294,1596328,9,'Studio Teachers'),(2294,1738137,6,'Musician'),(2294,1839432,1,'Dolly Grip'),(2294,1839442,3,'Assistant Production Coordinator'),(2294,1839443,10,'2D Supervisor'),(2294,1839444,10,'3D Animator'),(2176,5914,3,'Casting'),(2176,19155,6,'Music'),(2176,8182,3,'Co-Producer'),(2176,9270,7,'Art Direction'),(2176,9545,3,'Casting'),(2176,11874,3,'Producer'),(2176,11877,7,'Production Design'),(2176,11878,7,'Set Decoration'),(2176,13223,5,'Color Timer'),(2176,12632,2,'Director'),(2176,15333,9,'Special Effects'),(2176,10853,5,'Editor'),(2176,17880,4,'Writer'),(2176,21039,1,'Director of Photography'),(2176,58183,3,'Executive Producer'),(2176,58183,3,'Unit Production Manager'),(2176,94546,3,'Casting'),(2176,146352,9,'Stunt Coordinator'),(2176,928588,3,'Casting Associate'),(2176,958691,7,'Set Designer'),(2176,1017376,1,'Camera Operator'),(2176,1017376,1,'Steadicam Operator'),(2176,1194471,1,'Still Photographer'),(2176,1324421,8,'Costume Supervisor'),(2176,1378222,7,'Construction Coordinator'),(2176,1390524,6,'Sound Editor'),(2176,1395255,6,'Sound Re-Recording Mixer'),(2176,1401562,6,'Sound Re-Recording Mixer'),(2176,1406242,6,'Sound Editor'),(2176,1409269,7,'Leadman'),(2176,1411258,8,'Key Hair Stylist'),(2176,1411856,6,'Music Editor'),(2176,1413487,8,'Makeup Artist'),(2176,1415101,8,'Makeup Artist'),(2176,1418286,6,'Sound Editor'),(2176,1455293,1,'Camera Operator'),(2176,1469339,2,'Script Supervisor'),(2176,1534821,4,'Storyboard'),(2176,1536312,8,'Costume Design'),(2176,1544669,6,'Supervising Sound Editor'),(2176,1563430,6,'Boom Operator'),(2176,1563902,3,'Production Coordinator'),(2176,1563906,3,'Production Supervisor'),(2176,1701686,8,'Hairstylist'),(2176,1701687,3,'Location Manager'),(2176,1701688,7,'Set Designer'),(2176,1701689,9,'Property Master'),(2176,1701690,9,'Unit Publicist'),(2176,1701691,3,'Casting Associate'),(1599,312,6,'Music'),(1599,9573,1,'Director of Photography'),(1599,17883,4,'Screenplay'),(1599,17883,2,'Director'),(1599,17884,4,'Screenplay'),(1599,17886,5,'Editor'),(5550,2046,5,'Editor'),(5550,2293,4,'Screenplay'),(5550,2293,4,'Story'),(5550,7722,4,'Characters'),(5550,7727,10,'Visual Effects'),(5550,7728,6,'Original Music Composer'),(5550,12923,3,'Co-Producer'),(5550,24956,1,'Director of Photography'),(5550,25600,3,'Producer'),(5550,44036,4,'Characters'),(5550,44056,2,'Director'),(5550,44056,4,'Screenplay'),(5550,44057,3,'Casting'),(5550,57098,3,'Associate Producer'),(5550,1428980,7,'Production Design'),(7548,668,3,'Casting'),(7548,3050,5,'Editor'),(7548,6949,3,'Producer'),(7548,10759,6,'Original Music Composer'),(7548,23424,3,'Casting'),(7548,32257,3,'Production Manager'),(7548,33444,7,'Production Design'),(7548,33447,8,'Costume Design'),(7548,52445,3,'Producer'),(7548,52894,2,'Director'),(7548,52896,4,'Screenplay'),(7548,52896,4,'Theatre Play'),(7548,52897,3,'Producer'),(7548,582929,7,'Set Decoration'),(7548,1088851,1,'Director of Photography'),(7548,1317048,8,'Costume Supervisor'),(7548,1340126,2,'Script Supervisor'),(7548,1393883,1,'Still Photographer'),(9075,851,6,'Music'),(9075,3923,3,'Casting'),(9075,4562,3,'Casting'),(9075,10491,4,'Screenplay'),(9075,10491,2,'Director'),(9075,8677,1,'Director of Photography'),(9075,9119,4,'Screenplay'),(9075,9123,7,'Art Direction'),(9075,11350,6,'Sound Effects Editor'),(9075,40752,7,'Supervising Art Director'),(9075,12761,6,'Supervising Sound Editor'),(9075,16680,8,'Costume Design'),(9075,16681,8,'Makeup Artist'),(9075,16683,6,'Supervising Sound Editor'),(9075,16688,9,'Stunt Coordinator'),(9075,18904,3,'Production Manager'),(9075,19638,3,'Producer'),(9075,38956,7,'Art Direction'),(9075,43709,3,'Producer'),(9075,56915,3,'Production Manager'),(9075,56916,5,'Editor'),(9075,56917,5,'Editor'),(9075,59396,3,'Casting'),(9075,76276,1,'Steadicam Operator'),(9075,211045,3,'Casting'),(9075,229814,10,'Visual Effects Supervisor'),(9075,1128422,3,'Publicist'),(9075,1317618,7,'Production Design'),(9075,1317618,7,'Art Direction'),(9075,1324462,8,'Costume Supervisor'),(9075,1331975,3,'Casting'),(9075,1340117,6,'Dolby Consultant'),(9075,1377503,1,'Steadicam Operator'),(9075,1377503,1,'Camera Operator'),(9075,1393119,6,'Sound Effects Editor'),(9075,1398920,6,'Foley'),(9075,1403777,8,'Makeup Artist'),(9075,1403779,3,'Production Manager'),(9075,1403780,3,'Production Manager'),(9075,1403781,3,'Production Manager'),(9075,1403782,7,'Art Department Coordinator'),(9075,1403783,7,'Assistant Art Director'),(9075,1403784,7,'Assistant Art Director'),(9075,1403785,9,'Property Master'),(9075,1403786,9,'Property Master'),(9075,1403787,9,'Property Master'),(9075,1403788,9,'Property Master'),(9075,1403789,9,'Property Master'),(9075,1403790,9,'Scenic Artist'),(9075,1403797,6,'Sound Re-Recording Mixer'),(9075,1403798,6,'Sound Re-Recording Mixer'),(9075,1403800,6,'Foley'),(9075,1403875,9,'Special Effects Coordinator'),(9075,1403876,10,'Visual Effects Supervisor'),(9075,1403883,1,'Still Photographer'),(9075,1403885,1,'Still Photographer'),(9075,1403892,9,'Video Assist Operator'),(9075,1403893,9,'Video Assist Operator'),(9075,1403894,11,'Gaffer'),(9075,1403895,11,'Best Boy Electric'),(9075,1403899,3,'Location Manager'),(9075,1403900,9,'Translator'),(9075,1403901,3,'Location Manager'),(9075,1403902,3,'Location Manager'),(9075,1403905,3,'Publicist'),(9075,1403910,3,'Publicist'),(4566,1213,6,'Original Music Composer'),(4566,1461,3,'Executive Producer'),(4566,1484,3,'Casting'),(4566,1884,3,'Executive Producer'),(4566,2226,3,'Producer'),(4566,2239,3,'Executive Producer'),(4566,2946,3,'Producer'),(4566,2950,1,'Director of Photography'),(4566,19242,4,'Screenplay'),(4566,19242,2,'Director'),(4566,19755,7,'Production Design'),(4566,38081,3,'Producer'),(4566,38082,3,'Producer'),(4566,38083,3,'Executive Producer'),(4566,38084,8,'Costume Design'),(4566,67810,5,'Editor'),(1073,68602,3,'Executive Producer'),(1073,1484,3,'Casting'),(1073,3287,7,'Production Design'),(1073,3987,5,'Editor'),(1073,5628,6,'Original Music Composer'),(1073,5633,7,'Set Decoration'),(1073,6590,3,'Executive Producer'),(1073,15244,4,'Screenplay'),(1073,11676,2,'Director'),(1073,13225,6,'Music Supervisor'),(1073,15245,3,'Producer'),(1073,15246,3,'Producer'),(1073,15247,3,'Producer'),(1073,15248,3,'Executive Producer'),(1073,20490,8,'Assistant Costume Designer'),(1073,46943,3,'Casting'),(1073,83724,3,'Casting Associate'),(1073,137176,8,'Costume Supervisor'),(1073,548849,7,'Art Direction'),(1073,957264,8,'Hairstylist'),(1073,994550,7,'Title Designer'),(1073,1207715,8,'Costume Design'),(1073,1209263,1,'Director of Photography'),(1073,1323090,8,'Makeup Artist'),(1073,1378766,8,'Set Costumer'),(1073,1392907,10,'Visual Effects Producer'),(1073,1395258,10,'Pyrotechnic Supervisor'),(1073,1401125,8,'Set Costumer'),(1073,1413195,8,'Set Costumer'),(1073,1413509,10,'Visual Effects Supervisor'),(1073,1458066,8,'Key Makeup Artist'),(1073,1492941,2,'Script Supervisor'),(1073,1531504,6,'Music Editor'),(1073,1571719,8,'Key Set Costumer'),(1073,1585153,3,'Casting'),(1073,1621286,3,'Casting Associate'),(1073,1746553,8,'Key Hair Stylist'),(1073,1792643,7,'Art Department Coordinator'),(1073,1792644,7,'Construction Coordinator'),(1073,1792645,3,'Casting Associate'),(1073,1792646,8,'Seamstress'),(1073,1792647,8,'Set Costumer'),(1073,1792651,9,'Pilot'),(1073,1792652,9,'Pilot'),(1073,1792655,8,'Key Hair Stylist'),(1073,1792656,8,'Key Makeup Artist'),(9473,2997,3,'Executive Producer'),(9473,6488,3,'Associate Producer'),(9473,7955,7,'Background Designer'),(9473,9251,6,'Original Music Composer'),(9473,34517,2,'Director'),(9473,34517,3,'Producer'),(9473,34517,4,'Writer'),(9473,34518,3,'Producer'),(9473,34518,4,'Writer'),(9473,34522,4,'Writer'),(9473,34523,3,'Co-Producer'),(9473,34524,3,'Producer'),(9473,34524,10,'Animation'),(9473,11303,3,'Executive Producer'),(9473,57637,6,'Music'),(9473,57638,5,'Editor'),(9473,61464,10,'Animation'),(9473,70655,3,'Line Producer'),(9473,1214357,10,'Animation'),(9473,1229805,10,'Animation Director'),(9473,1257509,10,'Animation'),(9473,1447362,10,'Animation'),(9473,1447511,7,'Art Direction'),(9473,1450713,3,'Co-Producer'),(9473,1451682,9,'Technical Supervisor'),(9473,1454283,10,'Animation'),(9473,1454282,10,'Animation'),(9473,1454284,10,'Animation'),(9473,1454387,10,'Animation'),(9473,1454388,10,'Animation'),(9473,1454389,10,'Animation'),(9473,1454391,10,'Animation'),(9473,1454393,10,'Animation'),(9473,1454395,10,'Animation Supervisor'),(9473,1454396,10,'Animation'),(9473,1454397,10,'Animation Supervisor'),(9473,1454398,10,'Animation'),(9473,1454399,10,'Animation'),(9473,1454401,10,'Animation'),(9473,1454402,10,'Animation'),(9473,1454403,10,'Animation'),(9473,1454404,10,'Animation'),(9473,1454405,10,'Animation'),(9473,1454406,10,'Animation'),(9473,1454407,10,'Animation'),(9473,1454408,7,'Background Designer'),(9473,1454409,10,'Animation'),(9473,1454410,10,'Animation'),(9473,1454411,10,'Animation'),(9473,1454412,10,'Animation'),(9473,1454413,10,'Animation'),(9473,1454414,10,'Animation'),(9473,1454415,10,'Animation'),(9473,1454416,10,'Animation'),(9473,1454417,10,'Animation'),(9473,1454418,10,'Animation'),(9473,1454419,10,'Animation'),(9473,1454421,7,'Background Designer'),(9473,1454422,10,'Animation'),(9473,1454423,7,'Background Designer'),(9473,1454424,10,'Animation'),(9473,1454425,10,'Animation'),(9473,1454426,10,'Animation'),(9473,1454427,10,'Animation'),(9473,1454428,10,'Animation Manager'),(9473,1454429,10,'Animation'),(9473,1454430,10,'Animation'),(9473,1454431,10,'Animation'),(9473,1454432,10,'Animation'),(9473,1454433,10,'Animation'),(9473,1454434,10,'Animation'),(9473,1454435,11,'Gaffer'),(9473,1460602,9,'Compositors'),(9473,1460602,9,'Technical Supervisor'),(2196,7908,2,'Director'),(2196,17253,1,'Director of Photography'),(2196,21342,3,'Producer'),(2196,22807,4,'Screenplay'),(2196,22808,3,'Producer'),(2196,22967,3,'Producer'),(2196,22968,8,'Costume Design'),(1499,8933,6,'Music'),(1499,19502,4,'Characters'),(1499,19503,4,'Characters'),(1499,33010,1,'Director of Photography'),(1499,76418,2,'Director'),(1499,76418,4,'Writer'),(1499,147407,3,'Producer'),(1499,1122495,3,'Producer'),(1646,448,3,'Executive Producer'),(1646,518,3,'Producer'),(1646,2163,4,'Screenplay'),(1646,2163,2,'Director'),(1646,2864,1,'Director of Photography'),(1646,4140,6,'Music'),(1646,5381,3,'Producer'),(1646,5382,3,'Producer'),(1646,5668,5,'Editor'),(1646,6347,3,'Casting'),(1646,13166,6,'Sound Effects Editor'),(1646,14764,6,'Sound Effects Editor'),(1646,14765,6,'Supervising Sound Editor'),(1646,18351,4,'Novel'),(1646,82092,6,'Music'),(1646,47294,8,'Costume Design'),(1646,25550,7,'Production Design'),(1646,61077,7,'Assistant Art Director'),(1646,65824,7,'Set Designer'),(1646,112307,7,'Set Decoration'),(1646,82169,1,'Camera Operator'),(1646,82169,1,'Steadicam Operator'),(1646,109994,3,'Location Manager'),(1646,158916,6,'Sound Re-Recording Mixer'),(1646,578767,6,'Boom Operator'),(1646,941837,8,'Makeup Artist'),(1646,960673,7,'Art Direction'),(1646,1158052,8,'Makeup Artist'),(1646,1188380,3,'Executive Producer'),(1646,1190255,8,'Set Costumer'),(1646,1199564,8,'Set Dressing Artist'),(1646,1324409,8,'Costume Supervisor'),(1646,1333978,8,'Makeup Department Head'),(1646,1335219,5,'Dialogue Editor'),(1646,1342658,5,'Dialogue Editor'),(1646,1345595,6,'Sound Re-Recording Mixer'),(1646,1377240,2,'Script Supervisor'),(1646,1387541,5,'Dialogue Editor'),(1646,1395351,3,'Executive Producer'),(1646,1398863,6,'Music Editor'),(1646,1398872,10,'Visual Effects Supervisor'),(1646,1399319,1,'Still Photographer'),(1646,1400529,9,'Post Production Supervisor'),(1646,1401353,8,'Hair Department Head'),(1646,1404212,6,'Supervising Sound Editor'),(1646,1406390,6,'Sound Effects Editor'),(1646,1414489,8,'Hairstylist'),(1646,1415610,9,'Property Master'),(1646,1418528,8,'Hairstylist'),(1646,1424704,8,'Set Costumer'),(1646,1425395,6,'Music Editor'),(1646,1440312,9,'Unit Publicist'),(1646,1450292,3,'Unit Production Manager'),(1646,1545448,6,'Music Supervisor'),(1646,1547186,9,'Special Effects Coordinator'),(1646,1561842,1,'Camera Operator'),(1646,1605897,10,'Visual Effects Producer'),(1646,1698591,7,'Art Department Coordinator'),(1646,1700534,3,'Executive Producer'),(1646,1700563,9,'Stunt Coordinator'),(1646,1700564,3,'Associate Producer'),(1646,1700565,6,'Sound Mixer'),(1646,1700567,8,'Key Hair Stylist'),(1646,1700568,5,'Assistant Editor'),(1646,1700569,3,'Casting Associate'),(1646,1700570,3,'Production Coordinator'),(4108,59,4,'Screenplay'),(4108,59,3,'Producer'),(4108,61,4,'Screenplay'),(4108,2186,3,'Casting'),(4108,5437,6,'Sound Designer'),(4108,9769,6,'Original Music Composer'),(4108,18865,2,'Director'),(4108,18865,7,'Art Direction'),(4108,21932,3,'Producer'),(4108,24761,8,'Costume Design'),(4108,35452,2,'Director'),(4108,35453,1,'Director of Photography'),(4108,35454,5,'Editor'),(4108,35455,7,'Production Design'),(4108,46291,6,'Sound Re-Recording Mixer'),(4108,72253,3,'Production Manager'),(4108,83688,3,'Associate Producer'),(4108,1276868,2,'Script Supervisor'),(4108,1367562,1,'Still Photographer'),(4108,1402245,6,'Sound Designer'),(4108,1402246,6,'Sound Re-Recording Mixer'),(4108,1582917,8,'Hair Department Head'),(4108,1603820,8,'Makeup Department Head'),(4108,1603821,8,'Hairstylist'),(8456,5167,7,'Production Design'),(8456,7536,8,'Costume Design'),(8456,9187,5,'Editor'),(8456,14695,3,'Producer'),(8456,55075,2,'Director'),(8456,55077,4,'Screenplay'),(8456,55078,3,'Producer'),(8456,55079,1,'Director of Photography'),(8456,55080,5,'Editor'),(8456,55081,9,'Stunt Coordinator'),(7341,3027,4,'Characters'),(7341,7534,3,'Casting'),(7341,13410,9,'Special Effects Coordinator'),(7341,9424,8,'Makeup Artist'),(7341,9654,9,'Stunt Coordinator'),(7341,8868,8,'Costume Design'),(7341,9579,3,'Producer'),(7341,15014,7,'Production Design'),(7341,10829,3,'Executive Producer'),(7341,52517,4,'Writer'),(7341,53289,6,'Original Music Composer'),(7341,53290,1,'Director of Photography'),(7341,53291,5,'Editor'),(7341,102634,2,'Director'),(7341,60503,3,'Casting'),(7341,82357,7,'Co-Art Director'),(7341,158916,6,'Sound Re-Recording Mixer'),(7341,548433,9,'Sound Recordist'),(7341,1124740,1,'Camera Operator'),(7341,1334481,7,'Art Direction'),(7341,1334482,9,'Property Master'),(7341,1334483,9,'Property Master'),(7341,1334484,7,'Set Decoration Buyer'),(7341,1334485,6,'Sound Designer'),(7341,1372880,6,'Supervising Sound Editor'),(7341,1391393,11,'Gaffer'),(7341,1405703,9,'Makeup Effects'),(7341,1406829,9,'Sound Recordist'),(7341,1408714,8,'Makeup Artist'),(7341,1408715,3,'Production Manager'),(7341,1408716,7,'Construction Foreman'),(7341,1408717,10,'Visual Effects Producer'),(7341,1408718,10,'Visual Effects Supervisor'),(7341,1408719,1,'Camera Operator'),(7341,1408720,1,'Additional Camera'),(7341,1408721,1,'Still Photographer'),(7341,1408722,6,'Music Editor'),(7341,1408723,9,'Transportation Coordinator'),(7341,1408724,9,'Driver'),(7341,1408725,2,'Script Supervisor'),(1946,224,2,'Director'),(1946,224,4,'Screenplay'),(1946,224,3,'Producer'),(1946,307,1,'Director of Photography'),(1946,307,1,'Camera Operator'),(1946,310,5,'Editor'),(1946,117,6,'Original Music Composer'),(1946,2688,6,'ADR & Dubbing'),(1946,8315,7,'Production Design'),(1946,11229,6,'Supervising Sound Effects Editor'),(1946,13551,8,'Costume Design'),(1946,15224,3,'Co-Producer'),(1946,10836,7,'Set Decoration'),(1946,20181,3,'Producer'),(1946,20182,3,'Producer'),(1946,11004,7,'Art Direction'),(1946,20228,6,'Foley'),(1946,20229,6,'Foley'),(1946,69579,10,'Visual Effects Supervisor'),(1946,75574,3,'Co-Producer'),(1946,91886,5,'Dialogue Editor'),(1946,91890,5,'Dialogue Editor'),(1946,123307,9,'Dialect Coach'),(1946,142165,6,'Music Editor'),(1946,563116,8,'Makeup Artist'),(1946,570124,6,'Sound Re-Recording Mixer'),(1946,589952,6,'Sound Re-Recording Mixer'),(1946,972016,3,'Casting'),(1946,999544,3,'Co-Producer'),(1946,1073044,6,'Sound Effects Editor'),(1946,1098881,11,'Gaffer'),(1946,1337452,9,'Property Master'),(1946,1340919,2,'Script Supervisor'),(1946,1399501,9,'Scenic Artist'),(1946,1404836,9,'Scenic Artist'),(1946,1404851,8,'Costume Supervisor'),(1946,1407207,6,'Music Editor'),(1946,1415152,9,'Stunt Coordinator'),(1946,1425477,6,'Dolby Consultant'),(1946,1425973,7,'Art Department Coordinator'),(1946,1425975,7,'Construction Coordinator'),(1946,1428469,8,'Hairstylist'),(1946,1428511,9,'Unit Publicist'),(1946,1436493,8,'Hairstylist'),(1946,1436494,8,'Makeup Artist'),(1946,1436500,7,'Greensman'),(1946,1436502,7,'Leadman'),(1946,1436503,7,'Leadman'),(1946,1436505,9,'Scenic Artist'),(1946,1436507,9,'Scenic Artist'),(1946,1436509,9,'Scenic Artist'),(1946,1436511,9,'Scenic Artist'),(1946,1436522,6,'Sound Effects Editor'),(1946,1436525,1,'Still Photographer'),(1946,1436526,9,'Transportation Coordinator'),(1946,1436527,3,'Location Manager'),(1946,1439502,3,'Associate Producer'),(85,1,3,'Executive Producer'),(85,1,5,'Editor'),(85,1,4,'Story'),(85,491,6,'Original Music Composer'),(85,488,2,'Director'),(85,493,5,'Editor'),(85,597,3,'Casting'),(85,598,3,'Casting'),(85,648,4,'Story'),(85,664,3,'Producer'),(85,665,3,'Executive Producer'),(85,666,1,'Director of Photography'),(85,668,3,'Casting'),(85,669,7,'Production Design'),(85,670,6,'Sound Designer'),(85,671,6,'Supervising Sound Effects Editor'),(85,711,3,'Associate Producer'),(85,865,9,'Production Intern'),(85,5059,7,'Art Direction'),(85,8844,4,'Screenplay'),(85,7211,8,'Costume Design'),(85,8526,7,'Set Decoration'),(85,9974,9,'Stunt Coordinator'),(85,10407,8,'Makeup Artist'),(85,10408,3,'Production Supervisor'),(85,40740,9,'Stunts'),(85,15358,9,'Stunts'),(85,19567,9,'Stunts'),(85,21548,10,'Visual Effects Supervisor'),(85,29064,8,'Hairstylist'),(85,29296,1,'Additional Photography'),(85,53587,9,'Stunts'),(85,589874,9,'Stunts'),(85,1271078,9,'Stunts'),(85,1336275,6,'Orchestrator'),(85,1340060,1,'Camera Operator'),(85,1401306,9,'Stunts'),(85,1424133,10,'Visual Effects'),(85,1429381,9,'Driver'),(85,1469629,9,'Stunts'),(85,1532214,8,'Assistant Costume Designer'),(85,1560753,3,'Location Manager'),(85,1572559,9,'Driver'),(85,1574927,8,'Makeup Artist'),(85,1608123,9,'Stunts'),(85,1789636,6,'Orchestrator'),(772,491,6,'Original Music Composer'),(772,1215,5,'Editor'),(772,2396,7,'Production Design'),(772,2874,3,'Casting'),(772,3275,3,'Casting'),(772,8867,7,'Set Decoration'),(772,10965,2,'Director'),(772,11505,4,'Screenplay'),(772,11505,3,'Producer'),(772,11506,1,'Director of Photography'),(772,11509,8,'Costume Design'),(772,52042,3,'Executive Producer'),(840,491,6,'Original Music Composer'),(840,488,2,'Director'),(840,488,4,'Writer'),(840,493,5,'Editor'),(840,1046,3,'Casting'),(840,8558,7,'Production Design'),(840,12437,7,'Set Decoration'),(840,8429,3,'Producer'),(840,8432,9,'Stunt Coordinator'),(840,12235,1,'Director of Photography'),(840,12432,3,'Producer'),(840,12433,3,'Producer'),(840,12435,3,'Casting'),(840,12436,7,'Art Direction'),(840,12677,4,'Writer'),(840,12678,4,'Writer'),(840,14642,1,'Camera Operator'),(840,16539,6,'Supervising Sound Effects Editor'),(840,17916,2,'Script Supervisor'),(840,21559,7,'Production Illustrator'),(840,29705,4,'Writer'),(840,58101,4,'Writer'),(840,66142,6,'Music Editor'),(840,74778,6,'Sound Re-Recording Mixer'),(840,122754,9,'Property Master'),(840,1379977,11,'Gaffer'),(840,1411292,1,'Still Photographer'),(840,1411293,1,'Still Photographer'),(840,1411295,1,'Still Photographer'),(840,1411299,3,'Publicist'),(840,1411302,3,'Publicist'),(840,1411303,3,'Location Manager'),(9682,1307,3,'Executive Producer'),(9682,59839,3,'Executive Producer'),(9682,5140,4,'Author'),(9682,43609,6,'Original Music Composer'),(9682,56250,1,'Director of Photography'),(9682,58514,2,'Director'),(9682,58515,4,'Author'),(9682,74474,6,'Sound Designer'),(9682,1813644,9,'Stunts'),(96,770,3,'Producer'),(96,541,5,'Editor'),(96,897,3,'Casting'),(96,771,3,'Producer'),(96,772,4,'Characters'),(96,774,4,'Characters'),(96,776,4,'Story'),(96,795,7,'Art Direction'),(96,799,6,'Original Music Composer'),(96,893,2,'Director'),(96,904,1,'Director of Photography'),(96,909,5,'Editor'),(96,908,5,'Editor'),(96,910,10,'Visual Effects'),(96,911,3,'Executive Producer'),(96,911,4,'Story'),(96,912,4,'Screenplay'),(96,913,4,'Screenplay'),(96,16176,7,'Set Decoration'),(96,59710,8,'Costume Supervisor'),(96,63950,3,'Executive Producer'),(96,118943,9,'Special Effects Coordinator'),(96,1206905,8,'Costume Supervisor'),(96,1411685,7,'Assistant Art Director'),(96,1455417,2,'Script Supervisor'),(96,1534523,7,'Production Design'),(274,117,6,'Original Music Composer'),(274,557,8,'Costume Design'),(274,1530,3,'Casting'),(274,3104,6,'Production Sound Mixer'),(274,16294,2,'Director'),(274,16296,3,'Producer'),(274,16296,2,'Assistant Director'),(274,16297,3,'Producer'),(274,16298,3,'Producer'),(274,16298,3,'Unit Production Manager'),(274,16300,1,'Director of Photography'),(274,4869,5,'Editor'),(274,5339,6,'ADR & Dubbing'),(274,20585,7,'Set Decoration'),(274,9619,6,'Sound Designer'),(274,9178,7,'Production Design'),(274,17148,4,'Storyboard'),(274,12257,7,'Art Direction'),(274,15431,9,'Makeup Effects'),(274,15308,6,'Music Supervisor'),(274,16786,4,'Novel'),(274,21718,7,'Assistant Art Director'),(274,27098,3,'Executive Producer'),(274,32490,8,'Hair Designer'),(274,54433,9,'Thanks'),(274,56387,1,'Camera Operator'),(274,57862,4,'Screenplay'),(274,65209,7,'Location Scout'),(274,92376,6,'Foley'),(274,92386,5,'Dialogue Editor'),(274,69129,9,'Stunts'),(274,73842,9,'Post Production Supervisor'),(274,74787,9,'Stunts'),(274,82744,9,'Production Intern'),(274,142156,6,'Sound Recordist'),(274,142161,9,'Stunt Coordinator'),(274,142165,6,'Music Editor'),(274,142168,9,'Transportation Captain'),(274,543384,6,'Assistant Sound Editor'),(274,983118,1,'Steadicam Operator'),(274,1031697,5,'First Assistant Editor'),(274,1308375,6,'Foley'),(274,1321372,9,'Makeup Effects'),(274,1328148,3,'Casting'),(274,1333607,8,'Costume Supervisor'),(274,1337469,6,'Music'),(274,1349468,9,'Stunts'),(274,1355956,9,'Special Effects'),(274,1357070,9,'Transportation Coordinator'),(274,1378068,9,'Makeup Effects'),(274,1391591,1,'First Assistant Camera'),(274,1395360,7,'Property Master'),(274,1395368,11,'Gaffer'),(274,1400072,6,'Sound Re-Recording Mixer'),(274,1415964,6,'ADR & Dubbing'),(274,1458527,8,'Makeup Artist'),(274,1474992,3,'Associate Producer'),(274,1538430,1,'Still Photographer'),(274,1544908,6,'Foley'),(274,1546806,7,'Art Department Coordinator'),(274,1549583,8,'Assistant Costume Designer'),(274,1550194,11,'Best Boy Electric'),(274,1550205,8,'Costume Supervisor'),(274,1552181,7,'Painter'),(274,1552549,5,'Color Timer'),(274,1554309,11,'Electrician'),(274,1674650,1,'Key Grip'),(274,1782069,7,'Construction Coordinator'),(274,1782070,7,'Standby Painter'),(274,1782071,1,'Grip'),(274,1782072,1,'Aerial Camera'),(274,1783214,8,'Set Dressing Artist'),(274,1783215,9,'Craft Service'),(274,1783216,9,'Post Production Assistant'),(274,1783218,9,'Scenic Artist'),(274,1783219,9,'Set Production Assistant'),(274,1783220,9,'Transportation Co-Captain'),(274,1783221,9,'Unit Publicist'),(274,1783223,3,'Executive In Charge Of Production'),(274,1783226,3,'Location Manager'),(274,1783228,6,'Boom Operator'),(274,1783230,6,'Orchestrator'),(274,1783233,6,'Dolby Consultant'),(8872,10815,1,'Director of Photography'),(8872,12073,4,'Characters'),(8872,12073,4,'Author'),(8872,14457,5,'Editor'),(8872,13017,3,'Executive Producer'),(8872,28156,6,'Original Music Composer'),(8872,56158,3,'Producer'),(8872,58448,2,'Director'),(8872,56156,4,'Author'),(8872,56157,4,'Author'),(579,491,6,'Original Music Composer'),(579,38,5,'Editor'),(579,1297,3,'Producer'),(579,7231,5,'Editor'),(579,5322,3,'Producer'),(579,8554,4,'Screenplay'),(579,8555,4,'Screenplay'),(579,8558,7,'Production Design'),(579,8586,9,'Special Effects'),(579,8591,9,'Stunt Coordinator'),(579,16187,2,'Director'),(579,16188,4,'Screenplay'),(579,16189,1,'Director of Photography'),(579,12291,7,'Art Direction'),(579,16191,7,'Art Direction'),(579,12437,7,'Set Decoration'),(579,16192,8,'Costume Design'),(579,16193,8,'Makeup Artist'),(579,16194,8,'Hairstylist'),(579,16195,6,'Music Editor'),(579,16196,6,'Sound Effects Editor'),(579,13410,9,'Special Effects'),(579,7870,5,'Editor'),(1584,564,2,'Director'),(1584,580,5,'Editor'),(1584,2997,3,'Producer'),(1584,6493,3,'Casting'),(1584,9249,3,'Executive Producer'),(1584,17735,4,'Screenplay'),(1584,17748,6,'Music'),(1584,17749,1,'Director of Photography'),(1584,17750,7,'Art Direction'),(1584,17751,3,'Executive Producer'),(1584,17873,7,'Set Decoration'),(1584,19285,8,'Costume Design'),(1584,22105,7,'Production Design'),(1584,1123059,3,'Unit Production Manager'),(1584,1209612,2,'Script Supervisor'),(1584,1406907,3,'Location Manager'),(1584,1539404,3,'Casting Assistant'),(1584,1733215,3,'Production Coordinator'),(1584,1781229,3,'Casting Associate'),(1584,1790834,3,'Casting Associate'),(1584,1790856,3,'Production Coordinator'),(9312,4014,2,'Director'),(9312,3961,5,'Editor'),(9312,9204,6,'Original Music Composer'),(9312,26714,1,'Director of Photography'),(9312,10809,3,'Executive Producer'),(9312,43518,3,'Producer'),(9312,57256,4,'Screenplay'),(9312,57256,9,'Creator'),(9312,57257,4,'Screenplay'),(9312,57257,9,'Creator'),(9312,57258,4,'Screenplay'),(9312,57259,3,'Producer'),(9312,57260,3,'Producer'),(9312,34652,3,'Executive Producer'),(9312,1158477,2,'Script Supervisor'),(8326,11475,7,'Production Design'),(8326,12989,2,'Director'),(8326,12989,3,'Producer'),(8326,20206,3,'Producer'),(8326,20297,5,'Editor'),(8326,41591,1,'Director of Photography'),(8326,49285,6,'Original Music Composer'),(8326,52056,5,'Editor'),(8326,55043,4,'Screenplay'),(8326,55044,4,'Screenplay'),(162,510,2,'Director'),(162,510,3,'Producer'),(162,510,4,'Story'),(162,531,6,'Original Music Composer'),(162,547,3,'Casting'),(162,557,8,'Costume Design'),(162,1899,3,'Producer'),(162,1901,4,'Screenplay'),(162,1901,4,'Story'),(162,1917,5,'Editor'),(162,1918,5,'Editor'),(162,1919,1,'Director of Photography'),(162,406204,8,'Makeup Department Head'),(162,1803758,10,'Special Effects Supervisor'),(1051,852,5,'Editor'),(1051,3104,6,'Sound'),(1051,16298,3,'Associate Producer'),(1051,16331,1,'Director of Photography'),(1051,6483,4,'Screenplay'),(1051,14054,3,'Producer'),(1051,14059,9,'Special Effects'),(1051,15175,2,'Director'),(1051,15176,4,'Book'),(1051,15177,6,'Music'),(1051,15181,7,'Art Direction'),(1051,15182,7,'Set Decoration'),(1051,15186,9,'Stunt Coordinator'),(1051,18656,6,'Sound'),(1051,23703,8,'Makeup Artist'),(1051,71724,2,'Assistant Director'),(1051,191935,2,'Script Supervisor'),(1051,950637,2,'Assistant Director'),(1051,1512152,3,'Executive Producer'),(1051,1512153,8,'Costume Design'),(1051,1639063,3,'Casting'),(1051,1718001,3,'Unit Production Manager'),(8968,1317,7,'Art Direction'),(8968,7267,6,'Supervising Dialogue Editor'),(8968,7623,3,'Producer'),(8968,11468,6,'Music'),(8968,54490,7,'Production Design'),(8968,23905,3,'Casting'),(8968,20568,5,'Editor'),(8968,23541,3,'Executive Producer'),(8968,40837,8,'Costume Design'),(8968,56435,2,'Director'),(8968,58320,3,'Producer'),(8968,58321,4,'Author'),(8968,60364,7,'Set Decoration'),(8968,75301,6,'Sound Re-Recording Mixer'),(8968,84961,4,'Screenplay'),(8968,84962,4,'Screenplay'),(8968,132585,7,'Art Direction'),(8968,132589,8,'Makeup Artist'),(8968,132589,8,'Hairstylist'),(8968,132596,7,'Set Decoration'),(8968,961358,3,'Casting'),(8968,978451,3,'Casting'),(8968,1182834,6,'Sound Designer'),(8968,1209263,1,'Director of Photography'),(8968,1313926,9,'Post Production Supervisor'),(8968,1331655,9,'Stunt Coordinator'),(8968,1333047,7,'Art Direction'),(8968,1333048,8,'Makeup Department Head'),(8968,1394065,5,'Dialogue Editor'),(8968,1394066,6,'Foley'),(8968,1394069,10,'Visual Effects Supervisor'),(8968,1394071,1,'Still Photographer'),(8968,1406064,7,'Construction Foreman'),(8968,1406065,9,'Property Master'),(8968,1406066,6,'Sound Designer'),(8968,1406066,6,'Supervising Sound Editor'),(8968,1406067,9,'Sound Recordist'),(8968,1406068,6,'Sound Effects Editor'),(8968,1406069,6,'Sound Re-Recording Mixer'),(8968,1406070,10,'Visual Effects Supervisor'),(8968,1406071,10,'Visual Effects Producer'),(8968,1406072,9,'Stunt Coordinator'),(8968,1406073,1,'Additional Camera'),(8968,1406075,3,'Publicist'),(8968,1406076,3,'Publicist'),(8968,1406077,3,'Location Manager'),(8968,1447518,9,'Stunts'),(9963,122,6,'Original Music Composer'),(9963,7231,5,'Editor'),(9963,9545,3,'Casting'),(9963,16614,7,'Production Design'),(9963,20739,3,'Producer'),(9963,20742,3,'Producer'),(9963,21478,3,'Producer'),(9963,28162,8,'Costume Design'),(9963,42908,3,'Producer'),(9963,57965,3,'Executive Producer'),(9963,60946,3,'Casting'),(9963,61090,3,'Producer'),(9963,61091,3,'Producer'),(9963,61089,3,'Line Producer'),(9963,61087,2,'Director'),(9963,61092,1,'Director of Photography'),(9963,61088,3,'Producer'),(9963,61095,3,'Executive Producer'),(9963,61096,3,'Executive Producer'),(9963,61094,7,'Set Decoration'),(9963,61097,7,'Art Direction'),(9963,1392461,4,'Writer'),(9760,1260,7,'Production Design'),(9760,1999,6,'Original Music Composer'),(9760,18344,3,'Producer'),(9760,24192,6,'Music Supervisor'),(9760,35513,7,'Set Decoration'),(9760,33283,5,'Editor'),(9760,35694,2,'Director'),(9760,35694,4,'Writer'),(9760,35734,2,'Director'),(9760,35734,4,'Writer'),(9760,51982,3,'Casting'),(9760,51983,3,'Casting'),(9760,52260,1,'Director of Photography'),(9760,1392150,2,'Script Supervisor'),(9760,1527657,6,'Music Supervisor'),(1975,4998,1,'Director of Photography'),(1975,19155,6,'Original Music Composer'),(1975,13585,3,'Casting'),(1975,11359,3,'Producer'),(1975,19662,3,'Casting'),(1975,20310,2,'Director'),(1975,20310,4,'Characters'),(1975,20355,4,'Screenplay'),(1975,20316,3,'Producer'),(1975,20382,5,'Editor'),(1975,20383,7,'Production Design'),(1975,20384,7,'Art Direction'),(1975,20385,7,'Set Decoration'),(1975,52165,8,'Hairstylist'),(1975,132589,8,'Hairstylist'),(1975,1183915,8,'Costume Design'),(1975,1403359,2,'Script Supervisor'),(1975,1457818,8,'Costume Design'),(1649,601,7,'Production Design'),(1649,3393,6,'Music'),(1649,9612,4,'Screenplay'),(1649,9612,4,'Characters'),(1649,9184,3,'Producer'),(1649,9196,3,'Executive Producer'),(1649,8880,3,'Production Manager'),(1649,11409,1,'Director of Photography'),(1649,18382,4,'Screenplay'),(1649,18382,4,'Characters'),(1649,18357,2,'Director'),(1649,18387,5,'Editor'),(1649,18389,3,'Executive Producer'),(9895,5912,6,'Original Music Composer'),(9895,4700,3,'Producer'),(9895,8246,2,'Director'),(9895,8246,4,'Author'),(9895,9647,5,'Editor'),(9895,12374,3,'Executive Producer'),(9895,12481,8,'Costume Design'),(9895,18457,3,'Casting'),(9895,23547,7,'Set Decoration'),(9895,54797,3,'Executive Producer'),(9895,60084,3,'Executive Producer'),(9895,60086,5,'Editor'),(9895,60085,1,'Director of Photography'),(9895,60088,7,'Art Direction'),(9895,60087,7,'Production Design'),(9895,983595,7,'Art Direction'),(9895,1203317,3,'Producer'),(9570,12863,3,'Producer'),(9570,12869,7,'Art Direction'),(9570,12870,7,'Art Direction'),(9570,12871,7,'Set Decoration'),(9570,2289,6,'Original Music Composer'),(9570,5062,6,'Sound Re-Recording Mixer'),(9570,15821,10,'Animation'),(9570,10796,8,'Makeup Supervisor'),(9570,14493,8,'Costume Design'),(9570,41397,4,'Story'),(9570,43891,1,'Camera Operator'),(9570,46619,4,'Screenplay'),(9570,47893,2,'Director'),(9570,58004,4,'Screenplay'),(9570,58007,1,'Director of Photography'),(9570,58008,5,'Editor'),(9570,70541,6,'Supervising Music Editor'),(9570,67628,10,'Animation'),(9570,78076,6,'Sound Effects Editor'),(9570,137461,9,'Special Sound Effects'),(9570,958487,7,'Production Design'),(9570,1132695,11,'Gaffer'),(9570,1304326,1,'Still Photographer'),(9570,1332195,7,'Art Direction'),(9570,1332196,7,'Set Decoration'),(9570,1332198,8,'Costume Supervisor'),(9570,1404256,3,'Production Manager'),(9570,1404257,9,'Property Master'),(9570,1404258,6,'Sound Re-Recording Mixer'),(9570,1404259,9,'Special Sound Effects'),(9570,1404263,9,'Special Sound Effects'),(9570,1404264,6,'Sound Effects Editor'),(9570,1404265,6,'Sound Effects Editor'),(9570,1404266,10,'Animation'),(9570,1404269,6,'Music Editor'),(9570,1404270,2,'Script Supervisor'),(9570,1404271,8,'Hairstylist'),(9570,1834338,6,'Sound Effects Editor'),(1164,322,3,'Producer'),(1164,223,2,'Director'),(1164,223,4,'Idea'),(1164,223,3,'Producer'),(1164,273,4,'Screenplay'),(1164,273,4,'Idea'),(1164,275,1,'Director of Photography'),(1164,278,6,'Original Music Composer'),(1164,1891,5,'Editor'),(1164,4446,3,'Producer'),(1164,4447,3,'Producer'),(1164,5392,8,'Costume Design'),(1164,6208,7,'Production Design'),(1164,17115,5,'Editor'),(1164,17116,7,'Art Direction'),(1164,17117,7,'Set Decoration'),(1164,16994,6,'Sound Designer'),(1164,557443,3,'Line Producer'),(1164,952511,3,'Line Producer'),(1164,1115008,3,'Producer'),(1164,1115009,3,'Line Producer'),(1164,1115010,3,'Line Producer'),(1164,1462845,6,'Sound Designer'),(3989,2997,3,'Executive Producer'),(3989,5626,3,'Producer'),(3989,5626,3,'Unit Production Manager'),(3989,5553,6,'Original Music Composer'),(3989,9341,1,'Director of Photography'),(3989,7903,3,'Casting'),(3989,17751,3,'Executive Producer'),(3989,34517,2,'Director'),(3989,34517,3,'Producer'),(3989,34517,4,'Screenplay'),(3989,34518,3,'Producer'),(3989,34518,9,'Second Unit'),(3989,34518,4,'Screenplay'),(3989,34522,3,'Producer'),(3989,34522,4,'Screenplay'),(3989,34523,3,'Executive Producer'),(3989,34524,3,'Producer'),(3989,34525,7,'Sculptor'),(3989,34526,7,'Sculptor'),(3989,34527,9,'Post Production Supervisor'),(3989,34528,3,'Production Supervisor'),(3989,34529,6,'Sound Mixer'),(3989,1229805,10,'Animation'),(3989,1454389,10,'Animation'),(3989,1454410,10,'Animation'),(3989,1457666,5,'Assistant Editor'),(3989,1462577,9,'Other'),(3989,1466481,10,'Animation'),(1710,4023,3,'Casting'),(1710,376,3,'Executive Producer'),(1710,376,3,'Producer'),(1710,853,5,'Editor'),(1710,1253,7,'Production Design'),(1710,3104,6,'Production Sound Mixer'),(1710,3192,3,'Casting'),(1710,10570,3,'Executive Producer'),(1710,5328,3,'Casting'),(1710,19155,6,'Original Music Composer'),(1710,8862,1,'Director of Photography'),(1710,8970,5,'Editor'),(1710,15148,2,'Director'),(1710,17815,4,'Screenplay'),(1710,18679,3,'Executive Producer'),(1710,18679,3,'Producer'),(1710,18683,4,'Screenplay'),(1710,20570,7,'Set Decoration'),(1710,60579,7,'Art Direction'),(1710,1433649,2,'Script Supervisor'),(1710,1522068,8,'Costume Design'),(4258,9562,4,'Characters'),(4258,12987,4,'Writer'),(4258,14377,3,'Casting'),(4258,31131,8,'Costume Design'),(4258,21420,7,'Production Design'),(4258,23739,6,'Original Music Composer'),(4258,35690,4,'Characters'),(4258,35692,4,'Characters'),(4258,35693,4,'Characters'),(4258,35694,4,'Characters'),(4258,35734,4,'Characters'),(4258,12991,4,'Writer'),(4258,59747,1,'Director of Photography'),(4258,65736,7,'Set Decoration'),(4258,72024,2,'Director'),(4258,73108,5,'Editor'),(4258,74989,1,'Camera Operator'),(4258,119575,9,'Stunt Coordinator'),(4258,1383482,9,'Stunts'),(4258,1452641,7,'Art Direction'),(4258,1636393,6,'Music Supervisor'),(4258,1636394,6,'Production Sound Mixer'),(9645,24,3,'Producer'),(9645,1091,3,'Producer'),(9645,1296,3,'Executive Producer'),(9645,2953,3,'Casting'),(9645,6446,9,'Makeup Effects'),(9645,10953,3,'Producer'),(9645,9349,6,'Supervising Sound Editor'),(9645,9430,6,'Supervising Sound Editor'),(9645,10123,5,'Editor'),(9645,21962,6,'Original Music Composer'),(9645,37162,3,'Co-Producer'),(9645,39726,3,'Executive Producer'),(9645,42119,1,'Director of Photography'),(9645,57521,2,'Director'),(9645,58278,4,'Screenplay'),(9645,58279,5,'Editor'),(9645,59328,4,'Screenplay'),(9645,62484,7,'Art Direction'),(9645,62740,3,'Co-Producer'),(9645,62745,7,'Set Decoration'),(9645,62743,7,'Production Design'),(9645,76090,2,'Third Assistant Director'),(9645,105690,3,'Production Accountant'),(9645,132622,10,'3D Artist'),(9645,143915,6,'Supervising ADR Editor'),(9645,548450,10,'Visual Effects'),(9645,928371,8,'Costume Design'),(9645,1018071,9,'Visual Effects Editor'),(9645,1018071,5,'First Assistant Editor'),(9645,1028058,10,'Visual Effects Supervisor'),(9645,1087623,3,'Casting'),(9645,1109904,3,'Production Manager'),(9645,1110992,9,'Stunt Coordinator'),(9645,1115279,1,'Helicopter Camera'),(9645,1116937,6,'Foley'),(9645,1121617,3,'Associate Producer'),(9645,1121617,3,'Unit Production Manager'),(9645,1153775,2,'First Assistant Director'),(9645,1206191,9,'Makeup Effects'),(9645,1305001,3,'Casting'),(9645,1334517,6,'Music Editor'),(9645,1357178,9,'Stunts'),(9645,1373694,7,'Set Designer'),(9645,1389135,8,'Costume Supervisor'),(9645,1391735,2,'Script Supervisor'),(9645,1395023,6,'Assistant Sound Editor'),(9645,1395243,1,'Still Photographer'),(9645,1397823,6,'Foley'),(9645,1401661,9,'Executive Visual Effects Producer'),(9645,1401739,11,'Gaffer'),(9645,1402733,7,'Assistant Art Director'),(9645,1402733,9,'Property Master'),(9645,1403711,8,'Makeup Artist'),(9645,1404278,3,'Researcher'),(9645,1408284,6,'Sound Re-Recording Mixer'),(9645,1409712,1,'Camera Operator'),(9645,1412741,6,'Production Sound Mixer'),(9645,1412745,9,'Second Unit Cinematographer'),(9645,1412758,9,'Unit Publicist'),(9645,1418814,1,'First Assistant Camera'),(9645,1427570,5,'Dialogue Editor'),(9645,1438651,10,'Visual Effects Producer'),(9645,1454530,7,'Art Department Coordinator'),(9645,1454928,8,'Makeup Supervisor'),(9645,1454929,8,'Makeup Artist'),(9645,1454930,9,'Makeup Effects'),(9645,1454931,7,'Assistant Art Director'),(9645,1454932,7,'Set Designer'),(9645,1454933,7,'Set Designer'),(9645,1454934,7,'Set Designer'),(9645,1454935,6,'Sound Editor'),(9645,1454936,9,'Special Effects Coordinator'),(9645,1454937,10,'Animation Supervisor'),(9645,1454938,1,'Underwater Camera'),(9645,1454939,8,'Costume Supervisor'),(9645,1454940,8,'Set Costumer'),(9645,1464344,3,'Executive In Charge Of Post Production'),(9645,1482837,6,'First Assistant Sound Editor'),(9645,1486023,3,'Production Coordinator'),(9645,1536443,2,'Second Assistant Director'),(9645,1540470,5,'Color Timer'),(9645,1546580,3,'Executive In Charge Of Production'),(9645,1550566,6,'Orchestrator'),(9645,1584257,4,'Storyboard'),(9645,1588669,7,'Construction Coordinator'),(9645,1588671,1,'Key Grip'),(9645,1588672,8,'Prosthetic Supervisor'),(9645,1588673,7,'Set Dresser'),(9645,1588674,9,'Additional Music'),(9645,1588675,9,'Armorer'),(9645,1588676,9,'Carpenter'),(9645,1588677,9,'Digital Effects Supervisor'),(9645,1588678,9,'Driver'),(9645,1588679,9,'Telecine Colorist'),(9645,1588680,11,'Best Boy Electric'),(9645,1588681,11,'Lighting Technician'),(9645,1588682,3,'Location Manager'),(9645,1588683,6,'Boom Operator'),(9645,1588684,10,'Digital Compositors'),(9645,1588685,10,'Visual Effects Coordinator'),(9645,1588686,10,'VFX Editor'),(9645,1733019,6,'Musician'),(9645,1740563,6,'Conductor'),(9645,1836302,1,'Grip'),(9645,1836304,3,'Assistant Production Coordinator'),(617,904,1,'Director of Photography'),(617,4724,3,'Executive Producer'),(617,9200,2,'Director'),(617,9201,3,'Line Producer'),(617,9202,3,'Producer'),(617,9203,3,'Producer'),(617,9204,6,'Original Music Composer'),(617,3121,5,'Editor'),(617,81271,4,'Writer'),(243,117,6,'Original Music Composer'),(243,294,5,'Editor'),(243,547,3,'Casting'),(243,2236,3,'Producer'),(243,3036,4,'Screenplay'),(243,3224,2,'Director'),(243,3225,4,'Author'),(243,3226,4,'Screenplay'),(243,3227,4,'Screenplay'),(243,3228,4,'Screenplay'),(243,3264,3,'Producer'),(243,3285,1,'Director of Photography'),(243,3286,7,'Production Design'),(243,3287,7,'Production Design'),(6933,1075,6,'Original Music Composer'),(6933,1076,6,'Original Music Composer'),(6933,13585,3,'Casting'),(6933,8751,5,'Editor'),(6933,8760,6,'Music Editor'),(6933,9184,3,'Producer'),(6933,14337,3,'Producer'),(6933,27041,8,'Costume Design'),(6933,42036,6,'Supervising Sound Editor'),(6933,19662,3,'Casting'),(6933,18900,7,'Art Direction'),(6933,22818,1,'Director of Photography'),(6933,47285,3,'Producer'),(6933,47286,3,'Producer'),(6933,51445,2,'Director'),(6933,51446,4,'Screenplay'),(6933,51447,4,'Novel'),(6933,51448,3,'Producer'),(6933,51449,3,'Executive Producer'),(6933,51449,3,'Unit Production Manager'),(6933,51450,3,'Executive Producer'),(6933,51451,3,'Executive Producer'),(6933,51452,3,'Executive Producer'),(6933,51453,3,'Executive Producer'),(6933,25550,7,'Production Design'),(6933,80605,3,'Casting'),(6933,80820,6,'Boom Operator'),(6933,548441,6,'Sound mixer'),(6933,579405,6,'Sound Re-Recording Mixer'),(6933,1117311,3,'Executive In Charge Of Production'),(6933,1334517,6,'Music Editor'),(6933,1386923,2,'Script Supervisor'),(6933,1395446,6,'Sound Re-Recording Mixer'),(6933,1427584,5,'First Assistant Editor'),(6933,1439013,7,'Art Department Coordinator'),(6933,1535987,6,'Music Supervisor'),(6933,1537463,6,'Sound Re-Recording Mixer'),(6933,1560272,2,'Script Supervisor'),(6933,1560273,1,'Still Photographer'),(6933,1560275,7,'Set Decoration'),(6933,1560277,3,'Production Supervisor'),(8848,1113,3,'Casting'),(8848,282,3,'Producer'),(8848,1315,5,'Editor'),(8848,6235,7,'Art Direction'),(8848,6235,7,'Set Decoration'),(8848,7021,1,'Director of Photography'),(8848,10976,9,'Stunt Coordinator'),(8848,11900,3,'Executive Producer'),(8848,21370,2,'Director'),(8848,18910,4,'Screenplay'),(8848,23651,7,'Production Design'),(8848,23454,7,'Supervising Art Director'),(8848,20424,8,'Costume Design'),(8848,21932,3,'Producer'),(8848,28156,6,'Original Music Composer'),(8848,38937,4,'Screenplay'),(8848,37436,3,'Executive Producer'),(8848,54419,3,'Executive Producer'),(8848,56093,3,'Executive Producer'),(8848,56094,3,'Executive Producer'),(8848,56095,3,'Executive Producer'),(8848,56096,3,'Executive Producer'),(8848,57201,3,'Producer'),(8848,72104,3,'Executive Producer'),(8848,122277,3,'Production Manager'),(8848,186976,10,'Visual Effects Supervisor'),(8848,1024905,3,'Executive Producer'),(8848,1024906,3,'Executive Producer'),(8848,1035203,3,'Line Producer'),(8848,1088259,3,'Line Producer'),(8848,1127780,3,'Producer'),(8848,1244653,9,'Post Production Supervisor'),(8848,1324095,8,'Costume Supervisor'),(8848,1342382,7,'Assistant Art Director'),(8848,1365542,6,'Sound Re-Recording Mixer'),(8848,1367562,1,'Still Photographer'),(8848,1391525,6,'Foley'),(8848,1392736,6,'Music Editor'),(8848,1395454,10,'Visual Effects Producer'),(8848,1402920,8,'Makeup Artist'),(8848,1402921,8,'Hairstylist'),(8848,1402923,7,'Art Department Coordinator'),(8848,1402924,9,'Property Master'),(8848,1402926,6,'Supervising Sound Effects Editor'),(8848,1402926,6,'Sound Re-Recording Mixer'),(8848,1402927,9,'Sound Recordist'),(8848,1402929,5,'Dialogue Editor'),(8848,1402930,9,'Special Effects Coordinator'),(8848,1402931,10,'Visual Effects Supervisor'),(8848,1402934,1,'Camera Operator'),(8848,1402937,1,'Camera Operator'),(8848,1402939,11,'Gaffer'),(8848,1402942,3,'Location Manager'),(8848,1402943,2,'Script Supervisor'),(8848,1402944,9,'Unit Publicist'),(8848,1402945,9,'Stand In'),(38,201,2,'Director'),(38,201,4,'Story'),(38,222,4,'Story'),(38,312,6,'Original Music Composer'),(38,313,1,'Director of Photography'),(38,202,4,'Screenplay'),(38,202,3,'Executive Producer'),(38,202,4,'Story'),(38,321,3,'Producer'),(38,322,3,'Producer'),(38,4340,1,'Camera Operator'),(38,546,3,'Casting'),(38,4475,5,'Editor'),(38,4276,3,'Executive Producer'),(38,7496,7,'Production Design'),(38,12032,3,'Executive Producer'),(38,33439,8,'Costume Design'),(38,56759,3,'Executive Producer'),(38,60793,7,'Set Decoration'),(38,992965,2,'Script Supervisor'),(38,1524379,11,'Gaffer'),(1266,5912,6,'Original Music Composer'),(1266,5914,3,'Casting'),(1266,7535,7,'Set Decoration'),(1266,10950,3,'Producer'),(1266,9648,7,'Production Design'),(1266,11695,3,'Producer'),(1266,13927,4,'Screenplay'),(1266,19769,2,'Director'),(1266,55391,4,'Screenplay'),(1266,18862,4,'Screenplay'),(1266,10832,1,'Director of Photography'),(1266,35176,5,'Editor'),(1266,75040,3,'Producer'),(1266,91854,8,'Makeup Department Head'),(1266,957799,8,'Costume Design'),(1266,1320958,8,'Costume Supervisor'),(9588,7728,6,'Original Music Composer'),(9588,18254,2,'Director'),(9588,28240,1,'Director of Photography'),(9588,58101,4,'Screenplay'),(9588,58102,3,'Producer'),(9588,58103,3,'Producer'),(9588,58104,5,'Editor'),(9954,68602,3,'Producer'),(9954,3953,3,'Producer'),(9954,3958,3,'Executive Producer'),(9954,7230,5,'Editor'),(9954,6044,3,'Casting'),(9954,16938,2,'Director'),(9954,17457,8,'Costume Design'),(9954,25744,1,'Director of Photography'),(9954,52371,4,'Author'),(9954,52371,3,'Executive Producer'),(9954,52377,3,'Executive Producer'),(9954,52788,3,'Executive Producer'),(9954,60890,3,'Producer'),(9954,60891,6,'Original Music Composer'),(9954,60888,3,'Executive Producer'),(9954,60889,3,'Executive Producer'),(9954,60892,7,'Production Design'),(9954,60893,7,'Art Direction'),(9954,60896,3,'Line Producer'),(9954,60897,7,'Production Design'),(9954,60895,7,'Set Decoration'),(9954,60894,7,'Set Decoration'),(577,531,6,'Original Music Composer'),(577,1530,3,'Casting'),(577,6392,8,'Costume Design'),(577,2553,3,'Executive Producer'),(577,10570,3,'Executive Producer'),(577,5216,2,'Director'),(577,6389,1,'Director of Photography'),(577,6390,5,'Editor'),(577,6628,7,'Production Design'),(577,7627,3,'Producer'),(577,7794,4,'Author'),(577,7795,4,'Screenplay'),(577,7797,3,'Producer'),(577,7798,3,'Producer'),(577,7800,3,'Casting'),(577,7802,7,'Set Decoration'),(9945,11770,2,'Director'),(9945,11770,6,'Music'),(9945,24956,1,'Director of Photography'),(9945,27581,3,'Producer'),(9945,27583,5,'Editor'),(9945,51346,4,'Screenplay'),(9945,60704,3,'Executive Producer'),(9945,62028,3,'Casting'),(9945,62029,8,'Costume Design'),(9945,957292,7,'Set Decoration'),(9945,1322413,7,'Art Direction'),(9945,1324476,3,'Casting'),(9945,1324477,7,'Production Design'),(539,1045,6,'Original Music Composer'),(539,2636,2,'Director'),(539,2636,3,'Producer'),(539,2655,5,'Editor'),(539,3456,8,'Costume Supervisor'),(539,6934,7,'Set Decoration'),(539,6935,2,'Assistant Director'),(539,7299,4,'Author'),(539,7300,4,'Screenplay'),(539,7305,1,'Director of Photography'),(539,7306,7,'Art Direction'),(539,7307,7,'Art Direction'),(539,7308,8,'Costume Design'),(539,7309,6,'Sound Designer'),(539,7310,6,'Sound Designer'),(539,7311,9,'Special Effects'),(539,14495,8,'Hairstylist'),(539,19460,9,'Title Graphics'),(539,27006,3,'Casting'),(539,1185253,2,'Assistant Director'),(539,1339685,8,'Makeup Artist'),(539,1574697,3,'Unit Manager'),(526,7202,1,'Director of Photography'),(526,2523,5,'Editor'),(526,7190,4,'Screenplay'),(526,3806,3,'Casting'),(526,7187,2,'Director'),(526,7187,3,'Producer'),(526,7188,4,'Screenplay'),(526,7189,4,'Screenplay'),(526,7191,4,'Screenplay'),(526,7199,3,'Executive Producer'),(526,7200,3,'Producer'),(526,7201,6,'Original Music Composer'),(526,7203,7,'Production Design'),(526,7204,7,'Art Direction'),(526,7205,7,'Art Direction'),(526,7206,8,'Costume Design'),(526,68330,9,'Stunts'),(526,1604915,9,'Stunts'),(526,1616303,9,'Stunt Coordinator'),(2355,6479,3,'Casting'),(2355,8527,8,'Costume Design'),(2355,20821,3,'Executive Producer'),(2355,22043,1,'Director of Photography'),(2355,24173,2,'Director'),(2355,24173,4,'Screenplay'),(2355,24176,3,'Producer'),(2355,24177,3,'Producer'),(2355,24179,3,'Executive Producer'),(2355,24184,7,'Production Design'),(2355,24186,5,'Editor'),(2355,24187,5,'Editor'),(2355,24190,6,'Original Music Composer'),(2355,24192,6,'Music Supervisor'),(2355,1457729,2,'Script Supervisor'),(5915,514,9,'Thanks'),(5915,6410,3,'Casting'),(5915,1254,3,'Executive Producer'),(5915,2228,4,'Screenplay'),(5915,2228,2,'Director'),(5915,2228,3,'Executive Producer'),(5915,19156,3,'Casting Associate'),(5915,8653,6,'Sound mixer'),(5915,12131,7,'Production Design'),(5915,13152,8,'Makeup Department Head'),(5915,13227,5,'Editor'),(5915,18494,1,'Director of Photography'),(5915,19016,6,'Original Music Composer'),(5915,25292,3,'Executive Producer'),(5915,28154,3,'Executive Producer'),(5915,46587,4,'Novel'),(5915,46588,3,'Executive Producer'),(5915,46589,8,'Costume Design'),(5915,46590,6,'Music'),(5915,46591,6,'Music'),(5915,46592,7,'Art Direction'),(5915,113155,10,'Visual Effects Producer'),(5915,75708,2,'Assistant Director'),(5915,75391,7,'Set Decoration'),(5915,82133,2,'Assistant Director'),(5915,417960,5,'Color Timer'),(5915,1128149,3,'Executive Producer'),(5915,1141373,9,'Stunt Coordinator'),(5915,1186279,1,'Steadicam Operator'),(5915,1204226,3,'Casting'),(5915,1262017,6,'Sound Effects Editor'),(5915,1262129,2,'Script Supervisor'),(5915,1327030,6,'Sound Re-Recording Mixer'),(5915,1370916,2,'Script Supervisor'),(5915,1377218,7,'Set Decoration'),(5915,1394724,1,'Still Photographer'),(5915,1399141,6,'Sound Re-Recording Mixer'),(5915,1417415,7,'Property Master'),(5915,1440737,3,'Casting Associate'),(5915,1462845,6,'Sound Designer'),(5915,1462845,6,'Supervising Sound Editor'),(5915,1483863,7,'Art Direction'),(5915,1524668,8,'Hair Department Head'),(5915,1543231,6,'Sound Effects Editor'),(5915,1547239,8,'Costume Supervisor'),(5915,1547240,6,'Music Supervisor'),(5915,1550830,10,'Special Effects Supervisor'),(5915,1608789,3,'Production Supervisor'),(5915,1608791,9,'Second Unit'),(5915,1658531,9,'Thanks'),(9842,546,3,'Casting'),(9842,1307,3,'Executive Producer'),(9842,59839,3,'Executive Producer'),(9842,5508,7,'Production Design'),(9842,7870,4,'Author'),(9842,9043,8,'Costume Design'),(9842,23486,6,'Original Music Composer'),(9842,35796,3,'Executive Producer'),(9842,38021,7,'Set Decoration'),(9842,41892,3,'Producer'),(9842,53683,5,'Editor'),(9842,56791,1,'Director of Photography'),(9842,57130,2,'Director'),(9842,57130,3,'Producer'),(9842,57130,4,'Author'),(9842,57132,3,'Producer'),(9842,57538,4,'Screenplay'),(9842,57538,4,'Author'),(9842,59833,3,'Producer'),(9842,59831,4,'Author'),(9842,59832,4,'Author'),(9842,59832,3,'Executive Producer'),(9842,59835,3,'Producer'),(9842,59834,3,'Producer'),(9842,59837,5,'Editor'),(9842,59838,7,'Art Direction'),(755,2294,2,'Director'),(755,2294,3,'Executive Producer'),(755,2294,5,'Editor'),(755,2294,6,'Sound Re-Recording Mixer'),(755,138,4,'Screenplay'),(755,138,3,'Executive Producer'),(755,2545,3,'Executive Producer'),(755,37334,3,'Co-Producer'),(755,37334,3,'Production Manager'),(755,11423,7,'Art Direction'),(755,3686,3,'Casting'),(755,3113,1,'Director of Photography'),(755,5911,3,'Co-Producer'),(755,5912,6,'Original Music Composer'),(755,10630,6,'Supervising Sound Editor'),(755,7731,3,'Casting'),(755,11419,4,'Story'),(755,11419,3,'Co-Producer'),(755,11420,3,'Producer'),(755,11421,3,'Co-Producer'),(755,11422,7,'Production Design'),(755,11424,7,'Set Decoration'),(755,11425,8,'Costume Design'),(755,16493,7,'Construction Foreman'),(755,68802,3,'Producer'),(755,113043,6,'Foley Editor'),(755,57112,9,'Post Production Supervisor'),(755,71901,2,'First Assistant Director'),(755,144146,8,'Key Hair Stylist'),(755,144146,8,'Key Makeup Artist'),(755,554888,6,'Sound Editor'),(755,1039595,8,'Makeup Effects Designer'),(755,1232529,6,'Sound Re-Recording Mixer'),(755,1269306,6,'Sound Editor'),(755,1341339,6,'Boom Operator'),(755,1341404,6,'Sound Editor'),(755,1358149,7,'Set Designer'),(755,1395016,7,'Construction Coordinator'),(755,1395022,6,'Sound Editor'),(755,1398123,6,'Sound Re-Recording Mixer'),(755,1404838,5,'Dialogue Editor'),(755,1415966,6,'Foley Editor'),(755,1423747,7,'Art Department Coordinator'),(755,1424130,6,'Sound Re-Recording Mixer'),(755,1433718,6,'Assistant Sound Editor'),(755,1433719,6,'Sound Effects Editor'),(755,1440822,6,'Sound Editor'),(755,1443060,7,'Sculptor'),(755,1538213,7,'Assistant Art Director'),(755,1547309,6,'Production Sound Mixer'),(755,1558414,7,'Set Dresser'),(755,1564584,6,'Sound Editor'),(755,1596321,6,'Sound Recordist'),(755,1662324,7,'Set Dresser'),(755,1685556,2,'Second Assistant Director'),(755,1783637,7,'Leadman'),(755,1851719,6,'Sound Editor'),(755,1851720,9,'Loader'),(755,1851721,6,'Boom Operator'),(755,1851722,6,'Boom Operator'),(755,1851723,9,'Tattooist'),(755,1851724,7,'Painter'),(755,1851725,7,'Painter'),(755,1851726,7,'Painter'),(755,1851727,7,'Painter'),(755,1851728,7,'Painter'),(755,1851729,7,'Painter'),(755,1851730,7,'Sculptor'),(755,1851731,7,'Sculptor'),(755,1851732,7,'Sculptor'),(755,1851733,7,'Set Dresser'),(755,1851734,7,'Set Dresser'),(755,1851736,7,'Set Dresser'),(755,1851737,7,'Set Dresser'),(755,1851738,7,'Assistant Property Master'),(9089,2952,3,'Casting'),(9089,1038,2,'Director'),(9089,1038,3,'Producer'),(9089,3394,5,'Editor'),(9089,4140,6,'Music'),(9089,8648,7,'Set Decoration'),(9089,9025,7,'Art Direction'),(9089,18179,4,'Screenplay'),(9089,19872,7,'Production Design'),(9089,20172,8,'Costume Design'),(9089,47275,1,'Director of Photography'),(9089,56945,4,'Screenplay'),(9089,56946,3,'Executive Producer'),(9089,56947,3,'Producer'),(9089,958273,2,'Script Supervisor'),(9089,1413197,8,'Costume Supervisor'),(9089,1467165,9,'Unit Publicist'),(9470,1361,5,'Editor'),(9470,29692,1,'Director of Photography'),(9470,57607,4,'Screenplay'),(9470,57607,2,'Director'),(9470,57607,3,'Producer'),(9470,57607,6,'Music'),(9470,57614,3,'Executive Producer'),(9470,57615,3,'Producer'),(9470,57616,3,'Executive Producer'),(9470,57617,3,'Producer'),(9470,57618,3,'Executive Producer'),(9470,57619,3,'Executive Producer'),(9470,57620,6,'Music'),(9470,57621,6,'Music'),(9470,57622,6,'Music'),(9470,545535,4,'Screenplay'),(9470,545536,4,'Screenplay'),(9470,545537,4,'Screenplay'),(9470,1758851,3,'Production Coordinator'),(7979,39,3,'Executive Producer'),(7979,9813,4,'Screenplay'),(7979,12995,2,'Director'),(7979,13000,1,'Director of Photography'),(7979,13005,5,'Editor'),(7979,15906,3,'Producer'),(7979,53346,3,'Casting'),(7979,53479,4,'Novel'),(7979,54252,3,'Producer'),(7979,1404750,5,'Digital Intermediate'),(7979,1434549,3,'Producer'),(7979,1445974,3,'Casting'),(7979,1460672,5,'Digital Intermediate'),(7979,1486847,5,'Digital Intermediate'),(7979,1486848,5,'Digital Intermediate'),(7979,1486851,5,'First Assistant Editor'),(470,223,2,'Director'),(470,223,3,'Producer'),(470,273,4,'Screenplay'),(470,273,3,'Producer'),(470,275,1,'Director of Photography'),(470,278,6,'Original Music Composer'),(470,6410,3,'Casting'),(470,1891,5,'Editor'),(470,3989,8,'Costume Design'),(470,6409,3,'Producer'),(470,5952,3,'Executive Producer'),(470,6208,7,'Production Design'),(470,6411,7,'Art Direction'),(470,6412,7,'Set Decoration'),(9582,5666,6,'Original Music Composer'),(9582,5668,5,'Editor'),(9582,17869,4,'Screenplay'),(9582,17869,4,'Scenario Writer'),(9582,18257,1,'Director of Photography'),(9582,8305,3,'Producer'),(9582,33104,3,'Producer'),(9582,58059,2,'Director'),(9582,58060,4,'Screenplay'),(9582,58061,4,'Screenplay'),(9582,58062,4,'Screenplay'),(2428,1263,3,'Casting'),(2428,7510,5,'Editor'),(2428,7512,7,'Production Design'),(2428,8503,6,'Original Music Composer'),(2428,8506,7,'Art Direction'),(2428,18738,4,'Screenplay'),(2428,18738,2,'Director'),(2428,18738,3,'Producer'),(2428,18744,1,'Director of Photography'),(2428,24792,4,'Screenplay'),(2428,24793,1,'Director of Photography'),(2428,24794,5,'Editor'),(2428,24795,5,'Editor'),(2428,24797,8,'Costume Design'),(2428,24800,9,'Sound Recordist'),(2428,24802,9,'Stunts Coordinator'),(2428,24803,3,'Producer'),(2428,24804,7,'Art Direction'),(2428,83906,4,'Novel'),(4597,960,6,'Original Music Composer'),(4597,3115,1,'Director of Photography'),(4597,8288,3,'Executive Producer'),(4597,8288,3,'Unit Production Manager'),(4597,21271,5,'Editor'),(4597,41671,2,'Director'),(4597,62165,3,'Executive Producer'),(4597,71262,3,'Producer'),(4597,226332,3,'Producer'),(4597,1002398,3,'Producer'),(4597,1114999,4,'Writer'),(4597,1115000,3,'Executive Producer'),(4597,1115001,3,'Executive Producer'),(9414,8383,7,'Set Decoration'),(9414,376,3,'Producer'),(9414,946,8,'Costume Design'),(9414,1253,7,'Production Design'),(9414,2357,4,'Screenplay'),(9414,5489,3,'Casting'),(9414,19155,6,'Original Music Composer'),(9414,15148,2,'Director'),(9414,18349,3,'Producer'),(9414,18679,3,'Producer'),(9414,22104,5,'Editor'),(9414,56593,1,'Director of Photography'),(9414,58479,4,'Screenplay'),(9414,60579,7,'Art Direction'),(9414,1385884,2,'Script Supervisor'),(9414,1464130,5,'Editor'),(9414,1464132,8,'Costume Supervisor'),(9414,1464133,9,'Choreographer'),(8198,1357,1,'Director of Photography'),(8198,2226,3,'Executive Producer'),(8198,2239,3,'Executive Producer'),(8198,5547,7,'Production Design'),(8198,7045,6,'Music'),(8198,12203,3,'Casting'),(8198,12232,3,'Executive Producer'),(8198,12952,4,'Screenplay'),(8198,13015,2,'Director'),(8198,15379,4,'Novel'),(8198,15906,3,'Producer'),(8198,20295,3,'Executive Producer'),(8198,30461,5,'Editor'),(8198,53972,4,'Screenplay'),(8198,8310,3,'Producer'),(6963,29,3,'Producer'),(6963,1704,2,'Director'),(6963,1722,5,'Editor'),(6963,947,6,'Original Music Composer'),(6963,2215,3,'Casting'),(6963,432,1,'Director of Photography'),(6963,4034,8,'Costume Design'),(6963,7146,7,'Production Design'),(6963,13588,7,'Set Decoration'),(6963,20647,4,'Screenplay'),(6963,19863,7,'Art Direction'),(6963,51612,3,'Producer'),(6963,51613,3,'Producer'),(6963,406204,8,'Makeup Department Head'),(6963,578729,8,'Hairstylist'),(6963,1400847,8,'Hairstylist'),(6963,1414993,7,'Art Department Coordinator'),(6963,1454884,10,'Visual Effects'),(6963,1458527,8,'Makeup Artist'),(6963,1480633,2,'Script Supervisor'),(4953,201,2,'Director'),(4953,201,4,'Screenplay'),(4953,201,3,'Producer'),(4953,313,1,'Director of Photography'),(4953,4231,3,'Producer'),(4953,4234,5,'Editor'),(4953,4276,3,'Producer'),(4953,4278,6,'Original Music Composer'),(4953,7496,7,'Production Design'),(4953,10830,3,'Executive Producer'),(4953,40248,7,'Art Direction'),(4953,40249,3,'Executive Producer'),(2639,1243,2,'Director'),(2639,1243,4,'Screenplay'),(2639,10576,7,'Art Direction'),(2639,8869,8,'Costume Design'),(2639,10440,5,'Editor'),(2639,15194,1,'Director of Photography'),(2639,23966,7,'Production Design'),(2639,27562,3,'Producer'),(2639,92377,6,'Sound Re-Recording Mixer'),(5971,294,5,'Editor'),(5971,1254,3,'Producer'),(5971,1255,4,'Screenplay'),(5971,1301,1,'Director of Photography'),(5971,1528,6,'Original Music Composer'),(5971,9023,5,'Editor'),(5971,17016,2,'Director'),(5971,12847,3,'Casting'),(5971,31843,4,'Screenplay'),(5971,32108,4,'Screenplay'),(5971,46993,4,'Screenplay'),(5971,46994,4,'Screenplay'),(9716,1046,3,'Casting'),(9716,1243,4,'Screenplay'),(9716,1243,2,'Director'),(9716,1265,3,'Co-Executive Producer'),(9716,3658,3,'Executive Producer'),(9716,10576,7,'Art Direction'),(9716,6348,8,'Costume Design'),(9716,6990,3,'Production Manager'),(9716,6990,3,'Co-Producer'),(9716,6993,3,'Co-Executive Producer'),(9716,6994,3,'Co-Executive Producer'),(9716,6996,3,'Casting Associate'),(9716,8920,3,'Production Supervisor'),(9716,10440,5,'Editor'),(9716,10443,8,'Makeup Artist'),(9716,10444,8,'Hairstylist'),(9716,15432,6,'Supervising Sound Editor'),(9716,15435,10,'Visual Effects Supervisor'),(9716,15194,1,'Director of Photography'),(9716,23966,7,'Production Design'),(9716,27562,3,'Executive Producer'),(9716,28041,8,'Assistant Costume Designer'),(9716,67094,3,'Executive Producer'),(9716,92373,6,'Foley'),(9716,92376,6,'Foley'),(9716,92377,6,'Sound Re-Recording Mixer'),(9716,79252,7,'Set Decoration'),(9716,91065,9,'Carpenter'),(9716,91071,7,'Construction Coordinator'),(9716,91071,9,'Carpenter'),(9716,91074,9,'Scenic Artist'),(9716,91079,7,'Location Scout'),(9716,91834,9,'Stunt Coordinator'),(9716,152660,6,'Vocal Coach'),(9716,1028415,9,'Choreographer'),(9716,1128228,3,'Production Supervisor'),(9716,1182551,7,'Art Direction'),(9716,1252214,3,'Unit Manager'),(9716,1308375,6,'Foley'),(9716,1360102,9,'Sound Recordist'),(9716,1372092,9,'Stunt Coordinator'),(9716,1395682,1,'Still Photographer'),(9716,1401722,10,'Digital Compositors'),(9716,1406756,5,'Assistant Editor'),(9716,1406844,11,'Electrician'),(9716,1415988,11,'Gaffer'),(9716,1429249,1,'First Assistant Camera'),(9716,1434615,6,'Dolby Consultant'),(9716,1456487,8,'Hairstylist'),(9716,1459590,1,'Camera Operator'),(9716,1459591,2,'Script Supervisor'),(9716,1531576,5,'Dialogue Editor'),(9716,1534084,9,'Carpenter'),(9716,1535541,6,'Production Sound Mixer'),(9716,1536439,10,'Visual Effects Producer'),(9716,1537874,11,'Gaffer'),(9716,1544908,6,'Foley'),(9716,1546904,1,'Grip'),(9716,1551185,3,'Production Coordinator'),(9716,1561296,11,'Gaffer'),(9716,1561297,6,'Boom Operator'),(9716,1561298,7,'Art Department Coordinator'),(9716,1561591,2,'Assistant Director'),(9716,1562119,10,'Visual Effects Coordinator'),(9716,1562119,5,'Assistant Editor'),(9716,1562121,9,'Transportation Captain'),(9716,1580366,1,'Grip'),(9716,1580398,6,'Foley'),(9716,1580398,5,'Assistant Editor'),(9716,1620010,6,'Foley'),(9716,1661539,3,'Administration'),(9716,1661540,3,'Administration'),(9716,1661541,10,'Animation Supervisor'),(9716,1661542,2,'Assistant Director'),(9716,1661544,2,'Assistant Director'),(9716,1661545,11,'Best Boy Electric'),(9716,1661548,9,'Craft Service'),(9716,1661549,10,'Digital Compositors'),(9716,1661550,10,'Digital Compositors'),(9716,1661551,11,'Electrician'),(9716,1661552,11,'Electrician'),(9716,1661553,11,'Gaffer'),(9716,1661555,1,'Grip'),(9716,1661556,1,'Grip'),(9716,1661557,1,'Grip'),(9716,1661558,3,'Location Manager'),(9716,1661559,3,'Location Manager'),(9716,1661560,3,'Location Manager'),(9716,1661561,7,'Location Scout'),(9716,1661562,7,'Location Scout'),(9716,1661564,8,'Makeup Artist'),(9716,1661566,3,'Production Coordinator'),(9716,1661567,3,'Production Supervisor'),(9716,1661568,3,'Production Supervisor'),(9716,1661571,9,'Property Master'),(9716,1661572,9,'Scenic Artist'),(9716,1661573,8,'Set Dressing Artist'),(9716,1661574,8,'Set Dressing Artist'),(9716,1661575,9,'Stunts'),(9716,1661577,9,'Thanks'),(9716,1661578,9,'Thanks'),(9716,1661579,9,'Thanks'),(9716,1661580,9,'Transportation Captain'),(9716,1661581,3,'Unit Manager'),(9074,18695,1,'Director of Photography'),(9074,10830,3,'Producer'),(9074,52056,5,'Editor'),(9074,54797,3,'Producer'),(9074,56911,2,'Director'),(9074,56912,4,'Screenplay'),(9074,56913,4,'Screenplay'),(9074,56914,5,'Editor'),(9074,120560,4,'Screenplay'),(3509,2215,3,'Casting'),(3509,564,4,'Screenplay'),(3509,564,2,'Director'),(3509,580,5,'Editor'),(3509,566,3,'Producer'),(3509,584,4,'Novel'),(3509,3727,3,'Executive Producer'),(3509,1461,3,'Executive Producer'),(3509,1884,3,'Executive Producer'),(3509,2946,3,'Executive Producer'),(3509,10950,3,'Producer'),(3509,9537,3,'Producer'),(3509,9539,3,'Producer'),(3509,28632,3,'Executive Producer'),(3509,32233,3,'Producer'),(3509,32234,6,'Original Music Composer'),(3509,32235,1,'Director of Photography'),(3509,32236,7,'Production Design'),(3509,32237,7,'Set Decoration'),(3509,54761,8,'Costume Design'),(3509,1120145,3,'Producer'),(3509,1420147,8,'Makeup Department Head'),(3509,1439059,3,'Producer'),(3509,1472891,2,'Script Supervisor'),(3509,1480634,7,'Art Department Coordinator'),(3509,1480635,8,'Costume Supervisor'),(3902,330,5,'Editor'),(3902,3727,3,'Producer'),(3902,2862,3,'Producer'),(3902,5389,7,'Production Design'),(3902,6345,1,'Director of Photography'),(3902,15426,3,'Casting'),(3902,16863,4,'Screenplay'),(3902,16863,2,'Director'),(3902,34110,4,'Screenplay'),(3902,52159,3,'Producer'),(3902,52160,3,'Producer'),(3902,52161,6,'Music Supervisor'),(3902,52162,6,'Music Supervisor'),(3902,52163,8,'Costume Design'),(3902,52164,8,'Makeup Artist'),(3902,52165,8,'Makeup Artist'),(4960,312,6,'Original Music Composer'),(4960,202,4,'Screenplay'),(4960,202,2,'Director'),(4960,202,3,'Producer'),(4960,321,3,'Producer'),(4960,4434,1,'Director of Photography'),(4960,5953,3,'Producer'),(4960,15906,3,'Executive Producer'),(4960,35180,3,'Producer'),(4960,50770,3,'Executive Producer'),(4960,65849,5,'Editor'),(4960,71556,3,'Executive Producer'),(128,608,2,'Director'),(128,608,4,'Screenplay'),(128,608,5,'Editor'),(128,636,6,'Original Music Composer'),(128,1417,3,'Producer'),(128,19596,1,'Director of Photography'),(128,19596,1,'Camera Supervisor'),(128,1697,5,'Editor'),(128,19595,3,'Executive Producer'),(128,19598,7,'Art Direction'),(128,19601,10,'Animation'),(128,19603,10,'Animation'),(128,40455,7,'Background Designer'),(128,40336,10,'Animation Supervisor'),(128,78343,3,'Executive Producer'),(128,78345,10,'Animation'),(128,78360,3,'Executive Producer'),(128,78378,7,'Art Direction'),(128,144663,10,'Animation'),(128,547985,7,'Art Direction'),(128,555254,10,'Animation Supervisor'),(128,568034,10,'Animation'),(128,937796,7,'Background Designer'),(128,986214,7,'Art Direction'),(128,1009730,7,'Art Direction'),(128,1011633,10,'Animation'),(128,1132621,3,'Executive Producer'),(128,1132637,9,'Thanks'),(128,1172200,10,'Animation'),(128,1399330,10,'Animation'),(128,1452508,6,'Sound Effects Editor'),(128,1456606,10,'Animation'),(128,1456614,10,'Animation'),(128,1456616,10,'Animation Supervisor'),(128,1456617,10,'Animation'),(128,1456620,10,'Animation Manager'),(128,1456623,10,'Animation'),(128,1456624,10,'Animation'),(128,1456626,10,'Animation'),(128,1456629,10,'Animation'),(128,1456631,10,'Animation'),(128,1456633,10,'Animation'),(128,1456772,7,'Background Designer'),(128,1456773,10,'Animation'),(128,1456774,7,'Background Designer'),(128,1456775,7,'Background Designer'),(128,1456776,10,'Animation'),(128,1456777,10,'Animation'),(128,1456778,10,'Animation'),(128,1456779,10,'Animation'),(128,1456780,10,'Animation'),(128,1456781,7,'Background Designer'),(128,1456782,10,'Animation Manager'),(128,1456783,10,'Animation Manager'),(128,1456784,10,'Animation'),(128,1456785,7,'Background Designer'),(128,1456786,7,'Background Designer'),(128,1456787,10,'Animation Manager'),(128,1456788,7,'Background Designer'),(128,1456789,10,'Animation'),(128,1456790,10,'Animation'),(128,1456791,10,'Animation'),(128,1456793,10,'Animation'),(128,1456794,10,'Animation'),(128,1456795,10,'Color Designer'),(128,1456796,10,'Animation'),(128,1456797,7,'Background Designer'),(128,1456798,10,'Animation'),(7299,1113,3,'Casting'),(7299,122,6,'Music'),(7299,546,3,'Casting'),(7299,647,1,'Director of Photography'),(7299,1047,5,'Editor'),(7299,2209,3,'Producer'),(7299,7239,6,'Supervising Sound Editor'),(7299,8706,7,'Set Decoration'),(7299,10630,6,'ADR & Dubbing'),(7299,7203,7,'Production Design'),(7299,8673,1,'Camera Operator'),(7299,8681,8,'Costume Design'),(7299,40754,7,'Art Department Coordinator'),(7299,11695,3,'Producer'),(7299,14377,3,'Casting'),(7299,13371,5,'Dialogue Editor'),(7299,13927,4,'Screenplay'),(7299,13927,2,'Director'),(7299,23717,8,'Costume Supervisor'),(7299,25066,9,'Stunt Coordinator'),(7299,27205,8,'Makeup Artist'),(7299,56995,10,'Visual Effects Producer'),(7299,60521,5,'Editor'),(7299,117222,1,'Camera Operator'),(7299,143921,6,'Sound Re-Recording Mixer'),(7299,554887,6,'Supervising Sound Editor'),(7299,1023364,10,'Visual Effects Producer'),(7299,1049324,6,'Sound Re-Recording Mixer'),(7299,1077782,6,'Foley'),(7299,1301145,6,'Sound Effects Editor'),(7299,1322014,8,'Costume Supervisor'),(7299,1328823,7,'Art Direction'),(7299,1332509,3,'Casting'),(7299,1335122,6,'Sound Effects Editor'),(7299,1341336,5,'Dialogue Editor'),(7299,1344278,2,'Script Supervisor'),(7299,1361170,1,'Still Photographer'),(7299,1377503,1,'Steadicam Operator'),(7299,1378172,6,'Foley'),(7299,1393364,1,'Camera Operator'),(7299,1394986,9,'Dialect Coach'),(7299,1401145,10,'Visual Effects Supervisor'),(7299,1404533,10,'Visual Effects Supervisor'),(7299,1406584,8,'Hairstylist'),(7299,1406786,11,'Gaffer'),(7299,1409877,6,'Music Editor'),(7299,1411362,3,'Location Manager'),(7299,1413095,5,'Dialogue Editor'),(7299,1413805,2,'Script Supervisor'),(7299,1424160,5,'Dialogue Editor'),(7299,1433005,8,'Makeup Artist'),(7299,1433005,8,'Hairstylist'),(7299,1433705,7,'Supervising Art Director'),(7299,1433706,8,'Hairstylist'),(7299,1433707,8,'Makeup Artist'),(7299,1433708,8,'Makeup Artist'),(7299,1433709,7,'Construction Coordinator'),(7299,1433711,6,'Foley'),(7299,1433716,6,'Sound Designer'),(7299,1433717,9,'Sound Recordist'),(7299,1433718,6,'Sound Effects Editor'),(7299,1433719,6,'Sound Effects Editor'),(7299,1433720,6,'Sound Effects Editor'),(7299,1433721,6,'Sound Effects Editor'),(7299,1433723,10,'Visual Effects Producer'),(7299,1433725,10,'Visual Effects Producer'),(7299,1433733,10,'Visual Effects Producer'),(7299,1433735,9,'Stunt Coordinator'),(7299,1433736,1,'Camera Operator'),(7299,1433737,11,'Gaffer'),(7299,1433738,11,'Rigging Gaffer'),(7299,1433740,8,'Set Costumer'),(7299,1433742,5,'First Assistant Editor'),(7299,1433743,6,'Music Editor'),(7299,1433744,6,'Music Editor'),(7299,1433745,9,'Transportation Coordinator'),(7299,1433746,9,'Picture Car Coordinator'),(7299,1433747,3,'Location Manager'),(7299,1433748,2,'Script Supervisor'),(7299,1544415,9,'Loader'),(7299,1553236,11,'Gaffer'),(8953,185,2,'Director'),(8953,185,4,'Scenario Writer'),(8953,1697,5,'Editor'),(8953,12184,3,'Executive Producer'),(8953,18264,6,'Original Music Composer'),(8953,65441,4,'Screenplay'),(8953,70125,3,'Producer'),(8953,70126,3,'Producer'),(8953,70127,7,'Art Direction'),(6968,673,4,'Screenplay'),(6968,673,3,'Producer'),(6968,710,3,'Casting'),(6968,1851,5,'Editor'),(6968,5135,1,'Director of Photography'),(6968,8805,7,'Production Design'),(6968,8807,6,'Sound Effects Editor'),(6968,14623,6,'Sound Re-Recording Mixer'),(6968,17084,8,'Makeup Department Head'),(6968,15868,4,'Screenplay'),(6968,15868,2,'Director'),(6968,25305,8,'Makeup Artist'),(6968,32450,6,'Music'),(6968,40470,6,'ADR & Dubbing'),(6968,36740,8,'Costume Design'),(6968,53022,4,'Novel'),(6968,71162,8,'Hairstylist'),(6968,68600,6,'Music'),(6968,240416,6,'Foley'),(6968,1002502,7,'Art Direction'),(6968,1153035,7,'Set Decoration'),(6968,1331979,8,'Costume Supervisor'),(6968,1338143,6,'Foley'),(6968,1351729,10,'Visual Effects'),(6968,1360691,7,'Art Direction'),(6968,1425853,6,'Foley'),(6968,1425855,5,'Dialogue Editor'),(6968,1467952,5,'First Assistant Editor'),(6968,1480629,8,'Hairstylist'),(6968,1519296,6,'Sound Re-Recording Mixer'),(6968,1519298,11,'Gaffer'),(6968,1554748,10,'Special Effects Supervisor'),(6968,1554750,9,'Armorer'),(6968,1573342,6,'Music Supervisor'),(6968,1579406,8,'Makeup Artist'),(6968,1580667,10,'Special Effects Supervisor'),(6968,1585880,1,'Steadicam Operator'),(6968,1586128,7,'Set Decoration'),(6968,1586129,3,'Casting'),(6968,1586130,1,'Camera Operator'),(6968,1586131,1,'First Assistant Camera'),(6968,1586132,10,'Visual Effects'),(6968,1586133,10,'Visual Effects Supervisor'),(6968,1586135,6,'Sound Effects Editor'),(581,1269,2,'Director'),(581,1269,3,'Producer'),(581,2122,5,'Editor'),(581,2289,6,'Original Music Composer'),(581,2359,3,'Executive Producer'),(581,4142,3,'Casting'),(581,7231,5,'Editor'),(581,4501,1,'Director of Photography'),(581,7844,4,'Screenplay'),(581,7847,3,'Producer'),(581,7848,7,'Production Design'),(581,7849,7,'Set Decoration'),(581,7850,8,'Costume Design'),(581,7870,5,'Editor'),(581,8848,7,'Art Direction'),(581,9887,8,'Costume Supervisor'),(581,12894,3,'Associate Producer'),(581,14753,9,'Transportation Coordinator'),(581,21118,1,'Steadicam Operator'),(581,21118,1,'Camera Operator'),(581,29747,9,'Second Unit Cinematographer'),(581,8300,9,'Thanks'),(581,113090,6,'Foley'),(581,65725,7,'Leadman'),(581,78395,9,'Stunt Coordinator'),(581,91854,8,'Makeup Artist'),(581,102231,10,'Visual Effects'),(581,143921,6,'Sound Re-Recording Mixer'),(581,956271,3,'Casting'),(581,959072,3,'Casting'),(581,988844,7,'Construction Coordinator'),(581,1258006,3,'Unit Production Manager'),(581,1273347,9,'Post Production Supervisor'),(581,1293529,1,'Still Photographer'),(581,1324118,8,'Makeup Artist'),(581,1325119,6,'Additional Soundtrack'),(581,1338367,5,'Editor'),(581,1338368,9,'Property Master'),(581,1338369,7,'Greensman'),(581,1338370,6,'Boom Operator'),(581,1338371,6,'Sound Designer'),(581,1338371,6,'Supervising Sound Editor'),(581,1338372,6,'Foley'),(581,1338374,6,'Sound Re-Recording Mixer'),(581,1338375,9,'Special Effects'),(581,1338377,8,'Set Costumer'),(581,1338378,9,'Transportation Co-Captain'),(581,1338379,9,'Transportation Captain'),(581,1344273,6,'Music Editor'),(581,1370914,6,'Supervising Sound Editor'),(581,1391572,6,'Sound Re-Recording Mixer'),(581,1416054,8,'Hairstylist'),(581,1416055,8,'Hairstylist'),(581,1416056,8,'Hairstylist'),(581,1416057,6,'ADR & Dubbing'),(581,1416061,9,'Second Unit Cinematographer'),(581,1416062,1,'Additional Camera'),(581,1416064,11,'Gaffer'),(581,1416067,11,'Best Boy Electric'),(581,1416072,2,'Script Supervisor'),(581,1416074,9,'Unit Publicist'),(581,1416077,3,'Production Accountant'),(581,1416081,3,'Location Manager'),(581,1468507,10,'Visual Effects'),(581,1558250,5,'Assistant Editor'),(581,1559493,10,'Visual Effects'),(581,1564233,5,'Color Timer'),(4232,409,3,'Producer'),(4232,434,3,'Casting'),(4232,1052,6,'Sound Re-Recording Mixer'),(4232,1056,6,'Sound Effects Editor'),(4232,1307,3,'Executive Producer'),(4232,59839,3,'Executive Producer'),(4232,4059,7,'Art Direction'),(4232,7229,6,'Original Music Composer'),(4232,5140,2,'Director'),(4232,5505,3,'Producer'),(4232,7413,1,'Director of Photography'),(4232,7856,7,'Production Design'),(4232,7856,7,'Set Designer'),(4232,9352,1,'First Assistant Camera'),(4232,11761,7,'Set Decoration'),(4232,12612,8,'Makeup Artist'),(4232,13030,10,'Special Effects Supervisor'),(4232,12781,3,'Production Accountant'),(4232,56765,6,'Sound Re-Recording Mixer'),(4232,28401,3,'Unit Production Manager'),(4232,28401,3,'Co-Executive Producer'),(4232,28402,3,'Co-Producer'),(4232,26458,4,'Screenplay'),(4232,35581,3,'Executive Producer'),(4232,35582,3,'Associate Producer'),(4232,35582,2,'First Assistant Director'),(4232,27226,5,'Editor'),(4232,25551,8,'Costume Design'),(4232,40269,5,'First Assistant Editor'),(4232,62598,3,'Executive In Charge Of Production'),(4232,108143,6,'Sound Mixer'),(4232,113835,5,'Dialogue Editor'),(4232,1115114,6,'ADR Supervisor'),(4232,1197265,1,'Still Photographer'),(4232,1377216,7,'Art Department Coordinator'),(4232,1389625,9,'Transportation Coordinator'),(4232,1391605,2,'Script Supervisor'),(4232,1398118,7,'Construction Coordinator'),(4232,1408192,1,'Steadicam Operator'),(4232,1411265,5,'Dialogue Editor'),(4232,1415610,7,'Property Master'),(4232,1420160,1,'Steadicam Operator'),(4232,1421706,6,'Sound Re-Recording Mixer'),(4232,1424185,9,'Unit Publicist'),(4232,1433996,8,'Key Hair Stylist'),(4232,1453320,3,'Location Manager'),(4232,1463692,1,'Grip'),(4232,1475742,9,'Post Production Supervisor'),(4232,1528918,8,'Hairstylist'),(4232,1530866,8,'Costume Supervisor'),(4232,1530867,8,'Costume Supervisor'),(4232,1545466,9,'Stunt Coordinator'),(4232,1548698,6,'Orchestrator'),(4232,1550284,1,'Steadicam Operator'),(4232,1553239,7,'Standby Painter'),(4232,1556630,6,'Music Editor'),(4232,1580896,3,'Production Office Coordinator'),(4232,1589687,7,'Greensman'),(4232,1636057,6,'Sound Effects Editor'),(4232,1636058,5,'Dialogue Editor'),(4232,1636059,5,'Dialogue Editor'),(4232,1636060,6,'Boom Operator'),(4232,1636063,6,'Music Supervisor'),(4232,1665959,6,'Sound Recordist'),(4232,1752978,5,'Color Timer'),(4232,1778013,4,'Storyboard'),(4232,1797174,7,'Location Scout'),(4232,1797175,7,'Painter'),(4232,1797177,8,'Set Dressing Artist'),(4232,1797178,9,'Additional Music'),(4232,1797209,9,'Carpenter'),(4232,1797210,9,'Craft Service'),(4232,1797211,9,'Driver'),(4232,1797217,9,'Loader'),(4232,1797218,9,'Post Production Assistant'),(4232,1797225,9,'Stand In'),(4232,1797226,9,'Transportation Captain'),(4232,1797228,9,'Video Assist Operator'),(4232,1797235,11,'Lighting Technician'),(4232,1797238,11,'Rigging Grip'),(4232,1797243,6,'Foley'),(9378,24,3,'Producer'),(9378,1091,3,'Producer'),(9378,10953,3,'Producer'),(9378,9349,6,'Sound Designer'),(9378,9349,6,'Sound Editor'),(9378,9430,6,'Sound Effects Editor'),(9378,9430,6,'Sound Effects Designer'),(9378,11419,9,'Makeup Effects'),(9378,21351,5,'Editor'),(9378,21962,6,'Original Music Composer'),(9378,23653,3,'Casting'),(9378,27583,5,'Editor'),(9378,27161,9,'Makeup Effects'),(9378,31625,4,'Screenplay'),(9378,32201,7,'Set Decoration'),(9378,34887,7,'Assistant Art Director'),(9378,39726,3,'Executive Producer'),(9378,42119,1,'Director of Photography'),(9378,50094,9,'Stunt Coordinator'),(9378,25832,7,'Art Direction'),(9378,25832,7,'Supervising Art Director'),(9378,112656,8,'Key Makeup Artist'),(9378,112657,8,'Hairstylist'),(9378,112660,9,'Makeup Effects'),(9378,77206,9,'Makeup Effects'),(9378,113215,1,'First Assistant Camera'),(9378,57135,1,'Additional Photography'),(9378,57521,2,'Director'),(9378,57522,4,'Story'),(9378,57524,4,'Screenplay'),(9378,57526,3,'Executive Producer'),(9378,57527,5,'Editor'),(9378,59287,9,'Makeup Effects'),(9378,62740,3,'Co-Producer'),(9378,62858,3,'Local Casting'),(9378,77208,3,'Unit Production Manager'),(9378,90148,6,'ADR & Dubbing'),(9378,92117,9,'Makeup Effects'),(9378,105690,3,'Production Accountant'),(9378,112377,9,'Makeup Effects'),(9378,120248,2,'Assistant Director'),(9378,143915,6,'Supervising Sound Editor'),(9378,167495,9,'Transportation Coordinator'),(9378,173957,2,'First Assistant Director'),(9378,574092,2,'Third Assistant Director'),(9378,957027,3,'Casting Associate'),(9378,957821,9,'Makeup Effects'),(9378,961544,7,'Art Direction'),(9378,988882,7,'Set Designer'),(9378,1015060,9,'Makeup Effects'),(9378,1073790,9,'Carpenter'),(9378,1119658,9,'Post Production Consulting'),(9378,1189737,9,'Makeup Effects'),(9378,1201060,9,'Makeup Effects'),(9378,1206191,8,'Makeup Designer'),(9378,1222473,9,'Craft Service'),(9378,1288802,9,'Makeup Effects'),(9378,1296181,1,'Key Grip'),(9378,1311122,6,'Boom Operator'),(9378,1311175,7,'Set Designer'),(9378,1311616,9,'Makeup Effects'),(9378,1320991,9,'Makeup Effects'),(9378,1321700,7,'Production Design'),(9378,1321701,8,'Costume Design'),(9378,1334517,6,'Music Editor'),(9378,1341854,6,'Sound Re-Recording Mixer'),(9378,1368861,7,'Construction Coordinator'),(9378,1391671,7,'Set Designer'),(9378,1394756,1,'Steadicam Operator'),(9378,1394760,2,'Script Supervisor'),(9378,1397175,8,'Set Costumer'),(9378,1401604,8,'Wigmaker'),(9378,1404214,6,'Supervising Dialogue Editor'),(9378,1404755,9,'Unit Publicist'),(9378,1407028,1,'Still Photographer'),(9378,1407842,1,'Camera Operator'),(9378,1410332,9,'Makeup Effects'),(9378,1413115,10,'Visual Effects Coordinator'),(9378,1413437,9,'Property Master'),(9378,1418404,11,'Rigging Gaffer'),(9378,1426761,8,'Key Hair Stylist'),(9378,1431018,7,'Set Designer'),(9378,1434274,9,'Makeup Effects'),(9378,1441163,9,'Makeup Effects'),(9378,1441328,8,'Assistant Costume Designer'),(9378,1448620,3,'Location Manager'),(9378,1454935,6,'Foley Editor'),(9378,1457663,9,'Makeup Effects'),(9378,1460763,6,'Conductor'),(9378,1464344,3,'Executive In Charge Of Post Production'),(9378,1470632,3,'Co-Producer'),(9378,1479276,7,'Art Department Coordinator'),(9378,1501535,9,'Makeup Effects'),(9378,1510196,8,'Makeup Artist'),(9378,1524834,9,'Makeup Effects'),(9378,1540470,5,'Color Timer'),(9378,1546561,9,'Makeup Effects'),(9378,1546563,9,'Makeup Effects'),(9378,1546564,9,'Makeup Effects'),(9378,1546565,9,'Makeup Effects'),(9378,1546566,9,'Makeup Effects'),(9378,1546567,8,'Makeup Artist'),(9378,1546570,9,'Makeup Effects'),(9378,1546571,9,'Makeup Effects'),(9378,1546572,9,'Makeup Effects'),(9378,1546573,9,'Makeup Effects'),(9378,1546574,9,'Makeup Effects'),(9378,1546575,9,'Makeup Effects'),(9378,1546576,9,'Makeup Effects'),(9378,1546577,9,'Makeup Effects'),(9378,1546578,9,'Makeup Effects'),(9378,1546580,3,'Executive In Charge Of Production'),(9378,1546582,7,'Set Designer'),(9378,1546583,7,'Construction Foreman'),(9378,1546584,7,'Painter'),(9378,1546585,6,'First Assistant Sound Editor'),(9378,1548631,1,'Camera Operator'),(9378,1548633,9,'Driver'),(9378,1548634,9,'Security'),(9378,1548635,9,'Special Effects Coordinator'),(9378,1548636,11,'Chief Lighting Technician'),(9378,1548637,11,'Rigging Grip'),(9378,1548639,3,'Production Coordinator'),(9378,1548640,10,'Visual Effects Supervisor'),(9378,1548642,6,'Production Sound Mixer'),(9378,1548644,10,'Visual Effects Producer'),(9378,1548652,8,'Seamstress'),(9378,1548656,9,'Transportation Captain'),(9378,1548659,9,'CG Supervisor'),(9378,1548660,9,'Visual Effects Editor'),(9378,1548661,11,'Best Boy Electric'),(9378,1548662,4,'Storyboard'),(9378,1702547,11,'Lighting Technician'),(9378,1733035,7,'Set Dresser'),(9378,1733036,1,'Dolly Grip'),(9378,1733037,1,'Grip'),(9378,1733038,2,'Second Assistant Director'),(9378,1733039,3,'Assistant Production Coordinator'),(9378,1733040,10,'3D Artist'),(694,240,4,'Screenplay'),(694,240,2,'Director'),(694,240,3,'Producer'),(694,244,5,'Editor'),(694,2284,6,'Original Music Composer'),(694,2285,6,'Original Music Composer'),(694,2286,1,'Director of Photography'),(694,2288,3,'Casting'),(694,3027,4,'Novel'),(694,5016,3,'Executive Producer'),(694,5021,7,'Art Direction'),(694,5022,7,'Production Design'),(694,5671,8,'Costume Design'),(694,10404,4,'Screenplay'),(694,10405,8,'Makeup Artist'),(694,10407,8,'Makeup Artist'),(694,10408,3,'Production Manager'),(105,37,6,'Original Music Composer'),(105,24,2,'Director'),(105,24,4,'Writer'),(105,38,5,'Editor'),(105,488,3,'Executive Producer'),(105,489,3,'Executive Producer'),(105,596,7,'Production Design'),(105,597,3,'Casting'),(105,598,3,'Casting'),(105,664,3,'Executive Producer'),(105,735,9,'Post Production Supervisor'),(105,752,3,'Casting'),(105,1058,3,'Producer'),(105,1058,4,'Writer'),(105,1059,3,'Producer'),(105,1060,1,'Director of Photography'),(105,1061,5,'Editor'),(105,1261,7,'Set Decoration'),(105,5163,2,'Assistant Director'),(105,6184,7,'Art Direction'),(105,7036,9,'Stunts'),(105,8527,8,'Costume Design'),(105,9971,6,'Supervising Sound Editor'),(105,13621,3,'Unit Production Manager'),(105,14713,8,'Makeup Artist'),(105,16474,9,'Stunt Coordinator'),(105,62583,1,'Camera Operator'),(105,68939,3,'Unit Production Manager'),(105,108146,1,'First Assistant Camera'),(105,1162118,8,'Hairstylist'),(105,1198496,7,'Other'),(105,1298887,8,'Hairstylist'),(105,1378173,1,'Still Photographer'),(105,1398946,6,'Sound Editor'),(105,1432044,8,'Costume Supervisor'),(105,1490038,6,'Music Supervisor'),(105,1534938,8,'Costume Supervisor'),(105,1538745,8,'Set Costumer'),(105,1544697,6,'Supervising Sound Editor'),(105,1544698,5,'Assistant Editor'),(129,7879,3,'Producer'),(129,608,2,'Director'),(129,608,4,'Screenplay'),(129,636,6,'Original Music Composer'),(129,1417,3,'Producer'),(129,19596,1,'Director of Photography'),(129,1697,5,'Editor'),(129,19595,3,'Executive Producer'),(129,19597,7,'Production Design'),(129,19598,7,'Art Direction'),(129,19599,10,'Animation'),(129,19600,10,'Animation'),(129,19601,10,'Animation'),(129,19602,10,'Animation'),(129,9663,10,'Animation'),(129,19603,10,'Animation'),(129,19604,10,'Animation'),(129,40336,10,'Animation'),(129,61419,9,'Thanks'),(129,78376,3,'Production Manager'),(129,233653,2,'Assistant Director'),(129,934817,6,'Dolby Consultant'),(129,1187141,2,'Assistant Director'),(129,1207896,10,'Animation'),(129,1249685,9,'Cinematography'),(129,1451280,10,'Animation'),(129,1452489,10,'Visual Effects'),(129,1452508,6,'Sound Effects Editor'),(129,1456616,10,'Animation'),(129,1456632,10,'Animation'),(129,1456795,10,'Color Designer'),(129,1457644,10,'Animation'),(129,1460783,10,'Animation Manager'),(129,1610869,5,'Color Timer'),(2669,595,6,'Original Music Composer'),(2669,2384,3,'Producer'),(2669,3454,1,'Director of Photography'),(2669,5398,3,'Executive Producer'),(2669,7788,7,'Art Direction'),(2669,7793,8,'Costume Design'),(2669,8939,8,'Makeup Artist'),(2669,8308,7,'Production Design'),(2669,10496,3,'Casting'),(2669,12685,5,'Editor'),(2669,13317,4,'Screenplay'),(2669,21370,2,'Director'),(2669,26871,7,'Set Decoration'),(2669,26872,7,'Set Decoration'),(2669,26873,8,'Hairstylist'),(2669,26874,9,'Stunts Coordinator'),(2669,235351,4,'Novel'),(2757,202,4,'Screenplay'),(2757,202,3,'Executive Producer'),(2757,1225,6,'Original Music Composer'),(2757,1781,1,'Director of Photography'),(2757,1783,7,'Production Design'),(2757,16294,3,'Producer'),(2757,16297,3,'Producer'),(2757,4855,3,'Executive Producer'),(2757,5953,2,'Director'),(2757,5956,7,'Art Direction'),(2757,5957,7,'Set Decoration'),(2757,6955,3,'Producer'),(2757,6958,5,'Editor'),(2757,6959,3,'Casting'),(2757,6961,8,'Costume Design'),(2757,27887,4,'Novel'),(2757,961165,3,'Casting'),(2757,1461644,4,'Screenplay'),(1878,8222,8,'Costume Design'),(1878,280,2,'Director'),(1878,280,4,'Screenplay'),(1878,297,6,'Production Sound Mixer'),(1878,377,3,'Producer'),(1878,555,7,'Set Decoration'),(1878,12864,9,'Second Unit Cinematographer'),(1878,1303,7,'Production Design'),(1878,11072,5,'Editor'),(1878,6347,3,'Casting'),(1878,10721,10,'Visual Effects Supervisor'),(1878,10972,6,'Assistant Sound Editor'),(1878,19721,3,'Producer'),(1878,19722,3,'Producer'),(1878,19724,4,'Author'),(1878,19725,4,'Screenplay'),(1878,19726,6,'Original Music Composer'),(1878,19727,1,'Director of Photography'),(1878,19727,1,'Steadicam Operator'),(1878,10855,7,'Art Direction'),(1878,31493,4,'Screenplay'),(1878,35483,3,'Executive Producer'),(1878,35485,3,'Executive Producer'),(1878,51922,3,'Casting Assistant'),(1878,54435,9,'Stunts'),(1878,59792,2,'First Assistant Director'),(1878,75624,9,'Choreographer'),(1878,81692,6,'ADR Supervisor'),(1878,91173,3,'Researcher'),(1878,101608,9,'Makeup Effects'),(1878,134927,8,'Key Costumer'),(1878,142094,9,'Post Production Supervisor'),(1878,228830,6,'Musician'),(1878,562696,7,'Art Department Assistant'),(1878,587803,8,'Assistant Costume Designer'),(1878,943964,4,'Screenplay'),(1878,1095093,8,'Hairstylist'),(1878,1115023,3,'Co-Producer'),(1878,1235786,6,'Utility Sound'),(1878,1334400,9,'Property Master'),(1878,1341860,8,'Costume Supervisor'),(1878,1344279,3,'Unit Production Manager'),(1878,1364403,7,'Greensman'),(1878,1392615,3,'Location Manager'),(1878,1393883,1,'Still Photographer'),(1878,1399640,9,'Transportation Coordinator'),(1878,1403411,1,'First Assistant Camera'),(1878,1404235,9,'Unit Publicist'),(1878,1404764,6,'Supervising Sound Editor'),(1878,1407364,9,'Stunt Coordinator'),(1878,1407666,6,'ADR Editor'),(1878,1427553,6,'Sound Re-Recording Mixer'),(1878,1433210,5,'Dialogue Editor'),(1878,1446993,7,'Set Dresser'),(1878,1447582,7,'Leadman'),(1878,1457285,6,'Boom Operator'),(1878,1463532,9,'Video Assist Operator'),(1878,1472574,3,'Associate Producer'),(1878,1481282,7,'Art Department Coordinator'),(1878,1526466,3,'Production Coordinator'),(1878,1532615,7,'Construction Coordinator'),(1878,1540340,1,'Camera Operator'),(1878,1545544,2,'Script Supervisor'),(1878,1546582,7,'Set Designer'),(1878,1547229,8,'Seamstress'),(1878,1548853,8,'Makeup Artist'),(1878,1551137,8,'Key Makeup Artist'),(1878,1552002,8,'Wigmaker'),(1878,1553634,11,'Best Boy Electric'),(1878,1556518,8,'Set Costumer'),(1878,1602868,9,'Set Medic'),(1878,1621221,7,'Construction Foreman'),(1878,1621222,7,'Painter'),(1878,1621223,7,'Production Illustrator'),(1878,1621224,7,'Sculptor'),(1878,1621225,7,'Standby Painter'),(1878,1621226,1,'Key Grip'),(1878,1621227,9,'Craft Service'),(1878,1621228,9,'Driver'),(1878,1621229,1,'Camera Loader'),(1878,1621230,9,'Picture Car Coordinator'),(1878,1621231,9,'Post Production Assistant'),(1878,1621232,9,'Propmaker'),(1878,1621233,9,'Scenic Artist'),(1878,1621234,9,'Set Production Assistant'),(1878,1621235,9,'Special Effects Coordinator'),(1878,1621236,9,'Stand In'),(1878,1621237,9,'Transportation Co-Captain'),(1878,1621238,5,'Color Timer'),(1878,1621239,11,'Electrician'),(1878,1621240,11,'Gaffer'),(1878,1621243,6,'Foley Editor'),(1878,1621244,10,'Special Effects Supervisor'),(1878,1621245,10,'Visual Effects Coordinator'),(1878,1691298,6,'Music Editor'),(1878,1764257,2,'Second Assistant Director'),(1878,1855095,8,'Ager/Dyer'),(1878,1859603,1,'Dolly Grip'),(1878,1859606,1,'Grip'),(1878,1859632,3,'Assistant Production Coordinator'),(854,800,5,'Editor'),(854,8023,10,'Animation'),(854,11402,4,'Screenplay'),(854,12772,9,'Stunt Coordinator'),(854,12774,3,'Executive Producer'),(854,12775,3,'Executive In Charge Of Post Production'),(854,12777,3,'Production Manager'),(854,12778,3,'Production Accountant'),(854,12780,3,'Production Accountant'),(854,12781,3,'Production Accountant'),(854,26713,2,'Director'),(854,14712,6,'Original Music Composer'),(854,26714,1,'Director of Photography'),(854,10809,3,'Unit Production Manager'),(2280,3388,3,'Producer'),(2280,117,6,'Original Music Composer'),(2280,2988,5,'Editor'),(2280,3658,3,'Producer'),(2280,5174,1,'Director of Photography'),(2280,14911,2,'Director'),(2280,23964,4,'Screenplay'),(2280,23964,3,'Co-Producer'),(2280,23965,4,'Screenplay'),(2280,23965,3,'Co-Producer'),(2280,23966,7,'Production Design'),(496,6730,4,'Screenplay'),(496,6730,3,'Producer'),(496,6730,4,'Story'),(496,6731,4,'Screenplay'),(496,6731,4,'Story'),(496,6732,4,'Screenplay'),(496,6732,4,'Story'),(496,6733,4,'Screenplay'),(496,6733,3,'Executive Producer'),(496,6737,3,'Producer'),(496,6738,3,'Executive Producer'),(496,6739,6,'Original Music Composer'),(496,6740,1,'Director of Photography'),(496,6741,1,'Director of Photography'),(496,6742,5,'Editor'),(496,6743,8,'Costume Design'),(496,6744,7,'Art Direction'),(496,6745,6,'Music Editor'),(496,6746,6,'Boom Operator'),(496,6767,2,'Director'),(496,11372,5,'Editor'),(496,57130,4,'Story'),(496,1468801,5,'Editor'),(8835,1593,3,'Casting'),(8835,6628,7,'Production Design'),(8835,9417,6,'Sound Effects Editor'),(8835,14139,1,'Director of Photography'),(8835,20924,5,'Editor'),(8835,23485,3,'Producer'),(8835,24190,6,'Original Music Composer'),(8835,8305,3,'Co-Producer'),(8835,36797,2,'Director'),(8835,40589,4,'Screenplay'),(8835,40590,4,'Screenplay'),(8835,49831,3,'Producer'),(8835,56044,4,'Novel'),(8835,62144,7,'Set Decoration'),(8835,948789,6,'Music Supervisor'),(8835,957495,6,'Sound Effects Editor'),(8835,960323,8,'Costume Design'),(8835,1339433,3,'Production Coordinator'),(8835,1367676,6,'Music Editor'),(8835,1473981,2,'Script Supervisor'),(8835,1537176,3,'Production Coordinator'),(8835,1537179,1,'Still Photographer'),(8835,1537184,3,'Co-Producer'),(8835,1537185,6,'Sound Effects Editor'),(157,1729,6,'Original Music Composer'),(157,1749,2,'Director'),(157,1801,8,'Costume Design'),(157,1791,3,'Producer'),(157,1791,4,'Author'),(157,1822,1,'Director of Photography'),(157,1823,7,'Art Direction'),(157,1824,7,'Set Decoration'),(157,1825,5,'Editor'),(157,1826,3,'Casting'),(157,1827,3,'Casting'),(157,1828,3,'Casting'),(8643,68602,3,'Producer'),(8643,460,1,'Director of Photography'),(8643,3953,3,'Producer'),(8643,3957,3,'Executive Producer'),(8643,6207,7,'Construction Coordinator'),(8643,6391,7,'Production Design'),(8643,19155,6,'Music'),(8643,13585,3,'Casting'),(8643,8761,6,'Foley'),(8643,9543,3,'Producer'),(8643,42030,9,'Makeup Effects'),(8643,20382,5,'Editor'),(8643,21257,8,'Makeup Artist'),(8643,28163,7,'Set Decoration'),(8643,33624,3,'Producer'),(8643,52788,3,'Executive Producer'),(8643,55499,4,'Screenplay'),(8643,55499,2,'Director'),(8643,55500,4,'Screenplay'),(8643,55500,3,'Producer'),(8643,70553,3,'Executive Producer'),(8643,63989,3,'Executive Producer'),(8643,112656,8,'Makeup Artist'),(8643,113032,9,'Property Master'),(8643,62860,8,'Costume Design'),(8643,65937,6,'Sound Effects Editor'),(8643,103336,10,'Visual Effects Supervisor'),(8643,223991,7,'Art Direction'),(8643,229908,7,'Set Designer'),(8643,237333,10,'Visual Effects Producer'),(8643,1007395,9,'Stunt Coordinator'),(8643,1271920,9,'Special Effects Coordinator'),(8643,1286355,8,'Hairstylist'),(8643,1319743,8,'Makeup Artist'),(8643,1328137,7,'Assistant Art Director'),(8643,1340737,6,'Sound Re-Recording Mixer'),(8643,1377127,5,'Dialogue Editor'),(8643,1377131,1,'Camera Operator'),(8643,1378722,6,'First Assistant Sound Editor'),(8643,1378733,3,'Location Manager'),(8643,1384398,2,'Script Supervisor'),(8643,1391700,11,'Gaffer'),(8643,1391702,9,'Transportation Coordinator'),(8643,1394936,7,'Set Designer'),(8643,1394942,7,'Greensman'),(8643,1394950,6,'Supervising Sound Editor'),(8643,1399582,2,'Script Supervisor'),(8643,1400408,1,'Still Photographer'),(8643,1405233,6,'Foley'),(8643,1407827,9,'Unit Publicist'),(8643,1407842,1,'Camera Operator'),(8643,1411856,6,'Music Editor'),(8643,1412455,6,'Sound Re-Recording Mixer'),(8643,1414988,9,'Makeup Effects'),(8643,1426761,8,'Hairstylist'),(8643,1436675,8,'Hairstylist'),(8643,1436678,7,'Art Department Coordinator'),(8643,1436684,7,'Lead Painter'),(8643,1436686,10,'Visual Effects Producer'),(8643,1436687,9,'Stunt Coordinator'),(8643,1436688,5,'First Assistant Editor'),(8643,1436691,2,'Script Supervisor'),(9043,15347,6,'Music'),(9043,35176,5,'Editor'),(9043,27679,3,'Producer'),(9043,56789,4,'Screenplay'),(9043,56789,2,'Director'),(9043,56790,3,'Producer'),(9043,56791,1,'Director of Photography'),(816,550,3,'Producer'),(816,551,3,'Producer'),(816,561,3,'Casting'),(816,3416,3,'Producer'),(816,6737,2,'Director'),(816,9204,6,'Original Music Composer'),(816,9417,6,'Supervising Sound Effects Editor'),(816,9573,1,'Director of Photography'),(816,12073,4,'Screenplay'),(816,14036,5,'Editor'),(816,14189,5,'Editor'),(816,14039,7,'Production Design'),(816,14040,7,'Art Direction'),(816,14041,7,'Set Decoration'),(816,14042,8,'Costume Design'),(816,14043,8,'Makeup Artist'),(816,14045,6,'Sound Effects Editor'),(816,14046,9,'Special Effects Coordinator'),(816,14047,9,'Special Effects Coordinator'),(816,14048,9,'Special Effects'),(816,14049,9,'Stunt Coordinator'),(816,14050,9,'Stunts'),(106,37,6,'Original Music Composer'),(106,671,6,'Supervising Sound Effects Editor'),(106,908,6,'Music Editor'),(106,1090,2,'Director'),(106,1091,3,'Producer'),(106,1092,3,'Producer'),(106,1092,4,'Author'),(106,1093,3,'Producer'),(106,1094,4,'Author'),(106,1095,1,'Director of Photography'),(106,1096,7,'Production Design'),(106,1097,3,'Casting'),(106,1098,5,'Editor'),(106,1099,5,'Editor'),(106,7713,2,'First Assistant Director'),(106,7719,8,'Costume Design'),(106,14382,6,'Supervising Dialogue Editor'),(106,12512,7,'Art Direction'),(106,16563,9,'Aerial Coordinator'),(106,23868,7,'Set Decoration'),(106,44813,6,'Orchestrator'),(106,54272,10,'Visual Effects Supervisor'),(106,63709,9,'Stunt Coordinator'),(106,69586,6,'Sound Effects Editor'),(106,118944,6,'Dialogue Editor'),(106,148856,7,'Greensman'),(106,1050929,9,'Visual Effects Editor'),(106,1070097,6,'Sound Effects Editor'),(106,1118402,10,'Special Effects Supervisor'),(106,1206905,8,'Costume Supervisor'),(106,1316296,8,'Makeup Designer'),(106,1338836,8,'Costume Supervisor'),(106,1338840,2,'Script Supervisor'),(106,1400082,1,'Still Photographer'),(106,1400815,10,'Special Effects Supervisor'),(106,1409485,6,'Sound Effects Editor'),(106,1410345,7,'Property Master'),(106,1412617,6,'ADR Editor'),(106,1416581,6,'Sound Effects Editor'),(106,1418021,6,'ADR Editor'),(106,1423863,6,'Supervising Sound Effects Editor'),(106,1560037,7,'Greensman'),(106,1565158,6,'Foley Editor'),(106,1584966,8,'Hairstylist'),(106,1632066,9,'Pilot'),(106,1640697,11,'Gaffer'),(106,1660864,7,'Property Master'),(106,1800242,9,'Pilot'),(106,1800898,7,'Art Direction'),(106,1877085,8,'Hairstylist'),(106,1877089,7,'Sculptor'),(106,1877093,9,'Carpenter'),(106,1877095,7,'Construction Coordinator'),(106,1877099,7,'Set Dresser'),(106,1877109,6,'ADR Editor'),(106,1877117,10,'Visual Effects Supervisor'),(106,1877120,10,'Visual Effects Producer'),(106,1877124,10,'Animation Supervisor'),(106,1877125,11,'Gaffer'),(106,1877129,1,'Key Grip'),(106,1877130,1,'Key Grip'),(106,1877131,11,'Gaffer'),(106,1877136,1,'Key Grip'),(106,1877141,1,'Still Photographer'),(106,1877148,9,'Pilot'),(106,1877151,2,'Script Supervisor'),(279,897,3,'Casting'),(279,750,3,'Casting'),(279,1310,3,'Producer'),(279,3974,2,'Director'),(279,3975,4,'Theatre Play'),(279,3975,4,'Screenplay'),(279,4006,3,'Executive Producer'),(279,4006,2,'Assistant Director'),(279,4007,3,'Executive Producer'),(279,4008,1,'Director of Photography'),(279,4009,5,'Editor'),(279,4011,5,'Editor'),(279,5490,3,'Casting Associate'),(279,6494,7,'Production Design'),(279,12579,1,'Still Photographer'),(279,23349,3,'Casting'),(279,91160,2,'Script Supervisor'),(279,957046,8,'Costume Design'),(279,957928,6,'Sound Re-Recording Mixer'),(279,1191860,1,'Still Photographer'),(279,1248681,9,'Choreographer'),(279,1304249,8,'Makeup Artist'),(279,1397291,6,'Music'),(279,1410149,8,'Makeup Designer'),(279,1452489,9,'Motion Capture Artist'),(279,1487281,3,'Location Manager'),(279,1532202,7,'Art Direction'),(279,1541285,3,'Location Manager'),(8617,2214,6,'Original Music Composer'),(8617,4849,6,'Supervising Sound Editor'),(8617,9360,1,'Still Photographer'),(8617,11874,3,'Producer'),(8617,11877,7,'Production Design'),(8617,13061,3,'Casting'),(8617,44633,3,'Executive Producer'),(8617,44634,3,'Executive Producer'),(8617,52371,4,'Screenplay'),(8617,52371,3,'Executive Producer'),(8617,45627,2,'Director'),(8617,59920,3,'Producer'),(8617,59922,3,'Executive Producer'),(8617,59923,3,'Executive Producer'),(8617,59924,3,'Executive Producer'),(8617,59929,1,'Director of Photography'),(8617,59930,5,'Editor'),(8617,59932,3,'Casting'),(8617,65736,7,'Set Decoration'),(8617,112521,7,'Art Direction'),(8617,91903,11,'Gaffer'),(8617,578729,8,'Hair Department Head'),(8617,1317898,8,'Costume Design'),(8617,1345608,9,'Stunt Coordinator'),(8617,1377127,5,'Dialogue Editor'),(8617,1392098,10,'Visual Effects Supervisor'),(8617,1400070,6,'Sound Effects Editor'),(8617,1400556,6,'Sound Editor'),(8617,1404546,6,'Music Editor'),(8617,1412185,8,'Key Makeup Artist'),(8617,1492941,2,'Script Supervisor'),(8617,1546115,6,'Production Sound Mixer'),(8617,1552369,10,'Visual Effects Coordinator'),(8617,1810646,8,'Makeup Department Head'),(5279,8384,7,'Set Decoration'),(5279,668,3,'Casting'),(5279,1635,5,'Editor'),(5279,4584,3,'Executive Producer'),(5279,8846,1,'Director of Photography'),(5279,9152,6,'Original Music Composer'),(5279,9789,4,'Screenplay'),(5279,9789,2,'Director'),(5279,9789,3,'Producer'),(5279,10417,3,'Producer'),(5279,10420,7,'Production Design'),(5279,10747,4,'Screenplay'),(5279,10747,3,'Producer'),(5279,12438,3,'Producer'),(5279,17166,8,'Costume Design'),(5279,43382,3,'Executive Producer'),(5279,43383,3,'Executive Producer'),(5279,43384,3,'Executive Producer'),(5279,43385,7,'Art Direction'),(5279,43387,3,'Producer'),(5279,43388,3,'Producer'),(9829,1325,3,'Casting'),(9829,1993,3,'Producer'),(9829,2031,3,'Casting'),(9829,2236,3,'Producer'),(9829,2238,3,'Producer'),(9829,2532,3,'Casting'),(9829,3501,3,'Casting'),(9829,4906,3,'Casting'),(9829,9646,5,'Editor'),(9829,9150,3,'Executive Producer'),(9829,9151,3,'Executive Producer'),(9829,9160,6,'Music Editor'),(9829,11224,7,'Supervising Art Director'),(9829,11098,6,'Original Music Composer'),(9829,15493,1,'Director of Photography'),(9829,18087,11,'Gaffer'),(9829,25598,4,'Screenplay'),(9829,25598,2,'Director'),(9829,25598,3,'Producer'),(9829,27032,7,'Production Design'),(9829,29405,5,'Editor'),(9829,54926,9,'Second Unit Cinematographer'),(9829,57201,3,'Line Producer'),(9829,59679,3,'Producer'),(9829,59681,3,'Producer'),(9829,59680,5,'Editor'),(9829,59682,7,'Art Direction'),(9829,59683,8,'Costume Design'),(9829,59684,7,'Art Direction'),(9829,67201,5,'First Assistant Editor'),(9829,68543,9,'Second Unit Cinematographer'),(9829,105780,6,'Sound mixer'),(9829,122274,10,'Visual Effects Supervisor'),(9829,190914,2,'Script Supervisor'),(9829,223202,6,'Music Supervisor'),(9829,1014915,3,'Casting Associate'),(9829,1324095,8,'Costume Supervisor'),(9829,1332515,1,'Camera Operator'),(9829,1335564,9,'Special Effects Coordinator'),(9829,1399561,9,'Visual Effects Editor'),(9829,1403638,10,'Visual Effects Producer'),(9829,1406837,10,'Visual Effects Producer'),(9829,1408386,10,'3D Supervisor'),(9829,1421936,8,'Hairstylist'),(9829,1425551,10,'Visual Effects Producer'),(9829,1437620,8,'Hairstylist'),(9829,1470167,1,'Still Photographer'),(9829,1519840,9,'Visual Effects Editor'),(9829,1530220,8,'Hair Designer'),(9829,1530220,8,'Makeup Designer'),(9829,1537508,1,'First Assistant Camera'),(9829,1553166,10,'3D Supervisor'),(9829,1553167,11,'Gaffer'),(9829,1553168,11,'Rigging Gaffer'),(9829,1553169,1,'First Assistant Camera'),(9829,1553170,1,'First Assistant Camera'),(9829,1553171,8,'Makeup Artist'),(9829,1553172,8,'Makeup Artist'),(790,1060,1,'Director of Photography'),(790,2161,4,'Screenplay'),(790,2161,3,'Producer'),(790,11770,4,'Screenplay'),(790,11770,2,'Director'),(790,11770,6,'Original Music Composer'),(790,11772,3,'Producer'),(790,11773,3,'Executive Producer'),(790,11774,3,'Producer'),(790,11776,5,'Editor'),(790,11777,5,'Editor'),(790,11777,7,'Production Design'),(790,11779,7,'Art Direction'),(790,11780,8,'Costume Design'),(790,11781,8,'Costume Design'),(790,15492,6,'Sound Designer'),(790,20786,7,'Assistant Art Director'),(790,62583,1,'Camera Operator'),(790,71760,2,'Script Supervisor'),(790,74781,6,'Sound Re-Recording Mixer'),(790,1371064,6,'Supervising Sound Editor'),(790,1394573,6,'Sound Effects Editor'),(790,1423849,8,'Makeup Artist'),(790,1446528,8,'Hairstylist'),(790,1446529,8,'Makeup Artist'),(790,1446530,8,'Makeup Artist'),(790,1446531,6,'Sound Re-Recording Mixer'),(790,1446533,6,'Sound Re-Recording Mixer'),(790,1446534,6,'Supervising Sound Editor'),(790,1446535,9,'Special Effects'),(790,1446536,11,'Gaffer'),(790,1446537,9,'Unit Publicist'),(790,1446538,9,'Unit Publicist'),(9610,8382,7,'Art Direction'),(9610,3686,3,'Casting'),(9610,2087,2,'Director'),(9610,7715,5,'Editor'),(9610,5398,3,'Executive Producer'),(9610,6603,1,'Director of Photography'),(9610,7728,6,'Original Music Composer'),(9610,7728,6,'Conductor'),(9610,7793,8,'Costume Design'),(9610,7787,7,'Draughtsman'),(9610,20504,10,'Creature Design'),(9610,12507,3,'Producer'),(9610,12511,7,'Set Dresser'),(9610,15358,9,'Stunt Coordinator'),(9610,32035,3,'Producer'),(9610,16595,7,'Production Design'),(9610,25297,9,'Production Office Assistant'),(9610,27241,3,'Casting Assistant'),(9610,27205,8,'Makeup Artist'),(9610,57547,4,'Characters'),(9610,58180,4,'Screenplay'),(9610,74824,9,'Unit Publicist'),(9610,35287,4,'Story'),(9610,92229,10,'Visual Effects Coordinator'),(9610,122082,6,'Sound Editor'),(9610,136450,7,'Conceptual Design'),(9610,141359,4,'Story'),(9610,239884,6,'Musician'),(9610,589876,9,'Stunts'),(9610,718968,3,'Executive Producer'),(9610,718968,3,'Unit Production Manager'),(9610,1057871,6,'Orchestrator'),(9610,1099088,3,'Production Supervisor'),(9610,1198658,7,'Set Designer'),(9610,1302182,6,'Sound Re-Recording Mixer'),(9610,1337773,4,'Storyboard'),(9610,1338884,9,'Property Master'),(9610,1370844,1,'Camera Operator'),(9610,1377422,6,'Supervising Sound Editor'),(9610,1400355,9,'Driver'),(9610,1401350,10,'Special Effects Supervisor'),(9610,1421673,5,'Assistant Editor'),(9610,1427532,8,'Key Hair Stylist'),(9610,1427535,7,'Art Direction'),(9610,1427545,1,'Still Photographer'),(9610,1452752,11,'Electrician'),(9610,1481831,8,'Wardrobe Supervisor'),(9610,1535412,2,'Script Supervisor'),(9610,1556700,6,'Supervising Music Editor'),(9610,1564484,9,'Special Effects'),(9610,1564500,3,'Location Manager'),(9610,1564962,7,'Painter'),(9610,1564964,7,'Production Illustrator'),(9610,1564965,7,'Sculptor'),(9610,1564967,1,'Key Grip'),(9610,1564968,7,'Standby Painter'),(9610,1564986,7,'Set Decoration Buyer'),(9610,1564988,6,'Sound mixer'),(9610,1564990,11,'Gaffer'),(9610,1564996,11,'Best Boy Electric'),(9610,1743909,5,'Negative Cutter'),(9610,1743912,6,'Apprentice Sound Editor'),(9610,1743943,8,'Ager/Dyer'),(9610,1743947,6,'Assistant Sound Editor'),(1578,1032,2,'Director'),(1578,1035,4,'Screenplay'),(1578,1044,1,'Director of Photography'),(1578,2554,4,'Screenplay'),(1578,3661,5,'Editor'),(1578,3662,3,'Casting'),(1578,4506,3,'Production Manager'),(1578,16538,8,'Hairstylist'),(1578,18379,3,'Associate Producer'),(1578,12437,7,'Set Decoration'),(1578,8887,2,'Assistant Director'),(1578,9850,9,'Thanks'),(1578,11472,3,'Producer'),(1578,11476,8,'Costume Design'),(1578,14098,7,'Set Decoration'),(1578,16514,3,'Producer'),(1578,16519,8,'Makeup Artist'),(1578,16522,9,'Stunt Coordinator'),(1578,16539,6,'Sound Effects Editor'),(1578,17657,6,'Music'),(1578,76701,8,'Hairstylist'),(1578,81533,8,'Costume Design'),(1578,66518,3,'Location Manager'),(1578,72861,6,'Additional Soundtrack'),(1578,112526,2,'Assistant Director'),(1578,113658,8,'Hairstylist'),(1578,137192,7,'Set Decoration'),(1578,552081,4,'Book'),(1578,1050155,2,'Assistant Director'),(1578,1116736,3,'Production Office Coordinator'),(1578,1194262,1,'Still Photographer'),(1578,1219553,2,'Other'),(1578,1223861,2,'Assistant Director'),(1578,1336507,9,'Transportation Captain'),(1578,1380036,9,'Property Master'),(1578,1399326,6,'Music Editor'),(1578,1422613,9,'Additional Writing'),(1578,1422613,3,'Associate Producer'),(1578,1430210,8,'Hairstylist'),(1578,1432044,8,'Set Costumer'),(1578,1458534,3,'Publicist'),(1578,1475782,5,'Editorial Services'),(1578,1494667,3,'Location Manager'),(1578,1546907,9,'Driver'),(1578,1568510,8,'Hairstylist'),(1578,1595467,9,'Transportation Captain'),(1578,1614958,9,'Stunts'),(1578,1628998,8,'Set Costumer'),(1578,1636371,9,'Stunts'),(1578,1636375,3,'Location Manager'),(2575,474,3,'Casting'),(2575,1301,1,'Director of Photography'),(2575,3996,6,'Sound Re-Recording Mixer'),(2575,9156,4,'Screenplay'),(2575,16343,6,'Sound Editor'),(2575,19665,4,'Screenplay'),(2575,19665,2,'Director'),(2575,19665,3,'Producer'),(2575,19678,5,'Editor'),(2575,19679,3,'Casting'),(2575,19680,3,'Casting'),(2575,20422,4,'Screenplay'),(2575,20422,4,'Novel'),(2575,26140,6,'Music'),(2575,26141,7,'Production Design'),(2575,26143,7,'Art Direction'),(2575,26144,7,'Art Direction'),(2575,26145,7,'Set Decoration'),(2575,26146,8,'Costume Design'),(2575,43385,7,'Supervising Art Director'),(2575,122274,10,'Visual Effects Supervisor'),(2575,146706,6,'Foley'),(2575,1015492,8,'Makeup Artist'),(2575,1167205,7,'Assistant Art Director'),(2575,1334165,9,'Property Master'),(2575,1338245,2,'Script Supervisor'),(2575,1407848,8,'Hairstylist'),(2575,1408358,1,'Camera Operator'),(2575,1458557,1,'Still Photographer'),(2575,1466983,8,'Makeup Artist'),(2575,1466984,5,'Dialogue Editor'),(2575,1466985,6,'Foley'),(2575,1466986,9,'Special Effects Coordinator'),(2575,1466987,10,'Visual Effects Producer'),(2575,1466988,9,'Unit Publicist'),(848,715,7,'Production Design'),(848,3428,3,'Executive Producer'),(848,5055,1,'Director of Photography'),(848,5060,7,'Set Decoration'),(848,10536,6,'Original Music Composer'),(848,7727,10,'Visual Effects'),(848,9955,8,'Costume Design'),(848,10496,3,'Casting'),(848,12677,4,'Screenplay'),(848,12677,2,'Director'),(848,12678,4,'Screenplay'),(848,12678,3,'Producer'),(848,12681,3,'Producer'),(848,12685,5,'Editor'),(848,12686,3,'Casting'),(848,12687,7,'Art Direction'),(848,1424133,10,'Visual Effects'),(522,117,6,'Original Music Composer'),(522,510,2,'Director'),(522,510,3,'Producer'),(522,541,5,'Editor'),(522,547,3,'Casting'),(522,557,8,'Costume Design'),(522,1899,3,'Producer'),(522,1919,1,'Director of Photography'),(522,5626,3,'Unit Production Manager'),(522,7129,4,'Author'),(522,7130,4,'Screenplay'),(522,7131,4,'Screenplay'),(522,7145,3,'Executive Producer'),(522,7146,7,'Production Design'),(522,7147,7,'Art Direction'),(522,7148,7,'Set Decoration'),(522,16178,8,'Makeup Designer'),(522,15315,6,'Music Editor'),(522,16548,5,'Dialogue Editor'),(522,16641,9,'Special Effects Coordinator'),(522,17217,2,'Assistant Director'),(522,19747,6,'Supervising Sound Editor'),(522,26678,6,'ADR & Dubbing'),(522,103080,9,'Thanks'),(522,406204,8,'Makeup Artist'),(522,559909,9,'Special Effects'),(522,957581,5,'Dialogue Editor'),(522,1095093,8,'Hairstylist'),(522,1134763,9,'Thanks'),(522,1210259,8,'Hairstylist'),(522,1223915,8,'Makeup Artist'),(522,1293492,8,'Makeup Artist'),(522,1298017,8,'Set Costumer'),(522,1328134,8,'Costume Supervisor'),(522,1332501,10,'Animation'),(522,1382732,3,'Producer'),(522,1392109,8,'Costume Supervisor'),(522,1397882,9,'Transportation Captain'),(522,1399467,1,'Camera Operator'),(522,1400741,8,'Key Hair Stylist'),(522,1404751,9,'Transportation Co-Captain'),(522,1424176,9,'Stunt Coordinator'),(522,1479807,2,'Script Supervisor'),(522,1486978,2,'Assistant Director'),(522,1531878,8,'Makeup Artist'),(522,1534527,10,'Visual Effects Supervisor'),(522,1535414,5,'Dialogue Editor'),(522,1538365,9,'Stunts'),(522,1541839,6,'ADR & Dubbing'),(522,1553616,8,'Assistant Costume Designer'),(522,1614189,3,'Location Manager'),(522,1624607,9,'Post Production Supervisor'),(8408,14999,2,'Director'),(8408,14999,4,'Screenplay'),(8408,13367,6,'Music'),(8408,15000,3,'Producer'),(8408,15056,1,'Director of Photography'),(8408,15840,5,'Editor'),(8408,69888,3,'Executive Producer'),(8408,100507,3,'Casting'),(9389,53228,3,'Producer'),(9389,53229,3,'Producer'),(9389,57557,2,'Director'),(9389,57558,4,'Author'),(9389,57559,4,'Adaptation'),(9389,58255,4,'Screenplay'),(9389,58256,3,'Producer'),(9389,58257,6,'Original Music Composer'),(9389,58258,5,'Editor'),(9626,1259,6,'Original Music Composer'),(9626,2087,2,'Director'),(9626,7715,5,'Editor'),(9626,10515,4,'Screenplay'),(9626,15131,1,'Director of Photography'),(9626,58211,4,'Screenplay'),(9626,58212,3,'Producer'),(9626,58213,3,'Executive Producer'),(8363,14041,7,'Set Decoration'),(8363,19274,3,'Executive Producer'),(8363,19274,4,'Writer'),(8363,22043,1,'Director of Photography'),(8363,41039,3,'Producer'),(8363,41076,3,'Producer'),(8363,41080,3,'Casting'),(8363,41082,7,'Production Design'),(8363,41084,8,'Costume Design'),(8363,46942,5,'Editor'),(8363,53012,6,'Original Music Composer'),(8363,54733,2,'Director'),(8363,54734,3,'Executive Producer'),(8363,54734,4,'Writer'),(8363,54735,3,'Co-Producer'),(8363,62560,7,'Art Direction'),(8328,494,3,'Casting'),(8328,4868,5,'Editor'),(8328,11696,3,'Producer'),(8328,11697,3,'Producer'),(8328,29214,3,'Executive Producer'),(8328,40384,6,'Original Music Composer'),(8328,33673,7,'Set Decoration'),(8328,20739,3,'Producer'),(8328,20742,3,'Producer'),(8328,8305,3,'Executive Producer'),(8328,29215,9,'Choreographer'),(8328,45841,3,'Casting'),(8328,52682,8,'Costume Design'),(8328,53637,7,'Production Design'),(8328,54507,2,'Director'),(8328,54508,4,'Screenplay'),(8328,54509,4,'Screenplay'),(8328,54510,4,'Screenplay'),(8328,54511,3,'Executive Producer'),(8328,54512,3,'Executive Producer'),(8328,54513,1,'Director of Photography'),(8328,54514,6,'Music Supervisor'),(8328,54516,9,'Choreographer'),(8328,54515,9,'Choreographer'),(8328,76152,6,'Orchestrator'),(8328,224387,3,'Casting'),(8328,577754,8,'Makeup Artist'),(8328,1206767,7,'Art Direction'),(8328,1392906,10,'Visual Effects Producer'),(8328,1412112,10,'Special Effects Supervisor'),(8328,1419815,2,'Script Supervisor'),(8328,1459199,9,'Property Master'),(8328,1547131,7,'Art Department Coordinator'),(8328,1547132,9,'Special Effects Coordinator'),(8328,1547133,8,'Assistant Costume Designer'),(8328,1547134,8,'Set Costumer'),(8328,1547135,6,'Orchestrator'),(8328,1547136,8,'Key Hair Stylist'),(205,1788,3,'Producer'),(205,2589,2,'Director'),(205,2589,4,'Author'),(205,2589,4,'Screenplay'),(205,2589,3,'Producer'),(205,2590,4,'Author'),(205,2590,4,'Screenplay'),(205,2591,3,'Producer'),(205,2593,6,'Original Music Composer'),(205,2596,1,'Director of Photography'),(205,2597,5,'Editor'),(205,2621,3,'Producer'),(205,2621,9,'Second Unit'),(205,2622,6,'Original Music Composer'),(205,2623,3,'Casting'),(205,2624,3,'Casting'),(205,2625,7,'Production Design'),(205,2626,7,'Production Design'),(205,20648,6,'Original Music Composer'),(205,23832,8,'Makeup Artist'),(205,32984,3,'Casting'),(205,44645,3,'Casting'),(205,58104,6,'Foley'),(205,65457,3,'Executive Producer'),(205,71576,7,'Art Direction'),(205,75086,9,'Post Production Supervisor'),(205,544653,2,'Assistant Director'),(205,959982,8,'Costume Design'),(205,1038526,3,'Executive Producer'),(205,1065913,3,'Unit Production Manager'),(205,1066819,3,'Line Producer'),(205,1108467,1,'Camera Operator'),(205,1262158,9,'Stunt Coordinator'),(205,1373729,2,'Script Supervisor'),(205,1439431,5,'Color Timer'),(205,1556140,8,'Makeup Department Head'),(205,1602319,3,'Casting'),(205,1605653,3,'Casting Associate'),(205,1646838,1,'Still Photographer'),(205,1646850,5,'Assistant Editor'),(205,1652832,8,'Hair Department Head'),(1620,1966,7,'Production Design'),(1620,7681,3,'Producer'),(1620,10496,3,'Casting'),(1620,17767,6,'Original Music Composer'),(1620,18184,2,'Director'),(1620,18185,4,'Screenplay'),(1620,18186,3,'Producer'),(1620,18187,3,'Producer'),(1620,18188,3,'Producer'),(1620,45842,3,'Executive Producer'),(1620,45843,1,'Director of Photography'),(1620,45845,5,'Editor'),(1620,45846,5,'Editor'),(1620,20722,8,'Costume Design'),(1620,45847,3,'Casting'),(1620,45848,3,'Casting'),(1620,1123100,3,'Line Producer'),(1933,403,1,'Director of Photography'),(1933,3631,8,'Costume Design'),(1933,474,3,'Casting'),(1933,500,3,'Executive Producer'),(1933,1307,3,'Executive Producer'),(1933,59839,3,'Executive Producer'),(1933,2635,3,'Casting'),(1933,4710,7,'Production Design'),(1933,4710,7,'Art Direction'),(1933,4710,7,'Set Decoration'),(1933,9183,3,'Executive Producer'),(1933,12787,7,'Set Decoration'),(1933,15604,5,'Editor'),(1933,16941,3,'Producer'),(1933,19840,2,'Director'),(1933,19840,6,'Original Music Composer'),(1933,19840,4,'Writer'),(1933,19842,3,'Producer'),(1933,19904,3,'Line Producer'),(1933,19905,7,'Set Decoration'),(1933,34340,3,'Executive Producer'),(1933,587947,3,'Associate Producer'),(1933,947267,3,'Producer'),(1933,1061539,3,'Line Producer'),(1933,1076744,6,'Sound Designer'),(1933,1153655,1,'Camera Operator'),(1933,1302685,9,'Translator'),(1933,1334537,8,'Makeup Artist'),(1933,1335072,10,'Visual Effects Coordinator'),(1933,1340117,6,'Dolby Consultant'),(1933,1406838,9,'Stunt Coordinator'),(1933,1409820,8,'Hairstylist'),(1933,1409857,2,'Script Supervisor'),(1933,1411075,8,'Wigmaker'),(1933,1444920,10,'Visual Effects Supervisor'),(1933,1465992,10,'Digital Compositors'),(1933,1492131,6,'Sound'),(1933,1577062,7,'Production Illustrator'),(1933,1586208,6,'First Assistant Sound Editor'),(1933,1617588,5,'Color Timer'),(1933,1617596,4,'Storyboard'),(1933,1651235,6,'Sound Engineer'),(1933,1677184,11,'Gaffer'),(1933,1694589,1,'Steadicam Operator'),(1933,1730379,7,'Standby Painter'),(1933,1730380,1,'Grip'),(1933,1730381,1,'Still Photographer'),(1933,1730382,8,'Seamstress'),(1933,1730383,9,'Carpenter'),(1933,1730384,9,'Craft Service'),(1933,1730388,9,'Loader'),(1933,1730389,9,'Post Production Assistant'),(1933,1730390,9,'Public Relations'),(1933,1730391,9,'Scenic Artist'),(1933,1730392,9,'Security'),(1933,1730393,9,'Stand In'),(1933,1730394,9,'Stunts'),(1933,1730395,2,'Assistant Director'),(1933,1730396,11,'Electrician'),(1933,1730397,3,'Production Accountant'),(1933,1730398,3,'Production Coordinator'),(1933,1730399,6,'Boom Operator'),(1933,1730400,6,'Foley'),(1933,1730401,6,'Sound Designer'),(1933,1730402,10,'3D Supervisor'),(1933,1730403,10,'Special Effects Supervisor'),(1933,1730404,3,'Unit Manager'),(679,8380,7,'Art Direction'),(679,244,5,'Editor'),(679,296,6,'Music Editor'),(679,597,3,'Casting'),(679,598,3,'Casting'),(679,668,3,'Casting'),(679,752,3,'Casting'),(679,869,3,'Producer'),(679,945,7,'Set Decoration'),(679,1729,6,'Original Music Composer'),(679,2710,4,'Screenplay'),(679,2710,2,'Director'),(679,8524,7,'Production Design'),(679,7204,7,'Art Direction'),(679,7783,1,'Director of Photography'),(679,9402,9,'Special Effects'),(679,10183,7,'Art Direction'),(679,10197,7,'Art Direction'),(679,10198,8,'Costume Design'),(679,10199,8,'Makeup Artist'),(679,10200,7,'Supervising Art Director'),(679,10201,6,'Music Editor'),(679,10202,9,'Special Effects'),(679,10203,9,'Stunt Coordinator'),(679,10204,9,'Stunts'),(679,40765,1,'Camera Operator'),(679,20110,6,'Supervising Sound Editor'),(679,29061,8,'Costume Supervisor'),(679,41840,5,'Dialogue Editor'),(679,102344,10,'Visual Effects Supervisor'),(679,1378839,1,'Still Photographer'),(679,1399025,9,'Property Master'),(679,1399030,9,'Sound Recordist'),(679,1399031,10,'Visual Effects Supervisor'),(679,1399032,10,'Visual Effects Supervisor'),(679,1399033,1,'Camera Operator'),(679,1399035,11,'Gaffer'),(3597,4500,6,'Original Music Composer'),(3597,5914,3,'Casting'),(3597,6378,1,'Director of Photography'),(3597,8751,5,'Editor'),(3597,8751,1,'Second Unit Director of Photography'),(3597,9545,3,'Casting Associate'),(3597,9776,9,'Post Production Supervisor'),(3597,11697,3,'Producer'),(3597,11874,3,'Producer'),(3597,12051,7,'Production Design'),(3597,13072,9,'Set Medic'),(3597,16618,9,'Stunt Coordinator'),(3597,17862,6,'Music Supervisor'),(3597,33254,2,'Director'),(3597,33255,4,'Novel'),(3597,26458,4,'Screenplay'),(3597,33256,3,'Producer'),(3597,11005,7,'Set Decoration'),(3597,33257,8,'Costume Design'),(3597,33281,3,'Executive Producer'),(3597,33281,3,'Unit Production Manager'),(3597,58362,6,'Supervising Sound Editor'),(3597,58363,6,'Sound Effects Editor'),(3597,57027,2,'First Assistant Director'),(3597,62780,7,'Set Designer'),(3597,112631,7,'Location Scout'),(3597,91868,7,'Property Master'),(3597,146352,9,'Stunts'),(3597,228439,5,'Dialogue Editor'),(3597,936765,6,'Orchestrator'),(3597,983118,1,'Steadicam Operator'),(3597,1084413,11,'Lighting Technician'),(3597,1313233,8,'Costume Supervisor'),(3597,1334172,8,'Makeup Artist'),(3597,1374169,6,'Foley'),(3597,1393568,1,'Still Photographer'),(3597,1397885,1,'Underwater Camera'),(3597,1403415,1,'Aerial Camera'),(3597,1404326,6,'Music Editor'),(3597,1410335,3,'Production Coordinator'),(3597,1439016,7,'Construction Foreman'),(3597,1443963,1,'First Assistant Camera'),(3597,1445870,8,'Set Dressing Artist'),(3597,1449577,2,'Script Supervisor'),(3597,1531899,8,'Key Makeup Artist'),(3597,1534222,8,'Key Hair Stylist'),(3597,1549066,9,'Special Effects Coordinator'),(3597,1552549,5,'Color Timer'),(3597,1648109,3,'Production Supervisor'),(3597,1688587,7,'Art Direction'),(3597,1746553,8,'Hairstylist'),(3597,1787836,6,'Boom Operator'),(3597,1790541,7,'Art Department Coordinator'),(3597,1790542,7,'Greensman'),(3597,1790543,7,'Leadman'),(3597,1790544,7,'Painter'),(3597,1790545,7,'Production Illustrator'),(3597,1790546,1,'Key Grip'),(3597,1790547,1,'Grip'),(3597,1790548,8,'Set Costumer'),(3597,1790549,9,'Craft Service'),(3597,1790550,9,'Driver'),(3597,1790551,9,'Picture Car Coordinator'),(3597,1790552,9,'Propmaker'),(3597,1790555,9,'Set Production Assistant'),(3597,1790556,6,'Sound Recordist'),(3597,1790557,9,'Stand In'),(3597,1790558,9,'Transportation Captain'),(3597,1790559,9,'Transportation Co-Captain'),(3597,1790560,9,'Transportation Coordinator'),(3597,1790564,11,'Best Boy Electric'),(3597,1790565,11,'Electrician'),(3597,1790566,3,'Location Manager'),(3597,1790567,3,'Publicist'),(3597,1790568,6,'Assistant Sound Editor'),(3597,1790570,6,'Sound Mixer'),(9675,432,1,'Director of Photography'),(9675,4948,4,'Screenplay'),(9675,5633,7,'Set Decoration'),(9675,13235,4,'Screenplay'),(9675,13235,2,'Director'),(9675,21691,3,'Casting'),(9675,27679,3,'Producer'),(9675,37023,7,'Art Direction'),(9675,21729,7,'Set Decoration'),(9675,24190,6,'Original Music Composer'),(9675,32796,5,'Editor'),(9675,35512,7,'Production Design'),(9675,35514,8,'Costume Design'),(9675,45838,3,'Producer'),(9675,58469,4,'Novel'),(9675,79790,11,'Gaffer'),(9675,406354,3,'Production Supervisor'),(9675,1095093,8,'Key Hair Stylist'),(9675,1099845,9,'Stunt Coordinator'),(9675,1318445,8,'Makeup Department Head'),(9675,1377133,1,'Still Photographer'),(9675,1400537,6,'Music Editor'),(9675,1412250,10,'Visual Effects Supervisor'),(9675,1416438,2,'Script Supervisor'),(9675,1428208,11,'Rigging Gaffer'),(9675,1535130,6,'Sound Effects Editor'),(9675,1535131,6,'Music Supervisor'),(9675,1535133,1,'Camera Operator'),(9988,5914,3,'Casting'),(9988,10394,5,'Editor'),(9988,19758,1,'Director of Photography'),(9988,19659,6,'Original Music Composer'),(9988,21420,7,'Production Design'),(9988,39123,3,'Casting'),(9988,41551,3,'Producer'),(9988,52049,2,'Director'),(9988,52049,4,'Author'),(9988,52051,4,'Author'),(9988,54211,3,'Executive Producer'),(9988,54212,3,'Executive Producer'),(9988,56251,4,'Author'),(9988,56252,4,'Author'),(9988,56253,4,'Author'),(9988,56596,3,'Executive Producer'),(9988,56597,3,'Producer'),(9988,57560,3,'Executive Producer'),(9988,60245,3,'Executive Producer'),(9988,61522,7,'Art Direction'),(9988,61524,7,'Set Decoration'),(9988,61523,3,'Producer'),(9988,61525,8,'Costume Design'),(948,1060,1,'Director of Photography'),(948,2161,4,'Screenplay'),(948,2161,3,'Producer'),(948,11770,4,'Screenplay'),(948,11770,2,'Director'),(948,11770,6,'Original Music Composer'),(948,11776,5,'Editor'),(948,11777,5,'Editor'),(948,11777,7,'Production Design'),(948,11779,7,'Set Decoration'),(948,15487,8,'Makeup Artist'),(948,15489,3,'Production Manager'),(948,15492,6,'Supervising Sound Editor'),(948,15494,9,'Special Effects'),(948,15496,9,'Stunts'),(948,64059,3,'Executive Producer'),(948,1408557,3,'Associate Producer'),(7516,2031,3,'Casting'),(7516,2236,3,'Producer'),(7516,2238,3,'Producer'),(7516,2532,3,'Casting'),(7516,6377,6,'Original Music Composer'),(7516,7418,8,'Costume Design'),(7516,9151,3,'Executive Producer'),(7516,18265,1,'Director of Photography'),(7516,43559,3,'Executive Producer'),(7516,43560,3,'Executive Producer'),(7516,40223,2,'Director'),(7516,40223,4,'Writer'),(7516,44482,3,'Executive Producer'),(7516,51987,7,'Production Design'),(7516,65849,5,'Editor'),(7516,63673,7,'Set Decoration'),(7516,1319135,7,'Art Direction'),(7516,1319136,8,'Makeup Department Head'),(7516,1319137,8,'Costume Supervisor'),(2752,2236,3,'Producer'),(2752,5506,1,'Director of Photography'),(2752,7145,2,'Director'),(2752,12568,7,'Set Decoration'),(2752,25140,7,'Production Design'),(2752,27679,3,'Producer'),(2752,24190,6,'Original Music Composer'),(2752,27863,4,'Scenario Writer'),(2752,27863,4,'Writer'),(2752,28161,5,'Editor'),(2752,28162,8,'Costume Design'),(2752,28163,7,'Set Decoration'),(9429,4485,4,'Screenplay'),(9429,25143,6,'Music'),(9429,23659,4,'Screenplay'),(9429,16464,1,'Director of Photography'),(9429,57434,3,'Producer'),(9429,58316,2,'Director'),(9429,58317,4,'Screenplay'),(9429,58318,5,'Editor'),(9792,4292,3,'Line Producer'),(9792,5140,3,'Producer'),(9792,7441,8,'Costume Design'),(9792,9990,7,'Production Design'),(9792,23461,1,'Director of Photography'),(9792,35581,3,'Producer'),(9792,59290,4,'Screenplay'),(9792,59291,4,'Screenplay'),(9792,59291,2,'Director'),(9792,64129,3,'Producer'),(9792,64130,5,'Editor'),(9792,60891,6,'Original Music Composer'),(9792,62778,3,'Casting'),(9792,1128147,3,'Producer'),(9792,1128149,3,'Executive Producer'),(9310,1593,3,'Casting'),(9310,2950,1,'Director of Photography'),(9310,3288,3,'Executive Producer'),(9310,3289,2,'Director'),(9310,3289,4,'Screenplay'),(9310,3289,3,'Producer'),(9310,5388,5,'Editor'),(9310,9203,3,'Producer'),(9310,21266,6,'Original Music Composer'),(9310,21747,7,'Production Design'),(9310,33455,7,'Art Direction'),(9310,27266,7,'Set Decoration'),(9310,33456,8,'Costume Design'),(9310,45584,3,'Producer'),(9310,57245,3,'Executive Producer'),(9310,92329,8,'Makeup Department Head'),(9310,143915,5,'Dialogue Editor'),(9310,1325650,7,'Set Designer'),(9310,1335156,5,'Color Timer'),(9310,1338152,6,'Sound Designer'),(9310,1338152,6,'Supervising Sound Editor'),(9310,1341775,9,'Post Production Supervisor'),(9310,1341776,9,'Property Master'),(9310,1341777,9,'Propmaker'),(9310,1341778,7,'Construction Foreman'),(9310,1341779,7,'Art Department Coordinator'),(9310,1341780,9,'Propmaker'),(9310,1341781,6,'Supervising Sound Editor'),(9310,1341783,6,'Foley'),(9310,1341784,6,'Foley'),(9310,1341786,6,'Sound Effects Editor'),(9310,1341789,10,'Visual Effects Supervisor'),(9310,1341791,9,'Stunt Coordinator'),(9310,1341793,8,'Set Costumer'),(9310,1341794,8,'Costume Supervisor'),(9310,1341796,9,'Transportation Captain'),(9310,1341797,9,'Transportation Coordinator'),(9310,1341798,3,'Location Manager'),(9310,1341800,9,'Choreographer'),(9310,1341801,2,'Script Supervisor'),(7304,800,5,'Editor'),(7304,4140,6,'Original Music Composer'),(7304,6891,3,'Executive Producer'),(7304,6892,3,'Executive Producer'),(7304,6893,3,'Producer'),(7304,6895,3,'Executive Producer'),(7304,11091,3,'Producer'),(7304,27097,3,'Executive Producer'),(7304,19000,2,'Director'),(7304,19000,4,'Writer'),(7304,19002,1,'Director of Photography'),(7304,61119,3,'Executive Producer'),(7304,66708,3,'Producer'),(7304,961447,7,'Production Design'),(1491,1322,8,'Costume Design'),(1491,1551,6,'Original Music Composer'),(1491,2597,5,'Editor'),(1491,3965,3,'Casting'),(1491,4232,3,'Producer'),(1491,16304,3,'Producer'),(1491,16305,3,'Producer'),(1491,4844,3,'Co-Producer'),(1491,4854,3,'Co-Producer'),(1491,4856,3,'Co-Producer'),(1491,16363,3,'Casting'),(1491,17329,4,'Screenplay'),(1491,17329,2,'Director'),(1491,17451,3,'Producer'),(1491,27679,3,'Producer'),(1491,27680,4,'Novel'),(1491,60085,1,'Director of Photography'),(1491,69306,3,'Executive Producer'),(1491,142165,6,'Music Editor'),(1491,548447,10,'Special Effects Supervisor'),(1491,962085,7,'Production Design'),(1491,1034748,3,'Casting'),(1491,1085522,6,'Music Editor'),(1491,1090150,8,'Makeup Artist'),(1491,1304287,7,'Art Direction'),(1491,1331176,5,'First Assistant Editor'),(1491,1384895,9,'Post-Production Manager'),(1491,1404549,2,'Script Supervisor'),(1491,1410162,9,'Stunt Coordinator'),(1491,1411118,3,'Publicist'),(1491,1427499,8,'Wigmaker'),(1491,1455486,2,'Assistant Director'),(1491,1459784,10,'Animation'),(1491,1463199,7,'Art Direction'),(1491,1463200,7,'Set Decoration'),(1491,1477203,3,'Associate Producer'),(1491,1505341,2,'Assistant Director'),(1491,1506768,9,'Stunts'),(1491,1525888,8,'Hair Designer'),(1491,1552040,1,'Still Photographer'),(1491,1578092,9,'Dialect Coach'),(2989,2209,1,'Director of Photography'),(2989,6929,3,'Producer'),(2989,9600,9,'Additional Writing'),(2989,14653,8,'Makeup Artist'),(2989,23788,8,'Makeup Artist'),(2989,29342,2,'Director'),(2989,29342,3,'Producer'),(2989,29342,4,'Writer'),(2989,29376,6,'Original Music Composer'),(2989,29377,8,'Makeup Artist'),(2989,393389,3,'Executive Producer'),(2989,1185752,3,'Producer'),(2989,1448342,3,'Co-Producer'),(2989,1448343,3,'Co-Producer'),(2989,1448345,7,'Production Design'),(2989,1448347,8,'Makeup Artist'),(4723,1577,2,'Director'),(4723,1577,4,'Screenplay'),(4723,1587,3,'Producer'),(4723,1590,1,'Director of Photography'),(4723,1591,5,'Editor'),(4723,5914,3,'Casting'),(4723,3498,3,'Executive Producer'),(4723,7238,8,'Costume Design'),(4723,9648,7,'Production Design'),(4723,39118,3,'Producer'),(4723,39119,3,'Producer'),(4723,39120,3,'Producer'),(4723,39121,6,'Original Music Composer'),(4723,39123,3,'Casting'),(4723,39124,7,'Art Direction'),(4723,53636,3,'Casting Associate'),(4723,54735,3,'Co-Producer'),(4723,54735,3,'Unit Production Manager'),(4723,60784,3,'Executive Producer'),(4723,60786,3,'Associate Producer'),(4723,60787,3,'Associate Producer'),(4723,62238,3,'Executive Producer'),(4723,74536,3,'Production Supervisor'),(4723,963843,7,'Assistant Art Director'),(4723,1014920,3,'Casting Assistant'),(4723,1026260,3,'Executive Producer'),(4723,1037124,3,'Executive Producer'),(4723,1336191,7,'Set Designer'),(4723,1357046,7,'Set Designer'),(4723,1387191,3,'Location Manager'),(4723,1400486,9,'Post Production Supervisor'),(4723,1547137,3,'Production Coordinator'),(4723,1745107,3,'Executive Producer'),(4723,1777027,3,'Executive Producer'),(4723,1777032,2,'Script Supervisor'),(4723,1777033,7,'Title Designer'),(4032,339,3,'Producer'),(4032,1213,6,'Original Music Composer'),(4032,10570,3,'Executive Producer'),(4032,10548,5,'Editor'),(4032,17144,3,'Executive Producer'),(4032,19285,8,'Costume Design'),(4032,21517,3,'Casting'),(4032,34611,2,'Director'),(4032,35163,4,'Screenplay'),(4032,35164,3,'Producer'),(4032,35165,1,'Director of Photography'),(4032,35166,7,'Art Direction'),(4032,35167,7,'Set Decoration'),(4584,1614,2,'Director'),(4584,2226,3,'Executive Producer'),(4584,7056,4,'Screenplay'),(4584,7021,1,'Director of Photography'),(4584,9152,6,'Music'),(4584,32982,4,'Novel'),(4584,11058,3,'Producer'),(4584,948439,3,'Co-Producer'),(2977,6379,7,'Production Design'),(2977,43559,3,'Executive Producer'),(2977,43560,3,'Executive Producer'),(2977,29226,2,'Director'),(2977,29227,3,'Producer'),(2977,29228,3,'Producer'),(2977,29229,3,'Producer'),(2977,29230,4,'Screenplay'),(2977,29231,1,'Director of Photography'),(2977,29233,8,'Makeup Department Head'),(2977,43154,8,'Costume Design'),(2977,72854,6,'Original Music Composer'),(2977,118168,3,'Executive Producer'),(2977,1547156,2,'Script Supervisor'),(2977,1565505,1,'Still Photographer'),(207,1530,3,'Casting'),(207,2690,2,'Director'),(207,2691,4,'Author'),(207,2691,4,'Screenplay'),(207,2702,1,'Director of Photography'),(207,2704,6,'Original Music Composer'),(207,2705,5,'Editor'),(207,2706,3,'Producer'),(207,2707,3,'Producer'),(207,2708,3,'Producer'),(207,2709,7,'Production Design'),(8467,7414,5,'Editor'),(8467,2446,3,'Associate Producer'),(8467,7415,3,'Casting'),(8467,7395,2,'Director'),(8467,7395,4,'Writer'),(8467,7395,3,'Co-Producer'),(8467,7396,2,'Director'),(8467,7396,4,'Writer'),(8467,7407,3,'Co-Producer'),(8467,7408,3,'Producer'),(8467,7409,2,'First Assistant Director'),(8467,7413,1,'Director of Photography'),(8467,7416,7,'Art Direction'),(8467,7418,8,'Costume Design'),(8467,13030,9,'Special Effects Coordinator'),(8467,12772,9,'Stunt Coordinator'),(8467,12774,3,'Executive In Charge Of Production'),(8467,18786,8,'Makeup Artist'),(8467,18786,8,'Hairstylist'),(8467,23788,9,'Makeup Effects'),(8467,23906,7,'Set Decoration'),(8467,29206,3,'Location Manager'),(8467,45119,3,'Production Supervisor'),(8467,51702,3,'Producer'),(8467,51703,3,'Producer'),(8467,55162,4,'Writer'),(8467,55163,3,'Executive Producer'),(8467,55164,3,'Executive Producer'),(8467,55164,3,'Unit Production Manager'),(8467,55164,9,'Second Unit'),(8467,55165,6,'Original Music Composer'),(8467,57871,3,'Associate Producer'),(8467,58809,2,'Script Supervisor'),(8467,62580,6,'Dialogue Editor'),(8467,71236,3,'Production Supervisor'),(8467,71236,3,'Co-Producer'),(8467,577810,3,'Casting'),(8467,932118,7,'Production Design'),(8467,1181954,7,'Property Master'),(8467,1227952,3,'Casting Assistant'),(8467,1339819,7,'Location Scout'),(8467,1371064,6,'Foley'),(8467,1377126,6,'Boom Operator'),(8467,1392145,6,'Music Editor'),(8467,1401354,3,'Production Coordinator'),(8467,1402153,6,'Sound Editor'),(8467,1409283,9,'Unit Publicist'),(8467,1417994,11,'Gaffer'),(8467,1422982,6,'Supervising Sound Editor'),(8467,1428259,3,'Associate Producer'),(8467,1428834,5,'Color Timer'),(8467,1449943,6,'Sound Designer'),(8467,1540477,9,'Public Relations'),(8467,1545951,6,'Sound Mixer'),(8467,1546085,8,'Key Hair Stylist'),(8467,1552506,1,'First Assistant Camera'),(8467,1553022,3,'Production Accountant'),(8467,1556310,6,'Music Supervisor'),(8467,1560964,9,'Set Production Assistant'),(8467,1647465,9,'Production Controller'),(8467,1704252,9,'Transportation Captain'),(8467,1718548,6,'Sound Effects Editor'),(8467,1748848,8,'Set Dressing Artist'),(8467,1780227,9,'Transportation Coordinator'),(8467,1783005,9,'Stunts'),(8467,1797217,9,'Loader'),(8467,1853277,9,'Post Production Supervisor'),(8467,1853281,3,'Casting Assistant'),(8467,1853283,7,'Location Scout'),(8467,1853285,7,'Location Scout'),(8467,1893221,7,'Art Department Coordinator'),(8467,1893222,7,'Construction Coordinator'),(8467,1893223,7,'Construction Foreman'),(8467,1893224,7,'Painter'),(8467,1893225,1,'Key Grip'),(8467,1893226,1,'Grip'),(8467,1893227,9,'Carpenter'),(8467,1893229,9,'Craft Service'),(8467,1893230,9,'Driver'),(8467,1893233,9,'Security'),(8467,1893234,9,'Set Medic'),(8467,1893236,9,'Stand In'),(8467,1893237,11,'Best Boy Electric'),(8467,1893238,4,'Storyboard'),(8467,1893239,9,'Studio Teachers'),(639,8339,7,'Set Decoration'),(639,2874,3,'Casting'),(639,3026,2,'Director'),(639,3026,3,'Producer'),(639,3030,3,'Producer'),(639,3032,5,'Editor'),(639,3275,3,'Casting'),(639,3429,7,'Production Design'),(639,5174,1,'Director of Photography'),(639,9248,4,'Screenplay'),(639,9248,3,'Producer'),(639,9249,3,'Producer'),(639,9250,3,'Producer'),(639,9251,6,'Original Music Composer'),(639,9252,6,'Original Music Composer'),(639,9254,7,'Set Decoration'),(639,9255,8,'Costume Design'),(639,9256,3,'Unit Production Manager'),(9285,7068,5,'Editor'),(9285,7413,1,'Director of Photography'),(9285,7478,6,'Original Music Composer'),(9285,13585,3,'Casting'),(9285,8858,3,'Executive Producer'),(9285,9544,3,'Casting'),(9285,21420,7,'Production Design'),(9285,11372,5,'Editor'),(9285,54251,3,'Executive Producer'),(9285,57130,2,'Director'),(9285,57130,4,'Screenplay'),(9285,57132,3,'Producer'),(9285,57601,3,'Producer'),(9285,57538,4,'Screenplay'),(9285,65736,7,'Set Decoration'),(9285,932187,7,'Art Direction'),(9285,1094287,8,'Costume Design'),(9285,1265391,2,'Script Supervisor'),(9285,1416056,8,'Hairstylist'),(9285,1457407,8,'Makeup Department Head'),(1417,223,9,'Thanks'),(1417,3629,3,'Casting'),(1417,3113,1,'Director of Photography'),(1417,11218,3,'Producer'),(1417,12561,9,'Post Production Supervisor'),(1417,13230,3,'Producer'),(1417,16986,8,'Costume Design'),(1417,10828,2,'Director'),(1417,10828,4,'Screenplay'),(1417,10828,3,'Producer'),(1417,16984,5,'Editor'),(1417,16985,7,'Production Design'),(1417,16987,8,'Costume Design'),(1417,16989,9,'Special Effects Coordinator'),(1417,16990,9,'Special Effects'),(1417,16991,9,'Special Effects'),(1417,16992,6,'Sound Designer'),(1417,16993,6,'Foley'),(1417,16994,6,'Sound Effects Editor'),(1417,16995,7,'Set Designer'),(1417,16996,4,'Storyboard'),(1417,16997,9,'Property Master'),(1417,16998,9,'Property Master'),(1417,16999,3,'Producer'),(1417,17000,3,'Executive Producer'),(1417,17001,3,'Producer'),(1417,17002,3,'Line Producer'),(1417,17003,3,'Executive Producer'),(1417,17004,6,'Original Music Composer'),(1417,104044,10,'Visual Effects Supervisor'),(1417,140564,9,'Thanks'),(1417,588183,9,'Production Office Assistant'),(1417,1011666,3,'Casting'),(1417,1073780,3,'Associate Producer'),(1417,1173687,9,'Stunt Coordinator'),(1417,1314117,8,'Makeup Artist'),(1417,1314124,8,'Hairstylist'),(1417,1365522,6,'Scoring Mixer'),(1417,1409848,1,'Still Photographer'),(1417,1409857,2,'Script Supervisor'),(1417,1423063,5,'Assistant Editor'),(1417,1448601,10,'Animation'),(1417,1539079,3,'Publicist'),(1417,1707025,9,'Special Effects'),(9594,1762,1,'Director of Photography'),(9594,12988,3,'Producer'),(9594,16590,4,'Screenplay'),(9594,16590,2,'Director'),(9594,15111,4,'Screenplay'),(9594,15111,3,'Producer'),(9594,21478,3,'Producer'),(9594,53008,5,'Editor'),(9594,56032,3,'Executive Producer'),(9594,58124,6,'Original Music Composer'),(9594,1785844,9,'Stunts'),(9594,1785844,9,'Martial Arts Choreographer'),(4638,467,3,'Executive Producer'),(4638,2236,3,'Producer'),(4638,2238,3,'Producer'),(4638,6489,6,'Original Music Composer'),(4638,11090,2,'Director'),(4638,11090,4,'Screenplay'),(4638,11108,4,'Screenplay'),(4638,11112,3,'Producer'),(4638,11114,5,'Editor'),(4638,16363,3,'Casting'),(4638,17802,3,'Line Producer'),(4638,39200,7,'Production Design'),(4638,39201,7,'Art Direction'),(4638,39202,7,'Set Decoration'),(4638,39203,8,'Costume Design'),(4638,63316,3,'Associate Producer'),(4638,72853,1,'Director of Photography'),(4638,142097,3,'Production Accountant'),(4638,223244,9,'Post Production Supervisor'),(4638,1019426,3,'Casting'),(4638,1211152,3,'Production Manager'),(4638,1319626,3,'Unit Production Manager'),(4638,1411061,9,'Stunts'),(4638,1533537,6,'Music Editor'),(4638,1564277,3,'Executive In Charge Of Production'),(5038,403,1,'Director of Photography'),(5038,1243,2,'Director'),(5038,1243,4,'Screenplay'),(5038,1252,5,'Editor'),(5038,1265,3,'Producer'),(5038,1268,3,'Producer'),(5038,6988,3,'Producer'),(5038,15607,3,'Executive Producer'),(9800,117,6,'Original Music Composer'),(9800,557,8,'Costume Design'),(9800,1530,3,'Casting'),(9800,16294,2,'Director'),(9800,16294,3,'Producer'),(9800,16296,3,'Executive Producer'),(9800,16296,2,'Assistant Director'),(9800,16297,3,'Producer'),(9800,16298,3,'Executive Producer'),(9800,16298,3,'Unit Production Manager'),(9800,16300,1,'Director of Photography'),(9800,4869,5,'Editor'),(9800,20585,7,'Set Decoration'),(9800,9178,3,'Associate Producer'),(9800,9178,7,'Production Design'),(9800,12257,7,'Art Direction'),(9800,27098,3,'Executive Producer'),(9800,32490,8,'Hair Designer'),(9800,35490,3,'Casting Associate'),(9800,59330,4,'Author'),(9800,91128,8,'Costume Design'),(9800,91160,2,'Script Supervisor'),(9800,1031697,5,'Editorial Services'),(9800,1328380,8,'Costume Supervisor'),(9800,1378068,8,'Makeup Designer'),(9800,1378368,9,'Title Graphics'),(9800,1399143,1,'Steadicam Operator'),(9800,1407711,11,'Electrician'),(9800,1411075,8,'Wigmaker'),(9800,1414488,8,'Hairstylist'),(9800,1438559,8,'Makeup Artist'),(9800,1458535,3,'Unit Production Manager'),(9800,1534951,8,'Costume Supervisor'),(9800,1547379,6,'Music Editor'),(9800,1549583,8,'Assistant Costume Designer'),(9800,1550194,11,'Rigging Gaffer'),(1090,3769,3,'Executive Producer'),(1090,5430,6,'Original Music Composer'),(1090,6046,3,'Producer'),(1090,6052,3,'Casting'),(1090,6055,7,'Set Decoration'),(1090,8681,8,'Costume Design'),(1090,9937,3,'Executive Producer'),(1090,10613,5,'Editor'),(1090,14757,3,'Casting'),(1090,15361,4,'Screenplay'),(1090,15361,2,'Director'),(1090,15362,4,'Novel'),(1090,15363,4,'Screenplay'),(1090,15364,3,'Producer'),(1090,15365,3,'Producer'),(1090,15366,3,'Producer'),(1090,15367,1,'Director of Photography'),(1090,10819,7,'Production Design'),(1090,15368,7,'Art Direction'),(1090,10820,7,'Art Direction'),(1090,1314465,8,'Makeup Department Head'),(1090,1322014,8,'Costume Supervisor'),(9689,1243,2,'Director'),(9689,1243,4,'Author'),(9689,1243,4,'Screenplay'),(9689,1252,5,'Editor'),(9689,1265,3,'Producer'),(9689,15367,1,'Director of Photography'),(9689,23966,7,'Production Design'),(9781,898,5,'Editor'),(9781,26714,1,'Director of Photography'),(9781,28156,6,'Original Music Composer'),(9781,50583,2,'Director'),(9781,56577,4,'Writer'),(9781,57756,3,'Producer'),(9781,73771,3,'Producer'),(9781,73772,3,'Producer'),(9781,69928,5,'Editor'),(8009,912,4,'Screenplay'),(8009,5060,7,'Set Decoration'),(8009,6875,5,'Editor'),(8009,11386,8,'Costume Design'),(8009,7714,6,'Original Music Composer'),(8009,7732,7,'Production Design'),(8009,8306,1,'Camera Operator'),(8009,9585,3,'Casting'),(8009,12651,7,'Art Direction'),(8009,21558,3,'Casting'),(8009,28902,4,'Screenplay'),(8009,29867,7,'Art Direction'),(8009,40052,1,'Director of Photography'),(8009,52968,2,'Director'),(8009,53866,3,'Producer'),(8009,53867,3,'Producer'),(8009,201054,4,'Screenplay'),(8009,1451437,1,'Steadicam Operator'),(8009,1452749,1,'Camera Operator'),(8009,1564339,6,'Music Supervisor'),(8009,1640410,2,'Script Supervisor'),(8009,1640411,1,'Helicopter Camera'),(3877,39,3,'Producer'),(3877,495,3,'Casting'),(3877,136,3,'Producer'),(3877,460,1,'Director of Photography'),(3877,1011,2,'Director'),(3877,1030,5,'Editor'),(3877,5362,3,'Casting'),(3877,5363,3,'Casting'),(3877,9772,5,'Editor'),(3877,23415,8,'Costume Design'),(3877,29788,7,'Production Design'),(3877,32201,7,'Set Decoration'),(3877,32717,6,'Original Music Composer'),(3877,34050,4,'Screenplay'),(3877,34050,3,'Executive Producer'),(3877,34882,3,'Executive Producer'),(3877,34883,3,'Executive Producer'),(3877,34884,3,'Producer'),(3877,34885,3,'Executive Producer'),(3877,34887,7,'Art Direction'),(3877,113194,9,'Stunts'),(3877,142165,6,'Music Editor'),(3877,232158,6,'Music Supervisor'),(3877,548437,5,'Dialogue Editor'),(3877,1212071,3,'Casting Associate'),(3877,1320977,8,'Assistant Costume Designer'),(3877,1328138,8,'Makeup Department Head'),(3877,1341848,8,'Hairstylist'),(3877,1342656,5,'Dialogue Editor'),(3877,1342658,5,'Dialogue Editor'),(3877,1384361,8,'Makeup Artist'),(3877,1391801,7,'Assistant Art Director'),(3877,1401605,8,'Hairstylist'),(3877,1410327,8,'Key Hair Stylist'),(3877,1441320,9,'Special Effects Coordinator'),(3877,1441372,2,'Script Supervisor'),(3877,1551929,8,'Costume Supervisor'),(8854,1099,5,'Editor'),(8854,7413,1,'Director of Photography'),(8854,12051,7,'Production Design'),(8854,13301,3,'Producer'),(8854,20744,6,'Original Music Composer'),(8854,33257,8,'Costume Design'),(8854,54160,7,'Art Direction'),(8854,19142,2,'Director'),(8854,19142,4,'Writer'),(8854,1308254,7,'Set Decoration'),(8265,4403,6,'Original Music Composer'),(8265,5431,1,'Director of Photography'),(8265,10052,6,'Sound Engineer'),(8265,23397,5,'Editor'),(8265,20718,3,'Producer'),(8265,24887,4,'Screenplay'),(8265,24889,4,'Screenplay'),(8265,28690,3,'Casting'),(8265,37627,4,'Screenplay'),(8265,37627,2,'Director'),(8265,54171,3,'Producer'),(8265,54172,3,'Executive Producer'),(8265,54173,3,'Producer'),(8265,54175,8,'Costume Design'),(8265,54176,2,'Director'),(8265,54177,6,'Sound Engineer'),(8265,54178,6,'Sound Engineer'),(8265,54179,6,'Sound Engineer'),(8265,54180,9,'Script'),(8265,54181,3,'Production Manager'),(8265,74051,7,'Production Design'),(2110,59,4,'Screenplay'),(2110,59,3,'Producer'),(2110,996,6,'Original Music Composer'),(2110,1966,7,'Set Designer'),(2110,20296,5,'Editor'),(2110,21647,2,'Director'),(2110,21648,6,'Original Music Composer'),(2110,21650,3,'Casting'),(2110,21652,7,'Set Designer'),(2110,21653,8,'Costume Design'),(2110,21273,1,'Director of Photography'),(9035,15218,2,'Director'),(9035,15218,4,'Writer'),(9035,15219,3,'Executive Producer'),(9035,15220,3,'Producer'),(9035,15221,6,'Music'),(9035,16854,3,'Producer'),(9035,25138,3,'Executive Producer'),(9035,20568,5,'Editor'),(9035,1095081,3,'Executive Producer'),(9035,1447557,9,'Compositors'),(90,770,3,'Producer'),(90,794,7,'Production Design'),(90,769,2,'Director'),(90,771,3,'Producer'),(90,772,4,'Screenplay'),(90,772,4,'Author'),(90,774,4,'Screenplay'),(90,774,4,'Author'),(90,792,1,'Director of Photography'),(90,799,6,'Original Music Composer'),(90,800,5,'Editor'),(90,909,5,'Editor'),(90,6347,3,'Casting'),(90,16570,3,'Casting'),(90,1242978,3,'Executive Producer'),(90,1338357,2,'Script Supervisor'),(90,1635363,3,'Associate Producer'),(771,491,6,'Original Music Composer'),(771,1215,5,'Editor'),(771,2874,3,'Casting'),(771,3193,6,'Sound Designer'),(771,3275,3,'Casting'),(771,6480,7,'Set Decoration'),(771,10965,2,'Director'),(771,11222,2,'First Assistant Director'),(771,11505,4,'Screenplay'),(771,11505,3,'Producer'),(771,11506,1,'Director of Photography'),(771,11507,7,'Production Design'),(771,11508,7,'Art Direction'),(771,11509,8,'Costume Design'),(771,13166,6,'Sound Editor'),(771,16618,9,'Stunt Coordinator'),(771,21103,6,'Sound Editor'),(771,33625,7,'Set Decoration'),(771,66142,6,'Music Editor'),(771,74803,1,'Still Photographer'),(771,74806,8,'Costume Supervisor'),(771,91368,7,'Set Designer'),(771,86595,8,'Key Hair Stylist'),(771,548438,6,'Sound Editor'),(771,1218791,1,'Camera Operator'),(771,1352969,6,'Supervising Sound Editor'),(771,1407893,9,'Special Effects Coordinator'),(771,1412990,1,'Camera Operator'),(771,1416072,2,'Script Supervisor'),(771,1417972,6,'Supervising Sound Editor'),(771,1511086,6,'Sound Editor'),(771,1532706,8,'Seamstress'),(771,1534507,7,'Construction Coordinator'),(771,1534833,6,'Supervising ADR Editor'),(771,1536361,6,'Sound Editor'),(771,1690421,6,'ADR Editor'),(771,1800143,7,'Set Designer'),(771,1863633,8,'Key Makeup Artist'),(771,1863634,7,'Property Master'),(771,1863636,7,'Construction Foreman'),(771,1863637,7,'Construction Foreman'),(771,1863638,7,'Construction Foreman'),(771,1863644,11,'Chief Lighting Technician'),(771,1863652,3,'Production Coordinator'),(9576,1051,8,'Costume Design'),(9576,1263,3,'Casting'),(9576,2158,4,'Screenplay'),(9576,2226,2,'Director'),(9576,2226,3,'Producer'),(9576,2241,5,'Editor'),(9576,2211,3,'Unit Production Manager'),(9576,4150,8,'Costume Supervisor'),(9576,4184,3,'Producer'),(9576,8246,4,'Screenplay'),(9576,5163,2,'Assistant Director'),(9576,16331,1,'Director of Photography'),(9576,7531,2,'Assistant Director'),(9576,10640,5,'Editor'),(9576,16466,7,'Production Design'),(9576,17766,5,'Assistant Editor'),(9576,18267,4,'Screenplay'),(9576,10771,6,'Original Music Composer'),(9576,19333,3,'Producer'),(9576,81538,9,'Title Graphics'),(9576,58251,4,'Screenplay'),(9576,58093,4,'Screenplay'),(9576,58208,5,'Assistant Editor'),(9576,66876,3,'Executive Producer'),(9576,1043374,6,'Music'),(9576,1113357,3,'Casting'),(9576,1244595,4,'Screenplay'),(9576,1508091,7,'Set Decoration'),(9576,1508092,2,'Script Supervisor'),(9576,1546907,9,'Driver'),(9576,1560854,6,'Music Editor'),(9576,1562602,9,'Property Master'),(9576,1629423,9,'Sound Recordist'),(744,770,3,'Producer'),(744,541,5,'Editor'),(744,771,3,'Producer'),(744,799,6,'Original Music Composer'),(744,893,2,'Director'),(744,904,1,'Director of Photography'),(744,909,5,'Editor'),(744,5132,6,'Music Editor'),(744,6347,3,'Casting'),(744,11080,4,'Screenplay'),(744,11081,4,'Screenplay'),(744,11082,4,'Original Story'),(744,8866,7,'Production Design'),(744,11083,7,'Set Decoration'),(744,14771,9,'Stunt Coordinator'),(744,59710,8,'Costume Supervisor'),(744,70949,1,'Camera Operator'),(744,1206905,8,'Costume Supervisor'),(744,1342644,2,'Script Supervisor'),(744,1368867,9,'Special Effects Coordinator'),(744,1378161,7,'Set Designer'),(744,1378162,7,'Construction Coordinator'),(744,1378163,7,'Standby Painter'),(744,1378164,7,'Leadman'),(744,1378165,9,'Property Master'),(744,1378166,6,'Supervising Sound Editor'),(744,1378167,6,'Foley'),(744,1378168,6,'Supervising Sound Editor'),(744,1378169,6,'Sound Re-Recording Mixer'),(744,1378170,6,'Sound Re-Recording Mixer'),(744,1378171,6,'Sound Re-Recording Mixer'),(744,1378172,6,'Foley'),(744,1378173,1,'Still Photographer'),(744,1378174,1,'Steadicam Operator'),(744,1378175,5,'Color Timer'),(744,1463182,10,'VFX Artist'),(744,1463185,9,'Compositors'),(744,1463188,10,'VFX Artist'),(146,1351,3,'Producer'),(146,1360,6,'Original Music Composer'),(146,1614,2,'Director'),(146,1614,3,'Producer'),(146,1617,4,'Screenplay'),(146,1615,4,'Author'),(146,28642,4,'Screenplay'),(146,1618,4,'Screenplay'),(146,1633,1,'Director of Photography'),(146,1635,5,'Editor'),(146,1636,7,'Production Design'),(146,1638,6,'Supervising Sound Editor'),(146,65357,3,'Producer'),(14,153,6,'Original Music Composer'),(14,39,2,'Director'),(14,2152,4,'Author'),(14,2152,4,'Screenplay'),(14,2152,3,'Co-Producer'),(14,8215,3,'Producer'),(14,8216,3,'Producer'),(14,8217,1,'Director of Photography'),(14,7414,5,'Editor'),(14,8219,5,'Editor'),(14,495,3,'Casting'),(14,8220,7,'Production Design'),(14,8221,7,'Art Direction'),(14,8222,8,'Costume Design'),(14,494,3,'Casting'),(14,2227,9,'Thanks'),(14,3193,6,'Supervising Sound Editor'),(14,6048,5,'Dialogue Editor'),(14,7538,6,'Music Editor'),(14,8532,9,'Post Production Supervisor'),(14,15331,6,'Sound Effects Editor'),(14,16498,9,'Special Effects Coordinator'),(14,19309,7,'Set Decoration'),(14,35760,7,'Assistant Art Director'),(14,37925,9,'Second Unit Cinematographer'),(14,47098,9,'Thanks'),(14,51689,3,'Co-Producer'),(14,55985,5,'First Assistant Editor'),(14,73667,9,'Second Unit Cinematographer'),(14,74323,8,'Makeup Artist'),(14,74536,3,'Production Coordinator'),(14,75797,6,'ADR Supervisor'),(14,82169,1,'Camera Operator'),(14,83066,8,'Key Hair Stylist'),(14,91173,3,'Researcher'),(14,108146,1,'First Assistant Camera'),(14,120695,6,'Music Supervisor'),(14,129193,9,'Choreographer'),(14,237920,9,'Utility Stunts'),(14,484529,9,'Set Production Assistant'),(14,548439,6,'Foley'),(14,548445,6,'Foley'),(14,548446,6,'Foley'),(14,589974,1,'Still Photographer'),(14,950773,6,'ADR & Dubbing'),(14,993536,5,'First Assistant Editor'),(14,1002623,2,'Assistant Director'),(14,1096860,7,'Standby Painter'),(14,1121874,3,'Unit Production Manager'),(14,1181576,11,'Electrician'),(14,1203910,8,'Assistant Costume Designer'),(14,1319166,8,'Makeup Artist'),(14,1334485,6,'Sound Effects Editor'),(14,1339462,9,'Driver'),(14,1341865,2,'Script Supervisor'),(14,1342654,6,'Boom Operator'),(14,1345595,6,'Sound Re-Recording Mixer'),(14,1378222,7,'Construction Coordinator'),(14,1387259,8,'Set Costumer'),(14,1391571,6,'Sound Re-Recording Mixer'),(14,1392895,7,'Set Designer'),(14,1398176,8,'Set Costumer'),(14,1399063,10,'Visual Effects Supervisor'),(14,1401117,9,'Unit Publicist'),(14,1404846,10,'Visual Effects Producer'),(14,1408285,11,'Rigging Gaffer'),(14,1412702,6,'First Assistant Sound Editor'),(14,1413100,10,'Visual Effects Producer'),(14,1413169,6,'Scoring Mixer'),(14,1417399,8,'Key Hair Stylist'),(14,1421255,9,'Transportation Coordinator'),(14,1444908,8,'Hairstylist'),(14,1445885,10,'Visual Effects Supervisor'),(14,1454536,5,'Dialogue Editor'),(14,1455294,8,'Costume Supervisor'),(14,1457833,2,'Script Supervisor'),(14,1478848,7,'Art Department Coordinator'),(14,1530090,2,'Assistant Director'),(14,1534970,7,'Painter'),(14,1549209,6,'Orchestrator'),(14,1550617,11,'Rigging Grip'),(14,1550618,1,'Camera Operator'),(14,1550619,6,'Music Editor'),(14,1551222,6,'Production Sound Mixer'),(14,1552012,7,'Property Master'),(14,1552188,5,'Color Timer'),(14,1557497,10,'3D Artist'),(14,1558210,9,'Production Controller'),(14,1568649,1,'Additional Camera'),(14,1569847,10,'Visual Effects Coordinator'),(14,1579408,8,'Set Dressing Artist'),(14,1585014,10,'24 Frame Playback'),(14,1585196,9,'Visual Effects Editor'),(14,1586927,9,'Post Production Assistant'),(14,1586941,3,'Production Accountant'),(14,1595472,9,'Projection'),(14,1614896,9,'Stunt Coordinator'),(14,1632585,4,'Storyboard'),(14,1651183,7,'Greensman'),(14,1753763,1,'Key Grip'),(14,1753765,9,'Craft Service'),(14,1753766,9,'Loader'),(14,1753767,9,'Propmaker'),(14,1753769,9,'Stand In'),(14,1753770,9,'Transportation Captain'),(14,1753774,5,'Editorial Production Assistant'),(14,1753775,3,'Location Manager'),(14,1753782,10,'Digital Compositors'),(14,1753783,9,'Studio Teachers'),(9493,3535,6,'Original Music Composer'),(9493,7068,5,'Editor'),(9493,7185,3,'Casting'),(9493,9967,7,'Production Design'),(9493,8847,5,'Editor'),(9493,8858,3,'Producer'),(9493,8858,2,'Director'),(9493,8860,3,'Executive Producer'),(9493,9255,8,'Costume Design'),(9493,14712,6,'Original Music Composer'),(9493,13586,7,'Art Direction'),(9493,10765,1,'Director of Photography'),(9493,14710,4,'Screenplay'),(9493,14711,4,'Screenplay'),(9493,21075,4,'Screenplay'),(9493,57341,4,'Screenplay'),(9493,57601,3,'Executive Producer'),(9493,1586087,7,'Set Decoration'),(873,488,2,'Director'),(873,488,3,'Producer'),(873,489,3,'Producer'),(873,493,5,'Editor'),(873,602,7,'Set Decoration'),(873,664,3,'Producer'),(873,736,4,'Screenplay'),(873,3804,3,'Executive Producer'),(873,3805,3,'Executive Producer'),(873,5133,7,'Art Direction'),(873,13304,7,'Production Design'),(873,8428,8,'Costume Design'),(873,9965,1,'Director of Photography'),(873,13300,4,'Novel'),(873,13301,3,'Producer'),(873,13301,6,'Original Music Composer'),(873,13302,3,'Producer'),(873,13306,8,'Makeup Artist'),(1165,473,9,'Thanks'),(1165,3656,1,'Director of Photography'),(1165,2949,6,'Original Music Composer'),(1165,2997,3,'Executive Producer'),(1165,3224,2,'Director'),(1165,6373,3,'Executive Producer'),(1165,15726,3,'Producer'),(1165,15727,3,'Producer'),(1165,15728,3,'Producer'),(1165,15729,3,'Executive Producer'),(1165,15730,4,'Author'),(1165,15731,5,'Editor'),(1165,15732,7,'Production Design'),(1165,15733,7,'Set Decoration'),(1165,15734,8,'Costume Design'),(1165,16733,7,'Supervising Art Director'),(1165,19993,3,'Casting'),(1165,23981,7,'Art Direction'),(1165,30364,9,'Thanks'),(1165,44645,6,'ADR & Dubbing'),(1165,75083,8,'Makeup Designer'),(1165,75086,9,'Post Production Supervisor'),(1165,1190164,3,'Casting Associate'),(1165,1338287,6,'Music Editor'),(1165,1363081,2,'Assistant Director'),(1165,1376800,7,'Art Direction'),(1165,1406986,2,'Script Supervisor'),(1165,1407219,1,'Camera Operator'),(1165,1409308,3,'Unit Manager'),(1165,1411073,8,'Wigmaker'),(1165,1413035,1,'Steadicam Operator'),(1165,1416001,9,'Dialect Coach'),(1165,1416481,5,'Digital Intermediate'),(1165,1512784,9,'Stunts'),(1165,1525893,8,'Hairstylist'),(1165,1544363,5,'First Assistant Editor'),(1165,1602319,3,'Casting'),(1165,1646822,3,'Production Coordinator'),(4011,510,2,'Director'),(4011,531,6,'Original Music Composer'),(4011,671,6,'Supervising Sound Editor'),(4011,913,4,'Screenplay'),(4011,2874,3,'Casting'),(4011,3275,3,'Casting'),(4011,5133,7,'Production Design'),(4011,6900,5,'Editor'),(4011,7146,7,'Art Direction'),(4011,8428,8,'Costume Design'),(4011,12843,3,'Producer'),(4011,29529,3,'Producer'),(4011,29529,4,'Story'),(4011,34534,4,'Screenplay'),(4011,34534,4,'Story'),(4011,35139,3,'Producer'),(4011,11371,1,'Director of Photography'),(4011,35140,7,'Set Decoration'),(4011,406204,8,'Makeup Artist'),(4011,928942,6,'Sound Re-Recording Mixer'),(4011,1269306,6,'Sound Editor'),(4011,1341781,6,'Sound Re-Recording Mixer'),(4011,1378171,6,'Sound Re-Recording Mixer'),(4011,1398856,1,'Still Photographer'),(4011,1417338,6,'Boom Operator'),(4011,1423863,6,'Sound Editor'),(4011,1550073,6,'Sound Editor'),(4011,1551213,6,'Production Sound Mixer'),(4011,1560855,2,'Script Supervisor'),(4011,1560856,9,'Stunt Coordinator'),(9587,153,6,'Original Music Composer'),(9587,557,8,'Costume Design'),(9587,1899,3,'Producer'),(9587,3904,6,'Sound Designer'),(9587,6119,3,'Casting'),(9587,7538,6,'Music Editor'),(9587,8680,7,'Set Decoration'),(9587,18885,7,'Art Direction'),(9587,19852,4,'Screenplay'),(9587,19852,3,'Co-Producer'),(9587,20292,7,'Production Design'),(9587,21026,6,'Production Sound Mixer'),(9587,52055,1,'Director of Photography'),(9587,58094,2,'Director'),(9587,58095,4,'Novel'),(9587,58096,5,'Editor'),(9587,75301,6,'Sound Re-Recording Mixer'),(9587,75437,6,'Sound Re-Recording Mixer'),(9587,961106,3,'Casting'),(9587,1241382,3,'Associate Producer'),(9587,1241382,3,'Unit Production Manager'),(9587,1271920,9,'Special Effects'),(9587,1384398,2,'Script Supervisor'),(9587,1391802,5,'First Assistant Editor'),(9587,1394973,1,'Still Photographer'),(9587,1511434,1,'Camera Operator'),(9587,1558202,6,'Sound Re-Recording Mixer'),(9587,1558207,6,'Sound Effects Editor'),(9587,1564732,6,'Boom Operator'),(9587,1564733,5,'Dialogue Editor'),(9587,1564734,5,'Dialogue Editor'),(9587,1564735,5,'First Assistant Editor'),(586,495,3,'Casting'),(586,149,1,'Director of Photography'),(586,380,3,'Producer'),(586,548,7,'Production Design'),(586,1255,4,'Screenplay'),(586,1484,3,'Casting'),(586,3305,3,'Producer'),(586,8246,2,'Director'),(586,8246,3,'Producer'),(586,5166,5,'Editor'),(586,6192,8,'Costume Design'),(586,8247,4,'Author'),(586,8251,4,'Screenplay'),(586,8271,6,'Original Music Composer'),(586,8273,7,'Art Direction'),(586,8274,7,'Set Decoration'),(586,8276,6,'Supervising Sound Editor'),(586,14526,8,'Makeup Artist'),(586,16551,8,'Hairstylist'),(586,18123,8,'Assistant Costume Designer'),(586,18125,8,'Assistant Costume Designer'),(586,18133,8,'Assistant Costume Designer'),(586,1358074,8,'Key Hair Stylist'),(586,1371069,2,'Script Supervisor'),(586,1428908,8,'Hairstylist'),(586,1444909,8,'Hairstylist'),(586,1531504,6,'Music Editor'),(586,1536092,8,'Makeup Artist'),(586,1550227,7,'Art Department Coordinator'),(9276,2294,2,'Director'),(9276,2294,3,'Producer'),(9276,2294,5,'Editor'),(9276,2294,6,'Sound Re-Recording Mixer'),(9276,2294,1,'Camera Operator'),(9276,1305,6,'Music Editor'),(9276,1307,3,'Executive Producer'),(9276,59839,3,'Executive Producer'),(9276,5911,3,'Producer'),(9276,5914,3,'Casting'),(9276,7229,6,'Original Music Composer'),(9276,5338,6,'Sound Effects Editor'),(9276,7537,6,'Sound Designer'),(9276,7764,6,'Sound Effects Editor'),(9276,8160,6,'Foley'),(9276,8163,6,'Foley'),(9276,9545,3,'Casting'),(9276,15893,6,'Sound Effects Editor'),(9276,17598,1,'Director of Photography'),(9276,20489,9,'Property Master'),(9276,26458,4,'Screenplay'),(9276,113140,9,'Digital Effects Supervisor'),(9276,57111,3,'Line Producer'),(9276,57112,3,'Producer'),(9276,59475,7,'Assistant Art Director'),(9276,63292,7,'Set Decoration'),(9276,65710,8,'Costume Design'),(9276,144146,8,'Makeup Artist'),(9276,146352,9,'Stunt Coordinator'),(9276,404895,6,'Supervising Sound Editor'),(9276,1015060,9,'Makeup Effects'),(9276,1095093,8,'Hairstylist'),(9276,1124107,7,'Production Design'),(9276,1224272,9,'Special Effects Coordinator'),(9276,1327030,6,'Sound Re-Recording Mixer'),(9276,1334793,9,'Makeup Effects'),(9276,1340326,10,'Visual Effects Supervisor'),(9276,1378828,6,'Sound Re-Recording Mixer'),(9276,1389624,6,'Music Editor'),(9276,1397854,8,'Set Costumer'),(9276,1399117,6,'Sound Effects Editor'),(9276,1400813,5,'Dialogue Editor'),(9276,1400814,6,'Dolby Consultant'),(9276,1401151,1,'Still Photographer'),(9276,1408326,9,'Visual Effects Editor'),(9276,1410107,1,'Steadicam Operator'),(9276,1413172,6,'ADR & Dubbing'),(9276,1420166,9,'Transportation Coordinator'),(9276,1431999,8,'Wigmaker'),(9276,1438379,7,'Art Direction'),(9276,1438380,8,'Hairstylist'),(9276,1438381,8,'Hairstylist'),(9276,1438386,8,'Makeup Artist'),(9276,1438389,7,'Art Department Coordinator'),(9276,1438395,7,'Construction Coordinator'),(9276,1438396,9,'Scenic Artist'),(9276,1438397,9,'Scenic Artist'),(9276,1438398,6,'ADR & Dubbing'),(9276,1438399,5,'Dialogue Editor'),(9276,1438414,9,'Digital Effects Supervisor'),(9276,1438428,11,'Gaffer'),(9276,1438429,8,'Costume Supervisor'),(9276,1438430,2,'Script Supervisor'),(9276,1438432,9,'Unit Publicist'),(2142,117,6,'Original Music Composer'),(2142,366,2,'Director'),(2142,366,4,'Writer'),(2142,409,3,'Producer'),(2142,999,3,'Casting'),(2142,1307,3,'Executive Producer'),(2142,59839,3,'Executive Producer'),(2142,4869,5,'Editor'),(2142,5505,3,'Producer'),(2142,6389,1,'Director of Photography'),(2142,13228,7,'Production Design'),(2142,16486,3,'Associate Producer'),(2142,17873,7,'Set Decoration'),(2142,20826,8,'Costume Design'),(2142,21968,3,'Producer'),(2142,21971,7,'Art Direction'),(2142,38082,3,'Co-Producer'),(2142,158155,9,'Stunts'),(2142,1189247,3,'Associate Producer'),(2142,1538631,3,'Associate Producer'),(947,244,5,'Assistant Editor'),(947,255,6,'Sound Editor'),(947,2704,6,'Original Music Composer'),(947,6584,7,'Assistant Art Director'),(947,6346,5,'Editor'),(947,6594,3,'Producer'),(947,6608,9,'Special Effects'),(947,6793,7,'Art Direction'),(947,10014,8,'Makeup Artist'),(947,10079,1,'Director of Photography'),(947,10340,3,'Casting'),(947,10408,3,'Location Manager'),(947,12238,2,'Director'),(947,12510,7,'Art Direction'),(947,13267,4,'Screenplay'),(947,13317,4,'Screenplay'),(947,13321,7,'Production Design'),(947,14004,5,'Editorial Services'),(947,14006,7,'Set Decoration'),(947,14007,8,'Costume Design'),(947,14009,9,'Property Master'),(947,14367,4,'Author'),(947,14368,3,'Producer'),(947,13494,9,'Special Effects'),(947,20135,3,'Production Manager'),(947,34227,6,'Music'),(947,36118,2,'Assistant Director'),(947,47846,1,'Camera Operator'),(947,1124455,6,'Orchestrator'),(947,1326089,2,'Script Supervisor'),(947,1331435,8,'Costume Design'),(947,1377118,7,'Assistant Art Director'),(947,1377119,7,'Assistant Art Director'),(947,1377120,7,'Assistant Art Director'),(947,1377121,9,'Sound Recordist'),(947,1389152,9,'Stunts'),(947,1560753,2,'Assistant Director'),(947,1576031,6,'Orchestrator'),(947,1582201,8,'Hairstylist'),(947,1583351,3,'Unit Production Manager'),(947,1602840,3,'Production Manager'),(947,1607520,11,'Gaffer'),(947,1607521,7,'Construction Coordinator'),(947,1646271,5,'Color Timer'),(947,1650687,2,'Script Supervisor'),(6961,16854,3,'Producer'),(6961,51600,2,'Director'),(6961,53014,3,'Producer'),(6961,53015,3,'Producer'),(6961,53016,3,'Producer'),(6961,53017,6,'Original Music Composer'),(6961,53018,5,'Editor'),(6961,53019,7,'Production Design'),(6961,53020,7,'Set Decoration'),(6961,53021,8,'Costume Design'),(6961,56718,4,'Writer'),(6961,217371,6,'Music'),(2493,8383,7,'Set Decoration'),(2493,348,4,'Screenplay'),(2493,348,4,'Novel'),(2493,391,7,'Production Design'),(2493,2874,3,'Casting'),(2493,3026,2,'Director'),(2493,3026,3,'Producer'),(2493,3030,3,'Producer'),(2493,3032,5,'Editor'),(2493,3275,3,'Casting'),(2493,7783,1,'Director of Photography'),(2493,8271,6,'Original Music Composer'),(2493,8646,7,'Supervising Art Director'),(2493,14007,8,'Costume Design'),(2493,49909,7,'Art Direction'),(2493,170497,3,'Executive Producer'),(2493,1410199,2,'Script Supervisor'),(2493,1576017,6,'Sound Mixer'),(1562,2070,5,'Editor'),(1562,960,6,'Music'),(1562,2635,3,'Casting'),(1562,2034,3,'Executive Producer'),(1562,2035,3,'Producer'),(1562,2036,3,'Executive Producer'),(1562,2071,7,'Production Design'),(1562,40810,6,'Sound Designer'),(1562,40810,6,'Supervising Sound Editor'),(1562,40812,6,'Music Editor'),(1562,40814,5,'Dialogue Editor'),(1562,17600,3,'Producer'),(1562,17428,6,'Foley'),(1562,17597,4,'Screenplay'),(1562,17597,2,'Director'),(1562,17598,1,'Director of Photography'),(1562,17599,3,'Producer'),(1562,17603,4,'Screenplay'),(1562,17603,3,'Producer'),(1562,17608,4,'Screenplay'),(1562,17609,4,'Screenplay'),(1562,26193,7,'Art Direction'),(1562,26194,7,'Set Decoration'),(1562,61936,8,'Costume Design'),(1562,75087,3,'Location Manager'),(1562,117240,6,'Sound Re-Recording Mixer'),(1562,141358,9,'Stunt Coordinator'),(1562,1327443,7,'Art Direction'),(1562,1327448,8,'Costume Supervisor'),(1562,1335879,10,'Visual Effects Producer'),(1562,1337415,10,'Visual Effects Producer'),(1562,1337417,10,'Visual Effects Supervisor'),(1562,1338277,9,'Property Master'),(1562,1388897,1,'Camera Operator'),(1562,1388897,1,'Steadicam Operator'),(1562,1394001,7,'Assistant Art Director'),(1562,1394002,5,'Dialogue Editor'),(1562,1394003,6,'Sound Re-Recording Mixer'),(1562,1394004,6,'Sound Re-Recording Mixer'),(1562,1394008,10,'Visual Effects Producer'),(1562,1394009,10,'Visual Effects Supervisor'),(1562,1394010,10,'Visual Effects Supervisor'),(1562,1394011,10,'Visual Effects Producer'),(1562,1394013,10,'Visual Effects Producer'),(1562,1394014,10,'Visual Effects Supervisor'),(1562,1394015,9,'Visual Effects Editor'),(1562,1394018,10,'Visual Effects Producer'),(1562,1394021,10,'Visual Effects Producer'),(1562,1394023,9,'Visual Effects Editor'),(1562,1394026,9,'Visual Effects Editor'),(1562,1394027,9,'Visual Effects Editor'),(1562,1394029,10,'Visual Effects Supervisor'),(1562,1394033,10,'Visual Effects Supervisor'),(1562,1394036,10,'Visual Effects Producer'),(1562,1394040,1,'Still Photographer'),(1562,1394041,1,'Camera Operator'),(1562,1394043,11,'Gaffer'),(1562,1394050,9,'Dialect Coach'),(1562,1394052,3,'Location Manager'),(1562,1394056,2,'Script Supervisor'),(1562,1535968,7,'Assistant Art Director'),(9434,3036,4,'Screenplay'),(9434,3189,5,'Editor'),(9434,3226,4,'Screenplay'),(9434,3227,4,'Screenplay'),(9434,13622,1,'Director of Photography'),(9434,16158,3,'Producer'),(9434,58294,2,'Director'),(9434,58295,4,'Screenplay'),(9434,58295,4,'Story'),(9434,58296,6,'Original Music Composer'),(9100,931,3,'Producer'),(9100,5912,6,'Music'),(9100,11876,5,'Editor'),(9100,33651,1,'Director of Photography'),(9100,41549,4,'Screenplay'),(9100,41549,2,'Director'),(9100,56973,4,'Screenplay'),(116,1046,3,'Casting'),(116,1243,2,'Director'),(116,1243,4,'Author'),(116,1251,1,'Director of Photography'),(116,1251,1,'Camera Operator'),(116,1252,5,'Editor'),(116,1253,7,'Production Design'),(116,1265,3,'Producer'),(116,1266,3,'Producer'),(116,1268,3,'Producer'),(116,2073,3,'Casting'),(116,5334,8,'Hair Designer'),(116,6988,3,'Producer'),(116,6990,3,'Co-Producer'),(116,6993,3,'Co-Executive Producer'),(116,6994,3,'Co-Executive Producer'),(116,6996,3,'Casting'),(116,9161,8,'Makeup Artist'),(116,36696,7,'Set Decoration'),(116,16735,8,'Makeup Artist'),(116,22157,7,'Art Direction'),(116,53527,8,'Costume Design'),(116,92377,6,'Sound Re-Recording Mixer'),(116,79854,3,'Unit Production Manager'),(116,91138,5,'Assistant Editor'),(116,1031621,6,'Sound Effects Editor'),(116,1370841,9,'Property Master'),(116,1403519,6,'Foley'),(116,1407730,6,'Sound Editor'),(116,1415042,1,'Steadicam Operator'),(116,1429638,11,'Gaffer'),(116,1442305,7,'Art Direction'),(116,1467116,2,'Assistant Director'),(116,1531574,7,'Construction Coordinator'),(116,1531575,6,'Sound mixer'),(116,1531576,5,'Dialogue Editor'),(116,1531577,6,'Boom Operator'),(116,1551181,5,'First Assistant Editor'),(116,1673059,9,'Stand In'),(1245,970,3,'Casting'),(1245,3960,1,'Director of Photography'),(1245,4868,5,'Editor'),(1245,5060,7,'Set Decoration'),(1245,5333,8,'Makeup Department Head'),(1245,5342,3,'Producer'),(1245,8406,3,'Producer'),(1245,11381,3,'Production Supervisor'),(1245,54441,2,'Director'),(1245,17165,7,'Production Design'),(1245,17166,8,'Costume Design'),(1245,17599,2,'Assistant Director'),(1245,31293,5,'Dialogue Editor'),(1245,54443,4,'Screenplay'),(1245,54448,3,'Producer'),(1245,54449,6,'Original Music Composer'),(1245,83664,4,'Novel'),(1245,84892,6,'Music Director'),(1245,957967,2,'Assistant Director'),(1245,1043954,3,'Associate Producer'),(1245,1080783,3,'Executive Producer'),(1245,1325557,1,'Camera Operator'),(1245,1325557,10,'Visual Effects'),(1245,1336164,8,'Hair Department Head'),(1245,1394104,2,'Script Supervisor'),(1245,1401599,3,'Location Manager'),(1245,1402238,9,'Property Master'),(1245,1405243,9,'Driver'),(1245,1408816,1,'Camera Operator'),(1245,1415951,8,'Makeup Artist'),(1245,1425504,11,'Gaffer'),(1245,1427554,6,'Sound Re-Recording Mixer'),(1245,1462916,7,'Art Direction'),(1245,1467116,2,'Assistant Director'),(1245,1484993,8,'Costume Design'),(1245,1520056,1,'Camera Operator'),(1245,1532767,10,'Special Effects Supervisor'),(1245,1550209,9,'Choreographer'),(1245,1602327,8,'Hairstylist'),(1245,1605893,6,'Music'),(1245,1646271,9,'Telecine Colorist'),(4995,1093,3,'Executive Producer'),(4995,1227,3,'Producer'),(4995,1809,5,'Editor'),(4995,1993,3,'Producer'),(4995,2950,1,'Director of Photography'),(4995,4762,2,'Director'),(4995,4762,4,'Screenplay'),(4995,4762,3,'Producer'),(4995,4767,3,'Executive Producer'),(4995,4768,3,'Executive Producer'),(4995,4769,3,'Producer'),(4995,4770,3,'Producer'),(4995,6940,6,'Music Supervisor'),(4995,15427,7,'Production Design'),(4995,21674,7,'Set Decoration'),(4995,23653,3,'Casting'),(4995,40468,6,'Original Music Composer'),(4995,40471,8,'Costume Design'),(4995,1530164,6,'Music Supervisor'),(9793,5140,3,'Producer'),(9793,5140,4,'Writer'),(9793,35581,3,'Producer'),(9793,56282,4,'Writer'),(9793,57585,1,'Director of Photography'),(9793,58260,2,'Director'),(9793,64129,3,'Producer'),(9793,64156,6,'Original Music Composer'),(9793,62813,5,'Editor'),(9793,62778,3,'Casting'),(9793,159763,7,'Production Design'),(9793,1128147,3,'Producer'),(9793,1522041,8,'Costume Design'),(8975,2533,5,'Editor'),(8975,4949,6,'Original Music Composer'),(8975,9430,6,'Sound Effects Editor'),(8975,13030,9,'Special Effects Coordinator'),(8975,15315,6,'Music Editor'),(8975,28240,1,'Director of Photography'),(8975,29086,7,'Art Direction'),(8975,10999,3,'Producer'),(8975,56451,4,'Author'),(8975,56452,4,'Author'),(8975,56453,2,'Director'),(8975,62746,8,'Costume Design'),(8975,83088,5,'Dialogue Editor'),(8975,102688,3,'Producer'),(8975,138900,8,'Hairstylist'),(8975,138900,8,'Makeup Artist'),(8975,143919,6,'Sound Re-Recording Mixer'),(8975,544372,10,'Visual Effects Supervisor'),(8975,544372,9,'Stunt Coordinator'),(8975,548445,6,'Foley'),(8975,929958,9,'Second Unit Cinematographer'),(8975,933574,3,'Casting'),(8975,959581,7,'Production Design'),(8975,1087623,3,'Casting'),(8975,1334779,9,'Property Master'),(8975,1341783,6,'Foley'),(8975,1341784,6,'Foley'),(8975,1341786,6,'Sound Effects Editor'),(8975,1364623,1,'Underwater Camera'),(8975,1391710,7,'Set Designer'),(8975,1392131,6,'Supervising Sound Editor'),(8975,1395023,6,'Sound Effects Editor'),(8975,1407229,1,'Steadicam Operator'),(8975,1408843,9,'Visual Effects Editor'),(8975,1408843,5,'First Assistant Editor'),(8975,1410554,10,'Visual Effects Supervisor'),(8975,1411234,10,'Visual Effects Producer'),(8975,1411258,8,'Hairstylist'),(8975,1412742,10,'Visual Effects Producer'),(8975,1412746,1,'Camera Operator'),(8975,1415640,8,'Costume Supervisor'),(8975,1427466,1,'Camera Operator'),(8975,1428855,6,'Supervising Sound Editor'),(8975,1432909,6,'ADR & Dubbing'),(8975,1454940,8,'Set Costumer'),(8975,1465351,7,'Art Department Coordinator'),(8975,1483566,7,'Set Decoration'),(8975,1483567,8,'Makeup Department Head'),(8975,1483568,9,'Property Master'),(8975,1483569,7,'Construction Coordinator'),(8975,1483570,7,'Set Designer'),(8975,1483578,9,'CG Supervisor'),(8975,1483579,10,'Visual Effects Producer'),(8975,1483582,8,'Set Costumer'),(8975,1483583,2,'Script Supervisor'),(8975,1483584,2,'Script Supervisor'),(8975,1619695,9,'Visual Effects Editor'),(9424,434,3,'Casting'),(9424,436,3,'Casting Associate'),(9424,3228,4,'Screenplay'),(9424,5362,3,'Casting Associate'),(9424,5508,7,'Production Design'),(9424,12633,6,'Original Music Composer'),(9424,10857,7,'Art Direction'),(9424,33316,2,'Director'),(9424,35699,7,'Set Decoration'),(9424,41587,3,'Producer'),(9424,31175,1,'Director of Photography'),(9424,58327,3,'Producer'),(9424,58328,5,'Editor'),(9424,62164,8,'Costume Design'),(9424,1007395,9,'Stunt Coordinator'),(9424,1378701,9,'Special Effects Coordinator'),(9424,1397300,2,'Script Supervisor'),(9424,1407805,9,'Makeup Effects'),(9424,1410526,10,'VFX Supervisor'),(9424,1479276,7,'Art Department Coordinator'),(9424,1531240,8,'Assistant Costume Designer'),(9424,1531241,8,'Assistant Costume Designer'),(9424,1531242,8,'Set Costumer'),(9424,1531243,10,'Animation'),(9424,1531244,10,'Animation'),(9424,1531245,7,'Art Department Coordinator'),(9424,1531246,9,'Makeup Effects'),(7501,16304,2,'Director'),(7501,16304,4,'Author'),(7501,16305,2,'Director'),(7501,16305,4,'Author'),(7501,6377,6,'Original Music Composer'),(9686,1776,2,'Director'),(9686,1776,4,'Writer'),(9686,7202,1,'Director of Photography'),(9686,1032,2,'Director'),(9686,1243,2,'Director'),(9686,1243,4,'Writer'),(9686,1769,8,'Costume Design'),(9686,1769,4,'Writer'),(9686,1769,7,'Title Designer'),(9686,2989,4,'Writer'),(9686,3569,1,'Director of Photography'),(9686,6348,8,'Costume Design'),(9686,10440,5,'Editor'),(9686,11905,1,'Director of Photography'),(9686,23966,7,'Production Design'),(9686,52163,8,'Costume Design'),(68,280,2,'Director'),(68,280,4,'Screenplay'),(68,293,1,'Director of Photography'),(68,372,4,'Screenplay'),(68,374,4,'Screenplay'),(68,376,3,'Producer'),(68,377,3,'Producer'),(68,390,3,'Casting'),(68,391,7,'Production Design'),(68,393,6,'Sound Editor'),(68,394,9,'Sound Recordist'),(68,1002,7,'Assistant Art Director'),(68,6347,3,'Casting'),(68,11386,8,'Costume Design'),(68,7714,6,'Original Music Composer'),(68,10718,5,'Editor'),(68,8646,7,'Art Direction'),(68,10677,7,'Assistant Art Director'),(68,40796,1,'Still Photographer'),(68,23769,7,'Art Direction'),(68,1300790,3,'Production Manager'),(68,1406966,9,'Property Master'),(68,1406968,9,'Property Master'),(68,1406969,9,'Scenic Artist'),(68,1406972,6,'Sound Re-Recording Mixer'),(68,1406978,1,'Camera Operator'),(68,1406983,11,'Gaffer'),(68,1406986,2,'Script Supervisor'),(68,1406988,3,'Publicist'),(68,1406990,3,'Publicist'),(115,151,1,'Director of Photography'),(115,1226,7,'Production Design'),(115,553,7,'Art Direction'),(115,1223,2,'Director'),(115,1223,5,'Editor'),(115,1223,4,'Writer'),(115,1223,3,'Producer'),(115,1224,3,'Producer'),(115,1224,5,'Editor'),(115,1224,4,'Writer'),(115,1225,6,'Original Music Composer'),(115,1227,3,'Casting'),(115,1228,5,'Editor'),(115,1482,3,'Co-Producer'),(115,1482,3,'Unit Production Manager'),(115,2236,3,'Executive Producer'),(115,2238,3,'Executive Producer'),(115,7418,8,'Costume Design'),(115,9619,6,'Supervising Sound Editor'),(115,9619,6,'Sound Re-Recording Mixer'),(115,15433,5,'Dialogue Editor'),(115,17990,6,'Music Editor'),(115,20745,8,'Costume Supervisor'),(115,21933,6,'Music Supervisor'),(115,41677,3,'Casting Associate'),(115,41082,7,'Set Decoration'),(115,43388,3,'Executive In Charge Of Production'),(115,44482,3,'Location Manager'),(115,54563,4,'Storyboard'),(115,113113,10,'Digital Compositors'),(115,92376,6,'Foley'),(115,92380,6,'Sound Effects Editor'),(115,109129,9,'Makeup Effects'),(115,121275,8,'Key Hair Stylist'),(115,223239,6,'Boom Operator'),(115,239788,1,'Additional Camera'),(115,537941,10,'3D Artist'),(115,548408,8,'Makeup Artist'),(115,1172443,1,'Still Photographer'),(115,1244513,9,'Thanks'),(115,1281538,9,'Stunt Coordinator'),(115,1321000,8,'Set Costumer'),(115,1323090,8,'Makeup Artist'),(115,1325234,8,'Makeup Department Head'),(115,1337461,6,'Sound Re-Recording Mixer'),(115,1347760,9,'Dialect Coach'),(115,1401358,6,'Assistant Sound Editor'),(115,1401606,8,'Hairstylist'),(115,1401968,10,'Visual Effects Supervisor'),(115,1402040,3,'Publicist'),(115,1408392,1,'Aerial Camera'),(115,1413100,10,'Visual Effects Producer'),(115,1413161,7,'Set Designer'),(115,1434615,6,'Dolby Consultant'),(115,1447583,7,'Property Master'),(115,1463325,7,'Construction Coordinator'),(115,1549272,8,'Set Costumer'),(115,1550201,5,'Dialogue Editor'),(115,1550836,3,'Production Coordinator'),(115,1552157,3,'Production Supervisor'),(115,1552196,2,'Script Supervisor'),(115,1552201,6,'Production Sound Mixer'),(115,1552212,5,'Assistant Editor'),(115,1552213,5,'Assistant Editor'),(115,1552214,1,'Camera Operator'),(115,1552215,11,'Rigging Gaffer'),(115,1552217,9,'Transportation Captain'),(115,1552218,9,'Transportation Captain'),(115,1552219,9,'Transportation Coordinator'),(115,1552549,5,'Color Timer'),(115,1559639,2,'Assistant Director'),(115,1559640,2,'Assistant Director'),(115,1568652,9,'Video Assist Operator'),(115,1573081,1,'First Assistant Camera'),(115,1574455,11,'Rigging Grip'),(115,1587383,6,'Music Supervisor'),(115,1592134,6,'Music'),(115,1648038,9,'Craft Service'),(115,1764701,9,'Driver'),(115,1795401,7,'Art Department Assistant'),(115,1795402,7,'Art Department Coordinator'),(115,1795404,7,'Greensman'),(115,1795405,7,'Leadman'),(115,1795406,7,'Painter'),(115,1795408,7,'Standby Painter'),(115,1795409,1,'Grip'),(115,1795410,8,'Assistant Costume Designer'),(115,1795413,8,'Set Dressing Artist'),(115,1795414,9,'Choreographer'),(115,1795416,9,'Loader'),(115,1795417,9,'Post Production Supervisor'),(115,1795418,9,'Production Intern'),(115,1795419,9,'Propmaker'),(115,1795422,9,'Set Production Assistant'),(115,1795423,9,'Stand In'),(115,1795424,9,'Stunts'),(115,1795425,11,'Electrician'),(115,1795426,11,'Lighting Technician'),(7874,6482,3,'Producer'),(7874,53267,4,'Screenplay'),(7874,53267,2,'Director'),(7874,53638,3,'Producer'),(7874,53639,6,'Original Music Composer'),(7874,53640,1,'Director of Photography'),(7874,53641,5,'Editor'),(7874,63291,3,'Executive Producer'),(4911,3119,6,'Sound Designer'),(4911,6410,3,'Casting'),(4911,4037,2,'Director'),(4911,5287,6,'Music'),(4911,7779,3,'Producer'),(4911,7780,3,'Producer'),(4911,12232,3,'Executive Producer'),(4911,12234,3,'Executive Producer'),(4911,25141,5,'Editor'),(4911,19769,4,'Screenplay'),(4911,18862,4,'Story'),(4911,16614,7,'Production Design'),(4911,27266,7,'Set Decoration'),(4911,20295,3,'Executive Producer'),(4911,28154,3,'Producer'),(4911,39973,3,'Producer'),(4911,39976,5,'Editor'),(4911,47892,8,'Costume Design'),(4911,54164,1,'Director of Photography'),(4911,61097,7,'Art Direction'),(4911,1374605,7,'Set Decoration'),(4911,1438571,6,'Sound Designer'),(1988,172,2,'Director'),(1988,173,3,'Producer'),(1988,179,1,'Director of Photography'),(1988,287,3,'Producer'),(1988,11284,7,'Set Decoration'),(1988,20456,4,'Novel'),(1988,20457,4,'Screenplay'),(1988,20458,3,'Producer'),(1988,20459,6,'Original Music Composer'),(1988,20460,6,'Original Music Composer'),(1988,20461,5,'Editor'),(1988,20462,3,'Casting'),(1988,20463,7,'Production Design'),(1988,20464,7,'Art Direction'),(1988,20465,8,'Costume Design'),(1988,20466,7,'Set Decoration'),(9557,3276,3,'Casting'),(9557,11604,7,'Art Direction'),(9557,15303,3,'Producer'),(9557,16499,10,'Visual Effects Supervisor'),(9557,21615,7,'Production Design'),(9557,43393,6,'Original Music Composer'),(9557,48885,3,'Producer'),(9557,51702,3,'Producer'),(9557,52260,1,'Director of Photography'),(9557,57962,4,'Screenplay'),(9557,57962,2,'Director'),(9557,57963,4,'Screenplay'),(9557,57964,3,'Executive Producer'),(9557,57965,3,'Producer'),(9557,57966,5,'Editor'),(9557,65048,7,'Set Decoration'),(9557,1249772,8,'Costume Design'),(9557,1303184,6,'Sound Re-Recording Mixer'),(9557,1395442,6,'Sound mixer'),(9557,1404363,5,'Dialogue Editor'),(9557,1404364,5,'Dialogue Editor'),(9557,1456506,2,'Script Supervisor'),(9557,1531278,6,'Sound Re-Recording Mixer'),(9557,1537185,6,'Sound Editor'),(9557,1537498,6,'Supervising Sound Editor'),(9557,1539781,10,'Visual Effects Producer'),(9557,1556285,10,'Visual Effects Supervisor'),(9557,1556286,10,'Special Effects Supervisor'),(9557,1556287,1,'Still Photographer'),(9557,1556288,6,'Sound Re-Recording Mixer'),(9026,3960,1,'Director of Photography'),(9026,21677,3,'Producer'),(9026,46863,6,'Original Music Composer'),(9026,47978,3,'Executive Producer'),(9026,56710,4,'Screenplay'),(9026,56710,2,'Director'),(9026,56712,4,'Theatre Play'),(9026,56713,5,'Editor'),(8321,465,3,'Executive Producer'),(8321,474,3,'Casting'),(8321,1225,6,'Original Music Composer'),(8321,11227,8,'Costume Design'),(8321,10725,5,'Editor'),(8321,15880,6,'Sound Re-Recording Mixer'),(8321,16364,7,'Production Design'),(8321,16683,6,'Sound Effects Editor'),(8321,43559,3,'Executive Producer'),(8321,43560,3,'Executive Producer'),(8321,23425,7,'Art Direction'),(8321,29227,3,'Producer'),(8321,29231,1,'Director of Photography'),(8321,54472,4,'Screenplay'),(8321,54472,2,'Director'),(8321,54474,3,'Producer'),(8321,67204,7,'Set Decoration'),(8321,223247,6,'Supervising Sound Editor'),(8321,1337419,6,'Music Editor'),(8321,1436238,2,'Script Supervisor'),(8321,1465953,9,'Unit Publicist'),(8321,1544338,6,'Music Supervisor'),(8321,1544527,8,'Costume Supervisor'),(8321,1544538,6,'Sound Re-Recording Mixer'),(8321,1551777,8,'Assistant Costume Designer'),(8053,59,3,'Producer'),(8053,273,4,'Screenplay'),(8053,546,3,'Casting'),(8053,2176,2,'Director'),(8053,2176,3,'Producer'),(8053,7229,6,'Original Music Composer'),(8053,7857,7,'Production Design'),(8053,8969,1,'Director of Photography'),(8053,18186,3,'Producer'),(8053,38400,6,'Sound Re-Recording Mixer'),(8053,46813,3,'Producer'),(8053,53687,5,'Editor'),(8053,54760,7,'Set Decoration'),(8053,60665,3,'Casting'),(8053,63293,7,'Art Direction'),(8053,137176,8,'Costume Design'),(8053,563760,2,'Script Supervisor'),(8053,1128354,3,'Line Producer'),(8053,1172442,7,'Assistant Art Director'),(8053,1300813,10,'Visual Effects Supervisor'),(8053,1329417,8,'Makeup Department Head'),(8053,1339071,6,'Supervising Sound Editor'),(8053,1357059,5,'Dialogue Editor'),(8053,1363868,6,'Music Editor'),(8053,1371064,6,'Foley'),(8053,1383921,6,'Music Supervisor'),(8053,1395902,11,'Gaffer'),(8053,1397808,7,'Construction Coordinator'),(8053,1403479,1,'Camera Operator'),(8053,1406137,2,'Script Supervisor'),(8053,1411259,8,'Makeup Artist'),(8053,1424684,9,'Sound Recordist'),(8053,1442097,8,'Hair Department Head'),(8053,1444922,1,'Still Photographer'),(8053,1459905,10,'Visual Effects Coordinator'),(8053,1549353,6,'Music Supervisor'),(8053,1571002,7,'Art Department Coordinator'),(8053,1571719,8,'Costume Supervisor'),(8053,1576843,9,'Property Master'),(8053,1702539,11,'Rigging Grip'),(8053,1706548,9,'Special Effects Coordinator'),(8053,1708831,3,'Casting Associate'),(8053,1708843,8,'Costume Supervisor'),(8053,1708850,11,'Gaffer'),(8053,1708858,10,'Visual Effects Coordinator'),(8053,1708859,10,'Visual Effects Producer'),(8053,1708860,10,'Visual Effects Producer'),(8053,1708861,10,'Visual Effects Supervisor'),(8053,1708863,6,'Dolby Consultant'),(2290,4023,3,'Casting'),(2290,1999,6,'Original Music Composer'),(2290,2706,3,'Producer'),(2290,3192,3,'Casting'),(2290,5328,3,'Casting'),(2290,11880,5,'Editor'),(2290,17165,7,'Production Design'),(2290,18204,2,'Director'),(2290,22563,4,'Novel'),(2290,23611,4,'Screenplay'),(2290,23612,4,'Screenplay'),(2290,23614,1,'Director of Photography'),(2290,23616,8,'Costume Design'),(2290,23617,8,'Makeup Artist'),(2290,23619,8,'Makeup Artist'),(2290,23620,8,'Makeup Artist'),(2290,570136,2,'Script Supervisor'),(2290,1281998,8,'Hairstylist'),(5236,1091,3,'Producer'),(5236,1108,4,'Screenplay'),(5236,1108,2,'Director'),(5236,9039,6,'Original Music Composer'),(5236,11267,3,'Producer'),(5236,19679,3,'Casting'),(5236,19680,3,'Casting'),(5236,52161,6,'Music Supervisor'),(5236,37162,3,'Executive Producer'),(5236,39726,3,'Executive Producer'),(5236,42632,1,'Director of Photography'),(5236,42633,5,'Editor'),(5236,42634,7,'Production Design'),(5236,42635,7,'Art Direction'),(5236,42636,7,'Set Decoration'),(5236,42637,8,'Costume Design'),(5236,133238,4,'Novel'),(5236,1124532,3,'Producer'),(5236,1384393,6,'Music Editor'),(5236,1391389,1,'Still Photographer'),(5236,1458216,2,'Script Supervisor'),(5236,1528991,6,'Music Editor'),(6552,1721,5,'Editor'),(6552,551,3,'Producer'),(6552,561,3,'Casting'),(6552,5912,6,'Original Music Composer'),(6552,42030,9,'Makeup Effects'),(6552,50719,2,'Director'),(6552,50720,4,'Author'),(6552,50721,4,'Author'),(6552,50722,7,'Art Direction'),(6552,50723,1,'Director of Photography'),(6552,50724,3,'Producer'),(6552,50726,9,'Makeup Effects'),(6552,50728,3,'Producer'),(1018,3560,3,'Producer'),(1018,5602,2,'Director'),(1018,5602,6,'Sound Designer'),(1018,5602,4,'Writer'),(1018,5604,5,'Editor'),(1018,5604,3,'Producer'),(1018,5624,3,'Executive Producer'),(1018,5625,3,'Producer'),(1018,5626,3,'Producer'),(1018,5628,6,'Music'),(1018,5632,7,'Production Design'),(1018,5633,7,'Set Decoration'),(1018,9573,1,'Director of Photography'),(1018,15014,7,'Art Direction'),(1018,15015,8,'Costume Design'),(1018,41621,3,'Producer'),(1018,1172414,1,'Still Photographer'),(6687,106,6,'Original Music Composer'),(6687,1325,3,'Casting'),(6687,16999,3,'Producer'),(6687,17083,3,'Producer'),(6687,17083,3,'Executive Producer'),(6687,19809,3,'Producer'),(6687,19897,8,'Costume Design'),(6687,37948,4,'Screenplay'),(6687,37948,2,'Director'),(6687,37950,3,'Executive Producer'),(6687,37951,3,'Executive Producer'),(6687,37952,1,'Director of Photography'),(6687,51067,4,'Screenplay'),(6687,51068,5,'Editor'),(6687,51070,3,'Producer'),(6687,51071,3,'Producer'),(6687,67683,3,'Producer'),(6687,961462,3,'Line Producer'),(6687,1129797,3,'Producer'),(6687,1129798,3,'Line Producer'),(6687,1129799,7,'Production Design'),(6687,1323112,7,'Art Direction'),(6687,1323113,7,'Set Decoration'),(8461,3686,3,'Casting'),(8461,2240,1,'Director of Photography'),(8461,3489,3,'Executive Producer'),(8461,4190,8,'Costume Design'),(8461,6011,4,'Screenplay'),(8461,6011,2,'Director'),(8461,7432,3,'Producer'),(8461,19695,3,'Producer'),(8461,31011,3,'Producer'),(8461,19755,7,'Production Design'),(8461,55484,3,'Producer'),(8461,55485,3,'Producer'),(8461,55486,3,'Producer'),(8461,55487,3,'Producer'),(8461,55488,3,'Executive Producer'),(8461,55489,3,'Executive Producer'),(8461,55490,3,'Executive Producer'),(8461,55491,5,'Editor'),(8461,502616,3,'Co-Producer'),(19,67,3,'Producer'),(19,68,2,'Director'),(19,68,5,'Editor'),(19,68,4,'Screenplay'),(19,69,6,'Original Music Composer'),(19,70,1,'Director of Photography'),(19,71,1,'Director of Photography'),(19,157,4,'Screenplay'),(19,157,4,'Novel'),(19,1758,10,'Visual Effects'),(19,20536,8,'Costume Design'),(19,5030,7,'Set Designer'),(19,12320,7,'Production Design'),(19,12369,7,'Production Design'),(19,13887,7,'Production Design'),(19,2794,1,'First Assistant Camera'),(19,2798,1,'Director of Photography'),(19,12365,9,'Special Effects'),(19,29553,1,'Still Photographer'),(19,1572235,7,'Sculptor'),(19,1572237,9,'Special Effects'),(19,1572241,6,'Music Editor'),(400,3175,5,'Editor'),(400,3228,4,'Screenplay'),(400,4055,6,'Original Music Composer'),(400,5501,2,'Director'),(400,5505,3,'Producer'),(400,5506,1,'Director of Photography'),(400,5507,3,'Casting'),(400,5508,7,'Production Design'),(9104,1617,3,'Executive Producer'),(9104,1889,6,'Original Music Composer'),(9104,3904,5,'Editor'),(9104,16425,1,'Director of Photography'),(9104,21378,3,'Executive Producer'),(9104,57030,4,'Screenplay'),(9104,57030,2,'Director'),(9104,57032,4,'Screenplay'),(9104,57033,4,'Screenplay'),(9104,57034,3,'Producer'),(9104,57035,3,'Executive Producer'),(9104,57036,3,'Producer'),(9104,1322501,4,'Novel'),(9288,558,6,'Music'),(9288,14145,5,'Editor'),(9288,21394,2,'Director'),(9288,21394,4,'Screenplay'),(9288,29526,7,'Production Design'),(9288,29940,3,'Casting'),(9288,57148,4,'Screenplay'),(9288,57150,4,'Screenplay'),(9288,57152,3,'Producer'),(9288,57158,1,'Director of Photography'),(9288,63127,3,'Producer'),(9288,101869,1,'Camera Operator'),(9288,583084,8,'Costume Design'),(9288,1098054,8,'Makeup Artist'),(9288,1129797,3,'Producer'),(9288,1329074,3,'Casting'),(9288,1335879,10,'Visual Effects Producer'),(9288,1393869,6,'Dolby Consultant'),(9288,1401553,10,'Visual Effects Supervisor'),(9288,1530136,1,'Still Photographer'),(9288,1540227,7,'Art Direction'),(9288,1540228,7,'Set Decoration'),(9288,1540230,9,'Special Effects Coordinator'),(9288,1540233,10,'Creature Design'),(9288,1540242,10,'Visual Effects Coordinator'),(9288,1540243,10,'Visual Effects Coordinator'),(9288,1540244,10,'Visual Effects Supervisor'),(9288,1540245,1,'Steadicam Operator'),(9288,1540246,1,'First Assistant Camera'),(9288,1540247,1,'First Assistant Camera'),(9288,1540249,6,'Sound Designer'),(9288,1540250,6,'Sound Re-Recording Mixer'),(9288,1540251,6,'Sound Re-Recording Mixer'),(9288,1540252,8,'Hair Designer'),(137,795,7,'Assistant Art Director'),(137,1524,4,'Screenplay'),(137,1524,2,'Director'),(137,1524,3,'Producer'),(137,1525,3,'Producer'),(137,1526,4,'Screenplay'),(137,1526,4,'Story'),(137,1527,1,'Director of Photography'),(137,1528,6,'Original Music Composer'),(137,1530,3,'Casting'),(137,1531,5,'Editor'),(137,2026,7,'Art Direction'),(137,7690,3,'Executive Producer'),(137,10066,8,'Makeup Artist'),(137,14382,6,'Supervising Sound Editor'),(137,15325,5,'Assistant Editor'),(137,15308,6,'Music Supervisor'),(137,18274,2,'Assistant Director'),(137,21729,7,'Set Decoration'),(137,23351,8,'Prosthetic Supervisor'),(137,35490,3,'Casting'),(137,52991,2,'Assistant Director'),(137,72258,9,'Stunts'),(137,91106,1,'Still Photographer'),(137,118943,9,'Special Effects'),(137,118944,6,'Sound Editor'),(137,118945,6,'Sound Editor'),(137,936765,6,'Orchestrator'),(137,1062468,8,'Makeup Artist'),(137,1300922,8,'Makeup Artist'),(137,1327404,9,'Stunt Coordinator'),(137,1398123,6,'Sound Re-Recording Mixer'),(137,1409284,2,'Script Supervisor'),(137,1424046,3,'Casting'),(137,1433316,8,'Costume Supervisor'),(137,1481286,8,'Hairstylist'),(137,1521767,7,'Production Design'),(137,1522745,8,'Set Costumer'),(137,1524757,8,'Key Hair Stylist'),(137,1530449,8,'Costume Design'),(137,1535307,8,'Set Costumer'),(137,1630221,2,'Assistant Director'),(137,1639858,9,'Special Effects'),(137,1639865,9,'Transportation Captain'),(454,1095,1,'Director of Photography'),(454,3050,5,'Editor'),(454,3050,3,'Producer'),(454,5490,3,'Casting'),(454,6201,4,'Screenplay'),(454,6201,2,'Director'),(454,6201,3,'Producer'),(454,6202,3,'Producer'),(454,6203,7,'Production Design'),(454,6203,3,'Producer'),(454,6204,3,'Producer'),(454,6205,6,'Original Music Composer'),(454,6206,6,'Original Music Composer'),(454,6207,7,'Art Direction'),(454,6208,7,'Set Decoration'),(454,6209,8,'Costume Design'),(454,6210,4,'Author'),(454,6211,4,'Screenplay'),(33,190,2,'Director'),(33,190,3,'Producer'),(33,195,6,'Original Music Composer'),(33,3717,3,'Producer'),(33,3718,3,'Executive Producer'),(33,3718,3,'Production Manager'),(33,356,1,'Director of Photography'),(33,369,7,'Production Design'),(33,3719,7,'Art Direction'),(33,3721,7,'Set Decoration'),(33,384,5,'Editor'),(33,423,3,'Casting'),(33,347,2,'Assistant Director'),(33,379,6,'Music Editor'),(33,1052,6,'Sound Re-Recording Mixer'),(33,10631,9,'Special Effects Coordinator'),(33,7191,4,'Screenplay'),(33,7191,4,'Author'),(33,23816,8,'Costume Supervisor'),(33,45429,9,'Stunts'),(33,84220,2,'Assistant Director'),(33,114512,2,'Script Supervisor'),(33,168769,3,'Production Accountant'),(33,175871,9,'Stunts'),(33,230128,8,'Hair Department Head'),(33,543201,7,'Art Direction'),(33,947682,3,'Casting'),(33,957353,2,'Assistant Director'),(33,957821,8,'Makeup Artist'),(33,1043608,8,'Costume Supervisor'),(33,1198767,3,'Production Manager'),(33,1324920,8,'Costume Supervisor'),(33,1402203,3,'Unit Manager'),(33,1410589,3,'Casting'),(33,1416064,11,'Lighting Technician'),(33,1426735,9,'Special Effects'),(33,1433998,8,'Hairstylist'),(33,1457898,2,'Assistant Director'),(33,1458993,8,'Makeup Department Head'),(33,1538127,5,'Assistant Editor'),(33,1544518,1,'Still Photographer'),(33,1597149,9,'Special Effects'),(33,1597150,5,'Color Timer'),(1951,42,4,'Screenplay'),(1951,42,2,'Director'),(1951,6146,3,'Producer'),(1951,6156,5,'Editor'),(1951,2952,3,'Casting'),(1951,6797,8,'Costume Design'),(1951,6796,7,'Art Direction'),(1951,1570,1,'Director of Photography'),(1951,3922,3,'Casting'),(1951,3923,3,'Casting'),(1951,7586,7,'Set Decoration'),(1951,20232,5,'Editor'),(1951,1307424,3,'Casting'),(1951,1476491,3,'Casting'),(114,376,3,'Producer'),(114,1202,3,'Producer'),(114,1201,2,'Director'),(114,1203,4,'Author'),(114,1213,6,'Original Music Composer'),(114,1214,1,'Director of Photography'),(114,1215,5,'Editor'),(114,1217,5,'Editor'),(114,1221,3,'Casting'),(114,1222,7,'Production Design'),(9396,3048,6,'Original Music Composer'),(9396,31027,1,'Director of Photography'),(9396,46952,5,'Editor'),(9396,57147,4,'Author'),(9396,57147,3,'Executive Producer'),(9396,57147,4,'Characters'),(9396,57594,2,'Director'),(9396,57594,3,'Producer'),(9396,57595,4,'Author'),(9396,57596,3,'Producer'),(2604,491,6,'Original Music Composer'),(2604,149,1,'Director of Photography'),(2604,3188,7,'Art Direction'),(2604,1152,2,'Director'),(2604,1152,4,'Screenplay'),(2604,1152,3,'Producer'),(2604,2621,3,'Producer'),(2604,3184,3,'Producer'),(2604,3184,3,'Production Manager'),(2604,3191,3,'Casting'),(2604,3192,3,'Casting'),(2604,3193,6,'Sound Effects Editor'),(2604,4186,5,'Editor'),(2604,5709,7,'Production Design'),(2604,6051,5,'Editor'),(2604,7531,3,'Producer'),(2604,7536,8,'Costume Design'),(2604,8285,7,'Art Direction'),(2604,12131,7,'Set Decoration'),(2604,12923,3,'Production Supervisor'),(2604,15178,6,'Additional Soundtrack'),(2604,19464,1,'Steadicam Operator'),(2604,26471,4,'Author'),(2604,26471,4,'Screenplay'),(2604,41018,3,'Production Supervisor'),(2604,136424,9,'Stunt Coordinator'),(2604,1117320,3,'Producer'),(2604,1325234,8,'Makeup Artist'),(2604,1425994,10,'Visual Effects'),(2604,1428974,2,'Assistant Director'),(2604,1495279,3,'Production Manager'),(2604,1536362,8,'Hairstylist'),(2604,1604352,10,'Visual Effects'),(2604,1604352,9,'Title Graphics'),(864,947,6,'Original Music Composer'),(864,432,1,'Director of Photography'),(864,5776,3,'Casting'),(864,11899,3,'Producer'),(864,12962,2,'Director'),(864,12963,4,'Author'),(864,12964,4,'Author'),(864,12965,4,'Author'),(864,12966,4,'Author'),(864,12970,5,'Editor'),(864,12971,3,'Casting'),(864,12972,3,'Casting'),(864,12973,7,'Production Design'),(1931,31119,2,'Director'),(1931,31120,4,'Screenplay'),(1931,31121,3,'Producer'),(1931,31122,3,'Line Producer'),(1931,31123,3,'Executive Producer'),(1931,31124,6,'Original Music Composer'),(1931,31125,6,'Original Music Composer'),(1931,31126,1,'Director of Photography'),(1931,31127,5,'Editor'),(1931,31128,3,'Casting'),(1931,31130,7,'Set Decoration'),(1931,31131,8,'Costume Design'),(1931,29943,7,'Production Design'),(691,9856,4,'Characters'),(691,9861,3,'Producer'),(691,9904,3,'Casting'),(691,8524,7,'Art Direction'),(691,8939,8,'Makeup Artist'),(691,9858,4,'Screenplay'),(691,9869,7,'Production Design'),(691,10076,2,'Director'),(691,10179,5,'Editor'),(691,10340,3,'Casting'),(691,10466,4,'Screenplay'),(691,10467,3,'Producer'),(691,10468,6,'Original Music Composer'),(691,10469,1,'Director of Photography'),(691,10668,1,'Camera Operator'),(691,19474,1,'Underwater Camera'),(691,35835,4,'Script Editor'),(691,101523,8,'Wardrobe Supervisor'),(691,958468,8,'Hairstylist'),(9877,561,3,'Casting'),(9877,19155,6,'Original Music Composer'),(9877,9034,3,'Producer'),(9877,11874,3,'Producer'),(9877,13227,5,'Editor'),(9877,14764,6,'Sound Editor'),(9877,15331,6,'Sound Editor'),(9877,19954,7,'Art Direction'),(9877,21615,7,'Production Design'),(9877,46589,8,'Costume Design'),(9877,59958,2,'Director'),(9877,59959,4,'Screenplay'),(9877,59960,3,'Executive Producer'),(9877,59961,3,'Executive Producer'),(9877,59963,3,'Producer'),(9877,59969,1,'Director of Photography'),(9877,72117,9,'Stunt Coordinator'),(9877,91891,6,'Sound Editor'),(9877,107420,7,'Set Decoration'),(9877,1096363,2,'Script Supervisor'),(9877,1317044,8,'Makeup Department Head'),(9877,1318157,3,'Casting'),(9877,1379594,3,'Casting'),(9877,1392901,5,'Dialogue Editor'),(9877,1404212,6,'Supervising Sound Editor'),(9877,1531897,10,'Special Effects Supervisor'),(9877,1562840,6,'Sound Editor'),(9877,1815548,6,'Music Editor'),(8291,6482,4,'Screenplay'),(8291,6482,2,'Director'),(8291,6482,3,'Producer'),(8291,9772,5,'Editor'),(8291,9249,3,'Producer'),(8291,9769,6,'Original Music Composer'),(8291,20823,1,'Director of Photography'),(8291,35689,4,'Other'),(8291,54421,6,'Original Music Composer'),(8291,54604,6,'Original Music Composer'),(8291,54605,6,'Original Music Composer'),(8291,1711837,9,'Transportation Captain'),(2830,3049,1,'Director of Photography'),(2830,26292,4,'Screenplay'),(2830,12987,2,'Director'),(2830,12987,3,'Producer'),(2830,20822,6,'Original Music Composer'),(2830,18976,3,'Producer'),(2830,28635,3,'Producer'),(2830,28636,7,'Production Design'),(2830,1007395,9,'Stunt Coordinator'),(2013,489,3,'Producer'),(2013,492,1,'Director of Photography'),(2013,3558,4,'Screenplay'),(2013,4280,5,'Editor'),(2013,4446,3,'Producer'),(2013,4865,6,'Original Music Composer'),(2013,7482,2,'Director'),(2013,7482,6,'Songs'),(2013,9890,6,'Sound Engineer'),(2013,11204,3,'Executive Producer'),(2013,20722,8,'Costume Design'),(2013,20719,3,'Producer'),(2013,49925,6,'Sound Designer'),(2013,49927,6,'Sound Designer'),(2013,20720,3,'Executive Producer'),(2013,49930,7,'Set Designer'),(2013,49933,3,'Line Producer'),(2013,20721,4,'Novel'),(2013,28687,7,'Set Designer'),(1440,153,6,'Original Music Composer'),(1440,999,3,'Casting'),(1440,5010,4,'Screenplay'),(1440,5010,2,'Director'),(1440,5010,3,'Producer'),(1440,5020,3,'Location Manager'),(1440,5329,7,'Production Design'),(1440,7538,6,'Music Editor'),(1440,8653,6,'Production Sound Mixer'),(1440,17172,3,'Producer'),(1440,17173,3,'Producer'),(1440,17171,4,'Screenplay'),(1440,17171,4,'Novel'),(1440,17175,1,'Director of Photography'),(1440,17176,5,'Editor'),(1440,17215,3,'Unit Production Manager'),(1440,10829,3,'Unit Production Manager'),(1440,17217,5,'First Assistant Editor'),(1440,17219,3,'Executive Producer'),(1440,17220,7,'Art Direction'),(1440,17221,7,'Set Decoration'),(1440,17222,9,'Property Master'),(1440,17223,9,'Scenic Artist'),(1440,17224,8,'Makeup Artist'),(1440,17227,8,'Costume Design'),(1440,20539,3,'Casting'),(1440,460575,8,'Hairstylist'),(1440,1363349,6,'Supervising Sound Editor'),(1440,1368864,6,'Sound Re-Recording Mixer'),(1440,1378453,5,'Dialogue Editor'),(1440,1392085,5,'Dialogue Editor'),(1440,1393443,5,'Dialogue Editor'),(1440,1433021,6,'Sound Re-Recording Mixer'),(1440,1445842,1,'Still Photographer'),(1440,1471015,7,'Art Department Coordinator'),(1440,1535116,2,'Script Supervisor'),(1123,2226,3,'Executive Producer'),(1123,2236,3,'Producer'),(1123,2238,3,'Producer'),(1123,2239,3,'Producer'),(1123,2625,7,'Production Design'),(1123,3050,5,'Editor'),(1123,7492,1,'Director of Photography'),(1123,13015,2,'Director'),(1123,15539,4,'Screenplay'),(1123,15540,3,'Producer'),(1123,15541,7,'Set Decoration'),(1123,15542,8,'Costume Design'),(1123,1195579,6,'Original Music Composer'),(9045,27436,2,'Director'),(9045,27436,4,'Screenplay'),(9045,474,3,'Casting'),(9045,19379,5,'Editor'),(9045,20682,6,'Original Music Composer'),(9045,20683,1,'Director of Photography'),(9045,23552,4,'Theatre Play'),(9045,35126,7,'Art Direction'),(9045,39192,8,'Costume Design'),(9045,49103,3,'Casting'),(9045,52983,3,'Casting'),(9045,56837,4,'Screenplay'),(9045,56839,3,'Producer'),(9045,56840,3,'Producer'),(9045,1346957,2,'Script Supervisor'),(9045,1426563,7,'Art Direction'),(9045,1466989,7,'Production Design'),(9045,1466990,7,'Set Decoration'),(142,2952,3,'Casting'),(142,275,1,'Director of Photography'),(142,278,6,'Original Music Composer'),(142,1614,2,'Director'),(142,1805,3,'Producer'),(142,1805,4,'Screenplay'),(142,1617,3,'Producer'),(142,1806,4,'Novel'),(142,1806,4,'Screenplay'),(142,1807,4,'Screenplay'),(142,1808,5,'Editor'),(142,1809,5,'Editor'),(142,5389,7,'Production Design'),(142,5390,7,'Art Direction'),(142,11714,8,'Costume Design'),(142,20570,7,'Set Decoration'),(142,86594,8,'Makeup Artist'),(142,960161,7,'Set Decoration'),(142,979027,11,'Gaffer'),(142,1316756,2,'Script Supervisor'),(142,1318806,8,'Makeup Department Head'),(142,1378716,1,'Still Photographer'),(142,1389670,9,'Stunt Coordinator'),(142,1401117,9,'Unit Publicist'),(142,1427381,6,'Music Editor'),(142,1428469,8,'Hairstylist'),(142,1468925,7,'Art Direction'),(142,1471021,8,'Hairstylist'),(142,1530166,6,'Music Supervisor'),(142,1535078,6,'Music Editor'),(142,1535079,1,'Steadicam Operator'),(142,1535080,11,'Gaffer'),(142,1535081,11,'Rigging Gaffer'),(142,1535082,8,'Costume Supervisor'),(9603,2997,3,'Producer'),(9603,6940,6,'Music Supervisor'),(9603,9341,1,'Director of Photography'),(9603,25143,6,'Original Music Composer'),(9603,42909,8,'Costume Design'),(9603,38411,7,'Production Design'),(9603,51557,3,'Casting'),(9603,57426,5,'Editor'),(9603,57434,2,'Director'),(9603,57434,4,'Screenplay'),(9603,1460574,3,'Producer'),(613,672,9,'Thanks'),(613,673,4,'Screenplay'),(613,673,3,'Producer'),(613,710,3,'Casting'),(613,1071,9,'Thanks'),(613,5135,1,'Director of Photography'),(613,7832,2,'Director'),(613,7837,5,'Editor'),(613,7839,8,'Costume Design'),(613,8803,3,'Executive Producer'),(613,8804,6,'Original Music Composer'),(613,8805,7,'Production Design'),(613,8806,6,'Sound Designer'),(613,8807,6,'Sound Effects Editor'),(613,8808,4,'Author'),(613,8809,4,'Author'),(613,8810,4,'Author'),(613,16887,6,'Foley'),(613,17084,8,'Makeup Artist'),(613,37682,10,'Visual Effects Supervisor'),(613,42864,1,'Steadicam Operator'),(613,44314,3,'Co-Producer'),(613,124703,1,'Still Photographer'),(613,230000,9,'Stunt Coordinator'),(613,1023152,3,'Co-Producer'),(613,1061537,8,'Other'),(613,1104776,2,'Assistant Director'),(613,1150510,1,'First Assistant Camera'),(613,1377250,7,'Art Direction'),(613,1377503,1,'Steadicam Operator'),(613,1380001,1,'Steadicam Operator'),(613,1394265,6,'Foley'),(613,1410749,6,'Dolby Consultant'),(613,1425847,8,'Makeup Artist'),(613,1425848,7,'Assistant Art Director'),(613,1425849,7,'Assistant Art Director'),(613,1425850,9,'Property Master'),(613,1425851,9,'Property Master'),(613,1425852,9,'Property Master'),(613,1425853,6,'Foley'),(613,1425854,6,'Sound Re-Recording Mixer'),(613,1425855,5,'Dialogue Editor'),(613,1425856,9,'Special Effects Coordinator'),(613,1425857,10,'Visual Effects Producer'),(613,1425858,11,'Gaffer'),(613,1425859,8,'Costume Supervisor'),(613,1425861,3,'Publicist'),(613,1425862,3,'Publicist'),(613,1425863,3,'Publicist'),(613,1425864,3,'Location Manager'),(613,1425865,3,'Location Manager'),(613,1425867,3,'Location Manager'),(613,1425868,3,'Location Manager'),(613,1425869,3,'Location Manager'),(613,1427444,9,'Stunts'),(613,1433138,11,'Lighting Technician'),(613,1433214,9,'Post Production Supervisor'),(613,1557162,3,'Co-Producer'),(613,1724512,2,'Assistant Director'),(1913,403,1,'Director of Photography'),(1913,3631,8,'Costume Design'),(1913,4378,3,'Casting'),(1913,4710,7,'Production Design'),(1913,4710,7,'Art Direction'),(1913,16941,3,'Producer'),(1913,19836,8,'Hairstylist'),(1913,19840,4,'Screenplay'),(1913,19840,2,'Director'),(1913,19840,5,'Editor'),(1913,19840,3,'Producer'),(1913,19840,6,'Original Music Composer'),(1913,19841,4,'Screenplay'),(1913,19904,3,'Production Manager'),(1913,19904,3,'Line Producer'),(1913,19905,7,'Set Decoration'),(1913,25255,2,'Script Supervisor'),(1913,69412,6,'Orchestrator'),(1913,1068859,5,'Assistant Editor'),(1913,1331893,7,'Assistant Art Director'),(1913,1334537,8,'Makeup Department Head'),(1913,1335073,10,'Visual Effects Supervisor'),(1913,1406838,9,'Stunt Coordinator'),(1913,1409848,1,'Still Photographer'),(1913,1418159,1,'Underwater Camera'),(1913,1422859,1,'Aerial Director of Photography'),(1913,1436794,6,'Sound Editor'),(1913,1436795,6,'Dolby Consultant'),(1913,1437962,7,'Sculptor'),(1913,1444920,10,'Visual Effects Supervisor'),(1913,1448275,10,'Visual Effects Producer'),(1913,1456366,8,'Makeup Designer'),(1913,1464779,1,'Steadicam Operator'),(1913,1465992,10,'Digital Compositors'),(1913,1482130,8,'Hairstylist'),(1913,1492131,6,'Sound'),(1913,1492141,2,'Assistant Director'),(1913,1538760,6,'Sound mixer'),(1913,1538761,6,'Boom Operator'),(1913,1538762,9,'Special Effects'),(1913,1538763,10,'Special Effects Supervisor'),(1913,1538765,10,'Digital Compositors'),(1913,1538767,10,'Digital Compositors'),(1913,1538768,10,'Digital Compositors'),(1913,1538769,10,'Digital Compositors'),(1913,1538770,9,'Stunts'),(1913,1538876,11,'Gaffer'),(1913,1538877,9,'Telecine Colorist'),(1913,1538878,5,'Digital Intermediate'),(1913,1580201,7,'Construction Coordinator'),(1913,1617580,7,'Painter'),(1913,1617581,1,'Key Grip'),(1913,1617582,8,'Makeup Artist'),(1913,1617583,8,'Wigmaker'),(1913,1617584,9,'Carpenter'),(1913,1617585,9,'Makeup Effects'),(1913,1617586,9,'Production Controller'),(1913,1617587,9,'Property Master'),(1913,1617588,5,'Color Timer'),(1913,1617589,11,'Electrician'),(1913,1617591,3,'Location Manager'),(1913,1617592,3,'Production Accountant'),(1913,1617593,3,'Production Coordinator'),(1913,1617594,6,'Sound Effects Editor'),(1913,1617595,10,'3D Supervisor'),(1913,1617596,4,'Storyboard'),(1913,1646190,10,'Visual Effects Producer'),(1913,1733019,6,'Musician'),(1913,1738113,9,'Pilot'),(1913,1765236,9,'Aerial Coordinator'),(1913,1855396,2,'Second Assistant Director'),(1913,1855397,5,'Negative Cutter'),(801,949,3,'Casting'),(801,5022,7,'Production Design'),(801,8246,2,'Director'),(801,5162,3,'Producer'),(801,5166,5,'Editor'),(801,10536,6,'Original Music Composer'),(801,8649,8,'Costume Design'),(801,8973,7,'Art Direction'),(801,11956,4,'Writer'),(801,11957,3,'Producer'),(801,11958,1,'Director of Photography'),(801,11959,7,'Set Decoration'),(801,29064,8,'Hairstylist'),(801,74693,8,'Makeup Artist'),(240,1776,4,'Screenplay'),(240,1776,2,'Director'),(240,1776,3,'Producer'),(240,2870,3,'Producer'),(240,2871,3,'Producer'),(240,3170,3,'Producer'),(240,2872,6,'Original Music Composer'),(240,3176,3,'Casting'),(240,2875,7,'Production Design'),(240,794,7,'Art Direction'),(240,8339,7,'Set Decoration'),(240,597,3,'Casting'),(240,598,3,'Casting'),(240,2988,5,'Editor'),(240,3083,4,'Screenplay'),(240,3083,4,'Novel'),(240,3085,9,'Thanks'),(240,3097,1,'Director of Photography'),(240,3098,6,'Original Music Composer'),(240,3100,5,'Editor'),(240,3102,6,'Sound Effects Editor'),(240,3175,5,'Editor'),(240,3177,6,'Sound Montage Associate'),(240,3178,6,'Production Sound Mixer'),(240,3179,6,'Music Editor'),(240,4506,9,'Transportation Captain'),(240,18373,1,'Camera Operator'),(240,6099,3,'Production Supervisor'),(240,8591,9,'Stunts'),(240,12288,3,'Executive Producer'),(240,16654,3,'Production Manager'),(240,19254,7,'Art Direction'),(240,29654,8,'Makeup Artist'),(240,81532,8,'Costume Design'),(240,81533,8,'Costume Design'),(240,81538,9,'Title Graphics'),(240,70250,2,'Assistant Director'),(240,91246,9,'Driver'),(240,96912,9,'Special Effects'),(240,557873,1,'Grip'),(240,1318751,6,'Additional Soundtrack'),(240,1328134,8,'Costume Design'),(240,1343811,3,'Unit Manager'),(240,1359894,2,'Assistant Director'),(240,1409008,8,'Makeup Artist'),(240,1419935,8,'Hairstylist'),(240,1427699,2,'Script Supervisor'),(240,1469560,9,'Unit Publicist'),(240,1511706,6,'Sound Recordist'),(240,1518593,2,'Script Supervisor'),(240,1625347,2,'Assistant Director'),(240,1626342,9,'Driver'),(240,1630221,2,'Assistant Director'),(9816,2952,3,'Casting'),(9816,4140,6,'Original Music Composer'),(9816,27041,8,'Costume Design'),(9816,18257,1,'Director of Photography'),(9816,18389,3,'Producer'),(9816,24051,3,'Producer'),(9816,34968,3,'Producer'),(9816,34968,3,'Line Producer'),(9816,52038,2,'Director'),(9816,54776,7,'Production Design'),(9816,54510,4,'Author'),(9816,56511,4,'Author'),(9816,59562,3,'Producer'),(9816,59563,5,'Editor'),(9816,59564,3,'Producer'),(9816,59565,5,'Editor'),(9816,59566,7,'Art Direction'),(9816,59567,7,'Set Decoration'),(9816,91941,3,'Publicist'),(9816,1317675,2,'Script Supervisor'),(9816,1468628,9,'Choreographer'),(8859,5507,3,'Casting'),(8859,8705,7,'Assistant Art Director'),(8859,8588,9,'Set Production Assistant'),(8859,12533,6,'Sound mixer'),(8859,12533,9,'Sound Recordist'),(8859,12587,6,'Boom Operator'),(8859,25143,6,'Original Music Composer'),(8859,20745,8,'Costume Design'),(8859,21615,7,'Production Design'),(8859,21866,7,'Art Direction'),(8859,24192,6,'Music Supervisor'),(8859,25455,3,'Producer'),(8859,33721,2,'First Assistant Director'),(8859,25365,3,'Casting'),(8859,100266,3,'Co-Producer'),(8859,47285,3,'Producer'),(8859,47286,3,'Producer'),(8859,113041,6,'Foley'),(8859,56591,2,'Director'),(8859,56592,4,'Screenplay'),(8859,56593,1,'Director of Photography'),(8859,56594,5,'Editor'),(8859,62896,9,'Video Assist Operator'),(8859,66174,3,'Producer'),(8859,67865,5,'Dialogue Editor'),(8859,74811,6,'Scoring Mixer'),(8859,83088,5,'Dialogue Editor'),(8859,119575,9,'Stunt Coordinator'),(8859,180576,9,'Second Unit'),(8859,548450,10,'3D Artist'),(8859,1015965,8,'Makeup Department Head'),(8859,1181778,1,'Grip'),(8859,1314881,8,'Makeup Artist'),(8859,1341789,10,'Visual Effects Supervisor'),(8859,1342629,2,'Script Supervisor'),(8859,1360097,5,'Dialogue Editor'),(8859,1377125,5,'Dialogue Editor'),(8859,1392919,6,'Music Editor'),(8859,1400855,7,'Greensman'),(8859,1401353,8,'Hair Department Head'),(8859,1402071,6,'Sound Re-Recording Mixer'),(8859,1403542,9,'Digital Effects Supervisor'),(8859,1404339,7,'Set Decoration'),(8859,1410316,6,'Supervising Music Editor'),(8859,1412227,6,'Sound Effects Editor'),(8859,1412228,6,'Sound Effects Editor'),(8859,1414503,7,'Leadman'),(8859,1414922,6,'Sound Editor'),(8859,1416155,6,'Sound Re-Recording Mixer'),(8859,1422071,11,'Chief Lighting Technician'),(8859,1427395,8,'Hairstylist'),(8859,1434171,8,'Key Set Costumer'),(8859,1438571,6,'Sound Designer'),(8859,1440230,6,'Sound Effects Editor'),(8859,1450292,9,'Unit Production Manager'),(8859,1463696,11,'Rigging Grip'),(8859,1477799,9,'Transportation Captain'),(8859,1483569,7,'Construction Coordinator'),(8859,1509828,3,'Location Manager'),(8859,1521476,1,'Camera Operator'),(8859,1537179,1,'Still Photographer'),(8859,1546823,8,'Key Makeup Artist'),(8859,1547313,5,'First Assistant Editor'),(8859,1551351,6,'Music Supervisor'),(8859,1552521,9,'Stunts'),(8859,1555489,7,'Art Department Coordinator'),(8859,1556472,5,'Dialogue Editor'),(8859,1556512,6,'Sound Effects Editor'),(8859,1556513,6,'Sound Effects Editor'),(8859,1556514,9,'Transportation Coordinator'),(8859,1556518,8,'Costume Supervisor'),(8859,1560120,10,'Visual Effects Coordinator'),(8859,1561774,7,'Art Department Assistant'),(8859,1561779,7,'Construction Foreman'),(8859,1561780,7,'Location Scout'),(8859,1561781,7,'Painter'),(8859,1561782,7,'Production Illustrator'),(8859,1561783,7,'Set Decoration Buyer'),(8859,1561784,7,'Set Designer'),(8859,1561785,7,'Standby Painter'),(8859,1562229,1,'First Assistant Camera'),(8859,1562230,8,'Key Hair Stylist'),(8859,1562232,7,'Set Dresser'),(8859,1562233,9,'Carpenter'),(8859,1562234,9,'Chef'),(8859,1562235,9,'Choreographer'),(8859,1562236,9,'Craft Service'),(8859,1562237,9,'Driver'),(8859,1562238,9,'Loader'),(8859,1562239,9,'Post Production Supervisor'),(8859,1562240,9,'Production Office Assistant'),(8859,1562241,9,'Property Master'),(8859,1562242,9,'Propmaker'),(8859,1562243,9,'Set Medic'),(8859,1562244,9,'Special Effects Coordinator'),(8859,1562245,9,'Stand In'),(8859,1562246,9,'Supervising Animator'),(8859,1562246,9,'Animal Coordinator'),(8859,1562247,9,'Unit Publicist'),(8859,1562248,5,'Color Timer'),(8859,1562249,11,'Lighting Technician'),(8859,1562250,3,'Casting Associate'),(8859,1562251,3,'Production Accountant'),(8859,1562252,3,'Production Coordinator'),(8859,1562253,3,'Researcher'),(8859,1562254,6,'ADR Editor'),(8859,1562255,6,'Orchestrator'),(8859,1562256,10,'Digital Compositors'),(8859,1562257,10,'Visual Effects Producer'),(8859,1562258,4,'Storyboard'),(8859,1562259,9,'Score Engineer'),(8859,1691191,3,'Assistant Production Coordinator'),(8859,1733142,5,'Negative Cutter'),(8859,1741114,7,'Assistant Property Master'),(8859,1741115,1,'Dolly Grip'),(8859,1741180,1,'Key Grip'),(8859,1741181,8,'Key Costumer'),(8859,1741185,2,'Second Assistant Director'),(8859,1741188,3,'Casting Assistant'),(8859,1741192,6,'Apprentice Sound Editor'),(8859,1741194,6,'Musician'),(8859,1741199,6,'Utility Sound'),(4951,1800,7,'Set Decoration'),(4951,6210,4,'Theatre Play'),(4951,7413,1,'Director of Photography'),(4951,16593,5,'Editor'),(4951,20359,8,'Costume Design'),(4951,21068,6,'Original Music Composer'),(4951,29525,3,'Producer'),(4951,32279,7,'Production Design'),(4951,40243,2,'Director'),(4951,40589,4,'Writer'),(4951,40590,4,'Writer'),(4951,40591,3,'Executive Producer'),(4951,40592,3,'Executive Producer'),(4951,40593,3,'Associate Producer'),(4951,40594,7,'Art Direction'),(4951,51557,3,'Casting'),(4951,63672,3,'Casting'),(4951,73137,9,'Executive Music Producer'),(4951,74976,6,'Sound Re-Recording Mixer'),(4951,74978,6,'Sound Re-Recording Mixer'),(4951,83085,5,'Dialogue Editor'),(4951,83091,6,'Sound Re-Recording Mixer'),(4951,11014,3,'Unit Production Manager'),(4951,1096443,3,'Casting'),(4951,1190244,2,'Assistant Director'),(4951,1401266,1,'Camera Operator'),(4951,1401266,9,'Steadycam'),(4951,1415618,6,'Supervising Sound Effects Editor'),(4951,1457729,2,'Script Supervisor'),(4951,1479110,3,'Co-Producer'),(4951,1536541,8,'Makeup Artist'),(4951,1546085,8,'Key Hair Stylist'),(4951,1549635,8,'Costume Supervisor'),(4951,1552506,1,'First Assistant Camera'),(4951,1552997,9,'Choreographer'),(4951,1614896,9,'Stunt Coordinator'),(4951,1614897,6,'Boom Operator'),(9644,7414,5,'Editor'),(9644,551,3,'Producer'),(9644,10950,3,'Executive Producer'),(9644,9573,1,'Director of Photography'),(9644,21220,3,'Producer'),(9644,43393,6,'Music'),(9644,56953,2,'Director'),(9644,56953,4,'Screenplay'),(9644,58274,3,'Executive Producer'),(9644,58275,3,'Executive Producer'),(9644,58276,4,'Screenplay'),(1954,298,3,'Producer'),(1954,2507,1,'Director of Photography'),(1954,5362,3,'Casting'),(1954,5363,3,'Casting'),(1954,9409,6,'Sound Re-Recording Mixer'),(1954,10833,5,'Editor'),(1954,14764,6,'Sound Effects Editor'),(1954,14540,7,'Production Design'),(1954,16736,6,'Sound Designer'),(1954,16736,6,'Sound Director'),(1954,17315,3,'Executive Producer'),(1954,20218,4,'Screenplay'),(1954,20218,2,'Director'),(1954,20219,4,'Screenplay'),(1954,20219,2,'Director'),(1954,18976,3,'Executive Producer'),(1954,20222,3,'Producer'),(1954,20223,3,'Producer'),(1954,20224,3,'Producer'),(1954,20225,6,'Original Music Composer'),(1954,20226,5,'Editor'),(1954,10830,3,'Executive Producer'),(1954,23816,8,'Costume Design'),(1954,32200,7,'Art Direction'),(1954,51922,3,'Casting'),(1954,113194,9,'Stunt Coordinator'),(1954,113200,9,'Special Effects Coordinator'),(1954,57430,3,'Executive Producer'),(1954,59055,3,'ADR Voice Casting'),(1954,59099,7,'Assistant Property Master'),(1954,67915,1,'Additional Photography'),(1954,70779,3,'Executive Producer'),(1954,76239,9,'Post Production Assistant'),(1954,161834,4,'Storyboard'),(1954,201064,3,'Co-Producer'),(1954,955111,3,'Executive Producer'),(1954,957821,8,'Key Makeup Artist'),(1954,968264,1,'Still Photographer'),(1954,978336,3,'Production Manager'),(1954,1127809,3,'Associate Producer'),(1954,1127810,3,'Executive Producer'),(1954,1285530,9,'Transportation Coordinator'),(1954,1302178,11,'Gaffer'),(1954,1318219,1,'Camera Operator'),(1954,1333986,7,'Art Direction'),(1954,1333987,7,'Set Decoration'),(1954,1333988,9,'Property Master'),(1954,1333989,7,'Set Decoration Buyer'),(1954,1333990,7,'Construction Coordinator'),(1954,1377293,6,'Sound Effects Editor'),(1954,1378763,10,'Visual Effects Producer'),(1954,1389668,10,'Visual Effects Producer'),(1954,1389669,10,'Visual Effects Supervisor'),(1954,1391725,10,'Visual Effects Coordinator'),(1954,1392916,1,'Camera Operator'),(1954,1394974,1,'Camera Operator'),(1954,1397693,2,'Script Supervisor'),(1954,1399046,7,'Construction Foreman'),(1954,1401604,8,'Wigmaker'),(1954,1404359,6,'Sound Re-Recording Mixer'),(1954,1404546,6,'Music Editor'),(1954,1404709,7,'Art Department Assistant'),(1954,1404841,6,'ADR Supervisor'),(1954,1407804,8,'Key Hair Stylist'),(1954,1407805,9,'Makeup Effects'),(1954,1407806,7,'Art Department Coordinator'),(1954,1407809,9,'Scenic Artist'),(1954,1407810,7,'Greensman'),(1954,1407812,6,'Sound Designer'),(1954,1407812,6,'Sound Director'),(1954,1407813,6,'Sound Designer'),(1954,1407814,6,'Dolby Consultant'),(1954,1407821,10,'Visual Effects Producer'),(1954,1407822,1,'Still Photographer'),(1954,1407823,5,'Digital Intermediate'),(1954,1407824,5,'Digital Intermediate'),(1954,1407825,2,'Script Supervisor'),(1954,1407826,3,'Location Manager'),(1954,1407827,9,'Unit Publicist'),(1954,1547450,6,'Music Supervisor'),(1954,1549445,6,'Sound Engineer'),(1954,1552475,1,'First Assistant Camera'),(1954,1553010,9,'Technical Supervisor'),(1954,1557611,6,'Scoring Mixer'),(1954,1560647,3,'Production Coordinator'),(1954,1573106,5,'Color Timer'),(1954,1573710,9,'Stunts'),(1954,1577048,7,'Location Scout'),(1954,1577049,7,'Painter'),(1954,1577050,1,'Key Grip'),(1954,1577051,8,'Assistant Costume Designer'),(1954,1577052,8,'Hairstylist'),(1954,1577053,7,'Set Dresser'),(1954,1577054,9,'Carpenter'),(1954,1577055,9,'Chef'),(1954,1577056,9,'Driver'),(1954,1577057,9,'Post Production Supervisor'),(1954,1577058,9,'Production Office Assistant'),(1954,1577059,9,'Security'),(1954,1577060,9,'Stand In'),(1954,1577061,9,'Telecine Colorist'),(1954,1577062,9,'Transportation Captain'),(1954,1577063,3,'Unit Production Manager'),(1954,1577064,11,'Best Boy Electric'),(1954,1577065,11,'Electrician'),(1954,1577066,11,'Rigging Gaffer'),(1954,1577067,11,'Rigging Grip'),(1954,1577068,3,'Casting Associate'),(1954,1577070,3,'Executive In Charge Of Production'),(1954,1577071,3,'Production Accountant'),(1954,1577072,6,'Boom Operator'),(1954,1577074,6,'Foley'),(1954,1577076,6,'Sound Mixer'),(1954,1577077,10,'Digital Compositors'),(1954,1577078,10,'I/O Supervisor'),(1954,1577079,9,'Manager of Operations'),(1954,1733238,2,'First Assistant Director'),(1954,1752955,6,'Assistant Sound Editor'),(1954,1768371,1,'Dolly Grip'),(1954,1768372,1,'Grip'),(1954,1768376,9,'In Memory Of'),(1954,1768379,2,'Second Assistant Director'),(1954,1768380,2,'Third Assistant Director'),(1954,1768381,3,'Assistant Production Coordinator'),(1954,1768384,6,'Musician'),(9448,950,5,'Editor'),(9448,5912,3,'Producer'),(9448,5912,6,'Music'),(9448,11401,3,'Executive Producer'),(9448,10814,3,'Producer'),(9448,21586,3,'Producer'),(9448,33577,1,'Director of Photography'),(9448,43610,5,'Editor'),(9448,58036,2,'Director'),(9448,58037,4,'Screenplay'),(9448,58038,3,'Producer'),(5876,1307,3,'Executive Producer'),(5876,59839,3,'Executive Producer'),(5876,3027,4,'Novel'),(5876,3027,9,'Thanks'),(5876,3965,3,'Casting'),(5876,4027,4,'Screenplay'),(5876,4027,2,'Director'),(5876,4027,3,'Producer'),(5876,4140,6,'Original Music Composer'),(5876,66266,9,'Thanks'),(5876,34338,3,'Executive In Charge Of Post Production'),(5876,46966,7,'Art Direction'),(5876,46347,3,'Producer'),(5876,46348,3,'Executive Producer'),(5876,46356,3,'Executive Producer'),(5876,46357,3,'Executive Producer'),(5876,46359,5,'Editor'),(5876,46360,7,'Production Design'),(5876,46361,8,'Costume Design'),(5876,42763,1,'Director of Photography'),(5876,54777,3,'Casting'),(5876,65753,3,'Executive Producer'),(5876,59287,8,'Makeup Artist'),(5876,61094,7,'Set Decoration'),(5876,92488,9,'Stunts'),(5876,71278,3,'Executive In Charge Of Production'),(5876,84702,9,'Stunts'),(5876,117867,6,'Sound Designer'),(5876,117867,6,'Supervising Sound Editor'),(5876,237345,9,'Utility Stunts'),(5876,934273,1,'Camera Operator'),(5876,934273,1,'Steadicam Operator'),(5876,1034748,3,'Casting'),(5876,1190244,2,'Assistant Director'),(5876,1198496,9,'Thanks'),(5876,1333222,9,'Stunt Coordinator'),(5876,1335078,6,'Sound Effects Editor'),(5876,1342242,6,'Sound Re-Recording Mixer'),(5876,1345596,5,'Dialogue Editor'),(5876,1364410,5,'Dialogue Editor'),(5876,1378173,1,'Still Photographer'),(5876,1392145,6,'Music Editor'),(5876,1392908,9,'Post Production Supervisor'),(5876,1392908,10,'Visual Effects Producer'),(5876,1399997,6,'Sound Re-Recording Mixer'),(5876,1400812,5,'Dialogue Editor'),(5876,1403426,8,'Hairstylist'),(5876,1404366,5,'Dialogue Editor'),(5876,1414984,8,'Hair Department Head'),(5876,1421720,9,'Special Effects Coordinator'),(5876,1458527,8,'Makeup Department Head'),(5876,1490951,11,'Gaffer'),(5876,1493161,3,'Casting Associate'),(5876,1555488,6,'Production Sound Mixer'),(5876,1561045,2,'Script Supervisor'),(5876,1561050,6,'Boom Operator'),(5876,1561051,3,'Unit Production Manager'),(5876,1561052,1,'Camera Operator'),(5876,1658836,5,'Digital Intermediate'),(492,202,3,'Executive Producer'),(492,202,4,'Writer'),(492,322,3,'Producer'),(492,671,6,'Supervising Sound Effects Editor'),(492,1225,6,'Original Music Composer'),(492,1781,1,'Director of Photography'),(492,1783,7,'Production Design'),(492,5953,2,'Director'),(492,5956,7,'Art Direction'),(492,5957,7,'Set Decoration'),(492,6713,3,'Executive Producer'),(492,6955,3,'Producer'),(492,6956,3,'Producer'),(492,6957,3,'Producer'),(492,6958,5,'Editor'),(492,6959,3,'Casting'),(492,6961,8,'Costume Design'),(492,6962,6,'Sound Engineer'),(492,6963,9,'Special Effects'),(492,6964,9,'Special Effects'),(492,6965,9,'Special Effects'),(492,6966,9,'Special Effects'),(492,961165,3,'Casting'),(1251,190,2,'Director'),(1251,190,3,'Producer'),(1251,369,7,'Production Design'),(1251,3719,7,'Set Designer'),(1251,384,5,'Editor'),(1251,423,3,'Casting'),(1251,455,4,'Screenplay'),(1251,455,3,'Producer'),(1251,460,1,'Director of Photography'),(1251,461,8,'Costume Design'),(1251,488,3,'Producer'),(1251,795,7,'Production Design'),(1251,4746,3,'Producer'),(1251,33514,4,'Screenplay'),(1251,33525,6,'Original Music Composer'),(1251,33526,6,'Original Music Composer'),(1251,113044,5,'Dialogue Editor'),(1251,66226,9,'Stunt Coordinator'),(1251,74323,8,'Makeup Department Head'),(1251,1178615,1,'Camera Operator'),(1251,1181576,11,'Gaffer'),(1251,1227173,6,'Foley'),(1251,1263143,9,'Property Master'),(1251,1323092,8,'Costume Supervisor'),(1251,1341858,6,'Sound Re-Recording Mixer'),(1251,1342626,6,'Sound Re-Recording Mixer'),(1251,1345618,9,'Transportation Captain'),(1251,1345620,9,'Transportation Coordinator'),(1251,1360101,6,'Foley'),(1251,1368865,6,'Supervising Sound Editor'),(1251,1377122,7,'Art Department Coordinator'),(1251,1377123,7,'Greensman'),(1251,1377124,7,'Set Designer'),(1251,1377125,5,'Dialogue Editor'),(1251,1377126,6,'Boom Operator'),(1251,1377127,5,'Dialogue Editor'),(1251,1377128,10,'Visual Effects Supervisor'),(1251,1377129,10,'Visual Effects Producer'),(1251,1377130,10,'Visual Effects Supervisor'),(1251,1377131,1,'Camera Operator'),(1251,1377132,1,'Camera Operator'),(1251,1377133,1,'Still Photographer'),(1251,1377134,8,'Costume Supervisor'),(1251,1377136,5,'Color Timer'),(1251,1377137,5,'Digital Intermediate'),(1251,1377138,9,'Transportation Co-Captain'),(1251,1377139,3,'Location Manager'),(1251,1377140,2,'Script Supervisor'),(1251,1447543,10,'Visual Effects'),(5172,22119,1,'Director of Photography'),(5172,7480,5,'Editor'),(5172,16731,3,'Producer'),(5172,41886,4,'Screenplay'),(5172,41886,3,'Producer'),(5172,41887,4,'Screenplay'),(5172,41887,2,'Director'),(5172,41887,3,'Producer'),(5172,41888,6,'Production Sound Mixer'),(5172,41889,6,'Music'),(5172,41890,7,'Set Designer'),(5172,41891,10,'Visual Effects'),(5172,41892,3,'Executive Producer'),(5172,41893,3,'Producer'),(5172,41895,3,'Producer'),(5172,41897,3,'Producer'),(3682,4023,3,'Casting'),(3682,135,3,'Executive Producer'),(3682,1307,3,'Executive Producer'),(3682,59839,3,'Executive Producer'),(3682,2866,5,'Editor'),(3682,3192,3,'Casting'),(3682,7229,6,'Original Music Composer'),(3682,5328,3,'Casting'),(3682,5338,6,'Sound Effects Editor'),(3682,8303,3,'Executive Producer'),(3682,10684,3,'Associate Producer'),(3682,12997,3,'Producer'),(3682,15894,6,'Sound Re-Recording Mixer'),(3682,17873,7,'Set Decoration'),(3682,11004,7,'Art Direction'),(3682,20826,8,'Costume Design'),(3682,29218,8,'Hairstylist'),(3682,33541,2,'Director'),(3682,33541,4,'Writer'),(3682,27556,3,'Producer'),(3682,33650,3,'Producer'),(3682,33651,1,'Director of Photography'),(3682,19755,7,'Production Design'),(3682,33662,6,'Music Supervisor'),(3682,89426,6,'Sound Re-Recording Mixer'),(3682,138618,6,'Sound Re-Recording Mixer'),(3682,232158,6,'Music Supervisor'),(3682,572622,6,'Supervising Sound Editor'),(3682,1123421,3,'Line Producer'),(3682,1183452,1,'Still Photographer'),(3682,1327030,6,'Sound Re-Recording Mixer'),(3682,1337469,6,'Music Editor'),(3682,1347755,6,'Music Editor'),(3682,1378828,6,'Sound Re-Recording Mixer'),(3682,1399116,6,'Supervising Sound Editor'),(3682,1399117,6,'Sound Effects Editor'),(3682,1399877,1,'Steadicam Operator'),(3682,1401298,1,'Steadicam Operator'),(3682,1408706,6,'Music Editor'),(3682,1415465,6,'Sound Effects Editor'),(3682,1422411,6,'Sound Effects Editor'),(3682,1457044,8,'Makeup Artist'),(3682,1457044,2,'Script Supervisor'),(3682,1538707,6,'Music Editor'),(3682,1538708,1,'Steadicam Operator'),(9683,2445,3,'Executive Producer'),(9683,9039,6,'Original Music Composer'),(9683,9543,3,'Producer'),(9683,17147,5,'Editor'),(9683,13140,1,'Director of Photography'),(9683,52360,4,'Author'),(9683,52361,4,'Author'),(9683,58518,2,'Director'),(2084,469,6,'Original Music Composer'),(2084,469,6,'Music'),(2084,474,3,'Casting'),(2084,1112,7,'Production Design'),(2084,5361,5,'Editor'),(2084,16425,1,'Director of Photography'),(2084,21339,2,'Director'),(2084,21339,4,'Screenplay'),(2084,21340,4,'Screenplay'),(2084,21341,3,'Producer'),(2084,21342,3,'Producer'),(2084,34553,9,'Special Effects'),(2084,34554,9,'Special Effects Coordinator'),(2084,34555,3,'Casting'),(2084,75485,8,'Hairstylist'),(2084,75485,8,'Makeup Artist'),(2084,81266,8,'Costume Design'),(2084,1304381,7,'Art Direction'),(2084,1319156,7,'Set Decoration'),(2084,1373729,2,'Script Supervisor'),(2084,1411075,8,'Wigmaker'),(2084,1418265,8,'Hairstylist'),(2084,1465595,7,'Set Decoration'),(2084,1465596,8,'Makeup Artist'),(2084,1465597,7,'Art Department Coordinator'),(2084,1638372,7,'Art Direction'),(2266,90,2,'Director'),(2266,104,1,'Director of Photography'),(2266,1357,2,'Director'),(2266,1071,2,'Director'),(2266,1077,1,'Director of Photography'),(2266,1078,5,'Editor'),(2266,3709,3,'Executive Producer'),(2266,1223,2,'Director'),(2266,1224,2,'Director'),(2266,2186,3,'Casting'),(2266,2163,2,'Director'),(2266,2402,3,'Producer'),(2266,2423,1,'Director of Photography'),(2266,5071,1,'Director of Photography'),(2266,5140,2,'Director'),(2266,5216,2,'Director'),(2266,5431,1,'Director of Photography'),(2266,5877,2,'Director'),(2266,6220,2,'Director'),(2266,7294,5,'Editor'),(2266,8574,2,'Director'),(2266,9165,1,'Director of Photography'),(2266,11218,2,'Director'),(2266,13235,2,'Director'),(2266,16927,2,'Director'),(2266,16930,1,'Director of Photography'),(2266,20722,8,'Costume Design'),(2266,18494,1,'Director of Photography'),(2266,20076,1,'Director of Photography'),(2266,20078,7,'Set Decoration'),(2266,56766,1,'Director of Photography'),(2266,21768,2,'Director'),(2266,21769,2,'Director'),(2266,21769,1,'Director of Photography'),(2266,21126,2,'Director'),(2266,21678,2,'Director'),(2266,21681,2,'Director'),(2266,21683,2,'Director'),(2266,21771,2,'Director'),(2266,23382,3,'Producer'),(2266,23395,6,'Original Music Composer'),(2266,23396,7,'Production Design'),(2266,23397,5,'Editor'),(2266,23398,5,'Editor'),(2266,23399,5,'Editor'),(2266,23400,5,'Editor'),(2266,23401,5,'Editor'),(2266,23402,5,'Editor'),(2266,23403,3,'Executive Producer'),(2266,23404,3,'Executive Producer'),(2266,23405,3,'Executive Producer'),(2266,23406,3,'Executive Producer'),(2266,23407,3,'Executive Producer'),(2266,23408,3,'Executive Producer'),(2266,23461,1,'Director of Photography'),(2266,23462,1,'Director of Photography'),(2266,23464,1,'Director of Photography'),(2266,23465,1,'Director of Photography'),(2266,23466,1,'Director of Photography'),(2266,23467,1,'Director of Photography'),(2266,23468,1,'Director of Photography'),(9950,1484,3,'Casting'),(9950,3658,3,'Producer'),(9950,4232,3,'Producer'),(9950,39996,4,'Screenplay'),(9950,39996,2,'Director'),(9950,39996,4,'Author'),(9950,7492,1,'Director of Photography'),(9950,12637,7,'Production Design'),(9950,22219,3,'Casting'),(9950,53468,5,'Editor'),(9950,53469,8,'Costume Design'),(9950,42951,3,'Producer'),(9950,26208,3,'Producer'),(9950,60780,4,'Screenplay'),(9950,60780,3,'Producer'),(9950,60780,4,'Author'),(9950,60781,3,'Producer'),(9950,60784,3,'Executive Producer'),(9950,60785,3,'Co-Producer'),(9950,60782,4,'Screenplay'),(9950,60782,4,'Author'),(9950,60786,3,'Producer'),(9950,60788,3,'Producer'),(9950,60787,3,'Producer'),(9950,60789,3,'Producer'),(9950,60791,3,'Executive Producer'),(9950,60790,6,'Original Music Composer'),(9950,60793,7,'Set Decoration'),(9950,60794,7,'Art Direction'),(9672,566,3,'Producer'),(9672,2242,3,'Casting'),(9672,5913,3,'Casting'),(9672,2423,1,'Director of Photography'),(9672,2862,3,'Producer'),(9672,3562,6,'Original Music Composer'),(9672,5389,7,'Production Design'),(9672,5390,7,'Art Direction'),(9672,5957,7,'Set Decoration'),(9672,19310,8,'Costume Design'),(9672,32983,2,'Director'),(9672,32983,4,'Screenplay'),(9672,47333,3,'Executive Producer'),(9672,59478,3,'Producer'),(9672,59479,5,'Editor'),(9672,92389,6,'Sound Effects Editor'),(9672,91053,8,'Hairstylist'),(9672,94541,3,'Unit Production Manager'),(9672,95741,4,'Book'),(9672,142165,6,'Music Editor'),(9672,967921,3,'Associate Producer'),(9672,992079,3,'Associate Producer'),(9672,1095093,8,'Hair Department Head'),(9672,1372203,8,'Makeup Artist'),(9672,1372209,9,'Special Effects Coordinator'),(9672,1372211,9,'Stunt Coordinator'),(9672,1378765,1,'Still Photographer'),(9672,1397849,1,'Still Photographer'),(9672,1399287,10,'Visual Effects Supervisor'),(9672,1406137,2,'Script Supervisor'),(9672,1407340,8,'Key Hair Stylist'),(9672,1413583,1,'Camera Operator'),(9672,1416093,8,'Hairstylist'),(9672,1420147,8,'Makeup Artist'),(9672,1434161,10,'Visual Effects Producer'),(9672,1436533,8,'Makeup Artist'),(9672,1461605,8,'Makeup Artist'),(9672,1520687,8,'Hairstylist'),(9672,1520688,8,'Hairstylist'),(9672,1529591,1,'Camera Operator'),(9672,1532354,11,'Gaffer'),(9672,1535729,8,'Hairstylist'),(9672,1535734,8,'Makeup Department Head'),(9672,1535770,3,'Production Coordinator'),(9672,1535781,11,'Gaffer'),(8952,59,3,'Executive Producer'),(8952,1112,7,'Production Design'),(8952,20297,5,'Editor'),(8952,29525,3,'Producer'),(8952,58855,3,'Casting'),(8952,40545,1,'Director of Photography'),(8952,56411,2,'Director'),(8952,56411,4,'Writer'),(8952,56412,2,'Director'),(8952,56412,4,'Writer'),(8952,92389,6,'Sound Effects Editor'),(8952,119846,9,'Stunt Coordinator'),(8952,406204,8,'Makeup Department Head'),(8952,1031656,6,'Music'),(8952,1234871,3,'Producer'),(8952,1333607,8,'Costume Supervisor'),(8952,1335059,9,'Special Effects Coordinator'),(8952,1362330,9,'Stunt Coordinator'),(8952,1391597,8,'Costume Supervisor'),(8952,1414143,7,'Art Direction'),(8952,1440753,10,'Special Effects Supervisor'),(8952,1619480,6,'Music Supervisor'),(319,138,4,'Screenplay'),(319,4023,3,'Casting Associate'),(319,947,6,'Original Music Composer'),(319,795,7,'Art Direction'),(319,893,2,'Director'),(319,904,1,'Director of Photography'),(319,908,5,'Editor'),(319,1307,3,'Executive Producer'),(319,59839,3,'Executive Producer'),(319,5914,3,'Casting Associate'),(319,3191,3,'Other'),(319,3191,3,'Casting'),(319,3192,3,'Casting'),(319,4507,3,'Producer'),(319,8297,4,'Screenplay'),(319,4694,3,'Associate Producer'),(319,4695,3,'Co-Producer'),(319,4696,3,'Associate Producer'),(319,4697,3,'Producer'),(319,4698,3,'Associate Producer'),(319,4699,3,'Producer'),(319,4700,3,'Executive Producer'),(319,4701,3,'Co-Producer'),(319,4702,3,'Producer'),(319,6668,5,'Editor'),(319,4710,7,'Production Design'),(319,4712,7,'Set Decoration'),(319,4713,8,'Costume Design'),(319,4714,6,'Sound Editor'),(319,4715,6,'Sound Editor'),(319,4716,6,'Sound Editor'),(319,4717,9,'Special Effects'),(319,4718,9,'Special Effects'),(319,1399876,1,'Still Photographer'),(319,1411276,3,'Location Manager'),(319,1412214,3,'Location Manager'),(319,1422074,2,'Script Supervisor'),(319,1434221,8,'Costume Supervisor'),(319,1578166,7,'Location Scout'),(9504,897,3,'Casting'),(9504,1213,6,'Original Music Composer'),(9504,1255,4,'Screenplay'),(9504,1255,4,'Theatre Play'),(9504,3429,7,'Production Design'),(9504,4183,3,'Unit Production Manager'),(9504,10570,3,'Executive Producer'),(9504,9179,7,'Set Decoration'),(9504,10853,5,'Editor'),(9504,16573,5,'Dialogue Editor'),(9504,20693,1,'Director of Photography'),(9504,21150,9,'Special Effects Coordinator'),(9504,32490,8,'Hair Department Head'),(9504,15890,2,'Director'),(9504,57753,3,'Producer'),(9504,57754,3,'Producer'),(9504,91051,8,'Hairstylist'),(9504,91054,8,'Makeup Artist'),(9504,142168,9,'Transportation Captain'),(9504,578324,2,'Assistant Director'),(9504,957361,1,'Camera Operator'),(9504,958273,2,'Script Supervisor'),(9504,1018812,3,'Co-Producer'),(9504,1035668,8,'Costume Design'),(9504,1113357,3,'Casting'),(9504,1302182,6,'Sound Re-Recording Mixer'),(9504,1378172,6,'Foley'),(9504,1400556,6,'Sound Effects Editor'),(9504,1414994,9,'Property Master'),(9504,1419416,7,'Art Direction'),(9504,1421706,6,'Sound Re-Recording Mixer'),(9504,1430231,7,'Assistant Art Director'),(9504,1449180,11,'Gaffer'),(9504,1530322,6,'Foley'),(9504,1530325,1,'Grip'),(9504,1530326,11,'Electrician'),(9504,1530327,6,'Orchestrator'),(9504,1535413,7,'Construction Coordinator'),(9504,1561591,2,'Assistant Director'),(9504,1564233,5,'Color Timer'),(6217,770,3,'Executive Producer'),(6217,1035,2,'Director'),(6217,1035,4,'Screenplay'),(6217,1154,6,'Music'),(6217,1527,1,'Director of Photography'),(6217,7487,6,'Music'),(6217,23914,9,'Second Unit'),(6217,23349,3,'Casting'),(6217,33830,5,'Editor'),(6217,48804,4,'Story'),(6217,48805,4,'Screenplay'),(6217,48806,3,'Producer'),(6217,48807,5,'Editor'),(6217,48808,5,'Editor'),(6615,1482,3,'Producer'),(6615,33685,5,'Editor'),(6615,5360,1,'Director of Photography'),(6615,15223,7,'Set Decoration'),(6615,15906,3,'Executive Producer'),(6615,35180,3,'Producer'),(6615,36602,3,'Executive Producer'),(6615,50767,2,'Director'),(6615,50768,4,'Writer'),(6615,50769,3,'Producer'),(6615,50770,3,'Executive Producer'),(6615,50771,8,'Costume Design'),(6615,50772,6,'Original Music Composer'),(6615,961166,3,'Executive Producer'),(16,42,2,'Director'),(16,42,1,'Camera Operator'),(16,42,4,'Writer'),(16,6146,3,'Producer'),(16,6750,9,'Choreographer'),(16,1174,3,'Executive Producer'),(16,6759,3,'Producer'),(16,6760,3,'Producer'),(16,6761,3,'Producer'),(16,6762,3,'Producer'),(16,6763,3,'Producer'),(16,6764,3,'Producer'),(16,6765,3,'Producer'),(16,6766,3,'Producer'),(16,47,6,'Original Music Composer'),(16,1632,1,'Director of Photography'),(16,6794,5,'Editor'),(16,6156,5,'Editor'),(16,2952,3,'Casting'),(16,6795,7,'Production Design'),(16,6797,8,'Costume Design'),(16,6157,6,'Sound Designer'),(16,6796,7,'Art Direction'),(16,1016,9,'Production Controller'),(16,1029,6,'Sound Designer'),(16,1634,2,'Assistant Director'),(16,3925,9,'Cinematography'),(16,6151,3,'Co-Executive Producer'),(16,11053,3,'Co-Executive Producer'),(16,19353,3,'Finance'),(16,40417,9,'Stunts'),(16,50630,3,'Producer'),(16,208693,3,'Production Accountant'),(16,1106177,9,'Cinematography'),(16,1135904,8,'Makeup Artist'),(16,1150868,8,'Assistant Costume Designer'),(16,1159914,6,'Dolby Consultant'),(16,1159929,9,'Production Office Assistant'),(16,1190848,9,'Dialect Coach'),(16,1313965,3,'Production Coordinator'),(16,1335599,2,'Assistant Director'),(16,1347938,6,'Sound'),(16,1349080,6,'Sound'),(16,1351726,6,'Boom Operator'),(16,1371215,11,'Gaffer'),(16,1374471,1,'Still Photographer'),(16,1374823,3,'Line Producer'),(16,1394002,6,'ADR & Dubbing'),(16,1400327,5,'Additional Editing'),(16,1468620,8,'Hairstylist'),(16,1468621,8,'Hairstylist'),(16,1468622,8,'Makeup Artist'),(16,1468623,9,'Unit Publicist'),(16,1542396,3,'Unit Production Manager'),(16,1542397,3,'Unit Production Manager'),(16,1542854,9,'Property Master'),(16,1542896,5,'Dialogue Editor'),(16,1542911,11,'Electrician'),(16,1542915,11,'Electrician'),(16,1542916,9,'Post Production Assistant'),(16,1542917,5,'Color Timer'),(16,1543045,9,'Legal Services'),(9552,949,3,'Casting'),(9552,1046,3,'Casting'),(9552,16331,1,'Director of Photography'),(9552,7537,6,'Original Music Composer'),(9552,12848,7,'Set Decoration'),(9552,14539,7,'Assistant Art Director'),(9552,15175,2,'Director'),(9552,15182,9,'Scenic Artist'),(9552,16552,6,'Sound Effects Editor'),(9552,70778,9,'Property Master'),(9552,29342,3,'Executive Producer'),(9552,29654,8,'Makeup Artist'),(9552,53003,3,'Casting'),(9552,57922,4,'Screenplay'),(9552,57922,3,'Producer'),(9552,57922,4,'Novel'),(9552,57924,5,'Editor'),(9552,57925,5,'Editor'),(9552,1052763,7,'Production Design'),(9552,1052765,9,'Special Effects'),(9552,1300903,8,'Costume Design'),(9552,1437273,8,'Hairstylist'),(9552,1437276,1,'Still Photographer'),(9552,1437277,6,'Music Editor'),(578,491,6,'Original Music Composer'),(578,488,2,'Director'),(578,796,7,'Set Decoration'),(578,12865,5,'Assistant Editor'),(578,1297,3,'Producer'),(578,2287,1,'Director of Photography'),(578,5322,3,'Producer'),(578,8554,4,'Screenplay'),(578,8554,4,'Novel'),(578,8555,4,'Screenplay'),(578,8556,5,'Editor'),(578,8558,7,'Production Design'),(578,8573,7,'Art Department Coordinator'),(578,8573,7,'Production Illustrator'),(578,8582,6,'Sound Designer'),(578,8586,9,'Special Effects'),(578,8591,9,'Stunts'),(578,12435,3,'Casting'),(578,13942,8,'Makeup Artist'),(578,17916,2,'Script Supervisor'),(578,66167,5,'Assistant Editor'),(578,66222,3,'Unit Production Manager'),(578,1228010,2,'Assistant Director'),(578,1341399,9,'Property Master'),(578,1416440,2,'Assistant Director'),(578,1430210,8,'Hairstylist'),(578,1511704,2,'Assistant Director'),(578,1574927,8,'Makeup Artist'),(2105,298,3,'Co-Producer'),(2105,562,6,'Supervising Sound Editor'),(2105,1217,5,'Editor'),(2105,1593,3,'Casting'),(2105,1594,3,'Casting Associate'),(2105,3288,2,'Director'),(2105,3288,3,'Producer'),(2105,3289,2,'Director'),(2105,6627,3,'Producer'),(2105,7409,3,'Associate Producer'),(2105,7409,2,'Assistant Director'),(2105,21584,4,'Screenplay'),(2105,21584,3,'Co-Producer'),(2105,21585,3,'Producer'),(2105,21586,3,'Producer'),(2105,21587,6,'Original Music Composer'),(2105,21587,6,'Orchestrator'),(2105,21588,1,'Director of Photography'),(2105,21589,7,'Production Design'),(2105,21589,7,'Art Direction'),(2105,21591,7,'Set Decoration'),(2105,21592,8,'Costume Design'),(2105,26771,11,'Best Boy Electric'),(2105,57084,3,'Co-Producer'),(2105,57084,3,'Unit Production Manager'),(2105,61570,9,'Stunt Coordinator'),(2105,108882,6,'Production Sound Mixer'),(2105,231419,9,'Propmaker'),(2105,232458,9,'Stunts'),(2105,548435,6,'Sound Mixer'),(2105,1049325,5,'Dialogue Editor'),(2105,1219858,9,'Technical Supervisor'),(2105,1271793,9,'Special Effects Coordinator'),(2105,1334782,7,'Set Designer'),(2105,1351327,6,'Boom Operator'),(2105,1367493,6,'Foley'),(2105,1391605,2,'Script Supervisor'),(2105,1392250,9,'Transportation Captain'),(2105,1398120,6,'Sound Designer'),(2105,1398982,9,'Unit Publicist'),(2105,1401368,8,'Set Costumer'),(2105,1405728,8,'Costume Supervisor'),(2105,1409256,6,'Sound Editor'),(2105,1418823,7,'Construction Foreman'),(2105,1428210,11,'Rigging Gaffer'),(2105,1434207,7,'Greensman'),(2105,1435194,6,'Music Editor'),(2105,1436624,7,'Art Department Coordinator'),(2105,1443053,7,'Construction Coordinator'),(2105,1527917,8,'Key Hair Stylist'),(2105,1537119,3,'Production Coordinator'),(2105,1552165,7,'Assistant Art Director'),(2105,1552166,7,'Leadman'),(2105,1552167,7,'Painter'),(2105,1552168,7,'Standby Painter'),(2105,1552169,1,'First Assistant Camera'),(2105,1552171,1,'Steadicam Operator'),(2105,1552172,1,'Still Photographer'),(2105,1552173,9,'Craft Service'),(2105,1552174,9,'Dialect Coach'),(2105,1552176,9,'Driver'),(2105,1552177,9,'Loader'),(2105,1552178,9,'Post Production Assistant'),(2105,1552179,9,'Post Production Supervisor'),(2105,1552180,9,'Production Intern'),(2105,1552181,9,'Property Master'),(2105,1552182,9,'Set Production Assistant'),(2105,1552184,9,'Sound Recordist'),(2105,1552186,9,'Transportation Coordinator'),(2105,1552187,9,'Video Assist Operator'),(2105,1552188,5,'Color Timer'),(2105,1552190,5,'First Assistant Editor'),(2105,1552193,11,'Gaffer'),(2105,1552533,6,'Music Supervisor'),(2105,1593980,8,'Makeup Artist'),(2105,1724854,1,'Grip'),(2105,1724860,8,'Set Dressing Artist'),(2105,1724862,11,'Electrician'),(2105,1724863,11,'Rigging Grip'),(2105,1724864,3,'Location Manager'),(2105,1724865,3,'Production Accountant'),(2105,1724866,3,'Publicist'),(2105,1724867,6,'ADR & Dubbing'),(2105,1724868,6,'First Assistant Sound Editor'),(2105,1724869,6,'Scoring Mixer'),(2105,1724870,6,'Sound Effects Editor'),(154,1729,6,'Original Music Composer'),(154,1802,7,'Production Design'),(154,1801,8,'Costume Design'),(154,1788,2,'Director'),(154,1790,3,'Producer'),(154,1791,4,'Story'),(154,1792,4,'Screenplay'),(154,1792,4,'Story'),(154,1797,6,'Additional Soundtrack'),(154,1798,1,'Director of Photography'),(154,1799,7,'Art Direction'),(154,1800,7,'Set Decoration'),(154,1803,3,'Casting'),(154,1804,5,'Editor'),(3049,206,4,'Screenplay'),(3049,1260,7,'Production Design'),(3049,2121,3,'Casting'),(3049,4499,4,'Screenplay'),(3049,4499,2,'Director'),(3049,4700,3,'Producer'),(3049,11506,1,'Director of Photography'),(3049,15005,5,'Editor'),(3049,29901,4,'Screenplay'),(3049,29901,4,'Story'),(860,794,7,'Production Design'),(860,795,7,'Art Direction'),(860,1047,5,'Editor'),(860,2212,4,'Screenplay'),(860,12846,1,'Director of Photography'),(860,12840,2,'Director'),(860,12841,4,'Screenplay'),(860,12842,3,'Executive Producer'),(860,12843,3,'Producer'),(860,12844,3,'Producer'),(860,12845,6,'Original Music Composer'),(860,12847,3,'Casting'),(860,12848,7,'Set Decoration'),(860,12849,8,'Costume Design'),(860,334300,2,'Assistant Director'),(9281,2690,2,'Director'),(9281,2702,1,'Director of Photography'),(9281,2704,6,'Original Music Composer'),(9281,17399,5,'Editor'),(9281,11302,3,'Producer'),(9281,57122,4,'Screenplay'),(9281,57123,4,'Screenplay'),(9762,7234,7,'Production Design'),(9762,5390,7,'Art Direction'),(9762,9165,1,'Director of Photography'),(9762,11696,3,'Producer'),(9762,11697,3,'Producer'),(9762,29214,2,'Director'),(9762,40384,6,'Original Music Composer'),(9762,18095,1,'Still Photographer'),(9762,20739,3,'Producer'),(9762,20742,3,'Producer'),(9762,29216,9,'Associate Choreographer'),(9762,45841,3,'Casting'),(9762,47288,3,'Executive Producer'),(9762,51690,3,'Executive Producer'),(9762,54510,4,'Story'),(9762,54510,4,'Screenplay'),(9762,54511,3,'Executive Producer'),(9762,54514,6,'Music Supervisor'),(9762,56855,4,'Screenplay'),(9762,67846,5,'Editor'),(9762,206398,9,'Stunt Coordinator'),(9762,224387,3,'Casting'),(9762,410027,7,'Set Decoration'),(9762,1347755,6,'Music Editor'),(9762,1397300,2,'Script Supervisor'),(9762,1398176,8,'Costume Design'),(9762,1404212,6,'Supervising Sound Editor'),(9762,1408396,11,'Rigging Gaffer'),(9762,1562723,11,'Gaffer'),(9762,1562724,7,'Art Department Coordinator'),(3179,12083,4,'Author'),(3179,12083,4,'Screenplay'),(3179,17403,2,'Director'),(3179,17403,4,'Author'),(3179,17403,3,'Producer'),(3179,17403,4,'Screenplay'),(3179,21962,6,'Original Music Composer'),(3179,31093,10,'Animation Director'),(3179,31094,3,'Executive Producer'),(3179,31095,3,'Producer'),(3179,31096,3,'Line Producer'),(3179,93883,4,'Storyboard'),(3179,78438,10,'Animation Director'),(3179,261271,2,'Layout'),(3179,1128341,3,'Executive Producer'),(3179,1146103,2,'Layout'),(3179,1208524,10,'Animation'),(3179,1229002,10,'Animation'),(3179,1383184,9,'Special Effects'),(3179,1447499,7,'Art Department Manager'),(3179,1448479,2,'Layout'),(3179,1448482,7,'Background Designer'),(3179,1449006,10,'Animation Manager'),(3179,1451270,2,'Layout'),(3179,1451270,10,'Animation'),(3179,1460407,9,'Other'),(3179,1462615,4,'Storyboard'),(3179,1462615,7,'Art Department Manager'),(3179,1466408,9,'Special Effects'),(3179,1466409,10,'Visual Effects'),(3179,1466410,7,'Background Designer'),(3179,1466412,2,'Layout'),(3179,1466413,10,'Animation Director'),(3179,1466417,2,'Layout'),(3179,1466417,10,'Animation'),(3179,1466418,7,'Art Department Manager'),(3179,1466420,2,'Layout'),(3179,1466421,10,'Animation Director'),(3179,1466422,2,'Layout'),(3179,1466422,10,'Animation'),(3179,1466423,7,'Art Department Manager'),(3179,1466424,10,'Animation'),(3179,1466425,10,'Animation'),(3179,1746321,3,'Executive Producer'),(184,138,2,'Director'),(184,138,4,'Author'),(184,2545,3,'Producer'),(184,156,5,'Editor'),(184,2235,4,'Novel'),(184,3113,1,'Director of Photography'),(184,5776,3,'Casting'),(184,5777,3,'Casting'),(184,5779,7,'Production Design'),(9357,1075,6,'Original Music Composer'),(9357,1076,6,'Original Music Composer'),(9357,1597,6,'Sound Designer'),(9357,2862,3,'Producer'),(9357,3965,3,'Casting'),(9357,7479,1,'Director of Photography'),(9357,9337,8,'Key Hair Stylist'),(9357,9557,6,'Sound Designer'),(9357,11878,7,'Set Decoration'),(9357,35176,5,'Editor'),(9357,23620,8,'Makeup Artist'),(9357,32797,8,'Costume Design'),(9357,51689,3,'Producer'),(9357,51689,3,'Unit Production Manager'),(9357,56518,7,'Production Design'),(9357,57427,3,'Producer'),(9357,57446,2,'Director'),(9357,57446,4,'Writer'),(9357,1031811,6,'Supervising Sound Editor'),(9357,1034748,3,'Casting'),(9357,1177850,1,'Still Photographer'),(9357,1243381,6,'Sound Re-Recording Mixer'),(9357,1324829,7,'Art Direction'),(9357,1342656,5,'Dialogue Editor'),(9357,1342669,2,'Script Supervisor'),(9357,1357061,6,'Sound Effects Editor'),(9357,1387183,5,'Dialogue Editor'),(9357,1392969,6,'Sound Re-Recording Mixer'),(9357,1397731,1,'Steadicam Operator'),(9357,1398176,8,'Set Costumer'),(9357,1413453,6,'Sound Effects Editor'),(9357,1420160,1,'Steadicam Operator'),(9357,1455294,8,'Costume Supervisor'),(9357,1523400,8,'Makeup Artist'),(9357,1551222,6,'Sound mixer'),(9357,1563879,8,'Set Costumer'),(9357,1563880,7,'Art Department Coordinator'),(9357,1563881,6,'Sound Effects Editor'),(9357,1563882,9,'Special Effects Coordinator'),(9030,720,1,'Director of Photography'),(9030,7229,6,'Music'),(9030,10064,7,'Production Design'),(9030,9183,3,'Producer'),(9030,51030,3,'Executive Producer'),(9030,37021,3,'Executive Producer'),(9030,19656,4,'Screenplay'),(9030,21035,3,'Executive Producer'),(9030,21036,3,'Executive Producer'),(9030,27226,5,'Editor'),(9030,40513,3,'Executive Producer'),(9030,41324,8,'Costume Design'),(9030,43095,3,'Executive Producer'),(9030,56735,2,'Director'),(9030,56736,2,'Director'),(9030,56737,3,'Producer'),(9030,56738,3,'Producer'),(9030,56739,3,'Executive Producer'),(9030,56740,3,'Executive Producer'),(9030,62841,3,'Line Producer'),(9030,1368867,10,'Special Effects Supervisor'),(8386,518,3,'Producer'),(8386,545,3,'Casting'),(8386,5381,3,'Producer'),(8386,5382,3,'Producer'),(8386,5384,6,'Music'),(8386,5378,3,'Executive Producer'),(8386,16464,1,'Director of Photography'),(8386,16567,5,'Editor'),(8386,21420,7,'Production Design'),(8386,21639,3,'Casting'),(8386,47294,8,'Costume Design'),(8386,54584,2,'Director'),(8386,54822,4,'Screenplay'),(8386,54823,3,'Producer'),(8386,54823,6,'Music Supervisor'),(8386,54824,3,'Producer'),(8386,57084,3,'Executive Producer'),(8386,57084,3,'Production Manager'),(8386,64315,5,'First Assistant Editor'),(8386,65736,7,'Set Decoration'),(8386,84050,9,'Stunts'),(8386,108882,6,'Sound Mixer'),(8386,186605,3,'ADR Voice Casting'),(8386,417960,5,'Color Timer'),(8386,932187,7,'Art Direction'),(8386,1049323,6,'Supervising Sound Editor'),(8386,1108721,9,'Property Master'),(8386,1341781,6,'Sound Re-Recording Mixer'),(8386,1341812,9,'Stunt Coordinator'),(8386,1357089,3,'Executive Producer'),(8386,1371001,2,'First Assistant Director'),(8386,1378172,6,'Foley'),(8386,1383838,9,'Stand In'),(8386,1392130,6,'Music Editor'),(8386,1403856,7,'Assistant Property Master'),(8386,1405728,8,'Costume Supervisor'),(8386,1408191,10,'Visual Effects Supervisor'),(8386,1410568,9,'Sound Recordist'),(8386,1414534,3,'Production Accountant'),(8386,1440312,9,'Unit Publicist'),(8386,1443053,7,'Construction Coordinator'),(8386,1477786,1,'Still Photographer'),(8386,1530870,9,'Post Production Supervisor'),(8386,1536636,1,'First Assistant Camera'),(8386,1537119,3,'Production Coordinator'),(8386,1548450,7,'Art Department Coordinator'),(8386,1550388,9,'Driver'),(8386,1552187,9,'Video Assist Operator'),(8386,1565945,1,'Grip'),(8386,1593974,7,'Leadman'),(8386,1593975,7,'Painter'),(8386,1593976,1,'Camera Operator'),(8386,1593977,1,'Key Grip'),(8386,1593978,8,'Hairstylist'),(8386,1593979,8,'Makeup Artist'),(8386,1593980,8,'Makeup Department Head'),(8386,1593981,9,'Craft Service'),(8386,1593982,9,'Set Production Assistant'),(8386,1593984,11,'Best Boy Electric'),(8386,1593985,11,'Electrician'),(8386,1593986,3,'Casting Associate'),(8386,1593987,3,'Location Manager'),(8386,1593988,6,'First Assistant Sound Editor'),(8386,1593989,6,'Sound Designer'),(8386,1593989,6,'Supervising Music Editor'),(8386,1593990,9,'Studio Teachers'),(8386,1733236,9,'Marine Coordinator'),(8386,1837320,7,'Set Dresser'),(8386,1837323,8,'Key Makeup Artist'),(8386,1837338,3,'Assistant Production Coordinator'),(1360,16403,5,'Editor'),(1360,3136,3,'Producer'),(1360,8222,8,'Costume Design'),(1360,275,1,'Director of Photography'),(1360,5581,6,'Original Music Composer'),(1360,11424,7,'Production Design'),(1360,16391,2,'Director'),(1360,16392,4,'Novel'),(1360,16393,4,'Screenplay'),(1360,16394,4,'Screenplay'),(1360,16395,4,'Screenplay'),(1360,16396,4,'Screenplay'),(1360,16397,3,'Producer'),(1360,16398,3,'Producer'),(1360,16399,3,'Producer'),(1360,16400,3,'Producer'),(1360,16401,3,'Producer'),(1360,16402,3,'Producer'),(1360,16404,7,'Art Direction'),(1360,16405,7,'Set Decoration'),(1360,1112564,6,'Music Supervisor'),(1360,1409721,6,'Music Editor'),(1360,1411293,1,'Still Photographer'),(1360,1412600,1,'Steadicam Operator'),(1360,1415328,8,'Key Hair Stylist'),(1360,1530166,6,'Music Supervisor'),(1360,1534463,2,'Script Supervisor'),(9059,24,3,'Executive Producer'),(9059,915,3,'Executive Producer'),(9059,1091,3,'Executive Producer'),(9059,1723,3,'Executive Producer'),(9059,1999,6,'Original Music Composer'),(9059,5776,3,'Casting'),(9059,7187,3,'Executive Producer'),(9059,10953,3,'Producer'),(9059,15521,2,'Director'),(9059,14335,3,'Associate Producer'),(9059,19973,3,'Co-Producer'),(9059,21548,3,'Producer'),(9059,27156,7,'Production Design'),(9059,56859,4,'Writer'),(9059,56860,4,'Writer'),(9059,57526,3,'Associate Producer'),(9059,58313,5,'Editor'),(9059,58209,1,'Director of Photography'),(9059,70574,4,'Writer'),(9059,1214380,3,'Producer'),(9059,1215611,3,'Co-Producer'),(1948,68602,3,'Producer'),(1948,2214,6,'Music'),(1948,3189,5,'Editor'),(1948,3953,3,'Producer'),(1948,3955,3,'Producer'),(1948,3958,10,'Visual Effects Producer'),(1948,3965,3,'Casting'),(1948,51030,3,'Executive Producer'),(1948,10421,7,'Production Design'),(1948,13165,6,'Sound Re-Recording Mixer'),(1948,20192,4,'Screenplay'),(1948,20192,2,'Director'),(1948,20192,1,'Camera Operator'),(1948,20193,4,'Screenplay'),(1948,20193,2,'Director'),(1948,20193,1,'Camera Operator'),(1948,40513,3,'Executive Producer'),(1948,46084,8,'Costume Design'),(1948,52790,3,'Executive Producer'),(1948,54777,3,'Casting'),(1948,62279,7,'Set Decoration'),(1948,82169,1,'Steadicam Operator'),(1948,112521,7,'Art Direction'),(1948,143915,6,'ADR & Dubbing'),(1948,1002641,1,'Director of Photography'),(1948,1005950,3,'Producer'),(1948,1034748,3,'Casting'),(1948,1046971,3,'Production Supervisor'),(1948,1113493,10,'Visual Effects Producer'),(1948,1113495,9,'Visual Effects Editor'),(1948,1183391,1,'Still Photographer'),(1948,1185063,7,'Construction Coordinator'),(1948,1317128,8,'Makeup Department Head'),(1948,1338152,6,'Sound Designer'),(1948,1338456,3,'Location Manager'),(1948,1341783,6,'Foley'),(1948,1341784,6,'Foley'),(1948,1341786,6,'Sound Effects Editor'),(1948,1357063,9,'Stunt Coordinator'),(1948,1378224,7,'Set Designer'),(1948,1378454,11,'Rigging Gaffer'),(1948,1387217,7,'Art Department Coordinator'),(1948,1395023,6,'Sound Effects Editor'),(1948,1399071,1,'Helicopter Camera'),(1948,1399632,6,'Supervising Sound Editor'),(1948,1400339,9,'Sound Recordist'),(1948,1400877,8,'Costume Supervisor'),(1948,1404214,5,'Dialogue Editor'),(1948,1404546,6,'Music Editor'),(1948,1404724,10,'Visual Effects Producer'),(1948,1404739,1,'Helicopter Camera'),(1948,1408284,6,'Sound Re-Recording Mixer'),(1948,1414488,8,'Hairstylist'),(1948,1414489,8,'Hairstylist'),(1948,1414490,8,'Makeup Artist'),(1948,1414491,9,'Makeup Effects'),(1948,1414497,9,'Property Master'),(1948,1414500,7,'Leadman'),(1948,1414502,7,'Leadman'),(1948,1414503,7,'Leadman'),(1948,1414505,7,'Greensman'),(1948,1414517,9,'Visual Effects Editor'),(1948,1414518,10,'Visual Effects Supervisor'),(1948,1414524,9,'Video Assist Operator'),(1948,1414526,10,'Animation Director'),(1948,1414527,8,'Set Costumer'),(1948,1414529,8,'Set Costumer'),(1948,1414531,5,'First Assistant Editor'),(1948,1414532,2,'Script Supervisor'),(1948,1414534,3,'Production Accountant'),(1948,1414535,3,'Publicist'),(1948,1639187,3,'Executive Producer'),(1948,1639187,3,'Unit Production Manager'),(3635,2949,6,'Original Music Composer'),(3635,16785,2,'Director'),(3635,16732,1,'Director of Photography'),(3635,19993,3,'Casting'),(3635,26481,3,'Producer'),(3635,33440,4,'Novel'),(3635,33441,4,'Screenplay'),(3635,33442,3,'Producer'),(3635,33443,5,'Editor'),(3635,33444,7,'Production Design'),(3635,33445,7,'Art Direction'),(3635,33446,7,'Set Decoration'),(3635,33447,8,'Costume Design'),(387,3750,8,'Costume Design'),(387,3479,9,'Sound Recordist'),(387,3771,7,'Production Design'),(387,5231,2,'Director'),(387,5231,4,'Screenplay'),(387,5236,4,'Novel'),(387,5238,3,'Producer'),(387,5239,3,'Producer'),(387,5239,3,'Production Manager'),(387,5240,6,'Original Music Composer'),(387,5241,1,'Director of Photography'),(387,5242,5,'Editor'),(387,5243,3,'Casting'),(387,5244,7,'Art Direction'),(387,5386,9,'Post Production Supervisor'),(387,14776,4,'Screenplay'),(387,32035,3,'Executive Producer'),(387,17810,6,'Foley'),(387,23338,7,'Assistant Art Director'),(387,62585,3,'Executive Producer'),(387,716356,3,'Executive Producer'),(387,985769,3,'Producer'),(387,1339061,8,'Makeup Artist'),(387,1339062,8,'Makeup Artist'),(387,1339063,8,'Makeup Artist'),(387,1339065,7,'Assistant Art Director'),(387,1339066,6,'Sound Effects Editor'),(387,1339068,6,'Sound Effects Editor'),(387,1339070,6,'Foley'),(387,1339071,6,'Sound Effects Editor'),(387,1339072,6,'Music Editor'),(387,1339073,2,'Script Supervisor'),(387,1406223,9,'Property Master'),(387,1406224,9,'Scenic Artist'),(387,1406226,1,'Still Photographer'),(387,1406227,9,'Sound Recordist'),(387,1406228,9,'Sound Recordist'),(387,1406230,9,'Sound Recordist'),(387,1406232,9,'Sound Recordist'),(6020,1918,5,'Editor'),(6020,5666,6,'Original Music Composer'),(6020,11957,3,'Producer'),(6020,486,2,'Director'),(6020,47363,4,'Screenplay'),(6020,47364,4,'Screenplay'),(6020,47365,3,'Producer'),(6020,53840,1,'Director of Photography'),(9550,607,4,'Author'),(9550,607,3,'Producer'),(9550,607,2,'Director'),(9550,1334,4,'Author'),(9550,1335,4,'Author'),(9550,1351,3,'Producer'),(9550,1353,3,'Executive Producer'),(9550,12455,6,'Original Music Composer'),(9550,21907,8,'Costume Design'),(9550,57913,1,'Director of Photography'),(9550,57914,5,'Editor'),(9466,1243,2,'Director'),(9466,1243,4,'Screenplay'),(9466,10440,5,'Editor'),(9466,11905,1,'Director of Photography'),(9466,23966,7,'Production Design'),(9466,27562,3,'Producer'),(7510,287,3,'Producer'),(7510,1262,3,'Casting'),(7510,1298,3,'Producer'),(7510,9360,1,'Still Photographer'),(7510,29788,7,'Production Design'),(7510,38081,3,'Executive Producer'),(7510,41552,6,'Original Music Composer'),(7510,50723,1,'Director of Photography'),(7510,52779,2,'Director'),(7510,52779,3,'Producer'),(7510,52779,4,'Screenplay'),(7510,52781,3,'Producer'),(7510,52781,4,'Book'),(7510,52782,3,'Producer'),(7510,93036,9,'Stunt Coordinator'),(7510,930189,7,'Art Direction'),(7510,1316704,7,'Set Decoration'),(7510,1344840,6,'Music Editor'),(7510,1371115,2,'Script Supervisor'),(7510,1407364,9,'Stunt Coordinator'),(7510,1408357,1,'Steadicam Operator'),(7510,1420160,1,'Steadicam Operator'),(7510,1525236,8,'Costume Design'),(7510,1547186,9,'Special Effects Coordinator'),(7510,1564351,6,'Music Supervisor'),(7510,1564367,5,'Editor'),(7510,1564368,3,'Production Coordinator'),(7510,1564369,7,'Art Department Coordinator'),(1255,10109,7,'Production Design'),(1255,21684,2,'Director'),(1255,21684,4,'Screenplay'),(1255,21685,4,'Screenplay'),(1255,16281,3,'Producer'),(1255,21690,6,'Original Music Composer'),(1255,17133,1,'Director of Photography'),(1255,69388,5,'Editor'),(1255,1531380,3,'Producer'),(1255,1531380,3,'Co-Producer'),(8669,5490,3,'Casting'),(8669,6737,3,'Producer'),(8669,10393,5,'Editor'),(8669,10395,2,'Director'),(8669,11405,3,'Producer'),(8669,16177,6,'Sound Re-Recording Mixer'),(8669,15906,3,'Executive Producer'),(8669,11004,7,'Production Design'),(8669,23486,6,'Original Music Composer'),(8669,24192,6,'Music Supervisor'),(8669,29218,8,'Key Hair Stylist'),(8669,35180,3,'Producer'),(8669,25365,3,'Casting'),(8669,50770,3,'Executive Producer'),(8669,55611,4,'Screenplay'),(8669,55612,1,'Director of Photography'),(8669,55613,8,'Costume Design'),(8669,60088,7,'Art Direction'),(8669,68748,6,'Supervising Sound Editor'),(8669,69226,3,'Executive Producer'),(8669,118944,6,'Sound Effects Editor'),(8669,136008,6,'Supervising Sound Editor'),(8669,1266989,1,'Still Photographer'),(8669,1316504,8,'Key Makeup Artist'),(8669,1326715,7,'Set Decoration'),(8669,1355970,6,'Music Editor'),(8669,1377220,6,'Sound Re-Recording Mixer'),(8669,1392084,5,'Dialogue Editor'),(8669,1392105,9,'Stunt Coordinator'),(8669,1394984,6,'Supervising Music Editor'),(8669,1399521,2,'Script Supervisor'),(8669,1527657,6,'Music Supervisor'),(8669,1531897,9,'Special Effects Coordinator'),(8669,1734775,6,'Sound Mixer'),(8669,1734776,6,'Boom Operator'),(8669,1734780,3,'Producer'),(8669,1734782,3,'Executive Producer'),(8669,1734785,2,'First Assistant Director'),(8669,1734786,2,'Second Assistant Director'),(8669,1734787,2,'Third Assistant Director'),(8669,1734856,3,'Production Coordinator'),(844,607,3,'Producer'),(844,1357,1,'Director of Photography'),(844,12453,3,'Producer'),(844,12453,4,'Screenplay'),(844,12453,2,'Director'),(844,12455,6,'Original Music Composer'),(844,12667,1,'Director of Photography'),(844,12668,1,'Director of Photography'),(844,12682,3,'Producer'),(844,12684,3,'Producer'),(844,18839,3,'Producer'),(844,45818,5,'Editor'),(8060,2952,3,'Casting'),(8060,322,3,'Producer'),(8060,1112,7,'Production Design'),(8060,9573,1,'Director of Photography'),(8060,34110,4,'Screenplay'),(8060,35180,3,'Producer'),(8060,41324,8,'Costume Design'),(8060,53708,2,'Director'),(8060,53708,3,'Producer'),(8060,53708,4,'Screenplay'),(8060,53710,4,'Original Story'),(8060,53711,3,'Producer'),(8060,53712,6,'Music'),(8060,53713,5,'Editor'),(8060,1384398,2,'Script Supervisor'),(8060,1473189,9,'Choreographer'),(8060,1473190,3,'Publicist'),(327,636,6,'Original Music Composer'),(327,3056,3,'Producer'),(327,3317,2,'Director'),(327,3317,4,'Author'),(327,3317,5,'Editor'),(327,4998,1,'Director of Photography'),(327,13273,3,'Casting'),(327,5000,7,'Production Design'),(327,13246,3,'Producer'),(327,13247,8,'Costume Design'),(327,13248,6,'Sound Designer'),(327,15522,3,'Casting'),(327,36081,3,'Line Producer'),(327,69883,3,'Producer'),(327,79535,3,'Producer'),(327,544325,3,'Producer'),(327,1456692,6,'Sound Designer'),(9260,1214,1,'Director of Photography'),(9260,1461,3,'Executive Producer'),(9260,1884,3,'Producer'),(9260,5271,1,'Director of Photography'),(9260,5666,6,'Original Music Composer'),(9260,18350,3,'Executive Producer'),(9260,19271,4,'Screenplay'),(9260,19271,2,'Director'),(9260,19272,4,'Screenplay'),(9260,19272,2,'Director'),(9260,28632,3,'Executive Producer'),(9260,57047,3,'Executive Producer'),(9260,57048,3,'Executive Producer'),(9260,57049,3,'Executive Producer'),(9260,57050,5,'Editor'),(4170,5192,2,'Director'),(4170,5194,1,'Director of Photography'),(4170,5195,5,'Editor'),(4170,6046,3,'Producer'),(4170,5881,6,'Music'),(4170,5882,6,'Music'),(4170,18492,4,'Screenplay'),(4170,32640,7,'Set Designer'),(4170,36579,3,'Producer'),(4170,36582,8,'Costume Design'),(107,29,3,'Executive Producer'),(107,1113,3,'Casting'),(107,960,6,'Original Music Composer'),(107,956,2,'Director'),(107,956,4,'Writer'),(107,957,3,'Producer'),(107,966,1,'Director of Photography'),(107,1112,7,'Production Design'),(107,1114,5,'Editor'),(107,6380,8,'Costume Design'),(107,23449,3,'Co-Producer'),(107,23457,8,'Prosthetic Supervisor'),(107,35388,3,'Executive Producer'),(107,35389,3,'Executive Producer'),(107,61578,3,'Production Manager'),(107,95022,3,'Executive Producer'),(107,143210,6,'Music'),(107,189613,2,'Assistant Director'),(107,1319154,8,'Costume Supervisor'),(107,1319155,7,'Art Direction'),(107,1319156,7,'Set Decoration'),(107,1325234,8,'Makeup Artist'),(107,1327029,6,'Sound Mixer'),(107,1338220,6,'Sound Designer'),(107,1338220,6,'Sound Effects Editor'),(107,1342668,9,'Security'),(107,1402091,3,'Production Coordinator'),(107,1405798,4,'Storyboard'),(107,1405798,1,'Steadicam Operator'),(107,1407676,2,'Script Supervisor'),(107,1409296,6,'Music Editor'),(107,1409296,6,'Supervising Sound Editor'),(107,1415946,8,'Hairstylist'),(107,1438914,9,'Cableman'),(107,1465063,9,'Unit Publicist'),(107,1474352,3,'Executive Producer'),(107,1474353,1,'Still Photographer'),(107,1474353,3,'Associate Producer'),(107,1474354,3,'Associate Producer'),(107,1487710,7,'Assistant Art Director'),(107,1504366,9,'Stunt Coordinator'),(107,1532215,9,'Armorer'),(107,1546161,6,'Foley'),(107,1556947,10,'Special Effects Supervisor'),(107,1557600,5,'First Assistant Editor'),(107,1570207,8,'Key Hair Stylist'),(107,1578092,9,'Dialect Coach'),(107,1578871,9,'Loader'),(107,1621238,5,'Color Timer'),(107,1640354,3,'Location Manager'),(107,1713266,7,'Standby Painter'),(107,1713697,11,'Electrician'),(107,1719777,7,'Construction Coordinator'),(107,1719786,1,'Grip'),(107,1719789,9,'Additional Music'),(107,1719791,9,'Carpenter'),(107,1719792,9,'Driver'),(107,1719794,9,'Property Master'),(107,1719796,9,'Second Unit Cinematographer'),(107,1719798,9,'Stand In'),(107,1719801,9,'Transportation Captain'),(107,1719824,3,'Production Accountant'),(107,1719825,3,'Researcher'),(107,1719826,6,'Boom Operator'),(107,1719827,9,'Score Engineer'),(8913,3027,4,'Screenplay'),(8913,3027,4,'Author'),(8913,5581,6,'Original Music Composer'),(8913,6189,5,'Editor'),(8913,6190,5,'Editor'),(8913,12993,3,'Executive Producer'),(8913,15000,3,'Producer'),(8913,56263,2,'Director'),(8913,56264,1,'Director of Photography'),(927,488,3,'Executive Producer'),(927,671,6,'Supervising Sound Editor'),(927,1760,6,'Original Music Composer'),(927,4600,2,'Director'),(927,9968,7,'Set Decoration'),(927,10064,7,'Production Design'),(927,10965,4,'Screenplay'),(927,16154,3,'Producer'),(927,16155,6,'Original Music Composer'),(927,16156,1,'Director of Photography'),(927,16157,5,'Editor'),(927,16158,3,'Casting'),(927,16159,8,'Makeup Artist'),(927,16160,8,'Hairstylist'),(927,16161,6,'Music Editor'),(927,16162,9,'Special Effects'),(927,16163,9,'Stunt Coordinator'),(927,16164,9,'Stunts'),(11,1,2,'Director'),(11,1,3,'Executive Producer'),(11,1,4,'Writer'),(11,12401,3,'Producer'),(11,19801,3,'Producer'),(11,491,6,'Original Music Composer'),(11,7753,1,'Director of Photography'),(11,3176,3,'Casting'),(11,390,3,'Casting'),(11,669,7,'Art Direction'),(11,2551,5,'Editor'),(11,1221,3,'Casting'),(11,5058,7,'Set Decoration'),(11,5059,7,'Art Direction'),(11,5061,8,'Costume Design'),(11,7727,10,'Animation'),(11,8425,5,'Editor'),(11,10766,5,'Editor'),(11,568911,7,'Production Design'),(11,1424133,10,'Visual Effects'),(907,2704,6,'Original Music Composer'),(907,3778,3,'Producer'),(907,6584,7,'Art Direction'),(907,6791,3,'Casting'),(907,10079,1,'Director of Photography'),(907,10408,3,'Production Manager'),(907,10495,5,'Assistant Editor'),(907,12238,2,'Director'),(907,13317,4,'Screenplay'),(907,13321,7,'Production Design'),(907,14002,4,'Novel'),(907,14003,3,'Executive Producer'),(907,14004,5,'Editor'),(907,14005,7,'Art Direction'),(907,14006,7,'Set Decoration'),(907,14007,8,'Costume Design'),(907,14010,6,'Sound Designer'),(907,14009,9,'Special Effects'),(907,20135,3,'Production Supervisor'),(907,21516,1,'Camera Operator'),(907,27187,8,'Hairstylist'),(907,30829,8,'Makeup Artist'),(907,34310,6,'Orchestrator'),(907,36118,2,'Assistant Director'),(907,47846,1,'Camera Operator'),(907,148872,4,'Dialogue'),(907,1035872,2,'Assistant Director'),(907,1061537,9,'Creative Consultant'),(907,1326089,2,'Script Supervisor'),(907,1560728,8,'Hairstylist'),(907,1583351,3,'Unit Manager'),(907,1597878,6,'Additional Soundtrack'),(907,1650687,9,'Second Unit'),(907,1669756,3,'Production Manager'),(9942,1213,6,'Original Music Composer'),(9942,6881,8,'Costume Design'),(9942,12920,4,'Screenplay'),(9942,12920,2,'Director'),(9942,33486,3,'Producer'),(9942,17948,1,'Director of Photography'),(9942,30606,5,'Editor'),(9942,56829,3,'Co-Producer'),(9942,50855,3,'Executive Producer'),(9942,60699,3,'Producer'),(9942,961149,3,'Casting'),(9942,1526031,7,'Production Design'),(1817,1262,3,'Casting'),(1817,4867,1,'Director of Photography'),(1817,5553,6,'Original Music Composer'),(1817,5572,2,'Director'),(1817,5583,5,'Editor'),(1817,8411,8,'Costume Design'),(1817,12987,3,'Producer'),(1817,19266,4,'Screenplay'),(1817,28636,7,'Production Design'),(1817,51987,7,'Art Direction'),(1817,55246,1,'Still Photographer'),(1817,1395290,2,'Script Supervisor'),(687,151,1,'Director of Photography'),(687,504,2,'Director'),(687,504,3,'Producer'),(687,504,4,'Screenplay'),(687,1204,9,'Thanks'),(687,2236,3,'Executive Producer'),(687,2238,3,'Executive Producer'),(687,3264,3,'Producer'),(687,3264,3,'Unit Production Manager'),(687,3284,9,'Thanks'),(687,6574,9,'Thanks'),(687,4446,3,'Producer'),(687,4849,5,'Dialogue Editor'),(687,10576,7,'Art Direction'),(687,5332,8,'Costume Design'),(687,5669,3,'Casting'),(687,10298,4,'Screenplay'),(687,10364,6,'Original Music Composer'),(687,10364,6,'Music Supervisor'),(687,10365,7,'Production Design'),(687,11625,5,'Editor'),(687,13050,9,'Dialect Coach'),(687,15308,9,'Thanks'),(687,17992,6,'Sound Mixer'),(687,17993,6,'Boom Operator'),(687,17994,6,'Supervising Sound Editor'),(687,17995,6,'Sound Editor'),(687,10917,9,'Thanks'),(687,30601,3,'Associate Producer'),(687,30601,2,'Assistant Director'),(687,46590,9,'Thanks'),(687,52991,2,'Assistant Director'),(687,39624,9,'Thanks'),(687,73772,9,'Thanks'),(687,91061,8,'Set Dressing Artist'),(687,91069,4,'Storyboard'),(687,94313,9,'Thanks'),(687,126929,9,'Thanks'),(687,548849,7,'Assistant Art Director'),(687,938427,9,'Post Production Assistant'),(687,957760,5,'Editor'),(687,1039164,6,'Foley'),(687,1171522,8,'Assistant Costume Designer'),(687,1276530,9,'Thanks'),(687,1287559,3,'Associate Producer'),(687,1320551,8,'Makeup Designer'),(687,1393372,9,'Carpenter'),(687,1393455,2,'Script Supervisor'),(687,1399957,7,'Construction Coordinator'),(687,1401997,11,'Gaffer'),(687,1412081,8,'Makeup Artist'),(687,1412113,1,'Still Photographer'),(687,1434615,6,'Dolby Consultant'),(687,1441122,3,'Associate Producer'),(687,1445469,8,'Key Hair Stylist'),(687,1464521,11,'Rigging Gaffer'),(687,1472378,3,'Location Manager'),(687,1530326,11,'Electrician'),(687,1532409,6,'Music Editor'),(687,1535440,8,'Hairstylist'),(687,1537431,11,'Electrician'),(687,1551815,6,'Orchestrator'),(687,1573081,1,'First Assistant Camera'),(687,1573082,1,'Key Grip'),(687,1667091,9,'Post Production Supervisor'),(687,1667289,1,'Grip'),(687,1680639,5,'Color Timer'),(687,1711218,3,'Production Coordinator'),(687,1771830,1,'Camera Operator'),(687,1773951,7,'Art Department Coordinator'),(687,1773953,7,'Construction Foreman'),(687,1773954,7,'Leadman'),(687,1773955,7,'Painter'),(687,1773956,9,'Additional Music'),(687,1773957,9,'Chef'),(687,1773958,9,'Craft Service'),(687,1773959,9,'Driver'),(687,1773960,9,'Mixing Engineer'),(687,1773961,9,'Production Intern'),(687,1773962,7,'Property Master'),(687,1773963,9,'Scenic Artist'),(687,1773964,9,'Security'),(687,1773965,9,'Set Medic'),(687,1773966,9,'Set Production Assistant'),(687,1773967,6,'Sound Recordist'),(687,1773968,9,'Telecine Colorist'),(687,1773969,9,'Transportation Coordinator'),(687,1774044,5,'First Assistant Editor'),(687,1774046,11,'Best Boy Electric'),(687,1774047,11,'Rigging Grip'),(687,1774049,3,'Production Accountant'),(687,1774052,3,'Production Supervisor'),(687,1774053,6,'Assistant Sound Editor'),(687,1774060,8,'Set Dressing Production Assistant'),(687,1774061,3,'Finance'),(796,8221,7,'Art Direction'),(796,1999,6,'Original Music Composer'),(796,11873,2,'Director'),(796,11873,4,'Screenplay'),(796,11874,3,'Producer'),(796,10815,1,'Director of Photography'),(796,11876,5,'Editor'),(796,11877,7,'Production Design'),(796,11878,7,'Set Decoration'),(796,11879,4,'Author'),(3175,240,4,'Screenplay'),(3175,240,2,'Director'),(3175,240,3,'Producer'),(3175,2027,6,'Original Music Composer'),(3175,2286,1,'Director of Photography'),(3175,2384,3,'Producer'),(3175,5016,3,'Executive Producer'),(3175,5022,7,'Art Direction'),(3175,5671,8,'Costume Design'),(3175,12685,5,'Editor'),(3175,14145,6,'Sound Designer'),(3175,29869,8,'Makeup Artist'),(3175,31061,4,'Novel'),(3175,420075,8,'Costume Design'),(766,531,6,'Original Music Composer'),(766,5398,3,'Executive Producer'),(766,7623,2,'Director'),(766,7623,4,'Screenplay'),(766,7623,5,'Editor'),(766,7712,5,'Editor'),(766,11357,3,'Producer'),(766,9341,1,'Director of Photography'),(766,7629,4,'Screenplay'),(766,11359,3,'Producer'),(766,11468,6,'Original Music Composer'),(766,11757,5,'Editor'),(766,11758,3,'Casting'),(766,11759,7,'Production Design'),(766,11760,7,'Art Direction'),(766,11761,7,'Set Decoration'),(766,11762,8,'Costume Design'),(766,1447503,7,'Art Department Manager'),(1587,3290,4,'Novel'),(1587,3290,4,'Screenplay'),(1587,5306,2,'Director'),(9027,2236,3,'Producer'),(9027,2238,3,'Producer'),(9027,5340,6,'Original Music Composer'),(9027,9150,3,'Executive Producer'),(9027,9151,3,'Executive Producer'),(9027,12970,5,'Editor'),(9027,27679,3,'Producer'),(9027,24256,1,'Director of Photography'),(9027,37630,3,'Executive Producer'),(9027,56714,2,'Director'),(9027,56715,4,'Screenplay'),(9027,56716,5,'Editor'),(1590,1128,2,'Director'),(1590,3311,3,'Casting'),(1590,6891,3,'Executive Producer'),(1590,6895,3,'Executive Producer'),(1590,11227,8,'Costume Design'),(1590,17792,5,'Editor'),(1590,17785,4,'Screenplay'),(1590,17785,3,'Producer'),(1590,17786,4,'Screenplay'),(1590,17791,1,'Director of Photography'),(1590,17793,7,'Production Design'),(1590,17794,7,'Art Direction'),(1590,17795,7,'Art Direction'),(1590,17797,3,'Producer'),(1590,17798,3,'Executive Producer'),(1590,17799,3,'Executive Producer'),(1590,17800,3,'Executive Producer'),(1590,17801,3,'Producer'),(1590,17802,3,'Line Producer'),(1590,17803,3,'Producer'),(1590,1177771,7,'Set Decoration'),(4657,6411,7,'Art Direction'),(4657,10413,4,'Story'),(4657,10413,6,'Original Music Composer'),(4657,38774,2,'Director'),(4657,38775,4,'Writer'),(4657,38776,3,'Producer'),(4657,38777,3,'Executive Producer'),(4657,38778,3,'Executive Producer'),(4657,38779,5,'Editor'),(4657,38781,6,'Sound Designer'),(4657,76203,3,'Casting'),(4657,928371,7,'Production Design'),(4657,928371,8,'Costume Design'),(4657,1485713,3,'Line Producer'),(4657,1485714,6,'Original Music Composer'),(4657,1578018,1,'Director of Photography'),(62,240,3,'Producer'),(62,240,4,'Screenplay'),(62,240,2,'Director'),(62,243,1,'Director of Photography'),(62,244,5,'Editor'),(62,254,6,'Sound mixer'),(62,255,6,'Sound Editor'),(62,241,4,'Novel'),(62,241,4,'Screenplay'),(62,257,3,'Producer'),(62,2288,3,'Casting'),(62,9402,9,'Special Effects'),(62,12510,7,'Production Design'),(62,18758,9,'Special Effects'),(62,26872,7,'Set Decoration'),(62,957776,7,'Art Direction'),(62,986346,7,'Production Design'),(62,1125548,7,'Production Design'),(62,1390333,7,'Construction Coordinator'),(601,491,6,'Original Music Composer'),(601,488,2,'Director'),(601,488,3,'Producer'),(601,489,3,'Producer'),(601,597,3,'Casting'),(601,598,3,'Casting'),(601,599,3,'Casting'),(601,9964,4,'Screenplay'),(601,9965,1,'Director of Photography'),(601,9966,5,'Editor'),(601,9967,7,'Production Design'),(601,9968,7,'Set Decoration'),(601,9969,8,'Makeup Artist'),(601,9970,7,'Art Department Coordinator'),(601,9971,6,'Supervising Sound Editor'),(601,9972,9,'Special Effects'),(601,9973,10,'Visual Effects'),(601,9974,9,'Stunt Coordinator'),(601,9975,9,'Stunts'),(601,20504,9,'Special Effects'),(601,52042,3,'Location Manager'),(489,2545,3,'Producer'),(489,37333,9,'Post Production Consulting'),(489,4023,3,'Casting'),(489,348,9,'Thanks'),(489,531,6,'Music'),(489,564,9,'Thanks'),(489,880,4,'Writer'),(489,950,5,'Editor'),(489,1307,3,'Executive Producer'),(489,59839,3,'Executive Producer'),(489,1892,4,'Writer'),(489,6392,8,'Costume Design'),(489,3192,3,'Casting'),(489,5216,2,'Director'),(489,5216,6,'Sound Re-Recording Mixer'),(489,5216,2,'Script Supervisor'),(489,5328,3,'Casting'),(489,6624,3,'Executive Producer'),(489,6625,3,'Executive Producer'),(489,6626,1,'Director of Photography'),(489,6627,3,'Co-Producer'),(489,6628,7,'Production Design'),(489,6629,7,'Art Direction'),(489,6630,7,'Set Decoration'),(489,9181,9,'Thanks'),(489,12804,9,'Thanks'),(489,19303,3,'Co-Executive Producer'),(489,20503,3,'Co-Executive Producer'),(489,56765,6,'Sound Re-Recording Mixer'),(489,30715,9,'Thanks'),(489,32494,9,'Dialect Coach'),(489,60711,3,'Unit Production Manager'),(489,1074465,6,'Music Supervisor'),(489,1149941,6,'Sound Editor'),(489,1189247,3,'Unit Production Manager'),(489,1208908,1,'Still Photographer'),(489,1280074,5,'First Assistant Editor'),(489,1281538,9,'Stunt Coordinator'),(489,1286355,8,'Hairstylist'),(489,1317044,8,'Makeup Artist'),(489,1341775,9,'Post Production Supervisor'),(489,1359033,11,'Electrician'),(489,1378368,9,'Title Graphics'),(489,1394306,6,'Music Editor'),(489,1401294,11,'Gaffer'),(489,1406780,1,'Camera Operator'),(489,1408708,3,'Location Manager'),(489,1408779,5,'Dialogue Editor'),(489,1419090,8,'Hairstylist'),(489,1419120,3,'Location Manager'),(489,1421706,6,'Sound Re-Recording Mixer'),(489,1428511,9,'Unit Publicist'),(489,1445978,9,'Property Master'),(489,1457637,9,'Special Effects'),(489,1478361,5,'Assistant Editor'),(489,1522742,3,'Casting Associate'),(489,1550756,6,'Sound mixer'),(489,1555013,6,'Supervising Sound Editor'),(489,1555014,6,'Sound Editor'),(489,1555015,6,'Sound Editor'),(489,1555016,11,'Rigging Gaffer'),(489,1555017,9,'Utility Stunts'),(489,1555017,9,'Special Effects Coordinator'),(489,1617016,9,'Post Production Supervisor'),(489,1617026,3,'Production Coordinator'),(214,2128,4,'Screenplay'),(214,2145,3,'Producer'),(214,2147,3,'Producer'),(214,2148,6,'Original Music Composer'),(214,2148,6,'Music'),(214,2149,1,'Director of Photography'),(214,2150,5,'Editor'),(214,2675,2,'Director'),(214,2678,3,'Casting'),(214,2679,7,'Production Design'),(214,51035,8,'Costume Design'),(214,962731,7,'Art Direction'),(214,1317670,7,'Set Decoration'),(1588,15219,3,'Producer'),(1588,16567,5,'Editor'),(1588,59026,2,'Director'),(1588,23486,6,'Music'),(1588,41587,3,'Executive Producer'),(1588,53014,4,'Screenplay'),(1588,53014,3,'Co-Producer'),(1588,53179,3,'Executive Producer'),(1588,52260,9,'Cinematography'),(1588,58846,3,'Producer'),(1588,62557,3,'Executive Producer'),(1588,1332245,9,'Stunts'),(1588,1748754,3,'Co-Producer'),(1588,1748755,3,'Executive Producer'),(663,2127,3,'Executive Producer'),(663,2128,3,'Executive Producer'),(663,2145,3,'Producer'),(663,2146,3,'Producer'),(663,2147,3,'Producer'),(663,2148,6,'Original Music Composer'),(663,2149,1,'Director of Photography'),(663,2150,5,'Editor'),(663,2675,2,'Director'),(663,2678,3,'Casting'),(663,2679,7,'Production Design'),(663,51021,4,'Screenplay'),(663,51023,4,'Screenplay'),(663,51026,3,'Executive Producer'),(663,51029,3,'Executive Producer'),(663,51030,3,'Executive Producer'),(663,51032,3,'Executive Producer'),(663,51034,5,'Editor'),(663,51035,8,'Costume Design'),(663,962731,7,'Art Direction'),(663,1317670,7,'Set Decoration'),(9289,2108,3,'Associate Producer'),(9289,2704,6,'Original Music Composer'),(9289,8502,3,'Producer'),(9289,9894,2,'Director'),(9289,10151,5,'Editor'),(9289,10340,3,'Casting'),(9289,12264,7,'Art Direction'),(9289,12495,7,'Art Direction'),(9289,32293,1,'Director of Photography'),(9289,32097,1,'Director of Photography'),(9289,33261,7,'Art Direction'),(9289,35318,2,'Director'),(9289,46470,4,'Screenplay'),(9289,46470,4,'Novel'),(9289,57142,2,'Director'),(9289,1338491,9,'Special Effects'),(9289,1384061,7,'Set Designer'),(1970,7623,3,'Producer'),(1970,19155,6,'Original Music Composer'),(1970,13585,3,'Casting'),(1970,8708,6,'Sound Effects Editor'),(1970,11359,3,'Producer'),(1970,17215,3,'Line Producer'),(1970,19662,3,'Casting'),(1970,19657,3,'Executive Producer'),(1970,20310,2,'Director'),(1970,20310,4,'Writer'),(1970,20355,4,'Writer'),(1970,20316,3,'Producer'),(1970,20382,5,'Editor'),(1970,20383,7,'Production Design'),(1970,20385,7,'Set Decoration'),(1970,21035,3,'Executive Producer'),(1970,21036,3,'Executive Producer'),(1970,23541,3,'Executive Producer'),(1970,40383,3,'Executive Producer'),(1970,35801,1,'First Assistant Camera'),(1970,40834,3,'Co-Producer'),(1970,40142,9,'Mixing Engineer'),(1970,113044,5,'Dialogue Editor'),(1970,68112,3,'Line Producer'),(1970,113081,6,'Sound Re-Recording Mixer'),(1970,135016,3,'Production Manager'),(1970,135243,9,'Makeup Effects'),(1970,135383,1,'Director of Photography'),(1970,203512,10,'Visual Effects Producer'),(1970,432629,3,'Co-Producer'),(1970,1086377,9,'Stunt Coordinator'),(1970,1236560,3,'Co-Producer'),(1970,1302747,6,'Orchestrator'),(1970,1313926,9,'Post Production Supervisor'),(1970,1316706,8,'Costume Design'),(1970,1330358,2,'Script Supervisor'),(1970,1341855,6,'Foley'),(1970,1392106,1,'Still Photographer'),(1970,1394950,6,'Sound Designer'),(1970,1394950,6,'Supervising Sound Editor'),(1970,1403541,10,'Visual Effects Supervisor'),(1970,1411856,6,'Music Editor'),(1970,1419119,9,'Unit Publicist'),(1970,1428834,5,'Color Timer'),(1970,1457817,7,'Art Direction'),(1970,1457818,8,'Costume Design'),(1970,1473314,3,'Executive In Charge Of Production'),(1970,1509189,6,'Sound Mixer'),(1970,1548730,7,'Set Designer'),(1970,1632014,10,'Digital Compositors'),(1970,1725781,7,'Assistant Art Director'),(1970,1725782,7,'Construction Coordinator'),(1970,1725783,7,'Standby Painter'),(1970,1725784,1,'Grip'),(1970,1725785,8,'Assistant Costume Designer'),(1970,1725786,8,'Makeup Artist'),(1970,1725787,8,'Set Dressing Artist'),(1970,1725788,8,'Set Dressing Artist'),(1970,1725796,9,'Production Controller'),(1970,1725797,9,'Stand In'),(1970,1725798,9,'Telecine Colorist'),(1970,1725808,2,'Assistant Director'),(1970,1725814,5,'First Assistant Editor'),(1970,1725815,11,'Best Boy Electric'),(1970,1725817,3,'Production Accountant'),(1970,1725818,3,'Production Coordinator'),(1970,1725820,3,'Production Supervisor'),(1970,1725821,6,'Music Supervisor'),(1970,1725822,10,'3D Supervisor'),(1970,1725823,10,'Special Effects Supervisor'),(1970,1725824,10,'Visual Effects Coordinator'),(1970,1725825,9,'Translator'),(1970,1725827,9,'Thanks'),(9614,12865,5,'Editor'),(9614,1298,3,'Executive Producer'),(9614,5666,6,'Original Music Composer'),(9614,8859,3,'Executive Producer'),(9614,17494,2,'Director'),(9614,19292,4,'Screenplay'),(9614,29015,3,'Producer'),(9614,56728,4,'Screenplay'),(9614,58187,1,'Director of Photography'),(9614,58188,5,'Editor'),(8922,1776,3,'Executive Producer'),(8922,9437,9,'Stunts'),(8922,33288,9,'Post Production Supervisor'),(8922,33659,9,'Stand In'),(8922,35088,3,'Producer'),(8922,35088,3,'Unit Production Manager'),(8922,39455,3,'Casting'),(8922,56349,2,'Director'),(8922,56349,4,'Screenplay'),(8922,56350,3,'Producer'),(8922,56351,3,'Executive Producer'),(8922,56352,6,'Original Music Composer'),(8922,56353,1,'Director of Photography'),(8922,56354,5,'Editor'),(8922,56354,6,'Music Editor'),(8922,65782,3,'Executive Producer'),(8922,91144,6,'Scoring Mixer'),(8922,110532,2,'First Assistant Director'),(8922,134983,11,'Rigging Grip'),(8922,146522,3,'Executive Producer'),(8922,148221,6,'Supervising Sound Editor'),(8922,173146,6,'Foley'),(8922,961600,7,'Production Design'),(8922,964509,5,'First Assistant Editor'),(8922,1041675,9,'Telecine Colorist'),(8922,1099985,3,'Co-Producer'),(8922,1117763,3,'Executive Producer'),(8922,1181708,11,'Gaffer'),(8922,1309593,8,'Costume Design'),(8922,1324808,8,'Key Makeup Artist'),(8922,1338151,6,'Sound Re-Recording Mixer'),(8922,1338222,8,'Set Costumer'),(8922,1360097,5,'Dialogue Editor'),(8922,1384388,9,'Stunt Coordinator'),(8922,1399130,1,'Still Photographer'),(8922,1401135,6,'Sound Editor'),(8922,1403084,7,'Construction Coordinator'),(8922,1421239,9,'Armorer'),(8922,1421239,9,'Property Master'),(8922,1432023,1,'Camera Operator'),(8922,1481286,8,'Key Hair Stylist'),(8922,1492941,2,'Script Supervisor'),(8922,1535098,6,'Orchestrator'),(8922,1553016,11,'Lighting Technician'),(8922,1562717,3,'Production Supervisor'),(8922,1574819,9,'CG Supervisor'),(8922,1596654,7,'Art Direction'),(8922,1596655,7,'Set Decoration'),(8922,1596704,7,'Art Department Coordinator'),(8922,1596705,7,'Greensman'),(8922,1596706,7,'Location Scout'),(8922,1596707,7,'Production Illustrator'),(8922,1596708,7,'Sculptor'),(8922,1596709,1,'Key Grip'),(8922,1596713,8,'Set Dressing Artist'),(8922,1596715,9,'Carpenter'),(8922,1596717,9,'CGI Supervisor'),(8922,1596719,9,'Craft Service'),(8922,1596720,9,'Driver'),(8922,1596721,9,'Makeup Effects'),(8922,1596722,9,'Post Production Assistant'),(8922,1596724,9,'Propmaker'),(8922,1596729,9,'Scenic Artist'),(8922,1596730,9,'Set Medic'),(8922,1596732,9,'Set Production Assistant'),(8922,1596734,9,'Sound Recordist'),(8922,1596735,9,'Special Effects Coordinator'),(8922,1596737,9,'Utility Stunts'),(8922,1596738,2,'Assistant Director'),(8922,1596739,11,'Electrician'),(8922,1596742,3,'Production Accountant'),(8922,1596745,3,'Production Coordinator'),(8922,1596747,6,'ADR Supervisor'),(8922,1596748,6,'Sound Designer'),(8922,1596749,6,'Sound Effects Editor'),(8922,1596750,10,'3D Supervisor'),(8922,1596751,10,'Visual Effects Producer'),(8922,1596752,10,'Visual Effects Supervisor'),(8922,1752243,2,'Second Assistant Director'),(8922,1762004,6,'Musician'),(8922,1783713,6,'ADR Editor'),(8922,1839445,1,'Dolly Grip'),(8922,1839446,1,'Grip'),(8922,1839447,8,'Makeup Artist'),(8922,1839448,9,'Animal Coordinator'),(8922,1839449,9,'Animal Wrangler'),(8922,1839450,5,'Negative Cutter'),(1648,3393,6,'Music'),(1648,9612,4,'Screenplay'),(1648,9184,3,'Producer'),(1648,11294,7,'Production Design'),(1648,17146,1,'Director of Photography'),(1648,16567,5,'Editor'),(1648,18356,2,'Director'),(1648,18380,5,'Editor'),(1648,18382,4,'Screenplay'),(1648,18383,3,'Producer'),(1648,18384,3,'Producer'),(1648,28162,8,'Costume Design'),(9355,2704,6,'Original Music Composer'),(9355,3108,3,'Casting'),(9355,6581,5,'Editor'),(9355,4501,1,'Director of Photography'),(9355,11452,4,'Screenplay'),(9355,11452,3,'Producer'),(9355,20629,4,'Screenplay'),(9355,20629,2,'Director'),(9355,20629,3,'Producer'),(9355,11651,3,'Producer'),(9355,11650,3,'Producer'),(9355,57433,2,'Director'),(9355,62743,7,'Production Design'),(9355,957789,3,'Producer'),(9355,1803758,10,'Special Effects Supervisor'),(1832,117,6,'Original Music Composer'),(1832,5667,1,'Director of Photography'),(1832,8159,6,'Sound Effects Editor'),(1832,19303,2,'Director'),(1832,19303,5,'Editor'),(1832,19303,4,'Writer'),(1832,18695,1,'Camera Operator'),(1832,20503,5,'Editor'),(1832,20503,3,'Producer'),(1832,23654,7,'Production Design'),(1832,52161,6,'Music Supervisor'),(1832,35594,8,'Costume Design'),(1832,59429,7,'Set Decoration'),(1832,74998,8,'Set Costumer'),(1832,80298,9,'Stunt Coordinator'),(1832,1096345,8,'Hairstylist'),(1832,1224107,2,'Script Supervisor'),(1832,1275452,7,'Art Direction'),(1832,1378696,6,'Supervising Sound Editor'),(1832,1389534,5,'Dialogue Editor'),(1832,1400905,5,'Dialogue Editor'),(1832,1401989,1,'Steadicam Operator'),(1832,1412985,6,'Sound Effects Editor'),(1832,1417002,8,'Key Makeup Artist'),(1832,1521494,8,'Wardrobe Supervisor'),(1832,1567766,7,'Art Department Coordinator'),(1832,1573074,7,'Construction Foreman'),(1832,1617085,4,'Script Editor'),(1832,1636645,7,'Construction Coordinator'),(1832,1656225,6,'Music Editor'),(1832,1683657,2,'First Assistant Director'),(1832,1834300,8,'Makeup Artist'),(1832,1834303,8,'Key Hair Stylist'),(1832,1834309,1,'Steadicam Operator'),(1832,1834310,1,'Camera Operator'),(1832,1834311,6,'Music Director'),(1832,1834324,3,'Production Coordinator'),(1832,1834325,9,'Choreographer'),(9034,894,6,'Original Music Composer'),(9034,5162,3,'Producer'),(9034,8677,1,'Director of Photography'),(9034,12648,2,'Director'),(9034,12648,4,'Screenplay'),(9034,56759,3,'Executive Producer'),(9034,56760,3,'Producer'),(9034,56761,5,'Editor'),(9794,15306,3,'Producer'),(9794,15307,3,'Producer'),(9794,21223,5,'Editor'),(9794,41674,6,'Original Music Composer'),(9794,47364,4,'Author'),(9794,47364,2,'Director'),(9794,59305,4,'Author'),(9794,59306,4,'Author'),(9794,62160,3,'Producer'),(9794,1338215,9,'Stunts'),(227,1776,2,'Director'),(227,2870,3,'Producer'),(227,2871,3,'Producer'),(227,2872,6,'Original Music Composer'),(227,2875,7,'Production Design'),(227,1258,1,'Director of Photography'),(227,2868,4,'Novel'),(227,2869,4,'Screenplay'),(227,2873,5,'Editor'),(227,2874,3,'Casting'),(227,2889,6,'Sound Designer'),(9526,6345,1,'Director of Photography'),(9526,9789,2,'Director'),(9526,9789,3,'Producer'),(9526,10417,3,'Producer'),(9526,18457,3,'Casting'),(9526,26473,3,'Executive Producer'),(9526,30394,8,'Hairstylist'),(9526,32491,8,'Makeup Artist'),(9526,32491,8,'Hairstylist'),(9526,43387,3,'Producer'),(9526,46588,3,'Executive Producer'),(9526,46809,5,'Editor'),(9526,50462,8,'Costume Design'),(9526,52989,3,'Executive Producer'),(9526,57824,4,'Screenplay'),(9526,57824,4,'Story'),(9526,57824,9,'Radio Play'),(9526,75374,8,'Makeup Artist'),(9526,180607,4,'Story'),(9526,986401,3,'Producer'),(9526,986402,3,'Producer'),(9526,986403,3,'Executive Producer'),(9526,1095093,8,'Hair Department Head'),(9526,1119839,3,'Producer'),(9526,1119840,3,'Executive Producer'),(9526,1119841,3,'Executive Producer'),(9526,1119842,3,'Executive Producer'),(9526,1122265,6,'Sound Re-Recording Mixer'),(9526,1324652,1,'Still Photographer'),(9526,1328383,7,'Set Decoration'),(9526,1330609,7,'Production Design'),(9526,1337458,6,'Production Sound Mixer'),(9526,1337461,6,'Sound Re-Recording Mixer'),(9526,1437792,7,'Art Direction'),(9526,1471302,8,'Key Hair Stylist'),(9526,1480633,2,'Script Supervisor'),(9526,1527434,6,'Supervising Sound Editor'),(9526,1560183,8,'Makeup Artist'),(8359,1204,3,'Executive Producer'),(8359,5550,4,'Screenplay'),(8359,13585,3,'Casting'),(8359,52004,3,'Producer'),(8359,15109,3,'Producer'),(8359,55439,2,'Director'),(8359,55440,6,'Original Music Composer'),(8359,55441,1,'Director of Photography'),(8359,55443,3,'Producer'),(8359,55444,3,'Executive Producer'),(8359,61298,5,'Editor'),(8359,982879,7,'Production Design'),(8359,1179134,8,'Costume Design'),(8359,1317669,7,'Art Direction'),(8359,1319467,8,'Makeup Department Head'),(8359,1321697,7,'Set Decoration'),(8359,1334480,7,'Art Department Coordinator'),(8359,1408665,8,'Hairstylist'),(8359,1408666,8,'Hairstylist'),(8359,1458884,8,'Hairstylist'),(8359,1458885,8,'Hairstylist'),(8359,1458886,8,'Costume Supervisor'),(8359,1458887,2,'Script Supervisor'),(9362,671,6,'Supervising Sound Editor'),(9362,869,3,'Executive Producer'),(9362,14716,6,'Music Editor'),(9362,16593,5,'Editor'),(9362,33485,2,'Director'),(9362,42034,6,'Sound Re-Recording Mixer'),(9362,26475,4,'Screenplay'),(9362,26475,3,'Producer'),(9362,26479,4,'Screenplay'),(9362,26479,3,'Producer'),(9362,33651,1,'Director of Photography'),(9362,35594,8,'Costume Design'),(9362,37592,6,'Original Music Composer'),(9362,62584,7,'Production Design'),(9362,73137,6,'Music Supervisor'),(9362,554887,6,'Supervising Sound Editor'),(9362,1194471,1,'Still Photographer'),(9362,1341138,6,'Sound Re-Recording Mixer'),(9362,1342629,2,'Script Supervisor'),(9362,1378171,6,'Sound Re-Recording Mixer'),(9362,1391398,6,'Music Editor'),(9362,1458579,6,'Production Sound Mixer'),(9362,1505133,5,'First Assistant Editor'),(9362,1563914,7,'Set Decoration'),(9362,1563915,7,'Art Direction'),(9362,1563916,5,'First Assistant Editor'),(9902,4017,3,'Producer'),(9902,554,3,'Executive Producer'),(9902,8303,3,'Executive Producer'),(9902,8355,9,'Stunt Coordinator'),(9902,8369,3,'Production Manager'),(9902,9555,6,'Supervising Dialogue Editor'),(9902,11696,3,'Executive Producer'),(9902,11697,3,'Producer'),(9902,14383,6,'Orchestrator'),(9902,99249,3,'Co-Executive Producer'),(9902,20228,6,'Foley'),(9902,22238,3,'Casting Associate'),(9902,33612,7,'Production Design'),(9902,43609,6,'Original Music Composer'),(9902,31175,1,'Director of Photography'),(9902,56452,4,'Screenplay'),(9902,59326,5,'Editor'),(9902,60243,2,'Director'),(9902,60260,3,'Producer'),(9902,60261,3,'Producer'),(9902,76014,3,'Casting'),(9902,76015,3,'Casting'),(9902,83347,9,'Post Production Supervisor'),(9902,85960,6,'Sound Effects Editor'),(9902,132607,5,'Dialogue Editor'),(9902,180868,9,'Second Unit Cinematographer'),(9902,558227,8,'Key Makeup Artist'),(9902,946610,3,'Line Producer'),(9902,947235,2,'Second Assistant Director'),(9902,960707,8,'Costume Design'),(9902,1002652,10,'Visual Effects Supervisor'),(9902,1018754,2,'First Assistant Director'),(9902,1156888,5,'First Assistant Editor'),(9902,1316787,9,'Utility Stunts'),(9902,1317673,7,'Art Direction'),(9902,1326714,3,'Casting'),(9902,1326715,7,'Set Decoration'),(9902,1326717,8,'Costume Supervisor'),(9902,1337452,9,'Property Master'),(9902,1337455,7,'Construction Coordinator'),(9902,1337457,6,'Boom Operator'),(9902,1340346,6,'ADR Editor'),(9902,1355878,6,'Supervising Sound Effects Editor'),(9902,1364796,6,'First Assistant Sound Editor'),(9902,1364801,6,'Music Editor'),(9902,1376276,6,'Supervising Music Editor'),(9902,1387523,2,'Script Supervisor'),(9902,1401291,10,'Special Effects Supervisor'),(9902,1401292,10,'Visual Effects Producer'),(9902,1401294,11,'Gaffer'),(9902,1401296,1,'Camera Operator'),(9902,1403403,9,'Systems Administrators & Support'),(9902,1408667,8,'Prosthetic Makeup Artist'),(9902,1408708,3,'Location Manager'),(9902,1409220,6,'Sound Re-Recording Mixer'),(9902,1413913,9,'Transportation Coordinator'),(9902,1418489,9,'Unit Publicist'),(9902,1419814,1,'First Assistant Camera'),(9902,1423211,7,'Assistant Art Director'),(9902,1428480,6,'Dolby Consultant'),(9902,1436500,7,'Greensman'),(9902,1440299,6,'Sound Designer'),(9902,1472287,3,'Co-Executive Producer'),(9902,1472288,3,'Executive Producer'),(9902,1523407,8,'Assistant Costume Designer'),(9902,1529603,3,'Production Coordinator'),(9902,1531896,9,'Armorer'),(9902,1535309,6,'Music Supervisor'),(9902,1537721,1,'Still Photographer'),(9902,1550344,6,'Production Sound Mixer'),(9902,1572875,8,'Key Hair Stylist'),(9902,1595488,3,'Production Accountant'),(9902,1600548,7,'Art Department Coordinator'),(9902,1600549,7,'Leadman'),(9902,1600612,7,'Painter'),(9902,1600613,1,'Key Grip'),(9902,1600617,7,'Set Dresser'),(9902,1600618,9,'Additional Music'),(9902,1600620,9,'Carpenter'),(9902,1600621,9,'Craft Service'),(9902,1600622,9,'Driver'),(9902,1600623,1,'Camera Loader'),(9902,1600624,9,'Makeup Effects'),(9902,1600628,9,'Scenic Artist'),(9902,1600629,9,'Transportation Captain'),(9902,1600630,9,'Video Assist Operator'),(9902,1600631,5,'Color Timer'),(9902,1600632,11,'Best Boy Electric'),(9902,1600633,11,'Electrician'),(9902,1600634,10,'Digital Compositors'),(9902,1600635,4,'Storyboard'),(9902,1619091,3,'Assistant Production Coordinator'),(9902,1643845,9,'Pyrotechnician'),(9902,1733237,9,'Pilot'),(9902,1840062,7,'Assistant Property Master'),(9902,1840694,1,'Dolly Grip'),(9902,1840699,1,'Grip'),(9902,1840721,2,'Third Assistant Director'),(9902,1841588,6,'Assistant Sound Editor'),(9902,1841589,10,'Character Designer'),(9455,1225,6,'Music'),(9455,5379,3,'Producer'),(9455,10853,5,'Editor'),(9455,20693,9,'Cinematography'),(9455,15890,2,'Director'),(9455,58010,4,'Screenplay'),(9455,1703992,6,'Music'),(9515,517,3,'Producer'),(9515,2031,3,'Casting'),(9515,2532,3,'Casting'),(9515,4232,3,'Executive Producer'),(9515,4906,3,'Casting'),(9515,6048,3,'Executive Producer'),(9515,6800,1,'Director of Photography'),(9515,13928,3,'Producer'),(9515,21717,5,'Editor'),(9515,21963,7,'Production Design'),(9515,24190,6,'Original Music Composer'),(9515,35179,3,'Executive Producer'),(9515,41677,3,'Casting'),(9515,44740,2,'Director'),(9515,44740,4,'Author'),(9515,50462,8,'Costume Design'),(9515,51451,3,'Executive Producer'),(9515,51452,3,'Executive Producer'),(9515,51541,3,'Producer'),(9515,51542,3,'Producer'),(9515,61047,3,'Producer'),(9515,61046,3,'Producer'),(9515,57871,3,'Producer'),(9515,61048,3,'Producer'),(9515,61049,3,'Producer'),(9515,61050,3,'Producer'),(9515,61051,3,'Executive Producer'),(9515,61052,3,'Producer'),(9515,61055,7,'Art Direction'),(9515,61053,7,'Art Direction'),(9515,61054,7,'Set Decoration'),(9515,61056,7,'Set Decoration'),(1542,6901,7,'Production Design'),(1542,17146,1,'Director of Photography'),(1542,14096,3,'Casting'),(1542,17403,4,'Screenplay'),(1542,17403,2,'Director'),(1542,21962,6,'Original Music Composer'),(1542,22303,5,'Editor'),(1542,24177,3,'Producer'),(1542,51985,3,'Executive Producer'),(1542,60871,7,'Art Direction'),(1542,119846,9,'Stunts'),(1542,143903,9,'Stunts'),(1542,143904,9,'Stunts'),(1542,1229515,3,'Producer'),(1542,1399638,9,'Stunt Coordinator'),(1542,1524647,8,'Costume Design'),(9893,14378,7,'Art Direction'),(9893,18276,5,'Editor'),(9893,19679,3,'Casting'),(9893,19680,3,'Casting'),(9893,20745,8,'Costume Design'),(9893,20825,7,'Production Design'),(9893,35513,7,'Set Decoration'),(9893,50139,3,'Producer'),(9893,49912,6,'Music Supervisor'),(9893,50706,4,'Writer'),(9893,51783,1,'Director of Photography'),(9893,54597,2,'Director'),(9893,57174,3,'Producer'),(9893,57175,3,'Producer'),(9893,60068,6,'Original Music Composer'),(9893,60069,3,'Casting Associate'),(9893,60070,3,'Executive Producer'),(9893,60070,3,'Unit Production Manager'),(9893,61089,3,'Production Supervisor'),(9893,161159,1,'Still Photographer'),(9893,1299130,11,'Gaffer'),(9893,1319193,8,'Costume Supervisor'),(9893,1378752,7,'Art Department Coordinator'),(9893,1396827,6,'Music Editor'),(9893,1396840,6,'Sound mixer'),(9893,1414532,2,'Script Supervisor'),(9893,1559512,1,'Camera Operator'),(9893,1559586,6,'Music Supervisor'),(9893,1559614,9,'Transportation Coordinator'),(9893,1559615,9,'Transportation Captain'),(3472,294,5,'Editor'),(3472,466,3,'Executive Producer'),(3472,1112,7,'Production Design'),(3472,2863,6,'Original Music Composer'),(3472,3224,2,'Director'),(3472,4584,3,'Producer'),(3472,7659,6,'Sound Re-Recording Mixer'),(3472,8969,1,'Director of Photography'),(3472,8969,1,'Camera Operator'),(3472,9160,6,'Music Editor'),(3472,15727,3,'Producer'),(3472,16343,6,'Supervising Sound Editor'),(3472,17600,3,'Executive Producer'),(3472,19993,3,'Casting'),(3472,20064,3,'Executive Producer'),(3472,20424,8,'Costume Design'),(3472,23227,4,'Screenplay'),(3472,57584,3,'Executive Producer'),(3472,1002296,3,'Executive Producer'),(3472,1063673,3,'Executive Producer'),(3472,1137532,3,'Line Producer'),(3472,1338127,1,'First Assistant Camera'),(3472,1395024,6,'Sound Re-Recording Mixer'),(3472,1406986,2,'Script Supervisor'),(3472,1413035,1,'Steadicam Operator'),(3472,1418317,3,'Production Coordinator'),(3472,1421657,1,'Still Photographer'),(3472,1428506,1,'Steadicam Operator'),(3472,1544338,6,'Music Supervisor'),(3472,1544372,6,'Supervising Sound Editor'),(3472,1544374,8,'Assistant Costume Designer'),(3472,1638372,7,'Art Direction'),(73,29,3,'Executive Producer'),(73,852,5,'Editor'),(73,814,2,'Director'),(73,814,1,'Camera Operator'),(73,816,3,'Producer'),(73,818,4,'Author'),(73,818,4,'Screenplay'),(73,818,3,'Co-Producer'),(73,851,6,'Original Music Composer'),(73,853,5,'Editor'),(73,859,3,'Casting'),(73,4767,3,'Co-Executive Producer'),(73,9427,6,'Sound Designer'),(73,9435,6,'Foley'),(73,11877,7,'Production Design'),(73,11878,7,'Set Decoration'),(73,14040,7,'Art Direction'),(73,12775,3,'Executive In Charge Of Post Production'),(73,16994,6,'Sound Effects Editor'),(73,10770,3,'Executive Producer'),(73,22077,3,'Executive In Charge Of Production'),(73,23420,3,'Executive Producer'),(73,23420,3,'Unit Production Manager'),(73,57857,3,'Co-Executive Producer'),(73,82033,3,'Co-Producer'),(73,111187,9,'Pilot'),(73,108882,9,'Sound Recordist'),(73,112572,9,'Stunt Coordinator'),(73,113851,9,'Craft Service'),(73,232062,3,'Casting Assistant'),(73,431491,8,'Costume Design'),(73,930047,9,'Set Production Assistant'),(73,1010751,6,'Sound Re-Recording Mixer'),(73,1124740,1,'Steadicam Operator'),(73,1280435,10,'Special Effects Supervisor'),(73,1324409,8,'Costume Supervisor'),(73,1329967,3,'Production Supervisor'),(73,1332244,9,'Choreographer'),(73,1339447,6,'Boom Operator'),(73,1367365,6,'Additional Sound Re-Recording Mixer'),(73,1397737,9,'Transportation Coordinator'),(73,1400384,9,'Unit Publicist'),(73,1400537,6,'Music Editor'),(73,1401354,3,'Production Coordinator'),(73,1403390,3,'Assistant Production Coordinator'),(73,1404363,5,'Dialogue Editor'),(73,1404364,6,'Assistant Sound Editor'),(73,1411293,1,'Still Photographer'),(73,1412228,6,'Production Sound Mixer'),(73,1414562,3,'Production Accountant'),(73,1428210,11,'Rigging Gaffer'),(73,1435576,8,'Hairstylist'),(73,1452839,6,'Orchestrator'),(73,1467278,7,'Art Direction'),(73,1470642,3,'Executive Producer'),(73,1533790,2,'Script Supervisor'),(73,1537497,6,'ADR Supervisor'),(73,1541693,6,'Music Supervisor'),(73,1548635,9,'Stunts'),(73,1551937,8,'Key Costumer'),(73,1551989,7,'Construction Coordinator'),(73,1551990,7,'Construction Foreman'),(73,1551991,7,'Location Scout'),(73,1551993,7,'Painter'),(73,1551995,1,'Additional Photography'),(73,1551996,1,'First Assistant Camera'),(73,1551997,1,'Key Grip'),(73,1551999,8,'Makeup Artist'),(73,1552001,8,'Seamstress'),(73,1552002,8,'Wigmaker'),(73,1552006,9,'Chef'),(73,1552008,9,'Driver'),(73,1552009,1,'Camera Loader'),(73,1552011,9,'Post Production Supervisor'),(73,1552012,9,'Property Master'),(73,1552013,9,'Scenic Artist'),(73,1552014,9,'Set Medic'),(73,1552019,9,'Transportation Captain'),(73,1552020,9,'Transportation Co-Captain'),(73,1552022,2,'First Assistant Director'),(73,1552025,5,'Color Timer'),(73,1552028,5,'First Assistant Editor'),(73,1552032,11,'Best Boy Electric'),(73,1552036,11,'Electrician'),(73,1552037,11,'Gaffer'),(73,1552038,11,'Chief Lighting Technician'),(73,1552039,3,'Casting Associate'),(73,1552041,3,'Location Manager'),(73,1552045,6,'Sound Engineer'),(73,1552050,6,'Scoring Mixer'),(73,1647465,9,'Production Controller'),(73,1735722,7,'Assistant Property Master'),(73,1735723,7,'Set Dresser'),(73,1735724,7,'Title Designer'),(73,1735725,1,'Dolly Grip'),(73,1735726,1,'Grip'),(73,1735731,2,'Second Assistant Director'),(73,1735735,6,'Foley Editor'),(73,1735736,6,'Musician'),(73,1860380,10,'Visual Effects'),(404,5602,2,'Director'),(404,5602,6,'Sound Designer'),(404,5603,4,'Screenplay'),(404,5604,3,'Producer'),(404,5604,5,'Editor'),(404,5604,4,'Screenplay'),(404,5624,3,'Executive Producer'),(404,5625,3,'Producer'),(404,5626,3,'Executive Producer'),(404,5628,6,'Music'),(404,5629,1,'Director of Photography'),(404,5630,3,'Casting'),(404,5631,3,'Casting'),(404,5632,7,'Production Design'),(404,5633,7,'Set Decoration'),(404,5634,8,'Costume Design'),(404,5635,6,'Music Editor'),(404,1735912,6,'Sound Designer'),(7942,4584,3,'Producer'),(7942,11108,4,'Screenplay'),(7942,14409,2,'Director'),(7942,22224,4,'Screenplay'),(7942,53358,3,'Producer'),(7942,53359,3,'Executive Producer'),(7942,53360,3,'Executive Producer'),(7942,53361,5,'Editor'),(9952,122,6,'Original Music Composer'),(9952,6818,4,'Author'),(9952,6818,2,'Director'),(9952,6826,1,'Director of Photography'),(9952,6827,5,'Editor'),(9952,18691,3,'Executive Producer'),(9952,43104,3,'Producer'),(9952,53648,3,'Casting'),(9952,59001,3,'Executive Producer'),(9952,59002,3,'Executive Producer'),(9952,59003,3,'Producer'),(9952,59004,3,'Producer'),(9952,60835,3,'Executive Producer'),(9952,60836,3,'Producer'),(9952,60840,3,'Producer'),(9952,60841,3,'Executive Producer'),(9952,60838,3,'Executive Producer'),(9952,60839,3,'Producer'),(9952,60837,3,'Producer'),(9952,60843,8,'Costume Design'),(9952,60844,7,'Art Direction'),(9952,1350049,3,'Executive Producer'),(2088,120,1,'Director of Photography'),(2088,154,5,'Editor'),(2088,897,3,'Casting'),(2088,4140,6,'Original Music Composer'),(2088,4189,8,'Costume Design'),(2088,8251,4,'Screenplay'),(2088,8251,3,'Producer'),(2088,11713,7,'Art Direction'),(2088,12258,7,'Set Decoration'),(2088,21377,2,'Director'),(2088,21378,3,'Producer'),(2088,21379,7,'Production Design'),(2088,142152,8,'Makeup Artist'),(2088,1183454,2,'Script Supervisor'),(2088,1399989,7,'Construction Coordinator'),(2088,1445469,8,'Hairstylist'),(2088,1535431,8,'Hairstylist'),(2088,1535434,8,'Makeup Artist'),(1640,455,4,'Screenplay'),(1640,455,2,'Director'),(1640,455,3,'Producer'),(1640,1896,3,'Producer'),(1640,4232,3,'Producer'),(1640,4140,6,'Original Music Composer'),(1640,7232,3,'Casting'),(1640,7232,3,'Co-Producer'),(1640,12598,11,'Gaffer'),(1640,13177,6,'Sound Re-Recording Mixer'),(1640,20649,5,'Editor'),(1640,17451,3,'Producer'),(1640,17799,3,'Executive Producer'),(1640,20540,3,'Casting'),(1640,20540,3,'Co-Producer'),(1640,21118,1,'Director of Photography'),(1640,23973,8,'Costume Design'),(1640,29787,3,'Producer'),(1640,25550,7,'Production Design'),(1640,61051,3,'Executive Producer'),(1640,59418,3,'Co-Producer'),(1640,69306,3,'Executive Producer'),(1640,112307,7,'Set Decoration'),(1640,137064,4,'Screenplay'),(1640,137064,3,'Producer'),(1640,182168,9,'Stunt Coordinator'),(1640,589974,1,'Still Photographer'),(1640,963861,1,'Camera Operator'),(1640,1342242,6,'Sound Re-Recording Mixer'),(1640,1355878,6,'Supervising Sound Editor'),(1640,1377293,5,'Dialogue Editor'),(1640,1387195,6,'Sound Re-Recording Mixer'),(1640,1404841,5,'Dialogue Editor'),(1640,1457819,7,'Art Direction'),(1640,1458216,2,'Script Supervisor'),(1640,1526279,3,'Associate Producer'),(1640,1551221,1,'Still Photographer'),(1640,1551222,6,'Sound mixer'),(1640,1551224,11,'Rigging Gaffer'),(1640,1551226,1,'First Assistant Camera'),(9613,224,2,'Director'),(9613,224,3,'Producer'),(9613,307,1,'Director of Photography'),(9613,310,5,'Editor'),(9613,117,6,'Original Music Composer'),(9613,4697,3,'Producer'),(9613,5330,7,'Art Direction'),(9613,6225,3,'Executive Producer'),(9613,6226,3,'Executive Producer'),(9613,8946,3,'Associate Producer'),(9613,12614,8,'Makeup Artist'),(9613,13551,8,'Costume Design'),(9613,15222,7,'Art Direction'),(9613,23547,7,'Set Decoration'),(9613,31516,3,'Executive Producer'),(9613,40148,3,'Executive Producer'),(9613,43382,3,'Executive Producer'),(9613,43383,3,'Executive Producer'),(9613,43384,3,'Executive Producer'),(9613,58047,3,'Executive Producer'),(9613,58185,4,'Writer'),(9613,58185,4,'Novel'),(9613,58186,3,'Producer'),(9613,59716,3,'Executive Producer'),(9613,80684,3,'Associate Producer'),(9613,957624,7,'Production Design'),(9613,1008067,3,'Line Producer'),(9613,1285953,7,'Set Decoration'),(9613,1317048,8,'Assistant Costume Designer'),(9613,1398505,3,'Casting'),(9613,1399919,9,'Special Effects Coordinator'),(9613,1404851,8,'Costume Supervisor'),(9613,1425975,7,'Construction Coordinator'),(9613,1427915,3,'Associate Producer'),(9613,1428469,8,'Hair Designer'),(9613,1457045,2,'Script Supervisor'),(9613,1529005,9,'Carpenter'),(9613,1529006,9,'Carpenter'),(9613,1529007,9,'Carpenter'),(9613,1529009,10,'Special Effects Supervisor'),(9613,1529011,8,'Set Costumer'),(1989,2952,3,'Casting'),(1989,2240,1,'Director of Photography'),(1989,6918,6,'Original Music Composer'),(1989,9547,7,'Art Direction'),(1989,12453,2,'Director'),(1989,12453,4,'Screenplay'),(1989,12453,3,'Producer'),(1989,12667,1,'Director of Photography'),(1989,20473,3,'Producer'),(1989,20474,3,'Producer'),(1989,20475,3,'Producer'),(1989,20476,3,'Producer'),(1989,12064,8,'Costume Design'),(1989,45817,4,'Screenplay'),(1989,45818,7,'Production Design'),(1989,45818,10,'Creature Design'),(1989,45818,8,'Costume Design'),(1989,45818,5,'Editor'),(1989,1472449,2,'Script Supervisor'),(1989,1473178,8,'Hairstylist'),(1989,1473179,8,'Makeup Artist'),(1989,1473180,9,'Unit Publicist'),(5072,4018,3,'Executive Producer'),(5072,2073,3,'Casting'),(5072,6713,3,'Executive Producer'),(5072,41041,4,'Screenplay'),(5072,41041,2,'Director'),(5072,41844,4,'Screenplay'),(5072,41845,3,'Producer'),(5072,41846,6,'Original Music Composer'),(5072,41846,6,'Music'),(5072,41535,5,'Editor'),(5072,41847,1,'Director of Photography'),(5072,41848,7,'Production Design'),(5072,51675,3,'Producer'),(5072,63010,7,'Set Decoration'),(5072,1122198,3,'Co-Producer'),(5072,1318478,8,'Costume Design'),(5072,1456968,3,'Casting'),(7006,6045,7,'Production Design'),(7006,11821,7,'Art Direction'),(7006,17212,6,'Music'),(7006,23811,3,'Casting'),(7006,27226,2,'Director'),(7006,27226,5,'Editor'),(7006,43901,3,'Producer'),(7006,47102,1,'Director of Photography'),(7006,51794,4,'Screenplay'),(7006,51795,5,'Editor'),(7006,61539,8,'Costume Design'),(7006,53114,7,'Set Decoration'),(7006,129988,8,'Costume Supervisor'),(9700,1271,2,'Director'),(9700,1271,3,'Executive Producer'),(9700,51668,5,'Editor'),(9700,58638,4,'Author'),(9700,58639,4,'Author'),(9700,59981,3,'Executive Producer'),(9700,59982,1,'Director of Photography'),(667,1299,4,'Screenplay'),(667,2289,6,'Original Music Composer'),(667,9856,4,'Novel'),(667,9861,3,'Producer'),(667,9863,3,'Producer'),(667,9864,6,'Original Music Composer'),(667,9869,7,'Production Design'),(667,10076,2,'Director'),(667,10079,1,'Director of Photography'),(667,10081,7,'Art Direction'),(667,10082,7,'Set Decoration'),(219,93,3,'Producer'),(219,952,3,'Executive Producer'),(219,309,2,'Director'),(219,309,4,'Author'),(219,405,6,'Original Music Composer'),(219,413,5,'Editor'),(219,979,6,'Sound Designer'),(219,981,6,'Sound Designer'),(219,3657,8,'Costume Design'),(219,4376,1,'Director of Photography'),(219,4378,3,'Casting'),(219,4379,7,'Production Design'),(219,4380,7,'Production Design'),(219,4384,1,'Camera Operator'),(219,16990,9,'Special Effects'),(219,25255,2,'Script Supervisor'),(219,37555,5,'Assistant Editor'),(219,1286912,8,'Assistant Costume Designer'),(219,1338959,8,'Key Hair Stylist'),(219,1344142,3,'Line Producer'),(219,1426311,8,'Makeup Designer'),(219,1492133,8,'Assistant Costume Designer'),(219,1580204,1,'First Assistant Camera'),(219,1617588,11,'Electrician'),(219,1617588,5,'Color Timer'),(219,1648264,9,'Stunt Coordinator'),(219,1648268,11,'Gaffer'),(219,1677183,5,'Assistant Editor'),(348,578,2,'Director'),(348,668,3,'Casting'),(348,915,3,'Producer'),(348,1723,3,'Producer'),(348,1760,6,'Original Music Composer'),(348,4616,7,'Production Design'),(348,5045,4,'Screenplay'),(348,5046,3,'Executive Producer'),(348,5046,4,'Writer'),(348,5053,3,'Producer'),(348,5054,3,'Producer'),(348,5055,1,'Director of Photography'),(348,5056,5,'Editor'),(348,5057,5,'Editor'),(348,5058,7,'Production Design'),(348,5058,7,'Art Direction'),(348,5059,7,'Art Direction'),(348,5060,7,'Set Decoration'),(348,5061,8,'Costume Design'),(348,5062,6,'Sound Editor'),(348,9136,7,'Production Design'),(348,9402,9,'Special Effects'),(348,23349,3,'Casting'),(348,62460,7,'Conceptual Design'),(348,1378834,7,'Assistant Art Director'),(348,1378835,9,'Property Master'),(348,1378836,5,'Dialogue Editor'),(348,1378837,6,'Dolby Consultant'),(348,1378838,9,'Stunt Coordinator'),(348,1378839,1,'Still Photographer'),(660,2289,6,'Original Music Composer'),(660,9856,4,'Original Story'),(660,9861,3,'Producer'),(660,9863,3,'Producer'),(660,9864,6,'Original Music Composer'),(660,9867,1,'Director of Photography'),(660,9855,2,'Director'),(660,9858,4,'Screenplay'),(660,9869,7,'Production Design'),(660,9918,7,'Art Direction'),(660,9951,3,'Producer'),(660,9951,4,'Story'),(660,9952,4,'Screenplay'),(660,9953,4,'Screenplay'),(660,9954,5,'Editor'),(660,9955,8,'Costume Design'),(9400,2147,3,'Producer'),(9400,19155,6,'Music'),(9400,8582,5,'Editor'),(9400,37932,2,'Director'),(9400,42130,1,'Director of Photography'),(9400,57679,4,'Screenplay'),(9400,57679,3,'Producer'),(9400,57679,4,'Story'),(9400,57680,3,'Producer'),(9400,66598,4,'Screenplay'),(2359,1,9,'Thanks'),(2359,153,9,'Thanks'),(2359,947,9,'Thanks'),(2359,510,9,'Thanks'),(2359,531,9,'Thanks'),(2359,1307,3,'Producer'),(2359,59839,3,'Producer'),(2359,17087,2,'Director'),(2359,17087,4,'Author'),(2359,17087,3,'Producer'),(2359,19018,5,'Editor'),(2359,37261,3,'Producer'),(2359,37262,3,'Producer'),(2359,37263,3,'Production Manager'),(2359,37264,1,'Director of Photography'),(2359,37265,5,'Editor'),(2359,37267,5,'Editor'),(2359,1203779,5,'Assistant Editor'),(2359,1215473,9,'Thanks'),(2359,1318476,6,'Sound Re-Recording Mixer'),(2359,1384517,9,'Thanks'),(2359,1407207,6,'Music Editor'),(2359,1517791,6,'Original Music Composer'),(6521,2121,3,'Casting'),(6521,9648,7,'Production Design'),(6521,21526,2,'Director'),(6521,21526,4,'Screenplay'),(6521,12940,5,'Editor'),(6521,21528,7,'Set Decoration'),(6521,22143,1,'Director of Photography'),(6521,37038,6,'Original Music Composer'),(6521,77251,7,'Art Direction'),(6521,1478463,8,'Costume Design'),(1621,897,3,'Casting'),(1621,4610,2,'Director'),(1621,6921,7,'Production Design'),(1621,7182,6,'Original Music Composer'),(1621,7184,3,'Executive Producer'),(1621,7211,8,'Costume Design'),(1621,14456,1,'Director of Photography'),(1621,14457,5,'Editor'),(1621,14710,4,'Screenplay'),(1621,14711,4,'Screenplay'),(1621,18165,3,'Producer'),(1621,18167,3,'Producer'),(1621,18168,3,'Producer'),(1621,18170,6,'Music'),(1621,18173,7,'Set Decoration'),(1621,18174,7,'Set Decoration'),(1621,543194,8,'Assistant Costume Designer'),(1621,1508092,2,'Script Supervisor'),(1621,1534033,7,'Assistant Art Director'),(9656,26981,6,'Original Music Composer'),(9656,113194,9,'Stunts'),(9656,57135,1,'Director of Photography'),(9656,25862,5,'Editor'),(9656,58403,2,'Director'),(9656,58403,4,'Author'),(9656,58405,4,'Author'),(8272,321,3,'Executive Producer'),(8272,546,3,'Casting'),(8272,4190,8,'Costume Design'),(8272,4948,3,'Executive Producer'),(8272,5952,3,'Producer'),(8272,9552,3,'Producer'),(8272,13235,3,'Executive Producer'),(8272,19759,5,'Editor'),(8272,17450,3,'Producer'),(8272,21266,6,'Original Music Composer'),(8272,35512,7,'Production Design'),(8272,52161,6,'Music Supervisor'),(8272,54240,4,'Screenplay'),(8272,54240,2,'Director'),(8272,54241,3,'Producer'),(8272,54242,3,'Executive Producer'),(8272,54243,3,'Executive Producer'),(8272,54244,1,'Director of Photography'),(1619,9033,4,'Screenplay'),(1619,9033,2,'Director'),(1619,9035,3,'Producer'),(1619,9035,1,'Second Unit Director of Photography'),(1619,23905,3,'Casting'),(1619,37040,7,'Production Design'),(1619,48070,5,'Editor'),(1619,60085,9,'Cinematography'),(1619,62580,6,'Music'),(1619,72260,3,'Executive Producer'),(1619,72260,3,'Production Manager'),(1619,943318,4,'Storyboard'),(1619,962061,9,'Post-Production Manager'),(1619,1324019,7,'Set Decoration'),(1619,1371035,3,'Executive In Charge Of Production'),(1619,1599143,2,'First Assistant Director'),(1619,1840136,2,'Second Assistant Director'),(9685,2705,5,'Editor'),(9685,5490,3,'Executive Producer'),(9685,15366,3,'Producer'),(9685,15367,1,'Director of Photography'),(9685,32344,3,'Executive Producer'),(9685,36619,5,'Editor'),(9685,58552,2,'Director'),(9685,58552,4,'Author'),(9685,65845,3,'Executive Producer'),(9685,65846,3,'Executive Producer'),(9685,65847,3,'Producer'),(9685,65848,6,'Music'),(9685,65849,5,'Editor'),(1808,1225,6,'Original Music Composer'),(1808,1302,3,'Casting'),(1808,1307,3,'Producer'),(1808,59839,3,'Producer'),(1808,5337,5,'Dialogue Editor'),(1808,9027,8,'Costume Design'),(1808,16863,2,'Director'),(1808,16863,4,'Screenplay'),(1808,16863,4,'Story'),(1808,17234,5,'Editor'),(1808,17234,4,'Story'),(1808,17990,6,'Music Editor'),(1808,33678,1,'Director of Photography'),(1808,52161,6,'Music Supervisor'),(1808,206531,7,'Production Design'),(1808,1427381,6,'Music Editor'),(1808,1535092,2,'Script Supervisor'),(8883,6797,8,'Costume Design'),(8883,1178,1,'Director of Photography'),(8883,1559,3,'Executive Producer'),(8883,1560,3,'Executive Producer'),(8883,1573,6,'Sound Designer'),(8883,5126,3,'Producer'),(8883,5127,3,'Producer'),(8883,10905,3,'Producer'),(8883,12037,7,'Art Direction'),(8883,19349,5,'Editor'),(8883,20273,3,'Line Producer'),(8883,28921,3,'Executive Producer'),(8883,36924,7,'Art Direction'),(8883,52671,3,'Producer'),(8883,56195,4,'Screenplay'),(8883,56195,2,'Director'),(8883,56196,4,'Screenplay'),(8883,71159,3,'Producer'),(8883,71161,7,'Production Design'),(8883,71162,8,'Makeup Artist'),(8883,71163,8,'Makeup Artist'),(8883,71164,6,'Original Music Composer'),(8883,71165,9,'Special Effects Coordinator'),(8883,71166,6,'Original Music Composer'),(8883,67454,3,'Executive Producer'),(8883,135965,6,'Sound Effects Editor'),(8883,135968,1,'Camera Operator'),(8883,1041546,9,'Makeup Effects'),(8883,1089142,3,'Producer'),(8883,1106173,6,'Foley'),(8883,1122048,3,'Producer'),(8883,1122049,3,'Executive Producer'),(8883,1122050,3,'Line Producer'),(8883,1122051,3,'Line Producer'),(8883,1159923,10,'Visual Effects Supervisor'),(8883,1180805,9,'Makeup Effects'),(8883,1194833,3,'Casting'),(8883,1299012,7,'Art Direction'),(8883,1304081,1,'Camera Operator'),(8883,1304249,8,'Makeup Artist'),(8883,1327388,1,'Additional Camera'),(8883,1351730,9,'Stunt Coordinator'),(8883,1351731,1,'Still Photographer'),(8883,1379995,10,'Visual Effects Producer'),(8883,1425564,9,'Property Master'),(8883,1442251,2,'Script Supervisor'),(8883,1443976,7,'Art Direction'),(8883,1443977,8,'Makeup Artist'),(8883,1443978,9,'Property Master'),(8883,1443979,9,'Property Master'),(8883,1443980,9,'Property Master'),(8883,1443981,7,'Set Designer'),(8883,1443982,5,'Dialogue Editor'),(8883,1443984,9,'Special Effects Coordinator'),(8883,1443991,1,'Camera Operator'),(8883,1443992,1,'Camera Operator'),(8883,1443993,1,'Still Photographer'),(8883,1443994,1,'Still Photographer'),(8883,1443997,2,'Script Supervisor'),(8883,1444001,3,'Location Manager'),(9671,3048,6,'Original Music Composer'),(9671,31027,1,'Director of Photography'),(9671,46952,5,'Editor'),(9671,57147,4,'Screenplay'),(9671,57147,4,'Story'),(9671,57594,4,'Screenplay'),(9671,57594,3,'Producer'),(9671,57596,3,'Line Producer'),(9671,58453,2,'Director'),(9671,58454,4,'Screenplay'),(1547,1044,9,'Cinematography'),(1547,3806,3,'Casting'),(1547,4152,9,'Special Effects'),(1547,4713,8,'Costume Design'),(1547,5133,7,'Production Design'),(1547,5572,2,'Director'),(1547,6890,3,'Co-Executive Producer'),(1547,7146,7,'Art Direction'),(1547,7187,3,'Executive Producer'),(1547,7199,3,'Producer'),(1547,7859,9,'Special Effects Coordinator'),(1547,9624,9,'Stunts'),(1547,14339,5,'Editor'),(1547,16643,9,'Stunts'),(1547,17445,4,'Screenplay'),(1547,17446,4,'Screenplay'),(1547,62585,3,'Co-Executive Producer'),(1547,92484,9,'Stunts'),(1547,92494,9,'Stunts'),(1547,74967,7,'Set Decoration'),(1547,77740,9,'Stunts'),(1547,93887,9,'Stunt Coordinator'),(1547,95192,9,'Stunts'),(1547,119575,9,'Stunts'),(1547,194654,9,'Stunts'),(1547,406204,8,'Makeup Artist'),(1547,588219,9,'Special Effects'),(1547,589957,9,'Stunts'),(1547,1404906,9,'Stunts'),(1547,1442535,9,'Stunts'),(1547,1457926,9,'Stunts'),(1547,1462675,9,'Stunts'),(1547,1472602,9,'Stunts'),(1547,1497675,9,'Stunts'),(1547,1536529,9,'Stunts'),(1547,1546810,9,'Special Effects'),(1547,1549025,9,'Stunts'),(1547,1686226,9,'Stunts'),(1547,1693553,9,'Special Effects'),(1547,1776403,9,'Stunts'),(1547,1787265,9,'Stunts'),(1547,1877153,9,'Stunts'),(1547,1880370,3,'Production Manager'),(1547,1880371,9,'Special Effects'),(1547,1880373,9,'Special Effects'),(1547,1880374,9,'Special Effects'),(1547,1880375,9,'Special Effects'),(1547,1880377,9,'Special Effects'),(1547,1880378,9,'Special Effects'),(1547,1880380,9,'Special Effects'),(1547,1880381,9,'Stunts'),(1547,1880382,9,'Stunts'),(1547,1880383,9,'Stunts'),(1547,1880384,9,'Stunts'),(1547,1880385,9,'Stunts'),(1547,1880386,9,'Stunts'),(1547,1880387,9,'Stunts'),(1547,1880388,9,'Stunts'),(1547,1880389,9,'Stunts'),(1547,1880390,9,'Stunts'),(1547,1880391,9,'Stunts'),(8069,5398,3,'Producer'),(8069,8950,4,'Screenplay'),(8069,10469,1,'Director of Photography'),(8069,10474,8,'Costume Design'),(8069,19050,4,'Author'),(8069,25795,4,'Writer'),(8069,28137,4,'Writer'),(8069,29884,4,'Writer'),(8069,29885,4,'Writer'),(8069,32382,7,'Production Design'),(8069,50239,6,'Music'),(8069,53767,4,'Screenplay'),(8069,53767,2,'Director'),(8069,53771,5,'Editor'),(8069,1172547,4,'Writer'),(8069,1487320,8,'Costume Design'),(9451,434,3,'Casting'),(9451,4948,4,'Screenplay'),(9451,17172,3,'Producer'),(9451,17173,3,'Producer'),(9451,13235,4,'Screenplay'),(9451,13235,2,'Director'),(9451,37023,7,'Art Direction'),(9451,24190,6,'Music'),(9451,35511,1,'Director of Photography'),(9451,32796,5,'Editor'),(9451,35512,7,'Production Design'),(9451,35514,8,'Costume Design'),(9451,31094,3,'Executive Producer'),(9451,65115,3,'Producer'),(9451,1531560,7,'Set Decoration'),(9451,1531561,8,'Costume Supervisor'),(9451,1531562,8,'Makeup Department Head'),(9451,1746321,3,'Producer'),(1116,1528,6,'Original Music Composer'),(1116,15488,2,'Director'),(1116,15490,4,'Screenplay'),(1116,15491,3,'Producer'),(1116,15493,1,'Director of Photography'),(1116,15495,5,'Editor'),(1116,15512,7,'Set Designer'),(1116,15514,7,'Art Direction'),(680,138,2,'Director'),(680,138,4,'Screenplay'),(680,2545,3,'Producer'),(680,37333,9,'Post Production Supervisor'),(680,37334,3,'Production Manager'),(680,3130,9,'Thanks'),(680,156,5,'Editor'),(680,518,3,'Executive Producer'),(680,1307,3,'Co-Executive Producer'),(680,59839,3,'Co-Executive Producer'),(680,5779,7,'Production Design'),(680,8297,4,'Screenplay'),(680,5507,3,'Casting'),(680,5381,3,'Executive Producer'),(680,5382,3,'Executive Producer'),(680,10630,6,'Sound Editor'),(680,3115,1,'Director of Photography'),(680,6940,6,'Music Supervisor'),(680,7902,3,'Casting Associate'),(680,11799,3,'Casting'),(680,11800,7,'Art Direction'),(680,11801,7,'Set Decoration'),(680,11802,8,'Costume Design'),(680,12997,3,'Co-Executive Producer'),(680,53898,9,'Editorial Staff'),(680,22054,9,'Stunt Coordinator'),(680,41655,3,'Casting'),(680,46589,8,'Assistant Costume Designer'),(680,143893,8,'Makeup Artist'),(680,148455,1,'First Assistant Camera'),(680,230436,6,'ADR & Dubbing'),(680,1174010,11,'Gaffer'),(680,1380055,8,'Set Costumer'),(680,1397881,8,'Key Hair Stylist'),(680,1411258,8,'Hairstylist'),(680,1440853,5,'Assistant Editor'),(680,1530166,6,'Music Supervisor'),(680,1545448,6,'Music'),(680,1547239,8,'Costume Supervisor'),(680,1552002,8,'Wigmaker'),(680,1564233,5,'Color Timer'),(680,1584695,11,'Electrician'),(680,1608789,3,'Location Manager'),(2619,339,3,'Producer'),(2619,339,4,'Story'),(2619,12869,7,'Art Direction'),(2619,2032,7,'Production Design'),(2619,2032,7,'Art Direction'),(2619,2084,3,'Casting'),(2619,6159,2,'Director'),(2619,6189,5,'Editor'),(2619,6190,5,'Editor'),(2619,9614,1,'Director of Photography'),(2619,14901,8,'Costume Design'),(2619,27518,4,'Screenplay'),(2619,27519,4,'Screenplay'),(2619,26511,4,'Screenplay'),(2619,27513,9,'Stunts'),(2619,30580,7,'Set Decoration'),(2619,47452,6,'Original Music Composer'),(2619,1258358,3,'Executive Producer'),(2619,1384145,7,'Set Decoration'),(773,5215,8,'Costume Design'),(773,4855,3,'Producer'),(773,4857,3,'Producer'),(773,5359,6,'Music'),(773,6959,3,'Casting'),(773,16959,2,'Director'),(773,16960,2,'Director'),(773,16961,4,'Writer'),(773,17172,3,'Producer'),(773,17144,3,'Producer'),(773,17173,3,'Producer'),(773,17146,1,'Director of Photography'),(773,17147,5,'Editor'),(773,17148,7,'Production Design'),(773,17149,7,'Art Direction'),(773,17150,7,'Set Decoration'),(773,12561,9,'Post Production Supervisor'),(773,57560,3,'Executive Producer'),(773,57560,3,'Unit Production Manager'),(773,95842,6,'Music Editor'),(773,232158,6,'Music Supervisor'),(773,313511,3,'Location Manager'),(773,428915,3,'Executive Producer'),(773,575076,3,'Associate Producer'),(773,961165,3,'Casting'),(773,1031811,6,'Supervising Sound Editor'),(773,1182914,5,'Assistant Editor'),(773,1208436,8,'Makeup Artist'),(773,1335156,5,'Color Timer'),(773,1339453,9,'Stunt Coordinator'),(773,1341776,9,'Property Master'),(773,1342242,6,'Sound Re-Recording Mixer'),(773,1342655,6,'Foley'),(773,1367665,6,'Boom Operator'),(773,1370916,2,'Script Supervisor'),(773,1387183,5,'Dialogue Editor'),(773,1387251,10,'Visual Effects Producer'),(773,1389129,7,'Art Department Coordinator'),(773,1394583,6,'Music Supervisor'),(773,1397737,9,'Transportation Coordinator'),(773,1407354,6,'Sound Re-Recording Mixer'),(773,1411270,1,'Camera Operator'),(773,1411272,1,'Steadicam Operator'),(773,1412228,6,'Sound Effects Editor'),(773,1413453,6,'Supervising Sound Editor'),(773,1414546,3,'Production Supervisor'),(773,1415636,1,'Still Photographer'),(773,1418453,8,'Hair Department Head'),(773,1432039,10,'Visual Effects Supervisor'),(773,1456028,8,'Makeup Department Head'),(773,1458883,8,'Key Hair Stylist'),(773,1460825,2,'Script Supervisor'),(773,1466245,6,'Sound mixer'),(773,1532250,8,'Key Hair Stylist'),(773,1547140,8,'Costume Supervisor'),(773,1552020,9,'Transportation Captain'),(773,1552997,9,'Choreographer'),(773,1561749,3,'Production Coordinator'),(773,1561829,1,'First Assistant Camera'),(773,1564535,9,'Transportation Co-Captain'),(773,1646348,3,'Casting Associate'),(773,1646349,3,'Production Accountant'),(235,2874,3,'Casting'),(235,3026,2,'Director'),(235,3027,4,'Novel'),(235,3028,4,'Screenplay'),(235,3028,3,'Producer'),(235,3029,4,'Screenplay'),(235,3029,3,'Producer'),(235,3030,3,'Producer'),(235,3031,1,'Director of Photography'),(235,3032,5,'Editor'),(235,3275,3,'Casting'),(235,7066,6,'Original Music Composer'),(235,16614,7,'Production Design'),(235,1288845,7,'Set Decoration'),(170,2070,5,'Editor'),(170,179,1,'Steadicam Operator'),(170,179,1,'Camera Operator'),(170,960,6,'Original Music Composer'),(170,1570,1,'Director of Photography'),(170,2034,2,'Director'),(170,2035,3,'Producer'),(170,2036,4,'Screenplay'),(170,2071,7,'Production Design'),(170,2073,3,'Casting'),(170,9006,8,'Costume Design'),(170,40810,6,'Sound Designer'),(170,40810,6,'Supervising Sound Editor'),(170,40813,5,'Dialogue Editor'),(170,40814,6,'Music Editor'),(170,40815,6,'Music Editor'),(170,20463,7,'Supervising Art Director'),(170,26193,7,'Art Direction'),(170,37317,4,'Musical'),(170,117242,6,'Foley'),(170,1327442,7,'Art Direction'),(170,1327443,7,'Art Direction'),(170,1327444,7,'Set Decoration'),(170,1327445,8,'Costume Supervisor'),(170,1338278,6,'Boom Operator'),(170,1393301,6,'Foley'),(170,1393866,6,'Foley'),(170,1393867,9,'Sound Recordist'),(170,1393869,6,'Dolby Consultant'),(170,1393876,9,'Visual Effects Editor'),(170,1393877,9,'Visual Effects Editor'),(170,1393878,9,'Visual Effects Editor'),(170,1393879,9,'Visual Effects Editor'),(170,1393882,9,'Stunt Coordinator'),(170,1393883,1,'Still Photographer'),(170,1393897,2,'Script Supervisor'),(668,2289,6,'Original Music Composer'),(668,9856,4,'Novel'),(668,9861,3,'Producer'),(668,9863,3,'Producer'),(668,7757,7,'Art Direction'),(668,8524,7,'Set Decoration'),(668,7756,7,'Production Design'),(668,9858,4,'Screenplay'),(668,9868,2,'Director'),(668,10177,3,'Producer'),(668,10178,1,'Director of Photography'),(668,10179,5,'Editor'),(668,10181,8,'Costume Design'),(9490,4169,4,'Screenplay'),(9490,4169,3,'Producer'),(9490,6899,1,'Director of Photography'),(9490,15005,5,'Editor'),(9490,29015,3,'Producer'),(9490,47896,6,'Original Music Composer'),(9490,57691,2,'Director'),(9490,57692,4,'Screenplay'),(1359,4023,3,'Casting'),(1359,3192,3,'Casting'),(1359,4868,5,'Editor'),(1359,5328,3,'Casting'),(1359,5549,8,'Costume Design'),(1359,3115,1,'Director of Photography'),(1359,5917,3,'Co-Producer'),(1359,5936,3,'Executive In Charge Of Production'),(1359,7491,6,'Music'),(1359,16378,2,'Director'),(1359,16378,4,'Screenplay'),(1359,16379,4,'Novel'),(1359,32030,4,'Screenplay'),(1359,32034,3,'Producer'),(1359,17231,3,'Producer'),(1359,32035,3,'Producer'),(1359,32036,7,'Production Design'),(1359,32037,7,'Set Decoration'),(1359,17636,7,'Art Direction'),(1359,20228,6,'Foley'),(1359,20229,6,'Foley'),(1359,23541,3,'Executive Producer'),(1359,40513,3,'Executive Producer'),(1359,51869,8,'Assistant Costume Designer'),(1359,57561,3,'Co-Producer'),(1359,62778,3,'Casting Associate'),(1359,92375,6,'Sound Designer'),(1359,72117,9,'Stunt Coordinator'),(1359,137144,9,'Post Production Supervisor'),(1359,183055,3,'Co-Producer'),(1359,558226,8,'Key Hair Stylist'),(1359,585882,3,'Executive Producer'),(1359,1013559,3,'Casting'),(1359,1018349,6,'Supervising Sound Editor'),(1359,1183452,1,'Still Photographer'),(1359,1204186,8,'Set Dressing Artist'),(1359,1338133,6,'Sound Effects Editor'),(1359,1375605,5,'Dialogue Editor'),(1359,1404842,9,'Special Effects Coordinator'),(1359,1405321,8,'Makeup Artist'),(1359,1415153,1,'Camera Operator'),(1359,1472951,3,'Line Producer'),(1359,1496412,6,'Sound Designer'),(1359,1522742,3,'Casting Associate'),(1359,1523419,8,'Hairstylist'),(1359,1523420,8,'Makeup Artist'),(1359,1534680,6,'Music Supervisor'),(1359,1534681,6,'Music Supervisor'),(1359,1598760,11,'Gaffer'),(1359,1644222,3,'Co-Producer'),(1359,1644880,3,'Location Manager'),(1359,1644881,2,'Script Supervisor'),(1359,1644882,7,'Construction Coordinator'),(1359,1644883,9,'Property Master'),(1359,1644884,8,'Assistant Costume Designer'),(1359,1644885,8,'Seamstress'),(1359,1644888,6,'Boom Operator'),(1359,1644890,3,'Production Coordinator'),(1359,1644892,6,'Music Editor'),(9962,5215,8,'Costume Design'),(9962,10422,7,'Set Decoration'),(9962,53894,3,'Producer'),(9962,17598,1,'Director of Photography'),(9962,17735,4,'Author'),(9962,20382,5,'Editor'),(9962,25743,3,'Executive Producer'),(9962,36131,3,'Executive Producer'),(9962,41301,6,'Original Music Composer'),(9962,45841,3,'Casting'),(9962,61069,2,'Director'),(9962,61072,6,'Original Music Composer'),(9962,61070,3,'Producer'),(9962,61071,3,'Producer'),(9962,61074,6,'Original Music Composer'),(9962,61075,3,'Executive Producer'),(9962,61073,6,'Original Music Composer'),(9962,61077,7,'Art Direction'),(9962,61076,7,'Production Design'),(8293,3960,1,'Director of Photography'),(8293,4868,5,'Editor'),(8293,54441,2,'Director'),(8293,17165,7,'Production Design'),(8293,54442,4,'Novel'),(8293,54443,4,'Screenplay'),(8293,54448,3,'Producer'),(8293,54449,6,'Original Music Composer'),(8293,1043954,3,'Associate Producer'),(8293,1080783,3,'Executive Producer'),(1958,4387,4,'Screenplay'),(1958,4387,2,'Director'),(1958,20236,4,'Theatre Play'),(7870,819,3,'Producer'),(7870,819,5,'Editor'),(7870,3394,5,'Editor'),(7870,16492,7,'Production Design'),(7870,16493,7,'Art Direction'),(7870,16831,3,'Producer'),(7870,17598,1,'Director of Photography'),(7870,53212,2,'Director'),(7870,53212,4,'Author'),(7870,53212,5,'Editor'),(7870,53213,3,'Producer'),(7870,53214,3,'Producer'),(7870,53607,6,'Original Music Composer'),(149,185,4,'Screenplay'),(149,185,2,'Director'),(149,185,4,'Author'),(149,1697,5,'Editor'),(149,1677,4,'Screenplay'),(149,1690,3,'Producer'),(149,1691,3,'Producer'),(149,1692,3,'Producer'),(149,1694,3,'Producer'),(149,1695,6,'Original Music Composer'),(149,1696,1,'Director of Photography'),(149,1698,7,'Production Design'),(149,1699,7,'Production Design'),(149,1700,7,'Production Design'),(149,1701,6,'Sound Designer'),(149,1702,6,'Music Editor'),(149,929975,3,'Executive Producer'),(149,1065197,3,'Executive Producer'),(149,1102166,3,'Producer'),(149,1456632,10,'Animation'),(149,1801494,3,'Producer'),(149,1842763,10,'Key Animation'),(1544,968,7,'Production Design'),(1544,1073,3,'Executive Producer'),(1544,3965,3,'Casting'),(1544,15734,8,'Costume Design'),(1544,16363,3,'Casting'),(1544,22047,6,'Original Music Composer'),(1544,17510,2,'Director'),(1544,17510,4,'Author'),(1544,19695,3,'Producer'),(1544,17792,5,'Editor'),(1544,18018,3,'Producer'),(1544,21677,3,'Producer'),(1544,22161,1,'Director of Photography'),(1544,77695,7,'Art Direction'),(1544,978148,7,'Set Decoration'),(1544,1034748,3,'Casting'),(1544,1324462,8,'Costume Supervisor'),(1544,1430074,8,'Makeup Artist'),(1544,1463141,7,'Assistant Art Director'),(1544,1463142,2,'Script Supervisor'),(302,4387,2,'Director'),(302,4387,4,'Screenplay'),(302,4388,4,'Author'),(302,4388,4,'Screenplay'),(302,4399,3,'Producer'),(302,4400,3,'Line Producer'),(302,4401,3,'Producer'),(302,4402,3,'Producer'),(302,4403,6,'Original Music Composer'),(302,4404,1,'Director of Photography'),(302,4405,5,'Editor'),(302,4406,3,'Casting'),(302,4407,7,'Art Direction'),(302,77329,7,'Set Decoration'),(403,947,6,'Original Music Composer'),(403,3188,7,'Art Direction'),(403,945,7,'Set Decoration'),(403,1297,3,'Producer'),(403,1317,8,'Hairstylist'),(403,1732,5,'Editor'),(403,2359,3,'Co-Executive Producer'),(403,5322,3,'Executive Producer'),(403,5696,2,'Director'),(403,5697,4,'Screenplay'),(403,5697,3,'Producer'),(403,5697,4,'Author'),(403,5706,3,'Producer'),(403,5707,3,'Producer'),(403,5708,1,'Director of Photography'),(403,5709,7,'Production Design'),(403,5710,8,'Costume Design'),(403,5712,6,'Music Editor'),(403,16194,8,'Hairstylist'),(403,8275,2,'Assistant Director'),(403,14657,6,'Foley'),(403,16601,10,'Visual Effects Supervisor'),(403,23781,9,'Editorial Staff'),(403,29380,5,'First Assistant Editor'),(403,73772,6,'Music Supervisor'),(403,74783,9,'Special Effects Coordinator'),(403,108135,9,'Stunts'),(403,136080,6,'Scoring Mixer'),(403,572622,6,'ADR & Dubbing'),(403,1238947,9,'Thanks'),(403,1318806,8,'Makeup Department Head'),(403,1319490,8,'Makeup Department Head'),(403,1377502,1,'Still Photographer'),(403,1412250,10,'Visual Effects'),(403,1418024,9,'Visual Effects Art Director'),(403,1440853,5,'First Assistant Editor'),(403,1455296,9,'Transportation Captain'),(403,1537964,8,'Makeup Artist'),(403,1630675,5,'Color Timer'),(403,1630684,9,'Transportation Coordinator'),(9388,6044,3,'Casting'),(9388,6044,3,'Co-Producer'),(9388,7441,8,'Costume Design'),(9388,12561,9,'Post Production Supervisor'),(9388,12775,9,'Post Production Supervisor'),(9388,32035,3,'Executive Producer'),(9388,24190,6,'Original Music Composer'),(9388,39038,7,'Production Design'),(9388,52443,4,'Screenplay'),(9388,52443,2,'Director'),(9388,52448,3,'Co-Producer'),(9388,52450,5,'Editor'),(9388,52452,6,'Music Supervisor'),(9388,52453,6,'Music Supervisor'),(9388,52454,9,'Additional Music'),(9388,52456,3,'Casting Associate'),(9388,57556,4,'Novel'),(9388,57560,3,'Executive Producer'),(9388,57560,3,'Unit Production Manager'),(9388,57561,3,'Executive Producer'),(9388,57562,3,'Executive Producer'),(9388,57563,3,'Executive Producer'),(9388,57564,3,'Producer'),(9388,57565,3,'Executive Producer'),(9388,57566,3,'Executive Producer'),(9388,57567,3,'Executive Producer'),(9388,19002,1,'Director of Photography'),(9388,63906,6,'Music Editor'),(9388,76675,3,'Production Accountant'),(9388,85216,1,'Camera Operator'),(9388,91775,6,'Music'),(9388,104500,9,'Driver'),(9388,118237,6,'ADR & Dubbing'),(9388,161159,1,'Still Photographer'),(9388,225120,1,'Additional Photography'),(9388,313511,3,'Location Manager'),(9388,933120,3,'Associate Producer'),(9388,1018071,5,'First Assistant Editor'),(9388,1018071,9,'Visual Effects Editor'),(9388,1033105,7,'Set Decoration'),(9388,1077511,9,'Cableman'),(9388,1085522,6,'Music'),(9388,1124533,3,'Co-Executive Producer'),(9388,1190616,9,'Set Medic'),(9388,1208307,9,'Stunts'),(9388,1287672,9,'Special Effects Coordinator'),(9388,1317128,8,'Makeup Artist'),(9388,1323076,8,'Makeup Department Head'),(9388,1341330,8,'Makeup Artist'),(9388,1341801,2,'Script Supervisor'),(9388,1345264,6,'Foley'),(9388,1345718,2,'Assistant Director'),(9388,1347998,6,'Sound Re-Recording Mixer'),(9388,1358036,3,'Casting Associate'),(9388,1367665,6,'Boom Operator'),(9388,1367667,6,'Supervising Sound Editor'),(9388,1367676,6,'Music Editor'),(9388,1367681,3,'Location Manager'),(9388,1372880,6,'ADR & Dubbing'),(9388,1378755,6,'Sound Re-Recording Mixer'),(9388,1387195,6,'Sound Re-Recording Mixer'),(9388,1389129,7,'Art Department Coordinator'),(9388,1397737,9,'Transportation Coordinator'),(9388,1400506,5,'Digital Intermediate'),(9388,1403537,10,'Visual Effects Producer'),(9388,1403636,6,'Sound Editor'),(9388,1407229,1,'Steadicam Operator'),(9388,1408516,6,'Foley'),(9388,1414546,3,'Production Supervisor'),(9388,1418487,5,'Digital Intermediate'),(9388,1423544,6,'Boom Operator'),(9388,1423753,6,'Foley'),(9388,1423757,6,'Sound Re-Recording Mixer'),(9388,1425906,7,'Assistant Art Director'),(9388,1432918,1,'Camera Operator'),(9388,1436079,11,'Electrician'),(9388,1438585,9,'Studio Teachers'),(9388,1449993,8,'Key Hair Stylist'),(9388,1451649,6,'ADR & Dubbing'),(9388,1465565,3,'Production Coordinator'),(9388,1466245,6,'Sound mixer'),(9388,1479278,9,'Property Master'),(9388,1530859,8,'Hair Department Head'),(9388,1535307,8,'Costume Supervisor'),(9388,1537698,6,'Music'),(9388,1546147,7,'Leadman'),(9388,1546189,1,'Grip'),(9388,1547673,9,'Propmaker'),(9388,1549740,9,'Stunt Coordinator'),(9388,1549741,9,'Stunts'),(9388,1549747,2,'Assistant Director'),(9388,1549749,2,'Assistant Director'),(9388,1550233,9,'Sound Recordist'),(9388,1550234,6,'Foley'),(9388,1550235,6,'Sound'),(9388,1550236,6,'First Assistant Sound Editor'),(9388,1550237,6,'Sound'),(9388,1550239,10,'Digital Compositors'),(9388,1550240,1,'Grip'),(9388,1550241,1,'First Assistant Camera'),(9388,1550248,1,'Grip'),(9388,1550369,5,'Digital Intermediate'),(9388,1550370,5,'Assistant Editor'),(9388,1550374,5,'Color Timer'),(9388,1550375,6,'Scoring Mixer'),(9388,1550385,9,'Driver'),(9388,1550388,9,'Driver'),(9388,1550394,9,'Driver'),(9388,1550400,9,'Craft Service'),(9388,1550401,9,'Script'),(9388,1550402,7,'Location Scout'),(9388,1550405,3,'Finance'),(1691,138,3,'Executive Producer'),(1691,6867,3,'Producer'),(1691,6869,3,'Producer'),(1691,7184,5,'Editor'),(1691,11641,3,'Executive Producer'),(1691,16847,2,'Director'),(1691,16847,3,'Producer'),(1691,16847,4,'Writer'),(1691,33931,1,'Director of Photography'),(1691,33935,3,'Associate Producer'),(1691,19659,6,'Original Music Composer'),(1691,37013,3,'Casting'),(1691,19662,3,'Casting'),(1691,21640,7,'Production Design'),(1691,23870,8,'Costume Design'),(1691,52358,3,'Executive Producer'),(1691,211600,3,'Associate Producer'),(1691,1545803,3,'Associate Producer'),(1691,1605889,3,'Co-Producer'),(1691,1840415,3,'Co-Producer'),(2610,307,1,'Director of Photography'),(2610,3965,3,'Casting'),(2610,67773,3,'Producer'),(2610,67773,4,'Author'),(2610,21747,7,'Production Design'),(2610,27266,7,'Set Decoration'),(2610,20066,5,'Editor'),(2610,21478,3,'Producer'),(2610,26481,2,'Director'),(2610,27265,6,'Original Music Composer'),(2610,61091,3,'Producer'),(2610,1034748,3,'Casting'),(2577,172,2,'Director'),(2577,173,3,'Producer'),(2577,179,1,'Director of Photography'),(2577,1889,6,'Original Music Composer'),(2577,2071,7,'Set Designer'),(2577,20461,5,'Editor'),(2577,20462,3,'Casting'),(2577,20463,7,'Art Direction'),(2577,22968,8,'Costume Design'),(2577,26190,4,'Screenplay'),(2577,26191,6,'Original Music Composer'),(2577,26192,1,'Director of Photography'),(2577,26193,7,'Art Direction'),(2577,26194,7,'Set Decoration'),(2577,26195,8,'Makeup Artist'),(2577,26196,8,'Makeup Artist'),(2011,489,3,'Producer'),(2011,20709,4,'Screenplay'),(2011,20709,2,'Director'),(2011,20659,4,'Screenplay'),(2011,20659,2,'Director'),(2011,20711,3,'Producer'),(2011,20712,3,'Producer'),(2011,20713,6,'Original Music Composer'),(2011,43781,7,'Art Direction'),(2011,43782,5,'Editor'),(2011,1374461,6,'Foley'),(2011,1374465,9,'Sound Recordist'),(2011,1399916,9,'Sound Recordist'),(2011,1413908,6,'Dolby Consultant'),(2011,1449984,6,'Foley'),(2011,1484009,10,'Animation Department Coordinator'),(2011,1558390,6,'Sound Re-Recording Mixer'),(2011,1724716,7,'Art Direction'),(2011,1724717,7,'Production Design'),(2011,1724718,5,'Dialogue Editor'),(2011,1724719,6,'Sound Re-Recording Mixer'),(2011,1724720,10,'3D Supervisor'),(2011,1724723,10,'Animation'),(7735,1871,5,'Editor'),(7735,1872,1,'Director of Photography'),(7735,4918,4,'Screenplay'),(7735,4930,3,'Producer'),(7735,52960,3,'Executive Producer'),(7735,52961,2,'Director'),(7735,52961,4,'Screenplay'),(7735,52962,8,'Costume Design'),(7735,52963,6,'Original Music Composer'),(7326,6044,3,'Casting'),(7326,6949,3,'Producer'),(7326,9615,3,'Producer'),(7326,11821,7,'Art Direction'),(7326,11823,8,'Costume Design'),(7326,11818,7,'Art Direction'),(7326,23541,3,'Executive Producer'),(7326,40383,3,'Executive Producer'),(7326,39038,7,'Production Design'),(7326,43899,3,'Producer'),(7326,52443,2,'Director'),(7326,52444,4,'Screenplay'),(7326,52445,3,'Producer'),(7326,52446,3,'Producer'),(7326,52448,3,'Executive Producer'),(7326,52449,1,'Director of Photography'),(7326,52450,5,'Editor'),(7326,52451,3,'Producer'),(7326,52452,6,'Music Supervisor'),(7326,52453,6,'Music Supervisor'),(7326,52454,6,'Original Music Composer'),(7326,52455,6,'Songs'),(7326,52456,3,'Casting'),(7326,52897,3,'Producer'),(7326,112656,8,'Key Makeup Artist'),(7326,53114,7,'Set Decoration'),(7326,197930,9,'Stunt Coordinator'),(7326,1314457,8,'Hairstylist'),(7326,1345718,2,'First Assistant Director'),(7326,1347998,6,'Sound Re-Recording Mixer'),(7326,1367667,6,'Supervising Sound Editor'),(7326,1367676,6,'Music Editor'),(7326,1372880,6,'Supervising ADR Editor'),(7326,1391699,1,'Still Photographer'),(7326,1394974,1,'Camera Operator'),(7326,1398846,11,'Chief Lighting Technician'),(7326,1399046,7,'Construction Coordinator'),(7326,1400093,6,'Sound Editor'),(7326,1401395,7,'Property Master'),(7326,1403636,6,'Sound Editor'),(7326,1408284,6,'Sound Re-Recording Mixer'),(7326,1413442,7,'Painter'),(7326,1423757,6,'Sound Designer'),(7326,1423757,6,'Sound Re-Recording Mixer'),(7326,1426761,8,'Key Hair Stylist'),(7326,1441272,8,'Makeup Artist'),(7326,1457403,7,'Set Dresser'),(7326,1460786,2,'Script Supervisor'),(7326,1512251,8,'Makeup Artist'),(7326,1531240,8,'Assistant Costume Designer'),(7326,1536560,5,'First Assistant Editor'),(7326,1537692,3,'Production Coordinator'),(7326,1550234,6,'Foley'),(7326,1575869,11,'Rigging Gaffer'),(7326,1579180,1,'First Assistant Camera'),(7326,1593500,10,'Special Effects Supervisor'),(7326,1713987,3,'Location Manager'),(7326,1730050,7,'Greensman'),(7326,1740414,6,'Boom Operator'),(7326,1786444,7,'Set Dresser'),(7326,1866779,7,'Set Dresser'),(7326,1866780,7,'Set Dresser'),(7326,1866781,7,'Set Dresser'),(7326,1866782,9,'Carpenter'),(7326,1866785,7,'Art Department Coordinator'),(7326,1866786,7,'Set Dresser'),(7326,1866801,1,'Key Grip'),(7326,1866806,11,'Lighting Technician'),(7326,1866818,8,'Costume Supervisor'),(7326,1866831,9,'Transportation Captain'),(7326,1866832,9,'Transportation Coordinator'),(7326,1871326,6,'Foley'),(681,2289,6,'Original Music Composer'),(681,9915,2,'Director'),(681,9856,4,'Novel'),(681,7190,4,'Screenplay'),(681,9861,3,'Producer'),(681,9863,3,'Producer'),(681,9864,6,'Original Music Composer'),(681,9867,1,'Director of Photography'),(681,10185,5,'Editor'),(681,8524,7,'Set Decoration'),(681,7651,7,'Set Decoration'),(681,9858,4,'Screenplay'),(681,9869,7,'Production Design'),(681,9917,6,'Songs'),(681,10177,3,'Producer'),(681,10186,5,'Editor'),(681,10187,7,'Art Direction'),(681,10188,7,'Art Direction'),(681,10189,8,'Costume Design'),(238,1776,2,'Director'),(238,1776,4,'Screenplay'),(238,2870,3,'Associate Producer'),(238,2871,3,'Casting'),(238,2875,7,'Production Design'),(238,457,3,'Producer'),(238,949,3,'Casting'),(238,3083,4,'Screenplay'),(238,3083,4,'Novel'),(238,3097,1,'Director of Photography'),(238,3098,6,'Original Music Composer'),(238,3099,5,'Editor'),(238,3100,5,'Editor'),(238,3101,3,'Casting'),(238,3103,6,'Sound Re-Recording Mixer'),(238,3104,6,'Sound'),(238,3105,6,'Sound Re-Recording Mixer'),(238,3106,6,'Music Editor'),(238,6099,3,'Production Manager'),(238,6851,8,'Costume Design'),(238,16194,8,'Hairstylist'),(238,10546,2,'Assistant Director'),(238,11789,3,'Unit Production Manager'),(238,12288,3,'Executive Producer'),(238,14059,9,'Special Effects'),(238,29654,8,'Makeup Artist'),(238,30580,7,'Set Decoration'),(238,81519,7,'Art Direction'),(238,81532,8,'Costume Supervisor'),(238,81533,8,'Costume Design'),(238,51302,9,'Stunts'),(238,96912,9,'Special Effects'),(238,718968,2,'Assistant Director'),(238,1318092,10,'Special Effects Supervisor'),(238,1433439,9,'Stunt Coordinator'),(238,1518601,8,'Makeup Artist'),(238,1546904,1,'Grip'),(238,1547035,3,'Casting'),(238,1614958,9,'Stunts'),(238,1625346,3,'Production Manager'),(238,1625347,2,'Assistant Director'),(238,1789636,6,'Musician'),(535,770,3,'Producer'),(535,605,8,'Costume Design'),(535,771,3,'Producer'),(535,1049,7,'Production Design'),(535,1154,6,'Original Music Composer'),(535,1586,6,'Music Supervisor'),(535,10492,4,'Screenplay'),(535,7270,2,'Director'),(535,31113,4,'Screenplay'),(535,31113,4,'Story'),(535,9614,1,'Director of Photography'),(535,7534,3,'Casting'),(535,8867,7,'Set Decoration'),(535,55245,1,'Still Photographer'),(535,960692,6,'Music Supervisor'),(535,1399326,6,'Music Editor'),(535,1399328,9,'Transportation Coordinator'),(535,1423019,2,'Script Supervisor'),(535,1605140,1,'Additional Photography'),(535,1605141,8,'Costume Supervisor'),(713,7262,1,'Director of Photography'),(713,10757,4,'Screenplay'),(713,10757,2,'Director'),(713,10759,6,'Original Music Composer'),(713,10762,5,'Editor'),(713,75478,3,'Producer'),(713,1462022,3,'Producer'),(253,9915,2,'Director'),(253,9856,4,'Novel'),(253,7190,4,'Screenplay'),(253,9861,3,'Producer'),(253,9863,3,'Producer'),(253,10214,6,'Original Music Composer'),(253,10215,6,'Songs'),(253,9867,1,'Director of Photography'),(253,10185,5,'Editor'),(253,10218,5,'Editor'),(253,10219,5,'Editor'),(253,9904,3,'Casting'),(253,10220,7,'Art Direction'),(253,7757,7,'Art Direction'),(253,8524,7,'Art Direction'),(253,10221,8,'Costume Design'),(8390,135,3,'Executive Producer'),(8390,2236,3,'Producer'),(8390,2238,3,'Producer'),(8390,4907,7,'Production Design'),(8390,10573,1,'Director of Photography'),(8390,16328,2,'Director'),(8390,16328,4,'Writer'),(8390,6377,6,'Original Music Composer'),(8390,9151,3,'Executive Producer'),(8390,15426,3,'Casting'),(8390,15432,6,'Sound Re-Recording Mixer'),(8390,15432,6,'Supervising Sound Editor'),(8390,17635,3,'Casting'),(8390,11372,5,'Editor'),(8390,38082,3,'Executive Producer'),(8390,60014,7,'Art Direction'),(8390,60135,7,'Set Decoration'),(8390,223202,6,'Music Supervisor'),(8390,543194,8,'Costume Design'),(8390,1330612,8,'Makeup Department Head'),(8390,1337464,6,'Sound Re-Recording Mixer'),(8390,1337468,6,'Music Editor'),(8390,1395369,1,'Still Photographer'),(8390,1399970,6,'Sound Effects Editor'),(8390,1411860,2,'Script Supervisor'),(8390,1416796,8,'Hair Department Head'),(8390,1416824,5,'First Assistant Editor'),(8390,1551912,6,'Production Sound Mixer'),(3291,1461,4,'Screenplay'),(3291,1461,2,'Director'),(3291,1484,3,'Casting'),(3291,1884,3,'Executive Producer'),(3291,1891,5,'Editor'),(3291,2946,3,'Executive Producer'),(3291,2950,1,'Director of Photography'),(3291,4061,8,'Costume Design'),(3291,6922,7,'Art Direction'),(3291,9967,7,'Production Design'),(3291,13626,7,'Set Decoration'),(3291,20567,3,'Executive Producer'),(3291,28632,3,'Executive Producer'),(3291,31511,4,'Screenplay'),(3291,31511,3,'Producer'),(3291,31515,3,'Executive Producer'),(3291,31518,3,'Executive Producer'),(3291,31519,3,'Executive Producer'),(3291,31520,3,'Executive Producer'),(398,2952,3,'Casting'),(398,10575,7,'Production Design'),(398,5345,2,'Director'),(398,5346,4,'Screenplay'),(398,5347,4,'Novel'),(398,5356,3,'Producer'),(398,5357,3,'Producer'),(398,5358,3,'Producer'),(398,5359,6,'Original Music Composer'),(398,5360,1,'Director of Photography'),(398,5361,5,'Editor'),(398,5362,3,'Casting'),(398,5363,3,'Casting'),(398,42027,8,'Hairstylist'),(398,55179,7,'Set Decoration'),(398,232158,6,'Music Supervisor'),(398,1023713,8,'Costume Design'),(398,1437911,7,'Set Decoration'),(398,1471017,7,'Art Direction'),(398,1471018,8,'Makeup Artist'),(398,1471019,7,'Art Department Coordinator'),(398,1471020,2,'Script Supervisor'),(8068,2294,4,'Screenplay'),(8068,2294,2,'Director'),(8068,2294,5,'Editor'),(8068,2294,3,'Producer'),(8068,3113,1,'Director of Photography'),(8068,5911,3,'Co-Producer'),(8068,10630,6,'Supervising Sound Editor'),(8068,11422,7,'Production Design'),(8068,11425,8,'Costume Design'),(8068,20498,3,'Co-Producer'),(8068,53910,6,'Music'),(8068,57614,3,'Producer'),(8068,74783,9,'Special Effects Coordinator'),(8068,1391697,9,'Stunt Coordinator'),(8068,1398123,6,'Sound Re-Recording Mixer'),(8068,1401151,1,'Still Photographer'),(8068,1424130,6,'Sound Re-Recording Mixer'),(8068,1429253,2,'Script Supervisor'),(8068,1547309,6,'Production Sound Mixer'),(8068,1564584,5,'Dialogue Editor'),(682,2289,6,'Original Music Composer'),(682,9915,2,'Director'),(682,9856,4,'Novel'),(682,7190,4,'Screenplay'),(682,9861,3,'Producer'),(682,9863,3,'Producer'),(682,9864,6,'Original Music Composer'),(682,9867,1,'Director of Photography'),(682,10218,5,'Editor'),(682,10219,5,'Editor'),(682,9904,3,'Casting'),(682,8524,7,'Art Direction'),(682,8939,8,'Makeup Artist'),(682,9858,4,'Screenplay'),(682,9918,7,'Production Design'),(682,10337,3,'Producer'),(682,10339,1,'Director of Photography'),(682,10340,3,'Casting'),(682,8308,7,'Co-Art Director'),(682,1249768,9,'Special Effects'),(682,1411160,2,'Script Supervisor'),(682,1567270,1,'Camera Operator'),(682,1651445,9,'Sound Recordist'),(9392,558,6,'Original Music Composer'),(9392,1114,5,'Editor'),(9392,2073,3,'Casting'),(9392,15880,6,'Sound Re-Recording Mixer'),(9392,57581,2,'Director'),(9392,57581,4,'Author'),(9392,57583,3,'Producer'),(9392,57584,3,'Executive Producer'),(9392,57585,1,'Director of Photography'),(9392,111041,8,'Costume Supervisor'),(9392,190914,2,'Script Supervisor'),(9392,579130,6,'ADR & Dubbing'),(9392,944908,3,'Casting'),(9392,962163,7,'Production Design'),(9392,962164,7,'Art Direction'),(9392,962165,8,'Costume Design'),(9392,1181554,1,'Still Photographer'),(9392,1338219,7,'Greensman'),(9392,1338220,6,'Supervising Sound Editor'),(9392,1350255,9,'Second Unit Cinematographer'),(9392,1409295,6,'Sound Effects Editor'),(9392,1409296,6,'Supervising Sound Editor'),(9392,1411670,6,'Foley'),(9392,1415957,9,'Stunt Coordinator'),(9392,1421263,3,'Production Manager'),(9392,1422808,8,'Hairstylist'),(9392,1422809,8,'Makeup Artist'),(9392,1422810,9,'Makeup Effects'),(9392,1422811,7,'Construction Coordinator'),(9392,1422812,9,'Property Master'),(9392,1422813,10,'Visual Effects Supervisor'),(9392,1422814,10,'Visual Effects Supervisor'),(9392,1422816,1,'Steadicam Operator'),(9392,1422817,1,'Still Photographer'),(9392,1422818,6,'Music Editor'),(9392,1422819,6,'Music Editor'),(9392,1422820,9,'Unit Publicist'),(2074,1307,3,'Executive Producer'),(2074,59839,3,'Executive Producer'),(2074,3191,3,'Casting'),(2074,5361,5,'Editor'),(2074,6389,1,'Director of Photography'),(2074,9547,7,'Art Direction'),(2074,17883,2,'Director'),(2074,17883,4,'Writer'),(2074,20826,8,'Costume Design'),(2074,21275,3,'Producer'),(2074,21276,6,'Original Music Composer'),(2074,19755,7,'Production Design'),(2074,957622,3,'Casting'),(2074,1209612,2,'Script Supervisor'),(2074,1209613,11,'Gaffer'),(1696,2325,3,'Casting'),(1696,5357,3,'Producer'),(1696,6896,3,'Co-Producer'),(1696,11419,10,'Visual Effects Supervisor'),(1696,11759,7,'Production Design'),(1696,16498,9,'Special Effects Coordinator'),(1696,16848,4,'Screenplay'),(1696,16848,2,'Director'),(1696,16848,3,'Producer'),(1696,37021,3,'Producer'),(1696,27735,3,'Producer'),(1696,37022,3,'Producer'),(1696,3114,1,'Director of Photography'),(1696,21322,5,'Editor'),(1696,37023,7,'Art Direction'),(1696,37024,7,'Set Decoration'),(1696,37025,8,'Costume Design'),(1696,62596,9,'Stunt Coordinator'),(1696,92937,1,'Camera Operator'),(1696,548432,6,'Sound Re-Recording Mixer'),(1696,1042415,9,'Makeup Effects'),(1696,1302177,1,'Steadicam Operator'),(1696,1316292,8,'Makeup Artist'),(1696,1367667,6,'Supervising Sound Editor'),(1696,1372880,6,'Supervising Sound Editor'),(1696,1387195,6,'Sound Re-Recording Mixer'),(1696,1397737,9,'Transportation Coordinator'),(1696,1399130,1,'Still Photographer'),(1696,1399888,5,'Digital Intermediate'),(1696,1408516,6,'Foley'),(1696,1409712,1,'Camera Operator'),(1696,1411538,1,'Camera Operator'),(1696,1413153,7,'Construction Coordinator'),(1696,1419271,5,'Digital Intermediate'),(1696,1423746,8,'Hairstylist'),(1696,1423747,7,'Art Department Coordinator'),(1696,1423749,9,'Property Master'),(1696,1423750,7,'Leadman'),(1696,1423753,6,'Foley'),(1696,1423757,6,'Sound Designer'),(1696,1423770,6,'Music Editor'),(1696,1423771,2,'Script Supervisor'),(1696,1423772,3,'Location Manager'),(1696,1423773,9,'Unit Publicist'),(2662,7034,1,'Director of Photography'),(2662,7035,5,'Editor'),(2662,9419,6,'Sound Effects Editor'),(2662,9435,6,'Foley'),(2662,16426,7,'Production Illustrator'),(2662,17886,5,'Editor'),(2662,17886,3,'Associate Producer'),(2662,16848,4,'Screenplay'),(2662,16848,2,'Director'),(2662,16848,6,'Original Music Composer'),(2662,27735,3,'Producer'),(2662,27742,9,'In Memory Of'),(2662,27743,1,'Director of Photography'),(2662,30856,1,'Camera Operator'),(2662,30874,3,'Casting'),(2662,30876,3,'Casting'),(2662,60500,3,'Executive Producer'),(2662,60500,3,'Unit Production Manager'),(2662,61647,3,'Executive Producer'),(2662,84702,9,'Stunt Coordinator'),(2662,91893,9,'Special Effects Coordinator'),(2662,148221,6,'Supervising Sound Editor'),(2662,204304,3,'Associate Producer'),(2662,957804,7,'Art Direction'),(2662,986334,7,'Production Design'),(2662,988851,9,'Makeup Effects'),(2662,989146,8,'Costume Design'),(2662,1010751,6,'Sound Re-Recording Mixer'),(2662,1085738,2,'Second Assistant Director'),(2662,1190448,7,'Assistant Art Director'),(2662,1319135,7,'Set Designer'),(2662,1322423,8,'Costume Supervisor'),(2662,1341776,9,'Property Master'),(2662,1351274,7,'Art Department Coordinator'),(2662,1392107,11,'Gaffer'),(2662,1397725,7,'Set Decoration'),(2662,1404364,5,'Dialogue Editor'),(2662,1406792,3,'Publicist'),(2662,1431999,8,'Wigmaker'),(2662,1435690,7,'Greensman'),(2662,1436298,1,'Key Grip'),(2662,1453320,3,'Location Manager'),(2662,1457708,2,'Script Supervisor'),(2662,1461177,1,'Still Photographer'),(2662,1472295,3,'Co-Producer'),(2662,1472296,6,'Original Music Composer'),(2662,1472297,5,'Editor'),(2662,1493887,1,'Steadicam Operator'),(2662,1521452,8,'Hairstylist'),(2662,1546557,8,'Key Hair Stylist'),(2662,1552523,2,'First Assistant Director'),(2662,1555374,6,'Sound Editor'),(2662,1573710,9,'Utility Stunts'),(2662,1585197,4,'Storyboard'),(2662,1593980,8,'Key Makeup Artist'),(2662,1597200,9,'Telecine Colorist'),(2662,1603301,7,'Construction Coordinator'),(2662,1603302,7,'Painter'),(2662,1603303,1,'First Assistant Camera'),(2662,1603305,8,'Makeup Artist'),(2662,1603306,7,'Set Dresser'),(2662,1603307,9,'Carpenter'),(2662,1603308,9,'Chef'),(2662,1603309,9,'Craft Service'),(2662,1603310,9,'Driver'),(2662,1603311,9,'Legal Services'),(2662,1603312,1,'Camera Loader'),(2662,1603314,9,'Post Production Supervisor'),(2662,1603316,9,'Propmaker'),(2662,1603318,9,'Scenic Artist'),(2662,1603320,9,'Set Medic'),(2662,1603322,9,'Transportation Captain'),(2662,1603323,9,'Transportation Coordinator'),(2662,1603324,5,'Color Timer'),(2662,1603325,11,'Best Boy Electric'),(2662,1603326,11,'Electrician'),(2662,1603327,11,'Lighting Technician'),(2662,1603328,11,'Rigging Gaffer'),(2662,1603329,3,'Production Accountant'),(2662,1603330,3,'Production Office Coordinator'),(2662,1603331,6,'Boom Operator'),(2662,1603333,6,'Assistant Sound Editor'),(2662,1603334,6,'Sound Mixer'),(2662,1841910,7,'Assistant Property Master'),(2662,1841915,1,'Dolly Grip'),(2662,1841936,1,'Grip'),(2662,1841940,3,'Assistant Production Coordinator'),(2662,1841942,3,'Casting Assistant'),(9555,1357,1,'Director of Photography'),(9555,3056,3,'Executive Producer'),(9555,5547,7,'Production Design'),(9555,5547,8,'Costume Design'),(9555,10762,5,'Editor'),(9555,12203,3,'Casting'),(9555,13015,2,'Director'),(9555,13015,3,'Producer'),(9555,30461,5,'Editor'),(9555,37270,3,'Co-Executive Producer'),(9555,37283,7,'Art Direction'),(9555,38656,3,'Co-Executive Producer'),(9555,39624,6,'Original Music Composer'),(9555,57954,4,'Novel'),(9555,57955,4,'Screenplay'),(9555,57955,3,'Producer'),(9555,57956,3,'Executive Producer'),(9555,57957,3,'Executive Producer'),(9555,57958,3,'Producer'),(9555,75292,7,'Set Decoration'),(9555,1422972,3,'Associate Producer'),(4251,35770,2,'Director'),(4251,35770,3,'Producer'),(4251,35771,4,'Screenplay'),(4251,35771,3,'Producer'),(4251,35772,6,'Original Music Composer'),(4251,35738,1,'Director of Photography'),(4251,35773,5,'Editor'),(4251,35774,3,'Casting'),(4251,35740,7,'Production Design'),(4251,35775,8,'Costume Design'),(4251,81151,6,'Playback Singer'),(4251,936744,6,'Playback Singer'),(4251,1046503,6,'Playback Singer'),(4251,1113618,6,'Playback Singer'),(4251,1608033,6,'Playback Singer'),(1956,1892,4,'Screenplay'),(1956,1892,5,'Editor'),(1956,1893,4,'Screenplay'),(1956,1893,5,'Editor'),(1956,5216,2,'Director'),(1956,5216,4,'Screenplay'),(1956,5216,5,'Editor'),(1956,10687,3,'Producer'),(1956,10688,1,'Director of Photography'),(1956,20227,6,'Sound mixer'),(1956,20228,6,'Foley'),(1956,20229,6,'Foley'),(1956,20230,6,'Original Music Composer'),(1956,56765,6,'Supervising Sound Editor'),(1956,56765,6,'Sound Designer'),(1956,1409220,6,'Sound Re-Recording Mixer'),(8374,2953,3,'Casting'),(8374,8320,6,'Original Music Composer'),(8374,12707,8,'Costume Design'),(8374,18691,3,'Producer'),(8374,18695,1,'Director of Photography'),(8374,20784,3,'Producer'),(8374,21478,3,'Executive Producer'),(8374,21479,3,'Executive Producer'),(8374,54795,2,'Director'),(8374,54795,4,'Writer'),(8374,54796,3,'Producer'),(8374,54797,3,'Producer'),(8374,54798,5,'Editor'),(8374,956705,7,'Production Design'),(8374,958242,7,'Art Direction'),(8374,1293211,7,'Set Decoration'),(8879,190,2,'Director'),(8879,190,3,'Producer'),(8879,195,6,'Original Music Composer'),(8879,384,5,'Editor'),(8879,423,3,'Casting'),(8879,792,1,'Director of Photography'),(8879,53006,4,'Screenplay'),(8879,56191,4,'Screenplay'),(8879,56192,3,'Executive Producer'),(9571,564,4,'Screenplay'),(9571,564,2,'Director'),(9571,564,3,'Producer'),(9571,576,1,'Director of Photography'),(9571,580,5,'Editor'),(9571,7779,3,'Producer'),(9571,7780,3,'Producer'),(9571,1392170,6,'Sound Editor'),(2211,4562,3,'Casting'),(2211,5238,3,'Producer'),(2211,5642,7,'Set Designer'),(2211,9943,8,'Costume Design'),(2211,11604,7,'Art Direction'),(2211,17732,3,'Producer'),(2211,22677,4,'Screenplay'),(2211,22677,2,'Director'),(2211,22678,4,'Novel'),(2211,22679,4,'Screenplay'),(2211,22680,6,'Original Music Composer'),(2211,22682,5,'Editor'),(2211,22683,7,'Set Decoration'),(2211,22684,8,'Makeup Artist'),(2211,22685,8,'Makeup Artist'),(2211,51914,1,'Director of Photography'),(7347,8561,4,'Screenplay'),(7347,8578,5,'Editor'),(7347,8579,7,'Production Design'),(7347,52576,4,'Screenplay'),(7347,52576,2,'Director'),(7347,52576,3,'Producer'),(7347,52577,4,'Novel'),(7347,52578,4,'Novel'),(7347,52579,4,'Screenplay'),(7347,52580,3,'Producer'),(7347,52581,6,'Original Music Composer'),(7347,52582,1,'Director of Photography'),(7347,52582,1,'Camera Operator'),(7347,92486,9,'Stunt Coordinator'),(7347,1176214,7,'Set Designer'),(7347,1266090,3,'Location Manager'),(7347,1314142,8,'Makeup Artist'),(7347,1407031,5,'Digital Intermediate'),(7347,1416584,9,'Special Effects Coordinator'),(7347,1429581,3,'Casting'),(7347,1429582,7,'Set Decoration'),(7347,1429583,8,'Costume Design'),(7347,1429584,8,'Hairstylist'),(7347,1429586,8,'Makeup Artist'),(7347,1429587,7,'Art Department Coordinator'),(7347,1429588,7,'Assistant Art Director'),(7347,1429589,9,'Property Master'),(7347,1429591,7,'Set Designer'),(7347,1429593,5,'Dialogue Editor'),(7347,1429594,6,'Foley'),(7347,1429595,6,'Sound Effects Editor'),(7347,1429596,6,'Sound Effects Editor'),(7347,1429597,6,'Sound Effects Editor'),(7347,1429598,6,'Sound Re-Recording Mixer'),(7347,1429599,9,'Stunt Coordinator'),(7347,1429600,1,'Camera Operator'),(7347,1429601,1,'Still Photographer'),(7347,1429602,11,'Gaffer'),(7347,1429603,8,'Costume Supervisor'),(7347,1429604,5,'Digital Intermediate'),(7347,1429605,2,'Script Supervisor'),(650,5776,3,'Casting'),(650,6482,2,'Director'),(650,6482,4,'Writer'),(650,9772,5,'Editor'),(650,9249,3,'Producer'),(650,9249,3,'Unit Production Manager'),(650,9769,6,'Original Music Composer'),(650,9770,6,'Original Music Composer'),(650,9771,1,'Director of Photography'),(650,9773,7,'Art Direction'),(650,9774,7,'Set Decoration'),(650,9775,8,'Makeup Artist'),(650,9776,9,'Post Production Supervisor'),(650,1711837,9,'Transportation Coordinator'),(9430,1300,4,'Screenplay'),(9430,1891,5,'Editor'),(9430,11694,2,'Director'),(9430,11694,1,'Director of Photography'),(9430,39121,6,'Original Music Composer'),(9430,48498,3,'Producer'),(9430,58314,3,'Producer'),(9430,58315,3,'Producer'),(8998,321,3,'Producer'),(8998,3175,5,'Editor'),(8998,47293,1,'Director of Photography'),(8998,56539,2,'Director'),(8998,56539,4,'Writer'),(8998,56540,6,'Original Music Composer'),(8998,56541,6,'Original Music Composer'),(1591,673,3,'Producer'),(1591,1870,1,'Director of Photography'),(1591,2335,3,'Producer'),(1591,4522,4,'Screenplay'),(1591,4522,2,'Director'),(1591,4524,6,'Original Music Composer'),(1591,4528,5,'Editor'),(1591,4563,7,'Production Design'),(1591,4565,6,'Sound Designer'),(1591,11947,8,'Makeup Artist'),(1591,36176,3,'Producer'),(1591,17804,4,'Screenplay'),(1591,17805,4,'Novel'),(1591,17806,7,'Production Design'),(1591,17807,8,'Costume Design'),(1591,17808,6,'Sound Designer'),(1591,17809,6,'Sound Designer'),(1591,17810,6,'Foley'),(1591,17811,6,'Sound mixer'),(1591,99248,3,'Executive Producer'),(1591,99249,3,'Producer'),(1591,23514,3,'Producer'),(1591,99250,3,'Line Producer'),(4836,474,3,'Casting'),(4836,948,6,'Music'),(4836,957,2,'Director'),(4836,957,3,'Producer'),(4836,1114,5,'Editor'),(4836,9003,7,'Production Design'),(4836,22161,1,'Director of Photography'),(4836,19993,3,'Casting'),(4836,23451,6,'Music'),(4836,39667,4,'Screenplay'),(4836,39667,4,'Novel'),(4836,39668,7,'Art Direction'),(4836,39669,7,'Set Decoration'),(4836,39670,8,'Costume Design'),(4836,61578,3,'Producer'),(4836,189613,3,'Producer'),(4836,1407676,2,'Script Supervisor'),(4836,1465666,9,'Unit Publicist'),(5708,32451,1,'Director of Photography'),(5708,37276,3,'Executive Producer'),(5708,45052,2,'Director'),(5708,45052,3,'Producer'),(5708,45053,4,'Screenplay'),(5708,45054,3,'Producer'),(5708,45055,5,'Editor'),(5708,45056,6,'Music Supervisor'),(5708,45057,7,'Production Design'),(5708,45058,8,'Costume Design'),(218,869,3,'Producer'),(218,869,4,'Writer'),(218,898,5,'Editor'),(218,2710,2,'Director'),(218,2710,4,'Writer'),(218,2711,4,'Dialogue'),(218,2720,3,'Executive Producer'),(218,2721,3,'Executive Producer'),(218,2722,6,'Original Music Composer'),(218,2723,1,'Director of Photography'),(218,2724,3,'Casting'),(218,3995,8,'Makeup Department Head'),(218,22107,8,'Costume Supervisor'),(218,15783,9,'Thanks'),(218,45090,7,'Art Direction'),(218,61838,9,'Stunts'),(218,74975,6,'Sound Re-Recording Mixer'),(218,74976,6,'Sound Re-Recording Mixer'),(218,74978,6,'Sound Re-Recording Mixer'),(218,74992,1,'Still Photographer'),(218,102339,9,'Special Effects Coordinator'),(218,102903,9,'Second Unit'),(218,138631,9,'Makeup Effects'),(218,1024207,7,'Assistant Art Director'),(218,1098702,7,'Set Decoration'),(218,1116736,9,'Post Production Supervisor'),(218,1159421,3,'Casting'),(218,1219264,9,'Stunts'),(218,1258399,3,'Executive In Charge Of Production'),(218,1311828,10,'Mechanical & Creature Designer'),(218,1314343,6,'Supervising Sound Editor'),(218,1315648,8,'Makeup Artist'),(218,1378191,8,'Costume Design'),(218,1378194,9,'Property Master'),(218,1378195,9,'Scenic Artist'),(218,1378196,9,'Scenic Artist'),(218,1378197,7,'Leadman'),(218,1378198,6,'Boom Operator'),(218,1378199,6,'Foley'),(218,1378201,6,'Foley'),(218,1378202,9,'Stunt Coordinator'),(218,1378203,11,'Gaffer'),(218,1378204,11,'Best Boy Electric'),(218,1378206,6,'Music Editor'),(218,1378207,9,'Transportation Coordinator'),(218,1378208,9,'Transportation Captain'),(218,1378209,2,'Script Supervisor'),(218,1378211,3,'Location Manager'),(218,1397844,6,'Sound'),(218,1411166,8,'Hairstylist'),(218,1424531,5,'First Assistant Editor'),(218,1456721,9,'Stunts'),(218,1511729,6,'Sound Effects Editor'),(218,1564492,6,'Music Supervisor'),(218,1571649,2,'Assistant Director'),(338,703,5,'Editor'),(338,1073,3,'Producer'),(338,3700,6,'Sound Designer'),(338,4219,3,'Producer'),(338,4222,3,'Casting'),(338,2422,6,'Original Music Composer'),(338,4780,2,'Director'),(338,4780,4,'Screenplay'),(338,4781,4,'Screenplay'),(338,4799,3,'Producer'),(338,4804,3,'Producer'),(338,4805,3,'Line Producer'),(338,4807,1,'Director of Photography'),(338,4809,7,'Production Design'),(338,40753,7,'Set Designer'),(338,40766,1,'Steadicam Operator'),(338,19695,6,'Music Supervisor'),(338,36402,8,'Makeup Artist'),(338,54962,6,'Sound Effects Editor'),(338,54963,6,'Sound Effects Editor'),(338,972162,9,'Second Unit Cinematographer'),(338,1323227,9,'Second Unit Cinematographer'),(338,1332515,1,'Steadicam Operator'),(338,1380000,11,'Gaffer'),(338,1406584,8,'Hairstylist'),(338,1425853,6,'Foley'),(338,1443182,8,'Makeup Artist'),(338,1555312,7,'Art Direction'),(338,1585860,8,'Costume Design'),(338,1585864,2,'Script Supervisor'),(338,1585865,3,'Researcher'),(338,1585866,8,'Assistant Costume Designer'),(338,1585869,11,'Gaffer'),(338,1585872,1,'Still Photographer'),(338,1585873,1,'Still Photographer'),(338,1585874,9,'Special Effects'),(338,1585875,9,'Special Effects'),(338,1585876,6,'ADR & Dubbing'),(338,1585877,8,'Makeup Artist'),(2293,7779,3,'Producer'),(2293,7780,3,'Producer'),(2293,19303,2,'Director'),(2293,19303,4,'Writer'),(2293,20503,3,'Producer'),(2293,21405,1,'Director of Photography'),(2293,12939,6,'Original Music Composer'),(2293,23645,5,'Editor'),(2293,11373,7,'Production Design'),(2293,39973,3,'Executive Producer'),(621,2287,1,'Director of Photography'),(621,8876,2,'Director'),(621,8877,4,'Screenplay'),(621,8878,3,'Producer'),(621,8879,3,'Producer'),(621,8880,3,'Producer'),(621,8880,3,'Unit Production Manager'),(621,8881,5,'Editor'),(621,8882,3,'Casting'),(621,8883,7,'Production Design'),(621,8884,7,'Set Decoration'),(621,8885,8,'Costume Design'),(621,8888,6,'Music Editor'),(621,8889,6,'Sound mixer'),(621,8890,9,'Special Effects'),(621,121347,2,'Script Supervisor'),(621,1485824,6,'Original Music Composer'),(621,1485824,4,'Musical'),(621,1485825,6,'Original Music Composer'),(621,1485825,4,'Musical'),(792,149,1,'Director of Photography'),(792,1152,2,'Director'),(792,1152,4,'Screenplay'),(792,2621,3,'Producer'),(792,2720,3,'Executive Producer'),(792,2721,3,'Executive Producer'),(792,3535,6,'Original Music Composer'),(792,5709,7,'Production Design'),(792,8971,3,'Casting'),(792,10764,3,'Producer'),(792,11880,5,'Editor'),(792,11881,3,'Casting'),(792,11882,3,'Casting'),(792,11883,7,'Art Direction'),(792,12114,9,'Thanks'),(792,21517,9,'Thanks'),(792,24681,6,'Sound Mixer'),(792,47892,8,'Set Costumer'),(792,53645,5,'Assistant Editor'),(792,71833,7,'Art Direction'),(792,74817,3,'Executive In Charge Of Production'),(792,75002,6,'Music Supervisor'),(792,86332,2,'Assistant Director'),(792,135538,2,'Assistant Director'),(792,136424,9,'Stunt Coordinator'),(792,202100,2,'Assistant Director'),(792,230436,3,'Casting'),(792,1304735,2,'Assistant Director'),(792,1324995,8,'Prosthetic Supervisor'),(792,1378199,6,'Supervising Sound Editor'),(792,1434225,2,'Script Supervisor'),(792,1536637,1,'Still Photographer'),(792,1536638,3,'Production Supervisor'),(792,1603300,9,'Makeup Effects'),(1777,17087,2,'Director'),(1777,17087,3,'Producer'),(1777,17087,4,'Writer'),(1777,46430,3,'Producer'),(1777,1242507,3,'Producer'),(642,8217,1,'Director of Photography'),(642,348,4,'Screenplay'),(642,3636,3,'Executive Producer'),(642,8883,7,'Art Direction'),(642,9061,7,'Art Direction'),(642,9577,2,'Director'),(642,9578,3,'Producer'),(642,9579,3,'Executive Producer'),(642,9580,6,'Original Music Composer'),(642,9582,5,'Editor'),(642,9584,5,'Editor'),(642,9585,3,'Casting'),(642,9586,7,'Set Decoration'),(642,9587,7,'Set Decoration'),(642,9589,3,'Unit Production Manager'),(642,9591,6,'Sound Designer'),(642,9592,6,'Sound Designer'),(433,2106,3,'Producer'),(433,3255,7,'Art Direction'),(433,5834,2,'Director'),(433,5835,4,'Novel'),(433,5836,4,'Screenplay'),(433,5836,3,'Producer'),(433,5837,4,'Screenplay'),(433,5838,6,'Original Music Composer'),(433,5839,6,'Original Music Composer'),(433,5840,1,'Director of Photography'),(433,5841,5,'Editor'),(433,5842,7,'Art Direction'),(433,22066,10,'Animation'),(433,63646,10,'Animation'),(433,138170,10,'Animation'),(433,143786,10,'Animation'),(1725,1744,2,'Director'),(1725,1744,3,'Producer'),(1725,874,7,'Production Design'),(1725,877,6,'Music Editor'),(1725,2637,4,'Screenplay'),(1725,3258,6,'Sound'),(1725,4106,3,'Production Manager'),(1725,13574,8,'Costume Design'),(1725,5806,1,'Director of Photography'),(1725,9851,6,'Music'),(1725,14055,2,'Assistant Director'),(1725,14056,8,'Makeup Artist'),(1725,16893,7,'Set Decoration'),(1725,17665,4,'Screenplay'),(1725,17665,4,'Theatre Play'),(1725,17665,4,'Book'),(1725,18868,4,'Screenplay'),(1725,18868,2,'Director'),(1725,18868,4,'Author'),(1725,18868,9,'Choreographer'),(1725,19460,9,'Other'),(1725,19460,7,'Title Designer'),(1725,10919,6,'Sound'),(1725,34359,3,'Associate Producer'),(1725,34359,6,'Music Supervisor'),(1725,37880,5,'Editor'),(1725,66808,5,'Assistant Editor'),(1725,68137,6,'Orchestrator'),(1725,68137,6,'Music Supervisor'),(1725,52154,6,'Songs'),(1725,122754,7,'Property Master'),(1725,151333,9,'Other'),(1725,175505,6,'Music Supervisor'),(1725,175505,6,'Conductor'),(1725,1072042,4,'Other'),(1725,1123036,9,'Other'),(1725,1248666,4,'Other'),(1725,1250547,9,'Special Effects'),(1725,1337773,9,'Production Artist'),(1725,1340197,6,'Orchestrator'),(1725,1340197,6,'Music Supervisor'),(1725,1368063,6,'Sound'),(1725,1454977,8,'Wardrobe Supervisor'),(1725,1454978,8,'Hairstylist'),(1725,1511729,6,'Sound Editor'),(1725,1824464,9,'Other'),(1725,1824478,9,'Other'),(1725,1824481,6,'Other'),(1725,1824482,6,'Vocal Coach'),(1725,1824485,2,'Script Supervisor'),(1725,1824486,2,'Second Assistant Director'),(1725,1824488,4,'Other'),(629,9042,7,'Set Decoration'),(629,8221,7,'Art Direction'),(629,6410,3,'Casting'),(629,4584,3,'Executive Producer'),(629,19156,3,'Casting Associate'),(629,9032,2,'Director'),(629,9032,3,'Producer'),(629,9033,4,'Writer'),(629,9034,3,'Producer'),(629,9035,3,'Co-Producer'),(629,9036,3,'Executive Producer'),(629,9037,3,'Executive Producer'),(629,9038,3,'Executive Producer'),(629,9039,5,'Editor'),(629,9039,6,'Music'),(629,9040,1,'Director of Photography'),(629,9041,7,'Production Design'),(629,9043,8,'Costume Design'),(629,9044,3,'Production Supervisor'),(629,14100,9,'Special Effects Coordinator'),(629,42034,6,'Sound Re-Recording Mixer'),(629,37038,6,'Orchestrator'),(629,38579,1,'Additional Photography'),(629,113075,6,'Supervising Sound Editor'),(629,80298,9,'Stunt Coordinator'),(629,98542,9,'Makeup Effects'),(629,111893,4,'Storyboard'),(629,143893,8,'Makeup Department Head'),(629,1017376,1,'Steadicam Operator'),(629,1049330,5,'Assistant Editor'),(629,1341776,9,'Property Master'),(629,1357066,1,'Steadicam Operator'),(629,1397737,9,'Transportation Coordinator'),(629,1399996,6,'Sound Re-Recording Mixer'),(629,1399997,6,'Sound Re-Recording Mixer'),(629,1402170,2,'Script Supervisor'),(629,1406242,6,'Sound Effects Editor'),(629,1406261,11,'Gaffer'),(629,1415109,1,'Still Photographer'),(629,1431027,2,'Script Supervisor'),(629,1433996,8,'Key Hair Stylist'),(629,1446545,6,'Sound Effects Editor'),(629,1511737,6,'Sound Mixer'),(629,1527280,3,'Casting Associate'),(629,1529600,9,'Unit Publicist'),(629,1531492,9,'Post Production Supervisor'),(629,1534236,1,'Still Photographer'),(629,1550072,5,'Dialogue Editor'),(629,1552008,9,'Transportation Co-Captain'),(629,1552019,9,'Transportation Captain'),(629,1568646,1,'First Assistant Camera'),(629,1732486,6,'Boom Operator'),(629,1732490,7,'Art Department Coordinator'),(629,1732491,8,'Costume Supervisor'),(629,1732492,8,'Set Costumer'),(629,1732494,3,'Location Manager'),(629,1732495,3,'Location Manager'),(629,1732496,9,'Transportation Captain'),(629,1732498,9,'Craft Service'),(629,1732499,1,'Still Photographer'),(629,1732501,5,'Dialogue Editor'),(629,1732502,6,'Sound Effects Editor'),(629,1732503,6,'Music Editor'),(629,1732504,5,'Color Timer'),(1103,511,3,'Producer'),(1103,1060,1,'Director of Photography'),(1103,1767,5,'Editor'),(1103,2161,3,'Producer'),(1103,8558,7,'Production Design'),(1103,11770,2,'Director'),(1103,11770,6,'Original Music Composer'),(1103,11770,4,'Screenplay'),(1103,11772,3,'Producer'),(1103,11780,8,'Costume Design'),(1103,14692,4,'Screenplay'),(1103,15445,6,'Original Music Composer'),(1103,15447,1,'Director of Photography'),(1103,15448,7,'Set Decoration'),(1523,465,3,'Executive Producer'),(1523,474,3,'Casting'),(1523,1570,1,'Director of Photography'),(1523,2035,3,'Executive Producer'),(1523,6370,3,'Producer'),(1523,6372,3,'Producer'),(1523,6374,3,'Producer'),(1523,15730,4,'Screenplay'),(1523,15733,7,'Set Decoration'),(1523,16364,7,'Production Design'),(1523,16735,8,'Hair Designer'),(1523,16887,6,'Foley'),(1523,17350,2,'Director'),(1523,35005,4,'Screenplay'),(1523,35006,4,'Novel'),(1523,35007,3,'Producer'),(1523,35008,3,'Producer'),(1523,17600,3,'Executive Producer'),(1523,35009,3,'Line Producer'),(1523,22047,6,'Original Music Composer'),(1523,35010,5,'Editor'),(1523,35011,7,'Art Direction'),(1523,35012,8,'Costume Design'),(1523,20247,3,'Producer'),(1523,20423,9,'Thanks'),(1523,122355,9,'Stunt Coordinator'),(1523,1122199,5,'Assistant Editor'),(1523,1185530,9,'Stunt Coordinator'),(1523,1349076,5,'Color Timer'),(1523,1416481,5,'Digital Intermediate'),(1523,1433625,2,'Script Supervisor'),(1523,1465384,7,'Supervising Art Director'),(1523,1515608,2,'Assistant Director'),(1523,1556140,8,'Makeup Artist'),(1523,1665616,9,'Title Graphics'),(1523,1677700,6,'Orchestrator'),(1523,1677710,1,'Grip'),(1523,1677713,1,'Still Photographer'),(1443,1776,3,'Producer'),(1443,1769,4,'Screenplay'),(1443,1769,2,'Director'),(1443,5215,8,'Costume Design'),(1443,5379,3,'Producer'),(1443,5910,7,'Production Design'),(1443,5929,7,'Art Direction'),(1443,6345,1,'Director of Photography'),(1443,17231,3,'Producer'),(1443,17229,4,'Novel'),(1443,17230,3,'Producer'),(1443,17232,6,'Original Music Composer'),(1443,17233,5,'Editor'),(1443,17234,5,'Editor'),(1443,17235,7,'Set Decoration'),(1443,40839,6,'Music Supervisor'),(1443,933333,3,'Casting'),(1443,1192007,3,'Casting'),(1443,1532410,3,'Casting'),(8545,1307,3,'Co-Executive Producer'),(8545,59839,3,'Co-Executive Producer'),(8545,3311,3,'Casting'),(8545,9021,3,'Executive Producer'),(8545,10714,8,'Costume Design'),(8545,34007,3,'Executive Producer'),(8545,21378,3,'Co-Executive Producer'),(8545,28841,5,'Editor'),(8545,32347,6,'Original Music Composer'),(8545,45437,1,'Director of Photography'),(8545,55299,2,'Director'),(8545,55299,4,'Screenplay'),(8545,55301,4,'Theatre Play'),(8545,56994,6,'Music Supervisor'),(8545,66552,7,'Set Decoration'),(8545,590074,3,'Producer'),(8545,948439,3,'Co-Producer'),(8545,1342606,2,'Script Supervisor'),(8545,1361753,7,'Production Design'),(8545,1422818,6,'Music Editor'),(8545,1591314,7,'Supervising Art Director'),(8545,1591315,3,'Production Coordinator'),(576,384,5,'Assistant Editor'),(576,379,6,'Music Editor'),(576,3351,1,'Director of Photography'),(576,4108,11,'Gaffer'),(576,7127,7,'Art Direction'),(576,7765,4,'Author'),(576,7765,4,'Screenplay'),(576,7766,4,'Author'),(576,7766,3,'Producer'),(576,7767,2,'Director'),(576,7767,4,'Screenplay'),(576,7768,3,'Producer'),(576,7769,6,'Original Music Composer'),(576,7770,5,'Editor'),(576,7771,8,'Makeup Artist'),(576,7772,3,'Production Manager'),(576,7773,6,'Sound Designer'),(576,7774,9,'Special Effects'),(576,13721,5,'Associate Editor'),(576,45963,1,'Still Photographer'),(576,55224,2,'Assistant Director'),(576,59806,8,'Costume Design'),(576,74811,6,'Scoring Mixer'),(576,91203,9,'Second Unit'),(576,121234,9,'Stunts'),(576,209585,9,'Stunts'),(576,423177,6,'Music Supervisor'),(576,559911,1,'Camera Operator'),(576,1391093,9,'Stunt Coordinator'),(576,1391094,2,'Script Supervisor'),(576,1391095,9,'Property Master'),(576,1400372,9,'Stunts'),(576,1631429,9,'Animal Wrangler'),(576,1788495,9,'Stunts'),(7547,16484,2,'Director'),(7547,16484,4,'Author'),(9282,448,3,'Executive Producer'),(9282,816,3,'Producer'),(9282,5914,3,'Casting'),(9282,6377,6,'Original Music Composer'),(9282,6890,3,'Executive Producer'),(9282,6892,3,'Executive Producer'),(9282,6893,3,'Executive Producer'),(9282,9543,3,'Producer'),(9282,11455,5,'Editor'),(9282,33624,3,'Executive Producer'),(9282,53291,5,'Editor'),(9282,53637,7,'Production Design'),(9282,57125,2,'Director'),(9282,57125,4,'Writer'),(9282,57126,1,'Director of Photography'),(9282,58145,3,'Executive Producer'),(9282,61077,7,'Art Direction'),(9282,66907,3,'Executive Producer'),(9282,94546,3,'Casting'),(9282,1418166,7,'Set Decoration'),(9282,1639187,3,'Executive Producer'),(9282,1639187,3,'Unit Production Manager'),(837,224,2,'Director'),(837,224,4,'Writer'),(837,310,5,'Editor'),(837,117,6,'Original Music Composer'),(837,7413,1,'Director of Photography'),(837,8315,7,'Art Direction'),(837,12476,3,'Producer'),(837,12477,3,'Executive Producer'),(837,12479,3,'Executive Producer'),(837,12480,7,'Set Decoration'),(837,12481,8,'Costume Design'),(837,16178,9,'Makeup Effects'),(837,97724,9,'Makeup Effects'),(837,563116,8,'Makeup Artist'),(837,1286346,8,'Hairstylist'),(837,1286358,9,'Makeup Effects'),(837,1286359,8,'Hairstylist'),(837,1286360,9,'Special Effects'),(1555,16336,3,'Casting'),(1555,17535,7,'Production Design'),(1555,17520,2,'Director'),(1555,17520,4,'Screenplay'),(1555,17530,3,'Producer'),(1555,17531,1,'Director of Photography'),(1555,17532,5,'Editor'),(1555,17533,3,'Casting'),(1555,17534,3,'Casting'),(1555,17536,8,'Costume Design'),(1555,17537,6,'Sound Designer'),(3482,2704,6,'Original Music Composer'),(3482,6835,4,'Screenplay'),(3482,10470,1,'Director of Photography'),(3482,12342,4,'Screenplay'),(3482,13776,2,'Director'),(3482,19057,7,'Production Design'),(3482,3898,5,'Editor'),(3482,32097,1,'Director of Photography'),(3482,32106,4,'Novel'),(3482,32107,4,'Screenplay'),(3482,32108,4,'Screenplay'),(3482,32109,3,'Producer'),(3482,32110,5,'Editor'),(3482,32111,8,'Makeup Artist'),(8982,57212,4,'Screenplay'),(8982,57213,4,'Screenplay'),(8982,57214,4,'Screenplay'),(8982,57214,2,'Director'),(8982,57214,3,'Producer'),(8982,57215,3,'Producer'),(8982,57216,6,'Music'),(8982,57217,1,'Director of Photography'),(8982,57218,5,'Editor'),(455,6223,3,'Producer'),(455,5267,3,'Executive Producer'),(455,6220,4,'Screenplay'),(455,6220,2,'Director'),(455,6220,3,'Producer'),(455,6221,4,'Screenplay'),(455,6222,4,'Screenplay'),(455,6222,3,'Producer'),(455,6224,3,'Executive Producer'),(455,6225,3,'Executive Producer'),(455,6226,3,'Executive Producer'),(455,6227,3,'Line Producer'),(455,6228,3,'Line Producer'),(455,6229,6,'Original Music Composer'),(455,6230,1,'Director of Photography'),(455,6231,5,'Editor'),(455,6232,3,'Casting'),(455,6233,3,'Casting'),(455,6234,7,'Production Design'),(455,6235,7,'Art Direction'),(455,6236,7,'Set Decoration'),(455,6237,8,'Costume Design'),(9277,369,7,'Art Direction'),(9277,1297,3,'Executive Producer'),(9277,3099,5,'Editor'),(9277,3644,9,'Stunts'),(9277,4150,8,'Set Costumer'),(9277,4350,8,'Costume Design'),(9277,5322,3,'Executive Producer'),(9277,9577,2,'Director'),(9277,10005,1,'Director of Photography'),(9277,10468,6,'Original Music Composer'),(9277,12432,3,'Producer'),(9277,12433,3,'Producer'),(9277,12920,4,'Screenplay'),(9277,14499,6,'Sound'),(9277,14826,7,'Set Decoration'),(9277,17916,2,'Script Supervisor'),(9277,26986,8,'Makeup Artist'),(9277,57138,3,'Producer'),(9277,57139,3,'Producer'),(9277,57141,6,'Music'),(9277,92392,6,'Sound'),(9277,1056058,3,'Casting'),(9277,1072006,3,'Casting'),(9277,1193679,9,'Special Effects'),(9277,1233646,2,'Assistant Director'),(9277,1299027,8,'Hairstylist'),(9277,1316341,10,'Visual Effects'),(9277,1339683,1,'Camera Operator'),(9277,1389310,8,'Makeup Artist'),(9277,1400372,9,'Stunts'),(9277,1455393,8,'Set Costumer'),(9277,1455397,8,'Makeup Artist'),(9277,1469560,9,'Unit Publicist'),(9277,1535123,9,'Stunts'),(9277,1558602,2,'Assistant Director'),(9277,1574927,8,'Makeup Artist'),(9277,1590561,3,'Production Manager'),(9277,1614958,9,'Stunts'),(9277,1628998,8,'Set Costumer'),(9443,595,6,'Original Music Composer'),(9443,2359,3,'Executive Producer'),(9443,5056,5,'Editor'),(9443,5671,8,'Costume Design'),(9443,10719,8,'Makeup Artist'),(9443,10639,1,'Director of Photography'),(9443,10645,8,'Makeup Department Head'),(9443,8940,2,'Assistant Director'),(9443,8967,3,'Producer'),(9443,11381,3,'Production Manager'),(9443,14696,3,'Executive Producer'),(9443,14957,4,'Novel'),(9443,14957,4,'Screenplay'),(9443,58220,2,'Director'),(9443,58221,3,'Producer'),(9443,957624,7,'Art Direction'),(9443,1047832,7,'Art Direction'),(9443,1202174,8,'Hair Department Head'),(9443,1353832,3,'Casting'),(9443,1378834,7,'Art Direction'),(9443,1400418,7,'Art Direction'),(9443,1626425,8,'Hairstylist'),(9443,1626426,8,'Hairstylist'),(9443,1626427,8,'Makeup Artist'),(7863,33433,2,'Director'),(7863,33433,4,'Story'),(7863,33438,5,'Editor'),(7863,37757,6,'Music'),(7863,52055,9,'Cinematography'),(7863,57596,3,'Producer'),(7863,67887,4,'Screenplay'),(7863,586330,7,'Art Direction'),(7863,1403109,7,'Production Design'),(7863,1403110,8,'Costume Design'),(1548,3656,1,'Director of Photography'),(1548,5175,5,'Editor'),(1548,6371,3,'Executive Producer'),(1548,6949,3,'Producer'),(1548,6901,7,'Production Design'),(1548,7418,8,'Costume Design'),(1548,17149,7,'Art Direction'),(1548,25143,6,'Original Music Composer'),(1548,17447,4,'Screenplay'),(1548,17447,2,'Director'),(1548,17448,4,'Screenplay'),(1548,17448,4,'Comic Book'),(1548,18789,3,'Line Producer'),(1548,20774,3,'Executive Producer'),(1548,21729,7,'Set Decoration'),(1548,21717,5,'Editor'),(1548,52445,3,'Producer'),(1548,52897,3,'Producer'),(1548,1473981,2,'Script Supervisor'),(1548,1537179,1,'Still Photographer'),(1548,1695809,6,'Music Supervisor'),(5528,2160,1,'Director of Photography'),(5528,10032,3,'Producer'),(5528,14229,4,'Story'),(5528,20029,3,'Producer'),(5528,20030,3,'Producer'),(5528,21171,3,'Associate Producer'),(5528,22319,5,'Editor'),(5528,26406,4,'Screenplay'),(5528,35073,6,'Music'),(5528,35209,9,'Cinematography'),(5528,43993,4,'Screenplay'),(5528,43993,2,'Director'),(5528,43993,6,'Music'),(5528,43995,1,'Director of Photography'),(5528,68191,7,'Production Design'),(5528,86458,2,'Script Supervisor'),(5528,110533,4,'Screenplay'),(5528,971263,3,'Casting'),(5528,971722,8,'Set Costumer'),(5528,1030267,3,'Casting'),(5528,1286775,3,'Production Manager'),(5528,1346683,8,'Costume Design'),(5528,1374996,6,'Music Supervisor'),(5528,1470212,10,'Visual Effects Producer'),(5528,1566156,7,'Painter'),(5528,1628311,2,'Assistant Director'),(5528,1634057,8,'Makeup Artist'),(5528,1669207,5,'Color Timer'),(5528,1669208,9,'Title Graphics'),(5528,1669209,10,'Visual Effects Coordinator'),(321,6980,4,'Screenplay'),(321,6980,2,'Director'),(321,6983,4,'Screenplay'),(321,6986,3,'Producer'),(321,6987,3,'Producer'),(321,6989,6,'Original Music Composer'),(321,6991,6,'Original Music Composer'),(321,6992,1,'Director of Photography'),(321,6995,5,'Editor'),(321,6997,3,'Casting'),(321,7000,9,'Special Effects'),(321,7001,9,'Stunts'),(4997,8377,6,'Original Music Composer'),(4997,16831,3,'Producer'),(4997,40508,2,'Director'),(4997,40508,4,'Author'),(4997,40511,1,'Director of Photography'),(4997,40513,3,'Producer'),(4997,72002,4,'Writer'),(4997,560323,4,'Writer'),(4997,560324,4,'Writer'),(925,548,7,'Production Design'),(925,5281,2,'Director'),(925,5281,4,'Screenplay'),(925,5281,3,'Producer'),(925,5289,5,'Editor'),(925,9619,6,'Sound Designer'),(925,15520,6,'Original Music Composer'),(925,15521,1,'Director of Photography'),(925,15522,3,'Casting'),(925,15523,7,'Set Decoration'),(925,15524,8,'Costume Design'),(925,15525,8,'Makeup Artist'),(925,15526,8,'Hairstylist'),(925,15527,6,'Sound Editor'),(925,15528,9,'Special Effects'),(925,15529,9,'Stunt Coordinator'),(925,15530,9,'Stunts'),(979,1925,3,'Co-Producer'),(979,5425,3,'Producer'),(979,14597,2,'Director'),(979,14597,1,'Director of Photography'),(979,14597,5,'Editor'),(979,14597,4,'Writer'),(979,14597,3,'Co-Producer'),(979,14598,6,'Original Music Composer'),(979,14599,1,'Director of Photography'),(979,14600,3,'Casting'),(979,14601,7,'Production Design'),(979,14602,8,'Costume Design'),(979,14605,6,'Sound Editor'),(979,56787,3,'Co-Producer'),(979,51323,3,'Co-Producer'),(979,108982,3,'Consulting Producer'),(979,142096,6,'Foley'),(979,1337650,10,'Visual Effects Supervisor'),(979,1407213,6,'Sound Re-Recording Mixer'),(979,1415982,1,'Steadicam Operator'),(979,1533174,9,'Makeup Effects'),(979,1556129,9,'Visual Effects Editor'),(979,1569223,8,'Hairstylist'),(979,1582917,8,'Hairstylist'),(979,1590495,7,'Assistant Art Director'),(979,1590496,7,'Assistant Art Director'),(979,1590497,11,'Gaffer'),(979,1590498,6,'Boom Operator'),(979,1591830,10,'Digital Compositors'),(979,1591831,10,'Digital Compositors'),(979,1591832,9,'Compositors'),(7913,53671,2,'Director'),(7913,53671,3,'Producer'),(7913,53671,4,'Screenplay'),(7913,53677,3,'Producer'),(7913,53678,3,'Producer'),(7913,53679,1,'Director of Photography'),(7913,53680,3,'Casting'),(7913,53681,7,'Production Design'),(7913,53681,7,'Art Direction'),(7913,1259303,6,'Music'),(7913,1424256,1,'Second Unit Director of Photography'),(215,2127,3,'Executive Producer'),(215,2128,4,'Screenplay'),(215,2128,3,'Executive Producer'),(215,2145,3,'Producer'),(215,2146,3,'Producer'),(215,2147,3,'Producer'),(215,2148,6,'Original Music Composer'),(215,2149,1,'Director of Photography'),(215,2150,5,'Editor'),(215,2151,3,'Casting'),(215,2675,4,'Screenplay'),(215,2675,2,'Director'),(215,2678,3,'Casting'),(215,2679,7,'Production Design'),(215,2688,6,'Supervising Sound Editor'),(215,51026,3,'Co-Producer'),(215,51029,3,'Executive Producer'),(215,51030,3,'Executive Producer'),(215,51032,3,'Executive Producer'),(215,51035,8,'Costume Design'),(215,651918,3,'Co-Producer'),(215,1317669,7,'Art Direction'),(215,1317670,7,'Set Decoration'),(9012,5953,4,'Screenplay'),(9012,5953,3,'Producer'),(9012,9656,4,'Screenplay'),(9012,9656,3,'Producer'),(9012,15017,8,'Makeup Artist'),(9012,56578,4,'Screenplay'),(9012,56578,2,'Director'),(9012,56578,3,'Producer'),(9012,56579,3,'Executive Producer'),(9012,56580,1,'Director of Photography'),(9012,56581,5,'Editor'),(9012,56582,5,'Editor'),(9012,56583,5,'Editor'),(9012,1371036,1,'Camera Operator'),(9012,1746321,3,'Executive Producer'),(504,800,5,'Editor'),(504,6889,3,'Producer'),(504,2045,3,'Casting'),(504,6884,2,'Director'),(504,6884,4,'Screenplay'),(504,6885,3,'Producer'),(504,6887,3,'Producer'),(504,6888,3,'Producer'),(504,6890,3,'Producer'),(504,6891,3,'Executive Producer'),(504,6892,3,'Executive Producer'),(504,6893,3,'Executive Producer'),(504,6894,3,'Executive Producer'),(504,6895,3,'Executive Producer'),(504,6896,3,'Producer'),(504,6897,3,'Producer'),(504,6898,6,'Original Music Composer'),(504,6899,1,'Director of Photography'),(504,6900,5,'Editor'),(504,6901,7,'Production Design'),(504,6902,7,'Art Direction'),(504,6903,7,'Set Decoration'),(504,6904,8,'Costume Design'),(504,62596,9,'Stunt Coordinator'),(504,74766,8,'Key Hair Stylist'),(504,113844,6,'Music Supervisor'),(504,1399130,1,'Still Photographer'),(504,1407737,1,'Steadicam Operator'),(504,1534687,6,'Music Editor'),(504,1534688,2,'Script Supervisor'),(173,1940,1,'Director of Photography'),(173,2087,2,'Director'),(173,2088,4,'Novel'),(173,2089,4,'Screenplay'),(173,2106,3,'Producer'),(173,2107,6,'Original Music Composer'),(173,2108,5,'Editor'),(173,2110,7,'Production Design'),(173,2113,6,'Sound Director'),(173,2117,6,'Production Sound Mixer'),(173,2114,6,'Boom Operator'),(1955,719,6,'Original Music Composer'),(1955,750,3,'Casting'),(1955,5602,4,'Screenplay'),(1955,5602,2,'Director'),(1955,5602,6,'Sound Designer'),(1955,5629,1,'Director of Photography'),(1955,5634,8,'Costume Design'),(1955,5491,7,'Production Design'),(1955,6060,9,'Special Effects'),(1955,6346,5,'Editor'),(1955,10706,2,'Assistant Director'),(1955,14460,10,'Special Effects Supervisor'),(1955,14639,3,'Executive Producer'),(1955,20109,6,'Sound mixer'),(1955,20111,6,'Boom Operator'),(1955,15901,3,'Producer'),(1955,34554,9,'Special Effects'),(1955,22302,3,'Executive Producer'),(1955,26872,7,'Art Direction'),(1955,29061,8,'Costume Supervisor'),(1955,29611,9,'Special Effects'),(1955,32477,4,'Screenplay'),(1955,32478,4,'Screenplay'),(1955,47416,7,'Set Designer'),(1955,63913,3,'Production Manager'),(1955,193511,5,'Assistant Editor'),(1955,931836,8,'Makeup Artist'),(1955,1049695,7,'Set Decoration'),(1955,1117303,9,'Special Sound Effects'),(1955,1335181,9,'Property Master'),(1955,1339068,6,'Sound Editor'),(1955,1410199,2,'Script Supervisor'),(1955,1412205,1,'Still Photographer'),(1955,1434637,8,'Hairstylist'),(1955,1456054,11,'Electrician'),(1955,1529315,8,'Makeup Designer'),(1955,1532767,9,'Special Effects'),(1955,1532768,11,'Gaffer'),(1955,1532774,6,'Orchestrator'),(1955,1593085,9,'Transportation Captain'),(77,525,4,'Screenplay'),(77,525,2,'Director'),(77,527,4,'Author'),(77,550,3,'Producer'),(77,551,3,'Producer'),(77,554,3,'Executive Producer'),(77,556,3,'Associate Producer'),(77,558,6,'Original Music Composer'),(77,559,1,'Director of Photography'),(77,560,7,'Production Design'),(77,561,3,'Casting'),(77,562,6,'Supervising Sound Editor'),(77,563,5,'Editor'),(77,44633,3,'Co-Executive Producer'),(77,44634,3,'Co-Executive Producer'),(77,47294,8,'Costume Design'),(77,75391,7,'Set Decoration'),(77,558896,9,'Stunt Coordinator'),(77,1070156,6,'Music Supervisor'),(77,1367508,2,'Script Supervisor'),(77,1392170,6,'Music Editor'),(2295,19303,2,'Director'),(2295,19303,4,'Screenplay'),(2295,19303,5,'Editor'),(2295,20503,3,'Producer'),(2295,21470,7,'Art Direction'),(2295,21405,1,'Director of Photography'),(2295,23654,7,'Production Design'),(2295,23739,6,'Original Music Composer'),(71,462,3,'Producer'),(71,463,3,'Producer'),(71,464,3,'Producer'),(71,465,3,'Producer'),(71,466,3,'Producer'),(71,467,3,'Producer'),(71,468,2,'Director'),(71,469,6,'Original Music Composer'),(71,470,4,'Author'),(71,471,7,'Production Design'),(71,472,6,'Sound Designer'),(71,473,1,'Director of Photography'),(71,474,3,'Casting'),(71,476,5,'Editor'),(71,1576,9,'Choreographer'),(71,1427849,2,'Script Supervisor'),(71,1465063,9,'Unit Publicist'),(2895,3087,2,'Director'),(2895,3087,4,'Author'),(2895,34191,1,'Director of Photography'),(2895,34192,5,'Editor'),(2895,34193,7,'Production Design'),(8346,31,3,'Producer'),(8346,720,1,'Director of Photography'),(8346,12931,3,'Producer'),(8346,27098,3,'Producer'),(8346,41553,5,'Editor'),(8346,54644,2,'Director'),(8346,54645,4,'Screenplay'),(8346,54653,6,'Original Music Composer'),(8346,54654,6,'Original Music Composer'),(1391,4185,1,'Director of Photography'),(1391,11218,2,'Director'),(1391,11218,4,'Screenplay'),(1391,11218,3,'Producer'),(1391,11218,5,'Editor'),(1391,12529,4,'Screenplay'),(1391,13236,3,'Producer'),(1391,23401,5,'Editor'),(1391,33436,3,'Executive Producer'),(1391,39454,3,'Executive Producer'),(1391,60476,3,'Executive Producer'),(1391,1373695,3,'Line Producer'),(1391,1520950,9,'Special Effects'),(1391,1521652,7,'Production Design'),(1391,1689780,7,'Production Design'),(747,474,3,'Casting'),(747,2236,3,'Executive Producer'),(747,2238,3,'Executive Producer'),(747,11090,2,'Director'),(747,11090,4,'Screenplay'),(747,11108,4,'Screenplay'),(747,11112,3,'Producer'),(747,11113,1,'Director of Photography'),(747,11114,5,'Editor'),(747,34005,7,'Art Direction'),(747,39200,7,'Production Design'),(747,39203,8,'Costume Design'),(747,71774,6,'Original Music Composer'),(747,192625,1,'Camera Operator'),(747,1323809,6,'Original Music Composer'),(747,1406200,9,'Unit Publicist'),(747,1465643,9,'Choreographer'),(9900,7413,1,'Director of Photography'),(9900,19292,3,'Executive Producer'),(9900,20818,4,'Writer'),(9900,20819,3,'Producer'),(9900,20821,3,'Executive Producer'),(9900,20824,7,'Production Design'),(9900,32903,7,'Art Direction'),(9900,32907,3,'Producer'),(9900,32907,4,'Writer'),(9900,41328,3,'Executive Producer'),(9900,41330,3,'Executive Producer'),(9900,11000,3,'Executive Producer'),(9900,45294,7,'Art Direction'),(9900,59922,3,'Executive Producer'),(9900,60148,4,'Writer'),(9900,60149,2,'Director'),(9900,60150,6,'Original Music Composer'),(9900,60151,5,'Editor'),(9900,60154,3,'Casting'),(9900,60157,8,'Costume Design'),(9900,60155,7,'Art Direction'),(9900,60156,7,'Set Decoration'),(9900,1395352,10,'Visual Effects Producer'),(9900,1516479,3,'Casting'),(335,1259,6,'Original Music Composer'),(335,2361,1,'Director of Photography'),(335,4610,9,'Stunts'),(335,4385,4,'Screenplay'),(335,4385,2,'Director'),(335,4385,4,'Story'),(335,4655,7,'Production Design'),(335,4655,8,'Costume Design'),(335,4670,5,'Editor'),(335,4954,3,'Executive Producer'),(335,4955,4,'Story'),(335,4956,4,'Story'),(335,4984,8,'Costume Design'),(335,4985,9,'Special Effects'),(335,4986,3,'Producer'),(335,5555,4,'Screenplay'),(3028,909,5,'Editor'),(3028,1093,3,'Producer'),(3028,1939,1,'Director of Photography'),(3028,3389,4,'Screenplay'),(3028,29533,4,'Novel'),(3028,29705,4,'Screenplay'),(3028,29705,2,'Director'),(3028,11368,4,'Screenplay'),(3028,29706,4,'Screenplay'),(3028,29707,6,'Music'),(3028,29708,3,'Casting'),(1024,108,4,'Screenplay'),(1024,108,2,'Director'),(1024,108,3,'Co-Producer'),(1024,126,4,'Screenplay'),(1024,1390,5,'Editor'),(1024,11327,6,'Original Music Composer'),(1024,15089,3,'Producer'),(1024,15090,1,'Director of Photography'),(1024,17732,3,'Executive Producer'),(1024,1062459,3,'Line Producer'),(4553,14351,6,'Original Music Composer'),(4553,17083,3,'Producer'),(4553,17089,5,'Editor'),(4553,37948,2,'Director'),(4553,37949,4,'Writer'),(4553,37950,3,'Executive Producer'),(4553,37951,3,'Executive Producer'),(4553,37952,1,'Director of Photography'),(4553,1129799,7,'Production Design'),(4553,1405371,2,'Script Supervisor'),(1415,2862,3,'Producer'),(1415,5390,7,'Art Direction'),(1415,16957,2,'Director'),(1415,16957,4,'Screenplay'),(1415,16957,3,'Producer'),(1415,16958,2,'Director'),(1415,16958,4,'Screenplay'),(1415,16958,3,'Producer'),(1415,32601,6,'Original Music Composer'),(1415,32602,5,'Editor'),(1415,32603,1,'Director of Photography'),(1415,32604,3,'Casting'),(1415,32605,7,'Production Design'),(1415,32606,7,'Set Decoration'),(1415,32607,3,'Producer'),(1415,32608,3,'Producer'),(1415,113844,6,'Music Supervisor'),(1415,1399979,2,'Script Supervisor'),(1415,1534692,1,'Still Photographer'),(8744,1979,2,'Director'),(8744,19016,6,'Original Music Composer'),(8744,56249,4,'Screenplay'),(8744,56250,1,'Director of Photography'),(8847,149,1,'Director of Photography'),(8847,531,6,'Original Music Composer'),(8847,18533,2,'Director'),(8847,18533,3,'Producer'),(8847,31519,3,'Executive Producer'),(8847,56071,7,'Production Design'),(8847,56072,5,'Editor'),(8847,56073,5,'Editor'),(8847,56074,5,'Editor'),(8847,56075,1,'Director of Photography'),(8847,56076,3,'Executive Producer'),(8847,56077,3,'Executive Producer'),(8847,56078,3,'Executive Producer'),(8847,56079,3,'Producer'),(8847,1547770,3,'Executive Producer'),(1690,138,3,'Executive Producer'),(1690,6867,3,'Producer'),(1690,6869,3,'Producer'),(1690,7184,5,'Editor'),(1690,8762,5,'Dialogue Editor'),(1690,11419,10,'Visual Effects Coordinator'),(1690,11641,3,'Executive Producer'),(1690,16492,7,'Production Design'),(1690,16492,8,'Costume Design'),(1690,42035,6,'Supervising Sound Editor'),(1690,42036,6,'ADR Supervisor'),(1690,16847,2,'Director'),(1690,16847,4,'Writer'),(1690,16847,3,'Producer'),(1690,33931,1,'Director of Photography'),(1690,33932,3,'Casting'),(1690,33933,7,'Art Direction'),(1690,19659,6,'Original Music Composer'),(1690,19662,3,'Casting'),(1690,25749,7,'Property Master'),(1690,52358,3,'Executive Producer'),(1690,548427,7,'Set Decoration'),(1690,1204440,8,'Costume Design'),(1690,1334494,7,'Art Department Coordinator'),(1690,1357671,6,'Sound Editor'),(1690,1360875,8,'Makeup Artist'),(1690,1391571,6,'Sound Re-Recording Mixer'),(1690,1398935,11,'Gaffer'),(1690,1401151,1,'Still Photographer'),(1690,1404546,6,'Music Editor'),(1690,1406241,6,'Supervising Sound Editor'),(1690,1410154,10,'Special Effects Supervisor'),(1690,1449958,9,'Stunt Coordinator'),(1690,1483854,2,'Script Supervisor'),(1690,1537463,6,'Sound Re-Recording Mixer'),(1690,1548101,6,'Sound Editor'),(1690,1564777,6,'Boom Operator'),(1690,1564778,6,'Sound Editor'),(1690,1564780,3,'Production Coordinator'),(1690,1889469,3,'Casting'),(1690,1889471,8,'Key Makeup Artist'),(1690,1889473,8,'Makeup Designer'),(1690,1889480,6,'Boom Operator'),(1690,1889484,1,'Key Grip'),(1690,1889488,1,'Steadicam Operator'),(1690,1889490,8,'Wardrobe Supervisor'),(1690,1889491,3,'Location Manager'),(1690,1889492,3,'Location Manager'),(1690,1889495,6,'Music Supervisor'),(1690,1889497,6,'Music Supervisor'),(1690,1889499,6,'Orchestrator'),(8435,172,2,'Director'),(8435,173,3,'Producer'),(8435,179,1,'Director of Photography'),(8435,20461,5,'Editor'),(8435,55402,6,'Original Music Composer'),(8981,3081,3,'Casting'),(8981,15588,7,'Production Design'),(8981,22047,6,'Original Music Composer'),(8981,35011,7,'Art Direction'),(8981,18077,5,'Editor'),(8981,56474,2,'Director'),(8981,56474,1,'Director of Photography'),(8981,56476,4,'Screenplay'),(8981,58326,3,'Producer'),(9336,4671,5,'Editor'),(9336,15223,7,'Set Decoration'),(9336,14339,5,'Editor'),(9336,28904,2,'Director'),(9336,28904,4,'Screenplay'),(9336,29651,7,'Production Design'),(9336,33096,3,'Producer'),(9336,12991,4,'Screenplay'),(9336,12991,4,'Story'),(9336,43393,6,'Original Music Composer'),(9336,12942,3,'Casting'),(9336,57359,4,'Screenplay'),(9336,57359,4,'Story'),(9336,57360,1,'Director of Photography'),(9336,74778,6,'Sound Re-Recording Mixer'),(9336,74781,6,'Sound Re-Recording Mixer'),(9336,74810,6,'Music Editor'),(9336,13433,3,'Casting'),(9336,183220,8,'Costume Design'),(9336,1036418,3,'Production Manager'),(9336,1193692,8,'Makeup Artist'),(9336,1204031,5,'Assistant Editor'),(9336,1286355,8,'Hairstylist'),(9336,1425491,9,'Stunt Coordinator'),(9336,1429544,6,'Sound Editor'),(9336,1481658,2,'Script Supervisor'),(9336,1550344,6,'Production Sound Mixer'),(9336,1555251,1,'Still Photographer'),(9336,1555252,1,'Camera Operator'),(9336,1555253,3,'Production Coordinator'),(9336,1555255,6,'Supervising Sound Editor'),(9336,1555256,6,'Sound Editor'),(9336,1555258,6,'Sound Editor'),(9336,1555259,6,'Sound Re-Recording Mixer'),(5689,3569,1,'Director of Photography'),(5689,7728,6,'Original Music Composer'),(5689,8876,2,'Director'),(5689,8876,3,'Producer'),(5689,27538,4,'Writer'),(5689,44840,4,'Novel'),(712,8383,7,'Production Design'),(712,8384,7,'Set Decoration'),(712,2236,3,'Executive Producer'),(712,2238,3,'Executive Producer'),(712,5489,3,'Casting'),(712,7018,4,'Screenplay'),(712,7019,3,'Producer'),(712,7021,1,'Director of Photography'),(712,10723,2,'Director'),(712,10724,6,'Music'),(712,10725,5,'Editor'),(712,10740,6,'Supervising Sound Editor'),(712,10741,6,'Sound Designer'),(1429,275,1,'Director of Photography'),(1429,2219,3,'Producer'),(1429,4446,3,'Producer'),(1429,5281,3,'Producer'),(1429,5281,2,'Director'),(1429,5287,6,'Original Music Composer'),(1429,5289,5,'Editor'),(1429,9546,7,'Production Design'),(1429,9549,7,'Set Decoration'),(1429,9813,4,'Novel'),(1429,9813,4,'Screenplay'),(1429,27038,3,'Producer'),(1429,27039,3,'Casting'),(1429,27040,7,'Art Direction'),(1429,27041,8,'Costume Design'),(1429,99426,5,'Dialogue Editor'),(1429,1333223,6,'Supervising Sound Editor'),(1429,1337461,6,'Sound Re-Recording Mixer'),(1429,1390523,6,'Sound Effects Editor'),(1429,1390523,6,'Sound Re-Recording Mixer'),(1429,1399974,1,'Steadicam Operator'),(1429,1409889,6,'Sound Editor'),(1429,1431630,1,'Steadicam Operator'),(1429,1462312,7,'Art Department Coordinator'),(1429,1486764,2,'Script Supervisor'),(1429,1537446,1,'Still Photographer'),(1429,1552175,6,'Sound mixer'),(9303,4671,5,'Editor'),(9303,4949,6,'Original Music Composer'),(9303,4952,3,'Casting'),(9303,6480,7,'Production Design'),(9303,9341,1,'Director of Photography'),(9303,9339,4,'Screenplay'),(9303,9339,2,'Director'),(9303,9339,3,'Executive Producer'),(9303,9340,2,'Director'),(9303,9340,4,'Screenplay'),(9303,9340,3,'Executive Producer'),(9303,15329,8,'Costume Design'),(9303,29525,3,'Producer'),(9303,50724,3,'Co-Producer'),(9303,1432629,3,'Producer'),(641,330,5,'Editor'),(641,5914,3,'Casting'),(641,4447,3,'Line Producer'),(641,4867,1,'Director of Photography'),(641,6377,6,'Original Music Composer'),(641,6431,4,'Screenplay'),(641,6431,2,'Director'),(641,6433,3,'Producer'),(641,6468,3,'Executive Producer'),(641,9535,4,'Screenplay'),(641,9535,4,'Novel'),(641,9537,3,'Producer'),(641,9541,3,'Executive Producer'),(641,9543,3,'Executive Producer'),(641,9544,3,'Casting'),(641,9545,3,'Casting'),(641,9546,7,'Production Design'),(641,9547,7,'Art Direction'),(641,9549,7,'Set Decoration'),(641,9550,8,'Costume Design'),(641,9551,8,'Costume Design'),(641,9552,3,'Unit Production Manager'),(641,9553,9,'Post Production Supervisor'),(641,9555,6,'Sound Designer'),(641,9557,6,'Sound Designer'),(6106,149,1,'Director of Photography'),(6106,1152,2,'Director'),(6106,1152,3,'Producer'),(6106,1152,4,'Writer'),(6106,1152,4,'Scenario Writer'),(6106,2720,3,'Executive Producer'),(6106,2721,3,'Executive Producer'),(6106,3535,6,'Original Music Composer'),(6106,5709,7,'Production Design'),(6106,11880,5,'Editor'),(6106,11882,3,'Producer'),(6106,11882,3,'Casting'),(6106,47889,4,'Writer'),(6106,47889,4,'Scenario Writer'),(6106,47891,3,'Producer'),(6106,47892,8,'Costume Design'),(6106,1350049,3,'Producer'),(141,554,3,'Executive Producer'),(141,1577,4,'Screenplay'),(141,1577,2,'Director'),(141,1586,3,'Producer'),(141,1587,3,'Producer'),(141,1588,3,'Producer'),(141,1589,6,'Original Music Composer'),(141,1590,1,'Director of Photography'),(141,1591,5,'Editor'),(141,1592,5,'Editor'),(141,1593,3,'Casting'),(141,1594,3,'Casting'),(141,1596,6,'Music Editor'),(141,1597,6,'Sound Designer'),(141,69597,3,'Executive Producer'),(141,7238,8,'Costume Design'),(141,5291,8,'Assistant Costume Designer'),(141,9648,7,'Production Design'),(141,18350,3,'Executive Producer'),(141,44633,3,'Executive Producer'),(141,44634,3,'Executive Producer'),(141,57048,3,'Executive Producer'),(141,96746,1,'Steadicam Operator'),(141,113837,6,'Production Sound Mixer'),(141,161159,1,'Still Photographer'),(141,1122560,9,'Stunt Coordinator'),(141,1320713,2,'Script Supervisor'),(141,1401606,8,'Hair Department Head'),(141,1417407,3,'Line Producer'),(141,1537964,8,'Makeup Department Head'),(141,1546047,6,'Music Supervisor'),(141,1546441,6,'Music Supervisor'),(141,1547348,7,'Set Decoration'),(141,1547350,8,'Costume Supervisor'),(141,1547357,3,'Production Coordinator'),(4550,10099,4,'Screenplay'),(4550,10099,2,'Director'),(4550,10107,1,'Director of Photography'),(4550,10108,5,'Editor'),(4550,37928,4,'Writer'),(4550,37929,6,'Original Music Composer'),(4550,37930,6,'Music'),(4550,38016,5,'Editor'),(4550,38017,7,'Production Design'),(4550,38018,7,'Set Decoration'),(4550,41288,3,'Executive Producer'),(4550,43562,3,'Producer'),(4550,43563,3,'Producer'),(4550,1117871,3,'Producer'),(4550,1117872,3,'Producer'),(4550,1117873,3,'Producer'),(4550,1117874,3,'Producer'),(4550,1293613,8,'Costume Design'),(9991,457,3,'Executive Producer'),(9991,960,6,'Original Music Composer'),(9991,956,3,'Executive Producer'),(9991,957,3,'Producer'),(9991,9315,6,'Original Music Composer'),(9991,39670,8,'Costume Design'),(9991,41139,4,'Author'),(9991,49809,5,'Editor'),(9991,61573,4,'Author'),(9991,61571,2,'Director'),(9991,61572,4,'Author'),(9991,61574,4,'Author'),(9991,61576,3,'Executive Producer'),(9991,61577,3,'Producer'),(9991,61578,3,'Line Producer'),(9991,61579,1,'Director of Photography'),(9991,61580,7,'Production Design'),(9991,61582,7,'Art Direction'),(9991,61581,7,'Set Decoration'),(9991,61583,5,'Editor'),(510,597,3,'Casting'),(510,598,3,'Casting'),(510,800,5,'Assistant Editor'),(510,1310,3,'Producer'),(510,3392,3,'Producer'),(510,3394,5,'Editor'),(510,3974,2,'Director'),(510,4181,4,'Screenplay'),(510,7067,1,'Director of Photography'),(510,7064,4,'Novel'),(510,7065,4,'Screenplay'),(510,7066,6,'Original Music Composer'),(510,7068,5,'Editor'),(510,7069,6,'Sound Editor'),(510,7070,9,'Stunts'),(510,8425,5,'Supervising Film Editor'),(510,8428,8,'Costume Design'),(510,13867,9,'Sound Recordist'),(510,33486,2,'Assistant Director'),(510,19045,7,'Production Design'),(510,81538,9,'Title Graphics'),(510,57309,3,'Unit Production Manager'),(510,68127,5,'Assistant Editor'),(510,76156,3,'Executive In Charge Of Production'),(510,91228,3,'Associate Producer'),(510,133878,4,'Theatre Play'),(510,954838,9,'Post Production Supervisor'),(510,1059619,5,'Assistant Editor'),(510,1338756,8,'Makeup Artist'),(510,1404759,9,'Property Master'),(510,1404766,1,'Camera Operator'),(510,1404767,1,'Camera Operator'),(510,1442563,7,'Construction Coordinator'),(510,1535849,7,'Art Direction'),(510,1544289,2,'Script Supervisor'),(510,1558609,1,'Grip'),(510,1562241,9,'Property Master'),(510,1588989,7,'Painter'),(510,1629423,6,'Sound'),(510,1637593,6,'Music Editor'),(510,1637594,9,'Transportation Captain'),(510,1638712,11,'Electrician'),(1088,948,6,'Original Music Composer'),(1088,15287,2,'Director'),(1088,15287,4,'Screenplay'),(1088,15288,4,'Author'),(1088,15289,3,'Producer'),(1088,15290,1,'Director of Photography'),(1088,15291,5,'Editor'),(1088,15292,3,'Producer'),(1088,15303,3,'Producer'),(3040,20294,4,'Screenplay'),(3040,23430,2,'Director'),(3040,23430,4,'Writer'),(3040,23431,4,'Novel'),(3040,23436,3,'Producer'),(3040,23437,6,'Original Music Composer'),(3040,23438,1,'Director of Photography'),(3040,29830,7,'Production Design'),(3040,30245,3,'Casting'),(3040,30246,7,'Production Design'),(3040,30247,8,'Costume Design'),(3040,107720,5,'Editor'),(153,1776,3,'Producer'),(153,1776,9,'Thanks'),(153,2871,3,'Executive Producer'),(153,1769,2,'Director'),(153,1769,3,'Producer'),(153,1769,4,'Screenplay'),(153,1777,3,'Producer'),(153,1779,6,'Original Music Composer'),(153,1781,1,'Director of Photography'),(153,1781,1,'Camera Operator'),(153,1782,5,'Editor'),(153,1783,7,'Production Design'),(153,1784,7,'Production Design'),(153,5215,8,'Costume Design'),(153,2299,9,'Thanks'),(153,2889,6,'Music Editor'),(153,2889,6,'Sound Re-Recording Mixer'),(153,2889,6,'Sound Designer'),(153,4235,5,'Assistant Editor'),(153,5655,9,'Thanks'),(153,5953,9,'Thanks'),(153,6473,9,'Thanks'),(153,10557,9,'Thanks'),(153,17116,7,'Art Direction'),(153,28866,3,'Associate Producer'),(153,19770,3,'Line Producer'),(153,40839,6,'Music Supervisor'),(153,38803,9,'Thanks'),(153,53406,3,'Production Coordinator'),(153,56158,9,'Thanks'),(153,60187,3,'Production Supervisor'),(153,115941,3,'Line Producer'),(153,1007435,7,'Set Decoration'),(153,1125607,3,'Unit Production Manager'),(153,1318476,6,'Sound Re-Recording Mixer'),(153,1330586,8,'Key Hair Stylist'),(153,1337458,6,'Production Sound Mixer'),(153,1352284,11,'Gaffer'),(153,1360102,6,'Boom Operator'),(153,1389570,6,'Foley'),(153,1393455,2,'Script Supervisor'),(153,1415964,6,'ADR & Dubbing'),(153,1530900,2,'Assistant Director'),(153,1538425,6,'Sound Effects Editor'),(153,1543045,9,'Legal Services'),(153,1676654,7,'Set Decoration'),(153,1676656,9,'Additional Music'),(703,1046,3,'Casting'),(703,1051,8,'Costume Design'),(703,1243,2,'Director'),(703,1243,4,'Screenplay'),(703,3097,1,'Director of Photography'),(703,3104,6,'Production Sound Mixer'),(703,3658,3,'Executive Producer'),(703,3658,3,'Production Manager'),(703,3659,1,'Camera Operator'),(703,6490,1,'Camera Operator'),(703,6848,5,'Editor'),(703,6993,3,'Producer'),(703,6994,3,'Producer'),(703,10439,4,'Screenplay'),(703,10441,7,'Art Direction'),(703,10442,7,'Set Decoration'),(703,10443,8,'Makeup Artist'),(703,10444,8,'Hairstylist'),(703,10445,3,'Location Manager'),(703,10446,2,'Assistant Director'),(703,10546,3,'Producer'),(703,10546,2,'Assistant Director'),(703,10548,5,'Editor'),(703,10549,7,'Set Decoration'),(703,17994,6,'Sound Editor'),(703,18857,6,'Sound Mixer'),(703,19789,9,'Thanks'),(703,20694,6,'Sound Editor'),(703,29352,6,'Music'),(703,81532,8,'Costume Supervisor'),(703,81533,8,'Costume Supervisor'),(703,77092,9,'Carpenter'),(703,122092,3,'Production Office Coordinator'),(703,1027800,7,'Set Decoration'),(703,1194262,1,'Still Photographer'),(703,1336842,3,'Location Manager'),(703,1338883,8,'Makeup Artist'),(703,1380036,9,'Property Master'),(703,1380037,9,'Scenic Artist'),(703,1411150,8,'Hairstylist'),(703,1421301,5,'Color Timer'),(703,1459591,2,'Script Supervisor'),(703,1546904,1,'Grip'),(703,1547258,6,'Sound mixer'),(1365,4023,3,'Casting'),(1365,3192,3,'Casting'),(1365,5328,3,'Casting'),(1365,12995,2,'Director'),(1365,13000,1,'Director of Photography'),(1365,13005,5,'Editor'),(1365,16447,4,'Screenplay'),(1365,16448,4,'Screenplay'),(1365,16449,7,'Production Design'),(1365,20019,3,'Producer'),(1365,32474,8,'Set Costumer'),(1365,60872,7,'Art Direction'),(1365,62778,3,'Casting'),(1365,83117,8,'Makeup Artist'),(1365,1119105,9,'Legal Services'),(1365,1190854,8,'Costume Supervisor'),(1365,1311133,8,'Costume Design'),(1365,1402047,7,'Art Department Coordinator'),(1365,1416056,8,'Hairstylist'),(1365,1428127,8,'Makeup Artist'),(1365,1524668,8,'Hairstylist'),(451,6109,3,'Executive Producer'),(451,6111,4,'Screenplay'),(451,6111,2,'Director'),(451,6111,6,'Original Music Composer'),(451,6113,3,'Producer'),(451,6114,3,'Line Producer'),(451,6115,3,'Executive Producer'),(451,6116,3,'Producer'),(451,6117,1,'Director of Photography'),(451,6118,5,'Editor'),(451,6119,3,'Casting'),(451,1741885,4,'Novel'),(987,369,7,'Art Direction'),(987,594,1,'Director of Photography'),(987,3146,4,'Screenplay'),(987,3146,2,'Director'),(987,3147,4,'Screenplay'),(987,4341,4,'Theatre Play'),(987,9579,3,'Producer'),(987,10007,5,'Editor'),(987,14824,4,'Theatre Play'),(987,14825,3,'Executive Producer'),(987,14826,7,'Set Decoration'),(987,14827,8,'Costume Design'),(987,14828,6,'Sound Designer'),(987,14829,6,'Sound Designer'),(8337,511,3,'Producer'),(8337,8867,7,'Set Decoration'),(8337,11770,2,'Director'),(8337,11770,4,'Screenplay'),(8337,11770,6,'Original Music Composer'),(8337,12436,7,'Art Direction'),(8337,15445,6,'Original Music Composer'),(8337,16568,5,'Editor'),(8337,16569,5,'Editor'),(8337,16652,7,'Art Direction'),(8337,24956,1,'Director of Photography'),(8337,27581,3,'Associate Producer'),(8337,27581,2,'Script Supervisor'),(8337,54433,9,'Pilot'),(8337,55173,4,'Novel'),(8337,56125,3,'Executive Producer'),(8337,56126,3,'Executive Producer'),(8337,62029,8,'Costume Supervisor'),(8337,1190889,3,'Unit Production Manager'),(8337,1433917,3,'Location Manager'),(8337,1582469,3,'Unit Production Manager'),(8337,1832294,9,'Pilot'),(8337,1832295,3,'Production Coordinator'),(5925,3643,5,'Editor'),(5925,5806,1,'Director of Photography'),(5925,7182,6,'Original Music Composer'),(5925,13782,7,'Art Direction'),(5925,14520,3,'Producer'),(5925,14520,2,'Director'),(5925,14523,3,'Executive Producer'),(5925,46611,4,'Screenplay'),(5925,46611,3,'Producer'),(5925,77646,4,'Novel'),(5925,80728,4,'Screenplay'),(8357,47927,6,'Original Music Composer'),(8357,55420,2,'Director'),(8357,55421,2,'Director'),(8357,55427,1,'Director of Photography'),(8357,55429,1,'Director of Photography'),(512,471,7,'Production Design'),(512,1046,3,'Casting'),(512,1243,4,'Author'),(512,1243,2,'Director'),(512,1251,1,'Director of Photography'),(512,1252,5,'Editor'),(512,1265,3,'Producer'),(512,1266,3,'Producer'),(512,1268,3,'Executive Producer'),(512,2073,3,'Casting'),(512,6988,3,'Producer'),(512,6990,3,'Producer'),(512,6993,3,'Producer'),(512,6994,3,'Producer'),(512,6996,3,'Casting'),(512,6998,7,'Art Direction'),(512,6999,7,'Set Decoration'),(9782,2860,3,'Producer'),(9782,2890,3,'Producer'),(9782,5271,1,'Director of Photography'),(9782,47277,3,'Producer'),(9782,47279,3,'Producer'),(9782,59208,4,'Author'),(9782,59209,4,'Author'),(9782,59210,2,'Director'),(9782,59210,4,'Author'),(9782,63979,6,'Original Music Composer'),(9782,63980,5,'Editor'),(6537,10828,3,'Executive Producer'),(6537,16999,3,'Producer'),(6537,17000,3,'Line Producer'),(6537,17003,3,'Line Producer'),(6537,27467,3,'Casting'),(6537,51894,2,'Director'),(6537,51895,4,'Screenplay'),(6537,51896,3,'Producer'),(6537,51897,6,'Original Music Composer'),(6537,51898,1,'Director of Photography'),(6537,51899,5,'Editor'),(6537,51900,7,'Production Design'),(6537,51901,8,'Costume Design'),(6537,1115664,3,'Line Producer'),(6537,1121989,3,'Producer'),(1809,8297,2,'Director'),(1809,8297,4,'Writer'),(1809,16379,4,'Writer'),(2370,369,7,'Production Design'),(2370,2704,6,'Original Music Composer'),(2370,2636,2,'Director'),(2370,2636,3,'Producer'),(2370,2653,3,'Producer'),(2370,2773,5,'Editor'),(2370,4350,8,'Costume Design'),(2370,5736,4,'Screenplay'),(2370,12242,1,'Director of Photography'),(2370,20121,4,'Novel'),(2370,24557,3,'Unit Production Manager'),(9809,539,4,'Author'),(9809,5490,3,'Casting'),(9809,12525,3,'Executive Producer'),(9809,15219,3,'Producer'),(9809,21055,5,'Editor'),(9809,21268,7,'Production Design'),(9809,21767,3,'Executive Producer'),(9809,25365,3,'Casting'),(9809,41587,3,'Executive Producer'),(9809,59410,2,'Director'),(9809,59413,4,'Author'),(9809,59416,3,'Producer'),(9809,59415,4,'Author'),(9809,59412,4,'Author'),(9809,59418,3,'Producer'),(9809,59417,3,'Executive Producer'),(9809,59419,3,'Producer'),(9809,59423,1,'Director of Photography'),(9809,59421,3,'Producer'),(9809,59420,3,'Executive Producer'),(9809,59422,5,'Editor'),(9809,59424,6,'Original Music Composer'),(9809,59426,3,'Casting'),(9809,59428,7,'Art Direction'),(9809,59429,7,'Set Decoration'),(9809,59427,7,'Art Direction'),(9809,59425,3,'Casting'),(9809,59430,8,'Costume Design'),(5,3110,2,'Director'),(5,3110,4,'Writer'),(5,3111,2,'Director'),(5,3111,3,'Executive Producer'),(5,3111,4,'Writer'),(5,2294,2,'Director'),(5,2294,4,'Writer'),(5,2294,5,'Editor'),(5,138,2,'Director'),(5,138,3,'Executive Producer'),(5,138,4,'Writer'),(5,3116,6,'Original Music Composer'),(5,3117,7,'Production Design'),(5,3119,6,'Sound Designer'),(5,2545,3,'Producer'),(5,37333,3,'Co-Producer'),(5,37334,3,'Co-Producer'),(5,37334,3,'Production Manager'),(5,37335,3,'Co-Producer'),(5,3118,3,'Casting'),(5,11423,7,'Art Direction'),(5,9042,7,'Set Decoration'),(5,156,5,'Editor'),(5,3113,1,'Director of Photography'),(5,3115,1,'Director of Photography'),(5,6940,6,'Music Supervisor'),(5,3121,5,'Editor'),(5,3114,1,'Director of Photography'),(5,20540,3,'Casting Associate'),(5,46589,8,'Costume Design'),(5,56791,1,'Steadicam Operator'),(5,62277,8,'Costume Design'),(5,64315,5,'First Assistant Editor'),(5,64744,3,'Unit Production Manager'),(5,64744,3,'Production Supervisor'),(5,71901,2,'First Assistant Director'),(5,77162,1,'Director of Photography'),(5,80824,6,'Sound Editor'),(5,100888,9,'Creative Consultant'),(5,144146,8,'Key Hair Stylist'),(5,148455,1,'First Assistant Camera'),(5,1041072,5,'Editor'),(5,1120536,2,'First Assistant Director'),(5,1342669,2,'Script Supervisor'),(5,1357671,6,'First Assistant Sound Editor'),(5,1395016,7,'Construction Coordinator'),(5,1401374,3,'Location Manager'),(5,1402054,3,'Production Coordinator'),(5,1410954,6,'Production Sound Mixer'),(5,1412227,6,'Sound Effects Editor'),(5,1412242,6,'Dolby Consultant'),(5,1415642,6,'Music Editor'),(5,1419160,9,'Transportation Coordinator'),(5,1438571,6,'Supervising Sound Editor'),(5,1547239,8,'Costume Supervisor'),(5,1549015,7,'Construction Foreman'),(5,1552012,7,'Property Master'),(5,1552088,9,'Special Sound Effects'),(5,1556697,7,'Art Department Coordinator'),(5,1564233,5,'Color Timer'),(5,1601800,11,'Best Boy Electric'),(5,1602889,9,'Special Effects Coordinator'),(5,1622121,9,'Unit Publicist'),(5,1686379,9,'Driver'),(5,1695796,6,'Boom Operator'),(5,1708344,1,'Key Grip'),(5,1745153,8,'Hairstylist'),(5,1851724,9,'Carpenter'),(5,1851725,7,'Painter'),(5,1877352,7,'Lead Painter'),(5,1877353,7,'Standby Painter'),(5,1877355,1,'Grip'),(5,1877356,8,'Costume Supervisor'),(5,1877357,8,'Makeup Artist'),(5,1877359,9,'Choreographer'),(5,1877360,9,'Craft Service'),(5,1877361,9,'Post Production Assistant'),(5,1877361,9,'Set Production Assistant'),(5,1877363,9,'Security'),(5,1877365,9,'Set Medic'),(5,1877369,9,'Stand In'),(5,1877370,9,'Transportation Captain'),(5,1877377,5,'First Assistant Editor'),(5,1877378,11,'Electrician'),(5,1877379,11,'Gaffer'),(5,1877380,3,'Production Accountant'),(5,1877413,6,'Foley'),(5,1877415,9,'Studio Teachers'),(8141,720,1,'Director of Photography'),(8141,5551,4,'Screenplay'),(8141,5552,4,'Screenplay'),(8141,21053,2,'Director'),(8141,21363,3,'Casting'),(8141,25017,7,'Production Design'),(8141,36131,3,'Producer'),(8141,38576,3,'Producer'),(8141,38577,3,'Producer'),(8141,38578,3,'Producer'),(8141,47054,3,'Producer'),(8141,55175,3,'Producer'),(8141,55177,6,'Original Music Composer'),(8141,55178,5,'Editor'),(8141,55179,7,'Set Decoration'),(8141,55180,8,'Costume Design'),(1546,321,3,'Producer'),(1546,546,3,'Casting'),(1546,4232,3,'Executive Producer'),(1546,5389,7,'Production Design'),(1546,5391,7,'Set Decoration'),(1546,5952,3,'Executive Producer'),(1546,17451,3,'Executive Producer'),(1546,17439,2,'Director'),(1546,17439,4,'Screenplay'),(1546,17440,4,'Novel'),(1546,17449,3,'Producer'),(1546,17450,3,'Executive Producer'),(1546,17452,6,'Original Music Composer'),(1546,17453,1,'Director of Photography'),(1546,17454,5,'Editor'),(1546,17455,5,'Editor'),(1546,17456,7,'Art Direction'),(1546,17457,8,'Costume Design'),(874,9867,1,'Director of Photography'),(874,3535,6,'Original Music Composer'),(874,6584,7,'Art Direction'),(874,4065,2,'Director'),(874,4065,3,'Producer'),(874,6604,5,'Editor'),(874,10011,8,'Costume Design'),(874,13317,4,'Screenplay'),(874,13317,4,'Theatre Play'),(874,13319,3,'Executive Producer'),(874,13320,3,'Casting'),(874,13321,7,'Production Design'),(874,13322,6,'Sound Designer'),(874,13323,6,'Sound Designer'),(874,958171,8,'Costume Design'),(770,2774,1,'Director of Photography'),(770,3248,3,'Producer'),(770,3358,7,'Art Direction'),(770,3387,7,'Interior Designer'),(770,3249,6,'Original Music Composer'),(770,4104,7,'Set Decoration'),(770,4341,4,'Writer'),(770,14681,8,'Hairstylist'),(770,9049,2,'Director'),(770,11487,4,'Novel'),(770,11488,4,'Screenplay'),(770,11489,7,'Production Design'),(770,11491,8,'Costume Design'),(770,13338,1,'Director of Photography'),(770,14964,9,'Sound Recordist'),(770,17914,11,'Electrician'),(770,17908,7,'Other'),(770,20599,4,'Writer'),(770,26175,8,'Hairstylist'),(770,30268,9,'Additional Music'),(770,55696,3,'Casting'),(770,68417,5,'Editor'),(770,82172,4,'Writer'),(770,86404,4,'Writer'),(770,88979,9,'Stunt Coordinator'),(770,91234,2,'Assistant Director'),(770,96251,6,'Music'),(770,118305,8,'Costume Design'),(770,119397,5,'Supervising Film Editor'),(770,120165,9,'Special Effects'),(770,120518,5,'Assistant Editor'),(770,134632,3,'Publicist'),(770,137208,5,'Assistant Editor'),(770,545526,1,'Camera Intern'),(770,958941,6,'Orchestrator'),(770,1086333,6,'Orchestrator'),(770,1090879,6,'Music'),(770,1123078,3,'Casting'),(770,1123079,3,'Casting'),(770,1200492,8,'Costume Design'),(770,1322271,3,'Unit Manager'),(770,1349414,3,'Production Manager'),(770,1369442,11,'Electrician'),(770,1530568,8,'Hairstylist'),(770,1534169,8,'Makeup Artist'),(770,1594360,6,'Music'),(770,1623581,2,'Assistant Director'),(770,1627210,8,'Makeup Artist'),(5178,4898,3,'Executive Producer'),(5178,6590,3,'Executive Producer'),(5178,18823,2,'Director'),(5178,18827,3,'Producer'),(5178,18828,3,'Producer'),(8618,466,3,'Executive Producer'),(8618,476,5,'Editor'),(8618,1528,6,'Original Music Composer'),(8618,2035,3,'Executive Producer'),(8618,8846,1,'Director of Photography'),(8618,17600,3,'Executive Producer'),(8618,18846,3,'Producer'),(8618,55476,2,'Director'),(8618,55476,3,'Producer'),(8618,55477,4,'Screenplay'),(8618,55477,4,'Author'),(8618,55479,3,'Producer'),(8618,55480,3,'Producer'),(8618,55481,3,'Executive Producer'),(8618,55482,3,'Executive Producer'),(8618,55483,3,'Line Producer'),(3116,2289,6,'Original Music Composer'),(3116,2289,6,'Music Supervisor'),(3116,16298,3,'Producer'),(3116,5493,8,'Costume Design'),(3116,6571,5,'Editor'),(3116,14677,4,'Screenplay'),(3116,19304,2,'Director'),(3116,30570,4,'Novel'),(3116,30571,3,'Producer'),(3116,30578,1,'Director of Photography'),(3116,30580,7,'Set Decoration'),(3116,1156646,7,'Production Design'),(3116,1844172,3,'Production Manager'),(9427,851,6,'Original Music Composer'),(9427,1302,3,'Casting'),(9427,3310,5,'Editor'),(9427,9008,3,'Associate Producer'),(9427,24256,1,'Director of Photography'),(9427,27903,5,'Editor'),(9427,45057,7,'Art Direction'),(9427,49344,7,'Production Design'),(9427,57630,2,'Director'),(9427,57631,4,'Writer'),(9427,57632,3,'Producer'),(9427,1258107,3,'Co-Producer'),(9427,1514009,3,'Co-Producer'),(813,13589,8,'Costume Design'),(813,3415,2,'Director'),(813,3415,4,'Author'),(813,3415,3,'Executive Producer'),(813,3428,3,'Producer'),(813,10631,9,'Special Effects'),(813,7182,6,'Original Music Composer'),(813,7723,3,'Producer'),(813,8882,3,'Casting'),(813,12936,2,'Director'),(813,12936,4,'Author'),(813,12936,3,'Executive Producer'),(813,12987,2,'Director'),(813,12987,4,'Author'),(813,12987,3,'Executive Producer'),(813,14431,1,'Director of Photography'),(813,14433,7,'Production Design'),(813,11375,7,'Set Decoration'),(813,14436,8,'Makeup Artist'),(813,14440,8,'Hairstylist'),(813,14441,3,'Unit Production Manager'),(813,14442,7,'Art Department Coordinator'),(813,14443,6,'Supervising Sound Editor'),(813,12945,6,'Music Editor'),(813,14444,10,'Visual Effects'),(813,12948,9,'Stunt Coordinator'),(813,14445,12,'Stunt Double'),(813,18350,3,'Producer'),(813,52096,4,'Teleplay'),(813,1118130,5,'Editor'),(9516,5271,1,'Director of Photography'),(9516,11447,2,'Director'),(9516,11448,2,'Director'),(9516,57775,4,'Screenplay'),(9516,57776,3,'Executive Producer'),(9516,57777,3,'Producer'),(9516,57778,6,'Original Music Composer'),(9516,57779,5,'Editor'),(573,7753,1,'Director of Photography'),(573,2636,2,'Director'),(573,2636,3,'Producer'),(573,7757,7,'Art Direction'),(573,7749,4,'Author'),(573,7750,4,'Screenplay'),(573,7751,3,'Producer'),(573,7752,6,'Original Music Composer'),(573,7754,5,'Editor'),(573,7755,3,'Casting'),(573,7756,7,'Production Design'),(3033,751,3,'Casting'),(3033,1225,6,'Music'),(3033,7183,1,'Director of Photography'),(3033,15557,4,'Screenplay'),(3033,15557,2,'Director'),(3033,15802,3,'Producer'),(3033,29065,8,'Makeup Artist'),(3033,29785,4,'Novel'),(3033,29787,3,'Producer'),(3033,29788,7,'Set Designer'),(3033,29789,7,'Set Decoration'),(3033,29790,8,'Costume Design'),(3033,1057973,3,'Producer'),(765,7623,2,'Director'),(765,7623,4,'Screenplay'),(765,9573,1,'Director of Photography'),(765,11419,9,'Makeup Effects'),(765,11359,3,'Producer'),(765,11468,6,'Original Music Composer'),(765,11641,4,'Screenplay'),(765,11643,3,'Executive Producer'),(765,11646,3,'Executive Producer'),(765,11648,5,'Editor'),(765,11744,7,'Art Direction'),(765,11745,7,'Art Direction'),(765,11746,7,'Set Decoration'),(765,11747,8,'Makeup Artist'),(765,59287,9,'Makeup Effects'),(765,98471,9,'Makeup Effects'),(765,107372,9,'Makeup Effects'),(765,931858,9,'Makeup Effects'),(765,1189737,9,'Makeup Effects'),(765,1203390,8,'Makeup Artist'),(765,1262012,9,'Makeup Effects'),(540,7312,4,'Screenplay'),(540,7312,2,'Director'),(540,7312,5,'Editor'),(540,22115,3,'Producer'),(540,22116,3,'Producer'),(540,22118,6,'Original Music Composer'),(540,22119,1,'Director of Photography'),(540,7415,3,'Casting'),(540,22120,7,'Production Design'),(540,13226,6,'Original Music Composer'),(540,42230,6,'Music Editor'),(540,52261,8,'Costume Design'),(540,92482,9,'Stunt Coordinator'),(540,113844,6,'Music Supervisor'),(540,1338215,9,'Stunts'),(540,1371115,2,'Script Supervisor'),(540,1559552,1,'Still Photographer'),(1667,18525,2,'Director'),(1667,18525,4,'Screenplay'),(1667,18526,3,'Producer'),(1667,18527,3,'Producer'),(1667,18529,5,'Editor'),(1667,18530,1,'Director of Photography'),(1667,18532,2,'Director'),(1667,18532,1,'Director of Photography'),(1667,1482491,6,'Music'),(598,8557,2,'Director'),(598,8559,2,'Director'),(598,8560,4,'Screenplay'),(598,8560,4,'Author'),(598,8561,4,'Screenplay'),(598,8562,3,'Producer'),(598,8563,3,'Producer'),(598,8564,3,'Executive Producer'),(598,8565,3,'Executive Producer'),(598,8566,3,'Producer'),(598,8568,3,'Producer'),(598,8569,3,'Producer'),(598,8570,3,'Producer'),(598,8571,3,'Producer'),(598,8572,3,'Producer'),(598,8574,3,'Producer'),(598,8575,6,'Original Music Composer'),(598,8576,6,'Original Music Composer'),(598,8577,1,'Director of Photography'),(598,8578,5,'Editor'),(598,8579,7,'Production Design'),(598,8581,8,'Costume Design'),(598,8583,8,'Costume Design'),(598,8584,8,'Makeup Artist'),(598,8587,3,'Production Manager'),(598,8588,3,'Production Manager'),(598,8593,10,'Visual Effects Supervisor'),(598,8594,10,'Creature Design'),(598,8807,5,'Dialogue Editor'),(598,16994,6,'Sound Effects Editor'),(598,1016216,1,'Steadicam Operator'),(598,1462845,6,'Sound Designer'),(598,1531278,6,'Sound Re-Recording Mixer'),(598,1531279,9,'Sound Recordist'),(598,1641088,1,'First Assistant Camera'),(850,12698,4,'Screenplay'),(850,12698,2,'Director'),(850,12698,3,'Producer'),(850,12699,4,'Novel'),(850,12700,6,'Original Music Composer'),(850,12701,6,'Original Music Composer'),(850,12702,1,'Director of Photography'),(850,12703,5,'Editor'),(850,12704,7,'Production Design'),(850,12705,7,'Art Direction'),(850,12706,7,'Set Decoration'),(850,12707,8,'Costume Design'),(8841,17386,4,'Screenplay'),(8841,17386,2,'Director'),(8841,17387,4,'Screenplay'),(8841,17393,1,'Director of Photography'),(8841,17424,3,'Producer'),(8841,17426,3,'Producer'),(8841,19931,3,'Producer'),(8841,64155,4,'Screenplay'),(8841,64155,4,'Novel'),(8841,724464,3,'Producer'),(805,3556,2,'Director'),(805,3556,4,'Screenplay'),(805,12017,7,'Production Design'),(805,9107,6,'Sound Designer'),(805,12011,3,'Producer'),(805,12012,3,'Producer'),(805,12013,6,'Original Music Composer'),(805,12846,1,'Director of Photography'),(805,12015,5,'Editor'),(805,12016,5,'Editor'),(805,12018,7,'Art Direction'),(805,12019,7,'Set Decoration'),(805,12020,8,'Costume Design'),(805,13019,4,'Novel'),(436,2864,1,'Director of Photography'),(436,2866,5,'Editor'),(436,5872,4,'Screenplay'),(436,5872,2,'Director'),(436,5873,3,'Producer'),(436,5874,3,'Producer'),(436,5875,3,'Line Producer'),(436,5876,3,'Line Producer'),(436,5878,9,'Second Unit Cinematographer'),(436,5878,3,'Associate Producer'),(436,5879,3,'Associate Producer'),(436,5881,6,'Original Music Composer'),(436,5882,6,'Original Music Composer'),(436,5884,5,'Editor'),(436,5885,7,'Art Direction'),(436,5886,7,'Set Decoration'),(436,92376,6,'Foley'),(436,92382,6,'ADR & Dubbing'),(436,1039164,6,'Foley'),(436,1043800,6,'ADR & Dubbing'),(436,1052537,6,'Music Supervisor'),(436,1059168,1,'First Assistant Camera'),(436,1085007,6,'Sound Re-Recording Mixer'),(436,1142381,3,'Casting'),(436,1142383,3,'Casting'),(436,1228007,1,'Still Photographer'),(436,1308375,6,'Foley'),(436,1333223,6,'Supervising Sound Editor'),(436,1336949,7,'Assistant Art Director'),(436,1342242,6,'Sound Re-Recording Mixer'),(436,1371349,6,'Sound Mixer'),(436,1380052,7,'Production Design'),(436,1395025,6,'Dolby Consultant'),(436,1399150,8,'Costume Design'),(436,1406829,6,'Sound Re-Recording Mixer'),(436,1406898,6,'Sound Effects Editor'),(436,1407011,8,'Hairstylist'),(436,1532855,2,'Script Supervisor'),(436,1544908,6,'Foley'),(436,1603224,11,'Gaffer'),(436,1624027,3,'Casting'),(436,1624028,3,'Casting'),(436,1624029,7,'Production Design'),(436,1624030,8,'Costume Design'),(436,1624042,1,'Camera Operator'),(436,1624044,11,'Rigging Gaffer'),(436,1624045,1,'First Assistant Camera'),(436,1624047,1,'Still Photographer'),(436,1624056,10,'Visual Effects Supervisor'),(436,1624057,7,'Art Department Coordinator'),(436,1624058,9,'Property Master'),(436,1624059,8,'Makeup Artist'),(436,1624059,8,'Hairstylist'),(436,1624060,8,'Key Hair Stylist'),(436,1624061,8,'Makeup Artist'),(8469,1261,7,'Set Decoration'),(8469,1524,4,'Writer'),(8469,1822,1,'Director of Photography'),(8469,4610,2,'Director'),(8469,5580,3,'Unit Production Manager'),(8469,7182,6,'Music'),(8469,7184,5,'Editor'),(8469,7185,3,'Casting'),(8469,7186,7,'Art Direction'),(8469,7211,8,'Costume Design'),(8469,8858,3,'Producer'),(8469,9771,1,'Camera Operator'),(8469,14457,5,'First Assistant Editor'),(8469,30948,8,'Makeup Artist'),(8469,55199,4,'Writer'),(8469,55200,4,'Writer'),(8469,55226,2,'Script Supervisor'),(8469,55227,6,'Sound Director'),(8469,55228,6,'Boom Operator'),(8469,55229,6,'Sound Re-Recording Mixer'),(8469,55230,6,'Sound Re-Recording Mixer'),(8469,55231,6,'Sound Re-Recording Mixer'),(8469,55232,1,'Camera Operator'),(8469,55236,11,'Gaffer'),(8469,55237,1,'Grip'),(8469,55238,9,'Property Master'),(8469,55239,9,'Transportation Captain'),(8469,55240,11,'Best Boy Electrician'),(8469,55241,9,'Special Effects'),(8469,55242,8,'Makeup Artist'),(8469,55243,8,'Hairstylist'),(8469,55244,9,'Unit Publicist'),(8469,55245,1,'Still Photographer'),(8469,55246,1,'Still Photographer'),(8469,55247,3,'Producer'),(8469,55249,5,'Dialogue Editor'),(8469,55250,6,'Music Editor'),(8469,69342,3,'Producer'),(8469,122106,9,'Second Unit'),(8469,1455403,6,'Sound Effects Editor'),(658,2289,6,'Original Music Composer'),(658,9915,2,'Director'),(658,9856,4,'Novel'),(658,9861,3,'Producer'),(658,9863,3,'Producer'),(658,9864,6,'Original Music Composer'),(658,9867,1,'Director of Photography'),(658,9858,4,'Screenplay'),(658,9868,5,'Editor'),(658,9869,7,'Production Design'),(658,9916,4,'Screenplay'),(658,9917,6,'Songs'),(658,9918,7,'Art Direction'),(1585,2662,4,'Screenplay'),(1585,2662,2,'Director'),(1585,2662,3,'Producer'),(1585,4082,6,'Original Music Composer'),(1585,4313,8,'Makeup Artist'),(1585,10155,6,'Sound'),(1585,10157,9,'Special Effects'),(1585,11489,7,'Art Direction'),(1585,14431,1,'Director of Photography'),(1585,13267,9,'Additional Writing'),(1585,17670,7,'Set Decoration'),(1585,17760,4,'Original Story'),(1585,17761,1,'Director of Photography'),(1585,17762,5,'Editor'),(1585,17763,7,'Art Direction'),(1585,26159,4,'Screenplay'),(1585,26160,4,'Screenplay'),(1585,82172,9,'Additional Writing'),(1585,999656,9,'Stunts'),(1585,1200492,8,'Costume Design'),(1585,1342735,6,'Sound'),(1585,1348081,2,'Assistant Director'),(1585,1419937,9,'Special Effects'),(1585,1532469,6,'Orchestrator'),(1585,1547899,1,'Still Photographer'),(1585,1583007,6,'Sound'),(1585,1588033,10,'Special Effects Supervisor'),(1585,1625508,11,'Gaffer'),(627,473,1,'Director of Photography'),(627,2034,2,'Director'),(627,2035,3,'Producer'),(627,2073,3,'Casting'),(627,8998,4,'Author'),(627,8999,4,'Screenplay'),(627,9001,5,'Editor'),(627,9002,3,'Casting'),(627,9003,7,'Production Design'),(627,9004,7,'Art Direction'),(627,9007,8,'Makeup Artist'),(627,9007,8,'Hairstylist'),(627,9008,3,'Production Manager'),(627,9009,2,'First Assistant Director'),(627,9006,8,'Costume Design'),(627,11350,6,'Assistant Sound Editor'),(627,65016,9,'Thanks'),(627,128981,11,'Best Boy Electric'),(627,1340003,6,'Sound Effects Editor'),(627,1403641,1,'Underwater Camera'),(627,1415041,9,'Loader'),(627,1427556,1,'Still Photographer'),(627,1427823,8,'Makeup Designer'),(627,1465066,8,'Set Dressing Artist'),(627,1583799,9,'Scenic Artist'),(627,1640361,6,'Sound Recordist'),(627,1797421,3,'Location Manager'),(627,1842137,1,'Grip'),(627,1855227,6,'Dialogue Editor'),(627,1868732,9,'Driver'),(627,1872919,9,'Utility Stunts'),(627,1890687,7,'Art Department Assistant'),(627,1890688,7,'Assistant Art Director'),(627,1890689,7,'Painter'),(627,1890690,7,'Standby Painter'),(627,1890691,1,'Steadicam Operator'),(627,1890692,9,'Carpenter'),(627,1890694,9,'Security'),(627,1890696,2,'Script Supervisor'),(627,1890697,11,'Electrician'),(627,1890698,11,'Gaffer'),(627,1890699,3,'Production Accountant'),(627,1890700,3,'Production Coordinator'),(627,1890701,6,'Boom Operator'),(1430,2632,9,'Thanks'),(1430,17087,2,'Director'),(1430,17087,4,'Writer'),(1430,17087,3,'Producer'),(1430,46429,6,'Original Music Composer'),(1430,46430,3,'Producer'),(1430,35032,3,'Producer'),(1430,46431,3,'Executive Producer'),(1430,96082,9,'Thanks'),(1430,408353,3,'Supervising Producer'),(1430,553646,1,'Camera Operator'),(1430,567559,3,'Co-Producer'),(1430,567559,5,'Editor'),(1430,1030371,1,'Additional Camera'),(1430,1163706,1,'Camera Operator'),(1430,1168210,5,'Assistant Editor'),(1430,1242507,3,'Producer'),(1430,1247760,3,'Producer'),(1430,1439773,3,'Line Producer'),(1430,1554651,1,'Additional Camera'),(1430,1554652,1,'Additional Camera'),(1430,1554653,1,'Additional Camera'),(1430,1554654,1,'Additional Camera'),(261,2658,6,'Sound Designer'),(261,3632,4,'Screenplay'),(261,3632,2,'Director'),(261,3633,3,'Producer'),(261,3634,4,'Theatre Play'),(261,3637,1,'Director of Photography'),(261,3638,4,'Screenplay'),(261,3642,6,'Original Music Composer'),(261,3643,5,'Editor'),(261,3644,9,'Stunts'),(261,3645,9,'Special Effects'),(261,3646,6,'Sound Designer'),(261,3647,8,'Costume Design'),(261,3648,7,'Set Decoration'),(261,3649,7,'Set Decoration'),(1685,2027,6,'Original Music Composer'),(1685,5733,4,'Novel'),(1685,7512,7,'Art Direction'),(1685,9061,7,'Art Direction'),(1685,9587,7,'Art Direction'),(1685,9591,6,'Sound'),(1685,9916,4,'Screenplay'),(1685,10602,1,'Director of Photography'),(1685,12240,4,'Characters'),(1685,13269,3,'Producer'),(1685,18635,2,'Director'),(1685,18636,4,'Screenplay'),(1685,18638,9,'Special Effects'),(1685,18639,9,'Special Effects'),(1685,18642,6,'Sound'),(1685,18651,5,'Editor'),(826,4066,4,'Screenplay'),(826,6594,3,'Producer'),(826,11837,8,'Makeup Artist'),(826,12240,4,'Novel'),(826,12241,6,'Original Music Composer'),(826,12242,1,'Director of Photography'),(826,12243,7,'Art Direction'),(826,12246,6,'Sound Designer'),(826,12247,6,'Sound Designer'),(826,12238,2,'Director'),(826,13267,4,'Screenplay'),(5854,491,6,'Original Music Composer'),(5854,369,7,'Production Design'),(5854,2636,2,'Director'),(5854,2636,3,'Producer'),(5854,2637,4,'Screenplay'),(5854,4350,8,'Costume Design'),(5854,29890,4,'Novel'),(5854,40447,1,'Director of Photography'),(284,491,6,'Orchestrator'),(284,3146,4,'Screenplay'),(284,3146,2,'Director'),(284,3146,3,'Producer'),(284,3147,4,'Screenplay'),(284,3159,3,'Associate Producer'),(284,4100,6,'Original Music Composer'),(284,4101,1,'Director of Photography'),(284,4102,5,'Editor'),(284,4103,7,'Art Direction'),(284,4104,7,'Set Decoration'),(284,4105,8,'Makeup Artist'),(284,4106,3,'Production Manager'),(284,4107,9,'Special Effects'),(284,4108,11,'Gaffer'),(284,18379,2,'Assistant Director'),(284,14828,6,'Boom Operator'),(284,10919,6,'Sound'),(284,121343,6,'Music Editor'),(284,1250242,9,'Stand In'),(284,1369247,3,'Associate Producer'),(284,1454978,8,'Hairstylist'),(284,1551963,2,'Assistant Director'),(284,1551974,6,'Sound Effects Editor'),(284,1551980,1,'Camera Operator'),(284,1551984,9,'Choreographer'),(5780,2636,2,'Director'),(5780,2636,3,'Producer'),(5780,6934,7,'Set Decoration'),(5780,7309,6,'Sound Designer'),(5780,7310,6,'Sound Designer'),(5780,14930,6,'Original Music Composer'),(5780,47113,4,'Novel'),(5780,47114,1,'Director of Photography'),(5780,47115,5,'Editor'),(5780,111334,4,'Screenplay'),(5780,111335,4,'Screenplay'),(5780,161975,7,'Art Direction'),(5780,1314532,7,'Production Design'),(292,201,2,'Director'),(292,201,3,'Producer'),(292,313,1,'Director of Photography'),(292,1782,5,'Editor'),(292,4169,4,'Author'),(292,4169,3,'Producer'),(292,4172,3,'Producer'),(292,4231,3,'Producer'),(292,4232,3,'Producer'),(292,4233,6,'Original Music Composer'),(292,4234,5,'Editor'),(292,4235,5,'Editor'),(292,4236,7,'Production Design'),(821,4081,2,'Director'),(821,4081,3,'Producer'),(821,4085,7,'Production Design'),(821,6934,7,'Set Decoration'),(821,9103,1,'Director of Photography'),(821,12119,1,'Camera Operator'),(821,12140,4,'Screenplay'),(821,12141,3,'Producer'),(821,12142,6,'Original Music Composer'),(821,12143,5,'Editor'),(821,12144,3,'Casting'),(821,12145,8,'Costume Design'),(821,10796,8,'Makeup Artist'),(821,12146,6,'Sound Designer'),(821,12151,4,'Screenplay'),(821,17909,1,'Grip'),(821,81538,9,'Title Graphics'),(821,559913,2,'Script Supervisor'),(821,1056670,3,'Production Manager'),(821,1344292,6,'Music Editor'),(821,1355442,8,'Costume Design'),(821,1369441,2,'Assistant Director'),(821,1547899,1,'Still Photographer'),(821,1633109,6,'Sound Editor'),(821,1633320,9,'Property Master'),(3089,4082,6,'Music'),(3089,4308,1,'Director of Photography'),(3089,11435,2,'Director'),(3089,11435,3,'Producer'),(3089,10535,3,'Executive Producer'),(3089,13973,5,'Editor'),(3089,30293,2,'Director'),(3089,30294,4,'Screenplay'),(3089,30295,4,'Screenplay'),(7509,3079,1,'Director of Photography'),(7509,3080,5,'Editor'),(7509,4760,2,'Director'),(7509,4760,4,'Screenplay'),(252,1299,4,'Screenplay'),(252,1299,4,'Novel'),(252,3375,6,'Original Music Composer'),(252,3451,2,'Director'),(252,3452,3,'Producer'),(252,3453,3,'Producer'),(252,3454,1,'Director of Photography'),(252,3455,5,'Editor'),(252,3456,8,'Costume Design'),(252,3457,9,'Special Effects'),(252,3458,3,'Production Manager'),(252,3459,3,'Unit Production Manager'),(252,3479,6,'Sound Designer'),(252,3616,6,'Original Music Composer'),(549,4446,3,'Producer'),(549,6590,3,'Producer'),(549,7482,2,'Director'),(549,7482,6,'Original Music Composer'),(549,7482,4,'Writer'),(549,7483,4,'Story'),(549,7483,3,'Co-Producer'),(549,7484,4,'Writer'),(549,7490,3,'Producer'),(549,7491,6,'Original Music Composer'),(549,7492,1,'Director of Photography'),(549,7493,5,'Editor'),(549,7494,3,'Casting'),(549,7495,3,'Casting'),(549,7496,7,'Production Design'),(549,52163,8,'Costume Design'),(549,72585,3,'Executive Producer'),(549,91053,8,'Key Hair Stylist'),(549,232158,6,'Music Supervisor'),(549,1253648,9,'Stunt Coordinator'),(549,1391583,1,'Still Photographer'),(549,1431631,1,'Still Photographer'),(549,1521476,1,'First Assistant Camera'),(549,1532409,6,'Music Editor'),(549,1538812,3,'Executive Producer'),(549,1538813,3,'Executive Producer'),(549,1538814,5,'First Assistant Editor'),(868,2623,3,'Casting'),(868,11860,4,'Novel'),(868,13079,2,'Director'),(868,13079,4,'Writer'),(868,13081,3,'Producer'),(868,13082,6,'Original Music Composer'),(868,13083,6,'Original Music Composer'),(868,13084,1,'Director of Photography'),(868,13085,5,'Editor'),(868,13086,7,'Production Design'),(868,13087,7,'Art Direction'),(868,13088,7,'Set Decoration'),(868,13089,8,'Costume Design'),(868,13090,8,'Costume Design'),(670,10099,2,'Director'),(670,10099,4,'Screenplay'),(670,10101,10,'Creature Design'),(670,10102,4,'Screenplay'),(670,10103,4,'Screenplay'),(670,10104,4,'Screenplay'),(670,10105,3,'Producer'),(670,10106,3,'Executive Producer'),(670,10107,1,'Director of Photography'),(670,10108,5,'Editor'),(670,10109,7,'Production Design'),(670,10110,6,'Music Supervisor'),(670,37930,6,'Original Music Composer'),(670,43570,8,'Costume Design'),(670,1678931,3,'Line Producer'),(670,1678932,6,'Production Sound Mixer'),(342,3700,6,'Sound Designer'),(342,4222,3,'Casting'),(342,4524,6,'Original Music Composer'),(342,4525,3,'Producer'),(342,4526,3,'Producer'),(342,4557,3,'Producer'),(342,5191,4,'Author'),(342,5192,2,'Director'),(342,5192,4,'Author'),(342,5193,6,'Original Music Composer'),(342,5194,1,'Director of Photography'),(342,5195,5,'Editor'),(342,5196,7,'Art Direction'),(342,5197,8,'Costume Design'),(342,5198,3,'Production Manager'),(342,5199,2,'Assistant Director'),(342,5200,6,'Sound Designer'),(342,52875,7,'Assistant Art Director'),(666,4135,3,'Producer'),(666,8559,2,'Assistant Director'),(666,8564,3,'Executive Producer'),(666,8571,3,'Executive Producer'),(666,8574,4,'Screenplay'),(666,8574,2,'Director'),(666,8574,3,'Producer'),(666,8576,6,'Original Music Composer'),(666,10030,4,'Screenplay'),(666,10031,4,'Screenplay'),(666,10031,2,'Assistant Director'),(666,10032,3,'Producer'),(666,10033,3,'Executive Producer'),(666,10034,3,'Producer'),(666,10035,3,'Producer'),(666,10036,3,'Line Producer'),(666,10037,3,'Executive Producer'),(666,10038,1,'Director of Photography'),(666,10039,6,'Original Music Composer'),(666,10040,5,'Editor'),(666,10041,5,'Editor'),(666,10042,3,'Casting'),(666,10042,2,'Assistant Director'),(666,10043,7,'Production Design'),(666,10044,7,'Production Design'),(666,10045,8,'Costume Design'),(666,10046,8,'Makeup Artist'),(666,10048,7,'Set Designer'),(666,10049,7,'Set Designer'),(666,10050,6,'Sound Designer'),(666,10052,6,'Sound Designer'),(666,10053,6,'Sound Designer'),(666,10054,6,'Sound mixer'),(666,112188,9,'Special Effects Coordinator'),(666,228772,3,'Producer'),(666,1405777,1,'First Assistant Camera'),(666,1429602,11,'Electrician'),(666,1466123,2,'Assistant Director'),(666,1478209,9,'Thanks'),(666,1532338,10,'Special Effects Supervisor'),(666,1542917,5,'Color Timer'),(666,1629881,6,'Additional Soundtrack'),(666,1635402,6,'Additional Soundtrack'),(248,2662,2,'Director'),(248,2662,3,'Producer'),(248,3375,6,'Original Music Composer'),(248,3376,4,'Writer'),(248,3377,4,'Writer'),(248,3448,6,'Original Music Composer'),(248,3449,5,'Editor'),(248,19019,4,'Screenplay'),(248,120678,4,'Story'),(239,3146,4,'Screenplay'),(239,3146,2,'Director'),(239,3146,3,'Producer'),(239,3148,1,'Director of Photography'),(239,3158,4,'Story'),(239,3159,3,'Producer'),(239,8621,5,'Editor'),(239,4100,6,'Original Music Composer'),(239,4104,7,'Set Decoration'),(239,4106,3,'Production Manager'),(239,4107,9,'Special Effects'),(239,4108,11,'Gaffer'),(239,18379,2,'Assistant Director'),(239,12431,9,'Stunts'),(239,12495,7,'Art Direction'),(239,14056,8,'Makeup Artist'),(239,17672,8,'Hairstylist'),(239,10919,6,'Sound'),(239,3157,4,'Story'),(239,29856,3,'Location Manager'),(239,45963,1,'Still Photographer'),(239,51379,6,'Music Editor'),(239,120048,9,'Stunts'),(239,562715,9,'Stunts'),(239,940683,2,'Assistant Director'),(239,1228187,6,'Vocal Coach'),(239,1235589,6,'Additional Soundtrack'),(239,1283607,9,'Choreographer'),(239,1369247,4,'Screenplay'),(239,1369247,3,'Associate Producer'),(239,1419937,9,'Special Effects'),(239,1427699,9,'Script'),(239,1433439,9,'Stunts'),(239,1454977,8,'Costume Design'),(239,1454978,8,'Hairstylist'),(239,1467693,6,'Songs'),(239,1467693,6,'Music'),(239,1547895,3,'Casting'),(239,1547896,8,'Makeup Artist'),(239,1547899,1,'Still Photographer'),(630,1505,4,'Screenplay'),(630,2656,3,'Casting'),(630,9049,2,'Director'),(630,9051,4,'Book'),(630,9052,4,'Screenplay'),(630,9052,4,'Adaptation'),(630,9053,4,'Screenplay'),(630,9054,3,'Producer'),(630,9055,3,'Producer'),(630,9056,6,'Music'),(630,9057,1,'Director of Photography'),(630,9058,5,'Editor'),(630,9059,7,'Production Design'),(630,9060,7,'Production Design'),(630,9061,7,'Production Design'),(630,9062,7,'Art Direction'),(630,9063,7,'Set Decoration'),(630,9064,8,'Costume Design'),(630,13986,8,'Makeup Artist'),(630,29984,9,'Special Effects'),(3034,597,3,'Casting'),(3034,598,3,'Casting'),(3034,719,6,'Orchestrator'),(3034,719,6,'Original Music Composer'),(3034,3105,6,'Sound Re-Recording Mixer'),(3034,3460,4,'Screenplay'),(3034,3460,4,'Screenstory'),(3034,6847,1,'Director of Photography'),(3034,6901,9,'Scenic Artist'),(3034,9582,5,'Editor'),(3034,12116,3,'Producer'),(3034,14436,8,'Makeup Artist'),(3034,14639,2,'Director'),(3034,14639,4,'Screenplay'),(3034,14639,4,'Screenstory'),(3034,14779,7,'Set Designer'),(3034,14779,7,'Production Design'),(3034,14780,7,'Set Decoration'),(3034,16533,5,'Assistant Editor'),(3034,16574,9,'Special Effects'),(3034,28970,4,'Novel'),(3034,29800,8,'Costume Design'),(3034,29801,8,'Makeup Artist'),(3034,30383,2,'Assistant Director'),(3034,30918,5,'Assistant Editor'),(3034,60790,6,'Orchestrator'),(3034,74811,6,'Scoring Mixer'),(3034,113658,8,'Hairstylist'),(3034,117709,9,'Thanks'),(3034,166335,9,'Stunt Coordinator'),(3034,1194472,11,'Gaffer'),(3034,1442518,2,'Script Supervisor'),(3034,1461645,7,'Construction Coordinator'),(3034,1534228,1,'First Assistant Camera'),(3034,1559470,3,'Unit Production Manager'),(3034,1559471,2,'Assistant Director'),(3034,1559472,9,'Property Master'),(3034,1559475,6,'Sound Editor'),(3034,1559479,6,'Sound mixer'),(3034,1559485,9,'Special Effects'),(3034,1559493,10,'Visual Effects'),(3034,1559495,9,'Stunts'),(3034,1559496,1,'Camera Operator'),(3034,1597776,8,'Costume Design'),(5900,27875,2,'Director'),(5900,27875,4,'Screenplay'),(5900,27879,6,'Music'),(5900,27882,3,'Casting'),(5900,35506,1,'Director of Photography'),(5900,46445,5,'Editor'),(5900,48588,3,'Producer'),(9730,20953,6,'Music'),(9730,38685,4,'Author'),(9730,49284,3,'Production Manager'),(9730,58816,4,'Author'),(9730,58817,4,'Author'),(9730,58818,1,'Director of Photography'),(9730,64195,2,'Director'),(9730,64196,5,'Editor'),(291,4319,2,'Director'),(291,4319,4,'Screenplay'),(291,4319,3,'Producer'),(291,4320,4,'Screenplay'),(291,4336,3,'Producer'),(291,4337,3,'Producer'),(291,4338,1,'Director of Photography'),(291,4339,5,'Editor'),(8875,21426,1,'Director of Photography'),(8875,40613,6,'Music'),(8875,36134,3,'Producer'),(8875,42712,2,'Director'),(8875,42712,4,'Screenplay'),(8875,56003,3,'Producer'),(8875,56170,4,'Author'),(8875,56171,3,'Producer'),(8875,56172,3,'Producer'),(8875,56173,3,'Executive Producer'),(8875,59710,8,'Costume Design'),(8875,60631,7,'Set Decoration'),(8875,62216,7,'Production Design'),(8875,1322061,3,'Casting'),(8875,1322062,5,'Editor'),(8875,1322063,7,'Art Direction'),(8875,1322071,8,'Costume Supervisor'),(8875,1322072,8,'Costume Supervisor'),(872,14681,8,'Hair Designer'),(872,9055,3,'Producer'),(872,9055,6,'Songs'),(872,9057,1,'Director of Photography'),(872,9062,7,'Art Direction'),(872,9063,7,'Set Decoration'),(872,11491,8,'Costume Design'),(872,13284,2,'Director'),(872,13284,9,'Choreographer'),(872,13294,2,'Director'),(872,13294,9,'Choreographer'),(872,13286,4,'Screenplay'),(872,13286,4,'Story'),(872,13289,5,'Editor'),(872,13290,7,'Art Direction'),(872,13292,9,'Special Effects'),(872,13293,9,'Special Effects'),(872,29801,8,'Makeup Designer'),(872,41409,7,'Set Decoration'),(872,95665,6,'Original Music Composer'),(872,197796,4,'Screenplay'),(872,197796,4,'Story'),(872,1147360,6,'Songs'),(9591,31,4,'Screenplay'),(9591,31,2,'Director'),(9591,117,6,'Original Music Composer'),(9591,557,8,'Costume Design'),(9591,16294,3,'Producer'),(9591,16297,3,'Producer'),(9591,16300,1,'Director of Photography'),(9591,8425,5,'Editor'),(9591,27098,3,'Producer'),(1687,1760,6,'Original Music Composer'),(1687,7512,7,'Art Direction'),(1687,9061,7,'Art Direction'),(1687,9108,2,'Director'),(1687,9587,7,'Art Direction'),(1687,9799,7,'Art Direction'),(1687,9916,4,'Screenplay'),(1687,14431,1,'Director of Photography'),(1687,12240,4,'Characters'),(1687,13269,3,'Producer'),(1687,18651,5,'Editor'),(1687,18652,9,'Special Effects Coordinator'),(1687,18655,6,'Sound'),(1687,18656,6,'Sound'),(468,512,3,'Producer'),(468,6392,8,'Costume Design'),(468,5216,4,'Screenplay'),(468,5216,2,'Director'),(468,5227,1,'Director of Photography'),(468,6387,3,'Line Producer'),(468,6388,6,'Original Music Composer'),(468,6389,1,'Director of Photography'),(468,6390,5,'Editor'),(468,6391,7,'Production Design'),(468,6393,8,'Makeup Artist'),(401,2952,3,'Casting'),(401,518,3,'Executive Producer'),(401,4447,3,'Line Producer'),(401,5367,4,'Screenplay'),(401,5367,2,'Director'),(401,5371,3,'Producer'),(401,5381,3,'Executive Producer'),(401,5382,3,'Executive Producer'),(401,5378,3,'Producer'),(401,5386,3,'Producer'),(401,5379,3,'Producer'),(401,5380,3,'Producer'),(401,5387,1,'Director of Photography'),(401,5388,5,'Editor'),(401,5389,7,'Production Design'),(401,5390,7,'Art Direction'),(401,5391,7,'Set Decoration'),(401,5392,8,'Costume Design'),(401,5393,6,'Original Music Composer'),(401,5394,6,'Original Music Composer'),(401,229810,8,'Hairstylist'),(401,1328146,8,'Makeup Artist'),(76,564,4,'Screenplay'),(76,564,2,'Director'),(76,568,4,'Screenplay'),(76,576,1,'Director of Photography'),(76,577,6,'Original Music Composer'),(76,580,5,'Editor'),(76,582,5,'Editor'),(76,566,3,'Producer'),(76,3723,3,'Casting'),(76,3724,3,'Casting'),(76,3725,7,'Production Design'),(76,3726,8,'Costume Design'),(20,90,2,'Director'),(20,93,3,'Producer'),(20,96,3,'Producer'),(20,97,4,'Author'),(20,104,1,'Director of Photography'),(20,105,5,'Editor'),(20,106,6,'Original Music Composer'),(20,952,3,'Executive Producer'),(20,309,3,'Executive Producer'),(20,2324,3,'Casting'),(20,2325,3,'Casting'),(20,2326,7,'Art Direction'),(20,2327,8,'Costume Design'),(20,2328,6,'Sound Designer'),(20,2329,6,'Sound Designer'),(20,2330,6,'Sound Designer'),(20,2331,6,'Sound Designer'),(1698,1871,5,'Editor'),(1698,4525,3,'Producer'),(1698,4526,3,'Producer'),(1698,15115,4,'Screenplay'),(1698,15115,2,'Director'),(1698,15117,1,'Director of Photography'),(1698,36861,3,'Producer'),(1698,36862,6,'Original Music Composer'),(7512,17403,2,'Director'),(7512,17403,4,'Author'),(7512,17403,4,'Screenplay'),(7512,17403,3,'Producer'),(7512,52803,4,'Screenplay'),(7512,52804,3,'Producer'),(7512,52805,3,'Executive Producer'),(756,2106,3,'Producer'),(756,2113,6,'Sound Recordist'),(756,2522,6,'Music'),(756,5446,2,'Director'),(756,5690,2,'Director'),(756,5691,2,'Director'),(756,11426,2,'Director'),(756,11426,3,'Production Supervisor'),(756,11427,2,'Director'),(756,11428,2,'Director'),(756,11429,2,'Director'),(756,11430,2,'Director'),(756,11431,2,'Director'),(756,11432,2,'Director'),(756,11434,2,'Director'),(756,22066,10,'Animation'),(756,29798,6,'Music'),(756,31021,6,'Music Director'),(756,57314,10,'Animation'),(756,63646,10,'Animation'),(756,67826,6,'Music'),(756,69003,10,'Animation'),(756,69133,4,'Story'),(756,69134,4,'Story'),(756,70650,6,'Music'),(756,109453,10,'Animation'),(756,115754,10,'Animation'),(756,226599,2,'Director'),(756,233471,6,'Conductor'),(756,974330,6,'Music'),(756,1281066,6,'Music'),(756,1564900,6,'Music'),(756,1808180,5,'Editor'),(756,1808181,6,'Sound Recordist'),(756,1808182,6,'Sound Recordist'),(756,1808200,6,'Music'),(9728,13810,5,'Editor'),(9728,20953,6,'Music'),(9728,38685,4,'Author'),(9728,49284,3,'Finance'),(9728,58712,2,'Director'),(9728,58712,10,'Animation Director'),(9728,58713,4,'Author'),(9728,58809,4,'Author'),(9728,58810,4,'Author'),(9728,58811,4,'Author'),(9728,58812,1,'Director of Photography'),(9731,12970,5,'Editor'),(9731,20953,6,'Music'),(9731,35475,4,'Characters'),(9731,38685,4,'Characters'),(9731,49284,3,'Executive Producer'),(9731,12942,3,'Casting'),(9731,58809,4,'Writer'),(9731,58822,2,'Director'),(9731,58822,4,'Writer'),(9731,58822,3,'Finance'),(9731,58826,1,'Director of Photography'),(9731,13433,3,'Casting'),(9731,158054,4,'Writer'),(9731,162927,4,'Writer'),(9731,1515467,3,'Producer'),(9916,1324,3,'Casting'),(9916,42360,3,'Casting'),(9916,60366,8,'Costume Design'),(9916,60440,3,'Producer'),(9916,60440,4,'Author'),(9916,60443,3,'Producer'),(9916,60439,4,'Author'),(9916,60438,2,'Director'),(9916,60438,4,'Screenplay'),(9916,60438,3,'Producer'),(9916,60448,3,'Co-Producer'),(9916,60450,6,'Original Music Composer'),(9916,60453,7,'Production Design'),(9916,60453,3,'Co-Producer'),(9916,60451,3,'Executive Producer'),(9916,60457,7,'Set Decoration'),(9916,60456,1,'Director of Photography'),(887,8504,1,'Director of Photography'),(887,3386,4,'Screenplay'),(887,4102,5,'Editor'),(887,13574,8,'Costume Design'),(887,6358,7,'Art Direction'),(887,10001,2,'Director'),(887,12349,7,'Set Decoration'),(887,13569,4,'Novel'),(887,13570,3,'Producer'),(887,13571,6,'Original Music Composer'),(887,13572,7,'Art Direction'),(887,13575,9,'Sound Recordist'),(9517,3183,3,'Producer'),(9517,51917,2,'Director'),(9517,51917,7,'Art Direction'),(9517,57791,4,'Author'),(9517,57792,4,'Author'),(6007,6148,3,'Producer'),(6007,49555,2,'Director'),(6007,49556,4,'Screenplay'),(6007,49557,4,'Novel'),(6007,49558,6,'Original Music Composer'),(6007,49559,1,'Director of Photography'),(6007,49560,5,'Editor'),(8329,17083,3,'Producer'),(8329,28500,5,'Editor'),(8329,37950,3,'Executive Producer'),(8329,54520,1,'Director of Photography'),(8329,54525,4,'Screenplay'),(8329,54525,2,'Director'),(8329,54526,4,'Screenplay'),(8329,54526,2,'Director'),(8329,54527,4,'Screenplay'),(8329,54528,3,'Producer'),(8329,54529,7,'Set Designer'),(8329,54530,6,'Sound Designer'),(8329,54531,8,'Costume Design'),(8329,507252,5,'Editor'),(8329,961462,3,'Line Producer'),(8329,967367,3,'Casting'),(8329,1120588,3,'Line Producer'),(8329,1324227,9,'Property Master'),(8329,1324229,3,'Production Manager'),(8329,1400474,6,'Sound Re-Recording Mixer'),(8329,1405362,6,'Supervising Sound Editor'),(8329,1405372,2,'Script Supervisor'),(8329,1418152,9,'Post-Production Manager'),(8329,1457164,3,'Production Manager'),(8329,1605762,11,'Electrician'),(8329,1637481,9,'Makeup Effects'),(8329,1637494,10,'Visual Effects Supervisor'),(8329,1637496,8,'Assistant Costume Designer'),(8329,1637497,5,'Color Timer'),(8329,1637498,5,'Digital Intermediate'),(8329,1637499,5,'Color Timer'),(657,2289,6,'Original Music Composer'),(657,9856,4,'Novel'),(657,9861,3,'Producer'),(657,9863,3,'Producer'),(657,9864,6,'Original Music Composer'),(657,9867,1,'Director of Photography'),(657,9904,3,'Casting'),(657,7756,7,'Art Direction'),(657,9855,2,'Director'),(657,9858,4,'Screenplay'),(657,9859,4,'Adaptation'),(657,9860,4,'Screenplay'),(657,9868,5,'Editor'),(657,9903,6,'Songs'),(657,9905,8,'Costume Design'),(657,10177,3,'Associate Producer'),(657,20108,8,'Makeup Artist'),(657,31937,3,'Location Manager'),(657,206043,2,'Assistant Director'),(657,982919,8,'Hairstylist'),(657,1166842,9,'Stunts'),(657,1249768,9,'Special Effects'),(657,1283067,2,'Continuity'),(657,1438740,7,'Set Dresser'),(657,1540050,6,'Musician'),(657,1568527,8,'Makeup Artist'),(657,1588463,11,'Electrician'),(657,1588869,1,'Camera Operator'),(657,1784246,8,'Wardrobe Supervisor'),(595,369,7,'Art Direction'),(595,4308,1,'Director of Photography'),(595,18376,2,'Script Supervisor'),(595,6349,3,'Producer'),(595,7182,6,'Original Music Composer'),(595,7310,6,'Sound'),(595,8482,2,'Director'),(595,8482,3,'Producer'),(595,8483,4,'Screenplay'),(595,8484,5,'Editor'),(595,8485,4,'Screenplay'),(595,8485,3,'Producer'),(595,8485,4,'Author'),(595,8487,3,'Producer'),(595,12346,7,'Art Direction'),(595,12350,8,'Costume Design'),(595,14495,8,'Hairstylist'),(595,14498,8,'Makeup Artist'),(595,14746,3,'Casting'),(595,30107,7,'Set Decoration'),(595,30257,6,'Orchestrator'),(595,32085,1,'Still Photographer'),(595,73259,3,'Executive In Charge Of Production'),(595,85853,6,'Sound'),(595,113985,2,'Assistant Director'),(595,570728,5,'Assistant Editor'),(595,929005,8,'Hairstylist'),(595,1157272,3,'Production Manager'),(595,1506963,7,'Set Designer'),(595,1532774,6,'Orchestrator'),(595,1537731,8,'Makeup Artist'),(595,1561044,2,'Assistant Director'),(595,1590561,3,'Production Manager'),(595,1628105,8,'Costume Design'),(8810,4501,1,'Director of Photography'),(8810,11452,4,'Screenplay'),(8810,20629,4,'Screenplay'),(8810,20629,2,'Director'),(8810,46952,5,'Editor'),(8810,55992,4,'Writer'),(8810,58438,6,'Original Music Composer'),(8810,59793,8,'Costume Design'),(8810,62743,7,'Art Direction'),(8810,71194,5,'Editor'),(8810,951895,3,'Producer'),(8810,1311626,9,'Makeup Effects'),(8810,1454858,5,'Editor'),(226,4023,3,'Casting'),(226,3727,3,'Executive Producer'),(226,2836,2,'Director'),(226,2836,4,'Author'),(226,2837,4,'Author'),(226,2860,3,'Producer'),(226,2861,3,'Producer'),(226,2862,3,'Producer'),(226,2863,6,'Original Music Composer'),(226,2864,1,'Director of Photography'),(226,2865,5,'Editor'),(226,2866,5,'Editor'),(226,2867,7,'Production Design'),(226,2890,3,'Producer'),(226,3192,3,'Casting'),(226,5328,3,'Casting'),(226,6510,3,'Executive Producer'),(226,6511,3,'Executive Producer'),(226,32607,3,'Line Producer'),(226,32608,3,'Producer'),(226,47277,3,'Line Producer'),(226,54900,8,'Costume Design'),(226,57427,3,'Executive Producer'),(226,943824,3,'Producer'),(226,996401,7,'Art Direction'),(226,1522742,3,'Casting'),(582,4219,3,'Co-Producer'),(582,4222,3,'Casting'),(582,58281,7,'Set Decoration'),(582,4528,5,'Editor'),(582,5488,6,'Original Music Composer'),(582,8193,4,'Screenplay'),(582,8193,2,'Director'),(582,8193,3,'Co-Producer'),(582,8194,1,'Director of Photography'),(582,8195,6,'Original Music Composer'),(582,8208,3,'Producer'),(582,8209,3,'Producer'),(582,16716,9,'Stunts'),(582,40784,11,'Lighting Technician'),(582,11607,6,'Sound mixer'),(582,17570,3,'Production Manager'),(582,30371,3,'Production Coordinator'),(582,32840,7,'Art Direction'),(582,40482,6,'Sound Re-Recording Mixer'),(582,46019,8,'Costume Design'),(582,53342,9,'Post Production Assistant'),(582,71162,8,'Makeup Artist'),(582,68350,3,'Co-Producer'),(582,68351,3,'Co-Producer'),(582,90257,6,'Foley'),(582,114297,5,'Assistant Editor'),(582,1071516,1,'Still Photographer'),(582,1121517,3,'Co-Producer'),(582,1130613,3,'Publicist'),(582,1394265,6,'Foley'),(582,1394266,6,'Sound Designer'),(582,1425853,6,'Foley'),(582,1452812,7,'Production Design'),(582,1539055,8,'Makeup Artist'),(582,1539060,6,'ADR & Dubbing'),(582,1539062,6,'ADR & Dubbing'),(582,1539064,6,'Boom Operator'),(582,1539066,9,'Special Effects'),(582,1539071,11,'Lighting Technician'),(582,1539076,11,'Gaffer'),(582,1539077,7,'Location Scout'),(582,1539079,3,'Publicist'),(582,1539080,7,'Location Scout'),(990,1758,1,'Director of Photography'),(990,1051,8,'Costume Design'),(990,5260,6,'Original Music Composer'),(990,6453,5,'Editor'),(990,9854,6,'Sound Designer'),(990,14875,4,'Screenplay'),(990,14875,2,'Director'),(990,14875,3,'Producer'),(990,14876,4,'Screenplay'),(990,14877,4,'Screenplay'),(990,14878,7,'Production Design'),(990,14879,7,'Set Decoration'),(990,14880,6,'Sound Designer'),(990,14881,9,'Stunts'),(9662,21768,2,'Director'),(9662,21768,4,'Author'),(9662,59446,6,'Original Music Composer'),(9662,59447,3,'Producer'),(9662,59448,3,'Producer'),(9662,70135,5,'Editor'),(9662,70136,5,'Editor'),(9662,70137,5,'Editor'),(9662,1447317,10,'Animation'),(9662,1447377,10,'Animation'),(9662,1642697,10,'Animation'),(2771,27976,4,'Writer'),(2771,72205,2,'Director'),(2771,72205,4,'Writer'),(2771,72206,2,'Director'),(2771,72206,4,'Writer'),(2771,93466,4,'Writer'),(80,564,4,'Screenplay'),(80,564,2,'Director'),(80,564,3,'Producer'),(80,564,4,'Characters'),(80,564,4,'Story'),(80,568,4,'Characters'),(80,568,4,'Story'),(80,569,4,'Screenplay'),(80,576,1,'Director of Photography'),(80,580,5,'Editor'),(80,566,3,'Producer'),(80,1146,4,'Screenplay'),(80,3727,3,'Executive Producer'),(80,3732,7,'Production Design'),(80,3733,8,'Costume Design'),(55,223,2,'Director'),(55,223,5,'Editor'),(55,223,3,'Producer'),(55,273,3,'Producer'),(55,273,4,'Author'),(55,275,1,'Director of Photography'),(55,276,5,'Editor'),(55,277,5,'Editor'),(55,278,6,'Original Music Composer'),(55,279,6,'Original Music Composer'),(55,6208,7,'Production Design'),(55,7350,9,'Thanks'),(55,11218,9,'Thanks'),(55,12529,9,'Thanks'),(55,10828,5,'Editorial Coordinator'),(55,42024,9,'Stunts'),(55,46085,9,'Thanks'),(55,69869,9,'Thanks'),(55,69870,3,'Associate Producer'),(55,69871,3,'Executive Producer'),(55,88875,9,'Thanks'),(55,95320,9,'Thanks'),(55,118535,9,'Thanks'),(55,234749,5,'Editorial Manager'),(55,589402,9,'Second Unit'),(55,589402,2,'Assistant Director'),(55,589801,9,'Thanks'),(55,943907,9,'Thanks'),(55,952511,3,'Production Manager'),(55,960380,3,'Casting'),(55,966716,6,'Music'),(55,974927,9,'Thanks'),(55,989004,3,'Producer'),(55,1043015,8,'Costume Design'),(55,1051964,2,'Assistant Director'),(55,1052537,6,'Music Supervisor'),(55,1106648,9,'Thanks'),(55,1114886,3,'Producer'),(55,1114888,3,'Executive Producer'),(55,1186829,6,'Music'),(55,1204115,3,'Location Manager'),(55,1286372,3,'Casting'),(55,1306166,9,'Post-Production Manager'),(55,1317806,9,'Thanks'),(55,1325807,9,'Special Effects'),(55,1329477,8,'Costume Supervisor'),(55,1329805,7,'Art Direction'),(55,1383973,3,'Location Manager'),(55,1412474,8,'Makeup Artist'),(55,1460690,1,'Still Photographer'),(55,1511693,7,'Set Decoration'),(55,1520600,3,'Casting'),(55,1520950,9,'Special Effects Coordinator'),(55,1521688,8,'Assistant Costume Designer'),(55,1521689,8,'Hairstylist'),(55,1535078,6,'Sound Engineer'),(55,1538258,8,'Makeup Designer'),(55,1551815,6,'Orchestrator'),(55,1587250,9,'Stunts'),(1382,1589,6,'Original Music Composer'),(1382,6510,3,'Executive Producer'),(1382,6511,3,'Executive Producer'),(1382,16860,4,'Screenplay'),(1382,16860,2,'Director'),(1382,53894,3,'Producer'),(1382,53895,3,'Executive Producer'),(1382,53896,3,'Executive Producer'),(1382,53897,1,'Director of Photography'),(1382,53898,5,'Editor'),(1382,36806,5,'Editor'),(1382,53899,3,'Casting'),(1382,53900,7,'Production Design'),(1382,53901,7,'Art Direction'),(1382,53902,7,'Set Decoration'),(4816,1632,1,'Director of Photography'),(4816,330,5,'Editor'),(4816,4429,2,'Director'),(4816,4429,4,'Screenplay'),(4816,4429,3,'Producer'),(4816,150,6,'Original Music Composer'),(4816,15428,7,'Production Design'),(4816,39594,7,'Art Direction'),(4816,39595,3,'Producer'),(7873,5912,6,'Original Music Composer'),(7873,5914,3,'Casting'),(7873,3987,5,'Editor'),(7873,22115,3,'Producer'),(7873,19769,4,'Author'),(7873,19769,2,'Director'),(7873,19769,3,'Producer'),(7873,51981,1,'Director of Photography'),(7873,53636,3,'Casting'),(7873,53637,7,'Production Design'),(1378,17114,4,'Screenplay'),(1378,17114,2,'Director'),(1378,17114,3,'Producer'),(1378,19758,1,'Director of Photography'),(1378,19759,5,'Editor'),(1378,25500,3,'Producer'),(1378,25501,3,'Producer'),(1378,25502,3,'Producer'),(1378,399477,6,'Music'),(1378,1594602,8,'Costume Design'),(8885,16707,3,'Producer'),(8885,16708,3,'Producer'),(8885,41793,3,'Producer'),(8885,46266,6,'Original Music Composer'),(8885,51088,6,'Sound Designer'),(8885,56198,4,'Screenplay'),(8885,56198,2,'Director'),(8885,72574,5,'Editor'),(8885,72575,3,'Producer'),(8885,124806,7,'Art Direction'),(8885,124809,10,'Visual Effects'),(7515,897,3,'Producer'),(7515,6904,8,'Costume Design'),(7515,24953,3,'Producer'),(7515,27576,1,'Director of Photography'),(7515,52856,2,'Director'),(7515,52856,4,'Writer'),(7515,55985,5,'Editor'),(7515,66691,8,'Key Hair Stylist'),(7515,65816,3,'Executive Producer'),(7515,65823,3,'Executive Producer'),(7515,77750,3,'Executive Producer'),(7515,81742,2,'Script Supervisor'),(7515,80604,3,'Co-Producer'),(7515,94470,3,'Casting'),(7515,121275,8,'Hair Department Head'),(7515,428704,7,'Art Direction'),(7515,1190448,7,'Production Design'),(7515,1396311,10,'Visual Effects Producer'),(7515,1398188,3,'Producer'),(7515,1398193,3,'Associate Producer'),(7515,1457213,10,'Visual Effects Coordinator'),(7515,1517399,2,'Script Supervisor'),(7515,1531510,8,'Makeup Department Head'),(7515,1537515,7,'Set Decoration'),(7515,1537516,8,'Makeup Artist'),(3766,40,4,'Screenplay'),(3766,40,2,'Director'),(3766,40,3,'Producer'),(3766,1762,1,'First Assistant Camera'),(3766,11593,1,'Director of Photography'),(3766,4358,4,'Writer'),(3766,12011,3,'Producer'),(3766,12011,4,'Writer'),(3766,12145,8,'Costume Design'),(3766,10796,8,'Makeup Artist'),(3766,17761,1,'Director of Photography'),(3766,18576,1,'Director of Photography'),(3766,8724,9,'Technical Supervisor'),(3766,29341,3,'Executive Producer'),(3766,29345,7,'Art Direction'),(3766,24325,9,'Stunts'),(3766,30268,6,'Original Music Composer'),(3766,31206,8,'Makeup Artist'),(3766,31207,8,'Hairstylist'),(3766,34369,9,'Other'),(3766,34224,5,'Editor'),(3766,34227,6,'Music Director'),(3766,34412,7,'Set Decoration'),(3766,34467,7,'Set Decoration'),(3766,55694,6,'Orchestrator'),(3766,91218,9,'Stunts'),(3766,89532,9,'Special Effects'),(3766,89685,4,'Writer'),(3766,91245,6,'Orchestrator'),(3766,96159,3,'Producer'),(3766,174119,9,'Stand In'),(3766,940683,2,'Assistant Director'),(3766,958566,7,'Art Direction'),(3766,1016823,4,'Novel'),(3766,1099274,6,'Sound'),(3766,1369034,1,'Still Photographer'),(3766,1374511,2,'Script Supervisor'),(3766,1433439,9,'Stunts'),(3766,1595383,1,'Camera Operator'),(702,2746,2,'Director'),(702,2766,5,'Editor'),(702,3634,4,'Screenplay'),(702,3634,4,'Theatre Play'),(702,4126,7,'Set Decoration'),(702,4313,8,'Makeup Artist'),(702,10536,6,'Original Music Composer'),(702,8506,7,'Art Direction'),(702,10533,4,'Screenplay'),(702,10535,3,'Producer'),(702,10537,1,'Director of Photography'),(702,8722,6,'Sound Designer'),(702,30267,6,'Music Director'),(702,85426,2,'Assistant Director'),(702,1309577,7,'Supervising Art Director'),(702,1514138,8,'Makeup Artist'),(702,1531026,6,'Sound'),(702,1531939,8,'Hairstylist'),(702,1531940,7,'Construction Coordinator'),(702,1531941,6,'Boom Operator'),(702,1531943,6,'Orchestrator'),(702,1570441,2,'Assistant Director'),(935,7753,1,'Director of Photography'),(935,240,2,'Director'),(935,240,4,'Screenplay'),(935,240,3,'Producer'),(935,244,5,'Assistant Editor'),(935,257,3,'Producer'),(935,8950,4,'Screenplay'),(935,9869,7,'Production Design'),(935,9918,7,'Art Direction'),(935,11837,8,'Makeup Artist'),(935,12009,5,'Editor'),(935,12246,6,'Sound'),(935,12681,2,'Assistant Director'),(935,14250,4,'Screenplay'),(935,14250,4,'Novel'),(935,14251,3,'Executive Producer'),(935,14252,6,'Original Music Composer'),(935,13494,9,'Special Effects'),(935,89541,9,'Sound Recordist'),(935,958468,8,'Hairstylist'),(935,1189045,6,'Sound Editor'),(935,1201088,9,'Special Effects'),(935,1206210,9,'Special Effects'),(935,1378839,1,'Still Photographer'),(935,1532767,9,'Special Effects'),(935,1556555,3,'Production Manager'),(935,1556556,6,'ADR & Dubbing'),(935,1556557,1,'Camera Operator'),(542,7348,2,'Director'),(542,7349,4,'Author'),(542,7350,4,'Screenplay'),(542,7354,3,'Producer'),(542,7355,3,'Producer'),(542,7356,3,'Producer'),(542,7357,3,'Producer'),(542,7358,3,'Producer'),(542,7359,3,'Producer'),(542,7360,3,'Executive Producer'),(542,7361,6,'Original Music Composer'),(542,7362,1,'Director of Photography'),(542,7363,5,'Editor'),(542,7364,3,'Casting'),(542,7365,7,'Art Direction'),(542,7366,7,'Set Decoration'),(542,7367,8,'Costume Design'),(1705,2027,6,'Original Music Composer'),(1705,1762,1,'Director of Photography'),(1705,9916,4,'Screenplay'),(1705,12240,4,'Characters'),(1705,13269,3,'Producer'),(1705,18665,5,'Editor'),(1705,18669,2,'Director'),(1705,18672,5,'Editor'),(1705,68683,4,'Screenplay'),(1705,68684,4,'Screenplay'),(4929,1762,1,'Director of Photography'),(4929,8243,7,'Set Decoration'),(4929,16753,7,'Art Direction'),(4929,18635,2,'Director'),(4929,21810,6,'Original Music Composer'),(4929,40156,3,'Producer'),(4929,40156,4,'Screenplay'),(4929,40446,4,'Screenplay'),(4929,40447,1,'Director of Photography'),(4929,51767,5,'Editor'),(4929,78081,3,'Associate Producer'),(9783,26849,3,'Producer'),(9783,33312,4,'Author'),(9783,41621,2,'Director'),(9783,41621,3,'Producer'),(9783,25941,1,'Director of Photography'),(9783,63981,5,'Editor'),(104,710,3,'Casting'),(104,1071,2,'Director'),(104,1071,6,'Original Music Composer'),(104,1071,4,'Screenplay'),(104,1073,3,'Producer'),(104,1075,6,'Original Music Composer'),(104,1076,6,'Original Music Composer'),(104,1077,1,'Director of Photography'),(104,1078,5,'Editor'),(104,1079,7,'Production Design'),(104,1080,8,'Costume Design'),(104,3700,6,'Sound Designer'),(104,3701,6,'Sound Designer'),(104,3709,3,'Executive Producer'),(104,4219,3,'Producer'),(104,4220,9,'Thanks'),(104,4780,9,'Thanks'),(104,11944,3,'Casting Associate'),(104,36175,3,'Producer'),(104,36401,8,'Makeup Artist'),(104,42864,1,'Steadicam Operator'),(104,49828,1,'Steadicam Operator'),(104,48367,8,'Makeup Artist'),(104,57039,1,'Steadicam Operator'),(104,58388,6,'Music Supervisor'),(104,1125552,10,'Animation'),(104,1304901,9,'Second Unit Cinematographer'),(104,1377503,1,'Steadicam Operator'),(104,1406791,2,'Script Supervisor'),(104,1425847,8,'Makeup Artist'),(104,1565977,3,'Production Manager'),(104,1578389,1,'Still Photographer'),(104,1727975,8,'Hair Designer'),(104,1727977,9,'Second Unit Cinematographer'),(104,1727978,1,'Steadicam Operator'),(104,1727979,11,'Gaffer'),(104,1727980,1,'Still Photographer'),(1688,792,1,'Director of Photography'),(1688,9916,4,'Screenplay'),(1688,12240,4,'Characters'),(1688,13269,3,'Producer'),(1688,18664,5,'Editor'),(1688,18665,5,'Editor'),(1688,18669,2,'Director'),(1688,18663,6,'Original Music Composer'),(1999,153,6,'Original Music Composer'),(1999,1777,3,'Producer'),(1999,5010,4,'Screenplay'),(1999,5010,2,'Director'),(1999,5010,3,'Producer'),(1999,17175,1,'Director of Photography'),(1999,17227,8,'Costume Design'),(1999,20537,3,'Producer'),(1999,20538,5,'Editor'),(1999,20539,3,'Casting'),(1999,20540,3,'Casting'),(1999,20541,7,'Set Decoration'),(9709,466,3,'Producer'),(9709,45058,8,'Costume Design'),(9709,47204,5,'Editor'),(9709,58695,3,'Producer'),(9709,6034,3,'Producer'),(9709,58696,3,'Producer'),(9709,58697,3,'Producer'),(9709,58698,4,'Novel'),(9709,58699,4,'Writer'),(9709,64194,2,'Director'),(9709,64194,4,'Screenplay'),(9709,411719,6,'Original Music Composer'),(9709,539946,6,'Original Music Composer'),(9709,960261,1,'Director of Photography'),(9709,1032064,7,'Art Direction'),(9709,1122200,3,'Casting'),(9709,1327790,7,'Production Design'),(7973,32463,3,'Co-Producer'),(7973,53431,4,'Screenplay'),(7973,53431,2,'Director'),(7973,53433,3,'Producer'),(7973,53434,4,'Screenplay'),(7973,53435,4,'Screenplay'),(7973,53436,6,'Original Music Composer'),(7973,53438,5,'Editor'),(7973,53439,6,'Sound Designer'),(7973,53440,8,'Costume Design'),(7973,1171202,3,'Production Manager'),(7973,1171202,3,'Line Producer'),(7973,1290192,3,'Casting'),(7973,1462552,3,'Associate Producer'),(7973,1646997,1,'Director of Photography'),(7973,1646998,7,'Production Design'),(7973,1646999,3,'Unit Production Manager'),(592,154,6,'Sound Designer'),(592,1776,2,'Director'),(592,1776,4,'Screenplay'),(592,1776,3,'Producer'),(592,2871,3,'Producer'),(592,3170,3,'Producer'),(592,2875,7,'Production Design'),(592,2287,1,'Director of Photography'),(592,7067,1,'Director of Photography'),(592,8422,6,'Original Music Composer'),(592,8425,5,'Editor'),(592,8426,3,'Casting'),(592,8427,7,'Set Decoration'),(592,8428,8,'Costume Design'),(592,8429,3,'Production Manager'),(592,8431,10,'Creature Design'),(592,8432,9,'Stunts'),(1651,1650,4,'Screenplay'),(1651,1650,2,'Director'),(1651,1650,3,'Producer'),(1651,3524,3,'Producer'),(1651,3525,1,'Director of Photography'),(1651,3526,5,'Editor'),(1651,3527,7,'Production Design'),(1651,3528,6,'Sound Designer'),(1651,3529,6,'Original Music Composer'),(1651,7748,4,'Novel'),(3083,2662,2,'Director'),(3083,2662,3,'Producer'),(3083,3450,9,'Production Office Assistant'),(3083,4082,6,'Original Music Composer'),(3083,13864,7,'Assistant Art Director'),(3083,17761,1,'Director of Photography'),(3083,30154,5,'Editor'),(3083,30207,4,'Story'),(3083,30208,4,'Screenplay'),(3083,31207,8,'Hairstylist'),(3083,31969,7,'Art Direction'),(3083,32134,9,'Second Unit'),(3083,34173,6,'Music'),(3083,34225,8,'Costume Design'),(3083,34227,6,'Music Director'),(3083,34344,7,'Set Designer'),(3083,34402,6,'Sound Engineer'),(3083,40600,1,'Still Photographer'),(3083,52759,9,'Special Effects'),(3083,70496,9,'Additional Dialogue'),(3083,93960,2,'Assistant Director'),(3083,117774,5,'Editor'),(3083,927617,2,'Assistant Director'),(3083,958941,6,'Music'),(3083,1127069,10,'Visual Effects'),(3083,1338756,8,'Makeup Artist'),(3083,1348081,2,'Assistant Director'),(3083,1353178,8,'Set Dressing Artist'),(3083,1557102,6,'Supervising Sound Editor'),(3083,1635967,8,'Hairstylist'),(9344,5216,3,'Executive Producer'),(9344,5361,5,'Editor'),(9344,5505,3,'Producer'),(9344,6389,1,'Director of Photography'),(9344,51917,2,'Director'),(9344,51918,4,'Screenplay'),(9344,57392,3,'Executive Producer'),(9344,57393,3,'Executive Producer'),(9344,57394,6,'Original Music Composer'),(9344,1529606,6,'Original Music Composer'),(4174,2636,2,'Director'),(4174,2763,7,'Art Direction'),(4174,3248,3,'Producer'),(4174,3356,1,'Director of Photography'),(4174,4341,4,'Screenplay'),(4174,7647,6,'Original Music Composer'),(9464,1781,1,'Director of Photography'),(9464,6390,5,'Editor'),(9464,9546,7,'Art Direction'),(9464,17231,3,'Producer'),(9464,32036,7,'Production Design'),(9464,32037,7,'Set Decoration'),(9464,17854,8,'Costume Design'),(9464,22461,4,'Screenplay'),(9464,22461,2,'Director'),(9464,22461,6,'Music'),(9464,57719,4,'Screenplay'),(9464,1342242,6,'Sound Re-Recording Mixer'),(9464,1360100,6,'Sound Editor'),(507,138,3,'Executive Producer'),(507,5779,7,'Production Design'),(507,8297,2,'Director'),(507,8297,4,'Author'),(507,4697,3,'Producer'),(507,7034,1,'Director of Photography'),(507,7035,5,'Editor'),(4012,2864,1,'Director of Photography'),(4012,2866,5,'Editor'),(4012,5886,7,'Set Decoration'),(4012,30458,4,'Screenplay'),(4012,30458,2,'Director'),(4012,30458,4,'Story'),(4012,34540,9,'Stunt Coordinator'),(4012,34541,9,'Utility Stunts'),(4012,34542,4,'Story'),(4012,35141,3,'Producer'),(4012,35142,3,'Producer'),(4012,35143,6,'Original Music Composer'),(4012,35144,5,'Editor'),(4012,35145,3,'Casting'),(4012,35146,7,'Production Design'),(4012,35147,7,'Art Direction'),(4012,35148,8,'Costume Design'),(4012,35149,8,'Costume Design'),(4012,181164,9,'Post Production Supervisor'),(4012,1192391,1,'Still Photographer'),(3082,3945,7,'Production Design'),(3082,3945,7,'Settings'),(3082,8503,6,'Music Director'),(3082,13848,2,'Director'),(3082,13848,4,'Screenplay'),(3082,13848,3,'Producer'),(3082,13848,5,'Editor'),(3082,13848,6,'Original Music Composer'),(3082,13855,3,'Casting'),(3082,14019,2,'Assistant Director'),(3082,14020,1,'Director of Photography'),(3082,14021,5,'Editor'),(3082,14022,7,'Art Direction'),(3082,14022,7,'Settings'),(3082,14438,2,'Assistant Director'),(3082,14964,9,'Sound Recordist'),(3082,30192,1,'Director of Photography'),(3082,33960,9,'Cinematography'),(3082,148066,3,'Production Manager'),(3082,701959,6,'Music Editor'),(1961,11357,2,'Director'),(1961,11357,3,'Producer'),(1961,20249,4,'Screenplay'),(408,2106,3,'Producer'),(408,2107,6,'Original Music Composer'),(408,5446,2,'Director'),(408,38748,4,'Novel'),(408,5448,4,'Novel'),(408,5449,4,'Screenplay'),(408,5450,4,'Screenplay'),(408,5451,4,'Screenplay'),(408,5452,4,'Screenplay'),(408,5453,4,'Screenplay'),(408,5454,4,'Screenplay'),(408,5455,4,'Screenplay'),(408,5456,4,'Screenplay'),(408,5466,6,'Original Music Composer'),(408,5467,6,'Original Music Composer'),(408,5468,1,'Camera Operator'),(408,5689,10,'Animation'),(408,5690,10,'Animation'),(408,5691,7,'Background Designer'),(408,5692,10,'Animation'),(408,5693,10,'Animation'),(408,11426,9,'Post Production Supervisor'),(408,11426,9,'Sequence Supervisor'),(408,11427,10,'Animation'),(408,11429,9,'Supervising Animator'),(408,11431,2,'Assistant Director'),(408,11434,9,'Sequence Supervisor'),(408,22066,10,'Animation'),(408,29715,10,'Animation'),(408,52218,9,'Sequence Supervisor'),(408,57314,10,'Animation'),(408,57334,7,'Art Direction'),(408,63646,10,'Animation'),(408,67373,9,'Sequence Supervisor'),(408,69003,10,'Animation'),(408,69003,10,'Animation Production Assistant'),(408,69133,3,'Character Technical Supervisor'),(408,94011,5,'Editor'),(408,109453,10,'Animation'),(408,115754,10,'Animation'),(408,137461,6,'Songs'),(408,138169,10,'Animation'),(408,138170,10,'Animation'),(408,138171,10,'Animation'),(408,138173,10,'Animation'),(408,143786,10,'Animation'),(408,143786,10,'Animation Production Assistant'),(408,148154,10,'Animation'),(408,148158,10,'Animation'),(408,148160,10,'Animation Production Assistant'),(408,148774,10,'Animation'),(408,149217,7,'Background Designer'),(408,149218,10,'Animation'),(408,149973,9,'Supervising Animator'),(408,150111,10,'Animation Production Assistant'),(408,150112,10,'Animation Production Assistant'),(408,150115,7,'Art Direction'),(408,150117,7,'Background Designer'),(408,150758,10,'Animation'),(408,150768,10,'Animation'),(408,179923,7,'Background Designer'),(408,222238,10,'Animation'),(408,222310,10,'Animation'),(408,222311,10,'Animation'),(408,222468,7,'Art Direction'),(408,222468,2,'Layout'),(408,222578,10,'Animation'),(408,222578,9,'Supervising Animator'),(408,222582,10,'Animation'),(408,222646,10,'Animation Production Assistant'),(408,222650,10,'Animation'),(408,224698,10,'Animation'),(408,225715,10,'Animation'),(408,225715,3,'Character Technical Supervisor'),(408,225716,7,'Art Direction'),(408,225719,7,'Background Designer'),(408,226599,9,'Supervising Animator'),(408,236477,7,'Art Direction'),(408,557253,10,'Animation'),(408,564040,10,'Animation'),(408,564041,4,'Characters'),(408,564041,2,'Layout'),(408,564042,9,'Sequence Supervisor'),(408,572003,10,'Animation'),(408,573546,2,'Layout'),(408,573547,10,'Animation'),(408,930439,10,'Animation'),(408,1035385,7,'Art Direction'),(408,1035385,2,'Assistant Director'),(408,1060659,7,'Art Direction'),(408,1062383,2,'Assistant Director'),(408,1095778,10,'Animation'),(408,1115031,2,'Assistant Director'),(408,1435755,5,'Editorial Production Assistant'),(408,1475322,7,'Art Direction'),(408,1506814,10,'Animation'),(408,1513870,7,'Art Direction'),(408,1547241,10,'Visual Effects'),(408,1557777,7,'Art Direction'),(408,1557781,7,'Art Direction'),(408,1565048,7,'Background Designer'),(408,1565049,7,'Background Designer'),(408,1566971,8,'Costume Design'),(408,1566972,5,'Assistant Editor'),(408,1566975,10,'Animation'),(2661,3794,4,'Novel'),(2661,4360,6,'Original Music Composer'),(2661,14355,3,'Producer'),(2661,27728,2,'Director'),(2661,27729,1,'Director of Photography'),(2661,27730,7,'Art Direction'),(2661,10931,4,'Screenplay'),(2661,27731,6,'Sound Designer'),(2661,27732,6,'Sound Designer'),(100,960,6,'Original Music Composer'),(100,956,2,'Director'),(100,956,3,'Casting'),(100,956,4,'Screenplay'),(100,957,3,'Producer'),(100,959,6,'Original Music Composer'),(100,966,1,'Director of Photography'),(100,967,7,'Production Design'),(100,968,7,'Production Design'),(100,970,3,'Casting'),(100,971,5,'Editor'),(100,39670,8,'Costume Design'),(309,1559,3,'Producer'),(309,1560,3,'Line Producer'),(309,1570,1,'Director of Photography'),(309,4475,5,'Editor'),(309,4453,4,'Screenplay'),(309,4453,2,'Director'),(309,4454,4,'Screenplay'),(309,4474,6,'Original Music Composer'),(309,4476,3,'Casting'),(309,4477,3,'Casting'),(309,4478,9,'Second Unit'),(309,4479,6,'Sound Designer'),(223,881,1,'Camera Operator'),(223,2636,2,'Director'),(223,3353,4,'Novel'),(223,3354,4,'Adaptation'),(223,3248,3,'Producer'),(223,8619,6,'Original Music Composer'),(223,8619,6,'Orchestrator'),(223,3355,5,'Editor'),(223,3356,1,'Director of Photography'),(223,3357,9,'Special Effects'),(223,3358,7,'Art Direction'),(223,3373,6,'Sound Designer'),(223,3374,6,'Sound Designer'),(223,3386,4,'Screenplay'),(223,3387,7,'Interior Designer'),(223,9102,6,'Orchestrator'),(223,13571,6,'Orchestrator'),(223,14863,9,'Second Unit Cinematographer'),(223,33174,9,'Second Unit Cinematographer'),(223,34427,1,'Camera Operator'),(223,40246,1,'Camera Operator'),(223,48224,6,'Music'),(223,69513,4,'Screenplay'),(223,91234,2,'Assistant Director'),(223,96251,6,'Music'),(223,111462,9,'Second Unit'),(223,117001,9,'Second Unit Cinematographer'),(223,119397,5,'Supervising Film Editor'),(223,134632,9,'Unit Publicist'),(223,231131,4,'Adaptation'),(223,1090879,6,'Music'),(223,1151862,6,'Music'),(223,1200492,8,'Costume Design'),(223,1351504,2,'Assistant Director'),(223,1530568,8,'Makeup Artist'),(223,1532469,6,'Orchestrator'),(223,1539483,9,'Script'),(9725,20953,6,'Music'),(9725,37933,1,'Director of Photography'),(9725,58712,2,'Director'),(9725,58712,3,'Production Manager'),(9725,58713,4,'Screenplay'),(9725,58715,5,'Editor'),(1412,8377,6,'Original Music Composer'),(1412,1884,2,'Director'),(1412,1884,4,'Screenplay'),(1412,1884,5,'Editor'),(1412,3965,3,'Casting'),(1412,6468,3,'Producer'),(1412,10418,1,'Director of Photography'),(1412,32590,7,'Set Decoration'),(1412,32591,7,'Art Direction'),(176,2127,2,'Director'),(176,2127,4,'Story'),(176,2128,4,'Writer'),(176,2128,4,'Story'),(176,2145,3,'Producer'),(176,2146,3,'Producer'),(176,2147,3,'Producer'),(176,2148,6,'Original Music Composer'),(176,2149,1,'Director of Photography'),(176,2150,5,'Editor'),(176,2151,3,'Casting'),(176,8911,10,'Visual Effects Coordinator'),(176,51026,3,'Co-Producer'),(176,51026,2,'First Assistant Director'),(176,51029,3,'Executive Producer'),(176,51030,3,'Executive Producer'),(176,51032,3,'Executive Producer'),(176,62587,8,'Costume Design'),(176,80810,6,'Foley'),(176,141301,7,'Production Design'),(176,1001817,3,'Production Manager'),(176,1001817,3,'Co-Producer'),(176,1136753,6,'Music Editor'),(176,1280435,10,'Special Effects Supervisor'),(176,1295780,8,'Prosthetic Supervisor'),(176,1316296,8,'Makeup Artist'),(176,1317667,8,'Makeup Department Head'),(176,1317668,7,'Art Direction'),(176,1339989,6,'Sound Effects Editor'),(176,1340003,6,'Sound Designer'),(176,1340003,6,'Supervising Sound Editor'),(176,1349969,6,'Boom Operator'),(176,1364422,10,'Digital Compositors'),(176,1387777,10,'Visual Effects Producer'),(176,1389621,9,'Stunt Coordinator'),(176,1394414,1,'First Assistant Camera'),(176,1433954,9,'Video Assist Operator'),(176,1463809,11,'Electrician'),(176,1476346,3,'Associate Producer'),(176,1533037,2,'Script Supervisor'),(176,1548684,5,'Color Timer'),(176,1599631,9,'Post Production Assistant'),(176,1652092,5,'Dialogue Editor'),(176,1652449,9,'Carpenter'),(176,1738163,1,'Grip'),(176,1817616,7,'Art Department Assistant'),(176,1817617,1,'Key Grip'),(176,1817618,1,'Still Photographer'),(176,1817620,8,'Costume Supervisor'),(176,1817621,8,'Hairstylist'),(176,1817622,8,'Key Hair Stylist'),(176,1817626,9,'Craft Service'),(176,1817627,1,'Camera Loader'),(176,1817630,9,'Production Intern'),(176,1817631,7,'Property Master'),(176,1817632,9,'Scenic Artist'),(176,1817634,9,'Set Production Assistant'),(176,1817641,5,'Digital Intermediate'),(176,1817642,11,'Best Boy Electric'),(176,1817644,11,'Gaffer'),(176,1817645,11,'Rigging Grip'),(176,1817646,3,'Casting Associate'),(176,1817649,3,'Production Accountant'),(176,1817652,3,'Production Coordinator'),(176,1817656,6,'Music Supervisor'),(176,1817659,6,'Sound Mixer'),(176,1817664,10,'Visual Effects Supervisor'),(480,4907,7,'Production Design'),(480,5356,3,'Producer'),(480,5359,6,'Original Music Composer'),(480,6117,1,'Director of Photography'),(480,6495,2,'Director'),(480,6495,3,'Producer'),(480,6496,4,'Screenplay'),(480,6504,5,'Editor'),(480,6505,7,'Art Direction'),(480,6506,8,'Costume Design'),(480,6507,3,'Casting'),(480,6508,3,'Casting'),(480,6509,3,'Casting'),(480,6510,3,'Executive Producer'),(480,6511,3,'Executive Producer'),(480,6512,3,'Line Producer'),(480,6513,3,'Line Producer'),(480,6514,3,'Producer'),(480,8311,9,'Choreographer'),(500,138,2,'Director'),(500,138,4,'Writer'),(500,2545,3,'Producer'),(500,37334,3,'Production Manager'),(500,156,5,'Editor'),(500,1037,3,'Co-Producer'),(500,1777,1,'Grip'),(500,5779,7,'Production Design'),(500,8297,9,'Creator'),(500,5507,3,'Casting'),(500,3115,1,'Director of Photography'),(500,6940,6,'Music Supervisor'),(500,11801,7,'Set Decoration'),(500,11802,8,'Costume Design'),(500,12997,3,'Executive Producer'),(500,20921,3,'Executive Producer'),(500,22054,9,'Stunt Coordinator'),(500,46589,8,'Costume Supervisor'),(500,58809,2,'Script Supervisor'),(500,66137,3,'Executive Producer'),(500,74989,1,'Steadicam Operator'),(500,143893,8,'Makeup Artist'),(500,148455,1,'First Assistant Camera'),(500,554887,6,'Supervising Sound Editor'),(500,1280074,5,'First Assistant Editor'),(500,1287670,9,'Special Effects'),(500,1287671,9,'Special Effects'),(500,1287672,9,'Special Effects Coordinator'),(500,1395361,6,'Dolby Consultant'),(500,1397865,3,'Casting Associate'),(500,1399640,9,'Transportation Coordinator'),(500,1403434,7,'Leadman'),(500,1404717,6,'Sound Editor'),(500,1410102,7,'Property Master'),(500,1456721,9,'Stunts'),(500,1515865,2,'First Assistant Director'),(500,1546084,9,'Craft Service'),(500,1547239,8,'Set Costumer'),(500,1548677,9,'Security'),(500,1549654,9,'Post Production Assistant'),(500,1764075,6,'Production Sound Mixer'),(500,1857117,3,'Production Coordinator'),(500,1878553,7,'Location Scout'),(500,1878555,1,'Key Grip'),(500,1878556,8,'Hair Designer'),(500,1878557,8,'Hairstylist'),(500,1878558,9,'Dialect Coach'),(500,1878559,9,'Driver'),(500,1878560,9,'Legal Services'),(500,1878562,9,'Public Relations'),(500,1878563,9,'Set Medic'),(500,1878564,9,'Transportation Captain'),(500,1878565,9,'Unit Publicist'),(500,1878566,5,'Color Timer'),(500,1878567,11,'Best Boy Electric'),(500,1878568,11,'Electrician'),(500,1878569,11,'Gaffer'),(500,1878570,3,'Location Manager'),(500,1878571,3,'Production Accountant'),(500,1878572,6,'Boom Operator'),(500,1878573,6,'Assistant Sound Editor'),(500,1878574,6,'Foley'),(500,1878575,9,'Thanks'),(429,2870,3,'Production Manager'),(429,1259,6,'Original Music Composer'),(429,2361,1,'Director of Photography'),(429,4610,9,'Stunts'),(429,4385,2,'Director'),(429,4385,4,'Screenplay'),(429,4385,4,'Story'),(429,4655,8,'Costume Design'),(429,4655,7,'Production Design'),(429,4659,9,'Special Effects'),(429,4661,9,'Stunts'),(429,4670,5,'Editor'),(429,4985,9,'Special Effects'),(429,5555,9,'Additional Dialogue'),(429,5555,4,'Writer'),(429,5810,4,'Screenplay'),(429,5810,4,'Story'),(429,5811,4,'Screenplay'),(429,5812,4,'Screenplay'),(429,5819,1,'Still Photographer'),(429,5820,3,'Producer'),(429,5821,5,'Editor'),(429,21181,9,'Stunts'),(429,45670,6,'Music Director'),(429,46418,4,'Writer'),(429,53196,1,'First Assistant Camera'),(429,66641,1,'Camera Operator'),(429,97634,3,'Production Manager'),(429,233354,9,'Second Unit'),(429,589876,9,'Stunts'),(429,1035044,7,'Assistant Art Director'),(429,1090587,3,'Production Supervisor'),(429,1458526,8,'Makeup Artist'),(429,1542052,2,'Assistant Director'),(429,1633506,5,'Color Timer'),(7553,52941,2,'Director'),(7553,52942,4,'Author'),(289,2005,1,'Director of Photography'),(289,2110,7,'Set Designer'),(289,2663,3,'Executive Producer'),(289,2665,4,'Screenplay'),(289,2666,4,'Screenplay'),(289,2761,5,'Editor'),(289,3249,6,'Original Music Composer'),(289,4109,2,'Director'),(289,4123,3,'Producer'),(289,4125,7,'Art Direction'),(289,4126,7,'Set Decoration'),(289,4127,8,'Costume Design'),(289,4128,8,'Makeup Artist'),(289,4129,6,'Sound Designer'),(289,4130,9,'Stunts'),(289,4131,4,'Theatre Play'),(289,4132,4,'Theatre Play'),(289,4508,4,'Screenplay'),(289,13571,6,'Music'),(289,14773,9,'Other'),(289,17915,6,'Music Director'),(289,8720,2,'Assistant Director'),(289,89532,9,'Special Effects'),(289,89533,9,'Special Effects'),(289,112007,9,'Other'),(289,119538,6,'Songs'),(289,161961,9,'Stunts'),(289,397654,9,'Unit Publicist'),(289,936701,6,'Songs'),(289,1200492,8,'Costume Design'),(289,1417676,3,'Unit Manager'),(289,1581757,9,'Sound Recordist'),(289,1632529,1,'Camera Operator'),(811,2504,3,'Producer'),(811,8484,5,'Editor'),(811,12112,2,'Director'),(811,12112,3,'Producer'),(811,12113,4,'Screenplay'),(811,12114,4,'Screenplay'),(811,12115,4,'Screenplay'),(811,12116,3,'Producer'),(811,12118,6,'Original Music Composer'),(811,12119,1,'Director of Photography'),(811,12120,7,'Set Decoration'),(1366,1918,5,'Editor'),(1366,4699,2,'Assistant Director'),(1366,18379,3,'Executive In Charge Of Production'),(1366,10064,7,'Art Direction'),(1366,10494,6,'Original Music Composer'),(1366,10546,2,'Assistant Director'),(1366,11472,3,'Producer'),(1366,14843,1,'Director of Photography'),(1366,16483,4,'Screenplay'),(1366,16483,9,'Choreographer'),(1366,16513,2,'Director'),(1366,16514,3,'Producer'),(1366,16515,5,'Editor'),(1366,16516,3,'Casting'),(1366,16517,7,'Production Design'),(1366,16518,7,'Set Decoration'),(1366,16519,8,'Makeup Artist'),(1366,16520,6,'Music Editor'),(1366,16521,6,'Sound Designer'),(1366,16522,9,'Stunt Coordinator'),(1366,16534,5,'Assistant Editor'),(1366,23488,5,'Assistant Editor'),(1366,44827,3,'Executive Producer'),(1366,67433,11,'Electrician'),(1366,551910,9,'Associate Choreographer'),(1366,955581,3,'Production Manager'),(1366,1204798,2,'Script Supervisor'),(1366,1399143,9,'Cinematography'),(1366,1418826,1,'Still Photographer'),(1366,1521767,9,'Visual Effects Design Consultant'),(1366,1657664,1,'Grip'),(5769,14930,6,'Original Music Composer'),(5769,33323,4,'Screenplay'),(5769,33323,4,'Author'),(5769,32765,2,'Director'),(5769,36967,1,'Director of Photography'),(5769,45461,4,'Screenplay'),(5769,45461,4,'Novel'),(103,1045,6,'Original Music Composer'),(103,909,5,'Assistant Editor'),(103,1032,2,'Director'),(103,1035,4,'Writer'),(103,1044,1,'Director of Photography'),(103,1046,3,'Casting'),(103,1047,5,'Editor'),(103,1048,5,'Editor'),(103,1052,6,'Sound Re-Recording Mixer'),(103,1053,6,'Sound Effects Editor'),(103,1054,6,'Sound Effects Editor'),(103,1056,6,'Sound Effects Editor'),(103,1057,6,'Sound Effects Editor'),(103,2551,5,'Supervising Film Editor'),(103,1049,7,'Art Direction'),(103,1050,7,'Set Decoration'),(103,1051,8,'Costume Design'),(103,3659,1,'Camera Operator'),(103,4188,9,'Property Master'),(103,12432,3,'Producer'),(103,12433,3,'Producer'),(103,10823,9,'Thanks'),(103,16539,6,'Supervising Sound Editor'),(103,18855,2,'Assistant Director'),(103,23703,8,'Makeup Artist'),(103,29654,9,'Makeup Effects'),(103,101150,1,'Additional Photography'),(103,1113357,3,'Casting'),(103,1166386,1,'Camera Intern'),(103,1350610,9,'Thanks'),(103,1354109,9,'Transportation Coordinator'),(103,1380037,9,'Scenic Artist'),(103,1437276,1,'Still Photographer'),(103,1458534,3,'Publicist'),(103,1459591,2,'Script Supervisor'),(103,1475782,5,'Assistant Editor'),(103,1492541,3,'Production Manager'),(103,1492541,3,'Associate Producer'),(103,1521767,9,'Visual Effects Design Consultant'),(103,1546904,1,'Grip'),(103,1563480,6,'Sound Re-Recording Mixer'),(103,1565149,2,'Other'),(103,1568510,8,'Hairstylist'),(103,1568511,2,'Assistant Director'),(103,1568512,9,'Special Effects'),(103,1648134,9,'Title Graphics'),(646,9856,4,'Novel'),(646,9861,3,'Producer'),(646,9863,3,'Producer'),(646,9864,6,'Original Music Composer'),(646,9867,1,'Director of Photography'),(646,7756,7,'Art Direction'),(646,9855,2,'Director'),(646,9858,4,'Screenplay'),(646,9859,4,'Screenplay'),(646,9860,4,'Screenplay'),(646,9868,5,'Editor'),(646,9869,7,'Production Design'),(9003,498,8,'Costume Design'),(9003,19155,6,'Original Music Composer'),(9003,19155,6,'Orchestrator'),(9003,9000,3,'Producer'),(9003,10121,3,'Associate Producer'),(9003,10121,2,'First Assistant Director'),(9003,40765,1,'Camera Operator'),(9003,14931,5,'Editor'),(9003,24278,9,'Stunts'),(9003,29447,8,'Makeup Effects Designer'),(9003,29485,2,'Third Assistant Director'),(9003,31211,2,'Director'),(9003,31211,4,'Novel'),(9003,31211,4,'Writer'),(9003,31211,10,'Animation'),(9003,41388,3,'Casting'),(9003,42129,3,'Executive Producer'),(9003,52194,5,'Editor'),(9003,56546,3,'Executive Producer'),(9003,56548,1,'Director of Photography'),(9003,56549,7,'Production Design'),(9003,56550,10,'Visual Effects'),(9003,157662,9,'Unit Publicist'),(9003,544384,2,'Third Assistant Director'),(9003,964699,9,'Stand In'),(9003,1104248,8,'Costume Design'),(9003,1135836,9,'Makeup Effects'),(9003,1188576,7,'Art Direction'),(9003,1360108,10,'Digital Compositors'),(9003,1394011,1,'Camera Operator'),(9003,1395713,6,'Sound Mixer'),(9003,1412032,6,'Sound Effects Editor'),(9003,1427549,9,'Makeup Effects'),(9003,1430501,8,'Wardrobe Supervisor'),(9003,1437959,9,'Makeup Effects'),(9003,1438649,9,'Makeup Effects'),(9003,1551666,6,'Music Programmer'),(9003,1555670,8,'Hairstylist'),(9003,1591553,9,'Makeup Effects'),(9003,1629958,3,'Executive Producer'),(9003,1636421,9,'Makeup Effects'),(9003,1651253,7,'Title Designer'),(9003,1689555,2,'Script Supervisor'),(9003,1727835,11,'Gaffer'),(9003,1739894,9,'Makeup Effects'),(9003,1767888,3,'Production Coordinator'),(9003,1770976,1,'Grip'),(9003,1783304,8,'Makeup Supervisor'),(9003,1859104,9,'Makeup Effects'),(9003,1859106,9,'Makeup Effects'),(9003,1859108,9,'Makeup Effects'),(9003,1859110,7,'Property Master'),(9003,1859136,7,'Painter'),(9003,1859140,6,'Boom Operator'),(9003,1859145,11,'Electrician'),(9003,1859148,5,'First Assistant Editor'),(9003,1859260,9,'Makeup Effects'),(9003,1859263,9,'Makeup Effects'),(9003,1859264,9,'Makeup Effects'),(9003,1859265,9,'Makeup Effects'),(9003,1859266,8,'Makeup Artist'),(9003,1859267,2,'Second Assistant Director'),(9003,1859268,9,'Carpenter'),(9003,1859269,9,'Makeup Effects'),(9003,1859270,10,'Animation'),(9003,1859271,11,'Electrician'),(9003,1859272,3,'Casting Assistant'),(9003,1859274,3,'Location Manager'),(9003,1859275,6,'Conductor'),(9003,1859276,6,'Music Supervisor'),(9003,1859277,9,'Stand In'),(546,3905,3,'Executive Producer'),(546,7426,4,'Screenplay'),(546,7426,2,'Director'),(546,7432,3,'Producer'),(546,7433,3,'Producer'),(546,7434,3,'Producer'),(546,7434,3,'Line Producer'),(546,7435,6,'Original Music Composer'),(546,7436,1,'Director of Photography'),(546,7437,5,'Editor'),(546,7438,3,'Casting'),(546,7439,7,'Production Design'),(546,7440,7,'Set Decoration'),(546,7441,8,'Costume Design'),(546,7442,3,'Production Manager'),(546,7443,3,'Production Manager'),(5722,16119,3,'Associate Producer'),(5722,4590,2,'Director'),(5722,4590,3,'Producer'),(5722,4680,3,'Associate Producer'),(5722,9061,7,'Art Direction'),(5722,9587,7,'Set Decoration'),(5722,9798,7,'Art Direction'),(5722,9799,7,'Set Decoration'),(5722,9800,3,'Unit Production Manager'),(5722,19102,1,'Director of Photography'),(5722,19104,5,'Editor'),(5722,32779,6,'Original Music Composer'),(5722,41694,4,'Screenplay'),(5722,41694,4,'Story'),(5722,45109,5,'Editor'),(5722,91235,2,'Assistant Director'),(5722,91236,9,'Special Effects'),(5722,156869,9,'Stunts'),(5722,161961,9,'Stunt Coordinator'),(5722,195981,9,'Stunts'),(5722,1338832,6,'Sound'),(5722,1679184,3,'Associate Producer'),(5722,1679185,8,'Costume Design'),(5722,1679186,2,'Assistant Director'),(5722,1679187,6,'Sound'),(1781,2545,3,'Producer'),(1781,491,9,'Thanks'),(1781,4135,9,'Thanks'),(1781,10293,9,'Thanks'),(1781,12987,9,'Thanks'),(1781,13227,5,'Editor'),(1781,19012,2,'Director'),(1781,19012,4,'Screenplay'),(1781,19012,3,'Executive Producer'),(1781,19012,1,'Director of Photography'),(1781,19014,3,'Producer'),(1781,19015,3,'Producer'),(1781,19016,6,'Music'),(1781,19018,5,'Editor'),(1781,69246,1,'Director of Photography'),(1781,1076154,2,'Assistant Director'),(1781,1431571,6,'Music'),(1781,1462604,10,'Visual Effects'),(1781,1535216,6,'Music Editor'),(1781,1547761,8,'Costume Design'),(7944,149,1,'Director of Photography'),(7944,313,1,'Director of Photography'),(7944,1032,2,'Director'),(7944,1313,1,'Director of Photography'),(7944,2483,1,'Director of Photography'),(7944,2950,1,'Director of Photography'),(7944,4185,1,'Director of Photography'),(7944,7262,1,'Director of Photography'),(7944,53391,3,'Producer'),(7944,53392,3,'Producer'),(7944,53393,3,'Producer'),(7944,53394,3,'Producer'),(7944,53395,5,'Editor'),(9707,6041,6,'Original Music Composer'),(9707,58245,4,'Screenplay'),(9707,58245,2,'Director'),(9707,58245,3,'Producer'),(9707,58683,3,'Producer'),(9707,58684,3,'Producer'),(9707,58685,3,'Producer'),(9707,58686,1,'Director of Photography'),(9707,58687,5,'Editor'),(9707,58688,5,'Editor'),(9707,127463,4,'Story'),(9707,961497,7,'Production Design'),(8675,34517,4,'Screenplay'),(8675,34517,2,'Director'),(8675,34517,3,'Producer'),(8675,34517,4,'Writer'),(8675,34518,4,'Writer'),(8675,55633,1,'Director of Photography'),(8675,55634,6,'Original Music Composer'),(654,2746,2,'Director'),(654,5259,3,'Production Manager'),(654,5261,1,'Director of Photography'),(654,6594,3,'Producer'),(654,8506,7,'Art Direction'),(654,9850,4,'Screenplay'),(654,9850,4,'Story'),(654,9851,6,'Original Music Composer'),(654,9852,5,'Editor'),(654,9854,6,'Sound Designer'),(654,1125636,9,'Additional Writing'),(2009,20657,2,'Director'),(2009,20657,4,'Screenplay'),(2009,20657,3,'Producer'),(2009,20700,5,'Editor'),(2009,20700,6,'Sound Editor'),(2009,20701,1,'Director of Photography'),(2009,20701,3,'Producer'),(2009,39964,7,'Production Design'),(2009,39965,8,'Costume Design'),(2009,39966,6,'Sound Editor'),(2009,1307603,3,'Casting'),(2009,1434542,9,'Special Effects'),(2009,1540856,8,'Makeup Artist'),(2009,1557060,1,'First Assistant Camera'),(2009,1566952,2,'Script Supervisor'),(2009,1586624,9,'Property Master'),(2009,1586629,1,'First Assistant Camera'),(2009,1586637,9,'Sound Recordist'),(2009,1586639,6,'Boom Operator'),(2009,1586642,5,'Digital Intermediate'),(2009,1586643,8,'Hairstylist'),(2652,859,3,'Casting'),(2652,20459,6,'Original Music Composer'),(2652,20460,6,'Original Music Composer'),(2652,27571,2,'Director'),(2652,27572,4,'Writer'),(2652,27573,3,'Producer'),(2652,27574,3,'Producer'),(2652,27575,3,'Producer'),(2652,27576,1,'Director of Photography'),(2652,27577,5,'Editor'),(2652,53074,3,'Executive Producer'),(2652,60430,7,'Production Design'),(2652,533023,3,'Executive Producer'),(2652,962061,7,'Art Direction'),(2652,1265219,3,'Executive Producer'),(9813,22115,3,'Producer'),(9813,22119,1,'Director of Photography'),(9813,16831,3,'Producer'),(9813,41675,3,'Casting'),(9813,41676,3,'Casting'),(9813,25837,3,'Associate Producer'),(9813,59472,6,'Original Music Composer'),(9813,59467,3,'Producer'),(9813,59470,4,'Author'),(9813,59470,3,'Associate Producer'),(9813,59466,2,'Director'),(9813,59468,4,'Author'),(9813,59468,3,'Associate Producer'),(9813,59469,3,'Producer'),(9813,59473,5,'Editor'),(9813,59475,7,'Production Design'),(9813,59477,8,'Costume Design'),(9813,59476,7,'Set Decoration'),(9813,226344,3,'Producer'),(9813,1531201,8,'Key Hair Stylist'),(9813,1531202,8,'Makeup Department Head'),(9813,1531203,2,'Script Supervisor'),(9813,1531204,6,'Music Supervisor'),(3170,2106,3,'Producer'),(3170,2107,6,'Orchestrator'),(3170,3642,6,'Orchestrator'),(3170,5446,2,'Director'),(3170,5466,6,'Original Music Composer'),(3170,5690,2,'Director'),(3170,5691,2,'Director'),(3170,11427,2,'Director'),(3170,11428,2,'Director'),(3170,22066,9,'Supervising Animator'),(3170,31017,4,'Novel'),(3170,31021,6,'Original Music Composer'),(3170,34403,6,'Conductor'),(3170,42060,9,'Thanks'),(3170,63646,9,'Supervising Animator'),(3170,71212,7,'Art Direction'),(3170,138169,10,'Animation'),(3170,138170,9,'Supervising Animator'),(3170,138172,10,'Animation'),(3170,138174,10,'Animation'),(3170,142526,7,'Art Direction'),(3170,143786,9,'Supervising Animator'),(3170,148162,10,'Animation'),(3170,148166,7,'Art Direction'),(3170,148174,10,'Animation'),(3170,148245,7,'Background Designer'),(3170,148774,10,'Animation'),(3170,149217,7,'Background Designer'),(3170,149272,10,'Animation'),(3170,150003,2,'Director'),(3170,150111,10,'Animation'),(3170,150115,7,'Art Direction'),(3170,150737,7,'Background Designer'),(3170,150766,10,'Animation'),(3170,160942,2,'Director'),(3170,198369,10,'Animation'),(3170,222238,10,'Animation'),(3170,222469,10,'Animation'),(3170,564042,4,'Adaptation'),(3170,572003,10,'Animation'),(3170,573995,10,'Animation'),(3170,1035385,7,'Art Direction'),(3170,1062031,10,'Animation'),(3170,1062386,7,'Art Direction'),(3170,1482031,7,'Art Direction'),(3170,1482112,7,'Background Designer'),(3170,1552494,7,'Background Designer'),(3170,1557777,7,'Art Direction'),(3170,1786473,7,'Background Designer'),(3170,1815086,7,'Background Designer'),(3170,1815088,7,'Background Designer'),(3170,1815091,7,'Background Designer'),(3170,1815092,7,'Background Designer'),(905,9837,1,'Director of Photography'),(905,13899,2,'Director'),(905,13900,4,'Novel'),(905,13901,4,'Screenplay'),(905,13902,3,'Producer'),(905,13903,7,'Art Direction'),(838,1,4,'Screenplay'),(838,1,2,'Director'),(838,12401,3,'Producer'),(838,1776,3,'Producer'),(838,2871,3,'Casting'),(838,598,3,'Casting'),(838,686,4,'Screenplay'),(838,687,4,'Screenplay'),(838,2551,5,'Editor'),(838,8556,5,'Editor'),(838,8428,8,'Costume Design'),(838,12402,1,'Director of Photography'),(838,12403,1,'Director of Photography'),(838,12404,7,'Art Direction'),(838,12405,7,'Set Decoration'),(8416,7202,1,'Director of Photography'),(8416,1155,7,'Production Design'),(8416,3535,6,'Original Music Composer'),(8416,3780,4,'Novel'),(8416,4956,2,'Director'),(8416,4956,4,'Writer'),(8416,18214,8,'Costume Design'),(8416,4667,5,'Editor'),(8416,55759,3,'Executive Producer'),(8416,1120173,1,'Camera Operator'),(8416,1314150,8,'Makeup Artist'),(8416,1554804,8,'Hairstylist'),(8416,1554805,6,'Sound'),(8416,1554806,2,'Script Supervisor'),(9022,56661,2,'Director'),(9022,56662,3,'Producer'),(9022,56664,3,'Producer'),(9022,56665,3,'Producer'),(9022,56666,3,'Executive Producer'),(9022,56668,3,'Producer'),(9022,56669,4,'Screenplay'),(9022,56670,1,'Director of Photography'),(9022,56673,5,'Editor'),(9022,56674,6,'Music'),(9022,1098783,7,'Production Design'),(288,2108,5,'Editor'),(288,4065,2,'Director'),(288,4066,4,'Screenplay'),(288,4066,3,'Executive Producer'),(288,4067,4,'Author'),(288,4081,3,'Producer'),(288,4082,6,'Original Music Composer'),(288,4083,1,'Director of Photography'),(288,4085,7,'Production Design'),(288,4086,7,'Art Direction'),(288,4087,7,'Set Decoration'),(288,4088,6,'Music Editor'),(288,4092,6,'Sound Designer'),(288,4167,5,'Supervising Film Editor'),(288,12146,6,'Sound Engineer'),(288,17909,1,'Grip'),(288,120162,8,'Makeup Artist'),(288,121312,3,'Casting'),(288,933700,5,'Assistant Editor'),(288,940651,9,'Stunts'),(288,1003623,9,'Stunts'),(288,1056670,3,'Production Supervisor'),(288,1244683,9,'Stunts'),(288,1344749,9,'Stunts'),(288,1355442,8,'Costume Design'),(288,1360888,9,'Script'),(288,1369442,11,'Gaffer'),(288,1532469,6,'Orchestrator'),(288,1539028,8,'Costume Design'),(288,1582632,9,'Special Effects'),(288,1585361,8,'Hairstylist'),(288,1598155,3,'Unit Manager'),(288,1598156,2,'Assistant Director'),(2287,23590,2,'Director'),(2287,23594,6,'Music'),(2287,23595,6,'Music'),(2287,23600,3,'Producer'),(2287,23601,3,'Producer'),(2287,23602,1,'Additional Photography'),(2287,23603,1,'Additional Photography'),(2287,23604,5,'Editor'),(7859,5873,3,'Executive Producer'),(7859,53068,2,'Director'),(7859,53068,4,'Author'),(7859,53069,4,'Author'),(7859,53069,3,'Producer'),(7859,53069,5,'Editor'),(7859,53070,3,'Executive Producer'),(7859,53071,3,'Executive Producer'),(7859,53072,3,'Executive Producer'),(7859,53073,3,'Producer'),(7859,53074,3,'Producer'),(7859,53075,3,'Executive Producer'),(7859,53076,3,'Executive Producer'),(7859,53077,3,'Producer'),(7859,53078,3,'Producer'),(7859,53079,3,'Producer'),(7859,53648,3,'Casting'),(7859,53649,1,'Director of Photography'),(3080,1744,6,'Sound Effects Editor'),(3080,11036,7,'Art Direction'),(3080,2429,4,'Theatre Play'),(3080,3257,9,'Sound Recordist'),(3080,4352,8,'Makeup Artist'),(3080,10155,6,'Sound Re-Recording Mixer'),(3080,10796,8,'Makeup Artist'),(3080,30165,2,'Director'),(3080,30167,4,'Theatre Play'),(3080,30170,4,'Screenplay'),(3080,30174,3,'Producer'),(3080,30176,6,'Music'),(3080,30177,1,'Director of Photography'),(3080,30179,5,'Editor'),(3080,121315,9,'Sound Recordist'),(3080,958731,8,'Costume Design'),(3080,1026401,6,'Sound Editor'),(3080,1082918,4,'Screenplay'),(3080,1342519,9,'Sound Recordist'),(3080,1342735,6,'Boom Operator'),(2667,26849,2,'Director'),(2667,26849,5,'Editor'),(2667,26849,4,'Writer'),(2667,26850,2,'Director'),(2667,26850,5,'Editor'),(2667,26850,4,'Writer'),(2667,27756,3,'Producer'),(2667,27757,3,'Producer'),(2667,27758,6,'Original Music Composer'),(2667,27758,6,'Musician'),(2667,27759,1,'Director of Photography'),(2667,110697,1,'Additional Photography'),(2667,66535,9,'Scenic Artist'),(2667,76541,7,'Production Design'),(2667,135568,9,'Scenic Artist'),(2667,1099451,3,'Co-Producer'),(2667,1332226,7,'Art Direction'),(2667,1332228,3,'Casting'),(2667,1392239,5,'Dialogue Editor'),(2667,1402110,6,'Sound Effects Editor'),(2667,1404801,6,'Sound mixer'),(2667,1404802,1,'Still Photographer'),(2667,1404803,1,'Still Photographer'),(2667,1446678,9,'Sound Recordist'),(2667,1560124,6,'Foley'),(2667,1583670,3,'Executive Producer'),(2667,1583671,3,'Executive Producer'),(2667,1583676,6,'Sound'),(9459,1032,5,'Editor'),(9459,1032,2,'Assistant Director'),(9459,3661,5,'Editor'),(9459,3661,2,'Assistant Director'),(9459,9213,1,'Camera Operator'),(9459,21819,3,'Production Manager'),(9459,48807,5,'Editor'),(9459,57885,2,'Director'),(9459,57885,4,'Screenplay'),(9459,57885,1,'Camera Operator'),(9459,57885,5,'Editor'),(9459,57886,3,'Executive Producer'),(9459,57887,1,'Director of Photography'),(9459,57888,1,'Camera Operator'),(9459,73496,1,'Camera Operator'),(9459,76158,5,'Editor'),(9459,961123,5,'Editor'),(9459,1481635,3,'Production Manager'),(9459,1563400,1,'Director of Photography'),(9459,1563401,1,'Camera Operator'),(704,7753,1,'Director of Photography'),(704,10221,8,'Costume Design'),(704,7754,5,'Editor'),(704,10586,2,'Director'),(704,10587,4,'Screenplay'),(704,10588,3,'Producer'),(704,10589,3,'Producer'),(704,10590,3,'Executive Producer'),(704,10591,7,'Art Direction'),(83,640,2,'Director'),(83,640,1,'Director of Photography'),(83,640,5,'Editor'),(83,640,4,'Author'),(83,642,1,'Director of Photography'),(83,642,3,'Producer'),(83,5912,6,'Original Music Composer'),(83,13177,6,'Sound Re-Recording Mixer'),(83,13179,6,'Sound Re-Recording Mixer'),(83,19659,9,'Additional Music'),(83,548435,6,'Foley'),(83,548438,6,'Supervising Sound Editor'),(83,1049456,6,'Sound Effects Editor'),(83,1058068,5,'Negative Cutter'),(83,1368866,6,'Sound Designer'),(83,1390353,6,'First Assistant Sound Editor'),(83,1401305,6,'Music Editor'),(83,1433720,6,'Sound Effects Editor'),(83,1433720,6,'Sound Effects Designer'),(83,1467442,3,'Executive Producer'),(83,1559636,6,'Sound Re-Recording Mixer'),(83,1567250,5,'Digital Intermediate'),(83,1567251,5,'Digital Intermediate'),(83,1630619,9,'Post Production Assistant'),(83,1776983,6,'Foley Editor'),(2056,4023,3,'Casting'),(2056,3192,3,'Casting'),(2056,5328,3,'Casting'),(2056,21267,5,'Editor'),(2056,17867,2,'Director'),(2056,17867,4,'Author'),(2056,21266,6,'Original Music Composer'),(2056,20268,1,'Director of Photography'),(2056,21116,3,'Producer'),(2056,21117,3,'Producer'),(2056,21268,7,'Production Design'),(2056,1398883,8,'Costume Design'),(2056,1525252,3,'Producer'),(2056,1525253,7,'Art Direction'),(2056,1525254,7,'Set Decoration'),(2056,1525255,2,'Script Supervisor'),(7301,884,2,'Director'),(7301,17044,3,'Producer'),(7301,52413,4,'Screenplay'),(7301,53276,3,'Producer'),(7301,53277,3,'Producer'),(7301,53278,5,'Editor'),(346,5026,4,'Screenplay'),(346,5026,2,'Director'),(346,5026,5,'Editor'),(346,7449,4,'Screenplay'),(346,20827,4,'Screenplay'),(346,20832,3,'Producer'),(346,7460,6,'Original Music Composer'),(346,18609,6,'Music'),(346,33132,7,'Assistant Art Director'),(346,34380,1,'Director of Photography'),(346,70129,1,'First Assistant Camera'),(346,143707,2,'Script Supervisor'),(346,564864,2,'Assistant Director'),(346,585115,2,'Assistant Director'),(346,1069167,2,'Assistant Director'),(346,1513913,7,'Production Design'),(346,1530320,9,'Production Office Assistant'),(346,1530334,11,'Lighting Technician'),(346,1534577,9,'Sound Recordist'),(346,1640545,3,'Production Supervisor'),(346,1640546,6,'Sound Effects Editor'),(4107,25598,4,'Screenplay'),(4107,25598,2,'Director'),(4107,25598,4,'Author'),(3062,4123,3,'Producer'),(3062,8502,3,'Producer'),(3062,8714,1,'Director of Photography'),(3062,21305,2,'Director'),(3062,29993,4,'Novel'),(3062,29994,4,'Screenplay'),(3062,29995,4,'Screenplay'),(3062,29996,4,'Screenplay'),(3062,29997,5,'Editor'),(3062,29998,5,'Editor'),(464,5987,3,'Producer'),(464,6284,2,'Director'),(464,6284,4,'Screenplay'),(464,6320,4,'Screenplay'),(464,6322,4,'Screenplay'),(464,6323,4,'Screenplay'),(464,6325,4,'Screenplay'),(464,6330,3,'Producer'),(464,6331,3,'Producer'),(464,6332,3,'Producer'),(464,6333,3,'Producer'),(464,6334,3,'Producer'),(464,6335,6,'Original Music Composer'),(464,6336,1,'Director of Photography'),(464,6337,5,'Editor'),(464,6338,3,'Casting'),(464,6339,8,'Costume Design'),(8193,53925,2,'Director'),(8193,53925,4,'Screenplay'),(8193,53941,3,'Producer'),(8193,53942,3,'Producer'),(8193,1459908,3,'Producer'),(8193,1819060,9,'Cinematography'),(1282,4319,4,'Screenplay'),(1282,4319,2,'Director'),(1282,4338,1,'Director of Photography'),(1282,4339,5,'Editor'),(1282,20071,1,'Director of Photography'),(1282,20072,4,'Screenplay'),(1282,20072,7,'Production Design'),(762,280,2,'Director'),(762,280,4,'Writer'),(762,383,4,'Writer'),(762,10707,2,'Director'),(762,10707,4,'Writer'),(762,10722,4,'Writer'),(762,8930,4,'Writer'),(762,10713,4,'Writer'),(762,10715,3,'Executive Producer'),(762,10718,3,'Production Manager'),(762,8938,8,'Costume Design'),(762,11289,3,'Producer'),(762,11292,1,'Director of Photography'),(762,11293,5,'Editor'),(762,11294,7,'Production Design'),(762,154404,3,'Producer'),(1435,5216,3,'Executive Producer'),(1435,17114,3,'Executive Producer'),(1435,17108,2,'Director'),(1435,17108,4,'Screenplay'),(1435,17108,3,'Producer'),(1435,17108,1,'Director of Photography'),(1435,17108,6,'Sound Designer'),(1435,17108,5,'Editor'),(1435,17113,3,'Producer'),(9029,2952,3,'Casting'),(9029,2507,1,'Director of Photography'),(9029,10570,3,'Executive Producer'),(9029,10954,3,'Producer'),(9029,17825,3,'Producer'),(9029,20516,3,'Producer'),(9029,23486,6,'Original Music Composer'),(9029,57176,5,'Editor'),(9029,56717,2,'Director'),(9029,56718,4,'Screenplay'),(9029,1432053,9,'Unit Publicist'),(3059,1496,4,'Screenplay'),(3059,11436,4,'Writer'),(3059,8814,4,'Writer'),(3059,8814,3,'Production Supervisor'),(3059,8817,6,'Music'),(3059,8819,1,'Director of Photography'),(3059,8821,5,'Editor'),(3059,8822,5,'Editor'),(3059,8826,8,'Costume Design'),(3059,100036,3,'Producer'),(3059,100036,4,'Scenario Writer'),(3059,100036,2,'Director'),(3059,100036,6,'Music'),(3059,100036,5,'Editor'),(3059,100036,7,'Production Design'),(3059,100036,8,'Costume Design'),(3059,100036,8,'Makeup Artist'),(3059,93905,1,'Grip'),(3059,117644,9,'Cinematography'),(3059,128167,9,'Choreographer'),(3059,137261,9,'Stunts'),(3059,543649,3,'Publicist'),(3059,1313060,9,'Property Master'),(3059,1349415,2,'Assistant Director'),(3059,1371320,9,'Carpenter'),(3059,1374201,8,'Makeup Artist'),(3059,1556107,7,'Set Designer'),(3059,1572039,9,'Title Graphics'),(3059,1633998,9,'Title Graphics'),(764,7623,4,'Screenplay'),(764,7623,2,'Director'),(764,7623,3,'Executive Producer'),(764,11357,3,'Executive Producer'),(764,11359,3,'Producer'),(764,11359,3,'Executive Producer'),(764,11467,3,'Producer'),(764,11468,6,'Original Music Composer'),(764,11469,1,'Director of Photography'),(764,11470,5,'Editor'),(764,11471,8,'Makeup Artist'),(389,4958,3,'Producer'),(389,39996,2,'Director'),(389,5246,4,'Screenplay'),(389,5246,3,'Producer'),(389,5246,4,'Story'),(389,5259,3,'Associate Producer'),(389,5260,6,'Original Music Composer'),(389,5261,1,'Director of Photography'),(389,5262,5,'Editor'),(389,5263,7,'Art Direction'),(389,5264,8,'Makeup Artist'),(389,5265,6,'Sound Designer'),(389,30994,1,'Camera Operator'),(389,81531,1,'Still Photographer'),(389,1043428,6,'Sound Re-Recording Mixer'),(389,1076666,2,'Script Supervisor'),(389,1437471,2,'Assistant Director'),(3078,2662,2,'Director'),(3078,2662,3,'Producer'),(3078,14283,6,'Music Director'),(3078,17761,1,'Director of Photography'),(3078,19019,4,'Screenplay'),(3078,29341,3,'Executive Producer'),(3078,29341,3,'Producer'),(3078,29345,7,'Art Direction'),(3078,29276,6,'Original Music Composer'),(3078,30154,5,'Editor'),(3078,1123346,4,'Author'),(1550,1227,3,'Producer'),(1550,3290,4,'Screenplay'),(1550,3290,2,'Director'),(1550,10574,5,'Editor'),(1550,17046,3,'Producer'),(1550,17491,3,'Producer'),(1550,17863,6,'Music Supervisor'),(1550,275201,7,'Production Design'),(1550,958706,1,'Director of Photography'),(1550,1478995,6,'Original Music Composer'),(1550,1531970,8,'Costume Design'),(8942,15426,3,'Casting'),(8942,16863,3,'Executive Producer'),(8942,17246,3,'Executive Producer'),(8942,17635,3,'Casting'),(8942,20487,3,'Producer'),(8942,31268,3,'Producer'),(8942,47099,3,'Producer'),(8942,56383,2,'Director'),(8942,56383,4,'Screenplay'),(8942,56383,5,'Editor'),(8942,77080,6,'Original Music Composer'),(8942,90280,7,'Production Design'),(8942,225557,4,'Screenplay'),(8942,225557,4,'Story'),(8942,991786,3,'Executive Producer'),(8942,1020052,3,'Executive Producer'),(8942,1075441,1,'Director of Photography'),(2786,3334,4,'Novel'),(2786,3529,6,'Original Music Composer'),(2786,3540,1,'Director of Photography'),(2786,3776,4,'Screenplay'),(2786,3776,2,'Director'),(2786,3779,3,'Producer'),(2786,9358,7,'Production Design'),(2786,18221,6,'Original Music Composer'),(2786,28097,5,'Editor'),(2786,1539838,3,'Production Manager'),(2786,1539839,1,'Still Photographer'),(2786,1539840,1,'Camera Operator'),(2255,19303,2,'Director'),(2255,19303,4,'Screenplay'),(2255,19303,5,'Editor'),(2255,20503,3,'Producer'),(2255,20503,5,'Editor'),(2255,21299,6,'Original Music Composer'),(2255,21405,1,'Director of Photography'),(2255,21133,8,'Costume Design'),(2255,21208,3,'Casting'),(431,5877,4,'Screenplay'),(431,5877,2,'Director'),(431,5880,4,'Screenplay'),(431,5883,4,'Screenplay'),(431,5901,3,'Producer'),(431,5904,3,'Producer'),(431,5907,6,'Original Music Composer'),(431,5908,1,'Director of Photography'),(431,5908,1,'Camera Operator'),(431,5909,5,'Editor'),(431,5910,7,'Production Design'),(431,5949,7,'Art Direction'),(431,7800,3,'Casting'),(431,9555,6,'Sound Effects Editor'),(431,15229,9,'Stunt Coordinator'),(431,62120,7,'Assistant Art Director'),(431,107630,9,'Post Production Supervisor'),(431,1208480,8,'Costume Design'),(431,1219158,1,'Camera Operator'),(431,1219158,9,'Second Unit Cinematographer'),(431,1338134,6,'Foley'),(431,1340332,9,'Property Master'),(431,1340333,5,'Dialogue Editor'),(431,1340334,6,'Foley'),(431,1340335,6,'Foley'),(431,1340336,6,'Sound Re-Recording Mixer'),(431,1340337,6,'Sound Re-Recording Mixer'),(431,1340338,6,'Boom Operator'),(431,1340339,5,'Color Timer'),(431,1340343,2,'Script Supervisor'),(431,1340345,6,'Sound Effects Editor'),(431,1340346,6,'Sound Effects Editor'),(431,1404850,1,'Still Photographer'),(431,1415114,8,'Makeup Artist'),(431,1415114,8,'Hairstylist'),(431,1415116,3,'Production Manager'),(431,1415118,9,'Scenic Artist'),(431,1415119,9,'Scenic Artist'),(431,1415120,9,'Scenic Artist'),(431,1415122,9,'Scenic Artist'),(431,1415123,7,'Assistant Art Director'),(431,1415124,7,'Assistant Art Director'),(431,1415125,9,'Sound Recordist'),(431,1415129,1,'Still Photographer'),(431,1415130,11,'Gaffer'),(431,1415131,5,'First Assistant Editor'),(431,1415132,9,'Unit Publicist'),(431,1415133,2,'Script Supervisor'),(1424,7441,8,'Costume Design'),(1424,9004,7,'Production Design'),(1424,17042,2,'Director'),(1424,17042,5,'Editor'),(1424,17043,4,'Screenplay'),(1424,17044,3,'Producer'),(1424,17045,3,'Producer'),(1424,17046,3,'Producer'),(1424,17047,6,'Original Music Composer'),(1424,17048,1,'Director of Photography'),(1424,17049,7,'Set Decoration'),(1424,17050,9,'Property Master'),(3060,1497,3,'Producer'),(3060,14478,1,'Director of Photography'),(3060,29965,4,'Theatre Play'),(3060,29962,2,'Director'),(3060,29964,4,'Screenplay'),(3060,29967,6,'Music'),(3060,29968,6,'Music'),(3060,29969,6,'Music'),(3060,29970,1,'Director of Photography'),(3060,29971,5,'Editor'),(9659,20629,2,'Director'),(9659,20629,4,'Screenplay'),(9659,20629,4,'Story'),(9659,28240,1,'Director of Photography'),(9659,58140,3,'Associate Producer'),(9659,58407,4,'Screenplay'),(9659,58438,6,'Original Music Composer'),(9659,58439,5,'Editor'),(9659,58440,5,'Editor'),(9659,75441,9,'Special Effects'),(9659,129268,9,'Stunt Coordinator'),(9659,150093,8,'Hairstylist'),(9659,951895,4,'Story'),(9659,951895,3,'Producer'),(9659,957786,7,'Art Direction'),(9659,1465596,8,'Makeup Artist'),(9659,1466395,8,'Costume Design'),(391,1259,6,'Original Music Composer'),(391,4385,2,'Director'),(391,4385,4,'Screenplay'),(391,4655,7,'Art Direction'),(391,4655,7,'Set Decoration'),(391,16319,4,'Screenplay'),(391,16320,4,'Screenplay'),(391,16320,3,'Production Manager'),(391,16321,3,'Producer'),(391,16322,3,'Producer'),(391,16324,1,'Director of Photography'),(391,16325,5,'Editor'),(391,16326,5,'Editor'),(391,14268,1,'Director of Photography'),(391,57639,2,'Assistant Director'),(391,100053,2,'Assistant Director'),(391,101573,3,'Production Manager'),(391,928857,2,'Assistant Director'),(391,989129,8,'Makeup Artist'),(391,1179866,7,'Set Decoration'),(391,1435917,3,'Production Manager'),(391,1537171,7,'Set Decoration'),(391,1537172,8,'Hairstylist'),(391,1537173,8,'Makeup Artist'),(391,1537174,8,'Makeup Artist'),(391,1537175,6,'Sound'),(391,1537177,3,'Production Manager'),(391,1537178,2,'Assistant Director'),(391,1650836,8,'Makeup Artist'),(5759,45405,2,'Director'),(5759,45405,4,'Writer'),(5759,45405,3,'Producer'),(5759,45405,9,'Cinematography'),(5759,45407,2,'Director'),(5759,45407,4,'Writer'),(5759,45407,3,'Producer'),(5759,800252,5,'Editor'),(5759,939590,3,'Producer'),(5759,1741927,3,'Co-Producer'),(5759,1741936,6,'Music'),(5822,23036,6,'Music'),(5822,45814,3,'Producer'),(5822,45815,1,'Director of Photography'),(5822,135650,2,'Director'),(5822,135650,3,'Producer'),(5822,135650,4,'Screenplay'),(5822,135650,6,'Music'),(5822,135650,5,'Editor'),(5723,45117,4,'Screenplay'),(5723,45117,2,'Director'),(5723,45118,3,'Producer'),(5723,45119,3,'Executive Producer'),(5723,45120,1,'Director of Photography'),(5723,45121,7,'Production Design'),(5723,45122,5,'Editor'),(5723,45123,8,'Costume Design'),(5723,45124,6,'Original Music Composer'),(5723,45125,3,'Casting'),(5723,45126,6,'Sound mixer'),(5723,45127,6,'Original Music Composer'),(1779,17087,2,'Director'),(1779,17087,3,'Producer'),(1779,17087,4,'Author'),(985,4434,1,'Director of Photography'),(985,5602,4,'Screenplay'),(985,5602,2,'Director'),(985,5602,5,'Editor'),(985,5602,7,'Production Design'),(985,5602,3,'Producer'),(985,5602,6,'Original Music Composer'),(985,5602,7,'Art Direction'),(985,5602,9,'Special Effects'),(985,5602,6,'Sound Director'),(985,14793,1,'Director of Photography'),(9821,1307,3,'Producer'),(9821,59839,3,'Producer'),(9821,7020,6,'Music'),(9821,9154,5,'Editor'),(9821,36804,2,'Director'),(9821,59637,4,'Screenplay'),(473,4867,1,'Director of Photography'),(473,6377,6,'Original Music Composer'),(473,6431,4,'Screenplay'),(473,6431,2,'Director'),(473,6432,4,'Screenplay'),(473,6433,4,'Screenplay'),(473,6433,3,'Producer'),(473,6434,5,'Editor'),(473,6435,3,'Casting'),(473,6436,7,'Production Design'),(9372,57492,2,'Director'),(9372,57492,4,'Author'),(9372,57492,3,'Producer'),(9372,57509,3,'Executive Producer'),(9372,57510,3,'Executive Producer'),(9372,57511,1,'Director of Photography'),(9372,57512,5,'Editor'),(9372,57513,5,'Editor'),(2292,19303,2,'Director'),(2292,19303,4,'Screenplay'),(2292,19303,3,'Producer'),(2292,19303,5,'Editor'),(2292,20503,3,'Producer'),(2292,21405,1,'Director of Photography'),(2292,1560995,6,'Music Supervisor'),(692,10367,2,'Director'),(692,10367,4,'Screenplay'),(692,10367,3,'Producer'),(692,10367,1,'Director of Photography'),(692,10367,5,'Editor'),(692,10368,7,'Production Design'),(692,10368,7,'Set Decoration'),(9367,2294,2,'Director'),(9367,2294,1,'Director of Photography'),(9367,2294,5,'Editor'),(9367,2294,3,'Producer'),(9367,2294,4,'Author'),(9367,20498,3,'Producer'),(9367,57473,6,'Music'),(9367,57474,6,'Music'),(9367,57475,6,'Music'),(9367,57478,6,'Music'),(9367,57479,6,'Music'),(19995,1721,5,'Editor'),(19995,496,7,'Production Design'),(19995,900,6,'Sound Designer'),(19995,900,6,'Supervising Sound Editor'),(19995,1262,3,'Casting'),(19995,1729,6,'Original Music Composer'),(19995,2710,2,'Director'),(19995,2710,4,'Writer'),(19995,2710,5,'Editor'),(19995,2710,3,'Producer'),(19995,2710,4,'Screenplay'),(19995,7236,7,'Art Direction'),(19995,6690,10,'Visual Effects Producer'),(19995,6347,3,'Casting'),(19995,6878,7,'Supervising Art Director'),(19995,6883,6,'Music Editor'),(19995,8159,6,'Sound Effects Editor'),(19995,8160,6,'Foley'),(19995,8163,6,'Foley'),(19995,8527,8,'Costume Design'),(19995,8529,3,'Producer'),(19995,9618,7,'Art Direction'),(19995,12653,7,'Set Decoration'),(19995,12653,7,'Supervising Art Director'),(19995,14350,7,'Set Designer'),(19995,20294,3,'Executive Producer'),(19995,17675,8,'Costume Design'),(19995,18265,1,'Director of Photography'),(19995,42281,7,'Set Designer'),(19995,42288,9,'Stunts'),(19995,29067,8,'Makeup Artist'),(19995,29067,8,'Hairstylist'),(19995,33302,1,'Camera Operator'),(19995,33303,7,'Art Direction'),(19995,113145,10,'Visual Effects Supervisor'),(19995,58188,9,'Visual Effects Editor'),(19995,58871,5,'Editor'),(19995,92359,7,'Set Designer'),(19995,72201,1,'Director of Photography'),(19995,89714,9,'Stunts'),(19995,93214,10,'Visual Effects Supervisor'),(19995,122607,9,'Dialect Coach'),(19995,132585,7,'Art Direction'),(19995,132596,7,'Art Direction'),(19995,132604,7,'Art Direction'),(19995,236696,9,'Motion Capture Artist'),(19995,956198,9,'Stunt Coordinator'),(19995,957874,10,'Visual Effects Supervisor'),(19995,957889,7,'Supervising Art Director'),(19995,959555,7,'Supervising Art Director'),(19995,1016177,3,'Casting'),(19995,1032536,7,'Production Design'),(19995,1071680,8,'Costume Design'),(19995,1177364,1,'Steadicam Operator'),(19995,1202850,8,'Makeup Department Head'),(19995,1204668,10,'Visual Effects Producer'),(19995,1206410,10,'Visual Effects Supervisor'),(19995,1234266,9,'Post Production Supervisor'),(19995,1271932,10,'Visual Effects Supervisor'),(19995,1310064,8,'Makeup Artist'),(19995,1319844,8,'Costume Supervisor'),(19995,1327028,10,'Visual Effects Supervisor'),(19995,1330561,7,'Art Direction'),(19995,1330567,8,'Costume Supervisor'),(19995,1330570,8,'Costume Supervisor'),(19995,1330574,8,'Costume Supervisor'),(19995,1336191,7,'Set Designer'),(19995,1339441,7,'Set Designer'),(19995,1352422,5,'Dialogue Editor'),(19995,1352962,7,'Set Designer'),(19995,1357070,9,'Transportation Coordinator'),(19995,1357071,9,'Transportation Coordinator'),(19995,1360103,6,'Supervising Sound Editor'),(19995,1376887,7,'Set Designer'),(19995,1376888,7,'Set Designer'),(19995,1376889,7,'Set Designer'),(19995,1376890,7,'Set Designer'),(19995,1376891,7,'Set Designer'),(19995,1376892,7,'Art Department Coordinator'),(19995,1376893,7,'Set Designer'),(19995,1376895,7,'Assistant Art Director'),(19995,1376897,7,'Construction Coordinator'),(19995,1376898,7,'Assistant Art Director'),(19995,1376899,5,'Dialogue Editor'),(19995,1376901,5,'Dialogue Editor'),(19995,1376902,6,'Supervising Sound Editor'),(19995,1376903,6,'Sound Re-Recording Mixer'),(19995,1376909,9,'Choreographer'),(19995,1391692,10,'Visual Effects Producer'),(19995,1391695,10,'Visual Effects Supervisor'),(19995,1394070,10,'Visual Effects Supervisor'),(19995,1394129,6,'Sound Effects Editor'),(19995,1394286,9,'CG Supervisor'),(19995,1394750,9,'Visual Effects Editor'),(19995,1394755,10,'Visual Effects Supervisor'),(19995,1394953,5,'Digital Intermediate'),(19995,1395269,10,'Visual Effects Supervisor'),(19995,1398970,1,'Steadicam Operator'),(19995,1400906,6,'Sound Effects Editor'),(19995,1401784,3,'Production Supervisor'),(19995,1401785,3,'Production Manager'),(19995,1401786,6,'Sound Effects Editor'),(19995,1401787,9,'Special Effects Coordinator'),(19995,1401788,9,'Special Effects Coordinator'),(19995,1401789,10,'Visual Effects Producer'),(19995,1401790,10,'Visual Effects Producer'),(19995,1401791,9,'Visual Effects Editor'),(19995,1401792,9,'Visual Effects Editor'),(19995,1401793,10,'Visual Effects Producer'),(19995,1401794,9,'Visual Effects Editor'),(19995,1401795,10,'Visual Effects Supervisor'),(19995,1401796,10,'Visual Effects Supervisor'),(19995,1401799,10,'Visual Effects Supervisor'),(19995,1401800,10,'Visual Effects Supervisor'),(19995,1401801,10,'Visual Effects Supervisor'),(19995,1401803,10,'Visual Effects Supervisor'),(19995,1401804,9,'Stunt Coordinator'),(19995,1401805,11,'Best Boy Electric'),(19995,1401806,1,'Still Photographer'),(19995,1401807,11,'Lighting Technician'),(19995,1401808,10,'Animation Director'),(19995,1401809,10,'Animation Director'),(19995,1401810,10,'Animation Director'),(19995,1401812,8,'Set Costumer'),(19995,1401814,8,'Set Costumer'),(19995,1401815,5,'Digital Intermediate'),(19995,1401816,3,'Publicist'),(19995,1418381,9,'CG Supervisor'),(19995,1426854,9,'CG Supervisor'),(19995,1438901,7,'Conceptual Design'),(19995,1447362,9,'Visual Effects Art Director'),(19995,1447503,10,'Modeling'),(19995,1447524,7,'Art Department Manager'),(19995,1452643,8,'Hairstylist'),(19995,1453938,11,'Lighting Artist'),(19995,1457305,8,'Makeup Artist'),(19995,1466035,9,'CG Supervisor'),(19995,1483220,9,'CG Supervisor'),(19995,1483221,9,'CG Supervisor'),(19995,1483222,9,'CG Supervisor'),(19995,1483223,9,'CG Supervisor'),(19995,1483224,9,'CG Supervisor'),(19995,1483225,9,'CG Supervisor'),(19995,1483226,9,'CG Supervisor'),(19995,1483227,9,'CG Supervisor'),(19995,1483228,9,'CG Supervisor'),(19995,1483229,9,'CG Supervisor'),(19995,1483230,9,'CG Supervisor'),(19995,1483231,9,'CG Supervisor'),(19995,1483232,9,'CG Supervisor'),(19995,1483233,9,'CG Supervisor'),(19995,1483234,9,'CG Supervisor'),(19995,1621932,9,'Stunts'),(10764,455,4,'Screenplay'),(10764,4248,7,'Production Design'),(10764,9856,4,'Characters'),(10764,4061,8,'Costume Design'),(10764,6489,6,'Music'),(10764,9646,5,'Editor'),(10764,10496,3,'Casting'),(10764,10666,3,'Producer'),(10764,10706,3,'Executive Producer'),(10764,12995,2,'Director'),(10764,13000,1,'Director of Photography'),(10764,13005,5,'Editor'),(10764,10783,4,'Screenplay'),(10764,10782,4,'Screenplay'),(10764,10876,3,'Executive Producer'),(10764,81517,3,'Associate Producer'),(10764,69678,3,'Producer'),(24428,37,6,'Original Music Composer'),(24428,900,6,'Sound Designer'),(24428,900,6,'Sound Re-Recording Mixer'),(24428,3285,1,'Director of Photography'),(24428,7232,3,'Casting'),(24428,6055,7,'Set Decoration'),(24428,6037,10,'Visual Effects Supervisor'),(24428,6038,10,'Visual Effects Supervisor'),(24428,7624,4,'Comic Book'),(24428,7624,3,'Executive Producer'),(24428,7626,3,'Executive Producer'),(24428,10850,3,'Producer'),(24428,8285,7,'Supervising Art Director'),(24428,9546,7,'Production Design'),(24428,12619,8,'Wigmaker'),(24428,12891,2,'Director'),(24428,12891,4,'Screenplay'),(24428,12891,4,'Story'),(24428,13009,8,'Costume Design'),(24428,15893,6,'Sound Effects Editor'),(24428,14771,9,'Stunt Coordinator'),(24428,10832,1,'Additional Photography'),(24428,35176,5,'Editor'),(24428,11011,4,'Story'),(24428,18866,4,'Characters'),(24428,15277,3,'Executive Producer'),(24428,20540,3,'Casting'),(24428,20786,7,'Art Direction'),(24428,24192,6,'Music Supervisor'),(24428,41018,3,'Executive Producer'),(24428,41890,7,'Set Designer'),(24428,113123,10,'Visual Effects Producer'),(24428,57027,3,'Executive Producer'),(24428,113672,3,'Executive Producer'),(24428,113674,3,'Executive Producer'),(24428,113675,3,'Executive Producer'),(24428,95844,9,'Transportation Coordinator'),(24428,1018965,5,'Editor'),(24428,1068055,7,'Set Designer'),(24428,1172441,7,'Art Direction'),(24428,1319134,8,'Costume Supervisor'),(24428,1322017,7,'Art Direction'),(24428,1327030,6,'Sound Re-Recording Mixer'),(24428,1329417,8,'Makeup Department Head'),(24428,1330567,8,'Set Costumer'),(24428,1330582,7,'Art Direction'),(24428,1330583,7,'Art Direction'),(24428,1330584,8,'Costume Supervisor'),(24428,1330585,8,'Costume Supervisor'),(24428,1335066,9,'Property Master'),(24428,1336191,7,'Set Designer'),(24428,1339446,6,'Supervising Sound Editor'),(24428,1339448,5,'Dialogue Editor'),(24428,1339457,8,'Set Costumer'),(24428,1339468,2,'Script Supervisor'),(24428,1347720,9,'Visual Effects Art Director'),(24428,1347734,7,'Assistant Art Director'),(24428,1352421,6,'Foley'),(24428,1357047,7,'Set Designer'),(24428,1357055,7,'Art Department Coordinator'),(24428,1360093,7,'Set Designer'),(24428,1368873,10,'Visual Effects Producer'),(24428,1368875,10,'Visual Effects Producer'),(24428,1376901,5,'Dialogue Editor'),(24428,1378220,7,'Leadman'),(24428,1379986,10,'Visual Effects Supervisor'),(24428,1384368,10,'Visual Effects Producer'),(24428,1386908,7,'Set Designer'),(24428,1388871,10,'Visual Effects Producer'),(24428,1389128,7,'Assistant Art Director'),(24428,1389131,7,'Construction Coordinator'),(24428,1392143,8,'Set Costumer'),(24428,1392947,3,'Location Manager'),(24428,1394753,9,'Visual Effects Editor'),(24428,1394961,10,'Visual Effects Supervisor'),(24428,1395030,8,'Set Costumer'),(24428,1395320,10,'Visual Effects Producer'),(24428,1395463,1,'Camera Operator'),(24428,1399071,1,'Camera Operator'),(24428,1399893,3,'Location Manager'),(24428,1400082,1,'Still Photographer'),(24428,1400488,9,'Scenic Artist'),(24428,1400560,10,'Visual Effects Supervisor'),(24428,1401722,10,'Visual Effects Supervisor'),(24428,1401793,10,'Visual Effects Producer'),(24428,1401803,10,'Visual Effects Supervisor'),(24428,1401821,8,'Hairstylist'),(24428,1401823,3,'Production Supervisor'),(24428,1401824,3,'Production Supervisor'),(24428,1401825,7,'Art Department Coordinator'),(24428,1401884,7,'Sculptor'),(24428,1401885,7,'Sculptor'),(24428,1401886,7,'Leadman'),(24428,1401887,7,'Sculptor'),(24428,1401890,10,'Visual Effects Producer'),(24428,1401891,9,'Visual Effects Editor'),(24428,1401892,10,'Visual Effects Producer'),(24428,1401893,9,'Visual Effects Editor'),(24428,1401894,10,'Visual Effects Producer'),(24428,1401895,10,'Visual Effects Producer'),(24428,1401896,9,'Visual Effects Editor'),(24428,1401897,9,'Visual Effects Editor'),(24428,1401898,9,'Visual Effects Editor'),(24428,1401899,10,'Visual Effects Producer'),(24428,1401965,10,'Visual Effects Supervisor'),(24428,1401966,10,'Visual Effects Supervisor'),(24428,1401967,9,'Visual Effects Art Director'),(24428,1401968,10,'Visual Effects Supervisor'),(24428,1401970,10,'Visual Effects Supervisor'),(24428,1401971,10,'Visual Effects Supervisor'),(24428,1401987,1,'Camera Operator'),(24428,1401988,11,'Lighting Technician'),(24428,1401989,1,'Camera Operator'),(24428,1401990,9,'Video Assist Operator'),(24428,1401991,11,'Lighting Technician'),(24428,1401992,9,'Video Assist Operator'),(24428,1401993,11,'Lighting Technician'),(24428,1401994,1,'Additional Photography'),(24428,1401995,11,'Lighting Technician'),(24428,1401996,11,'Lighting Technician'),(24428,1401997,11,'Gaffer'),(24428,1401998,10,'Animation Director'),(24428,1401999,8,'Set Costumer'),(24428,1402000,8,'Set Costumer'),(24428,1402001,8,'Set Costumer'),(24428,1402002,8,'Set Costumer'),(24428,1402003,8,'Set Costumer'),(24428,1402004,8,'Set Costumer'),(24428,1402005,8,'Set Costumer'),(24428,1402006,6,'Music Editor'),(24428,1402007,9,'Translator'),(24428,1402008,9,'Dialect Coach'),(24428,1402009,9,'Studio Teachers'),(24428,1402010,9,'Studio Teachers'),(24428,1402011,3,'Location Manager'),(24428,1402012,3,'Publicist'),(24428,1402013,3,'Location Manager'),(24428,1402014,9,'Unit Publicist'),(24428,1407019,9,'Visual Effects Editor'),(24428,1412756,9,'Visual Effects Editor'),(24428,1447326,4,'Storyboard'),(24428,1450362,10,'Visual Effects'),(24428,1456696,9,'Compositors'),(24428,1457930,10,'Visual Effects'),(24428,1457935,9,'Compositors'),(24428,1459736,10,'Animation'),(24428,1463568,10,'Visual Effects'),(20662,339,3,'Producer'),(20662,474,3,'Casting'),(20662,578,2,'Director'),(20662,578,3,'Producer'),(20662,934,3,'Producer'),(20662,943,1,'Director of Photography'),(20662,946,8,'Costume Design'),(20662,944,7,'Production Design'),(20662,950,5,'Editor'),(20662,4723,4,'Screenplay'),(20662,40796,1,'Still Photographer'),(20662,20507,7,'Set Decoration'),(20662,63421,6,'Original Music Composer'),(20662,190914,2,'Script Supervisor'),(20662,1049333,6,'Music Editor'),(20662,1335179,7,'Art Department Coordinator'),(20662,1378722,6,'Music Editor'),(20662,1400008,7,'Art Department Coordinator'),(12155,120,1,'Director of Photography'),(12155,510,2,'Director'),(12155,531,6,'Original Music Composer'),(12155,541,3,'Executive Producer'),(12155,541,5,'Editor'),(12155,557,8,'Costume Design'),(12155,550,3,'Producer'),(12155,551,3,'Producer'),(12155,1297,3,'Producer'),(12155,8275,3,'Producer'),(12155,18311,3,'Producer'),(12155,42265,3,'Executive Producer'),(12155,38792,4,'Screenplay'),(12155,70609,3,'Line Producer'),(12155,70647,4,'Novel'),(12155,240779,4,'Storyboard'),(12155,959668,3,'Producer'),(12155,1102209,3,'Producer'),(12155,1438901,7,'Art Direction'),(12155,1451682,11,'Lighting Artist'),(12155,1453022,10,'Animation'),(12155,1459790,2,'Layout'),(12155,1462665,2,'Layout'),(12155,1642697,10,'Animation'),(20526,12859,4,'Screenplay'),(20526,12859,3,'Producer'),(20526,6889,3,'Executive Producer'),(20526,7232,3,'Casting'),(20526,5362,3,'Casting'),(20526,5363,3,'Casting'),(20526,5392,8,'Costume Design'),(20526,6878,7,'Supervising Art Director'),(20526,12384,7,'Set Decoration'),(20526,21070,7,'Supervising Art Director'),(20526,20908,3,'Producer'),(20526,39387,3,'Producer'),(20526,51333,1,'Director of Photography'),(20526,63289,3,'Co-Producer'),(20526,67931,6,'Music'),(20526,73570,4,'Screenplay'),(20526,75294,8,'Makeup Department Head'),(20526,86270,2,'Director'),(20526,113981,3,'Associate Producer'),(20526,113982,3,'Co-Producer'),(20526,411385,7,'Production Design'),(20526,970765,3,'Co-Producer'),(20526,1214366,4,'Screenplay'),(20526,1214367,4,'Screenplay'),(20526,1323289,8,'Costume Supervisor'),(20526,1459743,10,'Animation'),(20526,1477203,3,'Associate Producer'),(10193,7,4,'Story'),(10193,8,2,'Director'),(10193,8,4,'Story'),(10193,7879,3,'Producer'),(10193,7879,4,'Story'),(10193,608,9,'Thanks'),(10193,628,9,'Thanks'),(10193,1417,9,'Thanks'),(10193,7878,3,'Producer'),(10193,7885,6,'Music'),(10193,7889,7,'Production Design'),(10193,7929,10,'Animation'),(10193,7984,2,'Layout'),(10193,7988,1,'Director of Photography'),(10193,8013,10,'Animation'),(10193,8042,10,'Animation'),(10193,8063,5,'Editor'),(10193,8080,5,'Assistant Editor'),(10193,8092,9,'Lighting Camera'),(10193,8153,9,'Post Production Supervisor'),(10193,16961,4,'Screenplay'),(10193,12897,9,'Thanks'),(10193,15894,6,'Sound Re-Recording Mixer'),(10193,57673,3,'Casting'),(10193,59362,10,'Visual Effects'),(10193,64449,3,'Casting'),(10193,72972,2,'Layout'),(10193,84493,3,'Casting'),(10193,963497,3,'Casting'),(10193,1290451,7,'Art Direction'),(10193,1299484,10,'Visual Effects Supervisor'),(10193,1413096,10,'Animation'),(10193,1442510,10,'Visual Effects'),(10193,1447565,4,'Storyboard'),(10193,1461369,9,'Additional Dialogue'),(10193,1484178,6,'Sound Effects Editor'),(10193,1485788,3,'Associate Producer'),(10193,1552873,5,'Color Timer'),(10681,7,4,'Screenplay'),(10681,7,2,'Director'),(10681,7,4,'Original Story'),(10681,7879,3,'Executive Producer'),(10681,153,6,'Original Music Composer'),(10681,7467,9,'Thanks'),(10681,7883,7,'Production Design'),(10681,7887,3,'Executive Producer'),(10681,7951,7,'Art Direction'),(10681,7972,3,'Production Manager'),(10681,7980,8,'Set Dressing Artist'),(10681,7988,1,'Director of Photography'),(10681,8003,7,'Art Direction'),(10681,8012,9,'Supervising Animator'),(10681,8078,6,'Sound Designer'),(10681,8080,5,'Assistant Editor'),(10681,8089,10,'Modeling'),(10681,8109,11,'Master Lighting Artist'),(10681,8153,9,'Post Production Supervisor'),(10681,8155,9,'Projection'),(10681,10688,9,'Thanks'),(10681,12612,8,'Makeup Artist'),(10681,12613,8,'Makeup Artist'),(10681,13223,5,'Color Timer'),(10681,12890,4,'Original Story'),(10681,12897,9,'Thanks'),(10681,15894,6,'Sound Re-Recording Mixer'),(10681,57673,3,'Casting'),(10681,59362,10,'Visual Effects'),(10681,59363,5,'Editor'),(10681,72752,3,'Producer'),(10681,72753,3,'Producer'),(10681,15020,4,'Screenplay'),(10681,72972,2,'Layout'),(10681,84493,3,'Casting'),(10681,107704,10,'Animation'),(10681,144960,9,'Thanks'),(10681,963497,3,'Casting'),(10681,1291315,6,'Music Supervisor'),(10681,1299484,10,'Animation'),(10681,1319751,3,'Line Producer'),(10681,1368825,6,'Sound Mixer'),(10681,1413096,10,'Animation'),(10681,1415500,9,'Thanks'),(10681,1435597,5,'Assistant Editor'),(10681,1451703,1,'Camera Operator'),(10681,1460426,5,'Editorial Manager'),(10681,1461369,9,'Additional Dialogue'),(10681,1463239,7,'Set Designer'),(10681,1484178,6,'Sound Effects Editor'),(10681,1516157,7,'Art Direction'),(10681,1552873,5,'Color Timer'),(14161,511,3,'Producer'),(14161,4501,1,'Director of Photography'),(14161,5430,4,'Writer'),(14161,5430,3,'Producer'),(14161,5430,6,'Original Music Composer'),(14161,6046,2,'Director'),(14161,6046,4,'Writer'),(14161,6046,3,'Executive Producer'),(14161,6048,3,'Producer'),(14161,6049,6,'Original Music Composer'),(14161,6051,5,'Editor'),(14161,6052,3,'Casting'),(14161,6037,10,'Visual Effects Supervisor'),(14161,6038,10,'Visual Effects Supervisor'),(14161,6207,7,'Construction Coordinator'),(14161,15229,9,'Stunt Coordinator'),(14161,15364,3,'Executive Producer'),(14161,10820,7,'Production Design'),(14161,19971,8,'Costume Design'),(14161,11021,7,'Set Decoration'),(14161,23414,7,'Art Direction'),(14161,27952,3,'Producer'),(14161,54208,3,'Executive Producer'),(14161,113032,9,'Property Master'),(14161,113194,9,'Stunts'),(14161,57769,5,'Editor'),(14161,61177,7,'Art Direction'),(14161,62857,3,'Casting'),(14161,62859,7,'Assistant Art Director'),(14161,69471,9,'Dialect Coach'),(14161,80354,9,'Dialect Coach'),(14161,87452,8,'Set Costumer'),(14161,158916,6,'Sound Re-Recording Mixer'),(14161,203227,9,'Stunts'),(14161,217995,7,'Set Designer'),(14161,229345,6,'ADR & Dubbing'),(14161,935253,9,'Scenic Artist'),(14161,947478,3,'Producer'),(14161,961544,7,'Supervising Art Director'),(14161,1006729,7,'Assistant Art Director'),(14161,1014789,3,'Casting'),(14161,1033104,3,'Casting'),(14161,1042814,10,'Visual Effects Supervisor'),(14161,1063979,9,'Scenic Artist'),(14161,1077782,6,'Foley'),(14161,1102080,3,'Producer'),(14161,1102081,3,'Producer'),(14161,1204245,9,'Visual Effects Editor'),(14161,1311175,7,'Assistant Art Director'),(14161,1314465,8,'Makeup Department Head'),(14161,1324052,7,'Set Designer'),(14161,1327763,3,'Casting'),(14161,1328137,7,'Art Direction'),(14161,1328138,8,'Makeup Department Head'),(14161,1328139,8,'Costume Supervisor'),(14161,1329480,7,'Assistant Art Director'),(14161,1339441,7,'Set Designer'),(14161,1340005,10,'Visual Effects Supervisor'),(14161,1341138,6,'Sound Re-Recording Mixer'),(14161,1350244,10,'Visual Effects Producer'),(14161,1352966,5,'Dialogue Editor'),(14161,1357058,9,'Property Master'),(14161,1358022,10,'Visual Effects Supervisor'),(14161,1360097,5,'Dialogue Editor'),(14161,1368873,10,'Visual Effects Producer'),(14161,1371100,9,'Visual Effects Editor'),(14161,1373432,10,'Visual Effects Producer'),(14161,1373433,10,'Visual Effects Supervisor'),(14161,1378169,6,'Sound Re-Recording Mixer'),(14161,1378677,7,'Set Designer'),(14161,1378688,7,'Set Designer'),(14161,1378720,8,'Set Costumer'),(14161,1378725,9,'Transportation Coordinator'),(14161,1386912,10,'Visual Effects Supervisor'),(14161,1391672,7,'Set Designer'),(14161,1391703,3,'Location Manager'),(14161,1392084,5,'Dialogue Editor'),(14161,1392095,10,'Visual Effects Supervisor'),(14161,1392622,10,'Visual Effects Producer'),(14161,1392953,9,'Dialect Coach'),(14161,1393456,9,'Dialect Coach'),(14161,1394445,10,'Visual Effects Producer'),(14161,1394931,7,'Art Department Coordinator'),(14161,1394933,7,'Set Designer'),(14161,1394935,7,'Set Designer'),(14161,1394936,7,'Set Designer'),(14161,1394942,7,'Greensman'),(14161,1394943,9,'Scenic Artist'),(14161,1394947,7,'Sculptor'),(14161,1394949,7,'Sculptor'),(14161,1394950,6,'Supervising Sound Editor'),(14161,1394950,6,'Sound Designer'),(14161,1394952,9,'Special Effects Coordinator'),(14161,1394953,10,'Visual Effects Producer'),(14161,1394954,9,'Visual Effects Editor'),(14161,1394955,9,'Visual Effects Editor'),(14161,1394956,10,'Visual Effects Producer'),(14161,1394957,10,'Visual Effects Producer'),(14161,1394958,10,'Visual Effects Producer'),(14161,1394961,10,'Visual Effects Supervisor'),(14161,1394963,10,'Visual Effects Supervisor'),(14161,1394965,10,'Visual Effects Supervisor'),(14161,1394967,10,'Visual Effects Supervisor'),(14161,1394971,1,'Camera Operator'),(14161,1394972,1,'Camera Operator'),(14161,1394973,1,'Still Photographer'),(14161,1394974,1,'Steadicam Operator'),(14161,1394982,8,'Set Costumer'),(14161,1394983,8,'Set Costumer'),(14161,1394984,6,'Music Editor'),(14161,1394985,9,'Chef'),(14161,1394986,9,'Dialect Coach'),(14161,1394987,3,'Location Manager'),(14161,1551911,10,'Visual Effects Supervisor'),(14161,1829026,9,'Stunts'),(17979,24,4,'Screenplay'),(17979,24,2,'Director'),(17979,3557,4,'Novel'),(17979,15017,8,'Makeup Artist'),(17979,1140576,10,'Animation'),(17979,1450983,9,'Technical Supervisor'),(17979,1453014,10,'Animation'),(17979,1455461,11,'Lighting Artist'),(17979,1463784,10,'Animation'),(14160,7,3,'Executive Producer'),(14160,10,4,'Screenplay'),(14160,10,2,'Co-Director'),(14160,10,4,'Story'),(14160,7879,3,'Executive Producer'),(14160,7883,11,'Lighting Director'),(14160,7888,11,'Lighting Director'),(14160,7894,1,'Director of Photography'),(14160,7927,7,'Production Design'),(14160,7929,10,'Animation'),(14160,7940,3,'Producer'),(14160,7962,11,'Lighting Director'),(14160,7975,1,'Director of Photography'),(14160,7979,2,'Layout'),(14160,7981,2,'Layout'),(14160,7984,2,'Layout'),(14160,8011,9,'Supervising Animator'),(14160,8015,10,'Animation Director'),(14160,8026,10,'Animation'),(14160,8028,10,'Animation'),(14160,8033,10,'Animation'),(14160,8034,10,'Animation'),(14160,8042,10,'Animation'),(14160,8046,10,'Animation Director'),(14160,8053,10,'Animation Director'),(14160,8066,5,'Editor'),(14160,8103,3,'Production Manager'),(14160,8115,9,'Supervising Technical Director'),(14160,8153,9,'Post Production Supervisor'),(14160,8158,6,'Supervising Sound Editor'),(14160,12890,4,'Screenplay'),(14160,12890,4,'Story'),(14160,12890,2,'Director'),(14160,15893,6,'Sound Effects Editor'),(14160,15894,6,'Sound Re-Recording Mixer'),(14160,15894,6,'Sound Designer'),(14160,15894,6,'Supervising Sound Editor'),(14160,15895,10,'Shading'),(14160,15347,6,'Music'),(14160,15354,6,'Music Editor'),(14160,17867,4,'Story'),(14160,28241,6,'Orchestrator'),(14160,57673,3,'Casting'),(14160,72972,2,'Layout'),(14160,74811,6,'Sound Mixer'),(14160,107704,10,'Animation'),(14160,138617,6,'Foley Editor'),(14160,953331,9,'Executive Music Producer'),(14160,963497,3,'Casting'),(14160,970529,3,'Associate Producer'),(14160,1211220,7,'Sculptor'),(14160,1291315,6,'Music Supervisor'),(14160,1299484,10,'Visual Effects Supervisor'),(14160,1378828,6,'Sound Re-Recording Mixer'),(14160,1397397,10,'Animation'),(14160,1408648,10,'Animation'),(14160,1412984,6,'Foley Editor'),(14160,1413096,10,'Animation'),(14160,1414177,6,'Sound Effects Editor'),(14160,1422411,6,'Sound Effects Editor'),(14160,1435597,5,'Additional Editorial Assistant'),(14160,1443472,7,'Art Department Coordinator'),(14160,1443479,10,'Animation Manager'),(14160,1450317,5,'Editorial Manager'),(14160,1451703,1,'Camera Operator'),(14160,1484178,9,'Sound Design Assistant'),(14160,1516156,5,'Editor'),(14160,1552873,5,'Color Timer'),(14160,1555650,2,'Script Supervisor'),(14160,1556629,5,'Associate Editor'),(14160,1556632,6,'ADR Editor'),(14160,1605896,7,'Art Department Coordinator'),(14160,1711834,10,'Animation'),(14160,1711836,10,'Animation'),(14160,1742706,9,'Production Artist'),(14160,1742707,9,'Production Artist'),(14160,1742709,7,'Art Department Manager'),(14160,1742711,5,'Editorial Manager'),(14160,1742712,5,'Assistant Editor'),(14160,1742713,5,'Assistant Editor'),(14160,1742714,5,'Assistant Editor'),(14160,1742717,5,'Editorial Coordinator'),(14160,1742719,2,'Layout'),(14160,1742720,2,'Layout'),(14160,1742721,2,'Layout'),(14160,1742722,2,'Layout'),(14160,1742723,2,'Layout'),(14160,1742724,2,'Layout'),(14160,1742751,1,'Camera Operator'),(14160,1742756,9,'Post-Production Manager'),(14160,1742757,9,'Post Production Assistant'),(15512,12080,2,'Director'),(15512,486,4,'Screenplay'),(15512,57743,4,'Screenplay'),(15512,57744,4,'Screenplay'),(15512,67360,4,'Screenplay'),(15512,65630,2,'Director'),(15512,65630,4,'Screenplay'),(15512,1395269,9,'Thanks'),(15512,1450331,10,'Animation'),(15512,1460472,10,'Animation'),(15512,1463252,7,'Art Direction'),(14869,37,6,'Original Music Composer'),(14869,1707,4,'Screenplay'),(14869,1720,3,'Casting'),(14869,7735,8,'Costume Design'),(14869,4953,7,'Production Design'),(14869,8795,7,'Art Direction'),(14869,6878,7,'Art Direction'),(14869,10952,3,'Producer'),(14869,7775,2,'Director'),(14869,7784,3,'Producer'),(14869,8705,7,'Art Direction'),(14869,14341,7,'Supervising Art Director'),(14869,24308,3,'Producer'),(14869,24310,1,'Director of Photography'),(14869,20786,7,'Art Direction'),(14869,25729,3,'Casting'),(14869,11102,7,'Art Direction'),(14869,41898,7,'Set Decoration'),(14869,34672,4,'Screenplay'),(14869,84768,4,'Screenplay'),(14869,1336716,10,'Visual Effects Supervisor'),(14869,1455486,2,'Assistant Director'),(14869,1463785,10,'Animation'),(10138,15009,4,'Screenplay'),(10138,4500,6,'Music'),(10138,7232,3,'Casting'),(10138,4867,1,'Director of Photography'),(10138,7418,8,'Costume Design'),(10138,7624,3,'Executive Producer'),(10138,7624,4,'Characters'),(10138,10850,3,'Producer'),(10138,13304,7,'Production Design'),(10138,9646,5,'Editor'),(10138,11455,5,'Editor'),(10138,12770,3,'Executive Producer'),(10138,14348,7,'Set Decoration'),(10138,14349,7,'Art Direction'),(10138,18866,4,'Characters'),(10138,18867,7,'Art Direction'),(10138,15277,2,'Director'),(10138,15277,3,'Executive Producer'),(10138,18876,4,'Characters'),(10138,18877,4,'Characters'),(10138,20540,3,'Casting'),(10138,37162,3,'Executive Producer'),(10138,57027,3,'Executive Producer'),(10138,60223,7,'Art Direction'),(10138,113672,3,'Executive Producer'),(10138,113673,3,'Executive Producer'),(10138,113674,3,'Producer'),(10138,113675,3,'Producer'),(10138,68016,6,'Orchestrator'),(10138,229345,6,'ADR & Dubbing'),(10138,963355,7,'Art Direction'),(10138,996220,9,'Stunts'),(10138,1459736,10,'Animation'),(10192,12081,4,'Writer'),(10192,64151,2,'Director'),(10192,113664,4,'Writer'),(10192,582919,4,'Writer'),(10192,1460472,10,'Animation'),(10192,1462666,2,'Layout'),(10191,11098,6,'Original Music Composer'),(10191,12894,3,'Producer'),(10191,15349,5,'Editor'),(10191,21035,3,'Co-Producer'),(10191,21036,3,'Co-Producer'),(10191,21201,5,'Editor'),(10191,42267,6,'Sound Designer'),(10191,42267,6,'Supervising Sound Editor'),(10191,42267,6,'Sound Re-Recording Mixer'),(10191,44123,10,'Animation'),(10191,52870,3,'Executive Producer'),(10191,56660,9,'Thanks'),(10191,59027,9,'Thanks'),(10191,64150,4,'Novel'),(10191,66515,9,'Additional Writing'),(10191,66193,4,'Screenplay'),(10191,66193,2,'Director'),(10191,69797,4,'Screenplay'),(10191,69797,2,'Director'),(10191,76741,5,'Editorial Services'),(10191,106253,5,'Editorial Services'),(10191,138615,4,'Screenplay'),(10191,138616,3,'Executive Producer'),(10191,138617,6,'Supervising Sound Editor'),(10191,138618,6,'Sound Re-Recording Mixer'),(10191,1205985,4,'Storyboard'),(10191,1295761,3,'Associate Producer'),(10191,1319119,3,'Casting'),(10191,1335621,9,'Post-Production Manager'),(10191,1377373,3,'Casting'),(10191,1434214,9,'Post Production Supervisor'),(10191,1447381,10,'Animation'),(10191,1447593,2,'Layout'),(10191,1450331,10,'Animation'),(10191,1451273,2,'Layout'),(10191,1452488,10,'Animation Manager'),(10191,1453498,7,'Art Department Manager'),(10191,1464420,10,'Animation'),(10191,1508424,7,'Production Design'),(10191,1516077,3,'Co-Producer'),(10191,1544903,6,'Sound'),(10191,1593108,3,'Co-Producer'),(27205,947,6,'Original Music Composer'),(27205,525,4,'Screenplay'),(27205,525,2,'Director'),(27205,525,3,'Producer'),(27205,556,3,'Producer'),(27205,559,1,'Director of Photography'),(27205,561,3,'Casting'),(27205,3904,5,'Editor'),(27205,10958,7,'Set Decoration'),(27205,8705,7,'Art Direction'),(27205,21984,7,'Set Decoration'),(27205,41018,3,'Executive Producer'),(27205,54211,3,'Executive Producer'),(27205,68016,6,'Orchestrator'),(27205,76054,7,'Art Direction'),(27205,969743,7,'Art Direction'),(27205,1271644,7,'Production Design'),(27205,1271645,8,'Costume Design'),(27022,12962,2,'Director'),(27022,55178,5,'Editor'),(27022,81203,4,'Screenplay'),(27022,121479,4,'Screenplay'),(27022,1455541,10,'Animation'),(10140,1319,7,'Art Direction'),(10140,13673,5,'Editor'),(10140,5162,3,'Producer'),(10140,5524,3,'Producer'),(10140,5525,4,'Novel'),(10140,5541,3,'Producer'),(10140,5543,3,'Executive Producer'),(10140,5544,3,'Executive Producer'),(10140,5551,4,'Screenplay'),(10140,5552,4,'Screenplay'),(10140,6489,6,'Original Music Composer'),(10140,9821,7,'Art Direction'),(10140,12203,3,'Casting'),(10140,11099,1,'Director of Photography'),(10140,16363,3,'Casting'),(10140,19284,7,'Production Design'),(10140,33195,7,'Art Direction'),(10140,10781,2,'Director'),(10140,34854,3,'Line Producer'),(10140,61239,4,'Screenplay'),(10140,1117948,3,'Producer'),(10140,1117949,3,'Executive Producer'),(10140,1117950,9,'Post-Production Manager'),(10140,1117952,7,'Art Direction'),(10140,1117953,7,'Art Direction'),(10140,1195356,3,'Casting'),(10140,1447378,10,'Animation'),(10140,1447518,9,'Stunts'),(10140,1447543,10,'Visual Effects'),(10140,1452991,10,'Animation'),(10140,1453612,10,'Animation Supervisor'),(10527,18863,2,'Director'),(10527,18864,2,'Director'),(10527,52803,4,'Author'),(10527,68016,6,'Orchestrator'),(10527,1460431,5,'First Assistant Editor'),(10527,1460608,10,'Animation'),(18360,539,4,'Screenplay'),(18360,10965,3,'Producer'),(18360,17825,2,'Director'),(18360,17825,3,'Producer'),(18360,17828,3,'Producer'),(18360,22061,7,'Supervising Art Director'),(18360,113194,9,'Stunts'),(18360,82995,4,'Author'),(18360,1007395,9,'Stunt Coordinator'),(18360,1453020,10,'Animation'),(18360,1453022,10,'Animation'),(18360,1454410,10,'VFX Artist'),(18360,1455463,11,'Lighting Artist'),(18360,1460621,10,'Visual Effects'),(18360,1460634,9,'Visual Effects Art Director'),(18360,1463568,9,'Digital Effects Supervisor'),(13448,947,6,'Original Music Composer'),(13448,339,3,'Producer'),(13448,508,4,'Screenplay'),(13448,2874,3,'Casting'),(13448,3275,3,'Casting'),(13448,4849,6,'Supervising Sound Editor'),(13448,5575,4,'Screenplay'),(13448,6159,2,'Director'),(13448,6159,3,'Producer'),(13448,6184,3,'Executive Producer'),(13448,6186,3,'Producer'),(13448,6188,3,'Producer'),(13448,6189,5,'Editor'),(13448,6190,5,'Editor'),(13448,6876,3,'Casting'),(13448,6880,7,'Set Decoration'),(13448,7732,7,'Production Design'),(13448,7787,7,'Art Direction'),(13448,8404,3,'Executive Producer'),(13448,8404,4,'Novel'),(13448,8406,3,'Producer'),(13448,8408,1,'Director of Photography'),(13448,8411,8,'Costume Design'),(13448,8419,3,'Producer'),(13448,10496,3,'Casting'),(13448,15883,10,'Visual Effects Supervisor'),(13448,15911,9,'Stunt Coordinator'),(13448,42034,6,'Sound Re-Recording Mixer'),(13448,21568,7,'Art Direction'),(13448,66689,7,'Art Direction'),(13448,68016,6,'Orchestrator'),(13448,76054,7,'Art Direction'),(13448,79790,11,'Gaffer'),(13448,119177,3,'Executive Producer'),(13448,119178,3,'Casting'),(13448,122607,9,'Dialect Coach'),(13448,146143,9,'Stunt Coordinator'),(13448,228981,3,'Location Manager'),(13448,1077782,6,'Foley'),(13448,1114890,3,'Producer'),(13448,1114892,3,'Line Producer'),(13448,1182907,9,'Visual Effects Art Director'),(13448,1191812,6,'Sound Effects Editor'),(13448,1299405,5,'Dialogue Editor'),(13448,1323629,8,'Costume Supervisor'),(13448,1327139,7,'Art Direction'),(13448,1327141,7,'Art Direction'),(13448,1327144,9,'Visual Effects Art Director'),(13448,1329416,7,'Set Decoration'),(13448,1329417,8,'Makeup Department Head'),(13448,1329418,8,'Costume Supervisor'),(13448,1334420,9,'Visual Effects Art Director'),(13448,1335541,7,'Sculptor'),(13448,1335548,7,'Sculptor'),(13448,1337406,7,'Sculptor'),(13448,1339458,8,'Set Costumer'),(13448,1340095,6,'Sound Designer'),(13448,1357055,7,'Art Department Coordinator'),(13448,1374169,6,'Foley'),(13448,1384386,10,'Visual Effects Supervisor'),(13448,1386908,7,'Set Designer'),(13448,1390538,2,'Script Supervisor'),(13448,1393323,10,'Visual Effects Producer'),(13448,1395437,7,'Sculptor'),(13448,1397810,7,'Sculptor'),(13448,1398085,9,'Property Master'),(13448,1398982,3,'Publicist'),(13448,1399328,9,'Transportation Coordinator'),(13448,1399561,9,'Visual Effects Editor'),(13448,1400006,3,'Production Manager'),(13448,1400007,3,'Production Supervisor'),(13448,1400008,7,'Art Department Coordinator'),(13448,1400009,9,'Property Master'),(13448,1400010,9,'Property Master'),(13448,1400012,7,'Assistant Art Director'),(13448,1400013,9,'Scenic Artist'),(13448,1400014,7,'Leadman'),(13448,1400016,7,'Leadman'),(13448,1400019,7,'Sculptor'),(13448,1400065,7,'Set Designer'),(13448,1400066,7,'Set Designer'),(13448,1400069,9,'Sound Recordist'),(13448,1400070,6,'Sound Designer'),(13448,1400071,5,'Dialogue Editor'),(13448,1400072,6,'Sound Re-Recording Mixer'),(13448,1400073,9,'Visual Effects Editor'),(13448,1400074,10,'Visual Effects Supervisor'),(13448,1400075,10,'Visual Effects Supervisor'),(13448,1400076,10,'Visual Effects Supervisor'),(13448,1400077,10,'Visual Effects Producer'),(13448,1400078,10,'Visual Effects Producer'),(13448,1400079,1,'Camera Operator'),(13448,1400080,1,'Camera Operator'),(13448,1400081,1,'Steadicam Operator'),(13448,1400082,1,'Still Photographer'),(13448,1400084,1,'Camera Operator'),(13448,1400085,8,'Set Costumer'),(13448,1400086,8,'Set Costumer'),(13448,1400087,8,'Set Costumer'),(13448,1400088,6,'Music Editor'),(13448,1400089,3,'Location Manager'),(13448,1400090,2,'Script Supervisor'),(13448,1400091,3,'Location Manager'),(13448,1400092,1,'Helicopter Camera'),(13448,1400093,6,'Sound Effects Editor'),(13448,1552521,9,'Stunts'),(13448,1813644,9,'Stunts'),(10195,10816,5,'Editor'),(10195,7232,3,'Casting'),(10195,5133,7,'Production Design'),(10195,7624,3,'Executive Producer'),(10195,10850,3,'Producer'),(10195,8703,3,'Executive Producer'),(10195,9152,6,'Original Music Composer'),(10195,11181,2,'Director'),(10195,13009,8,'Costume Design'),(10195,14348,7,'Set Decoration'),(10195,15356,10,'Special Effects Supervisor'),(10195,20401,4,'Screenplay'),(10195,20540,3,'Casting'),(10195,24217,1,'Director of Photography'),(10195,24959,7,'Art Direction'),(10195,33045,4,'Story'),(10195,57027,3,'Executive Producer'),(10195,113673,3,'Executive Producer'),(10195,113674,3,'Co-Producer'),(10195,67484,4,'Screenplay'),(10195,67485,4,'Screenplay'),(10195,1206905,8,'Costume Supervisor'),(10195,1322015,8,'Makeup Department Head'),(10195,1355532,4,'Script Editor'),(10195,1400082,1,'Still Photographer'),(10195,1408354,1,'Camera Operator'),(10195,1408354,1,'Steadicam Operator'),(10195,1412756,9,'Visual Effects Editor'),(10195,1428727,6,'Other'),(10195,1453944,11,'Lighting Artist'),(13053,7879,3,'Executive Producer'),(13053,630,2,'Layout'),(13053,2512,5,'Assistant Editor'),(13053,8020,10,'Animation'),(13053,11098,6,'Original Music Composer'),(13053,15892,4,'Screenplay'),(13053,15849,2,'Layout'),(13053,42267,6,'Sound Designer'),(13053,42267,6,'Sound Re-Recording Mixer'),(13053,61421,10,'Visual Development'),(13053,61425,10,'Modeling'),(13053,61958,5,'Editor'),(13053,61974,6,'Orchestrator'),(13053,65855,10,'Animation'),(13053,65644,6,'Orchestrator'),(13053,69798,3,'Producer'),(13053,70238,4,'Screenplay'),(13053,70238,2,'Director'),(13053,70240,7,'Art Direction'),(13053,73306,10,'Visual Development'),(13053,76595,2,'Director'),(13053,89029,3,'Associate Producer'),(13053,89030,3,'Casting'),(13053,112609,6,'Sound Re-Recording Mixer'),(13053,928608,9,'Post Production Supervisor'),(13053,953331,9,'Executive Music Producer'),(13053,1108963,6,'Orchestrator'),(13053,1109913,10,'Animation'),(13053,1117307,5,'Associate Editor'),(13053,1123657,9,'Supervising Animator'),(13053,1210253,10,'Character Designer'),(13053,1251102,10,'Animation'),(13053,1281387,9,'Supervising Animator'),(13053,1291315,6,'Music Supervisor'),(13053,1337303,10,'Animation'),(13053,1339446,6,'Supervising Sound Editor'),(13053,1341141,6,'Music Editor'),(13053,1364881,10,'Animation'),(13053,1376901,5,'Dialogue Editor'),(13053,1381898,5,'Assistant Editor'),(13053,1404326,6,'Music Editor'),(13053,1414177,6,'Sound Effects Editor'),(13053,1414178,6,'Sound Effects Editor'),(13053,1438912,10,'Animation'),(13053,1447347,10,'Visual Development'),(13053,1447347,10,'Animation Manager'),(13053,1447400,10,'Visual Development'),(13053,1447483,2,'Layout'),(13053,1447497,2,'Layout'),(13053,1450357,10,'Visual Development'),(13053,1451279,2,'Layout'),(13053,1452489,2,'Layout'),(13053,1453528,10,'Animation'),(13053,1456512,9,'Supervising Animator'),(13053,1457930,10,'Animation'),(13053,1459642,10,'Animation Manager'),(13053,1459732,10,'Animation'),(13053,1460469,10,'Modeling'),(13053,1461363,2,'Layout'),(13053,1461391,10,'Animation'),(13053,1461397,2,'Layout'),(13053,1461408,10,'Visual Development'),(13053,1461410,10,'Visual Development'),(13053,1462695,10,'Animation'),(13053,1462696,10,'Animation'),(13053,1462796,9,'Sequence Leads'),(13053,1463336,10,'Visual Development'),(13053,1464404,3,'Production Manager'),(13053,1535098,6,'Orchestrator'),(13053,1548698,6,'Orchestrator'),(13053,1552189,10,'Animation'),(13053,1578645,10,'Visual Effects Supervisor'),(13053,1578649,9,'Technical Supervisor'),(13053,1588280,5,'Color Timer'),(13053,1604003,2,'Layout'),(13053,1615281,10,'Animation'),(13053,1615581,10,'Visual Development'),(13053,1615777,9,'Sequence Leads'),(13053,1615778,9,'Sequence Leads'),(13053,1615779,9,'Sequence Leads'),(13053,1615780,9,'Sequence Leads'),(13053,1615781,11,'Lighting Supervisor'),(13053,1615782,9,'Sequence Leads'),(13053,1615783,10,'Character Designer'),(13053,1615791,2,'Layout'),(13053,1615792,2,'Layout'),(13053,1615800,2,'Layout'),(13053,1645690,10,'Animation'),(13053,1645696,10,'Animation'),(13053,1713402,10,'Visual Development'),(13053,1713704,2,'Layout'),(13053,1717777,10,'Animation'),(13053,1717781,9,'CG Supervisor'),(13053,1726869,10,'Modeling'),(13053,1763005,10,'Animation Supervisor'),(13053,1763014,9,'Supervising Animator'),(13053,1763017,9,'Supervising Animator'),(13053,1763023,9,'Supervising Animator'),(13053,1763026,9,'Sequence Leads'),(13053,1763034,5,'Assistant Editor'),(13053,1763035,10,'Character Designer'),(13053,1763037,10,'Character Designer'),(13053,1763038,10,'Visual Development'),(13053,1763039,10,'Modeling'),(13053,1763040,10,'Modeling'),(13053,1763041,10,'Modeling'),(13053,1763042,10,'Modeling'),(13053,1763043,10,'Modeling'),(13053,1763048,10,'Modeling'),(13053,1763050,10,'Modeling'),(13053,1763051,10,'Modeling'),(13053,1763052,10,'Modeling'),(13053,1763053,10,'Modeling'),(13053,1763054,10,'Modeling'),(13053,1763063,10,'Modeling'),(13053,1763082,2,'Layout'),(13053,1763088,2,'Layout'),(13053,1763089,10,'Animation'),(13053,1763090,10,'Animation'),(13053,1763093,10,'Animation'),(13053,1763095,10,'Animation'),(13053,1763096,10,'Animation'),(13053,1763097,10,'Animation'),(13053,1763098,10,'Animation'),(13053,1763100,10,'Animation'),(13053,1763101,10,'Animation'),(13053,1763102,10,'Animation'),(13053,1763103,10,'Animation'),(13053,1763104,10,'Animation'),(13053,1763105,10,'Animation'),(13053,1763106,10,'Animation'),(13053,1763107,10,'Animation'),(13053,1763108,10,'Animation'),(13053,1763109,10,'Animation'),(13053,1763110,10,'Animation'),(13053,1763111,10,'Animation'),(13053,1763112,10,'Animation'),(13053,1763113,10,'Animation'),(13053,1763115,10,'Animation'),(13053,1763116,10,'Animation'),(13053,1763117,10,'Animation'),(13053,1763118,10,'Animation'),(13053,1763119,10,'Animation'),(13053,1763120,10,'Animation'),(13053,1763122,10,'Animation'),(13053,1763123,10,'Animation'),(13053,1763124,10,'Animation'),(13053,1763125,10,'Animation'),(13053,1763126,10,'Animation'),(13053,1763127,10,'Animation'),(13053,1763128,10,'Animation'),(13053,1763129,10,'Animation'),(13053,1763130,10,'Animation'),(13053,1763131,10,'Animation'),(13053,1763133,6,'Foley Editor'),(13053,1763135,9,'Sound Design Assistant'),(19585,1705,4,'Screenplay'),(19585,1706,4,'Screenplay'),(19585,21158,4,'Screenplay'),(19585,21159,4,'Screenplay'),(19585,55690,4,'Screenplay'),(19585,84851,2,'Director'),(19585,106458,3,'Production Manager'),(19585,1447543,10,'Visual Effects'),(19585,1451682,11,'Lighting Artist'),(19585,1455461,9,'Technical Supervisor'),(19585,1459790,2,'Layout'),(19585,1460602,11,'Lighting Artist'),(19585,1460602,9,'Compositors'),(19585,1462665,2,'Layout'),(19585,1552521,9,'Stunts'),(10196,1213,6,'Original Music Composer'),(10196,11614,2,'Director'),(10196,11614,4,'Writer'),(11619,5308,9,'Additional Writing'),(11619,5553,6,'Original Music Composer'),(11619,12090,3,'Casting'),(11619,18910,4,'Screenplay'),(11619,18910,4,'Story'),(11619,33183,2,'Director'),(11619,33183,9,'Additional Writing'),(11619,20773,9,'Additional Writing'),(11619,21075,4,'Screenplay'),(11619,38937,4,'Screenplay'),(11619,38937,4,'Story'),(11619,53304,3,'Producer'),(11619,53304,4,'Story'),(11619,53329,3,'Producer'),(11619,53332,1,'Director of Photography'),(11619,57638,5,'Editor'),(11619,58897,2,'Director'),(11619,58897,4,'Story'),(11619,58897,9,'Additional Writing'),(11619,70039,4,'Screenplay'),(11619,70041,3,'Producer'),(11619,70042,1,'Director of Photography'),(11619,70043,5,'Editor'),(11619,81912,9,'Additional Writing'),(11619,118713,9,'Supervising Animator'),(11619,175229,7,'Production Design'),(11619,934181,9,'Additional Writing'),(11619,1106862,3,'Producer'),(11619,1205496,4,'Screenplay'),(11619,1397895,4,'Story'),(11619,1447381,9,'Supervising Animator'),(11619,1447593,2,'Layout'),(11619,1447593,5,'Editorial Manager'),(11619,1460472,10,'Animation'),(13475,605,8,'Costume Design'),(13475,1745,4,'Characters'),(13475,6052,3,'Casting'),(13475,15344,2,'Director'),(13475,15344,3,'Producer'),(13475,15345,3,'Executive Producer'),(13475,15345,4,'Writer'),(13475,15346,3,'Executive Producer'),(13475,15346,4,'Writer'),(13475,15347,6,'Original Music Composer'),(13475,15348,1,'Director of Photography'),(13475,15349,5,'Editor'),(13475,15350,5,'Editor'),(13475,15351,7,'Production Design'),(13475,15352,7,'Set Decoration'),(13475,21568,7,'Art Direction'),(13475,40592,3,'Executive Producer'),(13475,28977,3,'Executive Producer'),(13475,28974,3,'Producer'),(13475,150194,9,'Stunts'),(13475,765144,3,'Casting'),(13475,1319743,8,'Makeup Department Head'),(13475,1319744,8,'Costume Supervisor'),(13475,1463568,9,'Digital Effects Supervisor'),(10048,1721,5,'Editor'),(10048,7232,3,'Casting'),(10048,4501,1,'Director of Photography'),(10048,6898,6,'Original Music Composer'),(10048,7627,3,'Producer'),(10048,13304,7,'Production Design'),(10048,9583,7,'Art Direction'),(10048,10753,7,'Production Design'),(10048,11874,3,'Producer'),(10048,12203,3,'Casting'),(10048,15329,8,'Costume Design'),(10048,18179,4,'Author'),(10048,18878,2,'Director'),(10048,20206,3,'Producer'),(10048,20207,3,'Executive Producer'),(10048,20540,3,'Casting'),(10048,54250,3,'Producer'),(10048,54252,3,'Executive Producer'),(10048,62480,3,'Line Producer'),(10048,62481,3,'Associate Producer'),(10048,62483,6,'Original Music Composer'),(10048,62484,7,'Art Direction'),(10048,62485,7,'Set Decoration'),(10048,1448601,10,'Animation'),(13183,1093,3,'Producer'),(13183,1303,7,'Production Design'),(13183,1993,3,'Producer'),(13183,2122,5,'Editor'),(13183,5392,8,'Costume Design'),(13183,8680,7,'Set Decoration'),(13183,11449,4,'Novel'),(13183,15217,2,'Director'),(13183,15221,6,'Music'),(13183,17284,1,'Director of Photography'),(13183,17610,3,'Casting'),(13183,22061,7,'Art Direction'),(13183,23812,7,'Art Direction'),(13183,39923,7,'Supervising Art Director'),(13183,54211,3,'Executive Producer'),(13183,113194,9,'Stunts'),(13183,10995,4,'Screenplay'),(13183,62739,3,'Executive Producer'),(13183,74258,4,'Screenplay'),(13183,79241,9,'Graphic Novel Illustrator'),(13183,79242,3,'Producer'),(13183,79243,3,'Producer'),(13183,75294,8,'Makeup Department Head'),(13183,1463568,9,'Digital Effects Supervisor'),(27576,2952,3,'Casting'),(27576,1213,6,'Original Music Composer'),(27576,2523,5,'Editor'),(27576,2950,1,'Director of Photography'),(27576,6191,7,'Set Decoration'),(27576,10952,3,'Producer'),(27576,13015,2,'Director'),(27576,13927,4,'Writer'),(27576,15845,8,'Makeup Department Head'),(27576,15351,7,'Production Design'),(27576,42908,3,'Producer'),(27576,38084,8,'Costume Design'),(27576,67810,5,'Editor'),(27576,1317645,7,'Art Direction'),(17578,491,6,'Original Music Composer'),(17578,474,3,'Casting'),(17578,488,2,'Director'),(17578,488,3,'Producer'),(17578,489,3,'Producer'),(17578,493,5,'Editor'),(17578,108,3,'Producer'),(17578,1324,3,'Casting'),(17578,3506,3,'Producer'),(17578,11090,4,'Screenplay'),(17578,42360,3,'Casting'),(17578,82197,3,'Executive Producer'),(17578,117892,4,'Novel'),(17578,146459,4,'Writer'),(17578,155531,4,'Screenplay'),(17578,236696,9,'Motion Capture Artist'),(17578,1002161,3,'Executive Producer'),(17578,1002507,3,'Executive Producer'),(17578,1102139,3,'Producer'),(17578,1102140,3,'Associate Producer'),(17578,1271756,7,'Supervising Art Director'),(17578,1341865,2,'Script Supervisor'),(17578,1376897,7,'Construction Coordinator'),(17578,1376898,7,'Art Direction'),(17578,1378709,9,'CG Supervisor'),(17578,1393435,7,'Set Designer'),(17578,1401596,10,'Animation Director'),(17578,1401810,10,'Animation Director'),(17578,1418381,9,'CG Supervisor'),(17578,1418382,9,'CG Supervisor'),(17578,1418384,10,'Animation Supervisor'),(17578,1447518,9,'Stunts'),(17578,1447524,7,'Conceptual Design'),(17578,1452998,10,'Animation'),(17578,1457326,9,'CG Supervisor'),(17578,1466024,7,'Art Department Coordinator'),(17578,1466025,9,'Property Master'),(17578,1466026,7,'Art Department Coordinator'),(17578,1466027,7,'Conceptual Design'),(17578,1466028,7,'Set Designer'),(17578,1466029,7,'Set Designer'),(17578,1466030,10,'Animation Supervisor'),(17578,1466031,9,'CG Supervisor'),(17578,1466033,9,'CG Supervisor'),(17578,1466034,9,'CG Supervisor'),(17578,1466035,9,'CG Supervisor'),(17578,1466036,9,'CG Supervisor'),(10567,1213,6,'Original Music Composer'),(10567,7903,3,'Casting'),(10567,15815,5,'Editor'),(10567,13367,4,'Screenplay'),(10567,56749,5,'Editor'),(10567,59747,1,'Director of Photography'),(10567,65855,2,'Director'),(10567,65856,2,'Director'),(10567,65857,3,'Production Supervisor'),(10567,65857,3,'Producer'),(10567,65858,3,'Producer'),(10567,69906,1,'Director of Photography'),(10567,1447357,10,'Visual Development'),(10567,1447483,2,'Layout'),(10567,1448071,10,'Animation Supervisor'),(10567,1452932,10,'Animation Supervisor'),(10567,1454032,10,'Animation'),(10567,1455541,10,'Animation Supervisor'),(18823,1113,3,'Casting'),(18823,8384,7,'Set Decoration'),(18823,4768,3,'Executive Producer'),(18823,6060,9,'Special Effects'),(18823,6923,7,'Supervising Art Director'),(18823,8525,7,'Production Design'),(18823,9154,5,'Editor'),(18823,10714,8,'Costume Design'),(18823,11351,6,'Supervising Sound Editor'),(18823,40823,6,'Foley'),(18823,17629,1,'Director of Photography'),(18823,18865,2,'Director'),(18823,44006,9,'Stunt Coordinator'),(18823,23774,8,'Makeup Artist'),(18823,27903,5,'Editor'),(18823,10851,6,'Music'),(18823,54211,3,'Executive Producer'),(18823,54212,3,'Executive Producer'),(18823,53680,3,'Casting'),(18823,54047,4,'Screenplay'),(18823,54048,4,'Screenplay'),(18823,56231,5,'Editor'),(18823,67759,3,'Producer'),(18823,61091,3,'Executive Producer'),(18823,67201,9,'Visual Effects Editor'),(18823,75804,3,'Producer'),(18823,114016,4,'Screenplay'),(18823,114017,3,'Producer'),(18823,194881,7,'Art Direction'),(18823,256928,10,'Visual Effects Supervisor'),(18823,972623,7,'Set Designer'),(18823,1017789,1,'Steadicam Operator'),(18823,1118229,3,'Executive Producer'),(18823,1127957,9,'Visual Effects Editor'),(18823,1189807,1,'Camera Operator'),(18823,1290901,10,'Visual Effects Producer'),(18823,1305602,7,'Art Direction'),(18823,1322147,8,'Costume Supervisor'),(18823,1335182,6,'ADR & Dubbing'),(18823,1335538,7,'Greensman'),(18823,1335539,7,'Set Designer'),(18823,1335540,7,'Art Department Coordinator'),(18823,1335541,7,'Sculptor'),(18823,1335542,7,'Sculptor'),(18823,1335543,7,'Greensman'),(18823,1335544,7,'Greensman'),(18823,1335545,7,'Construction Coordinator'),(18823,1335547,7,'Sculptor'),(18823,1335548,7,'Sculptor'),(18823,1335549,7,'Greensman'),(18823,1335551,7,'Greensman'),(18823,1335552,7,'Set Designer'),(18823,1335553,9,'Property Master'),(18823,1335556,6,'Sound Effects Editor'),(18823,1335559,6,'Sound Designer'),(18823,1335562,6,'Sound Effects Editor'),(18823,1335563,9,'Special Effects'),(18823,1335564,9,'Special Effects'),(18823,1335565,10,'Visual Effects Supervisor'),(18823,1335566,10,'Visual Effects Supervisor'),(18823,1335567,10,'Visual Effects Producer'),(18823,1335568,6,'Music Editor'),(18823,1335569,6,'Music Editor'),(18823,1335570,9,'Transportation Captain'),(18823,1335571,9,'Transportation Coordinator'),(18823,1373716,10,'Visual Effects Supervisor'),(18823,1373729,2,'Script Supervisor'),(18823,1380002,1,'Still Photographer'),(18823,1390350,7,'Assistant Art Director'),(18823,1391691,10,'Visual Effects Producer'),(18823,1392629,10,'Visual Effects Supervisor'),(18823,1393119,6,'Sound Re-Recording Mixer'),(18823,1394286,9,'CG Supervisor'),(18823,1394783,9,'Second Unit Cinematographer'),(18823,1399071,1,'Helicopter Camera'),(18823,1401118,9,'Choreographer'),(18823,1402934,1,'Camera Operator'),(18823,1405198,11,'Gaffer'),(18823,1406847,1,'Camera Operator'),(18823,1408855,2,'Script Supervisor'),(18823,1409305,5,'Digital Intermediate'),(18823,1410195,1,'Camera Operator'),(18823,1410202,3,'Location Manager'),(18823,1411064,8,'Hairstylist'),(18823,1411064,8,'Makeup Artist'),(18823,1411066,8,'Hairstylist'),(18823,1411066,8,'Makeup Artist'),(18823,1411067,8,'Hairstylist'),(18823,1411067,8,'Makeup Artist'),(18823,1411068,8,'Hairstylist'),(18823,1411068,8,'Makeup Artist'),(18823,1411069,8,'Makeup Artist'),(18823,1411070,8,'Makeup Artist'),(18823,1411073,8,'Wigmaker'),(18823,1411074,8,'Wigmaker'),(18823,1411075,8,'Wigmaker'),(18823,1411076,8,'Wigmaker'),(18823,1411077,3,'Production Manager'),(18823,1411078,3,'Production Supervisor'),(18823,1411079,7,'Assistant Art Director'),(18823,1411080,9,'Scenic Artist'),(18823,1411085,6,'Dolby Consultant'),(18823,1411086,9,'Animatronic and Prosthetic Effects'),(18823,1411087,9,'Animatronic and Prosthetic Effects'),(18823,1411090,10,'Visual Effects Supervisor'),(18823,1411092,9,'Visual Effects Editor'),(18823,1411093,10,'Visual Effects Producer'),(18823,1411094,9,'Visual Effects Editor'),(18823,1411095,9,'CG Supervisor'),(18823,1411096,10,'Visual Effects Producer'),(18823,1411099,10,'Animation Supervisor'),(18823,1411102,1,'Camera Operator'),(18823,1411103,11,'Rigging Gaffer'),(18823,1411105,8,'Set Costumer'),(18823,1411106,8,'Set Costumer'),(18823,1411107,8,'Set Costumer'),(18823,1411109,5,'Digital Intermediate'),(18823,1411111,5,'First Assistant Editor'),(18823,1411112,5,'First Assistant Editor'),(18823,1411117,3,'Location Manager'),(18823,1411118,9,'Unit Publicist'),(18823,1411119,3,'Location Manager'),(18823,1411120,3,'Location Manager'),(10996,37,6,'Original Music Composer'),(10996,931,3,'Producer'),(10996,1217,5,'Editor'),(10996,1590,1,'Director of Photography'),(10996,18898,2,'Director'),(10996,18898,3,'Executive Producer'),(10996,67779,4,'Screenplay'),(10996,109857,7,'Conceptual Design'),(10996,1447380,10,'Animation'),(10996,1448601,10,'Animation'),(12100,904,1,'Director of Photography'),(12100,1047,5,'Editor'),(12100,1729,6,'Original Music Composer'),(12100,6044,3,'Casting'),(12100,6878,7,'Art Direction'),(12100,6883,6,'Music Editor'),(12100,7690,3,'Executive Producer'),(12100,11401,2,'Director'),(12100,11401,3,'Producer'),(12100,11404,3,'Producer'),(12100,11410,5,'Editor'),(12100,14342,7,'Set Decoration'),(12100,15335,9,'Stunt Coordinator'),(12100,22135,7,'Production Design'),(12100,23352,8,'Makeup Department Head'),(12100,42267,6,'Sound Re-Recording Mixer'),(12100,60706,5,'Editor'),(12100,71234,4,'Screenplay'),(12100,71235,4,'Screenplay'),(12100,71236,3,'Producer'),(12100,71237,3,'Producer'),(12100,112609,6,'Sound Re-Recording Mixer'),(12100,1319825,8,'Costume Supervisor'),(12100,1390535,1,'Still Photographer'),(12100,1392145,6,'Music Editor'),(12100,1399326,6,'Music Editor'),(12100,1408528,6,'Music Editor'),(12100,1412990,1,'Steadicam Operator'),(12100,1412990,1,'Camera Operator'),(12100,1428202,9,'Stunt Coordinator'),(12100,1432026,5,'First Assistant Editor'),(12100,1478953,2,'Script Supervisor'),(12100,1537690,9,'Stunt Coordinator'),(12100,1550284,1,'Steadicam Operator'),(12100,1564887,7,'Art Department Coordinator'),(13700,7903,3,'Casting'),(13700,15813,6,'Original Music Composer'),(13700,15813,6,'Songs'),(13700,15814,5,'Associate Editor'),(13700,15814,6,'Supervising Sound Editor'),(13700,15815,5,'Editor'),(13700,15818,3,'Producer'),(13700,12824,9,'Thanks'),(13700,21103,6,'Sound Designer'),(13700,23684,9,'Supervising Animator'),(13700,113052,6,'Assistant Sound Editor'),(13700,15774,9,'Supervising Animator'),(13700,61414,4,'Story'),(13700,61419,3,'Casting'),(13700,61795,5,'Assistant Editor'),(13700,65858,9,'Thanks'),(13700,70287,2,'Director'),(13700,70287,4,'Writer'),(13700,70287,4,'Story'),(13700,73306,7,'Background Designer'),(13700,80671,2,'Director'),(13700,80671,4,'Writer'),(13700,80671,4,'Story'),(13700,74976,6,'Sound Re-Recording Mixer'),(13700,74978,6,'Sound Re-Recording Mixer'),(13700,83085,6,'Foley Editor'),(13700,83091,6,'Sound Re-Recording Mixer'),(13700,111448,4,'Story'),(13700,115755,9,'Supervising Animator'),(13700,115756,9,'Additional Dialogue'),(13700,958881,4,'Story'),(13700,968411,7,'Background Designer'),(13700,1017262,6,'Songs'),(13700,1120175,3,'Associate Producer'),(13700,1136912,6,'Orchestrator'),(13700,1297324,5,'First Assistant Editor'),(13700,1341141,6,'Music Editor'),(13700,1384507,7,'Background Designer'),(13700,1397792,10,'Visual Effects Supervisor'),(13700,1398624,3,'Production Manager'),(13700,1399057,6,'ADR Supervisor'),(13700,1447390,7,'Background Designer'),(13700,1447423,7,'Background Designer'),(13700,1450357,7,'Background Designer'),(13700,1455558,9,'Supervising Animator'),(13700,1458592,4,'Story'),(13700,1460455,9,'Supervising Animator'),(13700,1461382,7,'Background Designer'),(13700,1461389,9,'Supervising Animator'),(13700,1461410,7,'Background Designer'),(13700,1464355,9,'Post-Production Manager'),(13700,1464376,7,'Background Designer'),(13700,1552486,9,'Supervising Animator'),(13700,1552873,5,'Color Timer'),(13700,1554416,7,'Art Direction'),(13700,1563747,9,'Supervising Animator'),(13700,1615286,7,'Background Designer'),(13700,1615290,7,'Background Designer'),(13700,1615581,7,'Background Designer'),(13700,1719693,7,'Background Designer'),(13700,1719699,7,'Background Designer'),(13700,1739962,5,'Negative Cutter'),(13700,1748495,7,'Background Designer'),(13700,1748497,7,'Background Designer'),(13700,1748499,7,'Background Designer'),(13700,1748501,7,'Background Designer'),(13700,1748503,7,'Background Designer'),(13700,1748504,7,'Background Designer'),(13700,1748505,7,'Background Designer'),(13700,1748506,3,'Production Accountant'),(13700,1748507,3,'Production Accountant'),(13700,1748508,9,'Technical Supervisor'),(13700,1748510,5,'Color Timer'),(13700,1748511,6,'Conductor'),(13700,1748512,6,'Sound Effects Editor'),(13700,1748513,5,'Negative Cutter'),(10204,2952,3,'Casting'),(10204,2088,4,'Novel'),(10204,7227,3,'Producer'),(10204,6688,8,'Costume Design'),(10204,7020,6,'Original Music Composer'),(10204,10709,1,'Director of Photography'),(10204,10903,3,'Co-Producer'),(10204,11272,7,'Set Designer'),(10204,11273,7,'Assistant Art Director'),(10204,11274,7,'Art Direction'),(10204,40747,9,'Second Unit Cinematographer'),(10204,40754,7,'Art Department Coordinator'),(10204,40757,7,'Production Illustrator'),(10204,40759,4,'Storyboard'),(10204,40764,9,'Property Master'),(10204,40778,11,'Gaffer'),(10204,40779,11,'Best Boy Electric'),(10204,40786,11,'Electrician'),(10204,40789,11,'Rigging Gaffer'),(10204,40796,1,'Still Photographer'),(10204,40830,3,'Location Manager'),(10204,40846,3,'Production Accountant'),(10204,16368,6,'Music Programmer'),(10204,23453,7,'Art Direction'),(10204,18897,3,'Executive Producer'),(10204,19619,3,'Co-Producer'),(10204,20824,7,'Production Design'),(10204,21223,5,'Editor'),(10204,35510,3,'Producer'),(10204,35166,7,'Art Direction'),(10204,41336,7,'Set Decoration'),(10204,56719,3,'Executive Producer'),(10204,56720,3,'Executive Producer'),(10204,57124,6,'Original Music Composer'),(10204,57370,2,'Director'),(10204,59003,3,'Co-Executive Producer'),(10204,59004,3,'Co-Executive Producer'),(10204,64157,4,'Screenplay'),(10204,64158,4,'Screenplay'),(10204,64159,4,'Screenplay'),(10204,65610,2,'Third Assistant Director'),(10204,69325,6,'Sound Mixer'),(10204,91882,6,'Sound Editor'),(10204,117214,3,'Associate Producer'),(10204,117229,6,'Sound Designer'),(10204,148886,3,'Associate Producer'),(10204,570124,6,'Sound Re-Recording Mixer'),(10204,571434,9,'Visual Effects Editor'),(10204,957581,6,'Supervising Sound Editor'),(10204,993814,3,'Unit Manager'),(10204,1127909,3,'Line Producer'),(10204,1305945,3,'Executive In Charge Of Production'),(10204,1322138,7,'Supervising Art Director'),(10204,1331979,8,'Costume Supervisor'),(10204,1332509,3,'Casting'),(10204,1334493,7,'Art Department Coordinator'),(10204,1335880,9,'Digital Effects Producer'),(10204,1338287,6,'Music Editor'),(10204,1380001,1,'Steadicam Operator'),(10204,1387774,3,'Executive Producer'),(10204,1393015,10,'Lead Animator'),(10204,1393351,6,'Scoring Mixer'),(10204,1398460,6,'Sound Effects Editor'),(10204,1398932,9,'Stunt Coordinator'),(10204,1401354,3,'Production Coordinator'),(10204,1403355,7,'Leadman'),(10204,1403915,7,'Sculptor'),(10204,1404873,9,'Unit Publicist'),(10204,1405241,1,'Aerial Director of Photography'),(10204,1411085,6,'Dolby Consultant'),(10204,1413041,5,'First Assistant Editor'),(10204,1415976,10,'Visual Effects Producer'),(10204,1417842,9,'Transportation Coordinator'),(10204,1418124,8,'Hairstylist'),(10204,1428470,8,'Hair Designer'),(10204,1430501,8,'Wardrobe Supervisor'),(10204,1433073,8,'Set Costumer'),(10204,1437160,10,'Visual Effects'),(10204,1459913,10,'Visual Effects Supervisor'),(10204,1470177,7,'Art Department Coordinator'),(10204,1470178,7,'Art Department Coordinator'),(10204,1470180,7,'Art Department Manager'),(10204,1472325,3,'Executive Producer'),(10204,1472327,3,'Associate Producer'),(10204,1472328,3,'Associate Producer'),(10204,1472329,3,'Executive Producer'),(10204,1473182,3,'Casting Associate'),(10204,1487555,3,'Casting'),(10204,1487709,8,'Assistant Costume Designer'),(10204,1506373,1,'Grip'),(10204,1535097,1,'Key Grip'),(10204,1540858,6,'Foley Editor'),(10204,1547360,3,'Casting Assistant'),(10204,1556948,1,'Additional Still Photographer'),(10204,1557578,9,'Armorer'),(10204,1558253,9,'Post Production Assistant'),(10204,1558266,7,'Set Dresser'),(10204,1569847,9,'Digital Producer'),(10204,1602319,3,'ADR Voice Casting'),(10204,1603859,10,'Special Effects Supervisor'),(10204,1605893,6,'Orchestrator'),(10204,1613199,7,'Art Department Assistant'),(10204,1613203,7,'Location Scout'),(10204,1613212,1,'First Assistant Camera'),(10204,1613268,9,'Carpenter'),(10204,1613269,9,'Digital Effects Supervisor'),(10204,1613270,9,'Driver'),(10204,1613271,9,'Propmaker'),(10204,1613272,9,'Set Production Assistant'),(10204,1613273,9,'Software Engineer'),(10204,1613274,9,'Stunts'),(10204,1613276,9,'Systems Administrators & Support'),(10204,1613277,9,'Transportation Captain'),(10204,1613281,2,'First Assistant Director'),(10204,1613286,5,'Dialogue Editor'),(10204,1613291,5,'Digital Intermediate'),(10204,1613297,11,'Lighting Supervisor'),(10204,1613299,3,'Production Manager'),(10204,1613300,3,'Production Supervisor'),(10204,1613301,6,'Boom Operator'),(10204,1613303,6,'Foley'),(10204,1613313,10,'Digital Compositors'),(10204,1613315,10,'I/O Supervisor'),(10204,1613316,10,'Visual Effects Coordinator'),(10204,1613318,9,'Translator'),(10204,1613321,10,'Modeling'),(10204,1635070,9,'Marine Coordinator'),(10204,1740770,2,'Script Supervisor'),(10204,1774236,11,'Lighting Technician'),(10204,1855058,7,'Title Designer'),(10204,1855062,2,'Second Assistant Director'),(10204,1855067,5,'Negative Cutter'),(10204,1855076,6,'Additional Sound Re-Recording Mixer'),(10204,1855084,6,'Musician'),(10204,1855087,10,'2D Supervisor'),(10588,2445,3,'Executive Producer'),(10588,339,3,'Producer'),(10588,3393,6,'Original Music Composer'),(10588,4185,1,'Director of Photography'),(10588,5133,2,'Director'),(10588,5283,3,'Executive Producer'),(10588,6185,3,'Executive Producer'),(10588,15005,5,'Editor'),(10588,57405,4,'Screenplay'),(10588,57406,4,'Screenplay'),(10588,57407,4,'Screenplay'),(10588,65705,4,'Novel'),(10588,65706,3,'Executive Producer'),(10588,963843,7,'Art Department Manager'),(10588,1451229,7,'Art Department Manager'),(10588,1451245,1,'Camera Department Manager'),(10137,37,6,'Music'),(10137,931,3,'Producer'),(10137,3113,1,'Director of Photography'),(10137,11614,4,'Screenplay'),(10137,18898,2,'Director'),(10137,51701,5,'Editor'),(10137,59356,1,'Director of Photography'),(10137,61298,5,'Editor'),(10137,63952,4,'Screenplay'),(10198,7879,3,'Executive Producer'),(10198,7885,6,'Original Music Composer'),(10198,12072,10,'Visual Development'),(10198,15810,2,'Director'),(10198,15810,4,'Screenplay'),(10198,15810,4,'Story'),(10198,15811,2,'Director'),(10198,15811,4,'Screenplay'),(10198,15811,4,'Story'),(10198,23684,9,'Supervising Animator'),(10198,58363,6,'Sound Designer'),(10198,58363,6,'Supervising Sound Editor'),(10198,56611,4,'Screenplay'),(10198,59745,3,'Casting'),(10198,60504,3,'Casting'),(10198,61416,3,'Producer'),(10198,61420,7,'Art Direction'),(10198,65531,9,'Supervising Animator'),(10198,65531,4,'Characters'),(10198,65534,9,'Supervising Animator'),(10198,71856,2,'Layout'),(10198,72714,4,'Story'),(10198,73306,7,'Background Designer'),(10198,89030,3,'Casting'),(10198,83091,6,'Sound Re-Recording Mixer'),(10198,112609,6,'Sound Re-Recording Mixer'),(10198,115755,9,'Supervising Animator'),(10198,137195,10,'Visual Development'),(10198,227439,4,'Story'),(10198,928605,3,'Production Manager'),(10198,928608,9,'Post Production Supervisor'),(10198,938099,7,'Background Designer'),(10198,953331,9,'Executive Music Producer'),(10198,968327,5,'Editor'),(10198,1033844,4,'Characters'),(10198,1291315,6,'Music Supervisor'),(10198,1337303,9,'Supervising Animator'),(10198,1364882,4,'Storyboard'),(10198,1395352,3,'Associate Producer'),(10198,1447357,4,'Characters'),(10198,1447376,9,'Supervising Animator'),(10198,1447390,10,'Visual Development'),(10198,1447390,7,'Background Designer'),(10198,1447394,2,'Layout'),(10198,1447419,7,'Background Designer'),(10198,1447423,7,'Background Designer'),(10198,1447427,2,'Layout'),(10198,1447436,2,'Layout'),(10198,1447499,4,'Characters'),(10198,1447556,9,'Compositors'),(10198,1447573,9,'Compositors'),(10198,1447587,2,'Layout'),(10198,1447590,2,'Layout'),(10198,1447595,2,'Layout'),(10198,1447598,2,'Layout'),(10198,1450357,7,'Background Designer'),(10198,1450357,10,'Visual Development'),(10198,1451279,10,'Visual Development'),(10198,1451279,2,'Layout'),(10198,1453550,10,'Visual Development'),(10198,1457649,9,'Compositors'),(10198,1459630,7,'Background Designer'),(10198,1461357,10,'Visual Effects Supervisor'),(10198,1461361,10,'Visual Development'),(10198,1461378,9,'Supervising Animator'),(10198,1461379,2,'Layout'),(10198,1461382,7,'Background Designer'),(10198,1461394,2,'Layout'),(10198,1461395,9,'Supervising Animator'),(10198,1461396,2,'Layout'),(10198,1461397,2,'Layout'),(10198,1461399,10,'Visual Development'),(10198,1461399,7,'Background Designer'),(10198,1461401,2,'Layout'),(10198,1461408,2,'Layout'),(10198,1461410,7,'Background Designer'),(10198,1463336,10,'Visual Development'),(10198,1463902,10,'Visual Development'),(10198,1464355,3,'Executive In Charge Of Post Production'),(10198,1464375,7,'Background Designer'),(10198,1464375,10,'Visual Development'),(10198,1464406,3,'Production Supervisor'),(10198,1464410,10,'Visual Development'),(10198,1552486,9,'Supervising Animator'),(10198,1563747,9,'Supervising Animator'),(10198,1615296,10,'Visual Development'),(10198,1615536,4,'Story'),(10198,1615551,9,'Technical Supervisor'),(10198,1615553,4,'Original Story'),(10198,1615555,3,'Executive Producer'),(10198,1615556,10,'Visual Development'),(10198,1615556,7,'Production Design'),(10198,1615563,10,'Visual Development'),(10198,1615564,4,'Characters'),(10198,1615571,2,'Layout'),(10198,1615576,2,'Layout'),(10198,1615580,7,'Background Designer'),(10198,1615581,7,'Background Designer'),(10198,1615582,7,'Background Designer'),(24113,7795,4,'Writer'),(24113,36804,2,'Director'),(24113,1711837,9,'Transportation Captain'),(11322,2952,3,'Casting'),(11322,380,3,'Executive Producer'),(11322,557,8,'Costume Design'),(11322,638,4,'Screenplay'),(11322,638,2,'Director'),(11322,638,3,'Producer'),(11322,10816,5,'Editor'),(11322,897,3,'Casting'),(11322,2484,5,'Additional Editing'),(11322,3305,3,'Executive Producer'),(11322,5336,8,'Makeup Artist'),(11322,5581,6,'Original Music Composer'),(11322,8287,8,'Set Costumer'),(11322,8848,7,'Art Direction'),(11322,12035,7,'Supervising Art Director'),(11322,13588,7,'Set Decoration'),(11322,11099,1,'Director of Photography'),(11322,15327,7,'Production Design'),(11322,35176,5,'Editor'),(11322,25201,10,'Visual Effects Supervisor'),(11322,17815,4,'Screenplay'),(11322,23226,3,'Executive Producer'),(11322,57343,3,'Producer'),(11322,65327,10,'Visual Effects Producer'),(11322,70306,4,'Novel'),(11322,84665,4,'Screenplay'),(11322,92467,10,'Visual Effects Supervisor'),(11322,92475,10,'Visual Effects Producer'),(11322,73916,6,'ADR & Dubbing'),(11322,73916,5,'Dialogue Editor'),(11322,578778,10,'Visual Effects Supervisor'),(11322,938105,9,'Visual Effects Editor'),(11322,1012269,7,'Art Department Coordinator'),(11322,1089662,8,'Set Costumer'),(11322,1116937,6,'Foley'),(11322,1177364,1,'Steadicam Operator'),(11322,1227175,6,'Sound Effects Editor'),(11322,1251373,9,'Stunts'),(11322,1269676,8,'Makeup Artist'),(11322,1316003,8,'Makeup Department Head'),(11322,1318192,3,'Casting Associate'),(11322,1325235,8,'Costume Supervisor'),(11322,1336715,10,'Visual Effects Producer'),(11322,1341786,6,'Sound Effects Editor'),(11322,1352600,3,'Casting Associate'),(11322,1360109,10,'Visual Effects Producer'),(11322,1367672,11,'Gaffer'),(11322,1380479,6,'Supervising Sound Editor'),(11322,1386923,2,'Script Supervisor'),(11322,1388888,8,'Set Costumer'),(11322,1390360,10,'Visual Effects Supervisor'),(11322,1393883,1,'Still Photographer'),(11322,1395430,7,'Art Department Coordinator'),(11322,1397823,6,'Foley'),(11322,1399914,6,'Supervising Sound Editor'),(11322,1400812,6,'ADR & Dubbing'),(11322,1400812,5,'Dialogue Editor'),(11322,1401891,9,'Visual Effects Editor'),(11322,1403411,1,'Camera Operator'),(11322,1403643,2,'Script Supervisor'),(11322,1404366,6,'ADR & Dubbing'),(11322,1404366,5,'Dialogue Editor'),(11322,1404763,6,'ADR & Dubbing'),(11322,1404763,5,'Dialogue Editor'),(11322,1405419,5,'Digital Intermediate'),(11322,1406389,6,'Sound Effects Editor'),(11322,1409245,5,'Digital Intermediate'),(11322,1409831,9,'Second Unit Cinematographer'),(11322,1412213,9,'Choreographer'),(11322,1413092,6,'Sound Effects Editor'),(11322,1413153,7,'Construction Coordinator'),(11322,1414531,5,'First Assistant Editor'),(11322,1415007,6,'ADR & Dubbing'),(11322,1415007,5,'Dialogue Editor'),(11322,1415503,8,'Assistant Costume Designer'),(11322,1416584,10,'Special Effects Supervisor'),(11322,1424160,6,'ADR & Dubbing'),(11322,1424160,5,'Dialogue Editor'),(11322,1428190,9,'Special Effects Coordinator'),(11322,1428226,8,'Costume Supervisor'),(11322,1459647,6,'Sound Re-Recording Mixer'),(11322,1461178,1,'Camera Operator'),(11322,1524757,8,'Hair Department Head'),(11322,1533039,9,'Armorer'),(11322,1536948,8,'Key Hair Stylist'),(11322,1536949,8,'Wigmaker'),(11322,1536953,3,'Casting Associate'),(11322,1536954,8,'Set Costumer'),(11322,1536955,8,'Set Costumer'),(11322,1536956,8,'Set Costumer'),(11322,1536957,8,'Set Costumer'),(11322,1536961,2,'Script Coordinator'),(11322,1536962,3,'Researcher'),(11322,1536963,9,'Armorer'),(11322,1536964,9,'Armorer'),(11322,1536965,9,'Armorer'),(11322,1536966,3,'Researcher'),(11322,1536967,9,'Second Unit Cinematographer'),(11322,1536968,11,'Rigging Gaffer'),(11322,1536969,11,'Rigging Grip'),(11322,1536970,11,'Rigging Grip'),(11322,1536971,1,'First Assistant Camera'),(11322,1536972,1,'First Assistant Camera'),(11322,1536973,1,'First Assistant Camera'),(11322,1536974,6,'ADR & Dubbing'),(11322,1536975,6,'Sound Effects Editor'),(11322,1536976,5,'First Assistant Editor'),(11322,1536977,5,'First Assistant Editor'),(18487,2215,3,'Casting'),(18487,541,5,'Editor'),(18487,893,2,'Director'),(18487,4723,4,'Screenplay'),(18487,5332,8,'Costume Design'),(18487,5553,6,'Original Music Composer'),(18487,6911,4,'Novel'),(18487,15559,1,'Director of Photography'),(18487,32904,7,'Art Direction'),(18487,38939,3,'Producer'),(18487,51612,3,'Producer'),(18487,51613,3,'Producer'),(18487,60579,7,'Production Design'),(18487,957661,7,'Set Decoration'),(18487,1321372,8,'Makeup Department Head'),(18487,1321373,8,'Costume Supervisor'),(18487,1321374,8,'Costume Supervisor'),(18487,1401151,1,'Still Photographer'),(18487,1551025,6,'Production Sound Mixer'),(27581,312,6,'Music'),(27581,11409,9,'Cinematography'),(27581,23659,3,'Producer'),(27581,25600,3,'Producer'),(27581,41079,5,'Editor'),(27581,55710,2,'Director'),(27581,55710,4,'Screenplay'),(27581,55710,3,'Producer'),(27581,61397,3,'Producer'),(27581,99410,4,'Screenplay'),(10545,7902,3,'Casting'),(10545,7933,4,'Screenplay'),(10545,15813,6,'Original Music Composer'),(10545,15813,6,'Songs'),(10545,12824,3,'Producer'),(10545,16736,6,'Supervising Sound Editor'),(10545,37127,4,'Novel'),(10545,42910,6,'Songs'),(10545,56041,4,'Screenplay'),(10545,56612,3,'Co-Producer'),(10545,61950,4,'Screenplay'),(10545,61950,4,'Story'),(10545,62047,2,'Director'),(10545,62048,2,'Director'),(10545,65599,4,'Screenplay'),(10545,65600,4,'Screenplay'),(10545,65601,5,'Editor'),(10545,953331,9,'Executive Music Producer'),(10545,1113194,10,'Animation'),(10545,1392084,6,'Supervising Sound Editor'),(10545,1397666,6,'Music Editor'),(10545,1403636,5,'Dialogue Editor'),(10545,1447298,10,'Animation'),(10545,1447301,10,'Animation'),(10545,1447357,10,'Visual Development'),(10545,1447436,2,'Layout'),(10545,1447459,10,'Animation'),(10545,1447587,2,'Layout'),(10545,1447590,2,'Layout'),(10545,1450331,10,'Animation Supervisor'),(10545,1455541,10,'Animation'),(10545,1536361,5,'Dialogue Editor'),(10545,1552863,7,'Art Direction'),(10545,1629419,9,'Post Production Supervisor'),(10545,1629867,3,'Associate Producer'),(11688,11,4,'Screenplay'),(11688,4500,6,'Original Music Composer'),(11688,7902,3,'Casting'),(11688,7903,3,'Casting'),(11688,15812,4,'Original Story'),(11688,12824,3,'Executive Producer'),(11688,21103,6,'Sound Designer'),(11688,51701,5,'Editor'),(11688,56147,10,'Visual Development'),(11688,61411,2,'Director'),(11688,61411,4,'Story'),(11688,61419,3,'Casting'),(11688,61417,3,'Producer'),(11688,70238,4,'Story'),(11688,70240,7,'Production Design'),(11688,71855,5,'Editor'),(11688,74976,6,'Sound Re-Recording Mixer'),(11688,74978,6,'Sound Re-Recording Mixer'),(11688,83091,6,'Sound Re-Recording Mixer'),(11688,986240,7,'Art Direction'),(11688,1447370,10,'Animation'),(11688,1452489,1,'Director of Photography'),(11688,1457930,10,'Animation'),(11688,1460431,5,'First Assistant Editor'),(11688,1713397,7,'Co-Art Director'),(11688,1813303,6,'Music Editor'),(11688,1814098,6,'Music Editor'),(16523,31,3,'Producer'),(16523,5953,4,'Screenplay'),(16523,5953,2,'Director'),(16523,6955,3,'Producer'),(16523,27098,3,'Producer'),(16523,52693,3,'Producer'),(16523,84414,4,'Screenplay'),(16523,110564,3,'Producer'),(16523,110564,4,'Author'),(18162,2952,3,'Casting'),(18162,647,1,'Director of Photography'),(18162,4769,3,'Executive Producer'),(18162,5133,7,'Production Design'),(18162,11887,2,'Director'),(18162,11887,3,'Executive Producer'),(18162,14348,7,'Set Decoration'),(18162,15347,6,'Original Music Composer'),(18162,11372,5,'Editor'),(18162,40471,8,'Costume Design'),(18162,54419,3,'Executive Producer'),(18162,55710,3,'Executive Producer'),(18162,61397,3,'Producer'),(18162,66822,3,'Executive Producer'),(18162,92342,3,'Producer'),(18162,80175,3,'Producer'),(18162,99410,4,'Writer'),(18162,141524,4,'Writer'),(18162,944363,3,'Producer'),(18162,944363,4,'Original Story'),(18162,944364,3,'Producer'),(18162,944364,4,'Original Story'),(18162,1125156,3,'Producer'),(18162,1125157,3,'Producer'),(18162,1125158,3,'Producer'),(18162,1453019,9,'Technical Supervisor'),(18162,1460634,9,'Visual Effects Art Director'),(10214,9645,1,'Director of Photography'),(10214,14457,5,'Editor'),(10214,14712,6,'Original Music Composer'),(10214,51385,3,'Producer'),(10214,64191,2,'Director'),(10214,64192,4,'Screenplay'),(10214,1378226,6,'Sound Re-Recording Mixer'),(10214,1447431,7,'Background Designer'),(10214,1447436,7,'Background Designer'),(10214,1452488,3,'Production Manager'),(10214,1453594,10,'Animation'),(10214,1453943,9,'Technical Supervisor'),(10214,1460488,9,'Special Effects'),(11692,853,5,'Editor'),(11692,1151,3,'Producer'),(11692,11098,6,'Original Music Composer'),(11692,11409,1,'Director of Photography'),(11692,10766,5,'Editor'),(11692,33485,2,'Director'),(11692,56109,3,'Producer'),(11692,57652,3,'Producer'),(11692,59648,4,'Screenplay'),(22972,1325,3,'Casting'),(22972,1993,3,'Producer'),(22972,2031,3,'Casting'),(22972,2236,3,'Producer'),(22972,2238,3,'Producer'),(22972,2532,3,'Casting'),(22972,3501,3,'Casting'),(22972,4723,4,'Writer'),(22972,5333,8,'Makeup Department Head'),(22972,7049,6,'Music Editor'),(22972,9150,3,'Executive Producer'),(22972,9151,3,'Executive Producer'),(22972,11271,8,'Costume Design'),(22972,40805,5,'First Assistant Editor'),(22972,40823,6,'Foley'),(22972,11098,6,'Original Music Composer'),(22972,12562,6,'ADR & Dubbing'),(22972,15493,1,'Director of Photography'),(22972,15493,1,'Camera Operator'),(22972,16683,6,'Sound Effects Editor'),(22972,25068,9,'Stunt Coordinator'),(22972,25598,2,'Director'),(22972,25598,3,'Producer'),(22972,27032,7,'Production Design'),(22972,29405,5,'Editor'),(22972,29405,3,'Producer'),(22972,57201,3,'Producer'),(22972,59679,3,'Producer'),(22972,59681,3,'Producer'),(22972,67201,9,'Visual Effects Editor'),(22972,114395,4,'Author'),(22972,114395,4,'Screenplay'),(22972,117206,8,'Hairstylist'),(22972,122274,10,'Visual Effects Supervisor'),(22972,122277,3,'Unit Production Manager'),(22972,122354,9,'Stunt Coordinator'),(22972,122355,9,'Stunt Coordinator'),(22972,122356,9,'Stunt Coordinator'),(22972,1117843,7,'Art Direction'),(22972,1319752,8,'Costume Supervisor'),(22972,1325212,7,'Set Decoration'),(22972,1332515,1,'Camera Operator'),(22972,1334493,7,'Art Department Coordinator'),(22972,1335123,9,'Transportation Coordinator'),(22972,1339054,9,'Second Unit Cinematographer'),(22972,1380895,5,'Dialogue Editor'),(22972,1390389,2,'Script Supervisor'),(22972,1392718,1,'Still Photographer'),(22972,1393119,6,'Sound Effects Editor'),(22972,1393300,6,'Foley'),(22972,1393324,9,'CG Supervisor'),(22972,1395024,6,'Sound Re-Recording Mixer'),(22972,1399561,9,'Visual Effects Editor'),(22972,1400092,1,'Helicopter Camera'),(22972,1403800,6,'Foley'),(22972,1405423,9,'Picture Car Coordinator'),(22972,1406837,10,'Visual Effects Producer'),(22972,1408373,6,'Supervising Sound Editor'),(22972,1408378,6,'ADR & Dubbing'),(22972,1408384,10,'Visual Effects Supervisor'),(22972,1408403,5,'Digital Intermediate'),(22972,1410199,2,'Script Supervisor'),(22972,1411085,6,'Dolby Consultant'),(22972,1411533,9,'CG Supervisor'),(22972,1414101,5,'Digital Intermediate'),(22972,1415042,1,'Steadicam Operator'),(22972,1417825,9,'CG Supervisor'),(22972,1422985,9,'Transportation Coordinator'),(22972,1424572,5,'Digital Intermediate'),(22972,1425487,9,'Visual Effects Editor'),(22972,1427844,5,'Digital Intermediate'),(22972,1438432,9,'Unit Publicist'),(22972,1447603,9,'CG Supervisor'),(22972,1470158,8,'Hairstylist'),(22972,1470159,8,'Makeup Artist'),(22972,1470162,9,'Sequence Supervisor'),(22972,1470163,9,'Sequence Supervisor'),(22972,1470164,9,'Visual Effects Editor'),(22972,1470165,9,'Visual Effects Editor'),(22972,1470166,10,'Visual Effects Producer'),(22972,1470167,1,'Additional Photography'),(29193,4023,3,'Casting'),(29193,1225,6,'Music'),(29193,1265,3,'Executive Producer'),(29193,1255,4,'Writer'),(29193,1255,2,'Director'),(29193,3192,3,'Casting'),(29193,5328,3,'Casting'),(29193,12257,7,'Production Design'),(29193,10832,1,'Director of Photography'),(29193,16398,3,'Co-Producer'),(29193,20172,8,'Costume Design'),(29193,27562,3,'Producer'),(29193,53685,5,'Editor'),(29193,67094,3,'Executive Producer'),(29193,67095,7,'Set Decoration'),(29193,992965,2,'Script Supervisor'),(29193,1522736,7,'Art Direction'),(29193,1522737,7,'Art Department Coordinator'),(10501,1705,4,'Screenplay'),(10501,1706,4,'Screenplay'),(10501,947,6,'Original Music Composer'),(10501,5721,5,'Supervising Film Editor'),(10501,11098,6,'Original Music Composer'),(10501,12062,3,'Executive Producer'),(10501,12090,3,'Casting'),(10501,27005,2,'Director'),(10501,40347,5,'Supervising Film Editor'),(10501,25585,3,'Producer'),(10501,61295,3,'Producer'),(10501,65629,2,'Director'),(10501,65673,3,'Co-Executive Producer'),(10501,118713,10,'Animation'),(10501,148221,6,'Sound Effects Editor'),(10501,240779,10,'Animation'),(10501,1113194,10,'Animation'),(10501,1338976,6,'Sound Re-Recording Mixer'),(10501,1352979,6,'Supervising Music Editor'),(10501,1401687,6,'Sound Re-Recording Mixer'),(10501,1403439,6,'Supervising Sound Editor'),(10501,1403439,6,'Sound Designer'),(10501,1403440,6,'Supervising Sound Effects Editor'),(10501,1433743,6,'Music Editor'),(10501,1433743,5,'Editor'),(10501,1438901,2,'Layout'),(10501,1447298,9,'Supervising Animator'),(10501,1447381,10,'Animation'),(10501,1447385,10,'Animation'),(10501,1447560,9,'Sequence Leads'),(10501,1447593,2,'Layout'),(10501,1450331,10,'Animation Supervisor'),(10501,1451229,10,'Visual Development'),(10501,1453612,10,'Animation'),(10501,1454249,9,'Supervising Animator'),(10501,1462665,2,'Layout'),(10501,1463252,2,'Layout'),(10733,1720,3,'Casting'),(10733,1225,6,'Original Music Composer'),(10733,2945,4,'Screenplay'),(10733,4501,1,'Director of Photography'),(10733,5162,3,'Producer'),(10733,5541,3,'Executive Producer'),(10733,5545,3,'Associate Producer'),(10733,5545,2,'First Assistant Director'),(10733,6159,3,'Producer'),(10733,6184,3,'Executive Producer'),(10733,6186,3,'Unit Production Manager'),(10733,6188,3,'Associate Producer'),(10733,6897,9,'Stunts'),(10733,7855,7,'Production Design'),(10733,8411,8,'Costume Design'),(10733,11508,7,'Art Direction'),(10733,13189,5,'Color Timer'),(10733,21055,5,'Editor'),(10733,11310,9,'Special Effects Coordinator'),(10733,38022,7,'Art Direction'),(10733,54040,2,'Director'),(10733,54040,4,'Screenplay'),(10733,58726,4,'Screenplay'),(10733,71560,7,'Set Decoration'),(10733,75378,8,'Key Hair Stylist'),(10733,112609,6,'Sound Re-Recording Mixer'),(10733,91931,3,'Production Accountant'),(10733,91941,9,'Unit Publicist'),(10733,131198,1,'Additional Camera'),(10733,212135,7,'Title Designer'),(10733,554888,6,'Sound Effects Designer'),(10733,555329,8,'Key Makeup Artist'),(10733,935503,7,'Assistant Art Director'),(10733,943318,4,'Storyboard'),(10733,958691,7,'Set Designer'),(10733,960074,6,'Sound Editor'),(10733,1015925,2,'Script Supervisor'),(10733,1043374,6,'Musician'),(10733,1116937,6,'Foley'),(10733,1128354,3,'Location Manager'),(10733,1142796,8,'Makeup Artist'),(10733,1181711,8,'Seamstress'),(10733,1266649,9,'Systems Administrators & Support'),(10733,1313484,3,'Casting Assistant'),(10733,1323090,8,'Makeup Department Head'),(10733,1323092,8,'Costume Supervisor'),(10733,1328406,8,'Costume Supervisor'),(10733,1328407,8,'Costume Supervisor'),(10733,1336949,7,'Greensman'),(10733,1339436,7,'Assistant Art Director'),(10733,1341414,6,'Boom Operator'),(10733,1352979,6,'Music Editor'),(10733,1360097,5,'Dialogue Editor'),(10733,1364417,6,'Sound Re-Recording Mixer'),(10733,1365699,9,'Utility Stunts'),(10733,1368863,7,'Set Designer'),(10733,1372838,5,'Dialogue Editor'),(10733,1375038,9,'Transportation Captain'),(10733,1378239,9,'Stunt Coordinator'),(10733,1378239,9,'Second Unit'),(10733,1378765,1,'Still Photographer'),(10733,1386315,9,'Set Production Assistant'),(10733,1387265,6,'Music Editor'),(10733,1391130,1,'Camera Operator'),(10733,1397807,7,'Art Department Coordinator'),(10733,1397808,7,'Construction Coordinator'),(10733,1397809,9,'Property Master'),(10733,1397810,7,'Sculptor'),(10733,1397814,7,'Sculptor'),(10733,1397817,7,'Sculptor'),(10733,1397818,7,'Sculptor'),(10733,1397822,6,'Supervising Sound Editor'),(10733,1397823,6,'Foley'),(10733,1397844,9,'Sound Recordist'),(10733,1397846,10,'Visual Effects Supervisor'),(10733,1397847,10,'Visual Effects Producer'),(10733,1397848,9,'Visual Effects Editor'),(10733,1397849,1,'Still Photographer'),(10733,1397850,11,'Gaffer'),(10733,1397851,11,'Gaffer'),(10733,1397852,8,'Set Costumer'),(10733,1397853,8,'Set Costumer'),(10733,1397854,8,'Set Costumer'),(10733,1397855,9,'Transportation Coordinator'),(10733,1397856,9,'Choreographer'),(10733,1397857,9,'Studio Teachers'),(10733,1401123,7,'Set Dresser'),(10733,1404306,8,'Hair Department Head'),(10733,1417408,3,'Production Coordinator'),(10733,1418487,5,'Digital Intermediate'),(10733,1422979,6,'Sound Effects Editor'),(10733,1433719,6,'Foley Editor'),(10733,1446661,1,'Steadicam Operator'),(10733,1463693,11,'Electrician'),(10733,1521104,8,'Wigmaker'),(10733,1532720,8,'Assistant Costume Designer'),(10733,1534136,1,'Dolly Grip'),(10733,1534518,5,'Associate Editor'),(10733,1534893,6,'Music Supervisor'),(10733,1535399,1,'First Assistant Camera'),(10733,1535733,8,'Hairstylist'),(10733,1545169,6,'Orchestrator'),(10733,1546442,6,'Production Sound Mixer'),(10733,1551653,9,'Post Production Assistant'),(10733,1552336,5,'First Assistant Editor'),(10733,1567969,7,'Painter'),(10733,1571711,7,'Construction Foreman'),(10733,1571712,7,'Lead Painter'),(10733,1571713,7,'Leadman'),(10733,1571714,7,'Location Scout'),(10733,1571715,7,'Standby Painter'),(10733,1571716,1,'Camera Intern'),(10733,1571717,1,'Grip'),(10733,1571719,8,'Set Costumer'),(10733,1571745,9,'Armorer'),(10733,1571746,9,'Carpenter'),(10733,1571748,9,'Chef'),(10733,1571749,9,'Craft Service'),(10733,1571751,9,'Driver'),(10733,1571752,1,'Camera Loader'),(10733,1571755,9,'Post Production Supervisor'),(10733,1571759,9,'Propmaker'),(10733,1571761,9,'Quality Control Supervisor'),(10733,1571762,9,'Scenic Artist'),(10733,1571762,7,'Assistant Property Master'),(10733,1571764,9,'Set Medic'),(10733,1571766,9,'Stand In'),(10733,1571770,9,'Transportation Co-Captain'),(10733,1571771,9,'Video Assist Operator'),(10733,1571773,11,'Best Boy Electric'),(10733,1571774,11,'Rigging Grip'),(10733,1571775,3,'Production Office Coordinator'),(10733,1571776,3,'Production Supervisor'),(10733,1571778,6,'Supervising ADR Editor'),(10733,1571780,10,'3D Artist'),(10733,1571781,10,'Digital Compositors'),(10733,1571782,10,'Visual Effects Coordinator'),(10733,1571783,9,'Department Administrator'),(10733,1619081,8,'Key Costumer'),(10733,1680472,10,'Visual Effects'),(10733,1685571,6,'Utility Sound'),(10733,1740449,2,'Second Assistant Director'),(10733,1748475,8,'Tailor'),(10733,1748477,3,'Assistant Production Coordinator'),(10733,1748479,6,'Assistant Sound Editor'),(32657,2874,3,'Casting'),(32657,3275,3,'Casting'),(32657,10569,3,'Producer'),(32657,5362,3,'Casting'),(32657,5363,3,'Casting'),(32657,5582,1,'Director of Photography'),(32657,6057,8,'Costume Design'),(32657,6875,5,'Editor'),(32657,9041,7,'Production Design'),(32657,10965,2,'Director'),(32657,10965,3,'Producer'),(32657,11222,3,'Producer'),(32657,17828,3,'Producer'),(32657,23414,7,'Art Direction'),(32657,23486,6,'Original Music Composer'),(32657,42267,6,'Sound Re-Recording Mixer'),(32657,23812,7,'Art Direction'),(32657,112656,8,'Makeup Department Head'),(32657,58190,3,'Executive Producer'),(32657,60714,7,'Set Decoration'),(32657,61177,7,'Art Direction'),(32657,61647,3,'Executive Producer'),(32657,63720,3,'Executive Producer'),(32657,66513,9,'Post Production Supervisor'),(32657,67776,4,'Screenplay'),(32657,84127,3,'Executive Producer'),(32657,109514,4,'Novel'),(32657,138618,6,'Sound Re-Recording Mixer'),(32657,223991,7,'Supervising Art Director'),(32657,931858,7,'Art Direction'),(32657,1007395,9,'Stunts'),(32657,1325871,7,'Art Direction'),(32657,1335042,7,'Art Department Coordinator'),(32657,1349452,2,'First Assistant Director'),(32657,1355894,2,'Layout'),(32657,1378169,6,'Sound Re-Recording Mixer'),(32657,1378728,2,'Script Supervisor'),(32657,1389133,6,'Sound Designer'),(32657,1391699,1,'Still Photographer'),(32657,1399116,6,'Supervising Sound Editor'),(32657,1418404,11,'Rigging Gaffer'),(32657,1426761,8,'Hair Department Head'),(32657,1451676,9,'Visual Effects Editor'),(32657,1550399,6,'Sound Mixer'),(32657,1564160,11,'Gaffer'),(32657,1723719,9,'Stunts'),(32657,1734857,2,'Second Assistant Director'),(32657,1734859,3,'Associate Producer'),(22794,5666,6,'Original Music Composer'),(22794,7903,3,'Casting'),(22794,42272,3,'Producer'),(22794,65857,3,'Producer'),(22794,107446,4,'Screenplay'),(22794,107446,2,'Director'),(22794,111876,4,'Author'),(22794,111877,4,'Author'),(22794,155267,4,'Screenplay'),(22794,155267,2,'Director'),(22794,197803,4,'Screenplay'),(22794,966471,3,'Executive Producer'),(22794,968411,7,'Art Direction'),(22794,993265,5,'Editor'),(22794,1046497,7,'Production Design'),(22794,1118709,3,'Producer'),(22794,1205986,3,'Production Manager'),(22794,1447327,7,'Art Department Manager'),(22794,1447493,7,'Art Department Manager'),(22794,1453938,11,'Lighting Artist'),(22794,1457930,10,'Animation'),(10674,1760,6,'Original Music Composer'),(10674,12906,4,'Screenplay'),(10674,16736,6,'Sound Designer'),(10674,37078,4,'Screenplay'),(10674,66190,2,'Director'),(10674,66191,2,'Director'),(10674,66193,4,'Screenplay'),(10674,66194,4,'Screenplay'),(10674,66195,4,'Screenplay'),(10674,69163,3,'Producer'),(10674,74976,6,'Sound Re-Recording Mixer'),(10674,74978,6,'Sound Re-Recording Mixer'),(10674,83091,6,'Sound Re-Recording Mixer'),(10674,1113194,10,'Animation'),(10674,1397896,3,'Associate Producer'),(10674,1442567,5,'Editor'),(10674,1447375,10,'Animation'),(10674,1447380,10,'Animation'),(10674,1447576,10,'Visual Effects Supervisor'),(10674,1451228,7,'Production Design'),(10674,1453513,10,'Animation Supervisor'),(10674,1457930,10,'Animation'),(10674,1461391,10,'Lead Animator'),(10674,1813167,7,'Art Direction'),(10674,1813969,10,'Lead Animator'),(10674,1813970,10,'Visual Effects Supervisor'),(10674,1813971,3,'Associate Producer'),(10528,947,6,'Music'),(10528,956,2,'Director'),(10528,1091,3,'Producer'),(10528,1296,3,'Executive Producer'),(10528,1301,1,'Director of Photography'),(10528,41289,4,'Screenstory'),(10528,41289,3,'Producer'),(10528,11092,4,'Screenplay'),(10528,17166,8,'Costume Design'),(10528,17630,3,'Executive Producer'),(10528,25167,4,'Characters'),(10528,29018,3,'Executive Producer'),(10528,36656,7,'Production Design'),(10528,36658,7,'Set Decoration'),(10528,37162,3,'Producer'),(10528,56917,5,'Editor'),(10528,63127,3,'Producer'),(10528,71244,4,'Screenplay'),(10528,112689,4,'Screenstory'),(10528,112689,4,'Screenplay'),(10528,112690,3,'Producer'),(10528,112691,3,'Producer'),(10528,68016,6,'Orchestrator'),(10528,1018073,3,'Casting'),(10528,1181554,1,'Still Photographer'),(10865,1213,6,'Original Music Composer'),(10865,3996,6,'Sound Re-Recording Mixer'),(10865,7902,3,'Casting'),(10865,7903,3,'Casting'),(10865,8158,6,'ADR Editor'),(10865,8159,6,'Sound Designer'),(10865,8166,9,'Mix Technician'),(10865,12824,3,'Producer'),(10865,12891,4,'Story'),(10865,12899,9,'In Memory Of'),(10865,16737,6,'Supervising Music Editor'),(10865,66266,7,'Production Design'),(10865,113076,6,'Sound Effects Designer'),(10865,61419,3,'Casting Associate'),(10865,61950,4,'Screenplay'),(10865,61950,4,'Story'),(10865,62047,2,'Director'),(10865,62047,4,'Story'),(10865,62048,2,'Director'),(10865,62048,4,'Story'),(10865,65601,5,'Editor'),(10865,61381,9,'Post-Production Manager'),(10865,69613,6,'Supervising Sound Editor'),(10865,69613,5,'Associate Editor'),(10865,76003,9,'Dialect Coach'),(10865,132566,7,'Production Design'),(10865,133118,4,'Story'),(10865,133119,4,'Story'),(10865,212135,7,'Title Designer'),(10865,936765,6,'Orchestrator'),(10865,1034755,9,'Post Production Supervisor'),(10865,1249293,7,'Production Design'),(10865,1342663,6,'Music Editor'),(10865,1361021,9,'CGI Supervisor'),(10865,1397792,10,'Visual Effects Supervisor'),(10865,1397896,3,'Associate Producer'),(10865,1401196,1,'Still Photographer'),(10865,1401786,6,'Sound Effects Editor'),(10865,1447357,10,'Visual Development'),(10865,1447376,9,'Supervising Animator'),(10865,1447503,10,'Visual Effects'),(10865,1447573,10,'Color Designer'),(10865,1447576,10,'Visual Effects'),(10865,1448084,10,'Visual Effects'),(10865,1452489,10,'Visual Effects'),(10865,1461396,2,'Layout'),(10865,1463336,7,'Production Design'),(10865,1548698,6,'Conductor'),(10865,1552863,7,'Art Direction'),(10865,1552864,7,'Painter'),(10865,1552865,7,'Sculptor'),(10865,1552866,1,'Camera Operator'),(10865,1552870,9,'Additional Music'),(10865,1552871,9,'Compositors'),(10865,1552873,5,'Color Timer'),(10865,1552874,5,'First Assistant Editor'),(10865,1552880,3,'Production Accountant'),(10865,1552881,3,'Production Coordinator'),(10865,1552882,6,'Assistant Sound Editor'),(10865,1552883,6,'Foley Editor'),(10865,1552885,10,'Special Effects Supervisor'),(10865,1552887,9,'Projection'),(10865,1552890,11,'Lighting Artist'),(10865,1552894,4,'Book'),(10865,1738132,5,'Negative Cutter'),(10865,1738133,3,'Assistant Production Manager'),(10865,1738137,6,'Musician'),(10865,1738138,10,'Character Designer'),(10661,2529,7,'Set Decoration'),(10661,2593,6,'Original Music Composer'),(10661,7232,3,'Casting'),(10661,6187,3,'Associate Producer'),(10661,8281,7,'Set Designer'),(10661,11772,3,'Executive Producer'),(10661,17494,2,'Director'),(10661,19292,4,'Screenplay'),(10661,19292,3,'Producer'),(10661,20540,3,'Casting'),(10661,20821,3,'Producer'),(10661,20824,7,'Production Design'),(10661,20826,8,'Costume Design'),(10661,32899,3,'Unit Production Manager'),(10661,32903,7,'Art Direction'),(10661,41039,4,'Screenplay'),(10661,42632,1,'Director of Photography'),(10661,53684,4,'Screenplay'),(10661,53684,3,'Executive Producer'),(10661,60151,5,'Editor'),(10661,238446,3,'Production Supervisor'),(10661,963297,3,'Co-Producer'),(10661,1025712,7,'Art Direction'),(10661,1099878,3,'Casting Associate'),(10661,1322017,7,'Set Designer'),(10661,1391704,3,'Location Manager'),(10661,1399093,3,'Unit Production Manager'),(10661,1421646,3,'Line Producer'),(10661,1473981,2,'Script Supervisor'),(10661,1509405,3,'Location Manager'),(10661,1537168,3,'Production Coordinator'),(10661,1545387,3,'Production Supervisor'),(10661,1629419,9,'Post Production Supervisor'),(10661,1782373,3,'Associate Producer'),(10661,1782377,3,'Casting Assistant'),(10661,1782378,3,'Casting Assistant'),(10661,1782379,3,'Location Manager'),(10756,1217,5,'Editor'),(10756,1251,1,'Director of Photography'),(10756,9989,6,'Original Music Composer'),(10756,11772,3,'Executive Producer'),(10756,12824,3,'Producer'),(10756,15017,8,'Makeup Department Head'),(10756,18898,2,'Director'),(10756,18898,3,'Executive Producer'),(10756,54051,4,'Screenplay'),(10756,64830,3,'Producer'),(10756,1447474,10,'Animation'),(10756,1459789,10,'Visual Effects'),(10003,876,4,'Screenplay'),(10003,876,4,'Story'),(10003,5912,6,'Original Music Composer'),(10003,2485,3,'Casting'),(10003,4142,3,'Casting'),(10003,4611,3,'Producer'),(10003,5056,5,'Editor'),(10003,5322,3,'Producer'),(10003,9990,7,'Production Design'),(10003,10709,1,'Director of Photography'),(10003,12288,3,'Producer'),(10003,13015,2,'Director'),(10003,17880,4,'Screenplay'),(10003,42995,3,'Executive Producer'),(10003,61820,3,'Producer'),(10003,61821,3,'Executive Producer'),(10003,133223,4,'Characters'),(10003,1034749,3,'Producer'),(10357,37,6,'Original Music Composer'),(10357,908,5,'Editor'),(10357,8843,2,'Director'),(10357,11874,3,'Producer'),(10357,10815,1,'Director of Photography'),(10357,21807,4,'Screenplay'),(10357,57864,3,'Producer'),(10357,58208,5,'Editor'),(10357,64893,4,'Screenplay'),(10357,1551320,9,'Sound Recordist'),(10481,3393,6,'Music'),(10481,7783,1,'Director of Photography'),(10481,15775,2,'Director'),(10481,15779,5,'Editor'),(10481,11302,3,'Producer'),(10481,60534,4,'Screenplay'),(10481,60534,4,'Story'),(10481,60543,4,'Screenplay'),(10481,60543,4,'Story'),(10481,65536,4,'Novel'),(10481,65599,4,'Screenplay'),(10481,65600,4,'Screenplay'),(10481,1447497,10,'Visual Effects'),(22897,947,6,'Original Music Composer'),(22897,1484,3,'Casting'),(22897,2483,1,'Director of Photography'),(22897,2997,3,'Producer'),(22897,4186,5,'Editor'),(22897,5668,5,'Editor'),(22897,17698,4,'Screenplay'),(22897,17698,2,'Director'),(22897,17698,3,'Producer'),(22897,27095,3,'Executive Producer'),(22897,59706,6,'Original Music Composer'),(22897,68016,6,'Orchestrator'),(22897,1123348,3,'Executive Producer'),(10159,5553,6,'Original Music Composer'),(10159,7146,7,'Production Design'),(10159,9646,5,'Editor'),(10159,9043,8,'Costume Design'),(10159,15219,3,'Producer'),(10159,15559,1,'Director of Photography'),(10159,19863,7,'Art Direction'),(10159,23905,3,'Casting'),(10159,20204,4,'Screenplay'),(10159,36602,2,'Director'),(10159,49831,3,'Executive Producer'),(10159,55164,3,'Unit Production Manager'),(10159,57342,3,'Executive Producer'),(10159,57343,3,'Producer'),(10159,60699,3,'Executive Producer'),(10159,62724,7,'Art Direction'),(10159,20993,4,'Screenplay'),(10159,20993,4,'Writer'),(10159,64127,3,'Producer'),(10159,64128,3,'Producer'),(10159,65711,7,'Set Decoration'),(10159,1148226,3,'Executive Producer'),(10159,1197649,3,'Executive Producer'),(10159,1309209,8,'Makeup Artist'),(10159,1411166,8,'Hair Designer'),(10159,1458084,8,'Hairstylist'),(10159,1476769,9,'Post Production Supervisor'),(10159,1662775,3,'Executive In Charge Of Production'),(10159,1701738,8,'Makeup Artist'),(10159,1734655,3,'Production Manager'),(10159,1815345,9,'Makeup Effects'),(10159,1815346,8,'Makeup Artist'),(10159,1815348,8,'Makeup Artist'),(10159,1815349,8,'Makeup Artist'),(16858,853,5,'Editor'),(16858,1530,3,'Casting'),(16858,16298,3,'Executive Producer'),(16858,8885,8,'Costume Design'),(16858,14942,3,'Executive Producer'),(16858,15131,1,'Director of Photography'),(16858,20968,7,'Production Design'),(16858,32400,3,'Casting'),(16858,41156,7,'Set Decoration'),(16858,47373,3,'Executive Producer'),(16858,47373,4,'Writer'),(16858,66777,2,'Director'),(16858,66777,4,'Writer'),(16858,69343,6,'Original Music Composer'),(16858,1155688,7,'Set Decoration'),(22538,9341,1,'Director of Photography'),(22538,11090,2,'Director'),(22538,11090,4,'Screenplay'),(22538,23485,3,'Producer'),(22538,58744,4,'Screenplay'),(22538,88904,4,'Novel'),(22538,957038,6,'Music'),(12107,339,3,'Producer'),(12107,776,3,'Executive Producer'),(12107,3288,4,'Screenplay'),(12107,3289,4,'Screenplay'),(12107,3393,6,'Music'),(12107,3663,3,'Executive Producer'),(12107,4499,3,'Executive Producer'),(12107,4501,1,'Director of Photography'),(12107,4506,3,'Executive Producer'),(12107,5283,3,'Executive Producer'),(12107,13426,2,'Director'),(12107,46942,5,'Editor'),(12107,57327,4,'Screenplay'),(12107,57328,4,'Screenplay'),(16281,3027,4,'Screenplay'),(16281,14999,2,'Director'),(16281,14999,5,'Editor'),(16281,11620,7,'Art Direction'),(16281,11161,9,'Makeup Effects'),(16281,13367,6,'Original Music Composer'),(16281,15000,3,'Producer'),(16281,15056,1,'Director of Photography'),(16281,15840,5,'Editor'),(16281,10766,5,'Editor'),(16281,69888,3,'Executive Producer'),(16281,86058,3,'Associate Producer'),(16281,552621,7,'Production Design'),(16281,1209170,8,'Costume Design'),(16281,1501515,5,'Editor'),(11253,531,6,'Original Music Composer'),(11253,1093,3,'Producer'),(11253,1993,3,'Producer'),(11253,3113,1,'Director of Photography'),(11253,11271,8,'Costume Design'),(11253,10828,4,'Screenplay'),(11253,10828,2,'Director'),(11253,66266,4,'Story'),(11253,66266,3,'Co-Executive Producer'),(11253,66266,4,'Comic Book'),(11253,40832,3,'Producer'),(11253,8313,3,'Casting'),(11253,49670,3,'Casting'),(11253,1831266,9,'Stunts'),(27578,904,1,'Director of Photography'),(27578,2507,9,'Second Unit Cinematographer'),(27578,3965,3,'Casting'),(27578,13670,1,'Additional Photography'),(27578,6041,6,'Original Music Composer'),(27578,6880,7,'Set Decoration'),(27578,9441,6,'Foley'),(27578,51032,3,'Executive Producer'),(27578,40644,9,'Stunt Coordinator'),(27578,14378,7,'Art Direction'),(27578,15227,9,'Visual Effects Editor'),(27578,16483,4,'Screenplay'),(27578,16483,2,'Director'),(27578,16486,3,'Producer'),(27578,16492,7,'Production Design'),(27578,16830,3,'Executive Producer'),(27578,17207,3,'Executive Producer'),(27578,17209,3,'Producer'),(27578,22815,3,'Producer'),(27578,32806,5,'Digital Intermediate'),(27578,45829,3,'Executive Producer'),(27578,45830,3,'Executive Producer'),(27578,53758,3,'Executive Producer'),(27578,57264,4,'Screenplay'),(27578,57264,4,'Story'),(27578,67759,3,'Executive Producer'),(27578,67975,3,'Executive Producer'),(27578,77917,8,'Set Costumer'),(27578,79163,3,'Publicist'),(27578,80826,6,'Sound Effects Editor'),(27578,95640,1,'Camera Operator'),(27578,112188,9,'Special Effects Coordinator'),(27578,137125,6,'Sound Re-Recording Mixer'),(27578,138657,10,'Visual Effects Producer'),(27578,578721,8,'Makeup Artist'),(27578,578724,8,'Makeup Artist'),(27578,928329,8,'Costume Supervisor'),(27578,938105,5,'Editor'),(27578,963705,8,'Costume Design'),(27578,969645,3,'Executive Producer'),(27578,1034748,3,'Casting'),(27578,1077381,6,'Supervising Sound Editor'),(27578,1084754,1,'Camera Operator'),(27578,1084757,9,'Sound Recordist'),(27578,1159273,7,'Set Designer'),(27578,1316296,8,'Makeup Department Head'),(27578,1333931,9,'Property Master'),(27578,1335219,5,'Dialogue Editor'),(27578,1338148,7,'Set Designer'),(27578,1346489,5,'Editor'),(27578,1350243,10,'Visual Effects Supervisor'),(27578,1368859,7,'Set Designer'),(27578,1393401,8,'Set Costumer'),(27578,1393443,6,'ADR & Dubbing'),(27578,1393446,10,'Visual Effects Producer'),(27578,1396793,6,'Foley'),(27578,1396794,6,'Sound Re-Recording Mixer'),(27578,1396796,9,'Sound Recordist'),(27578,1396805,9,'Visual Effects Editor'),(27578,1396811,9,'Visual Effects Art Director'),(27578,1397855,9,'Picture Car Coordinator'),(27578,1400014,7,'Leadman'),(27578,1402047,2,'Script Supervisor'),(27578,1402708,8,'Hairstylist'),(27578,1402714,9,'Visual Effects Editor'),(27578,1402722,8,'Set Costumer'),(27578,1402724,2,'Script Supervisor'),(27578,1403392,7,'Assistant Art Director'),(27578,1403393,7,'Sculptor'),(27578,1403395,7,'Lead Painter'),(27578,1403397,7,'Construction Coordinator'),(27578,1403420,3,'Location Manager'),(27578,1405242,5,'Digital Intermediate'),(27578,1407339,8,'Hairstylist'),(27578,1407364,9,'Stunt Coordinator'),(27578,1412275,9,'Unit Publicist'),(27578,1412699,6,'Supervising Sound Effects Editor'),(27578,1412703,6,'Sound Effects Editor'),(27578,1413509,10,'Visual Effects Producer'),(27578,1414151,1,'Camera Operator'),(27578,1415083,7,'Greensman'),(27578,1424184,9,'Transportation Coordinator'),(27578,1425341,11,'Rigging Gaffer'),(27578,1425824,11,'Gaffer'),(27578,1425827,9,'Second Unit Cinematographer'),(27578,1425829,1,'Camera Operator'),(27578,1427436,9,'Transportation Coordinator'),(27578,1428227,8,'Set Costumer'),(27578,1429588,7,'Set Designer'),(27578,1431554,8,'Makeup Artist'),(27578,1434559,9,'Property Master'),(27578,1437284,7,'Art Direction'),(27578,1437285,8,'Hairstylist'),(27578,1437286,8,'Makeup Artist'),(27578,1437291,7,'Art Department Coordinator'),(27578,1437292,7,'Assistant Art Director'),(27578,1437295,7,'Greensman'),(27578,1437297,7,'Set Designer'),(27578,1437298,7,'Set Designer'),(27578,1437301,6,'Sound Re-Recording Mixer'),(27578,1437304,11,'Gaffer'),(27578,1437305,1,'Camera Operator'),(27578,1437306,1,'Camera Operator'),(27578,1437307,1,'Camera Operator'),(27578,1437308,1,'Camera Operator'),(27578,1437312,8,'Set Costumer'),(27578,1437313,5,'Digital Intermediate'),(27578,1437314,5,'First Assistant Editor'),(27578,1437315,6,'Music Editor'),(27578,1437316,2,'Script Supervisor'),(27578,1437317,3,'Location Manager'),(11544,37,6,'Original Music Composer'),(11544,900,6,'Sound Designer'),(11544,900,6,'Sound Re-Recording Mixer'),(11544,7902,3,'Casting'),(11544,7903,3,'Casting'),(11544,21201,5,'Editor'),(11544,61419,3,'Casting Associate'),(11544,65534,10,'Animation Supervisor'),(11544,66193,4,'Screenplay'),(11544,66193,2,'Director'),(11544,66193,4,'Idea'),(11544,69797,4,'Screenplay'),(11544,69797,2,'Director'),(11544,69798,3,'Producer'),(11544,70240,7,'Production Design'),(11544,74976,6,'Sound Re-Recording Mixer'),(11544,74978,6,'Sound Re-Recording Mixer'),(11544,83091,6,'Sound Re-Recording Mixer'),(11544,115755,10,'Lead Animator'),(11544,1339446,6,'Supervising Sound Editor'),(11544,1394306,6,'Music Editor'),(11544,1400906,6,'Sound Effects Editor'),(11544,1414178,6,'Sound Effects Editor'),(11544,1422411,6,'Sound Effects Editor'),(11544,1447362,7,'Painter'),(11544,1448489,7,'Painter'),(11544,1453513,10,'Animation Supervisor'),(11544,1777864,10,'Lead Animator'),(11544,1777882,10,'Lead Animator'),(11544,1777884,10,'Lead Animator'),(11544,1809268,10,'Visual Effects Supervisor'),(11544,1813167,7,'Art Direction'),(11544,1813169,3,'Production Manager'),(11665,282,3,'Producer'),(11665,894,6,'Original Music Composer'),(11665,1296,3,'Executive Producer'),(11665,3276,3,'Casting'),(11665,4495,3,'Executive Producer'),(11665,4501,1,'Director of Photography'),(11665,9646,5,'Editor'),(11665,13426,2,'Director'),(11665,13426,3,'Executive Producer'),(11665,29216,9,'Associate Choreographer'),(11665,37436,3,'Producer'),(11665,51327,4,'Screenplay'),(11665,51328,4,'Screenplay'),(11665,71079,3,'Producer'),(11324,149,1,'Director of Photography'),(11324,1032,2,'Director'),(11324,1032,3,'Producer'),(11324,1638,6,'Supervising Sound Editor'),(11324,2242,3,'Casting'),(11324,2366,7,'Production Design'),(11324,3661,5,'Editor'),(11324,4187,7,'Supervising Art Director'),(11324,4722,4,'Novel'),(11324,9026,7,'Set Decoration'),(11324,9027,8,'Costume Design'),(11324,20294,4,'Screenplay'),(11324,18900,7,'Art Direction'),(11324,20206,3,'Producer'),(11324,20207,3,'Producer'),(11324,72861,6,'Music Supervisor'),(11324,99426,5,'Dialogue Editor'),(11324,932187,7,'Art Direction'),(11324,983118,1,'Steadicam Operator'),(11324,1318806,8,'Makeup Department Head'),(11324,1332188,8,'Hair Department Head'),(11324,1333223,6,'Supervising Sound Editor'),(11324,1386920,1,'Still Photographer'),(11324,1400072,6,'Sound Re-Recording Mixer'),(11324,1402037,6,'Music Editor'),(11324,1402038,3,'Location Manager'),(11324,1539947,3,'Executive Producer'),(11324,1544546,3,'Casting Associate'),(11324,1552027,6,'Sound mixer'),(12193,368,3,'Producer'),(12193,904,1,'Director of Photography'),(12193,1891,5,'Editor'),(12193,7234,7,'Production Design'),(12193,4504,3,'Producer'),(12193,4507,3,'Producer'),(12193,4937,3,'Producer'),(12193,12708,3,'Executive Producer'),(12193,21635,3,'Producer'),(12193,39993,6,'Original Music Composer'),(12193,51985,3,'Executive Producer'),(12193,58870,3,'Executive Producer'),(12193,71600,2,'Director'),(12193,71601,4,'Screenplay'),(12193,71602,4,'Screenplay'),(12193,960323,8,'Costume Design'),(12193,1338840,2,'Script Supervisor'),(12193,1339468,2,'Script Supervisor'),(12193,1415109,1,'Still Photographer'),(12193,1511710,6,'Sound mixer'),(10202,20739,2,'Director'),(10202,29216,9,'Choreographer'),(10202,56728,4,'Screenplay'),(10202,60212,4,'Screenplay'),(13027,8387,10,'Visual Effects Producer'),(13027,120,1,'Director of Photography'),(13027,488,3,'Executive Producer'),(13027,11079,7,'Set Decoration'),(13027,2486,7,'Production Design'),(13027,6041,6,'Original Music Composer'),(13027,9618,7,'Art Direction'),(13027,9621,9,'Special Effects Coordinator'),(13027,10179,4,'Author'),(13027,10974,10,'Visual Effects Supervisor'),(13027,13166,6,'Sound Effects Editor'),(13027,14764,6,'Sound Effects Editor'),(13027,14765,6,'Supervising Sound Editor'),(13027,15328,7,'Supervising Art Director'),(13027,15345,3,'Producer'),(13027,15346,3,'Producer'),(13027,17677,7,'Art Direction'),(13027,20406,9,'Second Unit Cinematographer'),(13027,21470,7,'Art Direction'),(13027,25600,3,'Producer'),(13027,40256,2,'Director'),(13027,42633,5,'Editor'),(13027,46592,7,'Set Designer'),(13027,54777,3,'Casting'),(13027,60284,8,'Costume Design'),(13027,62723,5,'Digital Intermediate'),(13027,74109,4,'Author'),(13027,83085,6,'Sound Effects Editor'),(13027,86595,8,'Hairstylist'),(13027,132609,6,'Sound Re-Recording Mixer'),(13027,134564,8,'Makeup Artist'),(13027,135727,1,'Camera Operator'),(13027,548437,5,'Dialogue Editor'),(13027,930028,1,'Camera Operator'),(13027,944480,4,'Writer'),(13027,957551,8,'Makeup Department Head'),(13027,1034748,3,'Casting'),(13027,1064648,1,'Camera Operator'),(13027,1183452,1,'Still Photographer'),(13027,1186279,1,'Steadicam Operator'),(13027,1192052,9,'Visual Effects Editor'),(13027,1321589,8,'Costume Supervisor'),(13027,1338372,6,'Foley'),(13027,1339439,7,'Art Department Coordinator'),(13027,1342658,5,'Dialogue Editor'),(13027,1357064,1,'Camera Operator'),(13027,1360108,10,'Visual Effects Supervisor'),(13027,1360109,10,'Visual Effects Producer'),(13027,1378173,1,'Still Photographer'),(13027,1378222,7,'Construction Coordinator'),(13027,1378241,1,'Camera Operator'),(13027,1391571,6,'Sound Re-Recording Mixer'),(13027,1392116,7,'Set Designer'),(13027,1392896,7,'Assistant Art Director'),(13027,1395430,7,'Art Department Coordinator'),(13027,1399141,6,'Sound Effects Editor'),(13027,1400079,1,'Additional Camera'),(13027,1400563,10,'Visual Effects Producer'),(13027,1400738,2,'Script Supervisor'),(13027,1403415,1,'Helicopter Camera'),(13027,1404212,6,'Supervising Sound Editor'),(13027,1404217,6,'Sound Effects Editor'),(13027,1404533,10,'Visual Effects Supervisor'),(13027,1405382,5,'Dialogue Editor'),(13027,1405419,5,'Digital Intermediate'),(13027,1406105,9,'Visual Effects Editor'),(13027,1406389,6,'Sound Effects Editor'),(13027,1406390,6,'Sound Effects Editor'),(13027,1406616,6,'ADR & Dubbing'),(13027,1406792,9,'Unit Publicist'),(13027,1407023,1,'Camera Operator'),(13027,1408292,8,'Hairstylist'),(13027,1408396,11,'Gaffer'),(13027,1411541,5,'Digital Intermediate'),(13027,1413125,8,'Set Costumer'),(13027,1416056,8,'Hairstylist'),(13027,1422073,9,'Transportation Coordinator'),(13027,1424149,8,'Hairstylist'),(13027,1425909,7,'Sculptor'),(13027,1427397,8,'Makeup Department Head'),(13027,1428122,8,'Hairstylist'),(13027,1428125,8,'Hairstylist'),(13027,1428126,8,'Makeup Artist'),(13027,1428127,8,'Makeup Artist'),(13027,1428128,9,'Property Master'),(13027,1428129,9,'Property Master'),(13027,1428130,7,'Construction Coordinator'),(13027,1428131,9,'Property Master'),(13027,1428132,7,'Construction Coordinator'),(13027,1428136,7,'Leadman'),(13027,1428137,7,'Leadman'),(13027,1428140,7,'Leadman'),(13027,1428141,7,'Leadman'),(13027,1428142,7,'Set Designer'),(13027,1428190,9,'Special Effects Coordinator'),(13027,1428191,9,'CGI Supervisor'),(13027,1428195,9,'CG Supervisor'),(13027,1428196,10,'Visual Effects Producer'),(13027,1428198,10,'Visual Effects Producer'),(13027,1428201,10,'Visual Effects Supervisor'),(13027,1428202,9,'Stunt Coordinator'),(13027,1428208,11,'Rigging Gaffer'),(13027,1428209,11,'Rigging Gaffer'),(13027,1428210,11,'Rigging Gaffer'),(13027,1428226,8,'Costume Supervisor'),(13027,1428227,8,'Set Costumer'),(13027,1428228,8,'Set Costumer'),(13027,1428229,6,'Music Editor'),(13027,1428230,9,'Picture Car Coordinator'),(13027,1463390,6,'Sound mixer'),(13027,1596827,4,'Writer'),(20504,36,1,'Director of Photography'),(20504,3718,3,'Producer'),(20504,1091,3,'Producer'),(20504,5292,3,'Producer'),(20504,6044,3,'Casting'),(20504,11447,2,'Director'),(20504,11448,2,'Director'),(20504,13586,7,'Art Direction'),(20504,15436,10,'Visual Effects Supervisor'),(20504,15573,8,'Costume Design'),(20504,29019,7,'Production Design'),(20504,37162,3,'Executive Producer'),(20504,39726,3,'Executive Producer'),(20504,47642,5,'Editor'),(20504,46082,7,'Assistant Art Director'),(20504,47285,3,'Producer'),(20504,47286,3,'Producer'),(20504,59287,9,'Makeup Effects'),(20504,60665,3,'Casting'),(20504,62741,3,'Executive Producer'),(20504,65725,7,'Set Decoration'),(20504,86239,4,'Writer'),(20504,95835,6,'Supervising Sound Editor'),(20504,95835,6,'Sound Designer'),(20504,142391,6,'Original Music Composer'),(20504,169628,9,'Stunt Coordinator'),(20504,956249,3,'Co-Producer'),(20504,968470,6,'Original Music Composer'),(20504,968471,6,'Original Music Composer'),(20504,1077782,6,'Foley'),(20504,1117311,3,'Co-Producer'),(20504,1117313,3,'Co-Producer'),(20504,1269670,8,'Makeup Department Head'),(20504,1322481,7,'Set Designer'),(20504,1327027,10,'Visual Effects Supervisor'),(20504,1328407,8,'Costume Supervisor'),(20504,1339435,7,'Set Designer'),(20504,1357051,7,'Set Designer'),(20504,1357056,7,'Set Designer'),(20504,1368864,6,'Sound Re-Recording Mixer'),(20504,1390524,6,'Sound Effects Editor'),(20504,1394130,6,'Sound Re-Recording Mixer'),(20504,1394750,10,'Visual Effects Producer'),(20504,1394755,10,'Visual Effects Supervisor'),(20504,1394768,1,'Camera Operator'),(20504,1397817,7,'Sculptor'),(20504,1398118,7,'Construction Coordinator'),(20504,1399694,3,'Associate Producer'),(20504,1399872,10,'Visual Effects Producer'),(20504,1399929,5,'Digital Intermediate'),(20504,1400399,6,'Foley'),(20504,1401566,10,'Visual Effects Producer'),(20504,1401587,9,'Visual Effects Editor'),(20504,1403405,9,'Visual Effects Editor'),(20504,1403504,9,'Visual Effects Editor'),(20504,1404276,8,'Hairstylist'),(20504,1406079,8,'Makeup Artist'),(20504,1406080,8,'Hairstylist'),(20504,1406081,7,'Art Department Coordinator'),(20504,1406083,7,'Assistant Art Director'),(20504,1406084,9,'Property Master'),(20504,1406086,7,'Set Designer'),(20504,1406089,9,'Scenic Artist'),(20504,1406090,7,'Leadman'),(20504,1406091,7,'Greensman'),(20504,1406093,7,'Greensman'),(20504,1406095,7,'Greensman'),(20504,1406098,6,'Supervising Sound Editor'),(20504,1406098,6,'Sound Designer'),(20504,1406101,5,'Dialogue Editor'),(20504,1406105,9,'Visual Effects Editor'),(20504,1406106,10,'Visual Effects Supervisor'),(20504,1406110,10,'Visual Effects Producer'),(20504,1406116,10,'Visual Effects Producer'),(20504,1406124,1,'Camera Operator'),(20504,1406128,11,'Gaffer'),(20504,1406130,8,'Set Costumer'),(20504,1406131,8,'Set Costumer'),(20504,1406132,8,'Set Costumer'),(20504,1406133,8,'Set Costumer'),(20504,1406134,5,'First Assistant Editor'),(20504,1406138,9,'Unit Publicist'),(20504,1406139,3,'Location Manager'),(20504,1546008,8,'Makeup Artist'),(20504,1680739,9,'Stunts'),(11618,461,8,'Costume Supervisor'),(11618,488,3,'Executive Producer'),(11618,488,9,'Second Unit Cinematographer'),(11618,490,3,'Producer'),(11618,493,5,'Editor'),(11618,1760,6,'Original Music Composer'),(11618,1761,6,'Orchestrator'),(11618,11079,7,'Set Decoration'),(11618,2209,2,'Director'),(11618,2209,3,'Executive Producer'),(11618,2216,6,'Sound Designer'),(11618,7735,8,'Costume Design'),(11618,10631,9,'Special Effects Coordinator'),(11618,6923,7,'Art Direction'),(11618,7727,10,'Visual Effects Supervisor'),(11618,8159,9,'Sound Design Assistant'),(11618,8166,9,'Mix Technician'),(11618,8525,7,'Art Direction'),(11618,8677,1,'Director of Photography'),(11618,10753,7,'Art Direction'),(11618,11655,3,'Unit Production Manager'),(11618,11655,3,'Associate Producer'),(11618,14460,10,'Special Effects Supervisor'),(11618,15893,6,'Sound Effects Editor'),(11618,15225,6,'Music Editor'),(11618,16158,3,'Producer'),(11618,15317,10,'Visual Effects Coordinator'),(11618,14657,6,'Foley'),(11618,15572,7,'Supervising Art Director'),(11618,18322,3,'Producer'),(11618,20540,3,'Casting'),(11618,20846,5,'First Assistant Editor'),(11618,42265,3,'Location Manager'),(11618,30904,3,'Executive Producer'),(11618,34526,7,'Sculptor'),(11618,35021,4,'Screenplay'),(11618,39923,7,'Production Illustrator'),(11618,70038,4,'Novel'),(11618,118867,1,'First Assistant Camera'),(11618,138617,5,'Dialogue Editor'),(11618,165734,9,'Dialect Coach'),(11618,961533,7,'Production Design'),(11618,977230,9,'Loader'),(11618,1325234,8,'Makeup Artist'),(11618,1327842,5,'Assistant Editor'),(11618,1339432,9,'Post Production Supervisor'),(11618,1339446,6,'Supervising Sound Editor'),(11618,1339862,10,'Animation'),(11618,1378162,7,'Construction Coordinator'),(11618,1378236,10,'Visual Effects Supervisor'),(11618,1378240,1,'Still Photographer'),(11618,1391565,7,'Set Designer'),(11618,1395460,10,'Animation Supervisor'),(11618,1400092,1,'Aerial Camera'),(11618,1400535,1,'Steadicam Operator'),(11618,1400539,9,'Unit Publicist'),(11618,1401363,9,'Stunt Coordinator'),(11618,1405420,9,'Transportation Coordinator'),(11618,1412188,8,'Key Hair Stylist'),(11618,1412990,1,'Camera Operator'),(11618,1431999,8,'Wigmaker'),(11618,1435576,8,'Hairstylist'),(11618,1452631,10,'Digital Compositors'),(11618,1452751,11,'Gaffer'),(11618,1456474,6,'ADR & Dubbing'),(11618,1457926,9,'Stunts'),(11618,1463304,4,'Storyboard'),(11618,1463696,11,'Best Boy Electric'),(11618,1550729,9,'Visual Effects Editor'),(11618,1551104,11,'Rigging Gaffer'),(11618,1552549,5,'Color Timer'),(11618,1555380,10,'I/O Supervisor'),(11618,1558210,9,'Production Controller'),(11618,1567969,7,'Painter'),(11618,1576017,6,'Production Sound Mixer'),(11618,1585016,2,'Assistant Director'),(11618,1586927,9,'Post Production Assistant'),(11618,1589709,5,'Editorial Production Assistant'),(11618,1589728,6,'Assistant Sound Editor'),(11618,1600111,11,'Rigging Grip'),(11618,1619084,9,'Craft Service'),(11618,1640410,3,'Production Coordinator'),(11618,1648126,9,'Set Medic'),(11618,1684382,11,'Electrician'),(11618,1722373,1,'Grip'),(11618,1737233,8,'Set Costumer'),(11618,1737829,6,'Boom Operator'),(11618,1746540,7,'Leadman'),(11618,1758681,9,'Driver'),(11618,1765727,8,'Costume Design'),(11618,1765769,7,'Art Department Coordinator'),(11618,1765770,7,'Standby Painter'),(11618,1765783,8,'Set Dressing Artist'),(11618,1765784,9,'Carpenter'),(11618,1765785,9,'Chef'),(11618,1765790,9,'Picture Car Coordinator'),(11618,1765792,9,'Projection'),(11618,1765793,9,'Propmaker'),(11618,1765794,7,'Property Master'),(11618,1765795,9,'Stand In'),(11618,1765796,9,'Systems Administrators & Support'),(11618,1765797,9,'Video Assist Operator'),(11618,1765800,11,'Lighting Technician'),(11618,1765801,3,'Production Accountant'),(11618,1765803,3,'Production Manager'),(11618,1765817,10,'3D Artist'),(11618,1765818,10,'Visual Effects Producer'),(11618,1765820,9,'Visual Effects Art Director'),(12096,1927,4,'Characters'),(12096,9199,7,'Production Design'),(12096,6493,3,'Casting'),(12096,7184,5,'Editor'),(12096,14255,4,'Characters'),(12096,67773,4,'Screenplay'),(12096,17825,2,'Director'),(12096,18173,7,'Set Decoration'),(12096,37012,5,'Editor'),(12096,23486,6,'Original Music Composer'),(12096,29015,3,'Producer'),(12096,52161,6,'Music Supervisor'),(12096,52871,4,'Screenplay'),(12096,52871,4,'Story'),(12096,56791,1,'Director of Photography'),(12096,58013,3,'Executive Producer'),(12096,60014,7,'Art Direction'),(12096,67914,3,'Executive Producer'),(12096,71225,4,'Story'),(12096,1074163,9,'Stunt Coordinator'),(12096,1395369,1,'Still Photographer'),(12096,1450362,10,'Visual Effects'),(12096,1533038,2,'Script Supervisor'),(10200,5362,3,'Casting'),(10200,5363,3,'Casting'),(10200,6044,3,'Casting'),(10200,6207,7,'Construction Coordinator'),(10200,6391,7,'Production Design'),(10200,6800,1,'Director of Photography'),(10200,10950,3,'Producer'),(10200,10957,5,'Editor'),(10200,9349,6,'Sound Designer'),(10200,9349,6,'Supervising Sound Editor'),(10200,15221,6,'Music'),(10200,15225,6,'Music Editor'),(10200,16601,10,'Visual Effects Supervisor'),(10200,16994,6,'Sound Effects Editor'),(10200,21527,4,'Screenplay'),(10200,11021,7,'Set Decoration'),(10200,29233,8,'Makeup Artist'),(10200,55499,2,'Director'),(10200,55500,3,'Producer'),(10200,113130,10,'Visual Effects Producer'),(10200,62859,7,'Assistant Art Director'),(10200,62860,8,'Costume Design'),(10200,75878,8,'Makeup Artist'),(10200,91854,8,'Makeup Artist'),(10200,102343,8,'Makeup Department Head'),(10200,120606,3,'Producer'),(10200,928942,6,'Sound Re-Recording Mixer'),(10200,957264,8,'Hairstylist'),(10200,961544,7,'Supervising Art Director'),(10200,1007395,9,'Stunt Coordinator'),(10200,1311175,7,'Assistant Art Director'),(10200,1334184,9,'Property Master'),(10200,1340919,2,'Script Supervisor'),(10200,1341781,6,'Sound Re-Recording Mixer'),(10200,1345593,6,'Sound Effects Editor'),(10200,1377131,1,'Camera Operator'),(10200,1378688,7,'Set Designer'),(10200,1379051,10,'Visual Effects Supervisor'),(10200,1384361,8,'Makeup Artist'),(10200,1390534,10,'Visual Effects Producer'),(10200,1391671,7,'Set Designer'),(10200,1391672,7,'Set Designer'),(10200,1391676,9,'Scenic Artist'),(10200,1391678,9,'Sound Recordist'),(10200,1391679,5,'Dialogue Editor'),(10200,1391685,9,'Sound Recordist'),(10200,1391689,9,'Special Effects Coordinator'),(10200,1391690,10,'Visual Effects Producer'),(10200,1391691,10,'Visual Effects Producer'),(10200,1391692,10,'Visual Effects Producer'),(10200,1391693,10,'Visual Effects Producer'),(10200,1391694,10,'Visual Effects Producer'),(10200,1391695,10,'Visual Effects Supervisor'),(10200,1391697,9,'Stunt Coordinator'),(10200,1391698,9,'Stunt Coordinator'),(10200,1391699,1,'Still Photographer'),(10200,1391700,11,'Gaffer'),(10200,1391701,1,'Camera Operator'),(10200,1391702,9,'Transportation Coordinator'),(10200,1391703,3,'Location Manager'),(10200,1391704,3,'Location Manager'),(10200,1391705,9,'Dialect Coach'),(10200,1391706,9,'Chef'),(10200,1395023,6,'Supervising Sound Editor'),(10200,1410327,8,'Hairstylist'),(10200,1418526,8,'Makeup Artist'),(10200,1418528,8,'Hairstylist'),(10200,1418529,8,'Hairstylist'),(10200,1447503,10,'Modeling'),(10200,1453938,11,'Lighting Artist'),(10200,1552521,9,'Stunts'),(10200,1723719,9,'Stunts'),(14462,2447,3,'Associate Producer'),(14462,2043,7,'Production Illustrator'),(14462,2997,3,'Producer'),(14462,3104,6,'Sound Mixer'),(14462,3562,6,'Original Music Composer'),(14462,16294,2,'Director'),(14462,16294,3,'Producer'),(14462,16300,1,'Director of Photography'),(14462,4869,5,'Editor'),(14462,4913,8,'Hairstylist'),(14462,5337,5,'Dialogue Editor'),(14462,6191,7,'Set Decoration'),(14462,9966,5,'Editor'),(14462,8885,8,'Costume Design'),(14462,9178,7,'Production Design'),(14462,17148,4,'Storyboard'),(14462,13223,5,'Color Timer'),(14462,15426,3,'Casting'),(14462,15526,8,'Hair Designer'),(14462,14724,4,'Novel'),(14462,17751,3,'Executive Producer'),(14462,20516,4,'Screenplay'),(14462,27513,9,'Stunts'),(14462,27095,3,'Producer'),(14462,29378,4,'Screenplay'),(14462,46943,3,'Casting'),(14462,60190,9,'Post Production Supervisor'),(14462,92376,6,'Foley'),(14462,92380,6,'Sound Effects Editor'),(14462,83724,3,'Casting Associate'),(14462,91151,9,'Transportation Captain'),(14462,91932,1,'Helicopter Camera'),(14462,117522,9,'Set Production Assistant'),(14462,117842,6,'Sound Designer'),(14462,142157,9,'Second Unit Cinematographer'),(14462,142165,6,'Music Editor'),(14462,582807,8,'Assistant Costume Designer'),(14462,936765,6,'Orchestrator'),(14462,957361,1,'Camera Operator'),(14462,1087552,7,'Assistant Art Director'),(14462,1173410,9,'Visual Effects Editor'),(14462,1186326,3,'Unit Production Manager'),(14462,1209613,11,'Gaffer'),(14462,1229074,2,'Assistant Director'),(14462,1281538,9,'Stunt Coordinator'),(14462,1317645,7,'Art Direction'),(14462,1321372,9,'Makeup Effects'),(14462,1372093,11,'Rigging Gaffer'),(14462,1393455,2,'Script Supervisor'),(14462,1395361,6,'Dolby Consultant'),(14462,1398972,1,'Underwater Camera'),(14462,1399479,9,'Unit Publicist'),(14462,1399974,1,'Steadicam Operator'),(14462,1405316,9,'CG Supervisor'),(14462,1406611,7,'Construction Coordinator'),(14462,1406897,7,'Leadman'),(14462,1408191,10,'Visual Effects Supervisor'),(14462,1409821,8,'Makeup Artist'),(14462,1411523,9,'Special Effects Coordinator'),(14462,1414994,9,'Property Master'),(14462,1449166,9,'Scenic Artist'),(14462,1468585,1,'First Assistant Camera'),(14462,1470040,3,'Associate Producer'),(14462,1470041,3,'Producer'),(14462,1472378,3,'Location Manager'),(14462,1487002,9,'Carpenter'),(14462,1496412,6,'Supervising Sound Editor'),(14462,1522789,3,'Production Coordinator'),(14462,1524179,7,'Art Department Coordinator'),(14462,1538430,1,'Still Photographer'),(14462,1544901,6,'First Assistant Sound Editor'),(14462,1549439,9,'Loader'),(14462,1551051,10,'Visual Effects Coordinator'),(14462,1556402,1,'Additional Camera'),(14462,1573094,9,'Production Intern'),(14462,1580521,10,'Visual Effects Producer'),(14462,1589725,3,'Production Accountant'),(14462,1596713,8,'Set Dressing Artist'),(14462,1648027,11,'Electrician'),(14462,1667275,10,'Digital Compositors'),(14462,1674662,9,'Video Assist Operator'),(14462,1684970,7,'Location Scout'),(14462,1684982,8,'Seamstress'),(14462,1711206,9,'Propmaker'),(14462,1729444,1,'Grip'),(14462,1729447,8,'Set Costumer'),(14462,1729448,9,'Additional Music'),(14462,1729449,9,'Craft Service'),(14462,1729450,9,'Driver'),(14462,1729451,9,'Picture Car Coordinator'),(14462,1729452,9,'Set Medic'),(14462,1729453,9,'Transportation Co-Captain'),(14462,1729454,9,'Utility Stunts'),(14462,1729455,11,'Best Boy Electric'),(14462,1729459,3,'Production Supervisor'),(14462,1729460,3,'Researcher'),(14462,1729461,6,'Boom Operator'),(12159,2324,3,'Casting'),(12159,5144,4,'Screenplay'),(12159,5144,3,'Executive Producer'),(12159,6051,5,'Editor'),(12159,7714,6,'Original Music Composer'),(12159,9184,3,'Executive Producer'),(12159,9196,3,'Executive Producer'),(12159,9198,2,'Director'),(12159,12415,4,'Novel'),(12159,13064,3,'Casting'),(12159,16732,1,'Director of Photography'),(12159,48443,5,'Editor'),(12159,51385,3,'Executive Producer'),(12159,71497,3,'Producer'),(12159,71498,3,'Producer'),(12159,961533,7,'Production Design'),(19959,2874,3,'Casting'),(19959,3275,3,'Casting'),(19959,3995,8,'Makeup Department Head'),(19959,7213,2,'Director'),(19959,7214,4,'Writer'),(19959,7215,4,'Writer'),(19959,7233,7,'Production Design'),(19959,7238,8,'Costume Design'),(19959,6876,3,'Casting'),(19959,11409,1,'Director of Photography'),(19959,11508,7,'Art Direction'),(19959,11001,5,'Editor'),(19959,21467,6,'Music'),(19959,31710,3,'Producer'),(19959,62758,3,'Producer'),(19959,73348,7,'Set Decoration'),(19959,68016,6,'Orchestrator'),(19959,1005814,3,'Producer'),(19959,1198454,9,'Stunts'),(19959,1318814,8,'Costume Supervisor'),(19959,1321011,7,'Set Decoration'),(19959,1355894,10,'Animation'),(19959,1368867,10,'Special Effects Supervisor'),(19959,1457666,5,'Assistant Editor'),(19959,1552521,9,'Stunts'),(11973,3687,6,'Sound Effects Editor'),(11973,1221,3,'Casting'),(11973,1269,3,'Producer'),(11973,3987,5,'Editor'),(11973,5549,8,'Costume Design'),(11973,7020,6,'Original Music Composer'),(11973,9337,8,'Hair Department Head'),(11973,15219,3,'Executive Producer'),(11973,10765,1,'Director of Photography'),(11973,16614,7,'Production Design'),(11973,21370,2,'Director'),(11973,35021,4,'Screenplay'),(11973,38021,7,'Set Decoration'),(11973,41587,3,'Producer'),(11973,55952,3,'Executive In Charge Of Production'),(11973,58846,3,'Executive Producer'),(11973,63462,1,'Additional Photography'),(11973,71141,3,'Producer'),(11973,112609,6,'Sound Re-Recording Mixer'),(11973,91854,8,'Makeup Department Head'),(11973,91937,3,'Production Supervisor'),(11973,108143,6,'Production Sound Mixer'),(11973,1186326,3,'Unit Production Manager'),(11973,1293529,1,'Still Photographer'),(11973,1345596,5,'Dialogue Editor'),(11973,1378226,6,'Sound Re-Recording Mixer'),(11973,1387195,6,'Sound Re-Recording Mixer'),(11973,1389601,2,'Script Supervisor'),(11973,1392083,6,'Sound Effects Editor'),(11973,1399061,5,'Dialogue Editor'),(11973,1406098,6,'Supervising Sound Editor'),(11973,1407812,6,'Sound Effects Editor'),(11973,1533030,1,'First Assistant Camera'),(11973,1555009,6,'Sound Effects Editor'),(11973,1555702,6,'Sound Editor'),(11973,1555703,5,'Dialogue Editor'),(11228,671,6,'Supervising Sound Editor'),(11228,2043,3,'Producer'),(11228,4710,7,'Production Design'),(11228,5549,8,'Costume Design'),(11228,5673,7,'Supervising Art Director'),(11228,6347,3,'Casting'),(11228,17144,3,'Producer'),(11228,12507,3,'Executive Producer'),(11228,14712,6,'Original Music Composer'),(11228,10833,5,'Editor'),(11228,16500,9,'Stunt Coordinator'),(11228,16595,7,'Supervising Art Director'),(11228,18878,2,'Director'),(11228,25061,7,'Art Direction'),(11228,28240,1,'Director of Photography'),(11228,30887,3,'Unit Manager'),(11228,33560,6,'Orchestrator'),(11228,41385,3,'Co-Producer'),(11228,56053,3,'Producer'),(11228,58726,4,'Screenplay'),(11228,61232,3,'Associate Producer'),(11228,61481,3,'Co-Executive Producer'),(11228,62739,3,'Co-Producer'),(11228,62739,2,'First Assistant Director'),(11228,65292,1,'Underwater Director of Photography'),(11228,65292,9,'Second Unit'),(11228,65626,5,'First Assistant Editor'),(11228,91311,3,'Unit Manager'),(11228,570136,2,'Script Supervisor'),(11228,970529,10,'Visual Effects Producer'),(11228,1074103,6,'Dialogue Editor'),(11228,1182557,3,'Unit Production Manager'),(11228,1316296,8,'Makeup Artist'),(11228,1319412,7,'Art Direction'),(11228,1335078,6,'Sound Effects Editor'),(11228,1373728,11,'Gaffer'),(11228,1377502,1,'Still Photographer'),(11228,1378236,10,'Visual Effects Supervisor'),(11228,1400375,1,'Camera Technician'),(11228,1401105,9,'Visual Effects Editor'),(11228,1401273,9,'Unit Publicist'),(11228,1402973,8,'Hairstylist'),(11228,1404760,4,'Storyboard'),(11228,1406965,9,'Stunts'),(11228,1407371,8,'Set Costumer'),(11228,1408392,1,'Aerial Camera'),(11228,1411857,9,'Dialect Coach'),(11228,1419584,9,'Utility Stunts'),(11228,1427532,8,'Hair Designer'),(11228,1433717,6,'Sound Recordist'),(11228,1433736,1,'Camera Operator'),(11228,1481831,8,'Costume Design'),(11228,1546585,6,'Assistant Sound Editor'),(11228,1550619,6,'Music Editor'),(11228,1552201,6,'Production Sound Mixer'),(11228,1554029,3,'Production Coordinator'),(11228,1562588,6,'Boom Operator'),(11228,1564233,5,'Color Timer'),(11228,1564250,6,'Foley'),(11228,1564968,7,'Property Master'),(11228,1603952,9,'Loader'),(11228,1633954,9,'Projection'),(11228,1647589,6,'Sound Editor'),(11228,1648010,7,'Construction Coordinator'),(11228,1648050,9,'Security'),(11228,1713700,3,'Unit Manager'),(11228,1717515,7,'Leadman'),(11228,1758899,7,'Set Decoration'),(11228,1758900,8,'Makeup Artist'),(11228,1758901,3,'Unit Production Manager'),(11228,1758905,3,'Production Manager'),(11228,1767953,7,'Location Scout'),(11228,1834914,9,'CG Supervisor'),(11228,1877130,1,'Key Grip'),(11228,1885830,3,'Executive In Charge Of Production'),(11228,1889371,1,'Grip'),(11228,1889372,1,'Steadicam Operator'),(11228,1889372,11,'Rigging Grip'),(11228,1889373,8,'Assistant Costume Designer'),(11228,1889374,8,'Seamstress'),(11228,1889375,9,'Carpenter'),(11228,1889376,9,'Digital Effects Supervisor'),(11228,1889377,9,'Driver'),(11228,1889378,9,'Post Production Supervisor'),(11228,1889381,9,'Set Production Assistant'),(11228,1889382,9,'Transportation Co-Captain'),(11228,1889383,9,'Transportation Coordinator'),(11228,1889711,11,'Best Boy Electric'),(11228,1889712,11,'Electrician'),(11228,1889713,3,'Location Manager'),(11228,1889714,3,'Production Accountant'),(11228,1889722,10,'Special Effects Supervisor'),(11228,1889724,9,'Visual Effects Art Director'),(10715,8376,6,'Supervising Sound Editor'),(10715,1060,1,'Director of Photography'),(10715,1760,6,'Original Music Composer'),(10715,4600,2,'Director'),(10715,6328,9,'Stunt Coordinator'),(10715,9616,8,'Costume Design'),(10715,89386,7,'Set Designer'),(10715,16731,3,'Producer'),(10715,19679,3,'Casting'),(10715,19680,3,'Casting'),(10715,21560,7,'Set Designer'),(10715,34894,3,'Producer'),(10715,39727,3,'Production Manager'),(10715,10999,3,'Producer'),(10715,44993,5,'Editor'),(10715,52314,4,'Screenplay'),(10715,52314,3,'Executive Producer'),(10715,52600,7,'Production Design'),(10715,65377,3,'Producer'),(10715,66897,3,'Producer'),(10715,66898,5,'Editor'),(10715,81731,7,'Art Direction'),(10715,83658,7,'Set Designer'),(10715,108952,10,'Animation'),(10715,966100,7,'Set Designer'),(10715,999716,9,'Stunt Coordinator'),(10715,1217416,4,'Storyboard'),(10715,1231182,3,'Location Manager'),(10715,1341850,7,'Set Designer'),(10715,1378226,6,'Sound Re-Recording Mixer'),(10715,1397725,7,'Set Decoration'),(10715,1422060,7,'Set Designer'),(10715,1422074,2,'Script Supervisor'),(10715,1423863,6,'Sound Effects Editor'),(10715,1424154,7,'Set Designer'),(10715,1438920,3,'Production Supervisor'),(10715,1447298,10,'Lead Animator'),(10715,1447375,10,'Animation'),(10715,1447376,10,'Lead Animator'),(10715,1447380,10,'Animation'),(10715,1447436,2,'Layout'),(10715,1447459,10,'Animation'),(10715,1447467,2,'Layout'),(10715,1447557,9,'Compositors'),(10715,1447566,4,'Storyboard'),(10715,1451265,4,'Storyboard'),(10715,1451676,10,'Visual Effects Supervisor'),(10715,1453498,10,'Animation'),(10715,1457926,9,'Stunts'),(10715,1457930,10,'Animation'),(10715,1457931,10,'Animation'),(10715,1457932,10,'Animation'),(10715,1458995,6,'Sound Effects Editor'),(10715,1459464,3,'Production Manager'),(10715,1460529,10,'Visual Effects Coordinator'),(10715,1461156,10,'Animation'),(10715,1540831,3,'Unit Production Manager'),(10715,1561784,7,'Set Designer'),(10715,1741165,9,'Post Production Supervisor'),(10715,1741188,3,'Casting Associate'),(10715,1776387,3,'Production Manager'),(10715,1776389,3,'Production Coordinator'),(10715,1777890,6,'Sound Effects Editor'),(10197,557,8,'Costume Design'),(10197,16939,4,'Screenplay'),(10197,17633,2,'Director'),(10197,23485,3,'Producer'),(10077,998,5,'Editor'),(10077,6341,3,'Executive Producer'),(10077,8410,7,'Set Decoration'),(10077,8646,7,'Art Direction'),(10077,15303,3,'Producer'),(10077,18691,3,'Executive Producer'),(10077,20079,8,'Costume Design'),(10077,21479,3,'Producer'),(10077,25755,3,'Casting'),(10077,37710,2,'Director'),(10077,37710,1,'Director of Photography'),(10077,42504,3,'Line Producer'),(10077,49909,7,'Production Design'),(10077,52036,3,'Producer'),(10077,50942,4,'Author'),(10077,52609,3,'Executive Producer'),(10077,53297,4,'Author'),(10077,53299,3,'Producer'),(10077,53300,3,'Producer'),(10077,56032,3,'Producer'),(10077,57263,6,'Original Music Composer'),(10077,62686,3,'Executive Producer'),(10077,62923,4,'Author'),(10077,62926,3,'Producer'),(10077,62927,3,'Line Producer'),(10077,62925,3,'Executive Producer'),(10077,62928,3,'Executive Producer'),(10077,62929,3,'Executive Producer'),(10077,62930,3,'Casting'),(10077,62931,8,'Costume Design'),(10077,1582866,4,'Screenplay'),(17711,380,3,'Producer'),(17711,3305,3,'Producer'),(17711,5584,5,'Editor'),(17711,5666,6,'Music'),(17711,30711,4,'Writer'),(17711,11371,1,'Director of Photography'),(17711,209628,4,'Characters'),(17711,588701,2,'Director'),(17711,1450350,10,'Animation'),(11026,7202,1,'Director of Photography'),(11026,894,6,'Original Music Composer'),(11026,898,5,'Editor'),(11026,2711,4,'Story'),(11026,4700,3,'Producer'),(11026,5672,7,'Production Design'),(11026,18457,3,'Casting'),(11026,16938,2,'Director'),(11026,60084,3,'Executive Producer'),(11026,67560,5,'Editor'),(11026,67855,4,'Screenplay'),(11026,73964,4,'Story'),(11026,1203317,3,'Executive Producer'),(15189,33255,4,'Author'),(15189,57173,4,'Author'),(15189,68016,6,'Orchestrator'),(15189,68700,4,'Author'),(15189,109857,2,'Director'),(15189,1460672,9,'Post Production Supervisor'),(11678,286,3,'Executive Producer'),(11678,1213,6,'Original Music Composer'),(11678,6800,1,'Director of Photography'),(11678,10702,2,'Director'),(11678,10702,3,'Producer'),(11678,11425,8,'Costume Design'),(11678,12653,7,'Art Direction'),(11678,18457,3,'Casting'),(11678,17399,5,'Editor'),(11678,20206,3,'Executive Producer'),(11678,13469,7,'Production Design'),(11678,21846,7,'Set Decoration'),(11678,70189,3,'Producer'),(11678,70189,3,'Executive Producer'),(11678,132585,7,'Art Direction'),(11678,132596,7,'Art Direction'),(11678,1224549,3,'Producer'),(11678,1224549,4,'Writer'),(11678,1224549,4,'Story'),(11678,1324811,8,'Costume Supervisor'),(11678,1324812,8,'Costume Supervisor'),(10555,8376,6,'Sound Effects Editor'),(10555,947,6,'Original Music Composer'),(10555,671,6,'Supervising Sound Editor'),(10555,5715,4,'Screenplay'),(10555,12058,2,'Director'),(10555,12062,3,'Executive Producer'),(10555,21983,3,'Producer'),(10555,44118,3,'Production Manager'),(10555,51909,3,'Associate Producer'),(10555,113087,6,'Sound Engineer'),(10555,56827,9,'Additional Music'),(10555,57406,9,'Additional Dialogue'),(10555,57638,5,'Editor'),(10555,58833,5,'Editor'),(10555,65629,2,'Director'),(10555,65630,4,'Screenplay'),(10555,65630,2,'Director'),(10555,65673,3,'Producer'),(10555,65674,3,'Producer'),(10555,15780,7,'Production Design'),(10555,86198,6,'Music Supervisor'),(10555,96446,9,'CGI Supervisor'),(10555,118713,9,'Supervising Animator'),(10555,162371,9,'Additional Dialogue'),(10555,188270,9,'CG Supervisor'),(10555,932186,6,'Orchestrator'),(10555,1043374,6,'Musician'),(10555,1077844,9,'Additional Dialogue'),(10555,1252535,5,'Dialogue Editor'),(10555,1262481,10,'Lead Animator'),(10555,1335621,9,'Post Production Supervisor'),(10555,1345596,6,'ADR Editor'),(10555,1368884,6,'Music Editor'),(10555,1377373,3,'Casting Associate'),(10555,1386369,9,'Additional Dialogue'),(10555,1401687,6,'Sound Re-Recording Mixer'),(10555,1410351,10,'Digital Compositors'),(10555,1411521,9,'Sound Recordist'),(10555,1438901,7,'Art Direction'),(10555,1447381,10,'Animation'),(10555,1447385,10,'Animation'),(10555,1447390,10,'Visual Development'),(10555,1447593,2,'Layout'),(10555,1460421,5,'First Assistant Editor'),(10555,1460472,10,'Animation'),(10555,1513134,3,'Production Coordinator'),(10555,1534822,10,'Character Designer'),(10555,1552873,5,'Color Timer'),(10555,1552880,3,'Production Accountant'),(10555,1555702,6,'Sound Designer'),(10555,1564250,6,'Foley'),(10555,1577463,7,'Sculptor'),(10555,1577466,9,'Choreographer'),(10555,1577467,9,'Post Production Assistant'),(10555,1577468,9,'Software Engineer'),(10555,1577469,9,'Technical Supervisor'),(10555,1577470,9,'Systems Administrators & Support'),(10555,1577471,11,'Lighting Artist'),(10555,1577472,11,'Lighting Technician'),(10555,1577473,3,'Production Supervisor'),(10555,1577474,3,'Researcher'),(10555,1577475,6,'First Assistant Sound Editor'),(10555,1577479,10,'Visual Effects'),(10555,1577480,4,'Storyboard'),(10555,1577481,9,'Sequence Leads'),(10555,1577482,9,'Software Team Lead'),(10555,1577483,9,'Score Engineer'),(10555,1577484,6,'Sound'),(10555,1577485,10,'Modeling'),(10555,1733132,5,'Negative Cutter'),(10555,1768387,7,'Title Designer'),(10555,1768424,3,'Casting Assistant'),(10555,1768426,3,'Script Researcher'),(10555,1768431,6,'Assistant Sound Editor'),(10555,1768432,6,'Music Programmer'),(10555,1814325,10,'Visual Effects Supervisor'),(11375,4037,2,'Director'),(11375,4037,4,'Screenplay'),(11375,4037,3,'Producer'),(11375,4150,8,'Costume Design'),(11375,6922,7,'Art Direction'),(11375,9967,7,'Production Design'),(11375,13626,7,'Set Decoration'),(11375,25141,5,'Editor'),(11375,39993,6,'Original Music Composer'),(11375,54164,1,'Director of Photography'),(11375,69154,4,'Screenplay'),(11375,69156,3,'Producer'),(11375,1399141,6,'Sound Mixer'),(11375,1404218,6,'Sound Mixer'),(11375,1438571,6,'Sound Designer'),(11375,1451245,1,'Camera Department Manager'),(25769,321,3,'Producer'),(25769,4869,5,'Editor'),(25769,14599,9,'Cinematography'),(25769,59008,3,'Producer'),(25769,63979,6,'Original Music Composer'),(25769,71556,3,'Producer'),(25769,94220,2,'Director'),(25769,94220,4,'Writer'),(25769,94222,4,'Writer'),(25769,94222,2,'Director'),(25769,230690,3,'Producer'),(25769,1120615,3,'Line Producer'),(23685,851,6,'Original Music Composer'),(23685,1732,5,'Editor'),(23685,3795,3,'Executive Producer'),(23685,3795,4,'Writer'),(23685,8846,1,'Director of Photography'),(23685,10965,3,'Executive Producer'),(23685,11222,3,'Producer'),(23685,10395,5,'Editor'),(23685,11711,3,'Associate Producer'),(23685,12631,3,'Executive Producer'),(23685,17828,3,'Producer'),(23685,28161,5,'Editor'),(23685,57646,2,'Director'),(23685,57646,3,'Executive Producer'),(23685,384204,10,'Animation'),(23685,555823,10,'Animation'),(23685,565297,10,'Animation'),(23685,1205975,10,'Animation'),(23685,1353148,10,'Animation'),(23685,1448043,10,'Animation'),(23685,1448071,10,'Animation'),(23685,1450347,7,'Conceptual Design'),(23685,1450347,4,'Storyboard'),(23685,1452917,10,'Modeling'),(23685,1453496,10,'Animation'),(23685,1453626,10,'Animation'),(23685,1454028,10,'Animation Supervisor'),(23685,1454032,10,'Animation'),(23685,1454750,10,'Animation'),(23685,1454757,7,'Art Department Manager'),(23685,1454759,10,'Animation Manager'),(11866,1305,6,'Music Editor'),(11866,2043,3,'Producer'),(11866,2199,4,'Screenplay'),(11866,3965,3,'Casting'),(11866,7229,6,'Original Music Composer'),(11866,7236,7,'Supervising Art Director'),(11866,7239,6,'Sound Effects Editor'),(11866,11306,8,'Makeup Artist'),(11866,6040,3,'Producer'),(11866,6043,5,'First Assistant Editor'),(11866,6964,9,'Special Effects Coordinator'),(11866,10124,7,'Set Decoration'),(11866,12028,2,'Director'),(11866,12035,7,'Production Design'),(11866,12040,8,'Costume Design'),(11866,13194,5,'Digital Intermediate'),(11866,12833,4,'Screenplay'),(11866,15005,5,'Editor'),(11866,16600,6,'Sound Designer'),(11866,23831,8,'Costume Supervisor'),(11866,32984,3,'Casting'),(11866,33284,8,'Assistant Costume Designer'),(11866,52165,8,'Makeup Artist'),(11866,41157,3,'Producer'),(11866,49831,3,'Executive Producer'),(11866,49831,3,'Unit Production Manager'),(11866,53841,1,'Director of Photography'),(11866,54777,3,'Casting Associate'),(11866,113048,9,'Sound Recordist'),(11866,113089,9,'Sound Recordist'),(11866,59684,4,'Storyboard'),(11866,60934,9,'Post-Production Manager'),(11866,62780,7,'Art Direction'),(11866,70791,3,'Producer'),(11866,83093,9,'Second Unit Cinematographer'),(11866,146352,9,'Stunt Coordinator'),(11866,570136,2,'Script Supervisor'),(11866,589957,9,'Stunts'),(11866,1014937,9,'Additional Music'),(11866,1034748,3,'Casting'),(11866,1262097,3,'Publicist'),(11866,1318090,1,'Camera Operator'),(11866,1332639,7,'Assistant Art Director'),(11866,1332641,8,'Makeup Artist'),(11866,1338372,6,'Foley'),(11866,1357049,7,'Art Direction'),(11866,1360097,5,'Dialogue Editor'),(11866,1361676,6,'Scoring Mixer'),(11866,1377220,6,'Sound Mixer'),(11866,1384367,5,'Dialogue Editor'),(11866,1384388,9,'Stunt Coordinator'),(11866,1387570,1,'Still Photographer'),(11866,1390524,6,'Supervising Sound Editor'),(11866,1392908,10,'Visual Effects Producer'),(11866,1394958,10,'Visual Effects Producer'),(11866,1399057,6,'ADR & Dubbing'),(11866,1399636,10,'Visual Effects Supervisor'),(11866,1403081,7,'Art Department Coordinator'),(11866,1403415,1,'Helicopter Camera'),(11866,1403532,8,'Makeup Department Head'),(11866,1403544,1,'Camera Operator'),(11866,1406763,10,'Visual Effects Producer'),(11866,1407823,5,'Digital Intermediate'),(11866,1408358,1,'Camera Operator'),(11866,1411521,9,'Sound Recordist'),(11866,1413097,9,'CG Supervisor'),(11866,1413115,10,'Visual Effects Producer'),(11866,1416155,6,'Sound Re-Recording Mixer'),(11866,1416170,10,'Visual Effects Supervisor'),(11866,1425529,9,'Property Master'),(11866,1438381,8,'Hairstylist'),(11866,1445865,7,'Art Direction'),(11866,1445866,7,'Set Decoration'),(11866,1445867,8,'Hair Department Head'),(11866,1445868,8,'Key Hair Stylist'),(11866,1445870,7,'Leadman'),(11866,1445871,7,'Set Designer'),(11866,1445872,7,'Set Designer'),(11866,1445873,6,'ADR & Dubbing'),(11866,1445874,6,'First Assistant Sound Editor'),(11866,1445878,9,'CG Supervisor'),(11866,1445879,10,'Visual Effects Producer'),(11866,1445885,10,'Visual Effects Supervisor'),(11866,1445886,10,'Visual Effects Supervisor'),(11866,1445895,1,'Steadicam Operator'),(11866,1445896,11,'Gaffer'),(11866,1445903,2,'Script Supervisor'),(11866,1445906,3,'Publicist'),(11866,1539775,9,'Armorer'),(11866,1550574,6,'Orchestrator'),(11866,1562239,9,'Post Production Supervisor'),(11866,1562248,5,'Color Timer'),(11866,1565014,1,'First Assistant Camera'),(11866,1569563,9,'Post Production Assistant'),(11866,1570790,3,'Production Accountant'),(11866,1613297,11,'Lighting Supervisor'),(11866,1613301,6,'Boom Operator'),(11866,1646840,1,'Grip'),(11866,1702627,9,'Digital Producer'),(11866,1734618,7,'Art Department Assistant'),(11866,1734621,7,'Painter'),(11866,1734623,7,'Production Illustrator'),(11866,1734624,7,'Standby Painter'),(11866,1734626,1,'Camera Technician'),(11866,1734642,8,'Set Dressing Artist'),(11866,1734645,9,'Carpenter'),(11866,1734646,9,'Set Production Assistant'),(11866,1734647,9,'Stand In'),(11866,1734648,9,'Video Assist Operator'),(11866,1734649,2,'Assistant Director'),(11866,1734650,11,'Electrician'),(11866,1734651,11,'Rigging Grip'),(11866,1734653,3,'Production Coordinator'),(11866,1734654,3,'Production Manager'),(11866,1734655,3,'Production Supervisor'),(11866,1734656,6,'Production Sound Mixer'),(11866,1734657,10,'3D Artist'),(11866,1734658,10,'Digital Compositors'),(11866,1734659,10,'Visual Effects Coordinator'),(11866,1734668,3,'Unit Manager'),(23629,496,7,'Production Design'),(23629,2122,5,'Editor'),(23629,2953,3,'Casting'),(23629,5392,8,'Costume Design'),(23629,8680,7,'Set Decoration'),(23629,15217,2,'Director'),(23629,15217,4,'Screenplay'),(23629,15217,3,'Producer'),(23629,15217,4,'Story'),(23629,15221,6,'Original Music Composer'),(23629,15226,6,'Supervising Sound Editor'),(23629,17284,1,'Director of Photography'),(23629,17610,3,'Casting'),(23629,54211,3,'Executive Producer'),(23629,54212,3,'Executive Producer'),(23629,61091,3,'Executive Producer'),(23629,66897,3,'Executive Producer'),(23629,79242,3,'Executive Producer'),(23629,79243,3,'Producer'),(23629,75538,3,'Casting'),(23629,536491,10,'Visual Effects Producer'),(23629,563350,4,'Screenplay'),(23629,959549,7,'Art Direction'),(23629,959555,7,'Art Direction'),(23629,978336,3,'Production Manager'),(23629,1316159,6,'Original Music Composer'),(23629,1320977,8,'Costume Supervisor'),(23629,1342657,6,'Sound Effects Editor'),(23629,1355894,10,'Animation'),(23629,1360099,6,'Sound Effects Editor'),(23629,1365542,6,'Sound Effects Editor'),(23629,1368864,6,'Sound Re-Recording Mixer'),(23629,1378701,9,'Special Effects Coordinator'),(23629,1393382,6,'Sound Effects Editor'),(23629,1394130,6,'Sound Re-Recording Mixer'),(23629,1394760,2,'Script Supervisor'),(23629,1394767,1,'Still Photographer'),(23629,1406101,5,'Dialogue Editor'),(23629,1418411,5,'First Assistant Editor'),(23629,1457896,3,'Associate Producer'),(23629,1457896,9,'Post Production Supervisor'),(23629,1460567,6,'Production Sound Mixer'),(23629,1463785,9,'Digital Effects Supervisor'),(23629,1514420,3,'Executive Producer'),(23629,1514420,3,'Unit Production Manager'),(23629,1551558,3,'Production Coordinator'),(10153,669,7,'Production Design'),(10153,1484,3,'Casting'),(10153,45543,4,'Screenplay'),(10153,2723,1,'Director of Photography'),(10153,2889,6,'Sound Designer'),(10153,3976,11,'Chief Lighting Technician'),(10153,3996,6,'Sound Re-Recording Mixer'),(10153,4782,4,'Author'),(10153,4782,3,'Producer'),(10153,8246,2,'Director'),(10153,8246,3,'Producer'),(10153,5166,5,'Editor'),(10153,8706,7,'Set Decoration'),(10153,5581,6,'Original Music Composer'),(10153,8158,6,'Supervising Dialogue Editor'),(10153,8160,6,'Foley'),(10153,8163,6,'Foley'),(10153,8276,6,'Supervising Sound Editor'),(10153,9255,8,'Costume Design'),(10153,9775,8,'Makeup Artist'),(10153,16739,10,'Visual Effects Supervisor'),(10153,21070,7,'Art Direction'),(10153,42032,1,'Underwater Camera'),(10153,18989,7,'Art Direction'),(10153,57432,1,'Second Unit Director of Photography'),(10153,64028,4,'Screenplay'),(10153,64029,3,'Producer'),(10153,102343,8,'Key Makeup Artist'),(10153,1118709,10,'Visual Effects Producer'),(10153,1194262,1,'Still Photographer'),(10153,1206905,8,'Costume Supervisor'),(10153,1316104,9,'CGI Supervisor'),(10153,1327030,6,'Sound Re-Recording Mixer'),(10153,1341847,8,'Makeup Artist'),(10153,1357066,1,'Steadicam Operator'),(10153,1371069,2,'Script Supervisor'),(10153,1411266,10,'Special Effects Supervisor'),(10153,1413167,6,'Sound Effects Editor'),(10153,1414177,6,'Sound Effects Editor'),(10153,1428908,8,'Hairstylist'),(10153,1430490,9,'CGI Supervisor'),(10153,1438399,6,'ADR Editor'),(10153,1438399,5,'Dialogue Editor'),(10153,1449172,6,'ADR Editor'),(10153,1449172,5,'Dialogue Editor'),(10153,1457720,8,'Makeup Artist'),(10153,1460739,8,'Key Hair Stylist'),(10153,1462687,9,'CGI Supervisor'),(10153,1468036,2,'Script Supervisor'),(10153,1516079,10,'Visual Effects Producer'),(10153,1523419,8,'Hairstylist'),(10153,1536378,8,'Key Costumer'),(10153,1552883,6,'Sound Effects Editor'),(10153,1566832,1,'Camera Operator'),(10153,1573115,9,'CGI Supervisor'),(10153,1591434,10,'Visual Effects Supervisor'),(10153,1591436,10,'3D Animator'),(10153,1591437,10,'Roto Supervisor'),(10153,1620000,9,'CGI Supervisor'),(10153,1681341,1,'Key Grip'),(10153,1712068,8,'Makeup Artist'),(10153,1733132,5,'Negative Cutter'),(10153,1735929,1,'Dolly Grip'),(10153,1745316,11,'Rigging Gaffer'),(10153,1749920,11,'Rigging Grip'),(10153,1775017,9,'CG Supervisor'),(10153,1775018,10,'Roto Supervisor'),(10153,1775022,9,'Visual Effects Editor'),(10153,1775025,8,'Hair Supervisor'),(10153,1775028,5,'First Assistant Editor'),(10153,1775030,6,'Boom Operator'),(20829,492,1,'Director of Photography'),(20829,1589,6,'Original Music Composer'),(20829,3184,3,'Producer'),(20829,5664,3,'Producer'),(20829,6742,5,'Editor'),(20829,17881,6,'Original Music Composer'),(20829,19274,3,'Executive Producer'),(20829,20821,3,'Executive Producer'),(20829,41039,2,'Director'),(20829,41039,3,'Producer'),(20829,41039,4,'Writer'),(20829,41079,5,'Editor'),(20829,41080,3,'Casting'),(20829,54734,3,'Executive Producer'),(20829,184582,3,'Producer'),(20829,1085179,3,'Producer'),(20829,1122562,3,'Associate Producer'),(10808,546,3,'Casting'),(10808,2043,3,'Producer'),(10808,3393,6,'Original Music Composer'),(10808,6187,3,'Associate Producer'),(10808,6187,2,'First Assistant Director'),(10808,6877,7,'Production Design'),(10808,6880,7,'Set Decoration'),(10808,8705,7,'Art Direction'),(10808,8763,6,'Foley Editor'),(10808,8880,3,'Executive Producer'),(10808,14377,3,'Casting'),(10808,12639,7,'Set Designer'),(10808,15524,8,'Costume Design'),(10808,18276,5,'Editor'),(10808,13434,7,'Supervising Art Director'),(10808,27100,10,'Visual Effects Supervisor'),(10808,31026,4,'Screenplay'),(10808,49907,3,'Co-Producer'),(10808,49907,3,'Unit Production Manager'),(10808,52112,2,'Director'),(10808,52193,6,'Dialogue Editor'),(10808,56324,1,'Director of Photography'),(10808,56053,3,'Producer'),(10808,57769,9,'Visual Effects Editor'),(10808,66921,3,'Co-Producer'),(10808,91324,6,'Music Editor'),(10808,168214,8,'Makeup Artist'),(10808,555085,1,'Still Photographer'),(10808,1015965,8,'Makeup Department Head'),(10808,1113659,3,'Location Manager'),(10808,1178615,9,'CG Supervisor'),(10808,1319193,8,'Costume Supervisor'),(10808,1364403,7,'Greensman'),(10808,1367505,6,'Dialogue Editor'),(10808,1377216,7,'Art Department Coordinator'),(10808,1378165,7,'Property Master'),(10808,1378749,7,'Set Designer'),(10808,1389585,7,'Set Designer'),(10808,1390527,6,'Sound Effects Editor'),(10808,1399322,8,'Set Costumer'),(10808,1400374,1,'Camera Operator'),(10808,1404841,6,'ADR Editor'),(10808,1408278,8,'Hair Department Head'),(10808,1416153,6,'Supervising Sound Editor'),(10808,1416167,10,'Visual Effects Producer'),(10808,1424894,8,'Hairstylist'),(10808,1425343,6,'ADR Editor'),(10808,1442509,9,'Special Effects Coordinator'),(10808,1451398,7,'Greensman'),(10808,1453276,7,'Construction Coordinator'),(10808,1454647,9,'Creator'),(10808,1457729,2,'Script Supervisor'),(10808,1496418,10,'Visual Effects Coordinator'),(10808,1550058,6,'Music Editor'),(10808,1585159,7,'Location Scout'),(10808,1586888,7,'Sculptor'),(10808,1587383,6,'Music Supervisor'),(10808,1610228,8,'Key Costumer'),(10808,1737829,6,'Boom Operator'),(10808,1763970,3,'Casting Assistant'),(10808,1786614,3,'Casting Associate'),(10808,1786616,3,'Location Manager'),(10808,1786618,3,'Production Coordinator'),(10808,1868861,7,'Painter'),(10808,1868865,9,'Propmaker'),(10808,1868867,9,'Propmaker'),(10808,1868868,9,'Propmaker'),(10808,1868877,9,'Stunt Coordinator'),(10808,1868878,1,'Camera Operator'),(10808,1868879,1,'Dolly Grip'),(10808,1868880,1,'Key Grip'),(10808,1868881,11,'Gaffer'),(10808,1868889,1,'Dolly Grip'),(10808,1868892,6,'Music Editor'),(11086,671,6,'Supervising Sound Editor'),(11086,3965,3,'Casting'),(11086,4027,2,'Director'),(11086,4027,3,'Producer'),(11086,4140,6,'Original Music Composer'),(11086,6800,1,'Director of Photography'),(11086,6802,8,'Costume Design'),(11086,15017,8,'Makeup Department Head'),(11086,42633,5,'Editor'),(11086,46360,7,'Production Design'),(11086,55985,5,'First Assistant Editor'),(11086,68082,4,'Screenplay'),(11086,74976,6,'Sound Re-Recording Mixer'),(11086,74978,6,'Sound Re-Recording Mixer'),(11086,83091,6,'Sound Re-Recording Mixer'),(11086,960407,5,'First Assistant Editor'),(11086,1339447,6,'Boom Operator'),(11086,1341926,7,'Set Decoration'),(11086,1370916,2,'Script Supervisor'),(11086,1378173,1,'Still Photographer'),(11086,1398970,1,'Camera Operator'),(11086,1398970,1,'Steadicam Operator'),(11086,1404326,6,'Music Editor'),(11086,1404545,11,'Gaffer'),(11086,1434225,2,'Script Supervisor'),(11086,1547309,6,'Production Sound Mixer'),(11086,1677508,11,'Rigging Gaffer'),(11086,1677516,3,'Production Supervisor'),(10477,6898,6,'Original Music Composer'),(10477,16483,3,'Producer'),(10477,16483,4,'Screenplay'),(10477,16938,2,'Director'),(10477,16938,3,'Producer'),(10477,18265,1,'Director of Photography'),(10477,65563,4,'Screenplay'),(10477,65564,6,'Music'),(10477,69898,5,'Editor'),(16869,138,2,'Director'),(16869,138,4,'Writer'),(16869,2545,3,'Producer'),(16869,149,1,'Director of Photography'),(16869,156,5,'Editor'),(16869,3686,3,'Casting'),(16869,286,3,'Executive Producer'),(16869,1338,9,'Thanks'),(16869,1071,9,'Thanks'),(16869,1307,3,'Executive Producer'),(16869,59839,3,'Executive Producer'),(16869,5779,7,'Production Design'),(16869,4222,3,'Casting'),(16869,6688,8,'Costume Design'),(16869,9599,9,'Thanks'),(16869,11801,7,'Set Decoration'),(16869,10903,3,'Co-Producer'),(16869,11272,7,'Art Direction'),(16869,11274,7,'Supervising Art Director'),(16869,40751,7,'Art Direction'),(16869,16932,3,'Casting'),(16869,16849,3,'Executive Producer'),(16869,23285,9,'Stunt Coordinator'),(16869,52226,8,'Makeup Artist'),(16869,59287,9,'Makeup Effects'),(16869,73194,9,'Thanks'),(16869,107771,2,'Assistant Director'),(16869,103057,8,'Costume Design'),(16869,112272,5,'Assistant Editor'),(16869,211600,9,'Thanks'),(16869,967137,7,'Art Direction'),(16869,1011188,3,'Casting'),(16869,1177850,1,'Still Photographer'),(16869,1206190,9,'Makeup Effects'),(16869,1286860,8,'Hairstylist'),(16869,1335888,9,'Driver'),(16869,1378724,6,'Music Editor'),(16869,1411357,3,'Location Manager'),(16869,1524757,8,'Key Hair Stylist'),(16869,1542917,5,'Color Timer'),(16869,1545448,6,'Music Supervisor'),(16869,1638721,9,'Cinematography'),(23398,376,3,'Executive Producer'),(23398,3393,6,'Original Music Composer'),(23398,10569,3,'Executive Producer'),(23398,14139,9,'Cinematography'),(23398,239,4,'Writer'),(23398,31024,2,'Director'),(23398,30694,3,'Producer'),(23398,30696,3,'Producer'),(23398,49906,4,'Characters'),(23398,49907,3,'Executive Producer'),(23398,49908,3,'Executive Producer'),(23398,57176,5,'Editor'),(23398,57743,4,'Writer'),(23398,57744,4,'Writer'),(23398,1453020,10,'Animation'),(23398,1460621,10,'Visual Effects'),(10590,960,1,'Dolly Grip'),(10590,2031,3,'Casting'),(10590,2080,9,'Stunts'),(10590,2122,5,'Editor'),(10590,2122,3,'Associate Producer'),(10590,2460,2,'Director'),(10590,2460,3,'Producer'),(10590,2460,4,'Screenplay'),(10590,2486,7,'Production Design'),(10590,2487,3,'Producer'),(10590,2532,3,'Casting'),(10590,4501,1,'Director of Photography'),(10590,4906,3,'Local Casting'),(10590,5712,6,'Music Editor'),(10590,8277,3,'Executive Producer'),(10590,8277,9,'Unit Production Manager'),(10590,8747,3,'Producer'),(10590,13170,6,'Assistant Sound Editor'),(10590,13177,6,'Sound Re-Recording Mixer'),(10590,15328,7,'Art Direction'),(10590,16736,6,'Supervising Sound Editor'),(10590,19291,9,'Supervising Art Director'),(10590,17677,7,'Set Designer'),(10590,33017,9,'Second Unit'),(10590,33017,9,'Stunt Coordinator'),(10590,20720,3,'Executive Producer'),(10590,21801,9,'Temp Music Editor'),(10590,57263,6,'Original Music Composer'),(10590,57263,6,'Conductor'),(10590,65707,3,'Associate Producer'),(10590,65708,4,'Novel'),(10590,65709,3,'Co-Producer'),(10590,65711,7,'Set Decoration'),(10590,65710,8,'Costume Design'),(10590,65722,3,'Co-Producer'),(10590,65721,4,'Novel'),(10590,80811,8,'Set Dressing Artist'),(10590,91896,10,'Special Effects Supervisor'),(10590,91932,9,'Aerial Coordinator'),(10590,91940,3,'Production Accountant'),(10590,548435,6,'Foley'),(10590,552471,9,'Transportation Captain'),(10590,930663,6,'ADR Editor'),(10590,1046883,6,'Orchestrator'),(10590,1113960,7,'Production Illustrator'),(10590,1318092,9,'Special Effects Coordinator'),(10590,1321940,9,'Driver'),(10590,1334725,10,'Digital Compositors'),(10590,1352966,5,'Dialogue Editor'),(10590,1378745,7,'Construction Coordinator'),(10590,1380639,9,'Makeup Effects'),(10590,1389137,9,'Transportation Coordinator'),(10590,1390535,1,'Still Photographer'),(10590,1391130,1,'Steadicam Operator'),(10590,1394958,10,'Visual Effects Producer'),(10590,1397850,11,'Chief Lighting Technician'),(10590,1398943,7,'Leadman'),(10590,1398982,9,'Unit Publicist'),(10590,1401897,5,'First Assistant Editor'),(10590,1403415,1,'Aerial Camera'),(10590,1403636,6,'Sound Editor'),(10590,1405427,3,'Location Manager'),(10590,1406826,6,'Sound Effects Editor'),(10590,1407812,6,'Sound Designer'),(10590,1416092,8,'Hairstylist'),(10590,1425823,1,'Camera Operator'),(10590,1441163,8,'Key Makeup Artist'),(10590,1445885,10,'Visual Effects Supervisor'),(10590,1446988,7,'Art Department Coordinator'),(10590,1451409,6,'Sound Engineer'),(10590,1456359,9,'Dialect Coach'),(10590,1462925,8,'Key Hair Stylist'),(10590,1470177,7,'Set Decoration'),(10590,1478953,2,'Script Supervisor'),(10590,1511086,6,'Supervising ADR Editor'),(10590,1534969,2,'Second Assistant Director'),(10590,1542802,9,'Post Production Supervisor'),(10590,1550836,3,'Production Supervisor'),(10590,1551870,6,'Production Sound Mixer'),(10590,1555006,9,'Sound Recordist'),(10590,1564215,1,'Camera Loader'),(10590,1564233,5,'Color Timer'),(10590,1565936,7,'Art Direction'),(10590,1565937,7,'Greensman'),(10590,1565941,7,'Painter'),(10590,1565942,7,'Standby Painter'),(10590,1565943,1,'Camera Intern'),(10590,1565944,1,'First Assistant Camera'),(10590,1565945,1,'Key Grip'),(10590,1565947,8,'Costume Supervisor'),(10590,1565948,8,'Makeup Artist'),(10590,1565949,8,'Seamstress'),(10590,1565950,8,'Set Costumer'),(10590,1565951,9,'Armorer'),(10590,1566249,9,'Cableman'),(10590,1566250,9,'CG Supervisor'),(10590,1566251,9,'Craft Service'),(10590,1566253,9,'Digital Effects Supervisor'),(10590,1566254,9,'Loader'),(10590,1566256,9,'Property Master'),(10590,1566258,9,'Scenic Artist'),(10590,1566262,9,'Set Medic'),(10590,1566264,9,'Set Production Assistant'),(10590,1566268,9,'Stand In'),(10590,1566272,9,'Technical Supervisor'),(10590,1566274,9,'Transportation Co-Captain'),(10590,1566276,9,'Utility Stunts'),(10590,1566278,9,'Video Assist Operator'),(10590,1566279,9,'Visual Effects Editor'),(10590,1566280,2,'First Assistant Director'),(10590,1566286,11,'Electrician'),(10590,1566287,11,'Gaffer'),(10590,1566288,11,'Rigging Grip'),(10590,1566289,3,'Executive In Charge Of Production'),(10590,1566292,3,'Production Coordinator'),(10590,1566295,6,'Boom Operator'),(10590,1566301,6,'Scoring Mixer'),(10590,1566308,10,'24 Frame Playback'),(10590,1566310,10,'Visual Effects Coordinator'),(10590,1566318,4,'Storyboard'),(10590,1604352,7,'Title Designer'),(10590,1608789,3,'Production Coordinator'),(10590,1620005,3,'Assistant Production Coordinator'),(10590,1735735,6,'Foley Editor'),(10590,1744045,7,'Assistant Property Master'),(10590,1744046,7,'Set Dresser'),(10590,1744048,1,'Grip'),(10590,1744051,8,'Makeup Supervisor'),(10590,1744053,8,'Tailor'),(10590,1744054,9,'Pilot'),(10590,1744057,3,'Casting Assistant'),(10590,1744058,6,'Musician'),(10395,553,7,'Assistant Art Director'),(10395,602,7,'Set Decoration'),(10395,931,3,'Producer'),(10395,1046,3,'Casting'),(10395,1259,6,'Original Music Composer'),(10395,2242,3,'Casting'),(10395,3658,3,'Executive Producer'),(10395,5133,7,'Production Design'),(10395,5342,2,'Director'),(10395,10632,9,'Stunt Coordinator'),(10395,5493,8,'Costume Design'),(10395,7146,7,'Art Direction'),(10395,8880,3,'Executive Producer'),(10395,12015,5,'Editor'),(10395,15131,1,'Director of Photography'),(10395,17880,4,'Screenplay'),(10395,20844,1,'Camera Operator'),(10395,37426,4,'Screenplay'),(10395,37426,3,'Associate Producer'),(10395,49907,3,'Associate Producer'),(10395,73951,5,'Dialogue Editor'),(10395,99426,5,'Dialogue Editor'),(10395,142155,5,'Dialogue Editor'),(10395,142165,6,'Music Editor'),(10395,543194,8,'Assistant Costume Designer'),(10395,1177850,1,'Still Photographer'),(10395,1325235,8,'Costume Supervisor'),(10395,1341403,6,'Sound Editor'),(10395,1392237,9,'Property Master'),(10395,1395373,2,'Script Supervisor'),(10395,1403399,9,'Special Effects Coordinator'),(10395,1403515,6,'Supervising Sound Editor'),(10395,1403522,5,'Dialogue Editor'),(10395,1455292,1,'First Assistant Camera'),(10395,1457666,5,'First Assistant Editor'),(10395,1521508,8,'Costume Supervisor'),(33909,1152,2,'Director'),(33909,34050,4,'Writer'),(33909,37317,6,'Original Music Composer'),(33909,59583,4,'Writer'),(33909,1588593,9,'Stand In'),(10592,2589,4,'Author'),(10592,3965,3,'Casting'),(10592,9199,7,'Production Design'),(10592,14608,7,'Art Direction'),(10592,8915,3,'Executive Producer'),(10592,11813,3,'Producer'),(10592,12037,7,'Art Direction'),(10592,21003,3,'Producer'),(10592,20842,3,'Producer'),(10592,17812,2,'Director'),(10592,17812,3,'Producer'),(10592,17816,5,'Editor'),(10592,36624,8,'Costume Design'),(10592,21039,1,'Director of Photography'),(10592,21807,4,'Author'),(10592,33104,3,'Producer'),(10592,62930,3,'Casting'),(10592,65724,3,'Producer'),(10592,65723,4,'Author'),(10592,65725,7,'Set Decoration'),(11535,996,6,'Original Music Composer'),(11535,282,3,'Producer'),(11535,391,7,'Production Design'),(11535,912,4,'Screenplay'),(11535,1090,2,'Director'),(11535,1090,3,'Producer'),(11535,8752,5,'Editor'),(11535,13928,3,'Producer'),(11535,13932,3,'Casting'),(11535,13933,7,'Production Design'),(11535,17630,3,'Executive Producer'),(11535,17886,5,'Editor'),(11535,22061,7,'Art Direction'),(11535,51981,1,'Director of Photography'),(11535,59328,4,'Screenplay'),(10550,4949,6,'Original Music Composer'),(10550,7730,5,'Editor'),(10550,11506,1,'Director of Photography'),(10550,13227,5,'Editor'),(10550,16787,3,'Executive Producer'),(10550,18691,3,'Producer'),(10550,21479,3,'Executive Producer'),(10550,21697,3,'Producer'),(10550,36618,3,'Executive Producer'),(10550,113194,9,'Stunts'),(10550,56452,4,'Screenplay'),(10550,60784,3,'Executive Producer'),(10550,65615,2,'Director'),(10550,65615,3,'Producer'),(10550,1007395,9,'Stunts'),(11258,284,3,'Producer'),(11258,2224,3,'Co-Producer'),(11258,2529,7,'Set Decoration'),(11258,3191,3,'Casting'),(11258,3991,6,'Boom Operator'),(11258,10631,10,'Special Effects Supervisor'),(11258,6048,3,'Producer'),(11258,9987,3,'Producer'),(11258,19155,6,'Original Music Composer'),(11258,13304,7,'Production Design'),(11258,9624,9,'Stunt Coordinator'),(11258,14349,7,'Supervising Art Director'),(11258,14350,7,'Art Direction'),(11258,10766,5,'Editor'),(11258,17629,1,'Director of Photography'),(11258,21206,4,'Screenplay'),(11258,20540,3,'Casting'),(11258,21983,3,'Executive Producer'),(11258,23780,1,'Steadicam Operator'),(11258,30149,2,'Director'),(11258,35583,8,'Costume Design'),(11258,113043,6,'Foley'),(11258,62045,3,'Producer'),(11258,62045,3,'Production Manager'),(11258,68810,5,'Editor'),(11258,91051,8,'Hairstylist'),(11258,91122,1,'Aerial Camera'),(11258,91891,5,'Dialogue Editor'),(11258,164801,7,'Property Master'),(11258,173957,2,'Assistant Director'),(11258,958691,7,'Set Designer'),(11258,1231306,10,'Visual Effects Supervisor'),(11258,1273347,9,'Post Production Supervisor'),(11258,1341801,2,'Script Supervisor'),(11258,1342250,7,'Leadman'),(11258,1395275,1,'Still Photographer'),(11258,1395287,11,'Gaffer'),(11258,1404288,1,'Camera Operator'),(11258,1413124,11,'Rigging Gaffer'),(11258,1416434,9,'Video Assist Operator'),(11258,1417515,6,'Sound Effects Editor'),(11258,1428227,8,'Set Costumer'),(11258,1431053,10,'Visual Effects Coordinator'),(11258,1435194,6,'Music Editor'),(11258,1437195,9,'Special Effects Coordinator'),(11258,1476808,5,'Editor'),(11258,1535425,7,'Construction Coordinator'),(11258,1536975,6,'Sound Designer'),(11258,1536975,6,'Supervising Sound Editor'),(11258,1545540,6,'Production Sound Mixer'),(11258,1548698,6,'Orchestrator'),(11258,1560108,9,'Unit Publicist'),(11258,1562248,5,'Color Timer'),(11258,1566837,10,'Visual Effects Producer'),(11258,1567920,11,'Rigging Grip'),(11258,1569557,1,'First Assistant Camera'),(11258,1573076,7,'Greensman'),(11258,1573115,9,'CG Supervisor'),(11258,1582408,1,'Grip'),(11258,1602873,9,'Visual Effects Editor'),(11258,1614187,11,'Lighting Technician'),(11258,1629423,6,'Sound Recordist'),(11258,1634423,9,'Scenic Artist'),(11258,1795426,11,'Electrician'),(11258,1840254,7,'Lead Painter'),(11258,1840257,7,'Painter'),(11258,1840261,1,'Key Grip'),(11258,1840263,8,'Set Dressing Artist'),(11258,1840264,9,'Driver'),(11258,1840266,9,'Propmaker'),(11258,1840267,9,'Set Medic'),(11258,1840269,9,'Set Production Assistant'),(11258,1840271,9,'Stunts'),(11258,1840277,9,'Technical Supervisor'),(11258,1840285,11,'Best Boy Electric'),(11258,1840287,3,'Location Manager'),(11258,1840288,3,'Production Coordinator'),(11258,1840290,6,'Assistant Sound Editor'),(11258,1840291,10,'3D Animator'),(11258,1840293,10,'Digital Compositors'),(11258,1840294,4,'Storyboard'),(11258,1840295,6,'Sound'),(12610,6114,3,'Co-Producer'),(12610,7415,3,'Casting'),(12610,7395,2,'Director'),(12610,7395,3,'Producer'),(12610,7396,2,'Director'),(12610,7396,3,'Producer'),(12610,7407,3,'Producer'),(12610,7413,1,'Director of Photography'),(12610,7416,7,'Art Direction'),(12610,7417,7,'Set Decoration'),(12610,10387,4,'Screenplay'),(12610,14712,6,'Original Music Composer'),(12610,18786,8,'Hair Department Head'),(12610,11011,3,'Producer'),(12610,20745,8,'Costume Design'),(12610,42267,6,'Sound Designer'),(12610,53009,5,'Editor'),(12610,33340,3,'Associate Producer'),(12610,59363,5,'Editor'),(12610,60267,3,'Associate Producer'),(12610,73106,3,'Producer'),(12610,73108,5,'Editor'),(12610,126638,4,'Storyboard'),(12610,932118,7,'Production Design'),(12610,958895,10,'Visual Development'),(12610,961093,2,'First Assistant Director'),(12610,1195160,10,'Visual Effects Supervisor'),(12610,1205985,10,'Lead Animator'),(12610,1217416,4,'Storyboard'),(12610,1249293,10,'Visual Development'),(12610,1270289,10,'Visual Development'),(12610,1447297,10,'Animation'),(12610,1447298,9,'Supervising Animator'),(12610,1447310,9,'Post Production Supervisor'),(12610,1447347,2,'Layout'),(12610,1447368,10,'Animation'),(12610,1447377,10,'Animation'),(12610,1447380,10,'Animation'),(12610,1447393,10,'Visual Development'),(12610,1447436,2,'Layout'),(12610,1447467,2,'Layout'),(12610,1447500,2,'Layout'),(12610,1447562,10,'Animation'),(12610,1447563,10,'Animation'),(12610,1447566,10,'Animation'),(12610,1447590,2,'Layout');
INSERT INTO `movie_crew` VALUES (12610,1451265,10,'Visual Development'),(12610,1451635,4,'Storyboard'),(12610,1451661,9,'Special Effects'),(12610,1451676,10,'Visual Effects'),(12610,1453498,10,'Animation'),(12610,1457625,4,'Storyboard'),(12610,1457627,7,'Art Department Manager'),(12610,1457628,10,'Visual Development'),(12610,1457630,10,'Visual Development'),(12610,1457631,4,'Storyboard'),(12610,1457632,10,'Visual Development'),(12610,1457633,9,'Stunt Coordinator'),(12610,1457634,10,'Special Effects Supervisor'),(12610,1457636,9,'Special Effects'),(12610,1457637,9,'Special Effects Coordinator'),(12610,1457638,7,'Sculptor'),(12610,1460442,10,'Animation'),(12610,1468624,8,'Makeup Department Head'),(12610,1812709,6,'Music Supervisor'),(24021,117,6,'Original Music Composer'),(24021,403,1,'Director of Photography'),(24021,10569,3,'Producer'),(24021,6040,3,'Producer'),(24021,7727,10,'Visual Effects Supervisor'),(24021,15229,9,'Stunt Coordinator'),(24021,15315,6,'Music Editor'),(24021,56765,6,'Sound Re-Recording Mixer'),(24021,25046,3,'Executive Producer'),(24021,27571,2,'Director'),(24021,27577,5,'Editor'),(24021,40835,7,'Production Design'),(24021,56855,4,'Screenplay'),(24021,56856,4,'Novel'),(24021,67846,5,'Editor'),(24021,60282,3,'Casting'),(24021,61647,3,'Executive Producer'),(24021,62860,8,'Costume Design'),(24021,63720,3,'Executive Producer'),(24021,84127,3,'Executive Producer'),(24021,80826,6,'Sound Effects Editor'),(24021,84220,3,'Co-Producer'),(24021,203227,9,'Stunts'),(24021,947682,3,'Casting'),(24021,959072,3,'Casting'),(24021,1316787,9,'Stunt Coordinator'),(24021,1336716,10,'Visual Effects Supervisor'),(24021,1378716,1,'Still Photographer'),(24021,1393423,2,'Script Supervisor'),(24021,1402111,6,'Sound Re-Recording Mixer'),(24021,1412703,6,'Sound Effects Editor'),(24021,1453929,10,'Animation'),(24021,1453943,9,'Technical Supervisor'),(24021,1460590,9,'Special Effects'),(24021,1461183,6,'Music Editor'),(24021,1463785,10,'VFX Artist'),(24021,1538148,6,'Music Supervisor'),(24021,1538209,3,'Associate Producer'),(24021,1737894,9,'Stunts'),(11371,117,6,'Original Music Composer'),(11371,4189,8,'Costume Design'),(11371,6347,3,'Casting'),(11371,7040,4,'Screenplay'),(11371,7716,7,'Production Design'),(11371,7908,2,'Director'),(11371,9646,5,'Editor'),(11371,12922,3,'Producer'),(11371,23649,4,'Screenplay'),(11371,60012,1,'Director of Photography'),(11371,65558,3,'Producer'),(11371,69144,4,'Screenplay'),(11371,1416438,2,'Script Supervisor'),(20352,5720,3,'Producer'),(20352,7903,3,'Casting'),(20352,15779,5,'Editor'),(20352,52360,4,'Screenplay'),(20352,52361,4,'Screenplay'),(20352,59706,6,'Original Music Composer'),(20352,61300,7,'Production Design'),(20352,65674,3,'Producer'),(20352,68016,6,'Orchestrator'),(20352,71855,5,'Editor'),(20352,107706,3,'Executive Producer'),(20352,118713,10,'Animation'),(20352,124747,2,'Director'),(20352,124748,2,'Director'),(20352,124749,4,'Story'),(20352,124749,3,'Executive Producer'),(20352,558267,6,'Original Music Composer'),(20352,998570,7,'Art Direction'),(20352,1011957,3,'Producer'),(20352,1098477,4,'Storyboard'),(20352,1205985,4,'Storyboard'),(20352,1447310,9,'Post Production Supervisor'),(20352,1447378,10,'Animation'),(20352,1459735,10,'Animation'),(20352,1531911,5,'Editor'),(11517,6410,3,'Casting'),(11517,1059,3,'Producer'),(11517,1264,5,'Editor'),(11517,1586,3,'Executive Producer'),(11517,2986,3,'Co-Producer'),(11517,3805,3,'Producer'),(11517,6328,9,'Stunt Coordinator'),(11517,9270,7,'Art Direction'),(11517,9989,6,'Original Music Composer'),(11517,11454,5,'Editor'),(11517,12258,7,'Set Decoration'),(11517,13933,7,'Art Direction'),(11517,15524,8,'Costume Design'),(11517,15527,5,'Dialogue Editor'),(11517,20840,4,'Screenplay'),(11517,23969,1,'Director of Photography'),(11517,38410,1,'Camera Operator'),(11517,38410,1,'Steadicam Operator'),(11517,51449,3,'Production Manager'),(11517,52629,2,'Director'),(11517,71130,6,'Music Supervisor'),(11517,92377,6,'Sound Re-Recording Mixer'),(11517,71423,3,'Executive Producer'),(11517,71424,3,'Executive Producer'),(11517,933949,1,'Camera Operator'),(11517,959360,7,'Production Design'),(11517,1337464,6,'Sound Re-Recording Mixer'),(11517,1341403,6,'Sound Effects Editor'),(11517,1341862,9,'Transportation Captain'),(11517,1395690,6,'Sound Effects Editor'),(11517,1403515,6,'Supervising Sound Editor'),(11517,1405321,8,'Makeup Department Head'),(11517,1411272,1,'Camera Operator'),(11517,1419089,3,'Associate Producer'),(11517,1422054,8,'Makeup Artist'),(11517,1444909,8,'Hairstylist'),(11517,1476342,3,'Co-Producer'),(11517,1534236,1,'Still Photographer'),(11517,1534622,2,'Script Supervisor'),(11517,1537446,1,'Still Photographer'),(11517,1551340,8,'Hairstylist'),(11517,1551342,7,'Art Department Coordinator'),(11517,1551343,6,'Sound Effects Editor'),(11517,1551345,6,'Sound Effects Editor'),(26428,474,3,'Casting'),(26428,1304,8,'Costume Design'),(26428,11269,6,'Music'),(26428,40810,6,'Supervising Sound Editor'),(26428,40811,6,'Sound Designer'),(26428,40813,5,'Dialogue Editor'),(26428,40814,6,'ADR & Dubbing'),(26428,40816,6,'Sound Effects Editor'),(26428,40819,6,'Sound Re-Recording Mixer'),(26428,15604,5,'Editor'),(26428,16941,3,'Producer'),(26428,17428,6,'Foley'),(26428,19840,2,'Director'),(26428,19840,4,'Writer'),(26428,19841,4,'Writer'),(26428,21984,7,'Set Decoration'),(26428,26196,8,'Makeup Artist'),(26428,29609,7,'Art Direction'),(26428,37301,7,'Supervising Art Director'),(26428,37952,1,'Director of Photography'),(26428,51898,9,'Second Unit Cinematographer'),(26428,58283,1,'Camera Operator'),(26428,71577,7,'Art Direction'),(26428,117226,9,'Property Master'),(26428,962164,7,'Art Direction'),(26428,999561,6,'Sound Effects Editor'),(26428,1002096,11,'Gaffer'),(26428,1173687,9,'Stunt Coordinator'),(26428,1271644,7,'Production Design'),(26428,1338287,6,'Music Editor'),(26428,1338969,6,'Sound Effects Editor'),(26428,1394004,6,'Sound Re-Recording Mixer'),(26428,1404207,7,'Assistant Art Director'),(26428,1404208,7,'Assistant Art Director'),(26428,1408405,3,'Location Manager'),(26428,1409848,1,'Still Photographer'),(26428,1409857,2,'Script Supervisor'),(26428,1411341,1,'Helicopter Camera'),(26428,1425481,6,'Sound Re-Recording Mixer'),(26428,1444920,10,'Visual Effects Supervisor'),(26428,1448275,10,'Visual Effects Producer'),(26428,1464779,1,'Camera Operator'),(26428,1465985,7,'Art Department Coordinator'),(26428,1465987,7,'Assistant Art Director'),(26428,1465988,7,'Assistant Art Director'),(26428,1465989,7,'Assistant Art Director'),(26428,1465990,7,'Construction Coordinator'),(26428,1465991,9,'CG Supervisor'),(26428,1465992,10,'Visual Effects Supervisor'),(26428,1465993,5,'Digital Intermediate'),(26428,1465995,9,'Transportation Coordinator'),(12113,2952,3,'Casting'),(12113,474,3,'Casting'),(12113,578,2,'Director'),(12113,578,3,'Producer'),(12113,946,8,'Costume Design'),(12113,944,7,'Production Design'),(12113,950,5,'Editor'),(12113,5673,7,'Supervising Art Director'),(12113,8673,1,'Steadicam Operator'),(12113,13050,9,'Dialect Coach'),(12113,13166,6,'Sound Effects Editor'),(12113,14764,6,'Sound Effects Editor'),(12113,14765,6,'Supervising Sound Editor'),(12113,34510,4,'Screenplay'),(12113,20507,7,'Set Decoration'),(12113,23453,7,'Art Direction'),(12113,17649,1,'Director of Photography'),(12113,42291,10,'Visual Effects Producer'),(12113,40374,3,'Executive Producer'),(12113,56697,7,'Supervising Art Director'),(12113,57600,11,'Gaffer'),(12113,58470,3,'Producer'),(12113,59040,9,'Dialect Coach'),(12113,63421,6,'Music'),(12113,59370,1,'Camera Operator'),(12113,71311,4,'Novel'),(12113,71311,4,'Screenplay'),(12113,77511,3,'Line Producer'),(12113,77512,3,'Executive Producer'),(12113,77513,7,'Art Direction'),(12113,83114,9,'Dialect Coach'),(12113,91941,9,'Unit Publicist'),(12113,119180,7,'Assistant Art Director'),(12113,142152,8,'Makeup Artist'),(12113,983118,1,'Steadicam Operator'),(12113,998152,3,'Production Manager'),(12113,1017296,9,'Visual Effects Editor'),(12113,1049333,6,'Music Editor'),(12113,1074163,9,'Stunt Coordinator'),(12113,1169459,10,'Visual Effects Producer'),(12113,1177850,1,'Still Photographer'),(12113,1224272,9,'Special Effects Coordinator'),(12113,1322137,8,'Costume Supervisor'),(12113,1331895,8,'Costume Supervisor'),(12113,1334779,9,'Property Master'),(12113,1338372,6,'Foley'),(12113,1342658,5,'Dialogue Editor'),(12113,1367493,6,'Foley'),(12113,1387217,7,'Art Department Coordinator'),(12113,1390388,2,'Script Supervisor'),(12113,1391571,6,'Sound Re-Recording Mixer'),(12113,1398083,7,'Assistant Art Director'),(12113,1399141,6,'Sound Re-Recording Mixer'),(12113,1400066,7,'Set Designer'),(12113,1401599,3,'Location Manager'),(12113,1403415,1,'Helicopter Camera'),(12113,1403698,7,'Assistant Art Director'),(12113,1404205,9,'Post Production Supervisor'),(12113,1404208,7,'Assistant Art Director'),(12113,1404212,6,'Supervising Sound Editor'),(12113,1404217,6,'Sound Effects Editor'),(12113,1404244,1,'Helicopter Camera'),(12113,1405373,8,'Hairstylist'),(12113,1405374,7,'Art Department Coordinator'),(12113,1405375,7,'Supervising Art Director'),(12113,1405376,7,'Set Designer'),(12113,1405377,7,'Construction Foreman'),(12113,1405378,7,'Leadman'),(12113,1405379,7,'Leadman'),(12113,1405382,5,'Dialogue Editor'),(12113,1405385,10,'Visual Effects Supervisor'),(12113,1405388,1,'Camera Operator'),(12113,1405389,1,'Camera Operator'),(12113,1405391,1,'Camera Operator'),(12113,1405394,1,'Camera Operator'),(12113,1405401,1,'Camera Operator'),(12113,1405419,5,'Digital Intermediate'),(12113,1405420,9,'Transportation Coordinator'),(12113,1405422,9,'Picture Car Coordinator'),(12113,1405423,9,'Picture Car Coordinator'),(12113,1405427,3,'Location Manager'),(12113,1405428,3,'Location Manager'),(12113,1405429,3,'Location Manager'),(12113,1532615,7,'Construction Coordinator'),(12113,1553236,11,'Gaffer'),(12133,312,6,'Original Music Composer'),(12133,4764,4,'Story'),(12133,11409,1,'Director of Photography'),(12133,23659,4,'Screenplay'),(12133,23659,3,'Executive Producer'),(12133,23659,4,'Story'),(12133,21795,7,'Art Direction'),(12133,36605,8,'Costume Design'),(12133,41039,3,'Producer'),(12133,41079,5,'Editor'),(12133,54585,7,'Production Design'),(12133,55710,2,'Director'),(12133,55710,3,'Executive Producer'),(12133,55710,4,'Screenplay'),(12133,55710,4,'Story'),(12133,61107,3,'Executive Producer'),(12133,61397,3,'Producer'),(12133,68016,6,'Orchestrator'),(12133,74779,6,'Production Sound Mixer'),(12133,11063,7,'Set Decoration'),(12133,1323077,8,'Costume Supervisor'),(12133,1478953,2,'Script Supervisor'),(12133,1536542,1,'Still Photographer'),(11820,294,5,'Editor'),(11820,1484,3,'Casting'),(11820,2100,4,'Screenplay'),(11820,2103,4,'Screenplay'),(11820,3429,7,'Production Design'),(11820,3562,6,'Original Music Composer'),(11820,10723,2,'Director'),(11820,15435,10,'Visual Effects Supervisor'),(11820,17221,7,'Set Decoration'),(11820,18344,3,'Producer'),(11820,19464,1,'Director of Photography'),(11820,18311,3,'Executive Producer'),(11820,22219,3,'Casting'),(11820,37406,7,'Art Direction'),(11820,38939,3,'Co-Producer'),(11820,41324,8,'Costume Design'),(11820,52004,3,'Producer'),(11820,70592,3,'Producer'),(11820,1393558,7,'Leadman'),(11820,1405321,8,'Makeup Department Head'),(11820,1467080,2,'Script Supervisor'),(11820,1468882,7,'Set Decoration'),(10483,4014,4,'Screenplay'),(10483,4014,2,'Director'),(10483,4014,3,'Producer'),(10483,4014,4,'Screenstory'),(10483,4016,3,'Producer'),(10483,1324,3,'Casting'),(10483,2214,6,'Music'),(10483,102429,3,'Producer'),(10483,6053,7,'Set Decoration'),(10483,9183,3,'Producer'),(10483,9271,7,'Art Direction'),(10483,9555,6,'Supervising Sound Editor'),(10483,13621,3,'Executive Producer'),(10483,31126,1,'Director of Photography'),(10483,23545,3,'Casting'),(10483,35179,3,'Line Producer'),(10483,35179,1,'Additional Photography'),(10483,40835,7,'Production Design'),(10483,42360,3,'Casting'),(10483,54419,3,'Executive Producer'),(10483,57158,9,'Second Unit Cinematographer'),(10483,60088,7,'Set Designer'),(10483,92237,1,'Camera Operator'),(10483,960600,8,'Costume Design'),(10483,968316,9,'Stunt Coordinator'),(10483,993879,3,'Casting'),(10483,1002652,10,'Visual Effects Supervisor'),(10483,1031621,6,'Sound Effects Editor'),(10483,1065512,1,'Camera Operator'),(10483,1304276,6,'Foley'),(10483,1322019,7,'Art Direction'),(10483,1326401,8,'Makeup Department Head'),(10483,1340346,5,'Dialogue Editor'),(10483,1364796,6,'Sound Effects Editor'),(10483,1368864,6,'Sound Re-Recording Mixer'),(10483,1378241,1,'Camera Operator'),(10483,1380378,7,'Set Designer'),(10483,1384358,7,'Assistant Art Director'),(10483,1384359,7,'Assistant Art Director'),(10483,1384362,7,'Set Designer'),(10483,1392106,1,'Still Photographer'),(10483,1392893,9,'Property Master'),(10483,1394130,6,'Sound Re-Recording Mixer'),(10483,1399313,10,'Visual Effects Producer'),(10483,1401283,7,'Set Designer'),(10483,1401288,6,'Sound Effects Editor'),(10483,1402023,7,'Art Department Coordinator'),(10483,1404739,1,'Helicopter Camera'),(10483,1407007,8,'Hairstylist'),(10483,1410568,9,'Sound Recordist'),(10483,1419264,10,'Visual Effects Producer'),(10483,1420553,8,'Hairstylist'),(10483,1420559,7,'Assistant Art Director'),(10483,1420570,10,'Visual Effects Producer'),(10483,1420572,1,'Camera Operator'),(10483,1420573,1,'Camera Operator'),(10483,1420574,1,'Camera Operator'),(11412,37,6,'Original Music Composer'),(11412,15841,5,'Editor'),(11412,1108,4,'Screenplay'),(11412,1108,3,'Producer'),(11412,3113,1,'Director of Photography'),(11412,3984,3,'Producer'),(11412,16935,3,'Producer'),(11412,16938,2,'Director'),(11412,16938,3,'Producer'),(11412,1368867,9,'Special Effects Coordinator'),(11983,531,6,'Original Music Composer'),(11983,1202,3,'Executive Producer'),(11983,1129,1,'Director of Photography'),(11983,3222,3,'Producer'),(11983,18596,2,'Director'),(11983,18596,3,'Producer'),(11983,19242,4,'Screenplay'),(11983,71168,4,'Novel'),(11983,71169,4,'Author'),(11170,1217,5,'Editor'),(11170,36425,2,'Director'),(11170,23486,6,'Original Music Composer'),(11170,54211,3,'Executive Producer'),(11170,54212,3,'Executive Producer'),(11170,60711,3,'Executive Producer'),(11170,57126,1,'Director of Photography'),(11170,67759,3,'Producer'),(11170,60245,3,'Executive Producer'),(11170,68432,4,'Screenplay'),(11170,68435,3,'Executive Producer'),(11170,68436,5,'Editor'),(11170,1353899,4,'Writer'),(10783,1528,6,'Original Music Composer'),(10783,2988,5,'Editor'),(10783,7779,3,'Producer'),(10783,9248,2,'Director'),(10783,9248,3,'Producer'),(10783,23969,1,'Director of Photography'),(10783,29525,3,'Producer'),(10783,57107,4,'Screenplay'),(12618,1301,1,'Director of Photography'),(12618,2226,2,'Director'),(12618,2226,3,'Producer'),(12618,2241,5,'Editor'),(12618,3390,3,'Executive Producer'),(12618,3390,4,'Novel'),(12618,4184,3,'Executive Producer'),(12618,10637,4,'Screenplay'),(12618,10771,6,'Original Music Composer'),(12618,71762,3,'Producer'),(16577,9039,6,'Music'),(16577,14711,4,'Screenplay'),(16577,33183,2,'Director'),(16577,58160,4,'Author'),(16577,61297,3,'Executive Producer'),(16577,1397895,3,'Line Producer'),(16577,1451274,2,'Layout'),(16577,1451676,2,'Layout'),(16577,1460488,10,'VFX Artist'),(12160,557,8,'Costume Design'),(12160,1213,6,'Original Music Composer'),(12160,1269,3,'Producer'),(12160,4032,7,'Set Decoration'),(12160,5167,7,'Production Design'),(12160,8844,4,'Screenplay'),(12160,8844,2,'Director'),(12160,8844,3,'Producer'),(12160,16329,3,'Executive Producer'),(12160,16331,1,'Director of Photography'),(12160,7847,3,'Producer'),(12160,8426,3,'Casting'),(12160,9966,5,'Editor'),(12160,12051,7,'Art Direction'),(12160,30383,3,'Executive Producer'),(12160,54972,4,'Screenplay'),(12160,67453,3,'Executive Producer'),(12160,71499,3,'Executive Producer'),(12177,909,5,'Editor'),(12177,4504,3,'Executive Producer'),(12177,4507,3,'Executive Producer'),(12177,4767,3,'Producer'),(12177,9204,6,'Original Music Composer'),(12177,9573,1,'Director of Photography'),(12177,10394,5,'Editor'),(12177,12073,4,'Screenplay'),(12177,12073,3,'Producer'),(12177,14915,7,'Set Decoration'),(12177,19285,8,'Costume Design'),(12177,32349,7,'Production Design'),(12177,15779,5,'Editor'),(12177,71527,2,'Director'),(12177,71528,4,'Screenplay'),(12177,406204,8,'Makeup Artist'),(12177,1471726,6,'Music Supervisor'),(12138,8303,3,'Executive Producer'),(12138,9204,6,'Music'),(12138,18691,3,'Producer'),(12138,21119,5,'Editor'),(12138,21120,5,'Editor'),(12138,21222,1,'Director of Photography'),(12138,21479,3,'Producer'),(12138,36618,3,'Executive Producer'),(12138,71420,4,'Screenplay'),(12138,71418,4,'Screenplay'),(12138,71418,2,'Director'),(12138,71418,3,'Producer'),(12138,71421,3,'Producer'),(12138,71422,3,'Producer'),(12138,1007395,9,'Stunt Coordinator'),(14306,376,3,'Executive Producer'),(14306,2199,4,'Screenplay'),(14306,5065,2,'Director'),(14306,10569,3,'Producer'),(14306,10570,3,'Executive Producer'),(14306,10570,3,'Unit Production Manager'),(14306,10572,6,'Music'),(14306,10573,1,'Director of Photography'),(14306,10574,5,'Editor'),(14306,6347,3,'Casting'),(14306,7535,7,'Set Decoration'),(14306,11713,7,'Art Direction'),(14306,21379,7,'Production Design'),(14306,21969,3,'Casting'),(14306,23427,8,'Makeup Artist'),(14306,25455,3,'Producer'),(14306,58357,3,'Unit Production Manager'),(14306,39594,7,'Assistant Art Director'),(14306,44858,11,'Best Boy Electric'),(14306,47294,8,'Costume Design'),(14306,57579,4,'Screenplay'),(14306,92389,6,'Sound Effects Editor'),(14306,92391,6,'Supervising Sound Editor'),(14306,83655,6,'Music Supervisor'),(14306,91071,7,'Construction Coordinator'),(14306,91153,9,'Transportation Captain'),(14306,162522,9,'Stunt Coordinator'),(14306,206398,9,'Stunt Coordinator'),(14306,995189,1,'Camera Operator'),(14306,1074163,9,'Stunt Coordinator'),(14306,1204332,11,'Gaffer'),(14306,1326110,7,'Assistant Art Director'),(14306,1328970,9,'Cableman'),(14306,1353528,8,'Makeup Department Head'),(14306,1393390,10,'Visual Effects Supervisor'),(14306,1395281,1,'Camera Operator'),(14306,1395281,1,'Steadicam Operator'),(14306,1399701,3,'Casting'),(14306,1400072,6,'Sound Re-Recording Mixer'),(14306,1400540,2,'Script Supervisor'),(14306,1407027,1,'Still Photographer'),(14306,1407683,10,'Visual Effects Producer'),(14306,1412211,9,'Picture Car Coordinator'),(14306,1413124,11,'Rigging Gaffer'),(14306,1414090,8,'Makeup Artist'),(14306,1439013,7,'Art Department Coordinator'),(14306,1445487,5,'Additional Editing'),(14306,1445867,8,'Hairstylist'),(14306,1496412,6,'Supervising Sound Editor'),(14306,1529800,8,'Key Hair Stylist'),(14306,1533073,8,'Hairstylist'),(14306,1533151,8,'Costume Supervisor'),(14306,1534668,6,'Music Editor'),(14306,1537850,9,'Special Effects Coordinator'),(14306,1538437,8,'Hairstylist'),(14306,1549436,3,'Location Manager'),(14306,1562119,5,'Assistant Editor'),(14306,1570749,9,'Craft Service'),(14306,1596734,6,'Sound Mixer'),(14306,1618327,5,'Editorial Production Assistant'),(14306,1645610,9,'Property Master'),(14306,1716452,4,'Book'),(14306,1717154,9,'Loader'),(14306,1717155,6,'Boom Operator'),(14306,1717156,11,'Best Boy Electric'),(14306,1717157,8,'Set Costumer'),(14306,1717158,8,'Set Costumer'),(14306,1717160,3,'Production Coordinator'),(14306,1717161,3,'Production Accountant'),(14306,1717163,3,'Casting Associate'),(14306,1717164,3,'Casting Associate'),(14306,1717165,9,'Unit Publicist'),(14306,1717168,9,'Transportation Co-Captain'),(14306,1717170,9,'Video Assist Operator'),(14306,1717171,10,'24 Frame Playback'),(11199,7414,5,'Editor'),(11199,2995,5,'Editor'),(11199,10390,3,'Executive Producer'),(11199,18257,1,'Director of Photography'),(11199,20822,6,'Original Music Composer'),(11199,53177,3,'Producer'),(11199,53178,3,'Producer'),(11199,53180,3,'Executive Producer'),(11199,62758,3,'Producer'),(11199,68573,2,'Director'),(11199,68574,4,'Screenplay'),(11199,86199,6,'Music Supervisor'),(10708,7414,5,'Editor'),(10708,546,3,'Casting'),(10708,1590,1,'Director of Photography'),(10708,2043,3,'Producer'),(10708,3393,6,'Original Music Composer'),(10708,6040,3,'Producer'),(10708,11815,3,'Executive Producer'),(10708,14377,3,'Casting'),(10708,15524,8,'Costume Design'),(10708,18311,3,'Executive Producer'),(10708,41082,7,'Set Decoration'),(10708,52112,2,'Director'),(10708,57308,3,'Co-Producer'),(10708,57856,4,'Screenplay'),(10708,59416,3,'Producer'),(10708,66921,3,'Executive Producer'),(10708,76708,7,'Set Designer'),(10708,112520,7,'Production Design'),(10708,112521,7,'Art Direction'),(10708,223242,7,'Location Scout'),(10708,957368,7,'Set Decoration'),(10708,1031815,3,'Production Coordinator'),(10708,1246457,7,'Set Designer'),(10708,1378224,7,'Set Designer'),(10708,1402013,3,'Location Manager'),(10708,1428974,3,'Unit Production Manager'),(10708,1457729,2,'Script Supervisor'),(10708,1584241,9,'Post Production Supervisor'),(10708,1786664,3,'Associate Producer'),(10708,1786666,7,'Set Designer'),(10708,1786674,3,'Casting Assistant'),(10708,1786676,7,'Location Scout'),(10992,4500,6,'Original Music Composer'),(10992,11506,1,'Director of Photography'),(10992,56411,4,'Screenplay'),(10992,56412,4,'Screenplay'),(10992,64191,2,'Director'),(10992,66897,3,'Producer'),(10992,66898,5,'Editor'),(10992,1007395,9,'Stunt Coordinator'),(10992,1217416,4,'Storyboard'),(10992,1447362,10,'Animation'),(19899,4937,4,'Screenplay'),(19899,12708,2,'Director'),(19899,15277,4,'Screenplay'),(19899,56718,4,'Screenplay'),(19899,1485872,3,'Location Manager'),(19899,1486276,3,'Location Manager'),(11128,52035,4,'Screenplay'),(11128,8375,9,'Post Production Supervisor'),(11128,2626,7,'Production Design'),(11128,4952,3,'Casting'),(11128,5332,8,'Costume Design'),(11128,10632,9,'Second Unit Cinematographer'),(11128,11166,6,'Original Music Composer'),(11128,11655,3,'Executive Producer'),(11128,11308,6,'Music Editor'),(11128,12638,7,'Art Direction'),(11128,12639,7,'Assistant Art Director'),(11128,16467,7,'Art Direction'),(11128,23914,5,'Editor'),(11128,20802,3,'Producer'),(11128,23926,5,'Editor'),(11128,31518,3,'Co-Producer'),(11128,41587,3,'Executive Producer'),(11128,46297,2,'Director'),(11128,51783,1,'Director of Photography'),(11128,52469,3,'Associate Producer'),(11128,55952,3,'Executive In Charge Of Production'),(11128,60130,3,'Unit Production Manager'),(11128,60862,3,'Associate Producer'),(11128,64126,3,'Production Accountant'),(11128,227227,6,'Music Supervisor'),(11128,957368,7,'Set Decoration'),(11128,1005950,7,'Construction Coordinator'),(11128,1074163,9,'Stunt Coordinator'),(11128,1137332,10,'Digital Compositors'),(11128,1194998,3,'Associate Producer'),(11128,1206767,7,'Set Designer'),(11128,1287672,9,'Special Effects Coordinator'),(11128,1299130,11,'Gaffer'),(11128,1324118,8,'Makeup Artist'),(11128,1335219,6,'Sound Editor'),(11128,1347997,6,'Foley'),(11128,1355972,9,'Chef'),(11128,1367666,6,'First Assistant Sound Editor'),(11128,1372092,9,'Stunts'),(11128,1378766,8,'Costume Supervisor'),(11128,1379396,9,'Visual Effects Editor'),(11128,1389600,3,'Location Manager'),(11128,1389601,2,'Script Supervisor'),(11128,1399876,1,'Still Photographer'),(11128,1400093,6,'Sound Effects Editor'),(11128,1401273,9,'Unit Publicist'),(11128,1405389,1,'Helicopter Camera'),(11128,1405422,9,'Picture Car Coordinator'),(11128,1406396,10,'Visual Effects Supervisor'),(11128,1406397,10,'Visual Effects Producer'),(11128,1408396,11,'Rigging Gaffer'),(11128,1408398,11,'Lighting Technician'),(11128,1412452,6,'Supervising Sound Editor'),(11128,1412702,6,'Sound Designer'),(11128,1413452,9,'Sound Recordist'),(11128,1449993,8,'Hairstylist'),(11128,1459199,9,'Property Master'),(11128,1463390,6,'Sound Mixer'),(11128,1473985,3,'Line Producer'),(11128,1509364,5,'Dialogue Editor'),(11128,1540470,5,'Color Timer'),(11128,1546156,7,'Construction Foreman'),(11128,1556633,6,'Scoring Mixer'),(11128,1573601,9,'Security'),(11128,1602885,6,'Orchestrator'),(11128,1625901,11,'Rigging Grip'),(11128,1631601,8,'Key Hair Stylist'),(11128,1634062,8,'Set Dressing Artist'),(11128,1634258,9,'Transportation Captain'),(11128,1640494,3,'Casting Associate'),(11128,1646247,9,'Video Assist Operator'),(11128,1680472,10,'Visual Effects'),(11128,1711188,7,'Art Department Coordinator'),(11128,1711189,7,'Greensman'),(11128,1711190,7,'Location Scout'),(11128,1711191,7,'Painter'),(11128,1711192,7,'Set Decoration Buyer'),(11128,1711193,7,'Standby Painter'),(11128,1711194,1,'Additional Camera'),(11128,1711195,1,'Camera Operator'),(11128,1711196,1,'First Assistant Camera'),(11128,1711197,1,'Grip'),(11128,1711198,8,'Set Costumer'),(11128,1711199,9,'Carpenter'),(11128,1711200,9,'Craft Service'),(11128,1711202,9,'Driver'),(11128,1711204,9,'Loader'),(11128,1711205,9,'Post Production Assistant'),(11128,1711206,9,'Propmaker'),(11128,1711207,9,'Set Production Assistant'),(11128,1711208,9,'Stand In'),(11128,1711209,9,'Transportation Co-Captain'),(11128,1711210,9,'Transportation Coordinator'),(11128,1711214,2,'Assistant Director'),(11128,1711215,11,'Best Boy Electric'),(11128,1711216,11,'Electrician'),(11128,1711217,3,'Production Coordinator'),(11128,1711218,3,'Production Supervisor'),(11128,1711219,6,'Boom Operator'),(11128,1711710,10,'Visual Effects Coordinator'),(11128,1711712,4,'Storyboard'),(13576,65310,2,'Director'),(13576,1046544,6,'Music'),(13576,1449372,9,'Associate Choreographer'),(13576,1449374,9,'Associate Choreographer'),(13576,1449378,9,'Associate Choreographer'),(13576,1449379,8,'Costume Design'),(10628,770,3,'Producer'),(10628,1720,3,'Casting'),(10628,2444,3,'Executive Producer'),(10628,2446,3,'Executive Producer'),(10628,15841,5,'Editor'),(10628,894,6,'Original Music Composer'),(10628,3228,4,'Screenplay'),(10628,5546,5,'Editor'),(10628,8299,3,'Executive Producer'),(10628,10122,3,'Executive Producer'),(10628,17629,1,'Director of Photography'),(10628,27749,7,'Production Design'),(10628,48980,2,'Director'),(10628,53394,4,'Screenplay'),(10628,62484,7,'Art Direction'),(10628,1271644,7,'Art Direction'),(10628,1428569,5,'Editor'),(10628,1447503,10,'Modeling'),(10628,1799546,7,'Set Decoration'),(14836,310,5,'Editor'),(14836,23446,4,'Screenplay'),(14836,27486,1,'Director of Photography'),(14836,34899,3,'Producer'),(14836,35073,6,'Music'),(14836,66689,7,'Art Direction'),(14836,57646,2,'Director'),(14836,57646,4,'Screenplay'),(14836,57646,3,'Producer'),(14836,65856,10,'Animation'),(14836,69227,3,'Producer'),(14836,154705,4,'Storyboard'),(14836,384204,10,'Animation Supervisor'),(14836,553920,10,'Animation'),(14836,587305,10,'Animation'),(14836,587314,10,'Animation'),(14836,587802,3,'Executive Producer'),(14836,983740,5,'Editor'),(14836,1033661,10,'Animation'),(14836,1119833,3,'Producer'),(14836,1152981,4,'Storyboard'),(14836,1237329,3,'Producer'),(14836,1332501,10,'Visual Effects'),(14836,1353148,10,'Animation'),(14836,1447310,9,'Post Production Supervisor'),(14836,1448043,10,'Animation'),(14836,1448045,10,'Animation'),(14836,1448052,10,'Animation'),(14836,1448063,10,'Animation'),(14836,1448071,10,'Animation'),(14836,1448072,10,'Animation'),(14836,1448073,10,'Animation'),(14836,1450347,4,'Storyboard'),(14836,1452917,10,'Animation'),(14836,1452934,10,'Animation'),(14836,1453485,10,'Animation'),(14836,1453487,10,'Animation Manager'),(14836,1453498,10,'Animation'),(14836,1453498,7,'Art Department Manager'),(14836,1453499,10,'Animation'),(14836,1453503,10,'Animation'),(14836,1453506,3,'Executive Producer'),(14836,1453507,7,'Art Direction'),(14836,1453508,7,'Art Direction'),(14836,1453509,7,'Art Direction'),(14836,1453511,10,'Animation'),(14836,1453512,10,'Animation'),(14836,1453513,10,'Animation'),(14836,1453514,10,'Animation'),(14836,1453515,10,'Animation'),(14836,1453516,10,'Animation'),(14836,1453517,10,'Animation'),(14836,1453518,7,'Art Department Manager'),(14836,1453519,10,'Animation'),(14836,1453520,9,'Technical Supervisor'),(14836,1453521,10,'Animation'),(14836,1453522,10,'Animation'),(14836,1453523,10,'Animation'),(14836,1453524,10,'Animation'),(14836,1453525,7,'Art Department Manager'),(14836,1453526,10,'Animation'),(14836,1453527,10,'Animation'),(14836,1453528,10,'Animation'),(14836,1453530,10,'Animation'),(14836,1453531,10,'Animation'),(14836,1453532,10,'Animation'),(14836,1453533,2,'Layout'),(14836,1453535,10,'Animation'),(14836,1453536,7,'Art Department Manager'),(14836,1453539,9,'Technical Supervisor'),(14836,1453540,7,'Art Department Manager'),(14836,1453543,10,'Animation'),(14836,1453545,9,'Production Office Assistant'),(14836,1453547,10,'Animation'),(14836,1453550,7,'Art Department Manager'),(14836,1453551,4,'Storyboard'),(14836,1459464,9,'Other'),(14836,1459544,10,'Visual Effects'),(14836,1485172,2,'Continuity'),(10067,546,3,'Casting'),(10067,2529,7,'Set Decoration'),(10067,5836,4,'Author'),(10067,15813,6,'Original Music Composer'),(10067,14377,3,'Casting'),(10067,12898,3,'Producer'),(10067,10832,1,'Director of Photography'),(10067,19291,7,'Art Direction'),(10067,33456,8,'Costume Design'),(10067,21158,4,'Author'),(10067,21159,4,'Author'),(10067,23972,7,'Production Design'),(10067,29015,3,'Executive Producer'),(10067,31710,3,'Producer'),(10067,38418,4,'Author'),(10067,38419,4,'Author'),(10067,53177,2,'Director'),(10067,54212,3,'Executive Producer'),(10067,57856,4,'Author'),(10067,62759,5,'Editor'),(10067,62755,4,'Author'),(10067,62757,3,'Executive Producer'),(10067,62756,4,'Author'),(10067,62758,3,'Executive Producer'),(10067,1453594,10,'Animation'),(10067,1453943,11,'Lighting Artist'),(10199,495,3,'Casting'),(10199,15841,9,'Thanks'),(10199,11166,6,'Music'),(10199,11166,6,'Orchestrator'),(10199,12087,3,'Executive Producer'),(10199,12562,6,'ADR Editor'),(10199,23964,3,'Producer'),(10199,23964,4,'Screenplay'),(10199,38270,3,'Executive Producer'),(10199,38271,3,'Producer'),(10199,43592,6,'Orchestrator'),(10199,49904,4,'Screenstory'),(10199,49905,4,'Screenstory'),(10199,54419,3,'Executive Producer'),(10199,59055,3,'ADR Voice Casting'),(10199,64152,2,'Director'),(10199,58897,2,'Director'),(10199,70042,1,'Director of Photography'),(10199,154705,4,'Story'),(10199,172733,5,'Editor'),(10199,240779,10,'Lead Animator'),(10199,998572,7,'Supervising Art Director'),(10199,1030892,4,'Book'),(10199,1198798,10,'Character Designer'),(10199,1198798,4,'Story'),(10199,1198798,10,'Lead Animator'),(10199,1212071,3,'Casting Associate'),(10199,1342657,6,'Sound Designer'),(10199,1368864,6,'Sound Re-Recording Mixer'),(10199,1394130,6,'Sound Re-Recording Mixer'),(10199,1401631,6,'ADR Editor'),(10199,1406616,6,'ADR Supervisor'),(10199,1406789,6,'Music Editor'),(10199,1408335,5,'Assistant Editor'),(10199,1448043,10,'Lead Animator'),(10199,1448047,10,'Lead Animator'),(10199,1451298,4,'Story'),(10199,1453606,4,'Story'),(10199,1453607,4,'Story'),(10199,1453612,4,'Storyboard'),(10199,1453612,10,'Animation Supervisor'),(10199,1453612,4,'Story'),(10199,1453989,10,'Lead Animator'),(10199,1461169,6,'First Assistant Sound Editor'),(10199,1473444,6,'Sound Effects Editor'),(10199,1530166,6,'Music Supervisor'),(10199,1531911,5,'Editor'),(10199,1531911,5,'Associate Editor'),(10199,1533568,6,'Orchestrator'),(10199,1548410,5,'First Assistant Editor'),(10199,1552873,5,'Color Timer'),(10199,1554432,4,'Story'),(10199,1591575,10,'Lead Animator'),(10199,1629540,4,'Story'),(10199,1719766,9,'Post Production Supervisor'),(10199,1741755,6,'Sound Designer'),(10199,1769885,3,'Executive Producer'),(10199,1769887,3,'Co-Producer'),(10199,1769889,7,'Production Design'),(10199,1769889,10,'Character Designer'),(10199,1769892,10,'Visual Effects Supervisor'),(10199,1769895,10,'Character Designer'),(10199,1769896,10,'Character Designer'),(10199,1769899,4,'Story'),(10199,1769900,4,'Story'),(10199,1769902,5,'First Assistant Editor'),(10199,1769903,5,'Assistant Editor'),(10199,1769914,3,'Associate Producer'),(10199,1769916,3,'Associate Producer'),(10199,1769917,3,'Associate Producer'),(10199,1769919,3,'Associate Producer'),(10199,1769921,3,'Line Producer'),(10199,1769923,10,'Lead Animator'),(10199,1769924,10,'Lead Animator'),(10199,1769925,10,'Lead Animator'),(10199,1769936,7,'Title Designer'),(10771,434,3,'Casting'),(10771,436,3,'Casting Associate'),(10771,4500,6,'Original Music Composer'),(10771,3389,4,'Screenplay'),(10771,5715,4,'Screenplay'),(10771,5715,4,'Story'),(10771,6630,7,'Set Decoration'),(10771,6881,8,'Costume Design'),(10771,12107,3,'Producer'),(10771,18276,5,'Editor'),(10771,23486,6,'Original Music Composer'),(10771,23545,3,'Casting'),(10771,40835,7,'Production Design'),(10771,54047,4,'Story'),(10771,54048,4,'Story'),(10771,11303,3,'Producer'),(10771,58192,1,'Director of Photography'),(10771,66654,2,'Director'),(10771,1316189,7,'Production Design'),(10771,1317044,8,'Makeup Artist'),(10771,1319467,8,'Makeup Artist'),(10771,1322019,7,'Art Direction'),(10771,1333982,8,'Costume Supervisor'),(10771,1364792,8,'Makeup Artist'),(10771,1399490,7,'Art Department Coordinator'),(10771,1399521,2,'Script Supervisor'),(10771,1518503,8,'Key Hair Stylist'),(10771,1524659,8,'Key Hair Stylist'),(10771,1531892,3,'Casting Associate'),(10771,1531894,8,'Costume Supervisor'),(10771,1531895,9,'Choreographer'),(10771,1531896,9,'Armorer'),(10771,1531897,9,'Special Effects Coordinator'),(10771,1531898,10,'Special Effects Supervisor'),(10771,1531899,8,'Makeup Artist'),(10771,1531900,7,'Construction Coordinator'),(10040,1296,3,'Executive Producer'),(10040,4952,3,'Casting'),(10040,18277,3,'Producer'),(10040,17629,1,'Director of Photography'),(10040,18323,4,'Screenplay'),(10040,18323,3,'Producer'),(10040,20924,5,'Editor'),(10040,25362,6,'Music'),(10040,58072,2,'Director'),(10040,57634,3,'Producer'),(10040,62365,4,'Screenplay'),(10040,62366,4,'Screenplay'),(10040,1368867,9,'Special Effects Coordinator'),(17610,1524,2,'Director'),(17610,1524,4,'Screenplay'),(17610,1524,3,'Producer'),(17610,3184,3,'Producer'),(17610,10572,6,'Music'),(17610,41039,3,'Producer'),(17610,59918,3,'Executive Producer'),(17610,84416,4,'Screenplay'),(17610,84417,4,'Screenplay'),(17610,84418,3,'Producer'),(17610,84419,3,'Producer'),(17610,84420,3,'Producer'),(22954,190,2,'Director'),(22954,190,3,'Producer'),(22954,192,3,'Executive Producer'),(22954,384,5,'Editor'),(22954,371,1,'First Assistant Camera'),(22954,460,1,'Director of Photography'),(22954,461,8,'Costume Design'),(22954,795,7,'Production Design'),(22954,4611,3,'Producer'),(22954,4504,3,'Executive Producer'),(22954,4507,3,'Executive Producer'),(22954,4746,3,'Producer'),(22954,11295,3,'Casting'),(22954,33525,6,'Original Music Composer'),(22954,33526,6,'Original Music Composer'),(22954,19690,7,'Art Direction'),(22954,19691,7,'Supervising Art Director'),(22954,24205,3,'Producer'),(22954,59294,9,'Special Effects'),(22954,59294,9,'Stunts'),(22954,63946,3,'Executive Producer'),(22954,71244,4,'Screenplay'),(22954,74319,5,'Editor'),(22954,75575,3,'Supervising Producer'),(22954,201315,4,'Author'),(22954,1053407,9,'Stunt Coordinator'),(22954,1053407,10,'Special Effects Supervisor'),(22954,1061061,9,'Stunts'),(22954,1178615,10,'Visual Effects'),(22954,1181575,1,'Still Photographer'),(22954,1262097,9,'Unit Publicist'),(22954,1377130,10,'Visual Effects Supervisor'),(22954,1377140,2,'Script Supervisor'),(22954,1410274,8,'Hairstylist'),(22954,1418316,8,'Makeup Artist'),(22954,1543251,8,'Prosthetic Supervisor'),(22954,1559640,2,'Assistant Director'),(16995,2952,3,'Casting'),(16995,275,9,'Cinematography'),(16995,2236,3,'Producer'),(16995,2238,3,'Producer'),(16995,4032,7,'Set Decoration'),(16995,5670,7,'Production Design'),(16995,9150,3,'Executive Producer'),(16995,9151,3,'Executive Producer'),(16995,17350,2,'Director'),(16995,22047,6,'Original Music Composer'),(16995,35010,5,'Editor'),(16995,19242,4,'Screenplay'),(16995,21807,4,'Screenplay'),(16995,36603,4,'Screenplay'),(16995,39922,3,'Producer'),(16995,54250,3,'Producer'),(16995,54252,3,'Executive Producer'),(16995,196774,4,'Teleplay'),(16995,196774,3,'Executive Producer'),(16995,463806,3,'Producer'),(16995,958488,8,'Costume Design'),(16995,1319843,8,'Makeup Department Head'),(16995,1319844,8,'Costume Supervisor'),(16995,1399292,7,'Set Designer'),(16995,1551349,9,'Video Assist Operator'),(16558,1213,6,'Original Music Composer'),(16558,2946,3,'Producer'),(16558,2950,1,'Director of Photography'),(16558,19242,2,'Director'),(16558,19242,4,'Writer'),(16558,21706,3,'Producer'),(16558,38082,3,'Producer'),(16558,67810,5,'Editor'),(16866,12083,4,'Writer'),(16866,23401,5,'Editor'),(16866,56632,6,'Original Music Composer'),(16866,62983,3,'Producer'),(16866,117052,2,'Director'),(16866,117052,4,'Writer'),(16866,117056,7,'Art Direction'),(16866,117057,3,'Producer'),(16866,117057,4,'Writer'),(16866,968303,2,'Director'),(16866,968303,4,'Writer'),(16866,1158156,2,'Director'),(16866,1158156,4,'Writer'),(16866,1447378,10,'Animation'),(16866,1654585,6,'Music'),(11775,151,1,'Director of Photography'),(11775,339,3,'Producer'),(11775,555,7,'Set Decoration'),(11775,1223,2,'Director'),(11775,1223,4,'Screenplay'),(11775,1223,3,'Producer'),(11775,1223,5,'Editor'),(11775,1224,4,'Screenplay'),(11775,1224,3,'Producer'),(11775,1224,5,'Editor'),(11775,1225,6,'Original Music Composer'),(11775,1482,3,'Producer'),(11775,1484,3,'Casting'),(11775,7418,8,'Costume Design'),(11775,8794,7,'Art Direction'),(11775,7779,3,'Executive Producer'),(11775,7780,3,'Executive Producer'),(11775,9619,6,'Sound Re-Recording Mixer'),(11775,9619,6,'Supervising Sound Editor'),(11775,17990,6,'Music Editor'),(11775,23972,7,'Production Design'),(11775,31511,3,'Producer'),(11775,40375,3,'Producer'),(11775,44482,3,'Producer'),(11775,52053,4,'Screenplay'),(11775,52053,4,'Story'),(11775,52054,4,'Screenplay'),(11775,52054,4,'Story'),(11775,51737,6,'Music Supervisor'),(11775,92380,5,'Dialogue Editor'),(11775,223239,6,'Production Sound Mixer'),(11775,587969,2,'Script Supervisor'),(11775,928414,3,'Casting Associate'),(11775,1217611,4,'Story'),(11775,1281538,9,'Stunt Coordinator'),(11775,1302619,8,'Key Makeup Artist'),(11775,1324652,1,'Still Photographer'),(11775,1390523,6,'Sound Effects Editor'),(11775,1390523,6,'Sound Re-Recording Mixer'),(11775,1395255,6,'Sound Re-Recording Mixer'),(11775,1401988,11,'Rigging Gaffer'),(11775,1428582,8,'Hair Designer'),(11775,1452614,8,'Key Hair Stylist'),(11775,1535751,9,'Special Effects Coordinator'),(11775,1547140,8,'Costume Supervisor'),(11775,1553874,5,'First Assistant Editor'),(12201,117,6,'Music'),(12201,375,6,'Supervising Sound Editor'),(12201,2486,7,'Production Design'),(12201,2523,5,'Editor'),(12201,7237,7,'Set Decoration'),(12201,10714,8,'Costume Design'),(12201,10702,2,'Director'),(12201,10709,1,'Director of Photography'),(12201,15845,8,'Makeup Artist'),(12201,15333,9,'Special Effects Coordinator'),(12201,16729,3,'Producer'),(12201,18457,3,'Casting'),(12201,34510,4,'Screenplay'),(12201,57835,4,'Screenplay'),(12201,59287,9,'Makeup Effects'),(12201,114478,3,'Casting'),(12201,114479,3,'Producer'),(12201,114480,3,'Producer'),(12201,107372,9,'Makeup Effects'),(12201,138379,7,'Leadman'),(12201,936841,7,'Supervising Art Director'),(12201,963355,7,'Art Direction'),(12201,1002554,8,'Makeup Artist'),(12201,1302636,8,'Makeup Artist'),(12201,1319843,8,'Makeup Department Head'),(12201,1327524,7,'Set Designer'),(12201,1334778,7,'Construction Coordinator'),(12201,1338372,6,'Foley'),(12201,1341858,6,'Sound Re-Recording Mixer'),(12201,1341859,5,'Dialogue Editor'),(12201,1342626,6,'Sound Re-Recording Mixer'),(12201,1345635,2,'Script Supervisor'),(12201,1347760,9,'Dialect Coach'),(12201,1357064,1,'Camera Operator'),(12201,1359033,11,'Rigging Gaffer'),(12201,1367674,8,'Set Costumer'),(12201,1368865,6,'Supervising Sound Editor'),(12201,1392239,5,'Dialogue Editor'),(12201,1394768,1,'Steadicam Operator'),(12201,1394986,9,'Dialect Coach'),(12201,1398107,9,'Stunt Coordinator'),(12201,1406084,9,'Property Master'),(12201,1407876,6,'Sound Effects Editor'),(12201,1408406,3,'Location Manager'),(12201,1411109,5,'Digital Intermediate'),(12201,1411517,7,'Greensman'),(12201,1411846,1,'Camera Operator'),(12201,1414517,5,'First Assistant Editor'),(12201,1419095,7,'Construction Coordinator'),(12201,1419120,3,'Location Manager'),(12201,1422061,6,'ADR & Dubbing'),(12201,1424694,1,'Additional Camera'),(12201,1427430,5,'Digital Intermediate'),(12201,1428226,8,'Costume Supervisor'),(12201,1428581,7,'Art Direction'),(12201,1428582,8,'Hairstylist'),(12201,1428583,8,'Hairstylist'),(12201,1428584,8,'Hairstylist'),(12201,1428585,8,'Hairstylist'),(12201,1428586,7,'Art Department Coordinator'),(12201,1428587,7,'Assistant Art Director'),(12201,1428588,9,'Scenic Artist'),(12201,1428589,9,'Scenic Artist'),(12201,1428590,9,'Scenic Artist'),(12201,1428594,7,'Leadman'),(12201,1428595,6,'Sound Effects Editor'),(12201,1428596,6,'Sound Effects Editor'),(12201,1428835,11,'Gaffer'),(12201,1428836,1,'Camera Operator'),(12201,1428837,9,'Second Unit Cinematographer'),(12201,1428838,1,'Camera Operator'),(12201,1428839,1,'Still Photographer'),(12201,1428841,8,'Set Costumer'),(12201,1428842,8,'Set Costumer'),(12201,1428843,8,'Set Costumer'),(12201,1428844,8,'Set Costumer'),(12201,1428845,6,'Music Editor'),(12201,1428849,9,'Transportation Coordinator'),(12201,1428850,9,'Transportation Coordinator'),(12201,1428851,2,'Script Supervisor'),(11015,136,3,'Producer'),(11015,284,3,'Executive Producer'),(11015,795,7,'Art Direction'),(11015,869,3,'Producer'),(11015,4500,6,'Original Music Composer'),(11015,6048,3,'Executive Producer'),(11015,6062,6,'Foley Editor'),(11015,8087,10,'Modeling'),(11015,11410,5,'Editor'),(11015,13179,6,'Sound Designer'),(11015,16176,7,'Set Decoration'),(11015,15335,9,'Stunt Coordinator'),(11015,14492,7,'Art Direction'),(11015,13436,8,'Key Makeup Artist'),(11015,10936,7,'Production Design'),(11015,21371,4,'Screenplay'),(11015,33284,8,'Costume Design'),(11015,37710,2,'Director'),(11015,37710,1,'Director of Photography'),(11015,60706,5,'Additional Editing'),(11015,65104,4,'Screenplay'),(11015,67800,4,'Novel'),(11015,67801,4,'Novel'),(11015,67802,4,'Screenplay'),(11015,67803,4,'Screenplay'),(11015,84962,3,'Production Coordinator'),(11015,91366,3,'Casting'),(11015,548438,6,'Supervising Sound Editor'),(11015,1094395,7,'Assistant Art Director'),(11015,1318886,8,'Set Costumer'),(11015,1325655,8,'Costume Supervisor'),(11015,1360110,10,'Visual Effects Supervisor'),(11015,1360761,8,'Set Dressing Artist'),(11015,1377131,1,'Steadicam Operator'),(11015,1390532,10,'Visual Effects Producer'),(11015,1392148,9,'Transportation Coordinator'),(11015,1394764,10,'Visual Effects'),(11015,1395275,1,'Still Photographer'),(11015,1398853,7,'Leadman'),(11015,1399147,3,'Location Manager'),(11015,1400375,1,'Camera Technician'),(11015,1400539,3,'Publicist'),(11015,1401362,9,'Digital Effects Supervisor'),(11015,1403639,1,'Camera Operator'),(11015,1404326,6,'Music Editor'),(11015,1412188,8,'Key Hair Stylist'),(11015,1440877,10,'Special Effects Supervisor'),(11015,1446986,8,'Hairstylist'),(11015,1455291,6,'First Assistant Sound Editor'),(11015,1476769,9,'Post Production Supervisor'),(11015,1535425,7,'Construction Coordinator'),(11015,1535951,6,'Dialogue Editor'),(11015,1546006,2,'Script Supervisor'),(11015,1548676,9,'Carpenter'),(11015,1550566,6,'Orchestrator'),(11015,1551215,6,'Sound Effects Editor'),(11015,1552188,5,'Color Timer'),(11015,1559479,6,'Sound Mixer'),(11015,1563430,6,'Boom Operator'),(11015,1569122,4,'Storyboard'),(11015,1585172,9,'Choreographer'),(11015,1586929,9,'Scenic Artist'),(11015,1602889,10,'Visual Effects Coordinator'),(11015,1633976,2,'First Assistant Director'),(11015,1637978,7,'Painter'),(11015,1637979,7,'Set Designer'),(11015,1640485,7,'Greensman'),(11015,1680543,10,'Digital Compositors'),(11015,1686226,9,'Stunts'),(11015,1701758,9,'Visual Effects Editor'),(11015,1714916,9,'Aerial Coordinator'),(11015,1765462,9,'Transportation Captain'),(11015,1869298,7,'Construction Foreman'),(11015,1869300,7,'Production Illustrator'),(11015,1869301,7,'Sculptor'),(11015,1869304,1,'First Assistant Camera'),(11015,1869306,1,'Grip'),(11015,1869309,9,'Craft Service'),(11015,1869310,7,'Property Master'),(11015,1869311,6,'Sound Recordist'),(11015,1869312,9,'Stand In'),(11015,1869313,9,'Technical Supervisor'),(11015,1869314,9,'Utility Stunts'),(11015,1869315,9,'Video Assist Operator'),(11015,1869316,11,'Electrician'),(11015,1869317,11,'Lighting Technician'),(11015,1869705,10,'3D Animator'),(13389,5282,4,'Writer'),(13389,18250,2,'Director'),(17332,6410,3,'Casting'),(17332,3285,1,'Director of Photography'),(17332,6340,4,'Screenplay'),(17332,8703,3,'Executive Producer'),(17332,8703,3,'Unit Production Manager'),(17332,11269,6,'Original Music Composer'),(17332,12922,3,'Producer'),(17332,36588,2,'Director'),(17332,36590,5,'Editor'),(17332,36591,8,'Costume Design'),(17332,36656,7,'Production Design'),(17332,81695,4,'Author'),(17332,81696,3,'Producer'),(17332,406204,8,'Makeup Department Head'),(17332,936841,7,'Art Direction'),(17332,1177850,1,'Still Photographer'),(17332,1328145,7,'Set Decoration'),(17332,1355532,2,'Script Supervisor'),(17332,1409817,8,'Hair Department Head'),(17332,1536029,6,'Music Editor'),(17332,1536032,3,'Production Coordinator'),(11679,898,5,'Editor'),(11679,900,6,'Sound Designer'),(11679,1305,6,'Music Editor'),(11679,2484,5,'Editor'),(11679,2519,8,'Costume Design'),(11679,7229,6,'Original Music Composer'),(11679,10631,10,'Special Effects Supervisor'),(11679,6347,3,'Casting'),(11679,6800,1,'Director of Photography'),(11679,7256,2,'Director'),(11679,7535,7,'Set Decoration'),(11679,20586,7,'Art Direction'),(11679,8168,6,'Sound Recordist'),(11679,8277,3,'Producer'),(11679,8288,3,'Unit Production Manager'),(11679,11092,4,'Screenplay'),(11679,11812,3,'Executive Producer'),(11679,11814,3,'Executive Producer'),(11679,11874,3,'Producer'),(11679,13223,5,'Color Timer'),(11679,14771,9,'Stunt Coordinator'),(11679,18878,3,'Executive Producer'),(11679,23651,7,'Production Design'),(11679,32277,9,'Second Unit Cinematographer'),(11679,53345,4,'Characters'),(11679,67560,5,'Editor'),(11679,76054,7,'Assistant Art Director'),(11679,86198,6,'Music Supervisor'),(11679,86199,6,'Music Supervisor'),(11679,102343,8,'Makeup Artist'),(11679,13443,9,'Stunts'),(11679,548435,6,'Foley Editor'),(11679,572622,6,'Supervising Sound Editor'),(11679,983595,7,'Art Department Coordinator'),(11679,1122560,9,'Utility Stunts'),(11679,1182907,10,'3D Artist'),(11679,1202352,9,'Visual Effects Editor'),(11679,1262129,2,'Script Supervisor'),(11679,1327149,8,'Makeup Department Head'),(11679,1339439,7,'Art Department Assistant'),(11679,1339449,10,'Visual Effects Producer'),(11679,1378229,6,'Boom Operator'),(11679,1378833,3,'Location Manager'),(11679,1392085,5,'Dialogue Editor'),(11679,1392236,7,'Construction Coordinator'),(11679,1392237,7,'Property Master'),(11679,1400079,1,'Camera Operator'),(11679,1400082,1,'Still Photographer'),(11679,1400354,5,'Digital Intermediate'),(11679,1401117,9,'Unit Publicist'),(11679,1401593,1,'Aerial Director of Photography'),(11679,1403539,10,'Visual Effects Supervisor'),(11679,1404545,11,'Gaffer'),(11679,1407721,8,'Wigmaker'),(11679,1408398,11,'Lighting Technician'),(11679,1412985,6,'Assistant Sound Editor'),(11679,1414177,6,'Sound Effects Editor'),(11679,1415635,11,'Rigging Gaffer'),(11679,1418364,9,'Scenic Artist'),(11679,1419800,9,'CG Supervisor'),(11679,1435690,7,'Greensman'),(11679,1435691,7,'Set Designer'),(11679,1437195,9,'Special Effects Coordinator'),(11679,1442097,8,'Hairstylist'),(11679,1446678,9,'Mix Technician'),(11679,1460739,8,'Key Hair Stylist'),(11679,1462925,8,'Hair Department Head'),(11679,1463310,7,'Sculptor'),(11679,1463336,7,'Production Illustrator'),(11679,1534971,9,'Propmaker'),(11679,1536032,3,'Production Coordinator'),(11679,1546115,6,'Production Sound Mixer'),(11679,1546156,7,'Construction Foreman'),(11679,1548698,6,'Orchestrator'),(11679,1552200,11,'Rigging Grip'),(11679,1553016,11,'Electrician'),(11679,1565942,7,'Standby Painter'),(11679,1565951,9,'Armorer'),(11679,1585197,4,'Storyboard'),(11679,1595474,9,'Sequence Supervisor'),(11679,1614189,7,'Location Scout'),(11679,1622456,10,'Digital Compositors'),(11679,1627996,11,'Best Boy Electric'),(11679,1646240,9,'Set Medic'),(11679,1677516,3,'Production Accountant'),(11679,1688600,9,'Transportation Coordinator'),(11679,1697586,9,'Post Production Supervisor'),(11679,1701273,9,'Picture Car Coordinator'),(11679,1708358,2,'First Assistant Director'),(11679,1711191,7,'Painter'),(11679,1711199,9,'Carpenter'),(11679,1717163,3,'Casting Associate'),(11679,1738148,8,'Set Dressing Artist'),(11679,1739546,9,'Production Controller'),(11679,1744658,1,'Key Grip'),(11679,1783084,3,'Production Supervisor'),(11679,1790026,9,'Video Assist Operator'),(11679,1815432,7,'Leadman'),(11679,1815433,7,'Set Decoration Buyer'),(11679,1815435,1,'First Assistant Camera'),(11679,1815438,1,'Grip'),(11679,1815439,8,'Costume Supervisor'),(11679,1815446,8,'Set Costumer'),(11679,1815448,9,'Driver'),(11679,1815453,9,'Post Production Assistant'),(11679,1815458,9,'Set Production Assistant'),(11679,1815459,9,'Stand In'),(11679,1815460,9,'Transportation Co-Captain'),(11679,1815494,6,'Sound Engineer'),(11679,1815499,10,'Visual Effects'),(11679,1815501,10,'Visual Effects Coordinator'),(14411,373,6,'Sound Effects Editor'),(14411,932,4,'Writer'),(14411,5553,6,'Original Music Composer'),(14411,8708,6,'Supervising Sound Editor'),(14411,9971,6,'Supervising Sound Editor'),(14411,12062,3,'Producer'),(14411,12090,3,'Casting'),(14411,51701,5,'Editor'),(14411,52870,2,'Director'),(14411,113075,6,'Sound Effects Editor'),(14411,56671,3,'Producer'),(14411,118713,9,'Supervising Animator'),(14411,175229,7,'Art Direction'),(14411,1205756,2,'Director'),(14411,1338976,6,'Sound Re-Recording Mixer'),(14411,1339460,6,'Music Editor'),(14411,1377373,3,'Casting Associate'),(14411,1387244,6,'Sound Effects Editor'),(14411,1397895,3,'Production Coordinator'),(14411,1401687,6,'Sound Re-Recording Mixer'),(14411,1438901,7,'Art Direction'),(14411,1447381,10,'Animation'),(14411,1447385,10,'Animation'),(14411,1447473,10,'Animation'),(14411,1448071,10,'Animation'),(14411,1450331,9,'Supervising Animator'),(14411,1453498,10,'Animation'),(14411,1460431,5,'Assistant Editor'),(14411,1460472,10,'Animation'),(14411,1681250,7,'Production Design'),(10052,495,3,'Casting'),(10052,602,7,'Production Design'),(10052,4500,6,'Original Music Composer'),(10052,4499,2,'Director'),(10052,4499,3,'Producer'),(10052,4501,1,'Director of Photography'),(10052,4502,5,'First Assistant Editor'),(10052,4502,9,'Visual Effects Editor'),(10052,4504,3,'Producer'),(10052,4505,3,'Executive Producer'),(10052,4506,3,'Executive Producer'),(10052,4507,3,'Producer'),(10052,5162,3,'Producer'),(10052,7536,8,'Costume Design'),(10052,8708,6,'Sound Effects Editor'),(10052,11834,4,'Author'),(10052,12945,6,'Music Editor'),(10052,13168,5,'Dialogue Editor'),(10052,15436,10,'Visual Effects Supervisor'),(10052,15005,5,'Editor'),(10052,15006,7,'Art Direction'),(10052,15016,7,'Set Decoration'),(10052,15356,9,'Special Effects Coordinator'),(10052,42034,6,'Sound Re-Recording Mixer'),(10052,21796,7,'Assistant Art Director'),(10052,23780,1,'Steadicam Operator'),(10052,58362,6,'Supervising Sound Editor'),(10052,62543,3,'Producer'),(10052,113052,6,'Sound Effects Editor'),(10052,66689,7,'Assistant Art Director'),(10052,62541,4,'Author'),(10052,62539,4,'Author'),(10052,62544,3,'Producer'),(10052,62545,3,'Producer'),(10052,62546,3,'Casting'),(10052,79253,8,'Assistant Costume Designer'),(10052,91854,8,'Makeup Artist'),(10052,957202,8,'Makeup Department Head'),(10052,964601,8,'Costume Supervisor'),(10052,1342629,2,'Script Supervisor'),(10052,1355531,2,'Script Supervisor'),(10052,1370949,6,'Sound Effects Editor'),(10052,1378171,6,'Sound Re-Recording Mixer'),(10052,1394971,1,'Camera Operator'),(10052,1397728,5,'Dialogue Editor'),(10052,1397850,11,'Gaffer'),(10052,1398104,9,'Digital Effects Supervisor'),(10052,1401593,1,'Helicopter Camera'),(10052,1415601,8,'Key Hair Stylist'),(10052,1415634,9,'Second Unit Cinematographer'),(10052,1416054,8,'Hairstylist'),(10052,1416092,8,'Key Hair Stylist'),(10052,1457696,8,'Makeup Artist'),(10052,1457713,8,'Hairstylist'),(10052,1458084,8,'Makeup Artist'),(10052,1462925,8,'Hair Department Head'),(10052,1548122,8,'Makeup Artist'),(10052,1551049,7,'Art Department Coordinator'),(10052,1551050,9,'CGI Supervisor'),(10052,1551051,10,'Visual Effects Coordinator'),(10052,1551052,10,'Visual Effects Coordinator'),(10052,1551053,1,'Camera Operator'),(10052,1551054,1,'First Assistant Camera'),(10052,1551055,11,'Gaffer'),(10052,1551056,11,'Rigging Grip'),(10052,1551057,11,'Rigging Grip'),(10052,1551060,6,'Sound Effects Editor'),(10384,1723,2,'Director'),(10384,2121,3,'Casting'),(10384,2530,8,'Costume Design'),(10384,7733,7,'Art Direction'),(10384,11308,6,'Music Editor'),(10384,15332,6,'Supervising Sound Editor'),(10384,17233,5,'Editor'),(10384,33017,9,'Stunt Coordinator'),(10384,24953,3,'Producer'),(10384,25748,7,'Production Design'),(10384,34526,7,'Sculptor'),(10384,43891,1,'Director of Photography'),(10384,46592,7,'Set Designer'),(10384,53182,7,'Set Decoration'),(10384,56748,6,'Music'),(10384,59838,7,'Assistant Art Director'),(10384,62020,2,'Director'),(10384,65326,5,'Editor'),(10384,65327,4,'Screenplay'),(10384,65327,3,'Producer'),(10384,65327,10,'Visual Effects Producer'),(10384,92359,7,'Set Designer'),(10384,141483,3,'Producer'),(10384,141483,10,'Visual Effects Supervisor'),(10384,548439,6,'Foley'),(10384,548445,6,'Foley'),(10384,982902,10,'Visual Effects Supervisor'),(10384,1321004,8,'Costume Supervisor'),(10384,1335219,5,'Dialogue Editor'),(10384,1338372,6,'Foley'),(10384,1342658,5,'Dialogue Editor'),(10384,1355530,7,'Sculptor'),(10384,1372838,5,'Dialogue Editor'),(10384,1377129,10,'Visual Effects Producer'),(10384,1378162,7,'Construction Coordinator'),(10384,1384367,5,'Dialogue Editor'),(10384,1390516,7,'Sculptor'),(10384,1390517,7,'Set Designer'),(10384,1390518,7,'Set Designer'),(10384,1390519,7,'Set Designer'),(10384,1390520,7,'Set Designer'),(10384,1390521,7,'Art Department Coordinator'),(10384,1390522,9,'Property Master'),(10384,1390523,6,'Sound Designer'),(10384,1390524,6,'Supervising Sound Editor'),(10384,1390525,6,'Foley'),(10384,1390526,5,'Dialogue Editor'),(10384,1390527,5,'Dialogue Editor'),(10384,1390528,9,'Special Effects'),(10384,1390529,9,'Special Effects'),(10384,1390531,10,'Visual Effects Supervisor'),(10384,1390532,10,'Visual Effects Producer'),(10384,1390534,10,'Visual Effects Producer'),(10384,1390535,1,'Still Photographer'),(10384,1390536,6,'Music Editor'),(10384,1390537,9,'Transportation Coordinator'),(10384,1390538,2,'Script Supervisor'),(10384,1390539,2,'Script Supervisor'),(10384,1447557,9,'Compositors'),(11260,376,3,'Executive Producer'),(11260,4197,7,'Production Design'),(11260,4500,6,'Original Music Composer'),(11260,7235,7,'Art Direction'),(11260,8274,7,'Set Decoration'),(11260,17144,3,'Producer'),(11260,14377,3,'Casting'),(11260,15524,8,'Costume Design'),(11260,16489,1,'Director of Photography'),(11260,18257,4,'Screenplay'),(11260,52000,3,'Producer'),(11260,53177,2,'Director'),(11260,113044,5,'Dialogue Editor'),(11260,113046,6,'Sound Re-Recording Mixer'),(11260,113073,6,'Sound Re-Recording Mixer'),(11260,58190,3,'Executive Producer'),(11260,62759,5,'Editor'),(11260,60935,3,'Casting'),(11260,66821,3,'Producer'),(11260,68016,6,'Orchestrator'),(11260,68833,4,'Screenplay'),(11260,108143,6,'Sound Mixer'),(11260,117409,8,'Makeup Department Head'),(11260,228981,3,'Location Manager'),(11260,555085,1,'Still Photographer'),(11260,1056048,5,'Assistant Editor'),(11260,1319844,8,'Costume Supervisor'),(11260,1341405,5,'Dialogue Editor'),(11260,1349452,3,'Associate Producer'),(11260,1390538,2,'Script Supervisor'),(11260,1412449,3,'Production Coordinator'),(11260,1424894,8,'Hair Department Head'),(11260,1436624,7,'Art Department Coordinator'),(11260,1451676,9,'Special Effects'),(11260,1456835,10,'Animation'),(11260,1544669,6,'Sound Designer'),(11260,1544669,6,'Supervising Sound Editor'),(11260,1622640,3,'Location Manager'),(11374,339,3,'Producer'),(11374,892,1,'Director of Photography'),(11374,6980,4,'Screenplay'),(11374,6159,2,'Director'),(11374,6159,3,'Producer'),(11374,6189,5,'Editor'),(11374,6190,5,'Editor'),(11374,14712,6,'Original Music Composer'),(11374,27518,4,'Screenplay'),(11374,27519,4,'Screenplay'),(11374,20782,3,'Producer'),(11374,69145,4,'Screenplay'),(13922,2545,3,'Producer'),(13922,3685,3,'Casting'),(13922,897,3,'Casting'),(13922,894,6,'Music'),(13922,894,6,'Orchestrator'),(13922,950,5,'Editor'),(13922,1307,3,'Executive Producer'),(13922,59839,3,'Executive Producer'),(13922,5709,7,'Production Design'),(13922,6624,3,'Executive Producer'),(13922,15329,8,'Costume Design'),(13922,17629,1,'Director of Photography'),(13922,21053,2,'Director'),(13922,22056,3,'Producer'),(13922,29087,8,'Makeup Artist'),(13922,29087,8,'Hairstylist'),(13922,55178,5,'Editor'),(13922,60935,3,'Casting Associate'),(13922,61483,3,'Co-Producer'),(13922,66209,3,'Executive In Charge Of Production'),(13922,75478,2,'First Assistant Director'),(13922,75478,3,'Associate Producer'),(13922,81203,4,'Screenplay'),(13922,79143,3,'Unit Production Manager'),(13922,112609,6,'Sound Re-Recording Mixer'),(13922,112875,6,'Supervising Sound Editor'),(13922,121479,4,'Screenplay'),(13922,554888,6,'Sound Effects Editor'),(13922,554888,6,'Sound Effects Designer'),(13922,960074,6,'Sound Effects Editor'),(13922,960074,6,'Sound Effects Designer'),(13922,960812,3,'Casting'),(13922,1087623,3,'Casting'),(13922,1204836,6,'Supervising ADR Editor'),(13922,1230467,3,'Casting Assistant'),(13922,1305001,3,'Casting Assistant'),(13922,1321694,8,'Costume Supervisor'),(13922,1325187,7,'Set Decoration'),(13922,1341775,9,'Post Production Supervisor'),(13922,1360097,5,'Dialogue Editor'),(13922,1360097,6,'ADR Editor'),(13922,1364417,6,'Sound Re-Recording Mixer'),(13922,1372131,2,'Script Supervisor'),(13922,1372838,5,'Dialogue Editor'),(13922,1372838,6,'ADR Editor'),(13922,1389597,6,'Music Editor'),(13922,1391707,7,'Supervising Art Director'),(13922,1391709,7,'Art Department Coordinator'),(13922,1394747,6,'Sound Effects Designer'),(13922,1394747,6,'Sound Effects Editor'),(13922,1394768,1,'Camera Operator'),(13922,1394768,1,'Steadicam Operator'),(13922,1397822,6,'Supervising Sound Editor'),(13922,1400508,9,'Unit Publicist'),(13922,1401135,6,'Sound Effects Editor'),(13922,1401135,6,'Sound Effects Designer'),(13922,1401717,10,'Visual Effects Supervisor'),(13922,1403711,8,'Makeup Artist'),(13922,1403711,8,'Hairstylist'),(13922,1410556,11,'Chief Lighting Technician'),(13922,1412733,8,'Makeup Artist'),(13922,1412733,8,'Hairstylist'),(13922,1412735,9,'Property Master'),(13922,1412756,2,'Script Supervisor'),(13922,1412757,3,'Location Manager'),(13922,1418264,8,'Makeup Artist'),(13922,1418264,8,'Hairstylist'),(13922,1418813,9,'Stunt Coordinator'),(13922,1422979,6,'Sound Effects Editor'),(13922,1422979,6,'Sound Effects Designer'),(13922,1425359,8,'Hairstylist'),(13922,1425359,8,'Makeup Artist'),(13922,1448993,6,'Boom Operator'),(13922,1454930,8,'Prosthetic Makeup Artist'),(13922,1454936,10,'Special Effects Supervisor'),(13922,1465596,8,'Hair Designer'),(13922,1465596,8,'Key Makeup Artist'),(13922,1536883,4,'Book'),(13922,1536893,7,'Construction Coordinator'),(13922,1536895,9,'Special Effects Coordinator'),(13922,1536896,3,'Casting Associate'),(13922,1536900,9,'Armorer'),(13922,1552179,9,'Post Production Supervisor'),(13922,1562248,5,'Color Timer'),(13922,1566069,1,'Still Photographer'),(13922,1575750,1,'Camera Operator'),(13922,1575761,8,'Costume Coordinator'),(13922,1581206,7,'Set Dresser'),(13922,1581292,2,'Third Assistant Director'),(13922,1587239,3,'Script Researcher'),(13922,1588683,6,'Boom Operator'),(13922,1635060,3,'Unit Manager'),(13922,1635503,7,'Assistant Art Director'),(13922,1671533,7,'Set Dresser'),(13922,1671582,7,'Set Dresser'),(13922,1737130,6,'Boom Operator'),(13922,1739828,3,'Casting Assistant'),(13922,1743063,3,'Executive Producer'),(13922,1746429,11,'Best Boy Electric'),(13922,1775885,4,'Book'),(13922,1775908,2,'Second Assistant Director'),(13922,1775909,2,'Third Assistant Director'),(13922,1775928,5,'First Assistant Editor'),(13922,1775939,8,'Hairstylist'),(13922,1775939,8,'Makeup Artist'),(13922,1775941,8,'Makeup Artist'),(13922,1775941,8,'Hairstylist'),(13922,1775944,8,'Makeup Artist'),(13922,1775944,8,'Hairstylist'),(13922,1775946,1,'Key Grip'),(13922,1775949,3,'Production Coordinator'),(13922,1775951,3,'Script Researcher'),(13922,1775958,10,'Visual Effects Producer'),(13922,1775960,5,'Dialogue Editor'),(13922,1775960,6,'ADR Editor'),(13922,1775961,6,'Orchestrator'),(24438,10572,6,'Original Music Composer'),(24438,10573,1,'Director of Photography'),(24438,10440,5,'Editor'),(24438,18323,2,'Director'),(24438,18323,4,'Writer'),(24438,41377,3,'Producer'),(24438,46347,3,'Producer'),(24438,54419,3,'Executive Producer'),(24438,60187,3,'Executive Producer'),(24438,114308,3,'Producer'),(24438,114309,3,'Producer'),(24438,1457935,10,'Visual Effects'),(10589,547,3,'Casting'),(10589,1098,5,'Editor'),(10589,6192,8,'Costume Design'),(10589,9217,6,'Original Music Composer'),(10589,9543,3,'Producer'),(10589,10125,7,'Set Decoration'),(10589,11412,7,'Art Direction'),(10589,11099,1,'Director of Photography'),(10589,10829,3,'Executive Producer'),(10589,11091,2,'Director'),(10589,10830,3,'Executive Producer'),(10589,32403,7,'Production Design'),(10589,33624,3,'Producer'),(10589,41896,3,'Producer'),(10589,58922,4,'Screenplay'),(10589,11095,3,'Producer'),(10589,65690,3,'Producer'),(10589,65691,3,'Producer'),(10589,65693,3,'Producer'),(10589,65702,3,'Executive Producer'),(10589,65701,4,'Screenplay'),(10589,1424894,8,'Hairstylist'),(10589,1669267,9,'Stunts'),(10022,7414,5,'Editor'),(10022,539,4,'Screenplay'),(10022,4500,6,'Music'),(10022,4504,3,'Producer'),(10022,4507,3,'Producer'),(10022,5708,1,'Director of Photography'),(10022,20739,2,'Director'),(10022,20739,3,'Executive Producer'),(10022,20742,3,'Producer'),(10022,21635,3,'Producer'),(10022,29206,3,'Executive Producer'),(10022,58870,3,'Executive Producer'),(10022,59413,4,'Screenplay'),(10022,60791,3,'Executive Producer'),(11358,5912,6,'Original Music Composer'),(11358,3995,8,'Makeup Department Head'),(11358,7232,3,'Casting'),(11358,16304,4,'Screenplay'),(11358,16305,4,'Screenplay'),(11358,11454,5,'Editor'),(11358,11695,3,'Producer'),(11358,14346,4,'Screenplay'),(11358,18344,3,'Producer'),(11358,20540,3,'Casting'),(11358,21478,3,'Producer'),(11358,22818,1,'Director of Photography'),(11358,40614,7,'Art Direction'),(11358,31710,3,'Producer'),(11358,35699,7,'Set Decoration'),(11358,51869,8,'Costume Design'),(11358,54242,3,'Producer'),(11358,57342,3,'Executive Producer'),(11358,58002,4,'Screenplay'),(11358,65115,3,'Executive Producer'),(11358,34453,2,'Director'),(11358,60031,5,'Editor'),(11358,84220,3,'Co-Producer'),(11358,84220,3,'Unit Production Manager'),(11358,774208,7,'Production Design'),(11358,1324926,8,'Costume Supervisor'),(11358,1407846,3,'Location Manager'),(11358,1488570,2,'Script Supervisor'),(11358,1555253,3,'Unit Production Manager'),(11358,1556515,3,'Casting Associate'),(11358,1773127,3,'Associate Producer'),(11358,1773144,3,'Casting Assistant'),(11358,1773148,3,'Casting Assistant'),(11358,1773152,3,'Production Coordinator'),(10530,6340,4,'Screenplay'),(10530,15813,6,'Original Music Composer'),(10530,15815,5,'Editor'),(10530,37078,4,'Screenplay'),(10530,15774,9,'Supervising Animator'),(10530,15774,4,'Story'),(10530,65530,2,'Director'),(10530,65531,2,'Director'),(10530,65532,4,'Screenplay'),(10530,65533,3,'Producer'),(10530,65534,1,'Director of Photography'),(10530,1113194,10,'Animation'),(10530,1397792,10,'Visual Effects'),(10530,1447301,10,'Animation'),(10530,1447368,10,'Animation'),(10530,1447370,10,'Animation'),(10530,1447376,10,'Animation Supervisor'),(10530,1447380,10,'Animation'),(10530,1447483,2,'Layout'),(10530,1447547,10,'Animation Manager'),(10530,1447573,10,'Color Designer'),(10530,1447576,10,'Visual Effects'),(10530,1447587,2,'Layout'),(10530,1448084,10,'Animation'),(10530,1451677,10,'Visual Effects'),(10530,1452488,10,'Animation Manager'),(10530,1452489,10,'Visual Effects'),(10530,1453513,10,'Visual Effects'),(10530,1455541,10,'Animation'),(10530,1457930,10,'Animation'),(10530,1459611,10,'Visual Effects'),(10603,2995,5,'Editor'),(10603,9251,6,'Original Music Composer'),(10603,13584,5,'Editor'),(10603,17164,5,'Editor'),(10603,18250,3,'Producer'),(10603,26978,4,'Screenplay'),(10603,31710,3,'Producer'),(10603,11371,1,'Director of Photography'),(10603,36805,4,'Screenplay'),(10603,54967,2,'Director'),(10603,58408,3,'Producer'),(11353,339,3,'Producer'),(11353,2384,3,'Executive Producer'),(11353,2384,3,'Unit Production Manager'),(11353,3393,6,'Original Music Composer'),(11353,5283,3,'Executive Producer'),(11353,5339,6,'ADR & Dubbing'),(11353,6050,1,'Director of Photography'),(11353,6347,3,'Casting'),(11353,7716,7,'Production Design'),(11353,7908,2,'Director'),(11353,9646,5,'Editor'),(11353,9337,8,'Hairstylist'),(11353,9566,9,'Stunts'),(11353,11768,9,'Stunts'),(11353,14049,9,'Stunt Coordinator'),(11353,14050,9,'Stunts'),(11353,15433,5,'Dialogue Editor'),(11353,14667,9,'Stunts'),(11353,25201,10,'Visual Effects Supervisor'),(11353,67773,4,'Screenplay'),(11353,42037,9,'Property Master'),(11353,33711,7,'Set Decoration'),(11353,23788,9,'Makeup Effects'),(11353,24313,8,'Makeup Artist'),(11353,26986,8,'Makeup Artist'),(11353,36429,8,'Costume Design'),(11353,39771,9,'Stunts'),(11353,40109,6,'Foley'),(11353,11102,7,'Assistant Art Director'),(11353,53026,7,'Set Designer'),(11353,55231,6,'ADR & Dubbing'),(11353,60013,9,'Post-Production Manager'),(11353,92301,3,'Producer'),(11353,92302,7,'Art Direction'),(11353,92303,9,'Animatronic and Prosthetic Effects'),(11353,92329,8,'Makeup Artist'),(11353,92330,8,'Hairstylist'),(11353,92331,8,'Hairstylist'),(11353,92332,8,'Hairstylist'),(11353,92333,8,'Hairstylist'),(11353,92334,8,'Hairstylist'),(11353,92335,8,'Makeup Artist'),(11353,92336,9,'Makeup Effects'),(11353,92339,11,'Other'),(11353,92344,4,'Storyboard'),(11353,92345,7,'Construction Coordinator'),(11353,83073,9,'Sets & Props Artist'),(11353,92346,7,'Lead Painter'),(11353,92347,7,'Greensman'),(11353,92348,7,'Production Illustrator'),(11353,92349,7,'Construction Foreman'),(11353,92350,7,'Set Decoration'),(11353,83074,9,'Sets & Props Artist'),(11353,92351,7,'Art Department Assistant'),(11353,92352,8,'Set Dressing Artist'),(11353,92353,7,'Greensman'),(11353,92354,8,'Set Dressing Artist'),(11353,92355,8,'Set Dressing Artist'),(11353,92356,7,'Standby Painter'),(11353,92357,7,'Construction Foreman'),(11353,92358,8,'Set Dressing Artist'),(11353,92359,9,'Prop Maker'),(11353,92359,7,'Set Designer'),(11353,92361,7,'Art Department Coordinator'),(11353,92362,7,'Construction Foreman'),(11353,92363,7,'Greensman'),(11353,92364,8,'Set Dressing Artist'),(11353,76708,7,'Set Designer'),(11353,92366,7,'Greensman'),(11353,92367,9,'Set Medic'),(11353,92369,8,'Set Dressing Artist'),(11353,92370,6,'Boom Operator'),(11353,92371,6,'Sound Re-Recording Mixer'),(11353,92371,6,'Supervising Sound Editor'),(11353,92373,6,'Foley'),(11353,92374,6,'Sound mixer'),(11353,92375,6,'Foley'),(11353,92376,6,'Foley'),(11353,92377,6,'Sound Re-Recording Mixer'),(11353,92378,6,'ADR & Dubbing'),(11353,92379,6,'Sound Editor'),(11353,92380,6,'Sound Effects Editor'),(11353,92381,6,'Foley'),(11353,92382,6,'Sound Editor'),(11353,92383,6,'Sound Re-Recording Mixer'),(11353,92384,6,'Sound Engineer'),(11353,92385,6,'Boom Operator'),(11353,92386,6,'ADR & Dubbing'),(11353,92387,6,'Sound Editor'),(11353,92388,6,'Foley'),(11353,92389,6,'Sound Editor'),(11353,92391,6,'ADR & Dubbing'),(11353,92392,6,'Boom Operator'),(11353,92393,9,'Special Effects Coordinator'),(11353,92394,9,'Special Effects'),(11353,92466,5,'Editorial Services'),(11353,92467,10,'VFX Artist'),(11353,92468,1,'Camera Operator'),(11353,92469,11,'Rigging Gaffer'),(11353,92470,10,'Animation'),(11353,92471,7,'Background Designer'),(11353,92472,9,'Digital Effects Supervisor'),(11353,92473,7,'Background Designer'),(11353,92474,9,'Digital Effects Supervisor'),(11353,92475,10,'Visual Effects Producer'),(11353,92476,7,'Background Designer'),(11353,92477,9,'Compositors'),(11353,92478,9,'Stunts'),(11353,92479,9,'Stunts'),(11353,92481,9,'Stunts'),(11353,92482,9,'Stunts'),(11353,92484,9,'Stunts'),(11353,92486,9,'Stunts'),(11353,92488,9,'Stunts'),(11353,92489,9,'Stunts'),(11353,92490,9,'Stunts'),(11353,92483,9,'Stunts'),(11353,92491,9,'Stunts'),(11353,92492,9,'Stunts'),(11353,92493,9,'Stunts'),(11353,92494,9,'Stunts'),(11353,92495,9,'Stunts'),(11353,92496,9,'Stunts'),(11353,92497,9,'Stunts'),(11353,92499,9,'Stunts'),(11353,92500,9,'Stunts'),(11353,92501,9,'Stunts'),(11353,92502,9,'Stunts'),(11353,92503,9,'Stunts'),(11353,92504,9,'Stunts'),(11353,92505,9,'Stunts'),(11353,92506,9,'Stunts'),(11353,92507,9,'Stunts'),(11353,92508,9,'Stunts'),(11353,956222,9,'Stunts'),(11353,1185373,7,'Leadman'),(10586,2042,2,'Director'),(10586,348,4,'Screenplay'),(10586,869,3,'Producer'),(10586,1760,6,'Original Music Composer'),(10586,2621,3,'Producer'),(10586,8751,5,'Editor'),(10586,12235,1,'Director of Photography'),(10586,14339,5,'Editor'),(10586,17164,5,'Editor'),(10586,65685,3,'Producer'),(10586,65687,4,'Novel'),(10632,2215,3,'Casting'),(10632,906,7,'Set Decoration'),(10632,10629,7,'Production Design'),(10632,6041,6,'Original Music Composer'),(10632,7537,6,'Sound Designer'),(10632,7779,3,'Executive Producer'),(10632,7780,3,'Producer'),(10632,9622,10,'Visual Effects Supervisor'),(10632,8750,1,'Director of Photography'),(10632,9255,8,'Costume Design'),(10632,15175,2,'Director'),(10632,41332,3,'Executive Producer'),(10632,52943,4,'Screenplay'),(10632,57326,5,'Editor'),(10632,58015,3,'Producer'),(10632,59986,4,'Screenplay'),(10632,59986,3,'Executive Producer'),(10632,59987,4,'Screenplay'),(10632,59987,3,'Executive Producer'),(10632,92393,9,'Special Effects Coordinator'),(10632,93844,6,'ADR & Dubbing'),(10632,95834,6,'Music Editor'),(10632,118867,1,'Camera Operator'),(10632,1224272,10,'Special Effects Supervisor'),(10632,1227173,6,'Foley'),(10632,1297660,5,'Dialogue Editor'),(10632,1323092,8,'Costume Supervisor'),(10632,1329417,8,'Makeup Artist'),(10632,1341847,8,'Makeup Artist'),(10632,1341848,8,'Key Hair Stylist'),(10632,1360101,6,'Foley'),(10632,1371069,2,'Script Supervisor'),(10632,1372838,5,'Dialogue Editor'),(10632,1377130,10,'Visual Effects Supervisor'),(10632,1377502,1,'Still Photographer'),(10632,1401107,10,'Visual Effects Producer'),(10632,1401263,1,'Camera Operator'),(10632,1404838,5,'Dialogue Editor'),(10632,1408354,1,'Steadicam Operator'),(10632,1409712,1,'Helicopter Camera'),(10632,1411265,5,'Dialogue Editor'),(10632,1422074,2,'Script Supervisor'),(10632,1434165,1,'Camera Operator'),(10632,1444908,8,'Hairstylist'),(10632,1446986,8,'Hairstylist'),(10632,1477790,8,'Costume Supervisor'),(10632,1530363,9,'Visual Effects Editor'),(10632,1532253,7,'Art Direction'),(10632,1546101,6,'ADR & Dubbing'),(10632,1551523,6,'ADR & Dubbing'),(10632,1570163,9,'CG Supervisor'),(10632,1712104,10,'Visual Effects Producer'),(10632,1712105,8,'Makeup Artist'),(12117,531,6,'Music'),(12117,1301,1,'Director of Photography'),(12117,6581,5,'Editor'),(12117,5132,6,'Music Editor'),(12117,5231,3,'Executive Producer'),(12117,14193,10,'Special Effects Supervisor'),(12117,12962,2,'Director'),(12117,16497,6,'Music Editor'),(12117,17797,3,'Producer'),(12117,19464,1,'Camera Operator'),(12117,21865,3,'Executive Producer'),(12117,21984,7,'Set Decoration'),(12117,28162,8,'Costume Design'),(12117,35664,2,'First Assistant Director'),(12117,46086,4,'Screenplay'),(12117,52016,8,'Key Costumer'),(12117,71324,3,'Producer'),(12117,66532,7,'Set Designer'),(12117,112520,7,'Production Design'),(12117,112521,7,'Art Direction'),(12117,121275,8,'Hairstylist'),(12117,587969,2,'Script Supervisor'),(12117,960987,3,'Casting'),(12117,1213025,7,'Art Department Coordinator'),(12117,1322087,8,'Makeup Department Head'),(12117,1327524,7,'Set Designer'),(12117,1329417,8,'Makeup Supervisor'),(12117,1330048,8,'Costume Supervisor'),(12117,1342657,6,'Sound Designer'),(12117,1352969,6,'Supervising Sound Editor'),(12117,1364413,9,'Special Effects Coordinator'),(12117,1392901,5,'Dialogue Editor'),(12117,1403084,7,'Construction Foreman'),(12117,1423757,6,'Sound Effects Editor'),(12117,1433735,9,'Stunt Coordinator'),(12117,1463728,2,'Script Supervisor'),(12117,1532615,7,'Construction Coordinator'),(12117,1538140,3,'Production Coordinator'),(12117,1551334,1,'First Assistant Camera'),(12117,1552214,1,'Camera Operator'),(13260,57538,4,'Writer'),(13260,65702,2,'Director'),(13260,1552521,9,'Stunts'),(12123,38,5,'Editor'),(12123,437,7,'Art Direction'),(12123,507,4,'Writer'),(12123,1203,4,'Screenplay'),(12123,1297,3,'Executive Producer'),(12123,1760,6,'Original Music Composer'),(12123,5583,5,'Editor'),(12123,5957,7,'Set Decoration'),(12123,10950,3,'Associate Producer'),(12123,8277,3,'Producer'),(12123,8277,4,'Writer'),(12123,9569,4,'Writer'),(12123,10678,8,'Costume Design'),(12123,11475,7,'Production Design'),(12123,11475,3,'Associate Producer'),(12123,12989,2,'Director'),(12123,12989,3,'Producer'),(12123,15842,5,'Editor'),(12123,58208,5,'Editor'),(12123,59955,1,'Director of Photography'),(12123,71346,4,'Screenplay'),(12123,1471198,3,'Associate Producer'),(12123,1522060,3,'Associate Producer'),(16072,4611,3,'Executive Producer'),(16072,4612,3,'Executive Producer'),(16072,4673,3,'Casting'),(16072,9439,6,'Foley'),(16072,12638,7,'Art Direction'),(16072,12639,7,'Assistant Art Director'),(16072,14712,6,'Original Music Composer'),(16072,16497,6,'Music Editor'),(16072,16596,8,'Costume Design'),(16072,19745,10,'Visual Effects Producer'),(16072,21962,6,'Original Music Composer'),(16072,34858,7,'Production Design'),(16072,46082,7,'Set Designer'),(16072,48311,1,'Director of Photography'),(16072,26208,3,'Executive Producer'),(16072,66088,4,'Screenplay'),(16072,66088,2,'Director'),(16072,66088,3,'Producer'),(16072,66089,3,'Executive Producer'),(16072,72261,9,'Second Unit Cinematographer'),(16072,75248,1,'Camera Operator'),(16072,11063,7,'Set Decoration'),(16072,91916,8,'Set Costumer'),(16072,133368,10,'Visual Effects Producer'),(16072,216697,3,'Executive Producer'),(16072,239179,5,'Editor'),(16072,936505,9,'Stunt Coordinator'),(16072,958589,4,'Novel'),(16072,1096345,8,'Hairstylist'),(16072,1199588,10,'Visual Effects Supervisor'),(16072,1208437,8,'Makeup Artist'),(16072,1305275,8,'Costume Design'),(16072,1318806,8,'Makeup Artist'),(16072,1318806,8,'Hairstylist'),(16072,1338148,7,'Assistant Art Director'),(16072,1347997,6,'Sound Re-Recording Mixer'),(16072,1347998,6,'Sound Re-Recording Mixer'),(16072,1355966,8,'Set Costumer'),(16072,1378244,8,'Set Costumer'),(16072,1378745,7,'Construction Coordinator'),(16072,1378747,9,'Property Master'),(16072,1378748,9,'Property Master'),(16072,1378749,7,'Set Designer'),(16072,1378750,7,'Set Designer'),(16072,1378751,7,'Set Designer'),(16072,1378752,7,'Art Department Coordinator'),(16072,1378753,9,'Scenic Artist'),(16072,1378754,6,'Sound Re-Recording Mixer'),(16072,1378755,6,'Sound Re-Recording Mixer'),(16072,1378756,6,'Supervising Sound Editor'),(16072,1378757,6,'Supervising Sound Editor'),(16072,1378758,6,'Boom Operator'),(16072,1378759,6,'Boom Operator'),(16072,1378760,9,'Special Effects Coordinator'),(16072,1378761,10,'Visual Effects Supervisor'),(16072,1378762,10,'Visual Effects Supervisor'),(16072,1378763,10,'Visual Effects Producer'),(16072,1378764,11,'Best Boy Electric'),(16072,1378765,1,'Still Photographer'),(16072,1378766,8,'Costume Supervisor'),(16072,1408396,11,'Rigging Gaffer'),(16072,1436174,9,'CGI Supervisor'),(16072,1452688,9,'Transportation Coordinator'),(16072,1458064,8,'Hairstylist'),(16072,1458065,8,'Makeup Artist'),(16072,1458066,9,'Makeup Effects'),(16072,1458067,11,'Gaffer'),(16072,1458072,8,'Set Costumer'),(16072,1458074,8,'Set Costumer'),(16072,1458075,3,'Location Manager'),(16072,1458076,3,'Location Manager'),(16072,1458077,9,'Unit Publicist'),(34314,3718,3,'Producer'),(34314,423,3,'Casting'),(34314,2528,7,'Art Direction'),(34314,2993,3,'Producer'),(34314,13628,8,'Costume Design'),(34314,26981,6,'Original Music Composer'),(34314,43891,9,'Cinematography'),(34314,65115,3,'Executive Producer'),(34314,68378,4,'Writer'),(34314,75231,3,'Production Manager'),(34314,75231,3,'Associate Producer'),(34314,91042,9,'Pilot'),(34314,101767,2,'Director'),(34314,564209,7,'Location Scout'),(34314,1034658,3,'Casting Assistant'),(34314,1199359,9,'Pilot'),(34314,1273347,9,'Post Production Supervisor'),(34314,1308254,7,'Set Decoration'),(34314,1318882,5,'Editor'),(34314,1324882,7,'Production Design'),(34314,1338148,7,'Set Designer'),(34314,1371069,2,'Script Supervisor'),(34314,1375530,3,'Casting Associate'),(34314,1595489,3,'Production Coordinator'),(34314,1805199,7,'Set Designer'),(34314,1855155,7,'Set Designer'),(34314,1855156,3,'Location Manager'),(34314,1855157,3,'Location Manager'),(34314,1855158,9,'Pilot'),(34314,1855159,9,'Pilot'),(34314,1855160,7,'Title Designer'),(34314,1855161,9,'Pilot'),(19724,5668,5,'Editor'),(19724,10952,3,'Producer'),(19724,9612,4,'Writer'),(19724,9612,3,'Producer'),(19724,9989,6,'Original Music Composer'),(19724,15524,8,'Costume Design'),(19724,18382,4,'Writer'),(19724,21747,7,'Production Design'),(19724,23969,1,'Director of Photography'),(19724,49831,3,'Executive Producer'),(19724,52845,2,'Director'),(14623,947,6,'Original Music Composer'),(14623,668,3,'Casting'),(14623,2236,3,'Producer'),(14623,2238,3,'Producer'),(14623,2388,2,'Director'),(14623,8401,3,'Producer'),(14623,9150,3,'Executive Producer'),(14623,9151,3,'Executive Producer'),(14623,9154,5,'Editor'),(14623,14172,4,'Screenplay'),(14623,18357,4,'Story'),(14623,23769,7,'Production Design'),(14623,10851,6,'Original Music Composer'),(14623,53841,9,'Cinematography'),(14623,57341,4,'Screenplay'),(14623,57341,4,'Story'),(14623,59541,3,'Producer'),(14623,137380,4,'Teleplay'),(14623,1129513,3,'Producer'),(14623,1213685,4,'Teleplay'),(10375,5914,3,'Casting'),(10375,4501,1,'Director of Photography'),(10375,5283,3,'Producer'),(10375,6185,3,'Executive Producer'),(10375,8751,5,'Editor'),(10375,9545,3,'Casting'),(10375,11098,6,'Original Music Composer'),(10375,12051,7,'Production Design'),(10375,16486,3,'Associate Producer'),(10375,33254,2,'Director'),(10375,33257,8,'Costume Design'),(10375,49831,3,'Producer'),(10375,64335,5,'Editor'),(10375,65313,4,'Screenplay'),(10375,1392925,2,'Script Supervisor'),(11321,2215,3,'Casting'),(11321,2888,3,'Producer'),(11321,13304,7,'Production Design'),(11321,19157,7,'Set Decoration'),(11321,14349,7,'Art Direction'),(11321,15573,8,'Costume Design'),(11321,20646,2,'Director'),(11321,20649,5,'Editor'),(11321,51612,3,'Producer'),(11321,51613,3,'Producer'),(11321,66690,8,'Hairstylist'),(11321,63422,1,'Director of Photography'),(11321,59665,6,'Original Music Composer'),(11321,70305,4,'Screenplay'),(11321,92334,8,'Hairstylist'),(11321,75627,8,'Hairstylist'),(11321,147366,8,'Makeup Artist'),(11321,168214,8,'Makeup Department Head'),(11321,1021206,3,'Casting'),(11321,1480099,2,'Script Supervisor'),(11321,1481011,8,'Hairstylist'),(11456,52035,4,'Screenplay'),(11456,6875,5,'Editor'),(11456,9165,1,'Director of Photography'),(11456,9989,6,'Original Music Composer'),(11456,23213,2,'Director'),(11456,23213,3,'Producer'),(11456,58471,3,'Co-Producer'),(11456,58471,3,'Unit Production Manager'),(22803,8219,5,'Editor'),(22803,1593,3,'Casting'),(22803,4909,7,'Set Decoration'),(22803,6041,6,'Original Music Composer'),(22803,6348,8,'Costume Design'),(22803,9351,6,'Music Editor'),(22803,11695,3,'Producer'),(22803,12033,1,'Director of Photography'),(22803,13177,6,'Sound Re-Recording Mixer'),(22803,13927,4,'Writer'),(22803,13927,3,'Producer'),(22803,14764,6,'Sound Effects Editor'),(22803,15332,6,'Supervising Sound Editor'),(22803,16494,7,'Art Direction'),(22803,17276,3,'Producer'),(22803,37932,2,'Director'),(22803,46966,7,'Production Design'),(22803,53476,3,'Co-Producer'),(22803,54896,3,'Production Manager'),(22803,68320,3,'Producer'),(22803,92301,3,'Executive In Charge Of Production'),(22803,79249,3,'Associate Producer'),(22803,84602,9,'Stunt Coordinator'),(22803,85561,3,'Executive Producer'),(22803,91115,1,'Camera Operator'),(22803,566668,11,'Rigging Gaffer'),(22803,582624,3,'Producer'),(22803,936194,8,'Makeup Department Head'),(22803,983949,3,'Executive Producer'),(22803,989750,3,'Casting'),(22803,1321589,8,'Costume Supervisor'),(22803,1334485,6,'Sound Designer'),(22803,1345268,6,'Music Editor'),(22803,1387195,6,'Sound Re-Recording Mixer'),(22803,1418491,2,'Script Supervisor'),(22803,1428267,3,'Co-Producer'),(22803,1428583,8,'Hair Department Head'),(22803,1445895,1,'Camera Operator'),(22803,1525930,1,'Camera Operator'),(22803,1531494,6,'Music Supervisor'),(22803,1547028,3,'Associate Producer'),(22803,1547032,3,'Production Coordinator'),(22803,1547037,11,'Gaffer'),(22803,1547038,6,'Sound mixer'),(22803,1547039,5,'First Assistant Editor'),(22803,1547040,8,'Key Hair Stylist'),(11631,31,3,'Executive Producer'),(11631,11072,5,'Editor'),(11631,8401,3,'Executive Producer'),(11631,12931,3,'Executive Producer'),(11631,24217,1,'Director of Photography'),(11631,27098,3,'Producer'),(11631,45799,6,'Original Music Composer'),(11631,45799,3,'Executive Producer'),(11631,71068,2,'Director'),(11631,71069,4,'Screenplay'),(11631,71074,3,'Producer'),(11631,71075,6,'Original Music Composer'),(11631,71075,3,'Executive Producer'),(11631,71076,6,'Original Music Composer'),(32856,1201,2,'Director'),(32856,1214,1,'Director of Photography'),(32856,1222,7,'Production Design'),(32856,4500,6,'Music'),(32856,3965,3,'Casting'),(32856,12970,5,'Editor'),(32856,62159,3,'Producer'),(32856,66174,3,'Producer'),(32856,68308,4,'Screenplay'),(32856,69124,4,'Writer'),(32856,69125,4,'Writer'),(32856,1034748,3,'Casting'),(32856,1336716,10,'Visual Effects Supervisor'),(32856,1480099,2,'Script Supervisor'),(26389,59,4,'Story'),(26389,1966,7,'Production Design'),(26389,16369,10,'Special Effects Supervisor'),(26389,16370,9,'Special Effects Coordinator'),(26389,20722,8,'Costume Design'),(26389,19773,7,'Set Decoration'),(26389,21650,3,'Casting'),(26389,35453,2,'Director'),(26389,35453,1,'Steadicam Operator'),(26389,37975,9,'Stunt Coordinator'),(26389,50950,3,'Executive Producer'),(26389,52469,3,'Co-Executive Producer'),(26389,54179,5,'Dialogue Editor'),(26389,54179,6,'Sound'),(26389,55772,3,'Producer'),(26389,55774,1,'Director of Photography'),(26389,56230,9,'Post Production Supervisor'),(26389,60862,3,'Co-Executive Producer'),(26389,62434,5,'Editor'),(26389,95322,4,'Screenplay'),(26389,142096,6,'Foley'),(26389,225635,6,'Original Music Composer'),(26389,228881,9,'Choreographer'),(26389,929839,6,'Sound'),(26389,1030403,2,'Script Supervisor'),(26389,1321357,8,'Costume Design'),(26389,1361341,4,'Storyboard'),(26389,1367811,9,'Property Master'),(26389,1367828,11,'Gaffer'),(26389,1372090,6,'Sound Re-Recording Mixer'),(26389,1374461,6,'Foley'),(26389,1376265,6,'Sound Editor'),(26389,1394040,1,'Still Photographer'),(26389,1398093,5,'Dialogue Editor'),(26389,1401151,1,'Still Photographer'),(26389,1402246,6,'Sound'),(26389,1406385,9,'Makeup Effects'),(26389,1407221,1,'Still Photographer'),(26389,1412488,1,'Still Photographer'),(26389,1412911,8,'Makeup Artist'),(26389,1412914,3,'Production Manager'),(26389,1412921,3,'Unit Manager'),(26389,1449977,8,'Key Hair Stylist'),(26389,1449978,8,'Makeup Department Head'),(26389,1449979,8,'Makeup Artist'),(26389,1449981,9,'Makeup Effects'),(26389,1449983,7,'Sculptor'),(26389,1449985,6,'Sound Editor'),(26389,1449986,10,'Visual Effects Producer'),(26389,1449987,10,'Visual Effects Producer'),(26389,1449988,10,'Visual Effects Supervisor'),(26389,1449989,9,'Second Unit Cinematographer'),(26389,1449990,7,'Location Scout'),(26389,1449991,7,'Location Scout'),(26389,1530856,9,'Stunts'),(26389,1582913,3,'Production Manager'),(26389,1637462,3,'Casting'),(26389,1637463,6,'Boom Operator'),(26389,1637464,3,'Production Coordinator'),(26389,1637465,3,'Production Coordinator'),(26389,1637468,8,'Hairstylist'),(26389,1637469,8,'Hairstylist'),(26389,1637470,9,'Property Master'),(26389,1637471,9,'Property Master'),(26389,1637472,9,'Post Production Supervisor'),(26389,1637474,10,'Visual Effects Coordinator'),(26389,1637475,6,'Music Supervisor'),(11817,996,6,'Music'),(11817,282,3,'Producer'),(11817,1919,1,'Director of Photography'),(11817,11401,3,'Producer'),(11817,11404,3,'Producer'),(11817,17886,5,'Editor'),(11817,56860,4,'Screenplay'),(11817,70573,2,'Director'),(11817,70574,4,'Screenplay'),(11817,70575,3,'Executive Producer'),(11817,1367818,10,'Visual Effects Supervisor'),(18239,403,1,'Director of Photography'),(18239,2949,6,'Original Music Composer'),(18239,3288,2,'Director'),(18239,10569,3,'Producer'),(18239,6040,3,'Producer'),(18239,6391,7,'Production Design'),(18239,7727,10,'Visual Effects Supervisor'),(18239,25046,3,'Executive Producer'),(18239,56855,4,'Screenplay'),(18239,56856,4,'Novel'),(18239,57245,3,'Producer'),(18239,60282,3,'Casting'),(18239,61647,3,'Executive Producer'),(18239,63720,3,'Executive Producer'),(18239,84127,3,'Executive Producer'),(18239,84220,3,'Producer'),(18239,959072,3,'Casting'),(18239,1007395,9,'Stunt Coordinator'),(18239,1128228,3,'Line Producer'),(18239,1128796,5,'Editor'),(18239,1128797,3,'Producer'),(18239,1336716,10,'Visual Effects Supervisor'),(18239,1453943,9,'Technical Supervisor'),(18239,1459736,10,'Animation'),(18239,1460755,8,'Key Hair Stylist'),(18239,1737894,9,'Stunts'),(10312,495,3,'Casting'),(10312,432,1,'Director of Photography'),(10312,602,7,'Production Design'),(10312,4489,4,'Screenplay'),(10312,4499,2,'Director'),(10312,4502,9,'Visual Effects Editor'),(10312,7536,8,'Costume Design'),(10312,9251,6,'Original Music Composer'),(10312,9263,3,'Producer'),(10312,12945,6,'Music Supervisor'),(10312,12575,1,'Camera Operator'),(10312,15004,3,'Producer'),(10312,15005,5,'Editor'),(10312,15006,7,'Art Direction'),(10312,15016,7,'Set Decoration'),(10312,23620,8,'Makeup Artist'),(10312,58362,6,'Supervising Sound Editor'),(10312,58363,6,'Sound Effects Editor'),(10312,113052,6,'Sound Effects Editor'),(10312,64810,4,'Novel'),(10312,64811,3,'Producer'),(10312,64812,3,'Producer'),(10312,79790,11,'Gaffer'),(10312,91893,9,'Special Effects Coordinator'),(10312,228439,5,'Dialogue Editor'),(10312,936765,6,'Orchestrator'),(10312,1169459,10,'Visual Effects Producer'),(10312,1223099,6,'ADR & Dubbing'),(10312,1318982,1,'First Assistant Camera'),(10312,1319743,8,'Makeup Artist'),(10312,1324652,1,'Still Photographer'),(10312,1327149,8,'Makeup Artist'),(10312,1338372,6,'Foley'),(10312,1364412,6,'Sound Effects Editor'),(10312,1367493,6,'Foley'),(10312,1370949,5,'Dialogue Editor'),(10312,1371100,9,'Visual Effects Editor'),(10312,1395451,10,'Visual Effects Producer'),(10312,1405385,10,'Visual Effects Supervisor'),(10312,1412188,8,'Key Hair Stylist'),(10312,1413181,9,'CG Supervisor'),(10312,1415500,1,'Camera Operator'),(10312,1435576,8,'Hairstylist'),(10312,1453276,7,'Construction Coordinator'),(10312,1460739,8,'Hairstylist'),(10312,1480099,2,'Script Supervisor'),(10312,1533028,11,'Rigging Gaffer'),(10312,1538138,8,'Costume Supervisor'),(10312,1549001,7,'Art Department Coordinator'),(10312,1550563,3,'Casting'),(10312,1550564,3,'Casting'),(10312,1550565,8,'Seamstress'),(10312,1550566,6,'Orchestrator'),(10312,1550567,1,'First Assistant Camera'),(10201,1296,3,'Executive Producer'),(10201,1297,3,'Producer'),(10201,5490,3,'Casting'),(10201,5667,1,'Director of Photography'),(10201,6055,7,'Set Decoration'),(10201,6742,5,'Editor'),(10201,8275,3,'Co-Producer'),(10201,10968,3,'Producer'),(10201,11655,3,'Executive Producer'),(10201,15017,8,'Makeup Artist'),(10201,16177,6,'Sound Re-Recording Mixer'),(10201,16499,10,'Visual Effects Supervisor'),(10201,59026,2,'Director'),(10201,28636,7,'Production Design'),(10201,29018,3,'Executive Producer'),(10201,25365,3,'Casting'),(10201,40471,8,'Costume Design'),(10201,53012,6,'Original Music Composer'),(10201,52934,4,'Screenplay'),(10201,55227,6,'Production Sound Mixer'),(10201,62763,4,'Screenplay'),(10201,204163,3,'Associate Producer'),(10201,204163,4,'Book'),(10201,240376,4,'Screenplay'),(10201,937146,6,'Original Music Composer'),(10201,957558,3,'Associate Producer'),(10201,988882,7,'Art Direction'),(10201,1008052,6,'Music Editor'),(10201,1008052,6,'Music Supervisor'),(10201,1172414,1,'Still Photographer'),(10201,1357059,5,'Dialogue Editor'),(10201,1377220,6,'Sound Re-Recording Mixer'),(10201,1391749,7,'Art Department Coordinator'),(10201,1400540,2,'Script Supervisor'),(10201,1408301,6,'Sound Designer'),(10201,1408301,6,'Sound Effects Editor'),(10201,1424167,6,'Sound Designer'),(10201,1424167,6,'Supervising Sound Editor'),(10201,1556293,3,'Co-Producer'),(10329,136,3,'Producer'),(10329,489,3,'Producer'),(10329,664,3,'Executive Producer'),(10329,664,2,'Director'),(10329,1760,6,'Original Music Composer'),(10329,4782,4,'Author'),(10329,6346,5,'Editor'),(10329,9965,1,'Director of Photography'),(10329,26095,4,'Screenplay'),(13811,29,3,'Producer'),(13811,3502,8,'Costume Design'),(13811,7229,6,'Original Music Composer'),(13811,12382,1,'Director of Photography'),(13811,15326,3,'Casting'),(13811,18956,3,'Executive Producer'),(13811,19286,3,'Executive Producer'),(13811,19288,3,'Executive Producer'),(13811,21085,2,'Director'),(13811,21085,3,'Producer'),(13811,51612,3,'Producer'),(13811,51613,3,'Producer'),(13811,56052,4,'Screenplay'),(13811,56052,4,'Story'),(13811,56052,3,'Producer'),(13811,75942,7,'Production Design'),(13811,84961,4,'Screenplay'),(13811,84962,4,'Screenplay'),(13811,945998,3,'Executive Producer'),(13811,961037,5,'Editor'),(13811,1121617,3,'Executive Producer'),(13811,1124533,3,'Executive Producer'),(13811,1418813,9,'Stunt Coordinator'),(10320,298,3,'Co-Executive Producer'),(10320,2212,3,'Producer'),(10320,3965,3,'Casting'),(10320,5625,3,'Co-Executive Producer'),(10320,6922,7,'Art Direction'),(10320,15244,4,'Screenplay'),(10320,8701,3,'Producer'),(10320,9967,7,'Production Design'),(10320,9621,9,'Special Effects Coordinator'),(10320,8880,3,'Executive Producer'),(10320,9333,8,'Makeup Department Head'),(10320,14348,7,'Set Decoration'),(10320,15318,9,'Stunt Coordinator'),(10320,10832,1,'Director of Photography'),(10320,16651,5,'Editor'),(10320,20223,3,'Co-Executive Producer'),(10320,21036,3,'Executive Producer'),(10320,40613,6,'Original Music Composer'),(10320,26875,2,'Director'),(10320,27786,4,'Novel'),(10320,35514,8,'Costume Design'),(10320,48523,6,'Original Music Composer'),(10320,49907,3,'Unit Production Manager'),(10320,49907,3,'Co-Producer'),(10320,54777,3,'Casting Associate'),(10320,113048,6,'Sound Recordist'),(10320,63984,3,'Executive Producer'),(10320,59812,9,'Second Unit Cinematographer'),(10320,70251,5,'First Assistant Editor'),(10320,86589,3,'Executive Producer'),(10320,91133,9,'Post Production Supervisor'),(10320,91173,3,'Researcher'),(10320,91903,11,'Gaffer'),(10320,117867,6,'Supervising Sound Editor'),(10320,585767,4,'Storyboard'),(10320,932186,6,'Orchestrator'),(10320,995644,9,'Visual Effects Art Director'),(10320,1034748,3,'Casting'),(10320,1141788,11,'Electrician'),(10320,1327524,7,'Set Designer'),(10320,1334424,9,'Propmaker'),(10320,1335122,6,'Sound Effects Editor'),(10320,1335156,5,'Color Timer'),(10320,1339468,2,'Script Supervisor'),(10320,1341776,7,'Property Master'),(10320,1367493,6,'Foley'),(10320,1378696,6,'Sound Designer'),(10320,1378756,5,'Dialogue Editor'),(10320,1384388,9,'Stunts'),(10320,1394323,9,'Chef'),(10320,1395276,1,'Camera Operator'),(10320,1400088,6,'Music Editor'),(10320,1400385,3,'Location Manager'),(10320,1403537,10,'Visual Effects Producer'),(10320,1404313,9,'Visual Effects Editor'),(10320,1404541,1,'Steadicam Operator'),(10320,1409283,9,'Unit Publicist'),(10320,1409824,8,'Wigmaker'),(10320,1418403,11,'Rigging Gaffer'),(10320,1428210,11,'Lighting Technician'),(10320,1436183,9,'Technical Supervisor'),(10320,1439109,8,'Costume Supervisor'),(10320,1496388,9,'Stand In'),(10320,1531875,8,'Set Costumer'),(10320,1532691,7,'Construction Coordinator'),(10320,1534973,7,'Painter'),(10320,1536542,1,'Still Photographer'),(10320,1543218,10,'Animation Supervisor'),(10320,1548665,7,'Greensman'),(10320,1552808,9,'Digital Effects Supervisor'),(10320,1560120,10,'Visual Effects Coordinator'),(10320,1567920,1,'Grip'),(10320,1577475,6,'Assistant Sound Editor'),(10320,1600104,9,'Loader'),(10320,1600536,2,'First Assistant Director'),(10320,1608892,10,'3D Coordinator'),(10320,1619998,11,'Best Boy Electric'),(10320,1633952,3,'Production Coordinator'),(10320,1635458,6,'Production Sound Mixer'),(10320,1643717,7,'Leadman'),(10320,1646233,9,'Craft Service'),(10320,1647714,1,'First Assistant Camera'),(10320,1671651,11,'Lighting Supervisor'),(10320,1681469,9,'Picture Car Coordinator'),(10320,1688593,1,'Key Grip'),(10320,1691203,9,'Transportation Captain'),(10320,1701153,7,'Production Illustrator'),(10320,1737829,6,'Boom Operator'),(10320,1755745,3,'Production Supervisor'),(10320,1815438,11,'Rigging Grip'),(10320,1815448,9,'Driver'),(10320,1821122,7,'Art Department Assistant'),(10320,1821123,7,'Art Department Coordinator'),(10320,1821177,8,'Hairstylist'),(10320,1821178,8,'Makeup Artist'),(10320,1821179,8,'Set Dressing Artist'),(10320,1821180,9,'Post Production Assistant'),(10320,1821181,9,'Set Medic'),(10320,1821182,9,'Set Production Assistant'),(10320,1821183,9,'Software Engineer'),(10320,1821187,9,'Transportation Coordinator'),(10320,1821188,9,'Video Assist Operator'),(10320,1821191,6,'Sound Engineer'),(10320,1821192,10,'Digital Compositors'),(10320,1821193,10,'I/O Supervisor'),(10320,1821198,9,'Digital Producer'),(13673,36,1,'Director of Photography'),(13673,4500,6,'Music'),(13673,6347,3,'Casting'),(13673,10965,4,'Screenplay'),(13673,10965,3,'Producer'),(13673,11222,3,'Producer'),(13673,17828,3,'Producer'),(13673,11060,4,'Novel'),(13673,18311,2,'Director'),(13673,957115,8,'Costume Design'),(13673,1262129,2,'Script Supervisor'),(13673,1368867,9,'Special Effects Coordinator'),(13836,437,7,'Production Design'),(13836,894,6,'Music'),(13836,7717,7,'Art Direction'),(13836,9645,1,'Director of Photography'),(13836,18189,4,'Writer'),(13836,58375,2,'Director'),(13836,60212,4,'Writer'),(13836,935719,8,'Costume Design'),(13836,1673003,9,'Stunts'),(13836,1673004,4,'Book'),(11451,8221,7,'Art Direction'),(11451,539,4,'Screenplay'),(11451,3193,6,'Sound Designer'),(11451,3193,6,'Supervising Sound Editor'),(11451,4053,3,'Executive Producer'),(11451,5666,6,'Original Music Composer'),(11451,7312,2,'Director'),(11451,7415,3,'Casting'),(11451,7859,9,'Special Effects Coordinator'),(11451,8181,3,'Executive Producer'),(11451,8181,3,'Unit Production Manager'),(11451,9645,1,'Director of Photography'),(11451,9493,8,'Costume Supervisor'),(11451,10548,5,'Editor'),(11451,11652,3,'Co-Producer'),(11451,15022,10,'Visual Effects Supervisor'),(11451,14764,6,'Sound Effects Editor'),(11451,18923,4,'Screenplay'),(11451,18924,4,'Screenplay'),(11451,29015,3,'Producer'),(11451,52261,8,'Costume Design'),(11451,58013,3,'Executive Producer'),(11451,68605,3,'Executive In Charge Of Production'),(11451,59267,4,'Story'),(11451,59413,4,'Screenplay'),(11451,61076,7,'Production Design'),(11451,62397,4,'Characters'),(11451,62400,6,'Original Music Composer'),(11451,113844,6,'Music Supervisor'),(11451,149960,1,'Camera Operator'),(11451,227360,8,'Makeup Department Head'),(11451,548435,6,'Sound Mixer'),(11451,935503,7,'Set Designer'),(11451,968316,9,'Second Unit Cinematographer'),(11451,968316,9,'Stunt Coordinator'),(11451,999672,9,'Stunts'),(11451,1073307,5,'First Assistant Editor'),(11451,1085294,3,'Associate Producer'),(11451,1096860,7,'Standby Painter'),(11451,1195362,9,'Propmaker'),(11451,1249858,9,'Picture Car Coordinator'),(11451,1334701,9,'Set Production Assistant'),(11451,1344274,9,'Transportation Coordinator'),(11451,1367820,10,'Visual Effects Producer'),(11451,1378224,7,'Set Decoration'),(11451,1378244,8,'Set Costumer'),(11451,1378713,10,'Digital Compositors'),(11451,1399071,1,'Aerial Director of Photography'),(11451,1399313,10,'Visual Effects Coordinator'),(11451,1400546,7,'Construction Coordinator'),(11451,1400812,6,'ADR & Dubbing'),(11451,1401893,9,'Visual Effects Editor'),(11451,1410345,7,'Property Master'),(11451,1411503,8,'Key Hair Stylist'),(11451,1413124,11,'Rigging Gaffer'),(11451,1415638,1,'Additional Camera'),(11451,1418002,6,'Music Editor'),(11451,1420328,3,'Location Manager'),(11451,1423409,9,'Craft Service'),(11451,1427384,2,'Script Supervisor'),(11451,1429248,10,'3D Artist'),(11451,1433996,8,'Hair Department Head'),(11451,1434016,7,'Assistant Art Director'),(11451,1437304,11,'Gaffer'),(11451,1447557,9,'Compositors'),(11451,1458583,5,'Digital Intermediate'),(11451,1460670,6,'Sound Recordist'),(11451,1463620,2,'Layout'),(11451,1463656,9,'Utility Stunts'),(11451,1476990,3,'Associate Producer'),(11451,1476991,3,'Development Manager'),(11451,1521490,8,'Hairstylist'),(11451,1528787,3,'Casting Associate'),(11451,1534973,7,'Painter'),(11451,1553245,1,'Still Photographer'),(11451,1564250,6,'Foley'),(11451,1567952,9,'Projection'),(11451,1568655,11,'Best Boy Electric'),(11451,1569559,9,'Digital Effects Supervisor'),(11451,1570066,9,'Video Assist Operator'),(11451,1570750,9,'Driver'),(11451,1614529,2,'Assistant Director'),(11451,1615280,9,'CG Supervisor'),(11451,1619094,3,'Publicist'),(11451,1619974,1,'Grip'),(11451,1619974,1,'Key Grip'),(11451,1646240,9,'Set Medic'),(11451,1648028,9,'Loader'),(11451,1730506,8,'Makeup Artist'),(11451,1763771,11,'Lighting Technician'),(11451,1802681,6,'Orchestrator'),(11451,1847845,7,'Set Decoration'),(11451,1848841,7,'Art Department Assistant'),(11451,1848843,7,'Construction Foreman'),(11451,1848844,1,'First Assistant Camera'),(11451,1848845,1,'Grip'),(11451,1848849,8,'Set Dressing Artist'),(11451,1848854,9,'Post Production Supervisor'),(11451,1848855,9,'Stand In'),(11451,1848856,5,'Editorial Production Assistant'),(11451,1848858,11,'Electrician'),(11451,1848859,11,'Rigging Grip'),(11451,1848860,3,'Production Accountant'),(11451,1848861,3,'Production Coordinator'),(11451,1848862,3,'Production Supervisor'),(11451,1848863,6,'Boom Operator'),(11451,1848864,10,'Animation Supervisor'),(11451,1848865,10,'Visual Effects'),(11451,1848866,4,'Storyboard'),(12103,2952,3,'Casting'),(12103,376,3,'Producer'),(12103,1296,3,'Executive Producer'),(12103,2241,5,'Editor'),(12103,3193,6,'Supervising Sound Editor'),(12103,7735,8,'Costume Design'),(12103,4140,6,'Original Music Composer'),(12103,10578,3,'Unit Production Manager'),(12103,5501,2,'Director'),(12103,5508,7,'Production Design'),(12103,6882,6,'Music Editor'),(12103,8683,11,'Gaffer'),(12103,9436,9,'Stunts'),(12103,10764,3,'Producer'),(12103,12050,3,'Producer'),(12103,13931,9,'Second Unit Cinematographer'),(12103,16177,6,'Sound Re-Recording Mixer'),(12103,21271,5,'Editor'),(12103,20274,4,'Screenplay'),(12103,21673,1,'Additional Photography'),(12103,29219,7,'Art Direction'),(12103,51386,9,'Additional Music'),(12103,51446,4,'Novel'),(12103,51446,3,'Co-Producer'),(12103,52452,6,'Music Supervisor'),(12103,69895,3,'Co-Producer'),(12103,59961,3,'Production Manager'),(12103,71244,4,'Screenplay'),(12103,71245,3,'Executive Producer'),(12103,91042,9,'Pilot'),(12103,91161,3,'Production Accountant'),(12103,107420,7,'Set Decoration'),(12103,417960,5,'Color Timer'),(12103,548435,6,'Foley'),(12103,548443,6,'First Assistant Sound Editor'),(12103,968602,1,'Steadicam Operator'),(12103,1043831,1,'Director of Photography'),(12103,1129323,3,'Production Coordinator'),(12103,1144651,1,'Additional Camera'),(12103,1286355,8,'Hairstylist'),(12103,1316504,8,'Makeup Artist'),(12103,1318148,7,'Set Dresser'),(12103,1322465,8,'Costume Supervisor'),(12103,1337452,9,'Property Master'),(12103,1346330,10,'Digital Compositors'),(12103,1364794,7,'Leadman'),(12103,1392081,6,'Sound Effects Editor'),(12103,1392095,10,'Visual Effects Supervisor'),(12103,1398932,9,'Stunt Coordinator'),(12103,1399141,6,'Additional Sound Re-Recording Mixer'),(12103,1401283,7,'Assistant Art Director'),(12103,1402039,2,'Script Supervisor'),(12103,1403528,11,'Rigging Gaffer'),(12103,1403636,5,'Dialogue Editor'),(12103,1407210,3,'Location Manager'),(12103,1415122,7,'Standby Painter'),(12103,1420154,6,'Supervising ADR Editor'),(12103,1428511,9,'Unit Publicist'),(12103,1436525,1,'Still Photographer'),(12103,1449158,9,'Makeup Effects'),(12103,1449162,7,'Set Designer'),(12103,1457898,2,'Second Assistant Director'),(12103,1458530,6,'Boom Operator'),(12103,1459655,6,'Orchestrator'),(12103,1469339,2,'Script Supervisor'),(12103,1513523,9,'Stand In'),(12103,1523591,1,'Key Grip'),(12103,1529603,3,'Assistant Production Coordinator'),(12103,1535541,6,'Sound Mixer'),(12103,1537540,9,'Digital Effects Producer'),(12103,1538314,8,'Assistant Costume Designer'),(12103,1547656,6,'ADR Editor'),(12103,1555702,6,'Sound Editor'),(12103,1601620,1,'First Assistant Camera'),(12103,1605411,9,'Systems Administrators & Support'),(12103,1625895,7,'Art Department Coordinator'),(12103,1625896,7,'Construction Coordinator'),(12103,1625897,7,'Greensman'),(12103,1625898,7,'Location Scout'),(12103,1625901,1,'Grip'),(12103,1625912,9,'Carpenter'),(12103,1625913,9,'Chef'),(12103,1625914,9,'Craft Service'),(12103,1625916,9,'Picture Car Coordinator'),(12103,1625917,9,'Production Office Assistant'),(12103,1625918,9,'Scenic Artist'),(12103,1625919,9,'Security'),(12103,1625920,9,'Set Medic'),(12103,1625921,9,'Set Production Assistant'),(12103,1625923,9,'Transportation Co-Captain'),(12103,1625924,9,'Transportation Coordinator'),(12103,1625925,9,'Video Assist Operator'),(12103,1625926,5,'First Assistant Editor'),(12103,1625927,11,'Best Boy Electric'),(12103,1625928,11,'Electrician'),(12103,1625929,11,'Rigging Grip'),(12103,1625930,3,'Casting Associate'),(12103,1625931,4,'Storyboard'),(12103,1676840,2,'First Assistant Director'),(12103,1707448,6,'Foley Editor'),(12103,1733142,5,'Negative Cutter'),(12103,1733232,1,'Dolly Grip'),(12103,1741194,6,'Musician'),(12103,1840062,7,'Assistant Property Master'),(12103,1861310,7,'Title Designer'),(12103,1861314,1,'Camera Loader'),(12103,1861318,2,'Third Assistant Director'),(10393,4500,6,'Original Music Composer'),(10393,16300,1,'Director of Photography'),(10393,26502,2,'Director'),(10393,21794,5,'Editor'),(10393,65365,4,'Screenplay'),(10393,65559,3,'Producer'),(14199,2294,2,'Director'),(14199,2294,5,'Editor'),(14199,2294,4,'Writer'),(14199,2294,1,'Director of Photography'),(14199,2294,6,'Music'),(14199,2294,10,'Visual Effects Supervisor'),(14199,2294,1,'Camera Operator'),(14199,2294,6,'Sound Re-Recording Mixer'),(14199,1307,3,'Executive Producer'),(14199,59839,3,'Executive Producer'),(14199,5911,3,'Producer'),(14199,4500,6,'Music'),(14199,5912,6,'Music'),(14199,5913,3,'Local Casting'),(14199,5914,3,'Casting'),(14199,20464,7,'Assistant Art Director'),(14199,20489,9,'Property Master'),(14199,20489,7,'Art Direction'),(14199,20490,8,'Costume Supervisor'),(14199,20490,8,'Costume Design'),(14199,23285,9,'Stunt Coordinator'),(14199,53636,3,'Casting Associate'),(14199,57111,3,'Line Producer'),(14199,57111,3,'Unit Production Manager'),(14199,59287,9,'Makeup Effects'),(14199,61847,5,'Associate Editor'),(14199,63292,7,'Art Direction'),(14199,63292,7,'Set Decoration'),(14199,107372,9,'Makeup Effects'),(14199,104925,3,'Executive In Charge Of Post Production'),(14199,117468,5,'Dialogue Editor'),(14199,144146,8,'Makeup Department Head'),(14199,217470,8,'Makeup Artist'),(14199,217470,8,'Hairstylist'),(14199,949208,3,'Publicist'),(14199,999284,9,'Additional Music'),(14199,1014919,1,'Camera Operator'),(14199,1127209,7,'Set Decoration'),(14199,1224272,9,'Special Effects Coordinator'),(14199,1337108,4,'Writer'),(14199,1338370,6,'Boom Operator'),(14199,1372216,3,'Location Manager'),(14199,1398123,6,'Sound Re-Recording Mixer'),(14199,1401122,9,'Property Master'),(14199,1401136,6,'Supervising Sound Editor'),(14199,1401136,6,'Music Editor'),(14199,1401151,1,'Still Photographer'),(14199,1401155,2,'Script Supervisor'),(14199,1407347,7,'Construction Coordinator'),(14199,1420148,7,'Art Department Coordinator'),(14199,1420166,9,'Transportation Coordinator'),(14199,1472893,8,'Set Costumer'),(14199,1523481,7,'Set Designer'),(14199,1538703,3,'Production Coordinator'),(14199,1550832,6,'Production Sound Mixer'),(14199,1564584,5,'Dialogue Editor'),(14199,1616036,10,'Visual Effects Producer'),(14199,1685556,2,'First Assistant Director'),(14199,1741165,9,'Post Production Supervisor'),(14199,1741168,10,'Pre-Visualization Supervisor'),(14199,1741171,5,'First Assistant Editor'),(14199,1741179,2,'Second Assistant Director'),(14199,1741190,8,'Seamstress'),(14199,1741203,9,'Additional Music'),(22832,1113,3,'Casting'),(22832,1091,3,'Producer'),(22832,8528,3,'Producer'),(22832,8677,1,'Director of Photography'),(22832,9339,3,'Producer'),(22832,9340,3,'Producer'),(22832,11266,2,'Director'),(22832,11267,3,'Co-Producer'),(22832,11268,3,'Co-Producer'),(22832,10903,3,'Co-Producer'),(22832,10905,3,'Co-Producer'),(22832,40836,3,'Line Producer'),(22832,23451,6,'Music'),(22832,33045,4,'Writer'),(22832,39726,3,'Executive Producer'),(22832,54211,3,'Executive Producer'),(22832,54212,3,'Executive Producer'),(22832,61091,3,'Executive Producer'),(22832,62743,7,'Production Design'),(22832,112014,4,'Writer'),(22832,1089142,3,'Co-Producer'),(22832,1130038,3,'Associate Producer'),(22832,1229789,5,'Editor'),(22832,1434647,5,'Editor'),(10390,1527,1,'Director of Photography'),(10390,7623,2,'Director'),(10390,7728,6,'Original Music Composer'),(10390,11898,4,'Screenplay'),(10390,21055,5,'Editor'),(10390,65234,4,'Novel'),(11892,1530,3,'Casting'),(11892,2866,5,'Editor'),(11892,6377,6,'Original Music Composer'),(11892,7535,7,'Set Decoration'),(11892,9639,7,'Art Direction'),(11892,21379,7,'Production Design'),(11892,23393,2,'Director'),(11892,23393,3,'Producer'),(11892,36582,8,'Costume Design'),(11892,49069,1,'Director of Photography'),(11892,92371,6,'Supervising Sound Editor'),(11892,92391,6,'Supervising Sound Editor'),(11892,69617,4,'Screenplay'),(11892,78395,9,'Stunt Coordinator'),(11892,1319744,8,'Costume Supervisor'),(11892,1335852,7,'Art Department Coordinator'),(11892,1337469,6,'Music Editor'),(11892,1355532,2,'Script Supervisor'),(11892,1395281,1,'Steadicam Operator'),(11892,1405729,3,'Unit Production Manager'),(11892,1461177,1,'Still Photographer'),(11892,1461605,8,'Makeup Artist'),(11892,1483950,5,'First Assistant Editor'),(11892,1525544,8,'Key Hair Stylist'),(11892,1533052,8,'Hairstylist'),(11892,1535984,3,'Production Coordinator'),(11892,1535986,1,'Camera Operator'),(11892,1535987,6,'Music Supervisor'),(11892,1536000,11,'Rigging Gaffer'),(11892,1536027,3,'Production Supervisor'),(12220,1044,1,'Director of Photography'),(12220,2585,6,'Original Music Composer'),(12220,3026,2,'Director'),(12220,3026,3,'Producer'),(12220,3032,5,'Editor'),(12220,9199,7,'Production Design'),(12220,10575,7,'Art Direction'),(12220,9250,3,'Executive Producer'),(12220,9251,6,'Original Music Composer'),(12220,13586,7,'Art Direction'),(12220,16853,4,'Screenplay'),(12220,16853,3,'Producer'),(12220,19971,8,'Costume Design'),(12220,42034,6,'Sound Re-Recording Mixer'),(12220,57077,3,'Executive Producer'),(12220,57077,2,'First Assistant Director'),(12220,62055,4,'Screenplay'),(12220,62055,3,'Producer'),(12220,62144,7,'Set Decoration'),(12220,66519,5,'Editor'),(12220,160927,6,'Music Editor'),(12220,1355532,2,'Script Supervisor'),(12220,1378171,6,'Sound Re-Recording Mixer'),(12220,1378173,1,'Still Photographer'),(12220,1403440,6,'Sound Effects Editor'),(12220,1406083,7,'Art Department Coordinator'),(12220,1752929,6,'Sound Mixer'),(12220,1836470,7,'Set Decoration'),(12220,1836473,3,'Associate Producer'),(10782,122,6,'Original Music Composer'),(10782,3687,6,'Sound Effects Editor'),(10782,1090,2,'Director'),(10782,1597,6,'Supervising Sound Editor'),(10782,7184,5,'Editor'),(10782,12234,3,'Executive Producer'),(10782,13932,3,'Casting'),(10782,13933,7,'Production Design'),(10782,14093,3,'Executive Producer'),(10782,17630,3,'Producer'),(10782,20204,4,'Screenplay'),(10782,20204,3,'Producer'),(10782,20206,3,'Producer'),(10782,20207,3,'Producer'),(10782,20208,3,'Co-Executive Producer'),(10782,20295,3,'Executive Producer'),(10782,21718,7,'Art Direction'),(10782,51981,1,'Director of Photography'),(10782,67759,3,'Executive Producer'),(10782,67865,6,'Sound Effects Editor'),(10782,983128,7,'Set Decoration'),(10782,1031811,6,'Supervising Sound Editor'),(10782,1131063,8,'Hairstylist'),(10782,1165678,3,'Production Supervisor'),(10782,1206767,7,'Assistant Art Director'),(10782,1334481,7,'Set Designer'),(10782,1335078,6,'Sound Effects Editor'),(10782,1341854,6,'Sound Re-Recording Mixer'),(10782,1341858,6,'Sound Re-Recording Mixer'),(10782,1342626,6,'Sound Re-Recording Mixer'),(10782,1342656,5,'Dialogue Editor'),(10782,1357061,6,'Sound Effects Editor'),(10782,1387183,5,'Dialogue Editor'),(10782,1393406,9,'Transportation Coordinator'),(10782,1399130,1,'Still Photographer'),(10782,1399971,9,'Special Effects Coordinator'),(10782,1401786,6,'Sound Effects Editor'),(10782,1403081,7,'Art Department Coordinator'),(10782,1403082,7,'Assistant Art Director'),(10782,1403083,7,'Construction Coordinator'),(10782,1403084,7,'Construction Coordinator'),(10782,1403085,9,'Property Master'),(10782,1403086,7,'Set Designer'),(10782,1403087,9,'Scenic Artist'),(10782,1403088,9,'Scenic Artist'),(10782,1403089,9,'Scenic Artist'),(10782,1403090,9,'Scenic Artist'),(10782,1403091,7,'Greensman'),(10782,1403092,7,'Greensman'),(10782,1403093,7,'Greensman'),(10782,1403094,7,'Greensman'),(10782,1412699,6,'Sound Effects Editor'),(10782,1413453,6,'Sound Effects Editor'),(10782,1458533,6,'Music Editor'),(10782,1460785,2,'Script Supervisor'),(10782,1462891,8,'Costume Design'),(10782,1551025,6,'Production Sound Mixer'),(10782,1554975,9,'Executive Music Producer'),(10061,596,7,'Production Design'),(10061,2161,3,'Producer'),(10061,2161,4,'Screenplay'),(10061,6119,3,'Casting'),(10061,6856,4,'Screenplay'),(10061,6856,3,'Producer'),(10061,11770,2,'Director'),(10061,11770,4,'Screenplay'),(10061,11770,4,'Characters'),(10061,11770,6,'Original Music Composer'),(10061,14692,4,'Characters'),(10061,15438,9,'Stunts'),(10061,14350,7,'Set Designer'),(10061,15327,7,'Set Designer'),(10061,19863,7,'Set Designer'),(10061,13434,7,'Art Direction'),(10061,24956,1,'Director of Photography'),(10061,27583,5,'Editor'),(10061,26981,6,'Original Music Composer'),(10061,13435,7,'Set Decoration'),(10061,38414,7,'Assistant Art Director'),(10061,62029,8,'Costume Design'),(10061,1171098,7,'Set Designer'),(10061,1171607,7,'Set Designer'),(10061,1316599,8,'Makeup Artist'),(10061,1335808,8,'Makeup Artist'),(10061,1355529,7,'Art Department Coordinator'),(10061,1389131,7,'Construction Coordinator'),(10061,1404714,7,'Sculptor'),(10061,1411264,9,'Property Master'),(10061,1434270,8,'Hairstylist'),(10061,1434271,8,'Makeup Artist'),(10061,1434274,7,'Sculptor'),(10386,582,5,'First Assistant Editor'),(10386,599,3,'Casting'),(10386,7714,6,'Original Music Composer'),(10386,7962,10,'Visual Development'),(10386,8072,5,'Assistant Editor'),(10386,22298,4,'Storyboard'),(10386,7087,2,'Director'),(10386,7087,4,'Screenplay'),(10386,21198,10,'Animation'),(10386,21201,5,'Editor'),(10386,34894,3,'Producer'),(10386,47098,3,'Producer'),(10386,52701,4,'Storyboard'),(10386,83875,9,'Thanks'),(10386,33340,3,'Associate Producer'),(10386,59363,5,'Assistant Editor'),(10386,60267,3,'Production Manager'),(10386,65330,4,'Novel'),(10386,65332,1,'Director of Photography'),(10386,77919,4,'Screenplay'),(10386,554544,4,'Storyboard'),(10386,588701,3,'Producer'),(10386,1205985,9,'Supervising Animator'),(10386,1219041,4,'Storyboard'),(10386,1260745,9,'Supervising Animator'),(10386,1335240,4,'Storyboard'),(10386,1447300,9,'Production Office Assistant'),(10386,1447310,9,'Post Production Supervisor'),(10386,1447347,9,'Technical Supervisor'),(10386,1447380,10,'Animation'),(10386,1447566,10,'Animation'),(10386,1450317,3,'Production Manager'),(10386,1451703,1,'Camera Supervisor'),(10386,1453498,10,'Animation'),(10386,1458533,6,'Music Editor'),(10386,1459473,4,'Storyboard'),(10386,1459476,4,'Storyboard'),(10386,1459477,3,'Production Manager'),(10386,1460423,5,'Assistant Editor'),(10386,1460439,10,'Animation'),(10386,1460480,10,'Animation'),(10386,1461337,9,'Production Office Assistant'),(10386,1463874,10,'Animation'),(10386,1552873,5,'Color Timer'),(10386,1812488,10,'Animation'),(11615,1046,3,'Casting'),(11615,1530,3,'Casting'),(11615,2963,3,'Producer'),(11615,5332,8,'Costume Design'),(11615,5545,2,'Assistant Director'),(11615,6996,3,'Casting Associate'),(11615,9163,5,'Editor'),(11615,9165,1,'Director of Photography'),(11615,9168,2,'Director'),(11615,9168,3,'Producer'),(11615,10125,7,'Art Direction'),(11615,10125,7,'Set Decoration'),(11615,40796,1,'Still Photographer'),(11615,11412,7,'Art Direction'),(11615,12232,3,'Executive Producer'),(11615,12234,3,'Executive Producer'),(11615,18956,3,'Co-Executive Producer'),(11615,20295,3,'Executive Producer'),(11615,32403,7,'Production Design'),(11615,61570,9,'Stunts'),(11615,65106,3,'Line Producer'),(11615,70031,6,'Original Music Composer'),(11615,70032,6,'Original Music Composer'),(11615,74323,8,'Makeup Artist'),(11615,111187,9,'Pilot'),(11615,138605,9,'Special Effects'),(11615,142157,9,'Stunt Coordinator'),(11615,999786,3,'Executive In Charge Of Production'),(11615,1015925,2,'Script Supervisor'),(11615,1094761,9,'Thanks'),(11615,1322017,7,'Set Designer'),(11615,1335045,6,'Music Editor'),(11615,1392629,9,'Digital Effects Supervisor'),(11615,1393576,8,'Set Costumer'),(11615,1402117,9,'Stunt Coordinator'),(11615,1408400,5,'Assistant Editor'),(11615,1429245,10,'Special Effects Supervisor'),(11615,1463140,8,'Key Hair Stylist'),(11615,1474332,4,'Screenplay'),(11615,1482380,3,'Unit Production Manager'),(11615,1521492,9,'Special Effects'),(11615,1533589,9,'Special Effects'),(11615,1551913,10,'Digital Compositors'),(11615,1661558,3,'Location Manager'),(11615,1811624,3,'Production Coordinator'),(11615,1817272,3,'Casting Assistant'),(11615,1817343,3,'Co-Producer'),(11615,1817345,3,'Casting Assistant'),(11615,1817346,3,'Casting Assistant'),(11615,1817347,7,'Location Scout'),(11615,1817348,7,'Location Scout'),(11615,1817351,9,'Pilot'),(13498,18356,2,'Director'),(13498,89026,4,'Writer'),(13498,1054633,4,'Writer'),(11968,2214,6,'Music'),(11968,7230,5,'Editor'),(11968,5584,5,'Editor'),(11968,57082,2,'Director'),(11968,55078,3,'Producer'),(11968,57126,1,'Director of Photography'),(11968,57126,1,'Camera Operator'),(11968,66824,4,'Screenplay'),(11968,71127,1,'Director of Photography'),(10047,59,4,'Screenplay'),(10047,59,3,'Producer'),(10047,59,2,'Director'),(10047,60,3,'Producer'),(10047,996,6,'Music'),(10047,997,1,'Director of Photography'),(10047,998,5,'Editor'),(10047,1113,3,'Casting'),(10047,2355,4,'Writer'),(10047,19058,8,'Costume Design'),(10047,62516,3,'Executive Producer'),(10047,62528,3,'Executive Producer'),(10047,592771,3,'Casting'),(10047,1309605,3,'Casting'),(11212,11505,4,'Screenplay'),(11212,11505,3,'Producer'),(11212,14844,5,'Editor'),(11212,20897,6,'Original Music Composer'),(11212,11371,1,'Director of Photography'),(11212,52042,3,'Producer'),(11212,56059,2,'Director'),(11212,65482,3,'Executive Producer'),(10533,2289,6,'Original Music Composer'),(10533,8965,2,'Director'),(10533,8965,3,'Producer'),(10533,14696,3,'Executive Producer'),(10533,17399,5,'Editor'),(10533,21516,1,'Director of Photography'),(10533,27538,4,'Screenplay'),(10533,56967,3,'Producer'),(10533,65544,4,'Novel'),(10533,65545,3,'Executive Producer'),(11863,1729,6,'Original Music Composer'),(11863,10492,4,'Screenplay'),(11863,12288,3,'Producer'),(11863,10765,1,'Director of Photography'),(11863,15175,2,'Director'),(11863,57326,5,'Editor'),(18501,68602,3,'Producer'),(18501,5914,3,'Casting'),(18501,3193,6,'Supervising Sound Editor'),(18501,3953,3,'Producer'),(18501,3954,3,'Producer'),(18501,3955,3,'Producer'),(18501,3958,3,'Executive Producer'),(18501,3958,10,'Visual Effects Supervisor'),(18501,10421,7,'Production Design'),(18501,10833,5,'Editor'),(18501,17767,6,'Music'),(18501,20192,2,'Director'),(18501,20192,3,'Executive Producer'),(18501,20192,4,'Writer'),(18501,20193,2,'Director'),(18501,20193,3,'Executive Producer'),(18501,20193,4,'Writer'),(18501,21828,1,'Director of Photography'),(18501,22242,8,'Costume Supervisor'),(18501,23604,5,'Editor'),(18501,11310,9,'Special Effects Coordinator'),(18501,40513,3,'Executive Producer'),(18501,52016,8,'Costume Design'),(18501,52790,3,'Executive Producer'),(18501,62279,7,'Set Decoration'),(18501,80826,6,'Sound Effects Editor'),(18501,403314,9,'Special Effects Coordinator'),(18501,960673,7,'Supervising Art Director'),(18501,961827,6,'Music'),(18501,1008115,7,'Art Direction'),(18501,1014920,3,'Casting'),(18501,1018092,7,'Art Direction'),(18501,1191540,11,'Gaffer'),(18501,1204245,9,'Visual Effects Editor'),(18501,1267055,6,'Foley'),(18501,1269670,8,'Makeup Artist'),(18501,1269676,8,'Makeup Artist'),(18501,1309884,6,'Sound Re-Recording Mixer'),(18501,1316003,8,'Makeup Department Head'),(18501,1338456,3,'Location Manager'),(18501,1339463,9,'Picture Car Coordinator'),(18501,1350426,10,'Visual Effects Supervisor'),(18501,1352966,5,'Dialogue Editor'),(18501,1355968,6,'Music Editor'),(18501,1357061,6,'Sound Designer'),(18501,1357063,9,'Stunt Coordinator'),(18501,1372206,7,'Leadman'),(18501,1387216,7,'Leadman'),(18501,1393021,6,'Music Editor'),(18501,1397737,9,'Transportation Coordinator'),(18501,1400553,7,'Set Designer'),(18501,1401790,10,'Visual Effects Producer'),(18501,1402001,8,'Set Costumer'),(18501,1402005,8,'Set Costumer'),(18501,1402249,10,'Visual Effects Supervisor'),(18501,1402560,1,'Still Photographer'),(18501,1404285,9,'Visual Effects Editor'),(18501,1404286,9,'Visual Effects Editor'),(18501,1404903,5,'Dialogue Editor'),(18501,1405325,9,'Visual Effects Editor'),(18501,1406116,10,'Visual Effects Producer'),(18501,1409284,2,'Script Supervisor'),(18501,1413097,9,'CG Supervisor'),(18501,1413115,10,'Visual Effects Producer'),(18501,1413453,6,'Sound Designer'),(18501,1414497,9,'Property Master'),(18501,1414537,8,'Hairstylist'),(18501,1414544,9,'Special Effects Coordinator'),(18501,1414548,6,'Foley'),(18501,1414549,6,'Sound Designer'),(18501,1414552,10,'Visual Effects Producer'),(18501,1414553,10,'Visual Effects Producer'),(18501,1414558,5,'Digital Intermediate'),(18501,1414560,9,'Choreographer'),(18501,1415573,10,'Visual Effects Supervisor'),(18501,1419114,9,'Dialect Coach'),(18501,1425342,9,'Unit Publicist'),(18501,1427417,11,'Rigging Gaffer'),(18501,1427572,9,'CG Supervisor'),(18501,1427575,10,'Visual Effects Supervisor'),(18501,1432045,8,'Set Costumer'),(18501,1432918,1,'Camera Operator'),(18501,1448421,8,'Makeup Artist'),(18501,1452611,5,'Editor'),(18501,1452614,8,'Hairstylist'),(18501,1452615,8,'Hairstylist'),(18501,1452617,8,'Makeup Artist'),(18501,1452618,7,'Art Department Coordinator'),(18501,1452619,7,'Construction Coordinator'),(18501,1452627,9,'Visual Effects Editor'),(18501,1452628,10,'Visual Effects Producer'),(18501,1452630,10,'Visual Effects Supervisor'),(18501,1452631,10,'VFX Supervisor'),(18501,1452632,1,'Camera Operator'),(18501,1452633,8,'Set Costumer'),(18501,1452634,5,'First Assistant Editor'),(18501,1452636,9,'Dialect Coach'),(18501,1639187,3,'Executive Producer'),(12634,904,1,'Director of Photography'),(12634,2235,4,'Novel'),(12634,2988,5,'Editor'),(12634,3189,5,'Editor'),(12634,9204,6,'Original Music Composer'),(12634,19656,4,'Screenplay'),(12634,46077,3,'Producer'),(12634,53393,3,'Executive Producer'),(12634,53394,3,'Producer'),(12634,58294,2,'Director'),(12634,58294,3,'Producer'),(12634,73179,3,'Executive Producer'),(10416,1225,6,'Original Music Composer'),(10416,3175,5,'Editor'),(10416,3769,1,'Director of Photography'),(10416,5342,2,'Director'),(10416,5342,3,'Producer'),(10416,9612,4,'Screenplay'),(10416,18268,4,'Screenplay'),(10416,52865,4,'Screenplay'),(10416,52865,3,'Producer'),(15268,10765,2,'Director'),(15268,21276,6,'Original Music Composer'),(15268,78428,4,'Screenplay'),(15268,934720,3,'Executive Producer'),(15268,995035,3,'Executive Producer'),(15268,1179913,9,'Cinematography'),(10796,3687,6,'Sound Designer'),(10796,561,3,'Casting'),(10796,601,7,'Production Design'),(10796,894,6,'Original Music Composer'),(10796,15004,3,'Producer'),(10796,15331,6,'Sound Editor'),(10796,16655,6,'Dialogue Editor'),(10796,19309,7,'Set Decoration'),(10796,21932,3,'Producer'),(10796,21933,6,'Music Supervisor'),(10796,42121,4,'Screenplay'),(10796,42121,3,'Producer'),(10796,57134,4,'Screenplay'),(10796,57134,2,'Director'),(10796,57134,3,'Producer'),(10796,57135,1,'Director of Photography'),(10796,57858,5,'Editor'),(10796,59040,9,'Dialect Coach'),(10796,92359,7,'Set Designer'),(10796,92479,9,'Stunt Coordinator'),(10796,81731,7,'Art Direction'),(10796,548437,6,'ADR Editor'),(10796,966100,7,'Set Designer'),(10796,994550,7,'Title Designer'),(10796,1163129,9,'Dialect Coach'),(10796,1169741,2,'Script Supervisor'),(10796,1186279,1,'Steadicam Operator'),(10796,1204332,11,'Gaffer'),(10796,1246457,7,'Set Designer'),(10796,1322016,8,'Costume Supervisor'),(10796,1348789,7,'Set Designer'),(10796,1368866,6,'Sound Editor'),(10796,1377221,6,'Boom Operator'),(10796,1378240,1,'Still Photographer'),(10796,1392081,6,'Sound Editor'),(10796,1398963,10,'Visual Effects Producer'),(10796,1400374,1,'Camera Operator'),(10796,1401631,6,'ADR Editor'),(10796,1403415,1,'Aerial Director of Photography'),(10796,1403537,10,'Visual Effects Supervisor'),(10796,1404283,10,'Visual Effects Coordinator'),(10796,1404529,10,'Visual Effects Supervisor'),(10796,1406826,6,'Sound Editor'),(10796,1407812,6,'Sound Designer'),(10796,1407813,6,'Sound Editor'),(10796,1407822,1,'Still Photographer'),(10796,1408301,6,'Foley Editor'),(10796,1413106,10,'Visual Effects Producer'),(10796,1415601,8,'Key Hair Stylist'),(10796,1421334,9,'Propmaker'),(10796,1432022,10,'Visual Effects Supervisor'),(10796,1438584,1,'Steadicam Operator'),(10796,1447148,10,'Visual Effects Coordinator'),(10796,1452634,9,'Visual Effects Editor'),(10796,1459789,10,'Visual Effects'),(10796,1530689,7,'Art Department Coordinator'),(10796,1532723,8,'Set Costumer'),(10796,1536312,8,'Costume Design'),(10796,1552368,9,'Visual Effects Editor'),(10796,1552479,6,'Music Editor'),(10796,1552541,9,'Digital Effects Supervisor'),(10796,1594974,7,'Title Designer'),(10796,1597204,6,'Dialogue Editor'),(10796,1646252,3,'Production Coordinator'),(10796,1735735,6,'Foley Editor'),(10796,1754419,3,'Location Manager'),(10796,1771847,7,'Property Master'),(10796,1775961,6,'Orchestrator'),(10796,1779722,1,'Dolly Grip'),(10796,1868273,8,'Makeup Supervisor'),(10796,1868277,2,'First Assistant Director'),(10796,1868279,7,'Construction Foreman'),(10796,1868280,7,'Construction Coordinator'),(10796,1868291,10,'Visual Effects Producer'),(10796,1868293,10,'Modeling'),(10796,1868299,10,'Modeling'),(10796,1868309,9,'Martial Arts Choreographer'),(18947,2071,7,'Production Design'),(18947,2236,3,'Producer'),(18947,2238,3,'Producer'),(18947,7018,2,'Director'),(18947,7018,4,'Writer'),(18947,7018,3,'Executive Producer'),(18947,9150,3,'Executive Producer'),(18947,9151,3,'Executive Producer'),(18947,11295,3,'Casting'),(18947,17802,3,'Producer'),(18947,56021,1,'Director of Photography'),(18947,57087,5,'Editor'),(18947,976763,3,'Producer'),(18947,1017450,3,'Producer'),(11232,4023,3,'Casting'),(11232,366,4,'Screenplay'),(11232,366,2,'Director'),(11232,409,3,'Producer'),(11232,3192,3,'Casting'),(11232,5670,7,'Production Design'),(11232,4907,7,'Set Decoration'),(11232,10575,7,'Art Direction'),(11232,5328,3,'Casting'),(11232,6051,5,'Editor'),(11232,7262,1,'Director of Photography'),(11232,18321,8,'Costume Design'),(11232,24190,6,'Original Music Composer'),(11232,47283,4,'Screenplay'),(11232,47283,4,'Story'),(11232,1336514,7,'Art Department Coordinator'),(11232,1400540,2,'Script Supervisor'),(11232,1412119,8,'Costume Supervisor'),(11232,1415080,8,'Makeup Department Head'),(11232,1523419,8,'Hairstylist'),(11232,1524763,8,'Makeup Artist'),(11232,1524768,8,'Costume Supervisor'),(11232,1524770,8,'Set Costumer'),(11091,947,6,'Original Music Composer'),(11091,4008,1,'Director of Photography'),(11091,14911,2,'Director'),(11091,23758,4,'Screenplay'),(11091,49286,5,'Editor'),(11091,67994,3,'Producer'),(11467,432,1,'Director of Photography'),(11467,1213,6,'Original Music Composer'),(11467,7904,4,'Screenplay'),(11467,7904,3,'Producer'),(11467,16158,3,'Producer'),(11467,18268,4,'Screenplay'),(11467,18322,3,'Producer'),(11467,18311,2,'Director'),(11467,34484,5,'Editor'),(20533,7229,6,'Original Music Composer'),(20533,5575,3,'Producer'),(20533,6189,5,'Editor'),(20533,10715,3,'Executive Producer'),(20533,8029,2,'Director'),(20533,13584,5,'Editor'),(20533,24310,1,'Director of Photography'),(20533,20192,4,'Screenplay'),(20533,20192,4,'Story'),(20533,20193,4,'Screenplay'),(20533,20193,4,'Story'),(20533,21223,5,'Editor'),(20533,14407,3,'Executive Producer'),(20533,112855,7,'Art Department Assistant'),(20533,23604,5,'Editor'),(20533,29525,3,'Producer'),(20533,58855,3,'Casting'),(20533,52088,7,'Production Design'),(20533,54211,3,'Executive Producer'),(20533,54212,3,'Executive Producer'),(20533,61091,3,'Executive Producer'),(20533,65822,3,'Producer'),(20533,86280,4,'Characters'),(20533,86281,4,'Characters'),(20533,563881,6,'Original Music Composer'),(20533,1098477,7,'Art Department Manager'),(20533,1123419,4,'Story'),(20533,1123420,3,'Producer'),(20533,1123421,3,'Producer'),(20533,1123422,3,'Producer'),(20533,1123424,3,'Executive Producer'),(20533,1368867,9,'Special Effects Coordinator'),(10684,151,1,'Director of Photography'),(10684,1729,6,'Original Music Composer'),(10684,2043,3,'Producer'),(10684,2484,5,'Editor'),(10684,9181,2,'Director'),(10684,8308,7,'Production Design'),(10684,21101,4,'Screenplay'),(10684,59973,3,'Producer'),(10684,62643,8,'Costume Design'),(10684,958460,7,'Set Decoration'),(10684,1198658,7,'Art Direction'),(11130,1201,2,'Director'),(11130,1214,1,'Director of Photography'),(11130,4500,6,'Original Music Composer'),(11130,8851,3,'Producer'),(11130,12970,5,'Editor'),(11130,38415,3,'Producer'),(11130,38416,3,'Executive Producer'),(11130,59973,3,'Producer'),(11130,25539,4,'Screenplay'),(10731,117,6,'Original Music Composer'),(10731,376,3,'Producer'),(10731,1202,3,'Producer'),(10731,1262,3,'Casting'),(10731,3960,1,'Director of Photography'),(10731,5709,7,'Production Design'),(10731,5572,2,'Director'),(10731,5575,4,'Screenplay'),(10731,11375,7,'Set Decoration'),(10731,11060,4,'Novel'),(10731,10837,7,'Art Direction'),(10731,53810,4,'Screenplay'),(10731,57634,3,'Co-Producer'),(10731,43468,3,'Associate Producer'),(10731,1144658,7,'Art Direction'),(10731,1371063,8,'Costume Design'),(10478,547,3,'Casting'),(10478,4037,4,'Screenplay'),(10478,4037,2,'Director'),(10478,4054,3,'Producer'),(10478,9967,7,'Production Design'),(10478,11166,6,'Original Music Composer'),(10478,12922,3,'Producer'),(10478,13586,7,'Art Direction'),(10478,15016,7,'Set Decoration'),(10478,14753,3,'Unit Production Manager'),(10478,25141,5,'Editor'),(10478,29019,7,'Art Direction'),(10478,31027,1,'Director of Photography'),(10478,36582,8,'Costume Design'),(10478,56594,5,'Editor'),(10478,59812,9,'Second Unit Cinematographer'),(10478,65396,4,'Screenplay'),(10478,74980,10,'Special Effects Supervisor'),(10478,91854,8,'Makeup Department Head'),(10478,1314881,8,'Makeup Artist'),(10478,1357589,3,'Casting'),(10478,1400738,2,'Script Supervisor'),(10478,1404230,1,'Still Photographer'),(10478,1416054,8,'Hair Department Head'),(10478,1438571,6,'Supervising Sound Editor'),(10478,1440306,8,'Costume Supervisor'),(10478,1534935,8,'Hairstylist'),(10478,1536371,6,'Music Supervisor'),(10478,1536372,6,'Music Supervisor'),(10478,1536426,8,'Makeup Artist'),(10478,1536428,8,'Key Hair Stylist'),(10478,1551320,9,'Sound Recordist'),(27983,1263,3,'Casting'),(27983,12119,1,'Director of Photography'),(27983,16745,2,'Director'),(27983,24315,6,'Music'),(27983,30259,5,'Editor'),(27983,1478308,4,'Story'),(27983,1478309,4,'Story'),(27983,1495606,3,'Producer'),(15045,2043,3,'Producer'),(15045,9250,3,'Co-Producer'),(15045,12971,3,'Casting'),(15045,33711,7,'Set Decoration'),(15045,21068,6,'Original Music Composer'),(15045,35165,1,'Director of Photography'),(15045,51962,4,'Writer'),(15045,51962,3,'Executive Producer'),(15045,54644,2,'Director'),(15045,56972,5,'Editor'),(15045,59838,7,'Art Direction'),(15045,62643,8,'Costume Design'),(15045,932238,7,'Production Design'),(15045,1220741,4,'Writer'),(15045,1341815,2,'Script Supervisor'),(15045,1424894,8,'Hairstylist'),(15045,1447376,10,'Animation'),(15045,1447476,2,'Layout'),(15045,1453185,1,'Still Photographer'),(15045,1457930,10,'Animation'),(15045,1614529,3,'Associate Producer'),(15045,1634776,3,'Casting'),(15045,1807706,6,'Original Music Composer'),(15045,1807707,3,'Executive Producer'),(15045,1807710,3,'Supervising Producer'),(17379,12100,4,'Screenplay'),(17379,12101,4,'Screenplay'),(17379,39819,2,'Director'),(17379,52042,3,'Executive Producer'),(17379,1455486,2,'Assistant Director'),(11359,489,3,'Producer'),(11359,664,3,'Producer'),(11359,6347,3,'Casting'),(11359,7908,2,'Director'),(11359,8523,1,'Director of Photography'),(11359,9964,4,'Screenplay'),(11359,14712,6,'Original Music Composer'),(11359,10935,5,'Editor'),(11359,1176290,3,'Casting'),(11359,1246837,3,'Producer'),(20856,6114,3,'Executive Producer'),(20856,7316,4,'Screenplay'),(20856,66515,4,'Screenplay'),(20856,68016,6,'Orchestrator'),(20856,79656,2,'Director'),(20856,1447518,9,'Stunts'),(20856,1453019,9,'Technical Supervisor'),(20856,1453020,10,'Animation'),(20856,1453021,10,'Animation'),(20856,1453022,10,'Animation'),(20856,1455463,11,'Lighting Artist'),(20856,1460588,9,'Special Effects'),(20856,1460621,10,'Visual Effects'),(20856,1460634,9,'Visual Effects Art Director'),(21355,156,5,'Editor'),(21355,879,2,'Director'),(21355,51736,4,'Writer'),(21355,57862,4,'Screenplay'),(10858,491,6,'Original Music Composer'),(10858,149,1,'Director of Photography'),(10858,1152,2,'Director'),(10858,1152,4,'Screenplay'),(10858,1152,3,'Producer'),(10858,3189,5,'Editor'),(10858,5379,3,'Producer'),(10858,17786,4,'Screenplay'),(11439,3708,9,'Stunt Coordinator'),(11439,2949,6,'Original Music Composer'),(11439,3556,2,'Director'),(11439,3556,4,'Screenplay'),(11439,3556,3,'Producer'),(11439,3559,3,'Producer'),(11439,3560,3,'Producer'),(11439,3561,1,'Director of Photography'),(11439,3564,5,'Editor'),(11439,5642,7,'Production Design'),(11439,11295,3,'Casting'),(11439,40752,7,'Art Direction'),(11439,40754,7,'Art Department Coordinator'),(11439,40755,7,'Set Decoration'),(11439,21846,7,'Set Decoration'),(11439,59683,8,'Costume Design'),(11439,65434,4,'Novel'),(11439,65434,4,'Screenplay'),(11439,142165,6,'Music Editor'),(11439,228779,3,'Production Supervisor'),(11439,967137,7,'Supervising Art Director'),(11439,986677,7,'Art Direction'),(11439,1288056,2,'Script Supervisor'),(11439,1324095,8,'Costume Supervisor'),(11439,1372087,5,'Dialogue Editor'),(11439,1726783,6,'Sound Editor'),(11439,1821794,10,'Special Effects Supervisor'),(11439,1821814,2,'Script Supervisor'),(12412,4867,1,'Director of Photography'),(12412,5281,2,'Director'),(12412,5281,3,'Producer'),(12412,5287,6,'Music'),(12412,5290,3,'Casting'),(12412,35115,3,'Producer'),(12412,37298,8,'Costume Design'),(12412,72135,4,'Novel'),(12412,72135,4,'Writer'),(12412,119178,3,'Casting'),(12412,1038526,3,'Producer'),(12412,1257818,3,'Casting'),(13184,2963,3,'Producer'),(13184,6041,6,'Original Music Composer'),(13184,6874,3,'Executive Producer'),(13184,33933,7,'Art Direction'),(13184,18956,3,'Producer'),(13184,21905,2,'Director'),(13184,21905,4,'Author'),(13184,31033,2,'Director'),(13184,31033,4,'Author'),(13184,60844,7,'Art Direction'),(13184,61122,3,'Producer'),(13184,61119,3,'Executive Producer'),(13184,61123,3,'Producer'),(13184,64378,5,'Editor'),(13184,64379,1,'Director of Photography'),(13184,76480,4,'Screenplay'),(13184,76481,3,'Line Producer'),(13184,76482,3,'Executive Producer'),(13184,76483,3,'Producer'),(13184,1207487,7,'Production Design'),(13184,1325645,5,'Editor'),(13184,1387782,3,'Casting'),(27573,1528,6,'Music'),(27573,3429,7,'Production Design'),(27573,11874,3,'Producer'),(27573,25142,5,'Editor'),(27573,17167,2,'Director'),(27573,20268,1,'Director of Photography'),(27573,39781,4,'Writer'),(27573,46943,3,'Casting'),(27573,54419,3,'Executive Producer'),(27573,68691,3,'Executive Producer'),(27573,69739,3,'Executive Producer'),(27573,79250,3,'Executive Producer'),(27573,223989,3,'Executive Producer'),(10895,2106,3,'Producer'),(10895,2107,6,'Original Music Composer'),(10895,5449,4,'Adaptation'),(10895,5451,4,'Adaptation'),(10895,5456,4,'Adaptation'),(10895,5467,6,'Original Music Composer'),(10895,5692,10,'Animation Director'),(10895,5693,10,'Animation'),(10895,11426,2,'Director'),(10895,11427,9,'Sequence Supervisor'),(10895,11429,2,'Director'),(10895,11432,9,'Sequence Supervisor'),(10895,11434,9,'Sequence Supervisor'),(10895,22066,10,'Animation'),(10895,22066,10,'Animation Director'),(10895,57314,10,'Animation'),(10895,57314,10,'Animation Director'),(10895,57334,7,'Art Direction'),(10895,63646,10,'Animation'),(10895,63646,10,'Animation Director'),(10895,64866,4,'Adaptation'),(10895,67372,4,'Novel'),(10895,67373,4,'Adaptation'),(10895,67374,4,'Adaptation'),(10895,67375,4,'Adaptation'),(10895,69003,10,'Animation'),(10895,69133,4,'Characters'),(10895,71212,7,'Art Direction'),(10895,71215,4,'Characters'),(10895,74565,9,'Sequence Supervisor'),(10895,77614,4,'Characters'),(10895,106834,10,'Animation'),(10895,109453,10,'Animation'),(10895,109453,10,'Animation Director'),(10895,115754,10,'Animation'),(10895,138170,10,'Animation'),(10895,138170,10,'Animation Director'),(10895,138172,10,'Animation'),(10895,138174,10,'Animation'),(10895,143786,10,'Animation'),(10895,148149,10,'Animation'),(10895,148162,10,'Animation'),(10895,148245,7,'Background Designer'),(10895,148263,10,'Animation'),(10895,148774,10,'Animation'),(10895,149217,7,'Background Designer'),(10895,149973,10,'Animation Director'),(10895,150115,7,'Art Direction'),(10895,150116,7,'Art Direction'),(10895,150117,7,'Background Designer'),(10895,150758,10,'Animation'),(10895,222238,10,'Animation'),(10895,222262,10,'Animation'),(10895,222310,10,'Animation'),(10895,222465,10,'Animation'),(10895,222468,7,'Art Direction'),(10895,222469,10,'Animation'),(10895,222578,10,'Animation'),(10895,222578,10,'Animation Director'),(10895,224698,10,'Animation'),(10895,225715,4,'Characters'),(10895,225716,7,'Art Direction'),(10895,226599,9,'Sequence Supervisor'),(10895,227127,10,'Animation'),(10895,236477,7,'Art Direction'),(10895,930439,10,'Animation'),(10895,1015864,10,'Animation'),(10895,1035385,7,'Art Direction'),(10895,1062367,10,'Animation'),(10895,1062380,7,'Background Designer'),(10895,1095778,4,'Characters'),(10895,1475322,7,'Art Direction'),(10895,1482031,7,'Art Direction'),(10895,1515172,4,'Characters'),(10895,1552493,10,'Animation'),(10935,3274,5,'Editor'),(10935,852,5,'Editor'),(10935,1047,5,'Editor'),(10935,3099,5,'Editor'),(10935,3099,3,'Executive In Charge Of Post Production'),(10935,16329,3,'Executive Producer'),(10935,7435,6,'Original Music Composer'),(10935,10589,3,'Executive Producer'),(10935,12114,4,'Screenplay'),(10935,12114,2,'Director'),(10935,12235,1,'Director of Photography'),(10935,67561,3,'Producer'),(10468,4183,3,'Producer'),(10468,6117,1,'Director of Photography'),(10468,6340,4,'Screenplay'),(10468,21068,6,'Music'),(10468,11372,5,'Editor'),(10468,31024,2,'Director'),(10468,36427,3,'Executive Producer'),(10027,59,3,'Producer'),(10027,59,4,'Author'),(10027,8389,3,'Executive Producer'),(10027,1336,3,'Producer'),(10027,1966,7,'Production Design'),(10027,2186,3,'Casting'),(10027,16366,8,'Hair Department Head'),(10027,16369,10,'Special Effects Supervisor'),(10027,16370,9,'Special Effects Coordinator'),(10027,16627,8,'Costume Supervisor'),(10027,20722,8,'Costume Design'),(10027,18865,2,'Director'),(10027,20010,3,'Producer'),(10027,21932,3,'Producer'),(10027,35453,1,'Director of Photography'),(10027,35454,5,'Editor'),(10027,57279,3,'Producer'),(10027,62102,6,'Original Music Composer'),(10027,62103,7,'Art Direction'),(10027,1180407,2,'Script Supervisor'),(10027,1398505,3,'Casting'),(10027,1417400,8,'Hairstylist'),(10027,1426762,8,'Makeup Artist'),(10027,1449978,8,'Makeup Department Head'),(10027,1529255,7,'Set Decoration'),(10027,1529256,8,'Costume Supervisor'),(10027,1529257,9,'Special Effects Coordinator'),(11812,409,3,'Producer'),(11812,434,3,'Casting'),(11812,436,3,'Casting Associate'),(11812,1999,6,'Music'),(11812,8762,6,'Sound Editor'),(11812,9333,8,'Makeup Artist'),(11812,9360,1,'Still Photographer'),(11812,10548,5,'Editor'),(11812,11873,2,'Director'),(11812,11877,7,'Production Design'),(11812,14139,1,'Director of Photography'),(11812,21004,8,'Costume Design'),(11812,22303,5,'Editor'),(11812,28401,3,'Executive Producer'),(11812,28401,3,'Unit Production Manager'),(11812,28402,3,'Associate Producer'),(11812,54160,7,'Art Direction'),(11812,65824,7,'Set Designer'),(11812,70555,3,'Executive Producer'),(11812,70557,4,'Writer'),(11812,81687,9,'Stunt Coordinator'),(11812,113854,3,'Production Coordinator'),(11812,420741,9,'Choreographer'),(11812,957368,7,'Set Decoration'),(11812,958691,7,'Set Designer'),(11812,970033,5,'First Assistant Editor'),(11812,1017789,1,'Camera Operator'),(11812,1316003,8,'Makeup Department Head'),(11812,1319747,8,'Costume Supervisor'),(11812,1340007,6,'Music Editor'),(11812,1341138,6,'Sound Re-Recording Mixer'),(11812,1341405,6,'Sound Editor'),(11812,1367346,1,'Camera Operator'),(11812,1378222,7,'Construction Coordinator'),(11812,1384393,6,'Music Editor'),(11812,1390524,6,'Sound Editor'),(11812,1391572,6,'Sound Re-Recording Mixer'),(11812,1400385,3,'Location Manager'),(11812,1404751,9,'Transportation Captain'),(11812,1411281,9,'Unit Publicist'),(11812,1421796,9,'Property Master'),(11812,1422412,9,'Special Effects Coordinator'),(11812,1471726,6,'Music Supervisor'),(11812,1531867,2,'Script Supervisor'),(11812,1531870,8,'Hair Department Head'),(11812,1531871,8,'Key Hair Stylist'),(11812,1531872,8,'Hairstylist'),(11812,1531874,8,'Makeup Artist'),(11812,1544669,6,'Supervising Sound Editor'),(11812,1545460,6,'Production Sound Mixer'),(11812,1562236,9,'Craft Service'),(11812,1562248,5,'Color Timer'),(11812,1562721,6,'Boom Operator'),(11812,1565131,3,'Production Accountant'),(11812,1726439,11,'Rigging Gaffer'),(11812,1726440,3,'Production Coordinator'),(11812,1726441,9,'Transportation Co-Captain'),(27582,2532,3,'Casting'),(27582,4140,6,'Original Music Composer'),(27582,12786,2,'Director'),(27582,16485,3,'Producer'),(27582,22814,4,'Screenplay'),(27582,46084,8,'Costume Design'),(27582,60503,3,'Casting'),(27582,60872,7,'Set Decoration'),(27582,72979,7,'Production Design'),(27582,99411,4,'Screenplay'),(27582,207419,3,'Producer'),(27582,445256,1,'Director of Photography'),(27582,550112,3,'Producer'),(27582,1186279,1,'Steadicam Operator'),(27582,1355968,6,'Music Editor'),(27582,1393396,1,'Still Photographer'),(27582,1396827,6,'Music Editor'),(27582,1402724,2,'Script Supervisor'),(27582,1403426,8,'Key Hair Stylist'),(27582,1456696,9,'Compositors'),(27582,1528013,6,'Music Supervisor'),(11066,339,3,'Producer'),(11066,8582,5,'Editor'),(11066,56943,1,'Director of Photography'),(11066,57328,4,'Screenplay'),(11066,63976,6,'Original Music Composer'),(11066,68215,2,'Director'),(11560,376,3,'Producer'),(11560,1262,3,'Casting'),(11560,5912,6,'Music'),(11560,9559,9,'Stunts'),(11560,10815,1,'Director of Photography'),(11560,21015,3,'Producer'),(11560,21589,7,'Production Design'),(11560,21712,2,'Director'),(11560,21714,3,'Producer'),(11560,21717,5,'Editor'),(11560,69882,4,'Screenplay'),(11560,122294,9,'Stunts'),(11560,146352,9,'Stunt Coordinator'),(11560,1417685,9,'Stunts'),(25189,10400,2,'Director'),(25189,11195,4,'Writer'),(18480,6730,4,'Screenplay'),(18480,6730,3,'Producer'),(18480,6730,4,'Story'),(18480,6731,4,'Screenplay'),(18480,6731,3,'Executive Producer'),(18480,6731,4,'Story'),(18480,6732,4,'Story'),(18480,6732,3,'Associate Producer'),(18480,6733,4,'Screenplay'),(18480,6733,3,'Producer'),(18480,6733,4,'Story'),(18480,6737,3,'Producer'),(18480,6738,3,'Producer'),(18480,6739,6,'Original Music Composer'),(18480,6741,1,'Director of Photography'),(18480,6743,8,'Costume Design'),(18480,6743,3,'Associate Producer'),(18480,6744,7,'Production Design'),(18480,6767,2,'Director'),(18480,10395,3,'Co-Producer'),(18480,21007,3,'Associate Producer'),(18480,41080,3,'Casting'),(18480,57405,4,'Screenplay'),(18480,57405,3,'Associate Producer'),(18480,66569,7,'Production Design'),(18480,224530,5,'Editor'),(18480,935243,5,'Editor'),(18480,1006747,5,'Editor'),(18480,1099440,1,'Director of Photography'),(18480,1237087,3,'Associate Producer'),(18480,1303222,7,'Production Design'),(18480,1468801,5,'Editor'),(18480,1468878,3,'Co-Producer'),(27936,2419,2,'Director'),(27936,2419,3,'Producer'),(27936,2419,4,'Writer'),(27936,2420,4,'Writer'),(27936,2424,3,'Casting'),(27936,2425,5,'Editor'),(27936,13839,7,'Production Design'),(27936,16930,9,'Cinematography'),(27936,73940,3,'Producer'),(27936,73941,3,'Producer'),(27936,960658,3,'Casting'),(27936,968400,6,'Original Music Composer'),(27936,1125522,3,'Executive Producer'),(10610,18897,3,'Executive Producer'),(10610,26731,1,'Director of Photography'),(10610,56719,3,'Executive Producer'),(10610,56870,5,'Editor'),(10610,58208,5,'Editor'),(10610,64425,3,'Executive Producer'),(10610,64901,4,'Screenplay'),(10610,64901,2,'Director'),(10610,66122,4,'Characters'),(10610,66122,4,'Screenplay'),(10610,66122,3,'Producer'),(10610,66125,4,'Screenplay'),(10610,120882,4,'Screenplay'),(10610,147630,4,'Screenplay'),(10610,1465627,6,'Original Music Composer'),(18240,1217,5,'Editor'),(18240,5508,7,'Production Design'),(18240,29214,2,'Director'),(18240,15345,3,'Executive Producer'),(18240,15346,3,'Executive Producer'),(18240,40384,6,'Original Music Composer'),(18240,16425,1,'Director of Photography'),(18240,18277,3,'Executive Producer'),(18240,29216,9,'Associate Choreographer'),(18240,31710,3,'Producer'),(18240,38021,7,'Set Decoration'),(18240,50462,8,'Costume Design'),(18240,54514,6,'Music Supervisor'),(18240,57634,3,'Executive Producer'),(18240,57634,3,'Unit Production Manager'),(18240,59838,7,'Art Direction'),(18240,62758,3,'Producer'),(18240,84435,4,'Writer'),(18240,1238788,2,'Assistant Director'),(18240,1316529,8,'Makeup Department Head'),(18240,1368884,6,'Music Editor'),(18240,1484538,2,'Script Supervisor'),(18240,1530090,2,'Assistant Director'),(18240,1530091,9,'Stunt Coordinator'),(18240,1530092,8,'Costume Supervisor'),(18240,1530094,5,'Assistant Editor'),(10398,1732,5,'Editor'),(10398,5696,2,'Director'),(10398,5708,1,'Director of Photography'),(10398,12842,3,'Producer'),(10398,17212,6,'Music'),(10398,24049,4,'Screenplay'),(10398,59331,4,'Screenplay'),(12279,2294,4,'Screenplay'),(12279,2294,2,'Director'),(12279,2294,1,'Director of Photography'),(12279,2294,5,'Editor'),(12279,2294,3,'Producer'),(12279,2294,6,'Original Music Composer'),(12279,1307,3,'Executive Producer'),(12279,59839,3,'Executive Producer'),(12279,5911,3,'Producer'),(12279,72030,6,'Original Music Composer'),(11007,7184,5,'Editor'),(11007,12892,4,'Screenplay'),(11007,12893,4,'Screenplay'),(11007,17825,2,'Director'),(11007,17828,3,'Producer'),(11007,23486,6,'Original Music Composer'),(11007,29015,3,'Producer'),(11007,52696,4,'Screenplay'),(11007,56791,1,'Director of Photography'),(11007,58266,3,'Producer'),(11007,67774,4,'Novel'),(11007,67775,4,'Novel'),(11007,67776,4,'Screenplay'),(11287,947,6,'Original Music Composer'),(11287,3658,3,'Producer'),(11287,4008,1,'Director of Photography'),(11287,11454,5,'Editor'),(11287,14911,2,'Director'),(11287,27518,4,'Screenplay'),(11287,27519,4,'Screenplay'),(11287,68755,5,'Editor'),(10184,29009,2,'Director'),(10184,69124,4,'Writer'),(10184,69125,4,'Writer'),(10184,109365,4,'Writer'),(10184,217371,6,'Music'),(24803,6410,3,'Casting'),(24803,2556,3,'Producer'),(24803,2949,6,'Original Music Composer'),(24803,2997,3,'Executive Producer'),(24803,3175,5,'Editor'),(24803,10571,3,'Line Producer'),(24803,5582,1,'Director of Photography'),(24803,19156,3,'Casting'),(24803,9248,2,'Director'),(24803,9248,4,'Screenplay'),(24803,9248,3,'Producer'),(24803,10685,3,'Producer'),(24803,11898,3,'Executive Producer'),(24803,18524,3,'Producer'),(24803,60193,7,'Production Design'),(24803,149275,4,'Novel'),(24803,223989,3,'Executive Producer'),(24803,958273,3,'Co-Producer'),(24803,1084625,4,'Novel'),(24803,1123816,4,'Novel'),(24803,1123817,3,'Producer'),(16538,10572,6,'Music'),(16538,5387,1,'Director of Photography'),(16538,8763,6,'Sound Editor'),(16538,8858,3,'Executive Producer'),(16538,13177,6,'Sound Re-Recording Mixer'),(16538,17871,2,'Director'),(16538,17871,4,'Screenplay'),(16538,17871,3,'Producer'),(16538,18689,3,'Unit Production Manager'),(16538,21592,8,'Costume Design'),(16538,28636,7,'Production Design'),(16538,31026,4,'Screenplay'),(16538,31026,4,'Story'),(16538,35665,3,'Executive Producer'),(16538,41080,3,'Casting'),(16538,46942,5,'Editor'),(16538,54251,3,'Executive Producer'),(16538,58470,3,'Producer'),(16538,63935,9,'Stunt Coordinator'),(16538,66567,3,'Executive Producer'),(16538,83072,7,'Set Dresser'),(16538,91896,9,'Special Effects Coordinator'),(16538,111456,5,'Additional Editing'),(16538,928346,8,'Assistant Costume Designer'),(16538,949132,3,'Executive Producer'),(16538,960074,6,'Sound Editor'),(16538,988882,7,'Art Direction'),(16538,1015922,2,'Script Supervisor'),(16538,1049320,2,'Second Assistant Director'),(16538,1059580,3,'Production Supervisor'),(16538,1087512,6,'Music Editor'),(16538,1155667,2,'First Assistant Director'),(16538,1190775,11,'Electrician'),(16538,1226357,7,'Set Decoration'),(16538,1302176,5,'First Assistant Editor'),(16538,1321334,8,'Key Costumer'),(16538,1324794,8,'Key Costumer'),(16538,1345615,5,'Color Timer'),(16538,1357043,7,'Assistant Art Director'),(16538,1380477,6,'Sound Editor'),(16538,1387195,6,'Sound Re-Recording Mixer'),(16538,1394117,7,'Art Department Coordinator'),(16538,1403438,6,'Supervising Sound Editor'),(16538,1403440,6,'Sound Editor'),(16538,1413122,11,'Chief Lighting Technician'),(16538,1415632,1,'Camera Operator'),(16538,1418403,11,'Rigging Gaffer'),(16538,1419105,1,'Still Photographer'),(16538,1425828,1,'Camera Operator'),(16538,1425828,1,'Steadicam Operator'),(16538,1439016,7,'Construction Coordinator'),(16538,1440293,8,'Key Hair Stylist'),(16538,1440312,9,'Unit Publicist'),(16538,1444953,8,'Key Makeup Artist'),(16538,1455028,3,'Production Coordinator'),(16538,1460672,9,'Post Production Supervisor'),(16538,1470862,6,'Assistant Sound Editor'),(16538,1473758,3,'Co-Producer'),(16538,1522046,7,'Property Master'),(16538,1534467,8,'Makeup Artist'),(16538,1536633,6,'Sound Editor'),(16538,1538447,9,'Transportation Coordinator'),(16538,1539172,11,'Electrician'),(16538,1546456,6,'Music Supervisor'),(16538,1547948,6,'Boom Operator'),(16538,1550602,8,'Costume Supervisor'),(16538,1565156,6,'Assistant Sound Editor'),(16538,1717724,3,'Casting Assistant'),(16538,1733142,5,'Negative Cutter'),(16538,1743723,9,'Transportation Captain'),(16538,1764075,6,'Production Sound Mixer'),(16538,1764076,11,'Electrician'),(16538,1764080,10,'Special Effects Supervisor'),(16538,1764085,8,'Hairstylist'),(16538,1764089,7,'Set Dresser'),(16538,1764090,7,'Set Dresser'),(16538,1764091,7,'Set Dresser'),(16538,1764092,7,'Set Dresser'),(16538,1764093,7,'Set Dresser'),(16538,1764094,5,'First Assistant Editor'),(16538,1764095,5,'Assistant Editor'),(16538,1764096,6,'Assistant Sound Editor'),(11565,376,3,'Executive Producer'),(11565,1217,5,'Editor'),(11565,4952,3,'Casting'),(11565,7413,1,'Director of Photography'),(11565,9204,6,'Original Music Composer'),(11565,17144,3,'Producer'),(11565,78029,3,'Executive Producer'),(11565,58144,4,'Screenplay'),(11565,58145,3,'Executive Producer'),(11565,61175,2,'Director'),(11565,17313,3,'Producer'),(16996,434,3,'Casting'),(16996,436,3,'Casting'),(16996,4064,9,'Stunt Coordinator'),(16996,9409,6,'Sound Re-Recording Mixer'),(16996,9427,6,'Sound Effects Editor'),(16996,17146,1,'Director of Photography'),(16996,20739,3,'Producer'),(16996,20742,3,'Producer'),(16996,20745,8,'Costume Design'),(16996,24190,6,'Original Music Composer'),(16996,29208,3,'Executive In Charge Of Production'),(16996,36619,5,'Editor'),(16996,54514,6,'Music Supervisor'),(16996,54735,3,'Unit Production Manager'),(16996,58552,2,'Director'),(16996,61089,3,'Production Supervisor'),(16996,66211,4,'Screenplay'),(16996,92302,7,'Art Direction'),(16996,112520,7,'Production Design'),(16996,147361,9,'Property Master'),(16996,158916,6,'Sound Re-Recording Mixer'),(16996,227360,8,'Makeup Department Head'),(16996,548437,5,'Dialogue Editor'),(16996,1341397,9,'Post Production Supervisor'),(16996,1341926,7,'Set Decoration'),(16996,1367508,2,'Script Supervisor'),(16996,1367667,6,'Supervising Sound Editor'),(16996,1367676,6,'Music Editor'),(16996,1378721,8,'Set Costumer'),(16996,1392141,8,'Costume Supervisor'),(16996,1394724,1,'Still Photographer'),(16996,1400812,6,'Supervising Sound Editor'),(16996,1404217,6,'Sound Effects Editor'),(16996,1404366,5,'Dialogue Editor'),(16996,1405209,10,'Visual Effects Supervisor'),(16996,1405232,5,'Dialogue Editor'),(16996,1406389,6,'Sound Effects Editor'),(16996,1411270,1,'Camera Operator'),(16996,1444909,8,'Hair Department Head'),(16996,1527912,3,'Casting Associate'),(16996,1531914,6,'Music Editor'),(16996,1532604,3,'Casting Associate'),(16996,1532691,7,'Construction Coordinator'),(16996,1532726,7,'Art Department Coordinator'),(16996,1532730,10,'Visual Effects Coordinator'),(16996,1532731,10,'Visual Effects Producer'),(16996,1532733,8,'Assistant Costume Designer'),(16996,1532734,8,'Set Costumer'),(16996,1532735,8,'Key Hair Stylist'),(16996,1532736,8,'Makeup Artist'),(16996,1551727,6,'Sound mixer'),(16996,1559542,9,'Stunt Coordinator'),(16996,1559544,1,'Camera Operator'),(16996,1559544,1,'Steadicam Operator'),(19912,4755,2,'Director'),(19912,5583,5,'Editor'),(19912,6041,6,'Music'),(19912,13061,3,'Casting'),(19912,13152,8,'Makeup Department Head'),(19912,20218,4,'Writer'),(19912,21585,3,'Producer'),(19912,21586,3,'Producer'),(19912,22818,1,'Director of Photography'),(19912,59932,3,'Casting'),(19912,57429,4,'Characters'),(19912,59287,9,'Makeup Effects'),(19912,61094,7,'Set Decoration'),(19912,107372,9,'Makeup Effects'),(19912,223990,7,'Production Design'),(19912,578722,8,'Makeup Artist'),(19912,578730,8,'Hairstylist'),(19912,960282,7,'Art Direction'),(19912,1017017,8,'Costume Design'),(19912,1319384,8,'Makeup Artist'),(19912,1393580,8,'Hairstylist'),(19912,1427396,8,'Hairstylist'),(19912,1431554,8,'Makeup Artist'),(19912,1441378,7,'Set Decoration'),(19912,1441380,8,'Hairstylist'),(19912,1441382,8,'Hairstylist'),(19912,1441390,8,'Makeup Artist'),(19912,1441392,8,'Makeup Artist'),(32823,546,3,'Casting'),(32823,5667,1,'Director of Photography'),(32823,19157,7,'Set Decoration'),(32823,20292,7,'Production Design'),(32823,21592,8,'Costume Design'),(32823,41039,3,'Producer'),(32823,41088,4,'Characters'),(32823,41088,3,'Co-Producer'),(32823,46942,5,'Editor'),(32823,52042,3,'Executive Producer'),(32823,53012,6,'Original Music Composer'),(32823,52934,2,'Director'),(32823,52934,4,'Writer'),(32823,56759,3,'Producer'),(32823,59918,3,'Producer'),(32823,111456,5,'Editor'),(32823,111457,7,'Art Direction'),(32823,1123058,3,'Producer'),(32823,1377240,2,'Script Supervisor'),(11551,1705,4,'Screenplay'),(11551,1706,4,'Screenplay'),(11551,2215,3,'Casting'),(11551,490,3,'Producer'),(11551,1760,6,'Original Music Composer'),(11551,2212,3,'Executive Producer'),(11551,4600,2,'Director'),(11551,10632,9,'Stunt Coordinator'),(11551,6877,7,'Production Design'),(11551,8705,7,'Art Direction'),(11551,13588,7,'Set Decoration'),(11551,13622,1,'Director of Photography'),(11551,16154,3,'Producer'),(11551,21070,7,'Supervising Art Director'),(11551,25453,10,'Visual Effects Supervisor'),(11551,26988,9,'Special Effects Coordinator'),(11551,44993,5,'Editor'),(11551,50583,4,'Screenplay'),(11551,58034,4,'Screenplay'),(11551,143915,5,'Dialogue Editor'),(11551,936194,8,'Makeup Department Head'),(11551,1116937,6,'Foley'),(11551,1231241,5,'Editor'),(11551,1319404,8,'Costume Design'),(11551,1335873,9,'Visual Effects Art Director'),(11551,1341856,6,'Foley'),(11551,1354803,9,'Sequence Supervisor'),(11551,1400849,9,'Property Master'),(11551,1401758,7,'Construction Coordinator'),(11551,1412188,8,'Hairstylist'),(11551,1424155,6,'ADR & Dubbing'),(11551,1424172,10,'Animation Supervisor'),(11551,1440822,6,'Sound Designer'),(11551,1453594,10,'Animation'),(11551,1478848,7,'Art Department Coordinator'),(11551,1478854,6,'Foley'),(11551,1478856,9,'Sequence Supervisor'),(11551,1478857,9,'Visual Effects Editor'),(11551,1478858,10,'Visual Effects Producer'),(11551,1478860,10,'Visual Effects Supervisor'),(11551,1551320,9,'Sound Recordist'),(10336,2121,3,'Casting'),(10336,3113,1,'Director of Photography'),(10336,5912,6,'Original Music Composer'),(10336,14492,7,'Art Direction'),(10336,16651,5,'Editor'),(10336,10936,7,'Production Design'),(10336,33284,8,'Costume Design'),(10336,56452,4,'Screenplay'),(10336,60217,3,'Producer'),(10336,64849,4,'Author'),(10336,64849,3,'Executive Producer'),(10336,64855,5,'Editor'),(10336,87130,2,'Director'),(10336,960963,7,'Set Decoration'),(10336,1319401,3,'Casting'),(10336,1410526,10,'Visual Effects'),(11362,1708,4,'Screenplay'),(11362,4507,3,'Producer'),(11362,8846,1,'Director of Photography'),(11362,24840,4,'Novel'),(11362,8300,2,'Director'),(11362,48070,5,'Editor'),(34851,2294,3,'Producer'),(34851,1092,4,'Characters'),(34851,2043,3,'Producer'),(34851,5911,3,'Producer'),(34851,4500,6,'Original Music Composer'),(34851,5914,3,'Casting'),(34851,6043,5,'Editor'),(34851,12945,6,'Music Editor'),(34851,20489,7,'Production Design'),(34851,20490,8,'Costume Design'),(34851,23285,9,'Stunt Coordinator'),(34851,30459,1,'Director of Photography'),(34851,41671,2,'Director'),(34851,60871,7,'Set Designer'),(34851,73916,6,'ADR Editor'),(34851,85960,6,'Sound Designer'),(34851,85961,6,'Sound Designer'),(34851,91896,10,'Special Effects Supervisor'),(34851,113665,3,'Executive Producer'),(34851,113306,4,'Writer'),(34851,113307,4,'Writer'),(34851,144146,8,'Makeup Department Head'),(34851,217470,8,'Hair Department Head'),(34851,1014920,3,'Casting'),(34851,1015923,3,'Casting'),(34851,1015925,2,'Script Supervisor'),(34851,1127209,7,'Set Decoration'),(34851,1382886,7,'Art Department Coordinator'),(34851,1386903,7,'Set Designer'),(34851,1391697,9,'Stunt Coordinator'),(34851,1392603,6,'Foley Editor'),(34851,1401122,7,'Production Design'),(34851,1401133,6,'Dialogue Editor'),(34851,1401135,6,'Sound Effects Editor'),(34851,1401136,6,'Supervising Sound Editor'),(34851,1401148,9,'Visual Effects Editor'),(34851,1401151,1,'Still Photographer'),(34851,1407347,7,'Construction Coordinator'),(34851,1408357,1,'Steadicam Operator'),(34851,1410345,7,'Property Master'),(34851,1412919,1,'Camera Operator'),(34851,1418359,7,'Greensman'),(34851,1420778,10,'Visual Effects Supervisor'),(34851,1433719,6,'Sound Editor'),(34851,1520686,8,'Costume Supervisor'),(34851,1521392,9,'Special Effects Coordinator'),(34851,1530327,6,'Orchestrator'),(34851,1530726,9,'Armorer'),(34851,1538703,3,'Production Coordinator'),(34851,1548873,11,'Lighting Director'),(34851,1564160,11,'Gaffer'),(34851,1594908,7,'Greensman'),(34851,1606649,3,'Location Manager'),(34851,1685556,2,'First Assistant Director'),(34851,1688676,8,'Tailor'),(34851,1702802,6,'Boom Operator'),(34851,1813066,6,'Foley Editor'),(34851,1851797,7,'Leadman'),(34851,1878049,11,'Lighting Director'),(34851,1878054,1,'Dolly Grip'),(34851,1878058,11,'Lighting Technician'),(34851,1878060,1,'Key Grip'),(34851,1878067,7,'Title Designer'),(10761,2593,6,'Original Music Composer'),(10761,3175,5,'Editor'),(10761,3960,1,'Director of Photography'),(10761,4034,8,'Costume Design'),(10761,6235,7,'Art Direction'),(10761,6959,3,'Casting'),(10761,17148,7,'Production Design'),(10761,17150,7,'Set Decoration'),(10761,11874,3,'Producer'),(10761,13614,4,'Author'),(10761,13615,4,'Author'),(10761,16363,3,'Casting'),(10761,19286,3,'Executive Producer'),(10761,19288,3,'Executive Producer'),(10761,19770,3,'Executive Producer'),(10761,23454,7,'Art Direction'),(10761,33455,7,'Art Direction'),(10761,52681,3,'Executive Producer'),(10761,57029,3,'Executive Producer'),(10761,66551,8,'Costume Design'),(10761,66549,4,'Author'),(10761,66548,2,'Director'),(10761,66552,7,'Set Decoration'),(10761,961165,3,'Casting'),(11975,1776,4,'Screenplay'),(11975,1776,2,'Director'),(11975,1202,3,'Producer'),(11975,2483,1,'Director of Photography'),(11975,2988,5,'Editor'),(11975,3219,3,'Producer'),(11975,3392,3,'Producer'),(11975,6328,9,'Stunt Coordinator'),(11975,7182,6,'Original Music Composer'),(11975,8428,8,'Costume Design'),(11975,8643,4,'Screenplay'),(11975,9041,7,'Production Design'),(11975,12568,7,'Set Decoration'),(11975,14716,6,'Music Editor'),(11975,17233,5,'Editor'),(11975,18095,1,'Still Photographer'),(11975,11060,4,'Novel'),(11975,40109,6,'Foley Editor'),(11975,224388,7,'Set Designer'),(11975,1184250,6,'Supervising ADR Editor'),(11975,1192007,3,'Casting'),(11975,1249773,8,'Makeup Artist'),(11975,1342241,7,'Property Master'),(11975,1395276,1,'Camera Operator'),(11975,1400813,5,'Dialogue Editor'),(11975,1403083,7,'Construction Coordinator'),(11975,1408779,5,'Dialogue Editor'),(11975,1416096,8,'Makeup Artist'),(11975,1428226,8,'Key Set Costumer'),(11975,1430231,7,'Art Direction'),(11975,1432032,8,'Hairstylist'),(11975,1435605,8,'Costume Supervisor'),(11975,1455288,7,'Greensman'),(11975,1472169,6,'Supervising Sound Editor'),(11975,1521022,8,'Hairstylist'),(11975,1521770,7,'Art Department Coordinator'),(11975,1549584,6,'ADR Editor'),(11975,1558254,6,'Sound Effects Editor'),(11975,1558255,6,'Sound Effects Editor'),(11975,1562804,6,'ADR Editor'),(11975,1562841,9,'Special Effects Coordinator'),(11975,1857345,7,'Construction Foreman'),(11975,1857388,3,'Production Coordinator'),(11831,491,6,'Original Music Composer'),(11831,488,2,'Director'),(11831,488,3,'Producer'),(11831,490,3,'Producer'),(11831,492,1,'Director of Photography'),(11831,493,5,'Editor'),(11831,496,7,'Production Design'),(11831,547,3,'Casting'),(11831,929,4,'Screenplay'),(11831,10632,9,'Stunt Coordinator'),(11831,8708,6,'Sound Editor'),(11831,9971,6,'Supervising Sound Editor'),(11831,13588,7,'Set Decoration'),(11831,15524,8,'Costume Design'),(11831,15017,8,'Makeup Department Head'),(11831,32395,3,'Producer'),(11831,66142,6,'Music Editor'),(11831,71633,6,'Sound Editor'),(11831,406204,8,'Makeup Department Head'),(11831,1095994,6,'Production Sound Mixer'),(11831,1327842,5,'Assistant Editor'),(11831,1376819,6,'Supervising Sound Editor'),(11831,1386920,1,'Still Photographer'),(11831,1387244,6,'Sound Editor'),(11831,1389540,11,'Gaffer'),(11831,1393558,7,'Leadman'),(11831,1428208,11,'Rigging Gaffer'),(11831,1429540,6,'Sound Editor'),(11831,1440230,6,'Sound Editor'),(11831,1456475,6,'Sound Editor'),(11831,1456479,6,'Sound Editor'),(11831,1479807,2,'Script Supervisor'),(11831,1554589,6,'Sound Editor'),(11831,1554593,6,'Sound Editor'),(11831,1607207,3,'Casting'),(11011,37,6,'Original Music Composer'),(11011,36,1,'Director of Photography'),(11011,1091,3,'Producer'),(11011,2043,3,'Producer'),(11011,6347,3,'Casting'),(11011,10064,7,'Production Design'),(11011,14457,5,'Editor'),(11011,13582,4,'Screenplay'),(11011,13583,4,'Screenplay'),(11011,18281,2,'Director'),(11011,51693,8,'Costume Design'),(11011,1481828,2,'Script Supervisor'),(10641,68602,3,'Producer'),(10641,3953,3,'Producer'),(10641,5488,6,'Original Music Composer'),(10641,6720,2,'Director'),(10641,54781,4,'Screenplay'),(10641,66168,5,'Editor'),(10641,66169,1,'Director of Photography'),(11172,1296,3,'Executive Producer'),(11172,1588,3,'Executive Producer'),(11172,3429,7,'Production Design'),(11172,6493,3,'Casting'),(11172,10440,5,'Editor'),(11172,18323,2,'Director'),(11172,18323,4,'Screenplay'),(11172,20172,8,'Costume Design'),(11172,41377,3,'Producer'),(11172,37406,7,'Art Direction'),(11172,38655,3,'Executive Producer'),(11172,40545,1,'Director of Photography'),(11172,46347,3,'Producer'),(11172,60135,7,'Set Decoration'),(11172,60190,9,'Post Production Supervisor'),(11172,68437,6,'Original Music Composer'),(11172,72964,3,'Unit Production Manager'),(11172,114308,3,'Co-Producer'),(11172,1347758,3,'Location Manager'),(11172,1393455,2,'Script Supervisor'),(11172,1455028,3,'Production Supervisor'),(11172,1472378,3,'Location Manager'),(11172,1477266,3,'Co-Producer'),(11172,1539404,3,'Casting Associate'),(11172,1781229,3,'Casting Assistant'),(11172,1781230,7,'Location Scout'),(10537,149,1,'Director of Photography'),(10537,339,3,'Executive Producer'),(10537,1152,2,'Director'),(10537,1152,4,'Writer'),(10537,2621,3,'Producer'),(10537,3184,3,'Associate Producer'),(10537,3191,3,'Casting'),(10537,3192,3,'Casting'),(10537,3193,6,'Sound Editor'),(10537,3986,3,'Executive Producer'),(10537,3989,8,'Costume Design'),(10537,4064,9,'Stunt Coordinator'),(10537,4186,5,'Editor'),(10537,5585,7,'Production Design'),(10537,6051,5,'Editor'),(10537,7148,7,'Set Decoration'),(10537,7531,3,'Associate Producer'),(10537,8850,3,'Unit Production Manager'),(10537,8890,9,'Special Effects Coordinator'),(10537,11620,7,'Art Direction'),(10537,14382,5,'Dialogue Editor'),(10537,12598,11,'Rigging Gaffer'),(10537,16736,6,'Sound Editor'),(10537,17992,6,'Production Sound Mixer'),(10537,17993,6,'Boom Operator'),(10537,21118,1,'Steadicam Operator'),(10537,53645,5,'First Assistant Editor'),(10537,57244,3,'Producer'),(10537,57377,4,'Writer'),(10537,65553,3,'Producer'),(10537,65554,6,'Original Music Composer'),(10537,65556,6,'Original Music Composer'),(10537,83118,8,'Key Hair Stylist'),(10537,589970,11,'Gaffer'),(10537,1050930,5,'Dialogue Editor'),(10537,1321587,8,'Costume Supervisor'),(10537,1341781,6,'Sound Re-Recording Mixer'),(10537,1352969,6,'Supervising Sound Editor'),(10537,1352969,6,'Sound Re-Recording Mixer'),(10537,1389624,6,'Sound Editor'),(10537,1391594,1,'Steadicam Operator'),(10537,1398863,6,'Music Editor'),(10537,1399141,6,'Supervising Sound Editor'),(10537,1399141,6,'Sound Re-Recording Mixer'),(10537,1404230,1,'Still Photographer'),(10537,1412253,9,'Stunt Coordinator'),(10537,1434225,2,'Script Supervisor'),(10537,1536361,5,'Dialogue Editor'),(10537,1559230,3,'Production Coordinator'),(10537,1559235,7,'Art Department Coordinator'),(10537,1559240,3,'Executive Producer'),(10385,434,3,'Casting'),(10385,436,3,'Casting Associate'),(10385,3092,2,'Director'),(10385,6923,7,'Art Direction'),(10385,9337,8,'Hairstylist'),(10385,9248,4,'Screenplay'),(10385,9248,3,'Producer'),(10385,23427,8,'Makeup Artist'),(10385,27543,7,'Production Design'),(10385,57678,3,'Producer'),(10385,57678,4,'Screenplay'),(10385,37434,1,'Director of Photography'),(10385,37757,6,'Original Music Composer'),(10385,53645,5,'Editor'),(10385,59710,8,'Costume Design'),(10385,92329,8,'Makeup Department Head'),(10385,83062,8,'Makeup Artist'),(10385,957127,7,'Set Decoration'),(10385,1325655,8,'Costume Supervisor'),(10385,1338840,2,'Script Supervisor'),(10385,1413224,8,'Hairstylist'),(10385,1417398,8,'Hair Department Head'),(10385,1435574,8,'Hairstylist'),(10385,1531850,8,'Set Costumer'),(10154,3222,3,'Producer'),(10154,6490,1,'Director of Photography'),(10154,7728,6,'Original Music Composer'),(10154,13918,3,'Producer'),(10154,27903,5,'Editor'),(10154,51216,4,'Screenplay'),(10154,64030,2,'Director'),(10154,64031,4,'Screenplay'),(10647,153,6,'Music'),(10647,11708,4,'Screenplay'),(10647,16425,1,'Director of Photography'),(10647,17816,5,'Editor'),(10647,51984,2,'Director'),(10647,66106,4,'Screenplay'),(11431,1588,3,'Producer'),(11431,69597,3,'Producer'),(11431,2507,1,'Director of Photography'),(11431,3225,4,'Novel'),(11431,3225,3,'Executive Producer'),(11431,6114,3,'Executive Producer'),(11431,6630,7,'Set Decoration'),(11431,7045,6,'Original Music Composer'),(11431,7395,2,'Director'),(11431,7396,2,'Director'),(11431,7407,3,'Producer'),(11431,10393,5,'Editor'),(11431,11475,7,'Production Design'),(11431,27518,4,'Screenplay'),(11431,27519,4,'Screenplay'),(11431,18030,3,'Executive Producer'),(11431,34001,3,'Producer'),(11431,25455,3,'Producer'),(11431,57464,3,'Producer'),(11431,960323,8,'Costume Design'),(11431,1316504,8,'Key Makeup Artist'),(11431,1423203,8,'Key Hair Stylist'),(11431,1436525,1,'Still Photographer'),(11431,1449183,2,'Script Supervisor'),(11431,1546047,6,'Music Supervisor'),(11431,1546441,6,'Music Supervisor'),(10060,2952,3,'Casting'),(10060,340,3,'Producer'),(10060,3987,5,'Editor'),(10060,4769,3,'Executive Producer'),(10060,6117,1,'Director of Photography'),(10060,10123,5,'Editor'),(10060,13301,6,'Original Music Composer'),(10060,29219,7,'Art Direction'),(10060,31094,3,'Executive Producer'),(10060,43625,7,'Production Design'),(10060,43143,3,'Executive Producer'),(10060,44827,3,'Executive Producer'),(10060,53334,2,'Director'),(10060,53334,3,'Producer'),(10060,62121,7,'Set Decoration'),(10060,62636,3,'Producer'),(10060,62635,4,'Author'),(10060,62634,3,'Producer'),(10060,62638,3,'Producer'),(10060,62637,3,'Producer'),(10060,62639,3,'Executive Producer'),(10060,62642,6,'Original Music Composer'),(10060,62641,6,'Original Music Composer'),(10060,62640,3,'Producer'),(10060,62643,8,'Costume Design'),(10060,1746321,3,'Executive Producer'),(11398,10751,5,'Editor'),(11398,17212,6,'Original Music Composer'),(11398,25735,2,'Director'),(11398,25744,1,'Director of Photography'),(11398,52089,3,'Producer'),(11398,58667,4,'Screenplay'),(11398,61703,3,'Producer'),(11398,69211,4,'Screenplay'),(10391,853,5,'Editor'),(10391,2487,3,'Executive Producer'),(10391,3965,3,'Casting'),(10391,7232,3,'Casting'),(10391,4611,3,'Producer'),(10391,4612,3,'Executive Producer'),(10391,19155,6,'Original Music Composer'),(10391,8287,8,'Set Costumer'),(10391,8315,7,'Production Design'),(10391,26713,2,'Director'),(10391,13551,8,'Costume Design'),(10391,15227,9,'Visual Effects Editor'),(10391,10836,7,'Art Direction'),(10391,17629,1,'Director of Photography'),(10391,50726,9,'Makeup Effects'),(10391,51627,4,'Screenplay'),(10391,54272,10,'Visual Effects Supervisor'),(10391,65363,4,'Screenplay'),(10391,65364,4,'Novel'),(10391,72117,9,'Stunt Coordinator'),(10391,95836,6,'Sound Re-Recording Mixer'),(10391,554887,6,'Supervising Sound Editor'),(10391,554888,6,'Sound Designer'),(10391,957970,7,'Set Decoration'),(10391,1034749,3,'Executive Producer'),(10391,1177337,11,'Gaffer'),(10391,1190889,3,'Co-Producer'),(10391,1242939,3,'Production Manager'),(10391,1317673,7,'Set Designer'),(10391,1339459,6,'Music Editor'),(10391,1341859,6,'Supervising Sound Editor'),(10391,1345635,2,'Script Supervisor'),(10391,1398970,1,'Camera Operator'),(10391,1398970,1,'Steadicam Operator'),(10391,1399501,9,'Scenic Artist'),(10391,1401296,1,'Camera Operator'),(10391,1401601,9,'Unit Publicist'),(10391,1404354,7,'Set Designer'),(10391,1404834,7,'Art Direction'),(10391,1404835,7,'Assistant Art Director'),(10391,1404836,9,'Scenic Artist'),(10391,1404837,7,'Leadman'),(10391,1404838,5,'Dialogue Editor'),(10391,1404840,6,'Sound Re-Recording Mixer'),(10391,1404841,6,'ADR & Dubbing'),(10391,1404842,9,'Special Effects Coordinator'),(10391,1404843,9,'Visual Effects Editor'),(10391,1404844,10,'Visual Effects Supervisor'),(10391,1404845,10,'Visual Effects Producer'),(10391,1404846,10,'Visual Effects Producer'),(10391,1404850,1,'Still Photographer'),(10391,1404851,8,'Costume Supervisor'),(10391,1404852,3,'Location Manager'),(10391,1812185,4,'Screenplay'),(10391,1812186,8,'Makeup Artist'),(11370,970,3,'Casting'),(11370,5056,5,'Editor'),(11370,6489,6,'Original Music Composer'),(11370,40815,6,'Assistant Sound Editor'),(11370,14763,8,'Makeup Artist'),(11370,15303,3,'Executive Producer'),(11370,16838,3,'Executive Producer'),(11370,16345,9,'Special Effects Coordinator'),(11370,10936,7,'Production Design'),(11370,24840,4,'Novel'),(11370,25755,3,'Casting'),(11370,29868,8,'Costume Design'),(11370,32355,8,'Makeup Designer'),(11370,37710,2,'Director'),(11370,37710,1,'Director of Photography'),(11370,43673,3,'Line Producer'),(11370,43676,3,'Executive Producer'),(11370,43679,3,'Casting'),(11370,46984,6,'Sound Mixer'),(11370,52036,3,'Co-Producer'),(11370,56032,3,'Producer'),(11370,56953,4,'Screenplay'),(11370,57901,3,'Executive Producer'),(11370,57900,3,'Associate Producer'),(11370,59397,7,'Art Direction'),(11370,62516,2,'Assistant Director'),(11370,69286,1,'Director of Photography'),(11370,75098,6,'Supervising Sound Editor'),(11370,75104,10,'Visual Effects Producer'),(11370,91366,3,'Casting'),(11370,104781,1,'Camera Technician'),(11370,131732,9,'Martial Arts Choreographer'),(11370,142554,10,'Visual Effects'),(11370,148118,9,'Legal Services'),(11370,560223,8,'Hairstylist'),(11370,1018988,8,'Costume Supervisor'),(11370,1180972,7,'Set Dresser'),(11370,1215596,9,'Stand In'),(11370,1353257,6,'Foley'),(11370,1353879,7,'Set Decoration'),(11370,1355962,6,'Sound Effects Editor'),(11370,1377131,1,'Camera Operator'),(11370,1379983,5,'Dialogue Editor'),(11370,1379995,10,'I/O Supervisor'),(11370,1401331,11,'Gaffer'),(11370,1404241,9,'Dialect Coach'),(11370,1404840,6,'Sound Re-Recording Mixer'),(11370,1407666,6,'ADR Editor'),(11370,1413507,5,'First Assistant Editor'),(11370,1413507,9,'Visual Effects Editor'),(11370,1419613,2,'Script Supervisor'),(11370,1424940,1,'Still Photographer'),(11370,1424941,11,'Rigging Gaffer'),(11370,1424942,3,'Location Manager'),(11370,1425513,6,'Music Editor'),(11370,1433203,9,'Scenic Artist'),(11370,1437123,8,'Costume Design'),(11370,1440479,9,'Property Master'),(11370,1440487,10,'Visual Effects Supervisor'),(11370,1440494,1,'Steadicam Operator'),(11370,1536255,7,'Art Direction'),(11370,1550844,10,'Special Effects Supervisor'),(11370,1579678,8,'Hair Designer'),(11370,1581073,7,'Art Direction'),(11370,1581074,7,'Art Direction'),(11370,1581075,7,'Construction Coordinator'),(11370,1581076,7,'Construction Foreman'),(11370,1581077,7,'Leadman'),(11370,1581116,7,'Painter'),(11370,1581117,7,'Sculptor'),(11370,1581118,7,'Set Decoration Buyer'),(11370,1581119,7,'Standby Painter'),(11370,1581120,1,'Additional Camera'),(11370,1581122,1,'First Assistant Camera'),(11370,1581123,1,'Key Grip'),(11370,1581127,8,'Seamstress'),(11370,1581129,9,'Armorer'),(11370,1581130,9,'Carpenter'),(11370,1581131,9,'Driver'),(11370,1581132,9,'Loader'),(11370,1581133,9,'Post-Production Manager'),(11370,1581134,9,'Post Production Supervisor'),(11370,1581135,9,'Propmaker'),(11370,1581136,9,'Sound Recordist'),(11370,1581137,9,'Stunt Coordinator'),(11370,1581138,9,'Stunts'),(11370,1581139,9,'Technical Supervisor'),(11370,1581140,9,'Transportation Captain'),(11370,1581141,9,'Transportation Coordinator'),(11370,1581142,3,'Unit Production Manager'),(11370,1581143,9,'Unit Publicist'),(11370,1581144,9,'Video Assist Operator'),(11370,1581147,5,'Color Timer'),(11370,1581150,11,'Best Boy Electric'),(11370,1581151,11,'Electrician'),(11370,1581157,3,'Executive Producer'),(11370,1581158,3,'Casting'),(11370,1581161,3,'Production Accountant'),(11370,1581162,3,'Production Coordinator'),(11370,1581164,3,'Production Supervisor'),(11370,1581165,3,'Researcher'),(11370,1581166,6,'Boom Operator'),(11370,1581173,10,'3D Animator'),(11370,1581175,4,'Storyboard'),(11370,1650190,2,'First Assistant Director'),(11370,1702830,1,'Grip'),(11370,1767018,7,'Title Designer'),(11370,1767782,3,'ADR Voice Casting'),(11370,1798032,8,'Costume Coordinator'),(11370,1798033,8,'Tailor'),(11370,1798036,9,'Animal Wrangler'),(11370,1798038,2,'Second Assistant Director'),(11370,1798039,2,'Third Assistant Director'),(11370,1798040,5,'Negative Cutter'),(11370,1798044,3,'Casting Assistant'),(11370,1798047,6,'Foley Editor'),(12184,8382,7,'Art Direction'),(12184,466,3,'Executive Producer'),(12184,2997,3,'Executive Producer'),(12184,4865,6,'Original Music Composer'),(12184,5323,3,'Co-Producer'),(12184,9966,5,'Editor'),(12184,9027,8,'Costume Design'),(12184,10969,3,'Casting'),(12184,15730,4,'Author'),(12184,37756,3,'Producer'),(12184,25515,5,'Editor'),(12184,71570,2,'Director'),(12184,71571,4,'Author'),(12184,71573,3,'Line Producer'),(12184,71572,3,'Associate Producer'),(12184,71574,7,'Production Design'),(12184,71576,7,'Art Direction'),(12184,71577,7,'Art Direction'),(12184,71575,1,'Director of Photography'),(12184,71578,7,'Set Decoration'),(12184,71579,7,'Art Direction'),(12184,97436,9,'Stunts'),(12184,1637823,10,'Special Effects Supervisor'),(12184,1747344,9,'Stunt Coordinator'),(11858,947,6,'Original Music Composer'),(11858,2723,1,'Director of Photography'),(11858,3658,3,'Producer'),(11858,11454,5,'Editor'),(11858,14911,2,'Director'),(11858,66258,4,'Screenplay'),(18937,375,6,'Sound Effects Editor'),(18937,900,6,'Sound Designer'),(18937,8760,6,'Supervising Music Editor'),(18937,9152,6,'Original Music Composer'),(18937,12092,7,'Production Design'),(18937,15894,6,'Sound Designer'),(18937,16533,5,'Editor'),(18937,19252,3,'Casting'),(18937,19253,3,'Casting'),(18937,50582,2,'Director'),(18937,61955,3,'Production Manager'),(18937,65410,3,'Producer'),(18937,71267,4,'Screenplay'),(18937,132832,4,'Screenplay'),(18937,240779,10,'Animation'),(18937,1002842,4,'Screenplay'),(18937,1101341,4,'Novel'),(18937,1205985,4,'Storyboard'),(18937,1231398,4,'Screenplay'),(18937,1237111,10,'Animation'),(18937,1341854,6,'Sound Re-Recording Mixer'),(18937,1341858,6,'Sound Re-Recording Mixer'),(18937,1342626,6,'Sound Re-Recording Mixer'),(18937,1409271,6,'Sound Effects Editor'),(18937,1447310,9,'Post Production Supervisor'),(18937,1447338,10,'Animation'),(18937,1447436,2,'Layout'),(18937,1447467,2,'Layout'),(18937,1447500,2,'Layout'),(18937,1447554,10,'Visual Effects'),(18937,1447566,10,'Animation'),(18937,1451611,3,'Production Manager'),(18937,1453612,10,'Animation'),(18937,1460439,10,'Animation'),(18937,1460480,10,'Animation'),(18937,1840816,10,'Animation'),(13536,30365,2,'Director'),(13536,73424,4,'Writer'),(15556,4023,3,'Casting'),(15556,2702,1,'Director of Photography'),(15556,3192,3,'Casting'),(15556,3429,7,'Production Design'),(15556,4140,6,'Music'),(15556,4187,7,'Art Direction'),(15556,5328,3,'Casting'),(15556,11472,2,'Director'),(15556,11472,3,'Producer'),(15556,17221,7,'Set Decoration'),(15556,18330,3,'Producer'),(15556,52163,8,'Costume Design'),(15556,53645,5,'Editor'),(15556,67760,4,'Story'),(15556,78384,4,'Screenplay'),(10718,2044,1,'Director of Photography'),(10718,894,6,'Original Music Composer'),(10718,1296,3,'Executive Producer'),(10718,7232,3,'Casting'),(10718,9424,9,'Makeup Effects'),(10718,11874,3,'Producer'),(10718,10853,5,'Editor'),(10718,36624,8,'Costume Design'),(10718,20540,3,'Casting'),(10718,55600,2,'Assistant Director'),(10718,58183,3,'Executive Producer'),(10718,59774,3,'Executive Producer'),(10718,59960,3,'Producer'),(10718,66823,2,'Director'),(10718,66824,4,'Screenplay'),(10718,66825,5,'Editor'),(10718,75806,3,'Unit Production Manager'),(10718,93887,9,'Second Unit Cinematographer'),(10718,102585,7,'Art Direction'),(10718,1123424,3,'Production Accountant'),(10718,1158052,8,'Hairstylist'),(10718,1247046,10,'3D Supervisor'),(10718,1302177,1,'Steadicam Operator'),(10718,1319415,8,'Makeup Department Head'),(10718,1323289,8,'Assistant Costume Designer'),(10718,1344274,9,'Transportation Coordinator'),(10718,1345608,9,'Stunt Coordinator'),(10718,1371064,6,'Foley'),(10718,1378833,7,'Location Scout'),(10718,1391383,7,'Construction Coordinator'),(10718,1392083,6,'Sound Designer'),(10718,1392239,6,'Sound Editor'),(10718,1393858,9,'Stunts'),(10718,1395275,1,'Still Photographer'),(10718,1398863,6,'Music Editor'),(10718,1399899,1,'Camera Technician'),(10718,1401992,9,'Video Assist Operator'),(10718,1402170,2,'Script Supervisor'),(10718,1404724,10,'Visual Effects Producer'),(10718,1405375,7,'Production Design'),(10718,1406241,6,'Sound Effects Editor'),(10718,1411271,1,'Additional Camera'),(10718,1412460,5,'Editorial Services'),(10718,1416157,9,'CG Supervisor'),(10718,1432379,9,'Studio Teachers'),(10718,1437798,8,'Makeup Artist'),(10718,1439088,10,'Visual Effects Supervisor'),(10718,1448993,9,'Additional Music'),(10718,1449943,6,'Supervising Sound Editor'),(10718,1450776,9,'Stand In'),(10718,1452689,3,'Location Manager'),(10718,1456359,9,'Dialect Coach'),(10718,1458204,7,'Set Decoration'),(10718,1458883,8,'Key Hair Stylist'),(10718,1463656,9,'Utility Stunts'),(10718,1463735,11,'Best Boy Electric'),(10718,1464344,3,'Executive In Charge Of Post Production'),(10718,1471304,9,'Unit Publicist'),(10718,1473325,3,'Associate Producer'),(10718,1473326,3,'Co-Producer'),(10718,1473327,3,'Associate Producer'),(10718,1473444,6,'First Assistant Sound Editor'),(10718,1529457,8,'Costume Supervisor'),(10718,1531850,8,'Set Costumer'),(10718,1545127,9,'Sound Recordist'),(10718,1551164,11,'Rigging Grip'),(10718,1551213,6,'Production Sound Mixer'),(10718,1553625,9,'Picture Car Coordinator'),(10718,1559023,9,'Post Production Supervisor'),(10718,1565944,1,'First Assistant Camera'),(10718,1568661,6,'Sound Engineer'),(10718,1569559,9,'Digital Effects Supervisor'),(10718,1570768,9,'Visual Effects Editor'),(10718,1585015,10,'Visual Effects'),(10718,1586946,6,'Boom Operator'),(10718,1605411,9,'Systems Administrators & Support'),(10718,1621233,9,'Scenic Artist'),(10718,1687157,3,'Production Coordinator'),(10718,1691221,10,'Digital Compositors'),(10718,1695250,7,'Construction Foreman'),(10718,1695251,7,'Painter'),(10718,1695252,7,'Standby Painter'),(10718,1695253,1,'Camera Operator'),(10718,1695255,1,'Grip'),(10718,1695256,8,'Set Dressing Artist'),(10718,1695257,9,'Driver'),(10718,1695258,9,'Loader'),(10718,1695259,9,'Property Master'),(10718,1695260,9,'Set Medic'),(10718,1695261,9,'Set Production Assistant'),(10718,1695267,9,'Transportation Co-Captain'),(10718,1695269,5,'Digital Intermediate'),(10718,1695270,11,'Electrician'),(10718,1695271,11,'Lighting Technician'),(10718,1695272,11,'Rigging Gaffer'),(10718,1695273,10,'I/O Supervisor'),(10718,1695274,10,'Visual Effects Coordinator'),(10718,1695275,4,'Storyboard'),(11062,1760,6,'Original Music Composer'),(11062,23213,2,'Director'),(11062,23213,3,'Producer'),(11062,3898,5,'Editor'),(11062,68210,4,'Screenplay'),(11062,68211,1,'Director of Photography'),(10802,898,5,'Editor'),(10802,1098,5,'Editor'),(10802,5241,1,'Director of Photography'),(10802,10491,2,'Director'),(10802,10492,4,'Screenplay'),(10802,7726,3,'Producer'),(10802,57124,6,'Original Music Composer'),(10802,66876,3,'Producer'),(10802,66877,6,'Original Music Composer'),(10461,818,4,'Screenplay'),(10461,1059,3,'Producer'),(10461,18265,1,'Director of Photography'),(10461,22061,7,'Art Direction'),(10461,46088,3,'Producer'),(10461,113194,9,'Stunts'),(10461,56435,2,'Director'),(10461,65366,4,'Screenplay'),(10461,1007395,9,'Stunts'),(10461,1362798,2,'Assistant Director'),(12704,7202,1,'Director of Photography'),(12704,3099,5,'Editor'),(12704,6449,3,'Producer'),(12704,10771,6,'Original Music Composer'),(12704,34484,5,'Editor'),(12704,58251,4,'Screenplay'),(12704,58251,2,'Director'),(12704,73950,6,'Original Music Composer'),(12704,73951,5,'Editor'),(10315,1299,4,'Novel'),(10315,5655,2,'Director'),(10315,5655,4,'Writer'),(10315,5656,4,'Screenplay'),(10315,67758,9,'Thanks'),(10315,553920,10,'Animation'),(10315,1245934,10,'Animation Director'),(10315,1401375,10,'Animation'),(10315,1447310,9,'Post Production Supervisor'),(10315,1447370,10,'Animation'),(10315,1448047,10,'Animation'),(10315,1448053,10,'Animation'),(10315,1448058,10,'Animation'),(10315,1448063,10,'Animation'),(10315,1448070,10,'Animation'),(10315,1448071,10,'Animation'),(10315,1448072,10,'Animation'),(10315,1448076,10,'Animation Supervisor'),(10315,1453480,10,'Animation'),(10315,1453485,10,'Animation'),(10315,1453532,10,'Animation'),(10315,1453535,10,'Animation'),(10315,1453550,7,'Art Department Manager'),(10315,1453593,10,'Animation'),(10315,1453594,10,'Animation'),(10315,1453596,10,'Animation'),(10315,1453599,10,'Animation'),(10315,1453600,10,'Animation'),(10315,1453601,10,'Animation'),(10315,1453602,10,'Animation'),(10315,1453603,10,'Animation'),(10315,1453619,10,'Animation'),(10315,1453639,10,'Animation'),(10315,1453643,10,'Animation'),(10315,1453646,10,'Animation'),(10315,1453647,10,'Animation'),(10315,1453648,10,'Animation'),(10315,1453649,10,'Animation'),(10315,1531911,5,'Editor'),(16643,1258,1,'Director of Photography'),(16643,6479,3,'Casting'),(16643,8428,8,'Costume Design'),(16643,11898,4,'Screenplay'),(16643,18356,2,'Director'),(16643,22061,7,'Art Direction'),(16643,28163,7,'Set Decoration'),(16643,58720,5,'Editor'),(16643,72074,4,'Story'),(16643,72074,4,'Screenplay'),(16643,959360,7,'Production Design'),(11025,1899,3,'Producer'),(11025,9645,1,'Director of Photography'),(11025,9204,6,'Original Music Composer'),(11025,12940,5,'Editor'),(11025,66963,3,'Executive Producer'),(11025,59265,4,'Screenplay'),(11025,59266,4,'Screenplay'),(11025,65402,6,'Original Music Composer'),(11025,66960,2,'Director'),(11025,67848,3,'Producer'),(11025,67849,3,'Producer'),(11025,67851,4,'Screenplay'),(11025,67852,3,'Producer'),(11025,67853,5,'Editor'),(30943,5582,1,'Director of Photography'),(30943,7182,6,'Original Music Composer'),(30943,58471,3,'Unit Production Manager'),(30943,59583,4,'Screenplay'),(30943,140354,2,'Director'),(30943,1395166,4,'Novel'),(24418,3289,4,'Screenplay'),(24418,3289,2,'Director'),(24418,4723,4,'Screenplay'),(24418,109872,4,'Original Story'),(24418,1439088,10,'Visual Effects Supervisor'),(24418,1453019,9,'Technical Supervisor'),(24418,1460621,10,'Visual Effects'),(14655,52053,4,'Screenplay'),(14655,52054,4,'Screenplay'),(14655,72024,2,'Director'),(24575,2289,6,'Music'),(24575,2507,9,'Cinematography'),(24575,24328,3,'Producer'),(24575,30592,3,'Executive Producer'),(24575,52094,2,'Director'),(24575,52100,3,'Producer'),(24575,53295,4,'Novel'),(24575,1234544,4,'Writer'),(24575,1294154,4,'Adaptation'),(10366,4949,6,'Original Music Composer'),(10366,14942,3,'Producer'),(10366,18889,2,'Director'),(10366,15111,3,'Producer'),(10366,57898,4,'Screenplay'),(10366,65237,4,'Screenplay'),(10366,65238,1,'Director of Photography'),(10366,1785844,9,'Martial Arts Choreographer'),(19898,4014,3,'Producer'),(19898,4016,3,'Producer'),(19898,4017,3,'Producer'),(19898,7232,3,'Casting'),(19898,15367,1,'Director of Photography'),(19898,17080,3,'Executive Producer'),(19898,20540,3,'Casting'),(19898,52962,8,'Costume Design'),(19898,54559,2,'Director'),(19898,54559,4,'Story'),(19898,55169,6,'Music'),(19898,254681,4,'Story'),(19898,254681,4,'Writer'),(19898,457430,3,'Executive Producer'),(19898,1314066,3,'Casting'),(15074,6890,3,'Executive Producer'),(15074,17212,6,'Original Music Composer'),(15074,10936,7,'Production Design'),(15074,20608,1,'Director of Photography'),(15074,24164,7,'Art Direction'),(15074,25735,2,'Director'),(15074,25745,5,'Editor'),(15074,42129,3,'Executive Producer'),(15074,43150,5,'Editor'),(15074,43676,3,'Executive Producer'),(15074,52036,3,'Producer'),(15074,56032,3,'Producer'),(15074,57901,3,'Executive Producer'),(15074,69101,6,'Original Music Composer'),(15074,944745,4,'Story'),(15074,945035,4,'Screenplay'),(15074,980200,4,'Story'),(20542,7902,3,'Casting'),(20542,17767,6,'Original Music Composer'),(20542,86295,2,'Director'),(20542,86295,3,'Producer'),(20542,86295,4,'Story'),(20542,86296,2,'Director'),(20542,86296,4,'Story'),(20542,86297,4,'Story'),(20542,996175,4,'Screenplay'),(20542,996176,9,'Cinematography'),(20542,1121597,4,'Screenplay'),(20542,1121598,4,'Screenplay'),(20542,1121598,3,'Producer'),(20542,1121599,3,'Line Producer'),(20542,1455613,10,'Animation'),(10428,1221,3,'Casting'),(10428,1978,2,'Director'),(10428,1978,3,'Executive Producer'),(10428,2095,3,'Producer'),(10428,3115,1,'Director of Photography'),(10428,7741,6,'Original Music Composer'),(10428,9154,5,'Editor'),(10428,10121,3,'Associate Producer'),(10428,10121,3,'Unit Production Manager'),(10428,40810,6,'Supervising Sound Editor'),(10428,40818,6,'Sound Re-Recording Mixer'),(10428,16465,5,'Editor'),(10428,23655,7,'Set Decoration'),(10428,23769,7,'Production Design'),(10428,41848,7,'Art Direction'),(10428,52517,4,'Writer'),(10428,56994,6,'Music Supervisor'),(10428,59949,3,'Producer'),(10428,65137,3,'Co-Producer'),(10428,65139,7,'Set Decoration'),(10428,65140,8,'Costume Design'),(10428,67695,6,'Music Editor'),(10428,75098,6,'Sound'),(10428,220903,6,'Original Music Composer'),(10428,1394104,2,'Script Supervisor'),(10428,1553743,6,'Sound Mixer'),(10428,1561368,6,'Supervising Sound Editor'),(10428,1567673,1,'Still Photographer'),(10428,1770677,3,'Associate Producer'),(11934,151,1,'Director of Photography'),(11934,1223,2,'Director'),(11934,1223,4,'Screenplay'),(11934,1224,4,'Screenplay'),(11934,1224,3,'Producer'),(11934,1225,6,'Music'),(11934,2236,3,'Executive Producer'),(11934,2238,3,'Executive Producer'),(11934,7623,4,'Screenplay'),(11934,17399,5,'Editor'),(14392,16465,5,'Editor'),(14392,20638,3,'Executive Producer'),(14392,21903,6,'Original Music Composer'),(14392,26731,1,'Director of Photography'),(14392,56739,2,'Director'),(14392,56739,3,'Producer'),(14392,58639,3,'Producer'),(14392,60517,3,'Line Producer'),(14392,64489,3,'Line Producer'),(14392,66053,6,'Original Music Composer'),(14392,66774,4,'Screenplay'),(14392,71018,3,'Producer'),(14392,71018,3,'Executive Producer'),(14392,76812,2,'Director'),(14392,76812,3,'Producer'),(14392,78991,6,'Original Music Composer'),(14392,126805,4,'Screenplay'),(14392,130500,5,'Editor'),(14392,134026,4,'Screenplay'),(14392,134026,3,'Producer'),(14392,231751,4,'Screenplay'),(14392,550956,7,'Production Design'),(14392,552419,6,'Original Music Composer'),(14392,965591,4,'Screenplay'),(14392,1069157,4,'Screenplay'),(14392,1069157,3,'Producer'),(14392,1127722,4,'Screenplay'),(14392,1127723,4,'Screenplay'),(14392,1127724,3,'Producer'),(14392,1127725,3,'Executive Producer'),(19495,71871,2,'Director'),(19495,82798,4,'Writer'),(19495,84736,2,'Director'),(26486,2689,2,'Director'),(26486,2689,4,'Writer'),(26486,3965,3,'Casting'),(26486,11957,3,'Producer'),(26486,17816,5,'Editor'),(26486,21747,7,'Production Design'),(26486,23969,1,'Director of Photography'),(26486,24190,6,'Music'),(26486,31710,3,'Producer'),(26486,1034748,3,'Casting'),(26486,1427384,2,'Script Supervisor'),(24420,8222,8,'Costume Design'),(24420,287,3,'Executive Producer'),(24420,2243,7,'Production Design'),(24420,3431,4,'Screenplay'),(24420,3965,3,'Casting'),(24420,10573,1,'Director of Photography'),(24420,5359,6,'Original Music Composer'),(24420,6468,3,'Producer'),(24420,14913,7,'Art Direction'),(24420,17399,5,'Editor'),(24420,20458,3,'Producer'),(24420,23545,3,'Casting'),(24420,54777,3,'Casting'),(24420,57270,2,'Director'),(24420,57430,3,'Executive Producer'),(24420,113982,3,'Executive Producer'),(24420,229345,6,'ADR & Dubbing'),(24420,956268,3,'Executive Producer'),(24420,960161,7,'Set Decoration'),(24420,974609,3,'Producer'),(24420,1034748,3,'Casting'),(24420,1279373,4,'Novel'),(24420,1279374,3,'Producer'),(24420,1322112,8,'Makeup Department Head'),(24420,1322113,8,'Costume Supervisor'),(16320,356,9,'Cinematography'),(16320,3393,6,'Music'),(16320,4054,3,'Executive Producer'),(16320,5664,3,'Producer'),(16320,12757,3,'Executive Producer'),(16320,12891,2,'Director'),(16320,12891,4,'Author'),(16320,12891,4,'Writer'),(16320,15524,8,'Costume Design'),(16320,10820,7,'Production Design'),(16320,19291,7,'Art Direction'),(16320,21984,7,'Set Decoration'),(16320,76014,3,'Casting'),(16320,76015,3,'Casting'),(16320,80425,3,'Executive Producer'),(16320,551903,8,'Makeup Department Head'),(16320,1018965,5,'Editor'),(16320,1318464,7,'Set Decoration'),(16320,1813644,9,'Stunts'),(12289,1361,5,'Editor'),(12289,11401,4,'Screenplay'),(12289,11401,2,'Director'),(12289,11401,3,'Producer'),(12289,11404,3,'Producer'),(12289,16650,5,'Editor'),(12289,20638,3,'Producer'),(12289,20641,3,'Producer'),(12289,62928,3,'Line Producer'),(12289,63693,6,'Original Music Composer'),(12289,64337,3,'Producer'),(12289,71067,3,'Producer'),(12289,72204,1,'Director of Photography'),(12289,74035,5,'Editor'),(12289,78753,4,'Novel'),(12289,105396,3,'Producer'),(12289,118732,3,'Producer'),(12289,554080,1,'Director of Photography'),(12289,585037,4,'Screenplay'),(12289,586335,3,'Producer'),(12289,993811,4,'Screenplay'),(12289,993812,4,'Screenplay'),(12289,993813,3,'Executive Producer'),(12289,993813,3,'Line Producer'),(12289,1117850,3,'Producer'),(12289,1117851,3,'Producer'),(12289,1117852,3,'Producer'),(12289,1117853,3,'Producer'),(12289,1117854,3,'Producer'),(12289,1117855,3,'Producer'),(12289,1117856,3,'Producer'),(12289,1117857,3,'Producer'),(12289,1117858,3,'Producer'),(12289,1117859,3,'Producer'),(12289,1117860,3,'Producer'),(12289,1117861,3,'Producer'),(12289,1117862,3,'Producer'),(12289,1117863,3,'Executive Producer'),(12289,1117864,3,'Executive Producer'),(12289,1117865,3,'Executive Producer'),(11529,4197,7,'Production Design'),(11529,1528,6,'Original Music Composer'),(11529,8181,3,'Executive Producer'),(11529,8846,1,'Director of Photography'),(11529,11874,3,'Producer'),(11529,25142,5,'Editor'),(11529,17167,2,'Director'),(11529,33256,3,'Producer'),(11529,55985,5,'Editor'),(11529,61091,3,'Executive Producer'),(11529,69736,4,'Story'),(11529,69737,4,'Screenplay'),(11529,69739,3,'Executive Producer'),(11529,86199,6,'Music Supervisor'),(11529,960323,8,'Costume Design'),(11529,1071998,9,'Stunt Coordinator'),(11529,1194471,1,'Still Photographer'),(11529,1345595,6,'Sound Re-Recording Mixer'),(11529,1364410,5,'Dialogue Editor'),(11529,1378168,6,'Supervising Sound Editor'),(11529,1386923,2,'Script Supervisor'),(11529,1391571,6,'Sound Re-Recording Mixer'),(11529,1397725,7,'Set Decoration'),(11529,1407016,5,'Dialogue Editor'),(11529,1408305,6,'Supervising Sound Editor'),(11529,1408311,5,'Dialogue Editor'),(11529,1415965,5,'Dialogue Editor'),(11529,1416056,8,'Hair Department Head'),(11529,1418485,1,'Camera Operator'),(11529,1459196,8,'Makeup Department Head'),(11529,1461183,6,'Music Editor'),(11529,1493864,7,'Art Direction'),(11529,1536550,6,'Sound Effects Editor'),(11529,1556310,6,'Music Supervisor'),(11529,1556312,7,'Art Department Coordinator'),(20943,68602,3,'Producer'),(20943,1202,3,'Producer'),(20943,3953,3,'Producer'),(20943,3965,3,'Casting'),(20943,6628,7,'Production Design'),(20943,8523,1,'Director of Photography'),(20943,11802,8,'Costume Design'),(20943,11625,5,'Editor'),(20943,40384,6,'Music'),(20943,36797,2,'Director'),(20943,40589,4,'Writer'),(20943,54777,3,'Casting'),(20943,67390,3,'Producer'),(20943,141439,4,'Writer'),(20943,1034748,3,'Casting'),(20943,1377239,2,'Script Supervisor'),(20943,1493074,3,'Producer'),(10400,2952,3,'Casting'),(10400,1721,5,'Editor'),(10400,151,1,'Director of Photography'),(10400,19155,6,'Original Music Composer'),(10400,8428,8,'Costume Design'),(10400,13563,2,'Director'),(10400,13563,3,'Producer'),(10400,14915,7,'Set Decoration'),(10400,15845,8,'Makeup Department Head'),(10400,20968,7,'Production Design'),(10400,23545,3,'Casting'),(10400,29219,7,'Art Direction'),(10400,41587,3,'Producer'),(10400,41587,4,'Screenplay'),(10400,54972,4,'Screenplay'),(10400,65012,3,'Producer'),(10400,65013,4,'Novel'),(10400,1435605,8,'Costume Supervisor'),(10400,1449183,2,'Script Supervisor'),(10400,1477084,8,'Makeup Artist'),(10833,375,6,'Sound Effects Editor'),(10833,546,3,'Casting'),(10833,2043,3,'Producer'),(10833,2241,5,'Editor'),(10833,4500,6,'Original Music Composer'),(10833,3184,3,'Executive Producer'),(10833,9199,7,'Production Design'),(10833,14608,7,'Art Direction'),(10833,7240,6,'Boom Operator'),(10833,4501,1,'Director of Photography'),(10833,8432,9,'Stunt Coordinator'),(10833,14377,3,'Casting'),(10833,18194,4,'Screenplay'),(10833,18195,4,'Screenplay'),(10833,113055,5,'Dialogue Editor'),(10833,58178,2,'Director'),(10833,62144,7,'Set Decoration'),(10833,67034,4,'Screenplay'),(10833,70256,3,'Producer'),(10833,73691,3,'Line Producer'),(10833,83088,5,'Dialogue Editor'),(10833,143919,6,'Sound Re-Recording Mixer'),(10833,543194,8,'Costume Design'),(10833,1123130,3,'Executive Producer'),(10833,1368865,6,'Supervising Sound Editor'),(10833,1377419,6,'Music Editor'),(10833,1392245,1,'Still Photographer'),(10833,1395290,2,'Script Supervisor'),(10833,1397850,11,'Gaffer'),(10833,1404326,6,'Music Editor'),(10833,1406083,7,'Art Department Coordinator'),(10833,1407878,6,'Sound Effects Editor'),(10833,1426225,3,'Executive Producer'),(10833,1428595,6,'Sound Effects Editor'),(10833,1440230,6,'Sound Effects Editor'),(10833,1536088,8,'Costume Supervisor'),(10833,1551213,6,'Production Sound Mixer'),(10833,1552051,3,'Production Supervisor'),(10833,1554593,6,'Sound Effects Editor'),(10833,1560802,5,'Dialogue Editor'),(12312,376,3,'Executive Producer'),(12312,3191,3,'Casting'),(12312,4149,8,'Costume Design'),(12312,7716,7,'Production Design'),(12312,9204,6,'Original Music Composer'),(12312,11761,7,'Set Decoration'),(12312,10764,3,'Producer'),(12312,12050,3,'Producer'),(12312,18387,5,'Editor'),(12312,38938,3,'Producer'),(12312,56324,1,'Director of Photography'),(12312,56644,3,'Producer'),(12312,56648,3,'Executive Producer'),(12312,58072,2,'Director'),(12312,72074,4,'Screenplay'),(12312,72075,3,'Producer'),(12312,72076,3,'Executive Producer'),(12312,111213,6,'Music Supervisor'),(12312,100387,3,'Associate Producer'),(12312,112875,6,'Supervising Sound Editor'),(12312,957840,5,'Dialogue Editor'),(12312,1201086,9,'Stunt Coordinator'),(12312,1326170,7,'Art Direction'),(12312,1338311,5,'Dialogue Editor'),(12312,1345595,6,'Sound Re-Recording Mixer'),(12312,1360097,5,'Dialogue Editor'),(12312,1376276,6,'Music Editor'),(12312,1391571,6,'Sound Re-Recording Mixer'),(12312,1392085,5,'Dialogue Editor'),(12312,1394747,6,'Sound Effects Editor'),(12312,1394973,1,'Still Photographer'),(12312,1399146,2,'Script Supervisor'),(12312,1407364,9,'Stunt Coordinator'),(12312,1422979,6,'Sound Effects Editor'),(12312,1433719,6,'Sound Effects Editor'),(12312,1525236,8,'Costume Design'),(12312,1550778,1,'Camera Operator'),(12312,1550778,1,'Steadicam Operator'),(12312,1555637,6,'Production Sound Mixer'),(12312,1564358,6,'Boom Operator'),(11306,531,6,'Original Music Composer'),(11306,1527,1,'Director of Photography'),(11306,13673,5,'Editor'),(11306,13918,3,'Producer'),(11306,19242,4,'Screenplay'),(11306,10781,2,'Director'),(11306,1393558,7,'Leadman'),(12508,1202,3,'Executive Producer'),(12508,894,6,'Original Music Composer'),(12508,1461,3,'Executive Producer'),(12508,6050,1,'Director of Photography'),(12508,57082,4,'Screenplay'),(12508,18356,2,'Director'),(12508,59920,3,'Producer'),(12508,58720,5,'Editor'),(12508,72579,3,'Executive Producer'),(12508,1460574,3,'Producer'),(25793,20019,2,'Director'),(25793,1059118,4,'Screenplay'),(25793,1842583,4,'Novel'),(10534,578,2,'Director'),(10534,578,3,'Executive Producer'),(10534,9163,5,'Editor'),(10534,16829,4,'Screenplay'),(10534,17398,3,'Producer'),(10534,22100,1,'Director of Photography'),(10534,27148,3,'Producer'),(10534,59472,6,'Original Music Composer'),(10534,65546,4,'Novel'),(10534,65547,4,'Novel'),(10871,869,3,'Producer'),(10871,7671,2,'Director'),(10871,7671,3,'Producer'),(10871,3987,5,'Editor'),(10871,7728,6,'Music'),(10871,11409,1,'Director of Photography'),(10871,67808,4,'Screenplay'),(13503,58712,2,'Director'),(13503,74597,4,'Author'),(13503,74598,4,'Screenplay'),(13503,74599,4,'Screenplay'),(13600,31,3,'Producer'),(13600,1901,4,'Screenplay'),(13600,2073,3,'Casting'),(13600,4671,5,'Editor'),(13600,5334,8,'Makeup Designer'),(13600,5490,3,'Casting'),(13600,8525,7,'Production Design'),(13600,9819,7,'Supervising Art Director'),(13600,12756,3,'Executive Producer'),(13600,15846,8,'Hair Designer'),(13600,19310,8,'Costume Design'),(13600,27098,3,'Producer'),(13600,25365,3,'Casting'),(13600,40545,1,'Director of Photography'),(13600,57193,2,'Director'),(13600,60239,3,'Executive Producer'),(13600,60246,3,'Producer'),(13600,70789,6,'Music'),(13600,82151,4,'Author'),(13600,82152,5,'Editor'),(13600,194881,7,'Art Direction'),(13600,957666,7,'Set Decoration'),(13600,982992,7,'Art Direction'),(13600,1014915,3,'Casting Associate'),(13600,1200282,8,'Assistant Costume Designer'),(13600,1324128,8,'Costume Supervisor'),(13600,1409237,10,'Animation Supervisor'),(13600,1413808,2,'Script Supervisor'),(13600,1453550,7,'Conceptual Design'),(13600,1555215,3,'Casting Associate'),(13600,1555216,7,'Art Direction'),(14324,1253,7,'Production Design'),(14324,16787,3,'Producer'),(14324,23451,6,'Music'),(14324,33317,2,'Director'),(14324,33317,4,'Writer'),(14324,53521,3,'Co-Producer'),(14324,65456,3,'Executive Producer'),(14324,998152,3,'Line Producer'),(14324,1344778,3,'Producer'),(14325,1997,4,'Writer'),(14325,2043,3,'Producer'),(14325,2241,5,'Editor'),(14325,3965,3,'Casting'),(14325,4140,6,'Music'),(14325,5501,2,'Director'),(14325,5508,7,'Production Design'),(14325,35594,8,'Costume Design'),(14325,36619,5,'Editor'),(14325,50140,1,'Director of Photography'),(14325,54777,3,'Casting'),(14325,1034748,3,'Casting'),(14325,1469339,2,'Script Supervisor'),(23168,880,4,'Screenplay'),(23168,880,2,'Director'),(23168,1809,5,'Editor'),(23168,2950,1,'Director of Photography'),(23168,2953,3,'Casting'),(23168,5553,6,'Original Music Composer'),(23168,12781,3,'Executive Producer'),(23168,25140,7,'Production Design'),(23168,16729,3,'Producer'),(23168,36605,8,'Costume Design'),(23168,39386,4,'Screenplay'),(23168,54211,3,'Executive Producer'),(23168,54212,3,'Executive Producer'),(23168,67759,3,'Producer'),(23168,119233,6,'Additional Soundtrack'),(23168,225633,4,'Screenplay'),(23168,225634,3,'Executive Producer'),(23168,225635,6,'Original Music Composer'),(23168,957368,7,'Set Decoration'),(23168,960673,7,'Art Direction'),(23168,970155,3,'Co-Producer'),(23168,1311828,9,'Special Effects'),(23168,1323076,8,'Makeup Department Head'),(23168,1323077,8,'Costume Supervisor'),(23168,1368867,10,'Special Effects Supervisor'),(23168,1384375,10,'Visual Effects Coordinator'),(23168,1392615,3,'Production Supervisor'),(23168,1400535,1,'Camera Operator'),(23168,1419120,3,'Location Manager'),(23168,1428585,8,'Hairstylist'),(23168,1428851,2,'Script Supervisor'),(23168,1465193,4,'Novel'),(23168,1551352,6,'Sound Mixer'),(23168,1551776,9,'Stunt Coordinator'),(23168,1559640,2,'Assistant Director'),(23168,1588581,9,'Stunts'),(23168,1588730,5,'Digital Intermediate'),(23168,1656613,6,'Boom Operator'),(10488,6348,8,'Costume Design'),(10488,6411,7,'Art Direction'),(10488,7262,1,'Director of Photography'),(10488,13585,3,'Casting'),(10488,9152,6,'Original Music Composer'),(10488,19284,7,'Production Design'),(10488,25058,5,'Editor'),(10488,65378,3,'Producer'),(10488,65378,4,'Screenplay'),(10488,66218,2,'Director'),(10488,66218,4,'Screenplay'),(10488,66219,2,'Director'),(10488,66219,4,'Screenplay'),(10488,75292,7,'Set Decoration'),(10488,939990,7,'Art Direction'),(10488,985874,4,'Screenplay'),(10488,1391711,7,'Art Direction'),(10488,1458871,4,'Novel'),(10488,1458872,2,'Script Supervisor'),(23742,799,6,'Music'),(23742,19303,2,'Director'),(23742,17630,3,'Producer'),(23742,21405,1,'Director of Photography'),(23742,23485,3,'Producer'),(23742,73453,3,'Executive Producer'),(23742,90542,3,'Executive Producer'),(23742,90542,4,'Writer'),(23742,90543,3,'Executive Producer'),(23742,90543,4,'Writer'),(23742,113987,3,'Producer'),(11001,908,5,'Editor'),(11001,1999,6,'Original Music Composer'),(11001,11874,3,'Producer'),(11001,28240,1,'Director of Photography'),(11001,59920,3,'Producer'),(11001,56911,2,'Director'),(11001,56913,4,'Screenplay'),(11001,67754,4,'Screenplay'),(11001,67755,4,'Screenplay'),(16911,23437,6,'Music'),(16911,80999,2,'Director'),(16911,82707,4,'Writer'),(16911,82708,4,'Writer'),(16911,150634,4,'Novel'),(16911,150635,4,'Novel'),(16911,238504,10,'Visual Effects Supervisor'),(16911,932931,4,'Writer'),(16911,936817,7,'Art Direction'),(16911,1040898,3,'Producer'),(16911,1073744,5,'Editor'),(16911,1173964,3,'Casting'),(16911,1179540,7,'Production Design'),(16911,1293486,3,'Producer'),(16911,1327266,9,'Cinematography'),(16911,1377268,10,'Visual Effects Supervisor'),(16911,1391523,7,'Art Direction'),(16911,1393260,9,'Sound Recordist'),(16911,1393264,10,'Visual Effects Supervisor'),(16911,1393265,10,'Visual Effects Supervisor'),(16911,1401620,6,'Foley'),(16911,1407887,9,'Makeup Effects'),(16911,1412719,11,'Gaffer'),(16911,1428466,3,'Casting'),(16911,1428467,3,'Casting'),(16911,1429082,7,'Art Direction'),(16911,1429083,7,'Art Direction'),(16911,1429084,7,'Art Direction'),(16911,1429085,8,'Costume Design'),(16911,1429086,8,'Costume Design'),(16911,1429087,8,'Costume Design'),(16911,1429088,8,'Makeup Artist'),(16911,1429089,8,'Makeup Artist'),(16911,1429092,8,'Makeup Artist'),(16911,1429199,8,'Wigmaker'),(16911,1429201,3,'Production Manager'),(16911,1429204,1,'Camera Operator'),(16911,1429207,1,'Camera Operator'),(16911,1429210,1,'Steadicam Operator'),(16911,1429211,1,'Steadicam Operator'),(16911,1429213,1,'Steadicam Operator'),(16911,1429216,1,'Underwater Camera'),(16911,1429224,6,'Sound Editor'),(16911,1429225,6,'Sound Editor'),(16911,1429230,9,'Stunt Coordinator'),(16911,1429232,11,'Gaffer'),(16911,1429233,3,'Location Manager'),(16911,1429234,10,'Visual Effects Supervisor'),(16911,1429235,10,'Visual Effects Supervisor'),(16911,1429236,9,'Visual Effects Art Director'),(23048,356,1,'Director of Photography'),(23048,3036,3,'Producer'),(23048,3227,2,'Director'),(23048,7184,5,'Editor'),(23048,15427,7,'Production Design'),(23048,22147,7,'Set Decoration'),(23048,22219,3,'Casting'),(23048,23486,6,'Original Music Composer'),(23048,32200,7,'Art Direction'),(23048,52805,3,'Executive Producer'),(23048,57431,3,'Producer'),(23048,59961,3,'Production Manager'),(23048,68389,3,'Producer'),(23048,74619,4,'Screenplay'),(23048,212576,4,'Screenplay'),(23048,347335,4,'Story'),(23048,347335,4,'Screenplay'),(23048,965666,8,'Costume Design'),(23048,1316504,8,'Makeup Department Head'),(23048,1325907,7,'Art Direction'),(23048,1460786,2,'Script Supervisor'),(23048,1468801,5,'Editor'),(31908,52035,4,'Screenplay'),(31908,3026,2,'Director'),(10219,149,1,'Director of Photography'),(10219,1213,6,'Original Music Composer'),(10219,3190,5,'Editor'),(10219,5144,4,'Screenplay'),(10219,33433,2,'Director'),(10219,33433,4,'Screenplay'),(10219,52042,3,'Co-Producer'),(10219,64711,4,'Novel'),(11802,5174,3,'Producer'),(11802,12107,3,'Producer'),(11802,71267,2,'Director'),(11802,71267,4,'Story'),(11802,71268,6,'Original Music Composer'),(11802,71269,1,'Director of Photography'),(11802,71270,5,'Editor'),(11802,1355894,2,'Layout'),(18785,298,3,'Executive Producer'),(18785,5387,1,'Director of Photography'),(18785,14189,5,'Editor'),(18785,14377,3,'Casting'),(18785,14753,3,'Producer'),(18785,20223,3,'Executive Producer'),(18785,23486,6,'Original Music Composer'),(18785,52114,4,'Screenplay'),(18785,52115,4,'Screenplay'),(18785,52600,7,'Production Design'),(18785,54211,3,'Executive Producer'),(18785,54212,3,'Executive Producer'),(18785,57130,2,'Director'),(18785,57130,3,'Producer'),(18785,57132,3,'Producer'),(18785,59833,3,'Executive Producer'),(18785,60935,3,'Casting'),(18785,61091,3,'Executive Producer'),(18785,957353,3,'Producer'),(18785,1424894,8,'Hairstylist'),(18785,1539172,11,'Lighting Technician'),(22881,1720,3,'Casting'),(22881,1225,6,'Original Music Composer'),(22881,10574,5,'Editor'),(22881,5545,3,'Co-Producer'),(22881,10950,3,'Executive Producer'),(22881,7855,7,'Production Design'),(22881,8411,8,'Costume Design'),(22881,21039,1,'Director of Photography'),(22881,25455,3,'Producer'),(22881,47285,3,'Producer'),(22881,47286,3,'Producer'),(22881,47287,3,'Executive Producer'),(22881,51449,3,'Executive Producer'),(22881,54040,2,'Director'),(22881,54040,4,'Writer'),(22881,83655,6,'Music Supervisor'),(22881,136186,4,'Novel'),(22881,948223,7,'Set Decoration'),(22881,956249,3,'Co-Producer'),(22881,960074,6,'Sound Effects Editor'),(22881,1071998,9,'Stunt Coordinator'),(22881,1096345,8,'Hair Department Head'),(22881,1117311,3,'Co-Producer'),(22881,1319750,7,'Art Direction'),(22881,1341813,6,'Music Editor'),(22881,1352979,6,'Music Editor'),(22881,1355878,6,'Sound Editor'),(22881,1355963,6,'Boom Operator'),(22881,1360097,5,'Dialogue Editor'),(22881,1378173,1,'Still Photographer'),(22881,1378228,6,'Sound Re-Recording Mixer'),(22881,1397822,6,'Supervising Sound Editor'),(22881,1399861,6,'Sound Re-Recording Mixer'),(22881,1412330,8,'Costume Supervisor'),(22881,1412333,9,'Transportation Coordinator'),(22881,1415607,7,'Art Department Coordinator'),(22881,1425343,5,'Dialogue Editor'),(22881,1455293,1,'Camera Operator'),(22881,1458202,2,'Script Supervisor'),(22881,1459196,8,'Makeup Department Head'),(22881,1548485,6,'Music Editor'),(22881,1550166,6,'Sound'),(10054,2294,2,'Director'),(10054,2294,5,'Editor'),(10054,2294,3,'Producer'),(10054,2294,6,'Original Music Composer'),(10054,2294,1,'Camera Operator'),(10054,2294,6,'Sound Re-Recording Mixer'),(10054,2294,4,'Writer'),(10054,2294,10,'Visual Effects Supervisor'),(10054,531,6,'Original Music Composer'),(10054,531,6,'Songs'),(10054,1307,3,'Executive Producer'),(10054,59839,3,'Executive Producer'),(10054,3113,1,'Director of Photography'),(10054,5911,3,'Producer'),(10054,4500,6,'Original Music Composer'),(10054,5913,3,'Casting'),(10054,5914,3,'Casting'),(10054,9545,3,'Casting'),(10054,11419,9,'Makeup Effects'),(10054,20489,9,'Property Master'),(10054,20490,8,'Costume Supervisor'),(10054,22107,8,'Costume Design'),(10054,53910,6,'Original Music Composer'),(10054,113140,10,'Visual Effects Supervisor'),(10054,57111,3,'Unit Production Manager'),(10054,57111,3,'Line Producer'),(10054,57112,3,'Co-Producer'),(10054,59287,9,'Makeup Effects'),(10054,59706,6,'Original Music Composer'),(10054,60665,3,'Casting'),(10054,62598,3,'Executive Producer'),(10054,63292,7,'Set Decoration'),(10054,92344,4,'Storyboard'),(10054,107372,9,'Makeup Effects'),(10054,144146,8,'Makeup Artist'),(10054,550058,3,'Casting Associate'),(10054,928588,3,'Casting Associate'),(10054,1015925,2,'Script Supervisor'),(10054,1124107,7,'Production Design'),(10054,1224272,9,'Special Effects Coordinator'),(10054,1341339,6,'Boom Operator'),(10054,1364410,5,'Dialogue Editor'),(10054,1378828,6,'Sound Re-Recording Mixer'),(10054,1395022,6,'Supervising Sound Editor'),(10054,1409877,6,'Music Editor'),(10054,1436536,5,'Dialogue Editor'),(10054,1438379,7,'Art Direction'),(10054,1440306,8,'Costume Supervisor'),(10054,1454527,7,'Assistant Art Director'),(10054,1535734,8,'Key Hair Stylist'),(10054,1538703,3,'Production Coordinator'),(10054,1571719,8,'Set Costumer'),(10054,1586922,6,'Original Music Composer'),(10054,1616410,7,'Set Designer'),(10054,1616412,3,'Casting Associate'),(11638,960,6,'Original Music Composer'),(11638,7536,8,'Costume Design'),(11638,10950,3,'Producer'),(11638,8677,1,'Director of Photography'),(11638,25141,5,'Editor'),(11638,70778,3,'Executive Producer'),(11638,70778,3,'Unit Production Manager'),(11638,18268,4,'Screenplay'),(11638,21589,7,'Production Design'),(11638,21718,7,'Art Direction'),(11638,31024,3,'Executive Producer'),(11638,36427,3,'Producer'),(11638,54904,4,'Screenplay'),(11638,54904,4,'Story'),(11638,68208,4,'Screenplay'),(11638,68208,4,'Story'),(11638,70777,2,'Director'),(11638,70779,3,'Producer'),(11638,70781,3,'Executive Producer'),(11638,582808,1,'Still Photographer'),(11638,1339460,6,'Music Editor'),(11638,1406098,6,'Supervising Sound Editor'),(11638,1409877,6,'Music Editor'),(11638,1416438,2,'Script Supervisor'),(11638,1422054,8,'Makeup Department Head'),(11638,1533708,3,'Production Supervisor'),(11638,1542688,9,'Stunt Coordinator'),(11638,1551326,8,'Hair Department Head'),(11638,1551327,7,'Set Decoration'),(11638,1551328,6,'Production Sound Mixer'),(11459,4950,1,'Director of Photography'),(11459,5392,8,'Costume Design'),(11459,6880,7,'Set Decoration'),(11459,7733,7,'Production Design'),(11459,9360,1,'Still Photographer'),(11459,10833,5,'Editor'),(11459,15347,6,'Original Music Composer'),(11459,15354,6,'Music Editor'),(11459,38415,3,'Executive Producer'),(11459,41080,3,'Casting'),(11459,66688,7,'Art Direction'),(11459,64151,2,'Director'),(11459,64830,3,'Producer'),(11459,68699,4,'Writer'),(11459,68700,4,'Writer'),(11459,69509,4,'Writer'),(11459,69510,3,'Executive Producer'),(11459,74978,6,'Sound Re-Recording Mixer'),(11459,83087,5,'Dialogue Editor'),(11459,83088,5,'Dialogue Editor'),(11459,83090,6,'Supervising Sound Editor'),(11459,83091,6,'Sound Re-Recording Mixer'),(11459,122464,6,'Sound Effects Editor'),(11459,936194,8,'Makeup Department Head'),(11459,957264,8,'Hair Department Head'),(11459,1244450,8,'Makeup Artist'),(11459,1323076,8,'Makeup Artist'),(11459,1336716,9,'CGI Supervisor'),(11459,1344278,2,'Script Supervisor'),(11459,1377502,1,'Still Photographer'),(11459,1387212,7,'Art Department Coordinator'),(11459,1389624,6,'Music Editor'),(11459,1400847,8,'Key Hair Stylist'),(11459,1415617,6,'Sound Effects Editor'),(11459,1415618,6,'Supervising Sound Editor'),(11459,1428230,9,'Transportation Coordinator'),(11459,1532248,8,'Makeup Artist'),(11459,1532250,8,'Hairstylist'),(11459,1551698,6,'Music Supervisor'),(11459,1555488,6,'Production Sound Mixer'),(10806,2997,3,'Producer'),(10806,5493,8,'Costume Design'),(10806,6189,5,'Editor'),(10806,6347,3,'Casting'),(10806,19157,7,'Set Decoration'),(10806,7754,5,'Editor'),(10806,7908,2,'Director'),(10806,9251,6,'Original Music Composer'),(10806,9869,7,'Production Design'),(10806,32588,4,'Screenplay'),(10806,56697,7,'Art Direction'),(10806,60012,1,'Director of Photography'),(10806,1393455,2,'Script Supervisor'),(13920,36,1,'Director of Photography'),(13920,541,5,'Editor'),(13920,4197,7,'Production Design'),(13920,1729,6,'Original Music Composer'),(13920,6347,3,'Casting'),(13920,10683,4,'Writer'),(13920,21004,8,'Co-Costume Designer'),(13920,53178,2,'Director'),(13920,57642,5,'Editor'),(13920,62739,3,'Producer'),(22949,904,1,'Director of Photography'),(22949,4500,6,'Music'),(22949,5329,7,'Production Design'),(22949,8157,6,'ADR & Dubbing'),(22949,9545,3,'Casting'),(22949,15306,3,'Producer'),(22949,15307,3,'Producer'),(22949,21223,5,'Editor'),(22949,29206,3,'Executive Producer'),(22949,35630,11,'Electrician'),(22949,36429,8,'Costume Design'),(22949,58363,6,'Sound Effects Editor'),(22949,46943,3,'Casting'),(22949,47050,4,'Writer'),(22949,47051,4,'Screenplay'),(22949,52469,3,'Associate Producer'),(22949,57822,3,'Producer'),(22949,63423,9,'Stunt Coordinator'),(22949,60014,7,'Art Direction'),(22949,60135,7,'Set Decoration'),(22949,60862,3,'Associate Producer'),(22949,60946,3,'Casting'),(22949,68016,6,'Orchestrator'),(22949,68573,2,'Director'),(22949,68636,5,'Editor'),(22949,146352,9,'Stunt Coordinator'),(22949,548446,6,'ADR & Dubbing'),(22949,566664,1,'Grip'),(22949,1324793,8,'Makeup Artist'),(22949,1333980,9,'Property Master'),(22949,1338372,6,'Foley'),(22949,1339453,9,'Stunt Coordinator'),(22949,1347761,2,'Script Supervisor'),(22949,1350244,10,'Visual Effects Producer'),(22949,1384762,6,'Sound Designer'),(22949,1387246,6,'Foley'),(22949,1391591,1,'Camera Operator'),(22949,1392906,10,'Visual Effects Producer'),(22949,1393571,1,'Steadicam Operator'),(22949,1395368,11,'Gaffer'),(22949,1399287,10,'Visual Effects Supervisor'),(22949,1404901,6,'ADR & Dubbing'),(22949,1405809,7,'Construction Coordinator'),(22949,1407018,9,'Special Effects Coordinator'),(22949,1411846,9,'Second Unit Cinematographer'),(22949,1412990,9,'Second Unit Cinematographer'),(22949,1417516,6,'Sound Effects Editor'),(22949,1434161,10,'Visual Effects Producer'),(22949,1451649,6,'ADR & Dubbing'),(22949,1459742,10,'Visual Effects'),(22949,1460587,9,'Special Effects'),(22949,1509350,3,'Associate Producer'),(22949,1509353,7,'Art Direction'),(22949,1509354,7,'Set Decoration'),(22949,1509355,8,'Hairstylist'),(22949,1509356,3,'Production Supervisor'),(22949,1509357,3,'Production Supervisor'),(22949,1509358,9,'Scenic Artist'),(22949,1509359,6,'Sound mixer'),(22949,1509361,6,'Boom Operator'),(22949,1509364,6,'ADR & Dubbing'),(22949,1509365,6,'Boom Operator'),(22949,1509366,9,'Special Effects'),(22949,1509367,9,'Special Effects'),(22949,1509368,9,'Special Effects'),(22949,1509369,9,'Special Effects'),(22949,1509370,9,'Special Effects'),(22949,1509371,9,'Special Effects'),(22949,1509372,10,'Visual Effects Producer'),(22949,1509373,10,'Visual Effects'),(22949,1509377,1,'Grip'),(22949,1509379,1,'Grip'),(22949,1509382,1,'Camera Operator'),(22949,1509383,9,'Loader'),(22949,1509390,1,'Grip'),(22949,1509391,11,'Electrician'),(22949,1509394,1,'Grip'),(22949,1509396,1,'Grip'),(22949,1509397,1,'Grip'),(22949,1509398,11,'Electrician'),(22949,1509405,3,'Location Manager'),(22949,1509407,7,'Location Scout'),(22949,1509408,7,'Location Scout'),(22949,1509409,7,'Location Scout'),(22949,1509410,9,'Choreographer'),(22949,1509412,9,'Thanks'),(22949,1509415,9,'Thanks'),(22949,1509416,9,'Thanks'),(22949,1509417,9,'Thanks'),(12437,1326,3,'Casting'),(12437,1373,7,'Production Design'),(12437,3950,3,'Producer'),(12437,3950,4,'Characters'),(12437,3952,3,'Producer'),(12437,3952,4,'Characters'),(12437,3953,3,'Producer'),(12437,3964,2,'Director'),(12437,40837,8,'Costume Design'),(12437,56786,1,'Director of Photography'),(12437,61847,5,'Editor'),(12437,72231,3,'Executive Producer'),(12437,72232,7,'Art Direction'),(12437,72233,7,'Art Direction'),(12437,72234,9,'Makeup Effects'),(12437,72235,8,'Hairstylist'),(12437,72236,11,'Lighting Technician'),(12437,72237,11,'Best Boy Electric'),(12437,72238,11,'Gaffer'),(12437,72240,8,'Costume Supervisor'),(12437,1248221,4,'Screenplay'),(12437,1248221,4,'Characters'),(12437,1447518,9,'Stunts'),(12437,1460588,9,'Special Effects'),(11648,550,3,'Producer'),(11648,551,3,'Producer'),(11648,1527,1,'Director of Photography'),(11648,7045,6,'Original Music Composer'),(11648,17164,5,'Editor'),(11648,21140,5,'Editor'),(11648,39727,3,'Executive Producer'),(11648,70738,2,'Director'),(11648,70738,4,'Screenplay'),(11648,70738,3,'Producer'),(11648,70739,4,'Novel'),(11648,70743,3,'Executive Producer'),(11648,70744,6,'Original Music Composer'),(11648,70745,6,'Original Music Composer'),(13051,7229,6,'Original Music Composer'),(13051,4844,3,'Executive Producer'),(13051,6043,5,'Editor'),(13051,6044,3,'Casting'),(13051,12028,2,'Director'),(13051,12028,3,'Producer'),(13051,12031,3,'Producer'),(13051,12033,1,'Director of Photography'),(13051,12040,8,'Costume Design'),(13051,19291,7,'Production Design'),(13051,30714,3,'Executive Producer'),(13051,51979,3,'Producer'),(13051,51980,3,'Executive Producer'),(13051,63989,3,'Producer'),(13051,74129,4,'Screenplay'),(13051,74130,9,'Video Game'),(13051,1014937,6,'Original Music Composer'),(34806,29,3,'Producer'),(34806,1217,5,'Editor'),(34806,21266,6,'Music'),(34806,29216,9,'Choreographer'),(34806,40545,1,'Director of Photography'),(34806,51612,3,'Producer'),(34806,51613,3,'Producer'),(34806,113225,2,'Director'),(34806,113226,4,'Writer'),(34806,963843,7,'Art Direction'),(34806,1336716,10,'Visual Effects Supervisor'),(11469,5175,5,'Editor'),(11469,6050,1,'Director of Photography'),(11469,14712,6,'Original Music Composer'),(11469,40243,2,'Director'),(11469,58143,4,'Screenplay'),(11469,17313,3,'Producer'),(23479,12964,2,'Director'),(23479,15406,4,'Writer'),(11667,1726,2,'Director'),(11667,1726,4,'Screenplay'),(11667,1825,5,'Editor'),(11667,2121,3,'Casting'),(11667,5912,6,'Music'),(11667,6919,5,'Editor'),(11667,7512,7,'Production Design'),(11667,12846,1,'Director of Photography'),(11667,12993,3,'Executive Producer'),(11667,15842,5,'Editor'),(11667,32035,3,'Producer'),(11667,21469,3,'Casting'),(11667,39108,5,'Editor'),(11667,57244,3,'Executive Producer'),(11667,70162,3,'Producer'),(11667,51228,5,'Editor'),(11667,1320944,8,'Costume Design'),(11667,1455461,1,'Camera Department Manager'),(10066,24,3,'Producer'),(10066,1091,3,'Producer'),(10066,1296,3,'Executive Producer'),(10066,9430,6,'Sound Designer'),(10066,9430,6,'Supervising Sound Editor'),(10066,9039,6,'Original Music Composer'),(10066,13245,5,'Editor'),(10066,19679,3,'Casting'),(10066,19680,3,'Casting'),(10066,22038,4,'Author'),(10066,22039,4,'Author'),(10066,29087,8,'Hairstylist'),(10066,29087,8,'Makeup Artist'),(10066,29475,3,'Unit Manager'),(10066,35148,8,'Costume Design'),(10066,37162,3,'Producer'),(10066,39726,3,'Executive Producer'),(10066,58192,1,'Director of Photography'),(10066,59521,2,'Director'),(10066,62738,4,'Author'),(10066,62739,3,'Executive Producer'),(10066,62739,3,'Unit Production Manager'),(10066,62740,3,'Co-Producer'),(10066,62741,3,'Associate Producer'),(10066,62745,7,'Set Decoration'),(10066,62742,7,'Art Direction'),(10066,62744,7,'Art Direction'),(10066,62743,7,'Production Design'),(10066,62746,8,'Costume Design'),(10066,75159,11,'Gaffer'),(10066,80828,9,'Special Effects Coordinator'),(10066,28285,6,'Orchestrator'),(10066,544372,10,'Digital Compositors'),(10066,1110992,9,'Stunt Coordinator'),(10066,1307803,9,'Stunts'),(10066,1384393,6,'Music Editor'),(10066,1391731,1,'Steadicam Operator'),(10066,1392084,6,'Foley Editor'),(10066,1392684,7,'Set Designer'),(10066,1394445,10,'Visual Effects Producer'),(10066,1395243,1,'Still Photographer'),(10066,1401593,1,'Aerial Director of Photography'),(10066,1401703,9,'Digital Effects Supervisor'),(10066,1403711,8,'Key Hair Stylist'),(10066,1412233,6,'Sound Recordist'),(10066,1412253,9,'Second Unit Cinematographer'),(10066,1412735,7,'Property Master'),(10066,1412739,9,'Scenic Artist'),(10066,1412741,6,'Sound Mixer'),(10066,1412758,3,'Publicist'),(10066,1418314,2,'Script Supervisor'),(10066,1427466,1,'Additional Camera'),(10066,1429252,5,'First Assistant Editor'),(10066,1431999,8,'Wigmaker'),(10066,1454940,8,'Set Costumer'),(10066,1458105,9,'Visual Effects Editor'),(10066,1465352,8,'Costume Supervisor'),(10066,1480964,7,'Art Department Coordinator'),(10066,1482837,6,'First Assistant Sound Editor'),(10066,1525547,10,'Special Effects Supervisor'),(10066,1527926,1,'First Assistant Camera'),(10066,1546580,3,'Executive In Charge Of Production'),(10066,1552549,5,'Color Timer'),(10066,1584249,2,'First Assistant Director'),(10066,1584252,10,'Visual Effects Coordinator'),(10066,1584257,4,'Storyboard'),(10066,1587380,3,'Production Accountant'),(10066,1588673,8,'Set Dressing Artist'),(10066,1588683,6,'Boom Operator'),(10066,1608997,7,'Construction Coordinator'),(10066,1671607,11,'Rigging Gaffer'),(10066,1751460,7,'Sculptor'),(10066,1775949,3,'Production Coordinator'),(10066,1813211,11,'Best Boy Electric'),(10066,1851156,3,'Casting Associate'),(10066,1864755,7,'Assistant Art Director'),(10066,1864758,7,'Construction Foreman'),(10066,1864759,7,'Greensman'),(10066,1864760,7,'Painter'),(10066,1864762,7,'Conceptual Illustrator'),(10066,1864765,7,'Standby Painter'),(10066,1864768,1,'Key Grip'),(10066,1864771,1,'Grip'),(10066,1864786,9,'Carpenter'),(10066,1864787,9,'Craft Service'),(10066,1864788,9,'Driver'),(10066,1864789,9,'Loader'),(10066,1864792,9,'Picture Car Coordinator'),(10066,1864793,9,'Propmaker'),(10066,1864794,9,'Systems Administrators & Support'),(10066,1864796,11,'Lighting Technician'),(10066,1864798,3,'Location Manager'),(10066,1864800,6,'Sound Effects Editor'),(10066,1864801,10,'Shading'),(10066,1864803,10,'Visual Effects'),(10066,1864804,10,'Visual Effects Supervisor'),(13515,3965,3,'Casting'),(13515,7735,8,'Costume Design'),(13515,17004,6,'Music'),(13515,23461,1,'Director of Photography'),(13515,41324,8,'Costume Design'),(13515,54777,3,'Casting'),(13515,59290,3,'Producer'),(13515,59290,4,'Writer'),(13515,59291,2,'Director'),(13515,59291,4,'Writer'),(13515,64130,5,'Editor'),(13515,75040,3,'Producer'),(13515,1034748,3,'Casting'),(11979,1296,3,'Executive Producer'),(11979,6625,3,'Executive Producer'),(11979,8299,3,'Executive Producer'),(11979,12205,8,'Costume Design'),(11979,15326,3,'Casting'),(11979,17610,3,'Casting'),(11979,21068,6,'Music'),(11979,27099,1,'Director of Photography'),(11979,28741,2,'Director'),(11979,37280,5,'Editor'),(11979,41551,3,'Executive Producer'),(11979,46077,3,'Producer'),(11979,61239,4,'Screenplay'),(11979,71149,4,'Screenplay'),(11622,2215,3,'Casting'),(11622,4376,1,'Director of Photography'),(11622,15427,7,'Production Design'),(11622,16938,3,'Producer'),(11622,28904,2,'Director'),(11622,28904,4,'Screenplay'),(11622,28904,3,'Producer'),(11622,30391,8,'Makeup Department Head'),(11622,42908,3,'Executive Producer'),(11622,40471,8,'Costume Design'),(11622,58208,5,'Editor'),(11622,70052,3,'Executive Producer'),(11622,70053,3,'Executive Producer'),(11622,70054,6,'Original Music Composer'),(11622,548412,8,'Makeup Artist'),(11622,1315647,8,'Hairstylist'),(11622,1339468,2,'Script Supervisor'),(11622,1392461,4,'Screenplay'),(11622,1478908,8,'Makeup Artist'),(11622,1711837,9,'Transportation Co-Captain'),(10410,495,3,'Casting'),(10410,518,2,'Director'),(10410,518,3,'Producer'),(10410,1255,4,'Screenplay'),(10410,1255,3,'Associate Producer'),(10410,1258,1,'Director of Photography'),(10410,2123,5,'Editor'),(10410,3393,6,'Original Music Composer'),(10410,3394,5,'Editor'),(10410,5167,7,'Production Design'),(10410,10631,9,'Special Effects Coordinator'),(10410,5490,3,'Casting'),(10410,8527,8,'Costume Design'),(10410,12051,7,'Art Direction'),(10410,12844,3,'Co-Producer'),(10410,32035,3,'Producer'),(10410,28107,3,'Associate Producer'),(10410,39973,3,'Producer'),(10410,50726,8,'Makeup Designer'),(10410,64204,1,'Camera Operator'),(10410,65018,3,'Executive Producer'),(10410,406204,8,'Makeup Department Head'),(10410,983118,1,'Steadicam Operator'),(10410,1177850,1,'Still Photographer'),(10410,1206905,8,'Costume Supervisor'),(10410,1209689,7,'Set Decoration'),(10410,1377239,2,'Script Supervisor'),(10410,1391391,1,'Additional Camera'),(10410,1391591,1,'Additional Camera'),(10410,1397317,9,'Property Master'),(10410,1400741,8,'Hair Department Head'),(10410,1403639,1,'Additional Camera'),(10410,1412492,11,'Rigging Gaffer'),(10410,1535949,8,'Assistant Costume Designer'),(10410,1535950,8,'Costume Supervisor'),(10410,1535986,1,'Camera Operator'),(10410,1536088,8,'Costume Supervisor'),(10410,1536634,8,'Costume Supervisor'),(10410,1552038,11,'Rigging Gaffer'),(10410,1594981,1,'Camera Operator'),(10410,1594983,1,'First Assistant Camera'),(10410,1594984,1,'Additional Camera'),(10410,1594987,11,'Rigging Gaffer'),(14442,8383,7,'Set Decoration'),(14442,391,7,'Production Design'),(14442,1302,3,'Casting'),(14442,1307,3,'Executive Producer'),(14442,59839,3,'Executive Producer'),(14442,3996,6,'Sound Re-Recording Mixer'),(14442,5330,7,'Supervising Art Director'),(14442,5334,8,'Makeup Department Head'),(14442,6625,3,'Executive Producer'),(14442,9001,5,'Editor'),(14442,40749,2,'Script Supervisor'),(14442,40796,1,'Still Photographer'),(14442,15878,7,'Art Direction'),(14442,15883,10,'Visual Effects Designer'),(14442,18991,6,'Production Sound Mixer'),(14442,19310,8,'Costume Design'),(14442,20062,3,'Producer'),(14442,20064,3,'Executive Producer'),(14442,44006,9,'Stunt Coordinator'),(14442,24256,1,'Director of Photography'),(14442,26140,9,'Additional Music'),(14442,40589,4,'Screenplay'),(14442,40590,4,'Screenplay'),(14442,43155,8,'Hairstylist'),(14442,43161,3,'Unit Production Manager'),(14442,57263,6,'Music'),(14442,62514,2,'Director'),(14442,83748,4,'Book'),(14442,83749,4,'Screenplay'),(14442,83750,4,'Screenplay'),(14442,83751,4,'Screenplay'),(14442,117231,6,'Assistant Sound Editor'),(14442,117234,6,'Foley Editor'),(14442,117239,6,'Sound Effects Editor'),(14442,953724,3,'Co-Producer'),(14442,1029064,2,'Second Assistant Director'),(14442,1167205,4,'Storyboard'),(14442,1223002,3,'Co-Producer'),(14442,1229317,9,'Choreographer'),(14442,1246837,3,'Producer'),(14442,1252225,3,'Co-Producer'),(14442,1321272,7,'Art Direction'),(14442,1328731,3,'Casting Assistant'),(14442,1334165,9,'Property Master'),(14442,1340111,9,'Post Production Supervisor'),(14442,1393323,10,'Visual Effects Producer'),(14442,1400073,9,'Visual Effects Editor'),(14442,1403544,1,'Camera Operator'),(14442,1406595,3,'Executive In Charge Of Post Production'),(14442,1406905,6,'Supervising Music Editor'),(14442,1407864,11,'Rigging Gaffer'),(14442,1425588,6,'Foley'),(14442,1425590,6,'Sound Re-Recording Mixer'),(14442,1427512,5,'First Assistant Editor'),(14442,1453613,4,'Storyboard'),(14442,1462394,3,'Publicist'),(14442,1534135,11,'Gaffer'),(14442,1536114,8,'Hair Department Head'),(14442,1537500,9,'Executive Music Producer'),(14442,1561533,5,'Dialogue Editor'),(14442,1564233,5,'Color Timer'),(14442,1578646,9,'Transportation Captain'),(14442,1578651,2,'Third Assistant Director'),(14442,1578655,3,'Location Manager'),(14442,1578658,6,'Boom Operator'),(14442,1728086,1,'Camera Operator'),(14442,1728086,1,'Steadicam Operator'),(14442,1737943,2,'First Assistant Director'),(14442,1737946,7,'Assistant Art Director'),(14442,1737947,8,'Seamstress'),(14442,1737948,3,'Production Coordinator'),(14442,1737952,6,'First Assistant Sound Editor'),(14442,1737953,6,'Assistant Sound Editor'),(14442,1737955,3,'Production Accountant'),(14442,1737956,10,'Visual Effects Coordinator'),(14175,80691,2,'Director'),(14175,134191,4,'Writer'),(14175,240779,10,'Animation'),(14175,1458349,4,'Storyboard'),(11004,323,2,'Director'),(11004,323,3,'Producer'),(11004,2997,3,'Producer'),(11004,6453,5,'Editor'),(11004,19155,6,'Original Music Composer'),(11004,10967,4,'Screenplay'),(11004,11099,1,'Director of Photography'),(11004,67758,4,'Novel'),(11918,59839,3,'Executive Producer'),(11918,7181,3,'Producer'),(11918,10397,8,'Costume Design'),(11918,12987,3,'Producer'),(11918,15427,7,'Production Design'),(11918,14753,3,'Unit Production Manager'),(11918,23739,6,'Original Music Composer'),(11918,11371,1,'Director of Photography'),(11918,35796,2,'Director'),(11918,35796,4,'Screenplay'),(11918,35796,3,'Producer'),(11918,71278,3,'Executive Producer'),(11918,71279,5,'Editor'),(11918,589946,7,'Set Decoration'),(11918,1208437,8,'Makeup Department Head'),(11918,1401606,8,'Hair Department Head'),(11918,1411503,8,'Key Hair Stylist'),(11918,1465491,3,'Production Supervisor'),(10012,434,3,'Casting'),(10012,436,3,'Casting'),(10012,1305,6,'Music Editor'),(10012,1307,3,'Executive Producer'),(10012,59839,3,'Executive Producer'),(10012,3964,10,'Creature Design'),(10012,7229,6,'Original Music Composer'),(10012,5140,2,'Director'),(10012,10958,7,'Set Decoration'),(10012,7856,7,'Production Design'),(10012,9654,9,'Stunt Coordinator'),(10012,9347,9,'Second Unit Cinematographer'),(10012,13223,5,'Color Timer'),(10012,12781,3,'Co-Executive Producer'),(10012,13931,9,'Second Unit Cinematographer'),(10012,16178,9,'Makeup Effects'),(10012,23872,8,'Makeup Artist'),(10012,28401,3,'Unit Production Manager'),(10012,28401,3,'Co-Executive Producer'),(10012,28402,3,'Co-Producer'),(10012,26458,4,'Screenplay'),(10012,26458,3,'Producer'),(10012,35581,3,'Producer'),(10012,35582,3,'Associate Producer'),(10012,27226,5,'Editor'),(10012,41592,7,'Art Direction'),(10012,51457,9,'Makeup Effects'),(10012,52016,8,'Costume Design'),(10012,57135,1,'Director of Photography'),(10012,70149,1,'Camera Operator'),(10012,58797,9,'Stunt Coordinator'),(10012,61121,9,'Creative Consultant'),(10012,62011,3,'Executive Producer'),(10012,15756,3,'Executive Producer'),(10012,62013,5,'Editor'),(10012,62778,3,'Casting'),(10012,63293,7,'Art Direction'),(10012,68615,5,'Additional Editing'),(10012,83083,6,'ADR & Dubbing'),(10012,83087,5,'Dialogue Editor'),(10012,83090,6,'Supervising Sound Editor'),(10012,91093,6,'Foley'),(10012,112521,7,'Production Design'),(10012,112609,6,'Sound Re-Recording Mixer'),(10012,96746,1,'Steadicam Operator'),(10012,103957,7,'Construction Coordinator'),(10012,111832,9,'Stand In'),(10012,112289,9,'Video Assist Operator'),(10012,231573,1,'Camera Intern'),(10012,960963,7,'Set Decoration'),(10012,965383,5,'Editorial Production Assistant'),(10012,1088351,3,'Casting Associate'),(10012,1108768,1,'Camera Operator'),(10012,1179951,9,'Propmaker'),(10012,1186279,1,'Steadicam Operator'),(10012,1190778,9,'Transportation Coordinator'),(10012,1200368,7,'Set Designer'),(10012,1204332,11,'Gaffer'),(10012,1208698,3,'Casting'),(10012,1214616,3,'Co-Producer'),(10012,1316292,8,'Prosthetic Makeup Artist'),(10012,1322015,8,'Makeup Department Head'),(10012,1338372,6,'Foley'),(10012,1339862,10,'Animation'),(10012,1347775,2,'Script Supervisor'),(10012,1355531,2,'Script Supervisor'),(10012,1358021,10,'Visual Effects Supervisor'),(10012,1361676,6,'Scoring Mixer'),(10012,1364417,6,'Sound Re-Recording Mixer'),(10012,1367493,6,'Foley'),(10012,1393365,1,'Steadicam Operator'),(10012,1395178,9,'Makeup Effects'),(10012,1397844,9,'Sound Recordist'),(10012,1398944,7,'Sculptor'),(10012,1400374,1,'Camera Operator'),(10012,1400529,9,'Post Production Supervisor'),(10012,1401606,8,'Hairstylist'),(10012,1404845,10,'Visual Effects Producer'),(10012,1409236,9,'Digital Effects Supervisor'),(10012,1411271,1,'Camera Operator'),(10012,1411503,8,'Key Hair Stylist'),(10012,1413129,9,'Transportation Coordinator'),(10012,1415601,8,'Hair Department Head'),(10012,1415603,8,'Makeup Artist'),(10012,1415605,8,'Makeup Artist'),(10012,1415606,9,'Makeup Effects'),(10012,1415607,7,'Art Department Coordinator'),(10012,1415608,7,'Art Department Coordinator'),(10012,1415610,9,'Property Master'),(10012,1415611,7,'Greensman'),(10012,1415612,7,'Leadman'),(10012,1415613,7,'Set Designer'),(10012,1415614,7,'Set Designer'),(10012,1415616,6,'Sound Effects Editor'),(10012,1415617,6,'Sound Effects Editor'),(10012,1415618,6,'Sound Effects Editor'),(10012,1415619,9,'Special Effects Coordinator'),(10012,1415620,9,'Visual Effects Editor'),(10012,1415621,10,'Animation Supervisor'),(10012,1415622,9,'Visual Effects Editor'),(10012,1415623,10,'Visual Effects Producer'),(10012,1415624,10,'Visual Effects Producer'),(10012,1415625,10,'Visual Effects Producer'),(10012,1415626,10,'Visual Effects Producer'),(10012,1415627,10,'Visual Effects Supervisor'),(10012,1415628,9,'CG Supervisor'),(10012,1415629,9,'CG Supervisor'),(10012,1415630,10,'Visual Effects Supervisor'),(10012,1415631,9,'CGI Supervisor'),(10012,1415632,1,'Camera Operator'),(10012,1415633,1,'Camera Operator'),(10012,1415634,9,'Second Unit Cinematographer'),(10012,1415635,11,'Rigging Gaffer'),(10012,1415636,1,'Still Photographer'),(10012,1415637,11,'Gaffer'),(10012,1415638,11,'Gaffer'),(10012,1415639,8,'Set Costumer'),(10012,1415640,8,'Costume Supervisor'),(10012,1415641,8,'Costume Supervisor'),(10012,1415642,6,'Music Editor'),(10012,1415644,9,'Unit Publicist'),(10012,1415647,3,'Location Manager'),(10012,1415648,3,'Location Manager'),(10012,1415649,3,'Location Manager'),(10012,1415650,9,'Unit Publicist'),(10012,1415651,3,'Production Accountant'),(10012,1422412,10,'Special Effects Supervisor'),(10012,1463300,4,'Storyboard'),(10012,1475742,3,'Co-Producer'),(10012,1475743,3,'Co-Producer'),(10012,1526755,9,'Post Production Assistant'),(10012,1538374,3,'Production Supervisor'),(10012,1545450,6,'Music Supervisor'),(10012,1546852,9,'Armorer'),(10012,1550198,1,'Camera Technician'),(10012,1550574,6,'Orchestrator'),(10012,1551516,11,'Electrician'),(10012,1553639,10,'3D Supervisor'),(10012,1567920,11,'Rigging Grip'),(10012,1570813,10,'Digital Compositors'),(10012,1599639,9,'Set Medic'),(10012,1619998,11,'Best Boy Electric'),(10012,1644476,11,'Lighting Artist'),(10012,1667273,6,'Boom Operator'),(10012,1673003,9,'Stunts'),(10012,1688593,1,'Key Grip'),(10012,1746675,10,'Visual Effects'),(10012,1755299,6,'Sound Mixer'),(10012,1758616,8,'Makeup Department Head'),(10012,1760132,2,'First Assistant Director'),(10012,1771760,9,'Utility Stunts'),(10012,1783643,9,'Loader'),(10012,1811598,7,'Art Department Assistant'),(10012,1811603,1,'First Assistant Camera'),(10012,1811607,1,'Grip'),(10012,1811609,8,'Set Dressing Artist'),(10012,1811612,9,'Driver'),(10012,1811616,9,'Set Production Assistant'),(10012,1811620,9,'Transportation Co-Captain'),(10012,1811621,11,'Lighting Technician'),(10012,1811624,3,'Production Coordinator'),(10012,1811627,6,'Assistant Sound Editor'),(10012,1811635,10,'Visual Effects Coordinator'),(11823,1999,6,'Original Music Composer'),(11823,2236,3,'Producer'),(11823,2238,3,'Producer'),(11823,2240,1,'Director of Photography'),(11823,16328,4,'Screenplay'),(11823,9150,3,'Executive Producer'),(11823,9151,3,'Producer'),(11823,12759,5,'Editor'),(11823,33315,2,'Director'),(11823,66218,4,'Screenplay'),(11823,66219,4,'Screenplay'),(11823,70609,3,'Producer'),(18886,8328,2,'Director'),(18886,19102,1,'Director of Photography'),(18886,69567,4,'Writer'),(13496,894,6,'Original Music Composer'),(13496,908,5,'Editor'),(13496,5633,7,'Set Decoration'),(13496,18457,3,'Casting'),(13496,19535,4,'Screenplay'),(13496,31027,1,'Director of Photography'),(13496,37159,4,'Screenplay'),(13496,56911,2,'Director'),(13496,59475,7,'Production Design'),(13496,954395,8,'Costume Design'),(13496,1124107,7,'Production Design'),(18320,8383,7,'Set Decoration'),(18320,1032,3,'Producer'),(18320,1302,3,'Casting'),(18320,3050,5,'Editor'),(18320,8194,1,'Director of Photography'),(18320,9027,8,'Costume Design'),(18320,11226,7,'Art Direction'),(18320,10747,4,'Writer'),(18320,16729,3,'Producer'),(18320,23425,7,'Art Direction'),(18320,23451,6,'Original Music Composer'),(18320,30463,7,'Supervising Art Director'),(18320,69371,2,'Director'),(18320,114479,3,'Producer'),(18320,115098,3,'Producer'),(18320,115099,5,'Editor'),(18320,102873,7,'Production Design'),(18320,1327155,8,'Costume Supervisor'),(22787,1091,3,'Producer'),(22787,3961,5,'Editor'),(22787,3962,8,'Costume Design'),(22787,8303,3,'Executive Producer'),(22787,17611,3,'Casting'),(22787,19679,3,'Casting'),(22787,21962,6,'Music'),(22787,22038,4,'Screenplay'),(22787,22039,4,'Screenplay'),(22787,37162,3,'Producer'),(22787,39726,3,'Executive Producer'),(22787,40320,7,'Art Direction'),(22787,58498,2,'Director'),(22787,62743,7,'Production Design'),(22787,68016,6,'Orchestrator'),(22787,75830,7,'Set Decoration'),(22787,113914,3,'Executive Producer'),(22787,92206,7,'Art Direction'),(22787,112947,4,'Screenplay'),(22787,112948,4,'Screenplay'),(22787,485159,1,'Director of Photography'),(22787,961106,3,'Casting'),(22787,979152,3,'Producer'),(22787,1119658,5,'First Assistant Editor'),(22787,1198825,3,'Casting'),(22787,1325886,7,'Art Direction'),(22787,1325887,8,'Makeup Department Head'),(22787,1325888,8,'Costume Supervisor'),(22787,1519867,2,'Script Supervisor'),(13056,869,3,'Producer'),(13056,3498,3,'Associate Producer'),(13056,3965,3,'Casting'),(13056,6045,7,'Production Design'),(13056,10850,3,'Executive Producer'),(13056,16341,8,'Makeup Artist'),(13056,17427,6,'Sound Mixer'),(13056,18873,4,'Writer'),(13056,18875,4,'Writer'),(13056,21224,9,'Special Effects Coordinator'),(13056,22141,3,'Executive Producer'),(13056,40513,3,'Executive Producer'),(13056,54777,3,'Casting'),(13056,112662,3,'Production Manager'),(13056,56359,2,'Director'),(13056,60102,6,'Music'),(13056,60521,5,'Editor'),(13056,60784,3,'Executive Producer'),(13056,60786,3,'Executive Producer'),(13056,60787,3,'Associate Producer'),(13056,61652,3,'Co-Producer'),(13056,61899,3,'Executive Producer'),(13056,62841,3,'Co-Producer'),(13056,68441,9,'Cinematography'),(13056,72956,3,'Executive In Charge Of Production'),(13056,78417,4,'Writer'),(13056,35287,4,'Characters'),(13056,79185,8,'Prosthetic Supervisor'),(13056,80804,9,'Post Production Supervisor'),(13056,92206,7,'Art Direction'),(13056,92234,9,'Stunt Coordinator'),(13056,95842,6,'Music Editor'),(13056,102434,10,'Visual Effects Supervisor'),(13056,112272,5,'Assistant Editor'),(13056,197930,9,'Stunt Coordinator'),(13056,936321,9,'Transportation Coordinator'),(13056,937174,3,'Executive Producer'),(13056,961452,8,'Costume Design'),(13056,1034748,3,'Casting'),(13056,1198826,8,'Costume Supervisor'),(13056,1210734,9,'Dialect Coach'),(13056,1235815,9,'Stunt Coordinator'),(13056,1325886,7,'Art Direction'),(13056,1368866,6,'Sound Re-Recording Mixer'),(13056,1372884,1,'Camera Operator'),(13056,1372884,1,'Steadicam Operator'),(13056,1384358,7,'Assistant Art Director'),(13056,1384362,7,'Set Designer'),(13056,1384397,2,'Script Supervisor'),(13056,1391751,7,'Set Designer'),(13056,1391756,7,'Set Designer'),(13056,1392106,1,'Still Photographer'),(13056,1399931,5,'Color Timer'),(13056,1402034,11,'Gaffer'),(13056,1403707,11,'Rigging Gaffer'),(13056,1406051,1,'Still Photographer'),(13056,1409701,7,'Assistant Art Director'),(13056,1417514,6,'Sound Re-Recording Mixer'),(13056,1419733,9,'Unit Publicist'),(13056,1440900,9,'Makeup Effects'),(13056,1447161,3,'Location Manager'),(13056,1469316,7,'Set Decoration'),(13056,1525208,8,'Makeup Department Head'),(13056,1525209,7,'Art Department Coordinator'),(13056,1531246,9,'Makeup Effects'),(13056,1556535,1,'Camera Operator'),(13056,1611781,7,'Construction Coordinator'),(13056,1611787,8,'Assistant Costume Designer'),(13056,1634301,3,'Production Coordinator'),(13056,1646498,6,'Boom Operator'),(13056,1650748,9,'Loader'),(13056,1707616,6,'Music Supervisor'),(13056,1708223,9,'Post-Production Manager'),(13056,1708224,9,'Post Production Assistant'),(13056,1708228,6,'Sound Mixer'),(13056,1708229,6,'Boom Operator'),(13056,1708230,6,'Boom Operator'),(13056,1708231,6,'Boom Operator'),(13056,1708268,11,'Best Boy Electric'),(13056,1708269,11,'Best Boy Electric'),(13056,1708270,11,'Rigging Gaffer'),(13056,1708271,11,'Rigging Gaffer'),(13056,1708278,7,'Assistant Art Director'),(13056,1708290,7,'Set Designer'),(13056,1708291,7,'Set Decoration'),(13056,1708292,7,'Set Decoration'),(13056,1708293,7,'Set Decoration'),(13056,1708298,8,'Seamstress'),(13056,1708299,9,'Makeup Effects'),(13056,1708300,9,'Makeup Effects'),(13056,1708303,8,'Hair Department Head'),(13056,1708304,8,'Hairstylist'),(13056,1708306,7,'Location Scout'),(13056,1708308,7,'Location Scout'),(13056,1708311,3,'Production Coordinator'),(13056,1708325,3,'Production Accountant'),(14113,550,3,'Producer'),(14113,551,3,'Producer'),(14113,561,3,'Casting'),(14113,6800,1,'Director of Photography'),(14113,8880,3,'Executive Producer'),(14113,11814,3,'Producer'),(14113,14352,8,'Costume Design'),(14113,10820,7,'Production Design'),(14113,18357,2,'Director'),(14113,11004,7,'Art Direction'),(14113,23486,6,'Original Music Composer'),(14113,23547,7,'Set Decoration'),(14113,29014,3,'Executive Producer'),(14113,49286,5,'Editor'),(14113,50583,4,'Screenplay'),(14113,50583,4,'Screenstory'),(14113,54051,4,'Screenplay'),(14113,60088,7,'Art Direction'),(14113,224386,3,'Executive Producer'),(14113,968602,1,'Steadicam Operator'),(14113,1121601,3,'Associate Producer'),(14113,1321000,8,'Costume Supervisor'),(14113,1399521,2,'Script Supervisor'),(14113,1436525,1,'Still Photographer'),(14113,1448601,10,'Animation'),(14113,1617621,4,'Novel'),(14113,1617624,3,'Co-Producer'),(14113,1617626,6,'Production Sound Mixer'),(20763,947,6,'Original Music Composer'),(20763,598,3,'Casting'),(20763,751,3,'Casting'),(20763,752,3,'Casting'),(20763,2523,5,'Editor'),(20763,2533,5,'Editor'),(20763,3392,3,'Executive Producer'),(20763,7238,8,'Costume Design'),(20763,7187,2,'Director'),(20763,7200,3,'Producer'),(20763,13304,7,'Production Design'),(20763,9197,3,'Co-Executive Producer'),(20763,8862,1,'Director of Photography'),(20763,14337,3,'Co-Producer'),(20763,14349,7,'Art Direction'),(20763,22816,3,'Co-Producer'),(20763,69741,3,'Executive Producer'),(20763,69741,4,'Writer'),(20763,69744,3,'Co-Producer'),(20763,71339,3,'Executive Producer'),(20763,73021,3,'Unit Production Manager'),(20763,95846,2,'Script Supervisor'),(20763,1164426,11,'Gaffer'),(20763,1171347,7,'Set Decoration'),(20763,1460739,8,'Hairstylist'),(20763,1465003,3,'Executive Producer'),(26843,66203,2,'Director'),(26843,138762,4,'Writer'),(26843,575926,4,'Writer'),(11876,997,1,'Director of Photography'),(11876,9747,4,'Screenplay'),(11876,12758,5,'Editor'),(11876,25950,2,'Director'),(11876,25950,4,'Screenplay'),(11876,37187,6,'Original Music Composer'),(11876,39244,4,'Screenplay'),(11876,70805,4,'Screenplay'),(11876,70806,3,'Executive Producer'),(22267,2952,3,'Casting'),(22267,1614,2,'Director'),(22267,1617,4,'Screenplay'),(22267,1617,3,'Producer'),(22267,1635,5,'Editor'),(22267,1994,3,'Producer'),(22267,4434,1,'Director of Photography'),(22267,5670,7,'Production Design'),(22267,4907,7,'Set Decoration'),(22267,5359,6,'Music'),(22267,5952,3,'Producer'),(22267,11412,7,'Art Direction'),(22267,11714,8,'Costume Design'),(22267,115563,4,'Novel'),(22267,559321,8,'Costume Supervisor'),(22267,1368867,9,'Special Effects Coordinator'),(22267,1402095,1,'Camera Operator'),(22267,1467080,2,'Script Supervisor'),(22267,1468036,2,'Script Supervisor'),(22267,1468038,9,'Unit Publicist'),(10436,1032,4,'Screenplay'),(10436,1032,2,'Director'),(10436,3661,5,'Editor'),(10436,3769,1,'Director of Photography'),(10436,14393,4,'Screenplay'),(10436,7170,3,'Producer'),(10436,7182,6,'Original Music Composer'),(10436,65288,4,'Novel'),(12429,608,2,'Director'),(12429,608,5,'Editor'),(12429,608,4,'Writer'),(12429,636,6,'Original Music Composer'),(12429,1417,3,'Producer'),(12429,19596,1,'Director of Photography'),(12429,1697,5,'Editor'),(12429,40455,7,'Art Direction'),(12429,67077,3,'Executive Producer'),(12429,78338,3,'Executive Producer'),(12429,78340,3,'Executive Producer'),(12429,78343,3,'Executive Producer'),(12429,78344,6,'Foley'),(12429,78345,9,'Supervising Animator'),(21311,37427,4,'Screenplay'),(21311,58220,2,'Director'),(21311,139158,4,'Screenplay'),(18254,7202,1,'Director of Photography'),(18254,2485,3,'Casting'),(18254,4869,5,'Editor'),(18254,12017,7,'Production Design'),(18254,6449,2,'Director'),(18254,6449,4,'Writer'),(18254,6449,3,'Producer'),(18254,6453,3,'Executive Producer'),(18254,6453,5,'Editor'),(18254,20107,7,'Art Direction'),(18254,39815,8,'Costume Design'),(18254,52154,6,'Original Music Composer'),(18254,153203,3,'Casting'),(18254,217638,4,'Writer'),(18254,954409,3,'Executive Producer'),(18254,1535810,3,'Associate Producer'),(10877,1091,3,'Producer'),(10877,1296,3,'Executive Producer'),(10877,2624,3,'Casting'),(10877,6630,7,'Set Decoration'),(10877,9349,6,'Sound Designer'),(10877,9351,6,'Supervising Music Editor'),(10877,9430,6,'Sound Effects Editor'),(10877,15222,7,'Art Direction'),(10877,15229,9,'Stunt Coordinator'),(10877,14771,9,'Stunt Coordinator'),(10877,10765,2,'Director'),(10877,21351,5,'Editor'),(10877,22818,1,'Director of Photography'),(10877,40835,7,'Production Design'),(10877,113051,6,'Foley Editor'),(10877,57524,4,'Screenplay'),(10877,57526,3,'Producer'),(10877,58038,3,'Co-Producer'),(10877,58204,4,'Screenplay'),(10877,59472,6,'Original Music Composer'),(10877,66057,6,'Original Music Composer'),(10877,67406,4,'Novel'),(10877,83083,6,'Supervising ADR Editor'),(10877,143915,6,'Supervising Sound Editor'),(10877,157841,1,'Steadicam Operator'),(10877,172899,9,'Armorer'),(10877,236116,9,'Fight Choreographer'),(10877,932186,6,'Orchestrator'),(10877,956637,2,'First Assistant Director'),(10877,958414,7,'Set Designer'),(10877,1070287,6,'Music Supervisor'),(10877,1120532,7,'Art Department Coordinator'),(10877,1177336,1,'Steadicam Operator'),(10877,1177337,11,'Gaffer'),(10877,1236388,9,'Aerial Coordinator'),(10877,1322465,8,'Costume Supervisor'),(10877,1324118,8,'Makeup Artist'),(10877,1399521,2,'Script Supervisor'),(10877,1403537,10,'Visual Effects Supervisor'),(10877,1404214,6,'Supervising Dialogue Editor'),(10877,1408706,6,'Music Editor'),(10877,1415192,1,'Camera Operator'),(10877,1425827,1,'Camera Operator'),(10877,1454935,6,'Foley Editor'),(10877,1477084,8,'Makeup Artist'),(10877,1478854,6,'Foley Editor'),(10877,1511775,9,'In Memory Of'),(10877,1531421,3,'Associate Producer'),(10877,1531896,9,'Armorer'),(10877,1531897,9,'Special Effects Coordinator'),(10877,1531898,10,'Special Effects Supervisor'),(10877,1537674,8,'Costume Design'),(10877,1537711,8,'Key Hair Stylist'),(10877,1537712,8,'Hairstylist'),(10877,1537713,8,'Makeup Artist'),(10877,1537714,10,'Visual Effects Supervisor'),(10877,1537715,10,'Visual Effects Producer'),(10877,1537716,8,'Assistant Costume Designer'),(10877,1537717,6,'Music Supervisor'),(10877,1538123,6,'Dialogue Editor'),(10877,1559367,1,'Camera Operator'),(10877,1585178,9,'Visual Effects Editor'),(10877,1643845,9,'Pyrotechnician'),(10877,1674251,7,'Property Master'),(10877,1707916,3,'Location Manager'),(10877,1717317,7,'Construction Coordinator'),(10877,1733237,9,'Pilot'),(10877,1820048,11,'Electrician'),(10877,1891659,1,'Camera Operator'),(10877,1891660,11,'Rigging Grip'),(10685,1044,1,'Director of Photography'),(10685,7229,6,'Music'),(10685,53291,5,'Editor'),(10685,56171,3,'Producer'),(10685,66604,2,'Director'),(10685,34672,4,'Screenplay'),(12596,851,6,'Original Music Composer'),(12596,1254,3,'Producer'),(12596,10723,2,'Director'),(12596,10725,5,'Editor'),(12596,42119,1,'Director of Photography'),(12596,57464,3,'Executive Producer'),(12596,73037,4,'Screenplay'),(12596,73038,4,'Screenplay'),(12596,73039,6,'Original Music Composer'),(12596,1382732,3,'Executive Producer'),(13460,9149,3,'Executive Producer'),(13460,40713,9,'Stunt Coordinator'),(13460,40823,6,'Foley'),(13460,15221,6,'Original Music Composer'),(13460,16838,3,'Producer'),(13460,35011,7,'Art Direction'),(13460,19690,7,'Art Direction'),(13460,43559,3,'Executive Producer'),(13460,43560,3,'Executive Producer'),(13460,23490,7,'Assistant Art Director'),(13460,8313,3,'Casting'),(13460,35979,8,'Hairstylist'),(13460,35979,8,'Makeup Artist'),(13460,39668,7,'Supervising Art Director'),(13460,50081,9,'Second Unit Cinematographer'),(13460,10878,5,'Editor'),(13460,57581,2,'Director'),(13460,57581,4,'Writer'),(13460,57585,1,'Director of Photography'),(13460,60471,3,'Executive Producer'),(13460,60472,3,'Executive Producer'),(13460,77750,3,'Producer'),(13460,119108,3,'Executive Producer'),(13460,125263,7,'Set Decoration'),(13460,223238,10,'Visual Effects Supervisor'),(13460,223246,9,'Visual Effects Editor'),(13460,231199,9,'Makeup Effects'),(13460,930532,7,'Art Direction'),(13460,933113,6,'Music Editor'),(13460,937946,9,'Second Unit Cinematographer'),(13460,962163,7,'Production Design'),(13460,1037760,9,'Makeup Effects'),(13460,1053407,9,'Stunt Coordinator'),(13460,1210858,11,'Gaffer'),(13460,1273154,1,'Camera Operator'),(13460,1276405,8,'Makeup Artist'),(13460,1335854,9,'Property Master'),(13460,1337472,9,'Transportation Coordinator'),(13460,1341729,7,'Art Direction'),(13460,1380002,1,'Still Photographer'),(13460,1393363,1,'Steadicam Operator'),(13460,1394021,10,'Visual Effects Producer'),(13460,1394119,7,'Art Direction'),(13460,1398189,2,'Script Supervisor'),(13460,1399117,6,'Sound Designer'),(13460,1399286,6,'ADR & Dubbing'),(13460,1399503,7,'Art Department Coordinator'),(13460,1399561,9,'Visual Effects Editor'),(13460,1402924,9,'Property Master'),(13460,1403798,6,'Sound Re-Recording Mixer'),(13460,1404244,1,'Helicopter Camera'),(13460,1405240,1,'Steadicam Operator'),(13460,1406836,9,'Visual Effects Editor'),(13460,1408811,10,'Visual Effects Supervisor'),(13460,1408850,9,'Unit Publicist'),(13460,1409293,8,'Wigmaker'),(13460,1409295,6,'Sound Effects Editor'),(13460,1409296,6,'Supervising Sound Editor'),(13460,1409297,6,'Sound Designer'),(13460,1410275,8,'Hairstylist'),(13460,1411085,6,'Dolby Consultant'),(13460,1413927,9,'Makeup Effects'),(13460,1417172,8,'Makeup Artist'),(13460,1417842,9,'Transportation Coordinator'),(13460,1418316,8,'Hairstylist'),(13460,1418316,8,'Makeup Artist'),(13460,1420846,3,'Location Manager'),(13460,1422816,1,'Steadicam Operator'),(13460,1422861,9,'Picture Car Coordinator'),(13460,1424630,1,'Camera Operator'),(13460,1424639,2,'Script Supervisor'),(13460,1425481,6,'Sound Re-Recording Mixer'),(13460,1425524,7,'Art Direction'),(13460,1425527,7,'Art Direction'),(13460,1425528,7,'Art Direction'),(13460,1425529,7,'Set Decoration'),(13460,1425530,8,'Costume Design'),(13460,1425533,7,'Assistant Art Director'),(13460,1425535,9,'Property Master'),(13460,1425536,7,'Greensman'),(13460,1425538,7,'Greensman'),(13460,1425539,7,'Greensman'),(13460,1425540,7,'Greensman'),(13460,1425541,7,'Greensman'),(13460,1425543,6,'Foley'),(13460,1425544,9,'Special Effects Coordinator'),(13460,1425545,9,'CG Supervisor'),(13460,1425547,9,'Visual Effects Art Director'),(13460,1425550,9,'Visual Effects Editor'),(13460,1425551,10,'Visual Effects Producer'),(13460,1425552,1,'Camera Operator'),(13460,1425553,8,'Costume Supervisor'),(13460,1425555,5,'Digital Intermediate'),(10719,4500,6,'Original Music Composer'),(10719,9645,1,'Director of Photography'),(10719,9551,8,'Costume Design'),(10719,10396,7,'Production Design'),(10719,11455,5,'Editor'),(10719,17315,3,'Executive Producer'),(10719,15277,2,'Director'),(10719,22147,7,'Set Decoration'),(10719,10830,3,'Executive Producer'),(10719,41076,3,'Producer'),(10719,52000,3,'Producer'),(10719,54051,4,'Screenplay'),(10719,61397,3,'Executive Producer'),(10719,65702,3,'Executive Producer'),(10719,66821,3,'Producer'),(10719,66822,3,'Executive Producer'),(10719,83088,5,'Dialogue Editor'),(10719,141788,1,'Camera Operator'),(10719,230134,6,'Boom Operator'),(10719,1325907,7,'Art Direction'),(10719,1366289,10,'Animation'),(10719,1378728,2,'Script Supervisor'),(10719,1394131,6,'Sound Re-Recording Mixer'),(10719,1399861,6,'Sound Re-Recording Mixer'),(10719,1404731,10,'Visual Effects Supervisor'),(10719,1407028,1,'Still Photographer'),(10719,1408346,10,'Visual Effects'),(10719,1413451,6,'Supervising Sound Editor'),(10719,1416171,10,'Animation Supervisor'),(10719,1426751,1,'Steadicam Operator'),(10719,1426751,1,'Camera Operator'),(10719,1447143,10,'Animation'),(10719,1448602,10,'Animation'),(10719,1453519,10,'Animation'),(10719,1461152,10,'Animation'),(10719,1462599,10,'Animation'),(10719,1462600,10,'Animation'),(10719,1462601,9,'Production Office Assistant'),(10719,1462602,10,'Modeling'),(10719,1462603,10,'Visual Effects'),(10719,1462604,9,'Compositors'),(10719,1462605,10,'Visual Effects Producer'),(10719,1462606,9,'Compositors'),(10719,1462607,10,'Animation'),(10719,1462608,11,'Lighting Artist'),(10719,1462609,9,'Compositors'),(10719,1552537,1,'First Assistant Camera'),(10719,1555702,6,'Sound Designer'),(10719,1561340,1,'First Assistant Camera'),(10719,1561882,6,'Sound mixer'),(10719,1565964,8,'Costume Supervisor'),(10719,1565965,7,'Art Department Coordinator'),(10719,1565967,1,'First Assistant Camera'),(11888,4500,6,'Original Music Composer'),(11888,2461,3,'Producer'),(11888,12966,4,'Screenplay'),(11888,13581,2,'Director'),(11888,17164,5,'Editor'),(11888,18926,3,'Producer'),(11888,11371,1,'Director of Photography'),(11888,60208,4,'Screenplay'),(11888,150194,9,'Stunts'),(11888,1362798,2,'Assistant Director'),(10307,904,1,'Director of Photography'),(10307,4061,8,'Costume Design'),(10307,5175,5,'Editor'),(10307,9821,7,'Set Decoration'),(10307,11809,2,'Director'),(10307,21119,5,'Editor'),(10307,21812,3,'Casting'),(10307,27543,7,'Production Design'),(10307,43609,6,'Original Music Composer'),(10307,49284,3,'Producer'),(10307,64807,4,'Screenplay'),(10307,64808,4,'Screenplay'),(10307,64809,6,'Original Music Composer'),(10307,65834,7,'Art Direction'),(10307,406204,8,'Makeup Artist'),(10307,957127,7,'Set Decoration'),(10307,1318886,8,'Costume Supervisor'),(11978,4140,6,'Music'),(11978,14139,1,'Director of Photography'),(11978,35510,3,'Producer'),(11978,51962,3,'Executive Producer'),(11978,66120,3,'Producer'),(11978,66121,2,'Director'),(11978,69144,4,'Screenplay'),(11978,71147,3,'Executive Producer'),(11978,71148,5,'Editor'),(11978,1332245,9,'Stunts'),(11978,1741915,5,'Editor'),(22907,9779,3,'Executive Producer'),(22907,18272,3,'Executive Producer'),(22907,18272,4,'Writer'),(22907,31136,3,'Executive Producer'),(22907,97026,2,'Director'),(22907,97026,4,'Writer'),(22907,131977,4,'Writer'),(22907,214886,4,'Writer'),(22907,1332245,9,'Stunts'),(11519,491,6,'Music'),(11519,24,4,'Writer'),(11519,8328,4,'Screenplay'),(11519,8328,3,'Executive Producer'),(11519,488,2,'Director'),(11519,493,5,'Editor'),(11519,12846,1,'Director of Photography'),(11519,12882,3,'Producer'),(11519,14845,3,'Casting'),(11519,1535956,7,'Art Direction'),(12920,4500,6,'Original Music Composer'),(12920,17765,1,'Director of Photography'),(12920,53176,2,'Director'),(12920,53176,4,'Writer'),(12106,37,6,'Music'),(12106,950,5,'Editor'),(12106,4146,3,'Producer'),(12106,7623,2,'Director'),(12106,11359,3,'Executive Producer'),(12106,11099,1,'Director of Photography'),(12106,21705,4,'Screenplay'),(12106,59920,3,'Executive Producer'),(12106,57439,3,'Producer'),(12106,71262,3,'Producer'),(11141,517,3,'Executive Producer'),(11141,1999,6,'Original Music Composer'),(11141,4232,3,'Executive Producer'),(11141,4857,3,'Producer'),(11141,10567,4,'Screenplay'),(11141,10567,4,'Story'),(11141,6048,3,'Executive Producer'),(11141,6801,7,'Set Decoration'),(11141,7783,1,'Director of Photography'),(11141,7791,2,'Director'),(11141,17144,3,'Producer'),(11141,12685,5,'Editor'),(11141,13928,3,'Producer'),(11141,16343,6,'Supervising Sound Editor'),(11141,18691,3,'Executive Producer'),(11141,18991,6,'Sound mixer'),(11141,10830,3,'Executive Producer'),(11141,68319,4,'Screenplay'),(11141,32349,7,'Production Design'),(11141,36616,3,'Producer'),(11141,40249,3,'Executive Producer'),(11141,43143,3,'Executive Producer'),(11141,57682,3,'Producer'),(11141,67759,3,'Executive Producer'),(11141,60784,3,'Executive Producer'),(11141,68320,3,'Executive Producer'),(11141,117238,6,'Sound Re-Recording Mixer'),(11141,567973,8,'Costume Design'),(11141,1393558,7,'Leadman'),(11141,1403710,2,'Script Supervisor'),(11141,1405795,6,'Sound Re-Recording Mixer'),(11141,1406905,6,'Music Editor'),(11141,1407027,1,'Still Photographer'),(11141,1466006,8,'Makeup Department Head'),(11141,1544338,6,'Music Supervisor'),(11141,1544494,1,'Still Photographer'),(11141,1544506,8,'Hair Department Head'),(31867,6581,5,'Editor'),(31867,7229,6,'Music'),(31867,6044,3,'Casting'),(31867,17598,1,'Director of Photography'),(31867,19282,3,'Producer'),(31867,57864,3,'Executive Producer'),(31867,114404,2,'Director'),(31867,114406,4,'Novel'),(31867,114407,4,'Screenplay'),(31867,114408,3,'Producer'),(31867,114409,3,'Executive Producer'),(31867,114410,3,'Executive Producer'),(31867,119117,8,'Costume Design'),(31867,1315700,8,'Makeup Department Head'),(10253,18264,6,'Original Music Composer'),(10253,23653,3,'Casting'),(10253,59871,1,'Director of Photography'),(10253,64335,5,'Editor'),(10253,64331,4,'Author'),(10253,64331,2,'Director'),(10253,64331,3,'Executive Producer'),(10253,64334,3,'Line Producer'),(10253,64336,3,'Producer'),(10253,64338,7,'Production Design'),(10253,64337,3,'Executive Producer'),(10253,64339,7,'Set Decoration'),(10253,64340,8,'Costume Design'),(10253,1552521,9,'Stunts'),(24662,52361,4,'Screenplay'),(24662,61411,2,'Director'),(24662,61411,4,'Writer'),(24662,61421,4,'Writer'),(24662,76733,4,'Screenplay'),(24662,106850,4,'Screenplay'),(24662,210053,4,'Screenplay'),(24662,570268,4,'Screenplay'),(24662,958881,4,'Writer'),(24662,1113194,10,'Animation'),(24662,1229832,4,'Story'),(24662,1229832,10,'Character Designer'),(24662,1447342,10,'Animation'),(24662,1447423,7,'Background Designer'),(24662,1447467,2,'Layout'),(24662,1447473,10,'Animation'),(24662,1447474,9,'Supervising Animator'),(24662,1447478,4,'Storyboard'),(24662,1447493,10,'Animation Manager'),(24662,1447560,10,'Visual Effects'),(24662,1447569,2,'Layout'),(24662,1447587,2,'Layout'),(24662,1454249,4,'Storyboard'),(24662,1460463,10,'Animation'),(24662,1460511,10,'Animation'),(24662,1498603,4,'Writer'),(24662,1567687,4,'Writer'),(32274,504,2,'Director'),(32274,504,3,'Producer'),(32274,504,4,'Writer'),(32274,1808,5,'Editor'),(32274,4446,3,'Producer'),(32274,5669,3,'Casting'),(32274,6626,1,'Director of Photography'),(32274,10364,6,'Original Music Composer'),(32274,10365,7,'Production Design'),(32274,17951,7,'Set Decoration'),(32274,19310,8,'Costume Design'),(32274,30601,3,'Executive Producer'),(32274,38804,3,'Producer'),(32274,938427,3,'Associate Producer'),(32274,1872839,3,'Executive Producer'),(32274,1872840,3,'Executive Producer'),(11313,348,4,'Screenplay'),(11313,3027,4,'Writer'),(11313,5359,6,'Original Music Composer'),(11313,33238,1,'Director of Photography'),(11313,33433,2,'Director'),(11313,33435,3,'Producer'),(11313,33438,5,'Editor'),(10559,2031,3,'Casting'),(10559,2532,3,'Casting'),(10559,13663,3,'Executive Producer'),(10559,7537,6,'Sound Designer'),(10559,7714,6,'Original Music Composer'),(10559,8160,6,'Foley'),(10559,8163,6,'Foley'),(10559,32865,8,'Costume Supervisor'),(10559,13017,3,'Producer'),(10559,15893,6,'Sound Effects Editor'),(10559,14915,7,'Set Decoration'),(10559,15528,9,'Special Effects Coordinator'),(10559,15845,8,'Makeup Department Head'),(10559,17220,7,'Art Direction'),(10559,17812,2,'Director'),(10559,17812,3,'Producer'),(10559,17816,5,'Editor'),(10559,36624,8,'Costume Design'),(10559,21039,1,'Director of Photography'),(10559,10830,3,'Producer'),(10559,10830,4,'Writer'),(10559,23420,3,'Producer'),(10559,23545,3,'Casting'),(10559,29219,7,'Art Direction'),(10559,54776,7,'Production Design'),(10559,65753,3,'Executive Producer'),(10559,65752,3,'Executive Producer'),(10559,65755,7,'Art Direction'),(10559,65754,7,'Set Decoration'),(10559,65724,3,'Associate Producer'),(10559,138618,6,'Sound Re-Recording Mixer'),(10559,572622,6,'Supervising Sound Editor'),(10559,957361,1,'Camera Operator'),(10559,995462,5,'First Assistant Editor'),(10559,999646,5,'First Assistant Editor'),(10559,1074163,9,'Stunt Coordinator'),(10559,1177713,8,'Costume Supervisor'),(10559,1303155,11,'Gaffer'),(10559,1315700,8,'Makeup Artist'),(10559,1317673,7,'Set Designer'),(10559,1322019,7,'Assistant Art Director'),(10559,1322465,8,'Costume Supervisor'),(10559,1336197,6,'Music Editor'),(10559,1337452,9,'Property Master'),(10559,1339219,3,'Location Manager'),(10559,1359378,8,'Makeup Artist'),(10559,1376902,6,'ADR & Dubbing'),(10559,1378672,7,'Construction Coordinator'),(10559,1378828,6,'Sound Re-Recording Mixer'),(10559,1391704,3,'Location Manager'),(10559,1392106,1,'Still Photographer'),(10559,1399490,7,'Assistant Art Director'),(10559,1399927,1,'Camera Operator'),(10559,1399955,7,'Art Department Coordinator'),(10559,1400375,1,'Camera Operator'),(10559,1400906,6,'Sound Effects Editor'),(10559,1404313,9,'Visual Effects Editor'),(10559,1408707,9,'Transportation Coordinator'),(10559,1409710,1,'Camera Operator'),(10559,1414541,9,'Makeup Effects'),(10559,1418489,9,'Unit Publicist'),(10559,1425978,6,'Sound Re-Recording Mixer'),(10559,1430210,8,'Hairstylist'),(10559,1449149,8,'Hairstylist'),(10559,1449152,8,'Makeup Artist'),(10559,1449156,8,'Makeup Artist'),(10559,1449158,9,'Makeup Effects'),(10559,1449159,9,'Property Master'),(10559,1449161,7,'Assistant Art Director'),(10559,1449162,7,'Assistant Art Director'),(10559,1449163,7,'Construction Coordinator'),(10559,1449165,9,'Scenic Artist'),(10559,1449166,9,'Scenic Artist'),(10559,1449167,9,'Scenic Artist'),(10559,1449169,9,'Scenic Artist'),(10559,1449170,7,'Leadman'),(10559,1449172,5,'Dialogue Editor'),(10559,1449173,5,'Dialogue Editor'),(10559,1449174,9,'Sound Recordist'),(10559,1449176,10,'Animation'),(10559,1449177,10,'Visual Effects Producer'),(10559,1449178,10,'Visual Effects Supervisor'),(10559,1449179,1,'Still Photographer'),(10559,1449180,11,'Gaffer'),(10559,1449181,11,'Gaffer'),(10559,1449182,8,'Set Costumer'),(10559,1449183,2,'Script Supervisor'),(10559,1449184,9,'Dialect Coach'),(27569,5308,4,'Screenplay'),(27569,5381,3,'Producer'),(27569,5382,3,'Producer'),(27569,6344,3,'Producer'),(27569,6346,5,'Editor'),(27569,6347,3,'Casting'),(27569,8846,1,'Director of Photography'),(27569,14042,8,'Costume Design'),(27569,12131,7,'Production Design'),(27569,15017,8,'Makeup Artist'),(27569,20648,6,'Original Music Composer'),(27569,38021,7,'Set Decoration'),(27569,56717,2,'Director'),(27569,1336716,10,'Visual Effects Supervisor'),(27569,1478953,2,'Script Supervisor'),(27569,1483863,7,'Art Direction'),(10637,770,3,'Producer'),(10637,1720,3,'Casting'),(10637,2444,3,'Executive Producer'),(10637,2448,3,'Associate Producer'),(10637,894,6,'Original Music Composer'),(10637,894,6,'Music'),(10637,908,5,'Editor'),(10637,1301,1,'Camera Operator'),(10637,1301,1,'Director of Photography'),(10637,8706,7,'Set Decoration'),(10637,7536,8,'Costume Design'),(10637,52358,2,'Director'),(10637,55260,4,'Screenplay'),(10637,56350,3,'Production Manager'),(10637,431491,8,'Costume Design'),(10637,1378750,7,'Art Direction'),(10637,1458202,2,'Script Supervisor'),(10637,1512022,3,'Executive In Charge Of Production'),(10637,1537179,1,'Still Photographer'),(10637,1550166,6,'Production Sound Mixer'),(10637,1562228,7,'Production Design'),(17654,108,3,'Producer'),(17654,128,3,'Co-Producer'),(17654,1317,7,'Production Design'),(17654,3503,6,'Supervising Sound Editor'),(17654,3506,3,'Producer'),(17654,13086,7,'Art Direction'),(17654,10828,9,'Thanks'),(17654,18383,3,'Production Supervisor'),(17654,19692,8,'Costume Design'),(17654,33302,1,'Camera Operator'),(17654,44741,3,'Co-Executive Producer'),(17654,62907,5,'Editor'),(17654,62908,6,'Music'),(17654,72102,3,'Executive Producer'),(17654,82194,2,'Director'),(17654,82194,4,'Screenplay'),(17654,82195,4,'Screenplay'),(17654,82196,3,'Executive Producer'),(17654,82197,3,'Executive Producer'),(17654,186478,9,'Second Unit Cinematographer'),(17654,197773,2,'Assistant Director'),(17654,958587,7,'Art Direction'),(17654,967026,1,'Director of Photography'),(17654,967459,7,'Set Decoration'),(17654,1016177,3,'Casting'),(17654,1133500,3,'Casting'),(17654,1272983,3,'Line Producer'),(17654,1319834,8,'Costume Supervisor'),(17654,1327838,9,'Animatronic and Prosthetic Effects'),(17654,1355537,5,'Dialogue Editor'),(17654,1401690,5,'Dialogue Editor'),(17654,1401794,9,'Visual Effects Editor'),(17654,1401808,10,'Animation Director'),(17654,1403410,10,'Visual Effects Producer'),(17654,1406067,6,'Foley'),(17654,1406069,6,'Sound Re-Recording Mixer'),(17654,1409708,9,'Visual Effects Editor'),(17654,1415011,10,'Visual Effects Producer'),(17654,1415012,10,'Visual Effects Supervisor'),(17654,1418328,9,'Stunt Coordinator'),(17654,1418890,10,'Creature Design'),(17654,1420842,1,'Still Photographer'),(17654,1424596,8,'Costume Supervisor'),(17654,1424598,7,'Art Department Coordinator'),(17654,1424599,7,'Construction Coordinator'),(17654,1424600,9,'Property Master'),(17654,1424601,7,'Construction Coordinator'),(17654,1424602,9,'Property Master'),(17654,1424603,7,'Leadman'),(17654,1424605,5,'Dialogue Editor'),(17654,1424606,6,'Supervising Sound Editor'),(17654,1424612,6,'Sound Effects Editor'),(17654,1424615,6,'Sound Effects Editor'),(17654,1424617,6,'Sound Re-Recording Mixer'),(17654,1424619,10,'Animation Manager'),(17654,1424620,10,'Animation Supervisor'),(17654,1424621,10,'Animation Supervisor'),(17654,1424622,10,'Visual Effects Producer'),(17654,1424623,10,'Visual Effects Supervisor'),(17654,1424624,1,'Camera Operator'),(17654,1424626,1,'Camera Operator'),(17654,1424627,1,'Camera Operator'),(17654,1424628,1,'Camera Operator'),(17654,1424629,1,'Additional Camera'),(17654,1424630,1,'Additional Camera'),(17654,1424631,1,'Helicopter Camera'),(17654,1424632,5,'Digital Intermediate'),(17654,1424633,5,'Digital Intermediate'),(17654,1424635,5,'First Assistant Editor'),(17654,1424636,5,'First Assistant Editor'),(17654,1424637,6,'Music Editor'),(17654,1424639,2,'Script Supervisor'),(17654,1424640,2,'Script Supervisor'),(17654,1424641,2,'Script Supervisor'),(17654,1424642,9,'Unit Publicist'),(17654,1486822,8,'Prosthetic Supervisor'),(17654,1573064,3,'Executive Producer'),(17654,1583559,9,'Sound Recordist'),(11836,13140,1,'Director of Photography'),(11836,41082,7,'Production Design'),(11836,60268,3,'Producer'),(11836,60266,3,'Unit Production Manager'),(11836,62144,7,'Set Decoration'),(11836,70454,3,'Producer'),(11836,70651,4,'Screenplay'),(11836,70651,2,'Director'),(11836,70651,3,'Producer'),(11836,70652,3,'Producer'),(11836,70655,3,'Producer'),(11836,70657,6,'Original Music Composer'),(11836,70658,5,'Editor'),(11836,1128341,3,'Executive Producer'),(11836,1200368,7,'Art Direction'),(11836,1219427,7,'Production Design'),(11836,1409418,4,'Storyboard'),(11836,1447327,10,'Character Designer'),(11836,1447459,10,'Animation'),(11836,1447467,2,'Layout'),(11836,1447500,2,'Layout'),(11836,1447549,9,'Digital Effects Supervisor'),(11836,1447556,9,'Compositors'),(11836,1447569,2,'Layout'),(11836,1447586,2,'Layout'),(11836,1459517,10,'Animation Supervisor'),(11836,1459642,7,'Painter'),(11836,1460529,10,'Visual Effects Coordinator'),(11836,1461156,10,'Animation'),(11836,1469852,3,'Production Manager'),(11836,1710845,8,'Costume Design'),(11036,853,5,'Editor'),(11036,545,3,'Casting'),(11036,2596,1,'Director of Photography'),(11036,3963,6,'Sound Effects Editor'),(11036,4768,3,'Producer'),(11036,5162,3,'Producer'),(11036,6802,8,'Costume Design'),(11036,9270,7,'Production Design'),(11036,11151,2,'Director'),(11036,12526,3,'Executive Producer'),(11036,12526,3,'Unit Production Manager'),(11036,40384,6,'Original Music Composer'),(11036,25210,4,'Screenplay'),(11036,21639,3,'Casting'),(11036,10830,3,'Executive Producer'),(11036,29208,3,'Executive In Charge Of Production'),(11036,62063,7,'Set Decoration'),(11036,63101,3,'Casting Associate'),(11036,64172,4,'Novel'),(11036,67887,4,'Screenplay'),(11036,69129,9,'Stunts'),(11036,73035,9,'Thanks'),(11036,74783,9,'Special Effects Coordinator'),(11036,230436,6,'ADR & Dubbing'),(11036,1172414,1,'Still Photographer'),(11036,1320911,8,'Makeup Department Head'),(11036,1326170,7,'Art Direction'),(11036,1335219,6,'Supervising Sound Editor'),(11036,1339959,9,'Stunt Coordinator'),(11036,1340748,2,'Script Supervisor'),(11036,1392901,5,'Dialogue Editor'),(11036,1394131,6,'Sound Re-Recording Mixer'),(11036,1399861,6,'Sound Re-Recording Mixer'),(11036,1400093,6,'Sound Effects Editor'),(11036,1401273,9,'Unit Publicist'),(11036,1408528,6,'Music Editor'),(11036,1412308,7,'Art Department Coordinator'),(11036,1412452,6,'Supervising Sound Editor'),(11036,1412702,5,'Dialogue Editor'),(11036,1428595,6,'Sound Effects Editor'),(11036,1458992,8,'Hair Department Head'),(11036,1509364,5,'Dialogue Editor'),(11036,1532243,8,'Costume Supervisor'),(11036,1564580,6,'Boom Operator'),(11036,1568593,9,'Thanks'),(18126,434,3,'Casting'),(18126,436,3,'Casting'),(18126,4500,6,'Music'),(18126,5668,5,'Editor'),(18126,18923,3,'Producer'),(18126,18924,3,'Producer'),(18126,21162,7,'Set Decoration'),(18126,27154,1,'Director of Photography'),(18126,29215,9,'Choreographer'),(18126,36804,2,'Director'),(18126,36808,7,'Production Design'),(18126,46084,8,'Costume Design'),(18126,60385,7,'Set Decoration'),(18126,78887,3,'Producer'),(18126,87581,4,'Writer'),(18126,138984,8,'Costume Supervisor'),(18126,152315,4,'Characters'),(18126,939374,8,'Costume Supervisor'),(18126,1011958,7,'Art Direction'),(18126,1182917,8,'Makeup Artist'),(18126,1213367,4,'Characters'),(18126,1217142,4,'Characters'),(18126,1368875,10,'Visual Effects Producer'),(18126,1372209,10,'Special Effects Supervisor'),(18126,1395027,10,'Visual Effects Supervisor'),(18126,1398118,7,'Construction Coordinator'),(18126,1400877,8,'Costume Supervisor'),(18126,1408326,9,'Visual Effects Editor'),(18126,1409824,8,'Wigmaker'),(18126,1410302,10,'Visual Effects Producer'),(18126,1414984,8,'Hair Department Head'),(18126,1415639,8,'Set Costumer'),(18126,1420642,8,'Key Hair Stylist'),(18126,1464517,7,'Construction Coordinator'),(18126,1527912,3,'Casting Associate'),(18126,1532737,7,'Art Department Coordinator'),(18126,1532739,7,'Art Department Coordinator'),(18126,1532740,10,'Visual Effects Producer'),(18126,1532741,10,'Visual Effects Supervisor'),(18126,1532742,8,'Set Costumer'),(18126,1532744,8,'Makeup Artist'),(16340,5666,6,'Music'),(16340,12084,4,'Writer'),(16340,12085,4,'Writer'),(16340,36697,4,'Idea'),(16340,78487,4,'Writer'),(16340,80540,2,'Director'),(16340,142587,9,'Sequence Supervisor'),(16340,946417,4,'Idea'),(16340,963557,7,'Production Design'),(16340,1386576,4,'Writer'),(16340,1386577,4,'Writer'),(16340,1447383,2,'Layout'),(16340,1447495,7,'Art Department Manager'),(16340,1447551,9,'Technical Supervisor'),(16340,1447569,4,'Storyboard'),(16340,1448999,9,'Technical Supervisor'),(16340,1454416,10,'Animation'),(16340,1459611,10,'Visual Effects'),(16340,1460480,2,'Layout'),(16340,1573490,7,'Art Direction'),(16340,1746400,5,'Editor'),(10333,1213,6,'Original Music Composer'),(10333,3662,3,'Executive Producer'),(10333,5582,1,'Director of Photography'),(10333,10400,3,'Producer'),(10333,10400,2,'Director'),(10333,15005,5,'Editor'),(10333,14588,4,'Screenplay'),(10333,64839,4,'Novel'),(10333,64839,4,'Screenplay'),(10333,64841,3,'Producer'),(10333,64842,3,'Executive Producer'),(22947,1886,3,'Executive Producer'),(22947,6044,3,'Casting'),(22947,7441,8,'Costume Design'),(22947,8858,3,'Producer'),(22947,17440,4,'Novel'),(22947,24190,6,'Original Music Composer'),(22947,52161,6,'Music Supervisor'),(22947,39038,7,'Production Design'),(22947,41592,7,'Art Direction'),(22947,52443,2,'Director'),(22947,52443,4,'Screenplay'),(22947,52443,3,'Producer'),(22947,52448,3,'Producer'),(22947,52449,1,'Director of Photography'),(22947,52450,5,'Editor'),(22947,54251,3,'Executive Producer'),(22947,57336,4,'Screenplay'),(22947,57601,3,'Executive Producer'),(22947,57560,3,'Executive Producer'),(22947,112307,7,'Set Decoration'),(22947,161159,1,'Still Photographer'),(22947,949132,3,'Producer'),(22947,1117879,3,'Associate Producer'),(22947,1174400,6,'Music Supervisor'),(22947,1287961,3,'Associate Producer'),(22947,1338374,6,'Sound Re-Recording Mixer'),(22947,1345718,3,'Associate Producer'),(22947,1347998,6,'Sound Re-Recording Mixer'),(22947,1364239,7,'Art Department Coordinator'),(22947,1367665,6,'Boom Operator'),(22947,1367667,6,'Supervising Sound Editor'),(22947,1367676,6,'Music Editor'),(22947,1423757,6,'Supervising Sound Editor'),(22947,1450000,2,'Script Supervisor'),(22947,1466245,6,'Sound mixer'),(16300,2632,4,'Screenplay'),(16300,3288,2,'Director'),(16300,3289,2,'Director'),(16300,52849,4,'Screenplay'),(16300,59164,4,'Screenplay'),(16300,65919,4,'Screenplay'),(10521,17046,2,'Director'),(10521,67376,4,'Screenplay'),(10521,83872,4,'Screenplay'),(10521,83873,4,'Screenplay'),(10762,1322,8,'Costume Design'),(10762,6328,9,'Second Unit Cinematographer'),(10762,6412,7,'Set Decoration'),(10762,7265,8,'Key Hair Stylist'),(10762,7494,3,'Casting'),(10762,9423,6,'Supervising Sound Editor'),(10762,14189,5,'Editor'),(10762,53899,3,'Casting Associate'),(10762,32593,2,'Director'),(10762,20824,7,'Production Design'),(10762,23486,6,'Original Music Composer'),(10762,26770,8,'Hairstylist'),(10762,33283,5,'Editor'),(10762,34527,9,'Post Production Supervisor'),(10762,49912,6,'Music Supervisor'),(10762,52042,3,'Executive Producer'),(10762,113043,6,'Foley'),(10762,113075,5,'Dialogue Editor'),(10762,56791,1,'Director of Photography'),(10762,58470,3,'Producer'),(10762,58472,3,'Executive Producer'),(10762,65644,6,'Orchestrator'),(10762,66564,4,'Story'),(10762,66563,4,'Story'),(10762,66566,4,'Story'),(10762,66565,4,'Screenplay'),(10762,66568,3,'Associate Producer'),(10762,66567,3,'Executive Producer'),(10762,66569,7,'Art Direction'),(10762,66571,4,'Screenplay'),(10762,69670,5,'Additional Editing'),(10762,132613,9,'Armorer'),(10762,135739,7,'Construction Coordinator'),(10762,417960,5,'Color Timer'),(10762,1046901,8,'Costume Supervisor'),(10762,1079558,9,'Stunt Coordinator'),(10762,1087512,6,'Music Editor'),(10762,1139016,9,'Video Assist Operator'),(10762,1272983,3,'Unit Production Manager'),(10762,1360001,10,'Visual Effects Supervisor'),(10762,1371069,2,'Script Supervisor'),(10762,1387541,5,'Dialogue Editor'),(10762,1387541,6,'Sound Editor'),(10762,1391679,5,'Dialogue Editor'),(10762,1394072,1,'Camera Operator'),(10762,1394072,1,'Steadicam Operator'),(10762,1394984,6,'Music Editor'),(10762,1395025,6,'Dolby Consultant'),(10762,1395255,6,'Sound Re-Recording Mixer'),(10762,1398460,6,'Sound Effects Editor'),(10762,1401704,10,'Digital Compositors'),(10762,1401805,11,'Electrician'),(10762,1401824,3,'Production Supervisor'),(10762,1406076,9,'Unit Publicist'),(10762,1409231,9,'Sound Recordist'),(10762,1411265,5,'Dialogue Editor'),(10762,1415007,6,'Sound Effects Editor'),(10762,1424160,6,'Sound Effects Editor'),(10762,1431504,2,'Assistant Director'),(10762,1434940,7,'Art Department Coordinator'),(10762,1460573,2,'Script Supervisor'),(10762,1493889,3,'Location Manager'),(10762,1537037,3,'Production Coordinator'),(10762,1537038,1,'Still Photographer'),(10762,1537039,10,'Visual Effects Producer'),(10762,1537040,10,'Visual Effects Producer'),(10762,1537041,10,'Visual Effects Coordinator'),(10762,1544920,9,'Stunts'),(10762,1554885,8,'Set Costumer'),(10762,1583559,6,'Sound Mixer'),(10762,1616395,1,'First Assistant Camera'),(10762,1635535,9,'Special Effects Coordinator'),(10762,1644469,5,'Editorial Production Assistant'),(10762,1715092,7,'Greensman'),(10762,1715094,7,'Location Scout'),(10762,1715096,7,'Set Designer'),(10762,1715178,1,'Grip'),(10762,1715179,8,'Makeup Artist'),(10762,1715180,8,'Set Dressing Artist'),(10762,1715181,9,'Loader'),(10762,1715182,9,'Picture Car Coordinator'),(10762,1715183,9,'Property Master'),(10762,1715184,9,'Scenic Artist'),(10762,1715185,9,'Set Medic'),(10762,1715186,9,'Transportation Captain'),(10762,1715187,9,'Transportation Coordinator'),(10762,1715188,11,'Lighting Technician'),(10762,1715190,3,'Production Coordinator'),(10762,1715191,6,'Boom Operator'),(10762,1715192,6,'First Assistant Sound Editor'),(10762,1715193,10,'3D Supervisor'),(10762,1715194,10,'Special Effects Supervisor'),(10762,1715195,4,'Storyboard'),(10762,1715196,3,'Unit Manager'),(10096,36,1,'Director of Photography'),(10096,494,3,'Casting'),(10096,2242,3,'Casting'),(10096,10572,6,'Original Music Composer'),(10096,6191,7,'Set Decoration'),(10096,11814,3,'Executive Producer'),(10096,11815,3,'Executive Producer'),(10096,15528,9,'Special Effects Coordinator'),(10096,16158,3,'Producer'),(10096,17046,2,'Director'),(10096,18322,3,'Producer'),(10096,23787,8,'Makeup Artist'),(10096,26989,9,'Special Effects Coordinator'),(10096,59963,3,'Producer'),(10096,61484,5,'Editor'),(10096,63352,4,'Screenplay'),(10096,63353,4,'Screenplay'),(10096,83064,8,'Hair Department Head'),(10096,112520,7,'Production Design'),(10096,112521,7,'Art Direction'),(10096,108116,10,'Visual Effects Producer'),(10096,957115,8,'Costume Design'),(10096,1235847,7,'Art Department Coordinator'),(10096,1302619,8,'Makeup Artist'),(10096,1319136,8,'Makeup Department Head'),(10096,1324409,8,'Costume Supervisor'),(10096,1394565,8,'Hairstylist'),(10096,1395290,2,'Script Supervisor'),(10096,1398132,3,'Casting Associate'),(10096,1400079,1,'Camera Operator'),(10096,1400088,6,'Music Editor'),(10096,1405209,10,'Visual Effects Supervisor'),(10096,1407027,1,'Still Photographer'),(10096,1408326,9,'Visual Effects Editor'),(10096,1409819,8,'Key Hair Stylist'),(10096,1428122,8,'Key Hair Stylist'),(10096,1446690,8,'Set Costumer'),(10096,1459906,10,'Visual Effects Producer'),(10096,1471726,6,'Music Supervisor'),(10096,1537179,1,'Still Photographer'),(10096,1546827,7,'Art Department Coordinator'),(10096,1546829,8,'Set Costumer'),(10096,1546830,8,'Set Costumer'),(10096,1546840,1,'First Assistant Camera'),(10096,1546841,1,'First Assistant Camera'),(10207,1269,3,'Producer'),(10207,1899,3,'Producer'),(10207,5488,6,'Music'),(10207,7847,3,'Producer'),(10207,7848,7,'Production Design'),(10207,9647,5,'Editor'),(10207,8750,1,'Director of Photography'),(10207,46085,2,'Director'),(10207,46086,4,'Screenplay'),(10207,46090,3,'Associate Producer'),(10207,64172,4,'Screenplay'),(21972,2033,5,'Editor'),(21972,7416,7,'Production Design'),(21972,21068,6,'Original Music Composer'),(21972,29206,3,'Producer'),(21972,35766,8,'Costume Design'),(21972,42906,3,'Producer'),(21972,38413,7,'Set Decoration'),(21972,52260,1,'Director of Photography'),(21972,53966,3,'Producer'),(21972,79656,2,'Director'),(21972,88129,4,'Screenplay'),(21972,88130,4,'Screenplay'),(21972,88131,3,'Producer'),(21972,88132,3,'Producer'),(21972,88133,3,'Producer'),(21972,88134,3,'Executive Producer'),(21972,88135,3,'Executive Producer'),(21972,959406,5,'Editor'),(21972,1319827,7,'Art Direction'),(16871,561,3,'Casting'),(16871,5549,8,'Costume Design'),(16871,7623,2,'Director'),(16871,7623,4,'Writer'),(16871,7712,5,'Editor'),(16871,7628,3,'Producer'),(16871,7629,3,'Co-Producer'),(16871,7629,4,'Writer'),(16871,19155,6,'Original Music Composer'),(16871,9347,1,'Additional Photography'),(16871,9573,1,'Director of Photography'),(16871,11359,3,'Producer'),(16871,10837,7,'Art Direction'),(16871,22242,8,'Costume Supervisor'),(16871,23541,3,'Executive Producer'),(16871,40383,3,'Executive Producer'),(16871,31307,8,'Makeup Artist'),(16871,39038,7,'Production Design'),(16871,59287,9,'Makeup Effects'),(16871,62723,5,'Digital Intermediate'),(16871,65937,6,'Sound Designer'),(16871,107372,9,'Makeup Effects'),(16871,83066,8,'Hairstylist'),(16871,113081,6,'Sound Effects Editor'),(16871,891426,9,'Visual Effects Editor'),(16871,891426,5,'First Assistant Editor'),(16871,958278,7,'Set Decoration'),(16871,1042415,9,'Animatronic and Prosthetic Effects'),(16871,1121874,3,'Co-Producer'),(16871,1167831,10,'Visual Effects Supervisor'),(16871,1172414,1,'Still Photographer'),(16871,1282566,10,'Animation Supervisor'),(16871,1318982,9,'Second Unit Cinematographer'),(16871,1322015,8,'Makeup Department Head'),(16871,1332210,8,'Makeup Artist'),(16871,1336935,10,'Visual Effects Producer'),(16871,1340737,6,'Sound Re-Recording Mixer'),(16871,1341857,6,'ADR & Dubbing'),(16871,1372835,8,'Makeup Artist'),(16871,1392084,5,'Dialogue Editor'),(16871,1392211,6,'Sound Re-Recording Mixer'),(16871,1394336,6,'Foley'),(16871,1394950,6,'Sound Designer'),(16871,1394950,6,'Supervising Sound Editor'),(16871,1397737,9,'Transportation Coordinator'),(16871,1400555,7,'Set Designer'),(16871,1403488,5,'Digital Intermediate'),(16871,1411527,9,'CG Supervisor'),(16871,1411530,10,'Visual Effects Producer'),(16871,1411856,6,'Music Editor'),(16871,1413091,6,'ADR & Dubbing'),(16871,1413095,6,'ADR & Dubbing'),(16871,1415022,5,'Digital Intermediate'),(16871,1415650,9,'Unit Publicist'),(16871,1417398,8,'Hairstylist'),(16871,1420150,7,'Construction Coordinator'),(16871,1425899,8,'Makeup Artist'),(16871,1425900,9,'Makeup Effects'),(16871,1425902,9,'Makeup Effects'),(16871,1425904,7,'Art Department Coordinator'),(16871,1425905,9,'Property Master'),(16871,1425906,7,'Assistant Art Director'),(16871,1425908,7,'Leadman'),(16871,1425909,7,'Sculptor'),(16871,1425911,6,'Dolby Consultant'),(16871,1425912,9,'Special Effects Coordinator'),(16871,1425913,10,'Visual Effects Producer'),(16871,1425914,9,'Visual Effects Editor'),(16871,1425915,10,'Visual Effects Producer'),(16871,1425916,10,'Visual Effects Producer'),(16871,1425917,10,'Visual Effects Producer'),(16871,1425918,10,'Visual Effects Producer'),(16871,1425919,9,'Visual Effects Art Director'),(16871,1425921,10,'Visual Effects Supervisor'),(16871,1425923,10,'Visual Effects Supervisor'),(16871,1425925,10,'Visual Effects Supervisor'),(16871,1425926,10,'Visual Effects Supervisor'),(16871,1425927,10,'Visual Effects Supervisor'),(16871,1425928,9,'Stunt Coordinator'),(16871,1425931,2,'Script Supervisor'),(16871,1561842,1,'Camera Operator'),(13156,77919,2,'Director'),(13156,77919,4,'Writer'),(22970,558,6,'Original Music Composer'),(22970,5362,3,'Casting'),(22970,5363,3,'Casting'),(22970,9349,6,'Supervising Sound Editor'),(22970,9349,6,'Sound Designer'),(22970,9442,6,'Foley'),(22970,9573,1,'Director of Photography'),(22970,11818,7,'Art Direction'),(22970,12891,4,'Screenplay'),(22970,12891,3,'Producer'),(22970,16177,6,'Sound Re-Recording Mixer'),(22970,16618,9,'Stunt Coordinator'),(22970,46592,7,'Set Designer'),(22970,47506,2,'Director'),(22970,47506,4,'Screenplay'),(22970,51987,7,'Production Design'),(22970,64759,3,'Production Manager'),(22970,92302,7,'Supervising Art Director'),(22970,76014,3,'Casting'),(22970,76015,3,'Casting'),(22970,102744,9,'Stunts'),(22970,94534,3,'Executive Producer'),(22970,217995,7,'Set Designer'),(22970,236696,9,'Choreographer'),(22970,548444,6,'Supervising Sound Editor'),(22970,1018965,5,'Editor'),(22970,1091813,8,'Costume Design'),(22970,1328137,7,'Art Direction'),(22970,1328138,8,'Makeup Artist'),(22970,1334182,7,'Set Decoration'),(22970,1334183,7,'Construction Coordinator'),(22970,1334184,9,'Property Master'),(22970,1334185,8,'Costume Supervisor'),(22970,1371064,6,'Foley'),(22970,1377220,6,'Sound Re-Recording Mixer'),(22970,1378677,7,'Set Designer'),(22970,1378701,9,'Special Effects Coordinator'),(22970,1378725,9,'Transportation Coordinator'),(22970,1386914,10,'Visual Effects Producer'),(22970,1391679,5,'Dialogue Editor'),(22970,1394307,6,'Music Editor'),(22970,1394766,9,'Visual Effects Editor'),(22970,1394942,7,'Greensman'),(22970,1394949,7,'Sculptor'),(22970,1395023,6,'Sound Effects Editor'),(22970,1397693,2,'Script Supervisor'),(22970,1399068,1,'Underwater Camera'),(22970,1400408,1,'Still Photographer'),(22970,1400506,5,'Digital Intermediate'),(22970,1404214,6,'ADR & Dubbing'),(22970,1404313,9,'Visual Effects Editor'),(22970,1404700,7,'Set Decoration Buyer'),(22970,1406903,5,'Digital Intermediate'),(22970,1407839,9,'Stunt Coordinator'),(22970,1407842,1,'Camera Operator'),(22970,1408178,8,'Hairstylist'),(22970,1408179,8,'Hairstylist'),(22970,1408180,8,'Hairstylist'),(22970,1408181,7,'Art Department Coordinator'),(22970,1408182,7,'Set Designer'),(22970,1408183,7,'Set Designer'),(22970,1408184,7,'Set Designer'),(22970,1408186,7,'Set Decoration Buyer'),(22970,1408187,6,'Foley'),(22970,1408188,9,'Sequence Supervisor'),(22970,1408189,9,'Visual Effects Art Director'),(22970,1408190,10,'Visual Effects Supervisor'),(22970,1408191,10,'Visual Effects Supervisor'),(22970,1408192,1,'Camera Operator'),(22970,1408192,1,'Steadicam Operator'),(22970,1408193,1,'Helicopter Camera'),(22970,1408194,8,'Set Costumer'),(22970,1408195,5,'First Assistant Editor'),(22970,1408196,9,'Picture Car Coordinator'),(22970,1408197,3,'Location Manager'),(22970,1408198,9,'Unit Publicist'),(22970,1408200,9,'Choreographer'),(22970,1454410,10,'Animation'),(22970,1723719,9,'Stunts'),(10776,5022,7,'Production Design'),(10776,6347,3,'Casting'),(10776,7754,5,'Editor'),(10776,7908,2,'Director'),(10776,8973,7,'Art Direction'),(10776,9020,3,'Producer'),(10776,11714,8,'Costume Design'),(10776,11959,7,'Set Decoration'),(10776,14456,1,'Director of Photography'),(10776,13521,3,'Line Producer'),(10776,62049,4,'Musical'),(10776,62049,4,'Screenplay'),(10776,63964,6,'Original Music Composer'),(10776,932936,3,'Associate Producer'),(10776,1855718,3,'Associate Producer'),(12763,2952,3,'Casting'),(12763,11477,3,'Executive Producer'),(12763,40384,6,'Original Music Composer'),(12763,10830,3,'Executive Producer'),(12763,24052,3,'Producer'),(12763,56996,3,'Producer'),(12763,57431,3,'Executive Producer'),(12763,59443,1,'Director of Photography'),(12763,60027,3,'Executive Producer'),(12763,60026,3,'Producer'),(12763,60031,5,'Editor'),(12763,60024,2,'Director'),(12763,60025,4,'Screenplay'),(12763,60032,3,'Executive Producer'),(12763,60029,6,'Original Music Composer'),(14034,21672,4,'Novel'),(14034,21808,4,'Screenplay'),(14034,54967,2,'Director'),(12244,510,3,'Producer'),(12244,531,6,'Original Music Composer'),(12244,6044,3,'Casting'),(12244,20720,3,'Producer'),(12244,23430,3,'Producer'),(12244,34892,4,'Screenplay'),(12244,56146,4,'Storyboard'),(12244,56147,4,'Storyboard'),(12244,60731,7,'Production Design'),(12244,61976,5,'Editor'),(12244,71856,7,'Production Design'),(12244,71923,4,'Screenplay'),(12244,71923,2,'Director'),(12244,76588,3,'Producer'),(12244,76589,3,'Producer'),(12244,76590,3,'Producer'),(12244,76591,3,'Producer'),(12244,76592,7,'Art Direction'),(12244,76593,1,'Still Photographer'),(12244,93301,4,'Storyboard'),(12244,35266,4,'Storyboard'),(12244,89425,9,'Sound Recordist'),(12244,138618,6,'Sound Re-Recording Mixer'),(12244,587699,4,'Storyboard'),(12244,980165,10,'Animation Manager'),(12244,1098477,4,'Storyboard'),(12244,1119658,5,'First Assistant Editor'),(12244,1205985,4,'Storyboard'),(12244,1335873,10,'Visual Development'),(12244,1340346,5,'Dialogue Editor'),(12244,1366289,9,'Production Intern'),(12244,1376889,7,'Set Designer'),(12244,1389133,6,'Sound Designer'),(12244,1389133,6,'Supervising Sound Editor'),(12244,1393000,7,'Set Designer'),(12244,1393001,9,'Sound Recordist'),(12244,1393004,10,'Visual Effects Supervisor'),(12244,1393011,9,'Supervising Animator'),(12244,1393012,9,'Supervising Animator'),(12244,1393013,9,'Supervising Animator'),(12244,1393014,9,'Supervising Animator'),(12244,1393015,10,'Animation Director'),(12244,1393021,6,'Music Editor'),(12244,1393023,9,'CG Supervisor'),(12244,1393024,3,'Location Manager'),(12244,1447317,4,'Storyboard'),(12244,1451296,4,'Storyboard'),(12244,1453559,4,'Storyboard'),(12244,1453561,4,'Storyboard'),(12244,1453563,4,'Storyboard'),(12244,1453568,4,'Storyboard'),(12244,1453569,7,'Art Department Manager'),(12244,1453572,10,'Visual Development'),(12244,1453573,7,'Art Department Coordinator'),(12244,1453574,4,'Storyboard'),(12244,1455598,10,'Animation'),(12244,1460630,2,'Layout'),(11137,4023,3,'Casting'),(11137,907,8,'Costume Design'),(11137,2073,3,'Casting'),(11137,3192,3,'Casting'),(11137,5328,3,'Casting'),(11137,10064,7,'Production Design'),(11137,19452,5,'Editor'),(11137,23545,3,'Casting'),(11137,25729,3,'Casting'),(11137,38418,4,'Screenplay'),(11137,38419,4,'Screenplay'),(11137,58048,3,'Producer'),(11137,58048,4,'Story'),(11137,59443,1,'Director of Photography'),(11137,62778,3,'Casting'),(11137,63713,2,'Director'),(11137,63729,6,'Original Music Composer'),(11137,68308,4,'Screenplay'),(11137,68308,4,'Story'),(11137,68309,3,'Executive Producer'),(11137,68310,3,'Executive Producer'),(11137,1090150,8,'Makeup Artist'),(11137,1286327,7,'Art Department Coordinator'),(11137,1318873,8,'Makeup Artist'),(11137,1408839,8,'Set Costumer'),(11137,1409755,8,'Hairstylist'),(11137,1415328,8,'Hairstylist'),(11137,1423203,8,'Hairstylist'),(11137,1426003,2,'Script Supervisor'),(11137,1432044,8,'Costume Supervisor'),(11137,1455486,2,'Assistant Director'),(11137,1481830,7,'Art Department Coordinator'),(11137,1525576,8,'Hairstylist'),(11137,1525577,8,'Makeup Artist'),(11137,1525578,9,'Special Effects Coordinator'),(10152,2147,3,'Producer'),(10152,7408,3,'Producer'),(10152,14139,1,'Director of Photography'),(10152,49286,5,'Editor'),(10152,51702,3,'Producer'),(10152,51703,3,'Producer'),(10152,58868,2,'Director'),(10152,58868,4,'Screenplay'),(10152,58868,3,'Producer'),(10152,64026,4,'Screenplay'),(10152,64027,6,'Original Music Composer'),(14846,5956,7,'Art Direction'),(14846,13585,3,'Casting'),(14846,9617,8,'Makeup Artist'),(14846,10815,1,'Director of Photography'),(14846,14041,7,'Set Decoration'),(14846,15427,7,'Production Design'),(14846,23486,6,'Music'),(14846,42274,2,'Director'),(14846,52004,3,'Producer'),(14846,66692,8,'Hairstylist'),(14846,61122,3,'Producer'),(14846,61123,3,'Producer'),(14846,70592,3,'Producer'),(14846,147484,4,'Writer'),(14846,957115,8,'Costume Design'),(14846,1141534,5,'Editor'),(14846,1352959,8,'Makeup Department Head'),(14846,1412188,8,'Hairstylist'),(14846,1418528,8,'Hairstylist'),(14846,1457712,8,'Hairstylist'),(14846,1457713,8,'Hairstylist'),(14846,1457718,8,'Makeup Artist'),(14846,1457720,8,'Makeup Artist'),(14846,1457726,8,'Makeup Artist'),(14846,1457729,2,'Script Supervisor'),(16232,664,3,'Executive Producer'),(16232,1264,5,'Editor'),(16232,4504,3,'Producer'),(16232,4507,3,'Producer'),(16232,11098,6,'Original Music Composer'),(16232,11475,7,'Production Design'),(16232,15150,3,'Producer'),(16232,21635,3,'Executive Producer'),(16232,52080,4,'Screenplay'),(16232,52080,4,'Story'),(16232,51449,3,'Executive Producer'),(16232,51557,3,'Casting'),(16232,57126,1,'Director of Photography'),(16232,58870,3,'Co-Producer'),(16232,63672,3,'Casting'),(16232,68040,4,'Screenplay'),(16232,68040,4,'Story'),(16232,70781,3,'Executive Producer'),(16232,80215,2,'Director'),(16232,80216,4,'Screenplay'),(16232,86197,8,'Costume Design'),(16232,224389,7,'Set Decoration'),(16232,1403412,11,'Gaffer'),(11702,1298,3,'Producer'),(11702,5553,6,'Original Music Composer'),(11702,8859,3,'Producer'),(11702,11401,3,'Executive Producer'),(11702,11401,9,'Choreographer'),(11702,13227,5,'Editor'),(11702,20823,1,'Director of Photography'),(11702,20907,2,'Director'),(11702,58471,3,'Unit Production Manager'),(11702,70278,4,'Screenplay'),(18550,40230,2,'Director'),(18550,76705,4,'Writer'),(10658,1,3,'Executive Producer'),(10658,686,2,'Director'),(10658,686,4,'Screenplay'),(10658,687,4,'Screenplay'),(10658,687,3,'Producer'),(10658,1762,1,'Director of Photography'),(10658,2289,6,'Original Music Composer'),(10658,4009,5,'Editor'),(10658,7727,10,'Visual Effects'),(10658,7727,10,'Creature Design'),(10658,22483,5,'Editor'),(13150,4140,6,'Original Music Composer'),(13150,7232,3,'Casting'),(13150,6117,1,'Director of Photography'),(13150,7496,7,'Production Design'),(13150,11625,5,'Editor'),(13150,17315,3,'Executive Producer'),(13150,20540,3,'Casting'),(13150,10830,3,'Executive Producer'),(13150,40223,4,'Screenplay'),(13150,41332,3,'Executive Producer'),(13150,67810,5,'Editor'),(13150,77003,2,'Director'),(13150,77003,4,'Screenplay'),(13150,77003,4,'Story'),(13150,199449,4,'Story'),(13150,199449,3,'Producer'),(13150,1125866,4,'Story'),(13150,1125866,3,'Producer'),(13150,1125867,3,'Producer'),(17813,2874,3,'Casting'),(17813,3026,2,'Director'),(17813,3032,5,'Editor'),(17813,3275,3,'Casting'),(17813,9251,6,'Original Music Composer'),(17813,19971,8,'Costume Design'),(17813,25210,4,'Writer'),(17813,25300,7,'Set Decoration'),(17813,68333,1,'Director of Photography'),(17813,66519,5,'Editor'),(17813,1414143,7,'Art Direction'),(17813,1573761,7,'Production Design'),(11208,8377,6,'Original Music Composer'),(11208,68602,3,'Producer'),(11208,2291,2,'Director'),(11208,3953,3,'Producer'),(11208,3956,3,'Executive Producer'),(11208,3958,9,'Post Production Supervisor'),(11208,3958,10,'Visual Effects Supervisor'),(11208,3965,3,'Casting'),(11208,4657,10,'Special Effects Supervisor'),(11208,5438,7,'Production Design'),(11208,6745,6,'Music Editor'),(11208,11958,1,'Director of Photography'),(11208,13225,6,'Music Supervisor'),(11208,17611,3,'Casting'),(11208,32884,8,'Wigmaker'),(11208,41332,3,'Producer'),(11208,45055,5,'Editor'),(11208,51974,4,'Screenplay'),(11208,52788,3,'Producer'),(11208,52791,3,'Executive Producer'),(11208,54777,3,'Casting Associate'),(11208,60896,3,'Production Manager'),(11208,72667,3,'Executive Producer'),(11208,72669,3,'Executive Producer'),(11208,130223,7,'Set Decoration'),(11208,405004,9,'Sound Recordist'),(11208,961452,8,'Costume Design'),(11208,1029026,3,'Unit Production Manager'),(11208,1034748,3,'Casting'),(11208,1198825,3,'Casting'),(11208,1293479,9,'Stunt Coordinator'),(11208,1300922,8,'Makeup Artist'),(11208,1352422,6,'Foley'),(11208,1380378,7,'Set Designer'),(11208,1384366,6,'Boom Operator'),(11208,1389134,6,'Sound Designer'),(11208,1389134,6,'Supervising Sound Editor'),(11208,1389534,5,'Dialogue Editor'),(11208,1395025,6,'Dolby Consultant'),(11208,1403639,1,'Camera Operator'),(11208,1405246,9,'Unit Publicist'),(11208,1409709,11,'Gaffer'),(11208,1409717,9,'Video Assist Operator'),(11208,1409723,9,'Transportation Captain'),(11208,1412460,5,'Editorial Services'),(11208,1415464,6,'Sound Effects Editor'),(11208,1418393,9,'Post Production Assistant'),(11208,1419199,10,'Visual Effects Coordinator'),(11208,1419732,2,'Script Coordinator'),(11208,1436493,8,'Key Hair Stylist'),(11208,1445986,1,'Still Photographer'),(11208,1450856,3,'Location Manager'),(11208,1452339,1,'Helicopter Camera'),(11208,1519906,9,'Driver'),(11208,1554027,3,'Production Coordinator'),(11208,1589730,6,'Scoring Mixer'),(11208,1600618,9,'Additional Music'),(11208,1611785,1,'First Assistant Camera'),(11208,1611793,9,'Stand In'),(11208,1611806,9,'Transportation Coordinator'),(11208,1611808,2,'Assistant Director'),(11208,1611810,11,'Electrician'),(11208,1646480,8,'Hairstylist'),(11208,1656672,3,'Production Supervisor'),(11208,1696796,9,'Production Intern'),(11208,1698017,10,'Visual Effects'),(11208,1698018,9,'Thanks'),(11208,1720834,1,'Grip'),(11208,1720836,8,'Set Dressing Artist'),(11208,1720837,9,'Loader'),(11208,1720839,9,'Special Effects Coordinator'),(11208,1720840,5,'Digital Intermediate'),(11208,1720841,5,'First Assistant Editor'),(11208,1720842,6,'Sound Mixer'),(11208,1720844,10,'Digital Compositors'),(11400,6410,3,'Casting'),(11400,1309,3,'Executive Producer'),(11400,1729,6,'Original Music Composer'),(11400,3190,5,'Editor'),(11400,4185,1,'Director of Photography'),(11400,19156,3,'Casting'),(11400,8425,5,'Editor'),(11400,11657,5,'Editor'),(11400,16398,3,'Producer'),(11400,10830,3,'Executive Producer'),(11400,30715,2,'Director'),(11400,30715,4,'Screenplay'),(11400,69226,3,'Executive Producer'),(11400,69227,3,'Executive Producer'),(11400,69228,3,'Executive Producer'),(11400,69229,5,'Editor'),(11400,958488,8,'Costume Design'),(11400,958921,7,'Art Direction'),(10350,997,1,'Director of Photography'),(10350,907,8,'Costume Design'),(10350,8524,7,'Production Design'),(10350,6489,6,'Original Music Composer'),(10350,7204,7,'Art Direction'),(10350,8410,7,'Set Decoration'),(10350,8526,7,'Set Decoration'),(10350,10612,5,'Editor'),(10350,10712,7,'Supervising Art Director'),(10350,10880,7,'Art Direction'),(10350,20305,4,'Screenplay'),(10350,20305,2,'Director'),(10350,51588,6,'Original Music Composer'),(10350,64934,3,'Producer'),(10350,64935,3,'Producer'),(10350,957282,3,'Casting'),(10350,962163,7,'Art Direction'),(10350,986687,7,'Art Direction'),(10350,1034754,7,'Art Direction'),(10350,1325916,3,'Casting'),(10350,1325917,7,'Art Direction'),(10350,1401803,5,'Digital Intermediate'),(28902,2240,1,'Director of Photography'),(28902,2874,3,'Casting'),(28902,3275,3,'Casting'),(28902,4148,7,'Set Decoration'),(28902,5581,6,'Original Music Composer'),(28902,6348,8,'Costume Design'),(28902,8525,7,'Art Direction'),(28902,8966,4,'Screenplay'),(28902,9021,3,'Producer'),(28902,9022,3,'Co-Producer'),(28902,17016,2,'Director'),(28902,17016,4,'Screenplay'),(28902,9817,7,'Production Design'),(28902,12685,5,'Editor'),(28902,57882,4,'Novel'),(28902,1659166,9,'Makeup Effects'),(28902,1671051,3,'Producer'),(28902,1671052,9,'Makeup Effects'),(14164,57134,2,'Director'),(14164,58037,4,'Screenplay'),(14164,57607,3,'Producer'),(14164,78322,4,'Screenplay'),(14164,78322,4,'Novel'),(14164,1463785,10,'Animation'),(11058,971,5,'Editor'),(11058,2678,3,'Casting'),(11058,7232,3,'Casting'),(11058,6041,6,'Original Music Composer'),(11058,6361,2,'Director'),(11058,8751,5,'Editor'),(11058,17451,3,'Producer'),(11058,18189,4,'Screenplay'),(11058,20214,7,'Production Design'),(11058,20540,3,'Casting'),(11058,20567,3,'Producer'),(11058,28041,8,'Costume Design'),(11058,31515,3,'Executive Producer'),(11058,31520,3,'Executive Producer'),(11058,40513,3,'Executive Producer'),(11058,46088,3,'Executive Producer'),(11058,50140,1,'Director of Photography'),(11058,53757,3,'Executive Producer'),(11058,62511,3,'Executive Producer'),(11058,67975,3,'Executive Producer'),(11058,67976,3,'Producer'),(11058,135257,2,'Script Supervisor'),(11058,1418014,8,'Hairstylist'),(11058,1484714,8,'Makeup Department Head'),(14844,434,3,'Casting'),(14844,436,3,'Casting'),(14844,3311,3,'Casting'),(14844,10725,5,'Editor'),(14844,11456,7,'Production Design'),(14844,15733,7,'Set Decoration'),(14844,17791,1,'Director of Photography'),(14844,20062,3,'Producer'),(14844,41846,6,'Music'),(14844,47285,3,'Producer'),(14844,47286,3,'Producer'),(14844,80307,2,'Director'),(14844,80308,4,'Author'),(14844,80309,4,'Author'),(14844,957966,8,'Costume Design'),(14844,1090150,8,'Makeup Artist'),(14844,1320739,7,'Art Department Coordinator'),(14844,1325198,8,'Costume Supervisor'),(14844,1337394,7,'Art Direction'),(14844,1340123,10,'Visual Effects Supervisor'),(14844,1408839,8,'Set Costumer'),(14844,1421663,2,'Script Supervisor'),(14844,1532212,10,'Visual Effects Producer'),(14844,1532213,9,'CG Supervisor'),(14844,1532214,8,'Costume Supervisor'),(14844,1532215,9,'Armorer'),(11162,4584,3,'Executive Producer'),(11162,5017,6,'Original Music Composer'),(11162,6210,4,'Theatre Play'),(11162,6476,3,'Producer'),(11162,15731,5,'Editor'),(11162,21655,1,'Director of Photography'),(11162,23861,3,'Producer'),(11162,23863,3,'Producer'),(11162,28898,4,'Screenplay'),(11162,28898,2,'Director'),(11162,67465,3,'Executive Producer'),(11162,68401,3,'Executive Producer'),(11162,68402,3,'Producer'),(11162,68403,3,'Executive Producer'),(11162,68404,3,'Executive Producer'),(17186,97864,3,'Producer'),(17186,72258,2,'Director'),(17186,72258,3,'Executive Producer'),(17186,73155,4,'Writer'),(17186,174378,4,'Writer'),(17186,1099980,4,'Writer'),(17186,1099982,3,'Executive Producer'),(17186,1099983,3,'Executive Producer'),(17186,1099985,3,'Producer'),(13967,3311,3,'Casting'),(13967,8846,1,'Director of Photography'),(13967,8922,8,'Costume Design'),(13967,9137,3,'Executive Producer'),(13967,13596,3,'Producer'),(13967,20206,3,'Producer'),(13967,20207,3,'Producer'),(13967,29016,3,'Producer'),(13967,41323,3,'Producer'),(13967,58065,6,'Music'),(13967,58137,2,'Director'),(13967,143257,4,'Writer'),(31203,122,6,'Original Music Composer'),(31203,4275,4,'Screenplay'),(31203,24530,4,'Original Story'),(31203,33462,7,'Set Decoration'),(31203,64574,4,'Screenplay'),(31203,64575,4,'Screenplay'),(31203,64575,2,'Director'),(31203,64578,5,'Editor'),(31203,117859,4,'Original Story'),(10955,1114,5,'Editor'),(10955,1259,6,'Original Music Composer'),(10955,12491,4,'Novel'),(10955,29895,1,'Director of Photography'),(10955,67750,4,'Screenplay'),(10955,67750,2,'Director'),(11499,947,6,'Original Music Composer'),(11499,339,3,'Producer'),(11499,2236,3,'Producer'),(11499,2238,3,'Producer'),(11499,2874,3,'Casting'),(11499,3275,3,'Casting'),(11499,5283,3,'Executive Producer'),(11499,6159,2,'Director'),(11499,6159,3,'Producer'),(11499,6184,3,'Executive Producer'),(11499,6186,3,'Unit Production Manager'),(11499,6186,3,'Associate Producer'),(11499,6188,3,'Associate Producer'),(11499,6189,5,'Editor'),(11499,6190,5,'Editor'),(11499,7855,7,'Production Design'),(11499,8408,1,'Director of Photography'),(11499,8411,8,'Costume Design'),(11499,8419,3,'Associate Producer'),(11499,9150,3,'Executive Producer'),(11499,9151,3,'Executive Producer'),(11499,14381,8,'Makeup Artist'),(11499,15730,4,'Screenplay'),(11499,15730,3,'Executive Producer'),(11499,15730,4,'Theatre Play'),(11499,61299,3,'Executive Producer'),(11499,81687,9,'Stunt Coordinator'),(11499,91051,8,'Hairstylist'),(11499,555329,8,'Makeup Artist'),(11499,948223,7,'Set Decoration'),(11499,1323090,8,'Makeup Department Head'),(11499,1378173,1,'Still Photographer'),(11499,1390538,2,'Script Supervisor'),(11499,1400007,3,'Production Supervisor'),(11499,1400081,1,'Steadicam Operator'),(11499,1400088,6,'Music Editor'),(11499,1404306,8,'Hair Department Head'),(11499,1411503,8,'Hairstylist'),(11499,1435576,8,'Hairstylist'),(11499,1530166,6,'Music Supervisor'),(11499,1534377,11,'Rigging Gaffer'),(11499,1534378,3,'Executive Producer'),(11499,1534379,8,'Key Hair Stylist'),(11499,1534384,8,'Hairstylist'),(11499,1534386,8,'Makeup Artist'),(11499,1534387,8,'Makeup Artist'),(11499,1552521,9,'Stunts'),(12771,5379,3,'Producer'),(12771,9615,5,'Editor'),(12771,10396,7,'Production Design'),(12771,11815,3,'Executive Producer'),(12771,12754,3,'Executive Producer'),(12771,54904,4,'Screenplay'),(12771,56988,1,'Director of Photography'),(12771,63976,6,'Original Music Composer'),(12771,68215,2,'Director'),(12771,68208,4,'Screenplay'),(12506,1528,6,'Original Music Composer'),(12506,11072,5,'Editor'),(12506,4786,2,'Director'),(12506,4786,3,'Producer'),(12506,5491,7,'Production Design'),(12506,11845,4,'Screenplay'),(12506,11847,1,'Director of Photography'),(12506,72564,4,'Novel'),(12506,72565,6,'Original Music Composer'),(24071,557,8,'Costume Design'),(24071,1213,6,'Music'),(24071,2241,5,'Editor'),(24071,2243,3,'Producer'),(24071,8844,2,'Director'),(24071,8844,4,'Writer'),(24071,8844,3,'Producer'),(24071,16329,3,'Producer'),(24071,9966,5,'Editor'),(24071,21673,9,'Cinematography'),(24071,1033793,3,'Producer'),(24071,1193336,3,'Producer'),(11249,11114,5,'Editor'),(11249,13596,3,'Producer'),(11249,14138,6,'Original Music Composer'),(11249,33282,1,'Director of Photography'),(11249,41323,3,'Producer'),(11249,62927,3,'Executive Producer'),(11249,65677,2,'Director'),(11249,65677,4,'Screenplay'),(11249,68777,5,'Editor'),(14444,12085,4,'Writer'),(14444,86439,2,'Director'),(14444,110873,2,'Director'),(14444,1447495,7,'Art Department Manager'),(14444,1447569,2,'Layout'),(14444,1448999,9,'Technical Supervisor'),(14444,1451682,9,'Technical Supervisor'),(14444,1454416,10,'Animation'),(15373,434,3,'Casting'),(15373,436,3,'Casting'),(15373,1597,6,'Supervising Sound Effects Editor'),(15373,22226,4,'Screenplay'),(15373,10958,7,'Set Decoration'),(15373,7859,9,'Special Effects Coordinator'),(15373,11815,3,'Executive Producer'),(15373,14381,8,'Makeup Artist'),(15373,16467,7,'Art Direction'),(15373,17748,6,'Original Music Composer'),(15373,19282,3,'Producer'),(15373,33456,8,'Costume Design'),(15373,22043,1,'Director of Photography'),(15373,22214,2,'Director'),(15373,22214,4,'Screenplay'),(15373,25618,4,'Story'),(15373,53811,7,'Production Design'),(15373,57864,3,'Executive Producer'),(15373,61122,3,'Executive Producer'),(15373,61123,3,'Executive Producer'),(15373,65734,3,'Producer'),(15373,77089,4,'Screenplay'),(15373,114408,3,'Producer'),(15373,132315,4,'Screenplay'),(15373,132315,4,'Story'),(15373,224529,3,'Executive Producer'),(15373,224530,5,'Editor'),(15373,957202,8,'Makeup Department Head'),(15373,1031811,6,'Supervising Sound Editor'),(15373,1323760,8,'Makeup Artist'),(15373,1324794,8,'Set Costumer'),(15373,1339459,6,'Music Editor'),(15373,1341776,9,'Property Master'),(15373,1342629,2,'Script Supervisor'),(15373,1342656,6,'ADR Editor'),(15373,1352966,5,'Dialogue Editor'),(15373,1377293,6,'Sound Effects Editor'),(15373,1378244,8,'Set Costumer'),(15373,1387183,5,'Dialogue Editor'),(15373,1398854,7,'Construction Coordinator'),(15373,1400374,1,'Camera Operator'),(15373,1412228,6,'Sound Effects Editor'),(15373,1414984,8,'Hair Department Head'),(15373,1437609,8,'Key Costumer'),(15373,1477786,1,'Still Photographer'),(15373,1527912,3,'Casting Associate'),(15373,1530166,6,'Music Supervisor'),(15373,1532604,3,'Casting Associate'),(15373,1532719,7,'Art Department Coordinator'),(15373,1532720,8,'Assistant Costume Designer'),(15373,1532721,8,'Costume Supervisor'),(15373,1532722,8,'Set Costumer'),(15373,1532723,8,'Set Costumer'),(15373,1532724,8,'Hairstylist'),(15373,1532725,8,'Makeup Artist'),(15373,1537872,1,'Steadicam Operator'),(15373,1549576,8,'Makeup Artist'),(15373,1553013,2,'First Assistant Director'),(15373,1564249,3,'Production Coordinator'),(15373,1813644,9,'Stunts'),(15373,1840622,7,'Construction Foreman'),(15373,1840623,11,'Lighting Technician'),(26320,2952,3,'Casting'),(26320,531,6,'Original Music Composer'),(26320,1614,2,'Director'),(26320,1614,3,'Producer'),(26320,1617,4,'Screenplay'),(26320,1617,3,'Producer'),(26320,1635,5,'Editor'),(26320,1638,6,'Supervising Sound Editor'),(26320,1638,6,'Sound Re-Recording Mixer'),(26320,4006,3,'Executive Producer'),(26320,4183,3,'Executive Producer'),(26320,5329,7,'Production Design'),(26320,15528,9,'Special Effects Coordinator'),(26320,18494,1,'Director of Photography'),(26320,36429,8,'Costume Design'),(26320,60014,7,'Art Direction'),(26320,60135,7,'Set Decoration'),(26320,92389,6,'Sound Effects Editor'),(26320,121142,3,'Producer'),(26320,992965,2,'Script Supervisor'),(26320,1023786,3,'Producer'),(26320,1085007,6,'Sound Re-Recording Mixer'),(26320,1127684,4,'Novel'),(26320,1127685,4,'Novel'),(26320,1127686,3,'Producer'),(26320,1328380,8,'Costume Supervisor'),(26320,1331651,8,'Costume Supervisor'),(26320,1333223,6,'Supervising Sound Editor'),(26320,1333223,5,'Dialogue Editor'),(26320,1337458,6,'Sound mixer'),(26320,1413003,9,'Unit Publicist'),(26320,1538430,1,'Still Photographer'),(26320,1556630,6,'Music Editor'),(14292,77003,2,'Director'),(14292,84340,4,'Author'),(10439,2033,5,'Editor'),(10439,2095,3,'Executive Producer'),(10439,2116,1,'Director of Photography'),(10439,4500,6,'Original Music Composer'),(10439,2706,3,'Producer'),(10439,13587,7,'Art Direction'),(10439,13596,3,'Producer'),(10439,13596,4,'Story'),(10439,59648,4,'Screenplay'),(10439,61824,4,'Screenplay'),(10439,61824,4,'Story'),(10439,65310,2,'Director'),(10439,1393558,7,'Set Decoration'),(23483,1113,3,'Casting'),(23483,287,3,'Producer'),(23483,960,6,'Original Music Composer'),(23483,950,5,'Editor'),(23483,957,2,'Director'),(23483,957,4,'Screenplay'),(23483,957,3,'Producer'),(23483,1114,5,'Editor'),(23483,7232,3,'Casting'),(23483,11271,8,'Costume Design'),(23483,22161,1,'Director of Photography'),(23483,23447,4,'Screenplay'),(23483,23447,3,'Co-Producer'),(23483,23451,6,'Original Music Composer'),(23483,35388,3,'Executive Producer'),(23483,45056,6,'Music Supervisor'),(23483,49809,5,'Editor'),(23483,61578,3,'Producer'),(23483,61580,7,'Production Design'),(23483,87172,4,'Comic Book'),(23483,87172,3,'Executive Producer'),(23483,128988,4,'Comic Book'),(23483,128988,3,'Executive Producer'),(23483,227440,6,'Original Music Composer'),(23483,565580,3,'Unit Production Manager'),(23483,963336,3,'Producer'),(23483,967387,3,'Executive Producer'),(23483,1046137,3,'Executive Producer'),(23483,1099948,6,'Music Editor'),(23483,1316159,6,'Original Music Composer'),(23483,1319752,8,'Costume Supervisor'),(23483,1327029,6,'Production Sound Mixer'),(23483,1388898,1,'First Assistant Camera'),(23483,1390388,2,'Script Supervisor'),(23483,1392609,6,'Sound Re-Recording Mixer'),(23483,1392611,6,'Sound Re-Recording Mixer'),(23483,1409296,6,'Supervising Sound Editor'),(23483,1531096,5,'Dialogue Editor'),(23483,1548132,6,'Music Editor'),(23483,1548133,3,'Production Coordinator'),(23483,1548134,1,'Still Photographer'),(23483,1548152,5,'First Assistant Editor'),(10577,1305,6,'Music Editor'),(10577,1633,1,'Director of Photography'),(10577,3501,3,'Casting'),(10577,7229,6,'Original Music Composer'),(10577,7229,6,'Music Supervisor'),(10577,7232,3,'Casting'),(10577,5140,3,'Executive Producer'),(10577,8315,7,'Production Design'),(10577,13551,8,'Costume Design'),(10577,10836,7,'Art Direction'),(10577,20294,9,'Thanks'),(10577,18384,4,'Screenplay'),(10577,18384,3,'Producer'),(10577,20540,3,'Casting'),(10577,27226,2,'Director'),(10577,40269,5,'Editor'),(10577,54601,3,'Producer'),(10577,578724,8,'Makeup Artist'),(10577,957970,7,'Set Decoration'),(10577,1190854,8,'Set Costumer'),(10577,1319625,8,'Makeup Artist'),(10577,1324809,8,'Costume Supervisor'),(10577,1402047,7,'Art Department Coordinator'),(10577,1402708,8,'Makeup Department Head'),(10577,1404851,8,'Assistant Costume Designer'),(10577,1423206,7,'Art Department Coordinator'),(10577,1428469,8,'Key Hair Stylist'),(10577,1545450,6,'Music Supervisor'),(10577,1556515,3,'Casting Associate'),(11780,1225,6,'Music'),(11780,6875,5,'Editor'),(11780,8677,1,'Director of Photography'),(11780,9027,8,'Costume Design'),(11780,30365,2,'Director'),(11780,30365,3,'Executive Producer'),(11780,70476,4,'Screenplay'),(11780,70477,3,'Producer'),(11780,70478,3,'Producer'),(10383,492,2,'Director'),(10383,2873,5,'Editor'),(10383,5344,3,'Producer'),(10383,22680,6,'Original Music Composer'),(10383,65319,4,'Screenplay'),(11516,1663,5,'Editor'),(11516,20030,2,'Director'),(11516,35073,6,'Original Music Composer'),(11516,43993,3,'Producer'),(11516,69706,4,'Screenplay'),(11516,69707,1,'Director of Photography'),(10025,376,3,'Producer'),(10025,4501,1,'Director of Photography'),(10025,10570,3,'Executive Producer'),(10025,14189,5,'Editor'),(10025,13933,7,'Art Direction'),(10025,18281,2,'Director'),(10025,18281,3,'Producer'),(10025,20842,3,'Producer'),(10025,20822,6,'Original Music Composer'),(10025,38416,3,'Producer'),(10025,57062,4,'Author'),(10025,60713,3,'Casting'),(10025,62056,4,'Author'),(10025,62057,4,'Author'),(10025,62058,4,'Author'),(10025,62061,7,'Production Design'),(10025,62059,4,'Author'),(10025,62060,3,'Producer'),(10025,62062,7,'Art Direction'),(10025,62063,7,'Set Decoration'),(10025,543194,8,'Costume Design'),(10025,1119658,5,'First Assistant Editor'),(15198,6737,2,'Director'),(15198,59650,4,'Writer'),(15198,86996,4,'Writer'),(23172,13581,2,'Director'),(23172,62056,4,'Screenplay'),(23172,62058,4,'Screenplay'),(17834,12964,2,'Director'),(17834,33611,4,'Screenplay'),(10016,8340,8,'Makeup Artist'),(10016,1260,7,'Production Design'),(10016,2529,7,'Set Decoration'),(10016,11770,2,'Director'),(10016,11770,6,'Original Music Composer'),(10016,11770,4,'Author'),(10016,21070,7,'Art Direction'),(10016,24956,1,'Director of Photography'),(10016,27581,3,'Producer'),(10016,32284,8,'Makeup Artist'),(10016,32284,9,'Makeup Effects'),(10016,38414,7,'Art Direction'),(10016,59287,9,'Makeup Effects'),(10016,62026,4,'Author'),(10016,62027,6,'Original Music Composer'),(10016,62028,3,'Casting'),(10016,62030,5,'Editor'),(10016,62029,8,'Costume Design'),(10016,1206190,9,'Makeup Effects'),(10016,1333978,8,'Hairstylist'),(10016,1337714,9,'Stunts'),(10016,1412188,8,'Hairstylist'),(10016,1423987,8,'Makeup Artist'),(10016,1454947,8,'Hairstylist'),(10317,1461,3,'Producer'),(10317,18277,3,'Executive Producer'),(10317,28401,3,'Executive Producer'),(10317,31511,3,'Producer'),(10317,64141,2,'Director'),(10317,72264,1,'Director of Photography'),(10317,64814,4,'Screenplay'),(10317,937895,6,'Original Music Composer'),(10317,957368,7,'Set Decoration'),(10317,965663,7,'Set Decoration'),(10317,971715,3,'Executive Producer'),(10317,1017240,8,'Costume Design'),(10317,1023495,5,'Editor'),(10317,1147603,7,'Production Design'),(10317,1308742,7,'Art Direction'),(10317,1583575,7,'Art Direction'),(13092,465,3,'Executive Producer'),(13092,474,3,'Casting'),(13092,4898,3,'Producer'),(13092,6489,6,'Original Music Composer'),(13092,6959,3,'Casting'),(13092,9021,3,'Producer'),(13092,16425,1,'Director of Photography'),(13092,18783,3,'Line Producer'),(13092,23769,7,'Production Design'),(13092,27903,5,'Editor'),(13092,39203,8,'Costume Design'),(13092,64814,4,'Screenplay'),(13092,73517,3,'Executive Producer'),(13092,73524,3,'Executive Producer'),(13092,74159,2,'Director'),(13092,74160,3,'Producer'),(13092,74160,4,'Author'),(13092,82694,3,'Executive Producer'),(13092,118167,3,'Executive Producer'),(13092,590074,3,'Producer'),(13092,933594,7,'Set Decoration'),(13092,948439,3,'Co-Producer'),(13092,958649,3,'Line Producer'),(13092,961165,3,'Casting'),(13092,964875,3,'Executive Producer'),(13092,1104780,7,'Supervising Art Director'),(13092,1117291,3,'Line Producer'),(13092,1123129,3,'Executive Producer'),(13092,1123130,3,'Executive Producer'),(13092,1123133,3,'Line Producer'),(13092,1393558,7,'Leadman'),(13092,1410205,2,'Script Supervisor'),(13092,1465968,7,'Art Direction'),(13092,1465970,9,'Unit Publicist'),(13495,413,5,'Editor'),(13495,8908,4,'Novel'),(13495,8912,3,'Producer'),(13495,14351,6,'Original Music Composer'),(13495,16999,3,'Producer'),(13495,17003,3,'Executive Producer'),(13495,37543,1,'Director of Photography'),(13495,127823,2,'Director'),(13495,127823,4,'Writer'),(13495,1025294,3,'Executive Producer'),(13495,1102178,4,'Characters'),(10024,853,5,'Editor'),(10024,545,3,'Casting'),(10024,2243,7,'Production Design'),(10024,5162,3,'Producer'),(10024,8750,1,'Director of Photography'),(10024,10426,3,'Executive Producer'),(10024,11151,2,'Director'),(10024,11151,4,'Screenplay'),(10024,40384,6,'Original Music Composer'),(10024,25210,4,'Screenplay'),(10024,21639,3,'Casting'),(10024,10830,3,'Executive Producer'),(10024,34856,3,'Producer'),(10024,43425,5,'Editor'),(10024,52654,3,'Producer'),(10024,52304,3,'Executive Producer'),(10024,60027,3,'Executive Producer'),(10024,929256,4,'Novel'),(10024,950257,3,'Executive Producer'),(10024,964712,3,'Producer'),(10024,986618,3,'Executive Producer'),(10024,1125576,3,'Producer'),(13490,72024,2,'Director'),(13490,72024,4,'Writer'),(15927,12238,2,'Director'),(15927,54442,4,'Screenplay'),(10188,59186,4,'Novel'),(10188,59187,4,'Screenplay'),(10188,64140,2,'Director'),(34584,673,3,'Producer'),(34584,2362,5,'Editor'),(34584,3771,7,'Production Design'),(34584,5231,2,'Director'),(34584,5231,4,'Screenplay'),(34584,5238,3,'Co-Producer'),(34584,5240,6,'Original Music Composer'),(34584,5244,7,'Art Direction'),(34584,6890,3,'Executive Producer'),(34584,9402,9,'Special Effects'),(34584,23376,8,'Makeup Artist'),(34584,23358,4,'Novel'),(34584,24120,4,'Screenplay'),(34584,32049,3,'Producer'),(34584,32494,9,'Additional Dialogue'),(34584,62585,3,'Executive Producer'),(34584,124454,3,'Producer'),(34584,124456,7,'Art Direction'),(34584,124457,7,'Art Direction'),(34584,124460,8,'Costume Design'),(34584,124461,8,'Costume Design'),(34584,124462,8,'Makeup Artist'),(34584,124463,9,'Special Effects'),(34584,1424824,3,'Associate Producer'),(12783,466,3,'Executive Producer'),(12783,1012,4,'Screenplay'),(12783,3562,6,'Original Music Composer'),(12783,6713,3,'Producer'),(12783,9001,5,'Editor'),(12783,16364,7,'Production Design'),(12783,35012,8,'Costume Design'),(12783,34005,7,'Art Direction'),(12783,30459,1,'Director of Photography'),(12783,58504,4,'Screenplay'),(12783,73460,4,'Screenplay'),(12783,73460,2,'Director'),(12783,73463,3,'Producer'),(12783,73464,3,'Executive Producer'),(12783,132643,1,'Camera Operator'),(12783,978148,7,'Set Decoration'),(12783,1334807,9,'Property Master'),(12783,1343898,6,'Sound Re-Recording Mixer'),(12783,1350255,1,'Additional Camera'),(12783,1376807,6,'Music Editor'),(12783,1392211,6,'Sound Re-Recording Mixer'),(12783,1393883,1,'Still Photographer'),(12783,1394101,10,'Visual Effects Producer'),(12783,1394103,11,'Gaffer'),(12783,1394721,10,'Visual Effects Supervisor'),(12783,1398918,6,'Foley'),(12783,1399561,9,'Visual Effects Editor'),(12783,1400078,10,'Visual Effects Producer'),(12783,1401118,9,'Choreographer'),(12783,1408380,9,'Visual Effects Editor'),(12783,1408384,10,'Visual Effects Supervisor'),(12783,1409294,5,'Dialogue Editor'),(12783,1409764,6,'Supervising Sound Editor'),(12783,1410196,5,'Digital Intermediate'),(12783,1410203,9,'Dialect Coach'),(12783,1412088,6,'Foley'),(12783,1416481,5,'Digital Intermediate'),(12783,1426312,8,'Makeup Artist'),(12783,1427493,4,'Novel'),(12783,1427495,8,'Hairstylist'),(12783,1427496,8,'Makeup Artist'),(12783,1427497,8,'Makeup Artist'),(12783,1427498,8,'Makeup Artist'),(12783,1427499,8,'Wigmaker'),(12783,1427500,7,'Assistant Art Director'),(12783,1427502,5,'Dialogue Editor'),(12783,1427508,11,'Rigging Gaffer'),(12783,1427510,5,'Digital Intermediate'),(12783,1427511,5,'Digital Intermediate'),(12783,1427512,5,'First Assistant Editor'),(12783,1427522,3,'Location Manager'),(12783,1427523,9,'Unit Publicist'),(12783,1740770,2,'Script Supervisor'),(13155,1,9,'Thanks'),(13155,12401,3,'Executive Producer'),(13155,154,4,'Screenplay'),(13155,154,2,'Director'),(13155,407,4,'Screenplay'),(13155,597,3,'Casting'),(13155,598,3,'Casting'),(13155,599,3,'Casting'),(13155,669,7,'Production Design'),(13155,711,9,'Thanks'),(13155,1302,3,'Casting'),(13155,7888,4,'Storyboard'),(13155,8422,6,'Music'),(13155,8526,7,'Set Decoration'),(13155,8651,3,'Unit Manager'),(13155,10639,1,'Director of Photography'),(13155,9051,4,'Book'),(13155,10197,7,'Art Direction'),(13155,10472,7,'Supervising Art Director'),(13155,11384,6,'Sound Re-Recording Mixer'),(13155,14458,8,'Makeup Supervisor'),(13155,14750,8,'Hair Department Head'),(13155,27135,6,'Sound Editor'),(13155,29868,8,'Costume Design'),(13155,33096,3,'Producer'),(13155,38362,6,'Sound Editor'),(13155,49909,7,'Draughtsman'),(13155,57646,4,'Storyboard'),(13155,66251,3,'Executive In Charge Of Production'),(13155,69000,2,'Assistant Director'),(13155,1047323,6,'Sound Editor'),(13155,1189043,10,'Creature Design'),(13155,1189045,5,'Editor'),(13155,1222571,4,'Storyboard'),(13155,1240621,8,'Wardrobe Supervisor'),(13155,1271085,3,'Associate Producer'),(13155,1313452,1,'Camera Operator'),(13155,1324128,8,'Assistant Costume Designer'),(13155,1336275,6,'Orchestrator'),(13155,1342589,7,'Property Master'),(13155,1361170,1,'Still Photographer'),(13155,1364495,6,'Assistant Sound Editor'),(13155,1385884,2,'Continuity'),(13155,1404590,8,'Makeup Artist'),(13155,1406929,3,'Location Manager'),(13155,1417406,2,'Assistant Director'),(13155,1427543,1,'Camera Operator'),(13155,1427544,1,'Camera Operator'),(13155,1537952,8,'Makeup Artist'),(13155,1600363,9,'Stunt Coordinator'),(13155,1641648,4,'Storyboard'),(13155,1645442,10,'Mechanical Designer'),(13155,1697631,2,'Second Assistant Director'),(13155,1712266,11,'Gaffer'),(13155,1714543,1,'Still Photographer'),(13155,1745766,11,'Gaffer'),(13155,1745768,2,'Second Assistant Director'),(13155,1745773,5,'Assistant Editor'),(13155,1745774,6,'Assistant Sound Editor'),(13155,1745775,6,'Assistant Sound Editor'),(13155,1745776,6,'Music Editor'),(28355,322,3,'Producer'),(28355,373,6,'Sound Effects Editor'),(28355,898,5,'Editor'),(28355,7232,3,'Casting'),(28355,8194,1,'Director of Photography'),(28355,11823,8,'Costume Design'),(28355,16497,6,'Music Editor'),(28355,20540,3,'Casting'),(28355,23414,7,'Art Direction'),(28355,35799,9,'Stunt Coordinator'),(28355,54559,2,'Director'),(28355,55169,6,'Original Music Composer'),(28355,113012,3,'Production Manager'),(28355,57343,3,'Producer'),(28355,58515,4,'Writer'),(28355,128635,10,'Animation Supervisor'),(28355,948648,3,'Producer'),(28355,957310,7,'Production Design'),(28355,1035029,3,'Producer'),(28355,1042813,10,'Visual Effects Supervisor'),(28355,1075261,10,'Visual Effects Supervisor'),(28355,1109054,3,'Producer'),(28355,1194379,1,'Camera Operator'),(28355,1202352,5,'First Assistant Editor'),(28355,1202353,5,'First Assistant Editor'),(28355,1227173,6,'Foley'),(28355,1324919,7,'Set Decoration'),(28355,1333990,7,'Construction Coordinator'),(28355,1360097,5,'Dialogue Editor'),(28355,1360101,6,'Foley'),(28355,1372884,1,'Steadicam Operator'),(28355,1378227,6,'Sound Re-Recording Mixer'),(28355,1378716,1,'Still Photographer'),(28355,1387244,6,'Sound Designer'),(28355,1387244,6,'Supervising Sound Editor'),(28355,1392893,9,'Property Master'),(28355,1394027,9,'Visual Effects Editor'),(28355,1394750,10,'Visual Effects Producer'),(28355,1394755,10,'Visual Effects Supervisor'),(28355,1394931,7,'Art Department Coordinator'),(28355,1394933,7,'Assistant Art Director'),(28355,1395444,6,'Sound Effects Editor'),(28355,1399068,1,'Underwater Camera'),(28355,1399071,1,'Helicopter Camera'),(28355,1400421,2,'Script Supervisor'),(28355,1401720,10,'Visual Effects Supervisor'),(28355,1402208,1,'Camera Operator'),(28355,1404533,10,'Visual Effects Supervisor'),(28355,1404755,9,'Unit Publicist'),(28355,1406106,9,'CG Supervisor'),(28355,1407805,9,'Makeup Effects'),(28355,1408776,9,'Scenic Artist'),(28355,1408777,7,'Lead Painter'),(28355,1408778,7,'Greensman'),(28355,1408779,6,'ADR & Dubbing'),(28355,1408780,9,'Special Effects Coordinator'),(28355,1408781,10,'Visual Effects Producer'),(28355,1408782,9,'Visual Effects Editor'),(28355,1408784,10,'Visual Effects Producer'),(28355,1408785,9,'CG Supervisor'),(28355,1408787,1,'Steadicam Operator'),(28355,1408788,9,'Transportation Coordinator'),(28355,1408790,3,'Location Manager'),(31582,1262,3,'Casting'),(31582,3305,3,'Producer'),(31582,5356,3,'Co-Producer'),(31582,5572,4,'Screenplay'),(31582,5572,2,'Director'),(31582,5572,3,'Producer'),(31582,5583,5,'Editor'),(31582,6117,1,'Director of Photography'),(31582,19157,7,'Set Decoration'),(31582,8411,8,'Costume Design'),(31582,8880,3,'Executive Producer'),(31582,9270,7,'Art Direction'),(31582,10390,3,'Co-Producer'),(31582,18127,2,'Script Supervisor'),(31582,20292,7,'Production Design'),(31582,1395369,1,'Still Photographer'),(31582,1460017,3,'Associate Producer'),(31582,1460019,1,'Camera Operator'),(16617,2325,3,'Casting'),(16617,1307,3,'Co-Executive Producer'),(16617,59839,3,'Co-Executive Producer'),(16617,4061,8,'Costume Design'),(16617,4558,7,'Construction Foreman'),(16617,5575,3,'Producer'),(16617,6476,3,'Producer'),(16617,7049,6,'Sound Designer'),(16617,10947,4,'Screenplay'),(16617,9818,7,'Set Designer'),(16617,9819,7,'Supervising Art Director'),(16617,9820,7,'Assistant Art Director'),(16617,10124,7,'Set Decoration'),(16617,40802,8,'Key Makeup Artist'),(16617,12232,3,'Executive Producer'),(16617,12234,3,'Executive Producer'),(16617,13499,3,'Co-Producer'),(16617,16685,9,'Special Effects Coordinator'),(16617,16685,10,'Special Effects Supervisor'),(16617,16688,9,'Stunt Coordinator'),(16617,16938,2,'Director'),(16617,16938,3,'Executive Producer'),(16617,45702,5,'Editor'),(16617,20295,3,'Executive Producer'),(16617,56765,6,'Sound Re-Recording Mixer'),(16617,20908,3,'Producer'),(16617,21146,3,'Producer'),(16617,29217,9,'Makeup Effects'),(16617,31908,8,'Makeup Department Head'),(16617,31908,1,'Additional Photography'),(16617,32349,7,'Production Design'),(16617,35178,3,'Co-Producer'),(16617,41376,5,'Editor'),(16617,43641,7,'Art Direction'),(16617,45761,9,'Stunts'),(16617,19000,4,'Screenplay'),(16617,19000,4,'Story'),(16617,113047,6,'ADR & Dubbing'),(16617,58325,1,'Director of Photography'),(16617,67759,3,'Executive Producer'),(16617,63289,3,'Production Supervisor'),(16617,65839,3,'Producer'),(16617,65840,6,'Original Music Composer'),(16617,71577,7,'Assistant Art Director'),(16617,115212,4,'Storyboard'),(16617,86907,3,'Associate Producer'),(16617,117202,3,'Co-Producer'),(16617,117205,8,'Makeup Artist'),(16617,117206,8,'Hairstylist'),(16617,117207,9,'Makeup Effects'),(16617,117208,8,'Makeup Artist'),(16617,117208,8,'Hairstylist'),(16617,117209,8,'Makeup Artist'),(16617,117210,8,'Makeup Artist'),(16617,117210,8,'Hairstylist'),(16617,117211,8,'Makeup Artist'),(16617,117211,8,'Hairstylist'),(16617,117212,8,'Makeup Artist'),(16617,117213,9,'Makeup Effects'),(16617,117214,9,'Post Production Supervisor'),(16617,117215,3,'Assistant Production Manager'),(16617,117216,3,'Production Manager'),(16617,117217,4,'Storyboard'),(16617,117218,8,'Set Dressing Production Assistant'),(16617,117219,7,'Set Decoration'),(16617,117220,7,'Sculptor'),(16617,117221,9,'Scenic Artist'),(16617,117223,9,'Property Master'),(16617,117224,7,'Set Decoration'),(16617,117225,7,'Set Designer'),(16617,117226,9,'Property Master'),(16617,117227,9,'Propmaker'),(16617,117229,6,'Sound Designer'),(16617,117231,6,'Foley'),(16617,117232,6,'Sound Re-Recording Mixer'),(16617,117233,6,'Sound Effects Editor'),(16617,117234,6,'Foley Editor'),(16617,117235,6,'Sound Editor'),(16617,117236,6,'Sound mixer'),(16617,117237,6,'Boom Operator'),(16617,117238,6,'Sound Re-Recording Mixer'),(16617,117239,6,'Foley'),(16617,117240,6,'Foley'),(16617,117241,6,'Sound Effects Editor'),(16617,117242,6,'Foley'),(16617,117243,10,'Creature Design'),(16617,117244,9,'Special Effects'),(16617,117245,9,'Special Effects'),(16617,117246,9,'Special Effects Coordinator'),(16617,117247,9,'Special Effects'),(16617,117248,9,'Special Effects'),(16617,117249,9,'Special Effects'),(16617,117250,9,'Special Effects'),(16617,217371,6,'Music'),(16617,557673,9,'Property Master'),(16617,957581,6,'Supervising Sound Editor'),(16617,1063139,9,'Pilot'),(16617,1093338,2,'Second Assistant Director'),(16617,1262528,11,'Electrician'),(16617,1329113,8,'Costume Supervisor'),(16617,1340326,9,'Second Unit'),(16617,1340326,10,'Visual Effects Supervisor'),(16617,1340326,7,'Title Designer'),(16617,1349063,9,'Digital Effects Supervisor'),(16617,1405241,1,'Camera Operator'),(16617,1405243,9,'Transportation Coordinator'),(16617,1418511,1,'Steadicam Operator'),(16617,1422818,6,'Music Editor'),(16617,1424935,6,'ADR Editor'),(16617,1428906,5,'Digital Intermediate'),(16617,1462343,5,'First Assistant Editor'),(16617,1462422,7,'Set Decoration Buyer'),(16617,1490341,2,'Script Supervisor'),(16617,1559566,7,'Location Scout'),(16617,1559569,1,'First Assistant Camera'),(16617,1559580,1,'Key Grip'),(16617,1559581,1,'Underwater Camera'),(16617,1559582,8,'Prosthetic Makeup Artist'),(16617,1559583,9,'Driver'),(16617,1559584,9,'Stand In'),(16617,1559585,9,'Telecine Colorist'),(16617,1559587,9,'Visual Effects Editor'),(16617,1559589,5,'Color Timer'),(16617,1559590,11,'Gaffer'),(16617,1559591,3,'Production Coordinator'),(16617,1559592,3,'Publicist'),(16617,1559593,6,'Music Supervisor'),(16617,1559594,6,'Production Sound Mixer'),(16617,1559597,10,'Digital Compositors'),(16617,1559600,10,'Visual Effects'),(16617,1559602,10,'Visual Effects Coordinator'),(16617,1631516,2,'First Assistant Director'),(16617,1740560,8,'Wardrobe Supervisor'),(16617,1740562,5,'Negative Cutter'),(16617,1740563,6,'Conductor'),(14560,546,3,'Casting'),(14560,11772,3,'Producer'),(14560,11814,3,'Producer'),(14560,11876,5,'Editor'),(14560,19292,3,'Producer'),(14560,20821,3,'Producer'),(14560,20824,7,'Production Design'),(14560,20826,8,'Costume Design'),(14560,22043,1,'Director of Photography'),(14560,32895,4,'Screenplay'),(14560,32895,3,'Producer'),(14560,32903,7,'Art Direction'),(14560,39124,7,'Set Decoration'),(14560,52112,2,'Director'),(14560,60150,6,'Music'),(14560,63516,3,'Executive Producer'),(14560,78435,4,'Screenplay'),(14560,935278,3,'Casting'),(14560,935499,3,'Associate Producer'),(14560,1085600,3,'Casting Assistant'),(14560,1272995,3,'Associate Producer'),(14560,1408406,3,'Location Manager'),(14560,1436958,9,'Other'),(14560,1473981,2,'Script Supervisor'),(14560,1555159,3,'Production Coordinator'),(14560,1586105,3,'Casting Assistant'),(14560,1670662,3,'Production Manager'),(14560,1786860,3,'Consulting Producer'),(14560,1786861,3,'Casting Assistant'),(14560,1786863,7,'Location Scout'),(10330,599,3,'Casting'),(10330,5633,7,'Set Decoration'),(10330,11409,1,'Director of Photography'),(10330,11708,4,'Screenplay'),(10330,12970,5,'Editor'),(10330,24190,6,'Original Music Composer'),(10330,54050,2,'Director'),(10330,64829,4,'Screenplay'),(10330,64830,3,'Producer'),(10330,74978,6,'Sound Re-Recording Mixer'),(10330,83087,6,'Sound Editor'),(10330,83090,6,'Supervising Sound Editor'),(10330,83091,6,'Sound Re-Recording Mixer'),(10330,91093,6,'Sound Editor'),(10330,935719,8,'Costume Design'),(10330,1124107,7,'Production Design'),(10330,1183391,1,'Still Photographer'),(10330,1319135,7,'Art Direction'),(10330,1324453,8,'Costume Supervisor'),(10330,1344278,2,'Script Supervisor'),(10330,1367676,6,'Music Editor'),(10330,1404697,9,'Stunt Coordinator'),(10330,1415618,6,'Sound Editor'),(10330,1485215,4,'Novel'),(10330,1546457,6,'Music Editor'),(10330,1551698,6,'Music Supervisor'),(10330,1555487,5,'First Assistant Editor'),(10330,1555488,6,'Sound mixer'),(10330,1555489,7,'Art Department Coordinator'),(10189,5912,6,'Original Music Composer'),(10189,3192,3,'Casting'),(10189,5328,3,'Casting'),(10189,6742,5,'Editor'),(10189,14041,7,'Set Decoration'),(10189,14382,6,'Supervising Sound Editor'),(10189,19274,4,'Screenplay'),(10189,19274,3,'Executive Producer'),(10189,19274,4,'Story'),(10189,52163,8,'Costume Design'),(10189,41039,3,'Producer'),(10189,41039,4,'Story'),(10189,41076,3,'Producer'),(10189,41082,7,'Production Design'),(10189,54734,4,'Screenplay'),(10189,54734,3,'Executive Producer'),(10189,54734,4,'Story'),(10189,113046,6,'Sound Re-Recording Mixer'),(10189,64141,2,'Director'),(10189,72264,1,'Director of Photography'),(10189,68748,6,'Sound Re-Recording Mixer'),(10189,92479,9,'Stunt Coordinator'),(10189,118944,6,'Sound Effects Editor'),(10189,126194,8,'Key Hair Stylist'),(10189,957282,3,'Casting'),(10189,1008052,6,'Music Supervisor'),(10189,1023495,5,'First Assistant Editor'),(10189,1435655,9,'Stunt Coordinator'),(10189,1444909,8,'Hair Department Head'),(10189,1453185,1,'Still Photographer'),(10189,1473981,2,'Script Supervisor'),(10189,1537168,3,'Production Coordinator'),(11460,298,3,'Producer'),(11460,434,3,'Casting'),(11460,436,3,'Casting'),(11460,2210,3,'Executive Producer'),(11460,7229,6,'Original Music Composer'),(11460,5140,2,'Director'),(11460,5667,1,'Director of Photography'),(11460,7856,7,'Production Design'),(11460,20223,3,'Executive Producer'),(11460,20720,3,'Executive Producer'),(11460,25058,5,'Editor'),(11460,35581,3,'Producer'),(11460,27226,5,'Editor'),(11460,41592,7,'Art Direction'),(11460,46589,8,'Costume Design'),(11460,52446,3,'Executive Producer'),(11460,20977,4,'Screenplay'),(11460,936194,8,'Makeup Department Head'),(11460,957368,7,'Set Decoration'),(11460,1244450,8,'Makeup Artist'),(11460,1322423,8,'Costume Supervisor'),(11460,1331648,8,'Hair Department Head'),(11460,1400540,2,'Script Supervisor'),(11460,1422412,9,'Special Effects Coordinator'),(11460,1455294,8,'Costume Supervisor'),(11460,1532248,8,'Makeup Artist'),(11460,1532249,8,'Makeup Artist'),(11460,1532250,8,'Key Hair Stylist'),(11460,1532251,8,'Hairstylist'),(11460,1532252,8,'Hairstylist'),(11460,1532253,7,'Art Department Coordinator'),(11460,1532254,8,'Seamstress'),(11460,1532255,8,'Set Costumer'),(11460,1532256,8,'Set Costumer'),(11460,1532257,5,'First Assistant Editor'),(22894,3962,8,'Costume Design'),(22894,7415,3,'Casting'),(22894,11410,5,'Editor'),(22894,21962,6,'Original Music Composer'),(22894,23969,1,'Director of Photography'),(22894,69928,4,'Writer'),(22894,69928,3,'Producer'),(22894,60864,3,'Producer'),(22894,66726,3,'Producer'),(22894,66727,3,'Executive Producer'),(22894,116357,2,'Director'),(22894,116357,4,'Writer'),(22894,116357,3,'Executive Producer'),(22894,587841,3,'Line Producer'),(22894,948296,3,'Producer'),(22894,957874,3,'Executive Producer'),(22894,978107,7,'Production Design'),(22894,1125188,3,'Producer'),(22894,1125189,3,'Producer'),(22894,1125190,3,'Producer'),(22894,1125191,3,'Producer'),(22894,1215401,9,'Stunts'),(15028,3687,6,'Sound Effects Editor'),(15028,869,3,'Producer'),(15028,2033,5,'Editor'),(15028,2388,2,'Director'),(15028,9347,9,'Second Unit Cinematographer'),(15028,17146,1,'Director of Photography'),(15028,13179,6,'Sound Effects Editor'),(15028,15328,7,'Art Direction'),(15028,16736,6,'Sound Designer'),(15028,19679,3,'Casting'),(15028,19680,3,'Casting'),(15028,22107,8,'Costume Design'),(15028,42264,10,'Visual Effects Producer'),(15028,25748,7,'Production Design'),(15028,54515,9,'Choreographer'),(15028,59563,5,'Editor'),(15028,60268,3,'Producer'),(15028,63673,7,'Set Decoration'),(15028,64735,4,'Writer'),(15028,81687,9,'Stunt Coordinator'),(15028,90393,4,'Writer'),(15028,579077,8,'Makeup Department Head'),(15028,582808,1,'Still Photographer'),(15028,1108768,1,'Camera Operator'),(15028,1139092,3,'Location Manager'),(15028,1206109,6,'Music'),(15028,1246457,7,'Assistant Art Director'),(15028,1338670,8,'Hairstylist'),(15028,1345633,9,'Studio Teachers'),(15028,1377122,7,'Art Department Coordinator'),(15028,1392081,6,'Sound Effects Editor'),(15028,1392906,10,'Visual Effects Producer'),(15028,1400085,8,'Set Costumer'),(15028,1400543,3,'Production Supervisor'),(15028,1403397,7,'Construction Foreman'),(15028,1404841,6,'ADR & Dubbing'),(15028,1406105,9,'Visual Effects Editor'),(15028,1406389,6,'Sound Effects Editor'),(15028,1406922,10,'Visual Effects Supervisor'),(15028,1407359,9,'Visual Effects Art Director'),(15028,1407812,6,'Supervising Sound Editor'),(15028,1411258,8,'Hairstylist'),(15028,1411259,8,'Makeup Artist'),(15028,1411260,7,'Construction Coordinator'),(15028,1411261,7,'Construction Foreman'),(15028,1411262,7,'Set Designer'),(15028,1411263,9,'Scenic Artist'),(15028,1411264,9,'Property Master'),(15028,1411265,5,'Dialogue Editor'),(15028,1411266,9,'Special Effects Coordinator'),(15028,1411267,9,'Special Effects Coordinator'),(15028,1411268,9,'Special Effects Coordinator'),(15028,1411270,1,'Camera Operator'),(15028,1411271,1,'Camera Operator'),(15028,1411272,1,'Steadicam Operator'),(15028,1411273,8,'Set Costumer'),(15028,1411275,9,'Transportation Coordinator'),(15028,1411276,3,'Location Manager'),(15028,1411277,2,'Script Supervisor'),(15028,1411278,3,'Location Manager'),(15028,1411279,2,'Script Supervisor'),(15028,1411281,9,'Unit Publicist'),(11509,1527,1,'Director of Photography'),(11509,8844,4,'Screenplay'),(11509,8844,2,'Director'),(11509,8844,3,'Producer'),(11509,16329,3,'Executive Producer'),(11509,9966,5,'Editor'),(11509,20897,6,'Original Music Composer'),(11509,30383,3,'Executive Producer'),(11509,69666,4,'Screenplay'),(17047,36083,2,'Director'),(17047,58144,4,'Writer'),(16784,4500,6,'Original Music Composer'),(16784,2691,4,'Screenplay'),(16784,3286,7,'Production Design'),(16784,7494,3,'Casting'),(16784,7495,3,'Casting'),(16784,14189,5,'Editor'),(16784,14915,7,'Set Decoration'),(16784,18281,2,'Director'),(16784,20840,4,'Story'),(16784,22819,8,'Costume Design'),(16784,56976,1,'Director of Photography'),(16784,1449162,7,'Art Direction'),(31640,1221,3,'Casting'),(31640,2384,3,'Executive Producer'),(31640,3056,3,'Producer'),(31640,12017,7,'Production Design'),(31640,6422,6,'Original Music Composer'),(31640,9040,1,'Director of Photography'),(31640,10714,8,'Costume Design'),(31640,14049,9,'Stunt Coordinator'),(31640,19450,2,'Director'),(31640,19450,4,'Story'),(31640,19452,5,'Editor'),(31640,56765,6,'Sound Designer'),(31640,56765,6,'Sound Re-Recording Mixer'),(31640,113075,6,'Sound Effects Editor'),(31640,57347,3,'Associate Producer'),(31640,58695,3,'Executive Producer'),(31640,92301,3,'Production Supervisor'),(31640,92301,3,'Associate Producer'),(31640,69561,3,'Co-Producer'),(31640,74765,8,'Makeup Artist'),(31640,86594,8,'Makeup Artist'),(31640,111766,4,'Screenplay'),(31640,111766,4,'Story'),(31640,177942,4,'Screenplay'),(31640,1273347,9,'Post Production Supervisor'),(31640,1301918,7,'Set Decoration'),(31640,1301919,3,'Co-Producer'),(31640,1318806,8,'Makeup Artist'),(31640,1338670,8,'Key Hair Stylist'),(31640,1340919,2,'Script Supervisor'),(31640,1354797,5,'First Assistant Editor'),(31640,1389134,5,'Dialogue Editor'),(31640,1393883,1,'Still Photographer'),(31640,1423989,7,'Art Department Coordinator'),(31640,1460768,1,'Still Photographer'),(31640,1463802,8,'Assistant Costume Designer'),(31640,1523402,8,'Hairstylist'),(31640,1531491,3,'Production Coordinator'),(31640,1535395,1,'Camera Operator'),(31640,1541714,6,'Boom Operator'),(31640,1549418,7,'Leadman'),(31640,1550072,5,'Dialogue Editor'),(31640,1552062,6,'Sound mixer'),(31640,1552355,8,'Set Costumer'),(31640,1558256,6,'Sound Re-Recording Mixer'),(31640,1562943,8,'Set Costumer'),(31640,1562944,6,'First Assistant Sound Editor'),(31640,1562946,3,'Location Manager'),(13223,190,2,'Director'),(13223,190,3,'Producer'),(13223,195,6,'Orchestrator'),(13223,384,5,'Editor'),(13223,371,1,'First Assistant Camera'),(13223,375,6,'Supervising Sound Editor'),(13223,460,1,'Director of Photography'),(13223,461,8,'Costume Design'),(13223,795,7,'Production Design'),(13223,1296,3,'Executive Producer'),(13223,1484,3,'Casting'),(13223,14608,7,'Art Direction'),(13223,4746,3,'Producer'),(13223,13224,6,'Dolby Consultant'),(13223,33525,6,'Original Music Composer'),(13223,33526,6,'Original Music Composer'),(13223,41551,3,'Producer'),(13223,63946,3,'Executive Producer'),(13223,63946,3,'Production Manager'),(13223,65711,7,'Set Decoration'),(13223,66226,9,'Stunt Coordinator'),(13223,92378,6,'ADR & Dubbing'),(13223,74315,4,'Screenplay'),(13223,74315,4,'Story'),(13223,74317,3,'Executive Producer'),(13223,74318,3,'Executive Producer'),(13223,74319,5,'Editor'),(13223,74320,3,'Casting'),(13223,74321,3,'Casting'),(13223,74322,8,'Makeup Artist'),(13223,74323,8,'Makeup Department Head'),(13223,83066,8,'Hairstylist'),(13223,928543,1,'Additional Photography'),(13223,935490,3,'Casting Associate'),(13223,935492,10,'Special Effects Supervisor'),(13223,1061203,5,'First Assistant Editor'),(13223,1178615,1,'Camera Operator'),(13223,1181576,11,'Gaffer'),(13223,1227173,6,'Foley'),(13223,1341789,10,'Visual Effects Supervisor'),(13223,1341858,6,'Sound Re-Recording Mixer'),(13223,1341859,5,'Dialogue Editor'),(13223,1342626,6,'Sound Re-Recording Mixer'),(13223,1345620,9,'Transportation Coordinator'),(13223,1360101,6,'Foley'),(13223,1368865,6,'Supervising Sound Editor'),(13223,1377125,5,'Dialogue Editor'),(13223,1377129,10,'Visual Effects Producer'),(13223,1377131,1,'Camera Operator'),(13223,1377136,5,'Color Timer'),(13223,1398862,6,'Music Editor'),(13223,1403435,7,'Leadman'),(13223,1406397,10,'Visual Effects Producer'),(13223,1407876,6,'Sound Effects Editor'),(13223,1408316,6,'ADR & Dubbing'),(13223,1408706,6,'Music Editor'),(13223,1417398,8,'Hairstylist'),(13223,1425811,8,'Hairstylist'),(13223,1427435,5,'Digital Intermediate'),(13223,1428595,6,'Sound Effects Editor'),(13223,1428596,6,'Sound Effects Editor'),(13223,1443053,7,'Construction Coordinator'),(13223,1452333,8,'Makeup Artist'),(13223,1452689,3,'Location Manager'),(13223,1458577,8,'Hairstylist'),(13223,1458578,5,'Dialogue Editor'),(13223,1458579,6,'Sound mixer'),(13223,1458580,10,'Visual Effects Supervisor'),(13223,1458581,1,'Still Photographer'),(13223,1458582,8,'Costume Supervisor'),(13223,1458583,5,'Digital Intermediate'),(13223,1559640,2,'Assistant Director'),(13223,1606663,11,'Lighting Technician'),(13223,1720305,4,'Story'),(10523,1152,2,'Director'),(10523,44741,3,'Producer'),(10523,66189,4,'Screenplay'),(11024,282,3,'Producer'),(11024,1215,2,'Director'),(11024,5914,3,'Casting'),(11024,3393,6,'Original Music Composer'),(11024,7234,7,'Supervising Art Director'),(11024,11409,1,'Director of Photography'),(11024,11900,3,'Co-Producer'),(11024,13584,5,'Editor'),(11024,13594,3,'Executive Producer'),(11024,13594,4,'Characters'),(11024,13620,4,'Characters'),(11024,15218,4,'Screenplay'),(11024,15218,3,'Co-Producer'),(11024,15024,9,'Stunt Coordinator'),(11024,15024,9,'Second Unit Cinematographer'),(11024,21257,8,'Makeup Artist'),(11024,21592,8,'Costume Design'),(11024,10858,7,'Set Decoration'),(11024,77206,8,'Prosthetic Supervisor'),(11024,60711,3,'Executive Producer'),(11024,60711,3,'Unit Production Manager'),(11024,113194,9,'Stunts'),(11024,58237,3,'Executive Producer'),(11024,18953,3,'Producer'),(11024,60596,7,'Assistant Art Director'),(11024,65812,7,'Art Direction'),(11024,86198,6,'Music Supervisor'),(11024,230134,6,'Boom Operator'),(11024,548435,6,'Foley'),(11024,548437,5,'Dialogue Editor'),(11024,928632,9,'Property Master'),(11024,931247,5,'Color Timer'),(11024,961544,7,'Art Direction'),(11024,1007395,9,'Stunt Coordinator'),(11024,1031810,6,'Sound Effects Editor'),(11024,1128347,7,'Production Design'),(11024,1159914,6,'Dolby Consultant'),(11024,1182909,8,'Hairstylist'),(11024,1214632,9,'Visual Effects Editor'),(11024,1252432,3,'Production Manager'),(11024,1263769,6,'Music Editor'),(11024,1328410,5,'Assistant Editor'),(11024,1345973,3,'Associate Producer'),(11024,1368861,7,'Construction Coordinator'),(11024,1391672,7,'Art Department Assistant'),(11024,1393014,10,'Animation'),(11024,1399899,1,'Camera Technician'),(11024,1400408,1,'Still Photographer'),(11024,1401556,7,'Sculptor'),(11024,1401604,8,'Wigmaker'),(11024,1402036,5,'Digital Intermediate'),(11024,1404357,7,'Conceptual Design'),(11024,1404711,8,'Set Dressing Artist'),(11024,1404744,8,'Set Costumer'),(11024,1404755,3,'Publicist'),(11024,1405210,9,'Digital Producer'),(11024,1405382,6,'Sound Editor'),(11024,1408190,9,'Digital Effects Supervisor'),(11024,1408196,9,'Picture Car Coordinator'),(11024,1409742,1,'Steadicam Operator'),(11024,1410304,11,'Lighting Supervisor'),(11024,1410572,10,'Visual Effects Producer'),(11024,1411841,3,'Researcher'),(11024,1412460,5,'Editorial Services'),(11024,1413466,9,'CGI Supervisor'),(11024,1414549,6,'Sound Designer'),(11024,1414748,9,'Stand In'),(11024,1415631,10,'3D Supervisor'),(11024,1417972,6,'Supervising Sound Editor'),(11024,1431018,7,'Set Designer'),(11024,1441357,9,'CG Supervisor'),(11024,1441368,1,'Additional Camera'),(11024,1447543,10,'Visual Effects'),(11024,1448601,10,'Animation'),(11024,1448620,3,'Location Manager'),(11024,1455604,9,'Supervising Animator'),(11024,1461148,10,'Animation'),(11024,1461149,2,'Layout'),(11024,1461150,10,'Animation'),(11024,1461151,10,'Animation'),(11024,1461152,10,'Animation'),(11024,1461153,10,'Animation'),(11024,1461154,10,'Animation'),(11024,1461155,10,'Animation'),(11024,1461156,10,'Animation'),(11024,1461175,1,'Helicopter Camera'),(11024,1464344,3,'Executive In Charge Of Post Production'),(11024,1466442,2,'Assistant Director'),(11024,1531563,7,'Art Department Coordinator'),(11024,1531860,9,'Special Effects Coordinator'),(11024,1546580,3,'Executive In Charge Of Production'),(11024,1550186,10,'Creature Design'),(11024,1552603,6,'Sound Engineer'),(11024,1561882,6,'Production Sound Mixer'),(11024,1575868,1,'First Assistant Camera'),(11024,1577062,9,'Transportation Captain'),(11024,1580844,11,'Rigging Grip'),(11024,1597190,9,'Armorer'),(11024,1604015,6,'Orchestrator'),(11024,1644532,10,'Visual Effects Supervisor'),(11024,1653475,11,'Lighting Technician'),(11024,1671655,10,'Modeling'),(11024,1673522,7,'Construction Foreman'),(11024,1673523,7,'Greensman'),(11024,1673524,1,'Grip'),(11024,1673526,9,'Carpenter'),(11024,1673527,9,'Chef'),(11024,1673528,9,'Choreographer'),(11024,1673529,9,'Craft Service'),(11024,1673531,9,'Driver'),(11024,1673534,9,'Makeup Effects'),(11024,1673535,9,'Post Production Supervisor'),(11024,1673538,9,'Security'),(11024,1673541,9,'Software Engineer'),(11024,1673547,9,'Stunts'),(11024,1673548,9,'Systems Administrators & Support'),(11024,1673549,9,'Technical Supervisor'),(11024,1673550,9,'Transportation Coordinator'),(11024,1673552,9,'Utility Stunts'),(11024,1673553,9,'Video Assist Operator'),(11024,1673556,11,'Best Boy Electric'),(11024,1673558,11,'Gaffer'),(11024,1673560,11,'Lighting Artist'),(11024,1673563,11,'Rigging Gaffer'),(11024,1673565,3,'Production Accountant'),(11024,1673566,3,'Production Coordinator'),(11024,1673568,6,'First Assistant Sound Editor'),(11024,1673808,10,'Animation Supervisor'),(11024,1673809,10,'Digital Compositors'),(11024,1673810,10,'I/O Supervisor'),(11024,1673811,10,'Special Effects Supervisor'),(11024,1673812,10,'Visual Development'),(11024,1673814,10,'Visual Effects Coordinator'),(11024,1673816,4,'Storyboard'),(11024,1673817,6,'Sound'),(12589,4500,6,'Original Music Composer'),(12589,4489,4,'Screenplay'),(12589,4489,3,'Producer'),(12589,12084,4,'Screenplay'),(12589,12085,4,'Screenplay'),(12589,15779,5,'Editor'),(12589,60237,4,'Screenplay'),(12589,60237,2,'Director'),(12589,60237,3,'Producer'),(12589,60238,3,'Executive Producer'),(12589,60247,5,'Editor'),(12589,60268,3,'Executive Producer'),(12589,70454,3,'Producer'),(12589,73017,6,'Original Music Composer'),(12589,73018,1,'Director of Photography'),(12589,73019,1,'Director of Photography'),(12589,1217416,4,'Storyboard'),(12589,1455613,10,'Animation'),(10327,368,3,'Executive Producer'),(10327,5506,1,'Director of Photography'),(10327,11372,5,'Editor'),(10327,23485,3,'Producer'),(10327,24190,6,'Original Music Composer'),(10327,8305,3,'Producer'),(10327,64827,4,'Screenplay'),(10327,76247,2,'Director'),(11969,1053,5,'Dialogue Editor'),(11969,2953,3,'Casting'),(11969,7715,5,'Editor'),(11969,5957,7,'Set Decoration'),(11969,7781,4,'Screenplay'),(11969,7779,3,'Producer'),(11969,7780,3,'Producer'),(11969,8273,7,'Art Direction'),(11969,9972,9,'Special Effects Coordinator'),(11969,8681,8,'Costume Design'),(11969,12846,1,'Director of Photography'),(11969,13175,6,'Foley'),(11969,12882,3,'Executive Producer'),(11969,16566,2,'Director'),(11969,25206,9,'Studio Teachers'),(11969,19567,9,'Stunt Coordinator'),(11969,10855,7,'Art Direction'),(11969,19850,7,'Production Design'),(11969,20897,6,'Music'),(11969,53687,5,'Editor'),(11969,113090,6,'Foley'),(11969,57642,5,'Editor'),(11969,127542,3,'Producer'),(11969,1050930,5,'Dialogue Editor'),(11969,1070222,7,'Art Department Coordinator'),(11969,1077782,6,'Foley'),(11969,1322413,7,'Art Direction'),(11969,1322420,8,'Costume Supervisor'),(11969,1322423,8,'Costume Supervisor'),(11969,1324118,8,'Makeup Department Head'),(11969,1338372,6,'Foley'),(11969,1338374,6,'Sound Re-Recording Mixer'),(11969,1341405,5,'Dialogue Editor'),(11969,1357056,7,'Set Designer'),(11969,1378169,6,'Sound Re-Recording Mixer'),(11969,1378171,6,'Sound Re-Recording Mixer'),(11969,1378687,9,'Property Master'),(11969,1391380,7,'Set Designer'),(11969,1391381,7,'Set Designer'),(11969,1391382,7,'Art Department Coordinator'),(11969,1391383,7,'Construction Coordinator'),(11969,1391384,9,'Property Master'),(11969,1391385,5,'Dialogue Editor'),(11969,1391386,5,'Dialogue Editor'),(11969,1391387,6,'Supervising Sound Editor'),(11969,1391388,6,'Boom Operator'),(11969,1391389,1,'Still Photographer'),(11969,1391390,1,'Camera Operator'),(11969,1391391,1,'Camera Operator'),(11969,1391393,11,'Gaffer'),(11969,1391397,3,'Casting'),(11969,1391398,6,'Music Editor'),(11969,1391399,9,'Transportation Coordinator'),(11969,1391400,2,'Script Supervisor'),(11969,1391401,2,'Script Supervisor'),(11969,1391402,9,'Choreographer'),(11969,1391403,3,'Location Manager'),(11096,120,1,'Director of Photography'),(11096,4189,8,'Costume Design'),(11096,10570,3,'Executive Producer'),(11096,9039,6,'Original Music Composer'),(11096,13933,7,'Art Direction'),(11096,15528,9,'Special Effects Coordinator'),(11096,15845,8,'Makeup Department Head'),(11096,15337,2,'Director'),(11096,35176,5,'Editor'),(11096,42906,3,'Producer'),(11096,38411,7,'Production Design'),(11096,52193,5,'Dialogue Editor'),(11096,113054,6,'First Assistant Sound Editor'),(11096,113055,5,'Dialogue Editor'),(11096,113073,6,'Sound Re-Recording Mixer'),(11096,60794,7,'Art Direction'),(11096,65754,7,'Set Decoration'),(11096,68006,4,'Screenplay'),(11096,68007,6,'Original Music Composer'),(11096,91161,3,'Production Supervisor'),(11096,957566,3,'Production Coordinator'),(11096,1074163,9,'Stunt Coordinator'),(11096,1377220,6,'Sound Re-Recording Mixer'),(11096,1378695,6,'Sound Designer'),(11096,1398946,6,'Supervising Sound Editor'),(11096,1400535,1,'Steadicam Operator'),(11096,1400535,1,'Camera Operator'),(11096,1402073,1,'Still Photographer'),(11096,1403537,10,'Visual Effects Supervisor'),(11096,1418398,1,'Steadicam Operator'),(11096,1418398,1,'Camera Operator'),(11096,1458992,8,'Key Hair Stylist'),(11096,1525957,2,'Script Supervisor'),(11096,1551025,6,'Sound mixer'),(10923,3125,3,'Executive Producer'),(10923,561,3,'Casting'),(10923,671,6,'Supervising Sound Editor'),(10923,1206,3,'Executive Producer'),(10923,4232,3,'Executive Producer'),(10923,6378,1,'Director of Photography'),(10923,7130,4,'Screenplay'),(10923,7131,4,'Screenplay'),(10923,9615,5,'Editor'),(10923,10396,7,'Production Design'),(10923,11098,6,'Original Music Composer'),(10923,11308,6,'Music Editor'),(10923,21390,3,'Producer'),(10923,21981,2,'Director'),(10923,8305,3,'Producer'),(10923,28041,8,'Costume Design'),(10923,34338,3,'Executive Producer'),(10923,34887,7,'Set Designer'),(10923,40281,3,'Producer'),(10923,49912,6,'Music Supervisor'),(10923,61647,3,'Producer'),(10923,63720,3,'Executive Producer'),(10923,65559,3,'Producer'),(10923,65937,6,'Sound Editor'),(10923,67484,4,'Screenplay'),(10923,67485,4,'Screenplay'),(10923,67487,3,'Executive Producer'),(10923,67488,3,'Executive Producer'),(10923,67489,3,'Executive Producer'),(10923,75294,8,'Key Makeup Artist'),(10923,197930,9,'Stunt Coordinator'),(10923,1334183,7,'Construction Coordinator'),(10923,1335078,6,'Supervising Sound Editor'),(10923,1370949,6,'Sound Editor'),(10923,1378728,2,'Script Supervisor'),(10923,1391689,9,'Special Effects Coordinator'),(10923,1393390,10,'Visual Effects Supervisor'),(10923,1396827,6,'Music Editor'),(10923,1400408,1,'Still Photographer'),(10923,1403535,6,'Sound Editor'),(10923,1404364,6,'Sound Editor'),(10923,1408787,1,'Camera Operator'),(10923,1421693,8,'Key Hair Stylist'),(10923,1565965,7,'Art Department Coordinator'),(10923,1798471,2,'First Assistant Director'),(10923,1831854,4,'Story'),(10923,1831858,7,'Construction Foreman'),(10923,1831859,7,'Set Designer'),(10923,1831860,7,'Construction Foreman'),(10923,1831861,7,'Set Designer'),(11283,2236,3,'Producer'),(11283,2238,3,'Producer'),(11283,3310,5,'Editor'),(11283,6231,5,'Editor'),(11283,7056,4,'Screenplay'),(11283,9150,3,'Executive Producer'),(11283,9151,3,'Executive Producer'),(11283,9152,6,'Original Music Composer'),(11283,23422,1,'Director of Photography'),(11283,11058,3,'Producer'),(11283,64045,2,'Director'),(11283,68847,4,'Novel'),(11676,8216,3,'Producer'),(11676,1151,3,'Producer'),(11676,4489,2,'Director'),(11676,4489,4,'Screenplay'),(11676,6490,1,'Director of Photography'),(11676,14457,5,'Editor'),(11676,43393,6,'Music'),(11676,56109,3,'Producer'),(11676,57652,3,'Executive Producer'),(14317,78487,4,'Author'),(14317,78488,2,'Director'),(14317,78485,2,'Director'),(14317,142587,9,'Sequence Supervisor'),(14317,1356774,10,'Animation Manager'),(14317,1447380,10,'Animation'),(14317,1447383,4,'Storyboard'),(14317,1447459,2,'Layout'),(14317,1447495,7,'Art Department Manager'),(14317,1447551,9,'Technical Supervisor'),(14317,1447569,7,'Background Designer'),(14317,1448999,9,'Technical Supervisor'),(14317,1450350,2,'Layout'),(14317,1454249,4,'Storyboard'),(14317,1454416,10,'Animation'),(14317,1457635,10,'Visual Effects'),(14317,1459611,10,'Visual Effects'),(14317,1460480,4,'Storyboard'),(20694,78487,4,'Other'),(20694,86439,2,'Director'),(20694,86437,2,'Director'),(20694,142587,9,'Sequence Supervisor'),(20694,1447383,2,'Layout'),(20694,1447459,10,'Animation'),(20694,1447474,2,'Layout'),(20694,1447495,7,'Art Department Manager'),(20694,1447548,10,'Animation Manager'),(20694,1447551,9,'Technical Supervisor'),(20694,1447569,7,'Background Designer'),(20694,1448089,10,'Visual Effects'),(20694,1448999,9,'Technical Supervisor'),(20694,1450350,2,'Layout'),(20694,1454249,9,'Sequence Supervisor'),(20694,1454416,10,'Animation'),(20694,1454416,10,'Visual Effects'),(20694,1455541,10,'Animation'),(20694,1457635,10,'Visual Effects'),(20694,1459611,10,'Visual Effects'),(20694,1460480,2,'Layout'),(12277,339,3,'Producer'),(12277,5284,3,'Executive Producer'),(12277,9769,6,'Original Music Composer'),(12277,14172,4,'Screenplay'),(12277,13931,1,'Director of Photography'),(12277,18921,5,'Editor'),(12277,23420,3,'Executive Producer'),(12277,46942,5,'Editor'),(12277,51679,4,'Screenplay'),(12277,51679,3,'Executive Producer'),(12277,72024,2,'Director'),(12277,72025,3,'Producer'),(12277,72026,3,'Producer'),(12620,1772,3,'Executive Producer'),(12620,4950,1,'Director of Photography'),(12620,5336,8,'Makeup Department Head'),(12620,6628,7,'Production Design'),(12620,8288,3,'Unit Production Manager'),(12620,42035,6,'Supervising Sound Editor'),(12620,42036,6,'Supervising Sound Editor'),(12620,19292,3,'Producer'),(12620,20818,3,'Producer'),(12620,20821,3,'Producer'),(12620,42909,8,'Costume Design'),(12620,39124,7,'Set Decoration'),(12620,40589,3,'Executive Producer'),(12620,40589,4,'Writer'),(12620,40590,3,'Executive Producer'),(12620,40590,4,'Writer'),(12620,55227,6,'Production Sound Mixer'),(12620,57426,5,'Editor'),(12620,71130,6,'Music Supervisor'),(12620,60150,6,'Original Music Composer'),(12620,66563,2,'Director'),(12620,1321000,8,'Costume Supervisor'),(12620,1322481,7,'Art Direction'),(12620,1324652,1,'Still Photographer'),(12620,1364239,7,'Art Department Coordinator'),(12620,1401353,8,'Hair Department Head'),(12620,1409284,2,'Script Supervisor'),(12620,1431841,6,'Music Supervisor'),(12620,1445895,1,'Steadicam Operator'),(12620,1516479,3,'Casting'),(12620,1534078,10,'Visual Effects Supervisor'),(12620,1581547,1,'Camera Operator'),(12620,1737945,9,'Stunt Coordinator'),(14177,1981,8,'Hairstylist'),(14177,5588,8,'Hairstylist'),(14177,9778,3,'Producer'),(14177,15758,8,'Hairstylist'),(14177,62116,2,'Director'),(14177,66598,4,'Story'),(10735,1899,3,'Producer'),(10735,2593,6,'Original Music Composer'),(10735,8846,1,'Director of Photography'),(10735,18350,3,'Producer'),(10735,41551,3,'Producer'),(10735,57048,3,'Executive Producer'),(10735,58071,3,'Executive Producer'),(10735,59187,4,'Screenplay'),(10735,66963,3,'Executive Producer'),(10735,66960,2,'Director'),(10735,66961,4,'Theatre Play'),(10735,66962,4,'Screenplay'),(11351,1776,3,'Executive Producer'),(11351,6964,9,'Special Effects Coordinator'),(11351,11695,3,'Executive Producer'),(11351,15014,7,'Production Design'),(11351,42281,7,'Set Designer'),(11351,25743,3,'Co-Executive Producer'),(11351,39110,7,'Set Decoration'),(11351,56349,2,'Director'),(11351,56349,4,'Screenplay'),(11351,56349,4,'Characters'),(11351,56350,3,'Producer'),(11351,56350,9,'Second Unit Cinematographer'),(11351,56352,6,'Original Music Composer'),(11351,56353,1,'Director of Photography'),(11351,56354,5,'Editor'),(11351,66693,7,'Sculptor'),(11351,66693,8,'Prosthetic Supervisor'),(11351,61075,3,'Executive Producer'),(11351,63459,3,'Casting'),(11351,64744,3,'Unit Production Manager'),(11351,68488,3,'Executive Producer'),(11351,92363,7,'Greensman'),(11351,92394,9,'Propmaker'),(11351,91144,6,'Scoring Mixer'),(11351,112608,6,'Production Sound Mixer'),(11351,417960,5,'Color Timer'),(11351,589961,9,'Stunt Coordinator'),(11351,957874,10,'Visual Effects Supervisor'),(11351,957875,8,'Costume Design'),(11351,964509,9,'Visual Effects Editor'),(11351,964509,5,'First Assistant Editor'),(11351,1046590,7,'Art Direction'),(11351,1125188,9,'Executive Visual Effects Producer'),(11351,1181954,9,'Property Master'),(11351,1192007,3,'Casting'),(11351,1192949,9,'Set Production Assistant'),(11351,1265230,8,'Makeup Artist'),(11351,1317128,8,'Key Makeup Artist'),(11351,1320958,8,'Key Costumer'),(11351,1327403,9,'Carpenter'),(11351,1341775,9,'Post Production Supervisor'),(11351,1341855,6,'Foley'),(11351,1345600,9,'CG Supervisor'),(11351,1370960,6,'Supervising Sound Editor'),(11351,1370960,6,'ADR Supervisor'),(11351,1371001,2,'First Assistant Director'),(11351,1394965,10,'Digital Compositors'),(11351,1398893,6,'Music Editor'),(11351,1399130,1,'Still Photographer'),(11351,1401606,8,'Hair Department Head'),(11351,1401992,9,'Video Assist Operator'),(11351,1407814,6,'Dolby Consultant'),(11351,1415105,6,'Sound Effects Editor'),(11351,1419160,9,'Transportation Coordinator'),(11351,1420156,10,'Visual Effects Coordinator'),(11351,1439107,11,'Lighting Technician'),(11351,1440848,9,'Technical Supervisor'),(11351,1451407,9,'Sound Recordist'),(11351,1458878,8,'Makeup Department Head'),(11351,1459725,10,'Animation Supervisor'),(11351,1492941,2,'Script Supervisor'),(11351,1533787,11,'Gaffer'),(11351,1535098,6,'Orchestrator'),(11351,1536213,1,'First Assistant Camera'),(11351,1549587,6,'ADR Editor'),(11351,1596742,3,'Production Accountant'),(11351,1597175,7,'Art Department Coordinator'),(11351,1597176,7,'Construction Coordinator'),(11351,1597177,7,'Construction Foreman'),(11351,1597179,7,'Leadman'),(11351,1597180,7,'Standby Painter'),(11351,1597181,1,'Camera Operator'),(11351,1597189,7,'Set Dresser'),(11351,1597190,9,'Armorer'),(11351,1597191,9,'Craft Service'),(11351,1597194,9,'Driver'),(11351,1597195,9,'Loader'),(11351,1597196,9,'Post Production Assistant'),(11351,1597198,9,'Set Medic'),(11351,1597199,9,'Stunts'),(11351,1597200,9,'Telecine Colorist'),(11351,1597201,9,'Unit Publicist'),(11351,1597202,9,'Utility Stunts'),(11351,1597204,5,'Dialogue Editor'),(11351,1597207,11,'Best Boy Electric'),(11351,1597208,11,'Electrician'),(11351,1597209,11,'Rigging Grip'),(11351,1597210,3,'Casting Associate'),(11351,1597211,3,'Executive In Charge Of Production'),(11351,1597212,3,'Location Manager'),(11351,1597213,3,'Production Coordinator'),(11351,1597214,6,'Boom Operator'),(11351,1597215,6,'Assistant Sound Editor'),(11351,1597216,6,'Sound Engineer'),(11351,1597217,6,'Sound Re-Recording Mixer'),(11351,1597218,10,'Visual Effects'),(11351,1597220,10,'Visual Effects Producer'),(11351,1681341,1,'Key Grip'),(11351,1734649,2,'Second Assistant Director'),(11351,1745939,9,'Animal Coordinator'),(11351,1823796,1,'Dolly Grip'),(11351,1834461,7,'Title Designer'),(11351,1839455,7,'Assistant Property Master'),(11351,1839461,1,'Grip'),(11351,1839468,6,'Musician'),(11351,1839472,10,'CG Animator'),(10030,545,3,'Casting'),(10030,1098,2,'Director'),(10030,5362,3,'Casting'),(10030,5363,3,'Casting'),(10030,12706,7,'Production Design'),(10030,14139,1,'Director of Photography'),(10030,40384,6,'Original Music Composer'),(10030,21639,3,'Casting'),(10030,22141,3,'Executive Producer'),(10030,40513,3,'Executive Producer'),(10030,62163,7,'Art Direction'),(10030,11100,5,'Editor'),(10030,62160,3,'Producer'),(10030,62158,3,'Associate Producer'),(10030,62158,4,'Short Story'),(10030,62157,4,'Screenplay'),(10030,62162,3,'Producer'),(10030,62165,3,'Executive Producer'),(10030,62159,3,'Producer'),(10030,62161,3,'Producer'),(10030,41444,7,'Set Decoration'),(10030,62164,8,'Costume Design'),(10030,1656832,3,'Co-Producer'),(10030,1656833,3,'Co-Producer'),(10623,1091,3,'Producer'),(10623,6112,4,'Screenplay'),(10623,14346,4,'Screenplay'),(10623,10765,2,'Director'),(10623,21351,5,'Editor'),(10623,21962,6,'Original Music Composer'),(10623,56324,1,'Director of Photography'),(10623,66057,6,'Original Music Composer'),(10623,1119658,5,'First Assistant Editor'),(11237,1732,5,'Editor'),(11237,3502,8,'Costume Design'),(11237,6959,3,'Casting'),(11237,7722,4,'Screenplay'),(11237,11080,4,'Story'),(11237,11081,4,'Story'),(11237,11650,5,'Editor'),(11237,36133,7,'Production Design'),(11237,37284,9,'Property Master'),(11237,38781,6,'Supervising Sound Editor'),(11237,44036,4,'Screenplay'),(11237,68694,4,'Screenplay'),(11237,68695,4,'Screenplay'),(11237,56998,2,'Director'),(11237,57437,4,'Story'),(11237,57440,3,'Producer'),(11237,58192,1,'Director of Photography'),(11237,62742,7,'Supervising Art Director'),(11237,63559,9,'Second Unit Cinematographer'),(11237,66654,11,'Rigging Grip'),(11237,68696,3,'Executive Producer'),(11237,68697,6,'Original Music Composer'),(11237,75143,8,'Prosthetic Supervisor'),(11237,75159,11,'Gaffer'),(11237,75439,6,'Sound Mixer'),(11237,75507,9,'Stunt Coordinator'),(11237,116898,6,'Foley'),(11237,132599,4,'Storyboard'),(11237,1028058,10,'Visual Effects Supervisor'),(11237,1079558,9,'Stunts'),(11237,1191115,11,'Lighting Technician'),(11237,1191326,8,'Set Dressing Artist'),(11237,1205938,6,'Sound Designer'),(11237,1304445,10,'Visual Effects Producer'),(11237,1339875,3,'Unit Production Manager'),(11237,1340633,10,'Visual Effects'),(11237,1364623,1,'Underwater Camera'),(11237,1392718,1,'Still Photographer'),(11237,1401641,8,'Hairstylist'),(11237,1401703,9,'Digital Effects Supervisor'),(11237,1404278,7,'Assistant Art Director'),(11237,1409227,8,'Key Hair Stylist'),(11237,1409712,1,'Helicopter Camera'),(11237,1418283,7,'Set Designer'),(11237,1418311,11,'Best Boy Electric'),(11237,1465629,7,'Set Decoration'),(11237,1480964,7,'Art Department Coordinator'),(11237,1517967,7,'Art Direction'),(11237,1547024,6,'Music Supervisor'),(11237,1548695,9,'Software Engineer'),(11237,1550574,6,'Orchestrator'),(11237,1584249,2,'Assistant Director'),(11237,1619691,10,'Special Effects Supervisor'),(11237,1619695,9,'Visual Effects Editor'),(11237,1635038,1,'Grip'),(11237,1635060,3,'Unit Manager'),(11237,1642833,9,'Makeup Effects'),(11237,1718228,7,'Production Illustrator'),(11237,1718229,1,'Camera Operator'),(11237,1718230,1,'First Assistant Camera'),(11237,1718231,8,'Makeup Artist'),(11237,1718232,9,'Driver'),(11237,1718233,9,'Post Production Supervisor'),(11237,1718269,9,'Scenic Artist'),(11237,1718271,9,'Special Effects Coordinator'),(11237,1718273,9,'Technical Supervisor'),(11237,1718274,9,'Video Assist Operator'),(11237,1718275,5,'Dialogue Editor'),(11237,1718276,5,'First Assistant Editor'),(11237,1718277,11,'Rigging Gaffer'),(11237,1718278,3,'Production Accountant'),(11237,1718279,3,'Production Coordinator'),(11237,1718280,3,'Production Manager'),(11237,1718281,6,'Boom Operator'),(11237,1718282,6,'First Assistant Sound Editor'),(11237,1718283,6,'Music Editor'),(11237,1718285,10,'Digital Compositors'),(11237,1718286,5,'Additional Editing'),(11932,1633,1,'Director of Photography'),(11932,5912,6,'Music'),(11932,6629,7,'Art Direction'),(11932,13596,3,'Producer'),(11932,17268,2,'Director'),(11932,29693,5,'Editor'),(11932,33612,7,'Production Design'),(11932,36807,3,'Casting'),(11932,41323,3,'Executive Producer'),(11932,55955,5,'Editor'),(11932,65677,4,'Screenplay'),(11932,65677,3,'Executive Producer'),(11932,70955,3,'Producer'),(11932,70955,3,'Production Manager'),(11932,1812186,8,'Makeup Artist'),(11932,1846138,3,'Co-Producer'),(11932,1846141,10,'Visual Effects'),(11165,1531,5,'Editor'),(11165,1760,6,'Original Music Composer'),(11165,2087,2,'Director'),(11165,2108,3,'Producer'),(11165,3258,9,'Sound Recordist'),(11165,5026,4,'Screenplay'),(11165,20827,4,'Screenplay'),(11165,8502,3,'Executive Producer'),(11165,8506,7,'Art Direction'),(11165,9061,7,'Art Direction'),(11165,9587,7,'Set Decoration'),(11165,18656,9,'Sound Recordist'),(11165,31074,2,'Director'),(11165,33132,7,'Art Direction'),(11165,34373,4,'Screenplay'),(11165,68412,2,'Director'),(11165,68413,4,'Novel'),(11165,68414,4,'Screenplay'),(11165,68415,4,'Novel'),(11165,68416,5,'Editor'),(11165,68417,5,'Editor'),(11165,583142,2,'Script Supervisor'),(11165,1384144,7,'Art Direction'),(11165,1384145,7,'Set Decoration'),(11165,1384146,9,'Sound Recordist'),(11165,1384147,9,'Sound Recordist'),(11165,1384148,9,'Sound Recordist'),(11165,1384149,9,'Sound Recordist'),(21724,434,3,'Casting'),(21724,436,3,'Casting'),(21724,4502,5,'Editor'),(21724,7413,1,'Director of Photography'),(21724,7536,8,'Costume Design'),(21724,9562,4,'Writer'),(21724,9562,3,'Producer'),(21724,15434,10,'Special Effects Supervisor'),(21724,33673,7,'Set Decoration'),(21724,35689,4,'Writer'),(21724,35689,3,'Producer'),(21724,35690,4,'Writer'),(21724,35690,3,'Producer'),(21724,35751,4,'Writer'),(21724,42634,7,'Production Design'),(21724,42635,7,'Art Direction'),(21724,52042,3,'Executive Producer'),(21724,54516,9,'Choreographer'),(21724,56908,3,'Producer'),(21724,59229,2,'Director'),(21724,59229,4,'Writer'),(21724,80814,7,'Art Department Coordinator'),(21724,957551,8,'Makeup Artist'),(21724,1208435,8,'Makeup Department Head'),(21724,1367508,2,'Script Supervisor'),(21724,1400085,8,'Set Costumer'),(21724,1440758,8,'Set Costumer'),(21724,1527912,3,'Casting Associate'),(21724,1532232,8,'Hair Department Head'),(21724,1532745,3,'Producer'),(21724,1532746,6,'Music'),(21724,1532747,6,'Music'),(21724,1532748,7,'Construction Coordinator'),(21724,1532749,10,'Special Effects Supervisor'),(21724,1532750,10,'Visual Effects Coordinator'),(21724,1532751,10,'Visual Effects Coordinator'),(21724,1532752,10,'Visual Effects Coordinator'),(21724,1532753,10,'Animation Supervisor'),(21724,1532754,8,'Assistant Costume Designer'),(21724,1532755,8,'Costume Supervisor'),(21724,1532757,8,'Key Hair Stylist'),(11543,7414,5,'Editor'),(11543,7395,2,'Director'),(11543,7396,2,'Director'),(11543,7407,3,'Producer'),(11543,7409,3,'Associate Producer'),(11543,7413,1,'Director of Photography'),(11543,7416,7,'Art Direction'),(11543,7418,8,'Costume Design'),(11543,9644,4,'Screenplay'),(11543,20745,8,'Costume Supervisor'),(11543,21933,6,'Music Supervisor'),(11543,23906,7,'Set Decoration'),(11543,51702,3,'Producer'),(11543,51703,3,'Producer'),(11543,54242,3,'Co-Producer'),(11543,57962,4,'Screenplay'),(11543,58201,3,'Co-Producer'),(11543,62580,6,'Music Editor'),(11543,65115,3,'Executive Producer'),(11543,69794,6,'Original Music Composer'),(11543,137125,6,'Sound Re-Recording Mixer'),(11543,932118,7,'Production Design'),(11543,1345595,6,'Sound Re-Recording Mixer'),(11543,1367508,2,'Script Supervisor'),(11543,1397822,6,'Sound Designer'),(11543,1545951,6,'Production Sound Mixer'),(11543,1551221,1,'Still Photographer'),(11543,1551923,6,'Sound Designer'),(11543,1551926,6,'Music Supervisor'),(11543,1551927,11,'Rigging Gaffer'),(11543,1551928,3,'Production Coordinator'),(13374,59971,4,'Writer'),(13374,125544,2,'Director'),(13374,1447317,4,'Storyboard'),(22971,14609,7,'Production Design'),(22971,5306,2,'Director'),(22971,6040,3,'Producer'),(22971,21933,6,'Music Supervisor'),(22971,10830,3,'Executive Producer'),(22971,25046,3,'Producer'),(22971,45841,3,'Casting'),(22971,47293,1,'Director of Photography'),(22971,47776,5,'Editor'),(22971,54419,3,'Producer'),(22971,54873,3,'Executive Producer'),(22971,60068,6,'Original Music Composer'),(22971,60070,3,'Executive Producer'),(22971,60504,3,'Casting'),(22971,64172,4,'Novel'),(22971,68432,4,'Screenplay'),(22971,68432,3,'Co-Producer'),(22971,72106,3,'Co-Producer'),(22971,224387,3,'Casting'),(22971,933576,8,'Costume Design'),(22971,956268,3,'Executive Producer'),(22971,1334484,7,'Set Decoration'),(22971,1397010,8,'Costume Design'),(22971,1397011,3,'Associate Producer'),(22971,1529990,6,'Music Supervisor'),(34813,20204,4,'Screenplay'),(34813,31119,2,'Director'),(34813,36602,4,'Writer'),(34813,150194,9,'Stunts'),(34813,1618901,9,'Set Medic'),(34813,1657380,8,'Hairstylist'),(10431,6041,6,'Original Music Composer'),(10431,51030,3,'Executive Producer'),(10431,12383,7,'Production Design'),(10431,37021,3,'Executive Producer'),(10431,21932,3,'Producer'),(10431,23811,3,'Casting'),(10431,35453,1,'Director of Photography'),(10431,35699,7,'Set Decoration'),(10431,40513,3,'Executive Producer'),(10431,113194,9,'Stunts'),(10431,61901,5,'Editor'),(10431,62859,7,'Art Direction'),(10431,65188,4,'Writer'),(10431,65190,2,'Director'),(10431,65193,3,'Casting'),(10431,65191,3,'Producer'),(10431,65189,4,'Writer'),(10431,65192,3,'Line Producer'),(10431,53115,8,'Costume Design'),(10431,65194,3,'Casting'),(10431,109754,3,'Producer'),(10431,1336716,10,'Visual Effects Supervisor'),(10167,3708,9,'Stunt Coordinator'),(10167,5642,7,'Production Design'),(10167,15221,6,'Original Music Composer'),(10167,42036,6,'Supervising Sound Editor'),(10167,18691,3,'Producer'),(10167,21479,3,'Producer'),(10167,23880,3,'Producer'),(10167,24164,7,'Art Direction'),(10167,27005,4,'Screenplay'),(10167,27005,2,'Director'),(10167,52034,1,'Director of Photography'),(10167,56171,3,'Executive Producer'),(10167,61553,5,'Editor'),(10167,48590,3,'Executive Producer'),(10167,1094627,3,'Casting'),(10167,1357671,6,'Sound Editor'),(10167,1393390,10,'Visual Effects Supervisor'),(10167,1404546,6,'Music Editor'),(10167,1580667,10,'Special Effects Supervisor'),(10167,1705807,6,'Sound Effects Editor'),(18147,116805,2,'Director'),(18147,1282719,4,'Writer'),(18147,1282720,4,'Writer'),(17170,2226,3,'Producer'),(17170,2211,3,'Executive Producer'),(17170,3097,1,'Director of Photography'),(17170,4150,8,'Costume Design'),(17170,6491,5,'Editor'),(17170,10444,8,'Hairstylist'),(17170,14838,2,'Director'),(17170,18173,7,'Set Decoration'),(17170,21517,3,'Casting'),(17170,23966,7,'Production Design'),(17170,23966,7,'Art Direction'),(17170,50855,3,'Producer'),(17170,142152,8,'Makeup Artist'),(17170,142613,6,'Music'),(17170,193763,3,'Associate Producer'),(17170,1047730,4,'Writer'),(17170,1178899,8,'Makeup Artist'),(17170,1535788,5,'Editor'),(18975,18308,2,'Director'),(18975,67372,4,'Novel'),(18975,1111142,4,'Writer'),(18975,1448043,10,'Animation'),(15487,2053,2,'Director'),(15487,6041,6,'Music'),(15487,57126,9,'Cinematography'),(15487,58837,3,'Producer'),(15487,58837,4,'Novel'),(15487,58837,4,'Writer'),(22825,1577,4,'Screenplay'),(22825,1577,2,'Director'),(22825,1590,1,'Director of Photography'),(22825,1591,5,'Editor'),(22825,5914,3,'Casting'),(22825,9648,7,'Production Design'),(22825,12415,4,'Original Story'),(22825,39123,3,'Casting'),(22825,957282,3,'Casting'),(22825,963843,7,'Art Direction'),(22825,1087905,6,'Music'),(22825,1087906,6,'Music'),(22825,1087907,6,'Music'),(11152,2215,3,'Casting'),(11152,298,3,'Producer'),(11152,1314,7,'Production Design'),(11152,2240,1,'Director of Photography'),(11152,5912,6,'Original Music Composer'),(11152,9345,7,'Art Direction'),(11152,9333,8,'Makeup Department Head'),(11152,15329,8,'Costume Design'),(11152,20382,5,'Editor'),(11152,22302,3,'Producer'),(11152,62742,7,'Supervising Art Director'),(11152,64709,4,'Screenplay'),(11152,68352,2,'Director'),(11152,1057350,7,'Art Direction'),(11152,1195356,3,'Casting'),(11152,1402906,2,'Script Supervisor'),(11152,1460672,9,'Post Production Supervisor'),(11152,1480964,7,'Art Department Coordinator'),(10591,376,3,'Executive Producer'),(10591,1262,3,'Casting'),(10591,2214,6,'Original Music Composer'),(10591,10574,5,'Editor'),(10591,7681,3,'Producer'),(10591,7719,8,'Costume Design'),(10591,9991,8,'Makeup Artist'),(10591,12033,1,'Additional Photography'),(10591,13061,3,'Casting Associate'),(10591,13223,5,'Color Timer'),(10591,13622,1,'Director of Photography'),(10591,16498,10,'Special Effects Supervisor'),(10591,22814,3,'Co-Producer'),(10591,35509,3,'Producer'),(10591,40277,4,'Author'),(10591,44679,4,'Author'),(10591,51985,3,'Executive Producer'),(10591,52452,6,'Music Supervisor'),(10591,53811,7,'Production Design'),(10591,54515,9,'Choreographer'),(10591,55238,9,'Property Master'),(10591,61825,7,'Art Direction'),(10591,62204,4,'Author'),(10591,65734,2,'Director'),(10591,65735,3,'Producer'),(10591,65736,7,'Set Decoration'),(10591,74761,6,'Orchestrator'),(10591,75380,6,'Boom Operator'),(10591,142161,9,'Stunt Coordinator'),(10591,960276,3,'Unit Production Manager'),(10591,1031811,6,'Supervising Sound Editor'),(10591,1186279,1,'Steadicam Operator'),(10591,1192502,3,'Production Coordinator'),(10591,1194471,1,'Still Photographer'),(10591,1243381,6,'Sound Re-Recording Mixer'),(10591,1246457,7,'Production Illustrator'),(10591,1294897,11,'Gaffer'),(10591,1316599,8,'Key Makeup Artist'),(10591,1338840,2,'Script Supervisor'),(10591,1341813,6,'Supervising Music Editor'),(10591,1342656,6,'ADR Editor'),(10591,1389127,7,'Set Designer'),(10591,1391749,7,'Art Department Coordinator'),(10591,1392239,6,'Supervising Dialogue Editor'),(10591,1399640,9,'Transportation Coordinator'),(10591,1405209,10,'Visual Effects Supervisor'),(10591,1407878,6,'Sound Effects Editor'),(10591,1411542,9,'Picture Car Coordinator'),(10591,1412262,11,'Rigging Gaffer'),(10591,1419119,9,'Unit Publicist'),(10591,1420326,1,'Camera Loader'),(10591,1427366,7,'Construction Coordinator'),(10591,1434270,8,'Key Hair Stylist'),(10591,1439108,11,'Best Boy Electric'),(10591,1455294,8,'Costume Supervisor'),(10591,1464344,3,'Executive In Charge Of Post Production'),(10591,1473444,6,'Assistant Sound Editor'),(10591,1539379,11,'Lighting Technician'),(10591,1546086,6,'Sound Mixer'),(10591,1549065,9,'Sound Recordist'),(10591,1549227,11,'Rigging Grip'),(10591,1550401,3,'Researcher'),(10591,1556513,6,'Additional Sound Re-Recording Mixer'),(10591,1562119,5,'Associate Editor'),(10591,1568661,6,'Sound Engineer'),(10591,1569563,9,'Post Production Assistant'),(10591,1571782,10,'Visual Effects Coordinator'),(10591,1585000,9,'Set Medic'),(10591,1585003,9,'Transportation Captain'),(10591,1585004,9,'Video Assist Operator'),(10591,1585012,3,'Location Manager'),(10591,1609910,7,'Art Department Assistant'),(10591,1610214,7,'Construction Foreman'),(10591,1610215,7,'Greensman'),(10591,1610217,7,'Standby Painter'),(10591,1610223,1,'Camera Operator'),(10591,1610224,1,'First Assistant Camera'),(10591,1610225,1,'Key Grip'),(10591,1610226,8,'Hairstylist'),(10591,1610227,8,'Makeup Department Head'),(10591,1610228,8,'Set Costumer'),(10591,1610229,7,'Set Dresser'),(10591,1610230,9,'Additional Music'),(10591,1610231,9,'Driver'),(10591,1610232,9,'Set Production Assistant'),(10591,1610233,9,'Stand In'),(10591,1610245,9,'Stunts'),(10591,1610249,9,'Transportation Co-Captain'),(10591,1610255,2,'First Assistant Director'),(10591,1610261,3,'Production Accountant'),(10591,1610263,3,'Production Supervisor'),(10591,1610265,6,'Foley Editor'),(10591,1610266,6,'Music Editor'),(10591,1610272,6,'Sound Designer'),(10591,1610285,4,'Storyboard'),(10591,1733142,5,'Negative Cutter'),(10591,1802551,3,'Assistant Production Coordinator'),(10591,1854963,7,'Assistant Property Master'),(10591,1854964,1,'Dolly Grip'),(10591,1854965,8,'Tailor'),(10591,1854966,2,'Second Assistant Director'),(10591,1854967,3,'Casting Assistant'),(10861,912,4,'Author'),(10861,1264,5,'Editor'),(10861,6630,7,'Set Decoration'),(10861,8681,8,'Costume Design'),(10861,10067,10,'Special Effects Supervisor'),(10861,8973,7,'Production Design'),(10861,9555,5,'Dialogue Editor'),(10861,12686,3,'Casting'),(10861,14913,7,'Art Direction'),(10861,26767,2,'Director'),(10861,33651,1,'Director of Photography'),(10861,43393,6,'Original Music Composer'),(10861,54387,9,'Stunt Coordinator'),(10861,56032,3,'Producer'),(10861,85960,6,'Supervising Sound Effects Editor'),(10861,1322465,8,'Wardrobe Supervisor'),(10861,1338130,6,'Sound Editor'),(10861,1389624,6,'Music Editor'),(10861,1399582,2,'Script Supervisor'),(10861,1531897,10,'Special Effects Supervisor'),(10861,1642213,10,'Visual Effects Supervisor'),(10861,1815831,9,'Digital Effects Supervisor'),(10861,1815838,2,'Script Supervisor'),(12770,6050,1,'Director of Photography'),(12770,6185,3,'Executive Producer'),(12770,14457,5,'Editor'),(12770,18268,4,'Screenplay'),(12770,23486,6,'Original Music Composer'),(12770,64506,3,'Executive Producer'),(12770,73499,2,'Director'),(12770,73500,3,'Producer'),(12770,73501,3,'Executive Producer'),(12770,73502,3,'Executive Producer'),(10074,894,6,'Original Music Composer'),(10074,8846,1,'Director of Photography'),(10074,10420,7,'Production Design'),(10074,14457,5,'Editor'),(10074,12383,7,'Art Direction'),(10074,23659,3,'Executive Producer'),(10074,52160,3,'Producer'),(10074,34522,4,'Author'),(10074,41080,3,'Casting'),(10074,56158,3,'Producer'),(10074,56326,3,'Executive Producer'),(10074,56327,3,'Producer'),(10074,61397,3,'Executive Producer'),(10074,60285,7,'Set Decoration'),(10074,62854,2,'Director'),(10074,62855,3,'Producer'),(10074,62856,3,'Producer'),(10074,62857,3,'Casting'),(10074,62859,7,'Art Direction'),(10074,62860,8,'Costume Design'),(10074,62858,3,'Casting'),(10397,491,6,'Original Music Composer'),(10397,5322,3,'Producer'),(10397,9163,5,'Editor'),(10397,9165,1,'Director of Photography'),(10397,9168,2,'Director'),(10397,65033,4,'Novel'),(10397,65035,4,'Screenplay'),(11954,1938,6,'Original Music Composer'),(11954,5045,4,'Screenplay'),(11954,7714,9,'Additional Music'),(11954,10051,2,'Director'),(11954,8934,1,'Director of Photography'),(11954,10340,3,'Casting'),(11954,10495,5,'Editor'),(11954,33008,3,'Producer'),(11954,33009,3,'Producer'),(11954,51346,4,'Screenplay'),(11954,71030,4,'Novel'),(11954,71031,4,'Screenplay'),(11954,71032,4,'Screenplay'),(11954,1109912,8,'Costume Design'),(11954,1120159,3,'Associate Producer'),(11954,1310649,3,'Casting'),(10655,14712,6,'Original Music Composer'),(10655,26208,3,'Producer'),(10655,66088,2,'Director'),(10655,66088,4,'Screenplay'),(10655,66089,3,'Producer'),(15992,2945,2,'Director'),(15992,2945,4,'Writer'),(15992,52042,3,'Executive Producer'),(17707,1586,3,'Producer'),(17707,1586,4,'Writer'),(17707,2621,3,'Executive Producer'),(17707,42171,2,'Director'),(21338,12869,7,'Production Design'),(21338,1098,5,'Editor'),(21338,3392,3,'Co-Producer'),(21338,8285,7,'Production Design'),(21338,16567,5,'Editor'),(21338,27583,5,'Editor'),(21338,33651,1,'Director of Photography'),(21338,54760,7,'Set Decoration'),(21338,58120,6,'Music'),(21338,63709,2,'Director'),(21338,94753,3,'Producer'),(21338,87407,4,'Writer'),(21338,938123,3,'Casting'),(21338,1094283,3,'Casting'),(21338,1149101,8,'Costume Design'),(21338,1336516,7,'Construction Coordinator'),(21338,1351569,1,'Helicopter Camera'),(21338,1394971,1,'Camera Operator'),(21338,1409485,6,'Supervising Sound Editor'),(21338,1421706,6,'Sound Re-Recording Mixer'),(21338,1453175,6,'ADR & Dubbing'),(21338,1536514,6,'Music Supervisor'),(21338,1541708,8,'Makeup Artist'),(21338,1552088,6,'Supervising Sound Editor'),(21338,1569315,2,'Script Supervisor'),(21338,1630522,11,'Gaffer'),(21338,1630523,1,'Camera Operator'),(21338,1630525,1,'Still Photographer'),(21338,1630526,11,'Gaffer'),(21338,1630527,9,'Special Effects Coordinator'),(21338,1630528,6,'ADR & Dubbing'),(21338,1630529,6,'Sound Re-Recording Mixer'),(21338,1630530,9,'Property Master'),(21338,1630531,8,'Key Hair Stylist'),(21338,1630532,8,'Makeup Artist'),(20766,403,1,'Director of Photography'),(20766,6410,3,'Casting'),(20766,6468,3,'Producer'),(20766,39516,6,'Music'),(20766,39517,6,'Music'),(20766,51736,4,'Novel'),(20766,57573,4,'Screenplay'),(20766,57573,4,'Adaptation'),(20766,53333,2,'Director'),(20766,80680,7,'Production Design'),(20766,566958,3,'Producer'),(20766,566962,3,'Producer'),(20766,928371,8,'Costume Design'),(20766,1069714,8,'Makeup Department Head'),(24264,6728,4,'Screenplay'),(24264,6778,2,'Director'),(24264,10931,4,'Screenplay'),(24264,36016,1,'Director of Photography'),(24264,1108292,3,'Producer'),(19803,44679,4,'Writer'),(19803,58471,3,'Executive Producer'),(19803,62204,4,'Writer'),(19803,74062,2,'Director'),(20309,4952,3,'Casting'),(20309,7409,2,'Director'),(20309,7413,1,'Director of Photography'),(20309,20836,6,'Original Music Composer'),(20309,51693,8,'Costume Design'),(20309,113194,9,'Stunt Coordinator'),(20309,81209,4,'Writer'),(20309,932118,7,'Production Design'),(20309,980834,4,'Writer'),(20309,993536,5,'Editor'),(20309,1530087,7,'Set Decoration'),(27360,109695,2,'Director'),(22256,8217,9,'Cinematography'),(22256,11057,2,'Director'),(22256,11057,4,'Writer'),(22256,588114,4,'Writer'),(12404,4018,3,'Executive Producer'),(12404,564,2,'Director'),(12404,564,3,'Producer'),(12404,580,5,'Editor'),(12404,3727,3,'Executive Producer'),(12404,3082,7,'Production Design'),(12404,15246,3,'Producer'),(12404,23424,3,'Casting'),(12404,27818,8,'Costume Design'),(12404,60085,1,'Director of Photography'),(12404,61359,3,'Associate Producer'),(12404,79535,3,'Producer'),(12404,958649,3,'Line Producer'),(12404,993394,3,'Executive Producer'),(12404,1001361,4,'Screenplay'),(12404,1001361,3,'Co-Producer'),(12404,1117869,3,'Co-Producer'),(12404,1120145,3,'Associate Producer'),(12404,1164688,4,'Screenplay'),(12404,1164688,3,'Co-Producer'),(12404,1164689,4,'Novel'),(12404,1300471,6,'Original Music Composer'),(12404,1367566,2,'Script Supervisor'),(12404,1398950,3,'Executive Producer'),(12404,1398951,3,'Executive Producer'),(11699,3686,3,'Casting'),(11699,2963,3,'Producer'),(11699,4140,6,'Original Music Composer'),(11699,5635,5,'Dialogue Editor'),(11699,6818,2,'Director'),(11699,6826,1,'Director of Photography'),(11699,6827,5,'Editor'),(11699,16830,3,'Executive Producer'),(11699,32035,3,'Producer'),(11699,17209,3,'Executive Producer'),(11699,17211,3,'Producer'),(11699,22815,3,'Producer'),(11699,41680,8,'Costume Design'),(11699,45829,3,'Executive Producer'),(11699,45830,3,'Executive Producer'),(11699,47984,3,'Producer'),(11699,57561,3,'Executive Producer'),(11699,60872,7,'Set Decoration'),(11699,61570,9,'Stunt Coordinator'),(11699,80819,6,'Sound Effects Editor'),(11699,550114,3,'Executive Producer'),(11699,578724,8,'Makeup Department Head'),(11699,578728,8,'Makeup Artist'),(11699,589229,3,'Producer'),(11699,933119,4,'Writer'),(11699,933120,3,'Producer'),(11699,961447,7,'Production Design'),(11699,1011188,3,'Casting'),(11699,1115023,3,'Executive Producer'),(11699,1153021,7,'Set Designer'),(11699,1202849,3,'Production Manager'),(11699,1255496,3,'Producer'),(11699,1319850,8,'Costume Supervisor'),(11699,1337671,6,'Foley'),(11699,1345262,6,'Sound Designer'),(11699,1392969,6,'Sound Re-Recording Mixer'),(11699,1393372,7,'Construction Coordinator'),(11699,1393375,7,'Leadman'),(11699,1393404,8,'Key Set Costumer'),(11699,1393406,9,'Transportation Coordinator'),(11699,1402708,8,'Hairstylist'),(11699,1402709,9,'Property Master'),(11699,1402709,9,'Armorer'),(11699,1402710,7,'Construction Foreman'),(11699,1402713,9,'Special Effects Coordinator'),(11699,1402716,10,'Visual Effects Supervisor'),(11699,1402718,1,'Still Photographer'),(11699,1402719,11,'Gaffer'),(11699,1402721,11,'Best Boy Electric'),(11699,1402722,8,'Set Costumer'),(11699,1402723,3,'Location Manager'),(11699,1402724,2,'Script Supervisor'),(11699,1441380,8,'Key Hair Stylist'),(11699,1676840,2,'First Assistant Director'),(11699,1692260,6,'Music Supervisor'),(11699,1835335,7,'Set Dresser'),(25353,93592,2,'Director'),(25353,151175,2,'Director'),(25353,151175,4,'Writer'),(25353,1051654,2,'Director'),(33157,3098,6,'Music'),(33157,5398,3,'Producer'),(33157,9584,5,'Editor'),(33157,24665,1,'Director of Photography'),(33157,25795,4,'Scenario Writer'),(33157,32382,7,'Production Design'),(33157,38131,2,'Director'),(33157,38131,4,'Scenario Writer'),(33157,138762,4,'Screenplay'),(33157,138762,4,'Scenario Writer'),(33157,1325270,7,'Art Direction'),(33157,1325273,7,'Art Direction'),(33157,1325274,7,'Art Direction'),(33157,1325275,7,'Set Decoration'),(33157,1325276,7,'Set Decoration'),(11635,10572,6,'Music'),(11635,7413,1,'Director of Photography'),(11635,8858,3,'Executive Producer'),(11635,12940,5,'Editor'),(11635,54251,3,'Executive Producer'),(11635,57130,2,'Director'),(11635,57130,4,'Screenplay'),(11635,57130,3,'Producer'),(11635,57132,3,'Producer'),(11635,57601,3,'Producer'),(11635,57538,4,'Screenplay'),(11635,70097,4,'Screenplay'),(10358,1307,3,'Executive Producer'),(10358,59839,3,'Executive Producer'),(10358,19303,2,'Director'),(10358,19303,4,'Writer'),(10358,19303,5,'Editor'),(10358,20503,3,'Producer'),(10358,21405,1,'Director of Photography'),(10358,23654,7,'Production Design'),(10358,23739,6,'Original Music Composer'),(10358,59429,7,'Set Decoration'),(10358,978955,3,'Executive Producer'),(10358,1275451,3,'Casting'),(10358,1275452,7,'Art Direction'),(10480,322,3,'Producer'),(10480,6626,1,'Director of Photography'),(10480,24190,6,'Original Music Composer'),(10480,53298,4,'Screenplay'),(10480,58689,2,'Director'),(10480,61192,5,'Editor'),(10313,8376,6,'Sound Designer'),(10313,1461,3,'Producer'),(10313,2031,3,'Casting'),(10313,2532,3,'Casting'),(10313,2950,1,'Director of Photography'),(10313,4061,8,'Costume Design'),(10313,33685,5,'Editor'),(10313,14653,8,'Makeup Department Head'),(10313,25140,7,'Production Design'),(10313,17863,6,'Music Supervisor'),(10313,24190,6,'Original Music Composer'),(10313,31511,2,'Director'),(10313,31511,3,'Producer'),(10313,64813,4,'Novel'),(10313,64814,4,'Screenplay'),(10313,92332,8,'Hair Designer'),(10313,75380,6,'Boom Operator'),(10313,82133,2,'First Assistant Director'),(10313,111050,3,'Producer'),(10313,117867,6,'Sound Effects Editor'),(10313,960673,7,'Art Direction'),(10313,1141899,2,'Script Supervisor'),(10313,1223099,6,'Dialogue Editor'),(10313,1223099,6,'ADR Editor'),(10313,1280234,9,'Stunt Coordinator'),(10313,1335066,7,'Property Master'),(10313,1347760,9,'Dialect Coach'),(10313,1364412,6,'Sound Effects Editor'),(10313,1367676,6,'Music Editor'),(10313,1392909,10,'Visual Effects Supervisor'),(10313,1400535,1,'Camera Operator'),(10313,1403569,1,'Still Photographer'),(10313,1404232,8,'Set Costumer'),(10313,1406805,8,'Wig Designer'),(10313,1412185,8,'Key Makeup Artist'),(10313,1413000,8,'Costume Supervisor'),(10313,1428227,8,'Key Set Costumer'),(10313,1549428,9,'Special Effects Coordinator'),(10313,1551943,8,'Seamstress'),(10313,1558697,11,'Chief Lighting Technician'),(10313,1865862,6,'Orchestrator'),(18828,11405,3,'Producer'),(18828,21792,2,'Director'),(18828,1424894,8,'Hairstylist'),(13476,36797,2,'Director'),(13476,82937,4,'Writer'),(13476,1332245,9,'Stunts'),(10208,9646,5,'Editor'),(10208,22057,1,'Director of Photography'),(10208,44064,3,'Producer'),(10208,45862,5,'Editor'),(10208,49903,2,'Director'),(10208,64183,3,'Executive Producer'),(10208,64184,4,'Screenplay'),(10208,64185,3,'Executive Producer'),(10208,64186,6,'Original Music Composer'),(24961,39996,2,'Director'),(24961,5572,4,'Screenplay'),(24961,6453,5,'Editor'),(24961,9051,4,'Author'),(24961,10339,1,'Director of Photography'),(24961,18755,7,'Production Design'),(24961,18878,3,'Producer'),(24961,32569,3,'Executive Producer'),(24961,32718,3,'Executive Producer'),(24961,168239,6,'Original Music Composer'),(20697,1202,3,'Executive Producer'),(20697,32593,4,'Writer'),(20697,20908,3,'Producer'),(20697,21146,3,'Producer'),(20697,35178,3,'Producer'),(20697,53176,3,'Producer'),(20697,53177,2,'Director'),(20697,53178,3,'Executive Producer'),(20697,62739,3,'Producer'),(20697,86907,3,'Producer'),(20761,4037,2,'Director'),(20761,4037,4,'Writer'),(20761,1394533,3,'Producer'),(26672,5692,10,'Animation'),(26672,43393,6,'Music'),(26672,116100,4,'Screenplay'),(26672,116100,2,'Director'),(26672,116100,3,'Producer'),(26672,116100,10,'Animation'),(26672,133293,10,'Animation'),(26672,155076,10,'Animation'),(26672,222245,10,'Animation'),(26672,224736,10,'Animation'),(26672,224740,3,'Producer'),(26672,224741,7,'Art Direction'),(26672,224742,7,'Background Designer'),(26672,224743,4,'Screenplay'),(26672,224744,1,'Director of Photography'),(19908,7932,4,'Writer'),(19908,7932,3,'Executive Producer'),(19908,21968,3,'Executive Producer'),(19908,35974,3,'Producer'),(19908,54419,3,'Executive Producer'),(19908,54420,6,'Music'),(19908,91268,2,'Director'),(19908,91269,4,'Writer'),(19908,91269,3,'Executive Producer'),(10663,6899,1,'Director of Photography'),(10663,19292,4,'Screenplay'),(10663,19292,3,'Executive Producer'),(10663,20821,3,'Producer'),(10663,21223,5,'Editor'),(10663,29015,3,'Producer'),(10663,56728,4,'Screenplay'),(10663,57370,2,'Director'),(10663,70554,6,'Music'),(10316,432,1,'Director of Photography'),(10316,1461,2,'Director'),(10316,1461,4,'Screenplay'),(10316,1461,3,'Producer'),(10316,1484,3,'Casting'),(10316,1891,5,'Editor'),(10316,2949,6,'Music'),(10316,4061,8,'Costume Design'),(10316,6193,3,'Executive Producer'),(10316,8653,6,'Sound Mixer'),(10316,9423,6,'Supervising Sound Editor'),(10316,12232,3,'Executive Producer'),(10316,12234,3,'Executive Producer'),(10316,25140,7,'Production Design'),(10316,17863,6,'Music Supervisor'),(10316,18789,3,'Executive Producer'),(10316,18789,3,'Unit Production Manager'),(10316,31511,3,'Producer'),(10316,31511,4,'Screenplay'),(10316,113097,6,'Sound Effects Editor'),(10316,57049,3,'Producer'),(10316,64817,4,'Screenplay'),(10316,64817,4,'Theatre Play'),(10316,64817,3,'Co-Producer'),(10316,92332,8,'Hair Designer'),(10316,72461,3,'Co-Executive Producer'),(10316,74322,8,'Makeup Artist'),(10316,75380,6,'Boom Operator'),(10316,112521,7,'Art Direction'),(10316,174205,3,'Executive Producer'),(10316,201202,9,'Stunt Coordinator'),(10316,223240,3,'Production Accountant'),(10316,954064,3,'Executive Producer'),(10316,957368,7,'Set Decoration'),(10316,971715,3,'Executive Producer'),(10316,997367,8,'Set Costumer'),(10316,1015922,2,'Script Supervisor'),(10316,1031222,3,'Co-Executive Producer'),(10316,1049333,6,'Music Editor'),(10316,1128184,3,'Executive Producer'),(10316,1128185,3,'Co-Executive Producer'),(10316,1319166,8,'Makeup Department Head'),(10316,1341781,6,'Sound Re-Recording Mixer'),(10316,1357066,1,'Camera Operator'),(10316,1387216,7,'Leadman'),(10316,1389593,10,'Visual Effects Producer'),(10316,1392909,10,'Visual Effects Supervisor'),(10316,1394131,6,'Sound Re-Recording Mixer'),(10316,1399883,8,'Set Costumer'),(10316,1401807,11,'Best Boy Electric'),(10316,1402560,1,'Still Photographer'),(10316,1413000,8,'Costume Supervisor'),(10316,1416898,6,'Sound Effects Editor'),(10316,1424160,5,'Dialogue Editor'),(10316,1425811,8,'Key Hair Stylist'),(10316,1425814,7,'Construction Coordinator'),(10316,1444912,9,'Property Master'),(10316,1454534,8,'Set Costumer'),(10316,1460745,7,'Art Department Coordinator'),(10316,1531492,9,'Post Production Supervisor'),(10316,1533589,9,'Special Effects Coordinator'),(10316,1537848,3,'Casting Associate'),(10316,1661395,8,'Set Costumer'),(10316,1697442,3,'Production Supervisor'),(10316,1697449,8,'Seamstress'),(10316,1697451,8,'Seamstress'),(10316,1697452,3,'Production Coordinator'),(10316,1697453,3,'Publicist'),(10316,1697454,5,'Dialogue Editor'),(12658,4023,3,'Casting'),(12658,2162,3,'Producer'),(12658,3192,3,'Casting'),(12658,3417,2,'Director'),(12658,5328,3,'Casting'),(12658,5493,8,'Costume Design'),(12658,7496,7,'Production Design'),(12658,14139,1,'Director of Photography'),(12658,18513,8,'Costume Design'),(12658,22106,7,'Art Direction'),(12658,24190,6,'Original Music Composer'),(12658,56907,5,'Editor'),(12658,59187,4,'Screenplay'),(12658,73837,4,'Novel'),(12658,25939,3,'Executive Producer'),(12658,1177713,8,'Costume Supervisor'),(12658,1464541,2,'Script Supervisor'),(12658,1524179,7,'Art Department Coordinator'),(12658,1524180,7,'Set Decoration'),(12658,1524181,8,'Costume Supervisor'),(10866,720,1,'Director of Photography'),(10866,899,5,'Editor'),(10866,4146,3,'Executive Producer'),(10866,7229,6,'Original Music Composer'),(10866,6627,3,'Producer'),(10866,15344,3,'Producer'),(10866,15344,4,'Writer'),(10866,21053,2,'Director'),(10866,21055,5,'Editor'),(10866,21963,7,'Production Design'),(10866,22009,7,'Art Direction'),(10866,55178,5,'Editor'),(10866,57570,3,'Executive Producer'),(10866,67539,4,'Writer'),(10866,67560,5,'Editor'),(21349,151,1,'Director of Photography'),(21349,7630,4,'Writer'),(21349,20209,7,'Production Design'),(21349,39819,2,'Director'),(21349,1192747,4,'Writer'),(19150,84165,2,'Director'),(19150,84165,4,'Writer'),(13579,29783,2,'Director'),(20024,293,1,'Director of Photography'),(20024,1302,3,'Casting'),(20024,9021,3,'Producer'),(20024,9027,8,'Costume Design'),(20024,17016,4,'Screenplay'),(20024,17016,2,'Director'),(20024,17016,3,'Producer'),(20024,9819,7,'Art Direction'),(20024,10759,6,'Original Music Composer'),(20024,12685,5,'Editor'),(20024,15379,4,'Novel'),(20024,18986,7,'Production Design'),(20024,23655,7,'Set Decoration'),(20024,60579,7,'Supervising Art Director'),(20024,66552,7,'Set Decoration'),(20024,1147315,7,'Art Direction'),(11156,17424,3,'Producer'),(11156,17426,3,'Producer'),(11156,19931,3,'Producer'),(11156,19986,1,'Director of Photography'),(11156,23397,5,'Editor'),(11156,50516,3,'Producer'),(11156,48583,2,'Director'),(11156,48583,4,'Screenplay'),(11156,81780,4,'Author'),(11156,81781,4,'Screenplay'),(22215,2240,1,'Director of Photography'),(22215,2949,6,'Original Music Composer'),(22215,3224,2,'Director'),(22215,12952,4,'Writer'),(22215,15731,5,'Editor'),(22215,15732,7,'Production Design'),(22215,15734,8,'Costume Design'),(22215,19773,7,'Set Decoration'),(22215,26193,7,'Art Direction'),(22215,49345,7,'Supervising Art Director'),(22215,1083845,4,'Novel'),(22215,1541289,8,'Makeup Artist'),(11632,5359,6,'Original Music Composer'),(11632,6117,1,'Director of Photography'),(11632,6371,3,'Executive Producer'),(11632,6495,2,'Director'),(11632,6504,5,'Editor'),(11632,10747,4,'Screenplay'),(11632,20063,3,'Producer'),(11632,20774,3,'Producer'),(11632,21217,3,'Executive Producer'),(11632,31061,4,'Novel'),(11632,38804,3,'Producer'),(11632,70086,4,'Screenplay'),(11632,70087,4,'Screenplay'),(11632,70088,3,'Executive Producer'),(30596,66774,4,'Writer'),(30596,70703,2,'Director'),(30596,965591,4,'Writer'),(30596,1174684,4,'Writer'),(11395,4055,6,'Original Music Composer'),(11395,10418,1,'Director of Photography'),(11395,16567,5,'Editor'),(11395,20908,3,'Producer'),(11395,56643,4,'Screenplay'),(11395,56644,3,'Producer'),(11395,58072,2,'Director'),(11395,61398,4,'Screenplay'),(14635,10683,4,'Writer'),(14635,54040,2,'Director'),(13680,9645,1,'Director of Photography'),(13680,12940,5,'Editor'),(13680,36805,4,'Author'),(13680,36805,6,'Original Music Composer'),(13680,58375,2,'Director'),(13680,70698,3,'Producer'),(13680,70700,3,'Producer'),(13680,74936,4,'Author'),(13680,74938,4,'Author'),(11090,12865,5,'Editor'),(11090,3276,3,'Casting'),(11090,5957,7,'Set Decoration'),(11090,13410,10,'Special Effects Supervisor'),(11090,11772,3,'Producer'),(11090,11812,3,'Co-Producer'),(11090,11814,3,'Producer'),(11090,12612,8,'Makeup Artist'),(11090,13223,5,'Color Timer'),(11090,60949,4,'Author'),(11090,60949,3,'Co-Producer'),(11090,15018,6,'Music Editor'),(11090,19292,3,'Executive Producer'),(11090,20822,6,'Original Music Composer'),(11090,20821,3,'Executive Producer'),(11090,20823,1,'Director of Photography'),(11090,29771,8,'Costume Design'),(11090,32903,7,'Production Design'),(11090,33283,5,'Editor'),(11090,46592,7,'Art Direction'),(11090,71130,6,'Music Supervisor'),(11090,65734,2,'Director'),(11090,66512,4,'Screenplay'),(11090,66512,3,'Co-Producer'),(11090,55779,3,'Co-Producer'),(11090,73916,5,'Dialogue Editor'),(11090,75377,8,'Makeup Department Head'),(11090,85960,6,'Sound Designer'),(11090,85960,6,'Supervising Sound Editor'),(11090,113981,2,'First Assistant Director'),(11090,537941,10,'Visual Effects'),(11090,552351,8,'Key Hair Stylist'),(11090,1001817,3,'Unit Production Manager'),(11090,1219681,5,'First Assistant Editor'),(11090,1367495,6,'Boom Operator'),(11090,1378240,1,'Still Photographer'),(11090,1380473,7,'Set Decoration'),(11090,1391565,7,'Set Designer'),(11090,1392603,6,'Assistant Sound Editor'),(11090,1392615,3,'Location Manager'),(11090,1394336,6,'Foley'),(11090,1399861,6,'Additional Sound Re-Recording Mixer'),(11090,1401562,6,'Sound Re-Recording Mixer'),(11090,1413116,10,'Visual Effects Producer'),(11090,1414518,9,'Digital Effects Supervisor'),(11090,1414537,8,'Hairstylist'),(11090,1415007,6,'ADR Supervisor'),(11090,1421754,9,'Transportation Coordinator'),(11090,1424160,6,'ADR Editor'),(11090,1428202,9,'Stunt Coordinator'),(11090,1429243,7,'Leadman'),(11090,1430490,9,'CG Supervisor'),(11090,1451615,3,'Casting'),(11090,1451653,6,'Sound Effects Editor'),(11090,1458988,8,'Key Makeup Artist'),(11090,1465490,3,'Producer'),(11090,1465492,3,'Associate Producer'),(11090,1476346,3,'Production Coordinator'),(11090,1524834,7,'Sculptor'),(11090,1532197,8,'Set Costumer'),(11090,1537471,1,'Camera Operator'),(11090,1546086,6,'Production Sound Mixer'),(11090,1548678,9,'Property Master'),(11090,1548698,6,'Orchestrator'),(11090,1550388,9,'Driver'),(11090,1552182,9,'Set Production Assistant'),(11090,1553248,7,'Set Dresser'),(11090,1565131,3,'Production Accountant'),(11090,1569836,11,'Lighting Technician'),(11090,1585153,3,'Casting'),(11090,1585156,7,'Construction Coordinator'),(11090,1585159,7,'Location Scout'),(11090,1585160,7,'Painter'),(11090,1585162,7,'Standby Painter'),(11090,1585164,1,'First Assistant Camera'),(11090,1585165,1,'Key Grip'),(11090,1585168,9,'Post Production Assistant'),(11090,1585169,9,'Propmaker'),(11090,1585170,9,'Set Medic'),(11090,1585172,9,'Stunts'),(11090,1585175,9,'Unit Publicist'),(11090,1585177,9,'Video Assist Operator'),(11090,1585178,9,'Visual Effects Editor'),(11090,1585181,11,'Best Boy Electric'),(11090,1585182,11,'Electrician'),(11090,1585183,11,'Gaffer'),(11090,1585185,11,'Rigging Gaffer'),(11090,1585187,11,'Rigging Grip'),(11090,1585194,10,'3D Animator'),(11090,1585195,10,'Digital Compositors'),(11090,1585196,10,'Visual Effects Coordinator'),(11090,1585197,4,'Storyboard'),(11090,1717520,7,'Assistant Property Master'),(11090,1762004,6,'Musician'),(11090,1802585,1,'Grip'),(11090,1802587,9,'Animal Coordinator'),(11090,1804880,2,'Second Assistant Director'),(10950,535,3,'Location Manager'),(10950,4767,3,'Executive Producer'),(10950,5506,1,'Director of Photography'),(10950,8425,5,'Editor'),(10950,9181,3,'Producer'),(10950,9182,3,'Producer'),(10950,9197,3,'Producer'),(10950,9891,6,'Sound Mixer'),(10950,11098,6,'Original Music Composer'),(10950,11413,7,'Set Decoration'),(10950,16853,2,'Director'),(10950,16853,4,'Screenplay'),(10950,16853,3,'Producer'),(10950,18789,3,'Unit Production Manager'),(10950,18789,3,'Co-Producer'),(10950,33673,7,'Set Decoration'),(10950,19679,3,'Casting'),(10950,19680,3,'Casting'),(10950,42634,7,'Production Design'),(10950,42635,7,'Art Direction'),(10950,67751,4,'Screenplay'),(10950,70052,3,'Executive Producer'),(10950,83089,6,'Supervising Sound Editor'),(10950,589974,1,'Still Photographer'),(10950,957115,8,'Costume Design'),(10950,1317128,8,'Makeup Department Head'),(10950,1329113,8,'Costume Supervisor'),(10950,1335219,6,'Supervising Sound Editor'),(10950,1342242,6,'Sound Re-Recording Mixer'),(10950,1367667,6,'Sound Effects Editor'),(10950,1387195,6,'Sound Re-Recording Mixer'),(10950,1390536,6,'Music Editor'),(10950,1407223,8,'Hair Department Head'),(10950,1408365,2,'Script Supervisor'),(10950,1410316,6,'Music Editor'),(10950,1412704,5,'Dialogue Editor'),(10950,1417415,7,'Property Master'),(10950,1639187,3,'Executive Producer'),(10950,1765769,7,'Art Department Coordinator'),(10950,1836311,5,'Dialogue Editor'),(10950,1836317,3,'Associate Producer'),(10950,1836317,2,'First Assistant Director'),(11323,497,7,'Production Design'),(11323,1884,2,'Director'),(11323,1884,1,'Director of Photography'),(11323,1891,5,'Editor'),(11323,10468,6,'Original Music Composer'),(11323,19014,4,'Screenplay'),(11323,51922,3,'Casting'),(11323,106936,4,'Book'),(11323,142161,9,'Stunt Coordinator'),(11323,582808,1,'Still Photographer'),(11323,967719,8,'Costume Design'),(11323,1327404,9,'Stunt Coordinator'),(11323,1335127,6,'Supervising Sound Editor'),(11323,1335127,6,'Sound Re-Recording Mixer'),(11323,1341794,8,'Costume Supervisor'),(11323,1397738,2,'Script Supervisor'),(11323,1402080,6,'Music Editor'),(11323,1419812,6,'Sound Editor'),(11323,1551325,6,'Production Sound Mixer'),(10445,8380,7,'Art Direction'),(10445,293,1,'Director of Photography'),(10445,933,4,'Screenplay'),(10445,933,4,'Theatre Play'),(10445,1528,6,'Original Music Composer'),(10445,11072,5,'Editor'),(10445,4034,8,'Costume Design'),(10445,4786,2,'Director'),(10445,4786,3,'Producer'),(10445,5491,7,'Production Design'),(10445,8941,6,'Sound'),(10445,16336,3,'Casting'),(10445,29694,8,'Assistant Costume Designer'),(10445,24680,6,'Sound'),(10445,24681,6,'Sound'),(10445,63913,3,'Executive Producer'),(10445,65329,3,'Producer'),(10445,1235306,3,'Production Coordinator'),(10445,1373728,11,'Gaffer'),(10445,1404840,6,'Sound Mixer'),(10445,1425502,1,'Still Photographer'),(10445,1428473,7,'Property Master'),(10445,1462919,2,'Script Supervisor'),(10445,1542808,7,'Set Decoration'),(10445,1691298,6,'Music Editor'),(10445,1836628,6,'Boom Operator'),(11453,3923,3,'Casting'),(11453,3276,3,'Casting'),(11453,60949,4,'Screenplay'),(11453,19292,3,'Producer'),(11453,20821,3,'Producer'),(11453,23739,6,'Original Music Composer'),(11453,35506,1,'Director of Photography'),(11453,33283,5,'Editor'),(11453,43640,3,'Casting'),(11453,59922,3,'Executive Producer'),(11453,60947,5,'Editor'),(11453,55779,3,'Producer'),(11453,69498,2,'Director'),(11453,69499,4,'Screenplay'),(11453,75362,3,'Co-Producer'),(11453,1173438,4,'Screenplay'),(11453,1465492,3,'Co-Producer'),(10878,1296,3,'Producer'),(10878,17494,2,'Director'),(10878,58187,1,'Director of Photography'),(10878,67354,4,'Screenplay'),(10878,67376,4,'Screenplay'),(10878,69669,6,'Music'),(10878,69670,5,'Editor'),(10878,1007395,9,'Stunt Coordinator'),(10279,313,1,'Director of Photography'),(10279,3287,7,'Production Design'),(10279,4446,3,'Producer'),(10279,5281,4,'Screenplay'),(10279,5281,2,'Director'),(10279,5281,3,'Producer'),(10279,5287,6,'Original Music Composer'),(10279,5289,5,'Editor'),(10279,5298,4,'Screenplay'),(10279,11486,4,'Screenplay'),(10279,11486,3,'Executive Producer'),(10279,15524,8,'Costume Design'),(10279,27039,3,'Casting'),(10279,27040,7,'Art Direction'),(10279,17862,6,'Music Supervisor'),(10279,224389,7,'Set Decoration'),(10279,1516294,2,'Script Supervisor'),(10279,1524380,3,'Executive Producer'),(19366,1593,3,'Casting'),(19366,4867,1,'Director of Photography'),(19366,5910,7,'Production Design'),(19366,13614,2,'Director'),(19366,13614,4,'Writer'),(19366,13615,2,'Director'),(19366,13615,4,'Writer'),(19366,21592,8,'Costume Design'),(19366,21962,6,'Original Music Composer'),(19366,11372,5,'Editor'),(19366,22147,7,'Set Decoration'),(19366,23485,3,'Producer'),(19366,62162,6,'Music Supervisor'),(19366,567283,5,'Dialogue Editor'),(19366,968264,1,'Still Photographer'),(19366,1341857,5,'Dialogue Editor'),(19366,1378728,2,'Script Supervisor'),(19366,1394974,1,'Camera Operator'),(19366,1408178,8,'Key Hair Stylist'),(19366,1417498,5,'Dialogue Editor'),(19366,1535336,1,'Still Photographer'),(19366,1535338,6,'Music Supervisor'),(19366,1535347,8,'Costume Supervisor'),(19366,1544639,6,'Music Editor'),(24100,15868,2,'Director'),(30379,19746,6,'Music'),(30379,52081,9,'Cinematography'),(30379,65237,4,'Writer'),(30379,87432,4,'Writer'),(30379,84981,2,'Director'),(30379,1318092,2,'Director'),(30379,1318093,5,'Editor'),(30379,1332245,9,'Stunts'),(17709,2215,3,'Casting'),(17709,2043,3,'Producer'),(17709,6490,1,'Director of Photography'),(17709,15427,7,'Production Design'),(17709,22061,7,'Art Direction'),(17709,28904,2,'Director'),(17709,28904,4,'Writer'),(17709,30391,8,'Makeup Artist'),(17709,51693,8,'Costume Design'),(17709,56053,3,'Producer'),(17709,58208,5,'Editor'),(17709,70054,6,'Music'),(17709,209628,4,'Characters'),(17709,1007395,9,'Stunts'),(17709,1096363,2,'Script Supervisor'),(17709,1099985,3,'Producer'),(11661,1302,3,'Casting'),(11661,3924,1,'Camera Operator'),(11661,4403,6,'Original Music Composer'),(11661,5425,3,'Producer'),(11661,5749,2,'Script Supervisor'),(11661,7843,3,'Co-Producer'),(11661,17428,6,'Foley'),(11661,24721,1,'Director of Photography'),(11661,49103,3,'Casting'),(11661,52739,3,'Co-Producer'),(11661,55387,5,'Editor'),(11661,55388,7,'Production Design'),(11661,56839,3,'Co-Producer'),(11661,62438,7,'Art Direction'),(11661,70221,2,'Director'),(11661,70221,4,'Writer'),(11661,70222,5,'Editor'),(11661,70222,5,'First Assistant Editor'),(11661,70525,3,'Co-Producer'),(11661,228783,3,'Co-Producer'),(11661,572513,6,'Sound Effects Editor'),(11661,958519,3,'Associate Producer'),(11661,958588,3,'Associate Producer'),(11661,993271,3,'Co-Producer'),(11661,1011390,3,'Associate Producer'),(11661,1086426,2,'Script Supervisor'),(11661,1159914,6,'Dolby Consultant'),(11661,1174351,7,'Art Direction'),(11661,1177691,3,'Associate Producer'),(11661,1318878,8,'Costume Design'),(11661,1325648,8,'Set Costumer'),(11661,1371220,1,'Steadicam Operator'),(11661,1404840,6,'Sound Re-Recording Mixer'),(11661,1405241,1,'Helicopter Camera'),(11661,1407677,8,'Makeup Artist'),(11661,1407693,11,'Gaffer'),(11661,1410602,5,'Digital Intermediate'),(11661,1422859,1,'Helicopter Camera'),(11661,1427499,8,'Wigmaker'),(11661,1494111,7,'Set Decoration'),(11661,1516866,3,'Co-Producer'),(11661,1525888,8,'Key Hair Stylist'),(11661,1536646,6,'Music Editor'),(11661,1554767,11,'Gaffer'),(11661,1558394,1,'Still Photographer'),(11661,1577909,5,'Dialogue Editor'),(11661,1586463,8,'Makeup Artist'),(11661,1599555,11,'Gaffer'),(11661,1683689,9,'Armorer'),(11661,1726777,6,'Music Supervisor'),(11661,1726779,9,'Armorer'),(11661,1726780,11,'Gaffer'),(11661,1726781,9,'Special Effects Coordinator'),(11661,1726782,10,'Visual Effects Supervisor'),(11661,1726783,6,'Supervising Sound Editor'),(11661,1726784,8,'Makeup Artist'),(11661,1726785,8,'Makeup Artist'),(12085,1213,6,'Original Music Composer'),(12085,1527,1,'Director of Photography'),(12085,2399,3,'Casting'),(12085,10548,5,'Editor'),(12085,17397,2,'Director'),(12085,48137,4,'Screenplay'),(12085,71191,6,'Original Music Composer'),(21494,64574,4,'Writer'),(21494,64575,2,'Director'),(21494,64575,4,'Writer'),(17795,18268,4,'Screenplay'),(17795,13426,2,'Director'),(17795,160243,4,'Screenplay'),(17795,160243,4,'Story'),(17795,192727,4,'Screenplay'),(17795,192727,4,'Story'),(10724,190,2,'Director'),(10724,190,3,'Producer'),(10724,356,1,'Camera Operator'),(10724,375,6,'Sound Effects Editor'),(10724,379,6,'Music Editor'),(10724,668,3,'Casting'),(10724,792,9,'Cinematography'),(10724,1052,6,'Sound Re-Recording Mixer'),(10724,2704,6,'Original Music Composer'),(10724,3643,5,'Editor'),(10724,3806,3,'Casting'),(10724,4699,3,'Unit Production Manager'),(10724,6925,7,'Set Decoration'),(10724,8308,7,'Art Direction'),(10724,15153,4,'Screenplay'),(10724,19666,4,'Screenplay'),(10724,42995,3,'Associate Producer'),(10724,55245,1,'Still Photographer'),(10724,56192,3,'Executive Producer'),(10724,56192,3,'Unit Production Manager'),(10724,64024,5,'Editor'),(10724,66812,4,'Novel'),(10724,96910,7,'Art Direction'),(10724,114512,2,'Script Supervisor'),(10724,117779,9,'Transportation Coordinator'),(10724,936194,8,'Makeup Artist'),(10724,1043608,8,'Costume Supervisor'),(10724,1099273,7,'Art Direction'),(10724,1336473,9,'Special Effects'),(10724,1368865,6,'Sound Effects Editor'),(10724,1399140,6,'Sound Re-Recording Mixer'),(10724,1399142,6,'Sound Re-Recording Mixer'),(10724,1401259,6,'Sound Effects Editor'),(10724,1442562,7,'Assistant Art Director'),(10724,1442563,7,'Construction Coordinator'),(10724,1442564,9,'Property Master'),(10724,1442565,9,'Scenic Artist'),(10724,1442566,9,'Special Effects'),(10724,1442567,9,'Visual Effects Editor'),(10724,1442568,9,'Unit Publicist'),(10724,1642433,3,'Production Manager'),(20857,599,3,'Casting'),(20857,4140,6,'Music'),(20857,7034,1,'Director of Photography'),(20857,53176,4,'Screenplay'),(20857,53177,2,'Director'),(20857,59146,9,'Stunts'),(20857,62643,8,'Costume Design'),(20857,223990,7,'Production Design'),(20857,1327404,9,'Stunt Coordinator'),(20857,1855247,9,'Stunts'),(20857,1855248,9,'Stunts'),(19255,39,2,'Director'),(19255,495,3,'Casting'),(19255,313,1,'Director of Photography'),(19255,1782,5,'Editor'),(19255,2242,3,'Casting'),(19255,16297,3,'Producer'),(19255,4437,7,'Set Decoration'),(19255,4855,3,'Producer'),(19255,4857,3,'Producer'),(19255,10575,7,'Production Design'),(19255,5394,6,'Original Music Composer'),(19255,12064,8,'Assistant Costume Designer'),(19255,34885,3,'Executive Producer'),(19255,52161,6,'Music Supervisor'),(19255,52163,8,'Costume Design'),(19255,52015,3,'Executive Producer'),(19255,84414,4,'Writer'),(19255,84415,4,'Writer'),(19255,132626,10,'Visual Effects Producer'),(19255,935490,3,'Casting Associate'),(19255,1002652,10,'Visual Effects Supervisor'),(19255,1212071,3,'Casting Associate'),(19255,1325583,8,'Set Costumer'),(19255,1325661,7,'Art Direction'),(19255,1340734,7,'Art Department Coordinator'),(19255,1342669,2,'Script Supervisor'),(19255,1395362,10,'Visual Effects Producer'),(19255,1395365,10,'Visual Effects Producer'),(19255,1399519,5,'Digital Intermediate'),(19255,1401292,10,'Visual Effects Supervisor'),(19255,1427381,6,'Music Editor'),(19255,1445479,5,'Dialogue Editor'),(19255,1541716,9,'Special Effects Coordinator'),(19255,1544546,3,'Casting Associate'),(19255,1551183,5,'Digital Intermediate'),(19255,1552350,7,'Art Department Coordinator'),(19255,1552351,10,'Visual Effects Coordinator'),(19255,1552353,8,'Costume Supervisor'),(19255,1552354,8,'Set Costumer'),(19255,1552355,8,'Set Costumer'),(19255,1552356,8,'Seamstress'),(19255,1552357,9,'Special Effects Coordinator'),(19255,1552358,5,'First Assistant Editor'),(10187,1269,3,'Producer'),(10187,5914,3,'Casting'),(10187,7847,3,'Producer'),(10187,12945,6,'Music Editor'),(10187,36623,7,'Set Decoration'),(10187,39038,7,'Production Design'),(10187,39123,3,'Casting'),(10187,51693,8,'Costume Design'),(10187,57126,1,'Director of Photography'),(10187,64139,2,'Director'),(10187,64139,4,'Writer'),(10187,68016,6,'Orchestrator'),(10187,76480,4,'Writer'),(10187,91854,8,'Makeup Department Head'),(10187,135562,6,'Sound Effects Editor'),(10187,135562,6,'Sound Re-Recording Mixer'),(10187,558231,5,'Editor'),(10187,558231,8,'Hair Department Head'),(10187,589954,9,'Special Effects Coordinator'),(10187,1293529,1,'Still Photographer'),(10187,1319412,7,'Art Direction'),(10187,1338151,6,'Sound Re-Recording Mixer'),(10187,1338151,5,'Dialogue Editor'),(10187,1347742,6,'Sound Editor'),(10187,1392150,2,'Script Supervisor'),(10187,1550058,6,'Music Editor'),(10187,1553023,3,'Production Supervisor'),(10187,1555699,6,'Production Sound Mixer'),(10187,1555700,6,'Sound Designer'),(10187,1555701,3,'Production Coordinator'),(31005,2952,3,'Casting'),(31005,432,1,'Director of Photography'),(31005,4140,6,'Music'),(31005,5162,3,'Producer'),(31005,6628,7,'Production Design'),(31005,7418,8,'Costume Design'),(31005,8273,7,'Art Direction'),(31005,11625,5,'Editor'),(31005,11887,2,'Director'),(31005,11887,4,'Writer'),(31005,11887,3,'Producer'),(31005,62144,7,'Set Decoration'),(31005,1355529,7,'Art Department Coordinator'),(31005,1378226,6,'Sound Re-Recording Mixer'),(31005,1469339,2,'Script Supervisor'),(31005,1469560,9,'Unit Publicist'),(16363,8337,3,'Casting'),(16363,1531,5,'Editor'),(16363,4967,2,'Director'),(16363,5580,3,'Co-Producer'),(16363,12846,1,'Director of Photography'),(16363,21811,5,'Editor'),(16363,3898,5,'Editor'),(16363,7422,6,'Original Music Composer'),(16363,51378,5,'Editor'),(16363,55227,6,'Sound mixer'),(16363,15924,3,'Producer'),(16363,69877,3,'Producer'),(16363,71732,4,'Writer'),(16363,559913,2,'Script Supervisor'),(16363,1191489,5,'Editor'),(16363,1355180,3,'Producer'),(16363,1360177,6,'Original Music Composer'),(16363,1724827,4,'Writer'),(10678,852,5,'Editor'),(10678,9217,6,'Original Music Composer'),(10678,11506,1,'Director of Photography'),(10678,12923,3,'Executive Producer'),(10678,15758,3,'Executive Producer'),(10678,20739,2,'Director'),(10678,21478,3,'Producer'),(10678,31710,3,'Producer'),(10678,81295,4,'Writer'),(10678,66211,4,'Screenplay'),(16290,5953,3,'Producer'),(16290,5953,4,'Writer'),(16290,9656,3,'Producer'),(16290,9656,4,'Writer'),(16290,56578,2,'Director'),(16290,56578,3,'Producer'),(16290,56580,9,'Cinematography'),(16290,61440,9,'Cinematography'),(16290,61441,9,'Cinematography'),(16290,61442,5,'Editor'),(16290,76365,4,'Writer'),(16290,1356136,6,'Original Music Composer'),(16290,1356137,5,'Editor'),(16290,1371036,3,'Associate Producer'),(16290,1412756,9,'Visual Effects Editor'),(14405,1215,2,'Director'),(14405,1039270,4,'Screenplay'),(11637,3393,6,'Original Music Composer'),(11637,9778,3,'Producer'),(11637,11812,3,'Executive Producer'),(11637,11814,3,'Executive Producer'),(11637,11815,3,'Producer'),(11637,12084,4,'Screenplay'),(11637,12085,4,'Screenplay'),(11637,13581,2,'Director'),(11637,11371,1,'Director of Photography'),(11637,49286,5,'Editor'),(11637,65135,3,'Producer'),(11637,70114,4,'Screenplay'),(11637,70115,4,'Screenplay'),(11637,1007395,9,'Stunt Coordinator'),(12153,434,3,'Casting'),(12153,436,3,'Casting'),(12153,12865,5,'Editor'),(12153,2995,5,'Editor'),(12153,6899,1,'Director of Photography'),(12153,9562,4,'Screenplay'),(12153,9562,3,'Producer'),(12153,20822,6,'Music'),(12153,21258,9,'Special Effects Coordinator'),(12153,21589,7,'Production Design'),(12153,27157,7,'Art Direction'),(12153,27160,8,'Costume Design'),(12153,32201,7,'Set Decoration'),(12153,35689,4,'Screenplay'),(12153,35689,2,'Director'),(12153,35689,3,'Producer'),(12153,35690,4,'Screenplay'),(12153,35690,3,'Producer'),(12153,35748,4,'Screenplay'),(12153,56908,3,'Producer'),(12153,57225,3,'Producer'),(12153,71479,4,'Screenplay'),(12153,71481,4,'Screenplay'),(12153,216880,9,'Choreographer'),(12153,217371,6,'Music'),(12153,1007395,9,'Stunt Coordinator'),(12153,1208435,8,'Makeup Department Head'),(12153,1325909,8,'Costume Supervisor'),(12153,1328138,8,'Makeup Artist'),(12153,1378719,8,'Set Costumer'),(12153,1384398,2,'Script Supervisor'),(12153,1408180,8,'Key Hair Stylist'),(12153,1441327,8,'Costume Supervisor'),(12153,1532224,9,'Animatronic and Prosthetic Effects'),(12153,1532231,8,'Assistant Costume Designer'),(12153,1532232,8,'Hair Department Head'),(13497,28,3,'Producer'),(13497,11098,6,'Original Music Composer'),(13497,51449,3,'Producer'),(13497,65001,4,'Screenplay'),(13497,80215,2,'Director'),(13497,84124,4,'Screenplay'),(13497,84125,3,'Executive Producer'),(13497,84126,3,'Producer'),(13497,84127,3,'Executive Producer'),(10073,376,3,'Executive Producer'),(10073,1260,7,'Production Design'),(10073,12436,7,'Art Direction'),(10073,10766,5,'Editor'),(10073,25143,6,'Original Music Composer'),(10073,18344,3,'Producer'),(10073,35513,7,'Set Decoration'),(10073,35694,4,'Author'),(10073,35694,2,'Director'),(10073,35694,3,'Producer'),(10073,35734,2,'Director'),(10073,35734,4,'Author'),(10073,51982,3,'Casting'),(10073,51983,3,'Casting'),(10073,52016,8,'Costume Design'),(10073,52260,1,'Director of Photography'),(10073,62841,3,'Producer'),(10073,62853,3,'Producer'),(16690,67395,4,'Writer'),(16690,1027737,2,'Director'),(16690,1027738,2,'Director'),(16690,1447297,10,'Animation'),(16690,1447563,10,'Animation'),(16690,1460504,10,'Animation Manager'),(16690,1460532,10,'Animation Manager'),(16690,1461850,10,'Animation'),(16690,1463249,2,'Layout'),(14873,42907,3,'Producer'),(14873,49285,6,'Original Music Composer'),(14873,58833,5,'Editor'),(14873,77544,4,'Screenplay'),(14873,142007,2,'Director'),(14873,1116911,3,'Producer'),(14873,1116915,3,'Production Manager'),(14873,1389598,6,'Supervising Music Editor'),(14873,1748509,5,'Editor'),(14873,1835773,3,'Unit Production Manager'),(15655,5553,6,'Original Music Composer'),(15655,9965,1,'Director of Photography'),(15655,77545,4,'Characters'),(15655,74976,6,'Sound Re-Recording Mixer'),(15655,93301,2,'Director'),(15655,142587,10,'Animation'),(15655,154705,10,'Character Designer'),(15655,226013,7,'Art Direction'),(15655,993265,5,'Editor'),(15655,1243177,10,'Character Designer'),(15655,1339460,6,'Supervising Music Editor'),(15655,1376819,6,'Supervising Sound Editor'),(15655,1387572,6,'Sound Re-Recording Mixer'),(15655,1399997,6,'Sound Re-Recording Mixer'),(15655,1421706,6,'Sound Re-Recording Mixer'),(15655,1447380,10,'Animation'),(15655,1447380,2,'Layout'),(15655,1447473,2,'Layout'),(15655,1447473,10,'Animation'),(15655,1447478,10,'Animation'),(15655,1451280,10,'Animation'),(15655,1453612,10,'Animation'),(15655,1460791,10,'Animation'),(15655,1532407,6,'Supervising Music Editor'),(15655,1536029,6,'Supervising Music Editor'),(15655,1714354,3,'Producer'),(15655,1724275,5,'Editor'),(15655,1728661,3,'Executive In Charge Of Production'),(15655,1767036,10,'Character Designer'),(15655,1779873,10,'Character Designer'),(21208,1091,3,'Producer'),(21208,5507,3,'Casting'),(21208,6193,3,'Producer'),(21208,8303,3,'Executive Producer'),(21208,9039,6,'Original Music Composer'),(21208,9556,3,'Producer'),(21208,10903,3,'Producer'),(21208,10905,3,'Producer'),(21208,40776,3,'Producer'),(21208,37162,3,'Producer'),(21208,39726,3,'Executive Producer'),(21208,52088,7,'Production Design'),(21208,69506,1,'Director of Photography'),(21208,59521,2,'Director'),(21208,62740,3,'Producer'),(21208,62741,3,'Producer'),(21208,64335,5,'Editor'),(21208,78196,3,'Producer'),(21208,142686,4,'Screenplay'),(21208,405004,6,'Sound mixer'),(21208,967446,3,'Executive Producer'),(21208,1089142,3,'Producer'),(21208,1128184,3,'Producer'),(21208,1130038,3,'Producer'),(21208,1131836,4,'Story'),(21208,1131838,3,'Producer'),(21208,1182914,5,'First Assistant Editor'),(21208,1313928,8,'Costume Design'),(21208,1378722,6,'Music Editor'),(21208,1384393,6,'Music Editor'),(21208,1399521,2,'Script Supervisor'),(21208,1537721,1,'Still Photographer'),(13279,2324,3,'Casting'),(13279,905,7,'Production Design'),(13279,1482,3,'Producer'),(13279,2075,4,'Screenplay'),(13279,2075,3,'Executive Producer'),(13279,2075,4,'Story'),(13279,2888,3,'Producer'),(13279,5359,6,'Original Music Composer'),(13279,8320,6,'Original Music Composer'),(13279,17749,1,'Director of Photography'),(13279,46080,3,'Executive Producer'),(13279,58689,2,'Director'),(13279,61192,5,'Editor'),(13279,74579,4,'Screenplay'),(13279,74580,3,'Executive Producer'),(13279,74581,3,'Executive Producer'),(13279,74582,3,'Producer'),(33644,6410,3,'Casting'),(33644,720,1,'Director of Photography'),(33644,5144,3,'Executive Producer'),(33644,55600,2,'First Assistant Director'),(33644,56790,3,'Executive Producer'),(33644,70777,2,'Director'),(33644,70592,3,'Producer'),(33644,111118,3,'Executive Producer'),(33644,111118,4,'Writer'),(27579,1461,3,'Producer'),(27579,5228,6,'Music'),(27579,8748,3,'Executive Producer'),(27579,8765,9,'Special Effects Coordinator'),(27579,40827,6,'Music Editor'),(27579,15911,9,'Stunt Coordinator'),(27579,17450,3,'Producer'),(27579,17608,4,'Screenplay'),(27579,20463,7,'Production Design'),(27579,24227,6,'Sound Re-Recording Mixer'),(27579,26193,7,'Supervising Art Director'),(27579,26194,7,'Set Decoration'),(27579,31511,3,'Producer'),(27579,32451,1,'Director of Photography'),(27579,32451,1,'Camera Operator'),(27579,45052,2,'Director'),(27579,45055,5,'Editor'),(27579,77513,7,'Assistant Art Director'),(27579,76593,1,'Still Photographer'),(27579,75117,11,'Gaffer'),(27579,105780,6,'Production Sound Mixer'),(27579,111879,6,'Sound Re-Recording Mixer'),(27579,119178,3,'Casting'),(27579,141567,4,'Novel'),(27579,141568,3,'Producer'),(27579,141569,3,'Producer'),(27579,141570,8,'Costume Design'),(27579,1318806,8,'Makeup Artist'),(27579,1390376,8,'Set Costumer'),(27579,1392641,9,'Second Unit Cinematographer'),(27579,1392641,1,'Steadicam Operator'),(27579,1408850,9,'Unit Publicist'),(27579,1413804,3,'Unit Manager'),(27579,1434579,5,'Dialogue Editor'),(27579,1436224,6,'Sound Effects Editor'),(27579,1438464,2,'Script Supervisor'),(27579,1444967,8,'Costume Design'),(27579,1510429,7,'Art Direction'),(27579,1565668,8,'Makeup Artist'),(27579,1574125,9,'Property Master'),(27579,1574136,3,'Unit Production Manager'),(27579,1574145,4,'Storyboard'),(27579,1607651,9,'Transportation Coordinator'),(27579,1658266,9,'Post Production Supervisor'),(27579,1658268,7,'Art Department Assistant'),(27579,1658269,6,'Boom Operator'),(27579,1658270,8,'Set Costumer'),(27579,1658271,8,'Seamstress'),(27579,1658273,8,'Hairstylist'),(27579,1658274,8,'Hairstylist'),(27579,1658275,3,'Production Coordinator'),(16052,3276,3,'Casting'),(16052,6345,1,'Director of Photography'),(16052,16395,2,'Director'),(16052,16395,4,'Screenplay'),(16052,10771,6,'Original Music Composer'),(16052,36624,8,'Costume Design'),(16052,67846,5,'Editor'),(16052,26208,3,'Producer'),(16052,63292,7,'Set Decoration'),(16052,66089,3,'Producer'),(16052,92514,3,'Associate Producer'),(16052,588171,3,'Co-Producer'),(16052,956462,3,'Co-Executive Producer'),(16052,1124107,7,'Production Design'),(16052,1253576,3,'Executive Producer'),(16052,1358749,3,'Associate Producer'),(16052,1358751,3,'Associate Producer'),(16052,1358752,3,'Associate Producer'),(16052,1438379,7,'Art Direction'),(14359,151,1,'Director of Photography'),(14359,117,6,'Music'),(14359,1484,3,'Casting'),(14359,1809,5,'Editor'),(14359,2997,3,'Producer'),(14359,4183,3,'Executive Producer'),(14359,4183,3,'Unit Production Manager'),(14359,5329,7,'Production Design'),(14359,5493,8,'Costume Design'),(14359,6488,3,'Producer'),(14359,26095,2,'Director'),(14359,26095,4,'Screenplay'),(14359,26095,4,'Theatre Play'),(14359,60014,7,'Art Direction'),(14359,60135,7,'Set Decoration'),(14359,958273,2,'Script Supervisor'),(14359,1406595,9,'Post Production Supervisor'),(14359,1457935,9,'Compositors'),(14359,1511587,3,'Associate Producer'),(14359,1537848,3,'Casting Associate'),(14359,1695385,3,'Production Supervisor'),(14359,1782425,7,'Location Scout'),(14359,1782426,3,'Location Manager'),(14359,1782427,7,'Location Scout'),(14359,1782428,7,'Location Scout'),(14359,1782430,3,'Production Coordinator'),(20391,12846,1,'Director of Photography'),(20391,21012,5,'Editor'),(20391,27968,4,'Musical'),(20391,27968,4,'Screenplay'),(20391,27968,3,'Producer'),(20391,31498,4,'Adaptation'),(20391,86051,2,'Director'),(20391,260646,3,'Producer'),(20391,1125663,7,'Production Design'),(10139,8215,3,'Producer'),(10139,5216,2,'Director'),(10139,5216,5,'Editor'),(10139,10688,1,'Director of Photography'),(10139,11017,5,'Editor'),(10139,123997,4,'Writer'),(19904,2148,6,'Original Music Composer'),(19904,21055,5,'Editor'),(19904,21672,4,'Original Story'),(19904,21672,4,'Story'),(19904,38411,7,'Production Design'),(19904,50101,1,'Director of Photography'),(19904,52371,4,'Screenplay'),(19904,52371,3,'Executive Producer'),(19904,45627,2,'Director'),(19904,61647,3,'Executive Producer'),(19904,63720,3,'Producer'),(19904,70645,4,'Story'),(19904,84127,3,'Producer'),(19904,100883,4,'Story'),(19904,939164,3,'Executive Producer'),(19904,956624,3,'Executive Producer'),(19904,967794,3,'Executive Producer'),(17182,437,7,'Art Direction'),(17182,1213,6,'Music'),(17182,1262,3,'Casting'),(17182,10220,7,'Production Design'),(17182,5626,3,'Co-Producer'),(17182,5626,3,'Unit Production Manager'),(17182,6875,5,'Editor'),(17182,8653,6,'Sound Mixer'),(17182,19304,2,'Director'),(17182,19309,7,'Set Decoration'),(17182,58088,5,'First Assistant Editor'),(17182,59710,8,'Costume Design'),(17182,60065,3,'Producer'),(17182,67802,4,'Writer'),(17182,67803,4,'Writer'),(17182,1043831,1,'Director of Photography'),(17182,1261679,9,'Stunt Coordinator'),(17182,1324652,1,'Still Photographer'),(17182,1327842,5,'Assistant Editor'),(17182,1341865,2,'Script Supervisor'),(17182,1378170,6,'Sound Re-Recording Mixer'),(17182,1378226,6,'Sound Re-Recording Mixer'),(17182,1394130,6,'Sound Re-Recording Mixer'),(17182,1402250,6,'Supervising Sound Editor'),(17182,1407354,6,'Supervising Sound Editor'),(17182,1594448,4,'Novel'),(17182,1594449,3,'Associate Producer'),(17182,1594450,6,'Boom Operator'),(14043,1888,3,'Producer'),(14043,6348,8,'Costume Design'),(14043,6874,3,'Executive Producer'),(14043,8794,7,'Production Design'),(14043,10955,3,'Unit Production Manager'),(14043,10955,3,'Co-Producer'),(14043,11876,5,'Editor'),(14043,16177,6,'Sound Re-Recording Mixer'),(14043,18457,3,'Casting'),(14043,24309,3,'Executive Producer'),(14043,33651,1,'Director of Photography'),(14043,34528,3,'Production Supervisor'),(14043,41549,2,'Director'),(14043,41549,4,'Screenplay'),(14043,57295,3,'Executive Producer'),(14043,62144,7,'Set Decoration'),(14043,64731,4,'Screenplay'),(14043,64731,4,'Story'),(14043,73137,6,'Original Music Composer'),(14043,73137,6,'Music Supervisor'),(14043,126194,8,'Hairstylist'),(14043,142161,9,'Stunt Coordinator'),(14043,959555,7,'Art Direction'),(14043,1194472,11,'Gaffer'),(14043,1287378,4,'Characters'),(14043,1319166,8,'Makeup Department Head'),(14043,1324652,1,'Still Photographer'),(14043,1377220,6,'Sound Re-Recording Mixer'),(14043,1401720,10,'Visual Effects Supervisor'),(14043,1403439,6,'Supervising Sound Editor'),(14043,1403441,6,'Sound Effects Editor'),(14043,1408357,1,'Steadicam Operator'),(14043,1412204,1,'Camera Operator'),(14043,1434225,2,'Script Supervisor'),(14043,1435194,6,'Music Editor'),(14043,1521504,8,'Hair Department Head'),(14043,1532735,8,'Key Hair Stylist'),(14043,1536630,3,'Production Coordinator'),(14043,1536631,11,'Rigging Gaffer'),(14043,1536632,8,'Makeup Artist'),(14043,1536633,5,'Dialogue Editor'),(14043,1536634,8,'Costume Supervisor'),(14043,1536635,5,'Assistant Editor'),(14043,1536636,1,'First Assistant Camera'),(14043,1552521,9,'Stunts'),(19901,1323,9,'Makeup Effects'),(19901,51030,3,'Executive Producer'),(19901,51032,3,'Executive Producer'),(19901,31136,3,'Producer'),(19901,27749,7,'Production Design'),(19901,27749,8,'Costume Design'),(19901,37281,3,'Casting'),(19901,51541,3,'Producer'),(19901,51542,3,'Producer'),(19901,65045,6,'Original Music Composer'),(19901,56501,2,'Director'),(19901,56501,4,'Screenplay'),(19901,56502,2,'Director'),(19901,56502,4,'Screenplay'),(19901,56504,9,'Makeup Effects'),(19901,61919,1,'Director of Photography'),(19901,75437,6,'Sound Re-Recording Mixer'),(19901,119182,8,'Makeup Artist'),(19901,119182,8,'Hairstylist'),(19901,577468,6,'Sound Designer'),(19901,577468,6,'Supervising Sound Editor'),(19901,966022,5,'Editor'),(19901,1080781,3,'Producer'),(19901,1097359,7,'Set Decoration'),(19901,1120664,9,'Dialect Coach'),(19901,1121518,3,'Line Producer'),(19901,1195356,3,'Casting'),(19901,1337413,6,'Foley'),(19901,1355540,10,'Visual Effects Supervisor'),(19901,1391707,7,'Art Direction'),(19901,1391708,8,'Makeup Department Head'),(19901,1391708,8,'Hairstylist'),(19901,1391709,7,'Art Department Coordinator'),(19901,1391710,7,'Set Designer'),(19901,1391711,7,'Set Designer'),(19901,1391712,9,'Property Master'),(19901,1391713,7,'Set Designer'),(19901,1391714,6,'Sound Designer'),(19901,1391715,6,'Sound Designer'),(19901,1391719,5,'Dialogue Editor'),(19901,1391720,5,'Dialogue Editor'),(19901,1391721,5,'Dialogue Editor'),(19901,1391723,9,'Sound Recordist'),(19901,1391725,10,'Visual Effects Producer'),(19901,1391727,10,'Visual Effects Supervisor'),(19901,1391729,1,'Still Photographer'),(19901,1391730,1,'Still Photographer'),(19901,1391731,1,'Camera Operator'),(19901,1391732,1,'Steadicam Operator'),(19901,1391733,3,'Location Manager'),(19901,1391735,2,'Script Supervisor'),(19901,1412745,9,'Second Unit Cinematographer'),(19901,1418798,8,'Makeup Artist'),(19901,1418798,8,'Hairstylist'),(19901,1418799,8,'Makeup Artist'),(19901,1418799,9,'Makeup Effects'),(19901,1418801,8,'Makeup Artist'),(19901,1418802,8,'Makeup Artist'),(19901,1418802,8,'Hairstylist'),(19901,1418803,9,'Makeup Effects'),(19901,1418806,3,'Production Manager'),(19901,1418807,9,'Visual Effects Editor'),(19901,1418813,9,'Stunt Coordinator'),(19901,1418814,1,'Additional Camera'),(19901,1418815,11,'Gaffer'),(19901,1418816,11,'Rigging Gaffer'),(19901,1418817,3,'Production Accountant'),(34016,1589,6,'Original Music Composer'),(34016,1597,6,'Supervising Sound Effects Editor'),(34016,2864,1,'Director of Photography'),(34016,33456,8,'Costume Design'),(34016,41080,3,'Casting'),(34016,54585,7,'Production Design'),(34016,61107,3,'Producer'),(34016,61397,3,'Producer'),(34016,59837,5,'Editor'),(34016,74619,4,'Screenplay'),(34016,82169,1,'Steadicam Operator'),(34016,82169,1,'Camera Operator'),(34016,11063,7,'Set Decoration'),(34016,111686,2,'Director'),(34016,212576,4,'Screenplay'),(34016,235578,1,'Camera Operator'),(34016,407795,8,'Key Hair Stylist'),(34016,964791,1,'Camera Operator'),(34016,968453,3,'Executive Producer'),(34016,978127,6,'Sound Re-Recording Mixer'),(34016,1031810,6,'Sound Editor'),(34016,1031811,6,'Supervising Sound Editor'),(34016,1116936,6,'Sound Effects Editor'),(34016,1316296,8,'Makeup Department Head'),(34016,1342657,6,'Sound Effects Editor'),(34016,1347755,6,'Music Editor'),(34016,1387183,5,'Dialogue Editor'),(34016,1401155,2,'Script Supervisor'),(34016,1412228,6,'Sound Editor'),(34016,1417005,3,'Production Coordinator'),(34016,1433021,6,'Sound Re-Recording Mixer'),(34016,1453185,1,'Still Photographer'),(34016,1456041,6,'Sound Re-Recording Mixer'),(34016,1527917,8,'Hair Department Head'),(34016,1535987,6,'Music Supervisor'),(34016,1546047,6,'Music Editor'),(34016,1546057,7,'Art Direction'),(34016,1546063,7,'Art Department Coordinator'),(10069,905,7,'Production Design'),(10069,4504,3,'Executive Producer'),(10069,4507,3,'Executive Producer'),(10069,5583,5,'Editor'),(10069,36425,3,'Producer'),(10069,21635,3,'Executive Producer'),(10069,21962,6,'Original Music Composer'),(10069,32474,8,'Costume Design'),(10069,52159,3,'Producer'),(10069,50459,3,'Executive Producer'),(10069,50461,3,'Producer'),(10069,57642,5,'Editor'),(10069,62768,2,'Director'),(10069,62768,4,'Author'),(10069,62770,3,'Producer'),(10069,62770,4,'Author'),(10069,62772,3,'Producer'),(10069,62773,3,'Producer'),(10069,62771,3,'Producer'),(10069,62776,1,'Director of Photography'),(10069,62775,3,'Producer'),(10069,62778,3,'Casting'),(10069,62781,7,'Set Decoration'),(10069,62779,3,'Casting'),(10069,62780,7,'Art Direction'),(10069,62782,3,'Executive Producer'),(10069,62795,3,'Executive Producer'),(10069,1319850,8,'Costume Supervisor'),(12819,61970,2,'Director'),(12819,61970,4,'Story'),(12819,109541,4,'Screenplay'),(12819,131242,2,'Director'),(10115,4504,3,'Executive Producer'),(10115,4507,3,'Executive Producer'),(10115,6342,3,'Producer'),(10115,7478,6,'Original Music Composer'),(10115,10397,8,'Costume Design'),(10115,12781,3,'Executive Producer'),(10115,25142,5,'Editor'),(10115,21635,3,'Executive Producer'),(10115,32236,7,'Production Design'),(10115,53014,2,'Director'),(10115,53014,4,'Writer'),(10115,54781,3,'Co-Producer'),(10115,56324,1,'Director of Photography'),(10115,58870,3,'Executive Producer'),(10115,63671,3,'Casting'),(10115,63672,3,'Casting'),(10115,63673,7,'Set Decoration'),(10115,63675,3,'Associate Producer'),(10115,63674,3,'Casting'),(10115,112521,7,'Art Direction'),(25132,2294,2,'Director'),(25132,2294,4,'Writer'),(25132,2294,9,'Cinematography'),(25132,2294,5,'Editor'),(25132,2294,3,'Producer'),(25132,2294,6,'Music'),(25132,5911,3,'Producer'),(25132,5914,3,'Casting'),(25132,18350,3,'Executive Producer'),(25132,20489,7,'Production Design'),(25132,20490,8,'Costume Design'),(25132,57111,3,'Line Producer'),(25132,57475,4,'Writer'),(25132,61524,7,'Set Decoration'),(25132,61847,5,'Editor'),(25132,112690,3,'Executive Producer'),(25132,113864,3,'Executive Producer'),(25132,999284,6,'Music'),(25132,1014920,3,'Casting'),(25132,1014924,3,'Executive Producer'),(25132,1741165,3,'Associate Producer'),(25132,1741203,6,'Music'),(12690,228,2,'Director'),(12690,228,4,'Screenplay'),(12690,228,3,'Producer'),(12690,546,3,'Casting'),(12690,4190,8,'Costume Design'),(12690,4501,1,'Director of Photography'),(12690,7035,5,'Editor'),(12690,7035,3,'Associate Producer'),(12690,11412,7,'Art Direction'),(12690,16430,4,'Screenplay'),(12690,16430,3,'Producer'),(12690,27679,3,'Executive Producer'),(12690,18135,3,'Producer'),(12690,18135,3,'Unit Production Manager'),(12690,19451,4,'Novel'),(12690,20692,6,'Original Music Composer'),(12690,10830,3,'Executive Producer'),(12690,27543,7,'Production Design'),(12690,39973,3,'Executive Producer'),(12690,112307,7,'Set Decoration'),(12690,589974,1,'Still Photographer'),(12690,935278,3,'Casting'),(12690,957566,3,'Associate Producer'),(12690,1114956,3,'Associate Producer'),(12690,1340318,6,'Sound Effects Editor'),(12690,1341858,6,'Sound Re-Recording Mixer'),(12690,1342626,6,'Sound Re-Recording Mixer'),(12690,1364412,6,'Sound Effects Editor'),(12690,1397736,6,'Music Editor'),(12690,1404716,6,'Supervising Sound Editor'),(12690,1404718,5,'Dialogue Editor'),(12690,1407230,1,'Steadicam Operator'),(12690,1407230,1,'Camera Operator'),(12690,1413092,6,'Sound Effects Editor'),(12690,1433720,5,'Dialogue Editor'),(12690,1444923,11,'Rigging Gaffer'),(12690,1473811,2,'Script Supervisor'),(12690,1535131,6,'Music Supervisor'),(12690,1538374,3,'Production Supervisor'),(12690,1546442,6,'Sound mixer'),(12690,1547137,3,'Production Coordinator'),(12690,1547139,5,'First Assistant Editor'),(12690,1547140,8,'Costume Supervisor'),(12690,1653504,3,'Executive Producer'),(13596,356,1,'Director of Photography'),(13596,4500,6,'Original Music Composer'),(13596,9545,3,'Casting'),(13596,37021,3,'Executive Producer'),(13596,37023,7,'Art Direction'),(13596,21584,3,'Producer'),(13596,26502,2,'Director'),(13596,26502,4,'Screenplay'),(13596,21794,5,'Editor'),(13596,35512,7,'Production Design'),(13596,40513,3,'Executive Producer'),(13596,53758,3,'Producer'),(13596,62160,3,'Producer'),(13596,60946,3,'Casting'),(13596,61899,3,'Executive Producer'),(13596,62161,3,'Producer'),(13596,150748,3,'Producer'),(13596,448476,3,'Producer'),(13596,448477,3,'Producer'),(13596,928588,3,'Casting'),(13596,960543,3,'Casting'),(13596,964587,4,'Writer'),(13596,964587,3,'Producer'),(13596,1125567,3,'Producer'),(13159,1201,2,'Director'),(13159,1460672,5,'Editorial Manager'),(22796,16837,4,'Screenplay'),(22796,16837,2,'Director'),(13682,73161,2,'Director'),(13682,80675,4,'Screenplay'),(13682,85914,4,'Screenplay'),(13682,77545,4,'Characters'),(13682,1447301,10,'Animation Department Coordinator'),(13682,1447459,10,'Animation'),(13682,1451280,10,'Animation'),(13682,1460439,10,'Animation'),(13682,1460783,10,'Animation Manager'),(18357,900,6,'Sound Re-Recording Mixer'),(18357,19155,6,'Music'),(18357,7902,3,'Casting'),(18357,8763,6,'Sound Editor'),(18357,11454,5,'Editor'),(18357,14378,7,'Assistant Art Director'),(18357,13168,6,'ADR Editor'),(18357,24310,1,'Director of Photography'),(18357,21794,5,'Editor'),(18357,13435,7,'Set Decoration'),(18357,38410,1,'Camera Operator'),(18357,40592,3,'Producer'),(18357,59267,4,'Writer'),(18357,64149,2,'Director'),(18357,64830,3,'Producer'),(18357,80672,9,'Choreographer'),(18357,80606,3,'Casting Associate'),(18357,83083,6,'Supervising ADR Editor'),(18357,83087,6,'Sound Editor'),(18357,83090,6,'Supervising Sound Editor'),(18357,91093,6,'Sound Editor'),(18357,143913,6,'ADR Editor'),(18357,930028,1,'Camera Operator'),(18357,935719,8,'Costume Design'),(18357,957258,7,'Production Design'),(18357,1015427,6,'Boom Operator'),(18357,1030977,6,'Orchestrator'),(18357,1116936,6,'Sound Editor'),(18357,1242718,6,'Songs'),(18357,1302621,2,'Second Assistant Director'),(18357,1319135,7,'Art Direction'),(18357,1341342,9,'Transportation Coordinator'),(18357,1344278,2,'Script Supervisor'),(18357,1378848,3,'Production Accountant'),(18357,1387572,6,'Sound Re-Recording Mixer'),(18357,1401363,9,'Stunt Coordinator'),(18357,1407345,3,'Production Supervisor'),(18357,1409270,6,'ADR Editor'),(18357,1411856,6,'Music Editor'),(18357,1412228,6,'Sound Mixer'),(18357,1415617,6,'Sound Editor'),(18357,1415618,6,'Supervising Sound Editor'),(18357,1418010,9,'Unit Publicist'),(18357,1420150,7,'Construction Coordinator'),(18357,1422071,11,'Chief Lighting Technician'),(18357,1428974,3,'Unit Production Manager'),(18357,1439763,7,'Art Department Coordinator'),(18357,1447583,7,'Property Master'),(18357,1476990,3,'Associate Producer'),(18357,1476990,2,'First Assistant Director'),(18357,1480308,8,'Key Hair Stylist'),(18357,1521753,8,'Set Costumer'),(18357,1524189,8,'Costume Supervisor'),(18357,1530723,1,'First Assistant Camera'),(18357,1535958,3,'Production Supervisor'),(18357,1540470,5,'Color Timer'),(18357,1544639,6,'Music Editor'),(18357,1548698,6,'Orchestrator'),(18357,1551521,6,'Music Editor'),(18357,1552997,9,'Choreographer'),(18357,1553245,1,'Still Photographer'),(18357,1562244,9,'Special Effects Coordinator'),(18357,1616516,8,'Key Makeup Artist'),(18357,1677824,6,'Sound Editor'),(18357,1693130,5,'Associate Editor'),(18357,1710265,6,'First Assistant Sound Editor'),(18357,1723830,3,'Production Coordinator'),(18357,1775847,3,'Location Manager'),(18357,1778013,7,'Storyboard Designer'),(18357,1811627,6,'Assistant Sound Editor'),(18357,1824561,7,'Assistant Property Master'),(18357,1824562,7,'Assistant Property Master'),(18357,1824563,8,'Set Costumer'),(18357,1824564,5,'First Assistant Editor'),(18357,1824565,5,'Assistant Editor'),(18357,1824566,9,'Post Production Assistant'),(18357,1824567,6,'Music Supervisor'),(18357,1824568,11,'Best Boy Electric'),(18357,1824569,1,'Key Grip'),(18357,1824570,9,'Transportation Captain'),(15644,2031,3,'Casting'),(15644,2461,3,'Producer'),(15644,2487,3,'Producer'),(15644,2532,3,'Casting'),(15644,6041,6,'Original Music Composer'),(15644,8747,3,'Producer'),(15644,21004,8,'Costume Design'),(15644,21640,7,'Production Design'),(15644,21642,7,'Set Decoration'),(15644,41677,3,'Casting'),(15644,43610,5,'Editor'),(15644,56324,1,'Director of Photography'),(15644,56327,3,'Executive Producer'),(15644,65937,6,'Sound Effects Editor'),(15644,67160,1,'Camera Operator'),(15644,95834,6,'Music Editor'),(15644,117867,6,'Supervising Sound Editor'),(15644,137125,6,'Sound Re-Recording Mixer'),(15644,1212551,4,'Writer'),(15644,1216735,2,'Director'),(15644,1330048,8,'Costume Supervisor'),(15644,1332245,9,'Stunts'),(15644,1357070,9,'Transportation Coordinator'),(15644,1364412,6,'Sound Effects Editor'),(15644,1370949,5,'Dialogue Editor'),(15644,1391583,1,'Still Photographer'),(15644,1407354,6,'Sound Re-Recording Mixer'),(15644,1414532,2,'Script Supervisor'),(15644,1442535,9,'Stunt Coordinator'),(15644,1533556,8,'Assistant Costume Designer'),(15644,1550778,1,'Steadicam Operator'),(15644,1550778,1,'Camera Operator'),(15644,1551863,6,'Music Supervisor'),(15644,1551870,6,'Sound mixer'),(10642,25143,6,'Original Music Composer'),(10642,57426,5,'Editor'),(10642,57434,2,'Director'),(10642,57434,4,'Screenplay'),(10642,57434,3,'Producer'),(10642,58038,3,'Producer'),(10642,66160,3,'Producer'),(10642,69918,1,'Director of Photography'),(22074,17087,2,'Director'),(22074,17087,4,'Writer'),(13805,33283,5,'Editor'),(13805,35694,2,'Director'),(13805,35694,4,'Screenplay'),(13805,35694,3,'Producer'),(13805,35734,2,'Director'),(13805,35734,4,'Screenplay'),(13805,35734,3,'Producer'),(13805,49911,6,'Original Music Composer'),(13805,52259,3,'Producer'),(13805,52260,9,'Cinematography'),(13805,150748,3,'Producer'),(13805,961093,3,'Executive Producer'),(13805,1114052,3,'Producer'),(10710,3188,7,'Production Design'),(10710,966,1,'Director of Photography'),(10710,2242,3,'Casting'),(10710,2529,7,'Set Decoration'),(10710,8246,2,'Director'),(10710,8246,3,'Producer'),(10710,5166,5,'Editor'),(10710,5666,6,'Original Music Composer'),(10710,10956,3,'Co-Producer'),(10710,9255,8,'Costume Design'),(10710,16731,3,'Producer'),(10710,42281,7,'Set Designer'),(10710,46592,7,'Set Designer'),(10710,57098,3,'Unit Production Manager'),(10710,57634,3,'Executive Producer'),(10710,16376,3,'Executive Producer'),(10710,60086,5,'Editor'),(10710,60937,7,'Art Direction'),(10710,1126348,3,'Location Manager'),(10710,1398132,3,'Casting Associate'),(10710,1535954,3,'Production Coordinator'),(10710,1778264,3,'Location Manager'),(10710,1838870,4,'Screenplay'),(15092,68602,3,'Producer'),(15092,3193,6,'Sound Designer'),(15092,3193,6,'Supervising Sound Editor'),(15092,3953,3,'Producer'),(15092,3954,3,'Producer'),(15092,3955,3,'Producer'),(15092,3958,3,'Executive Producer'),(15092,3958,10,'Visual Effects Supervisor'),(15092,51030,3,'Executive Producer'),(15092,10421,7,'Production Design'),(15092,14714,8,'Hairstylist'),(15092,19662,3,'Casting'),(15092,20192,4,'Screenplay'),(15092,20192,2,'Director'),(15092,20192,3,'Executive Producer'),(15092,20192,1,'Camera Operator'),(15092,20193,4,'Screenplay'),(15092,20193,2,'Director'),(15092,20193,3,'Executive Producer'),(15092,20193,1,'Camera Operator'),(15092,23604,5,'Editor'),(15092,11310,9,'Special Effects Coordinator'),(15092,40513,3,'Executive Producer'),(15092,52790,3,'Executive Producer'),(15092,61996,9,'Makeup Effects'),(15092,62279,7,'Set Decoration'),(15092,64227,1,'Director of Photography'),(15092,75591,5,'Editor'),(15092,75617,9,'Stunt Coordinator'),(15092,80826,6,'Sound Designer'),(15092,109129,8,'Makeup Artist'),(15092,122451,6,'Music'),(15092,403314,9,'Makeup Effects'),(15092,965666,8,'Costume Design'),(15092,1005950,3,'Executive Producer'),(15092,1008115,7,'Art Direction'),(15092,1158477,2,'Script Supervisor'),(15092,1185063,7,'Construction Coordinator'),(15092,1191540,11,'Gaffer'),(15092,1198049,9,'Second Unit Cinematographer'),(15092,1267055,6,'Foley'),(15092,1309884,6,'Sound Re-Recording Mixer'),(15092,1339463,9,'Picture Car Coordinator'),(15092,1352966,5,'Dialogue Editor'),(15092,1357061,6,'Sound Designer'),(15092,1387186,1,'Still Photographer'),(15092,1387216,7,'Leadman'),(15092,1387217,7,'Art Department Coordinator'),(15092,1391571,6,'Sound Re-Recording Mixer'),(15092,1392083,6,'Sound Designer'),(15092,1394743,9,'Makeup Effects'),(15092,1401795,10,'Visual Effects Supervisor'),(15092,1401992,9,'Video Assist Operator'),(15092,1402249,10,'Visual Effects Supervisor'),(15092,1404285,9,'Visual Effects Editor'),(15092,1404286,9,'Visual Effects Editor'),(15092,1404903,6,'ADR & Dubbing'),(15092,1404903,5,'Dialogue Editor'),(15092,1408338,10,'Visual Effects Producer'),(15092,1409283,9,'Unit Publicist'),(15092,1413453,6,'Sound Designer'),(15092,1414497,9,'Property Master'),(15092,1414537,8,'Hairstylist'),(15092,1414538,8,'Hairstylist'),(15092,1414539,8,'Makeup Department Head'),(15092,1414540,8,'Makeup Artist'),(15092,1414541,8,'Makeup Artist'),(15092,1414544,9,'Makeup Effects'),(15092,1414546,3,'Production Supervisor'),(15092,1414547,7,'Greensman'),(15092,1414548,6,'Foley'),(15092,1414549,6,'Sound Designer'),(15092,1414551,9,'Visual Effects Editor'),(15092,1414552,10,'Visual Effects Producer'),(15092,1414553,10,'Visual Effects Producer'),(15092,1414554,9,'Stunt Coordinator'),(15092,1414555,11,'Rigging Gaffer'),(15092,1414556,8,'Set Costumer'),(15092,1414557,8,'Set Costumer'),(15092,1414558,5,'Digital Intermediate'),(15092,1414559,5,'First Assistant Editor'),(15092,1414560,9,'Choreographer'),(15092,1414561,2,'Script Supervisor'),(15092,1414562,3,'Production Accountant'),(15092,1639187,3,'Executive Producer'),(15092,1669267,9,'Stunts'),(11382,1243,2,'Director'),(11382,1243,4,'Screenplay'),(11382,3658,3,'Producer'),(11382,6993,3,'Producer'),(11382,10440,5,'Editor'),(11382,15194,1,'Director of Photography'),(11382,23966,7,'Production Design'),(11382,32983,4,'Screenplay'),(15005,6899,1,'Director of Photography'),(15005,11383,5,'Editor'),(15005,29940,3,'Casting'),(15005,38807,7,'Production Design'),(15005,63065,3,'Producer'),(15005,66941,6,'Original Music Composer'),(15005,87178,2,'Director'),(15005,87432,4,'Screenplay'),(15005,87432,5,'Editor'),(15005,87432,3,'Producer'),(15005,87433,4,'Novel'),(15005,87434,4,'Novel'),(15005,102803,3,'Producer'),(15005,1063966,5,'Editor'),(15005,1095093,8,'Hair Department Head'),(15005,1130633,8,'Makeup Department Head'),(15005,1393278,8,'Makeup Artist'),(15005,1407737,1,'Steadicam Operator'),(15005,1414532,2,'Script Supervisor'),(15005,1418063,11,'Gaffer'),(15005,1423865,1,'Camera Operator'),(15005,1425827,9,'Second Unit Cinematographer'),(15005,1441226,3,'Casting'),(15005,1441227,8,'Costume Design'),(15005,1448889,1,'Still Photographer'),(15005,1455461,10,'Animation'),(15005,1535417,6,'Music Editor'),(15005,1535418,3,'Production Manager'),(15005,1545099,7,'Art Department Coordinator'),(15005,1545100,9,'Property Master'),(15005,1545101,3,'Producer'),(15005,1545102,3,'Producer'),(15005,1545103,10,'Animation'),(15005,1545104,10,'Animation'),(15005,1545105,10,'Animation'),(15005,1545106,10,'Animation'),(15005,1545109,1,'Camera Operator'),(15005,1545113,10,'Visual Effects Coordinator'),(15070,915,4,'Writer'),(15070,1723,2,'Director'),(15070,1424894,9,'Makeup Effects'),(12797,508,2,'Director'),(12797,508,4,'Author'),(12797,561,3,'Casting'),(12797,4504,3,'Executive Producer'),(12797,4507,3,'Executive Producer'),(12797,9041,7,'Production Design'),(12797,13932,3,'Casting'),(12797,17765,1,'Director of Photography'),(12797,17767,6,'Original Music Composer'),(12797,21968,3,'Executive Producer'),(12797,35974,3,'Producer'),(12797,51296,4,'Screenplay'),(12797,73108,5,'Editor'),(12797,1123059,3,'Producer'),(17134,561,3,'Casting'),(17134,894,6,'Music'),(17134,3189,5,'Editor'),(17134,6048,3,'Producer'),(17134,16938,2,'Director'),(17134,27040,7,'Production Design'),(17134,41680,8,'Costume Design'),(17134,50459,3,'Executive Producer'),(17134,55441,1,'Director of Photography'),(17134,60872,7,'Set Decoration'),(17134,84753,4,'Writer'),(17134,84758,3,'Producer'),(17134,84761,3,'Producer'),(17134,578724,8,'Makeup Department Head'),(17134,1084753,1,'Camera Operator'),(17134,1317645,7,'Art Direction'),(17134,1319850,8,'Costume Supervisor'),(17134,1333222,9,'Stunt Coordinator'),(17134,1333932,3,'Casting'),(17134,1338374,6,'Sound Re-Recording Mixer'),(17134,1360446,7,'Art Department Coordinator'),(17134,1367481,7,'Greensman'),(17134,1378697,6,'Sound Re-Recording Mixer'),(17134,1392131,6,'Sound Designer'),(17134,1392131,6,'Supervising Sound Editor'),(17134,1393371,9,'Property Master'),(17134,1393372,7,'Construction Coordinator'),(17134,1393375,7,'Leadman'),(17134,1393380,5,'Dialogue Editor'),(17134,1393382,6,'Sound Designer'),(17134,1393387,9,'Special Effects Coordinator'),(17134,1393389,10,'Visual Effects Producer'),(17134,1393390,10,'Visual Effects Supervisor'),(17134,1393396,1,'Still Photographer'),(17134,1393398,1,'Camera Operator'),(17134,1393399,1,'Camera Operator'),(17134,1393400,11,'Gaffer'),(17134,1393401,8,'Set Costumer'),(17134,1393403,8,'Set Costumer'),(17134,1393404,8,'Set Costumer'),(17134,1393405,6,'Music Editor'),(17134,1393406,9,'Transportation Coordinator'),(17134,1393407,2,'Script Supervisor'),(17134,1393408,3,'Location Manager'),(18885,36147,2,'Director'),(18885,126623,4,'Screenplay'),(10773,382,3,'Producer'),(10773,1528,6,'Original Music Composer'),(10773,3224,2,'Director'),(10773,8846,1,'Director of Photography'),(10773,9027,8,'Costume Design'),(10773,12954,3,'Producer'),(10773,15731,5,'Editor'),(10773,65016,3,'Executive Producer'),(10773,66701,4,'Idea'),(10773,66701,3,'Producer'),(10773,66702,4,'Idea'),(10773,66702,3,'Producer'),(10773,66703,4,'Screenplay'),(10773,948439,3,'Line Producer'),(10563,1296,3,'Executive Producer'),(10563,5912,6,'Original Music Composer'),(10563,3806,3,'Casting'),(10563,10567,4,'Screenplay'),(10563,10418,1,'Director of Photography'),(10563,15435,10,'Visual Effects Supervisor'),(10563,20908,3,'Producer'),(10563,21146,3,'Producer'),(10563,22819,8,'Costume Design'),(10563,48070,5,'Editor'),(10563,58038,3,'Co-Producer'),(10563,60011,3,'Co-Producer'),(10563,66039,2,'Director'),(10563,66040,4,'Screenplay'),(10563,66040,4,'Story'),(10563,86907,3,'Associate Producer'),(10563,143972,2,'Script Supervisor'),(10563,937893,3,'Executive Producer'),(10563,1463199,7,'Art Direction'),(10563,1467298,7,'Set Decoration'),(10563,1471726,6,'Music Supervisor'),(10563,1521767,7,'Production Design'),(10563,1529447,8,'Key Hair Stylist'),(10563,1529448,3,'Producer'),(11835,2127,2,'Director'),(11835,2148,6,'Original Music Composer'),(11835,3965,3,'Casting'),(11835,13224,6,'Dolby Consultant'),(11835,26714,1,'Director of Photography'),(11835,13458,9,'Stunt Coordinator'),(11835,16651,5,'Editor'),(11835,16658,9,'Special Effects Coordinator'),(11835,18786,8,'Hairstylist'),(11835,21162,7,'Set Decoration'),(11835,21478,3,'Producer'),(11835,36428,9,'Second Unit Cinematographer'),(11835,53299,3,'Producer'),(11835,53300,3,'Producer'),(11835,54777,3,'Casting'),(11835,57965,3,'Executive Producer'),(11835,61095,3,'Executive Producer'),(11835,61096,3,'Executive Producer'),(11835,70251,5,'First Assistant Editor'),(11835,70644,4,'Screenplay'),(11835,70645,4,'Novel'),(11835,70646,3,'Executive Producer'),(11835,137125,6,'Sound Re-Recording Mixer'),(11835,141301,7,'Production Design'),(11835,983446,7,'Art Direction'),(11835,1034748,3,'Casting'),(11835,1183915,8,'Costume Design'),(11835,1295780,9,'Makeup Effects'),(11835,1295780,8,'Makeup Artist'),(11835,1336516,7,'Construction Coordinator'),(11835,1340748,2,'Script Supervisor'),(11835,1341775,10,'Visual Effects Producer'),(11835,1355966,8,'Set Costumer'),(11835,1360110,10,'Visual Effects Supervisor'),(11835,1393568,1,'Still Photographer'),(11835,1396794,9,'Sound Recordist'),(11835,1397736,6,'Music Editor'),(11835,1400385,3,'Location Manager'),(11835,1400877,8,'Costume Supervisor'),(11835,1401354,3,'Production Supervisor'),(11835,1402111,6,'Sound Re-Recording Mixer'),(11835,1404824,2,'Script Supervisor'),(11835,1408720,1,'Camera Operator'),(11835,1412452,6,'Supervising Sound Editor'),(11835,1413003,9,'Unit Publicist'),(11835,1417890,9,'Studio Teachers'),(11835,1419254,6,'Sound Editor'),(11835,1419271,5,'Digital Intermediate'),(11835,1419272,6,'Music Editor'),(11835,1421236,8,'Hairstylist'),(11835,1421237,8,'Makeup Department Head'),(11835,1421238,7,'Art Department Coordinator'),(11835,1421239,9,'Property Master'),(11835,1421241,7,'Greensman'),(11835,1421247,6,'Sound Editor'),(11835,1421250,1,'Camera Operator'),(11835,1421251,1,'Steadicam Operator'),(11835,1421252,11,'Gaffer'),(11835,1421253,8,'Set Costumer'),(11835,1421254,8,'Set Costumer'),(11835,1421255,9,'Transportation Coordinator'),(11835,1421256,9,'Studio Teachers'),(11835,1421257,2,'Script Supervisor'),(26171,4189,8,'Costume Design'),(26171,4909,7,'Set Decoration'),(26171,5327,5,'Editor'),(26171,5328,3,'Casting'),(26171,9196,3,'Producer'),(26171,11269,6,'Original Music Composer'),(26171,11420,3,'Producer'),(26171,14378,7,'Art Direction'),(26171,15191,4,'Screenplay'),(26171,68802,3,'Executive Producer'),(26171,19689,3,'Casting'),(26171,19770,3,'Executive Producer'),(26171,23422,1,'Director of Photography'),(26171,57301,3,'Producer'),(26171,64045,2,'Director'),(26171,64045,4,'Screenplay'),(26171,64048,3,'Producer'),(26171,65314,4,'Screenplay'),(26171,98482,4,'Screenplay'),(26171,1102071,3,'Executive Producer'),(26171,1124531,7,'Production Design'),(26171,1330528,3,'Producer'),(26171,1330529,3,'Executive Producer'),(26171,1330530,3,'Executive Producer'),(26171,1393558,7,'Leadman'),(31117,12698,2,'Director'),(31117,16838,3,'Producer'),(31117,16838,4,'Story'),(31117,147713,4,'Screenplay'),(14396,56911,2,'Director'),(14396,1546584,7,'Standby Painter'),(15673,54645,4,'Writer'),(15673,113194,9,'Stunts'),(15673,15045,2,'Director'),(24432,53332,2,'Director'),(24432,80537,2,'Director'),(24432,80538,2,'Director'),(13948,12987,2,'Director'),(13948,12987,4,'Writer'),(10929,561,3,'Casting'),(10929,5362,3,'Casting'),(10929,5363,3,'Casting'),(10929,11821,7,'Assistant Art Director'),(10929,12706,7,'Production Design'),(10929,10830,3,'Executive Producer'),(10929,23420,3,'Executive Producer'),(10929,26981,6,'Original Music Composer'),(10929,57134,3,'Producer'),(10929,57135,1,'Director of Photography'),(10929,57430,3,'Executive Producer'),(10929,57858,5,'Editor'),(10929,58403,4,'Screenplay'),(10929,58403,2,'Director'),(10929,58403,3,'Producer'),(10929,62859,7,'Art Direction'),(10929,15947,4,'Novel'),(10929,548437,6,'ADR & Dubbing'),(10929,548439,6,'Foley'),(10929,548445,6,'Foley'),(10929,555978,10,'Animation Supervisor'),(10929,959742,3,'Casting Associate'),(10929,960600,8,'Costume Design'),(10929,1340014,2,'Script Supervisor'),(10929,1342657,6,'Sound Designer'),(10929,1342658,5,'Dialogue Editor'),(10929,1347998,6,'Sound Re-Recording Mixer'),(10929,1378755,6,'Sound Re-Recording Mixer'),(10929,1391126,10,'Visual Effects Producer'),(10929,1391591,1,'Camera Operator'),(10929,1394752,10,'Visual Effects Producer'),(10929,1394753,5,'First Assistant Editor'),(10929,1394958,10,'Visual Effects Producer'),(10929,1399633,10,'Visual Effects Coordinator'),(10929,1400374,1,'Camera Operator'),(10929,1401594,1,'Still Photographer'),(10929,1401631,5,'Dialogue Editor'),(10929,1406826,6,'Foley'),(10929,1408326,9,'Visual Effects Editor'),(10929,1408718,10,'Visual Effects Supervisor'),(10929,1408780,9,'Special Effects Coordinator'),(10929,1411856,6,'Music Editor'),(10929,1413115,10,'Visual Effects Producer'),(10929,1423757,6,'Sound Effects Editor'),(10929,1427438,2,'Script Supervisor'),(10929,1441250,6,'Sound Designer'),(10929,1441250,6,'Supervising Sound Editor'),(10929,1441261,9,'Second Unit Cinematographer'),(10929,1441341,7,'Set Decoration'),(10929,1441345,8,'Makeup Artist'),(10929,1441372,2,'Script Supervisor'),(10929,1511086,6,'Sound Effects Editor'),(10929,1512251,8,'Makeup Artist'),(10929,1523419,8,'Hairstylist'),(10929,1552357,9,'Special Effects Coordinator'),(10929,1566069,1,'Still Photographer'),(10929,1575768,8,'Assistant Costume Designer'),(10929,1575769,10,'3D Supervisor'),(10929,1575771,10,'Animation'),(10929,1575773,10,'Visual Effects Coordinator'),(10929,1576236,1,'Camera Operator'),(14220,19292,3,'Producer'),(14220,20821,3,'Producer'),(14220,66563,4,'Screenplay'),(14220,66563,2,'Director'),(14220,81209,4,'Screenplay'),(12142,23799,2,'Director'),(12142,23799,3,'Executive Producer'),(12142,23808,1,'Director of Photography'),(12142,40605,3,'Executive Producer'),(12142,40610,4,'Screenplay'),(12142,40607,4,'Screenplay'),(12142,43901,3,'Producer'),(12142,49187,6,'Music'),(12142,64666,5,'Editor'),(12142,71437,4,'Screenplay'),(12142,71440,6,'Music'),(12142,71441,6,'Music'),(12142,71442,6,'Music'),(23367,1315,5,'Editor'),(23367,5545,3,'Producer'),(23367,13585,3,'Casting'),(23367,18342,4,'Screenplay'),(23367,18342,2,'Director'),(23367,18342,4,'Scenario Writer'),(23367,52004,3,'Producer'),(23367,52449,1,'Director of Photography'),(23367,55444,3,'Producer'),(23367,59475,7,'Art Direction'),(23367,63291,3,'Producer'),(23367,63293,7,'Production Design'),(23367,71560,7,'Set Decoration'),(23367,95959,3,'Producer'),(23367,129305,4,'Screenplay'),(23367,129305,4,'Scenario Writer'),(23367,1457820,8,'Costume Design'),(10740,2952,3,'Casting'),(10740,1309,3,'Executive Producer'),(10740,2949,6,'Original Music Composer'),(10740,9007,8,'Makeup Artist'),(10740,9747,4,'Screenplay'),(10740,10688,1,'Director of Photography'),(10740,16447,4,'Screenplay'),(10740,20474,3,'Producer'),(10740,20569,7,'Set Decoration'),(10740,24219,5,'Editor'),(10740,19755,7,'Production Design'),(10740,52163,8,'Costume Design'),(10740,38082,3,'Executive Producer'),(10740,66728,2,'Director'),(10740,66728,4,'Screenplay'),(10740,66729,3,'Producer'),(10740,66730,3,'Executive Producer'),(10740,66731,3,'Producer'),(10740,66732,5,'Editor'),(10740,1330612,8,'Makeup Artist'),(10740,1347761,2,'Script Supervisor'),(10740,1372095,8,'Costume Supervisor'),(10740,1395329,7,'Art Department Coordinator'),(10740,1399479,9,'Unit Publicist'),(10740,1416795,7,'Art Direction'),(10740,1416796,8,'Hairstylist'),(10740,1421237,8,'Makeup Department Head'),(10740,1458571,8,'Hairstylist'),(10740,1470182,8,'Hairstylist'),(10740,1470183,8,'Makeup Artist'),(10740,1470185,8,'Costume Supervisor'),(14582,3721,7,'Set Decoration'),(14582,3962,8,'Costume Design'),(14582,4583,3,'Producer'),(14582,8315,7,'Production Design'),(14582,19953,5,'Editor'),(14582,20229,6,'Foley'),(14582,22680,6,'Original Music Composer'),(14582,84021,2,'Director'),(14582,84021,4,'Writer'),(14582,84021,3,'Producer'),(14582,85964,6,'Sound Effects Editor'),(14582,957150,1,'Director of Photography'),(14582,1018349,6,'Supervising Sound Editor'),(14582,1198531,3,'Producer'),(14582,1244274,3,'Producer'),(14582,1314170,3,'Casting'),(14582,1364801,6,'Music Editor'),(14582,1371066,6,'Music Editor'),(14582,1378699,9,'Special Effects Coordinator'),(14582,1389664,8,'Makeup Department Head'),(14582,1389665,9,'Property Master'),(14582,1389666,7,'Assistant Art Director'),(14582,1389667,5,'Dialogue Editor'),(14582,1389668,10,'Visual Effects Producer'),(14582,1389669,10,'Visual Effects Supervisor'),(14582,1389670,9,'Stunt Coordinator'),(14582,1389671,1,'Camera Operator'),(14582,1389672,1,'Still Photographer'),(14582,1430597,3,'Location Manager'),(14914,2215,3,'Casting'),(14914,1112,7,'Production Design'),(14914,4504,3,'Producer'),(14914,4507,3,'Producer'),(14914,15219,2,'Director'),(14914,11099,1,'Director of Photography'),(14914,40384,6,'Music'),(14914,17766,5,'Editor'),(14914,55613,8,'Costume Design'),(14914,957970,7,'Set Decoration'),(14914,959549,7,'Art Direction'),(14914,1351520,4,'Writer'),(14914,1351521,4,'Writer'),(14914,1426003,2,'Script Supervisor'),(14914,1480972,3,'Producer'),(21755,1253,7,'Production Design'),(21755,6392,8,'Costume Design'),(21755,5914,3,'Casting'),(21755,4844,3,'Producer'),(21755,18143,3,'Producer'),(21755,52159,3,'Producer'),(21755,35977,5,'Editor'),(21755,40839,6,'Music Supervisor'),(21755,67367,2,'Director'),(21755,67367,4,'Writer'),(21755,60047,3,'Producer'),(21755,69077,6,'Original Music Composer'),(21755,59667,1,'Director of Photography'),(21755,58472,3,'Executive Producer'),(21755,59668,3,'Casting'),(21755,62782,3,'Executive Producer'),(21755,570136,2,'Script Supervisor'),(21755,960087,7,'Set Decoration'),(21755,1340728,9,'Stunt Coordinator'),(21755,1529430,6,'Music Editor'),(14652,25950,2,'Director'),(14652,25950,4,'Writer'),(14652,41030,4,'Writer'),(16608,4584,3,'Executive Producer'),(16608,10725,5,'Editor'),(16608,21655,1,'Director of Photography'),(16608,31136,3,'Producer'),(16608,31857,3,'Executive Producer'),(16608,37281,3,'Casting'),(16608,39516,4,'Screenplay'),(16608,39516,6,'Original Music Composer'),(16608,39517,6,'Original Music Composer'),(16608,47205,3,'Casting'),(16608,58695,3,'Executive Producer'),(16608,53333,2,'Director'),(16608,80680,7,'Production Design'),(16608,80681,3,'Executive Producer'),(16608,80682,3,'Line Producer'),(16608,80683,3,'Producer'),(16608,80684,3,'Executive Producer'),(16608,80685,3,'Executive Producer'),(16608,80686,3,'Executive Producer'),(16608,80687,3,'Producer'),(16608,80688,3,'Producer'),(16608,80689,3,'Producer'),(16608,80690,3,'Producer'),(16608,928371,8,'Costume Design'),(16608,1341750,6,'Music Supervisor'),(16608,1357178,9,'Stunt Coordinator'),(16608,1391707,7,'Art Direction'),(16608,1450947,6,'Supervising Sound Editor'),(16608,1465629,7,'Set Decoration'),(16608,1495854,7,'Art Direction'),(16608,1560432,2,'Script Supervisor'),(16608,1682261,6,'Boom Operator'),(16608,1682263,6,'Sound Re-Recording Mixer'),(16608,1682267,1,'Still Photographer'),(32316,20744,6,'Original Music Composer'),(32316,20744,6,'Songs'),(32316,24318,2,'Director'),(32316,32588,4,'Writer'),(13405,1724,2,'Director'),(13405,57913,1,'Director of Photography'),(19457,117,6,'Music'),(19457,1307,3,'Executive Producer'),(19457,59839,3,'Executive Producer'),(19457,5669,3,'Casting'),(19457,6468,3,'Producer'),(19457,6624,3,'Executive Producer'),(19457,9547,7,'Art Direction'),(19457,10688,1,'Director of Photography'),(19457,35176,5,'Editor'),(19457,20561,2,'Director'),(19457,20561,4,'Writer'),(19457,20569,7,'Set Decoration'),(19457,21378,3,'Producer'),(19457,32278,3,'Producer'),(19457,19755,7,'Production Design'),(19457,38082,3,'Producer'),(19457,148124,4,'Screenplay'),(19457,1189247,3,'Co-Producer'),(19457,1471022,8,'Costume Design'),(29078,44847,2,'Director'),(10448,123,3,'Executive Producer'),(10448,1269,3,'Producer'),(10448,2987,6,'Original Music Composer'),(10448,7847,3,'Producer'),(10448,8307,5,'Editor'),(10448,12232,3,'Executive Producer'),(10448,8300,4,'Screenplay'),(10448,8300,2,'Director'),(10448,58192,1,'Director of Photography'),(10448,65347,4,'Screenplay'),(13688,20638,3,'Producer'),(13688,57607,2,'Director'),(13688,57607,4,'Writer'),(13688,57607,3,'Producer'),(13688,65934,3,'Producer'),(13688,577421,3,'Producer'),(13688,1172508,3,'Producer'),(13688,1395083,3,'Producer'),(10353,28781,4,'Screenplay'),(10353,64909,2,'Director'),(10353,64909,4,'Screenplay'),(10353,64910,3,'Producer'),(10353,64911,6,'Music'),(10353,64912,6,'Original Music Composer'),(11458,2948,3,'Producer'),(11458,5287,6,'Original Music Composer'),(11458,9573,1,'Director of Photography'),(11458,10419,5,'Editor'),(11458,69696,2,'Director'),(11458,69697,4,'Screenplay'),(14538,57832,2,'Director'),(13250,517,3,'Producer'),(13250,2487,3,'Executive Producer'),(13250,5358,3,'Producer'),(13250,13928,3,'Executive Producer'),(13250,17791,1,'Director of Photography'),(13250,17799,3,'Executive Producer'),(13250,43559,3,'Executive Producer'),(13250,43560,3,'Executive Producer'),(13250,75870,3,'Producer'),(13250,56713,5,'Editor'),(13250,77964,2,'Director'),(13250,78410,3,'Producer'),(13250,78410,4,'Writer'),(13250,74535,3,'Executive Producer'),(13250,75536,3,'Line Producer'),(13250,172756,6,'Original Music Composer'),(13250,1120592,3,'Producer'),(13250,1120593,5,'Editor'),(13250,1579180,1,'First Assistant Camera'),(14202,819,3,'Producer'),(14202,2242,3,'Casting'),(14202,2949,6,'Original Music Composer'),(14202,3489,3,'Producer'),(14202,4232,3,'Producer'),(14202,6048,3,'Executive Producer'),(14202,7262,1,'Director of Photography'),(14202,27916,4,'Novel'),(14202,59330,4,'Screenplay'),(14202,59330,3,'Executive Producer'),(14202,26208,3,'Executive Producer'),(14202,61630,5,'Editor'),(14202,96166,2,'Director'),(14202,96166,3,'Executive Producer'),(14202,949179,3,'Producer'),(14202,957391,3,'Producer'),(14202,957391,3,'Line Producer'),(14202,978108,3,'Producer'),(14202,1128284,3,'Producer'),(14202,1128285,3,'Producer'),(14202,1128286,3,'Line Producer'),(14202,1128287,7,'Production Design'),(12150,1151,3,'Producer'),(12150,2989,4,'Screenplay'),(12150,7020,6,'Music'),(12150,11847,1,'Director of Photography'),(12150,23213,2,'Director'),(12150,3898,5,'Editor'),(12150,57652,3,'Producer'),(11247,11803,3,'Executive Producer'),(11247,7232,3,'Casting'),(11247,14139,1,'Director of Photography'),(11247,21004,8,'Costume Design'),(11247,18350,3,'Producer'),(11247,20540,3,'Casting'),(11247,21615,7,'Production Design'),(11247,23486,6,'Original Music Composer'),(11247,56716,5,'Editor'),(11247,58183,3,'Executive Producer'),(11247,58183,3,'Unit Production Manager'),(11247,63715,3,'Co-Executive Producer'),(11247,63724,3,'Associate Producer'),(11247,65559,3,'Producer'),(11247,66531,3,'Producer'),(11247,68770,2,'Director'),(11247,68771,4,'Screenplay'),(11247,68771,4,'Writer'),(11247,68772,3,'Executive Producer'),(11247,68773,3,'Producer'),(11247,75653,7,'Art Direction'),(11247,1322017,7,'Set Designer'),(11247,1404339,7,'Set Decoration'),(11247,1429253,2,'Script Supervisor'),(11247,1452689,3,'Location Manager'),(11247,1459790,9,'Digital Effects Supervisor'),(11247,1465491,3,'Production Supervisor'),(11247,1556515,3,'Casting Associate'),(11247,1776547,3,'Casting Assistant'),(11247,1776548,3,'Production Coordinator'),(11247,1776549,7,'Title Designer'),(11377,24,3,'Producer'),(11377,1091,3,'Producer'),(11377,4949,6,'Original Music Composer'),(11377,10953,3,'Producer'),(11377,9349,6,'Sound Designer'),(11377,9349,6,'Supervising Sound Editor'),(11377,14348,7,'Set Decoration'),(11377,14349,7,'Production Design'),(11377,14350,7,'Art Direction'),(11377,14352,8,'Costume Design'),(11377,39726,3,'Executive Producer'),(11377,110697,7,'Assistant Property Master'),(11377,57522,4,'Story'),(11377,57526,3,'Executive Producer'),(11377,57898,2,'Director'),(11377,58209,1,'Director of Photography'),(11377,62702,5,'First Assistant Editor'),(11377,68768,5,'Editor'),(11377,69157,4,'Screenplay'),(11377,107372,9,'Makeup Effects'),(11377,84702,9,'Second Unit Cinematographer'),(11377,84702,9,'Stunt Coordinator'),(11377,91091,6,'First Assistant Sound Editor'),(11377,91093,5,'Dialogue Editor'),(11377,103336,10,'Visual Effects'),(11377,94549,7,'Leadman'),(11377,550828,11,'Best Boy Electric'),(11377,1209228,3,'Casting'),(11377,1280435,10,'Special Effects Supervisor'),(11377,1332599,8,'Costume Supervisor'),(11377,1335884,10,'Visual Effects Supervisor'),(11377,1338152,6,'Sound Effects Editor'),(11377,1341801,2,'Script Supervisor'),(11377,1341808,6,'Sound Re-Recording Mixer'),(11377,1347763,1,'Camera Operator'),(11377,1348789,7,'Assistant Art Director'),(11377,1395278,1,'Underwater Director of Photography'),(11377,1399973,9,'Digital Effects Supervisor'),(11377,1401600,9,'Dialect Coach'),(11377,1405728,8,'Set Costumer'),(11377,1411276,3,'Location Manager'),(11377,1412177,6,'Boom Operator'),(11377,1412242,6,'Dolby Consultant'),(11377,1424898,7,'Construction Foreman'),(11377,1429549,5,'Color Timer'),(11377,1435578,7,'Construction Coordinator'),(11377,1453132,8,'Makeup Artist'),(11377,1470632,3,'Co-Producer'),(11377,1472293,3,'Associate Producer'),(11377,1478854,6,'Foley'),(11377,1499673,3,'Unit Production Manager'),(11377,1505857,9,'Property Master'),(11377,1545101,9,'Digital Effects Producer'),(11377,1546580,3,'Executive In Charge Of Production'),(11377,1548635,9,'Special Effects Coordinator'),(11377,1548670,7,'Standby Painter'),(11377,1553631,9,'Set Production Assistant'),(11377,1554339,1,'First Assistant Camera'),(11377,1556285,9,'Post Production Supervisor'),(11377,1568647,1,'Key Grip'),(11377,1587342,7,'Painter'),(11377,1599623,7,'Set Dresser'),(11377,1602857,7,'Art Department Assistant'),(11377,1602860,1,'Steadicam Operator'),(11377,1602861,1,'Still Photographer'),(11377,1602863,8,'Hairstylist'),(11377,1602864,8,'Key Hair Stylist'),(11377,1602865,9,'Driver'),(11377,1602866,9,'Loader'),(11377,1602867,9,'Propmaker'),(11377,1602868,9,'Set Medic'),(11377,1602869,9,'Stunts'),(11377,1602870,9,'Transportation Captain'),(11377,1602871,9,'Transportation Co-Captain'),(11377,1602872,9,'Transportation Coordinator'),(11377,1602873,9,'Visual Effects Editor'),(11377,1602874,2,'First Assistant Director'),(11377,1602876,11,'Gaffer'),(11377,1602877,11,'Lighting Technician'),(11377,1602878,3,'Casting Associate'),(11377,1602883,3,'Production Accountant'),(11377,1602884,3,'Production Coordinator'),(11377,1602885,6,'Orchestrator'),(11377,1602886,6,'Production Sound Mixer'),(11377,1602887,10,'3D Artist'),(11377,1602888,10,'Digital Compositors'),(11377,1602889,10,'Visual Effects Producer'),(11377,1744852,1,'Grip'),(11377,1762649,8,'Ager/Dyer'),(11377,1841638,1,'Dolly Grip'),(11377,1841639,8,'Key Makeup Artist'),(11377,1841640,8,'Wardrobe Supervisor'),(11377,1841641,2,'Second Assistant Director'),(11377,1841642,5,'Negative Cutter'),(11377,1841643,3,'Assistant Production Coordinator'),(26367,80602,2,'Director'),(26367,80602,4,'Writer'),(12090,4502,5,'Editor'),(12090,6923,7,'Art Direction'),(12090,7200,3,'Executive Producer'),(12090,7494,3,'Casting'),(12090,7495,3,'Casting'),(12090,12945,6,'Supervising Music Editor'),(12090,15005,5,'Editor'),(12090,17825,2,'Director'),(12090,33711,7,'Set Decoration'),(12090,23486,6,'Original Music Composer'),(12090,29015,3,'Producer'),(12090,41084,8,'Costume Design'),(12090,52696,4,'Screenplay'),(12090,56791,1,'Director of Photography'),(12090,58013,3,'Executive Producer'),(12090,66518,2,'First Assistant Director'),(12090,67914,3,'Co-Producer'),(12090,71197,3,'Executive Producer'),(12090,112572,9,'Stunt Coordinator'),(12090,138656,8,'Makeup Artist'),(12090,932238,7,'Production Design'),(12090,1424894,8,'Makeup Artist'),(12090,1441176,8,'Makeup Artist'),(12090,1457694,8,'Hairstylist'),(12090,1457720,8,'Makeup Department Head'),(12090,1533038,2,'Script Supervisor'),(12090,1537179,1,'Still Photographer'),(12090,1555637,6,'Production Sound Mixer'),(12090,1720291,6,'Boom Operator'),(12090,1734492,8,'Makeup Artist'),(16110,113733,2,'Director'),(29427,561,3,'Casting'),(29427,14999,3,'Executive Producer'),(29427,4140,6,'Original Music Composer'),(29427,7236,7,'Production Design'),(29427,10954,3,'Producer'),(29427,12040,8,'Costume Design'),(29427,18330,3,'Producer'),(29427,20516,3,'Producer'),(29427,23461,1,'Director of Photography'),(29427,29929,8,'Makeup Department Head'),(29427,37949,4,'Screenplay'),(29427,52609,2,'Director'),(29427,53641,5,'Editor'),(29427,113019,9,'Stunt Coordinator'),(29427,58515,4,'Screenplay'),(29427,80828,9,'Special Effects Coordinator'),(29427,80830,10,'Visual Effects Supervisor'),(29427,131198,1,'Additional Camera'),(29427,928942,6,'Sound Re-Recording Mixer'),(29427,936841,7,'Art Direction'),(29427,1017238,7,'Set Decoration'),(29427,1170025,6,'Foley'),(29427,1267580,3,'Production Accountant'),(29427,1341781,6,'Sound Re-Recording Mixer'),(29427,1341856,6,'Foley'),(29427,1345596,5,'Dialogue Editor'),(29427,1355966,8,'Costume Supervisor'),(29427,1355973,3,'Location Manager'),(29427,1380479,6,'Supervising Sound Editor'),(29427,1380479,6,'Sound Designer'),(29427,1383143,5,'First Assistant Editor'),(29427,1387247,10,'Visual Effects Supervisor'),(29427,1387251,10,'Visual Effects Producer'),(29427,1389588,7,'Construction Coordinator'),(29427,1394307,6,'Music Editor'),(29427,1399914,6,'Supervising Sound Editor'),(29427,1399914,6,'Sound Designer'),(29427,1402560,1,'Still Photographer'),(29427,1403479,1,'Camera Operator'),(29427,1403479,9,'Second Unit Cinematographer'),(29427,1404808,8,'Makeup Artist'),(29427,1405376,7,'Set Designer'),(29427,1407722,9,'Makeup Effects'),(29427,1409831,1,'Camera Operator'),(29427,1410583,1,'Camera Operator'),(29427,1412971,8,'Hairstylist'),(29427,1414539,8,'Makeup Artist'),(29427,1414558,5,'Digital Intermediate'),(29427,1414984,8,'Hairstylist'),(29427,1414985,8,'Hairstylist'),(29427,1414986,8,'Hairstylist'),(29427,1414988,9,'Makeup Effects'),(29427,1414989,8,'Makeup Artist'),(29427,1414990,9,'Makeup Effects'),(29427,1414992,9,'Makeup Effects'),(29427,1414993,7,'Art Department Coordinator'),(29427,1414994,9,'Property Master'),(29427,1414995,7,'Greensman'),(29427,1414996,7,'Leadman'),(29427,1415007,6,'ADR & Dubbing'),(29427,1415009,6,'Sound Effects Editor'),(29427,1415010,10,'Visual Effects Producer'),(29427,1415011,10,'Visual Effects Producer'),(29427,1415012,10,'Visual Effects Supervisor'),(29427,1415013,10,'Visual Effects Supervisor'),(29427,1415014,10,'Visual Effects Supervisor'),(29427,1415016,10,'Visual Effects Supervisor'),(29427,1415018,8,'Set Costumer'),(29427,1415019,8,'Set Costumer'),(29427,1415020,8,'Set Costumer'),(29427,1415021,8,'Set Costumer'),(29427,1415022,5,'Digital Intermediate'),(29427,1415024,9,'Transportation Coordinator'),(29427,1415025,9,'Transportation Coordinator'),(29427,1415026,2,'Script Supervisor'),(29427,1415027,3,'Location Manager'),(13523,434,3,'Casting'),(13523,436,3,'Casting'),(13523,7184,5,'Editor'),(13523,33673,7,'Set Decoration'),(13523,21266,6,'Original Music Composer'),(13523,24192,6,'Music Supervisor'),(13523,42634,7,'Production Design'),(13523,42635,7,'Art Direction'),(13523,52805,3,'Executive Producer'),(13523,74039,3,'Producer'),(13523,72264,1,'Director of Photography'),(13523,74619,4,'Screenplay'),(13523,74619,2,'Director'),(13523,80814,7,'Art Department Coordinator'),(13523,100993,8,'Set Costumer'),(13523,212576,4,'Screenplay'),(13523,212576,3,'Producer'),(13523,1183915,8,'Costume Design'),(13523,1239497,3,'Producer'),(13523,1319700,4,'Novel'),(13523,1319701,3,'Casting'),(13523,1353528,8,'Makeup Artist'),(13523,1400877,8,'Costume Supervisor'),(13523,1421254,8,'Set Costumer'),(13523,1473516,5,'Editor'),(13523,1483225,9,'CG Supervisor'),(13523,1523402,8,'Key Hair Stylist'),(13523,1527657,6,'Music Supervisor'),(13523,1527912,3,'Casting Associate'),(13523,1529799,8,'Makeup Department Head'),(13523,1529800,8,'Hairstylist'),(13523,1532604,3,'Casting Associate'),(13523,1532709,7,'Construction Coordinator'),(25195,13614,4,'Writer'),(25195,13615,4,'Writer'),(25195,26481,2,'Director'),(25195,953724,3,'Co-Producer'),(17277,4082,6,'Music'),(17277,40199,2,'Director'),(17277,92720,4,'Writer'),(17277,92721,4,'Writer'),(22479,1808,5,'Editor'),(22479,4142,3,'Casting'),(22479,8285,7,'Art Direction'),(22479,9789,2,'Director'),(22479,9789,4,'Writer'),(22479,10414,4,'Writer'),(22479,10420,7,'Production Design'),(22479,10422,7,'Set Decoration'),(22479,16425,1,'Director of Photography'),(22479,944971,8,'Costume Design'),(10065,865,3,'Producer'),(10065,4190,8,'Costume Design'),(10065,6668,5,'Editor'),(10065,9196,3,'Executive Producer'),(10065,10123,5,'Editor'),(10065,10125,7,'Production Design'),(10065,12781,3,'Executive Producer'),(10065,17210,3,'Producer'),(10065,17211,3,'Producer'),(10065,18264,6,'Original Music Composer'),(10065,20823,1,'Director of Photography'),(10065,33625,7,'Set Decoration'),(10065,37949,4,'Author'),(10065,46000,4,'Author'),(10065,49681,3,'Producer'),(10065,54843,3,'Producer'),(10065,54844,3,'Producer'),(10065,62720,4,'Author'),(10065,62718,4,'Author'),(10065,62719,4,'Author'),(10065,62721,2,'Director'),(10065,62722,3,'Producer'),(10065,62723,3,'Producer'),(10065,62724,7,'Art Direction'),(10065,62726,3,'Producer'),(10065,62725,3,'Casting'),(11683,599,3,'Casting'),(11683,1075,6,'Original Music Composer'),(11683,1076,6,'Original Music Composer'),(11683,1059,3,'Co-Producer'),(11683,14999,2,'Director'),(11683,14999,4,'Screenplay'),(11683,51035,8,'Costume Design'),(11683,13621,3,'Executive Producer'),(11683,15222,7,'Production Design'),(11683,24179,3,'Executive Producer'),(11683,46088,3,'Producer'),(11683,54419,3,'Executive Producer'),(11683,64609,4,'Storyboard'),(11683,65377,3,'Producer'),(11683,70206,3,'Producer'),(11683,72117,9,'Second Unit Cinematographer'),(11683,72117,9,'Stunt Coordinator'),(11683,90690,1,'Director of Photography'),(11683,98681,7,'Sculptor'),(11683,135257,2,'Script Supervisor'),(11683,140248,3,'Executive Producer'),(11683,147292,1,'Key Grip'),(11683,937718,1,'Steadicam Operator'),(11683,949745,5,'Editor'),(11683,961445,10,'Special Effects Supervisor'),(11683,977988,2,'First Assistant Director'),(11683,1103574,10,'Visual Effects Producer'),(11683,1105804,9,'Legal Services'),(11683,1206191,8,'Makeup Designer'),(11683,1285844,10,'Animation Supervisor'),(11683,1304276,6,'Foley Editor'),(11683,1340345,6,'Supervising Sound Effects Editor'),(11683,1364801,6,'Music Editor'),(11683,1399490,7,'Art Department Coordinator'),(11683,1401287,6,'Sound Effects Editor'),(11683,1403400,10,'Visual Effects Supervisor'),(11683,1407245,6,'Production Sound Mixer'),(11683,1408708,3,'Location Manager'),(11683,1415513,9,'Dialect Coach'),(11683,1415584,9,'Unit Publicist'),(11683,1423211,7,'Art Direction'),(11683,1445370,6,'Supervising Sound Editor'),(11683,1477154,3,'Associate Producer'),(11683,1477155,3,'Associate Producer'),(11683,1484704,8,'Key Hair Stylist'),(11683,1501535,10,'Creature Design'),(11683,1531896,9,'Armorer'),(11683,1548533,7,'Assistant Art Director'),(11683,1551652,9,'Driver'),(11683,1568817,11,'Gaffer'),(11683,1568825,7,'Construction Coordinator'),(11683,1635541,10,'Visual Effects Coordinator'),(11683,1676182,7,'Set Designer'),(11683,1676629,9,'Digital Effects Supervisor'),(11683,1858574,7,'Set Decoration'),(11683,1859220,7,'Painter'),(11683,1859222,1,'Grip'),(11683,1859223,8,'Assistant Costume Designer'),(11683,1859227,8,'Set Dressing Artist'),(11683,1859228,9,'Carpenter'),(11683,1859229,9,'Craft Service'),(11683,1859230,9,'Post Production Supervisor'),(11683,1859231,7,'Property Master'),(11683,1859232,9,'Set Medic'),(11683,1859235,6,'Sound Recordist'),(11683,1859235,6,'Boom Operator'),(11683,1859238,9,'Stunts'),(11683,1859243,3,'Unit Production Manager'),(11683,1859250,5,'Color Timer'),(11683,1859252,5,'First Assistant Editor'),(11683,1859253,11,'Electrician'),(11683,1859254,11,'Lighting Technician'),(11683,1859255,11,'Rigging Gaffer'),(11683,1859257,3,'Casting Associate'),(11683,1859258,3,'Production Coordinator'),(11683,1859259,6,'First Assistant Sound Editor'),(11683,1859273,10,'Digital Compositors'),(23082,2070,5,'Editor'),(23082,6410,3,'Casting'),(23082,2162,3,'Producer'),(23082,6205,6,'Original Music Composer'),(23082,9648,7,'Production Design'),(23082,9196,3,'Executive Producer'),(23082,40810,6,'Sound Designer'),(23082,40810,6,'Supervising Sound Editor'),(23082,17146,1,'Director of Photography'),(23082,17835,2,'Director'),(23082,17835,3,'Producer'),(23082,17835,4,'Writer'),(23082,23905,3,'Casting'),(23082,112690,3,'Producer'),(23082,73021,3,'Executive Producer'),(23082,94457,3,'Executive Producer'),(23082,957115,8,'Costume Design'),(23082,963843,7,'Art Direction'),(23082,1077878,5,'Assistant Editor'),(23082,1324409,8,'Costume Supervisor'),(23082,1394015,5,'Assistant Editor'),(23082,1401354,3,'Unit Production Manager'),(23082,1406905,6,'Music Editor'),(23082,1411270,1,'Camera Operator'),(23082,1411272,1,'Camera Operator'),(23082,1411272,1,'Steadicam Operator'),(23082,1414532,2,'Script Supervisor'),(23082,1477786,1,'Still Photographer'),(23082,1522736,7,'Set Decoration'),(23082,1551346,2,'Director'),(23082,1551346,4,'Writer'),(23082,1551347,3,'Associate Producer'),(23082,1551348,3,'Producer'),(23082,1551350,3,'Executive Producer'),(23082,1551351,6,'Music Supervisor'),(23082,1551352,6,'Sound mixer'),(10402,11454,5,'Editor'),(10402,60949,4,'Screenplay'),(10402,19292,3,'Producer'),(10402,20822,6,'Music'),(10402,20823,1,'Director of Photography'),(10402,64151,2,'Director'),(10402,1450347,4,'Storyboard'),(21301,66116,4,'Characters'),(21301,66117,4,'Writer'),(21301,70777,2,'Director'),(10147,1223,3,'Producer'),(10147,1224,3,'Executive Producer'),(10147,1307,3,'Producer'),(10147,1482,3,'Producer'),(10147,13622,1,'Director of Photography'),(10147,25143,6,'Original Music Composer'),(10147,17447,2,'Director'),(10147,50769,3,'Producer'),(10147,56411,4,'Screenplay'),(10147,56412,4,'Screenplay'),(10147,63991,5,'Editor'),(10625,599,3,'Casting'),(10625,10548,5,'Editor'),(10625,13177,6,'Sound Re-Recording Mixer'),(10625,15229,9,'Stunt Coordinator'),(10625,23546,7,'Art Direction'),(10625,24190,6,'Original Music Composer'),(10625,35766,8,'Costume Design'),(10625,52450,5,'Additional Editing'),(10625,54050,2,'Director'),(10625,54514,6,'Music Supervisor'),(10625,56158,3,'Producer'),(10625,55613,8,'Assistant Costume Designer'),(10625,56323,4,'Screenplay'),(10625,56324,1,'Director of Photography'),(10625,56326,3,'Executive Producer'),(10625,56327,3,'Co-Producer'),(10625,56327,3,'Unit Production Manager'),(10625,113075,6,'Supervising Sound Editor'),(10625,66064,4,'Book'),(10625,82132,3,'Production Manager'),(10625,548432,6,'Sound Re-Recording Mixer'),(10625,960161,7,'Set Decoration'),(10625,1124107,7,'Production Design'),(10625,1316755,8,'Costume Supervisor'),(10625,1333982,8,'Costume Supervisor'),(10625,1341859,6,'Supervising Sound Editor'),(10625,1367676,6,'Music Editor'),(10625,1387541,5,'Dialogue Editor'),(10625,1391679,5,'Dialogue Editor'),(10625,1399927,1,'Steadicam Operator'),(10625,1399927,1,'Camera Operator'),(10625,1404838,5,'Dialogue Editor'),(10625,1404850,1,'Still Photographer'),(10625,1435609,5,'First Assistant Editor'),(10625,1457487,2,'Script Supervisor'),(10625,1457666,5,'Assistant Editor'),(10625,1526828,7,'Art Department Coordinator'),(10625,1530082,6,'Music Supervisor'),(10625,1549229,8,'Assistant Costume Designer'),(10625,1550051,6,'Sound mixer'),(10625,1550058,6,'Music Editor'),(10625,1550068,3,'Associate Producer'),(10625,1550070,3,'Production Coordinator'),(10934,8330,3,'Producer'),(10934,800,5,'Editor'),(10934,4868,5,'Editor'),(10934,20170,3,'Casting'),(10934,20825,7,'Production Design'),(10934,23486,6,'Original Music Composer'),(10934,34336,3,'Executive Producer'),(10934,36805,2,'Director'),(10934,36805,4,'Screenplay'),(10934,36805,3,'Producer'),(10934,52055,1,'Director of Photography'),(10934,67557,4,'Novel'),(10934,67559,3,'Executive Producer'),(10934,67560,5,'Editor'),(10934,68320,3,'Executive Producer'),(10934,25549,3,'Casting'),(10934,119178,3,'Casting'),(10934,1127846,3,'Producer'),(10934,1127847,3,'Producer'),(10934,1127848,3,'Producer'),(10013,1776,2,'Director'),(10013,123,3,'Executive Producer'),(10013,594,1,'Director of Photography'),(10013,2289,6,'Original Music Composer'),(10013,2988,5,'Editor'),(10013,62015,4,'Screenplay'),(10013,62016,4,'Screenplay'),(10013,62017,3,'Producer'),(10028,1098,5,'Editor'),(10028,1594,3,'Casting'),(10028,5910,7,'Production Design'),(10028,26714,1,'Director of Photography'),(10028,27039,3,'Casting'),(10028,20744,6,'Original Music Composer'),(10028,23485,3,'Producer'),(10028,36605,8,'Costume Design'),(10028,57087,5,'Editor'),(10028,60280,3,'Executive Producer'),(10028,62119,3,'Producer'),(10028,62116,2,'Director'),(10028,62117,3,'Producer'),(10028,62120,7,'Art Direction'),(10028,62121,7,'Set Decoration'),(10028,176518,4,'Screenplay'),(10028,930106,4,'Screenplay'),(10535,7633,3,'Executive Producer'),(10535,10494,6,'Original Music Composer'),(10535,26714,1,'Director of Photography'),(10535,20357,3,'Producer'),(10535,21140,5,'Editor'),(10535,35694,4,'Screenplay'),(10535,35734,4,'Screenplay'),(10535,57708,3,'Executive Producer'),(10535,65548,2,'Director'),(10535,65548,4,'Screenplay'),(10535,65548,3,'Producer'),(10535,65549,4,'Screenplay'),(10535,65550,3,'Producer'),(10364,1765,7,'Art Direction'),(10364,2993,3,'Producer'),(10364,5342,2,'Director'),(10364,12017,7,'Production Design'),(10364,7688,7,'Set Decoration'),(10364,7795,4,'Screenplay'),(10364,8406,3,'Producer'),(10364,10639,1,'Director of Photography'),(10364,12015,5,'Editor'),(10364,13722,3,'Casting'),(10364,13867,6,'Sound'),(10364,13942,8,'Makeup Artist'),(10364,64931,4,'Original Story'),(10364,72559,2,'Assistant Director'),(10364,138639,8,'Hairstylist'),(10364,1461646,3,'Unit Production Manager'),(10364,1586040,3,'Associate Producer'),(10364,1586041,8,'Costume Design'),(10364,1586041,8,'Hairstylist'),(10364,1586042,3,'Production Manager'),(10364,1586043,6,'Sound'),(16991,54710,2,'Director'),(16991,54710,4,'Writer'),(16991,72264,1,'Director of Photography'),(16991,225628,5,'Editor'),(25643,3965,3,'Casting'),(25643,6389,1,'Director of Photography'),(25643,19155,6,'Original Music Composer'),(25643,9197,3,'Executive Producer'),(25643,25140,7,'Production Design'),(25643,19282,3,'Producer'),(25643,44138,3,'Executive Producer'),(25643,52450,5,'Editor'),(25643,54419,3,'Executive Producer'),(25643,54777,3,'Casting'),(25643,62541,2,'Director'),(25643,62541,4,'Co-Writer'),(25643,62539,4,'Co-Writer'),(25643,62539,3,'Producer'),(25643,1034748,3,'Casting'),(25643,1050643,3,'Producer'),(25643,1579180,1,'First Assistant Camera'),(11904,488,3,'Executive Producer'),(11904,489,3,'Executive Producer'),(11904,664,3,'Executive Producer'),(11904,8246,2,'Director'),(11904,5162,3,'Producer'),(11904,5166,5,'Editor'),(11904,5582,1,'Director of Photography'),(11904,10965,4,'Screenplay'),(11904,20897,6,'Original Music Composer'),(11904,25167,4,'Characters'),(11904,31903,3,'Producer'),(28665,68602,3,'Producer'),(28665,3953,3,'Producer'),(28665,3954,3,'Producer'),(28665,3965,3,'Casting'),(28665,4140,6,'Music'),(28665,5388,5,'Editor'),(28665,31126,1,'Director of Photography'),(28665,32383,4,'Writer'),(28665,46088,3,'Producer'),(28665,54776,7,'Production Design'),(28665,54781,4,'Screenplay'),(28665,101518,2,'Director'),(28665,965666,8,'Costume Design'),(28665,1034748,3,'Casting'),(28665,1414532,2,'Script Supervisor'),(28665,1493088,3,'Producer'),(10569,1046,3,'Casting'),(10569,1243,2,'Director'),(10569,1243,4,'Author'),(10569,1252,5,'Editor'),(10569,1265,3,'Producer'),(10569,10576,7,'Art Direction'),(10569,6990,3,'Producer'),(10569,6993,3,'Producer'),(10569,6994,3,'Producer'),(10569,15426,3,'Casting'),(10569,23966,7,'Production Design'),(10569,27562,3,'Producer'),(10569,28001,1,'Director of Photography'),(10569,28041,8,'Costume Design'),(10569,67094,3,'Executive Producer'),(10569,67095,7,'Set Decoration'),(10569,1393558,7,'Leadman'),(10560,8219,5,'Editor'),(10560,10685,3,'Producer'),(10560,55476,2,'Director'),(10560,65872,4,'Screenplay'),(20483,7865,4,'Screenplay'),(20483,8161,4,'Screenplay'),(20483,9204,6,'Music'),(20483,11506,1,'Director of Photography'),(20483,25058,5,'Editor'),(20483,29525,3,'Producer'),(20483,52088,7,'Production Design'),(20483,57560,3,'Unit Production Manager'),(20483,61848,3,'Executive Producer'),(20483,74580,3,'Producer'),(20483,86203,2,'Director'),(20483,86194,2,'Director'),(20483,86195,2,'Director'),(20483,86196,9,'Stunt Coordinator'),(20483,86197,8,'Co-Costume Designer'),(20483,86198,9,'Executive Music Producer'),(20483,86199,9,'Executive Music Producer'),(20483,86200,3,'Producer'),(20483,86201,3,'Executive Producer'),(20483,86202,3,'Executive Producer'),(20483,1424894,8,'Hair Department Head'),(11457,4140,6,'Original Music Composer'),(11457,11472,2,'Director'),(11457,12235,1,'Director of Photography'),(11457,18330,3,'Producer'),(11457,28780,4,'Screenplay'),(11457,53645,5,'Editor'),(11457,1711837,9,'Transportation Co-Captain'),(19840,6875,5,'Editor'),(19840,9041,7,'Production Design'),(19840,10965,2,'Director'),(19840,10965,3,'Producer'),(19840,11222,3,'Producer'),(19840,17828,3,'Producer'),(19840,23486,6,'Original Music Composer'),(19840,52314,4,'Novel'),(19840,52314,4,'Screenplay'),(19840,964979,3,'Executive Producer'),(19840,1214445,1,'Director of Photography'),(19840,1382732,3,'Executive Producer'),(19840,1771248,7,'Art Department Assistant'),(22327,11405,3,'Producer'),(22327,17147,5,'Editor'),(22327,53897,1,'Director of Photography'),(22327,41674,6,'Music'),(22327,55611,4,'Screenplay'),(22327,61069,2,'Director'),(11644,1150,4,'Screenplay'),(11644,1150,2,'Director'),(11644,11789,3,'Executive Producer'),(11644,12235,1,'Director of Photography'),(11644,14138,6,'Original Music Composer'),(11644,10766,5,'Editor'),(11644,67877,3,'Producer'),(11644,73516,4,'Screenplay'),(22102,2657,7,'Production Design'),(22102,5580,3,'Co-Producer'),(22102,5580,3,'Unit Production Manager'),(22102,6455,8,'Costume Design'),(22102,6490,1,'Director of Photography'),(22102,11375,7,'Set Decoration'),(22102,14712,6,'Original Music Composer'),(22102,14713,8,'Makeup Artist'),(22102,48806,3,'Executive Producer'),(22102,56912,4,'Writer'),(22102,60012,1,'Camera Operator'),(22102,61143,5,'Editor'),(22102,67897,2,'Director'),(22102,559902,8,'Makeup Artist'),(22102,957264,8,'Hairstylist'),(22102,1218879,4,'Writer'),(22102,1358074,8,'Hairstylist'),(22102,1431841,6,'Music Supervisor'),(22102,1534030,8,'Costume Supervisor'),(22102,1536463,3,'Co-Producer'),(22102,1536464,3,'Producer'),(22102,1536464,4,'Story'),(22102,1536466,1,'Still Photographer'),(22102,1536469,2,'Script Supervisor'),(22102,1536470,3,'Production Coordinator'),(22102,1536503,9,'Special Effects Coordinator'),(18701,225898,2,'Director'),(10068,1047,5,'Editor'),(10068,6890,3,'Producer'),(10068,7066,6,'Music'),(10068,7270,2,'Director'),(10068,10717,1,'Director of Photography'),(10068,15149,4,'Screenplay'),(10068,21725,3,'Executive Producer'),(10068,27153,3,'Executive Producer'),(10068,35180,3,'Producer'),(10068,42113,4,'Screenplay'),(10068,42113,3,'Producer'),(10068,42114,4,'Screenplay'),(10068,62796,3,'Producer'),(10068,62825,5,'Editor'),(10068,62826,5,'Editor'),(10068,62839,5,'Editor'),(12246,4475,5,'Editor'),(12246,4671,5,'Editor'),(12246,10054,6,'Sound mixer'),(12246,17749,1,'Director of Photography'),(12246,23438,1,'Director of Photography'),(12246,65840,6,'Original Music Composer'),(12246,67330,6,'Sound Effects Editor'),(12246,73778,3,'Producer'),(12246,130938,2,'Director'),(12246,130938,3,'Producer'),(12246,130938,4,'Screenplay'),(12246,230000,9,'Stunt Coordinator'),(12246,567595,3,'Casting'),(12246,1136769,6,'Foley'),(12246,1312109,3,'Casting'),(12246,1312110,3,'Casting'),(12246,1312111,8,'Costume Design'),(12246,1377247,7,'Production Design'),(12246,1377248,7,'Art Direction'),(12246,1377249,7,'Art Direction'),(12246,1377250,7,'Art Direction'),(12246,1377251,7,'Set Decoration'),(12246,1377253,9,'Property Master'),(12246,1377254,7,'Assistant Art Director'),(12246,1377255,7,'Set Designer'),(12246,1377257,7,'Assistant Art Director'),(12246,1377258,6,'Sound Effects Editor'),(12246,1377259,6,'Supervising Sound Editor'),(12246,1377260,9,'Sound Recordist'),(12246,1377262,6,'Sound Effects Editor'),(12246,1377263,9,'Special Effects Coordinator'),(12246,1377264,10,'Visual Effects Producer'),(12246,1377265,10,'Visual Effects Supervisor'),(12246,1377266,10,'Visual Effects Supervisor'),(12246,1377267,10,'Visual Effects Supervisor'),(12246,1377268,10,'Visual Effects Supervisor'),(12246,1377270,9,'Stunt Coordinator'),(12246,1377271,9,'Stunt Coordinator'),(12246,1377273,1,'Camera Operator'),(12246,1377274,1,'Still Photographer'),(12246,1377275,1,'Still Photographer'),(12246,1377276,1,'Steadicam Operator'),(12246,1377278,8,'Costume Supervisor'),(12246,1377279,3,'Location Manager'),(12246,1377281,2,'Script Supervisor'),(12246,1377282,3,'Location Manager'),(12246,1636750,3,'Line Producer'),(13809,956,2,'Director'),(13809,956,3,'Producer'),(13809,956,4,'Writer'),(13809,1091,3,'Producer'),(13809,5438,7,'Production Design'),(13809,9820,7,'Supervising Art Director'),(13809,37162,3,'Producer'),(13809,39726,3,'Executive Producer'),(13809,56917,5,'Editor'),(13809,63127,3,'Producer'),(13809,76971,1,'Director of Photography'),(13809,76972,8,'Costume Supervisor'),(13809,76972,8,'Costume Design'),(13809,142952,6,'Original Music Composer'),(13809,1018073,3,'Casting'),(13809,1018074,7,'Set Decoration'),(13809,1018077,3,'Executive Producer'),(27380,597,3,'Casting'),(27380,598,3,'Casting'),(27380,16189,1,'Director of Photography'),(27380,12018,7,'Production Design'),(27380,67767,2,'Director'),(27380,68841,5,'Editor'),(27380,118280,4,'Story'),(27380,118281,4,'Screenplay'),(27380,230125,6,'Original Music Composer'),(27380,1364859,8,'Makeup Artist'),(27380,1418015,3,'Production Supervisor'),(27380,1638069,5,'Editor'),(27380,1638070,7,'Art Direction'),(27380,1638071,7,'Set Decoration'),(27380,1638072,8,'Makeup Artist'),(27380,1638073,8,'Hairstylist'),(10549,6210,4,'Theatre Play'),(10549,9152,6,'Original Music Composer'),(10549,11181,4,'Screenplay'),(10549,11181,2,'Director'),(10549,65614,3,'Producer'),(10549,13009,8,'Costume Design'),(10549,21516,1,'Director of Photography'),(10549,29419,3,'Casting'),(10549,29857,7,'Production Design'),(10549,29858,7,'Art Direction'),(10549,41376,5,'Editor'),(10549,1464117,3,'Casting'),(10549,1609735,3,'Production Manager'),(33870,5696,2,'Director'),(10739,1046,3,'Casting'),(10739,1243,2,'Director'),(10739,1243,4,'Screenplay'),(10739,1252,5,'Editor'),(10739,1265,3,'Producer'),(10739,1268,3,'Executive Producer'),(10739,2240,1,'Director of Photography'),(10739,4438,9,'Stunt Coordinator'),(10739,10576,7,'Art Direction'),(10739,6994,3,'Executive Producer'),(10739,6996,3,'Casting Associate'),(10739,9551,8,'Costume Design'),(10739,15426,3,'Casting'),(10739,23966,7,'Production Design'),(10739,66733,3,'Executive Producer'),(10739,957661,7,'Set Decoration'),(10739,1194262,1,'Still Photographer'),(10739,1393571,1,'Steadicam Operator'),(10739,1424696,1,'Steadicam Operator'),(10739,1458530,6,'Boom Operator'),(10739,1459591,2,'Script Supervisor'),(10739,1535541,6,'Production Sound Mixer'),(10739,1617463,5,'First Assistant Editor'),(10017,6493,3,'Casting'),(10017,16515,5,'Editor'),(10017,51345,1,'Director of Photography'),(10017,28156,6,'Original Music Composer'),(10017,47756,3,'Executive Producer'),(10017,50724,3,'Associate Producer'),(10017,52952,3,'Producer'),(10017,52953,6,'Original Music Composer'),(10017,56173,2,'Director'),(10017,56173,4,'Writer'),(10017,62040,5,'Editor'),(10017,1146538,7,'Art Direction'),(10017,1654659,7,'Set Decoration'),(11468,153,6,'Original Music Composer'),(11468,3965,3,'Casting'),(11468,4027,3,'Producer'),(11468,6802,8,'Costume Design'),(11468,15017,8,'Makeup Department Head'),(11468,23628,3,'Producer'),(11468,40256,2,'Director'),(11468,42633,5,'Editor'),(11468,60283,7,'Production Design'),(11468,66521,7,'Art Direction'),(11468,69617,4,'Screenplay'),(11468,69618,3,'Producer'),(11468,79664,3,'Executive Producer'),(11468,79664,3,'Production Manager'),(11468,1002623,2,'First Assistant Director'),(11468,1043831,1,'Director of Photography'),(11468,1389126,7,'Set Decoration'),(11468,1551329,3,'Producer'),(11468,1677516,3,'Production Supervisor'),(11468,1743180,9,'Post-Production Manager'),(17436,16379,4,'Screenplay'),(17436,16379,3,'Producer'),(17436,16379,4,'Author'),(17436,57030,2,'Director'),(17436,81856,4,'Screenplay'),(31166,107730,2,'Director'),(31166,107730,4,'Writer'),(31166,1089479,3,'Producer'),(15670,80602,2,'Director'),(15670,80602,4,'Writer'),(15670,80602,3,'Producer'),(10982,61386,3,'Producer'),(10982,61373,4,'Screenplay'),(10982,61373,2,'Director'),(10982,61371,4,'Screenplay'),(10982,61371,2,'Director'),(10982,61372,4,'Screenplay'),(10982,61372,2,'Director'),(10982,61372,5,'Editor'),(10982,61382,3,'Producer'),(10982,61381,3,'Producer'),(10982,61379,3,'Producer'),(10982,61385,6,'Original Music Composer'),(10982,61378,6,'Original Music Composer'),(31932,2876,4,'Screenplay'),(31932,2876,2,'Director'),(31932,6586,4,'Screenplay'),(11113,2663,3,'Producer'),(11113,2773,5,'Editor'),(11113,5728,3,'Producer'),(11113,10537,1,'Director of Photography'),(11113,14674,2,'Director'),(11113,27968,4,'Screenplay'),(11113,27968,4,'Musical'),(11113,33085,4,'Theatre Play'),(11113,68128,6,'Original Music Composer'),(21765,3965,3,'Casting'),(21765,5666,6,'Music'),(21765,18276,5,'Editor'),(21765,35511,1,'Director of Photography'),(21765,89113,2,'Director'),(21765,89113,4,'Writer'),(21765,79666,3,'Producer'),(21765,94292,4,'Writer'),(21765,138616,3,'Producer'),(21765,1034748,3,'Casting'),(21765,1226098,7,'Production Design'),(21765,1488570,2,'Script Supervisor'),(13778,561,3,'Casting'),(13778,13168,5,'Dialogue Editor'),(13778,17164,5,'Editor'),(13778,33711,7,'Set Decoration'),(13778,19292,3,'Producer'),(13778,20821,3,'Producer'),(13778,11374,7,'Art Direction'),(13778,22029,7,'Art Direction'),(13778,23486,6,'Original Music Composer'),(13778,11373,7,'Production Design'),(13778,11371,1,'Director of Photography'),(13778,51693,8,'Costume Design'),(13778,54967,2,'Director'),(13778,71130,6,'Music Supervisor'),(13778,60150,6,'Original Music Composer'),(13778,60950,4,'Screenplay'),(13778,65913,3,'Producer'),(13778,66563,4,'Screenplay'),(13778,66563,3,'Executive Producer'),(13778,74567,3,'Unit Production Manager'),(13778,74978,6,'Sound Re-Recording Mixer'),(13778,75362,3,'Producer'),(13778,75373,8,'Makeup Artist'),(13778,75374,8,'Makeup Artist'),(13778,75375,8,'Makeup Artist'),(13778,75376,8,'Hairstylist'),(13778,75377,8,'Makeup Department Head'),(13778,75378,8,'Hairstylist'),(13778,75380,6,'Boom Operator'),(13778,83091,6,'Sound Re-Recording Mixer'),(13778,1400558,6,'Supervising Sound Editor'),(13778,1401806,1,'Still Photographer'),(13778,1415617,6,'Sound Effects Editor'),(13778,1546086,6,'Sound Mixer'),(13960,2888,3,'Producer'),(13960,84124,4,'Writer'),(13960,75687,2,'Director'),(26602,53178,2,'Director'),(26602,81374,4,'Writer'),(10223,8222,8,'Costume Design'),(10223,284,3,'Producer'),(10223,531,6,'Original Music Composer'),(10223,800,5,'Editor'),(10223,5626,3,'Co-Producer'),(10223,6048,3,'Executive Producer'),(10223,6493,3,'Casting'),(10223,6494,7,'Production Design'),(10223,7535,7,'Set Decoration'),(10223,7623,2,'Director'),(10223,7780,3,'Producer'),(10223,15315,6,'Music Editor'),(10223,10837,7,'Art Direction'),(10223,21039,1,'Director of Photography'),(10223,21055,5,'Editor'),(10223,64709,4,'Screenplay'),(10223,548437,5,'Dialogue Editor'),(10223,891426,5,'First Assistant Editor'),(10223,1172414,1,'Still Photographer'),(10223,1342658,5,'Dialogue Editor'),(10223,1405232,5,'Dialogue Editor'),(10223,1417005,3,'Production Coordinator'),(10223,1417972,6,'Supervising Sound Editor'),(10223,1424137,2,'Script Supervisor'),(10223,1428127,8,'Makeup Artist'),(10223,1455293,1,'Camera Operator'),(10223,1455294,8,'Costume Supervisor'),(10223,1462854,11,'Gaffer'),(10223,1533530,11,'Gaffer'),(10223,1535822,1,'Camera Operator'),(10223,1550832,6,'Sound Mixer'),(16028,9184,3,'Producer'),(16028,9185,3,'Producer'),(16028,9196,3,'Executive Producer'),(16028,14383,9,'Additional Music'),(16028,14383,6,'Orchestrator'),(16028,12384,7,'Set Decoration'),(16028,14540,7,'Production Design'),(16028,23415,8,'Costume Design'),(16028,32200,7,'Assistant Art Director'),(16028,32200,1,'Additional Photography'),(16028,34884,3,'Unit Production Manager'),(16028,34884,3,'Co-Producer'),(16028,36165,1,'Director of Photography'),(16028,39454,3,'Executive Producer'),(16028,43609,6,'Original Music Composer'),(16028,57176,6,'Music Editor'),(16028,113197,9,'Stunts'),(16028,57895,2,'Director'),(16028,63521,5,'Editor'),(16028,73402,4,'Writer'),(16028,76014,3,'Casting'),(16028,76015,3,'Casting'),(16028,197930,9,'Stunt Coordinator'),(16028,223601,2,'Assistant Director'),(16028,229830,6,'First Assistant Sound Editor'),(16028,229831,6,'Foley'),(16028,959549,7,'Art Direction'),(16028,968264,1,'Still Photographer'),(16028,1078710,9,'Software Engineer'),(16028,1325909,8,'Costume Supervisor'),(16028,1326714,3,'Casting'),(16028,1333990,7,'Construction Coordinator'),(16028,1372884,1,'Steadicam Operator'),(16028,1372884,9,'Second Unit Cinematographer'),(16028,1389135,8,'Assistant Costume Designer'),(16028,1391702,9,'Transportation Coordinator'),(16028,1391706,9,'Chef'),(16028,1397313,3,'Production Manager'),(16028,1399046,7,'Construction Foreman'),(16028,1399070,3,'Location Manager'),(16028,1399122,6,'Dolby Consultant'),(16028,1402205,6,'Sound Effects Editor'),(16028,1406765,1,'First Assistant Camera'),(16028,1407832,5,'Dialogue Editor'),(16028,1413444,7,'Lead Painter'),(16028,1444287,8,'Makeup Department Head'),(16028,1464947,8,'Set Dressing Artist'),(16028,1473321,3,'Co-Producer'),(16028,1473322,3,'Associate Producer'),(16028,1530725,10,'Creature Design'),(16028,1546564,7,'Sculptor'),(16028,1559593,6,'Music Supervisor'),(16028,1560108,9,'Unit Publicist'),(16028,1561882,6,'Sound Mixer'),(16028,1562661,6,'Boom Operator'),(16028,1651098,10,'Visual Effects Supervisor'),(16028,1673524,1,'Grip'),(16028,1688600,9,'Driver'),(16028,1692692,7,'Art Department Coordinator'),(16028,1692694,7,'Leadman'),(16028,1692695,7,'Set Decoration Buyer'),(16028,1692696,7,'Standby Painter'),(16028,1692697,1,'Underwater Camera'),(16028,1692698,8,'Hairstylist'),(16028,1692699,8,'Makeup Artist'),(16028,1692700,9,'Carpenter'),(16028,1692701,9,'Craft Service'),(16028,1692702,9,'Legal Services'),(16028,1692703,9,'Picture Car Coordinator'),(16028,1692704,9,'Post Production Supervisor'),(16028,1692705,9,'Property Master'),(16028,1692706,9,'Special Effects Coordinator'),(16028,1692707,9,'Transportation Captain'),(16028,1692708,9,'Transportation Co-Captain'),(16028,1692709,5,'Color Timer'),(16028,1692710,5,'First Assistant Editor'),(16028,1692714,11,'Best Boy Electric'),(16028,1692715,11,'Gaffer'),(16028,1692716,11,'Rigging Gaffer'),(16028,1692717,11,'Rigging Grip'),(16028,1692718,3,'Production Accountant'),(16028,1692719,3,'Production Coordinator'),(16028,1692720,6,'Sound Designer'),(16028,1692720,6,'Supervising Sound Editor'),(16028,1692721,4,'Storyboard'),(16028,1692722,3,'Finance'),(15639,62056,4,'Writer'),(15639,62058,4,'Writer'),(15639,130822,2,'Director'),(16112,4500,6,'Music'),(16112,77156,3,'Co-Producer'),(16112,51449,3,'Co-Producer'),(16112,53638,3,'Executive Producer'),(16112,64183,3,'Executive Producer'),(16112,64185,4,'Screenplay'),(16112,65298,3,'Executive Producer'),(16112,150641,2,'Director'),(16112,150642,4,'Story'),(16112,150643,4,'Screenplay'),(16112,1214554,3,'Producer'),(16112,1260834,3,'Producer'),(26390,5914,3,'Casting'),(26390,3287,7,'Production Design'),(26390,3658,3,'Executive Producer'),(26390,15525,8,'Makeup Department Head'),(26390,15366,3,'Executive Producer'),(26390,16830,3,'Executive Producer'),(26390,17209,3,'Executive Producer'),(26390,18095,1,'Still Photographer'),(26390,20907,2,'Director'),(26390,20907,3,'Executive Producer'),(26390,22815,3,'Producer'),(26390,45829,3,'Executive Producer'),(26390,45830,3,'Executive Producer'),(26390,53685,5,'Editor'),(26390,55177,6,'Original Music Composer'),(26390,67759,3,'Producer'),(26390,92382,6,'ADR & Dubbing'),(26390,92388,6,'Foley'),(26390,95324,4,'Writer'),(26390,95324,4,'Screenplay'),(26390,142155,5,'Dialogue Editor'),(26390,155899,3,'Producer'),(26390,206398,9,'Stunt Coordinator'),(26390,957282,3,'Casting'),(26390,957570,8,'Costume Design'),(26390,961664,1,'Director of Photography'),(26390,961664,1,'Camera Operator'),(26390,964768,3,'Executive Producer'),(26390,974498,3,'Producer'),(26390,1023984,6,'Sound Effects Editor'),(26390,1024910,3,'Casting Associate'),(26390,1046729,3,'Casting Associate'),(26390,1050155,3,'Producer'),(26390,1117434,3,'Producer'),(26390,1117435,3,'Executive Producer'),(26390,1117436,3,'Producer'),(26390,1235847,7,'Art Department Coordinator'),(26390,1333892,7,'Set Decoration'),(26390,1337468,6,'Music Editor'),(26390,1338098,7,'Art Direction'),(26390,1341403,6,'Sound Effects Editor'),(26390,1364100,10,'Visual Effects Supervisor'),(26390,1389601,2,'Script Supervisor'),(26390,1395362,10,'Visual Effects Producer'),(26390,1395365,10,'Visual Effects Producer'),(26390,1395672,9,'Scenic Artist'),(26390,1395677,7,'Construction Coordinator'),(26390,1400072,6,'Sound Re-Recording Mixer'),(26390,1402037,6,'Music Editor'),(26390,1405330,8,'Set Costumer'),(26390,1406571,8,'Hairstylist'),(26390,1406578,8,'Makeup Artist'),(26390,1407029,11,'Gaffer'),(26390,1407191,8,'Hairstylist'),(26390,1407192,3,'Production Supervisor'),(26390,1407193,7,'Construction Foreman'),(26390,1407194,7,'Leadman'),(26390,1407195,9,'Scenic Artist'),(26390,1407196,9,'Scenic Artist'),(26390,1407197,6,'Sound Designer'),(26390,1407197,6,'Supervising Sound Editor'),(26390,1407198,9,'Sound Recordist'),(26390,1407201,1,'Camera Operator'),(26390,1407201,1,'Steadicam Operator'),(26390,1407203,8,'Set Costumer'),(26390,1407204,5,'Digital Intermediate'),(26390,1407205,5,'Digital Intermediate'),(26390,1407206,6,'Music Editor'),(26390,1407207,6,'Music Editor'),(26390,1407208,6,'Music Editor'),(26390,1407209,2,'Script Supervisor'),(26390,1407210,3,'Location Manager'),(26390,1411523,9,'Special Effects Coordinator'),(26390,1526842,11,'Rigging Gaffer'),(26390,1526844,11,'Rigging Grip'),(26390,1526845,11,'Rigging Grip'),(26390,1526846,11,'Best Boy Electric'),(27759,2765,2,'Director'),(27759,4082,6,'Original Music Composer'),(27759,10340,3,'Casting'),(27759,12242,1,'Director of Photography'),(27759,14491,5,'Editor'),(27759,67619,2,'Director'),(27759,84938,4,'Screenplay'),(27759,85453,4,'Screenplay'),(27759,115307,3,'Producer'),(27759,989154,7,'Production Design'),(27759,1036829,3,'Producer'),(27759,1121471,3,'Producer'),(27759,1159503,7,'Production Design'),(23049,18281,2,'Director'),(23049,6056,4,'Writer'),(11411,1761,6,'Original Music Composer'),(11411,2100,4,'Screenplay'),(11411,2100,4,'Story'),(11411,2103,4,'Screenplay'),(11411,2103,4,'Story'),(11411,10219,5,'Editor'),(11411,7793,8,'Costume Design'),(11411,8308,7,'Production Design'),(11411,11837,8,'Makeup Department Head'),(11411,20006,4,'Story'),(11411,33008,3,'Producer'),(11411,33009,3,'Producer'),(11411,20007,4,'Characters'),(11411,20008,4,'Characters'),(11411,47846,1,'Director of Photography'),(11411,64508,2,'Director'),(11411,1120159,3,'Executive Producer'),(11411,1458950,3,'Associate Producer'),(16988,2678,3,'Casting'),(16988,5290,3,'Casting'),(16988,190339,2,'Director'),(16988,960783,5,'Editor'),(16988,1015545,3,'Producer'),(16988,1015565,4,'Writer'),(16988,1320302,3,'Producer'),(16988,1320303,3,'Producer'),(16988,1340343,2,'Script Supervisor'),(16988,1475732,1,'Director of Photography'),(16988,1485219,8,'Costume Design'),(24747,460,1,'Director of Photography'),(24747,1729,6,'Original Music Composer'),(24747,7856,7,'Production Design'),(24747,15840,5,'Editor'),(24747,63943,4,'Screenplay'),(24747,63943,2,'Director'),(24747,63943,4,'Story'),(24747,66534,8,'Costume Design'),(24747,92534,3,'Casting'),(24747,136010,4,'Screenplay'),(24747,1122495,4,'Story'),(24747,1319750,7,'Art Direction'),(24747,1459196,8,'Makeup Department Head'),(24747,1560273,1,'Still Photographer'),(24747,1560275,7,'Set Decoration'),(24747,1676648,4,'Screenplay'),(24747,1676650,2,'Script Supervisor'),(10629,770,3,'Producer'),(10629,2444,3,'Executive Producer'),(10629,2446,3,'Executive Producer'),(10629,5553,6,'Original Music Composer'),(10629,5572,2,'Director'),(10629,40749,2,'Script Supervisor'),(10629,12039,7,'Set Decoration'),(10629,15327,7,'Production Design'),(10629,42006,3,'Executive Producer'),(10629,18991,6,'Production Sound Mixer'),(10629,20066,5,'Editor'),(10629,53841,1,'Director of Photography'),(10629,66085,4,'Screenplay'),(10629,66085,4,'Story'),(10629,66086,4,'Screenplay'),(10629,567973,8,'Costume Design'),(10629,958799,3,'Casting'),(10629,968735,3,'Casting'),(10629,1427554,6,'Sound Re-Recording Mixer'),(10629,1458557,1,'Still Photographer'),(10629,1540471,6,'Music Supervisor'),(10629,1592343,6,'Supervising Sound Editor'),(10629,1592344,6,'Sound Re-Recording Mixer'),(10800,122,6,'Original Music Composer'),(10800,66856,2,'Director'),(10800,66857,2,'Director'),(10800,66857,4,'Screenplay'),(10800,66858,4,'Screenplay'),(10800,66865,3,'Producer'),(10800,66866,3,'Producer'),(10800,66869,5,'Editor'),(25763,597,3,'Casting'),(25763,598,3,'Casting'),(25763,1760,6,'Original Music Composer'),(25763,4107,9,'Special Effects'),(25763,7715,5,'Editor'),(25763,10629,7,'Art Direction'),(25763,14094,1,'Director of Photography'),(25763,21600,4,'Screenplay'),(25763,30422,2,'Director'),(25763,33096,3,'Producer'),(25763,40170,7,'Production Design'),(25763,70476,4,'Screenplay'),(25763,76017,3,'Executive Producer'),(25763,76018,3,'Executive Producer'),(25763,95127,3,'Producer'),(25763,164768,8,'Makeup Artist'),(25763,564784,4,'Novel'),(25763,1071812,3,'Associate Producer'),(25763,1384145,7,'Set Decoration'),(25763,1627097,3,'Production Manager'),(25763,1731421,8,'Hairstylist'),(18615,897,3,'Producer'),(18615,1225,6,'Original Music Composer'),(18615,1225,6,'Music'),(18615,5886,7,'Set Decoration'),(18615,9341,1,'Director of Photography'),(18615,9007,8,'Hairstylist'),(18615,21706,3,'Producer'),(18615,40471,8,'Costume Design'),(18615,47776,5,'Editor'),(18615,66594,3,'Producer'),(18615,67795,2,'Director'),(18615,67796,4,'Screenplay'),(18615,91053,8,'Hairstylist'),(18615,229801,9,'Makeup Effects'),(18615,937912,5,'Editor'),(18615,957622,3,'Casting'),(18615,960808,7,'Art Direction'),(18615,1321372,9,'Makeup Effects'),(18615,1335117,7,'Art Department Coordinator'),(18615,1391605,2,'Script Supervisor'),(18615,1395677,7,'Construction Coordinator'),(18615,1416798,8,'Makeup Artist'),(18615,1421237,8,'Makeup Artist'),(18615,1457702,7,'Production Design'),(18615,1458571,8,'Hair Designer'),(18615,1533095,8,'Key Hair Stylist'),(18615,1537846,7,'Art Department Coordinator'),(18615,1537847,7,'Construction Coordinator'),(18615,1537848,3,'Casting Associate'),(18615,1537849,8,'Assistant Costume Designer'),(18615,1537850,9,'Special Effects Coordinator'),(10673,149,1,'Director of Photography'),(10673,1152,2,'Director'),(10673,1152,4,'Writer'),(10673,2621,3,'Co-Producer'),(10673,2987,6,'Original Music Composer'),(10673,2999,7,'Art Direction'),(10673,3192,3,'Casting'),(10673,10220,7,'Production Design'),(10673,4188,7,'Set Decoration'),(10673,10443,8,'Makeup Artist'),(10673,11880,5,'Editor'),(10673,32035,3,'Producer'),(10673,66189,4,'Writer'),(10673,75001,5,'Color Timer'),(10673,90194,8,'Hairstylist'),(10673,1371064,6,'Foley'),(10673,1399998,9,'Stunt Coordinator'),(10760,4700,3,'Producer'),(10760,7413,1,'Director of Photography'),(10760,18457,3,'Casting'),(10760,54592,5,'Editor'),(10760,54597,2,'Director'),(10760,60068,6,'Original Music Composer'),(10760,60084,3,'Executive Producer'),(10760,97547,3,'Executive Producer'),(10760,66529,4,'Author'),(10760,66530,3,'Producer'),(10760,66531,3,'Producer'),(10760,66532,7,'Production Design'),(10760,66534,8,'Costume Design'),(10760,66533,7,'Set Decoration'),(10760,66535,7,'Art Direction'),(10760,1203317,3,'Producer'),(11093,151,1,'Director of Photography'),(11093,1729,6,'Original Music Composer'),(11093,3965,3,'Casting'),(11093,5957,7,'Set Decoration'),(11093,9619,6,'Supervising Sound Editor'),(11093,11625,5,'Editor'),(11093,14378,7,'Art Direction'),(11093,27679,3,'Producer'),(11093,42034,6,'Sound Re-Recording Mixer'),(11093,21122,6,'Music Editor'),(11093,21465,3,'Executive Producer'),(11093,37040,7,'Production Design'),(11093,55227,6,'Production Sound Mixer'),(11093,61089,3,'Production Supervisor'),(11093,67996,4,'Novel'),(11093,67997,4,'Screenplay'),(11093,67999,3,'Executive Producer'),(11093,78118,3,'Producer'),(11093,78118,2,'Director'),(11093,78118,4,'Screenplay'),(11093,93258,9,'Special Effects Coordinator'),(11093,1034748,3,'Casting'),(11093,1321000,8,'Costume Supervisor'),(11093,1321266,8,'Costume Design'),(11093,1324409,8,'Assistant Costume Designer'),(11093,1378225,6,'Sound Editor'),(11093,1378752,7,'Art Department Coordinator'),(11093,1380479,6,'Sound Editor'),(11093,1391387,6,'Supervising Sound Editor'),(11093,1395332,7,'Assistant Art Director'),(11093,1399326,6,'Music Editor'),(11093,1407228,9,'Stunt Coordinator'),(11093,1414532,2,'Script Supervisor'),(11093,1434171,8,'Set Costumer'),(11093,1537463,6,'Sound Re-Recording Mixer'),(11093,1559552,1,'Still Photographer'),(11093,1559558,6,'Music Supervisor'),(11093,1559568,5,'First Assistant Editor'),(24226,721,5,'Editor'),(24226,1255,4,'Screenplay'),(24226,1297,3,'Producer'),(24226,39996,2,'Director'),(24226,39996,4,'Author'),(24226,5322,3,'Producer'),(24226,6851,8,'Costume Design'),(24226,9796,6,'Original Music Composer'),(24226,10765,1,'Director of Photography'),(24226,17220,7,'Art Direction'),(24226,18174,7,'Set Decoration'),(24226,558006,4,'Novel'),(14709,15304,4,'Screenplay'),(14709,53177,2,'Director'),(14709,1746321,3,'Executive Producer'),(13788,865,3,'Producer'),(13788,3893,2,'Director'),(13788,3893,4,'Writer'),(13788,8707,8,'Costume Design'),(13788,14377,3,'Casting'),(13788,20382,5,'Editor'),(13788,10851,6,'Music'),(13788,54843,3,'Producer'),(13788,54844,3,'Producer'),(13788,54846,1,'Director of Photography'),(13788,60935,3,'Casting'),(13788,86591,7,'Production Design'),(13788,1094395,7,'Art Direction'),(13788,1323759,7,'Set Decoration'),(13788,1323760,8,'Makeup Department Head'),(13788,1323761,8,'Costume Supervisor'),(13788,1323762,8,'Costume Supervisor'),(10781,865,3,'Producer'),(10781,1309,3,'Executive Producer'),(10781,5545,3,'Co-Producer'),(10781,5546,5,'Editor'),(10781,6869,3,'Producer'),(10781,10051,3,'Producer'),(10781,18264,6,'Original Music Composer'),(10781,10830,3,'Executive Producer'),(10781,40249,3,'Executive Producer'),(10781,51216,3,'Executive Producer'),(10781,54843,3,'Producer'),(10781,54844,3,'Producer'),(10781,55079,1,'Director of Photography'),(10781,57336,4,'Screenplay'),(10781,57336,4,'Story'),(10781,27797,3,'Producer'),(10781,57515,3,'Executive Producer'),(10781,57703,4,'Story'),(10781,59287,9,'Makeup Effects'),(10781,59475,7,'Art Direction'),(10781,62724,7,'Production Design'),(10781,62725,3,'Casting'),(10781,66739,2,'Director'),(10781,66740,5,'Editor'),(10781,137176,8,'Costume Supervisor'),(10781,959962,8,'Costume Design'),(10781,978673,7,'Set Decoration'),(10781,1206190,9,'Makeup Effects'),(10781,1321665,8,'Makeup Department Head'),(10781,1406235,9,'Makeup Effects'),(10781,1482380,3,'Co-Producer'),(10781,1482385,9,'Makeup Effects'),(13908,20824,2,'Director'),(13908,56159,4,'Writer'),(13908,66564,4,'Writer'),(16161,6482,2,'Director'),(16161,6482,3,'Producer'),(16161,6482,4,'Writer'),(16161,9772,5,'Editor'),(16161,9771,1,'Director of Photography'),(16161,15524,8,'Costume Design'),(16161,22145,7,'Production Design'),(10956,26714,1,'Director of Photography'),(10956,29015,3,'Producer'),(10956,33283,5,'Editor'),(10956,60950,4,'Screenplay'),(10956,66070,6,'Music'),(10956,66960,2,'Director'),(10956,66563,4,'Screenplay'),(13972,76230,2,'Director'),(13491,3925,1,'Director of Photography'),(13491,3868,3,'Producer'),(13491,5996,7,'Production Design'),(13491,11458,3,'Casting'),(13491,11459,3,'Casting'),(13491,15084,5,'Editor'),(13491,19349,5,'Editor'),(13491,25068,9,'Stunt Coordinator'),(13491,32722,5,'Editor'),(13491,61272,3,'Producer'),(13491,65840,6,'Original Music Composer'),(13491,64952,1,'Camera Operator'),(13491,68568,4,'Novel'),(13491,68569,4,'Screenplay'),(13491,76747,9,'Visual Effects Art Director'),(13491,75043,2,'Director'),(13491,93487,8,'Costume Design'),(13491,557759,9,'Stunt Coordinator'),(13491,928001,1,'Camera Operator'),(13491,930578,3,'Production Manager'),(13491,1029065,3,'Production Manager'),(13491,1069772,6,'Foley'),(13491,1119430,1,'Camera Operator'),(13491,1173898,3,'Casting'),(13491,1305251,3,'Casting'),(13491,1329764,3,'Casting'),(13491,1329765,3,'Casting'),(13491,1329766,3,'Casting'),(13491,1329767,3,'Producer'),(13491,1351731,1,'Still Photographer'),(13491,1395761,10,'Visual Effects Producer'),(13491,1398083,7,'Construction Coordinator'),(13491,1400778,3,'Production Manager'),(13491,1400779,3,'Production Manager'),(13491,1400780,7,'Art Department Coordinator'),(13491,1400781,9,'Scenic Artist'),(13491,1400782,9,'Scenic Artist'),(13491,1400783,9,'Scenic Artist'),(13491,1400784,9,'Scenic Artist'),(13491,1400785,9,'Scenic Artist'),(13491,1400786,9,'Scenic Artist'),(13491,1400787,9,'Scenic Artist'),(13491,1400788,9,'Scenic Artist'),(13491,1400789,9,'Property Master'),(13491,1400790,9,'Sound Recordist'),(13491,1400791,9,'Sound Recordist'),(13491,1400792,9,'Sound Recordist'),(13491,1400794,9,'Sound Recordist'),(13491,1400796,6,'Sound Re-Recording Mixer'),(13491,1400797,6,'Sound Designer'),(13491,1400800,10,'Visual Effects Supervisor'),(13491,1400801,10,'Visual Effects Supervisor'),(13491,1400802,11,'Lighting Supervisor'),(13491,1400803,9,'Transportation Coordinator'),(13491,1400804,3,'Location Manager'),(13491,1400805,3,'Location Manager'),(13491,1400806,9,'Chef'),(10571,1307,3,'Executive Producer'),(10571,59839,3,'Executive Producer'),(10571,1593,3,'Casting'),(10571,1594,3,'Casting Associate'),(10571,2987,6,'Original Music Composer'),(10571,7238,8,'Costume Design'),(10571,5894,4,'Screenplay'),(10571,25212,1,'Director of Photography'),(10571,42281,7,'Set Designer'),(10571,34883,3,'Executive Producer'),(10571,38413,7,'Set Decoration'),(10571,56326,3,'Executive Producer'),(10571,56327,3,'Line Producer'),(10571,56327,3,'Unit Production Manager'),(10571,60281,3,'Producer'),(10571,62706,5,'Editor'),(10571,64815,2,'Director'),(10571,65703,3,'Producer'),(10571,65704,4,'Screenplay'),(10571,73021,3,'Co-Producer'),(10571,1197918,7,'Production Design'),(10571,1244595,3,'Producer'),(10571,1339812,7,'Art Direction'),(10571,1538715,3,'Production Coordinator'),(10571,1552531,3,'Casting Assistant'),(10571,1680323,3,'Associate Producer'),(10571,1741165,9,'Post Production Supervisor'),(10571,1753775,3,'Location Manager'),(10571,1773704,3,'Casting'),(10571,1773706,3,'Location Manager'),(10571,1773707,3,'Location Manager'),(10571,1773708,7,'Title Designer'),(10994,153,6,'Original Music Composer'),(10994,2242,3,'Casting'),(10994,4146,3,'Executive Producer'),(10994,5506,1,'Director of Photography'),(10994,18350,3,'Producer'),(10994,20209,7,'Production Design'),(10994,47333,3,'Producer'),(10994,58071,3,'Executive Producer'),(10994,66086,4,'Screenplay'),(10994,67781,2,'Director'),(10994,67782,4,'Novel'),(10994,346518,3,'Executive Producer'),(10994,949152,3,'Executive Producer'),(10994,1090257,5,'Editor'),(10994,1130137,3,'Producer'),(10994,1130138,3,'Producer'),(19994,2327,8,'Costume Design'),(19994,10572,6,'Original Music Composer'),(19994,6044,3,'Casting'),(19994,22119,1,'Director of Photography'),(19994,15222,7,'Production Design'),(19994,52161,6,'Music Supervisor'),(19994,43899,3,'Producer'),(19994,53278,5,'Editor'),(19994,52443,3,'Producer'),(19994,52444,4,'Screenplay'),(19994,52444,3,'Executive Producer'),(19994,52446,3,'Producer'),(19994,52448,3,'Producer'),(19994,54025,2,'Director'),(19994,1001706,6,'Original Music Composer'),(25166,17278,2,'Director'),(25166,37933,4,'Writer'),(30890,1243,4,'Screenplay'),(30890,1243,2,'Director'),(30890,3658,3,'Producer'),(30890,6348,8,'Costume Design'),(30890,10440,5,'Editor'),(30890,15194,1,'Director of Photography'),(30890,23966,7,'Production Design'),(30890,961164,7,'Art Direction'),(30890,1877122,6,'Sound Editor'),(23169,5327,5,'Editor'),(23169,11288,3,'Executive Producer'),(23169,16834,2,'Director'),(23169,20172,8,'Costume Design'),(23169,29014,3,'Producer'),(23169,45841,3,'Casting'),(23169,53478,3,'Executive Producer'),(23169,55177,6,'Original Music Composer'),(23169,224385,4,'Writer'),(23169,224386,3,'Producer'),(23169,224387,3,'Casting'),(23169,224388,7,'Production Design'),(23169,224389,7,'Set Decoration'),(23169,1171528,1,'Director of Photography'),(17403,2952,3,'Casting'),(17403,6389,1,'Director of Photography'),(17403,25143,6,'Music'),(17403,16534,5,'Editor'),(17403,17636,7,'Art Direction'),(17403,23759,7,'Production Design'),(17403,42357,3,'Producer'),(17403,49913,8,'Costume Design'),(17403,51385,3,'Producer'),(17403,51600,2,'Director'),(17403,107420,7,'Set Decoration'),(17403,228248,5,'Editor'),(17403,1214826,4,'Screenplay'),(17403,1415584,9,'Unit Publicist'),(17403,1449183,2,'Script Supervisor'),(17403,1469571,4,'Novel'),(12120,37,6,'Music'),(12120,1762,1,'Director of Photography'),(12120,1888,3,'Executive Producer'),(12120,10685,3,'Executive Producer'),(12120,14710,4,'Writer'),(12120,14711,4,'Writer'),(12120,24318,2,'Director'),(12120,33830,5,'Editor'),(12120,51344,3,'Producer'),(12120,62045,3,'Executive Producer'),(12120,71002,3,'Producer'),(12120,1475421,4,'Writer'),(18475,84107,3,'Producer'),(18475,84108,3,'Producer'),(18475,302339,2,'Director'),(18475,1815002,8,'Hairstylist'),(18074,32767,4,'Writer'),(18074,173607,2,'Director'),(18074,1007395,9,'Stunts'),(18074,1546584,9,'Scenic Artist'),(18840,1357,1,'Director of Photography'),(18840,970,3,'Casting'),(18840,15432,6,'Sound Designer'),(18840,15435,7,'Title Designer'),(18840,54441,2,'Director'),(18840,54448,3,'Producer'),(18840,54449,6,'Original Music Composer'),(18840,57740,5,'Editor'),(18840,80828,10,'Special Effects Supervisor'),(18840,83664,4,'Writer'),(18840,957624,7,'Production Design'),(18840,989007,7,'Art Direction'),(18840,1031621,6,'Sound Effects Editor'),(18840,1336164,8,'Makeup Designer'),(18840,1336164,8,'Hair Designer'),(18840,1340767,6,'ADR Editor'),(18840,1351413,9,'Dialect Coach'),(18840,1354914,8,'Wardrobe Supervisor'),(18840,1399970,6,'Sound Effects Editor'),(18840,1400879,8,'Makeup Department Head'),(18840,1400879,8,'Hair Department Head'),(18840,1407730,6,'Dialogue Editor'),(18840,1410729,9,'Translator'),(18840,1410863,1,'Still Photographer'),(18840,1422799,6,'Music Editor'),(18840,1440497,2,'Script Supervisor'),(18840,1484993,8,'Costume Design'),(18840,1522769,6,'ADR Editor'),(18840,1531576,6,'Dialogue Editor'),(18840,1608998,8,'Wardrobe Supervisor'),(18840,1651765,6,'Foley Editor'),(18840,1850941,9,'Choreographer'),(18840,1890378,7,'Art Direction'),(18840,1890380,7,'Art Direction'),(18840,1890381,7,'Set Decoration'),(18840,1890382,7,'Set Decoration'),(18840,1890383,7,'Set Decoration'),(18840,1890384,2,'First Assistant Director'),(18840,1890385,7,'Art Department Coordinator'),(18840,1890386,7,'Property Master'),(18840,1890387,7,'Property Master'),(18840,1890390,6,'Boom Operator'),(18840,1890391,1,'Dolly Grip'),(18840,1890392,11,'Gaffer'),(18840,1890393,5,'First Assistant Editor'),(18840,1890394,6,'Orchestrator'),(18840,1890395,3,'Production Coordinator'),(12657,5175,5,'Editor'),(12657,150,6,'Original Music Composer'),(12657,12033,1,'Director of Photography'),(12657,28016,4,'Screenplay'),(12657,49911,6,'Original Music Composer'),(12657,73832,2,'Director'),(12657,73832,3,'Producer'),(12657,73833,4,'Screenplay'),(12657,73833,3,'Executive Producer'),(12657,73834,3,'Executive Producer'),(12657,1158477,2,'Script Supervisor'),(12657,1639187,3,'Producer'),(12657,1639187,3,'Unit Production Manager'),(12410,72133,2,'Director'),(34647,4401,3,'Producer'),(34647,4402,3,'Producer'),(34647,6099,3,'Associate Producer'),(34647,8570,3,'Producer'),(34647,14597,2,'Director'),(34647,14597,4,'Writer'),(34647,14597,3,'Associate Producer'),(34647,14597,5,'Editor'),(34647,14598,6,'Music'),(34647,14599,1,'Director of Photography'),(34647,14605,5,'Editor'),(34647,18824,3,'Associate Producer'),(34647,56787,3,'Producer'),(34647,937975,3,'Producer'),(34647,954164,3,'Line Producer'),(34647,993880,7,'Production Design'),(34647,1178908,7,'Production Design'),(34647,1240687,3,'Line Producer'),(34647,1602054,3,'Associate Producer'),(34647,1646503,3,'Line Producer'),(28178,1205,3,'Producer'),(28178,3498,3,'Producer'),(28178,5306,2,'Director'),(28178,7415,3,'Casting'),(28178,7492,1,'Director of Photography'),(28178,22680,6,'Original Music Composer'),(28178,43559,3,'Executive Producer'),(28178,43560,3,'Executive Producer'),(28178,40142,6,'Sound Re-Recording Mixer'),(28178,47776,5,'Editor'),(28178,49681,3,'Executive Producer'),(28178,56350,3,'Co-Executive Producer'),(28178,60190,3,'Associate Producer'),(28178,62238,3,'Executive Producer'),(28178,68227,9,'Thanks'),(28178,92388,6,'Foley'),(28178,151181,4,'Screenplay'),(28178,171297,6,'ADR & Dubbing'),(28178,229813,3,'Unit Production Manager'),(28178,929308,3,'Producer'),(28178,1018083,3,'Executive Producer'),(28178,1018084,3,'Executive Producer'),(28178,1046771,9,'Thanks'),(28178,1066776,6,'Music Supervisor'),(28178,1085004,6,'ADR & Dubbing'),(28178,1183454,2,'Script Supervisor'),(28178,1329529,8,'Makeup Department Head'),(28178,1337463,6,'Supervising Sound Editor'),(28178,1337465,6,'Sound Effects Editor'),(28178,1379963,10,'Visual Effects Supervisor'),(28178,1391591,1,'Camera Operator'),(28178,1392211,6,'Sound Re-Recording Mixer'),(28178,1399022,8,'Costume Design'),(28178,1419093,8,'Set Dressing Artist'),(28178,1425810,8,'Key Hair Stylist'),(28178,1447941,8,'Makeup Artist'),(28178,1459723,9,'Special Effects Coordinator'),(28178,1531576,5,'Dialogue Editor'),(28178,1532068,2,'Assistant Director'),(28178,1532070,9,'Scenic Artist'),(28178,1532071,7,'Construction Coordinator'),(28178,1532072,4,'Storyboard'),(28178,1532073,6,'Boom Operator'),(28178,1532074,6,'Sound mixer'),(28178,1532352,1,'Grip'),(28178,1532354,11,'Gaffer'),(28178,1532355,1,'Grip'),(28178,1532356,1,'Grip'),(28178,1532357,11,'Electrician'),(28178,1532359,1,'Steadicam Operator'),(28178,1532363,6,'Music Editor'),(28178,1532364,9,'Stand In'),(16351,56205,2,'Director'),(16351,56205,4,'Scenario Writer'),(18777,559,1,'Director of Photography'),(18777,897,3,'Producer'),(18777,4657,10,'Special Effects Supervisor'),(18777,12257,7,'Production Design'),(18777,23872,8,'Makeup Department Head'),(18777,35180,3,'Producer'),(18777,47776,5,'Editor'),(18777,51982,3,'Casting'),(18777,51983,3,'Casting'),(18777,52994,3,'Producer'),(18777,58667,4,'Screenplay'),(18777,58667,2,'Director'),(18777,58667,4,'Story'),(18777,59472,6,'Music'),(18777,959634,8,'Costume Design'),(18777,993693,5,'Editor'),(18777,1298625,11,'Lighting Technician'),(18777,1351483,3,'Casting'),(18777,1382242,3,'Casting Associate'),(18777,1407721,8,'Wigmaker'),(18777,1407730,5,'Dialogue Editor'),(18777,1417924,10,'Visual Effects Supervisor'),(18777,1419718,8,'Key Hair Stylist'),(18777,1484487,7,'Art Direction'),(18777,1513003,9,'Second Unit Cinematographer'),(18777,1523149,7,'Art Department Coordinator'),(18777,1525208,8,'Makeup Artist'),(18777,1530100,11,'Gaffer'),(18777,1537519,4,'Story'),(18777,1537520,2,'Script Supervisor'),(18777,1537521,7,'Set Decoration'),(18777,1537522,9,'Property Master'),(18777,1537523,10,'Visual Effects Coordinator'),(18777,1537524,10,'Visual Effects Producer'),(18777,1537525,8,'Assistant Costume Designer'),(12154,1749,2,'Director'),(12154,2723,1,'Director of Photography'),(12154,7695,3,'Executive Producer'),(12154,9196,3,'Producer'),(12154,10468,6,'Music'),(12154,18389,3,'Producer'),(12154,27444,4,'Screenplay'),(12154,27445,4,'Screenplay'),(12154,35208,4,'Original Story'),(12154,45862,5,'Editor'),(22556,138243,4,'Writer'),(22556,145304,2,'Director'),(22556,145305,4,'Screenplay'),(33196,15023,3,'Producer'),(33196,21690,6,'Original Music Composer'),(33196,87537,4,'Screenplay'),(33196,87537,2,'Director'),(33196,83032,3,'Producer'),(33196,239790,5,'Editor'),(33196,936834,9,'Cinematography'),(33196,958684,7,'Art Direction'),(33196,1107433,4,'Writer'),(33196,1136462,3,'Executive Producer'),(33196,1136463,3,'Executive Producer'),(33196,1136464,3,'Line Producer'),(33196,1136465,7,'Production Design'),(10765,7068,5,'Editor'),(10765,10494,6,'Original Music Composer'),(10765,17698,4,'Screenplay'),(10765,17698,3,'Producer'),(10765,18892,3,'Executive Producer'),(10765,19129,1,'Director of Photography'),(10765,29706,4,'Screenplay'),(10765,29706,3,'Producer'),(10765,34611,2,'Director'),(10765,56106,4,'Screenplay'),(10765,56106,3,'Producer'),(16769,38,5,'Editor'),(16769,796,7,'Set Decoration'),(16769,7185,3,'Casting'),(16769,7779,3,'Executive In Charge Of Production'),(16769,25212,1,'Director of Photography'),(16769,10781,2,'Director'),(16769,21645,7,'Production Design'),(16769,24557,3,'Production Manager'),(16769,26984,8,'Costume Design'),(16769,51627,4,'Writer'),(16769,56224,3,'Executive Producer'),(16769,65637,3,'Producer'),(16769,119476,3,'Associate Producer'),(16769,1193549,4,'Book'),(16769,1193551,4,'Book'),(16769,1455397,8,'Makeup Artist'),(16769,1655112,8,'Hairstylist'),(33217,1720,3,'Casting'),(33217,356,1,'Director of Photography'),(33217,10572,6,'Music'),(33217,5362,3,'Casting'),(33217,5363,3,'Casting'),(33217,10548,5,'Editor'),(33217,11823,8,'Costume Design'),(33217,32608,3,'Producer'),(33217,25021,8,'Key Makeup Artist'),(33217,46943,3,'Local Casting'),(33217,75874,7,'Assistant Art Director'),(33217,56188,9,'Thanks'),(33217,60285,7,'Set Decoration'),(33217,109857,2,'Director'),(33217,83655,6,'Music Supervisor'),(33217,111942,4,'Screenplay'),(33217,111943,4,'Screenplay'),(33217,178426,4,'Screenplay'),(33217,774208,7,'Production Design'),(33217,935634,3,'Producer'),(33217,1015921,3,'Co-Producer'),(33217,1084139,5,'Additional Editing'),(33217,1231184,4,'Screenplay'),(33217,1241382,3,'Unit Production Manager'),(33217,1296181,1,'Key Grip'),(33217,1319153,7,'Set Designer'),(33217,1322130,8,'Assistant Costume Designer'),(33217,1333084,7,'Property Master'),(33217,1333986,7,'Art Direction'),(33217,1335122,6,'Sound Effects Editor'),(33217,1342656,6,'Supervising ADR Editor'),(33217,1342656,6,'Supervising Dialogue Editor'),(33217,1384393,6,'Music Editor'),(33217,1391689,9,'Special Effects Coordinator'),(33217,1392915,1,'Still Photographer'),(33217,1399070,3,'Location Manager'),(33217,1399287,10,'Visual Effects Supervisor'),(33217,1400012,9,'Unit Publicist'),(33217,1400390,7,'Construction Coordinator'),(33217,1400412,11,'Gaffer'),(33217,1401687,6,'Sound Re-Recording Mixer'),(33217,1404752,9,'Transportation Coordinator'),(33217,1404753,2,'Script Supervisor'),(33217,1404777,9,'Special Effects'),(33217,1408200,9,'Choreographer'),(33217,1408787,1,'Camera Operator'),(33217,1412195,6,'Sound Designer'),(33217,1416155,6,'Sound Re-Recording Mixer'),(33217,1421693,8,'Key Hair Stylist'),(33217,1552434,3,'Casting Associate'),(33217,1559906,8,'Seamstress'),(33217,1576236,1,'Camera Operator'),(33217,1576256,1,'First Assistant Camera'),(33217,1578659,6,'Production Sound Mixer'),(33217,1603188,3,'Casting Associate'),(33217,1684475,3,'Executive Producer'),(33217,1684475,4,'Book'),(33217,1701353,7,'Assistant Property Master'),(33217,1713981,6,'Boom Operator'),(33217,1768379,2,'Second Assistant Director'),(33217,1769434,2,'First Assistant Director'),(33217,1769446,9,'Stunt Coordinator'),(33217,1769447,2,'Third Assistant Director'),(33217,1769448,1,'Camera Operator'),(33217,1769449,7,'Assistant Property Master'),(33217,1769452,7,'Set Dresser'),(33217,1769453,7,'Set Dresser'),(33217,1769454,7,'Set Dresser'),(33217,1769462,5,'First Assistant Editor'),(33217,1769469,10,'Animation Supervisor'),(33217,1769472,10,'Visual Effects Producer'),(33217,1769483,6,'Assistant Sound Editor'),(33217,1769487,8,'Costume Coordinator'),(33217,1769488,8,'Set Costumer'),(33217,1769492,3,'Production Coordinator'),(33217,1769494,9,'Special Effects'),(33217,1769495,7,'Construction Foreman'),(33217,1769500,9,'Transportation Captain'),(33217,1769507,3,'ADR Voice Casting'),(11153,1524,2,'Director'),(11153,1531,5,'Editor'),(11153,11505,4,'Screenplay'),(11153,14536,1,'Director of Photography'),(11153,69342,3,'Producer'),(11153,69343,6,'Original Music Composer'),(17202,80602,2,'Director'),(17202,80602,4,'Writer'),(10053,2043,3,'Producer'),(10053,6040,3,'Producer'),(10053,13585,3,'Casting'),(10053,11877,7,'Production Design'),(10053,12786,2,'Director'),(10053,17629,1,'Director of Photography'),(10053,20382,5,'Editor'),(10053,60284,8,'Costume Design'),(10053,62554,4,'Author'),(10053,62555,4,'Author'),(10053,62556,4,'Author'),(10053,62557,3,'Executive Producer'),(10053,62558,6,'Original Music Composer'),(10053,62560,7,'Art Direction'),(10053,62559,3,'Producer'),(10053,1397738,2,'Script Supervisor'),(10053,1427397,8,'Makeup Artist'),(10053,1457834,8,'Hairstylist'),(10053,1457835,8,'Makeup Department Head'),(10053,1457836,8,'Makeup Artist'),(11870,2995,5,'Editor'),(11870,17825,2,'Director'),(11870,23486,6,'Original Music Composer'),(11870,53177,3,'Producer'),(11870,53177,4,'Screenplay'),(11870,56791,1,'Director of Photography'),(11870,70804,4,'Screenplay'),(11778,581,3,'Producer'),(11778,1054,6,'Sound Editor'),(11778,3100,5,'Editor'),(11778,3105,6,'Sound Re-Recording Mixer'),(11778,3659,1,'Camera Operator'),(11778,3662,3,'Casting'),(11778,12113,4,'Screenplay'),(11778,12114,4,'Screenplay'),(11778,12114,2,'Director'),(11778,12114,3,'Producer'),(11778,14436,8,'Makeup Artist'),(11778,12235,1,'Director of Photography'),(11778,12431,9,'Stunt Coordinator'),(11778,14642,1,'Camera Operator'),(11778,14895,3,'Producer'),(11778,14897,3,'Producer'),(11778,35499,7,'Art Direction'),(11778,31937,3,'Location Manager'),(11778,40150,6,'Music'),(11778,41413,7,'Art Direction'),(11778,66226,9,'Stunt Coordinator'),(11778,71734,1,'Camera Operator'),(11778,74775,7,'Construction Coordinator'),(11778,113658,8,'Hairstylist'),(11778,119773,6,'Boom Operator'),(11778,559902,8,'Makeup Artist'),(11778,1304326,1,'Still Photographer'),(11778,1342636,7,'Greensman'),(11778,1342637,7,'Leadman'),(11778,1342638,7,'Construction Coordinator'),(11778,1342639,6,'Supervising Sound Effects Editor'),(11778,1342640,6,'Dolby Consultant'),(11778,1342641,8,'Costume Supervisor'),(11778,1342642,9,'Transportation Coordinator'),(11778,1342643,9,'Transportation Coordinator'),(11778,1342644,2,'Script Supervisor'),(11778,1342645,3,'Location Manager'),(11778,1394924,6,'Sound Re-Recording Mixer'),(11778,1415965,6,'Sound Editor'),(11778,1418825,6,'Sound Re-Recording Mixer'),(11778,1421911,3,'Production Manager'),(11778,1421915,6,'Sound Re-Recording Mixer'),(11778,1421919,1,'Still Photographer'),(11778,1421920,1,'Still Photographer'),(11778,1421921,1,'Still Photographer'),(11778,1421922,11,'Gaffer'),(11778,1421923,9,'Unit Publicist'),(18736,2120,6,'Original Music Composer'),(18736,7397,4,'Writer'),(18736,7398,4,'Writer'),(18736,13140,1,'Director of Photography'),(18736,19228,2,'Director'),(18736,380639,3,'Producer'),(18736,1041072,5,'Editor'),(18736,1225554,4,'Writer'),(15765,1459,4,'Novel'),(15765,18069,2,'Director'),(15765,66598,4,'Screenplay'),(11397,1593,3,'Casting'),(11397,1594,3,'Casting Associate'),(11397,10572,6,'Original Music Composer'),(11397,17150,7,'Set Decoration'),(11397,11874,3,'Producer'),(11397,17948,1,'Director of Photography'),(11397,35692,4,'Screenplay'),(11397,35692,3,'Co-Producer'),(11397,35693,4,'Screenplay'),(11397,35693,3,'Co-Producer'),(11397,51854,5,'Editor'),(11397,57604,2,'Director'),(11397,58183,3,'Executive Producer'),(11397,58183,3,'Unit Production Manager'),(11397,59960,3,'Executive Producer'),(11397,66514,4,'Screenplay'),(11397,66517,4,'Screenplay'),(11397,69209,4,'Screenplay'),(11397,69209,3,'Co-Producer'),(11397,81893,7,'Production Design'),(11397,1452689,3,'Location Manager'),(11397,1468036,2,'Script Supervisor'),(11397,1493864,7,'Art Direction'),(11397,1538374,3,'Production Coordinator'),(11397,1552531,3,'Casting Associate'),(11397,1563906,3,'Production Supervisor'),(11397,1656415,8,'Costume Design'),(11397,1733134,3,'Casting Assistant'),(11397,1813644,9,'Stunts'),(11478,11874,3,'Producer'),(11478,14712,6,'Original Music Composer'),(11478,10833,5,'Editor'),(11478,18878,2,'Director'),(11478,57126,1,'Director of Photography'),(11478,59328,4,'Screenplay'),(11478,59328,3,'Producer'),(13411,1260,7,'Production Design'),(13411,5914,3,'Casting'),(13411,6213,4,'Writer'),(13411,7413,1,'Director of Photography'),(13411,12436,7,'Art Direction'),(13411,32907,4,'Writer'),(13411,37850,4,'Writer'),(13411,25362,6,'Original Music Composer'),(13411,56716,5,'Editor'),(13411,61175,2,'Director'),(13411,72406,4,'Writer'),(13411,94546,3,'Casting'),(10564,27518,4,'Screenplay'),(10564,20836,6,'Original Music Composer'),(10564,20065,1,'Director of Photography'),(10564,10935,5,'Editor'),(10564,34481,2,'Director'),(10564,66042,4,'Novel'),(24150,2325,3,'Casting'),(24150,1307,3,'Executive Producer'),(24150,59839,3,'Executive Producer'),(24150,12707,8,'Costume Design'),(24150,15221,6,'Music'),(24150,16848,4,'Writer'),(24150,16848,2,'Director'),(24150,16848,3,'Producer'),(24150,27735,3,'Producer'),(24150,37023,7,'Art Direction'),(24150,21323,7,'Set Decoration'),(24150,35630,11,'Gaffer'),(24150,64227,1,'Director of Photography'),(24150,112520,7,'Production Design'),(24150,102352,3,'Producer'),(24150,1345635,2,'Script Supervisor'),(24150,1407697,2,'Script Supervisor'),(18405,960,6,'Music'),(18405,2625,7,'Production Design'),(18405,5140,3,'Producer'),(18405,5140,4,'Story'),(18405,13585,3,'Casting'),(18405,15541,7,'Set Decoration'),(18405,19697,3,'Associate Producer'),(18405,35475,3,'Producer'),(18405,35581,3,'Producer'),(18405,35973,3,'Associate Producer'),(18405,53181,9,'Cinematography'),(18405,20977,4,'Screenplay'),(18405,56282,3,'Co-Producer'),(18405,59287,8,'Makeup Effects Designer'),(18405,59294,9,'Stunts'),(18405,62011,3,'Executive In Charge Of Production'),(18405,94108,2,'Director'),(18405,85122,6,'Foley Editor'),(18405,568312,3,'Executive Producer'),(18405,965592,3,'Casting'),(18405,966400,4,'Screenplay'),(18405,1046115,5,'Editor'),(18405,1049456,6,'Sound Editor'),(18405,1053407,9,'Stunts'),(18405,1187049,9,'Stunts'),(18405,1276405,8,'Makeup Artist'),(18405,1393278,8,'Key Hair Stylist'),(18405,1393278,8,'Key Makeup Artist'),(18405,1396418,9,'Stunt Coordinator'),(18405,1399079,3,'Associate Producer'),(18405,1410274,8,'Makeup Artist'),(18405,1410276,3,'Production Manager'),(18405,1410279,7,'Production Design'),(18405,1518764,7,'Art Direction'),(18405,1522041,8,'Costume Design'),(18405,1525142,3,'Co-Producer'),(18405,1709777,9,'Stunts'),(18405,1828302,8,'Hairstylist'),(18405,1828302,8,'Makeup Artist'),(18405,1842586,3,'Line Producer'),(18405,1842589,8,'Hairstylist'),(18405,1842591,3,'Unit Manager'),(18405,1842594,6,'Sound Mixer'),(18405,1842595,9,'Stunts'),(18405,1842596,9,'Stunts'),(18405,1842597,9,'Stunts'),(18405,1842599,9,'Stunts'),(18405,1842600,9,'Stunts'),(18405,1842601,9,'Stunts'),(18405,1842602,9,'Stunts'),(18405,1842603,9,'Stunts'),(11442,16650,5,'Editor'),(11442,31906,1,'Director of Photography'),(11442,33341,2,'Director'),(11442,25548,6,'Original Music Composer'),(11442,49730,4,'Screenplay'),(11442,66203,3,'Executive Producer'),(14047,2215,3,'Casting'),(14047,437,7,'Production Design'),(14047,1213,6,'Original Music Composer'),(14047,1301,1,'Director of Photography'),(14047,1307,3,'Executive Producer'),(14047,59839,3,'Executive Producer'),(14047,5292,2,'Director'),(14047,7717,7,'Art Direction'),(14047,12781,3,'Executive Producer'),(14047,13309,3,'Producer'),(14047,15573,8,'Costume Design'),(14047,20649,5,'Editor'),(14047,18311,3,'Producer'),(14047,51612,3,'Producer'),(14047,65725,7,'Set Decoration'),(14047,81730,3,'Producer'),(14047,106955,4,'Writer'),(14047,937954,6,'Original Music Composer'),(14047,1392613,4,'Story'),(14047,1392615,3,'Co-Producer'),(14047,1392617,3,'Associate Producer'),(14047,1392618,3,'Associate Producer'),(14047,1392621,5,'Editorial Coordinator'),(14047,1400738,2,'Script Supervisor'),(11132,1258,1,'Director of Photography'),(11132,5666,6,'Original Music Composer'),(11132,58628,2,'Director'),(11132,63999,3,'Producer'),(11132,63614,3,'Producer'),(11132,68293,4,'Novel'),(11132,68294,4,'Screenplay'),(11132,68295,5,'Editor'),(17127,8219,5,'Editor'),(17127,1528,6,'Original Music Composer'),(17127,3429,7,'Production Design'),(17127,16425,1,'Director of Photography'),(17127,17221,7,'Set Decoration'),(17127,37406,7,'Art Direction'),(17127,55476,2,'Director'),(17127,121565,4,'Screenplay'),(17127,1801391,4,'Novel'),(17880,39819,2,'Director'),(17880,1030892,4,'Writer'),(17880,1073799,4,'Writer'),(14736,5281,3,'Producer'),(14736,5287,6,'Original Music Composer'),(14736,15524,8,'Costume Design'),(14736,16599,6,'Music Editor'),(14736,27039,3,'Casting'),(14736,17948,1,'Director of Photography'),(14736,33455,7,'Art Direction'),(14736,41896,3,'Executive Producer'),(14736,51868,5,'Editor'),(14736,57864,3,'Executive Producer'),(14736,58809,2,'Script Supervisor'),(14736,59834,3,'Unit Production Manager'),(14736,71947,2,'Director'),(14736,71947,4,'Writer'),(14736,957495,6,'Sound Effects Editor'),(14736,960963,7,'Set Decoration'),(14736,1329418,8,'Costume Supervisor'),(14736,1339815,8,'Makeup Artist'),(14736,1368053,3,'Producer'),(14736,1395287,11,'Gaffer'),(14736,1403413,1,'Steadicam Operator'),(14736,1404230,1,'Still Photographer'),(14736,1406080,8,'Key Hair Stylist'),(14736,1406388,6,'Sound Effects Editor'),(14736,1422054,8,'Makeup Artist'),(14736,1434165,1,'Camera Operator'),(14736,1502517,9,'Stunt Coordinator'),(14736,1524668,8,'Key Hair Stylist'),(14736,1526031,7,'Production Design'),(14736,1537185,6,'Sound Effects Editor'),(14736,1537192,6,'Music Supervisor'),(14736,1537194,3,'Executive Producer'),(14736,1537202,3,'Casting Associate'),(14736,1537203,1,'First Assistant Camera'),(14736,1537205,8,'Makeup Department Head'),(14736,1537206,8,'Key Hair Stylist'),(14736,1537207,8,'Makeup Artist'),(14736,1537208,6,'Music Editor'),(23706,9196,3,'Executive Producer'),(23706,11475,7,'Production Design'),(23706,17146,1,'Director of Photography'),(23706,14377,3,'Casting'),(23706,15560,5,'Editor'),(23706,18277,3,'Producer'),(23706,23486,6,'Original Music Composer'),(23706,29010,4,'Writer'),(23706,29014,3,'Executive Producer'),(23706,55954,5,'Editor'),(23706,57634,3,'Producer'),(23706,60935,3,'Casting'),(23706,66513,3,'Producer'),(23706,78562,2,'Director'),(23706,224386,3,'Executive Producer'),(11531,1225,6,'Music'),(11531,1782,5,'Editor'),(11531,9315,6,'Music'),(11531,17048,1,'Director of Photography'),(11531,23420,3,'Producer'),(11531,26849,4,'Screenplay'),(11531,26849,3,'Executive Producer'),(11531,26850,4,'Screenplay'),(11531,26850,3,'Executive Producer'),(11531,69237,2,'Director'),(10413,1098,5,'Editor'),(10413,4140,6,'Original Music Composer'),(10413,4671,5,'Editor'),(10413,10492,4,'Screenplay'),(10413,14694,3,'Producer'),(10413,14695,3,'Producer'),(10413,22103,1,'Director of Photography'),(10413,56186,4,'Screenplay'),(10413,57895,2,'Director'),(10413,58183,3,'Executive Producer'),(10413,58726,4,'Screenplay'),(14012,2100,4,'Screenplay'),(14012,2103,4,'Screenplay'),(14012,50460,2,'Director'),(12212,9039,2,'Director'),(12212,11874,3,'Producer'),(12212,47102,1,'Director of Photography'),(12212,55499,4,'Screenplay'),(12212,55500,4,'Screenplay'),(12212,73720,6,'Original Music Composer'),(13768,46297,2,'Director'),(18681,15329,8,'Costume Design'),(18681,27889,4,'Screenplay'),(18681,27889,2,'Director'),(18681,29496,4,'Writer'),(12162,6795,7,'Production Design'),(12162,14392,2,'Director'),(12162,14392,3,'Producer'),(12162,7229,6,'Original Music Composer'),(12162,7712,5,'Editor'),(12162,8708,6,'Sound Effects Editor'),(12162,12040,8,'Costume Design'),(12162,15493,1,'Director of Photography'),(12162,19449,3,'Executive Producer'),(12162,19658,3,'Producer'),(12162,51686,4,'Screenplay'),(12162,51686,3,'Producer'),(12162,62778,3,'Casting'),(12162,143913,5,'Dialogue Editor'),(12162,1014937,6,'Original Music Composer'),(12162,1031200,3,'Producer'),(12162,1099045,5,'Editor'),(12162,1122476,3,'Producer'),(12162,1335146,6,'Sound mixer'),(12162,1351732,2,'Script Supervisor'),(12162,1360097,5,'Dialogue Editor'),(12162,1389858,6,'Sound Effects Editor'),(12162,1392243,6,'Sound Effects Editor'),(12162,1394950,6,'Sound Designer'),(12162,1394950,6,'Sound Re-Recording Mixer'),(12162,1470167,1,'Still Photographer'),(12162,1554579,7,'Set Decoration'),(12162,1579180,1,'First Assistant Camera'),(11495,3686,3,'Casting'),(11495,310,5,'Editor'),(11495,3027,4,'Novel'),(11495,5556,1,'Director of Photography'),(11495,14844,5,'Editor'),(11495,19051,3,'Associate Producer'),(11495,21518,7,'Production Design'),(11495,47927,6,'Original Music Composer'),(11495,58180,4,'Screenplay'),(11495,67753,2,'Director'),(11495,69599,3,'Producer'),(11495,69600,6,'Original Music Composer'),(11495,69601,6,'Original Music Composer'),(11495,942947,6,'Original Music Composer'),(11495,960947,7,'Set Decoration'),(13166,376,3,'Executive Producer'),(13166,6114,3,'Producer'),(13166,7413,1,'Director of Photography'),(13166,7478,6,'Music'),(13166,13585,3,'Casting'),(13166,11957,3,'Producer'),(13166,15427,7,'Production Design'),(13166,33830,5,'Editor'),(13166,36423,2,'Director'),(13166,36423,4,'Author'),(13166,39032,3,'Producer'),(13166,62707,7,'Art Direction'),(13166,73501,3,'Producer'),(13166,80341,4,'Author'),(13166,80341,3,'Producer'),(13166,957821,8,'Makeup Artist'),(13166,1182909,8,'Hairstylist'),(13166,1197285,8,'Costume Design'),(13166,1397300,2,'Script Supervisor'),(13166,1401604,8,'Wigmaker'),(13166,1416054,8,'Hairstylist'),(13166,1457480,7,'Art Direction'),(13166,1457482,7,'Set Decoration'),(15511,78297,4,'Author'),(15511,78298,2,'Director'),(15511,1455598,10,'Animation'),(12211,1307,3,'Producer'),(12211,3962,8,'Costume Design'),(12211,5489,3,'Casting'),(12211,8306,1,'Director of Photography'),(12211,16465,5,'Editor'),(12211,18384,4,'Screenplay'),(12211,53866,3,'Producer'),(12211,53867,3,'Producer'),(12211,57263,6,'Original Music Composer'),(12211,71901,2,'Director'),(12211,978265,3,'Casting'),(12211,1099544,8,'Costume Design'),(12211,1307603,3,'Casting'),(13816,4023,3,'Casting'),(13816,282,3,'Producer'),(13816,4500,6,'Music'),(13816,2873,5,'Editor'),(13816,3192,3,'Casting'),(13816,4898,3,'Executive Producer'),(13816,4899,3,'Executive Producer'),(13816,5328,3,'Casting'),(13816,21162,7,'Set Decoration'),(13816,21615,7,'Production Design'),(13816,23467,1,'Director of Photography'),(13816,37934,3,'Producer'),(13816,57203,3,'Executive Producer'),(13816,68016,6,'Orchestrator'),(13816,75646,2,'Director'),(13816,75647,4,'Screenplay'),(13816,75648,3,'Producer'),(13816,75649,3,'Producer'),(13816,75650,3,'Producer'),(13816,75651,3,'Line Producer'),(13816,75652,3,'Producer'),(13816,75653,7,'Art Direction'),(13816,75654,8,'Costume Design'),(13816,1324812,8,'Costume Supervisor'),(13816,1389602,2,'Script Supervisor'),(13816,1397382,8,'Set Costumer'),(13816,1415018,8,'Set Costumer'),(13816,1526455,8,'Assistant Costume Designer'),(13816,1526456,8,'Hair Department Head'),(13816,1526457,8,'Hairstylist'),(13816,1526458,8,'Hairstylist'),(13816,1526459,8,'Makeup Artist'),(13816,1526460,8,'Makeup Artist'),(13816,1526461,8,'Makeup Artist'),(13816,1526462,8,'Makeup Artist'),(13816,1526463,8,'Makeup Artist'),(13816,1526464,8,'Makeup Artist'),(22798,69597,2,'Director'),(22798,101903,4,'Screenplay'),(10743,5357,3,'Producer'),(10743,7494,3,'Casting'),(10743,7495,3,'Casting'),(10743,37022,3,'Executive Producer'),(10743,19466,7,'Set Decoration'),(10743,21747,7,'Production Design'),(10743,20567,3,'Producer'),(10743,20693,1,'Director of Photography'),(10743,23486,6,'Original Music Composer'),(10743,25058,5,'Editor'),(10743,40513,3,'Producer'),(10743,15890,2,'Director'),(10743,53757,3,'Executive Producer'),(10743,62511,3,'Producer'),(10743,65779,4,'Screenplay'),(10743,65780,3,'Executive Producer'),(10743,65782,3,'Executive Producer'),(10743,583264,6,'Sound mixer'),(10743,957799,8,'Costume Design'),(10743,1395275,1,'Still Photographer'),(10743,1423550,2,'Script Supervisor'),(10743,1564369,7,'Art Department Coordinator'),(15237,946,8,'Costume Design'),(15237,3960,1,'Director of Photography'),(15237,14393,4,'Author'),(15237,6379,7,'Production Design'),(15237,6381,7,'Assistant Art Director'),(15237,11472,2,'Director'),(15237,11472,3,'Producer'),(15237,16487,3,'Producer'),(15237,16363,3,'Casting'),(15237,18330,3,'Producer'),(15237,53645,5,'Editor'),(15237,63131,7,'Art Direction'),(15237,66552,7,'Set Decoration'),(15237,1319843,8,'Makeup Artist'),(15237,1322137,8,'Costume Supervisor'),(15237,1367566,2,'Script Supervisor'),(15237,1401118,9,'Choreographer'),(15237,1462925,8,'Hairstylist'),(17644,104507,2,'Director'),(12257,495,3,'Casting'),(12257,3562,6,'Original Music Composer'),(12257,8246,3,'Producer'),(12257,5162,3,'Producer'),(12257,8844,3,'Producer'),(12257,13140,1,'Director of Photography'),(12257,15002,2,'Director'),(12257,15004,3,'Producer'),(12257,18134,3,'Casting'),(12257,19284,7,'Production Design'),(12257,20758,7,'Art Direction'),(12257,28161,5,'Editor'),(12257,28162,8,'Costume Design'),(12257,38413,7,'Set Decoration'),(12257,52016,8,'Assistant Costume Designer'),(12257,66633,4,'Screenplay'),(12257,60664,3,'Casting Associate'),(12257,71974,3,'Executive Producer'),(12257,227360,8,'Makeup Artist'),(12257,1433996,8,'Key Hair Stylist'),(12257,1550229,3,'Casting'),(12257,1550230,8,'Costume Supervisor'),(12257,1550231,3,'Researcher'),(13539,4952,3,'Casting'),(13539,53840,1,'Director of Photography'),(13539,65849,5,'Editor'),(13539,58644,4,'Writer'),(13539,60628,6,'Original Music Composer'),(13539,1219210,2,'Director'),(14024,13668,3,'Producer'),(14024,26714,9,'Cinematography'),(14024,40384,6,'Original Music Composer'),(14024,20222,3,'Producer'),(14024,10830,3,'Producer'),(14024,56345,6,'Original Music Composer'),(14024,59563,5,'Editor'),(14024,129952,2,'Director'),(14024,129952,3,'Producer'),(14024,955111,3,'Producer'),(14024,1213393,3,'Producer'),(14024,1360990,4,'Writer'),(14024,1360991,4,'Screenplay'),(16222,1999,6,'Original Music Composer'),(16222,2123,5,'Editor'),(16222,5386,3,'Executive Producer'),(16222,6901,7,'Production Design'),(16222,17146,1,'Director of Photography'),(16222,17149,7,'Art Direction'),(16222,15331,6,'Sound Effects Editor'),(16222,18344,3,'Producer'),(16222,28862,7,'Set Decoration'),(16222,20540,3,'Casting'),(16222,21592,8,'Costume Design'),(16222,53175,4,'Writer'),(16222,53175,3,'Co-Producer'),(16222,59416,3,'Co-Producer'),(16222,142161,9,'Stunt Coordinator'),(16222,161858,2,'Director'),(16222,1008052,6,'Music Editor'),(16222,1340007,6,'Music Editor'),(16222,1378240,1,'Still Photographer'),(16222,1378755,6,'Sound Re-Recording Mixer'),(16222,1392081,6,'Sound Effects Editor'),(16222,1392127,5,'Dialogue Editor'),(16222,1392901,5,'Dialogue Editor'),(16222,1395022,6,'Supervising Sound Editor'),(16222,1399861,6,'Sound Re-Recording Mixer'),(16222,1406826,6,'Sound Effects Editor'),(16222,1418491,2,'Script Supervisor'),(16222,1423757,6,'Sound Effects Editor'),(16222,1429501,1,'Steadicam Operator'),(16222,1476052,3,'Executive Producer'),(16222,1530082,6,'Music Supervisor'),(16222,1551727,6,'Sound mixer'),(18276,664,3,'Producer'),(18276,1044,1,'Director of Photography'),(18276,2031,3,'Casting'),(18276,2532,3,'Casting'),(18276,7417,7,'Set Decoration'),(18276,10830,3,'Executive Producer'),(18276,46084,8,'Costume Design'),(18276,53811,7,'Production Design'),(18276,60027,3,'Co-Producer'),(18276,65706,3,'Executive Producer'),(18276,66519,5,'Editor'),(18276,83143,3,'Executive Producer'),(18276,151232,2,'Director'),(18276,151232,4,'Screenplay'),(18276,151232,3,'Co-Producer'),(18276,223243,7,'Supervising Art Director'),(18276,994073,3,'Producer'),(18276,1397011,3,'Co-Producer'),(18276,1637030,4,'Novel'),(18276,1637030,3,'Co-Producer'),(10186,14139,1,'Director of Photography'),(10186,17825,3,'Producer'),(10186,486,4,'Screenplay'),(10186,57630,2,'Director'),(10186,67360,4,'Screenplay'),(25704,1214,1,'Director of Photography'),(25704,6964,9,'Special Effects Coordinator'),(25704,8858,3,'Producer'),(25704,9360,1,'Still Photographer'),(25704,12058,2,'Director'),(25704,14041,7,'Set Decoration'),(25704,22009,7,'Art Direction'),(25704,23486,6,'Original Music Composer'),(25704,23787,8,'Makeup Department Head'),(25704,45841,3,'Casting'),(25704,49913,8,'Costume Design'),(25704,54251,3,'Executive Producer'),(25704,56907,5,'Editor'),(25704,57601,3,'Producer'),(25704,62587,8,'Costume Supervisor'),(25704,75617,9,'Stunt Coordinator'),(25704,224387,3,'Casting'),(25704,417960,5,'Color Timer'),(25704,935493,3,'Casting Associate'),(25704,949132,3,'Producer'),(25704,983909,4,'Writer'),(25704,1117879,3,'Associate Producer'),(25704,1129907,2,'Script Supervisor'),(25704,1172659,7,'Production Design'),(25704,1319724,3,'Location Manager'),(25704,1328165,3,'Unit Production Manager'),(25704,1328165,3,'Co-Producer'),(25704,1341847,8,'Makeup Artist'),(25704,1345718,2,'First Assistant Director'),(25704,1352963,7,'Set Designer'),(25704,1367666,6,'Sound Editor'),(25704,1367667,6,'Supervising Sound Effects Editor'),(25704,1388849,7,'Construction Coordinator'),(25704,1390539,2,'Script Supervisor'),(25704,1394984,6,'Music Editor'),(25704,1395029,1,'Camera Operator'),(25704,1402553,9,'Property Master'),(25704,1403396,7,'Leadman'),(25704,1403636,6,'Sound Editor'),(25704,1404366,6,'Sound Editor'),(25704,1407363,10,'Visual Effects Coordinator'),(25704,1409753,9,'Unit Publicist'),(25704,1411166,8,'Hair Department Head'),(25704,1423757,6,'Supervising Sound Editor'),(25704,1424694,1,'Camera Operator'),(25704,1424694,1,'Steadicam Operator'),(25704,1452643,8,'Key Hair Stylist'),(25704,1530078,8,'Key Makeup Artist'),(25704,1543453,7,'Art Department Coordinator'),(25704,1544329,8,'Costume Supervisor'),(25704,1545922,6,'Sound Editor'),(25704,1586396,6,'Music Supervisor'),(25704,1652433,2,'Second Assistant Director'),(25704,1719023,4,'Storyboard'),(25704,1719024,9,'Post Production Supervisor'),(25704,1734472,9,'Transportation Coordinator'),(19265,1243,2,'Director'),(19265,1243,4,'Writer'),(19265,1265,3,'Producer'),(19265,1268,3,'Producer'),(19265,10688,1,'Director of Photography'),(19265,23966,7,'Production Design'),(10075,8382,7,'Production Design'),(10075,68602,3,'Producer'),(10075,1075,6,'Original Music Composer'),(10075,1076,6,'Original Music Composer'),(10075,3953,3,'Producer'),(10075,3954,3,'Producer'),(10075,3959,3,'Executive Producer'),(10075,15244,4,'Author'),(10075,15244,3,'Executive Producer'),(10075,13585,3,'Casting'),(10075,9822,7,'Art Direction'),(10075,11270,7,'Set Decoration'),(10075,13017,3,'Producer'),(10075,15330,8,'Hairstylist'),(10075,36624,8,'Costume Design'),(10075,23492,7,'Art Direction'),(10075,8313,3,'Casting'),(10075,41828,3,'Producer'),(10075,47942,8,'Makeup Artist'),(10075,53841,1,'Director of Photography'),(10075,54774,3,'Producer'),(10075,54248,4,'Author'),(10075,56839,3,'Producer'),(10075,57087,5,'Editor'),(10075,57152,3,'Producer'),(10075,62438,7,'Art Direction'),(10075,62874,4,'Author'),(10075,62872,2,'Director'),(10075,62875,3,'Producer'),(10075,62873,3,'Producer'),(10075,62876,3,'Casting'),(10075,62877,7,'Art Direction'),(10075,62878,8,'Costume Design'),(10075,1034748,3,'Casting'),(10075,1146968,8,'Makeup Artist'),(10075,1146969,8,'Hairstylist'),(10075,1373729,2,'Script Supervisor'),(10075,1813644,9,'Stunts'),(13853,37,6,'Original Music Composer'),(13853,1044,2,'Director'),(13853,2031,3,'Casting'),(13853,2209,1,'Director of Photography'),(13853,10548,5,'Editor'),(13853,12510,7,'Production Design'),(13853,16549,7,'Set Decoration'),(13853,102445,4,'Screenplay'),(13853,113982,3,'Production Manager'),(13853,136232,3,'Casting'),(13853,185777,8,'Costume Design'),(13853,1201714,4,'Novel'),(31306,3131,2,'Director'),(31306,58471,3,'Executive Producer'),(31306,58471,3,'Unit Production Manager'),(10045,59,3,'Producer'),(10045,59,4,'Screenplay'),(10045,8389,3,'Executive Producer'),(10045,21650,3,'Casting'),(10045,24761,8,'Costume Design'),(10045,35453,2,'Director'),(10045,35455,7,'Production Design'),(10045,42305,1,'Director of Photography'),(10045,51511,5,'Editor'),(10045,57279,3,'Producer'),(10045,62432,6,'Original Music Composer'),(10045,62431,6,'Original Music Composer'),(10045,62434,5,'Editor'),(10045,62433,6,'Original Music Composer'),(10045,62435,7,'Set Decoration'),(10045,62436,8,'Costume Design'),(10045,62438,7,'Art Direction'),(10045,62442,4,'Screenplay'),(11190,66861,3,'Executive Producer'),(11190,68519,2,'Director'),(11190,68520,4,'Writer'),(11190,68522,3,'Executive Producer'),(11190,68523,3,'Producer'),(11190,68524,6,'Original Music Composer'),(11190,68525,1,'Director of Photography'),(11190,68526,5,'Editor'),(11190,125884,4,'Writer'),(11190,936817,7,'Production Design'),(16353,57207,2,'Director'),(16353,57207,4,'Writer'),(16353,57274,2,'Director'),(16353,57274,4,'Writer'),(16353,1137435,9,'Stunts'),(23759,2070,5,'Editor'),(23759,4584,3,'Producer'),(23759,6373,3,'Executive Producer'),(23759,10496,3,'Casting'),(23759,40823,6,'Foley'),(23759,15729,3,'Executive Producer'),(23759,23451,6,'Original Music Composer'),(23759,24227,6,'Sound Re-Recording Mixer'),(23759,25060,8,'Makeup Artist'),(23759,57581,4,'Writer'),(23759,57581,2,'Director'),(23759,57583,3,'Producer'),(23759,57584,3,'Executive Producer'),(23759,57585,1,'Director of Photography'),(23759,71285,9,'Second Unit Cinematographer'),(23759,125263,7,'Set Decoration'),(23759,930532,7,'Art Direction'),(23759,962163,7,'Production Design'),(23759,962164,7,'Supervising Art Director'),(23759,979474,8,'Costume Design'),(23759,1037760,9,'Makeup Effects'),(23759,1091462,3,'Producer'),(23759,1099948,6,'Music Editor'),(23759,1102066,3,'Producer'),(23759,1120753,3,'Line Producer'),(23759,1127670,3,'Production Manager'),(23759,1164437,1,'Camera Intern'),(23759,1334805,8,'Makeup Artist'),(23759,1334806,8,'Makeup Artist'),(23759,1334807,9,'Property Master'),(23759,1334808,9,'Prop Maker'),(23759,1334809,10,'Visual Effects Supervisor'),(23759,1334811,8,'Costume Supervisor'),(23759,1334812,8,'Costume Supervisor'),(23759,1337412,6,'Foley'),(23759,1338219,7,'Greensman'),(23759,1338220,6,'Sound Designer'),(23759,1350255,1,'Camera Operator'),(23759,1380002,1,'Still Photographer'),(23759,1395709,6,'Sound Re-Recording Mixer'),(23759,1395761,10,'Visual Effects Producer'),(23759,1402943,2,'Script Supervisor'),(23759,1404244,1,'Helicopter Camera'),(23759,1405241,1,'Helicopter Camera'),(23759,1407663,9,'Sound Recordist'),(23759,1409292,8,'Hairstylist'),(23759,1409293,8,'Wigmaker'),(23759,1409294,6,'ADR & Dubbing'),(23759,1409294,5,'Dialogue Editor'),(23759,1409295,6,'ADR & Dubbing'),(23759,1409295,5,'Dialogue Editor'),(23759,1409296,6,'Supervising Sound Editor'),(23759,1409297,6,'Sound Designer'),(23759,1409298,9,'Stunt Coordinator'),(23759,1409299,1,'Camera Operator'),(23759,1409304,5,'Digital Intermediate'),(23759,1409305,5,'Digital Intermediate'),(23759,1409306,3,'Publicist'),(23759,1409307,2,'Script Supervisor'),(23759,1409308,3,'Location Manager'),(23759,1409309,3,'Location Manager'),(23759,1409310,2,'Script Supervisor'),(24206,52968,2,'Director'),(24206,1474437,4,'Writer'),(10185,3953,3,'Producer'),(10185,13585,3,'Casting'),(10185,12033,1,'Director of Photography'),(10185,19662,3,'Casting'),(10185,31211,3,'Producer'),(10185,31211,4,'Author'),(10185,45996,2,'Director'),(10185,46077,3,'Producer'),(10185,46084,8,'Costume Design'),(10185,67357,5,'Editor'),(10185,67358,4,'Screenplay'),(31668,15115,2,'Director'),(31668,1582353,3,'Unit Production Manager'),(13501,122582,2,'Director'),(13501,122582,4,'Writer'),(15208,4052,3,'Executive Producer'),(15208,7741,6,'Original Music Composer'),(15208,61360,3,'Line Producer'),(15208,72897,3,'Producer'),(15208,78000,3,'Producer'),(15208,78001,4,'Screenplay'),(15208,78001,2,'Director'),(15208,78001,7,'Production Design'),(15208,103139,4,'Writer'),(15208,138824,9,'Cinematography'),(15208,1072693,4,'Dialogue'),(15208,1072695,9,'Cinematography'),(15208,1285050,6,'Music'),(15208,1301371,3,'Line Producer'),(15208,1333649,3,'Co-Producer'),(15208,1353515,8,'Costume Design'),(15208,1363839,8,'Costume Design'),(15208,1681337,3,'Associate Producer'),(20083,66774,4,'Writer'),(20083,240150,2,'Director'),(12405,1570,1,'Director of Photography'),(12405,2034,2,'Director'),(12405,2073,3,'Casting'),(12405,5288,6,'Original Music Composer'),(12405,6508,3,'Casting'),(12405,11114,5,'Editor'),(12405,40810,6,'Sound Designer'),(12405,40810,6,'Supervising Sound Editor'),(12405,40813,5,'Dialogue Editor'),(12405,40814,5,'Dialogue Editor'),(12405,40816,6,'Sound Effects Editor'),(12405,40819,6,'Sound Re-Recording Mixer'),(12405,40823,6,'Foley'),(12405,20463,7,'Production Design'),(12405,26194,7,'Set Decoration'),(12405,50110,1,'Camera Operator'),(12405,57583,3,'Producer'),(12405,57631,4,'Screenplay'),(12405,141570,8,'Costume Design'),(12405,223245,5,'First Assistant Editor'),(12405,1014915,3,'Casting Associate'),(12405,1106181,11,'Gaffer'),(12405,1338969,6,'Music Editor'),(12405,1338969,6,'Sound Effects Editor'),(12405,1392211,6,'Sound Re-Recording Mixer'),(12405,1393300,6,'Foley'),(12405,1393301,6,'Foley'),(12405,1394004,6,'Sound Re-Recording Mixer'),(12405,1394027,9,'Visual Effects Editor'),(12405,1394101,10,'Visual Effects Producer'),(12405,1394721,10,'Visual Effects Supervisor'),(12405,1406783,11,'Gaffer'),(12405,1421661,5,'Digital Intermediate'),(12405,1421662,5,'Digital Intermediate'),(12405,1426856,1,'First Assistant Camera'),(12405,1526518,7,'Assistant Art Director'),(12405,1538739,8,'Hair Designer'),(12405,1538740,8,'Hair Designer'),(12405,1555160,4,'Novel'),(12405,1555161,7,'Art Direction'),(12405,1555163,7,'Art Direction'),(12405,1555165,7,'Assistant Art Director'),(12405,1555166,7,'Assistant Art Director'),(12405,1555168,10,'Special Effects Supervisor'),(12405,1555170,10,'Visual Effects Producer'),(12405,1555173,9,'Visual Effects Editor'),(12405,1555175,9,'Second Unit Cinematographer'),(12405,1555176,1,'Steadicam Operator'),(12405,1555178,1,'Still Photographer'),(12405,1555180,1,'Still Photographer'),(12405,1555183,1,'First Assistant Camera'),(12405,1555185,1,'First Assistant Camera'),(12405,1555186,8,'Assistant Costume Designer'),(12405,1555187,2,'Script Supervisor'),(12405,1555188,9,'Armorer'),(12405,1555198,6,'ADR & Dubbing'),(12405,1555200,6,'Dolby Consultant'),(12405,1555211,8,'Makeup Artist'),(12405,1555212,5,'First Assistant Editor'),(10998,493,5,'Editor'),(10998,2704,6,'Original Music Composer'),(10998,7270,2,'Director'),(10998,34693,3,'Producer'),(10998,34695,3,'Producer'),(10998,37434,1,'Director of Photography'),(10998,67752,4,'Screenplay'),(14435,13585,3,'Casting'),(14435,31180,3,'Executive Producer'),(14435,27226,2,'Director'),(14435,27226,5,'Editor'),(14435,40513,3,'Executive Producer'),(14435,47102,1,'Director of Photography'),(14435,60102,6,'Original Music Composer'),(14435,61117,4,'Screenplay'),(14435,61899,3,'Executive Producer'),(14435,62824,9,'Makeup Effects'),(14435,62841,3,'Producer'),(14435,31172,7,'Production Design'),(14435,79785,3,'Line Producer'),(14435,103867,3,'Executive Producer'),(14435,966099,4,'Screenplay'),(14435,1312505,8,'Costume Design'),(14435,1452748,3,'Associate Producer'),(14435,1452750,5,'Editor'),(12227,598,3,'Casting'),(12227,751,3,'Casting'),(12227,752,3,'Casting'),(12227,3960,1,'Director of Photography'),(12227,7728,6,'Original Music Composer'),(12227,8876,2,'Director'),(12227,21155,3,'Executive Producer'),(12227,31143,3,'Executive Producer'),(12227,41550,3,'Executive Producer'),(12227,53813,7,'Art Direction'),(12227,58424,3,'Executive Producer'),(12227,68124,4,'Screenplay'),(12227,69526,5,'Editor'),(12227,71759,4,'Novel'),(12227,71760,4,'Screenplay'),(12227,71761,4,'Screenplay'),(12227,71762,3,'Producer'),(12227,1136056,7,'Production Design'),(13824,4485,4,'Screenplay'),(13824,28640,9,'Additional Writing'),(13824,73499,2,'Director'),(15173,78297,2,'Director'),(15173,78297,4,'Writer'),(15173,78298,2,'Director'),(15173,78298,4,'Writer'),(13950,34453,2,'Director'),(12158,776,3,'Producer'),(12158,5140,2,'Director'),(12158,7413,1,'Director of Photography'),(12158,17840,4,'Screenplay'),(12158,28156,6,'Music'),(12158,28401,3,'Executive Producer'),(12158,35581,3,'Executive Producer'),(12158,27226,5,'Editor'),(12158,56189,3,'Producer'),(12158,71486,4,'Screenplay'),(12158,71487,4,'Screenplay'),(11586,1259,6,'Original Music Composer'),(11586,12846,1,'Director of Photography'),(11586,19665,2,'Director'),(11586,19665,3,'Producer'),(11586,25633,5,'Editor'),(11586,11061,7,'Production Design'),(11586,70113,4,'Writer'),(11586,1184780,3,'Producer'),(11586,1316341,9,'Special Effects'),(10008,6995,5,'Editor'),(10008,6225,3,'Executive Producer'),(10008,6226,3,'Executive Producer'),(10008,7783,1,'Director of Photography'),(10008,9410,6,'Sound Re-Recording Mixer'),(10008,40765,1,'Camera Operator'),(10008,13194,5,'Digital Intermediate'),(10008,20691,3,'Executive Producer'),(10008,21224,9,'Special Effects Coordinator'),(10008,47205,3,'Casting'),(10008,56747,3,'Executive Producer'),(10008,56839,3,'Producer'),(10008,61921,2,'Director'),(10008,61921,4,'Author'),(10008,61923,3,'Line Producer'),(10008,61924,3,'Producer'),(10008,61920,4,'Author'),(10008,61925,3,'Producer'),(10008,61926,3,'Executive Producer'),(10008,61927,3,'Producer'),(10008,61928,3,'Executive Producer'),(10008,61929,3,'Producer'),(10008,61930,3,'Executive Producer'),(10008,61932,3,'Producer'),(10008,61934,6,'Original Music Composer'),(10008,61935,7,'Production Design'),(10008,61936,8,'Costume Design'),(10008,112875,6,'Supervising Sound Editor'),(10008,135160,7,'Assistant Art Director'),(10008,229993,6,'Supervising Sound Editor'),(10008,960074,6,'Sound Designer'),(10008,1012025,6,'Sound Designer'),(10008,1334504,7,'Art Department Coordinator'),(10008,1334515,7,'Sculptor'),(10008,1340123,10,'Visual Effects Supervisor'),(10008,1346943,9,'Special Effects Coordinator'),(10008,1348007,10,'Visual Effects Producer'),(10008,1371064,6,'Foley'),(10008,1391692,10,'Visual Effects Producer'),(10008,1399556,3,'Production Manager'),(10008,1399557,7,'Construction Coordinator'),(10008,1399558,5,'Dialogue Editor'),(10008,1399559,6,'Sound Re-Recording Mixer'),(10008,1399560,6,'Foley'),(10008,1399561,9,'Visual Effects Editor'),(10008,1399562,9,'Stunt Coordinator'),(10008,1399563,1,'Still Photographer'),(10008,1399565,1,'Steadicam Operator'),(10008,1399567,9,'Dialect Coach'),(10008,1399568,2,'Script Supervisor'),(10008,1399569,3,'Location Manager'),(12403,3959,3,'Executive Producer'),(12403,9545,3,'Casting'),(12403,9990,7,'Production Design'),(12403,23788,9,'Makeup Effects'),(12403,28239,2,'Director'),(12403,28239,4,'Screenplay'),(12403,46088,3,'Producer'),(12403,54419,3,'Producer'),(12403,54873,3,'Producer'),(12403,59700,3,'Producer'),(12403,60946,3,'Casting'),(12403,72102,3,'Executive Producer'),(12403,72103,3,'Producer'),(12403,72104,3,'Executive Producer'),(12403,72105,3,'Executive Producer'),(12403,72106,3,'Producer'),(12403,72107,5,'Editor'),(12403,72108,8,'Costume Design'),(12403,72109,9,'Post Production Supervisor'),(12403,72110,3,'Production Supervisor'),(12403,72111,3,'Production Supervisor'),(12403,72112,9,'Special Effects'),(12403,72113,10,'VFX Supervisor'),(12403,72117,9,'Stunt Coordinator'),(12403,1447543,10,'Visual Effects'),(34563,51866,2,'Director'),(14557,869,3,'Producer'),(14557,58745,4,'Writer'),(14557,58746,4,'Writer'),(14557,111247,2,'Director'),(14557,1746321,3,'Producer'),(10368,8219,5,'Editor'),(10368,10639,1,'Director of Photography'),(10368,24657,2,'Director'),(10368,24657,4,'Novel'),(10368,63960,3,'Producer'),(10368,65248,3,'Producer'),(10368,65249,6,'Music'),(10368,65250,6,'Music'),(10368,65251,4,'Screenplay'),(10280,3027,4,'Novel'),(10280,15000,3,'Producer'),(10280,46353,6,'Music'),(10280,48311,1,'Director of Photography'),(10280,64796,4,'Screenplay'),(10280,64796,2,'Director'),(10280,64797,3,'Producer'),(10280,64798,5,'Editor'),(12637,1032,2,'Director'),(12637,1047,5,'Editor'),(12637,2046,5,'Editor'),(12637,2554,4,'Screenplay'),(12637,8862,1,'Director of Photography'),(12637,11472,3,'Producer'),(12637,16514,3,'Producer'),(12637,69162,4,'Screenplay'),(12637,73195,5,'Editor'),(34152,5281,2,'Director'),(34152,13602,4,'Writer'),(34152,13603,4,'Writer'),(14434,547,3,'Casting'),(14434,2632,4,'Screenplay'),(14434,2632,2,'Director'),(14434,2632,3,'Producer'),(14434,4909,7,'Set Decoration'),(14434,10548,5,'Editor'),(14434,11652,3,'Producer'),(14434,24192,6,'Music Supervisor'),(14434,28041,8,'Costume Design'),(14434,52849,4,'Screenplay'),(14434,63976,6,'Original Music Composer'),(14434,60870,7,'Production Design'),(14434,1066767,1,'Director of Photography'),(14434,1393558,7,'Leadman'),(11470,20953,6,'Original Music Composer'),(11470,23545,3,'Casting'),(11470,35475,3,'Executive Producer'),(11470,55642,1,'Director of Photography'),(11470,61117,4,'Screenplay'),(11470,64748,5,'Editor'),(11470,69579,2,'Director'),(11470,69585,3,'Producer'),(11470,958703,8,'Costume Design'),(10741,2880,4,'Screenplay'),(10741,2880,2,'Director'),(10741,4173,3,'Executive Producer'),(10741,4140,6,'Original Music Composer'),(10741,8425,5,'Editor'),(10741,16831,3,'Producer'),(10741,42632,1,'Director of Photography'),(10741,66722,3,'Producer'),(10741,66723,3,'Executive Producer'),(10741,66724,3,'Executive Producer'),(10741,66725,3,'Executive Producer'),(10741,66726,3,'Producer'),(10741,66727,3,'Executive Producer'),(24940,7398,4,'Writer'),(24940,54050,2,'Director'),(24940,113194,9,'Stunts'),(24940,1007395,9,'Stunt Coordinator'),(18041,5912,6,'Original Music Composer'),(18041,2953,3,'Casting'),(18041,9043,8,'Costume Design'),(18041,13227,5,'Editor'),(18041,10765,1,'Director of Photography'),(18041,19012,2,'Director'),(18041,50942,4,'Screenplay'),(18041,1463199,7,'Art Direction'),(18041,1467298,7,'Set Decoration'),(18041,1521767,7,'Production Design'),(18041,1799768,7,'Set Decoration'),(28029,4023,3,'Casting'),(28029,3192,3,'Casting'),(28029,3417,2,'Director'),(28029,3417,3,'Producer'),(28029,4483,3,'Producer'),(28029,5328,3,'Casting'),(28029,7496,7,'Production Design'),(28029,9544,3,'Casting'),(28029,14139,1,'Director of Photography'),(28029,20836,6,'Original Music Composer'),(28029,40320,7,'Art Direction'),(28029,51843,3,'Producer'),(28029,56907,5,'Editor'),(28029,59774,3,'Executive Producer'),(28029,60281,3,'Producer'),(28029,65703,3,'Producer'),(28029,71192,3,'Executive Producer'),(28029,132195,4,'Writer'),(28029,234847,3,'Associate Producer'),(28029,1244595,3,'Producer'),(28029,1469622,2,'Script Supervisor'),(28029,1473756,3,'Co-Producer'),(28029,1507112,8,'Costume Design'),(28029,1507113,3,'Associate Producer'),(28029,1507116,11,'Gaffer'),(28029,1523149,7,'Art Department Coordinator'),(14033,56913,2,'Director'),(14033,56913,4,'Writer'),(16899,970,3,'Casting'),(16899,3965,3,'Casting'),(16899,12718,4,'Theatre Play'),(16899,21677,3,'Producer'),(16899,27889,2,'Director'),(16899,27889,4,'Writer'),(16899,31858,5,'Editor'),(16899,52159,3,'Producer'),(16899,1034748,3,'Casting'),(16899,1316159,6,'Music'),(16899,1394783,1,'Director of Photography'),(16899,1436238,2,'Script Supervisor'),(16899,1494596,4,'Writer'),(16899,1494597,3,'Producer'),(16005,2597,5,'Editor'),(16005,3965,3,'Casting'),(16005,3965,3,'Co-Producer'),(16005,16304,3,'Producer'),(16005,16305,3,'Producer'),(16005,6117,1,'Director of Photography'),(16005,19157,7,'Production Design'),(16005,17329,2,'Director'),(16005,17329,4,'Screenplay'),(16005,17329,3,'Producer'),(16005,20292,7,'Production Design'),(16005,24190,6,'Original Music Composer'),(16005,34340,3,'Producer'),(16005,44741,3,'Executive Producer'),(16005,79028,4,'Screenplay'),(16005,79028,3,'Co-Producer'),(16005,231832,8,'Costume Design'),(16005,1034748,3,'Casting'),(16005,1459994,7,'Set Decoration'),(23988,73833,2,'Director'),(23988,73833,4,'Writer'),(10712,3727,3,'Executive Producer'),(10712,1461,3,'Executive Producer'),(10712,1884,3,'Executive Producer'),(10712,2862,3,'Producer'),(10712,6345,1,'Director of Photography'),(10712,7182,6,'Original Music Composer'),(10712,9027,8,'Costume Design'),(10712,16863,4,'Screenplay'),(10712,16863,2,'Director'),(10712,17234,5,'Editor'),(10712,47333,3,'Executive Producer'),(10712,66910,3,'Executive Producer'),(10712,66911,3,'Producer'),(10712,66912,3,'Executive Producer'),(10876,469,6,'Original Music Composer'),(10876,648,2,'Director'),(10876,3311,3,'Casting'),(10876,4249,3,'Casting'),(10876,8307,5,'Editor'),(10876,10788,7,'Art Direction'),(10876,11456,7,'Production Design'),(10876,11460,7,'Set Decoration'),(10876,27038,3,'Producer'),(10876,17749,1,'Director of Photography'),(10876,49345,7,'Supervising Art Director'),(10876,67405,4,'Screenplay'),(10876,958488,8,'Costume Design'),(25208,51864,2,'Director'),(25208,58203,4,'Writer'),(10131,4723,4,'Screenplay'),(10131,5140,4,'Characters'),(10131,13663,3,'Producer'),(10131,13668,3,'Executive Producer'),(10131,16651,5,'Editor'),(10131,16938,2,'Director'),(10131,56891,3,'Producer'),(10131,62022,3,'Executive Producer'),(10131,62896,5,'Editor'),(10131,63920,4,'Screenplay'),(10131,63921,4,'Screenplay'),(10131,63922,6,'Original Music Composer'),(10131,63923,6,'Original Music Composer'),(10131,63924,1,'Director of Photography'),(10131,63925,5,'Editor'),(11967,4501,1,'Director of Photography'),(11967,4700,3,'Executive Producer'),(11967,20801,4,'Screenplay'),(11967,20801,3,'Executive Producer'),(11967,18311,3,'Producer'),(11967,21811,5,'Editor'),(11967,28155,6,'Music'),(11967,56828,2,'Director'),(11967,56828,3,'Producer'),(11967,53558,6,'Music'),(10985,2123,5,'Additional Editing'),(10985,7397,2,'Director'),(10985,7397,3,'Executive Producer'),(10985,7398,3,'Executive Producer'),(10985,13585,3,'Casting'),(10985,8181,3,'Executive Producer'),(10985,8181,3,'Unit Production Manager'),(10985,11814,3,'Producer'),(10985,16493,7,'Art Direction'),(10985,22303,5,'Editor'),(10985,11373,7,'Production Design'),(10985,38413,7,'Set Decoration'),(10985,40593,3,'Executive Producer'),(10985,53840,1,'Director of Photography'),(10985,67966,4,'Writer'),(10985,70698,3,'Producer'),(10985,70700,3,'Producer'),(10985,73137,6,'Music'),(10985,73137,9,'Executive Music Producer'),(10985,957115,8,'Costume Design'),(10985,1015925,2,'Script Supervisor'),(10985,1321665,8,'Makeup Artist'),(10985,1438381,8,'Hairstylist'),(15489,49904,4,'Writer'),(15489,49905,4,'Writer'),(15489,58059,2,'Director'),(15250,76705,2,'Director'),(15250,76705,4,'Screenplay'),(22345,12698,2,'Director'),(22345,12698,4,'Screenplay'),(22345,1394970,4,'Screenplay'),(11186,1919,1,'Director of Photography'),(11186,5912,6,'Original Music Composer'),(11186,4981,5,'Editor'),(11186,13596,3,'Producer'),(11186,14654,3,'Executive Producer'),(11186,65677,4,'Screenplay'),(11186,65678,2,'Director'),(25462,66116,2,'Director'),(25462,66116,4,'Writer'),(10691,2214,6,'Original Music Composer'),(10691,7232,3,'Casting'),(10691,7530,3,'Producer'),(10691,57082,2,'Director'),(10691,13030,9,'Special Effects Coordinator'),(10691,17233,5,'Editor'),(10691,19466,7,'Set Decoration'),(10691,20540,3,'Casting'),(10691,37040,7,'Production Design'),(10691,36605,8,'Costume Design'),(10691,52088,7,'Art Direction'),(10691,51985,3,'Executive Producer'),(10691,54047,4,'Screenplay'),(10691,54048,4,'Screenplay'),(10691,57126,1,'Director of Photography'),(10691,58084,3,'Producer'),(10691,58085,3,'Producer'),(10691,1187187,2,'Script Supervisor'),(10691,1541694,6,'Music Supervisor'),(10691,1564351,6,'Music Supervisor'),(10691,1607164,3,'Co-Producer'),(10691,1607165,5,'First Assistant Editor'),(14577,72450,2,'Director'),(14577,77075,4,'Writer'),(14577,111745,4,'Writer'),(11592,7728,6,'Original Music Composer'),(11592,10367,2,'Director'),(11592,10367,4,'Writer'),(11592,16534,5,'Editor'),(11592,56593,1,'Director of Photography'),(11592,1809723,3,'Producer'),(16406,869,3,'Producer'),(16406,4500,6,'Original Music Composer'),(16406,12374,3,'Executive Producer'),(16406,18457,3,'Casting'),(16406,22060,7,'Production Design'),(16406,22107,8,'Costume Design'),(16406,33651,1,'Director of Photography'),(16406,41549,2,'Director'),(16406,41549,4,'Screenplay'),(16406,41553,5,'Editor'),(16406,64339,7,'Set Decoration'),(16406,982096,4,'Screenplay'),(16406,983119,7,'Art Direction'),(16406,1183452,1,'Still Photographer'),(16406,1399521,2,'Script Supervisor'),(16406,1561882,6,'Production Sound Mixer'),(19052,34692,2,'Director'),(19052,34692,4,'Writer'),(13074,3962,8,'Costume Design'),(13074,4232,3,'Producer'),(13074,18695,1,'Director of Photography'),(13074,20206,3,'Producer'),(13074,21526,2,'Director'),(13074,21526,3,'Producer'),(13074,37038,6,'Music'),(13074,54781,4,'Screenplay'),(13074,68390,3,'Producer'),(13074,63784,3,'Casting'),(13074,71346,4,'Screenplay'),(13074,78981,3,'Casting'),(13074,957129,7,'Production Design'),(13074,1035444,5,'Editor'),(13074,1314170,3,'Casting'),(13074,1389664,8,'Makeup Department Head'),(13074,1400425,2,'Script Supervisor'),(13074,1426727,7,'Art Direction'),(13074,1426735,7,'Set Decoration'),(28211,5359,6,'Original Music Composer'),(28211,8858,3,'Producer'),(28211,19949,3,'Producer'),(28211,19950,3,'Producer'),(28211,19955,8,'Costume Design'),(28211,35332,5,'Editor'),(28211,45841,3,'Casting'),(28211,48583,4,'Author'),(28211,52443,3,'Executive Producer'),(28211,52448,3,'Executive Producer'),(28211,54251,3,'Executive Producer'),(28211,55612,1,'Director of Photography'),(28211,56205,2,'Director'),(28211,57601,3,'Producer'),(28211,67796,4,'Screenplay'),(28211,67796,3,'Producer'),(28211,90692,6,'Sound Designer'),(28211,100120,6,'Sound Re-Recording Mixer'),(28211,224387,3,'Casting'),(28211,949132,3,'Producer'),(28211,958043,7,'Production Design'),(28211,968632,3,'Executive Producer'),(28211,969757,3,'Executive Producer'),(28211,1117879,3,'Producer'),(28211,1117880,3,'Line Producer'),(24227,60705,4,'Writer'),(24227,82033,2,'Director'),(17043,62,3,'Executive Producer'),(17043,20842,3,'Producer'),(17043,57161,1,'Director of Photography'),(17043,71338,4,'Writer'),(17043,75517,5,'Editor'),(17043,935032,3,'Producer'),(17043,944713,2,'Director'),(17043,944713,3,'Producer'),(17043,944713,4,'Writer'),(17043,958084,6,'Original Music Composer'),(17043,958136,5,'Editor'),(17043,1156393,3,'Line Producer'),(13435,8221,7,'Art Direction'),(13435,1301,1,'Director of Photography'),(13435,3987,5,'Editor'),(13435,5292,2,'Director'),(13435,5359,6,'Original Music Composer'),(13435,5508,7,'Production Design'),(13435,11375,7,'Set Decoration'),(13435,15573,8,'Costume Design'),(13435,119730,4,'Writer'),(17187,52405,2,'Director'),(17187,254757,4,'Screenplay'),(17187,408745,4,'Writer'),(26688,45841,3,'Casting'),(26688,62157,4,'Writer'),(26688,62159,3,'Producer'),(26688,68770,4,'Writer'),(26688,130837,2,'Director'),(26688,224387,3,'Casting'),(26688,938041,3,'Producer'),(26688,959274,1,'Director of Photography'),(26688,965416,4,'Writer'),(26688,1077561,6,'Music'),(26688,1319382,8,'Costume Design'),(26688,1319383,7,'Production Design'),(26688,1319384,8,'Makeup Department Head'),(14574,393,6,'Supervising Sound Editor'),(14574,1729,6,'Original Music Composer'),(14574,6883,6,'Music Editor'),(14574,7659,6,'Sound Re-Recording Mixer'),(14574,10968,3,'Producer'),(14574,11456,7,'Production Design'),(14574,15726,3,'Executive Producer'),(14574,21655,1,'Director of Photography'),(14574,19993,3,'Casting'),(14574,22968,8,'Costume Design'),(14574,23772,7,'Supervising Art Director'),(14574,25137,3,'Casting'),(14574,28841,5,'Editor'),(14574,42469,3,'Casting'),(14574,55299,2,'Director'),(14574,55299,4,'Screenplay'),(14574,55299,3,'Executive Producer'),(14574,70609,3,'Line Producer'),(14574,77995,4,'Novel'),(14574,223244,9,'Post Production Supervisor'),(14574,1103613,8,'Hairstylist'),(14574,1117338,3,'Co-Producer'),(14574,1183787,10,'Special Effects Supervisor'),(14574,1191425,7,'Set Decoration'),(14574,1298547,3,'Unit Manager'),(14574,1319625,8,'Makeup Designer'),(14574,1319625,8,'Hair Designer'),(14574,1367566,2,'Script Supervisor'),(14574,1395709,6,'Sound Re-Recording Mixer'),(14574,1399628,9,'Property Master'),(14574,1399630,8,'Makeup Artist'),(14574,1401273,9,'Unit Publicist'),(14574,1406759,10,'Visual Effects Supervisor'),(14574,1406764,10,'Visual Effects Producer'),(14574,1407666,5,'Dialogue Editor'),(14574,1421652,1,'Camera Operator'),(14574,1428478,9,'Scenic Artist'),(14574,1428913,8,'Makeup Artist'),(14574,1428913,8,'Hairstylist'),(14574,1432612,10,'Visual Effects Coordinator'),(14574,1503680,8,'Assistant Costume Designer'),(14574,1536574,10,'Special Effects Supervisor'),(14574,1591383,6,'Boom Operator'),(14574,1618705,1,'Still Photographer'),(14574,1628246,7,'Art Direction'),(14574,1640088,9,'Stunt Coordinator'),(14574,1685991,6,'Sound Mixer'),(14574,1728071,3,'Production Manager'),(14574,1728073,3,'Location Manager'),(14574,1728074,3,'Production Coordinator'),(14574,1728075,3,'Production Coordinator'),(14574,1728086,1,'Steadicam Operator'),(14574,1728088,7,'Art Department Coordinator'),(14574,1728089,7,'Art Direction'),(14574,1728090,8,'Costume Supervisor'),(21612,39104,2,'Director'),(21612,59113,4,'Writer'),(23631,2294,4,'Screenplay'),(23631,2294,2,'Director'),(23631,2294,5,'Editor'),(23631,2294,3,'Producer'),(23631,5911,3,'Producer'),(23631,5914,3,'Casting'),(23631,20490,8,'Costume Design'),(23631,21478,3,'Executive Producer'),(23631,34340,3,'Producer'),(23631,61847,2,'Director'),(23631,72030,5,'Editor'),(23631,572119,4,'Screenplay'),(23631,1014919,1,'Director of Photography'),(23631,1014920,3,'Casting'),(23631,1014922,6,'Original Music Composer'),(23631,1014923,3,'Executive Producer'),(23631,1014924,3,'Executive Producer'),(23631,1014925,3,'Executive Producer'),(12144,1,3,'Executive Producer'),(12144,488,3,'Executive Producer'),(12144,1729,6,'Original Music Composer'),(12144,13585,3,'Casting'),(12144,12881,3,'Producer'),(12144,39056,3,'Producer'),(12144,40345,2,'Director'),(12144,40345,7,'Production Design'),(12144,40345,3,'Producer'),(12144,40346,4,'Story'),(12144,40347,5,'Editor'),(12144,40347,6,'Supervising Sound Editor'),(12144,53344,5,'Assistant Editor'),(12144,69613,5,'Editor'),(12144,71446,4,'Story'),(12144,72405,4,'Screenplay'),(12144,1399326,6,'Music Editor'),(12144,1447298,10,'Animation'),(12144,1447355,10,'Animation'),(12144,1448087,10,'Animation'),(12144,1454512,5,'Assistant Editor'),(12144,1463245,2,'Layout'),(11658,64883,4,'Screenplay'),(11658,64883,2,'Director'),(11658,64886,6,'Original Music Composer'),(11658,64887,5,'Editor'),(11658,1293675,4,'Screenplay'),(11658,1294392,8,'Costume Design'),(11658,1296335,4,'Screenplay'),(11658,1296336,3,'Producer'),(11658,1296337,3,'Producer'),(11658,1296338,9,'Cinematography'),(11658,1296339,9,'Lighting Camera'),(11658,1296340,8,'Costume Design'),(11658,1296341,5,'Editor'),(10136,911,3,'Producer'),(10136,3985,5,'Editor'),(10136,6490,1,'Director of Photography'),(10136,7727,10,'Visual Effects'),(10136,12964,2,'Director'),(10136,35838,6,'Music'),(10136,11302,3,'Producer'),(10136,57396,4,'Screenplay'),(10136,63949,3,'Executive Producer'),(10136,63950,3,'Executive Producer'),(10611,5287,6,'Original Music Composer'),(10611,13931,1,'Director of Photography'),(10611,20400,2,'Director'),(10611,65135,3,'Executive Producer'),(10611,66116,4,'Screenplay'),(10611,66116,3,'Producer'),(10611,66117,4,'Screenplay'),(10611,66118,4,'Screenplay'),(10611,66119,3,'Executive Producer'),(10611,66120,3,'Producer'),(10611,66121,3,'Producer'),(10611,1741915,5,'Editor'),(13335,11876,5,'Editor'),(13335,56324,1,'Director of Photography'),(13335,57430,3,'Executive Producer'),(13335,68843,2,'Director'),(13335,68843,4,'Screenplay'),(13335,68844,2,'Director'),(13335,68844,4,'Screenplay'),(10269,5056,5,'Editor'),(10269,10639,1,'Director of Photography'),(10269,10400,2,'Director'),(10269,10400,4,'Screenplay'),(10269,10400,3,'Producer'),(10269,10934,6,'Original Music Composer'),(10269,64626,4,'Screenplay'),(10269,66754,3,'Executive Producer'),(10269,66755,3,'Producer'),(17130,57691,2,'Director'),(17130,25539,4,'Writer'),(17130,1746321,3,'Executive Producer'),(11202,1776,4,'Screenplay'),(11202,1776,4,'Screenstory'),(11202,83791,9,'Second Unit'),(11202,1760,6,'Original Music Composer'),(11202,3031,1,'Additional Camera'),(11202,3258,6,'Sound Re-Recording Mixer'),(11202,8928,2,'Assistant Director'),(11202,9585,3,'Casting'),(11202,11443,5,'Editor'),(11202,12277,4,'Screenplay'),(11202,12277,4,'Screenstory'),(11202,12344,9,'Second Unit Cinematographer'),(11202,13265,2,'Director'),(11202,14005,7,'Art Direction'),(11202,14526,8,'Makeup Department Head'),(11202,18638,10,'Visual Effects'),(11202,18639,10,'Visual Effects'),(11202,18656,6,'Sound Re-Recording Mixer'),(11202,19102,1,'Director of Photography'),(11202,35154,7,'Art Direction'),(11202,38242,3,'Producer'),(11202,40896,9,'Second Unit Cinematographer'),(11202,47696,7,'Assistant Art Director'),(11202,65238,1,'First Assistant Camera'),(11202,68413,4,'Novel'),(11202,68583,4,'Novel'),(11202,69000,2,'Assistant Director'),(11202,91245,6,'Orchestrator'),(11202,137190,7,'Supervising Art Director'),(11202,195854,9,'Stunts'),(11202,217763,9,'Stunt Coordinator'),(11202,559902,8,'Makeup Artist'),(11202,559904,3,'Unit Production Manager'),(11202,559910,9,'Special Effects'),(11202,948764,3,'Associate Producer'),(11202,950567,3,'Unit Production Manager'),(11202,957314,7,'Set Decoration'),(11202,957815,7,'Set Decoration'),(11202,1104353,9,'Post Production Supervisor'),(11202,1338830,6,'Sound'),(11202,1342501,2,'Assistant Director'),(11202,1384146,6,'Supervising Sound Editor'),(11202,1384149,6,'Sound Re-Recording Mixer'),(11202,1394775,7,'Other'),(11202,1434205,9,'Property Master'),(11202,1537178,9,'Transportation Coordinator'),(11202,1544004,7,'Painter'),(11202,1563007,1,'First Assistant Camera'),(11202,1578736,3,'Production Manager'),(11202,1583351,3,'Unit Production Manager'),(11202,1597780,6,'Music'),(13812,11877,7,'Production Design'),(13812,13061,3,'Casting'),(13812,21035,3,'Producer'),(13812,21036,3,'Producer'),(13812,59932,3,'Casting'),(13812,60157,8,'Costume Design'),(13812,77147,2,'Director'),(13812,77147,4,'Writer'),(13812,142520,4,'Writer'),(13812,959274,1,'Director of Photography'),(13812,1316292,8,'Makeup Department Head'),(19084,22145,7,'Production Design'),(19084,73834,3,'Producer'),(19084,161888,4,'Writer'),(19084,183417,4,'Writer'),(19084,234818,2,'Director'),(19084,1741915,5,'Editor'),(10437,3557,4,'Novel'),(10437,7908,3,'Executive Producer'),(10437,65614,3,'Line Producer'),(10437,12940,5,'Editor'),(10437,63964,6,'Original Music Composer'),(10437,64183,3,'Producer'),(10437,64184,4,'Screenplay'),(10437,65298,2,'Director'),(10437,65298,3,'Producer'),(10437,1385880,1,'Director of Photography'),(10220,2952,3,'Casting'),(10220,16305,4,'Screenplay'),(10220,6626,1,'Director of Photography'),(10220,19155,6,'Original Music Composer'),(10220,20787,8,'Costume Design'),(10220,21053,2,'Director'),(10220,21963,7,'Production Design'),(10220,34849,3,'Producer'),(10220,34857,3,'Producer'),(10220,55178,5,'Editor'),(10220,65754,7,'Set Decoration'),(10220,275201,7,'Art Direction'),(10220,1447164,9,'Unit Publicist'),(10220,1468013,2,'Script Supervisor'),(31915,2027,6,'Original Music Composer'),(31915,11834,4,'Writer'),(31915,13776,2,'Director'),(31915,14094,1,'Director of Photography'),(31915,57708,3,'Producer'),(11601,508,4,'Screenplay'),(11601,508,2,'Director'),(11601,1213,6,'Original Music Composer'),(11601,12415,4,'Novel'),(11601,17765,1,'Director of Photography'),(11601,17766,5,'Editor'),(11601,35974,3,'Producer'),(11601,37926,3,'Producer'),(11354,2949,6,'Original Music Composer'),(11354,6890,3,'Executive Producer'),(11354,6891,3,'Executive Producer'),(11354,6892,3,'Executive Producer'),(11354,6893,3,'Producer'),(11354,6895,3,'Executive Producer'),(11354,17254,5,'Editor'),(11354,20065,1,'Director of Photography'),(11354,24173,2,'Director'),(11354,24173,4,'Screenplay'),(11354,24173,4,'Writer'),(11354,24176,3,'Producer'),(11354,24186,5,'Editor'),(11354,37436,3,'Producer'),(16241,1156,3,'Casting'),(16241,1657,1,'Director of Photography'),(16241,1760,6,'Original Music Composer'),(16241,8524,7,'Art Direction'),(16241,9955,8,'Costume Design'),(16241,10498,7,'Set Decoration'),(16241,11997,5,'Editor'),(16241,13019,4,'Novel'),(16241,13265,2,'Director'),(16241,14005,7,'Production Design'),(16241,53387,4,'Screenplay'),(16241,1338832,6,'Sound Re-Recording Mixer'),(16241,1342252,6,'Sound Editor'),(16241,1535412,2,'Script Supervisor'),(16241,1555022,6,'Sound Re-Recording Mixer'),(16241,1555023,6,'Sound Editor'),(16241,1555024,6,'Music Editor'),(16241,1555025,1,'Still Photographer'),(14191,5508,7,'Production Design'),(14191,31856,1,'Director of Photography'),(14191,33437,3,'Producer'),(14191,37757,6,'Original Music Composer'),(14191,51680,4,'Novel'),(14191,53014,4,'Screenplay'),(14191,63716,4,'Screenplay'),(14191,957731,5,'Editor'),(14191,1223175,2,'Director'),(14191,1328165,3,'Co-Producer'),(14191,1391707,7,'Art Direction'),(14191,1391712,7,'Set Decoration'),(14191,1412747,11,'Gaffer'),(14191,1470775,8,'Costume Design'),(14191,1470779,2,'Script Supervisor'),(26710,232937,2,'Director'),(34549,49903,2,'Director'),(34549,62056,4,'Screenplay'),(34549,62057,4,'Screenplay'),(34549,62058,4,'Screenplay'),(28353,66116,4,'Screenplay'),(28353,229097,2,'Director'),(14976,1635,5,'Editor'),(14976,16294,2,'Director'),(14976,16294,3,'Producer'),(14976,4909,7,'Set Decoration'),(14976,6117,1,'Director of Photography'),(14976,20569,7,'Production Design'),(14976,23485,3,'Producer'),(14976,27095,3,'Executive Producer'),(14976,58855,3,'Casting'),(14976,53478,3,'Executive Producer'),(14976,280800,3,'Producer'),(14976,938831,4,'Writer'),(14976,965129,6,'Original Music Composer'),(14976,965130,6,'Original Music Composer'),(14976,970199,7,'Art Direction'),(14976,1031586,3,'Producer'),(14976,1265275,3,'Producer'),(14976,1265276,3,'Producer'),(14976,1265277,3,'Producer'),(14976,1265278,3,'Producer'),(11027,1255,4,'Screenplay'),(11027,3222,3,'Producer'),(11027,6357,6,'Original Music Composer'),(11027,11905,1,'Director of Photography'),(11027,13488,5,'Editor'),(11027,14971,4,'Novel'),(11027,19450,2,'Director'),(11027,19450,3,'Producer'),(11027,29875,3,'Executive Producer'),(14299,14386,3,'Executive Producer'),(14299,19464,1,'Director of Photography'),(14299,81727,2,'Director'),(14299,81727,4,'Writer'),(14299,946759,3,'Producer'),(14299,1260768,3,'Producer'),(19419,562,6,'Supervising Sound Editor'),(19419,6410,3,'Casting'),(19419,7130,2,'Director'),(19419,7130,4,'Writer'),(19419,7131,2,'Director'),(19419,7131,4,'Writer'),(19419,12706,7,'Production Design'),(19419,12940,5,'Editor'),(19419,35838,6,'Original Music Composer'),(19419,56988,1,'Director of Photography'),(19419,112609,6,'Sound Re-Recording Mixer'),(19419,143919,6,'Sound Re-Recording Mixer'),(19419,223991,7,'Art Direction'),(19419,1049325,5,'Dialogue Editor'),(19419,1342625,6,'Sound Re-Recording Mixer'),(19419,1394973,1,'Still Photographer'),(19419,1397300,2,'Script Supervisor'),(19419,1398120,6,'Supervising Sound Editor'),(19419,1561882,6,'Production Sound Mixer'),(19419,1562797,9,'Special Effects Coordinator'),(19419,1562799,6,'Boom Operator'),(19419,1562800,3,'Production Coordinator'),(19419,1562801,3,'Production Coordinator'),(12088,3119,6,'Sound Designer'),(12088,598,3,'Casting'),(12088,2043,3,'Producer'),(12088,3502,8,'Costume Design'),(12088,9357,9,'Stunt Coordinator'),(12088,15445,6,'Supervising Sound Editor'),(12088,22300,7,'Art Direction'),(12088,27991,2,'Director'),(12088,21374,3,'Casting'),(12088,24890,6,'Music'),(12088,28240,1,'Director of Photography'),(12088,28240,1,'Camera Operator'),(12088,29769,7,'Production Design'),(12088,113090,6,'Foley'),(12088,59774,3,'Executive Producer'),(12088,64507,3,'Producer'),(12088,68226,4,'Screenplay'),(12088,68227,4,'Screenplay'),(12088,68228,4,'Screenplay'),(12088,68229,4,'Screenplay'),(12088,92380,5,'Dialogue Editor'),(12088,71192,3,'Executive Producer'),(12088,71193,3,'Executive Producer'),(12088,71194,5,'Editor'),(12088,75456,5,'First Assistant Editor'),(12088,106253,6,'Supervising Sound Editor'),(12088,119158,10,'Visual Effects Supervisor'),(12088,143919,6,'Sound Re-Recording Mixer'),(12088,1195358,8,'Costume Supervisor'),(12088,1304381,7,'Art Direction'),(12088,1306838,8,'Hairstylist'),(12088,1342625,6,'Sound Re-Recording Mixer'),(12088,1392737,2,'Script Supervisor'),(12088,1398177,6,'Sound Effects Editor'),(12088,1428595,6,'Sound Effects Editor'),(12088,1447014,8,'Makeup Artist'),(12088,1447014,8,'Hairstylist'),(12088,1447016,8,'Hairstylist'),(12088,1447017,8,'Hairstylist'),(12088,1447018,7,'Art Department Coordinator'),(12088,1447019,7,'Construction Foreman'),(12088,1447020,9,'Scenic Artist'),(12088,1447021,9,'Scenic Artist'),(12088,1447022,9,'Scenic Artist'),(12088,1447068,6,'Music Editor'),(12088,1447076,10,'Visual Effects Producer'),(12088,1447077,1,'Steadicam Operator'),(12088,1447078,8,'Costume Supervisor'),(12088,1447079,5,'First Assistant Editor'),(14799,13524,2,'Director'),(14799,13524,4,'Writer'),(14799,26510,4,'Writer'),(31246,1049,7,'Production Design'),(31246,3276,3,'Casting'),(31246,16464,1,'Director of Photography'),(31246,10809,3,'Producer'),(31246,10809,3,'Unit Production Manager'),(31246,47976,4,'Writer'),(31246,59710,8,'Costume Design'),(31246,60102,6,'Music'),(31246,62702,5,'Editor'),(31246,62706,5,'Editor'),(31246,64815,2,'Director'),(31246,178528,6,'Music'),(31246,945599,3,'Executive Producer'),(31246,947926,3,'Executive Producer'),(31246,960748,3,'Co-Producer'),(31246,1292850,3,'Producer'),(31246,1341559,7,'Set Decoration'),(31246,1416089,3,'Production Supervisor'),(31246,1451615,3,'Casting Associate'),(31246,1460785,2,'Script Supervisor'),(31246,1460790,3,'Location Manager'),(31246,1733134,3,'Casting Assistant'),(31246,1775940,7,'Art Direction'),(31246,1775945,8,'Costume Design'),(31246,1775947,9,'Post Production Supervisor'),(31246,1775948,7,'Set Designer'),(31246,1775950,3,'Casting Assistant'),(31246,1775952,7,'Location Scout'),(31246,1775953,7,'Location Scout'),(31246,1775955,3,'Production Coordinator'),(10944,4023,3,'Casting'),(10944,512,3,'Producer'),(10944,647,1,'Director of Photography'),(10944,6392,8,'Costume Design'),(10944,2227,3,'Producer'),(10944,3192,3,'Casting'),(10944,5328,3,'Casting'),(10944,6373,3,'Executive Producer'),(10944,6391,7,'Production Design'),(10944,10757,4,'Screenplay'),(10944,10757,2,'Director'),(10944,15431,8,'Makeup Artist'),(10944,43528,6,'Original Music Composer'),(10944,61630,5,'Editor'),(10944,67582,4,'Screenplay'),(10944,67582,4,'Novel'),(10944,67583,4,'Screenplay'),(10944,67584,3,'Executive Producer'),(10944,75485,8,'Makeup Designer'),(10944,548849,7,'Art Direction'),(10944,958931,7,'Set Decoration'),(10944,992965,2,'Script Supervisor'),(10944,1525544,8,'Hair Department Head'),(10944,1525545,7,'Art Department Coordinator'),(10944,1525546,8,'Seamstress'),(10362,17453,1,'Director of Photography'),(10362,20063,3,'Producer'),(10362,20561,4,'Screenplay'),(10362,20561,2,'Director'),(10362,20561,3,'Producer'),(10362,20567,3,'Executive Producer'),(10362,20568,5,'Editor'),(10362,31515,3,'Executive Producer'),(10362,31520,3,'Executive Producer'),(10362,60187,3,'Producer'),(10362,80788,3,'Co-Producer'),(10362,230691,3,'Executive Producer'),(10362,1133010,4,'Writer'),(10362,1319040,3,'Co-Producer'),(14778,64061,2,'Director'),(10212,4023,3,'Casting'),(10212,1586,3,'Producer'),(10212,1886,4,'Screenplay'),(10212,3192,3,'Casting'),(10212,5328,3,'Casting'),(10212,9821,7,'Art Direction'),(10212,9822,7,'Art Direction'),(10212,10968,3,'Producer'),(10212,10759,6,'Music'),(10212,14139,1,'Director of Photography'),(10212,23319,7,'Art Direction'),(10212,36133,7,'Production Design'),(10212,41376,5,'Editor'),(10212,42617,2,'Director'),(10212,64188,6,'Music'),(10212,119116,7,'Set Decoration'),(10212,1410205,2,'Script Supervisor'),(10212,1419189,7,'Art Department Coordinator'),(10212,1523151,7,'Supervising Art Director'),(10212,1523152,9,'Special Effects Coordinator'),(16857,36698,4,'Writer'),(16857,42518,2,'Director'),(16857,61239,4,'Writer'),(16857,1376073,4,'Novel'),(15907,4500,6,'Music'),(15907,2986,3,'Executive Producer'),(15907,56909,4,'Writer'),(15907,68212,2,'Director'),(15907,111181,6,'Music'),(15907,161881,4,'Writer'),(15907,1219528,4,'Writer'),(15907,1350294,4,'Writer'),(15907,1350295,4,'Writer'),(15907,1350297,4,'Writer'),(13079,78118,2,'Director'),(13079,136130,4,'Writer'),(13079,1279696,4,'Writer'),(12479,4140,6,'Original Music Composer'),(12479,5506,1,'Director of Photography'),(12479,10419,5,'Editor'),(12479,21220,3,'Producer'),(12479,28154,3,'Producer'),(12479,72427,2,'Director'),(12479,1384517,4,'Novel'),(10133,1589,6,'Original Music Composer'),(10133,5877,2,'Director'),(10133,5908,1,'Director of Photography'),(10133,18350,3,'Producer'),(10133,57048,3,'Producer'),(10133,58071,3,'Executive Producer'),(10133,63928,4,'Screenplay'),(10133,63929,3,'Executive Producer'),(10133,63930,3,'Producer'),(10133,63931,3,'Producer'),(10133,63932,5,'Editor'),(21345,20638,3,'Producer'),(21345,64487,3,'Producer'),(21345,92015,2,'Director'),(21345,92015,4,'Writer'),(21345,92016,6,'Original Music Composer'),(21345,92017,1,'Director of Photography'),(21345,92018,5,'Editor'),(21345,1168129,2,'Script Supervisor'),(21345,1335456,3,'Producer'),(21345,1335457,3,'Producer'),(21345,1335458,3,'Producer'),(21345,1410608,7,'Production Design'),(26466,19662,3,'Casting'),(26466,31136,3,'Producer'),(26466,37281,3,'Casting'),(26466,41041,2,'Director'),(26466,41041,4,'Writer'),(26466,41845,3,'Producer'),(26466,41846,6,'Original Music Composer'),(26466,41535,5,'Editor'),(26466,56020,3,'Producer'),(26466,61627,7,'Production Design'),(26466,75098,6,'Supervising Sound Editor'),(26466,75101,5,'Dialogue Editor'),(26466,75153,10,'Special Effects Supervisor'),(26466,92736,3,'Executive Producer'),(26466,126318,1,'Director of Photography'),(26466,993394,3,'Executive Producer'),(26466,1155652,3,'Line Producer'),(26466,1157610,3,'Associate Producer'),(26466,1157611,3,'Executive Producer'),(26466,1157612,3,'Executive Producer'),(26466,1195356,3,'Casting'),(26466,1238615,9,'Stunt Coordinator'),(26466,1318478,8,'Costume Design'),(26466,1323252,7,'Set Decoration'),(26466,1323257,8,'Costume Supervisor'),(26466,1340125,6,'Music Editor'),(26466,1346939,6,'Supervising Dialogue Editor'),(26466,1391707,7,'Art Direction'),(26466,1391709,7,'Art Department Coordinator'),(26466,1403728,2,'Script Supervisor'),(26466,1426330,10,'Visual Effects Supervisor'),(26466,1553486,6,'Music Supervisor'),(26466,1814936,8,'Key Makeup Artist'),(26466,1814948,9,'Visual Effects Editor'),(13889,5026,2,'Director'),(13889,5026,4,'Writer'),(13889,70129,1,'Director of Photography'),(13889,70130,1,'Director of Photography'),(13889,71029,6,'Original Music Composer'),(18530,8320,6,'Original Music Composer'),(18530,12491,4,'Novel'),(18530,19952,1,'Director of Photography'),(18530,37086,3,'Producer'),(18530,24178,3,'Producer'),(18530,47204,5,'Editor'),(18530,53097,3,'Producer'),(18530,83224,2,'Director'),(18530,83224,4,'Writer'),(18530,1318447,7,'Production Design'),(18530,1320302,3,'Producer'),(18530,1320303,3,'Producer'),(11887,21794,5,'Editor'),(11887,38700,3,'Casting'),(11887,40254,4,'Writer'),(11887,57614,3,'Producer'),(11887,65310,2,'Director'),(11887,67603,3,'Producer'),(11887,71277,1,'Director of Photography'),(12094,5953,3,'Producer'),(12094,9656,3,'Producer'),(12094,31094,3,'Executive Producer'),(12094,56578,2,'Director'),(12094,56578,3,'Producer'),(12094,56578,4,'Writer'),(12094,56580,1,'Director of Photography'),(12094,61432,3,'Executive Producer'),(12094,61437,3,'Executive Producer'),(12094,61440,1,'Director of Photography'),(12094,61441,1,'Director of Photography'),(12094,61442,5,'Editor'),(12094,61443,5,'Editor'),(12094,1371036,3,'Unit Manager'),(12094,1746321,3,'Executive Producer'),(10377,1721,5,'Editor'),(10377,6801,7,'Set Decoration'),(10377,9573,1,'Director of Photography'),(10377,14712,6,'Original Music Composer'),(10377,14089,4,'Screenplay'),(10377,14089,3,'Producer'),(10377,18344,3,'Producer'),(10377,21217,2,'Director'),(10377,22008,7,'Production Design'),(10377,22009,7,'Art Direction'),(10377,56972,5,'Editor'),(10377,1322504,8,'Costume Design'),(10377,1448828,7,'Art Direction'),(10748,472,6,'Sound Designer'),(10748,4757,3,'Executive Producer'),(10748,17792,5,'Editor'),(10748,21677,2,'Director'),(10748,21677,3,'Executive Producer'),(10748,23424,3,'Casting'),(10748,24206,4,'Screenplay'),(10748,24208,4,'Screenplay'),(10748,29909,3,'Executive Producer'),(10748,46863,6,'Music'),(10748,53526,7,'Production Design'),(10748,56710,2,'Director'),(10748,56710,3,'Executive Producer'),(10748,68333,1,'Director of Photography'),(10748,66551,8,'Costume Design'),(10748,68334,3,'Executive Producer'),(10229,1899,3,'Producer'),(10229,4588,3,'Executive Producer'),(10229,11506,1,'Director of Photography'),(10229,18350,3,'Producer'),(10229,20739,2,'Director'),(10229,20744,6,'Original Music Composer'),(10229,35665,3,'Executive Producer'),(10229,81295,4,'Writer'),(10229,56909,4,'Screenplay'),(10229,57048,3,'Executive Producer'),(10229,57087,5,'Editor'),(10229,58071,3,'Executive Producer'),(10229,64172,4,'Screenplay'),(10229,1749202,3,'Associate Producer'),(22804,2145,3,'Producer'),(22804,2146,3,'Producer'),(22804,2147,3,'Producer'),(22804,2148,6,'Music'),(22804,2149,9,'Cinematography'),(22804,2150,2,'Director'),(22804,2678,3,'Casting'),(22804,51021,4,'Writer'),(22804,51023,4,'Writer'),(22804,51035,8,'Costume Design'),(22804,962731,7,'Production Design'),(22804,1317673,7,'Art Direction'),(10156,597,3,'Casting'),(10156,598,3,'Casting'),(10156,719,6,'Original Music Composer'),(10156,1765,7,'Production Design'),(10156,9582,5,'Editor'),(10156,14639,2,'Director'),(10156,14639,4,'Screenplay'),(10156,14639,3,'Producer'),(10156,22302,3,'Producer'),(10156,56943,1,'Director of Photography'),(10156,76156,3,'Producer'),(10156,156607,3,'Producer'),(12837,2888,3,'Producer'),(12837,4140,6,'Original Music Composer'),(12837,7200,3,'Producer'),(12837,9575,3,'Executive Producer'),(12837,27039,3,'Casting'),(12837,27041,8,'Costume Design'),(12837,17749,1,'Director of Photography'),(12837,17863,6,'Music Supervisor'),(12837,11005,7,'Set Decoration'),(12837,46080,3,'Producer'),(12837,51868,5,'Editor'),(12837,60478,7,'Production Design'),(12837,60501,3,'Casting'),(12837,60504,3,'Casting'),(12837,60503,3,'Casting'),(12837,71947,4,'Screenplay'),(12837,71947,2,'Director'),(12837,74004,4,'Novel'),(12837,74581,3,'Producer'),(12837,91836,9,'Stunt Coordinator'),(12837,964601,8,'Costume Supervisor'),(12837,1404230,1,'Still Photographer'),(12837,1424894,8,'Hair Department Head'),(12837,1526464,8,'Makeup Department Head'),(12837,1536258,2,'Script Supervisor'),(12837,1536260,11,'Gaffer'),(17708,69499,4,'Writer'),(17708,123694,2,'Director'),(17708,1173438,4,'Writer'),(13937,869,3,'Producer'),(13937,1150,2,'Director'),(13937,1150,4,'Screenplay'),(13937,1258,1,'Director of Photography'),(13937,4951,5,'Editor'),(13937,10628,7,'Art Direction'),(13937,12568,7,'Set Decoration'),(13937,12579,1,'Still Photographer'),(13937,14138,6,'Original Music Composer'),(13937,10766,5,'Editor'),(13937,18457,3,'Casting'),(13937,20214,7,'Production Design'),(13937,21118,1,'Steadicam Operator'),(13937,58471,2,'Assistant Director'),(13937,59710,8,'Costume Design'),(13937,61654,6,'Music Supervisor'),(13937,68127,5,'Editor'),(13937,589948,7,'Art Department Coordinator'),(13937,983118,1,'Steadicam Operator'),(13937,1338375,9,'Special Effects Coordinator'),(13937,1480099,2,'Script Supervisor'),(13937,1524757,8,'Hairstylist'),(13937,1535986,1,'Camera Operator'),(28932,10492,4,'Writer'),(28932,13563,2,'Director'),(31909,5045,4,'Screenplay'),(31909,5059,7,'Production Design'),(31909,13678,8,'Costume Supervisor'),(31909,6042,1,'Director of Photography'),(31909,7148,7,'Set Decoration'),(31909,19155,6,'Original Music Composer'),(31909,10051,2,'Director'),(31909,11779,7,'Art Direction'),(31909,16177,6,'Sound Editor'),(31909,33008,3,'Producer'),(31909,33009,3,'Producer'),(31909,20786,7,'Set Designer'),(31909,31631,3,'Casting'),(31909,33144,3,'Casting'),(31909,42736,2,'First Assistant Director'),(31909,51346,4,'Screenplay'),(31909,52058,5,'First Assistant Editor'),(31909,58705,5,'Editor'),(31909,60261,10,'Creature Design'),(31909,85122,6,'Sound Effects Editor'),(31909,91099,6,'Sound Effects Editor'),(31909,99856,9,'Stunt Coordinator'),(31909,120176,4,'Original Story'),(31909,577620,6,'Dialogue Editor'),(31909,1109912,8,'Costume Design'),(31909,1121599,7,'Title Designer'),(31909,1270133,6,'Dialogue Editor'),(31909,1312509,3,'Production Coordinator'),(31909,1355370,6,'Foley Editor'),(31909,1355878,6,'Sound Effects Editor'),(31909,1391594,1,'Steadicam Operator'),(31909,1395253,7,'Sculptor'),(31909,1397878,8,'Key Makeup Artist'),(31909,1403085,7,'Property Master'),(31909,1404841,6,'Sound Effects Editor'),(31909,1404884,7,'Sculptor'),(31909,1411687,6,'Sound Recordist'),(31909,1413171,6,'Sound Editor'),(31909,1418827,6,'Music Editor'),(31909,1439426,6,'Supervising Sound Editor'),(31909,1447068,6,'Dialogue Editor'),(31909,1504123,9,'Stunt Coordinator'),(31909,1534527,10,'Visual Effects Producer'),(31909,1551523,6,'Supervising Dialogue Editor'),(31909,1560676,1,'Still Photographer'),(31909,1569468,3,'Location Manager'),(31909,1593976,1,'Camera Operator'),(31909,1594801,8,'Makeup Artist'),(31909,1640351,6,'Music Supervisor'),(31909,1681476,11,'Gaffer'),(31909,1755299,6,'Boom Operator'),(31909,1766421,7,'Title Designer'),(31909,1827128,2,'Script Supervisor'),(31909,1888926,8,'Makeup Artist'),(31909,1888928,7,'Leadman'),(31909,1888929,7,'Construction Coordinator'),(31909,1888930,9,'Carpenter'),(31909,1888931,7,'Leadman'),(31909,1888934,7,'Lead Painter'),(31909,1888936,7,'Sculptor'),(31909,1888937,6,'Foley Editor'),(31909,1888940,6,'ADR Editor'),(31909,1888941,6,'Dialogue Editor'),(31909,1888946,6,'Sound Effects Editor'),(31909,1888947,6,'Sound Effects Editor'),(31909,1888950,6,'Sound Effects Editor'),(31909,1888953,6,'Foley Editor'),(31909,1888954,10,'Special Effects Supervisor'),(31909,1888955,11,'Rigging Gaffer'),(31909,1888956,1,'Dolly Grip'),(31909,1888957,1,'Still Photographer'),(31909,1888958,11,'Best Boy Electrician'),(31909,1888959,1,'Key Grip'),(31909,1888960,1,'Dolly Grip'),(31909,1888961,8,'Costume Supervisor'),(31909,1888962,5,'First Assistant Editor'),(14369,82221,2,'Director'),(14369,82222,2,'Director'),(14369,85781,4,'Writer'),(14369,1007395,9,'Stunt Coordinator'),(14369,1752658,9,'Post Production Supervisor'),(16888,7181,3,'Executive Producer'),(16888,7415,3,'Casting'),(16888,23545,3,'Casting'),(16888,51857,4,'Writer'),(16888,56158,3,'Producer'),(16888,63976,6,'Original Music Composer'),(16888,63728,1,'Director of Photography'),(16888,68215,2,'Director'),(16888,957930,5,'Editor'),(16888,1215937,4,'Writer'),(16888,1215937,3,'Associate Producer'),(16888,1267199,4,'Writer'),(16888,1326715,7,'Set Decoration'),(16888,1458901,7,'Production Design'),(16888,1541827,3,'Executive Producer'),(16888,1541828,3,'Executive Producer'),(16888,1541829,7,'Production Design'),(16888,1541830,7,'Art Direction'),(10646,1061,5,'Editor'),(10646,1214,1,'Director of Photography'),(10646,25143,6,'Music'),(10646,47053,3,'Producer'),(10646,50942,2,'Director'),(10646,50942,4,'Screenplay'),(10646,66108,3,'Producer'),(12149,2053,2,'Director'),(12149,2287,1,'Director of Photography'),(12149,6041,6,'Original Music Composer'),(12149,13596,3,'Producer'),(12149,28154,3,'Producer'),(12149,40513,3,'Executive Producer'),(12149,41323,3,'Producer'),(12149,43095,3,'Executive Producer'),(12149,71464,4,'Writer'),(12149,71465,3,'Executive Producer'),(12149,71466,5,'Editor'),(12149,1032232,3,'Executive Producer'),(11184,1776,3,'Executive Producer'),(11184,1225,6,'Original Music Composer'),(11184,4434,1,'Director of Photography'),(11184,5164,3,'Producer'),(11184,5669,3,'Casting'),(11184,6713,3,'Executive Producer'),(11184,15557,4,'Screenplay'),(11184,15557,2,'Director'),(11184,15560,5,'Editor'),(11184,27040,7,'Art Direction'),(11184,29788,7,'Production Design'),(11184,39595,3,'Producer'),(11184,61075,3,'Executive Producer'),(11184,68488,3,'Executive Producer'),(11184,111213,6,'Music Supervisor'),(11184,119179,3,'Casting'),(11184,162522,9,'Stunt Coordinator'),(11184,204304,3,'Line Producer'),(11184,958931,7,'Set Decoration'),(11184,962222,3,'Producer'),(11184,992965,2,'Script Supervisor'),(11184,1074163,9,'Stunt Coordinator'),(11184,1246866,3,'Producer'),(11184,1538430,1,'Still Photographer'),(20009,113641,2,'Director'),(20009,113642,4,'Writer'),(20009,1332245,9,'Stunts'),(30973,2633,4,'Screenplay'),(30973,7228,3,'Executive Producer'),(30973,8320,6,'Music'),(30973,10751,5,'Editor'),(30973,19955,8,'Costume Design'),(30973,63959,3,'Producer'),(30973,59716,3,'Executive Producer'),(30973,90690,1,'Director of Photography'),(30973,107414,2,'Director'),(30973,107415,3,'Producer'),(30973,107416,3,'Executive Producer'),(30973,107417,3,'Executive Producer'),(30973,107418,7,'Art Direction'),(30973,107419,7,'Art Direction'),(30973,107420,7,'Set Decoration'),(30973,1361753,7,'Production Design'),(11109,3560,3,'Producer'),(11109,4584,3,'Executive Producer'),(11109,6379,7,'Production Design'),(11109,6381,7,'Art Direction'),(11109,8970,5,'Editor'),(11109,16363,3,'Casting'),(11109,20423,3,'Producer'),(11109,24263,7,'Art Department Coordinator'),(11109,30335,3,'Casting Associate'),(11109,36591,8,'Costume Design'),(11109,65455,3,'Executive Producer'),(11109,58104,6,'Foley'),(11109,65457,3,'Executive Producer'),(11109,60085,1,'Director of Photography'),(11109,60085,1,'Camera Operator'),(11109,62529,3,'Executive Producer'),(11109,65452,2,'Director'),(11109,65452,4,'Writer'),(11109,65454,3,'Co-Producer'),(11109,66552,7,'Set Decoration'),(11109,68047,6,'Original Music Composer'),(11109,1127893,2,'Assistant Director'),(11109,1319120,8,'Costume Supervisor'),(11109,1392609,6,'Sound Re-Recording Mixer'),(11109,1401118,9,'Choreographer'),(11109,1408366,7,'Location Scout'),(11109,1412126,2,'Script Supervisor'),(11109,1413028,8,'Makeup Artist'),(11109,1415987,1,'Still Photographer'),(11109,1416445,7,'Art Direction'),(11109,1416451,9,'Property Master'),(11109,1416490,3,'Location Manager'),(11109,1428470,8,'Hair Designer'),(11109,1463138,7,'Assistant Art Director'),(11109,1553167,11,'Gaffer'),(11109,1606561,11,'Electrician'),(11109,1703585,9,'Title Graphics'),(11065,2952,3,'Casting'),(11065,1462,2,'Director'),(11065,8320,6,'Original Music Composer'),(11065,20224,3,'Producer'),(11065,28162,8,'Costume Design'),(11065,68216,4,'Screenplay'),(11065,68217,3,'Producer'),(11065,68218,3,'Producer'),(11065,68219,1,'Director of Photography'),(11065,68220,5,'Editor'),(11065,957292,7,'Set Decoration'),(11065,1330609,7,'Production Design'),(11065,1458216,2,'Script Supervisor'),(11065,1468950,3,'Producer'),(11065,1468951,7,'Art Direction'),(11065,1468952,9,'Unit Publicist'),(11065,1468953,9,'Unit Publicist'),(13888,7728,6,'Music'),(13888,8876,3,'Executive Producer'),(13888,33841,4,'Writer'),(13888,44840,4,'Novel'),(13888,57600,1,'Director of Photography'),(13888,75733,8,'Hairstylist'),(13888,83467,2,'Director'),(13888,83467,3,'Producer'),(13888,957786,7,'Production Design'),(13888,960923,3,'Casting'),(13888,961143,8,'Makeup Artist'),(13888,1033805,5,'Editor'),(13888,1216871,3,'Producer'),(13888,1302278,7,'Art Direction'),(13994,460,1,'Director of Photography'),(13994,1241,2,'Director'),(13994,1241,4,'Writer'),(13994,1241,3,'Producer'),(13994,18321,8,'Costume Design'),(13994,52989,3,'Producer'),(11917,2145,3,'Producer'),(11917,2146,3,'Producer'),(11917,2147,3,'Producer'),(11917,2148,6,'Music'),(11917,2149,9,'Cinematography'),(11917,2678,3,'Casting'),(11917,2679,2,'Director'),(11917,51021,4,'Writer'),(11917,51023,4,'Writer'),(11917,51035,8,'Costume Design'),(11917,962731,7,'Production Design'),(11917,1317670,7,'Set Decoration'),(11917,1317673,7,'Art Direction'),(14395,8311,9,'Choreographer'),(14395,35738,1,'Director of Photography'),(14395,35740,7,'Art Direction'),(14395,35736,4,'Screenplay'),(14395,35736,2,'Director'),(14395,35736,4,'Story'),(14395,35739,5,'Editor'),(14395,8733,8,'Costume Design'),(14395,55060,4,'Screenplay'),(14395,85581,6,'Original Music Composer'),(14395,85582,6,'Original Music Composer'),(14395,85583,6,'Original Music Composer'),(14395,85698,3,'Executive Producer'),(14395,85699,3,'Producer'),(14395,94564,4,'Dialogue'),(14395,146975,2,'First Assistant Director'),(14395,1680139,6,'Sound Designer'),(14395,1716975,3,'Executive Producer'),(14395,1736921,6,'Sound Re-Recording Mixer'),(14395,1759112,3,'Production Manager'),(14395,1759113,3,'Production Manager'),(14395,1759114,6,'Foley Editor'),(14395,1759115,6,'Boom Operator'),(14395,1759116,7,'Art Direction'),(14395,1759117,8,'Makeup Artist'),(24137,56710,4,'Screenplay'),(24137,56710,2,'Director'),(24137,56712,4,'Theatre Play'),(11056,1307,3,'Executive Producer'),(11056,59839,3,'Executive Producer'),(11056,15606,7,'Production Design'),(11056,16984,5,'First Assistant Editor'),(11056,17083,3,'Producer'),(11056,17089,5,'Editor'),(11056,17089,9,'Visual Effects Editor'),(11056,27992,3,'Producer'),(11056,37950,3,'Executive Producer'),(11056,37952,1,'Director of Photography'),(11056,43332,6,'Original Music Composer'),(11056,51898,9,'Second Unit Cinematographer'),(11056,54525,4,'Screenplay'),(11056,54525,2,'Director'),(11056,58283,1,'Camera Operator'),(11056,59396,3,'Casting'),(11056,62927,3,'Executive Producer'),(11056,67955,4,'Screenplay'),(11056,1002096,11,'Gaffer'),(11056,1054076,3,'Casting'),(11056,1153233,2,'Script Supervisor'),(11056,1209530,8,'Costume Design'),(11056,1331894,7,'Set Decoration'),(11056,1335118,7,'Construction Coordinator'),(11056,1347760,9,'Dialect Coach'),(11056,1352959,8,'Makeup Artist'),(11056,1385151,1,'Still Photographer'),(11056,1400473,6,'Foley'),(11056,1400474,6,'Sound Re-Recording Mixer'),(11056,1400476,6,'Dolby Consultant'),(11056,1400477,10,'Visual Effects Supervisor'),(11056,1405365,1,'Steadicam Operator'),(11056,1418148,7,'Set Decoration'),(11056,1418149,8,'Hairstylist'),(11056,1418150,8,'Hairstylist'),(11056,1418151,8,'Makeup Department Head'),(11056,1418152,3,'Production Manager'),(11056,1418153,9,'Property Master'),(11056,1418154,7,'Construction Coordinator'),(11056,1418156,5,'Dialogue Editor'),(11056,1418157,6,'Sound Editor'),(11056,1418158,1,'Underwater Camera'),(11056,1418159,1,'Underwater Camera'),(11056,1418161,3,'Production Accountant'),(11056,1418162,3,'Location Manager'),(13067,322,3,'Producer'),(13067,8844,3,'Producer'),(13067,9966,5,'Editor'),(13067,19290,9,'Cinematography'),(13067,21266,6,'Music'),(13067,30368,2,'Director'),(13067,30368,4,'Writer'),(13067,41326,3,'Producer'),(13067,1213689,3,'Producer'),(13067,1538431,5,'Editor'),(25379,81502,4,'Writer'),(25379,135534,2,'Director'),(14877,11166,6,'Music'),(14877,23905,3,'Casting'),(14877,20693,1,'Director of Photography'),(14877,21811,5,'Editor'),(14877,56828,2,'Director'),(14877,56828,3,'Producer'),(14877,56828,4,'Writer'),(14877,435006,3,'Casting'),(14877,543201,7,'Production Design'),(14877,548438,6,'Supervising Sound Editor'),(14877,548439,6,'Foley'),(14877,548445,6,'Foley'),(14877,1005287,3,'Producer'),(14877,1005287,5,'Digital Intermediate'),(14877,1318875,3,'Casting Associate'),(14877,1318881,8,'Costume Design'),(14877,1329533,3,'Casting Associate'),(14877,1399141,6,'Sound Re-Recording Mixer'),(14877,1404217,6,'Sound Effects Editor'),(14877,1404218,6,'Sound Re-Recording Mixer'),(14877,1406789,6,'Music Editor'),(14877,1407255,6,'Sound Effects Editor'),(14877,1419271,5,'Digital Intermediate'),(14877,1426741,9,'Property Master'),(14877,1426745,9,'Special Effects Coordinator'),(14877,1468924,7,'Set Decoration'),(14877,1468928,8,'Hair Designer'),(14877,1468929,2,'Script Supervisor'),(14877,1507935,7,'Art Direction'),(14877,1535079,1,'Steadicam Operator'),(14877,1568368,8,'Assistant Costume Designer'),(14877,1583184,4,'Writer'),(14877,1583185,3,'Producer'),(14877,1583187,8,'Seamstress'),(14877,1583188,1,'Still Photographer'),(14877,1583189,1,'First Assistant Camera'),(14877,1583190,1,'First Assistant Camera'),(14877,1583191,11,'Gaffer'),(14877,1583193,5,'Digital Intermediate'),(14877,1583194,5,'First Assistant Editor'),(10890,1524,4,'Screenplay'),(10890,2287,1,'Director of Photography'),(10890,7182,6,'Original Music Composer'),(10890,8858,2,'Director'),(10890,8858,3,'Producer'),(10890,21781,5,'Editor'),(10890,52871,4,'Screenplay'),(10890,57132,4,'Screenplay'),(10890,57132,3,'Producer'),(10890,67349,5,'Editor'),(10890,67350,5,'Editor'),(10314,2987,6,'Original Music Composer'),(10314,12997,3,'Producer'),(10314,15306,3,'Producer'),(10314,15307,3,'Producer'),(10314,16464,1,'Director of Photography'),(10314,62512,4,'Screenplay'),(10314,62706,5,'Editor'),(10314,64815,2,'Director'),(11804,16854,3,'Producer'),(11804,25138,3,'Executive Producer'),(11804,25139,3,'Executive Producer'),(11804,67773,4,'Writer'),(11804,34004,1,'Director of Photography'),(11804,22100,6,'Sound Designer'),(11804,23415,8,'Costume Design'),(11804,40608,3,'Associate Producer'),(11804,23811,3,'Casting'),(11804,32282,8,'Hairstylist'),(11804,43901,3,'Producer'),(11804,35933,5,'Editor'),(11804,52339,6,'Original Music Composer'),(11804,56747,11,'Rigging Grip'),(11804,58547,4,'Screenplay'),(11804,61357,2,'Director'),(11804,62901,3,'Executive Producer'),(11804,70532,3,'Executive Producer'),(11804,75876,8,'Assistant Costume Designer'),(11804,223601,2,'First Assistant Director'),(11804,1136056,7,'Production Design'),(11804,1159914,6,'Dolby Consultant'),(11804,1235397,9,'Stunt Coordinator'),(11804,1299753,3,'Production Manager'),(11804,1302181,6,'Boom Operator'),(11804,1325694,7,'Set Decoration'),(11804,1325871,7,'Art Direction'),(11804,1325872,8,'Costume Supervisor'),(11804,1335048,10,'Visual Effects Supervisor'),(11804,1360274,6,'Sound Effects Editor'),(11804,1378728,2,'Script Supervisor'),(11804,1398846,11,'Gaffer'),(11804,1399561,9,'Visual Effects Editor'),(11804,1400407,1,'Still Photographer'),(11804,1409711,1,'Steadicam Operator'),(11804,1409746,11,'Rigging Gaffer'),(11804,1413602,9,'Transportation Coordinator'),(11804,1416454,6,'Supervising Sound Editor'),(11804,1421722,9,'Special Effects Coordinator'),(11804,1438597,7,'Sculptor'),(11804,1441278,7,'Construction Coordinator'),(11804,1441279,7,'Greensman'),(11804,1457404,8,'Key Hair Stylist'),(11804,1535309,6,'Music Supervisor'),(11804,1577061,9,'Telecine Colorist'),(11804,1593509,3,'Production Accountant'),(11804,1593511,6,'ADR Supervisor'),(11804,1608781,3,'Location Manager'),(11804,1645427,10,'Visual Effects Producer'),(11804,1673863,1,'Key Grip'),(11804,1686019,6,'Sound Editor'),(11804,1770515,3,'Production Coordinator'),(11804,1800431,4,'Storyboard'),(11804,1810422,7,'Construction Foreman'),(11804,1810423,7,'Location Scout'),(11804,1810424,1,'First Assistant Camera'),(11804,1810425,1,'Grip'),(11804,1810426,8,'Makeup Artist'),(11804,1810427,8,'Set Costumer'),(11804,1810428,8,'Set Dressing Artist'),(11804,1810429,9,'Carpenter'),(11804,1810430,9,'CGI Supervisor'),(11804,1810431,9,'Chef'),(11804,1810432,9,'Craft Service'),(11804,1810433,9,'Driver'),(11804,1810434,9,'Executive in Charge of Finance'),(11804,1810435,9,'Post Production Supervisor'),(11804,1810436,7,'Property Master'),(11804,1810437,9,'Scenic Artist'),(11804,1810438,9,'Security'),(11804,1810439,9,'Stand In'),(11804,1810440,9,'Transportation Captain'),(11804,1810441,9,'Transportation Co-Captain'),(11804,1810442,9,'Video Assist Operator'),(11804,1810443,2,'Script Coordinator'),(11804,1810444,5,'Dialogue Editor'),(11804,1810445,5,'Digital Intermediate'),(11804,1810446,5,'First Assistant Editor'),(11804,1810447,11,'Best Boy Electric'),(11804,1810448,6,'Foley Editor'),(11804,1810449,6,'Music Editor'),(11804,1810478,6,'Sound Mixer'),(11804,1810479,10,'3D Artist'),(11804,1810480,10,'Visual Effects Coordinator'),(16781,9426,6,'Sound Effects Editor'),(16781,31131,8,'Costume Design'),(16781,31915,10,'Visual Effects'),(16781,40513,3,'Executive Producer'),(16781,57709,1,'Director of Photography'),(16781,61653,7,'Production Design'),(16781,62028,3,'Producer'),(16781,71948,6,'Music Supervisor'),(16781,80602,2,'Director'),(16781,80602,3,'Executive Producer'),(16781,80602,4,'Theatre Play'),(16781,80602,4,'Writer'),(16781,80603,3,'Producer'),(16781,80605,3,'Casting'),(16781,80606,3,'Casting'),(16781,80788,3,'Producer'),(16781,80801,7,'Set Decoration'),(16781,80802,3,'Production Manager'),(16781,80803,3,'Production Manager'),(16781,80804,9,'Post Production Supervisor'),(16781,80805,8,'Makeup Artist'),(16781,80806,8,'Hairstylist'),(16781,80807,8,'Makeup Artist'),(16781,80808,8,'Hairstylist'),(16781,80809,8,'Makeup Artist'),(16781,80810,6,'ADR & Dubbing'),(16781,80811,7,'Leadman'),(16781,80812,8,'Set Dressing Artist'),(16781,80813,9,'Property Master'),(16781,80814,7,'Art Department Coordinator'),(16781,80815,8,'Set Dressing Artist'),(16781,80816,8,'Set Dressing Artist'),(16781,80817,6,'ADR & Dubbing'),(16781,80818,6,'ADR & Dubbing'),(16781,80819,6,'Sound Editor'),(16781,80820,6,'Boom Operator'),(16781,80821,5,'Dialogue Editor'),(16781,80822,6,'Foley'),(16781,80823,6,'ADR & Dubbing'),(16781,80823,6,'Foley'),(16781,80824,6,'Supervising Sound Editor'),(16781,80825,6,'ADR & Dubbing'),(16781,80826,6,'Sound Effects Editor'),(16781,80827,6,'Foley'),(16781,80828,9,'Special Effects Coordinator'),(16781,80830,10,'Visual Effects Supervisor'),(16781,80832,9,'Stunt Coordinator'),(16781,80833,1,'Grip'),(16781,80834,1,'Still Photographer'),(16781,80835,11,'Electrician'),(16781,80836,11,'Gaffer'),(16781,80837,11,'Electrician'),(16781,80838,11,'Electrician'),(16781,80839,1,'Grip'),(16781,80840,1,'Grip'),(16781,80842,1,'First Assistant Camera'),(16781,80843,1,'Grip'),(16781,80844,11,'Rigging Grip'),(16781,80845,11,'Electrician'),(16781,80846,8,'Costume Supervisor'),(16781,80847,8,'Set Costumer'),(16781,80848,9,'Post Production Assistant'),(16781,80849,9,'Post Production Assistant'),(16781,80850,5,'Editor'),(16781,80851,5,'First Assistant Editor'),(16781,80852,6,'Music Supervisor'),(16781,80853,9,'Driver'),(16781,80854,9,'Driver'),(16781,80855,3,'Producer'),(16781,80856,3,'Location Manager'),(16781,80857,9,'Set Production Assistant'),(16781,1400509,2,'Script Supervisor'),(16781,1738656,9,'Compositors'),(16781,1763505,11,'Best Boy Electric'),(11873,1032,2,'Director'),(11873,2989,4,'Screenplay'),(11873,3661,5,'Editor'),(11873,3769,1,'Director of Photography'),(11873,7170,3,'Producer'),(11873,14877,4,'Novel'),(11873,70841,3,'Producer'),(10414,1099,5,'Editor'),(10414,3031,1,'Director of Photography'),(10414,3393,6,'Original Music Composer'),(10414,16567,5,'Editor'),(10414,32593,4,'Screenplay'),(10414,18250,3,'Producer'),(10414,18356,2,'Director'),(10414,58408,3,'Producer'),(17917,3557,4,'Novel'),(17917,6601,3,'Producer'),(17917,9903,4,'Screenplay'),(17917,10339,1,'Director of Photography'),(17917,15378,2,'Director'),(19405,141706,2,'Director'),(19405,166408,4,'Story'),(19405,1229561,4,'Storyboard'),(10999,898,5,'Editor'),(10999,1091,3,'Producer'),(10999,1096,7,'Production Design'),(10999,1097,3,'Casting'),(10999,1099,5,'Editor'),(10999,1726,4,'Screenplay'),(10999,1726,4,'Story'),(10999,1729,6,'Original Music Composer'),(10999,2507,1,'Director of Photography'),(10999,6880,7,'Set Decoration'),(10999,16552,9,'Special Sound Effects'),(10999,21244,5,'Editor'),(10999,36428,1,'Camera Operator'),(10999,55241,9,'Special Effects Coordinator'),(10999,60569,3,'Location Manager'),(10999,67753,2,'Director'),(10999,17310,4,'Story'),(10999,17310,3,'Associate Producer'),(10999,70610,4,'Story'),(10999,70610,3,'Associate Producer'),(10999,197875,8,'Makeup Artist'),(10999,555085,1,'Still Photographer'),(10999,557528,6,'Foley'),(10999,1303184,6,'Dolby Consultant'),(10999,1331195,9,'Stunt Coordinator'),(10999,1338669,8,'Makeup Artist'),(10999,1338670,8,'Hairstylist'),(10999,1338671,7,'Construction Coordinator'),(10999,1338672,7,'Greensman'),(10999,1338673,9,'Property Master'),(10999,1338674,7,'Set Designer'),(10999,1338830,6,'Sound Re-Recording Mixer'),(10999,1338831,6,'Foley'),(10999,1338832,6,'Sound Re-Recording Mixer'),(10999,1338833,6,'Foley'),(10999,1338834,6,'Boom Operator'),(10999,1338836,8,'Costume Supervisor'),(10999,1338837,6,'Music Editor'),(10999,1338838,9,'Transportation Captain'),(10999,1338839,9,'Transportation Coordinator'),(10999,1338840,2,'Script Supervisor'),(10999,1378174,1,'Steadicam Operator'),(10999,1411683,7,'Leadman'),(10999,1412617,6,'ADR & Dubbing'),(10999,1680739,9,'Stunts'),(10426,960,6,'Original Music Composer'),(10426,9778,4,'Characters'),(10426,9778,3,'Producer'),(10426,9778,4,'Writer'),(10426,22818,1,'Director of Photography'),(10426,10830,3,'Executive Producer'),(10426,34968,3,'Executive Producer'),(10426,57431,3,'Executive Producer'),(10426,65133,2,'Director'),(10426,65134,4,'Characters'),(10426,65135,3,'Producer'),(10426,65136,5,'Editor'),(13938,18879,4,'Author'),(13938,32718,3,'Executive Producer'),(13938,66807,3,'Producer'),(13938,77300,2,'Director'),(10163,8523,1,'Director of Photography'),(10163,10393,5,'Editor'),(10163,57090,2,'Director'),(10163,57090,4,'Screenplay'),(10163,64049,4,'Screenplay'),(10163,64049,3,'Producer'),(10163,64050,6,'Music'),(10163,64052,3,'Executive Producer'),(10163,64053,3,'Executive Producer'),(10163,64054,3,'Executive Producer'),(10163,64055,3,'Executive Producer'),(12182,1593,3,'Casting'),(12182,3288,3,'Producer'),(12182,3289,3,'Producer'),(12182,5388,5,'Editor'),(12182,5666,6,'Original Music Composer'),(12182,7034,1,'Director of Photography'),(12182,45584,3,'Producer'),(12182,23541,3,'Executive Producer'),(12182,40383,3,'Executive Producer'),(12182,52451,3,'Producer'),(12182,57245,3,'Producer'),(12182,62117,3,'Producer'),(12182,71548,2,'Director'),(12182,71549,4,'Novel'),(12182,71550,4,'Novel'),(12182,71551,4,'Screenplay'),(12182,238446,3,'Executive Producer'),(12182,957598,7,'Production Design'),(12182,1463874,4,'Storyboard'),(15301,488,2,'Director'),(15301,1885,4,'Writer'),(15301,4600,2,'Director'),(15301,4610,2,'Director'),(15301,4610,4,'Writer'),(15301,12415,4,'Writer'),(15301,13268,4,'Screenplay'),(15301,20629,2,'Director'),(10135,1060,1,'Director of Photography'),(10135,1091,3,'Producer'),(10135,1099,5,'Editor'),(10135,4699,3,'Executive Producer'),(10135,7715,5,'Editor'),(10135,7714,6,'Original Music Composer'),(10135,8251,4,'Screenplay'),(10135,63943,2,'Director'),(10135,63945,4,'Screenplay'),(10135,63946,3,'Executive Producer'),(26352,35689,2,'Director'),(26352,35689,4,'Writer'),(20616,1782,5,'Editor'),(20616,4500,6,'Original Music Composer'),(20616,3079,1,'Director of Photography'),(20616,3177,6,'Sound Re-Recording Mixer'),(20616,10570,3,'Producer'),(20616,6044,3,'Casting'),(20616,6506,8,'Costume Design'),(20616,17148,7,'Production Design'),(20616,13931,1,'Second Unit Director of Photography'),(20616,15337,2,'Director'),(20616,17862,9,'Executive Music Producer'),(20616,19747,6,'Supervising Sound Editor'),(20616,21983,3,'Producer'),(20616,26473,3,'Executive Producer'),(20616,27513,9,'Stunt Coordinator'),(20616,34541,9,'Stunts'),(20616,51982,3,'Casting'),(20616,52989,3,'Producer'),(20616,52992,3,'Associate Producer'),(20616,52994,3,'Executive Producer'),(20616,68358,6,'Original Music Composer'),(20616,60934,9,'Post-Production Manager'),(20616,91079,3,'Location Manager'),(20616,106377,8,'Makeup Artist'),(20616,171303,1,'Key Grip'),(20616,928325,5,'First Assistant Editor'),(20616,1031664,5,'First Assistant Editor'),(20616,1077813,2,'First Assistant Director'),(20616,1098838,11,'Electrician'),(20616,1131063,8,'Key Hair Stylist'),(20616,1216805,9,'Stunts'),(20616,1236205,4,'Writer'),(20616,1317867,3,'Co-Producer'),(20616,1338533,11,'Electrician'),(20616,1376311,6,'Orchestrator'),(20616,1378700,7,'Location Scout'),(20616,1392138,11,'Gaffer'),(20616,1395672,4,'Writer'),(20616,1396364,3,'Unit Production Manager'),(20616,1399130,1,'Still Photographer'),(20616,1406614,6,'Sound Re-Recording Mixer'),(20616,1408706,6,'Music Editor'),(20616,1411538,1,'Camera Operator'),(20616,1415887,1,'Steadicam Operator'),(20616,1416820,11,'Electrician'),(20616,1431625,7,'Property Master'),(20616,1472450,3,'Co-Producer'),(20616,1513379,9,'Stunt Coordinator'),(20616,1522819,7,'Set Decoration'),(20616,1524770,8,'Wardrobe Supervisor'),(20616,1525957,2,'Script Supervisor'),(20616,1547458,6,'Sound Mixer'),(20616,1553268,10,'Visual Effects'),(20616,1554886,6,'Orchestrator'),(20616,1554923,9,'Stunts'),(20616,1590122,9,'Compositors'),(20616,1619971,7,'Location Scout'),(20616,1640008,7,'Art Direction'),(20616,1640009,6,'Production Sound Mixer'),(20616,1640009,6,'Sound Mixer'),(20616,1648166,9,'Stunts'),(20616,1692476,6,'Scoring Mixer'),(20616,1736180,9,'Stunts'),(20616,1740451,3,'Casting Assistant'),(20616,1761400,7,'Set Dresser'),(20616,1767012,6,'Boom Operator'),(20616,1787842,6,'Assistant Sound Editor'),(20616,1794867,8,'Key Makeup Artist'),(20616,1843822,9,'Stunts'),(20616,1848828,8,'Makeup Artist'),(20616,1861189,3,'Co-Producer'),(20616,1861190,8,'Hairstylist'),(20616,1861191,8,'Hairstylist'),(20616,1861192,8,'Hairstylist'),(20616,1861193,9,'Post-Production Manager'),(20616,1861194,3,'Production Supervisor'),(20616,1861195,2,'Second Assistant Director'),(20616,1861196,7,'Set Dresser'),(20616,1861197,9,'Scenic Artist'),(20616,1861198,7,'Set Dresser'),(20616,1861199,9,'Scenic Artist'),(20616,1861200,7,'Set Dresser'),(20616,1861201,7,'Set Dresser'),(20616,1861202,9,'Scenic Artist'),(20616,1861203,7,'Set Dresser'),(20616,1861204,7,'Art Department Assistant'),(20616,1861205,7,'Leadman'),(20616,1861206,9,'Scenic Artist'),(20616,1861207,6,'Sound Effects Editor'),(20616,1861208,6,'Assistant Sound Editor'),(20616,1861209,6,'Foley Editor'),(20616,1861212,9,'Stunts'),(20616,1861213,1,'Grip'),(20616,1861214,1,'Grip'),(20616,1861226,1,'Grip'),(20616,1861227,1,'Grip'),(20616,1861228,11,'Electrician'),(20616,1861229,11,'Best Boy Electric'),(20616,1861230,1,'Underwater Director of Photography'),(20616,1861232,1,'Grip'),(20616,1861233,1,'Key Grip'),(20616,1861234,3,'Casting Assistant'),(20616,1861235,8,'Wardrobe Supervisor'),(20616,1861236,9,'Post Production Supervisor'),(20616,1861237,7,'Location Scout'),(20616,1861238,6,'Conductor'),(20616,1861239,9,'Unit Publicist'),(20616,1861240,6,'Musician'),(20616,1861241,9,'Unit Publicist'),(20616,1861242,9,'Production Controller'),(15037,13614,2,'Director'),(15037,13614,4,'Writer'),(15037,13615,2,'Director'),(15037,13615,4,'Writer'),(15037,25143,6,'Music'),(15037,12940,5,'Editor'),(15037,40471,8,'Costume Design'),(15037,43891,1,'Director of Photography'),(11336,224,2,'Director'),(11336,310,5,'Editor'),(11336,737,4,'Screenplay'),(11336,2161,3,'Producer'),(11336,2874,3,'Casting'),(11336,3027,4,'Novel'),(11336,3275,3,'Casting'),(11336,5398,3,'Executive Producer'),(11336,7413,1,'Director of Photography'),(11336,7714,6,'Original Music Composer'),(11336,7800,3,'Casting'),(11336,8315,7,'Production Design'),(11336,22060,7,'Art Direction'),(11336,40592,3,'Associate Producer'),(11336,1430258,7,'Set Decoration'),(11336,1430259,8,'Costume Design'),(10984,434,3,'Casting'),(10984,436,3,'Casting Associate'),(10984,4949,6,'Music'),(10984,8751,5,'Editor'),(10984,22146,7,'Art Direction'),(10984,56258,4,'Screenplay'),(10984,56260,4,'Screenplay'),(10984,58209,1,'Director of Photography'),(10984,59958,2,'Director'),(10984,63784,3,'Casting'),(10984,63788,8,'Costume Supervisor'),(10984,65559,3,'Producer'),(10984,67909,4,'Novel'),(10984,230138,3,'Casting'),(10984,1058068,10,'Visual Effects Supervisor'),(10984,1324919,7,'Set Decoration'),(10984,1330885,7,'Production Design'),(10984,1367544,4,'Screenplay'),(10984,1367545,4,'Screenplay'),(10984,1408180,8,'Key Hair Stylist'),(10984,1441267,8,'Costume Supervisor'),(10984,1444287,8,'Makeup Department Head'),(10984,1525907,8,'Costume Design'),(10984,1531859,7,'Art Department Coordinator'),(10984,1531860,9,'Special Effects Coordinator'),(10984,1531861,10,'Visual Effects Coordinator'),(10984,1531862,8,'Assistant Costume Designer'),(10984,1531863,2,'Script Supervisor'),(22824,16854,3,'Producer'),(22824,25757,3,'Casting'),(22824,40223,3,'Producer'),(22824,46785,8,'Costume Design'),(22824,72268,6,'Music'),(22824,61851,1,'Director of Photography'),(22824,62369,2,'Director'),(22824,62369,4,'Screenplay'),(22824,62372,3,'Producer'),(22824,67240,7,'Production Design'),(22824,936194,8,'Makeup Artist'),(22824,966508,7,'Set Decoration'),(22824,1368850,7,'Art Direction'),(22824,1412693,7,'Art Direction'),(22824,1420310,5,'Editor'),(22824,1447168,8,'Hairstylist'),(22824,1447169,8,'Hairstylist'),(22824,1447171,8,'Hairstylist'),(22824,1447172,8,'Makeup Artist'),(15983,949,3,'Casting'),(15983,11161,9,'Makeup Effects'),(15983,33008,3,'Producer'),(15983,33009,3,'Producer'),(15983,51572,4,'Story'),(15983,51576,4,'Screenplay'),(15983,58706,5,'Editor'),(15983,58818,1,'Director of Photography'),(15983,64195,2,'Director'),(15983,59287,9,'Makeup Effects'),(15983,73345,6,'Original Music Composer'),(15983,107372,9,'Makeup Effects'),(15983,129612,4,'Screenplay'),(15983,190135,5,'Editor'),(15983,1206289,9,'Makeup Effects'),(15983,1324652,1,'Still Photographer'),(15983,1376347,4,'Story'),(15983,1396514,7,'Production Design'),(15983,1401263,9,'Second Unit Cinematographer'),(15983,1416062,1,'Camera Operator'),(15983,1453175,6,'ADR & Dubbing'),(15983,1535395,1,'Additional Camera'),(15983,1590970,8,'Costume Design'),(15983,1590971,9,'Makeup Effects'),(15983,1590972,9,'Makeup Effects'),(15983,1639897,2,'Script Supervisor'),(15983,1640348,9,'Armorer'),(15983,1640349,2,'Script Supervisor'),(15983,1640351,6,'Music Supervisor'),(15983,1640352,9,'Second Unit Cinematographer'),(15983,1640353,1,'Helicopter Camera'),(15983,1640355,1,'Additional Camera'),(15983,1640356,9,'Special Effects Coordinator'),(15983,1640357,6,'ADR & Dubbing'),(14544,72024,2,'Director'),(14544,266619,4,'Writer'),(11545,887,4,'Screenplay'),(11545,887,3,'Executive Producer'),(11545,5655,2,'Director'),(11545,5655,4,'Screenplay'),(11545,5664,3,'Producer'),(11545,5666,6,'Original Music Composer'),(11545,5667,1,'Director of Photography'),(11545,5668,5,'Editor'),(11545,18344,3,'Producer'),(15648,23485,3,'Producer'),(15648,56716,5,'Editor'),(15648,59972,4,'Writer'),(15648,60280,3,'Producer'),(15648,68770,2,'Director'),(15648,1119658,5,'First Assistant Editor'),(11891,2080,9,'Stunt Coordinator'),(11891,2080,9,'Fight Choreographer'),(11891,4489,2,'Director'),(11891,4489,4,'Screenplay'),(11891,4489,3,'Producer'),(11891,5712,6,'Music Editor'),(11891,6896,3,'Unit Production Manager'),(11891,12945,6,'Music Supervisor'),(11891,58362,6,'Supervising Sound Editor'),(11891,58363,6,'Sound Effects Editor'),(11891,43393,6,'Original Music Composer'),(11891,55081,9,'Stunts'),(11891,113051,6,'Sound Designer'),(11891,65118,3,'Production Accountant'),(11891,70948,3,'Producer'),(11891,70949,1,'Director of Photography'),(11891,131413,9,'Second Unit Cinematographer'),(11891,239415,3,'Casting'),(11891,1075261,10,'Visual Effects Supervisor'),(11891,1308090,5,'Editor'),(11891,1308090,3,'Producer'),(11891,1315615,9,'Visual Effects Editor'),(11891,1333059,7,'Set Decoration'),(11891,1338151,6,'Sound Re-Recording Mixer'),(11891,1368875,10,'Visual Effects Producer'),(11891,1368876,9,'Digital Effects Supervisor'),(11891,1388862,7,'Production Design'),(11891,1399093,3,'Production Manager'),(11891,1406238,7,'Set Dresser'),(11891,1406304,7,'Construction Coordinator'),(11891,1410578,10,'I/O Supervisor'),(11891,1418521,11,'Electrician'),(11891,1460638,3,'Assistant Production Coordinator'),(11891,1465072,8,'Key Makeup Artist'),(11891,1471199,3,'Co-Producer'),(11891,1555699,6,'Production Sound Mixer'),(11891,1558702,6,'Scoring Mixer'),(11891,1564250,6,'Foley'),(11891,1570066,9,'Video Assist Operator'),(11891,1582209,9,'Property Master'),(11891,1585164,1,'First Assistant Camera'),(11891,1601598,7,'Production Design'),(11891,1601599,7,'Set Decoration'),(11891,1601600,8,'Costume Design'),(11891,1601602,8,'Makeup Artist'),(11891,1601603,8,'Prosthetic Supervisor'),(11891,1601605,9,'Post Production Supervisor'),(11891,1601605,5,'First Assistant Editor'),(11891,1601606,9,'Projection'),(11891,1601607,9,'Propmaker'),(11891,1601609,9,'Sound Recordist'),(11891,1601610,9,'Transportation Coordinator'),(11891,1601611,2,'First Assistant Director'),(11891,1601612,11,'Best Boy Electric'),(11891,1601614,11,'Gaffer'),(11891,1601615,3,'Production Coordinator'),(11891,1601616,3,'Production Supervisor'),(11891,1601617,6,'Orchestrator'),(11891,1601618,10,'Digital Compositors'),(11891,1601619,10,'Visual Effects'),(11891,1601620,10,'Visual Effects Coordinator'),(11891,1601621,4,'Storyboard'),(11891,1601622,10,'Animation Director'),(11891,1841624,1,'Dolly Grip'),(11891,1841628,1,'Grip'),(11891,1841629,2,'Second Assistant Director'),(14729,408,4,'Writer'),(14729,825,4,'Writer'),(14729,597,3,'Casting'),(14729,598,3,'Casting'),(14729,798,8,'Costume Supervisor'),(14729,1723,2,'Director'),(14729,1728,1,'Director of Photography'),(14729,1731,5,'Editor'),(14729,2032,7,'Production Design'),(14729,6918,6,'Original Music Composer'),(14729,16208,8,'Hairstylist'),(14729,12993,3,'Producer'),(14729,14342,7,'Set Decoration'),(14729,15447,1,'Camera Operator'),(14729,27581,2,'Script Supervisor'),(14729,69568,5,'Editor'),(14729,121342,6,'Supervising Sound Editor'),(14729,147095,4,'Writer'),(14729,1205954,1,'Camera Operator'),(14729,1318663,8,'Costume Design'),(14729,1332210,8,'Makeup Artist'),(14729,1404902,6,'Supervising Sound Editor'),(14729,1411699,1,'Camera Operator'),(14729,1415099,4,'Writer'),(14729,1518581,1,'Still Photographer'),(14729,1534833,5,'Dialogue Editor'),(14729,1536373,9,'Special Effects'),(14729,1583610,7,'Art Direction'),(14729,1583611,1,'Camera Operator'),(14729,1583612,11,'Gaffer'),(10090,518,3,'Producer'),(10090,539,4,'Author'),(10090,5381,3,'Producer'),(10090,5382,3,'Producer'),(10090,17748,6,'Original Music Composer'),(10090,58871,5,'Editor'),(10090,58872,3,'Casting'),(10090,59413,2,'Director'),(10090,59413,4,'Author'),(10090,59413,3,'Executive Producer'),(10090,59421,3,'Executive Producer'),(10090,63220,4,'Author'),(10090,63220,3,'Executive Producer'),(10090,63221,3,'Producer'),(10090,63224,3,'Producer'),(10090,63223,3,'Executive Producer'),(10090,63227,1,'Director of Photography'),(10090,63225,3,'Producer'),(10090,63229,3,'Producer'),(10090,63228,8,'Costume Design'),(19905,57692,2,'Director'),(19905,82378,4,'Writer'),(19905,82379,4,'Writer'),(19905,1332245,9,'Stunts'),(17710,27582,6,'Music'),(17710,70454,3,'Producer'),(17710,1217426,3,'Producer'),(17710,1217426,4,'Writer'),(17710,1409418,2,'Director'),(17710,1447311,7,'Art Department Manager'),(17710,1816918,4,'Writer'),(17710,1849073,5,'Editor'),(27322,120515,2,'Director'),(27322,120515,4,'Writer'),(14120,101974,4,'Writer'),(14120,307546,2,'Director'),(10050,6959,3,'Casting'),(10050,12233,3,'Producer'),(10050,33678,1,'Director of Photography'),(10050,20382,5,'Editor'),(10050,20567,3,'Producer'),(10050,21148,7,'Art Direction'),(10050,34883,3,'Executive Producer'),(10050,35766,8,'Costume Design'),(10050,38335,6,'Original Music Composer'),(10050,38556,7,'Art Direction'),(10050,56326,3,'Executive Producer'),(10050,56327,3,'Producer'),(10050,62511,3,'Producer'),(10050,62513,3,'Producer'),(10050,62515,3,'Producer'),(10050,62512,4,'Author'),(10050,62514,2,'Director'),(10050,62517,7,'Production Design'),(10050,62518,7,'Set Decoration'),(10050,961165,3,'Casting'),(10490,5666,6,'Original Music Composer'),(10490,16534,5,'Editor'),(10490,59412,2,'Director'),(10490,65503,4,'Screenplay'),(10490,65503,3,'Executive Producer'),(10490,65506,1,'Director of Photography'),(10029,2224,3,'Executive Producer'),(10029,2987,6,'Original Music Composer'),(10029,9184,3,'Executive Producer'),(10029,9196,3,'Executive Producer'),(10029,11455,5,'Editor'),(10029,16493,7,'Art Direction'),(10029,20787,8,'Costume Design'),(10029,11373,7,'Production Design'),(10029,24052,3,'Producer'),(10029,27154,1,'Director of Photography'),(10029,36602,4,'Screenplay'),(10029,36602,2,'Director'),(10029,52171,3,'Producer'),(10029,62139,3,'Producer'),(10029,62141,3,'Producer'),(10029,62142,3,'Line Producer'),(10029,25830,3,'Casting'),(10029,62143,3,'Executive Producer'),(10029,62144,7,'Set Decoration'),(11507,852,5,'Editor'),(11507,1150,4,'Screenplay'),(11507,1150,2,'Director'),(11507,1150,3,'Producer'),(11507,1258,1,'Director of Photography'),(11507,1264,5,'Editor'),(11507,2874,3,'Casting'),(11507,3275,3,'Casting'),(11507,4142,3,'Casting Associate'),(11507,5167,7,'Production Design'),(11507,9255,8,'Costume Design'),(11507,14697,3,'Casting Associate'),(11507,14138,6,'Original Music Composer'),(11507,15448,7,'Set Decoration'),(11507,66714,3,'Executive Producer'),(11507,69659,4,'Screenplay'),(11507,91094,6,'Foley'),(11507,554887,6,'Supervising Sound Editor'),(11507,1116937,6,'Foley'),(11507,1377239,2,'Script Supervisor'),(11507,1378173,1,'Still Photographer'),(11507,1704939,1,'Camera Operator'),(11507,1704940,11,'Gaffer'),(11507,1704941,11,'Rigging Gaffer'),(13160,16854,3,'Producer'),(13160,57173,2,'Director'),(13160,57173,4,'Writer'),(24034,72252,3,'Producer'),(24034,1082114,2,'Director'),(14283,20173,4,'Writer'),(14283,78012,2,'Director'),(14283,78012,4,'Writer'),(13201,65390,2,'Director'),(13201,74274,4,'Author'),(13201,74275,4,'Author'),(34043,2987,6,'Music'),(34043,13585,3,'Casting'),(34043,15306,3,'Producer'),(34043,15307,3,'Producer'),(34043,21140,5,'Editor'),(34043,23546,7,'Art Direction'),(34043,39111,8,'Costume Design'),(34043,59567,7,'Set Decoration'),(34043,59707,1,'Director of Photography'),(34043,60045,2,'Director'),(34043,62515,3,'Producer'),(34043,111716,4,'Writer'),(34043,111717,4,'Writer'),(34043,1124531,7,'Production Design'),(34043,1319467,8,'Makeup Department Head'),(34043,1457483,3,'Producer'),(34043,1457485,8,'Makeup Artist'),(34043,1457486,8,'Makeup Artist'),(34043,1457487,2,'Script Supervisor'),(10388,3117,7,'Production Design'),(10388,495,3,'Casting'),(10388,8377,6,'Original Music Composer'),(10388,1782,5,'Editor'),(10388,1884,2,'Director'),(10388,4061,8,'Costume Design'),(10388,6341,3,'Producer'),(10388,6345,1,'Director of Photography'),(10388,9774,7,'Set Decoration'),(10388,23649,4,'Screenplay'),(10388,26986,8,'Makeup Artist'),(10388,113045,6,'Foley'),(10388,113090,6,'Foley'),(10388,65272,3,'Producer'),(10388,142161,9,'Stunt Coordinator'),(10388,1318886,8,'Costume Supervisor'),(10388,1335069,9,'Special Effects Coordinator'),(10388,1335127,6,'Supervising Sound Editor'),(10388,1391605,2,'Script Supervisor'),(10388,1392247,1,'Still Photographer'),(10388,1401263,1,'Camera Operator'),(10388,1418528,8,'Key Hair Stylist'),(10388,1530082,6,'Music Supervisor'),(10388,1532354,11,'Gaffer'),(10388,1549180,7,'Art Department Coordinator'),(10388,1550600,7,'Art Department Assistant'),(10388,1550601,9,'Property Master'),(10388,1550602,8,'Set Costumer'),(10388,1550603,11,'Rigging Gaffer'),(10388,1550610,1,'First Assistant Camera'),(10388,1550611,1,'First Assistant Camera'),(25520,4023,3,'Casting'),(25520,1251,1,'Director of Photography'),(25520,3192,3,'Casting'),(25520,5328,3,'Casting'),(25520,6371,3,'Executive Producer'),(25520,22157,7,'Art Direction'),(25520,56994,3,'Executive Producer'),(25520,58033,3,'Producer'),(25520,65288,4,'Novel'),(25520,66552,7,'Set Decoration'),(25520,83121,8,'Wigmaker'),(25520,93911,2,'Director'),(25520,93911,4,'Writer'),(25520,989050,8,'Costume Design'),(25520,1361753,7,'Production Design'),(25520,1409267,8,'Wigmaker'),(25520,1429643,2,'Script Supervisor'),(25520,1459855,8,'Hairstylist'),(27342,1767,5,'Editor'),(27342,3393,6,'Original Music Composer'),(27342,6847,1,'Director of Photography'),(27342,11819,7,'Production Design'),(27342,23858,2,'Director'),(27342,32083,4,'Screenplay'),(27342,32085,3,'Producer'),(27342,119768,8,'Costume Design'),(27342,578788,4,'Novel'),(27342,1007395,9,'Stunts'),(27342,1390233,3,'Casting'),(27342,1551487,3,'Casting'),(27342,1577053,7,'Set Decoration'),(27342,1652994,3,'Production Manager'),(13689,56349,2,'Director'),(13689,68758,4,'Screenplay'),(13689,133329,4,'Novel'),(24664,313,1,'Director of Photography'),(24664,4446,3,'Producer'),(24664,5281,2,'Director'),(24664,5281,4,'Screenplay'),(24664,5281,3,'Producer'),(24664,5287,6,'Music'),(24664,18747,5,'Editor'),(29076,95818,2,'Director'),(29076,95818,4,'Writer'),(29339,3557,4,'Novel'),(29339,32983,2,'Director'),(29339,32983,4,'Adaptation'),(32740,1032103,2,'Director'),(14195,4023,3,'Casting'),(14195,3192,3,'Casting'),(14195,10570,3,'Producer'),(14195,5328,3,'Casting'),(14195,5633,7,'Set Decoration'),(14195,7728,6,'Music'),(14195,10367,2,'Director'),(14195,10367,4,'Screenplay'),(14195,10368,7,'Production Design'),(14195,18679,3,'Producer'),(14195,52056,5,'Editor'),(14195,56593,1,'Director of Photography'),(14195,73704,6,'Music'),(14195,77250,3,'Casting'),(14195,77252,8,'Costume Design'),(14195,1281484,8,'Makeup Artist'),(14195,1522776,2,'Script Supervisor'),(14195,1523481,7,'Art Direction'),(14195,1523482,8,'Hairstylist'),(14195,1523483,8,'Makeup Department Head'),(14195,1809723,3,'Producer'),(15394,5949,7,'Art Direction'),(15394,7800,3,'Casting'),(15394,32035,3,'Executive Producer'),(15394,17253,1,'Director of Photography'),(15394,29688,3,'Producer'),(15394,20181,3,'Producer'),(15394,51542,3,'Executive Producer'),(15394,70680,6,'Original Music Composer'),(15394,57561,3,'Producer'),(15394,59588,7,'Production Design'),(15394,75574,3,'Co-Producer'),(15394,228797,2,'Director'),(15394,958641,5,'Editor'),(15394,999544,3,'Co-Producer'),(15394,1472949,4,'Novel'),(15394,1472950,4,'Screenplay'),(15394,1472951,3,'Co-Producer'),(15394,1472952,6,'Original Music Composer'),(10071,434,3,'Casting'),(10071,436,3,'Casting'),(10071,17146,1,'Director of Photography'),(10071,21268,7,'Production Design'),(10071,21767,3,'Producer'),(10071,11374,7,'Art Direction'),(10071,41674,6,'Original Music Composer'),(10071,55985,5,'Editor'),(10071,62831,4,'Author'),(10071,59410,2,'Director'),(10071,59416,3,'Producer'),(10071,59420,3,'Executive Producer'),(10071,62557,3,'Executive Producer'),(10071,62829,3,'Co-Producer'),(10071,62828,3,'Producer'),(10071,62830,8,'Costume Design'),(10071,583990,8,'Set Costumer'),(10071,1069714,8,'Makeup Department Head'),(10071,1440293,8,'Hair Department Head'),(10071,1440306,8,'Costume Supervisor'),(10071,1532690,7,'Art Department Coordinator'),(10071,1532691,7,'Construction Coordinator'),(10071,1532693,8,'Set Costumer'),(10071,1532697,8,'Key Hair Stylist'),(10071,1532699,8,'Makeup Artist'),(12779,4023,3,'Casting'),(12779,1113,3,'Casting'),(12779,956,4,'Screenplay'),(12779,956,2,'Director'),(12779,957,3,'Producer'),(12779,3192,3,'Casting'),(12779,5328,3,'Casting'),(12779,32797,8,'Costume Design'),(12779,35838,6,'Original Music Composer'),(12779,49809,5,'Editor'),(12779,61579,1,'Director of Photography'),(12779,61580,7,'Production Design'),(12779,62778,3,'Casting'),(12779,1407676,2,'Script Supervisor'),(12779,1525250,7,'Art Direction'),(12779,1525251,8,'Makeup Artist'),(13191,58028,4,'Writer'),(13191,93047,2,'Director'),(13191,93048,4,'Writer'),(11770,57607,2,'Director'),(11770,57607,4,'Screenplay'),(11770,57620,6,'Music'),(11770,68030,5,'Editor'),(11770,70432,3,'Producer'),(11770,70435,1,'Director of Photography'),(11770,70436,1,'Director of Photography'),(11770,545537,4,'Screenplay'),(12703,22461,2,'Director'),(12703,22461,4,'Screenplay'),(12703,22461,3,'Producer'),(12703,22461,5,'Editor'),(12703,22461,1,'Director of Photography'),(12703,73956,6,'Original Music Composer'),(12703,73957,6,'Original Music Composer'),(12703,73958,6,'Original Music Composer'),(12703,73959,6,'Original Music Composer'),(25350,11013,2,'Director'),(25350,11013,4,'Writer'),(10034,1266,3,'Producer'),(10034,3965,3,'Casting'),(10034,11227,8,'Costume Design'),(10034,16465,5,'Editor'),(10034,17123,4,'Author'),(10034,21677,3,'Producer'),(10034,29058,7,'Art Direction'),(10034,42177,1,'Director of Photography'),(10034,46863,6,'Original Music Composer'),(10034,47976,4,'Author'),(10034,47976,3,'Producer'),(10034,47978,3,'Producer'),(10034,47696,7,'Production Design'),(10034,62256,4,'Author'),(10034,62257,3,'Casting'),(10034,141450,2,'Director'),(20178,95024,4,'Screenplay'),(20178,95024,2,'Director'),(18191,1255,4,'Writer'),(18191,17149,7,'Production Design'),(18191,17231,3,'Producer'),(18191,27991,2,'Director'),(18191,27991,3,'Producer'),(18191,22143,9,'Cinematography'),(18191,23408,3,'Co-Producer'),(18191,38576,3,'Executive Producer'),(18191,52369,3,'Producer'),(18191,59668,3,'Casting'),(18191,60411,5,'Editor'),(18191,87714,3,'Co-Producer'),(18191,111212,3,'Line Producer'),(18191,100218,3,'Executive Producer'),(18191,791276,3,'Executive Producer'),(18191,960477,3,'Producer'),(18191,986505,3,'Executive Producer'),(18191,1000102,3,'Producer'),(18191,1000559,6,'Music'),(18191,1023134,3,'Producer'),(18191,1238102,3,'Co-Producer'),(18191,1326112,7,'Set Decoration'),(18191,1422996,8,'Costume Design'),(31007,2952,3,'Casting'),(31007,40374,3,'Producer'),(31007,63421,6,'Music'),(31007,65317,2,'Director'),(31007,73424,4,'Writer'),(31007,75079,5,'Editor'),(31007,83188,3,'Producer'),(31007,485159,1,'Director of Photography'),(31007,963170,7,'Production Design'),(31007,968537,3,'Producer'),(31007,1333932,3,'Casting'),(31007,1473813,2,'Script Supervisor'),(11546,30606,5,'Editor'),(11546,33096,3,'Producer'),(11546,12991,4,'Screenplay'),(11546,43393,6,'Music'),(11546,57359,4,'Screenplay'),(11546,65136,5,'Editor'),(11546,69801,2,'Director'),(11546,69805,1,'Director of Photography'),(24663,17845,2,'Director'),(22805,89395,4,'Screenplay'),(22805,89395,2,'Director'),(25186,9778,4,'Writer'),(25186,65133,2,'Director'),(15017,69144,2,'Director'),(15017,77706,4,'Screenplay'),(15017,51392,3,'Producer'),(15017,1217216,4,'Screenplay'),(12245,3788,4,'Novel'),(12245,14351,6,'Original Music Composer'),(12245,16437,1,'Director of Photography'),(12245,16999,3,'Producer'),(12245,17000,3,'Producer'),(12245,47059,3,'Producer'),(12245,57865,4,'Screenplay'),(12245,57865,2,'Director'),(12245,57865,3,'Producer'),(12245,71926,3,'Producer'),(12245,71927,5,'Editor'),(12245,71928,5,'Editor'),(16358,1044,1,'Director of Photography'),(16358,1918,5,'Editor'),(16358,2184,3,'Producer'),(16358,2706,3,'Producer'),(16358,4910,2,'Director'),(16358,4910,4,'Author'),(16358,6996,3,'Casting'),(16358,13585,3,'Casting'),(16358,9337,8,'Hairstylist'),(16358,9204,6,'Music'),(16358,11695,3,'Producer'),(16358,14099,8,'Costume Design'),(16358,11374,7,'Art Direction'),(16358,11373,7,'Production Design'),(16358,61075,3,'Producer'),(16358,1329558,7,'Set Decoration'),(16358,1400738,2,'Script Supervisor'),(16358,1428125,8,'Hairstylist'),(16358,1435688,8,'Makeup Artist'),(16358,1457809,5,'Editor'),(17622,1325,3,'Casting'),(17622,6379,7,'Production Design'),(17622,7786,3,'Casting'),(17622,19809,3,'Executive Producer'),(17622,22140,2,'Director'),(17622,22140,3,'Producer'),(17622,22140,4,'Writer'),(17622,22144,5,'Editor'),(17622,40608,3,'Producer'),(17622,39670,8,'Costume Design'),(17622,39670,7,'Set Decoration'),(17622,43901,3,'Producer'),(17622,62139,3,'Executive Producer'),(17622,62901,3,'Producer'),(17622,62983,3,'Executive Producer'),(17622,172907,3,'Executive Producer'),(17622,229837,6,'Sound Re-Recording Mixer'),(17622,229839,6,'Sound Re-Recording Mixer'),(17622,963697,7,'Art Department Coordinator'),(17622,966149,3,'Executive Producer'),(17622,1028792,6,'Original Music Composer'),(17622,1028847,4,'Novel'),(17622,1028848,3,'Executive Producer'),(17622,1122005,4,'Novel'),(17622,1122006,3,'Producer'),(17622,1122007,3,'Producer'),(17622,1122008,3,'Producer'),(17622,1122009,3,'Producer'),(17622,1122010,3,'Executive Producer'),(17622,1122011,3,'Executive Producer'),(17622,1122012,3,'Line Producer'),(17622,1171528,1,'Director of Photography'),(17622,1320210,7,'Art Direction'),(17622,1377413,6,'Sound Designer'),(17622,1389668,10,'Visual Effects Producer'),(17622,1399869,10,'Visual Effects Supervisor'),(17622,1400415,6,'Music Editor'),(17622,1401320,6,'Sound Re-Recording Mixer'),(17622,1402937,1,'Camera Operator'),(17622,1405798,1,'Camera Operator'),(17622,1407832,5,'Dialogue Editor'),(17622,1413843,8,'Makeup Artist'),(17622,1417831,9,'Stunt Coordinator'),(17622,1430072,7,'Assistant Art Director'),(17622,1431024,6,'Sound Effects Editor'),(17622,1440856,8,'Hairstylist'),(17622,1440866,5,'Digital Intermediate'),(18516,1035,2,'Director'),(18516,1079,7,'Production Design'),(18516,5488,6,'Music'),(18516,16887,6,'Foley'),(18516,17137,5,'Editor'),(18516,17714,6,'Sound Re-Recording Mixer'),(18516,36999,3,'Producer'),(18516,73479,5,'Dialogue Editor'),(18516,50356,6,'ADR & Dubbing'),(18516,52729,1,'Director of Photography'),(18516,114559,4,'Novel'),(18516,114560,4,'Screenplay'),(18516,1099266,7,'Art Direction'),(18516,1159914,6,'Dolby Consultant'),(18516,1316834,7,'Art Direction'),(18516,1335878,10,'Visual Effects Producer'),(18516,1335878,5,'Digital Intermediate'),(18516,1342610,8,'Costume Design'),(18516,1345597,6,'Sound Effects Editor'),(18516,1377262,6,'Sound Designer'),(18516,1401196,1,'Still Photographer'),(18516,1403924,10,'Visual Effects Supervisor'),(18516,1403924,5,'Digital Intermediate'),(18516,1403925,1,'Camera Operator'),(18516,1434547,2,'Script Supervisor'),(18516,1466713,8,'Assistant Costume Designer'),(18516,1540856,8,'Makeup Artist'),(18516,1580620,1,'First Assistant Camera'),(18516,1584942,3,'Producer'),(18516,1586643,8,'Key Hair Stylist'),(18516,1594795,11,'Gaffer'),(18516,1601239,6,'ADR & Dubbing'),(18516,1604712,9,'Visual Effects Editor'),(18516,1604712,5,'Digital Intermediate'),(18516,1605657,5,'Digital Intermediate'),(18516,1605745,7,'Art Department Coordinator'),(18516,1605748,8,'Costume Supervisor'),(18516,1605751,1,'Still Photographer'),(18516,1605752,9,'Special Effects Coordinator'),(18516,1605755,9,'CG Supervisor'),(18516,1605758,8,'Makeup Artist'),(17577,9425,6,'Music'),(17577,22065,3,'Casting'),(17577,32546,4,'Writer'),(17577,33618,9,'Cinematography'),(17577,25527,2,'Director'),(17577,61992,5,'Editor'),(17577,95640,1,'Camera Operator'),(17577,955069,3,'Producer'),(17577,955071,3,'Producer'),(17577,1039117,7,'Production Design'),(17577,1190611,9,'Transportation Coordinator'),(17577,1271793,9,'Special Effects Coordinator'),(17577,1302966,6,'Supervising Sound Editor'),(17577,1302967,6,'Foley'),(17577,1340086,3,'Producer'),(17577,1340102,10,'Visual Effects Supervisor'),(17577,1403003,8,'Hairstylist'),(17577,1403005,5,'Dialogue Editor'),(17577,1403008,6,'Sound Designer'),(17577,1423828,3,'Producer'),(17577,1423830,7,'Art Direction'),(17577,1423831,7,'Set Decoration'),(17577,1423832,8,'Costume Design'),(17577,1423833,8,'Makeup Artist'),(17577,1423834,8,'Makeup Artist'),(17577,1423835,9,'Property Master'),(17577,1423836,7,'Leadman'),(17577,1423838,5,'Dialogue Editor'),(17577,1423839,6,'Sound Designer'),(17577,1423840,5,'Dialogue Editor'),(17577,1423841,10,'Visual Effects Producer'),(17577,1423842,10,'Visual Effects Supervisor'),(17577,1423843,1,'Camera Operator'),(17577,1423844,1,'Additional Camera'),(17577,1423845,1,'Still Photographer'),(17577,1423846,8,'Set Costumer'),(17577,1423847,2,'Script Supervisor'),(14608,87121,2,'Director'),(14608,87121,4,'Writer'),(14608,87123,4,'Writer'),(34417,1434341,2,'Director'),(15067,37944,1,'Director of Photography'),(15067,84715,4,'Screenplay'),(15067,543568,2,'Director'),(15067,543568,4,'Screenplay'),(16614,5884,5,'Editor'),(16614,5952,3,'Producer'),(16614,9544,3,'Casting'),(16614,15906,3,'Executive Producer'),(16614,17450,3,'Producer'),(16614,33439,8,'Costume Design'),(16614,35180,3,'Producer'),(16614,47293,1,'Director of Photography'),(16614,50770,3,'Executive Producer'),(16614,54733,2,'Director'),(16614,54733,4,'Screenplay'),(16614,64924,3,'Unit Production Manager'),(16614,64924,3,'Co-Producer'),(16614,134937,9,'Stunt Coordinator'),(16614,229810,8,'Hair Department Head'),(16614,399477,6,'Original Music Composer'),(16614,966121,7,'Set Decoration'),(16614,1030591,7,'Production Design'),(16614,1143778,7,'Art Direction'),(16614,1385930,2,'Script Supervisor'),(16614,1406842,1,'Still Photographer'),(16614,1427381,6,'Music Editor'),(16614,1433655,1,'Camera Operator'),(16614,1526823,6,'Music Supervisor'),(10471,5287,6,'Music'),(10471,3121,5,'Editor'),(10471,9778,3,'Executive Producer'),(10471,9778,4,'Characters'),(10471,9778,4,'Writer'),(10471,50723,1,'Director of Photography'),(10471,52112,2,'Director'),(10471,65134,4,'Characters'),(10306,11772,3,'Producer'),(10306,33094,2,'Director'),(10306,33094,4,'Screenplay'),(10306,33094,3,'Executive Producer'),(10306,59443,1,'Director of Photography'),(10306,64821,4,'Screenplay'),(10306,65681,6,'Original Music Composer'),(10306,66756,5,'Editor'),(11576,4081,2,'Director'),(11576,4081,3,'Producer'),(11576,4085,7,'Production Design'),(11576,9103,1,'Director of Photography'),(11576,12142,6,'Original Music Composer'),(11576,12143,5,'Editor'),(11576,14493,8,'Costume Design'),(11576,21008,4,'Screenplay'),(11576,21012,5,'Editor'),(11576,29280,7,'Set Decoration'),(11576,51767,5,'Editor'),(11576,69953,4,'Screenplay'),(11576,958562,7,'Art Direction'),(11576,1061323,8,'Makeup Artist'),(11576,1299027,8,'Hairstylist'),(11576,1299029,8,'Makeup Artist'),(11827,7182,6,'Original Music Composer'),(11827,8858,3,'Producer'),(11827,52871,4,'Screenplay'),(11827,57132,4,'Screenplay'),(11827,62460,4,'Characters'),(11827,70616,2,'Director'),(11827,70620,3,'Executive Producer'),(11827,70621,5,'Editor'),(11827,70622,5,'Editor'),(11827,70623,5,'Editor'),(11827,1100798,10,'Animation'),(11827,1395269,9,'Special Effects'),(11827,1447357,10,'Animation'),(11827,1462615,10,'Animation'),(22820,53925,2,'Director'),(22820,53925,4,'Writer'),(22820,57408,4,'Writer'),(22820,1447543,9,'Digital Effects Supervisor'),(31174,1327,4,'Writer'),(31174,6210,4,'Theatre Play'),(31174,33315,2,'Director'),(31174,33315,4,'Writer'),(30497,6042,1,'Director of Photography'),(30497,10051,2,'Director'),(30497,10051,4,'Screenplay'),(30497,10051,6,'Music'),(30497,10051,3,'Producer'),(30497,27797,4,'Screenplay'),(30497,27805,7,'Art Direction'),(30497,74681,5,'Editor'),(30497,75406,6,'Sound Designer'),(30497,75406,6,'Music'),(30497,1321618,5,'Editor'),(27586,1254,3,'Producer'),(27586,8425,5,'Editor'),(27586,14599,1,'Director of Photography'),(27586,46588,3,'Producer'),(27586,69414,3,'Producer'),(27586,98521,2,'Director'),(27586,98521,4,'Screenplay'),(27586,108775,4,'Author'),(14811,491,6,'Orchestrator'),(14811,491,6,'Conductor'),(14811,877,9,'Post Production Supervisor'),(14811,930,3,'Location Manager'),(14811,1263,3,'Casting'),(14811,2657,7,'Production Design'),(14811,8524,7,'Set Decoration'),(14811,10011,8,'Costume Design'),(14811,10339,1,'Director of Photography'),(14811,12509,5,'Editor'),(14811,13563,2,'Director'),(14811,13563,3,'Producer'),(14811,13942,8,'Makeup Artist'),(14811,14523,3,'Executive Producer'),(14811,14491,5,'Editor'),(14811,10829,3,'Associate Producer'),(14811,19743,4,'Adaptation'),(14811,20140,6,'Sound Mixer'),(14811,47415,7,'Art Direction'),(14811,66754,3,'Production Supervisor'),(14811,122754,9,'Property Master'),(14811,931836,8,'Makeup Artist'),(14811,952485,3,'Production Manager'),(14811,955413,4,'Screenplay'),(14811,957559,4,'Original Story'),(14811,958171,8,'Costume Design'),(14811,1234217,2,'Assistant Director'),(14811,1318751,6,'Original Music Composer'),(14811,1411160,2,'Script Supervisor'),(14811,1432524,8,'Hairstylist'),(14811,1455432,2,'Assistant Director'),(14811,1533743,9,'Stunts'),(14811,1537245,7,'Art Direction'),(14811,1548281,1,'Camera Operator'),(14811,1601905,1,'Grip'),(16162,72024,2,'Director'),(16162,72024,4,'Writer'),(10585,2287,1,'Director of Photography'),(10585,4981,5,'Editor'),(10585,13596,3,'Producer'),(10585,64796,4,'Screenplay'),(10585,64796,2,'Director'),(10585,65681,6,'Original Music Composer'),(10585,65677,4,'Screenplay'),(10585,65678,4,'Screenplay'),(10585,65682,5,'Editor'),(10472,13233,3,'Producer'),(10472,13234,3,'Producer'),(10472,42383,6,'Original Music Composer'),(10472,65627,2,'Director'),(10472,65627,4,'Novel'),(10472,65627,4,'Screenplay'),(11282,4772,3,'Casting'),(11282,51035,8,'Costume Design'),(11282,25143,6,'Original Music Composer'),(11282,17732,3,'Executive Producer'),(11282,19657,3,'Executive Producer'),(11282,19658,3,'Producer'),(11282,20382,5,'Editor'),(11282,23541,3,'Executive Producer'),(11282,40383,3,'Producer'),(11282,24192,6,'Music Supervisor'),(11282,52159,3,'Executive Producer'),(11282,38579,1,'Director of Photography'),(11282,56591,2,'Director'),(11282,64608,7,'Art Direction'),(11282,68843,4,'Screenplay'),(11282,68844,4,'Screenplay'),(11282,68845,3,'Executive Producer'),(11282,68846,3,'Executive Producer'),(11282,1340343,2,'Script Supervisor'),(11282,1395359,7,'Production Design'),(11282,1418014,8,'Key Hair Stylist'),(11282,1525885,7,'Set Decoration'),(11282,1529603,3,'Production Coordinator'),(14181,550,3,'Producer'),(14181,551,3,'Producer'),(14181,561,3,'Casting'),(14181,7439,7,'Art Direction'),(14181,9408,6,'Supervising Sound Editor'),(14181,9409,6,'Sound Re-Recording Mixer'),(14181,9419,6,'Sound Effects Editor'),(14181,14045,6,'Sound Re-Recording Mixer'),(14181,16994,6,'Sound Effects Editor'),(14181,17598,1,'Director of Photography'),(14181,22221,8,'Assistant Costume Designer'),(14181,24294,2,'Director'),(14181,24294,4,'Writer'),(14181,54252,3,'Co-Producer'),(14181,57430,3,'Executive Producer'),(14181,63521,5,'Editor'),(14181,70052,3,'Executive Producer'),(14181,91147,6,'Music Supervisor'),(14181,1010751,6,'Sound Re-Recording Mixer'),(14181,1373435,6,'Sound Effects Editor'),(14181,1397736,6,'Music Editor'),(14181,1418398,1,'Steadicam Operator'),(14181,1462705,5,'First Assistant Editor'),(14181,1467186,7,'Production Design'),(14181,1467187,7,'Art Direction'),(14181,1516265,8,'Costume Design'),(14181,1516271,3,'Associate Producer'),(14181,1525957,2,'Script Supervisor'),(14181,1536537,1,'First Assistant Camera'),(14181,1537446,1,'Still Photographer'),(14181,1545473,7,'Set Decoration'),(14181,1545475,8,'Key Hair Stylist'),(14181,1545483,5,'First Assistant Editor'),(14181,1545495,6,'Sound mixer'),(14181,1545528,3,'Production Coordinator'),(16428,10421,7,'Production Design'),(16428,27154,1,'Director of Photography'),(16428,65847,3,'Producer'),(16428,65849,5,'Editor'),(16428,62557,3,'Executive Producer'),(16428,74063,2,'Director'),(16428,74063,4,'Writer'),(10705,6210,4,'Novel'),(10705,9152,6,'Original Music Composer'),(10705,11181,4,'Screenplay'),(10705,11181,2,'Director'),(10705,23865,5,'Editor'),(10705,39992,3,'Executive Producer'),(10705,43624,1,'Director of Photography'),(10705,66251,3,'Producer'),(24621,42745,4,'Writer'),(24621,84438,4,'Writer'),(24621,1214860,2,'Director'),(14425,6347,3,'Casting'),(14425,7418,8,'Costume Design'),(14425,7678,2,'Director'),(14425,12374,3,'Unit Production Manager'),(14425,17948,1,'Director of Photography'),(14425,18344,3,'Producer'),(14425,11011,4,'Writer'),(14425,28161,5,'Editor'),(14425,38411,7,'Production Design'),(14425,57872,4,'Writer'),(14425,73137,9,'Executive Music Producer'),(14425,977988,2,'First Assistant Director'),(14425,1016148,2,'Second Assistant Director'),(14425,1852804,3,'Co-Producer'),(14624,60450,6,'Original Music Composer'),(14624,72971,3,'Producer'),(14624,87178,2,'Director'),(14624,87179,4,'Screenplay'),(14624,87180,4,'Novel'),(14624,92534,3,'Casting'),(14624,108782,7,'Production Design'),(14624,119575,9,'Stunt Coordinator'),(14624,125637,1,'Director of Photography'),(14624,1001764,3,'Casting'),(14624,1004282,3,'Producer'),(14624,1019814,8,'Costume Design'),(14624,1155579,8,'Costume Supervisor'),(14624,1334484,7,'Set Decoration'),(14624,1342074,2,'Script Supervisor'),(14624,1393568,1,'Still Photographer'),(14624,1408714,8,'Makeup Department Head'),(14624,1408716,7,'Construction Coordinator'),(14624,1421236,8,'Hair Department Head'),(14624,1421254,8,'Key Costumer'),(14624,1506367,8,'Hair Department Head'),(14624,1532321,7,'Art Direction'),(14624,1532396,6,'Music Supervisor'),(14624,1535951,6,'Supervising Sound Editor'),(14624,1545419,9,'Special Effects Coordinator'),(14624,1551216,6,'Sound Editor'),(14624,1840700,2,'First Assistant Director'),(14624,1840702,7,'Property Master'),(14624,1840712,7,'Art Department Coordinator'),(14624,1840713,6,'Sound Designer'),(14624,1840714,6,'Sound Editor'),(14624,1840715,10,'Visual Effects Coordinator'),(14624,1840716,1,'Camera Operator'),(14624,1840720,6,'Music Editor'),(10179,796,7,'Set Decoration'),(10179,2507,1,'Director of Photography'),(10179,9578,3,'Producer'),(10179,12805,4,'Author'),(10179,16613,7,'Art Direction'),(10179,20897,6,'Original Music Composer'),(10179,22029,7,'Art Direction'),(10179,22546,3,'Casting'),(10179,59023,2,'Director'),(10179,59023,4,'Author'),(10179,119719,8,'Costume Design'),(10179,1491246,5,'Editor'),(15568,19012,2,'Director'),(14057,86203,2,'Director'),(14057,86203,4,'Writer'),(12621,554,3,'Producer'),(12621,17172,3,'Executive Producer'),(12621,17173,3,'Executive Producer'),(12621,11876,5,'Editor'),(12621,18457,3,'Casting'),(12621,33651,1,'Director of Photography'),(12621,34522,4,'Screenplay'),(12621,41549,2,'Director'),(12621,41549,4,'Screenplay'),(12621,73135,3,'Producer'),(12621,73136,3,'Producer'),(12621,73137,6,'Original Music Composer'),(12621,1382732,3,'Executive Producer'),(27329,10253,9,'Cinematography'),(27329,70002,5,'Editor'),(27329,565524,4,'Screenplay'),(27329,565524,2,'Director'),(27329,565524,5,'Editor'),(27329,1301375,9,'Cinematography'),(27329,1307443,4,'Writer'),(27329,1381809,9,'Cinematography'),(29514,14999,4,'Screenplay'),(29514,14999,2,'Director'),(29514,4668,4,'Screenplay'),(29514,4955,4,'Screenplay'),(29514,4955,2,'Director'),(29514,4955,3,'Executive Producer'),(29514,11161,9,'Special Effects'),(29514,11161,9,'Stunts'),(29514,11161,9,'Makeup Effects'),(29514,14138,6,'Original Music Composer'),(29514,48415,4,'Story'),(29514,91319,9,'Makeup Effects'),(29514,104044,9,'Makeup Effects'),(29514,88164,9,'Second Unit'),(29514,104043,3,'Producer'),(12454,11072,5,'Editor'),(12454,3560,3,'Producer'),(12454,5624,3,'Executive Producer'),(12454,6379,7,'Production Design'),(12454,6382,7,'Art Direction'),(12454,16363,3,'Casting'),(12454,20423,3,'Producer'),(12454,36591,8,'Costume Design'),(12454,60085,1,'Director of Photography'),(12454,65452,2,'Director'),(12454,65452,4,'Writer'),(12454,65454,3,'Line Producer'),(12454,68047,6,'Original Music Composer'),(12454,1412126,2,'Script Supervisor'),(12454,1413858,3,'Publicist'),(15699,57630,2,'Director'),(15699,57630,4,'Screenplay'),(15699,78562,4,'Screenplay'),(15699,78563,4,'Screenplay'),(15699,78563,4,'Novel'),(17926,3953,3,'Producer'),(17926,62511,3,'Producer'),(17926,98084,6,'Music'),(17926,958401,9,'Cinematography'),(17926,1045480,2,'Director'),(17926,1171860,4,'Writer'),(25968,1725,4,'Writer'),(25968,4906,3,'Casting'),(25968,17231,3,'Producer'),(25968,47201,2,'Director'),(25968,47203,6,'Music'),(25968,67157,3,'Producer'),(25968,94451,3,'Executive Producer'),(25968,94452,4,'Author'),(25968,94453,3,'Producer'),(25968,94454,3,'Executive Producer'),(25968,94456,3,'Executive Producer'),(25968,94457,3,'Executive Producer'),(25968,94458,3,'Producer'),(25968,94459,3,'Executive Producer'),(25968,94460,3,'Producer'),(25968,94461,3,'Producer'),(25968,94462,3,'Executive Producer'),(25968,94463,3,'Producer'),(25968,94464,3,'Executive Producer'),(25968,94465,3,'Executive Producer'),(25968,94466,3,'Executive Producer'),(25968,94467,3,'Line Producer'),(25968,94468,9,'Cinematography'),(25968,94469,5,'Editor'),(25968,94470,3,'Casting'),(11588,16465,5,'Editor'),(11588,21739,1,'Director of Photography'),(11588,28399,4,'Screenplay'),(11588,33036,2,'Director'),(11588,57902,6,'Original Music Composer'),(13483,2952,3,'Casting'),(13483,5912,6,'Music'),(13483,4869,5,'Editor'),(13483,8523,1,'Director of Photography'),(13483,13233,3,'Producer'),(13483,13234,3,'Producer'),(13483,26473,3,'Producer'),(13483,34540,9,'Stunt Coordinator'),(13483,40141,6,'Sound Designer'),(13483,52989,3,'Producer'),(13483,92376,6,'Foley'),(13483,92389,6,'Sound Effects Editor'),(13483,92391,6,'Supervising Sound Editor'),(13483,92391,6,'Sound Re-Recording Mixer'),(13483,74569,2,'Director'),(13483,74569,4,'Writer'),(13483,91050,8,'Costume Design'),(13483,99038,9,'Scenic Artist'),(13483,982927,9,'Property Master'),(13483,1085004,5,'Dialogue Editor'),(13483,1194020,6,'Music'),(13483,1328383,7,'Set Decoration'),(13483,1330609,7,'Production Design'),(13483,1330610,7,'Art Direction'),(13483,1330612,8,'Makeup Department Head'),(13483,1379963,10,'Visual Effects Supervisor'),(13483,1395677,7,'Construction Coordinator'),(13483,1399979,2,'Script Supervisor'),(13483,1402045,8,'Hairstylist'),(13483,1402046,9,'Scenic Artist'),(13483,1402047,7,'Art Department Coordinator'),(13483,1402069,7,'Leadman'),(13483,1402070,5,'Dialogue Editor'),(13483,1402071,6,'Sound Re-Recording Mixer'),(13483,1402073,1,'Still Photographer'),(13483,1402074,1,'Camera Operator'),(13483,1402075,1,'Camera Operator'),(13483,1402075,1,'Steadicam Operator'),(13483,1402076,11,'Gaffer'),(13483,1402077,11,'Best Boy Electric'),(13483,1402078,9,'Video Assist Operator'),(13483,1402079,5,'Digital Intermediate'),(13483,1402080,6,'Music Editor'),(13483,1402081,3,'Location Manager'),(13483,1402082,9,'Translator'),(13483,1402083,3,'Location Manager'),(13483,1402084,9,'Dialect Coach'),(25196,3087,3,'Producer'),(25196,1483,3,'Producer'),(25196,1483,6,'Music'),(25196,5914,3,'Casting'),(25196,35176,5,'Editor'),(25196,20568,5,'Editor'),(25196,27543,7,'Production Design'),(25196,34191,1,'Director of Photography'),(25196,65167,2,'Director'),(25196,65167,4,'Screenplay'),(25196,71560,7,'Set Decoration'),(25196,431491,8,'Costume Design'),(25196,948841,3,'Producer'),(25196,988844,7,'Art Direction'),(25196,1024835,3,'Producer'),(25196,1024910,3,'Casting'),(25196,1252330,3,'Producer'),(25196,1269670,8,'Makeup Department Head'),(25196,1325915,6,'Music'),(25196,1404276,8,'Hairstylist'),(25196,1473811,2,'Script Supervisor'),(25196,1506367,8,'Hairstylist'),(25196,1520586,4,'Novel'),(25196,1520593,8,'Makeup Artist'),(16323,1263,3,'Casting'),(16323,4181,4,'Screenplay'),(16323,8868,8,'Costume Design'),(16323,12114,4,'Screenplay'),(16323,12235,1,'Director of Photography'),(16323,13721,5,'Editor'),(16323,18165,3,'Producer'),(16323,21813,7,'Art Direction'),(16323,21958,2,'Director'),(16323,11061,7,'Production Design'),(16323,46008,5,'Editor'),(16323,68493,3,'Producer'),(16323,114641,4,'Screenplay'),(16323,114641,4,'Story'),(16323,146708,3,'Executive Producer'),(16323,958383,7,'Set Decoration'),(16323,1164426,11,'Gaffer'),(16323,1358074,8,'Hairstylist'),(16323,1531645,8,'Makeup Artist'),(16323,1531646,3,'Unit Production Manager'),(16727,4434,1,'Director of Photography'),(16727,6495,2,'Director'),(16727,6495,3,'Producer'),(16727,6504,5,'Editor'),(16727,9552,3,'Producer'),(16727,34954,6,'Music'),(16727,38804,3,'Producer'),(16727,39821,3,'Producer'),(16727,39823,3,'Executive Producer'),(16727,39824,3,'Producer'),(16727,53677,3,'Producer'),(16727,964318,3,'Producer'),(16727,1017378,4,'Screenplay'),(16727,1249203,4,'Novel'),(16727,1716975,3,'Producer'),(16727,1716977,3,'Producer'),(10696,547,3,'Casting'),(10696,5287,6,'Original Music Composer'),(10696,6198,2,'Director'),(10696,10685,3,'Producer'),(10696,11876,5,'Editor'),(10696,14913,7,'Art Direction'),(10696,36429,8,'Costume Design'),(10696,52055,1,'Director of Photography'),(10696,54252,3,'Co-Producer'),(10696,66598,4,'Screenplay'),(10696,107420,7,'Set Decoration'),(10696,957258,7,'Production Design'),(19644,24995,1,'Director of Photography'),(19644,85006,2,'Director'),(19644,85006,3,'Producer'),(19644,85007,4,'Writer'),(19644,1347650,3,'Producer'),(29963,466,3,'Executive Producer'),(29963,6373,3,'Executive Producer'),(29963,10757,2,'Director'),(29963,10757,4,'Writer'),(29963,10758,3,'Producer'),(29963,15726,3,'Executive Producer'),(29963,15729,3,'Executive Producer'),(29963,16363,3,'Casting'),(29963,61630,5,'Editor'),(29963,67113,1,'Director of Photography'),(29963,72898,3,'Producer'),(29963,75479,7,'Production Design'),(29963,75479,8,'Costume Design'),(29963,1024844,7,'Set Decoration'),(29963,1317047,6,'Music'),(29963,1340728,9,'Stunt Coordinator'),(29963,1373694,7,'Art Direction'),(29963,1410183,3,'Line Producer'),(26022,35742,3,'Producer'),(26022,35740,7,'Production Design'),(26022,35736,3,'Producer'),(26022,35736,2,'Director'),(26022,52774,5,'Editor'),(26022,53973,3,'Producer'),(26022,8733,8,'Costume Supervisor'),(26022,55060,4,'Dialogue'),(26022,55073,1,'Director of Photography'),(26022,85581,6,'Original Music Composer'),(26022,85582,6,'Original Music Composer'),(26022,85583,6,'Original Music Composer'),(26022,94564,4,'Dialogue'),(26022,94566,8,'Co-Costume Designer'),(20360,88142,2,'Director'),(20360,142632,4,'Writer'),(20360,150486,4,'Writer'),(11620,7647,6,'Original Music Composer'),(11620,9054,2,'Director'),(11620,10004,3,'Producer'),(11620,10005,1,'Director of Photography'),(11620,10007,5,'Editor'),(11620,17668,1,'Director of Photography'),(11620,29618,4,'Screenplay'),(11620,40199,2,'Director'),(11620,70044,4,'Screenplay'),(11620,70045,4,'Screenplay'),(11620,25315,4,'Novel'),(14353,2675,2,'Director'),(14353,76686,4,'Author'),(14353,76688,4,'Author'),(11818,70579,2,'Director'),(11818,70580,2,'Director'),(11818,70581,4,'Screenplay'),(11818,70582,4,'Screenplay'),(11818,70582,3,'Producer'),(11818,70583,3,'Executive Producer'),(11818,70584,6,'Original Music Composer'),(11818,70585,1,'Director of Photography'),(11818,70586,5,'Editor'),(11176,7414,5,'Editor'),(11176,12018,7,'Production Design'),(11176,24328,3,'Executive Producer'),(11176,30592,3,'Executive Producer'),(11176,35040,6,'Original Music Composer'),(11176,55983,3,'Producer'),(11176,64184,4,'Writer'),(11176,68457,2,'Director'),(11176,68458,4,'Writer'),(11176,68459,1,'Director of Photography'),(11217,561,3,'Casting'),(11217,5387,1,'Director of Photography'),(11217,7357,3,'Local Casting'),(11217,16573,6,'ADR Editor'),(11217,19659,6,'Original Music Composer'),(11217,52049,4,'Screenplay'),(11217,52049,2,'Director'),(11217,52051,4,'Screenplay'),(11217,56251,4,'Screenplay'),(11217,56252,4,'Screenplay'),(11217,56253,4,'Screenplay'),(11217,56596,3,'Executive Producer'),(11217,56597,3,'Producer'),(11217,57153,9,'Unit Production Manager'),(11217,57153,3,'Co-Producer'),(11217,57154,3,'Executive Producer'),(11217,57154,9,'Second Unit'),(11217,68636,5,'Editor'),(11217,78981,3,'Casting Assistant'),(11217,143919,6,'Sound Re-Recording Mixer'),(11217,227225,8,'Costume Design'),(11217,1031811,6,'Supervising Sound Editor'),(11217,1120536,2,'First Assistant Director'),(11217,1204125,6,'Boom Operator'),(11217,1329476,7,'Art Direction'),(11217,1329805,7,'Set Decoration'),(11217,1339317,8,'Hair Department Head'),(11217,1392111,9,'Transportation Coordinator'),(11217,1399975,1,'Still Photographer'),(11217,1400815,9,'Special Effects Coordinator'),(11217,1400835,2,'Script Supervisor'),(11217,1403537,10,'Visual Effects Supervisor'),(11217,1403537,10,'Visual Effects Producer'),(11217,1404546,6,'Music Editor'),(11217,1407876,6,'Assistant Sound Editor'),(11217,1410803,1,'Camera Operator'),(11217,1412600,1,'Steadicam Operator'),(11217,1412699,6,'Sound Effects Editor'),(11217,1413453,6,'Sound Designer'),(11217,1520952,8,'Makeup Artist'),(11217,1525536,7,'Production Design'),(11217,1534681,6,'Music Supervisor'),(11217,1547771,5,'First Assistant Editor'),(11217,1549440,9,'Mixing Engineer'),(11217,1560037,7,'Assistant Art Director'),(11217,1560040,7,'Painter'),(11217,1560041,7,'Sculptor'),(11217,1560048,1,'First Assistant Camera'),(11217,1560049,1,'Key Grip'),(11217,1560050,1,'Underwater Camera'),(11217,1560051,8,'Hairstylist'),(11217,1560055,8,'Makeup Department Head'),(11217,1560061,8,'Prosthetic Supervisor'),(11217,1560062,8,'Seamstress'),(11217,1560063,8,'Set Costumer'),(11217,1560065,7,'Set Dresser'),(11217,1560067,9,'Additional Music'),(11217,1560069,9,'Cableman'),(11217,1560070,9,'Carpenter'),(11217,1560071,9,'Craft Service'),(11217,1560072,1,'Camera Loader'),(11217,1560075,9,'Makeup Effects'),(11217,1560087,9,'Propmaker'),(11217,1560094,9,'Property Master'),(11217,1560097,9,'Set Production Assistant'),(11217,1560100,9,'Stunt Coordinator'),(11217,1560101,9,'Stunt Coordinator'),(11217,1560102,9,'Stunts'),(11217,1560107,9,'Transportation Captain'),(11217,1560108,9,'Unit Publicist'),(11217,1560110,5,'Color Timer'),(11217,1560111,11,'Best Boy Electric'),(11217,1560112,11,'Electrician'),(11217,1560113,11,'Gaffer'),(11217,1560114,3,'Casting Associate'),(11217,1560115,3,'Location Manager'),(11217,1560119,3,'Production Accountant'),(11217,1560120,3,'Production Coordinator'),(11217,1560121,3,'Production Manager'),(11217,1560122,3,'Production Supervisor'),(11217,1560124,6,'Foley'),(11217,1560125,6,'Orchestrator'),(11217,1560126,6,'Sound Engineer'),(11217,1560127,6,'Sound mixer'),(11217,1560128,10,'Visual Effects Coordinator'),(11217,1560129,4,'Storyboard'),(11217,1568662,10,'3D Animator'),(11217,1733142,5,'Negative Cutter'),(11217,1741090,1,'Dolly Grip'),(11217,1741091,1,'Grip'),(11217,1741092,8,'Wardrobe Supervisor'),(11217,1741093,9,'Marine Coordinator'),(11217,1741097,2,'Second Assistant Director'),(11217,1741098,3,'Assistant Production Coordinator'),(15121,1744,2,'Director'),(15121,1744,3,'Producer'),(15121,874,7,'Production Design'),(15121,1297,3,'Executive Producer'),(15121,2637,4,'Screenplay'),(15121,2760,1,'Director of Photography'),(15121,3099,5,'Editor'),(15121,3802,3,'Casting'),(15121,9587,7,'Set Decoration'),(15121,12292,7,'Set Decoration'),(15121,29800,8,'Costume Design'),(15121,34359,3,'Associate Producer'),(15121,68137,6,'Original Music Composer'),(15121,149075,4,'Screenplay'),(15121,1016840,3,'Unit Production Manager'),(15121,1118235,3,'Executive Producer'),(15121,1240887,4,'Screenplay'),(15121,1289037,2,'Assistant Director'),(14114,127936,2,'Director'),(10734,384,5,'Assistant Editor'),(10734,375,6,'Sound Effects Editor'),(10734,792,1,'Director of Photography'),(10734,3643,5,'Editor'),(10734,3806,3,'Casting'),(10734,7769,6,'Music'),(10734,8888,6,'Music Editor'),(10734,12847,3,'Casting'),(10734,14773,2,'Director'),(10734,14773,3,'Producer'),(10734,14777,3,'Executive Producer'),(10734,23682,9,'Property Master'),(10734,56192,3,'Associate Producer'),(10734,66274,4,'Screenplay'),(10734,66280,4,'Book'),(10734,66283,7,'Production Design'),(10734,66284,7,'Set Decoration'),(10734,114512,2,'Script Supervisor'),(10734,117779,9,'Transportation Co-Captain'),(10734,961264,3,'Production Manager'),(10734,1043608,8,'Costume Supervisor'),(10734,1083680,5,'Assistant Editor'),(10734,1338669,8,'Makeup Artist'),(10734,1342626,6,'Sound Re-Recording Mixer'),(10734,1368865,6,'Sound Effects Editor'),(10734,1408661,6,'Sound Mixer'),(10734,1411699,1,'Camera Operator'),(10734,1442566,9,'Special Effects'),(10734,1489960,1,'Camera Operator'),(10734,1531398,7,'Construction Coordinator'),(10734,1727629,3,'Unit Production Manager'),(10734,1727630,2,'Assistant Director'),(10734,1727631,11,'Gaffer'),(10734,1727632,9,'Transportation Coordinator'),(10734,1727633,9,'Transportation Co-Captain'),(10734,1727634,1,'Still Photographer'),(10734,1727635,9,'Unit Publicist'),(10734,1789636,6,'Music'),(28121,78029,4,'Screenplay'),(28121,78029,2,'Director'),(28121,548432,6,'Sound Re-Recording Mixer'),(28121,1236704,4,'Screenplay'),(28121,1258586,4,'Screenplay'),(28121,1378226,6,'Sound Re-Recording Mixer'),(28121,1384636,4,'Screenplay'),(28121,1399996,6,'Sound Re-Recording Mixer'),(28121,1399997,6,'Sound Re-Recording Mixer'),(28121,1424894,8,'Hairstylist'),(28121,1431628,6,'Sound Re-Recording Mixer'),(28121,1551320,9,'Sound Recordist'),(28121,1558257,9,'Sound Recordist'),(10885,376,3,'Executive Producer'),(10885,4998,1,'Director of Photography'),(10885,16651,5,'Editor'),(10885,19659,6,'Original Music Composer'),(10885,20316,3,'Producer'),(10885,21035,3,'Producer'),(10885,21036,3,'Producer'),(10885,64335,5,'Editor'),(10885,67316,2,'Director'),(10885,67317,4,'Screenplay'),(10885,564949,3,'Executive Producer'),(10885,958008,7,'Production Design'),(10885,983528,3,'Executive Producer'),(16471,12940,5,'Editor'),(16471,21810,6,'Original Music Composer'),(16471,27541,3,'Producer'),(16471,58288,4,'Writer'),(16471,99339,2,'Director'),(16471,99339,4,'Writer'),(16471,128600,4,'Writer'),(16471,128601,1,'Director of Photography'),(11971,4868,5,'Editor'),(11971,6210,4,'Theatre Play'),(11971,9152,6,'Music'),(11971,11181,4,'Screenplay'),(11971,11181,2,'Director'),(11971,11181,3,'Producer'),(11971,20062,3,'Producer'),(11971,39992,3,'Producer'),(11971,48971,1,'Director of Photography'),(11971,1327842,5,'Assistant Editor'),(11596,5140,4,'Screenplay'),(11596,5140,2,'Director'),(11596,5140,3,'Executive Producer'),(11596,5140,4,'Characters'),(11596,13663,3,'Executive Producer'),(11596,13668,3,'Co-Executive Producer'),(11596,7413,1,'Director of Photography'),(11596,10122,3,'Unit Production Manager'),(11596,11799,3,'Casting'),(11596,14039,7,'Production Design'),(11596,28156,6,'Original Music Composer'),(11596,35581,3,'Producer'),(11596,27226,5,'Editor'),(11596,35766,8,'Costume Design'),(11596,40269,5,'First Assistant Editor'),(11596,64075,3,'Co-Producer'),(11596,553772,2,'Script Supervisor'),(11596,1387541,6,'Sound Effects Editor'),(11596,1391679,5,'Dialogue Editor'),(11596,1397263,6,'Sound Re-Recording Mixer'),(11596,1397736,6,'Music Editor'),(11596,1408192,1,'Steadicam Operator'),(11596,1415105,6,'Sound Effects Editor'),(11596,1447503,7,'Conceptual Design'),(11596,1472439,7,'Set Decoration'),(11596,1544376,6,'Music Supervisor'),(11596,1545450,6,'Music Supervisor'),(11596,1545451,1,'Steadicam Operator'),(11596,1545453,3,'Associate Producer'),(11596,1545454,6,'Sound Re-Recording Mixer'),(11596,1545455,6,'Sound Re-Recording Mixer'),(11596,1545458,6,'Sound Effects Editor'),(11596,1545460,6,'Sound mixer'),(11596,1545462,5,'Dialogue Editor'),(11596,1545463,5,'Dialogue Editor'),(11596,1545464,5,'Dialogue Editor'),(11596,1545466,9,'Stunt Coordinator'),(14429,20236,4,'Screenplay'),(14429,48311,1,'Director of Photography'),(14429,79656,2,'Director'),(13751,5776,3,'Casting'),(13751,5290,3,'Casting'),(13751,22119,1,'Director of Photography'),(13751,40384,6,'Original Music Composer'),(13751,16994,6,'Supervising Sound Editor'),(13751,16994,6,'Sound Designer'),(13751,27039,3,'Casting'),(13751,21244,5,'Editor'),(13751,60478,7,'Production Design'),(13751,109640,4,'Writer'),(13751,109640,2,'Director'),(13751,102333,7,'Set Decoration'),(13751,80802,3,'Production Supervisor'),(13751,80852,6,'Music Supervisor'),(13751,1106206,1,'Camera Operator'),(13751,1378759,6,'Boom Operator'),(13751,1389597,6,'Music Editor'),(13751,1391598,8,'Costume Supervisor'),(13751,1402560,1,'Still Photographer'),(13751,1408284,6,'Sound Re-Recording Mixer'),(13751,1413092,5,'Dialogue Editor'),(13751,1414488,8,'Hair Department Head'),(13751,1438559,8,'Makeup Department Head'),(13751,1509268,3,'Producer'),(13751,1548682,9,'Transportation Captain'),(13751,1555699,6,'Sound mixer'),(13751,1564521,7,'Art Direction'),(13751,1564527,6,'Music Editor'),(13751,1564530,1,'Camera Operator'),(13751,1564535,9,'Transportation Captain'),(14536,11408,3,'Producer'),(14536,16854,3,'Producer'),(14536,25138,3,'Executive Producer'),(14536,25142,5,'Editor'),(14536,34004,1,'Director of Photography'),(14536,23759,7,'Production Design'),(14536,40608,3,'Producer'),(14536,41674,6,'Original Music Composer'),(14536,52259,3,'Producer'),(14536,53648,3,'Casting'),(14536,62162,3,'Producer'),(14536,69737,4,'Writer'),(14536,123588,3,'Producer'),(14536,130128,2,'Director'),(14536,947243,3,'Producer'),(14536,965090,3,'Casting'),(14536,990955,3,'Line Producer'),(14536,1131839,4,'Writer'),(14536,1131840,3,'Producer'),(15049,21289,1,'Director of Photography'),(15049,32868,2,'Director'),(15049,32875,6,'Original Music Composer'),(15049,32877,5,'Editor'),(15049,32879,7,'Production Design'),(15049,77816,3,'Executive Producer'),(15049,77817,3,'Executive Producer'),(15049,77818,3,'Executive Producer'),(15049,119396,3,'Producer'),(15049,119396,4,'Writer'),(15049,175917,4,'Writer'),(15049,982778,3,'Casting'),(22821,8303,3,'Producer'),(22821,8320,6,'Original Music Composer'),(22821,14914,7,'Production Design'),(22821,15223,7,'Set Decoration'),(22821,20784,3,'Executive Producer'),(22821,29219,7,'Art Direction'),(22821,54795,2,'Director'),(22821,54795,4,'Screenplay'),(22821,54795,4,'Story'),(22821,54796,3,'Producer'),(22821,54797,3,'Executive Producer'),(22821,54798,5,'Editor'),(22821,90690,1,'Director of Photography'),(22821,960707,8,'Costume Design'),(22821,993628,5,'Editor'),(22821,1117314,4,'Story'),(22821,1293212,3,'Casting'),(22821,1380879,1,'Epk Camera Operator'),(10873,2963,3,'Producer'),(10873,17279,2,'Director'),(10873,31437,5,'Editor'),(10873,67506,4,'Screenplay'),(10873,67507,6,'Original Music Composer'),(23570,4023,3,'Casting'),(23570,2950,1,'Director of Photography'),(23570,2987,6,'Original Music Composer'),(23570,3192,3,'Casting'),(23570,5326,3,'Executive Producer'),(23570,5328,3,'Casting'),(23570,15344,3,'Producer'),(23570,18321,8,'Costume Design'),(23570,21148,7,'Art Direction'),(23570,32278,2,'Director'),(23570,62517,7,'Production Design'),(23570,148124,4,'Writer'),(23570,181751,4,'Writer'),(23570,181751,3,'Producer'),(23570,181856,5,'Editor'),(23570,933501,3,'Line Producer'),(23570,1209612,2,'Script Supervisor'),(23570,1467083,7,'Set Decoration'),(23570,1521777,7,'Art Department Coordinator'),(19489,54590,2,'Director'),(19489,106733,4,'Story'),(19489,212935,4,'Screenplay'),(19489,212935,4,'Story'),(14629,997,1,'Director of Photography'),(14629,66675,6,'Music'),(14629,144277,2,'Director'),(14629,158155,9,'Stunts'),(14629,943014,4,'Writer'),(14629,1030407,7,'Production Design'),(13154,8340,9,'Tattooist'),(13154,3964,8,'Tattoo Designer'),(13154,7413,1,'Director of Photography'),(13154,11410,5,'Editor'),(13154,11779,7,'Production Design'),(13154,13944,6,'Sound Re-Recording Mixer'),(13154,16650,5,'Editor'),(13154,50715,6,'Music'),(13154,63956,1,'Camera Operator'),(13154,63956,6,'Boom Operator'),(13154,60706,5,'First Assistant Editor'),(13154,67753,2,'Director'),(13154,67753,3,'Producer'),(13154,105091,3,'Co-Producer'),(13154,143922,6,'Foley'),(13154,572455,4,'Screenplay'),(13154,938123,3,'Casting'),(13154,1077432,6,'ADR Editor'),(13154,1158477,2,'Script Supervisor'),(13154,1176344,3,'Casting'),(13154,1198157,6,'Sound Effects Editor'),(13154,1211375,4,'Screenplay'),(13154,1330905,1,'First Assistant Camera'),(13154,1333900,8,'Makeup Artist'),(13154,1339071,6,'Foley Editor'),(13154,1370961,6,'Sound Effects Editor'),(13154,1400558,6,'Sound Effects Editor'),(13154,1404909,11,'Gaffer'),(13154,1404919,7,'Property Master'),(13154,1412009,5,'Editor'),(13154,1414062,6,'Foley Editor'),(13154,1415609,7,'Construction Coordinator'),(13154,1416902,9,'Special Effects Coordinator'),(13154,1424128,6,'Sound Re-Recording Mixer'),(13154,1426762,9,'Tattooist'),(13154,1433208,6,'Sound Designer'),(13154,1436536,6,'Sound Effects Editor'),(13154,1442097,8,'Key Makeup Artist'),(13154,1447068,6,'Music Editor'),(13154,1455293,1,'Camera Operator'),(13154,1469339,2,'Script Supervisor'),(13154,1485319,8,'Prosthetic Makeup Artist'),(13154,1531230,8,'Costume Design'),(13154,1536508,7,'Set Decoration'),(13154,1546883,6,'Sound Re-Recording Mixer'),(13154,1551333,1,'First Assistant Camera'),(13154,1630528,6,'Sound Effects Editor'),(13154,1630529,6,'Sound Re-Recording Mixer'),(13154,1722373,1,'Key Grip'),(13154,1802697,3,'Producer'),(13154,1802698,7,'Art Direction'),(13154,1802704,7,'Assistant Property Master'),(13154,1802706,7,'Title Designer'),(13154,1802708,3,'Casting'),(13154,1802709,1,'Camera Operator'),(13154,1802710,1,'Still Photographer'),(13154,1802711,1,'Dolly Grip'),(13154,1802713,9,'Special Effects'),(13154,1802714,6,'ADR Editor'),(13154,1802715,6,'Boom Operator'),(13154,1802717,5,'Dialogue Editor'),(13154,1802718,6,'Foley'),(13154,1802719,6,'Foley'),(13154,1802720,6,'Foley'),(13154,1802721,6,'Foley Editor'),(26618,42994,2,'Director'),(26618,95786,4,'Writer'),(26306,15017,8,'Makeup Designer'),(26306,122449,2,'Director'),(26306,122449,4,'Writer'),(26963,35073,6,'Original Music Composer'),(26963,59447,3,'Producer'),(26963,59448,3,'Producer'),(26963,96676,2,'Director'),(26963,96677,2,'Director'),(26963,96678,4,'Writer'),(26963,96679,4,'Screenplay'),(26963,96680,6,'Music'),(26963,1776008,10,'Animation'),(26963,1795548,3,'Producer'),(13072,62635,4,'Writer'),(13072,77076,2,'Director'),(13072,1393558,7,'Leadman'),(30141,2215,3,'Casting'),(30141,2461,3,'Producer'),(30141,2487,3,'Producer'),(30141,2706,3,'Producer'),(30141,5634,7,'Production Design'),(30141,7034,1,'Director of Photography'),(30141,33054,2,'Director'),(30141,54349,4,'Screenplay'),(30141,1020407,5,'Editor'),(30141,1427384,2,'Script Supervisor'),(17044,33317,2,'Director'),(10288,2324,3,'Co-Producer'),(10288,2324,3,'Casting'),(10288,377,3,'Executive Producer'),(10288,51032,3,'Executive Producer'),(10288,19948,3,'Executive Producer'),(10288,38957,7,'Set Decoration'),(10288,43529,1,'Director of Photography'),(10288,58910,9,'Makeup Effects'),(10288,62858,3,'Casting'),(10288,64754,2,'Director'),(10288,64754,4,'Writer'),(10288,64755,3,'Co-Producer'),(10288,64756,3,'Producer'),(10288,64757,3,'Co-Producer'),(10288,64758,3,'Associate Producer'),(10288,64759,3,'Producer'),(10288,64760,3,'Associate Producer'),(10288,64761,4,'Writer'),(10288,64762,4,'Original Story'),(10288,64762,4,'Writer'),(10288,64765,6,'Original Music Composer'),(10288,64766,5,'Editor'),(10288,65812,7,'Art Direction'),(10288,223992,9,'Makeup Effects'),(10288,981823,3,'Executive Producer'),(10288,1201060,9,'Makeup Effects'),(10288,1396395,9,'Makeup Effects'),(10288,1396404,3,'Associate Producer'),(10288,1396406,3,'Line Producer'),(10288,1396407,7,'Production Design'),(10288,1396408,9,'Makeup Effects'),(10288,1396410,9,'Makeup Effects'),(10288,1396411,9,'Makeup Effects'),(10288,1396412,9,'Makeup Effects'),(10288,1396415,9,'Makeup Effects'),(10288,1431012,9,'Makeup Effects'),(12183,437,7,'Production Design'),(12183,5162,3,'Producer'),(12183,7717,7,'Art Direction'),(12183,40384,6,'Original Music Composer'),(12183,36422,2,'Director'),(12183,36422,3,'Producer'),(12183,36422,4,'Author'),(12183,36616,3,'Executive Producer'),(12183,36618,3,'Executive Producer'),(12183,51981,1,'Director of Photography'),(12183,56759,3,'Producer'),(12183,57642,5,'Editor'),(12183,60665,3,'Casting'),(12183,60784,3,'Executive Producer'),(12183,60786,3,'Executive Producer'),(12183,60787,3,'Producer'),(12183,71556,3,'Executive Producer'),(12183,71555,2,'Director'),(12183,71558,3,'Executive Producer'),(12183,71559,8,'Costume Design'),(12183,71560,7,'Set Decoration'),(12192,68602,3,'Producer'),(12192,3953,3,'Producer'),(12192,13585,3,'Casting'),(12192,10421,7,'Production Design'),(12192,11763,3,'Producer'),(12192,19662,3,'Casting'),(12192,20192,4,'Screenplay'),(12192,20193,4,'Screenplay'),(12192,20193,3,'Producer'),(12192,21828,1,'Director of Photography'),(12192,34305,6,'Original Music Composer'),(12192,52261,8,'Costume Design'),(12192,62279,7,'Set Decoration'),(12192,67560,5,'Editor'),(12192,73588,2,'Director'),(12192,1262962,2,'Script Supervisor'),(12192,1314463,8,'Makeup Department Head'),(12192,1372835,9,'Makeup Effects'),(12192,1413097,9,'CG Supervisor'),(12192,1458880,7,'Art Direction'),(12192,1458881,8,'Makeup Artist'),(12192,1458882,8,'Makeup Artist'),(12192,1458883,8,'Hairstylist'),(13197,137064,2,'Director'),(13197,137064,4,'Writer'),(13197,1331795,4,'Writer'),(10913,42,4,'Screenplay'),(10913,1174,3,'Executive Producer'),(10913,2952,3,'Casting'),(10913,6795,7,'Production Design'),(10913,1015,3,'Producer'),(10913,1559,3,'Executive Producer'),(10913,1570,1,'Director of Photography'),(10913,3922,3,'Casting'),(10913,4453,2,'Director'),(10913,40825,6,'Original Music Composer'),(10913,19353,3,'Executive Producer'),(10913,37636,8,'Costume Design'),(10913,40560,7,'Art Direction'),(10913,71161,7,'Production Design'),(10913,64954,5,'Editor'),(10913,67454,3,'Executive Producer'),(10913,1427849,2,'Script Supervisor'),(10425,8167,3,'Producer'),(10425,9772,5,'Editor'),(10425,16830,3,'Executive Producer'),(10425,17208,3,'Executive Producer'),(10425,17209,3,'Executive Producer'),(10425,27097,3,'Producer'),(10425,27846,2,'Director'),(10425,29019,7,'Production Design'),(10425,45829,3,'Executive Producer'),(10425,45830,3,'Executive Producer'),(10425,51451,3,'Executive Producer'),(10425,51452,3,'Executive Producer'),(10425,52379,6,'Original Music Composer'),(10425,61049,3,'Executive Producer'),(10425,61050,3,'Executive Producer'),(10425,58705,5,'Editor'),(10425,62775,3,'Producer'),(10425,65108,4,'Author'),(10425,65109,3,'Line Producer'),(10425,65107,4,'Author'),(10425,65111,3,'Executive Producer'),(10425,65110,4,'Author'),(10425,65112,3,'Producer'),(10425,65116,3,'Producer'),(10425,65115,3,'Producer'),(10425,65113,3,'Producer'),(10425,65114,3,'Producer'),(10425,65117,3,'Producer'),(10425,65118,3,'Casting'),(21512,282,3,'Producer'),(21512,897,3,'Casting'),(21512,3108,3,'Casting'),(21512,3502,8,'Costume Design'),(21512,6581,5,'Editor'),(21512,6581,3,'Executive Producer'),(21512,7191,2,'Director'),(21512,7191,4,'Writer'),(21512,28240,1,'Director of Photography'),(21512,957928,6,'Original Music Composer'),(21512,1057350,7,'Art Direction'),(21512,1325578,7,'Production Design'),(21512,1537932,7,'Art Department Coordinator'),(21512,1537933,9,'Special Effects Coordinator'),(21512,1537934,9,'Machinist'),(21512,1537935,9,'Machinist'),(21512,1537936,9,'Machinist'),(29461,66121,2,'Director'),(29461,66121,4,'Writer'),(33542,44916,2,'Director'),(33542,46318,4,'Writer'),(33542,46319,4,'Writer'),(33542,46321,3,'Producer'),(24684,1176,2,'Director'),(24684,3225,4,'Screenplay'),(24684,19872,7,'Production Design'),(24684,23424,3,'Casting'),(24684,24256,1,'Director of Photography'),(24684,62954,6,'Music'),(24684,71534,5,'Editor'),(11308,10639,1,'Director of Photography'),(11308,17886,5,'Editor'),(11308,18776,4,'Novel'),(11308,32765,2,'Director'),(11308,32765,4,'Screenplay'),(11308,47465,3,'Producer'),(11022,8377,6,'Original Music Composer'),(11022,500,3,'Executive Producer'),(11022,51030,3,'Executive Producer'),(11022,11477,3,'Producer'),(11022,24052,3,'Producer'),(11022,40223,4,'Screenplay'),(11022,40223,2,'Director'),(11022,58206,3,'Producer'),(11022,59443,1,'Director of Photography'),(11022,67810,5,'Editor'),(11022,60026,3,'Producer'),(34341,84021,2,'Director'),(15365,84113,4,'Screenplay'),(15365,84113,2,'Director'),(12569,9204,6,'Music'),(12569,11475,7,'Production Design'),(12569,17146,1,'Director of Photography'),(12569,17403,4,'Screenplay'),(12569,17403,2,'Director'),(12569,24177,3,'Producer'),(12569,52016,8,'Costume Design'),(12569,60931,3,'Producer'),(24356,950,5,'Editor'),(24356,1487,4,'Writer'),(24356,1487,6,'Music'),(24356,6767,4,'Writer'),(24356,6767,2,'Director'),(24356,8075,5,'Editor'),(24356,9382,6,'Sound Mixer'),(24356,14041,7,'Set Decoration'),(24356,12228,3,'Casting'),(24356,12236,3,'Casting'),(24356,15427,7,'Production Design'),(24356,17749,1,'Director of Photography'),(24356,56765,6,'Sound Re-Recording Mixer'),(24356,56765,6,'Sound Designer'),(24356,24960,7,'Art Direction'),(24356,63533,3,'Casting'),(24356,589974,1,'Still Photographer'),(24356,964791,1,'Camera Operator'),(24356,1015922,2,'Script Supervisor'),(24356,1223327,1,'Camera Operator'),(24356,1412203,1,'Steadicam Operator'),(24356,1412699,6,'Supervising Sound Editor'),(24356,1531232,7,'Art Department Coordinator'),(24356,1568780,1,'Steadicam Operator'),(24356,1568780,1,'Camera Operator'),(14165,35771,3,'Producer'),(14165,35773,5,'Editor'),(14165,35785,2,'Director'),(14165,35785,4,'Story'),(14165,53679,9,'Cinematography'),(14165,85056,5,'Editor'),(14165,147709,4,'Screenplay'),(25941,957,3,'Producer'),(25941,3501,3,'Casting'),(25941,9003,7,'Production Design'),(25941,40811,6,'Supervising Sound Editor'),(25941,40813,6,'Supervising Sound Editor'),(25941,40816,6,'Sound Effects Editor'),(25941,40819,6,'Sound Re-Recording Mixer'),(25941,23425,7,'Art Direction'),(25941,28840,4,'Screenplay'),(25941,32451,1,'Director of Photography'),(25941,61936,8,'Costume Design'),(25941,69881,3,'Executive Producer'),(25941,75117,11,'Gaffer'),(25941,90479,3,'Producer'),(25941,94918,2,'Director'),(25941,94919,3,'Producer'),(25941,118168,3,'Executive Producer'),(25941,132212,3,'Executive Producer'),(25941,139904,6,'Original Music Composer'),(25941,223574,6,'Original Music Composer'),(25941,963336,3,'Producer'),(25941,968155,3,'Executive Producer'),(25941,968858,9,'Second Unit Cinematographer'),(25941,993394,3,'Executive Producer'),(25941,999565,5,'Editor'),(25941,1203105,3,'Executive Producer'),(25941,1327791,7,'Set Decoration'),(25941,1337419,6,'Music Editor'),(25941,1342600,10,'Special Effects Supervisor'),(25941,1357598,1,'Camera Operator'),(25941,1385884,2,'Script Supervisor'),(25941,1393300,6,'Foley'),(25941,1394004,6,'Sound Re-Recording Mixer'),(25941,1398918,6,'Foley'),(25941,1406189,5,'Dialogue Editor'),(25941,1410125,8,'Makeup Artist'),(25941,1412126,2,'Script Supervisor'),(25941,1419222,1,'Still Photographer'),(25941,1420635,6,'Dolby Consultant'),(25941,1425555,5,'Digital Intermediate'),(25941,1528906,1,'Steadicam Operator'),(25941,1540183,8,'Hair Designer'),(25941,1540183,8,'Makeup Designer'),(25941,1541461,6,'Music Supervisor'),(25941,1555860,9,'Visual Effects Editor'),(25941,1556417,9,'Armorer'),(25941,1558415,11,'Gaffer'),(25941,1558416,11,'Rigging Gaffer'),(25941,1558417,9,'Second Unit Cinematographer'),(25941,1558425,10,'Visual Effects Coordinator'),(25941,1558426,9,'Visual Effects Editor'),(25941,1558427,10,'Visual Effects Producer'),(25941,1558428,10,'Visual Effects Supervisor'),(25941,1558429,7,'Art Department Assistant'),(25941,1558430,8,'Makeup Artist'),(25941,1558430,8,'Hairstylist'),(25941,1558431,8,'Makeup Artist'),(25941,1558432,5,'Digital Intermediate'),(29064,3100,5,'Editor'),(29064,20953,6,'Original Music Composer'),(29064,63065,3,'Producer'),(29064,73001,9,'Cinematography'),(29064,87432,3,'Producer'),(29064,87432,4,'Writer'),(29064,102797,2,'Director'),(29064,102803,3,'Producer'),(29064,102804,4,'Writer'),(29064,102810,7,'Production Design'),(29064,102811,3,'Producer'),(29064,102813,3,'Executive Producer'),(29064,102814,7,'Set Designer'),(29064,102815,6,'Sound Designer'),(29064,102815,6,'Sound mixer'),(19913,5359,6,'Original Music Composer'),(19913,16469,8,'Costume Design'),(19913,22433,3,'Producer'),(19913,52446,3,'Producer'),(19913,52449,1,'Director of Photography'),(19913,53648,3,'Casting'),(19913,54050,3,'Producer'),(19913,66519,5,'Editor'),(19913,92495,9,'Stunt Coordinator'),(19913,77950,4,'Screenplay'),(19913,77951,4,'Screenplay'),(19913,87742,2,'Director'),(19913,143919,6,'Sound Re-Recording Mixer'),(19913,563736,6,'Music Supervisor'),(19913,965987,3,'Producer'),(19913,1042699,6,'Original Music Composer'),(19913,1056043,3,'Unit Production Manager'),(19913,1102046,3,'Associate Producer'),(19913,1102047,3,'Co-Producer'),(19913,1328411,7,'Production Design'),(19913,1328412,7,'Art Direction'),(19913,1342625,6,'Sound Re-Recording Mixer'),(19913,1344842,2,'Script Supervisor'),(19913,1364412,6,'Sound Designer'),(19913,1364412,6,'Supervising Sound Editor'),(19913,1394724,1,'Still Photographer'),(19913,1424694,1,'Camera Operator'),(19913,1424694,1,'Steadicam Operator'),(19913,1428845,6,'Music Editor'),(19913,1527698,7,'Set Decoration'),(19913,1537690,9,'Stunt Coordinator'),(19913,1556342,1,'Still Photographer'),(19913,1556344,6,'Sound mixer'),(19913,1556346,5,'Assistant Editor'),(19913,1556347,8,'Costume Supervisor'),(10727,6041,6,'Original Music Composer'),(10727,8751,5,'Editor'),(10727,8761,6,'Foley'),(10727,11812,3,'Executive Producer'),(10727,14193,10,'Special Effects Supervisor'),(10727,20204,4,'Screenplay'),(10727,42267,6,'Sound Designer'),(10727,42267,6,'Sound Re-Recording Mixer'),(10727,42268,10,'Visual Effects Producer'),(10727,42268,9,'Executive Visual Effects Producer'),(10727,27749,7,'Production Design'),(10727,40268,1,'Director of Photography'),(10727,58192,1,'Additional Photography'),(10727,61122,3,'Producer'),(10727,61121,3,'Executive Producer'),(10727,61123,3,'Producer'),(10727,61486,7,'Art Direction'),(10727,113674,10,'Visual Effects Producer'),(10727,64335,5,'Editor'),(10727,65237,4,'Screenplay'),(10727,65237,3,'Producer'),(10727,66739,2,'Director'),(10727,66747,4,'Screenplay'),(10727,66748,3,'Producer'),(10727,75159,11,'Chief Lighting Technician'),(10727,75292,7,'Set Decoration'),(10727,75507,9,'Stunt Coordinator'),(10727,75683,8,'Costume Design'),(10727,76087,7,'Assistant Property Master'),(10727,76090,2,'Third Assistant Director'),(10727,95834,6,'Music Editor'),(10727,138618,6,'Sound Re-Recording Mixer'),(10727,931247,5,'Color Timer'),(10727,960812,3,'Casting'),(10727,1059893,9,'In Memory Of'),(10727,1209535,3,'Casting'),(10727,1209536,8,'Costume Design'),(10727,1209537,8,'Costume Design'),(10727,1209538,8,'Costume Design'),(10727,1308569,9,'Armorer'),(10727,1325187,9,'Property Master'),(10727,1339446,6,'Supervising Sound Editor'),(10727,1345268,6,'Music Editor'),(10727,1391713,7,'Set Designer'),(10727,1395447,6,'Supervising Sound Editor'),(10727,1398872,10,'Visual Effects Supervisor'),(10727,1399103,6,'Sound'),(10727,1401671,7,'Art Department Coordinator'),(10727,1401786,6,'Sound Editor'),(10727,1405233,6,'Foley'),(10727,1408301,6,'Sound Effects Editor'),(10727,1412758,9,'Unit Publicist'),(10727,1413095,6,'Supervising ADR Editor'),(10727,1414178,6,'Sound Effects Editor'),(10727,1414965,6,'Production Sound Mixer'),(10727,1418264,8,'Key Hair Stylist'),(10727,1418265,8,'Makeup Artist'),(10727,1418266,9,'Makeup Effects'),(10727,1418270,7,'Assistant Art Director'),(10727,1418273,7,'Construction Coordinator'),(10727,1418277,7,'Greensman'),(10727,1418279,7,'Greensman'),(10727,1418281,7,'Greensman'),(10727,1418282,9,'Scenic Artist'),(10727,1418283,7,'Set Designer'),(10727,1418286,5,'Dialogue Editor'),(10727,1418294,9,'Special Effects Coordinator'),(10727,1418298,10,'Animation'),(10727,1418299,10,'Animation'),(10727,1418300,10,'Visual Effects Producer'),(10727,1418301,10,'Visual Effects Supervisor'),(10727,1418302,9,'Visual Effects Editor'),(10727,1418303,1,'Camera Operator'),(10727,1418303,1,'Steadicam Operator'),(10727,1418308,9,'Second Unit Cinematographer'),(10727,1418309,1,'Still Photographer'),(10727,1418310,1,'Additional Still Photographer'),(10727,1418311,11,'Rigging Gaffer'),(10727,1418312,8,'Costume Supervisor'),(10727,1418313,3,'Production Accountant'),(10727,1418314,2,'Script Supervisor'),(10727,1418315,3,'Location Manager'),(10727,1460669,6,'Orchestrator'),(10727,1463388,6,'Assistant Sound Editor'),(10727,1465596,8,'Makeup Designer'),(10727,1533794,10,'Visual Effects Supervisor'),(10727,1570813,10,'Digital Compositors'),(10727,1577371,9,'Stand In'),(10727,1584231,3,'Associate Producer'),(10727,1584232,3,'Line Producer'),(10727,1584233,7,'Art Department Assistant'),(10727,1584234,7,'Painter'),(10727,1584235,7,'Production Illustrator'),(10727,1584236,1,'First Assistant Camera'),(10727,1584237,1,'Key Grip'),(10727,1584238,7,'Set Dresser'),(10727,1584239,9,'Carpenter'),(10727,1584241,9,'Post Production Supervisor'),(10727,1584245,9,'Stunts'),(10727,1584247,3,'Unit Production Manager'),(10727,1584248,9,'Video Assist Operator'),(10727,1584249,2,'First Assistant Director'),(10727,1584250,11,'Electrician'),(10727,1584251,11,'Rigging Grip'),(10727,1584252,3,'Production Coordinator'),(10727,1584253,6,'Boom Operator'),(10727,1584254,6,'Scoring Mixer'),(10727,1584255,10,'3D Supervisor'),(10727,1584256,10,'Visual Effects'),(10727,1584257,4,'Storyboard'),(10727,1584258,5,'Editorial Services'),(10727,1584259,3,'Unit Manager'),(10727,1741631,5,'Negative Cutter'),(10727,1755585,1,'Grip'),(10727,1758840,2,'Second Assistant Director'),(10727,1802517,7,'Assistant Set Dresser'),(10727,1802519,7,'Title Designer'),(10727,1802524,3,'Assistant Production Coordinator'),(17908,11166,6,'Music'),(17908,46297,2,'Director'),(17908,51783,9,'Cinematography'),(17908,296686,4,'Screenplay'),(17908,1461716,4,'Novel'),(10803,1760,6,'Original Music Composer'),(10803,1885,4,'Novel'),(10803,7511,3,'Casting'),(10803,9103,1,'Director of Photography'),(10803,12016,5,'Editor'),(10803,14493,8,'Costume Design'),(10803,14779,7,'Art Direction'),(10803,14780,7,'Set Decoration'),(10803,14941,4,'Screenplay'),(10803,18638,10,'Visual Effects Designer'),(10803,20412,2,'Director'),(10803,22095,3,'Producer'),(10803,29801,8,'Makeup Artist'),(10803,61838,9,'Stunt Coordinator'),(10803,66878,4,'Novel'),(10803,75251,6,'Music Supervisor'),(10803,91249,9,'Choreographer'),(10803,178439,3,'Associate Producer'),(10803,1225460,9,'Dialect Coach'),(10803,1312410,6,'Music Editor'),(10803,1370948,6,'Sound Editor'),(10803,1412188,8,'Hairstylist'),(10803,1442518,2,'Script Supervisor'),(10803,1498415,9,'Unit Production Manager'),(10803,1557824,9,'Special Effects'),(10803,1559472,7,'Property Master'),(10117,1091,3,'Producer'),(10117,1098,5,'Editor'),(10117,2507,1,'Director of Photography'),(10117,7714,6,'Original Music Composer'),(10117,15193,6,'Original Music Composer'),(10117,58840,4,'Screenplay'),(10117,63709,2,'Director'),(24977,4500,6,'Music'),(24977,52159,2,'Director'),(24977,92935,2,'Director'),(24977,92936,4,'Writer'),(22314,19155,6,'Music'),(22314,28741,2,'Director'),(22314,69448,4,'Writer'),(22314,77729,1,'Director of Photography'),(22314,564872,4,'Writer'),(12573,151,1,'Director of Photography'),(12573,555,7,'Set Decoration'),(12573,1223,2,'Director'),(12573,1223,5,'Editor'),(12573,1223,3,'Producer'),(12573,1223,4,'Writer'),(12573,1224,2,'Director'),(12573,1224,5,'Editor'),(12573,1224,3,'Producer'),(12573,1224,4,'Writer'),(12573,1225,6,'Original Music Composer'),(12573,1484,3,'Casting'),(12573,2236,3,'Executive Producer'),(12573,2238,3,'Executive Producer'),(12573,10575,7,'Production Design'),(12573,7418,8,'Costume Design'),(12573,9619,6,'Supervising Sound Editor'),(12573,9619,6,'Sound Re-Recording Mixer'),(12573,9651,6,'Sound Designer'),(12573,9651,6,'Sound Re-Recording Mixer'),(12573,11310,9,'Special Effects Coordinator'),(12573,44482,3,'Executive Producer'),(12573,223239,6,'Sound mixer'),(12573,587969,2,'Script Supervisor'),(12573,928414,3,'Casting'),(12573,1015645,7,'Art Direction'),(12573,1017240,8,'Assistant Costume Designer'),(12573,1281538,9,'Stunt Coordinator'),(12573,1325234,8,'Makeup Department Head'),(12573,1395255,6,'Sound Re-Recording Mixer'),(12573,1412450,7,'Art Department Coordinator'),(12573,1413092,5,'Dialogue Editor'),(12573,1413224,8,'Hair Department Head'),(12573,1452675,1,'Still Photographer'),(12573,1535737,3,'Production Supervisor'),(12573,1546856,5,'Dialogue Editor'),(11342,1760,6,'Original Music Composer'),(11342,102429,3,'Producer'),(11342,10764,3,'Executive Producer'),(11342,18387,5,'Editor'),(11342,27992,3,'Executive Producer'),(11342,28239,4,'Screenplay'),(11342,28240,1,'Director of Photography'),(11342,58712,2,'Director'),(11342,58712,3,'Producer'),(34653,1593,3,'Casting'),(34653,3288,3,'Producer'),(34653,6409,3,'Producer'),(34653,21591,7,'Set Decoration'),(34653,22067,7,'Art Direction'),(34653,45584,3,'Producer'),(34653,32797,8,'Costume Design'),(34653,59473,5,'Editor'),(34653,66779,4,'Author'),(34653,120615,4,'Screenplay'),(34653,120615,2,'Director'),(34653,120615,3,'Producer'),(34653,558016,6,'Original Music Composer'),(34653,582924,1,'Director of Photography'),(34653,957258,7,'Production Design'),(34653,1327052,4,'Screenplay'),(11051,1032,2,'Director'),(11051,1035,4,'Screenplay'),(11051,3661,5,'Editor'),(11051,3769,1,'Director of Photography'),(11051,7170,3,'Producer'),(11051,39624,6,'Original Music Composer'),(11051,58084,3,'Executive Producer'),(11051,65844,4,'Novel'),(14578,7395,4,'Author'),(14578,7396,4,'Author'),(14578,77076,2,'Director'),(14578,77076,4,'Author'),(14578,1393558,7,'Leadman'),(15581,27005,2,'Director'),(15581,27005,4,'Writer'),(15581,114647,4,'Writer'),(15581,146597,4,'Writer'),(13006,1325,3,'Casting'),(13006,7786,3,'Casting'),(13006,8162,4,'Writer'),(13006,8162,3,'Associate Producer'),(13006,13195,7,'Production Design'),(13006,17231,3,'Executive Producer'),(13006,19125,6,'Original Music Composer'),(13006,20777,7,'Art Direction'),(13006,40283,6,'Original Music Composer'),(13006,47981,1,'Director of Photography'),(13006,70415,2,'Director'),(13006,239415,3,'Casting'),(13006,948439,3,'Line Producer'),(13006,1004599,5,'Editor'),(13006,1113937,3,'Producer'),(13006,1173302,7,'Art Direction'),(13006,1600369,3,'Executive Producer'),(13006,1600371,8,'Costume Design'),(16651,86164,2,'Director'),(16651,86164,4,'Writer'),(12400,1255,2,'Director'),(12400,1255,4,'Writer'),(14112,1035,2,'Director'),(14112,17765,1,'Director of Photography'),(14112,20205,4,'Author'),(14112,47776,5,'Editor'),(14112,1337776,4,'Writer'),(14112,1411270,1,'Director of Photography'),(12271,1999,6,'Original Music Composer'),(12271,52163,8,'Costume Design'),(12271,37852,2,'Director'),(12271,40511,1,'Director of Photography'),(12271,52450,5,'Editor'),(12271,72002,4,'Screenplay'),(12271,167357,5,'Editor'),(12271,1024912,7,'Art Direction'),(12271,1299360,7,'Set Decoration'),(12271,1340748,2,'Script Supervisor'),(12271,1415026,2,'Script Supervisor'),(12271,1818212,7,'Art Direction'),(33676,7753,1,'Director of Photography'),(33676,323,2,'Director'),(33676,597,3,'Casting'),(33676,598,3,'Casting'),(33676,1918,5,'Editor'),(33676,7228,3,'Executive Producer'),(33676,21640,7,'Production Design'),(33676,58075,4,'Story'),(33676,58075,4,'Screenplay'),(33676,66142,6,'Original Music Composer'),(33676,311395,8,'Hairstylist'),(33676,1016541,3,'Executive Producer'),(33676,1017999,7,'Set Decoration'),(33676,1044407,3,'Producer'),(33676,1044407,4,'Story'),(33676,1044415,3,'Producer'),(33676,1446529,8,'Makeup Artist'),(33676,1453697,7,'Art Direction'),(33676,1465072,8,'Makeup Artist'),(33676,1625100,8,'Hairstylist'),(25388,770,3,'Producer'),(25388,2286,1,'Director of Photography'),(25388,2704,6,'Original Music Composer'),(25388,9582,5,'Editor'),(25388,10340,3,'Casting'),(25388,14005,7,'Production Design'),(25388,14941,4,'Screenplay'),(25388,14941,4,'Story'),(25388,16533,5,'Editor'),(25388,16593,5,'Editor'),(25388,19333,2,'Director'),(25388,19333,3,'Producer'),(25388,19333,4,'Story'),(25388,25801,3,'Casting'),(25388,1125463,3,'Producer'),(25388,1125464,3,'Producer'),(25388,1125465,3,'Casting'),(25388,1125466,3,'Casting'),(11687,24574,5,'Editor'),(11687,28781,4,'Screenplay'),(11687,64909,4,'Screenplay'),(11687,64909,2,'Director'),(11687,64910,3,'Producer'),(11687,64911,6,'Music'),(11687,70208,1,'Director of Photography'),(30128,1577,3,'Producer'),(30128,36187,2,'Director'),(30128,105744,3,'Producer'),(30128,105745,4,'Writer'),(31535,88077,2,'Director'),(24985,72467,2,'Director'),(27004,2324,3,'Casting'),(27004,26714,1,'Director of Photography'),(27004,18882,1,'Director of Photography'),(27004,96745,2,'Director'),(27004,96745,3,'Producer'),(27004,96745,4,'Writer'),(27004,969145,3,'Producer'),(27004,1094388,6,'Original Music Composer'),(27004,1094392,3,'Casting'),(27004,1094395,7,'Production Design'),(27004,1094396,7,'Set Decoration'),(15013,970,3,'Casting'),(15013,5431,1,'Director of Photography'),(15013,9152,6,'Music'),(15013,20766,2,'Director'),(15013,20766,4,'Screenplay'),(15013,43559,3,'Producer'),(15013,43560,3,'Executive Producer'),(15013,38522,5,'Editor'),(15013,46284,7,'Production Design'),(15013,46293,3,'Line Producer'),(15013,46295,3,'Producer'),(15013,46296,3,'Producer'),(15013,53521,3,'Producer'),(15013,77692,3,'Executive Producer'),(15013,77693,3,'Executive Producer'),(15013,77694,7,'Art Direction'),(15013,77695,7,'Assistant Art Director'),(15013,77696,7,'Set Decoration'),(15013,77697,8,'Costume Design'),(13001,26064,6,'Music'),(13001,51530,1,'Director of Photography'),(13001,113194,9,'Stunt Coordinator'),(13001,60282,3,'Casting'),(13001,26080,3,'Casting'),(13001,72082,3,'Producer'),(13001,27745,4,'Screenplay'),(13001,27745,2,'Director'),(13001,27745,3,'Producer'),(13001,74082,3,'Producer'),(13001,72083,3,'Executive Producer'),(13001,74083,3,'Producer'),(13001,141783,7,'Production Design'),(13001,229908,7,'Art Direction'),(13001,229909,7,'Art Direction'),(13001,229910,7,'Set Decoration'),(13001,229911,7,'Set Decoration'),(13001,229912,8,'Costume Design'),(13001,947682,3,'Casting'),(13001,1002360,5,'Editor'),(13001,1319818,8,'Costume Supervisor'),(13649,40254,4,'Author'),(13649,57614,3,'Producer'),(13649,65310,2,'Director'),(13649,65310,3,'Producer'),(13919,2545,3,'Producer'),(13919,38,5,'Editor'),(13919,560,7,'Production Design'),(13919,1729,6,'Original Music Composer'),(13919,2210,3,'Producer'),(13919,4232,3,'Executive Producer'),(13919,5387,9,'Cinematography'),(13919,6883,6,'Music Editor'),(13919,19466,7,'Set Decoration'),(13919,20694,5,'Editor'),(13919,45835,3,'Production Supervisor'),(13919,46589,8,'Costume Design'),(13919,51451,3,'Executive Producer'),(13919,51452,3,'Executive Producer'),(13919,57560,3,'Executive Producer'),(13919,61046,3,'Producer'),(13919,61049,3,'Producer'),(13919,61050,3,'Producer'),(13919,71876,9,'Post Production Supervisor'),(13919,71882,3,'Co-Producer'),(13919,76009,2,'Director'),(13919,76010,4,'Screenplay'),(13919,76011,4,'Screenplay'),(13919,76012,3,'Executive Producer'),(13919,76013,3,'Producer'),(13919,76014,3,'Casting'),(13919,76015,3,'Casting'),(13919,76016,7,'Art Direction'),(13919,75391,7,'Set Decoration'),(13919,120695,6,'Music Supervisor'),(13919,228981,3,'Location Manager'),(13919,971959,3,'Casting Associate'),(13919,1434173,3,'Location Manager'),(13919,1459790,10,'Animation Supervisor'),(13919,1655192,2,'Script Supervisor'),(13919,1891083,3,'Casting Assistant'),(13919,1891089,3,'Production Coordinator'),(14576,77062,2,'Director'),(14576,77062,4,'Writer'),(16620,414,3,'Unit Production Manager'),(16620,2399,3,'Casting'),(16620,2723,1,'Director of Photography'),(16620,7068,5,'Editor'),(16620,13588,7,'Set Decoration'),(16620,14850,3,'Associate Producer'),(16620,18596,3,'Producer'),(16620,57614,3,'Producer'),(16620,58208,5,'Editor'),(16620,63964,6,'Music'),(16620,82219,2,'Director'),(16620,82219,4,'Writer'),(16620,115089,6,'Music'),(16620,1339183,7,'Production Design'),(16620,1355532,2,'Script Supervisor'),(16620,1404915,3,'Casting Associate'),(16620,1428817,8,'Costume Design'),(16620,1551930,3,'Executive Producer'),(16620,1648134,7,'Title Designer'),(16620,1759860,3,'Location Manager'),(16620,1798593,3,'Location Manager'),(16620,1798595,3,'Production Coordinator'),(25113,1151,3,'Producer'),(25113,2032,7,'Production Design'),(25113,12848,7,'Set Decoration'),(25113,14536,1,'Director of Photography'),(25113,21278,2,'Director'),(25113,21278,4,'Writer'),(25113,57652,3,'Executive Producer'),(25113,72142,5,'Editor'),(25113,72142,3,'Associate Producer'),(25113,1035668,8,'Costume Design'),(11033,852,5,'Editor'),(11033,3176,3,'Casting'),(11033,1150,2,'Director'),(11033,1150,4,'Writer'),(11033,5493,8,'Costume Design'),(11033,16209,8,'Makeup Artist'),(11033,11789,3,'Associate Producer'),(11033,11789,3,'Production Manager'),(11033,14138,6,'Original Music Composer'),(11033,25212,1,'Director of Photography'),(11033,30904,3,'Executive Producer'),(11033,43982,2,'Assistant Director'),(11033,67877,3,'Producer'),(11033,543194,8,'Costume Design'),(11033,1133877,7,'Art Direction'),(11033,1136882,8,'Makeup Artist'),(11033,1155688,7,'Set Decoration'),(11033,1291706,6,'Music Director'),(11033,1511691,8,'Hairstylist'),(34723,492,1,'Director of Photography'),(34723,7775,2,'Director'),(34723,7775,4,'Screenplay'),(34723,7784,5,'Editor'),(34723,11802,8,'Costume Design'),(34723,10494,6,'Music'),(34723,10685,3,'Producer'),(34723,11772,3,'Executive Producer'),(34723,18265,1,'Camera Operator'),(34723,20786,7,'Art Direction'),(34723,23349,3,'Casting'),(34723,29788,7,'Production Design'),(34723,49826,3,'Co-Producer'),(34723,72225,4,'Novel'),(34723,1219531,3,'Associate Producer'),(34723,1223099,6,'Sound Editor'),(34723,1341336,6,'Supervising Sound Editor'),(34723,1395059,9,'Stunt Coordinator'),(34723,1400356,2,'Script Supervisor'),(34723,1417498,6,'Sound Editor'),(34723,1424138,3,'Location Manager'),(34723,1429492,6,'Sound Editor'),(34723,1429528,7,'Set Decoration'),(34723,1429539,6,'Sound Editor'),(34723,1429540,6,'Sound Editor'),(34723,1429542,6,'Sound Editor'),(34723,1429544,6,'Sound Editor'),(34723,1429548,6,'Boom Operator'),(34723,1429549,5,'Color Timer'),(34723,1673596,3,'Executive Producer'),(10514,1744,2,'Director'),(10514,1744,3,'Producer'),(10514,874,7,'Production Design'),(10514,1762,1,'Director of Photography'),(10514,3456,8,'Costume Design'),(10514,4782,4,'Novel'),(10514,5842,7,'Art Direction'),(10514,10186,5,'Editor'),(10514,12112,10,'Visual Effects'),(10514,12292,7,'Set Decoration'),(10514,14495,8,'Hairstylist'),(10514,14498,8,'Makeup Artist'),(10514,19459,4,'Screenplay'),(10514,30259,5,'Editor'),(10514,65513,6,'Original Music Composer'),(10514,1316340,10,'Visual Effects'),(10514,1316341,10,'Visual Effects'),(10496,932,4,'Screenplay'),(10496,5912,6,'Original Music Composer'),(10496,9432,9,'Special Effects Coordinator'),(10496,11745,7,'Production Design'),(10496,17854,8,'Costume Design'),(10496,21322,5,'Editor'),(10496,56327,3,'Producer'),(10496,57871,3,'Producer'),(10496,61690,1,'Director of Photography'),(10496,63103,8,'Set Costumer'),(10496,65420,2,'Director'),(10496,91094,6,'Foley'),(10496,180830,9,'Stunt Coordinator'),(10496,556887,9,'Sound Recordist'),(10496,1018357,3,'Casting'),(10496,1031811,6,'Supervising Sound Editor'),(10496,1191211,1,'Camera Operator'),(10496,1197578,10,'Visual Effects Producer'),(10496,1324383,9,'Scenic Artist'),(10496,1327895,8,'Makeup Department Head'),(10496,1331428,7,'Set Decoration'),(10496,1331429,8,'Costume Supervisor'),(10496,1341784,6,'Foley'),(10496,1342658,5,'Dialogue Editor'),(10496,1372426,11,'Gaffer'),(10496,1387183,5,'Dialogue Editor'),(10496,1401305,6,'Music Editor'),(10496,1402111,6,'Sound Re-Recording Mixer'),(10496,1402112,6,'Sound Re-Recording Mixer'),(10496,1402143,10,'Visual Effects Supervisor'),(10496,1403183,9,'Property Master'),(10496,1403184,7,'Leadman'),(10496,1403185,9,'Scenic Artist'),(10496,1403186,7,'Construction Coordinator'),(10496,1403187,7,'Construction Foreman'),(10496,1403188,5,'Dialogue Editor'),(10496,1403189,5,'Dialogue Editor'),(10496,1403190,10,'Animation Supervisor'),(10496,1403191,10,'Visual Effects Producer'),(10496,1403192,10,'Visual Effects Supervisor'),(10496,1403194,1,'Camera Operator'),(10496,1403196,1,'Still Photographer'),(10496,1403197,11,'Best Boy Electric'),(10496,1403198,10,'Animation'),(10496,1403199,9,'Transportation Coordinator'),(10496,1403200,2,'Script Supervisor'),(10496,1403203,3,'Location Manager'),(10496,1455461,9,'Digital Producer'),(14631,1053020,2,'Director'),(18923,3999,3,'Producer'),(18923,8402,4,'Writer'),(18923,50460,2,'Director'),(26665,1135,6,'Music'),(26665,8313,3,'Casting'),(26665,46122,9,'Cinematography'),(26665,63752,8,'Costume Design'),(26665,95972,2,'Director'),(26665,95972,4,'Writer'),(26665,1011613,7,'Art Direction'),(26665,1112711,7,'Production Design'),(26665,1301630,4,'Writer'),(26665,1301631,5,'Editor'),(28089,6048,3,'Producer'),(28089,34110,2,'Director'),(28089,34110,4,'Writer'),(28089,57561,4,'Writer'),(28089,99664,3,'Producer'),(28089,99665,3,'Producer'),(28089,99666,3,'Producer'),(28089,229891,5,'Editor'),(28089,1024906,3,'Executive Producer'),(28089,1102498,3,'Executive Producer'),(21641,3501,3,'Casting'),(21641,6379,7,'Production Design'),(21641,15726,3,'Executive Producer'),(21641,15728,3,'Producer'),(21641,15730,4,'Screenplay'),(21641,15730,3,'Executive Producer'),(21641,27816,3,'Producer'),(21641,29486,6,'Original Music Composer'),(21641,70500,2,'Director'),(21641,70506,5,'Editor'),(21641,70523,3,'Executive Producer'),(21641,118607,4,'Novel'),(21641,196890,3,'Producer'),(21641,966545,1,'Director of Photography'),(10925,2720,3,'Executive Producer'),(10925,2721,3,'Executive Producer'),(10925,2724,3,'Casting'),(10925,5045,4,'Screenplay'),(10925,5045,2,'Director'),(10925,44064,7,'Set Decoration'),(10925,64831,4,'Story'),(10925,64833,4,'Story'),(10925,67490,3,'Producer'),(10925,67491,6,'Original Music Composer'),(10925,67492,1,'Director of Photography'),(10925,74817,3,'Co-Producer'),(10925,102343,9,'Makeup Effects'),(10925,136450,7,'Production Design'),(10925,1168870,5,'Editor'),(10925,1205932,4,'Story'),(10925,1341330,8,'Key Makeup Artist'),(10925,1399859,7,'Set Decoration'),(10925,1452435,9,'Makeup Effects'),(10925,1476550,7,'Art Direction'),(10925,1815533,8,'Hairstylist'),(16619,1527,1,'Director of Photography'),(16619,4135,2,'Director'),(16619,4150,8,'Costume Design'),(16619,4184,3,'Producer'),(16619,4184,3,'Production Manager'),(16619,16538,8,'Hairstylist'),(16619,7630,4,'Screenplay'),(16619,13304,7,'Art Direction'),(16619,10468,6,'Original Music Composer'),(16619,12848,7,'Set Decoration'),(16619,67897,5,'Editor'),(16619,70244,3,'Unit Production Manager'),(16619,74766,8,'Hairstylist'),(16619,91365,4,'Novel'),(16619,91366,3,'Casting'),(16619,91367,7,'Art Direction'),(16619,91368,7,'Set Decoration'),(16619,118296,6,'Supervising Sound Editor'),(16619,1371069,2,'Script Supervisor'),(16619,1389310,8,'Makeup Artist'),(16619,1536243,3,'Production Coordinator'),(16619,1536247,1,'Still Photographer'),(16619,1536248,11,'Gaffer'),(16619,1536251,8,'Hairstylist'),(11977,1524,2,'Director'),(11977,1524,4,'Screenplay'),(11977,1535,4,'Screenplay'),(11977,3805,3,'Executive Producer'),(11977,9796,6,'Music'),(11977,33057,1,'Director of Photography'),(11977,55199,4,'Screenplay'),(11977,55199,3,'Producer'),(11977,66167,5,'Editor'),(20322,95458,2,'Director'),(16158,51866,4,'Screenplay'),(16158,51866,2,'Director'),(16158,1746321,3,'Producer'),(10160,2042,2,'Director'),(10160,2044,1,'Director of Photography'),(10160,5140,4,'Characters'),(10160,13663,3,'Producer'),(10160,13668,3,'Executive Producer'),(10160,24954,6,'Original Music Composer'),(10160,35087,3,'Producer'),(10160,58726,4,'Screenplay'),(10160,62896,5,'Editor'),(10160,64037,3,'Executive Producer'),(10160,64038,5,'Editor'),(11452,15306,3,'Producer'),(11452,15307,3,'Producer'),(11452,21587,6,'Music'),(11452,30606,5,'Editor'),(11452,43422,1,'Director of Photography'),(11452,44679,4,'Screenplay'),(11452,57822,3,'Producer'),(11452,62204,4,'Screenplay'),(11452,68573,2,'Director'),(11452,71230,3,'Executive Producer'),(12163,5914,3,'Casting'),(12163,6377,6,'Original Music Composer'),(12163,6431,2,'Director'),(12163,6431,3,'Producer'),(12163,16836,3,'Associate Producer'),(12163,18511,7,'Production Design'),(12163,33678,1,'Director of Photography'),(12163,26278,3,'Location Manager'),(12163,35630,11,'Rigging Gaffer'),(12163,38805,5,'Editor'),(12163,58632,3,'Production Accountant'),(12163,66265,3,'Executive Producer'),(12163,103041,4,'Screenplay'),(12163,143258,3,'Co-Producer'),(12163,155535,9,'Stunt Coordinator'),(12163,957282,3,'Casting'),(12163,1000467,7,'Set Decoration'),(12163,1010110,9,'Thanks'),(12163,1043368,9,'Special Effects'),(12163,1065246,11,'Electrician'),(12163,1078304,5,'Digital Intermediate'),(12163,1116091,3,'Producer'),(12163,1116095,1,'Still Photographer'),(12163,1143778,7,'Art Direction'),(12163,1190648,8,'Costume Design'),(12163,1216299,9,'Thanks'),(12163,1246393,9,'Stunts Coordinator'),(12163,1292657,9,'Thanks'),(12163,1326470,8,'Costume Supervisor'),(12163,1334338,8,'Prosthetic Supervisor'),(12163,1347722,8,'Makeup Artist'),(12163,1382448,2,'Assistant Director'),(12163,1392110,8,'Set Costumer'),(12163,1392211,6,'Sound Re-Recording Mixer'),(12163,1393576,8,'Set Costumer'),(12163,1399979,2,'Script Supervisor'),(12163,1404283,9,'Post Production Supervisor'),(12163,1416828,3,'Location Manager'),(12163,1429025,9,'Thanks'),(12163,1473178,8,'Hair Department Head'),(12163,1531494,6,'Music Supervisor'),(12163,1635482,8,'Makeup Designer'),(12163,1648147,9,'Special Effects'),(12163,1671960,9,'Transportation Captain'),(32275,2763,7,'Art Direction'),(32275,3248,4,'Screenplay'),(32275,3248,3,'Producer'),(32275,4082,6,'Music'),(32275,5187,7,'Production Design'),(32275,9057,1,'Director of Photography'),(32275,11491,8,'Costume Design'),(32275,13338,1,'Director of Photography'),(32275,13575,9,'Sound Recordist'),(32275,29962,2,'Director'),(32275,32996,1,'Director of Photography'),(32275,86404,4,'Adaptation'),(32275,120312,4,'Novel'),(32275,231234,1,'Additional Photography'),(13785,3032,5,'Editor'),(13785,6467,3,'Producer'),(13785,11823,8,'Costume Design'),(13785,13000,1,'Director of Photography'),(13785,13524,2,'Director'),(13785,13524,4,'Screenplay'),(13785,53898,5,'First Assistant Editor'),(13785,26510,4,'Screenplay'),(13785,81893,7,'Production Design'),(13785,143919,6,'Sound Re-Recording Mixer'),(13785,947682,3,'Casting'),(13785,958835,8,'Costume Supervisor'),(13785,1182909,8,'Key Hair Stylist'),(13785,1215287,3,'Executive Producer'),(13785,1341405,5,'Dialogue Editor'),(13785,1342625,6,'Sound Re-Recording Mixer'),(13785,1360100,6,'Supervising Sound Editor'),(13785,1391699,1,'Still Photographer'),(13785,1394984,6,'Music Editor'),(13785,1408179,8,'Hairstylist'),(13785,1418286,5,'Dialogue Editor'),(13785,1441373,2,'Script Supervisor'),(13785,1537021,6,'Original Music Composer'),(13785,1537024,7,'Set Decoration'),(13785,1537028,3,'Production Coordinator'),(13785,1537030,3,'Production Coordinator'),(13785,1537031,8,'Costume Supervisor'),(13785,1537032,11,'Gaffer'),(13785,1537033,9,'Stunt Coordinator'),(13785,1537034,9,'Special Effects Coordinator'),(13785,1537036,3,'Unit Production Manager'),(14144,2223,2,'Director'),(14144,12084,4,'Screenplay'),(14144,12085,4,'Screenplay'),(14144,57856,4,'Screenplay'),(10622,28156,6,'Original Music Composer'),(10622,46318,4,'Screenplay'),(10622,46319,4,'Screenplay'),(10622,46326,5,'Editor'),(10622,62410,2,'Director'),(10622,62416,3,'Producer'),(10622,64903,3,'Producer'),(10622,66052,6,'Original Music Composer'),(10622,66053,6,'Original Music Composer'),(10622,66054,1,'Director of Photography'),(13370,3032,5,'Editor'),(13370,6467,3,'Producer'),(13370,13524,2,'Director'),(13370,13524,4,'Writer'),(13370,26510,4,'Writer'),(13370,35166,7,'Art Direction'),(13370,81893,7,'Production Design'),(13370,958835,8,'Costume Design'),(13370,960963,7,'Set Decoration'),(13370,1064271,1,'Director of Photography'),(13370,1396364,3,'Line Producer'),(11191,5697,4,'Screenplay'),(11191,17146,1,'Director of Photography'),(11191,18281,2,'Director'),(11191,18651,5,'Editor'),(11191,21371,4,'Screenplay'),(11191,31141,4,'Screenplay'),(11191,31142,4,'Screenplay'),(11191,65043,3,'Executive Producer'),(11191,58208,5,'Editor'),(11191,68529,3,'Producer'),(11191,68530,3,'Producer'),(11191,68531,6,'Original Music Composer'),(10215,471,7,'Production Design'),(10215,1251,1,'Director of Photography'),(10215,2226,3,'Producer'),(10215,5489,3,'Casting'),(10215,6118,5,'Editor'),(10215,7791,4,'Screenplay'),(10215,7791,2,'Director'),(10215,15906,3,'Producer'),(10215,16639,6,'Sound Editor'),(10215,53527,8,'Costume Design'),(10215,152204,9,'Stunt Coordinator'),(10215,948789,6,'Music Supervisor'),(10215,1117749,2,'First Assistant Director'),(10215,1181554,1,'Still Photographer'),(10215,1341859,6,'Sound Editor'),(10215,1342600,10,'Special Effects Supervisor'),(10215,1347755,6,'Music Editor'),(10215,1410199,2,'Script Supervisor'),(10215,1414090,8,'Key Makeup Artist'),(10215,1416446,8,'Key Hair Stylist'),(10215,1427739,3,'Producer'),(10215,1428506,1,'Steadicam Operator'),(10215,1464527,1,'Camera Operator'),(10215,1539444,5,'Dialogue Editor'),(10215,1551468,7,'Art Direction'),(25066,552,3,'Line Producer'),(25066,5281,3,'Executive Producer'),(25066,19155,6,'Music'),(25066,11776,5,'Editor'),(25066,14139,9,'Cinematography'),(25066,57777,3,'Producer'),(25066,57777,4,'Writer'),(25066,141825,2,'Director'),(25066,141825,4,'Writer'),(11361,15445,6,'Original Music Composer'),(11361,32813,4,'Screenplay'),(11361,32813,2,'Director'),(11361,59287,10,'Special Effects Supervisor'),(11361,62928,3,'Line Producer'),(11361,66203,3,'Executive Producer'),(11361,69139,4,'Screenplay'),(11361,69140,3,'Producer'),(11361,69141,1,'Director of Photography'),(11361,69142,5,'Editor'),(11361,69143,5,'Editor'),(11361,1634294,4,'Screenplay'),(12509,228,2,'Director'),(12509,228,3,'Producer'),(12509,999,3,'Casting'),(12509,4190,8,'Costume Design'),(12509,5670,7,'Production Design'),(12509,4446,3,'Producer'),(12509,4901,7,'Location Scout'),(12509,5271,1,'Director of Photography'),(12509,7035,5,'Editor'),(12509,10422,4,'Screenplay'),(12509,20838,7,'Set Decoration'),(12509,20692,6,'Original Music Composer'),(12509,60014,7,'Art Direction'),(12509,72581,4,'Novel'),(12509,72582,4,'Novel'),(12509,72583,4,'Screenplay'),(12509,72584,3,'Producer'),(12509,72585,3,'Executive Producer'),(12509,72586,3,'Producer'),(12509,1114956,3,'Associate Producer'),(12509,1116296,2,'Script Supervisor'),(12509,1149997,9,'Post Production Supervisor'),(12509,1340647,3,'Co-Producer'),(12509,1393558,7,'Leadman'),(12509,1457688,3,'Casting Associate'),(12509,1470173,7,'Art Direction'),(12509,1538813,3,'Executive Producer'),(12509,1546001,3,'Production Manager'),(12509,1802732,3,'Associate Producer'),(12509,1802734,7,'Location Scout'),(12509,1802735,7,'Location Scout'),(15256,3191,2,'Director'),(15256,1196735,4,'Writer'),(15256,1746321,3,'Producer'),(28053,1271,3,'Producer'),(28053,7494,3,'Casting'),(28053,22680,6,'Original Music Composer'),(28053,50993,3,'Executive Producer'),(28053,66803,1,'Director of Photography'),(28053,90266,3,'Co-Executive Producer'),(28053,99496,2,'Director'),(28053,99496,3,'Producer'),(28053,99496,4,'Writer'),(28053,112576,5,'Editor'),(28053,112749,3,'Producer'),(28053,805594,3,'Casting'),(28053,928498,7,'Production Design'),(28053,1175486,3,'Co-Executive Producer'),(28053,1192559,8,'Costume Design'),(28053,1513805,3,'Producer'),(28053,1513806,3,'Executive Producer'),(28053,1513807,3,'Executive Producer'),(28053,1513808,3,'Executive Producer'),(28053,1513809,3,'Executive Producer'),(28053,1513810,3,'Co-Executive Producer'),(28053,1513811,3,'Co-Executive Producer'),(28053,1513813,3,'Co-Executive Producer'),(28053,1513814,3,'Co-Executive Producer'),(13991,77911,2,'Director'),(19556,22433,3,'Producer'),(19556,45861,3,'Producer'),(19556,84833,2,'Director'),(19556,84833,4,'Screenplay'),(19556,84834,2,'Director'),(19556,84834,4,'Screenplay'),(19556,171742,4,'Writer'),(19556,297609,4,'Writer'),(19556,1251944,3,'Producer'),(19556,1499896,3,'Producer'),(19556,1499897,4,'Writer'),(19556,1499898,4,'Screenplay'),(16172,4023,3,'Casting'),(16172,376,3,'Executive Producer'),(16172,3192,3,'Casting'),(16172,10570,3,'Producer'),(16172,5328,3,'Casting'),(16172,10549,7,'Set Decoration'),(16172,15148,3,'Producer'),(16172,17220,7,'Production Design'),(16172,18679,2,'Director'),(16172,56593,1,'Director of Photography'),(16172,137175,7,'Art Direction'),(16172,142285,3,'Executive Producer'),(16172,1419416,7,'Production Design'),(16172,1464130,5,'Editor'),(16172,1468026,7,'Art Direction'),(16172,1522041,8,'Costume Design'),(16172,1523150,7,'Art Department Coordinator'),(16172,1553475,4,'Writer'),(16172,1809723,3,'Producer'),(13403,2862,3,'Producer'),(13403,3287,7,'Production Design'),(13403,4767,3,'Executive Producer'),(13403,4868,5,'Editor'),(13403,17114,2,'Director'),(13403,17114,4,'Screenplay'),(13403,17114,4,'Musical'),(13403,19758,1,'Director of Photography'),(13403,32604,3,'Casting'),(13403,21266,4,'Musical'),(13403,21266,6,'Original Music Composer'),(13403,32797,8,'Costume Design'),(13403,55191,3,'Line Producer'),(13403,57427,3,'Producer'),(13403,414073,3,'Executive Producer'),(13403,1317670,7,'Set Decoration'),(13403,1357087,3,'Producer'),(13403,1445977,7,'Art Direction'),(13403,1860496,3,'Executive Producer'),(15797,16590,2,'Director'),(15797,16590,4,'Writer'),(15797,35976,1,'Director of Photography'),(15797,56985,9,'Martial Arts Choreographer'),(15797,543174,4,'Writer'),(15797,1802341,6,'Original Music Composer'),(13537,500,3,'Executive Producer'),(13537,9183,3,'Executive Producer'),(13537,14695,3,'Producer'),(13537,21807,2,'Director'),(13537,21807,4,'Writer'),(13537,35179,3,'Producer'),(13537,53785,3,'Producer'),(13537,57849,1,'Director of Photography'),(13537,1030585,3,'Producer'),(20794,5285,3,'Producer'),(20794,6406,5,'Editor'),(20794,25140,7,'Production Design'),(20794,21004,8,'Costume Design'),(20794,21517,3,'Casting'),(20794,24313,8,'Hairstylist'),(20794,24313,8,'Makeup Artist'),(20794,38335,6,'Music'),(20794,52026,1,'Director of Photography'),(20794,56987,3,'Producer'),(20794,67910,2,'Director'),(20794,67910,4,'Screenplay'),(20794,75651,3,'Production Supervisor'),(20794,86589,3,'Executive Producer'),(20794,86589,3,'Unit Production Manager'),(20794,86591,7,'Supervising Art Director'),(20794,86592,7,'Set Decoration'),(20794,86593,8,'Hairstylist'),(20794,86594,8,'Makeup Artist'),(20794,86595,8,'Hairstylist'),(20794,86596,9,'Post Production Supervisor'),(31064,59210,2,'Director'),(31064,59210,4,'Writer'),(13990,50772,6,'Original Music Composer'),(13990,56661,2,'Director'),(13990,56661,4,'Writer'),(13990,56666,3,'Producer'),(13990,56673,5,'Editor'),(13990,964595,7,'Production Design'),(13990,1312510,1,'Director of Photography'),(11583,243,1,'Director of Photography'),(11583,668,3,'Casting'),(11583,1760,6,'Original Music Composer'),(11583,4782,4,'Screenplay'),(11583,4782,2,'Director'),(11583,9578,3,'Producer'),(11583,9955,8,'Costume Design'),(11583,10183,7,'Art Direction'),(11583,10201,6,'Music Editor'),(11583,10706,2,'Assistant Director'),(11583,3898,5,'Editor'),(11583,95332,7,'Production Design'),(11583,1049695,7,'Set Dresser'),(11583,1427543,1,'Camera Operator'),(11583,1568527,8,'Makeup Artist'),(11583,1838313,8,'Hairstylist'),(18602,15540,3,'Producer'),(18602,66129,3,'Producer'),(18602,66130,3,'Producer'),(18602,83287,2,'Director'),(18602,83287,4,'Screenplay'),(18602,932714,4,'Screenplay'),(27549,6890,3,'Executive Producer'),(27549,24757,4,'Screenplay'),(27549,24757,2,'Director'),(27549,24757,3,'Producer'),(27549,43393,6,'Original Music Composer'),(27549,58245,4,'Characters'),(27549,58248,4,'Characters'),(27549,98132,4,'Screenplay'),(27549,98132,4,'Story'),(27549,61113,3,'Line Producer'),(27549,68755,5,'Editor'),(27549,102605,4,'Screenplay'),(27549,102605,4,'Story'),(27549,443441,1,'Director of Photography'),(27549,566356,7,'Production Design'),(27549,938123,3,'Casting'),(27549,1222538,4,'Novel'),(27549,1430324,4,'Screenplay'),(27549,1477794,4,'Screenplay'),(10930,1134,3,'Producer'),(10930,16732,1,'Director of Photography'),(10930,19069,2,'Director'),(10930,19069,4,'Screenplay'),(10930,19167,6,'Original Music Composer'),(10930,19169,5,'Editor'),(10930,67533,4,'Screenplay'),(10930,67534,4,'Screenplay'),(10930,67535,3,'Executive Producer'),(32395,129718,2,'Director'),(32395,129718,4,'Writer'),(13827,10297,3,'Producer'),(13827,53017,6,'Music'),(13827,75882,2,'Director'),(13827,75882,4,'Author'),(13827,75885,4,'Author'),(13827,75885,3,'Producer'),(13827,75884,3,'Producer'),(16564,6766,3,'Producer'),(16564,80630,4,'Screenplay'),(16564,80630,2,'Director'),(16564,14138,6,'Original Music Composer'),(16564,34876,3,'Casting'),(16564,43710,3,'Producer'),(16564,56916,5,'Editor'),(16564,80628,4,'Novel'),(16564,83464,4,'Screenplay'),(16564,83466,4,'Screenplay'),(16564,144161,1,'Director of Photography'),(16564,557671,7,'Production Design'),(16564,952510,3,'Producer'),(16564,968348,3,'Casting'),(16564,1114476,3,'Producer'),(16564,1125644,3,'Line Producer'),(16564,1125645,3,'Line Producer'),(16564,1317617,8,'Costume Design'),(16564,1326064,7,'Art Direction'),(14351,4020,1,'Director of Photography'),(14351,15522,3,'Casting'),(14351,36105,6,'Original Music Composer'),(14351,49283,3,'Executive Producer'),(14351,49284,3,'Producer'),(14351,49284,3,'Executive Producer'),(14351,59981,3,'Producer'),(14351,68768,5,'Editor'),(14351,76708,7,'Production Design'),(14351,74320,3,'Casting'),(14351,74322,8,'Makeup Artist'),(14351,76705,2,'Director'),(14351,76705,4,'Writer'),(14351,76706,3,'Producer'),(14351,76707,5,'Editor'),(14351,76709,7,'Set Decoration'),(14351,76710,8,'Costume Design'),(14351,76711,8,'Hairstylist'),(14351,76712,8,'Makeup Department Head'),(14351,76715,3,'Unit Production Manager'),(14351,76716,3,'Production Supervisor'),(14351,76713,9,'Post Production Supervisor'),(14351,76717,2,'Assistant Director'),(14351,76721,7,'Art Department Coordinator'),(14351,76722,9,'Property Master'),(14351,76723,8,'Set Dressing Artist'),(14351,76724,8,'Set Dressing Production Assistant'),(14351,1452340,1,'Still Photographer'),(10664,54525,4,'Screenplay'),(10664,54525,2,'Director'),(10664,54526,4,'Screenplay'),(10664,54526,2,'Director'),(10664,126770,4,'Screenplay'),(16186,15525,8,'Makeup Department Head'),(16186,31130,7,'Set Decoration'),(16186,31131,8,'Costume Design'),(16186,51868,5,'Editor'),(16186,61653,7,'Production Design'),(16186,71948,6,'Music Supervisor'),(16186,77441,2,'Director'),(16186,80602,4,'Theatre Play'),(16186,80602,4,'Writer'),(16186,80834,1,'Still Photographer'),(16186,1096345,8,'Hair Department Head'),(16186,1392969,6,'Sound Re-Recording Mixer'),(16186,1458202,2,'Script Supervisor'),(16186,1554751,1,'Director of Photography'),(16186,1554752,6,'Original Music Composer'),(16186,1554754,8,'Key Hair Stylist'),(11901,190,2,'Director'),(11901,369,7,'Art Direction'),(11901,792,1,'Director of Photography'),(11901,3643,5,'Editor'),(11901,6483,4,'Screenplay'),(11901,6934,7,'Set Decoration'),(11901,14776,4,'Screenplay'),(11901,14777,3,'Producer'),(11901,14825,3,'Executive Producer'),(11901,55319,6,'Original Music Composer'),(11901,1562054,6,'Sound Designer'),(11889,293,1,'Director of Photography'),(11889,970,3,'Casting'),(11889,1729,6,'Original Music Composer'),(11889,8448,3,'Producer'),(11889,9153,7,'Production Design'),(11889,9154,5,'Editor'),(11889,13008,7,'Set Decoration'),(11889,36693,4,'Screenplay'),(11889,36693,2,'Director'),(11889,19310,8,'Costume Design'),(11889,444552,4,'Screenplay'),(11889,1346934,7,'Art Direction'),(11889,1609930,4,'Author'),(33155,554946,4,'Screenplay'),(33155,554946,2,'Director'),(27451,5914,3,'Casting'),(27451,9545,3,'Casting'),(27451,10419,5,'Editor'),(27451,56381,2,'Director'),(27451,56381,4,'Writer'),(27451,61498,6,'Music'),(27451,94546,3,'Casting'),(27451,958414,7,'Production Design'),(27451,958703,8,'Costume Design'),(27451,1303880,9,'Cinematography'),(13173,22214,2,'Director'),(13173,22214,4,'Writer'),(13173,77089,4,'Writer'),(13173,224530,5,'Editor'),(22908,66130,3,'Producer'),(22908,70520,2,'Director'),(22908,70520,4,'Writer'),(22908,81773,4,'Writer'),(25248,7800,3,'Casting'),(25248,29688,3,'Producer'),(25248,36165,1,'Director of Photography'),(25248,61130,7,'Art Direction'),(25248,70789,6,'Music'),(25248,83415,2,'Director'),(25248,83415,4,'Writer'),(25248,152406,3,'Producer'),(25248,1252236,3,'Producer'),(25248,1252238,3,'Producer'),(25248,1318447,7,'Production Design'),(25248,1381934,2,'Script Supervisor'),(25248,1424454,8,'Costume Design'),(25248,1516101,3,'Casting'),(25248,1517120,7,'Set Decoration'),(16633,12865,5,'Editor'),(16633,2289,6,'Original Music Composer'),(16633,16187,2,'Director'),(16633,8426,3,'Casting'),(16633,12415,4,'Novel'),(16633,12415,4,'Screenplay'),(16633,33847,8,'Costume Design'),(16633,68459,1,'Director of Photography'),(16633,1370939,7,'Set Decoration'),(16633,1476027,7,'Production Design'),(16633,1712326,2,'Script Supervisor'),(16633,1712327,1,'Still Photographer'),(10072,4027,4,'Screenplay'),(10072,5140,4,'Screenplay'),(10072,5140,3,'Executive Producer'),(10072,13663,3,'Producer'),(10072,5628,6,'Original Music Composer'),(10072,26713,2,'Director'),(10072,26713,4,'Screenplay'),(10072,21362,1,'Director of Photography'),(10072,51758,5,'Editor'),(10072,62022,3,'Executive Producer'),(10072,62894,4,'Screenplay'),(10072,62896,5,'Editor'),(10072,1452932,9,'Special Effects'),(29912,3358,7,'Art Direction'),(29912,8503,6,'Original Music Composer'),(29912,9587,7,'Set Decoration'),(29912,10603,5,'Editor'),(29912,10604,7,'Art Direction'),(29912,13270,1,'Director of Photography'),(29912,26175,8,'Makeup Artist'),(29912,33064,2,'Director'),(29912,70940,4,'Screenplay'),(29912,115848,4,'Adaptation'),(29912,116326,4,'Screenplay'),(29912,145870,3,'Producer'),(29912,1154117,4,'Novel'),(29912,1335586,7,'Set Decoration'),(29912,1800171,8,'Costume Design'),(11843,243,1,'Director of Photography'),(11843,1927,2,'Director'),(11843,1927,4,'Screenplay'),(11843,1927,3,'Producer'),(11843,1938,6,'Music'),(11843,16589,5,'Editor'),(11284,4767,4,'Screenplay'),(11284,4767,3,'Executive Producer'),(11284,5140,4,'Characters'),(11284,13663,3,'Producer'),(11284,6117,1,'Director of Photography'),(11284,12106,3,'Producer'),(11284,16534,5,'Editor'),(11284,56891,2,'Director'),(11284,58438,6,'Original Music Composer'),(16096,8971,3,'Associate Producer'),(16096,12994,6,'Original Music Composer'),(16096,15524,8,'Costume Design'),(16096,16464,1,'Director of Photography'),(16096,16534,5,'Editor'),(16096,22045,7,'Production Design'),(16096,64196,5,'Editor'),(16096,67896,2,'Director'),(16096,67896,3,'Producer'),(16096,68215,4,'Characters'),(16096,141824,2,'Director'),(16096,141824,3,'Producer'),(16096,141825,4,'Screenplay'),(16096,141825,4,'Story'),(16096,141826,4,'Screenplay'),(16096,558896,9,'Stunt Coordinator'),(16096,981854,3,'Executive Producer'),(16096,1102854,3,'Co-Producer'),(16096,1339447,6,'Boom Operator'),(16096,1342624,6,'Sound Re-Recording Mixer'),(16096,1395281,1,'Steadicam Operator'),(16096,1441250,6,'Supervising Sound Editor'),(24266,76195,4,'Screenplay'),(24266,1174031,2,'Director'),(24266,1202729,9,'Poem'),(24266,1202730,9,'Script'),(16508,90874,4,'Storyboard'),(16508,90874,10,'Animation Manager'),(16508,170480,7,'Art Department Manager'),(16508,183559,4,'Writer'),(16508,261271,2,'Director'),(16508,352055,4,'Writer'),(16508,592179,10,'Animation Manager'),(16508,1231348,4,'Storyboard'),(16508,1448482,7,'Background Designer'),(16508,1462615,7,'Background Designer'),(16508,1462615,10,'Animation'),(16508,1466420,4,'Storyboard'),(16508,1466427,4,'Storyboard'),(16508,1466428,4,'Storyboard'),(16508,1466429,4,'Storyboard'),(16508,1466430,4,'Storyboard'),(16508,1466432,4,'Storyboard'),(16508,1466433,4,'Storyboard'),(16508,1466434,10,'Visual Effects'),(16508,1466435,7,'Background Designer'),(16508,1466436,10,'Animation Manager'),(16508,1466437,10,'Animation Manager'),(16508,1466439,10,'Color Designer'),(16508,1466440,7,'Art Department Manager'),(16508,1466441,7,'Background Designer'),(16508,1466443,10,'Animation'),(16508,1466444,10,'Color Designer'),(16508,1466445,10,'Animation'),(16508,1466446,7,'Background Designer'),(16508,1466447,7,'Background Designer'),(16508,1466448,10,'Animation'),(16508,1466449,7,'Art Department Manager'),(16508,1466450,2,'Layout'),(16508,1466451,7,'Background Designer'),(16508,1466452,7,'Art Department Manager'),(16508,1466453,10,'Animation Supervisor'),(16508,1466454,10,'Color Designer'),(16508,1466455,7,'Background Designer'),(16508,1466456,10,'Animation'),(16508,1466457,7,'Background Designer'),(16508,1466458,7,'Art Department Manager'),(16508,1466459,7,'Art Department Manager'),(16508,1466460,10,'Animation'),(16508,1466461,7,'Background Designer'),(16508,1466462,7,'Background Designer'),(16508,1466463,10,'Color Designer'),(16508,1466464,10,'Animation'),(16508,1466465,7,'Background Designer'),(16508,1466466,10,'Animation'),(16508,1466467,7,'Background Designer'),(16508,1466469,4,'Storyboard'),(15660,53810,4,'Writer'),(15660,69878,4,'Writer'),(15660,113799,2,'Director'),(15660,113799,4,'Writer'),(15660,989077,4,'Writer'),(19848,9778,2,'Director'),(19848,9778,4,'Writer'),(24973,1045,6,'Original Music Composer'),(24973,3358,7,'Art Direction'),(24973,4109,2,'Director'),(24973,4509,4,'Screenplay'),(24973,8502,3,'Producer'),(24973,8503,6,'Original Music Composer'),(24973,9587,7,'Set Decoration'),(24973,10603,5,'Editor'),(24973,10604,7,'Art Direction'),(24973,13270,1,'Director of Photography'),(24973,26175,8,'Makeup Artist'),(24973,116326,4,'Screenplay'),(24973,1146055,4,'Novel'),(24973,1335586,7,'Set Decoration'),(21610,58040,2,'Director'),(21610,69567,4,'Writer'),(10283,8751,5,'Editor'),(10283,22544,1,'Director of Photography'),(10283,23860,6,'Original Music Composer'),(10283,64724,3,'Producer'),(10283,64735,2,'Director'),(10283,64735,4,'Screenplay'),(10283,64736,3,'Producer'),(10987,652,3,'Producer'),(10987,2161,4,'Characters'),(10987,11770,4,'Characters'),(10987,15445,6,'Music'),(10987,37023,7,'Art Direction'),(10987,55116,2,'Director'),(10987,55955,5,'Editor'),(10987,62824,9,'Special Effects'),(10987,64722,9,'Special Effects'),(10987,66203,3,'Executive Producer'),(10987,67578,1,'Director of Photography'),(10987,67695,6,'Music'),(10987,78136,4,'Writer'),(10987,102352,3,'Associate Producer'),(10987,1109683,7,'Production Design'),(10987,1521390,8,'Costume Design'),(10987,1707733,8,'Makeup Artist'),(14745,48498,2,'Director'),(14745,53181,1,'Director of Photography'),(14745,82664,4,'Screenplay'),(14745,82665,4,'Screenplay'),(26748,2952,3,'Casting'),(26748,3727,3,'Executive Producer'),(26748,7262,1,'Director of Photography'),(26748,19971,8,'Costume Design'),(26748,20835,3,'Producer'),(26748,20836,6,'Original Music Composer'),(26748,60865,3,'Producer'),(26748,102445,2,'Director'),(26748,102445,5,'Editor'),(26748,102445,4,'Writer'),(26748,957258,7,'Production Design'),(26748,992965,2,'Script Supervisor'),(26748,1322502,7,'Set Decoration'),(26748,1333223,6,'Supervising Sound Editor'),(26748,1337469,6,'Music Editor'),(26748,1405246,9,'Unit Publicist'),(26748,1407230,1,'Steadicam Operator'),(26748,1410107,1,'Steadicam Operator'),(26748,1467278,7,'Art Direction'),(26748,1470182,8,'Key Hair Stylist'),(26748,1531576,5,'Dialogue Editor'),(26748,1534614,8,'Hairstylist'),(26748,1536221,1,'Still Photographer'),(26748,1536222,8,'Hairstylist'),(11357,652,3,'Producer'),(11357,6390,5,'Editor'),(11357,15445,6,'Original Music Composer'),(11357,20823,1,'Director of Photography'),(11357,56452,4,'Screenplay'),(11357,56998,2,'Director'),(11357,66203,3,'Executive Producer'),(11357,1341333,7,'Art Direction'),(11357,1485315,3,'Associate Producer'),(24913,772,4,'Writer'),(24913,1214,1,'Director of Photography'),(24913,13669,6,'Original Music Composer'),(24913,12291,7,'Art Direction'),(24913,12970,5,'Editor'),(24913,49284,3,'Producer'),(24913,12942,3,'Casting'),(24913,62556,2,'Director'),(24913,13433,3,'Casting'),(24913,1627917,7,'Set Decoration'),(24913,1627918,9,'Makeup Effects'),(24913,1627919,9,'Makeup Effects'),(24913,1627920,9,'Makeup Effects'),(24913,1627921,9,'Makeup Effects'),(13776,1484,3,'Casting'),(13776,1763,7,'Art Direction'),(13776,1888,3,'Producer'),(13776,8246,4,'Screenplay'),(13776,8246,2,'Director'),(13776,5162,3,'Executive Producer'),(13776,5166,5,'Editor'),(13776,9616,8,'Costume Design'),(13776,9255,8,'Costume Design'),(13776,11958,9,'Cinematography'),(13776,16520,6,'Music Editor'),(13776,23703,8,'Makeup Artist'),(13776,24316,9,'Special Effects'),(13776,29101,11,'Lighting Supervisor'),(13776,58421,6,'Sound Re-Recording Mixer'),(13776,72616,5,'Editor'),(13776,74792,1,'Camera Operator'),(13776,74967,7,'Set Decoration'),(13776,75227,6,'Music'),(13776,75228,6,'Music'),(13776,75229,8,'Hairstylist'),(13776,75230,3,'Unit Production Manager'),(13776,75234,9,'Property Master'),(13776,75236,7,'Construction Coordinator'),(13776,75237,7,'Leadman'),(13776,75238,9,'Property Master'),(13776,75239,9,'Property Master'),(13776,75240,6,'Sound Re-Recording Mixer'),(13776,75241,6,'Sound Editor'),(13776,75242,6,'Sound mixer'),(13776,75243,6,'Sound Re-Recording Mixer'),(13776,75244,1,'Director of Photography'),(13776,75245,1,'Still Photographer'),(13776,75246,11,'Gaffer'),(13776,75247,1,'Camera Operator'),(13776,75248,1,'Director of Photography'),(13776,75249,8,'Costume Design'),(13776,75250,8,'Costume Design'),(13776,75251,6,'Music'),(13776,75252,9,'Transportation Coordinator'),(14854,1730,3,'Casting'),(14854,7070,9,'Stunts'),(14854,9969,8,'Makeup Artist'),(14854,14197,9,'Stunts'),(14854,16576,9,'Stunts'),(14854,62596,9,'Stunts'),(14854,37789,6,'Original Music Composer'),(14854,39108,5,'Editor'),(14854,51557,3,'Casting'),(14854,51572,9,'Stunt Coordinator'),(14854,51572,3,'Associate Producer'),(14854,94753,3,'Producer'),(14854,99856,9,'Stunts'),(14854,102627,2,'Director'),(14854,102627,3,'Producer'),(14854,107363,9,'Stunts'),(14854,182168,9,'Stunts'),(14854,584864,9,'Stunts'),(14854,1027239,9,'Stunts'),(14854,1035447,4,'Story'),(14854,1089831,7,'Production Design'),(14854,1131782,9,'Stunts'),(14854,1139456,9,'Stunts'),(14854,1148463,1,'Director of Photography'),(14854,1173281,4,'Screenplay'),(14854,1173281,4,'Story'),(14854,1282703,9,'Stunts'),(14854,1307066,3,'Associate Producer'),(14854,1307067,7,'Set Decoration'),(14854,1331463,9,'Stunts'),(14854,1534384,8,'Hairstylist'),(14854,1862456,9,'Stunts'),(14854,1862457,9,'Stunts'),(14854,1862458,9,'Stunts'),(14854,1862459,9,'Stunts'),(14854,1862460,9,'Stunts'),(14854,1862461,9,'Stunts'),(14854,1862463,9,'Stunts'),(14854,1862464,9,'Stunts'),(14854,1862465,9,'Stunts'),(14854,1862466,9,'Stunts'),(13090,2952,3,'Casting'),(13090,4855,3,'Producer'),(13090,4857,3,'Producer'),(13090,12032,3,'Producer'),(13090,40468,6,'Music'),(13090,41554,5,'Editor'),(13090,46784,1,'Director of Photography'),(13090,74153,4,'Author'),(13090,74152,2,'Director'),(13090,428915,3,'Producer'),(13090,1473811,2,'Script Coordinator'),(16441,58245,2,'Director'),(16441,58245,4,'Writer'),(16441,58248,4,'Writer'),(29996,29962,2,'Director'),(29996,67447,4,'Screenplay'),(29996,84940,4,'Writer'),(14834,1103,2,'Director'),(22649,3148,1,'Director of Photography'),(22649,7652,8,'Costume Design'),(22649,8622,7,'Art Direction'),(22649,9107,6,'Sound'),(22649,13336,6,'Original Music Composer'),(22649,14855,2,'Director'),(22649,14961,5,'Editor'),(22649,29810,6,'Original Music Composer'),(22649,30256,6,'Original Music Composer'),(22649,38233,4,'Novel'),(22649,47077,7,'Art Direction'),(22649,86404,4,'Screenplay'),(22649,89045,4,'Screenplay'),(22649,89045,3,'Associate Producer'),(22649,95752,3,'Associate Producer'),(22649,121115,6,'Original Music Composer'),(22649,585135,5,'Editor'),(22649,998190,6,'Original Music Composer'),(22649,1092864,6,'Original Music Composer'),(22649,1456433,2,'Assistant Director'),(22649,1469564,2,'Assistant Director'),(22649,1532469,6,'Original Music Composer'),(22649,1532472,3,'Casting'),(22649,1533674,2,'Assistant Director'),(22649,1585484,6,'Sound'),(20455,81718,2,'Director'),(20455,81853,2,'Director'),(20455,1221440,9,'Creator'),(13193,74259,2,'Director'),(13193,74259,4,'Writer'),(13193,560322,4,'Writer'),(11042,6986,3,'Producer'),(11042,6987,3,'Producer'),(11042,6997,3,'Casting'),(11042,7000,10,'Special Effects Supervisor'),(11042,17394,8,'Costume Design'),(11042,41951,9,'Thanks'),(11042,38516,2,'Director'),(11042,38516,4,'Screenplay'),(11042,38521,1,'Director of Photography'),(11042,38522,5,'Editor'),(11042,38523,7,'Production Design'),(11042,46986,9,'Thanks'),(11042,63129,3,'Casting'),(11042,67907,6,'Original Music Composer'),(11042,77818,9,'Thanks'),(11042,92235,9,'Stunts'),(11042,92237,1,'Steadicam Operator'),(11042,990962,3,'Co-Producer'),(11042,1322139,7,'Art Direction'),(11042,1339208,8,'Makeup Artist'),(11042,1382242,3,'Casting'),(11042,1403705,10,'Visual Effects Producer'),(11042,1588850,7,'Set Decoration'),(11042,1624172,2,'Script Supervisor'),(11042,1662902,6,'Boom Operator'),(11042,1662945,3,'Production Manager'),(11042,1662946,9,'Post Production Supervisor'),(11042,1662966,5,'Color Timer'),(11042,1671940,2,'Assistant Director'),(10786,1929,3,'Executive Producer'),(10786,2289,6,'Original Music Composer'),(10786,10639,1,'Director of Photography'),(10786,10586,2,'Director'),(10786,10589,3,'Producer'),(10786,29538,5,'Editor'),(10786,32790,3,'Executive Producer'),(10786,66787,4,'Screenplay'),(12484,6899,1,'Director of Photography'),(12484,51915,5,'Editor'),(12484,52371,4,'Screenplay'),(12484,52371,2,'Director'),(12484,52377,3,'Producer'),(12484,52379,6,'Original Music Composer'),(12484,60888,3,'Producer'),(12484,72441,6,'Original Music Composer'),(17339,9915,2,'Director'),(17339,67450,4,'Novel'),(17339,113899,4,'Screenplay'),(11959,2870,3,'Executive Producer'),(11959,8933,6,'Original Music Composer'),(11959,44827,3,'Producer'),(11959,62585,3,'Producer'),(11959,71041,4,'Screenplay'),(11959,71042,4,'Screenplay'),(11959,71042,2,'Director'),(11959,71043,4,'Screenplay'),(11959,71044,5,'Editor'),(11959,576249,1,'Director of Photography'),(14662,2948,3,'Producer'),(14662,51689,3,'Producer'),(14662,54240,2,'Director'),(14662,54240,4,'Writer'),(14662,56519,5,'Editor'),(15745,1357,1,'Director of Photography'),(15745,4937,3,'Producer'),(15745,15277,2,'Director'),(15745,15277,3,'Producer'),(15745,15277,4,'Writer'),(17431,6377,6,'Original Music Composer'),(17431,8313,3,'Casting'),(17431,41334,7,'Production Design'),(17431,61936,8,'Costume Design'),(17431,69450,3,'Producer'),(17431,69452,3,'Producer'),(17431,75079,5,'Editor'),(17431,81828,3,'Casting'),(17431,80685,3,'Executive Producer'),(17431,81850,2,'Director'),(17431,81850,4,'Story'),(17431,89287,4,'Screenplay'),(17431,95022,3,'Producer'),(17431,165708,1,'Director of Photography'),(17431,590480,6,'Music'),(17431,966223,3,'Producer'),(17431,966376,3,'Executive Producer'),(17431,966377,3,'Executive Producer'),(17431,966378,3,'Executive Producer'),(17431,969564,3,'Producer'),(17431,1125549,3,'Producer'),(17431,1125550,3,'Producer'),(17431,1125551,3,'Producer'),(21014,83070,2,'Director'),(21014,97544,4,'Writer'),(10217,5359,6,'Original Music Composer'),(10217,20181,3,'Executive Producer'),(10217,20182,3,'Executive Producer'),(10217,35332,5,'Editor'),(10217,55612,1,'Director of Photography'),(10217,56205,4,'Screenplay'),(10217,56205,2,'Director'),(10217,56205,3,'Producer'),(10217,64713,3,'Producer'),(10217,64714,4,'Novel'),(10217,82133,3,'Associate Producer'),(10217,558225,8,'Costume Design'),(10217,958043,7,'Production Design'),(10217,960161,7,'Set Decoration'),(10217,995423,3,'Line Producer'),(10217,1043358,6,'Sound Re-Recording Mixer'),(10217,1378464,5,'First Assistant Editor'),(10217,1387521,8,'Assistant Costume Designer'),(10217,1401290,6,'Sound Re-Recording Mixer'),(10217,1457487,2,'Script Supervisor'),(10217,1516879,7,'Art Direction'),(10217,1535352,1,'Steadicam Operator'),(10217,1537907,3,'Production Coordinator'),(10217,1537908,1,'Still Photographer'),(10217,1537909,9,'Stunt Coordinator'),(10217,1537910,8,'Assistant Costume Designer'),(13996,77121,2,'Director'),(13996,77121,4,'Writer'),(13996,137357,4,'Writer'),(16148,9341,1,'Director of Photography'),(16148,21015,3,'Producer'),(16148,51851,2,'Director'),(16148,51851,3,'Producer'),(16148,51851,4,'Author'),(16148,79664,3,'Executive Producer'),(16148,79665,3,'Producer'),(16148,79666,3,'Producer'),(16148,79667,6,'Music'),(27585,2227,3,'Producer'),(27585,17114,2,'Director'),(27585,19758,9,'Cinematography'),(27585,20743,3,'Producer'),(27585,23766,4,'Screenplay'),(27585,64179,3,'Producer'),(27585,68392,5,'Editor'),(27585,236604,3,'Producer'),(27585,1179244,3,'Producer'),(27585,1181479,6,'Music'),(14474,21845,4,'Story'),(14474,87191,2,'Director'),(14474,87191,4,'Story'),(14474,1276551,4,'Screenplay'),(14474,1276551,4,'Story'),(13685,3388,3,'Executive Producer'),(13685,887,4,'Author'),(13685,887,4,'Screenplay'),(13685,5655,2,'Director'),(13685,5655,4,'Author'),(13685,5655,4,'Screenplay'),(13685,5666,6,'Original Music Composer'),(13685,5667,1,'Director of Photography'),(13685,5668,5,'Editor'),(13685,15207,3,'Producer'),(13685,17797,3,'Executive Producer'),(13685,21067,3,'Producer'),(13685,71324,3,'Executive Producer'),(13685,57572,3,'Executive Producer'),(13685,71555,3,'Producer'),(13685,221695,3,'Producer'),(13685,951099,3,'Producer'),(13685,1117322,3,'Producer'),(18442,56981,4,'Writer'),(18442,56982,3,'Executive Producer'),(18442,56982,4,'Writer'),(18442,58912,2,'Director'),(18442,58912,4,'Writer'),(11600,1150,2,'Director'),(11600,1150,4,'Writer'),(11600,1264,5,'Editor'),(11600,3192,3,'Casting'),(11600,11818,7,'Art Direction'),(11600,13233,3,'Producer'),(11600,13234,3,'Producer'),(11600,19689,3,'Casting'),(11600,19949,3,'Producer'),(11600,19950,3,'Producer'),(11600,31515,3,'Executive Producer'),(11600,31520,3,'Executive Producer'),(11600,958043,7,'Production Design'),(11600,962907,1,'Director of Photography'),(11600,1316805,8,'Costume Design'),(13849,945,7,'Production Design'),(13849,80384,2,'Director'),(13849,116608,3,'Producer'),(13849,1035047,3,'Casting'),(13849,1035076,5,'Editor'),(13849,1037760,9,'Makeup Effects'),(13849,1053074,8,'Costume Design'),(13849,1147899,1,'Director of Photography'),(13849,1225721,9,'Stunt Coordinator'),(13849,1273195,3,'Producer'),(13849,1337412,6,'Foley'),(13849,1355313,8,'Makeup Artist'),(13849,1376810,3,'Location Manager'),(13849,1393301,6,'Foley'),(13849,1393341,1,'Still Photographer'),(13849,1395761,10,'Visual Effects Producer'),(13849,1411085,6,'Dolby Consultant'),(13849,1411106,8,'Costume Supervisor'),(13849,1411670,6,'Foley'),(13849,1411676,5,'Digital Intermediate'),(13849,1413926,7,'Art Direction'),(13849,1413927,9,'Makeup Effects'),(13849,1413929,3,'Production Manager'),(13849,1413930,9,'Property Master'),(13849,1413931,9,'Scenic Artist'),(13849,1413932,9,'Scenic Artist'),(13849,1413933,9,'Scenic Artist'),(13849,1413935,6,'Sound Effects Editor'),(13849,1413936,5,'Dialogue Editor'),(13849,1413937,5,'Dialogue Editor'),(13849,1413938,6,'Foley'),(13849,1413941,1,'Camera Operator'),(13849,1413942,9,'Second Unit Cinematographer'),(13849,1413943,1,'Still Photographer'),(13849,1413944,1,'Still Photographer'),(13849,1413945,11,'Gaffer'),(13849,1413946,11,'Rigging Gaffer'),(13849,1413947,11,'Rigging Gaffer'),(13849,1413949,5,'Digital Intermediate'),(13849,1413950,2,'Script Supervisor'),(13849,1413951,3,'Location Manager'),(13849,1413952,3,'Location Manager'),(13849,1413954,3,'Production Accountant'),(14849,18356,2,'Director'),(14849,17311,4,'Characters'),(14849,168463,4,'Screenplay'),(14849,168464,4,'Screenplay'),(12486,5175,5,'Editor'),(12486,11405,3,'Producer'),(12486,21611,6,'Original Music Composer'),(12486,72450,4,'Screenplay'),(12486,72450,2,'Director'),(12486,72450,3,'Producer'),(12486,72459,1,'Director of Photography'),(12486,72460,3,'Executive Producer'),(12486,72461,3,'Executive Producer'),(11935,597,3,'Casting'),(11935,598,3,'Casting'),(11935,906,7,'Set Decoration'),(11935,1222,7,'Production Design'),(11935,1760,6,'Original Music Composer'),(11935,2287,1,'Director of Photography'),(11935,5634,8,'Costume Design'),(11935,8889,6,'Sound mixer'),(11935,15186,9,'Stunt Coordinator'),(11935,16519,8,'Makeup Artist'),(11935,33485,3,'Location Manager'),(11935,33486,2,'Assistant Director'),(11935,22029,7,'Art Direction'),(11935,14994,3,'Producer'),(11935,37710,2,'Director'),(11935,37710,4,'Screenplay'),(11935,55241,9,'Special Effects'),(11935,58183,3,'Associate Producer'),(11935,66216,5,'Editor'),(11935,555085,1,'Still Photographer'),(11935,1338851,2,'Script Supervisor'),(11935,1512154,8,'Hairstylist'),(11935,1512155,6,'Boom Operator'),(11935,1512156,9,'Special Effects'),(11935,1512157,9,'Special Effects'),(11935,1512158,1,'Camera Operator'),(12555,11720,2,'Director'),(12555,11720,4,'Screenplay'),(12555,11721,4,'Novel'),(12555,11725,1,'Director of Photography'),(12555,72798,3,'Producer'),(12555,72800,5,'Editor'),(12555,72801,7,'Production Design'),(12555,72802,8,'Costume Design'),(12555,544222,6,'Original Music Composer'),(31175,5125,2,'Director'),(31175,5498,4,'Screenplay'),(12498,879,4,'Screenplay'),(12498,879,2,'Director'),(12498,879,4,'Theatre Play'),(12498,20649,5,'Editor'),(12498,36188,3,'Executive Producer'),(12498,34191,1,'Director of Photography'),(12498,56759,3,'Producer'),(12498,72537,3,'Producer'),(12498,72538,6,'Original Music Composer'),(11404,27038,3,'Producer'),(11404,35005,4,'Screenplay'),(11404,35005,2,'Director'),(11404,28157,5,'Editor'),(11404,30313,1,'Director of Photography'),(11404,69956,6,'Original Music Composer'),(11404,69957,6,'Original Music Composer'),(16337,10051,4,'Screenplay'),(16337,10051,2,'Director'),(16337,10051,6,'Music'),(16337,15207,4,'Screenplay'),(16337,33008,3,'Producer'),(16337,33009,3,'Producer'),(16337,58705,5,'Editor'),(16337,75406,6,'Sound Designer'),(16337,986265,1,'Director of Photography'),(16337,1414158,6,'Music'),(16337,1614193,6,'Sound Designer'),(11577,1487,6,'Original Music Composer'),(11577,1724,5,'Editor'),(11577,1918,5,'Editor'),(11577,5053,3,'Producer'),(11577,7688,7,'Set Decoration'),(11577,7767,2,'Director'),(11577,12495,7,'Art Direction'),(11577,13721,5,'Editor'),(11577,14944,1,'Director of Photography'),(11577,16521,6,'Sound'),(11577,20924,5,'Editor'),(11577,41372,1,'Second Unit Director of Photography'),(11577,55321,3,'Casting'),(11577,64065,4,'Screenplay'),(11577,69954,5,'Editor'),(11577,69955,5,'Editor'),(11577,70250,2,'Assistant Director'),(11577,70987,9,'Second Unit'),(11577,74811,6,'Scoring Mixer'),(11577,100203,6,'Musician'),(11577,143906,7,'Property Master'),(11577,160598,9,'Stunts'),(11577,224966,6,'Music Editor'),(11577,1002740,3,'Production Manager'),(11577,1299143,6,'Supervising Sound Editor'),(11577,1419936,3,'Unit Production Manager'),(11577,1433316,8,'Wardrobe Supervisor'),(11577,1507551,10,'Visual Effects'),(11577,1511706,6,'Sound'),(11577,1604462,8,'Makeup Artist'),(11577,1604462,1,'Camera Operator'),(11577,1631429,9,'Animal Wrangler'),(11577,1789636,6,'Musician'),(10914,55612,1,'Director of Photography'),(10914,69168,2,'Director'),(10914,69169,4,'Screenplay'),(10914,69170,3,'Producer'),(10914,69171,6,'Original Music Composer'),(10914,69172,5,'Editor'),(10822,51897,6,'Original Music Composer'),(10822,57427,3,'Producer'),(10822,65151,4,'Screenplay'),(10822,65151,3,'Executive Producer'),(10822,66983,2,'Director'),(10822,66984,1,'Director of Photography'),(10822,66985,5,'Editor'),(10844,1317,7,'Production Design'),(10844,65595,3,'Producer'),(10844,67107,4,'Author'),(10844,67106,2,'Director'),(10844,67106,4,'Author'),(10844,67110,3,'Producer'),(10844,67111,3,'Producer'),(10844,67109,4,'Author'),(10844,67113,1,'Director of Photography'),(10844,67112,6,'Original Music Composer'),(10844,67114,7,'Art Direction'),(10844,67116,8,'Costume Design'),(10844,67115,7,'Art Direction'),(10844,67118,5,'Editor'),(10844,67117,3,'Casting'),(10844,1079558,9,'Stunt Coordinator'),(13342,1254,3,'Producer'),(13342,2507,1,'Director of Photography'),(13342,7719,8,'Costume Design'),(13342,7690,3,'Executive Producer'),(13342,7690,3,'Unit Production Manager'),(13342,11649,4,'Screenplay'),(13342,11649,4,'Novel'),(13342,12436,7,'Art Direction'),(13342,14538,3,'Casting'),(13342,15448,7,'Set Decoration'),(13342,24313,8,'Makeup Artist'),(13342,57434,2,'Director'),(13342,58869,3,'Producer'),(13342,69793,5,'Editor'),(13342,1027067,8,'Hairstylist'),(10339,6593,2,'Director'),(10339,6593,4,'Screenplay'),(10339,6593,3,'Producer'),(10339,9951,2,'Assistant Director'),(10339,10339,1,'Director of Photography'),(10339,14745,5,'Editor'),(10339,42842,4,'Author'),(10339,62923,4,'Screenplay'),(10339,64861,3,'Producer'),(10339,64862,6,'Original Music Composer'),(27686,80570,2,'Director'),(17139,123150,2,'Director'),(17139,123150,4,'Screenplay'),(17139,143009,4,'Story'),(12079,17231,3,'Producer'),(12079,64809,6,'Music'),(12079,65823,3,'Producer'),(12079,71329,2,'Director'),(12079,71329,5,'Editor'),(12079,71330,4,'Screenplay'),(12079,71331,4,'Screenplay'),(12079,71332,3,'Producer'),(12079,71333,3,'Producer'),(12079,71334,1,'Director of Photography'),(13807,23810,5,'Editor'),(13807,25236,2,'Director'),(13807,25240,1,'Director of Photography'),(13807,58057,6,'Original Music Composer'),(13807,64487,3,'Executive Producer'),(13807,72733,4,'Writer'),(13807,93992,4,'Writer'),(12093,2863,6,'Music'),(12093,11037,4,'Screenplay'),(12093,11037,2,'Director'),(12093,11053,3,'Producer'),(12093,11232,1,'Director of Photography'),(12093,11233,5,'Editor'),(12093,70091,5,'Editor'),(12093,71217,5,'Editor'),(12093,1523893,6,'Music'),(10970,719,6,'Original Music Composer'),(10970,1222,7,'Production Design'),(10970,8246,4,'Screenplay'),(10970,9582,5,'Editor'),(10970,14639,4,'Screenplay'),(10970,14639,2,'Director'),(10970,16533,5,'Editor'),(10970,23349,3,'Casting'),(10970,30605,1,'Director of Photography'),(10970,47845,4,'Screenplay'),(10970,47845,4,'Story'),(10970,67674,4,'Screenplay'),(10970,67675,3,'Producer'),(17663,134306,2,'Director'),(11826,3056,3,'Producer'),(11826,16336,3,'Casting'),(11826,30461,5,'Editor'),(11826,57317,4,'Screenplay'),(11826,57318,4,'Screenplay'),(11826,66728,2,'Director'),(11826,66732,5,'Editor'),(11826,69561,3,'Associate Producer'),(11826,69883,3,'Associate Producer'),(11826,70614,1,'Director of Photography'),(11826,959332,3,'Co-Producer'),(29920,57020,9,'Cinematography'),(29920,93335,4,'Writer'),(29920,93335,3,'Producer'),(29920,125738,2,'Director'),(29920,965926,8,'Costume Design'),(29920,997669,6,'Foley'),(29920,997675,9,'Stunt Coordinator'),(29920,1077402,4,'Screenplay'),(29920,1077403,4,'Writer'),(29920,1077404,6,'Original Music Composer'),(29920,1077405,5,'Editor'),(29920,1077406,3,'Casting'),(29920,1131382,7,'Production Design'),(29920,1428521,8,'Wigmaker'),(29920,1428523,9,'Makeup Effects'),(29920,1428526,7,'Construction Coordinator'),(29920,1428529,6,'Foley'),(29920,1428531,6,'Sound Designer'),(29920,1428534,6,'Sound Designer'),(29920,1428536,1,'Still Photographer'),(29920,1428538,11,'Gaffer'),(29920,1428542,3,'Location Manager'),(29920,1428543,3,'Location Manager'),(26379,35780,3,'Producer'),(26379,35793,3,'Producer'),(26379,76888,6,'Music'),(26379,96345,9,'Cinematography'),(34069,114545,2,'Director'),(34069,114545,5,'Editor'),(34069,114545,7,'Art Direction'),(34069,114545,4,'Screenplay'),(34069,114546,2,'Director'),(34069,114547,4,'Author'),(34069,114547,4,'Screenplay'),(34069,1029258,1,'Steadicam Operator'),(34069,1040872,3,'Producer'),(34069,1040873,3,'Executive Producer'),(34069,1040874,3,'Executive Producer'),(34069,1040875,3,'Executive Producer'),(34069,1040876,3,'Executive Producer'),(34069,1040877,6,'Original Music Composer'),(34069,1040878,5,'Editor'),(34069,1040879,5,'Editor'),(34069,1040880,1,'Director of Photography'),(34069,1040881,3,'Casting'),(34069,1040882,7,'Production Design'),(34069,1040883,8,'Costume Design'),(34069,1329108,7,'Art Direction'),(34069,1334474,8,'Makeup Artist'),(34069,1334475,4,'Screenplay'),(34069,1334476,4,'Screenplay'),(34069,1334477,4,'Screenplay'),(34069,1372466,3,'Executive Producer'),(34069,1377258,6,'Sound Re-Recording Mixer'),(34069,1377259,6,'Sound Re-Recording Mixer'),(34069,1408650,6,'Sound Designer'),(34069,1408651,6,'Sound Designer'),(34069,1408652,6,'Sound Designer'),(34069,1408658,10,'Visual Effects Supervisor'),(34069,1408659,11,'Gaffer'),(34069,1408660,2,'Script Supervisor'),(10947,21587,6,'Original Music Composer'),(10947,21794,5,'Editor'),(10947,38696,3,'Producer'),(10947,38697,1,'Director of Photography'),(10947,40254,4,'Screenplay'),(10947,57614,3,'Executive Producer'),(10947,65310,2,'Director'),(10947,67603,3,'Executive Producer'),(11386,851,6,'Original Music Composer'),(11386,1253,7,'Production Design'),(11386,9021,3,'Producer'),(11386,9027,8,'Costume Design'),(11386,17016,4,'Screenplay'),(11386,17016,2,'Director'),(11386,16675,5,'Editor'),(11386,21017,1,'Director of Photography'),(10246,597,3,'Casting'),(10246,598,3,'Casting'),(10246,8303,3,'Producer'),(10246,10764,3,'Executive Producer'),(10246,12698,2,'Director'),(10246,12698,3,'Producer'),(10246,12698,4,'Writer'),(10246,12700,6,'Original Music Composer'),(10246,12701,6,'Original Music Composer'),(10246,12702,1,'Director of Photography'),(10246,12703,5,'Editor'),(10246,12704,7,'Production Design'),(10246,12706,7,'Set Decoration'),(10246,12707,8,'Costume Design'),(10246,66709,3,'Associate Producer'),(10246,66710,3,'Executive Producer'),(10246,66711,3,'Executive Producer'),(10246,74792,1,'Steadicam Operator'),(10246,1457045,2,'Script Supervisor'),(10246,1562658,1,'Still Photographer'),(10246,1635455,8,'Costume Design'),(10246,1635456,7,'Set Decoration'),(10246,1635457,3,'Production Manager'),(29426,14999,2,'Director'),(29426,14999,4,'Screenplay'),(29426,51035,8,'Costume Design'),(29426,15222,7,'Production Design'),(29426,23549,8,'Makeup Department Head'),(29426,51939,6,'Music'),(29426,60088,7,'Art Direction'),(29426,72954,3,'Producer'),(29426,190936,3,'Casting'),(29426,933333,3,'Casting'),(29426,949745,5,'Editor'),(29426,962587,1,'Director of Photography'),(29426,1312174,8,'Costume Supervisor'),(10331,14999,4,'Screenplay'),(10331,14999,1,'Director of Photography'),(10331,14999,5,'Editor'),(10331,14999,2,'Director'),(10331,64831,4,'Screenplay'),(10331,64833,3,'Producer'),(10331,97914,3,'Producer'),(27191,8636,2,'Director'),(27191,97183,4,'Screenplay'),(27191,97183,4,'Writer'),(27191,97184,4,'Screenplay'),(27191,97184,4,'Writer'),(13408,65134,2,'Director'),(13408,1424894,8,'Hairstylist'),(10744,800,5,'Editor'),(10744,4140,6,'Original Music Composer'),(10744,32035,3,'Executive Producer'),(10744,51542,3,'Producer'),(10744,19000,2,'Director'),(10744,19000,4,'Screenplay'),(10744,57561,3,'Executive Producer'),(10744,57565,3,'Executive Producer'),(10744,19002,1,'Director of Photography'),(10744,66704,4,'Screenplay'),(10744,66705,3,'Executive Producer'),(10744,66706,3,'Executive Producer'),(10744,66707,3,'Executive Producer'),(10744,66708,3,'Producer'),(10744,961447,7,'Production Design'),(10744,1040861,7,'Set Decoration'),(10744,1183915,8,'Costume Design'),(10744,1407364,9,'Stunt Coordinator'),(10744,1430521,2,'Script Supervisor'),(10744,1551221,1,'Still Photographer'),(11536,2655,5,'Editor'),(11536,10536,6,'Original Music Composer'),(11536,6593,2,'Director'),(11536,13809,1,'Director of Photography'),(11536,36208,4,'Screenplay'),(11536,69767,3,'Producer'),(18713,73668,2,'Director'),(11013,5628,6,'Original Music Composer'),(11013,7437,5,'Editor'),(11013,63924,1,'Director of Photography'),(11013,66593,3,'Producer'),(11013,66594,3,'Producer'),(11013,67795,2,'Director'),(11013,67795,3,'Producer'),(11013,67796,4,'Screenplay'),(11013,957622,3,'Casting'),(11013,1017338,8,'Costume Design'),(19153,1491995,2,'Director'),(10132,149,1,'Director of Photography'),(10132,1152,2,'Director'),(10132,1152,4,'Screenplay'),(10132,2621,3,'Producer'),(10132,2987,6,'Original Music Composer'),(10132,4186,5,'Editor'),(10132,6051,5,'Editor'),(10132,32035,3,'Producer'),(10132,10866,4,'Theatre Play'),(10132,10866,4,'Screenplay'),(10132,50238,3,'Executive Producer'),(10132,63926,4,'Novel'),(10132,63927,3,'Executive Producer'),(16448,13524,2,'Director'),(16448,13524,4,'Writer'),(16448,26510,4,'Writer'),(15122,60621,2,'Director'),(15122,60621,4,'Author'),(14517,36903,9,'Stunt Coordinator'),(14517,23446,4,'Writer'),(14517,87081,2,'Director'),(14517,87081,4,'Writer'),(27551,5821,5,'Editor'),(27551,14138,6,'Music'),(27551,45572,2,'Director'),(27551,33008,3,'Producer'),(27551,33009,3,'Producer'),(27551,22815,3,'Executive Producer'),(27551,37371,9,'Cinematography'),(27551,59806,4,'Writer'),(27551,1467426,9,'Special Effects'),(27551,1540082,7,'Production Design'),(27551,1627317,9,'Special Effects'),(27551,1640580,3,'Location Manager'),(27551,1667652,10,'Creature Design'),(27551,1667653,10,'Creature Design'),(27551,1688327,7,'Set Decoration'),(27551,1758766,8,'Costume Design'),(27551,1766513,8,'Assistant Costume Designer'),(27551,1766516,2,'Script Supervisor'),(14293,91389,2,'Director'),(14293,91389,4,'Writer'),(14293,91392,4,'Writer'),(15059,474,3,'Casting'),(15059,6111,2,'Director'),(15059,6111,3,'Producer'),(15059,6111,4,'Author'),(15059,6116,3,'Producer'),(15059,21655,1,'Director of Photography'),(25719,23422,1,'Director of Photography'),(25719,23422,6,'Music'),(25719,64047,4,'Writer'),(25719,94155,2,'Director'),(25719,94155,4,'Writer'),(27723,103374,4,'Writer'),(27723,133183,2,'Director'),(20468,8686,4,'Writer'),(20468,24264,4,'Writer'),(20468,36083,2,'Director'),(29122,947,6,'Music'),(29122,8246,2,'Director'),(29122,102977,4,'Writer'),(34941,15306,3,'Executive Producer'),(34941,56435,4,'Screenplay'),(34941,56435,2,'Director'),(10981,1589,6,'Original Music Composer'),(10981,5877,2,'Director'),(10981,5877,3,'Executive Producer'),(10981,5877,4,'Writer'),(10981,5894,4,'Screenplay'),(10981,5908,1,'Director of Photography'),(10981,17732,3,'Executive Producer'),(10981,59935,3,'Producer'),(10981,59938,3,'Executive Producer'),(10981,64923,5,'Editor'),(10981,65704,4,'Screenplay'),(10981,67749,3,'Executive Producer'),(14902,41712,4,'Screenplay'),(14902,41712,4,'Theatre Play'),(14902,129514,2,'Director'),(14902,1480274,4,'Theatre Play'),(22301,2917,2,'Director'),(22301,13348,2,'Director'),(22301,29964,4,'Writer'),(22301,34740,2,'Director'),(22301,88579,4,'Screenplay'),(22301,88579,4,'Writer'),(20065,12833,2,'Director'),(20065,12833,3,'Producer'),(20065,12833,4,'Writer'),(20065,1066767,9,'Cinematography'),(20065,1251352,6,'Music'),(20065,1257523,5,'Editor'),(20065,1470187,3,'Producer'),(20065,1566006,3,'Producer'),(20065,1720135,3,'Producer'),(20065,1720136,3,'Producer'),(10774,853,5,'Editor'),(10774,1046,3,'Casting'),(10774,39996,2,'Director'),(10774,16331,1,'Director of Photography'),(10774,8868,8,'Costume Design'),(10774,11789,3,'Producer'),(10774,20968,7,'Production Design'),(10774,31498,4,'Screenplay'),(10774,41156,7,'Set Decoration'),(10774,66714,3,'Producer'),(10774,66715,6,'Original Music Composer'),(10774,957264,8,'Hairstylist'),(29715,870,1,'Director of Photography'),(29715,7767,4,'Screenplay'),(29715,7767,2,'Director'),(29715,10533,4,'Screenplay'),(29715,14356,6,'Original Music Composer'),(29715,14774,4,'Screenplay'),(29715,14774,4,'Story'),(29715,16892,7,'Art Direction'),(29715,29768,5,'Editor'),(29715,39761,3,'Producer'),(29715,64118,5,'Editor'),(29715,1125247,5,'Editor'),(25209,9055,3,'Producer'),(25209,9080,1,'Director of Photography'),(25209,21506,2,'Director'),(25209,30723,4,'Screenplay'),(29262,12388,4,'Screenstory'),(29262,52529,4,'Screenstory'),(29262,237884,4,'Screenplay'),(29262,237884,2,'Director'),(34769,14096,3,'Casting'),(34769,51869,8,'Costume Design'),(34769,55587,2,'Director'),(34769,55587,4,'Writer'),(34769,124321,3,'Producer'),(34769,154819,1,'Director of Photography'),(34769,962731,7,'Art Direction'),(34769,968603,5,'Editor'),(34769,1035176,3,'Casting'),(34769,1302397,7,'Production Design'),(34769,1302398,7,'Set Decoration'),(34769,1316504,8,'Makeup Artist'),(34769,1415133,2,'Script Supervisor'),(34769,1460599,10,'Animation'),(34769,1516101,3,'Casting'),(34769,1518503,8,'Hairstylist'),(34769,1844480,6,'Original Music Composer'),(10634,9778,4,'Author'),(10634,9778,6,'Music'),(10634,37932,2,'Director'),(10634,61654,6,'Music'),(10634,65134,4,'Screenplay'),(16288,3027,4,'Story'),(16288,14999,4,'Screenplay'),(16288,3990,9,'Makeup Effects'),(16288,5057,5,'Editor'),(16288,7856,7,'Production Design'),(16288,11161,9,'Makeup Effects'),(16288,11768,9,'Stunts'),(16288,15000,3,'Executive Producer'),(16288,15056,2,'Director'),(16288,59287,9,'Special Effects'),(16288,59287,9,'Makeup Effects'),(16288,59853,3,'Producer'),(16288,74998,8,'Costume Design'),(16288,104044,9,'Makeup Effects'),(16288,107372,9,'Special Effects'),(16288,107373,9,'Stunt Coordinator'),(16288,143066,1,'Director of Photography'),(16288,960384,3,'Casting'),(16288,1144920,6,'Original Music Composer'),(16288,1395157,8,'Makeup Artist'),(16288,1686509,1,'Director of Photography'),(23330,1760,6,'Original Music Composer'),(23330,3351,1,'Director of Photography'),(23330,7767,2,'Director'),(23330,7767,3,'Producer'),(23330,7768,3,'Producer'),(23330,7770,5,'Editor'),(23330,7772,3,'Producer'),(23330,15693,4,'Writer'),(23330,70987,3,'Producer'),(23330,70987,4,'Writer'),(23330,160236,4,'Writer'),(23330,959496,5,'Editor'),(23330,1062566,7,'Art Direction'),(18900,8217,1,'Director of Photography'),(18900,1930,4,'Book'),(18900,3632,2,'Director'),(18900,3632,4,'Screenplay'),(18900,13301,6,'Music'),(27029,1940,1,'Director of Photography'),(27029,8619,6,'Original Music Composer'),(27029,4103,7,'Art Direction'),(27029,4065,2,'Director'),(27029,4065,3,'Producer'),(27029,4312,8,'Costume Design'),(27029,4385,2,'Assistant Director'),(27029,7128,6,'Sound'),(27029,7773,9,'Sound Recordist'),(27029,14446,3,'Producer'),(27029,19334,5,'Editor'),(27029,25806,8,'Makeup Artist'),(27029,27187,8,'Hairstylist'),(27029,32085,1,'Still Photographer'),(27029,46610,4,'Screenplay'),(27029,58212,3,'Location Manager'),(27029,96797,4,'Novel'),(27029,105477,2,'Assistant Director'),(27029,1384084,3,'Production Manager'),(27029,1391607,1,'Camera Operator'),(27029,1411160,2,'Script Supervisor'),(27029,1431336,3,'Production Manager'),(27029,1431338,7,'Art Department Manager'),(27029,1529475,3,'Production Manager'),(27029,1606888,7,'Set Decoration'),(26268,8217,1,'Director of Photography'),(26268,348,4,'Screenplay'),(26268,8236,2,'Assistant Director'),(26268,9169,3,'Producer'),(26268,9796,6,'Music'),(26268,11444,7,'Set Decoration'),(26268,30422,2,'Director'),(26268,36968,5,'Editor'),(26268,81538,9,'Title Graphics'),(26268,53634,3,'Producer'),(26268,94987,4,'Novel'),(26268,936638,7,'Art Direction'),(26268,1404258,6,'Boom Operator'),(26268,1433439,9,'Stunt Coordinator'),(11363,1617,3,'Producer'),(11363,5952,3,'Producer'),(11363,12833,4,'Screenplay'),(11363,12833,2,'Director'),(11363,12833,3,'Producer'),(11363,39983,5,'Editor'),(11363,56906,1,'Director of Photography'),(11363,60642,6,'Original Music Composer'),(25376,18495,3,'Casting'),(25376,45546,6,'Original Music Composer'),(25376,47059,3,'Executive Producer'),(25376,71926,3,'Producer'),(25376,79163,3,'Publicist'),(25376,84714,2,'Director'),(25376,84714,4,'Writer'),(25376,84714,3,'Producer'),(25376,84714,5,'Editor'),(25376,93651,4,'Novel'),(25376,93651,4,'Writer'),(25376,93652,3,'Production Manager'),(25376,93652,6,'Sound Editor'),(25376,109001,9,'Thanks'),(25376,113379,10,'Visual Effects Producer'),(25376,113381,10,'Visual Effects Supervisor'),(25376,414697,1,'Director of Photography'),(25376,414697,9,'Thanks'),(25376,433332,3,'Executive Producer'),(25376,553927,6,'Original Music Composer'),(25376,938781,3,'Associate Producer'),(25376,960435,7,'Art Direction'),(25376,1027869,9,'Property Master'),(25376,1056102,3,'Producer'),(25376,1084678,3,'Casting'),(25376,1097495,9,'Thanks'),(25376,1147901,8,'Costume Design'),(25376,1147902,3,'Production Manager'),(25376,1147905,6,'Sound Effects Editor'),(25376,1310725,6,'Sound'),(25376,1396533,5,'Assistant Editor'),(25376,1436795,6,'Dolby Consultant'),(25376,1460052,9,'Makeup Effects'),(25376,1538878,5,'Digital Intermediate'),(25376,1555695,1,'Still Photographer'),(25376,1583717,8,'Makeup Artist'),(25376,1584153,9,'Stunt Coordinator'),(25376,1584153,10,'Special Effects Supervisor'),(25376,1584169,6,'Foley'),(25376,1607060,6,'Music Editor'),(25376,1723527,8,'Hairstylist'),(25376,1723528,7,'Art Department Coordinator'),(25376,1723529,7,'Assistant Art Director'),(25376,1723530,2,'Script Supervisor'),(25376,1723531,8,'Assistant Costume Designer'),(25376,1723532,8,'Seamstress'),(25376,1723533,11,'Gaffer'),(22007,859,3,'Casting'),(22007,16830,3,'Producer'),(22007,17207,3,'Producer'),(22007,17208,3,'Producer'),(22007,58705,5,'Editor'),(22007,60099,4,'Writer'),(22007,60099,2,'Director'),(22007,60102,6,'Music'),(22007,60103,1,'Director of Photography'),(22007,67240,7,'Production Design'),(22007,67242,7,'Art Direction'),(22007,1323081,3,'Casting'),(22007,1323082,8,'Costume Design'),(22007,1323083,8,'Costume Supervisor'),(10615,2632,3,'Producer'),(10615,7779,3,'Executive Producer'),(10615,32605,7,'Art Direction'),(10615,24177,3,'Executive Producer'),(10615,31094,3,'Executive Producer'),(10615,38168,1,'Director of Photography'),(10615,39973,3,'Producer'),(10615,52849,2,'Director'),(10615,52849,3,'Producer'),(10615,52849,4,'Author'),(10615,57778,6,'Original Music Composer'),(10615,59164,3,'Producer'),(10615,65913,3,'Producer'),(10615,65914,3,'Producer'),(10615,65915,5,'Editor'),(10615,65916,7,'Production Design'),(10615,65917,8,'Costume Design'),(10615,65918,3,'Executive Producer'),(10615,1746321,3,'Producer'),(14256,585272,2,'Director'),(14256,585272,4,'Writer'),(20055,938649,2,'Director'),(20055,938649,4,'Writer'),(12535,719,6,'Original Music Composer'),(12535,8246,4,'Screenplay'),(12535,9582,5,'Editor'),(12535,14639,4,'Screenplay'),(12535,14639,2,'Director'),(12535,14639,3,'Producer'),(12535,30605,1,'Director of Photography'),(12535,47845,4,'Screenplay'),(12535,67674,4,'Screenplay'),(12535,1000406,7,'Production Design'),(13973,4023,3,'Casting'),(13973,5914,3,'Executive Producer'),(13973,5914,3,'Casting'),(13973,2863,6,'Original Music Composer'),(13973,7468,4,'Novel'),(13973,9048,2,'Director'),(13973,9048,4,'Screenplay'),(13973,9543,3,'Producer'),(13973,33624,3,'Producer'),(13973,41678,7,'Art Direction'),(13973,46805,3,'Producer'),(13973,46806,3,'Producer'),(13973,46810,7,'Production Design'),(13973,56417,8,'Costume Design'),(13973,61652,3,'Executive Producer'),(13973,72264,1,'Director of Photography'),(13973,68392,5,'Editor'),(13973,999821,3,'Executive Producer'),(13973,1385930,2,'Script Supervisor'),(13973,1395677,7,'Construction Coordinator'),(13973,1405319,8,'Key Hair Stylist'),(13973,1461554,7,'Construction Coordinator'),(13973,1464832,3,'Associate Producer'),(13973,1464833,3,'Associate Producer'),(13973,1464834,3,'Associate Producer'),(13973,1464835,3,'Executive Producer'),(13973,1526542,7,'Set Decoration'),(13973,1526543,7,'Art Department Coordinator'),(13973,1526544,8,'Makeup Artist'),(11129,60322,3,'Producer'),(11129,68281,2,'Director'),(11129,68281,4,'Screenplay'),(11129,68283,3,'Producer'),(13551,68602,3,'Producer'),(13551,3953,3,'Producer'),(13551,3954,3,'Producer'),(13551,3956,3,'Producer'),(13551,3965,3,'Casting'),(13551,24960,7,'Production Design'),(13551,40511,1,'Director of Photography'),(13551,54777,3,'Casting'),(13551,67357,5,'Editor'),(13551,72448,6,'Music'),(13551,74534,3,'Producer'),(13551,74638,2,'Director'),(13551,74638,4,'Writer'),(13551,957115,8,'Costume Design'),(13551,1034748,3,'Casting'),(13551,1422948,3,'Producer'),(12586,8747,3,'Executive Producer'),(12586,32606,7,'Set Decoration'),(12586,23604,5,'Editor'),(12586,60109,3,'Casting'),(12586,60107,3,'Casting'),(12586,66133,3,'Producer'),(12586,72960,2,'Director'),(12586,72962,3,'Producer'),(12586,72963,4,'Author'),(12586,72961,4,'Author'),(12586,72964,3,'Producer'),(12586,72967,3,'Producer'),(12586,72965,3,'Producer'),(12586,72968,3,'Producer'),(12586,72972,1,'Director of Photography'),(12586,72973,4,'Author'),(12586,72971,3,'Producer'),(12586,72974,3,'Producer'),(12586,72970,3,'Producer'),(12586,72969,3,'Executive Producer'),(12586,72975,5,'Editor'),(12586,72976,3,'Executive Producer'),(12586,72977,3,'Executive Producer'),(12586,72980,8,'Costume Design'),(12586,72978,7,'Art Direction'),(12586,72979,7,'Production Design'),(12586,72981,6,'Original Music Composer'),(12586,1479984,3,'Producer'),(11564,7535,7,'Set Decoration'),(11564,7800,3,'Casting'),(11564,9217,6,'Original Music Composer'),(11564,29768,5,'Editor'),(11564,52081,1,'Director of Photography'),(11564,64796,4,'Story'),(11564,64796,4,'Screenplay'),(11564,67753,2,'Director'),(11564,67753,4,'Screenplay'),(11564,67753,3,'Executive Producer'),(11564,69889,3,'Executive Producer'),(11564,69890,4,'Screenplay'),(11564,69892,3,'Producer'),(11564,1013559,3,'Casting'),(11564,1348622,8,'Costume Design'),(11564,1378431,7,'Art Direction'),(11564,1464862,7,'Art Direction'),(11697,1503,4,'Screenplay'),(11697,1503,3,'Producer'),(11697,3103,9,'Sound Recordist'),(11697,4350,8,'Costume Design'),(11697,5166,5,'Assistant Editor'),(11697,5188,7,'Art Direction'),(11697,7338,7,'Set Decoration'),(11697,7687,7,'Set Decoration'),(11697,7689,8,'Makeup Artist'),(11697,8500,2,'Director'),(11697,8500,3,'Producer'),(11697,14647,6,'Original Music Composer'),(11697,14961,5,'Editor'),(11697,30257,6,'Orchestrator'),(11697,40183,1,'Director of Photography'),(11697,50580,8,'Hairstylist'),(11697,70037,4,'Screenplay'),(11697,116723,7,'Art Direction'),(11697,190776,9,'Stunts'),(11697,209585,9,'Stunts'),(11697,544594,4,'Story'),(11697,960058,8,'Costume Design'),(11697,1027339,10,'Visual Effects'),(11697,1128334,9,'Stunts'),(11697,1183874,9,'Sound Recordist'),(11697,1340359,2,'Assistant Director'),(11697,1531398,7,'Construction Coordinator'),(11697,1532774,6,'Orchestrator'),(11697,1578446,10,'Imaging Science'),(11697,1600048,9,'Cinematography'),(11697,1600049,6,'Music'),(11697,1600511,9,'Stunts'),(22051,49911,6,'Original Music Composer'),(22051,64179,3,'Producer'),(22051,100516,2,'Director'),(22051,100516,4,'Writer'),(22051,96126,3,'Executive Producer'),(22051,110261,1,'Director of Photography'),(22051,236604,3,'Producer'),(22051,236605,3,'Producer'),(22051,1018463,5,'Editor'),(22051,1057657,3,'Producer'),(22051,1102578,3,'Producer'),(22051,1102579,3,'Producer'),(22051,1102580,3,'Executive Producer'),(10070,880,3,'Executive Producer'),(10070,1307,3,'Executive Producer'),(10070,59839,3,'Executive Producer'),(10070,1594,3,'Casting'),(10070,1892,3,'Executive Producer'),(10070,5140,3,'Executive Producer'),(10070,6627,3,'Executive Producer'),(10070,8165,6,'Sound Effects Editor'),(10070,8166,6,'Sound Re-Recording Mixer'),(10070,51021,4,'Author'),(10070,51023,4,'Author'),(10070,18384,3,'Producer'),(10070,21420,7,'Production Design'),(10070,25300,7,'Set Decoration'),(10070,33618,1,'Director of Photography'),(10070,36043,10,'Visual Effects Supervisor'),(10070,62813,5,'Editor'),(10070,62273,11,'Gaffer'),(10070,62797,2,'Director'),(10070,62798,3,'Producer'),(10070,62800,3,'Producer'),(10070,62803,3,'Executive Producer'),(10070,62802,3,'Producer'),(10070,62801,3,'Executive Producer'),(10070,62799,3,'Producer'),(10070,62806,3,'Executive Producer'),(10070,62807,3,'Producer'),(10070,62804,3,'Executive Producer'),(10070,62805,3,'Executive Producer'),(10070,62808,3,'Producer'),(10070,62809,3,'Producer'),(10070,62811,6,'Original Music Composer'),(10070,62810,3,'Producer'),(10070,62814,3,'Executive Producer'),(10070,62815,8,'Costume Design'),(10070,64227,1,'Additional Photography'),(10070,64231,7,'Art Direction'),(10070,92493,9,'Stunt Coordinator'),(10070,71536,6,'Supervising Sound Editor'),(10070,89426,6,'Sound Re-Recording Mixer'),(10070,957840,6,'Supervising Sound Editor'),(10070,1063962,6,'Sound Designer'),(10070,1063965,6,'Sound Effects Editor'),(10070,1190778,9,'Transportation Coordinator'),(10070,1207166,8,'Makeup Artist'),(10070,1235786,6,'Sound Designer'),(10070,1298770,10,'Visual Effects Producer'),(10070,1358021,10,'Visual Effects Supervisor'),(10070,1367365,6,'Sound Re-Recording Mixer'),(10070,1376899,5,'Dialogue Editor'),(10070,1393021,6,'Music Editor'),(10070,1399122,6,'Dolby Consultant'),(10070,1399286,6,'ADR & Dubbing'),(10070,1403856,9,'Property Master'),(10070,1404714,7,'Sculptor'),(10070,1412444,8,'Hairstylist'),(10070,1440735,8,'Hairstylist'),(10070,1440736,7,'Art Department Coordinator'),(10070,1440738,7,'Construction Coordinator'),(10070,1440739,7,'Lead Painter'),(10070,1440740,7,'Leadman'),(10070,1440742,1,'Still Photographer'),(10070,1440743,8,'Set Costumer'),(10070,1440744,2,'Script Supervisor'),(10070,1440745,3,'Location Manager'),(23618,1897,4,'Writer'),(23618,5281,2,'Director'),(23618,5726,4,'Writer'),(23618,82587,4,'Writer'),(23618,85931,4,'Writer'),(23618,1746321,3,'Producer'),(10162,23422,1,'Director of Photography'),(10162,24257,5,'Editor'),(10162,26140,6,'Music'),(10162,64045,4,'Screenplay'),(10162,64045,2,'Director'),(10162,64046,3,'Executive Producer'),(10162,64047,3,'Producer'),(10162,64048,3,'Producer'),(10014,4608,9,'Stunts'),(10014,5140,4,'Characters'),(10014,13663,3,'Producer'),(10014,13665,3,'Executive Producer'),(10014,13668,3,'Co-Producer'),(10014,13668,3,'Line Producer'),(10014,13670,1,'Director of Photography'),(10014,13675,7,'Production Design'),(10014,19155,6,'Original Music Composer'),(10014,8684,9,'Stunt Coordinator'),(10014,18383,3,'Line Producer'),(10014,62020,2,'Director'),(10014,62021,4,'Screenplay'),(10014,62022,3,'Executive Producer'),(10014,62023,1,'Director of Photography'),(10014,62024,5,'Editor'),(10014,62025,5,'Editor'),(10014,159264,9,'Stunts'),(10014,176246,9,'Special Effects'),(10014,957368,7,'Art Direction'),(10014,1378613,9,'Stunts'),(10014,1418031,9,'Stunts'),(10014,1431970,8,'Costume Design'),(10014,1500921,9,'Stunts'),(10014,1534527,9,'Special Effects'),(10014,1862629,9,'Stunts'),(10014,1870441,9,'Special Effects'),(10014,1870442,9,'Stunts'),(10014,1870443,9,'Stunts'),(10014,1870444,9,'Stunts'),(11257,3960,1,'Director of Photography'),(11257,12759,5,'Editor'),(11257,54441,2,'Director'),(11257,54442,4,'Screenplay'),(11257,54442,4,'Novel'),(11257,54443,4,'Screenplay'),(11257,54448,3,'Producer'),(11257,54449,6,'Original Music Composer'),(20337,78029,3,'Executive Producer'),(20337,78029,2,'Director'),(20337,56324,1,'Director of Photography'),(20337,68754,3,'Producer'),(20337,85959,3,'Casting'),(20337,85960,6,'Music Editor'),(20337,85961,6,'Sound Effects Editor'),(20337,161858,2,'Director'),(20337,1460574,3,'Executive Producer'),(20337,1746321,3,'Producer'),(20737,1270,2,'Director'),(20737,86525,4,'Writer'),(20737,86526,4,'Writer'),(20737,1410526,10,'Visual Effects'),(10991,65428,2,'Director'),(10991,65429,4,'Screenplay'),(10991,65429,2,'Director'),(10991,65430,4,'Screenplay'),(10225,12970,5,'Editor'),(10225,15489,3,'Production Supervisor'),(10225,20953,6,'Original Music Composer'),(10225,63550,4,'Screenplay'),(10225,63550,2,'Director'),(10225,64204,1,'Director of Photography'),(34086,56059,2,'Director'),(34086,56059,4,'Writer'),(10285,62596,9,'Stunt Coordinator'),(10285,20953,6,'Original Music Composer'),(10285,35475,3,'Producer'),(10285,64743,2,'Director'),(10285,64744,3,'Producer'),(10285,64745,4,'Screenplay'),(10285,64746,4,'Screenplay'),(10285,64747,1,'Director of Photography'),(10285,64748,5,'Editor'),(10285,227360,8,'Makeup Department Head'),(10285,1185100,7,'Production Design'),(10285,1309592,8,'Costume Design'),(10285,1341446,10,'Visual Effects'),(10285,1341926,7,'Set Decoration'),(10285,1341927,7,'Construction Coordinator'),(29463,77300,2,'Director'),(29463,299276,4,'Writer'),(18065,134129,2,'Director'),(18065,134130,4,'Writer'),(18065,1315415,3,'Executive Producer'),(22013,3632,2,'Director'),(22013,3632,4,'Screenplay'),(22013,5805,6,'Original Music Composer'),(22013,7127,7,'Art Direction'),(22013,18664,5,'Editor'),(22013,70863,3,'Producer'),(22013,96252,1,'Director of Photography'),(22013,148078,4,'Novel'),(30139,1039544,2,'Director'),(30139,1039544,4,'Writer'),(15582,1215,5,'Editor'),(15582,21815,7,'Set Decoration'),(15582,57436,2,'Director'),(15582,57642,5,'Editor'),(15582,67492,9,'Cinematography'),(15582,67865,5,'Editor'),(15582,17310,4,'Characters'),(15582,70610,4,'Characters'),(15582,73027,5,'Editor'),(15582,17263,4,'Screenplay'),(15582,231531,3,'Casting'),(15582,551917,3,'Executive Producer'),(15582,551919,3,'Executive Producer'),(15582,1201858,8,'Costume Design'),(15582,1217177,3,'Producer'),(15582,1342074,2,'Script Supervisor'),(15582,1612610,6,'Original Music Composer'),(15582,1800104,7,'Production Design'),(15582,1800104,7,'Art Direction'),(15582,1800109,3,'Location Manager'),(15582,1800110,7,'Title Designer'),(15158,28947,6,'Music'),(15158,56324,1,'Director of Photography'),(15158,58245,2,'Director'),(15158,58245,4,'Writer'),(15158,58249,6,'Music'),(15158,58252,3,'Producer'),(15158,1081201,3,'Casting'),(15158,1314882,8,'Costume Design'),(30309,116832,2,'Director'),(10557,473,1,'Director of Photography'),(10557,65865,2,'Director'),(10557,65866,4,'Screenplay'),(10557,65867,6,'Music'),(10557,69903,3,'Producer'),(23531,1058138,2,'Director'),(23531,1058138,4,'Writer'),(28005,6495,2,'Director'),(28005,6495,4,'Writer'),(28005,99383,4,'Writer'),(24126,28239,4,'Writer'),(24126,48965,2,'Director'),(24126,91027,4,'Writer'),(13982,2691,2,'Director'),(13982,2691,4,'Writer'),(16642,909,5,'Editor'),(16642,1221,3,'Casting'),(16642,1259,6,'Original Music Composer'),(16642,3569,1,'Director of Photography'),(16642,7067,1,'Additional Photography'),(16642,5632,7,'Art Direction'),(16642,5634,8,'Costume Design'),(16642,6880,7,'Set Decoration'),(16642,8952,3,'Producer'),(16642,12844,3,'Producer'),(16642,30715,2,'Director'),(16642,30715,4,'Writer'),(16642,170940,3,'Executive Producer'),(16642,1015356,3,'Production Manager'),(16642,1620076,8,'Costume Design'),(16642,1620077,8,'Hairstylist'),(16642,1620079,9,'Special Effects'),(17734,145134,2,'Director'),(17734,145134,4,'Writer'),(17734,1616084,4,'Writer'),(18892,434,3,'Casting'),(18892,436,3,'Casting'),(18892,10421,7,'Production Design'),(18892,25142,5,'Editor'),(18892,21276,6,'Music'),(18892,53640,1,'Director of Photography'),(18892,65847,3,'Producer'),(18892,62279,7,'Set Decoration'),(18892,239418,2,'Director'),(18892,239418,4,'Writer'),(18892,1340331,2,'Script Supervisor'),(18892,1436691,2,'Script Supervisor'),(18892,1457059,8,'Makeup Artist'),(18892,1509656,9,'Property Master'),(18892,1531247,3,'Producer'),(18892,1531262,8,'Costume Design'),(18892,1531263,7,'Art Department Coordinator'),(18892,1531264,8,'Assistant Costume Designer'),(18892,1531265,8,'Costume Supervisor'),(18892,1531266,8,'Set Costumer'),(18892,1531267,8,'Key Hair Stylist'),(18892,1531269,9,'Carpenter'),(10683,1617,3,'Producer'),(10683,33678,1,'Director of Photography'),(10683,39454,3,'Producer'),(10683,52988,5,'Editor'),(10683,66605,4,'Screenplay'),(10683,66605,2,'Director'),(10683,69925,6,'Original Music Composer'),(17995,5175,5,'Editor'),(17995,11405,3,'Producer'),(17995,10815,1,'Director of Photography'),(17995,21792,2,'Director'),(17995,57874,6,'Original Music Composer'),(17995,62842,4,'Writer'),(17995,137177,3,'Unit Production Manager'),(17995,1102803,8,'Hairstylist'),(17995,1102814,3,'Production Supervisor'),(17995,1102816,1,'Camera Operator'),(17995,1102820,1,'Camera Operator'),(11229,531,6,'Original Music Composer'),(11229,1152,3,'Executive Producer'),(11229,3181,3,'Executive Producer'),(11229,5379,3,'Executive Producer'),(11229,6887,3,'Producer'),(11229,17231,3,'Producer'),(11229,58367,1,'Director of Photography'),(11229,48443,5,'Editor'),(11229,55117,4,'Screenplay'),(11229,55117,2,'Director'),(22488,60438,2,'Director'),(24469,466,3,'Executive Producer'),(24469,15726,3,'Executive Producer'),(24469,36205,7,'Production Design'),(24469,51919,3,'Producer'),(24469,55418,3,'Executive Producer'),(24469,61936,8,'Costume Design'),(24469,71082,2,'Director'),(24469,71082,4,'Writer'),(24469,71086,1,'Director of Photography'),(24469,71087,5,'Editor'),(24469,1126742,3,'Associate Producer'),(24469,1270110,3,'Producer'),(24469,1319621,6,'Original Music Composer'),(24469,1319622,3,'Casting'),(24469,1319623,7,'Art Direction'),(24469,1319624,8,'Makeup Artist'),(24469,1319625,8,'Hairstylist'),(24469,1319626,3,'Unit Production Manager'),(24469,1319627,3,'Production Manager'),(24469,1319628,9,'Post Production Supervisor'),(24469,1319629,2,'Assistant Director'),(24469,1319630,2,'Assistant Director'),(24469,1319631,2,'Assistant Director'),(24469,1567703,1,'Still Photographer'),(34099,2678,3,'Casting'),(34099,25747,5,'Editor'),(34099,38699,3,'Casting'),(34099,38700,3,'Casting'),(34099,69049,1,'Director of Photography'),(34099,71004,6,'Music'),(34099,71005,6,'Music'),(34099,111946,4,'Writer'),(34099,111946,3,'Executive Producer'),(34099,104710,3,'Producer'),(34099,111944,2,'Director'),(34099,111947,4,'Writer'),(34099,111947,3,'Executive Producer'),(34099,1005159,3,'Producer'),(34099,1364802,2,'Script Supervisor'),(34099,1484712,3,'Producer'),(34099,1484713,8,'Costume Design'),(27404,1032033,4,'Writer'),(27404,1179326,4,'Writer'),(27404,1271492,2,'Director'),(26039,1222,7,'Art Direction'),(26039,1939,1,'Director of Photography'),(26039,2658,6,'Sound Editor'),(26039,3648,7,'Set Decoration'),(26039,5187,10,'Visual Effects'),(26039,14681,8,'Hairstylist'),(26039,9796,6,'Original Music Composer'),(26039,10015,3,'Unit Production Manager'),(26039,10604,7,'Art Direction'),(26039,11472,3,'Producer'),(26039,13867,6,'Sound Mixer'),(26039,16514,3,'Producer'),(26039,21787,6,'Recording Supervision'),(26039,19665,2,'Director'),(26039,21672,4,'Novel'),(26039,21873,7,'Set Decoration'),(26039,29801,8,'Makeup Artist'),(26039,57070,3,'Other'),(26039,66918,4,'Screenplay'),(26039,161382,3,'Other'),(26039,948272,3,'Producer'),(26039,1086516,4,'Screenplay'),(26039,1174596,5,'Editor'),(26039,1325873,6,'Songs'),(26039,1615743,8,'Costume Design'),(26039,1620924,2,'Assistant Director'),(26039,1750056,1,'Other'),(26039,1750058,3,'Other'),(26039,1750058,4,'Screenplay'),(26039,1750059,1,'Still Photographer'),(10226,3559,3,'Producer'),(10226,23461,1,'Director of Photography'),(10226,52983,3,'Casting'),(10226,59290,4,'Screenplay'),(10226,59290,7,'Art Direction'),(10226,59291,2,'Director'),(10226,59291,4,'Screenplay'),(10226,64130,5,'Editor'),(10226,64205,3,'Producer'),(10226,64206,6,'Original Music Composer'),(10226,64208,5,'Editor'),(10226,64209,5,'Editor'),(10226,1022263,7,'Production Design'),(10226,1321301,7,'Production Design'),(10476,6482,3,'Producer'),(10476,22145,7,'Production Design'),(10476,53267,2,'Director'),(10476,53267,4,'Screenplay'),(10476,53638,3,'Producer'),(10476,53639,6,'Original Music Composer'),(10476,53640,1,'Director of Photography'),(10476,53641,5,'Editor'),(10476,54606,3,'Casting'),(10476,60475,3,'Associate Producer'),(10476,1207434,8,'Costume Design'),(10476,1243381,6,'Sound Re-Recording Mixer'),(10476,1378227,6,'Sound Re-Recording Mixer'),(10476,1387541,5,'Dialogue Editor'),(10476,1393021,6,'Music Editor'),(10476,1395022,6,'Supervising Sound Editor'),(10476,1399631,5,'Dialogue Editor'),(10476,1404214,5,'Dialogue Editor'),(10476,1404838,6,'Supervising Sound Editor'),(10476,1422979,6,'Sound Effects Editor'),(10476,1422979,6,'Sound Designer'),(10476,1460785,2,'Script Supervisor'),(10476,1472168,3,'Executive Producer'),(10476,1484222,6,'Music Editor'),(10476,1560899,6,'Sound Effects Editor'),(10476,1560900,6,'Sound Effects Editor'),(10476,1560904,6,'Boom Operator'),(10476,1560905,6,'Music Supervisor'),(10476,1560906,3,'Production Coordinator'),(10281,20953,6,'Original Music Composer'),(10281,23860,6,'Original Music Composer'),(10281,35165,1,'Director of Photography'),(10281,49284,3,'Producer'),(10281,64722,2,'Director'),(10281,64723,3,'Producer'),(10281,64724,3,'Producer'),(10281,64725,4,'Screenplay'),(10281,64726,4,'Screenplay'),(10281,64727,5,'Editor'),(10281,64728,5,'Editor'),(10281,64729,5,'Editor'),(13025,14999,4,'Screenplay'),(13025,14999,2,'Director'),(21461,85675,2,'Director'),(21461,85675,5,'Editor'),(21461,85675,4,'Writer'),(21461,85663,1,'Director of Photography'),(21461,99710,4,'Screenplay'),(21461,99710,3,'Producer'),(21461,123313,4,'Writer'),(21461,123314,6,'Music'),(17264,1776,3,'Executive Producer'),(17264,2871,3,'Producer'),(17264,8330,3,'Producer'),(17264,2872,6,'Music'),(17264,4951,5,'Editor'),(17264,5492,7,'Art Direction'),(17264,9964,4,'Screenplay'),(17264,8750,1,'Director of Photography'),(17264,21864,4,'Screenplay'),(17264,68212,2,'Director'),(17264,71760,4,'Screenplay'),(17264,128100,4,'Novel'),(17264,224070,7,'Art Direction'),(16016,66879,2,'Director'),(16016,66880,2,'Director'),(16016,74752,4,'Writer'),(15875,5188,7,'Art Direction'),(15875,8500,2,'Director'),(15875,8500,3,'Producer'),(15875,14647,6,'Original Music Composer'),(15875,14961,5,'Editor'),(15875,30491,4,'Screenplay'),(15875,40183,1,'Director of Photography'),(15875,50302,4,'Screenplay'),(15875,105568,4,'Story'),(15875,116723,7,'Art Direction'),(11072,719,6,'Original Music Composer'),(11072,9309,4,'Screenplay'),(11072,9582,5,'Editor'),(11072,9797,5,'Editor'),(11072,14431,1,'Director of Photography'),(11072,14639,4,'Screenplay'),(11072,14639,2,'Director'),(11072,41550,4,'Screenplay'),(11072,41550,4,'Story'),(11072,67675,3,'Producer'),(11072,111907,4,'Screenplay'),(11072,1217196,4,'Screenplay'),(26371,15877,7,'Art Direction'),(26371,54441,2,'Director'),(26371,54441,4,'Screenplay'),(26371,17556,1,'Director of Photography'),(26371,54442,4,'Original Story'),(26371,54448,3,'Producer'),(26371,54449,6,'Original Music Composer'),(26371,215093,4,'Screenplay'),(26371,978563,5,'Editor'),(14137,20788,3,'Producer'),(14137,20788,4,'Writer'),(14137,42304,6,'Music'),(14137,56914,5,'Editor'),(14137,65394,1,'Director of Photography'),(14137,67702,3,'Casting'),(14137,111745,2,'Director'),(14137,111745,4,'Writer'),(14137,957829,8,'Costume Design'),(14137,958228,7,'Production Design'),(14137,1335212,8,'Makeup Department Head'),(14137,1407697,2,'Script Supervisor'),(14137,1475280,3,'Producer'),(14137,1526543,7,'Art Department Coordinator'),(14137,1538935,3,'Casting'),(14137,1538936,7,'Set Decoration'),(14139,59528,1,'Director of Photography'),(14139,118303,2,'Director'),(14139,118303,4,'Writer'),(14139,234824,6,'Original Music Composer'),(14139,588976,3,'Producer'),(14139,588976,3,'Executive Producer'),(14139,1001659,3,'Associate Producer'),(14139,1047300,3,'Associate Producer'),(14139,1120107,7,'Art Direction'),(14139,1120108,7,'Art Direction'),(14139,1308388,5,'Editor'),(14139,1320427,7,'Set Decoration'),(14139,1320428,7,'Set Decoration'),(14139,1320429,6,'Original Music Composer'),(14139,1353018,3,'Associate Producer'),(14139,1383082,3,'Associate Producer'),(14139,1391916,3,'Producer'),(14139,1391916,3,'Executive Producer'),(14139,1417461,3,'Producer'),(14139,1417461,3,'Executive Producer'),(14139,1417462,3,'Co-Producer'),(14139,1417463,3,'Associate Producer'),(14139,1417470,3,'Associate Producer'),(14139,1417471,3,'Co-Producer'),(14139,1417472,3,'Co-Producer'),(33106,17295,2,'Director'),(33106,17295,4,'Writer'),(33106,17299,1,'Director of Photography'),(33106,131079,4,'Writer'),(33106,134792,4,'Writer'),(33106,237195,4,'Writer'),(10676,1060,1,'Director of Photography'),(10676,2161,3,'Producer'),(10676,13667,3,'Executive Producer'),(10676,11770,3,'Producer'),(10676,11770,6,'Original Music Composer'),(10676,11777,2,'Director'),(10676,11777,4,'Writer'),(10676,15445,6,'Original Music Composer'),(10676,64059,3,'Executive Producer'),(10676,66202,4,'Writer'),(10676,66204,5,'Editor'),(10676,101427,9,'Makeup Effects'),(24748,1807,4,'Novel'),(24748,7182,6,'Original Music Composer'),(24748,14569,1,'Director of Photography'),(24748,16751,5,'Editor'),(24748,18854,2,'Director'),(24748,18854,3,'Producer'),(24748,46620,4,'Writer'),(24748,46620,3,'Producer'),(24748,46621,4,'Writer'),(25636,1808,5,'Editor'),(25636,5360,1,'Director of Photography'),(25636,15426,3,'Casting'),(25636,32605,7,'Art Direction'),(25636,17635,3,'Casting'),(25636,25058,5,'Editor'),(25636,34110,4,'Screenplay'),(25636,157879,2,'Director'),(25636,957598,7,'Production Design'),(25636,1023713,8,'Costume Design'),(25636,1583644,4,'Screenplay'),(25636,1583645,4,'Screenplay'),(25636,1872836,7,'Set Decoration'),(19316,2888,3,'Producer'),(19316,4438,9,'Stunt Coordinator'),(19316,4898,3,'Executive Producer'),(19316,4899,3,'Executive Producer'),(19316,41680,8,'Costume Design'),(19316,39983,5,'Editor'),(19316,46080,3,'Producer'),(19316,52989,3,'Executive Producer'),(19316,59727,1,'Director of Photography'),(19316,84461,2,'Director'),(19316,84461,4,'Writer'),(19316,929960,7,'Production Design'),(19316,932147,5,'Editor'),(19316,1181479,6,'Original Music Composer'),(19316,1337464,6,'Sound Re-Recording Mixer'),(19316,1428838,1,'Camera Operator'),(19316,1445479,5,'Dialogue Editor'),(19316,1523051,7,'Set Decoration'),(19316,1526823,6,'Music Supervisor'),(19316,1532855,2,'Script Supervisor'),(19316,1534692,1,'Still Photographer'),(19316,1556648,3,'Producer'),(19316,1556649,6,'Production Sound Mixer'),(19316,1556651,1,'Steadicam Operator'),(21074,65035,4,'Screenplay'),(21074,93288,2,'Director'),(21074,93289,4,'Screenplay'),(13007,6767,2,'Director'),(13007,74086,4,'Screenplay'),(13518,74600,2,'Director'),(13518,74601,4,'Author'),(17334,22059,3,'Casting'),(17334,42304,6,'Music'),(17334,56715,4,'Writer'),(17334,59727,1,'Director of Photography'),(17334,61847,5,'Editor'),(17334,61848,2,'Director'),(17334,231576,8,'Makeup Department Head'),(17334,231576,8,'Hairstylist'),(17334,1364353,3,'Casting'),(17334,1708697,7,'Production Design'),(17334,1708698,7,'Art Direction'),(17334,1708699,7,'Set Decoration'),(17334,1708700,7,'Set Decoration'),(17334,1708701,7,'Set Decoration'),(17334,1708702,8,'Costume Design'),(17334,1708703,8,'Hairstylist'),(17334,1708704,8,'Makeup Artist'),(17334,1708705,8,'Makeup Artist'),(20764,5271,1,'Director of Photography'),(20764,91252,2,'Director'),(20764,91252,4,'Screenplay'),(20764,91252,4,'Story'),(20764,1053508,4,'Screenplay'),(13569,21415,2,'Director'),(13569,56452,4,'Screenplay'),(13569,74680,4,'Novel'),(11798,465,3,'Executive Producer'),(11798,3081,3,'Casting'),(11798,53896,3,'Executive Producer'),(11798,31437,5,'Editor'),(11798,56021,1,'Director of Photography'),(11798,55418,3,'Executive Producer'),(11798,62955,3,'Executive Producer'),(11798,70520,4,'Screenplay'),(11798,70520,2,'Director'),(11798,70522,3,'Executive Producer'),(11798,70523,3,'Executive Producer'),(11798,70524,3,'Producer'),(11798,70525,3,'Executive Producer'),(11798,70526,6,'Original Music Composer'),(17820,9055,3,'Producer'),(17820,9080,1,'Director of Photography'),(17820,18739,4,'Novel'),(17820,21506,2,'Director'),(17820,29618,4,'Screenplay'),(17820,98751,4,'Theatre Play'),(17820,975566,4,'Theatre Play'),(19933,6889,3,'Producer'),(19933,16390,5,'Editor'),(19933,3393,6,'Original Music Composer'),(19933,7911,4,'Screenplay'),(19933,7911,4,'Screenstory'),(19933,12227,3,'Executive Producer'),(19933,12229,3,'Producer'),(19933,64129,3,'Executive Producer'),(19933,108217,4,'Screenplay'),(19933,108217,2,'Director'),(19933,108217,4,'Screenstory'),(19933,117122,4,'Novel'),(19933,1346146,3,'Associate Producer'),(19933,1498602,3,'Co-Producer'),(19933,1498603,7,'Art Direction'),(19933,1498603,4,'Screenstory'),(14156,449832,2,'Director'),(14156,953173,4,'Writer'),(31163,107725,2,'Director'),(31163,107726,4,'Writer'),(16205,61498,6,'Music'),(16205,80006,4,'Screenplay'),(16205,80006,2,'Director'),(16205,80009,4,'Screenplay'),(16205,80012,3,'Producer'),(16205,80013,3,'Producer'),(16205,80014,3,'Producer'),(16205,80015,9,'Cinematography'),(16205,1035176,3,'Casting'),(16205,1086109,8,'Costume Design'),(16205,1319522,3,'Casting'),(16205,1417937,2,'Script Supervisor'),(16205,1419843,5,'Editor'),(16205,1468915,7,'Set Decoration'),(16205,1516101,3,'Casting'),(16205,1516102,7,'Production Design'),(28165,59953,1,'Director of Photography'),(28165,65326,5,'Editor'),(28165,78021,2,'Director'),(28165,78021,4,'Screenplay'),(28165,78021,4,'Story'),(28165,78021,3,'Producer'),(28165,78023,2,'Director'),(28165,78023,3,'Producer'),(28165,99251,9,'Additional Writing'),(28165,99919,9,'Additional Writing'),(28165,1172673,9,'Additional Writing'),(28165,1172673,3,'Casting'),(28165,1296990,6,'Original Music Composer'),(28165,1387710,4,'Screenplay'),(28165,1387711,9,'Additional Writing'),(28165,1387712,9,'Additional Writing'),(11561,1243,4,'Screenplay'),(11561,1243,2,'Director'),(11561,1243,6,'Original Music Composer'),(11561,6848,5,'Editor'),(11561,6993,3,'Executive Producer'),(11561,6994,3,'Executive Producer'),(11561,10439,4,'Screenplay'),(11561,16593,5,'Editor'),(11561,19129,1,'Director of Photography'),(11561,68939,3,'Producer'),(11561,68942,5,'Editor'),(11624,1243,2,'Director'),(11624,1243,4,'Screenplay'),(11624,6993,3,'Producer'),(11624,6994,3,'Producer'),(11624,19129,1,'Director of Photography'),(11624,40240,6,'Music'),(11624,50522,5,'Editor'),(11624,57308,3,'Executive Producer'),(11624,70063,4,'Novel'),(12207,26724,3,'Producer'),(12207,26775,2,'Director'),(12207,46318,4,'Screenplay'),(12207,46318,3,'Producer'),(12207,46326,5,'Editor'),(12207,56832,1,'Director of Photography'),(12207,57842,1,'Director of Photography'),(12207,65993,6,'Original Music Composer'),(12207,71651,4,'Screenplay'),(12207,71652,4,'Screenplay'),(20862,3189,5,'Editor'),(20862,42304,6,'Music'),(20862,1201090,4,'Writer'),(20862,1232592,2,'Director'),(11023,18686,3,'Executive Producer'),(11023,2236,3,'Executive Producer'),(11023,2238,3,'Executive Producer'),(11023,5506,1,'Director of Photography'),(11023,5666,6,'Original Music Composer'),(11023,6745,6,'Music Editor'),(11023,9151,3,'Executive Producer'),(11023,9408,6,'Sound Designer'),(11023,9408,6,'Supervising Sound Editor'),(11023,27679,3,'Producer'),(11023,19850,4,'Screenplay'),(11023,19850,2,'Director'),(11023,47294,8,'Costume Design'),(11023,67846,5,'Editor'),(11023,59252,4,'Screenplay'),(11023,59253,6,'Original Music Composer'),(11023,62586,7,'Set Decoration'),(11023,65613,3,'Producer'),(11023,961106,3,'Casting'),(11023,1324261,7,'Art Direction'),(11023,1329383,7,'Production Design'),(11023,1391446,3,'Casting'),(11023,1394729,2,'Script Supervisor'),(11023,1407739,1,'Still Photographer'),(11023,1564746,6,'Music Supervisor'),(11023,1564747,6,'Music Supervisor'),(33667,2746,2,'Director'),(33667,3358,7,'Art Direction'),(33667,8502,3,'Producer'),(33667,8503,6,'Original Music Composer'),(33667,8507,7,'Art Direction'),(33667,8508,7,'Set Decoration'),(33667,14648,1,'Director of Photography'),(33667,26175,8,'Makeup Artist'),(33667,30523,4,'Screenplay'),(33667,1298317,4,'Novel'),(33667,1335586,7,'Set Decoration'),(33667,1352668,8,'Costume Design'),(11194,1302,3,'Casting'),(11194,17350,2,'Director'),(11194,22047,6,'Original Music Composer'),(11194,35010,5,'Editor'),(11194,34951,1,'Director of Photography'),(11194,55418,3,'Executive Producer'),(11194,68538,4,'Author'),(11194,68540,3,'Executive Producer'),(11194,68541,3,'Executive Producer'),(11194,68542,3,'Producer'),(11194,68543,1,'Director of Photography'),(11194,1187168,7,'Production Design'),(15186,495,3,'Casting'),(15186,494,3,'Casting Associate'),(15186,1782,5,'Editor'),(15186,1884,2,'Director'),(15186,1884,1,'Director of Photography'),(15186,15435,10,'Visual Effects'),(15186,113045,6,'Foley'),(15186,113090,6,'Foley'),(15186,61484,5,'First Assistant Editor'),(15186,65272,3,'Producer'),(15186,119665,3,'Producer'),(15186,141413,6,'Music'),(15186,150180,4,'Writer'),(15186,967719,8,'Costume Supervisor'),(15186,1392247,1,'Still Photographer'),(15186,1401995,11,'Gaffer'),(15186,1403479,1,'Camera Operator'),(15186,1403479,9,'Second Unit Cinematographer'),(15186,1416438,2,'Script Supervisor'),(15186,1549255,11,'Rigging Gaffer'),(15186,1549256,9,'Property Master'),(17994,82579,2,'Director'),(17994,82579,4,'Screenplay'),(12901,74058,2,'Director'),(12901,74058,4,'Writer'),(14284,86662,2,'Director'),(12228,339,3,'Producer'),(12228,5284,3,'Executive Producer'),(12228,6159,3,'Producer'),(12228,16957,2,'Director'),(12228,16957,4,'Screenplay'),(12228,16957,3,'Producer'),(12228,16958,2,'Director'),(12228,16958,4,'Screenplay'),(12228,16958,3,'Producer'),(12228,32602,5,'Editor'),(12228,32603,1,'Director of Photography'),(12228,71767,6,'Original Music Composer'),(12228,71768,1,'Director of Photography'),(12228,71769,5,'Editor'),(22617,89467,2,'Director'),(22617,89468,4,'Writer'),(22617,89469,4,'Writer'),(10656,59,2,'Director'),(10656,59,3,'Producer'),(10656,59,4,'Author'),(10656,996,6,'Original Music Composer'),(10656,2160,1,'Director of Photography'),(10656,2800,4,'Author'),(10656,66078,3,'Producer'),(24363,2952,3,'Casting'),(24363,1044,1,'Director of Photography'),(24363,2184,3,'Producer'),(24363,3305,3,'Producer'),(24363,4232,3,'Producer'),(24363,10419,5,'Editor'),(24363,13228,7,'Production Design'),(24363,12640,2,'Director'),(24363,12640,4,'Writer'),(24363,17767,6,'Original Music Composer'),(24363,18127,2,'Script Supervisor'),(24363,20826,8,'Costume Design'),(24363,31519,3,'Executive Producer'),(24363,35179,3,'Executive Producer'),(24363,35179,3,'Line Producer'),(24363,41588,3,'Executive Producer'),(24363,1374609,7,'Set Decoration'),(24363,1470173,7,'Art Direction'),(24363,1470174,9,'Choreographer'),(24363,1624607,3,'Co-Producer'),(24363,1624608,3,'Co-Producer'),(13121,3192,3,'Casting'),(13121,5328,3,'Casting'),(13121,6192,8,'Costume Design'),(13121,19689,3,'Casting'),(13121,57055,2,'Director'),(13121,57055,4,'Writer'),(13121,57055,3,'Producer'),(13121,106078,6,'Original Music Composer'),(13121,122032,3,'Producer'),(13121,957282,3,'Casting'),(13121,1099440,1,'Director of Photography'),(13121,1173410,5,'Editor'),(13121,1398903,7,'Production Design'),(24746,21409,1,'Director of Photography'),(24746,62511,3,'Executive Producer'),(24746,62513,3,'Producer'),(24746,103999,4,'Writer'),(24746,103999,3,'Producer'),(24746,116653,2,'Director'),(24746,116653,4,'Writer'),(24746,116653,3,'Producer'),(24746,116655,5,'Editor'),(12109,41535,5,'Editor'),(12109,41532,3,'Producer'),(12109,41538,3,'Executive Producer'),(12109,60322,3,'Producer'),(12109,71280,2,'Director'),(12109,71284,6,'Original Music Composer'),(12109,71285,1,'Director of Photography'),(12109,71286,3,'Executive Producer'),(12109,71287,3,'Executive Producer'),(12109,1447493,9,'Other'),(27023,223909,2,'Director'),(22913,17791,9,'Cinematography'),(22913,34002,6,'Original Music Composer'),(22913,28497,5,'Editor'),(22913,66129,3,'Executive Producer'),(22913,70520,2,'Director'),(22913,70520,4,'Writer'),(22913,81773,4,'Writer'),(22913,958007,3,'Casting'),(22913,1066819,3,'Line Producer'),(22913,1066820,3,'Producer'),(28260,27992,2,'Director'),(28260,27992,3,'Producer'),(28260,21394,1,'Director of Photography'),(28260,56989,5,'Editor'),(28260,69900,6,'Original Music Composer'),(28260,97724,9,'Makeup Effects'),(28260,94664,3,'Producer'),(28260,89250,4,'Writer'),(28260,89250,3,'Producer'),(13075,4857,3,'Producer'),(13075,4912,8,'Makeup Department Head'),(13075,6390,5,'Editor'),(13075,7440,7,'Set Decoration'),(13075,17993,6,'Sound mixer'),(13075,41680,8,'Costume Design'),(13075,40107,2,'Script Supervisor'),(13075,40142,6,'Sound Re-Recording Mixer'),(13075,68219,1,'Director of Photography'),(13075,96222,2,'Director'),(13075,96222,4,'Writer'),(13075,79429,3,'Production Supervisor'),(13075,119179,3,'Casting'),(13075,155535,9,'Stunt Coordinator'),(13075,234847,3,'Producer'),(13075,428915,3,'Executive Producer'),(13075,1015921,3,'Co-Producer'),(13075,1023984,6,'Sound Effects Editor'),(13075,1030591,7,'Production Design'),(13075,1059168,1,'Additional Camera'),(13075,1173410,5,'Editor'),(13075,1375099,6,'Sound Re-Recording Mixer'),(13075,1415887,1,'Additional Camera'),(13075,1417861,8,'Key Hair Stylist'),(13075,1428839,1,'Still Photographer'),(13075,1509365,6,'Boom Operator'),(13075,1561620,6,'Original Music Composer'),(13075,1561632,1,'Camera Operator'),(13510,558,6,'Original Music Composer'),(13510,1114,5,'Editor'),(13510,40816,6,'Supervising Sound Editor'),(13510,40819,6,'Sound Re-Recording Mixer'),(13510,57583,3,'Producer'),(13510,63306,2,'Director'),(13510,63306,4,'Writer'),(13510,64047,3,'Producer'),(13510,75116,1,'Still Photographer'),(13510,117218,7,'Set Decoration'),(13510,962163,7,'Production Design'),(13510,979474,8,'Costume Design'),(13510,1147899,1,'Director of Photography'),(13510,1181409,3,'Casting'),(13510,1262011,3,'Executive Producer'),(13510,1393300,6,'Foley'),(13510,1394004,6,'Sound Re-Recording Mixer'),(13510,1395761,10,'Visual Effects Producer'),(13510,1398918,6,'Foley'),(13510,1405798,1,'Additional Photography'),(13510,1406189,6,'ADR & Dubbing'),(13510,1413942,1,'Camera Operator'),(13510,1413945,11,'Gaffer'),(13510,1414104,3,'Location Manager'),(13510,1415042,1,'Steadicam Operator'),(13510,1419221,1,'Helicopter Camera'),(13510,1421263,3,'Production Manager'),(13510,1422816,1,'Steadicam Operator'),(13510,1422861,9,'Picture Car Coordinator'),(13510,1422862,3,'Location Manager'),(13510,1425533,7,'Assistant Art Director'),(13510,1428551,2,'Script Supervisor'),(13510,1428552,8,'Makeup Artist'),(13510,1428554,8,'Makeup Artist'),(13510,1428555,9,'Property Master'),(13510,1428556,9,'Stunt Coordinator'),(18238,2073,3,'Casting'),(18238,51064,6,'Original Music Composer'),(18238,63127,3,'Producer'),(18238,70817,3,'Executive Producer'),(18238,75572,3,'Executive Producer'),(18238,76971,1,'Director of Photography'),(18238,82822,2,'Director'),(18238,82823,4,'Author'),(18238,82824,4,'Author'),(18238,1014915,3,'Casting'),(22600,88968,3,'Executive Producer'),(22600,88970,2,'Director'),(12612,43145,3,'Executive Producer'),(12612,51064,6,'Original Music Composer'),(12612,73112,4,'Screenplay'),(12612,73112,2,'Director'),(12612,73114,3,'Producer'),(12612,73115,3,'Executive Producer'),(12612,73116,1,'Director of Photography'),(12612,73117,5,'Editor'),(34335,112289,2,'Director'),(34335,112290,4,'Writer'),(11302,1243,4,'Screenplay'),(11302,1243,2,'Director'),(11302,6848,5,'Editor'),(11302,6993,3,'Executive Producer'),(11302,6994,3,'Executive Producer'),(11302,10468,6,'Original Music Composer'),(11302,68936,4,'Screenplay'),(11302,68937,3,'Producer'),(11302,68938,3,'Producer'),(11302,68939,3,'Producer'),(11302,68940,3,'Producer'),(11302,68941,1,'Director of Photography'),(11302,68942,5,'Editor'),(20406,86037,2,'Director'),(20406,86038,2,'Director'),(18616,30870,4,'Screenplay'),(18616,30870,2,'Director'),(18616,30870,3,'Producer'),(18616,87158,3,'Producer'),(18616,137198,3,'Casting'),(18616,1176359,8,'Costume Design'),(18616,1191211,9,'Cinematography'),(18616,1556999,5,'Editor'),(18808,3228,4,'Screenplay'),(18808,40508,2,'Director'),(12602,12741,5,'Editor'),(12602,18983,6,'Original Music Composer'),(12602,19517,1,'Director of Photography'),(12602,32121,4,'Screenplay'),(12602,33542,2,'Director'),(12602,48415,4,'Novel'),(12602,51892,3,'Executive Producer'),(12602,73067,3,'Production Manager'),(12602,73068,1,'Director of Photography'),(17768,2287,6,'Sound Editor'),(17768,6608,9,'Special Effects'),(17768,10586,2,'Director'),(17768,14132,1,'Director of Photography'),(17768,18267,4,'Writer'),(17768,18755,7,'Production Design'),(17768,21516,1,'Camera Operator'),(17768,22154,6,'Music Editor'),(17768,29538,5,'Editor'),(17768,43793,4,'Screenplay'),(17768,50567,4,'Screenplay'),(17768,50567,3,'Producer'),(17768,57892,6,'Music'),(17768,52154,6,'Music'),(17768,84333,4,'Writer'),(17768,959727,9,'Sound Recordist'),(17768,1210144,8,'Makeup Artist'),(17768,1458569,4,'Theatre Play'),(17768,1469046,8,'Hairstylist'),(17768,1581907,8,'Assistant Costume Designer'),(17768,1590917,6,'Sound Editor'),(17768,1649548,2,'Script Supervisor'),(17768,1650834,8,'Hairstylist'),(17768,1650836,8,'Makeup Artist'),(13516,17087,3,'Producer'),(13516,17087,2,'Director'),(13516,17087,4,'Writer'),(13516,74591,3,'Producer'),(13516,1209209,5,'Editor'),(21309,15858,2,'Director'),(21309,87386,4,'Writer'),(32235,22119,1,'Director of Photography'),(32235,41886,4,'Screenplay'),(32235,41887,2,'Director'),(32235,41887,4,'Screenplay'),(26388,19817,6,'Sound Designer'),(26388,52259,3,'Producer'),(26388,95320,2,'Director'),(26388,95320,5,'Editor'),(26388,95320,3,'Executive Producer'),(26388,95321,4,'Writer'),(26388,582924,1,'Director of Photography'),(26388,968703,3,'Executive Producer'),(26388,1030588,3,'Producer'),(26388,1054301,3,'Producer'),(26388,1120585,3,'Producer'),(26388,1120586,3,'Producer'),(26388,1120586,6,'Original Music Composer'),(26388,1120587,3,'Producer'),(26388,1120588,3,'Line Producer'),(12838,1642,2,'Director'),(12838,1642,1,'Director of Photography'),(12838,49874,8,'Makeup Artist'),(12838,66022,2,'Director'),(12838,66022,4,'Writer'),(12838,66026,8,'Costume Design'),(12838,66030,6,'Original Music Composer'),(12838,560045,5,'Editor'),(12838,1303834,1,'Director of Photography'),(12838,1303835,3,'Casting'),(12838,1303836,7,'Production Design'),(12838,1303837,8,'Costume Design'),(14048,10759,6,'Music'),(14048,65070,1,'Director of Photography'),(14048,76998,2,'Director'),(14048,81425,4,'Writer'),(14048,84378,3,'Executive Producer'),(14048,222354,3,'Co-Producer'),(14048,1001393,5,'Editor'),(14048,1095423,3,'Executive Producer'),(14048,1181321,3,'Producer'),(14048,1300940,3,'Co-Producer'),(14048,1341534,6,'Music'),(14048,1450435,3,'Executive Producer'),(33511,3285,1,'Director of Photography'),(33511,21656,5,'Editor'),(33511,16363,3,'Casting'),(33511,18846,3,'Producer'),(33511,22156,7,'Art Direction'),(33511,29228,3,'Producer'),(33511,45053,4,'Screenplay'),(33511,45058,8,'Costume Design'),(33511,50952,7,'Production Design'),(33511,53020,7,'Set Decoration'),(33511,118167,3,'Executive Producer'),(33511,118168,3,'Executive Producer'),(33511,411719,6,'Original Music Composer'),(33511,539946,6,'Original Music Composer'),(33511,1137903,2,'Director'),(10894,49281,5,'Editor'),(10894,51534,2,'Director'),(10894,51534,4,'Author'),(10894,51534,4,'Screenplay'),(10894,51543,6,'Original Music Composer'),(10894,67367,5,'Editor'),(10894,59667,1,'Director of Photography'),(10894,67361,3,'Producer'),(10894,67362,3,'Executive Producer'),(10894,67364,3,'Producer'),(10894,67365,3,'Executive Producer'),(10894,67366,5,'Editor'),(32579,27181,6,'Original Music Composer'),(32579,59929,1,'Director of Photography'),(32579,92511,4,'Writer'),(32579,437833,2,'Director'),(32579,1356138,5,'Editor'),(24066,58741,4,'Screenplay'),(24066,124688,4,'Screenplay'),(24066,942084,4,'Screenplay'),(24066,942084,2,'Director'),(25312,36591,8,'Costume Design'),(25312,57206,2,'Director'),(25312,57206,4,'Writer'),(34106,2662,2,'Director'),(34106,2662,3,'Producer'),(34106,4082,6,'Music'),(34106,17761,9,'Cinematography'),(34106,19019,4,'Scenario Writer'),(34106,19019,4,'Screenplay'),(34106,29345,7,'Art Direction'),(34106,30154,5,'Editor'),(34106,30523,4,'Theatre Play'),(34106,31969,7,'Art Department Coordinator'),(34106,34227,6,'Music'),(34106,34228,6,'Orchestrator'),(34106,34402,6,'Sound Editor'),(34106,40600,1,'Still Photographer'),(34106,144060,4,'Theatre Play'),(34106,958731,8,'Costume Design'),(34106,1012329,8,'Costume Design'),(34106,1183417,4,'Dialogue'),(34106,1348081,2,'Assistant Director'),(34106,1549753,6,'Orchestrator'),(34106,1635246,9,'Sound Recordist'),(11426,4065,2,'Director'),(11426,4083,1,'Director of Photography'),(11426,6452,1,'Director of Photography'),(11426,12145,8,'Costume Design'),(11426,13864,7,'Art Direction'),(11426,16748,6,'Original Music Composer'),(11426,20600,4,'Screenplay'),(11426,31067,7,'Set Decoration'),(11426,31206,8,'Makeup Artist'),(11426,31207,8,'Hairstylist'),(11426,34227,6,'Music Director'),(11426,55868,4,'Screenplay'),(11426,55868,4,'Novel'),(11426,55868,6,'Songs'),(11426,64118,5,'Editor'),(11426,91245,6,'Orchestrator'),(11426,55456,2,'Assistant Director'),(11426,116849,3,'Producer'),(11426,1002552,6,'Songs'),(11426,1099274,6,'Sound Engineer'),(11426,1244630,6,'Songs'),(11426,1859184,3,'Other'),(13909,8500,2,'Director'),(13909,29966,4,'Screenplay'),(13909,30491,4,'Screenplay'),(13909,70037,4,'Story'),(27455,54827,2,'Director'),(27455,65164,4,'Writer'),(15976,160,2,'Director'),(15976,160,4,'Writer'),(15976,162,4,'Writer'),(25428,6163,2,'Director'),(25428,6163,4,'Writer'),(25428,58988,4,'Writer'),(10758,42571,7,'Set Decoration'),(10758,53899,3,'Casting'),(10758,17045,3,'Executive Producer'),(10758,37004,1,'Director of Photography'),(10758,39982,5,'Editor'),(10758,66486,3,'Executive Producer'),(10758,66488,3,'Executive Producer'),(10758,66496,2,'Director'),(10758,66496,4,'Author'),(10758,66489,6,'Original Music Composer'),(10758,66485,3,'Executive Producer'),(10758,66490,3,'Line Producer'),(10758,66491,7,'Production Design'),(10758,66492,3,'Producer'),(10758,66495,7,'Art Direction'),(10758,66493,3,'Casting'),(10758,66494,8,'Costume Design'),(11690,16590,4,'Screenplay'),(11690,33008,3,'Producer'),(11690,33009,3,'Producer'),(11690,21821,5,'Editor'),(11690,22012,1,'Director of Photography'),(11690,56985,4,'Original Story'),(11690,56985,9,'Martial Arts Choreographer'),(11690,64681,3,'Producer'),(11690,64683,6,'Music'),(11690,70250,2,'Director'),(11690,70251,4,'Screenplay'),(11690,70252,4,'Screenplay'),(10707,1784,7,'Production Design'),(10707,4908,7,'Art Direction'),(10707,5655,3,'Producer'),(10707,5656,2,'Director'),(10707,5656,4,'Screenplay'),(10707,5667,1,'Director of Photography'),(10707,5669,3,'Casting'),(10707,52161,6,'Music Supervisor'),(10707,46399,3,'Producer'),(10707,53070,3,'Producer'),(10707,53076,3,'Producer'),(10707,66259,6,'Original Music Composer'),(10707,66260,6,'Original Music Composer'),(10707,66261,5,'Editor'),(10707,66262,3,'Executive Producer'),(10707,66263,3,'Executive Producer'),(10707,66264,3,'Executive Producer'),(10707,66265,3,'Co-Producer'),(10707,92380,6,'Supervising Sound Editor'),(10707,92380,6,'Sound Re-Recording Mixer'),(10707,92388,6,'Foley'),(10707,1017377,3,'Casting Associate'),(10707,1020060,7,'Set Decoration'),(10707,1039265,6,'Foley'),(10707,1077370,11,'Gaffer'),(10707,1190648,8,'Costume Design'),(10707,1225842,3,'Production Coordinator'),(10707,1303391,8,'Makeup Artist'),(10707,1319398,3,'Executive Producer'),(10707,1321356,8,'Assistant Costume Designer'),(10707,1332423,1,'Still Photographer'),(10707,1472449,2,'Script Supervisor'),(10707,1525243,8,'Set Costumer'),(10707,1525544,8,'Hair Department Head'),(10707,1538420,8,'Costume Supervisor'),(10707,1538421,5,'Assistant Editor'),(10707,1538423,1,'Camera Operator'),(10707,1538424,6,'Sound Effects Editor'),(10707,1538425,5,'Dialogue Editor'),(10707,1716665,1,'First Assistant Camera'),(15647,5387,1,'Director of Photography'),(15647,22219,3,'Casting'),(15647,55177,6,'Original Music Composer'),(15647,60104,3,'Producer'),(15647,76247,2,'Director'),(15647,69093,5,'Editor'),(15647,89500,4,'Writer'),(15647,89500,3,'Co-Producer'),(15647,119368,4,'Writer'),(15647,119368,3,'Co-Producer'),(15647,227225,8,'Costume Design'),(15647,568294,3,'Line Producer'),(15647,958511,7,'Production Design'),(15647,1302740,7,'Art Direction'),(15647,1468129,5,'Editor'),(15647,1468130,3,'Producer'),(15647,1468134,3,'Associate Producer'),(15647,1468135,3,'Associate Producer'),(15647,1468136,3,'Associate Producer'),(15647,1468144,2,'Script Supervisor'),(15647,1468156,1,'Still Photographer'),(20156,56205,2,'Director'),(20156,56205,4,'Writer'),(13820,1632,1,'Director of Photography'),(13820,31493,2,'Director'),(13820,31493,4,'Writer'),(13820,53763,6,'Original Music Composer'),(13820,66810,5,'Editor'),(13820,82776,3,'Executive Producer'),(13820,151663,9,'Stunt Coordinator'),(13820,196769,3,'Producer'),(13820,1017996,3,'Producer'),(13820,1017997,7,'Set Decoration'),(13820,1017998,6,'Original Music Composer'),(13820,1017999,7,'Art Direction'),(13820,1018000,7,'Art Direction'),(13820,1378209,2,'Script Supervisor'),(13820,1395290,2,'Script Supervisor'),(13820,1476557,8,'Costume Design'),(13820,1530166,6,'Music Supervisor'),(18079,74907,4,'Screenplay'),(18079,74907,2,'Director'),(18079,938780,3,'Producer'),(18079,989512,2,'Assistant Director'),(18079,995378,5,'Editor'),(18079,1143299,3,'Casting'),(18079,1177262,2,'Other'),(18079,1271308,3,'Production Manager'),(18079,1392556,1,'Director of Photography'),(18079,1580956,1,'Steadicam Operator'),(18079,1583717,8,'Makeup Artist'),(18079,1584153,9,'Stunt Coordinator'),(18079,1584153,9,'Special Effects Coordinator'),(18079,1584168,6,'Sound Mixer'),(18079,1584169,6,'Boom Operator'),(18079,1589098,6,'Sound Mixer'),(17113,41670,2,'Director'),(17113,41670,4,'Author'),(14054,64141,2,'Director'),(14054,64141,4,'Screenplay'),(14054,1192783,4,'Novel'),(10972,3727,3,'Executive Producer'),(10972,7494,3,'Casting'),(10972,7495,3,'Casting'),(10972,9410,6,'Sound Re-Recording Mixer'),(10972,9417,6,'Sound Effects Editor'),(10972,37948,2,'Director'),(10972,37948,4,'Screenplay'),(10972,37948,5,'Editor'),(10972,45119,3,'Producer'),(10972,46395,4,'Screenplay'),(10972,51853,1,'Director of Photography'),(10972,67682,3,'Producer'),(10972,67683,3,'Producer'),(10972,67684,6,'Original Music Composer'),(10972,1318465,8,'Costume Design'),(10972,1318466,7,'Production Design'),(10972,1318467,7,'Art Direction'),(10972,1352966,5,'Dialogue Editor'),(10972,1367679,2,'Script Supervisor'),(10972,1400534,1,'Still Photographer'),(10972,1404364,5,'Dialogue Editor'),(10972,1528991,6,'Music Editor'),(10972,1534680,6,'Music Supervisor'),(10972,1534681,6,'Music Supervisor'),(10972,1534987,6,'Sound mixer'),(10972,1537185,6,'Sound Effects Editor'),(10972,1537498,6,'Supervising Sound Editor'),(10972,1555174,3,'Production Coordinator'),(10972,1555189,6,'Sound Re-Recording Mixer'),(10972,1555193,6,'Sound Effects Editor'),(10972,1555195,6,'Sound Effects Editor'),(13066,60074,2,'Director'),(13066,60074,4,'Writer'),(11908,56989,5,'Editor'),(11908,70890,2,'Director'),(11908,70890,4,'Screenplay'),(11908,70892,3,'Producer'),(11908,70893,3,'Producer'),(11908,70894,3,'Executive Producer'),(11908,70895,3,'Executive Producer'),(11908,70896,3,'Producer'),(11908,70897,6,'Original Music Composer'),(11908,70898,1,'Director of Photography'),(30082,2952,3,'Casting'),(30082,53708,2,'Director'),(30082,53708,3,'Producer'),(30082,53708,4,'Writer'),(30082,53711,3,'Producer'),(30082,53712,6,'Music'),(30082,53713,5,'Editor'),(30082,105669,4,'Writer'),(30082,1043954,3,'Producer'),(30082,1470186,3,'Producer'),(30082,1470187,3,'Producer'),(30082,1470188,1,'Director of Photography'),(23963,44138,3,'Executive Producer'),(23963,52339,6,'Original Music Composer'),(23963,55189,2,'Director'),(23963,90684,4,'Writer'),(23963,90685,3,'Producer'),(23963,90686,3,'Producer'),(23963,90687,3,'Executive Producer'),(23963,90688,3,'Executive Producer'),(23963,90689,3,'Executive Producer'),(23963,90690,1,'Director of Photography'),(23963,90691,5,'Editor'),(23963,90692,6,'Sound Designer'),(23963,90693,7,'Production Design'),(23963,100120,6,'Sound Re-Recording Mixer'),(23963,1086109,8,'Costume Design'),(29406,105313,2,'Director'),(29406,105313,4,'Writer'),(29406,1539172,11,'Lighting Technician'),(29595,21962,6,'Original Music Composer'),(29595,51521,2,'Director'),(29595,51521,3,'Producer'),(29595,104308,3,'Producer'),(29595,104309,3,'Producer'),(29595,555213,1,'Director of Photography'),(27845,884,2,'Director'),(27845,884,4,'Writer'),(27845,5271,9,'Cinematography'),(27845,6468,3,'Executive Producer'),(27845,6887,3,'Producer'),(27845,7494,3,'Casting'),(27845,7495,3,'Casting'),(27845,17231,3,'Producer'),(27845,53279,6,'Music'),(27845,63989,3,'Executive Producer'),(27845,63990,5,'Editor'),(27845,959962,8,'Costume Design'),(27845,1395359,7,'Production Design'),(27845,1401174,3,'Executive In Charge Of Production'),(27845,1523408,7,'Set Decoration'),(27845,1545473,7,'Art Direction'),(27845,1781737,3,'Unit Manager'),(25784,143430,2,'Director'),(25784,143430,4,'Writer'),(19187,557818,2,'Director'),(19187,557818,4,'Writer'),(27588,98293,4,'Writer'),(27588,971918,2,'Director'),(27588,971918,4,'Writer'),(28580,3146,4,'Screenplay'),(28580,3146,2,'Director'),(28580,3159,5,'Editorial Manager'),(28580,4350,8,'Costume Design'),(28580,7647,6,'Original Music Composer'),(28580,7689,8,'Makeup Artist'),(28580,8617,4,'Screenplay'),(28580,8617,3,'Producer'),(28580,8620,1,'Director of Photography'),(28580,8622,7,'Art Direction'),(28580,10521,10,'Visual Effects'),(28580,14973,7,'Set Decoration'),(28580,29275,6,'Orchestrator'),(28580,30257,6,'Orchestrator'),(28580,101485,4,'Novel'),(28580,120450,7,'Art Direction'),(28580,1027339,10,'Visual Effects'),(28580,1027349,9,'Sound Recordist'),(28580,1027356,9,'Sound Recordist'),(28580,1183417,2,'Assistant Director'),(28580,1306283,3,'Production Manager'),(28580,1531396,3,'Production Manager'),(28580,1531398,7,'Construction Coordinator'),(23730,897,3,'Casting'),(23730,959,6,'Original Music Composer'),(23730,11880,5,'Editor'),(23730,56264,1,'Director of Photography'),(23730,90525,2,'Director'),(23730,90526,4,'Story'),(23730,90527,4,'Screenplay'),(23730,1426222,7,'Production Design'),(23730,1534431,3,'Producer'),(23730,1534433,7,'Art Direction'),(23730,1534434,8,'Costume Design'),(23730,1534435,7,'Assistant Art Director'),(23730,1534436,7,'Construction Coordinator'),(23730,1534437,2,'Script Supervisor'),(23730,1534438,8,'Hairstylist'),(23730,1746084,3,'Executive Producer'),(23730,1746085,3,'Associate Producer'),(19997,3358,7,'Art Direction'),(19997,8511,6,'Sound'),(19997,8617,4,'Writer'),(19997,8617,3,'Producer'),(19997,8626,2,'Assistant Director'),(19997,9799,7,'Set Decoration'),(19997,10603,5,'Editor'),(19997,10605,6,'Sound'),(19997,11441,6,'Music Director'),(19997,12362,4,'Writer'),(19997,26172,8,'Costume Design'),(19997,26175,8,'Makeup Artist'),(19997,30922,6,'Original Music Composer'),(19997,29800,8,'Costume Design'),(19997,30288,1,'Director of Photography'),(19997,37360,2,'Director'),(19997,80601,4,'Writer'),(19997,108820,8,'Costume Supervisor'),(19997,114562,10,'Visual Effects'),(19997,132251,7,'Art Direction'),(19997,562715,9,'Stunts'),(19997,701959,6,'Orchestrator'),(19997,1299029,8,'Makeup Artist'),(19997,1454983,8,'Hairstylist'),(19997,1547896,8,'Makeup Artist'),(19997,1586783,5,'Assistant Editor'),(19997,1644830,2,'Script Supervisor'),(19997,1675778,5,'Color Timer'),(14295,1032,3,'Executive Producer'),(14295,2860,3,'Producer'),(14295,2867,7,'Production Design'),(14295,2890,3,'Producer'),(14295,4437,7,'Set Decoration'),(14295,5884,5,'Editor'),(14295,7170,3,'Producer'),(14295,7436,1,'Director of Photography'),(14295,36188,3,'Producer'),(14295,30711,2,'Director'),(14295,30711,4,'Writer'),(14295,33439,8,'Costume Design'),(14295,39827,6,'Original Music Composer'),(14295,47277,3,'Line Producer'),(14295,54241,8,'Assistant Costume Designer'),(14295,67702,3,'Casting'),(14295,943824,3,'Executive Producer'),(14295,947016,3,'Associate Producer'),(14295,996401,7,'Art Direction'),(14295,1330612,8,'Makeup Artist'),(14295,1516275,3,'Executive Producer'),(14295,1516277,3,'Executive Producer'),(14295,1516278,3,'Co-Producer'),(14295,1516279,3,'Co-Producer'),(14295,1538709,8,'Key Hair Stylist'),(11219,1045,6,'Original Music Composer'),(11219,2636,2,'Director'),(11219,2636,3,'Producer'),(11219,2653,3,'Associate Producer'),(11219,2654,1,'Director of Photography'),(11219,4350,8,'Costume Design'),(11219,5181,4,'Screenplay'),(11219,5188,7,'Art Direction'),(11219,7687,7,'Set Decoration'),(11219,7689,8,'Makeup Department Head'),(11219,8244,2,'Assistant Director'),(11219,9107,9,'Sound Recordist'),(11219,16753,7,'Art Direction'),(11219,17670,7,'Set Decoration'),(11219,68644,4,'Novel'),(11219,68645,5,'Editor'),(11219,100762,9,'Special Effects'),(11219,1500450,9,'Sound Recordist'),(20770,59466,2,'Director'),(16433,108497,2,'Director'),(15544,21586,3,'Producer'),(15544,62831,4,'Writer'),(15544,18953,3,'Producer'),(15544,62854,4,'Writer'),(15544,62861,4,'Writer'),(15544,62863,4,'Writer'),(15544,66514,2,'Director'),(15544,66514,4,'Writer'),(15544,66517,2,'Director'),(15544,107446,4,'Writer'),(15544,119152,4,'Writer'),(15544,155267,4,'Writer'),(15544,1229796,4,'Writer'),(15544,1300380,4,'Writer'),(15544,1552106,3,'Producer'),(13064,2487,3,'Producer'),(13064,2987,6,'Original Music Composer'),(13064,8747,3,'Producer'),(13064,8747,4,'Story'),(13064,12523,2,'Director'),(13064,13371,5,'Editor'),(13064,11002,7,'Production Design'),(13064,35594,8,'Costume Design'),(13064,56324,1,'Director of Photography'),(13064,77200,3,'Casting'),(13064,77202,3,'Casting'),(13064,227197,4,'Screenplay'),(13064,227197,4,'Story'),(13064,227198,7,'Set Decoration'),(12877,15880,6,'Sound Re-Recording Mixer'),(12877,14887,4,'Writer'),(12877,31437,5,'Editor'),(12877,56021,1,'Director of Photography'),(12877,70520,2,'Director'),(12877,70520,4,'Writer'),(12877,70524,3,'Producer'),(12877,73420,5,'Editor'),(12877,122990,6,'Original Music Composer'),(12877,122993,5,'Editor'),(12877,1094725,9,'Stunt Coordinator'),(12877,1276654,6,'Sound Effects Editor'),(12877,1282636,3,'Casting'),(12877,1367560,11,'Gaffer'),(12877,1394719,10,'Visual Effects Supervisor'),(12877,1405313,9,'Makeup Effects'),(12877,1415045,9,'Unit Publicist'),(12877,1419211,7,'Production Design'),(12877,1419212,7,'Assistant Art Director'),(12877,1419215,5,'Dialogue Editor'),(12877,1419216,9,'Sound Recordist'),(12877,1419218,6,'Sound Re-Recording Mixer'),(12877,1419219,9,'Visual Effects Editor'),(12877,1419220,1,'Additional Photography'),(12877,1419221,1,'Helicopter Camera'),(12877,1419222,1,'Still Photographer'),(12877,1419223,8,'Costume Supervisor'),(12877,1419224,3,'Location Manager'),(29697,93916,2,'Director'),(27374,97591,2,'Director'),(27374,97591,4,'Writer'),(26815,35771,3,'Producer'),(26815,35786,6,'Music'),(26815,71089,4,'Screenplay'),(26815,71089,4,'Writer'),(26815,71089,4,'Dialogue'),(26815,76447,2,'Director'),(26815,85708,6,'Music'),(11298,898,5,'Editor'),(11298,4600,2,'Director'),(11298,4600,5,'Editor'),(11298,16154,3,'Producer'),(11298,16156,1,'Director of Photography'),(11298,14138,6,'Original Music Composer'),(11298,64052,3,'Executive Producer'),(11298,65407,3,'Executive Producer'),(11298,68912,4,'Novel'),(11298,68913,4,'Screenplay'),(11298,68914,3,'Producer'),(11298,102445,4,'Screenplay'),(10092,12942,3,'Casting'),(10092,55075,2,'Director'),(10092,55075,4,'Author'),(10092,60102,6,'Original Music Composer'),(10092,63265,3,'Producer'),(10092,63263,4,'Author'),(10092,63263,3,'Producer'),(10092,63264,3,'Line Producer'),(10092,63266,3,'Producer'),(10092,63268,3,'Executive Producer'),(10092,63270,1,'Director of Photography'),(10092,63271,7,'Art Direction'),(10092,63273,8,'Costume Design'),(10092,63274,7,'Production Design'),(10092,71600,3,'Producer'),(10092,71600,5,'Editor'),(10643,50651,2,'Director'),(10643,50661,3,'Producer'),(10643,66156,4,'Screenplay'),(10643,66157,6,'Music'),(10643,66158,1,'Director of Photography'),(10643,66159,5,'Editor'),(18712,4357,4,'Screenplay'),(18712,26026,6,'Music'),(18712,34077,1,'Director of Photography'),(18712,50302,4,'Screenplay'),(18712,93905,2,'Director'),(18712,120518,5,'Editor'),(18570,95687,2,'Director'),(18570,95687,4,'Writer'),(18570,567267,4,'Writer'),(18570,1495597,4,'Writer'),(10183,63990,5,'Editor'),(10183,64131,4,'Screenplay'),(10183,64131,2,'Director'),(10183,67355,3,'Producer'),(10183,67356,1,'Director of Photography'),(10183,937954,6,'Original Music Composer'),(10183,1174729,3,'Producer'),(10183,1193617,7,'Production Design'),(10183,1193619,7,'Set Decoration'),(10183,1193621,9,'Property Master'),(10183,1193631,7,'Art Direction'),(10183,1193632,8,'Costume Design'),(10183,1193633,3,'Executive Producer'),(10183,1193634,3,'Executive Producer'),(10183,1193635,6,'Original Music Composer'),(10183,1193636,1,'Still Photographer'),(32456,7494,3,'Casting'),(32456,17231,3,'Producer'),(32456,56381,2,'Director'),(32456,56381,4,'Writer'),(13508,74589,2,'Director'),(13508,74589,4,'Writer'),(22597,1593,3,'Producer'),(22597,1593,3,'Casting'),(22597,48498,3,'Producer'),(22597,48498,6,'Music Editor'),(22597,88967,2,'Director'),(22597,88967,4,'Writer'),(22597,1348796,6,'Music'),(26791,114925,2,'Director'),(26791,114925,4,'Writer'),(13132,64141,2,'Director'),(13132,64141,4,'Writer'),(24424,91602,4,'Writer'),(24424,91602,2,'Director'),(24424,91603,4,'Writer'),(24424,91603,2,'Director'),(13198,55046,4,'Story'),(13198,55484,3,'Producer'),(13198,59668,3,'Casting'),(13198,66803,1,'Director of Photography'),(13198,74272,2,'Director'),(13198,74272,4,'Author'),(13198,502616,3,'Executive Producer'),(13198,963284,7,'Production Design'),(13198,1000559,6,'Original Music Composer'),(13198,1044042,3,'Line Producer'),(13198,1048595,3,'Producer'),(13198,1090303,8,'Costume Design'),(13198,1346110,3,'Producer'),(13198,1513800,5,'Editor'),(13198,1513801,7,'Set Decoration'),(13198,1513802,3,'Co-Producer'),(21413,880,3,'Executive Producer'),(21413,1892,3,'Executive Producer'),(21413,6627,3,'Producer'),(21413,11371,1,'Director of Photography'),(21413,88832,2,'Director'),(21413,150208,3,'Producer'),(21413,998842,2,'Director'),(21413,1420608,4,'Writer'),(13362,33678,1,'Director of Photography'),(13362,41533,6,'Original Music Composer'),(13362,60007,5,'Editor'),(13362,71797,2,'Director'),(13362,71797,4,'Writer'),(13362,240662,1,'Director of Photography'),(20296,126763,2,'Director'),(25983,27710,3,'Producer'),(25983,31268,3,'Producer'),(25983,62725,3,'Casting'),(25983,101542,4,'Screenplay'),(25983,101542,2,'Director'),(25983,101542,5,'Editor'),(25983,139145,7,'Production Design'),(25983,960477,3,'Producer'),(25983,966560,7,'Art Direction'),(25983,1015883,6,'Music'),(25983,1015884,3,'Co-Producer'),(25983,1015887,3,'Executive Producer'),(25983,1015889,3,'Executive Producer'),(25983,1015890,3,'Executive Producer'),(25983,1015891,3,'Producer'),(25983,1025921,9,'Cinematography'),(25983,1401939,3,'Executive Producer'),(16155,2952,3,'Casting'),(16155,10572,6,'Music'),(16155,9549,7,'Art Direction'),(16155,17871,2,'Director'),(16155,17871,4,'Writer'),(16155,23926,5,'Editor'),(16155,39922,3,'Producer'),(16155,42632,1,'Director of Photography'),(16155,50462,8,'Costume Design'),(16155,949132,3,'Producer'),(16155,1071857,7,'Set Decoration'),(16155,1280314,5,'Editor'),(16155,1465968,7,'Production Design'),(16155,1467574,3,'Producer'),(16155,1467576,3,'Producer'),(29015,15218,4,'Writer'),(29015,35796,2,'Director'),(18206,103031,2,'Director'),(18206,103031,4,'Writer'),(13856,75919,2,'Director'),(13856,75919,4,'Screenplay'),(13856,75920,2,'Director'),(13856,75920,4,'Screenplay'),(19344,84515,2,'Director'),(19344,84515,4,'Screenplay'),(19344,1184765,9,'Additional Writing'),(19344,1184766,9,'Additional Writing'),(18869,92834,2,'Director'),(18869,92835,4,'Writer'),(18869,92836,4,'Writer'),(18869,92837,2,'Director'),(26673,194915,2,'Director'),(26673,194915,4,'Writer'),(26673,194915,3,'Producer'),(26673,1031096,3,'Producer'),(26673,1031096,1,'Director of Photography'),(26673,1031098,3,'Casting'),(34592,115627,4,'Writer'),(34592,115627,2,'Director'),(34592,115628,4,'Writer'),(21283,87360,2,'Director'),(21283,87361,4,'Writer'),(21283,87362,4,'Writer'),(21283,1283767,5,'Editor'),(29146,6779,4,'Screenplay'),(29146,10640,5,'Editor'),(29146,13745,6,'Music'),(29146,16888,2,'Director'),(29146,16888,3,'Producer'),(29146,31501,1,'Director of Photography'),(29146,103040,4,'Novel'),(29146,136509,3,'Executive Producer'),(29731,76462,2,'Director'),(29731,104784,4,'Writer'),(14014,76247,2,'Director'),(14014,76248,4,'Screenplay'),(15708,69737,2,'Director'),(15708,69737,4,'Author'),(14823,80384,2,'Director'),(14823,80384,4,'Writer'),(14823,993624,7,'Production Design'),(14823,1035047,3,'Casting'),(14823,1035076,5,'Editor'),(14823,1147899,1,'Director of Photography'),(14823,1147907,7,'Art Direction'),(11446,52988,5,'Editor'),(11446,66605,2,'Director'),(11446,66605,4,'Screenplay'),(11446,66605,3,'Producer'),(11446,69485,3,'Executive Producer'),(11446,69486,6,'Original Music Composer'),(11446,69487,1,'Director of Photography'),(25461,4898,3,'Producer'),(25461,71548,2,'Director'),(25461,71548,4,'Writer'),(25212,21526,2,'Director'),(25212,21526,4,'Writer'),(25212,37038,6,'Music'),(25212,68390,3,'Producer'),(25212,66035,3,'Executive Producer'),(25212,93354,3,'Executive Producer'),(25212,149863,5,'Editor'),(25212,1185100,7,'Production Design'),(25212,1540340,9,'Cinematography'),(26899,42952,2,'Director'),(26899,42952,4,'Writer'),(14451,76919,4,'Screenplay'),(14451,76927,2,'Director'),(14451,76927,4,'Screenplay'),(14451,76929,9,'Makeup Effects'),(14451,76930,9,'Makeup Effects'),(14451,147694,9,'Stunt Coordinator'),(14451,473485,3,'Producer'),(14451,568558,2,'Script Supervisor'),(14451,569857,3,'Production Manager'),(14451,569859,5,'Editor'),(14451,980271,6,'Sound Re-Recording Mixer'),(14451,1354565,6,'Original Music Composer'),(14451,1354566,9,'Cinematography'),(14451,1354567,7,'Production Design'),(14451,1354568,3,'Producer'),(14451,1419275,7,'Set Decoration'),(14451,1419276,8,'Costume Design'),(14451,1419277,8,'Hairstylist'),(14451,1419278,8,'Makeup Artist'),(14451,1419279,9,'Makeup Effects'),(14451,1419281,9,'Makeup Effects'),(14451,1419282,9,'Makeup Effects'),(14451,1419283,9,'Makeup Effects'),(14451,1419284,6,'Foley'),(14451,1419285,6,'Supervising Sound Editor'),(14451,1419286,10,'Visual Effects Producer'),(14451,1419287,10,'Visual Effects Supervisor'),(14451,1419288,1,'Still Photographer'),(10105,63479,3,'Producer'),(10105,63478,4,'Author'),(10105,63477,2,'Director'),(10105,63477,1,'Director of Photography'),(10105,63477,3,'Producer'),(10105,63484,3,'Producer'),(10105,63481,3,'Producer'),(10105,63482,3,'Executive Producer'),(10105,63480,3,'Executive Producer'),(10105,63485,6,'Original Music Composer'),(10105,63489,3,'Producer'),(10105,63486,6,'Original Music Composer'),(10105,63487,3,'Casting'),(10105,63490,5,'Editor'),(10105,63491,7,'Production Design'),(10105,63495,3,'Producer'),(10105,63496,4,'Author'),(13158,74339,2,'Director'),(13158,74339,4,'Author'),(13158,74341,2,'Director'),(13158,74341,4,'Author'),(13158,1128341,3,'Executive Producer'),(13158,1215656,3,'Executive Producer'),(13158,1397793,7,'Background Designer'),(13158,1397793,7,'Art Direction'),(13158,1447343,4,'Storyboard'),(13158,1447382,10,'Animation'),(13158,1447427,7,'Background Designer'),(13158,1447499,7,'Background Designer'),(13158,1447545,9,'Compositors'),(13158,1453589,10,'Animation'),(13158,1457207,10,'Animation Director'),(13158,1457209,10,'Animation'),(13158,1457210,10,'Animation'),(13158,1457211,10,'Animation'),(13158,1457212,10,'Animation'),(13158,1457213,10,'Animation'),(13158,1457214,10,'Animation'),(13158,1457215,10,'Animation'),(13158,1457216,10,'Animation'),(13158,1457217,10,'Animation'),(13158,1457218,10,'Animation'),(13158,1457219,10,'Animation'),(13158,1457220,10,'Animation'),(13158,1459544,10,'Animation'),(13158,1459563,10,'Animation Production Assistant'),(13158,1462615,7,'Background Designer'),(13158,1469852,3,'Production Manager'),(13429,3081,3,'Casting'),(13429,53896,3,'Executive Producer'),(13429,33443,5,'Editor'),(13429,62955,3,'Executive Producer'),(13429,64206,6,'Original Music Composer'),(13429,68541,3,'Producer'),(13429,70522,3,'Executive Producer'),(13429,70523,3,'Executive Producer'),(13429,70524,3,'Producer'),(13429,74436,2,'Director'),(13429,74436,4,'Author'),(13429,74437,4,'Author'),(13429,127552,3,'Line Producer'),(13429,230693,8,'Costume Design'),(13429,1036353,1,'Director of Photography'),(13429,1127666,3,'Development Manager'),(13429,1276654,6,'Supervising Sound Editor'),(13429,1348753,3,'Development Manager'),(13429,1348754,7,'Production Design'),(22530,113682,2,'Director'),(14275,122449,2,'Director'),(14275,122449,4,'Writer'),(14275,134121,4,'Writer'),(18734,84931,2,'Director'),(18734,84931,4,'Writer'),(18734,234841,4,'Writer'),(18734,234842,4,'Writer'),(26837,1058257,2,'Director'),(11598,3415,4,'Writer'),(11598,4610,2,'Director'),(11598,7181,3,'Producer'),(11598,7183,1,'Director of Photography'),(11598,7184,5,'Editor'),(11598,12936,4,'Writer'),(11598,12987,4,'Writer'),(11598,43863,6,'Original Music Composer'),(11598,70169,3,'Executive Producer'),(11598,27051,1,'Director of Photography'),(11598,194581,3,'Casting'),(11598,1518595,3,'Associate Producer'),(26916,94471,2,'Director'),(14438,78040,2,'Director'),(14438,78040,4,'Story'),(14438,430997,4,'Story'),(23069,94787,2,'Director'),(30315,2260,5,'Editor'),(30315,39999,1,'Director of Photography'),(30315,43863,3,'Producer'),(30315,43863,5,'Editor'),(30315,97966,2,'Director'),(30315,106052,4,'Screenplay'),(30315,106053,4,'Screenplay'),(30315,406204,8,'Makeup Artist'),(30315,570932,3,'Executive Producer'),(30315,1081673,9,'Special Effects'),(30315,1213543,3,'Production Supervisor'),(30315,1414062,9,'Post Production Supervisor'),(30315,1466405,4,'Original Story'),(30315,1471422,4,'Original Story'),(30315,1471422,3,'Producer'),(30315,1481519,8,'Makeup Artist'),(30315,1481520,3,'Associate Producer'),(30315,1481523,7,'Set Decoration'),(30315,1732801,2,'Script Supervisor'),(30315,1784788,3,'Production Coordinator'),(14358,229374,2,'Director'),(14358,988651,4,'Screenplay'),(14271,339,3,'Producer'),(14271,6159,3,'Producer'),(14271,57328,2,'Director'),(14271,57328,3,'Producer'),(14271,57328,4,'Writer'),(16653,288712,2,'Director'),(16653,288712,4,'Writer'),(14757,20033,1,'Director of Photography'),(14757,68074,3,'Producer'),(14757,77273,2,'Director'),(14757,77273,4,'Writer'),(14757,77273,3,'Producer'),(14757,77273,5,'Editor'),(14757,100015,7,'Production Design'),(14757,100026,6,'Original Music Composer'),(14757,120226,3,'Executive Producer'),(14757,1044162,3,'Producer'),(14757,1178210,2,'Assistant Director'),(14757,1542544,3,'Producer'),(23655,17042,2,'Director'),(23655,17042,4,'Writer'),(33430,22119,1,'Director of Photography'),(33430,41886,4,'Writer'),(33430,41887,2,'Director'),(12281,15508,3,'Executive Producer'),(12281,20743,3,'Executive Producer'),(12281,29941,3,'Casting'),(12281,33341,3,'Producer'),(12281,53181,1,'Director of Photography'),(12281,56362,3,'Executive Producer'),(12281,60891,6,'Original Music Composer'),(12281,72034,4,'Screenplay'),(12281,72034,2,'Director'),(12281,72036,3,'Producer'),(12281,72037,3,'Producer'),(12281,72038,5,'Editor'),(12281,1311557,8,'Costume Design'),(30246,105882,2,'Director'),(13983,58189,2,'Director'),(13983,58189,4,'Writer'),(13983,439626,3,'Casting'),(13983,957839,7,'Production Design'),(13983,963492,9,'Cinematography'),(13983,963493,5,'Editor'),(13983,1033105,7,'Set Decoration'),(19844,69737,2,'Director'),(21801,6389,1,'Director of Photography'),(21801,41079,5,'Editor'),(21801,61094,7,'Art Direction'),(21801,521806,7,'Production Design'),(21801,641437,2,'Director'),(21801,641437,4,'Writer'),(21801,1027145,2,'Director'),(21801,1027145,4,'Writer'),(21801,1183915,8,'Costume Design'),(21801,1199754,6,'Original Music Composer'),(21801,1199755,2,'Script Supervisor'),(30867,107168,2,'Director'),(15239,59953,1,'Director of Photography'),(15239,78021,2,'Director'),(15239,78021,4,'Story'),(15239,78021,3,'Producer'),(15239,78021,1,'Director of Photography'),(15239,78023,2,'Director'),(15239,78023,3,'Producer'),(15239,94134,3,'Casting'),(15239,107482,5,'Editor'),(15239,555064,4,'Screenplay'),(15239,1072644,7,'Art Direction'),(15239,1207076,9,'Makeup Effects'),(15239,1355594,3,'Casting'),(15239,1355595,3,'Casting'),(15239,1355596,7,'Art Direction'),(15624,78481,2,'Director'),(15624,78482,4,'Screenplay'),(17287,112855,7,'Production Design'),(17287,78021,2,'Director'),(17287,78021,4,'Writer'),(17287,78021,3,'Producer'),(17287,78021,1,'Director of Photography'),(17287,78023,3,'Producer'),(17287,98333,3,'Casting'),(17287,84271,4,'Writer'),(17287,84271,3,'Producer'),(17287,84271,5,'Editor'),(17287,84273,4,'Writer'),(17287,112864,9,'Special Effects'),(17287,112877,8,'Makeup Artist'),(17287,106454,3,'Casting'),(17287,986294,1,'Director of Photography'),(17287,1050143,3,'Producer'),(17287,1273394,3,'Producer'),(17287,1273394,3,'Casting'),(17287,1273395,3,'Casting'),(17287,1273396,3,'Casting'),(15389,78188,2,'Director'),(15389,78188,4,'Writer'),(23827,84348,3,'Producer'),(23827,90591,4,'Screenplay'),(23827,90591,2,'Director'),(23827,90591,3,'Producer'),(23827,90591,1,'Director of Photography'),(23827,90591,5,'Editor'),(23827,90591,3,'Casting'),(23827,995456,3,'Executive Producer'),(23827,1030966,3,'Line Producer'),(23827,1125683,3,'Producer'),(23827,1125685,3,'Line Producer'),(19204,29433,2,'Director'),(19204,29433,4,'Screenplay'),(19204,44957,4,'Screenplay'),(19204,44957,4,'Story'),(19204,44958,8,'Costume Design'),(19204,44958,7,'Production Design'),(19204,53188,3,'Producer'),(19204,53196,1,'Director of Photography'),(19204,53197,5,'Editor'),(19204,59366,6,'Original Music Composer'),(19204,84301,4,'Screenplay'),(19204,102114,9,'Special Effects'),(19204,105328,1,'Camera Operator'),(19204,1140927,1,'Still Photographer'),(19204,1266718,9,'Property Master'),(19204,1403742,6,'Sound Engineer'),(19204,1403743,9,'Stunt Coordinator'),(18045,4578,9,'Cinematography'),(18045,23545,3,'Casting'),(18045,82641,2,'Director'),(18045,82642,4,'Author'),(18045,959554,8,'Costume Design'),(18045,1015545,3,'Producer'),(18045,1035176,3,'Casting'),(18045,1172632,6,'Music'),(18045,1429333,8,'Hairstylist'),(18045,1792539,7,'Set Decoration'),(11240,294,5,'Editor'),(11240,1112,7,'Production Design'),(11240,2236,3,'Producer'),(11240,3224,2,'Director'),(11240,10714,8,'Costume Design'),(11240,10496,3,'Casting'),(11240,40740,9,'Stunt Coordinator'),(11240,16425,1,'Director of Photography'),(11240,18073,3,'Producer'),(11240,24278,9,'Stunt Coordinator'),(11240,68720,4,'Author'),(11240,68721,6,'Original Music Composer'),(11240,188516,9,'Stunt Coordinator'),(11240,1415957,9,'Stunt Coordinator'),(11240,1696156,8,'Makeup Artist'),(11240,1847800,8,'Hairstylist'),(11240,1847802,7,'Property Master'),(11240,1847805,1,'Still Photographer'),(10238,6648,2,'Director'),(10238,6648,4,'Screenplay'),(10238,6648,3,'Producer'),(10238,11905,1,'Director of Photography'),(10238,11909,3,'Producer'),(10238,46876,7,'Production Design'),(10238,46876,8,'Costume Design'),(10238,67522,5,'Editor'),(10238,1080975,6,'Sound Designer'),(10238,1332141,6,'Sound Designer'),(10238,1876239,6,'Sound Designer'),(15800,63983,2,'Director'),(14278,82839,2,'Director'),(14278,82840,2,'Director'),(14278,1348424,4,'Writer'),(25678,9204,6,'Original Music Composer'),(25678,17209,3,'Executive Producer'),(25678,33008,3,'Producer'),(25678,33009,3,'Producer'),(25678,21119,5,'Editor'),(25678,22135,7,'Production Design'),(25678,31261,4,'Screenplay'),(25678,31261,4,'Story'),(25678,31631,3,'Casting'),(25678,15857,4,'Screenplay'),(25678,72543,2,'Director'),(25678,72546,4,'Characters'),(25678,190115,6,'Original Music Composer'),(25678,934838,4,'Characters'),(25678,1066198,3,'Producer'),(25678,1096222,1,'Director of Photography'),(25678,1120181,3,'Casting'),(21525,1110343,2,'Director'),(21525,1548000,3,'Producer'),(21525,1548001,3,'Co-Producer'),(21525,1746321,3,'Executive Producer'),(11980,11757,5,'Editor'),(11980,14538,3,'Executive Producer'),(11980,18384,3,'Producer'),(11980,28902,4,'Screenplay'),(11980,28902,2,'Director'),(11980,54601,3,'Executive Producer'),(11980,56748,6,'Music'),(11980,71150,1,'Director of Photography'),(11956,21655,1,'Director of Photography'),(11956,17520,2,'Director'),(11956,17520,4,'Screenplay'),(11956,17532,5,'Editor'),(11956,17625,3,'Producer'),(11956,63124,3,'Producer'),(11956,71778,3,'Producer'),(26518,56383,2,'Director'),(26518,56383,4,'Screenplay'),(26518,225557,4,'Screenplay'),(26518,399477,6,'Music'),(13282,16300,1,'Director of Photography'),(13282,102429,3,'Executive Producer'),(13282,101377,2,'Director'),(13282,16157,5,'Editor'),(13282,51715,4,'Original Story'),(13282,52140,4,'Screenplay'),(13282,74350,3,'Producer'),(13282,124008,6,'Original Music Composer'),(13282,214572,4,'Screenplay'),(27420,22423,2,'Director'),(27420,22423,3,'Producer'),(27420,22423,4,'Writer'),(27420,22427,1,'Director of Photography'),(27420,58124,6,'Original Music Composer'),(27420,64728,5,'Editor'),(27420,97744,4,'Writer'),(27420,97745,3,'Producer'),(27420,97745,4,'Story'),(27420,101751,3,'Casting'),(27420,1375738,7,'Art Direction'),(27420,1375739,9,'Makeup Effects'),(14290,58189,2,'Director'),(29371,86035,2,'Director'),(32222,109025,3,'Producer'),(32222,109026,2,'Director'),(32222,109026,3,'Producer'),(32222,109026,4,'Writer'),(32222,1693028,3,'Producer'),(32222,1693030,3,'Producer'),(20520,86263,4,'Writer'),(20520,86262,2,'Director'),(12247,45745,3,'Producer'),(12247,64141,3,'Producer'),(12247,71876,3,'Executive Producer'),(12247,71874,3,'Producer'),(12247,71872,2,'Director'),(12247,71872,3,'Producer'),(12247,71872,4,'Author'),(12247,71877,3,'Executive Producer'),(12247,71883,6,'Original Music Composer'),(12247,71879,6,'Original Music Composer'),(12247,71878,5,'Editor'),(12247,71881,3,'Producer'),(12247,71880,1,'Director of Photography'),(12247,71882,3,'Executive Producer'),(29917,75102,6,'Sound Re-Recording Mixer'),(29917,105239,2,'Director'),(29917,105239,4,'Screenplay'),(29917,105240,4,'Screenstory'),(29917,978484,3,'Casting'),(29917,1001706,6,'Music'),(29917,1112498,5,'Editor'),(29917,1187168,7,'Production Design'),(29917,1189807,9,'Cinematography'),(29917,1189810,8,'Costume Design'),(29917,1315892,7,'Art Direction'),(29917,1334805,8,'Hairstylist'),(29917,1334805,8,'Makeup Artist'),(29917,1416481,5,'Digital Intermediate'),(29917,1427511,5,'Digital Intermediate'),(29917,1436224,6,'Supervising Sound Editor'),(29917,1436225,10,'Visual Effects Producer'),(29917,1436227,10,'Visual Effects Supervisor'),(29917,1436229,1,'Camera Operator'),(29917,1436230,1,'Camera Operator'),(29917,1436231,8,'Costume Supervisor'),(29917,1436237,2,'Script Supervisor'),(29917,1436238,2,'Script Supervisor'),(24869,92743,2,'Director'),(24869,92743,4,'Writer'),(24869,92743,3,'Producer'),(24869,1185285,1,'Director of Photography'),(24869,1309323,3,'Producer'),(24869,1309323,8,'Costume Design'),(34697,1259,6,'Music'),(34697,14971,4,'Novel'),(34697,52622,4,'Screenplay'),(34697,140086,2,'Director'),(34697,140086,4,'Adaptation'),(34697,140086,4,'Screenplay'),(18533,5018,1,'Director of Photography'),(18533,18828,3,'Executive Producer'),(18533,21183,4,'Screenplay'),(18533,21183,2,'Director'),(18533,41530,3,'Executive Producer'),(18533,41532,3,'Executive Producer'),(18533,41538,3,'Producer'),(18533,60322,3,'Executive Producer'),(18533,70525,3,'Executive Producer'),(18533,71286,3,'Executive Producer'),(18533,83228,4,'Screenplay'),(18533,964875,3,'Executive Producer'),(18533,966286,5,'Editor'),(18533,1022433,3,'Producer'),(18533,1111821,3,'Executive Producer'),(18533,1117426,3,'Producer'),(18533,1117427,3,'Producer'),(18533,1117428,3,'Producer'),(18533,1117429,3,'Executive Producer'),(10218,1891,5,'Editor'),(10218,11694,2,'Director'),(10218,11694,1,'Director of Photography'),(10218,15277,4,'Screenplay'),(10218,49912,6,'Music Supervisor'),(10218,60104,3,'Production Manager'),(10218,64716,3,'Producer'),(10218,239415,3,'Casting'),(10218,935719,8,'Costume Design'),(10218,1115476,7,'Production Design'),(10218,1297659,6,'Sound Re-Recording Mixer'),(10218,1537699,6,'Sound Re-Recording Mixer'),(10218,1537703,2,'Script Supervisor'),(10218,1537704,6,'Original Music Composer'),(14758,50095,3,'Producer'),(14758,77775,2,'Director'),(14758,77775,4,'Author'),(14758,77775,3,'Producer'),(14758,77776,3,'Producer'),(14758,77777,3,'Producer'),(14758,77777,3,'Production Manager'),(14758,77778,3,'Producer'),(14758,77779,3,'Producer'),(14758,77781,6,'Music'),(14758,77782,9,'Cinematography'),(14758,77783,5,'Editor'),(14758,77783,6,'Music Editor'),(14758,77784,7,'Production Design'),(14758,77785,8,'Costume Design'),(14758,77786,8,'Co-Costume Designer'),(14758,77787,8,'Makeup Artist'),(13363,11676,3,'Executive Producer'),(13363,15951,4,'Writer'),(13363,46355,5,'Editor'),(13363,76462,2,'Director'),(13363,76462,3,'Producer'),(13363,963843,7,'Production Design'),(13363,1202982,3,'Executive Producer'),(13363,1202983,3,'Producer'),(13363,1202984,6,'Original Music Composer'),(13363,1202985,1,'Director of Photography'),(25786,15672,2,'Director'),(25786,113105,4,'Teleplay'),(21334,110695,2,'Director'),(21334,110695,4,'Writer'),(27995,548,7,'Production Design'),(27995,5281,2,'Director'),(27995,5281,4,'Writer'),(27995,5281,3,'Producer'),(27995,5281,5,'Editor'),(27995,15520,6,'Original Music Composer'),(27995,15521,1,'Director of Photography'),(27995,1720048,3,'Associate Producer'),(27995,1720049,7,'Art Direction'),(27995,1720050,8,'Costume Design'),(28666,98925,4,'Novel'),(28666,101515,2,'Director'),(28666,101515,4,'Writer'),(30979,107447,2,'Director'),(13187,94011,2,'Director'),(13187,123945,4,'Writer'),(18632,5892,2,'Director'),(18632,5892,4,'Writer'),(18632,5892,4,'Story'),(18632,113194,9,'Stunt Coordinator'),(18632,141776,3,'Producer'),(18632,141777,3,'Producer'),(18632,141777,4,'Story'),(18632,141779,5,'Editor'),(18632,141782,1,'Director of Photography'),(18632,141783,7,'Production Design'),(18632,141784,8,'Costume Design'),(18632,141785,8,'Costume Design'),(18632,141786,3,'Production Manager'),(18632,141787,9,'Stunt Coordinator'),(18632,141788,1,'Camera Operator'),(18632,1472871,6,'Original Music Composer'),(18925,78040,2,'Director'),(18925,78040,4,'Writer'),(34101,35689,4,'Writer'),(34101,68750,2,'Director'),(34101,68750,4,'Writer'),(18841,88837,2,'Director'),(18841,88837,4,'Writer'),(13538,3081,3,'Casting'),(13538,16899,3,'Casting'),(13538,18846,3,'Producer'),(13538,23451,6,'Original Music Composer'),(13538,45056,6,'Music Supervisor'),(13538,55480,3,'Producer'),(13538,69929,5,'Editor'),(13538,74626,2,'Director'),(13538,74626,4,'Writer'),(13538,962163,7,'Production Design'),(13538,1340123,10,'Visual Effects Supervisor'),(13538,1340124,9,'Stunt Coordinator'),(13538,1380899,9,'Stunt Coordinator'),(13538,1415957,9,'Stunt Coordinator'),(13538,1503229,9,'Special Effects Coordinator'),(13538,1530173,7,'Art Direction'),(13538,1536937,10,'Special Effects Supervisor'),(33468,97961,3,'Producer'),(33468,97961,4,'Story'),(33468,109241,8,'Makeup Artist'),(33468,110726,4,'Screenplay'),(33468,110726,2,'Director'),(33468,110726,4,'Story'),(33468,1027513,1,'Camera Operator'),(33468,1129117,1,'Director of Photography'),(33468,1129118,5,'Editor'),(33468,1206139,7,'Art Direction'),(33468,1448815,3,'Associate Producer'),(33468,1588910,9,'Special Effects'),(33468,1588911,2,'Script Supervisor'),(16388,12833,2,'Director'),(16388,12833,4,'Screenplay'),(16388,12833,3,'Producer'),(16388,950276,3,'Producer'),(16388,950276,1,'Director of Photography'),(16388,950276,5,'Editor'),(16388,1482555,6,'Music'),(20981,67054,4,'Writer'),(20981,229182,2,'Director'),(20981,589129,4,'Screenplay'),(18292,45745,3,'Producer'),(18292,64141,4,'Screenplay'),(18292,64141,2,'Director'),(18292,64141,3,'Producer'),(18292,64141,4,'Story'),(18292,72264,1,'Director of Photography'),(18292,69804,3,'Executive Producer'),(18292,71878,5,'Editor'),(18292,79434,3,'Producer'),(18292,150956,8,'Costume Design'),(18292,225628,5,'Editor'),(18292,937895,6,'Original Music Composer'),(18292,1147603,7,'Production Design'),(18292,1172265,3,'Producer'),(18292,1175793,6,'Original Music Composer'),(18292,1175794,3,'Producer'),(13963,664,3,'Line Producer'),(13963,874,7,'Production Design'),(13963,1032,2,'Director'),(13963,2553,1,'Director of Photography'),(13963,2553,3,'Executive Producer'),(13963,2554,4,'Screenplay'),(13963,8887,7,'Assistant Art Director'),(13963,14252,3,'Line Producer'),(13963,72861,3,'Producer'),(13963,76155,3,'Producer'),(13963,76156,3,'Producer'),(13963,76157,5,'Editor'),(13963,76158,5,'Editor'),(13963,76159,7,'Set Decoration'),(13963,76160,3,'Unit Production Manager'),(13963,76161,2,'Assistant Director'),(13963,76162,2,'Assistant Director'),(33693,40864,2,'Director'),(33693,40864,4,'Writer'),(33693,1819087,3,'Producer'),(14585,58689,2,'Director'),(14585,58689,4,'Writer'),(14585,61192,5,'Editor'),(14585,94489,1,'Director of Photography'),(14585,203165,6,'Original Music Composer'),(14585,954064,3,'Producer'),(14585,987303,3,'Producer'),(14585,989072,6,'Original Music Composer'),(14022,564,2,'Director'),(14022,564,4,'Writer'),(17345,78040,2,'Director'),(17345,78040,3,'Producer'),(17345,78040,3,'Executive Producer'),(17345,78040,6,'Music'),(17345,78040,4,'Story'),(17345,78199,3,'Associate Producer'),(17345,135800,3,'Associate Producer'),(17345,430997,4,'Story'),(17345,1508085,3,'Executive Producer'),(17345,1508086,3,'Executive Producer'),(17345,1508087,3,'Executive Producer'),(17345,1508089,6,'Music'),(17345,1508090,6,'Music'),(24055,45405,2,'Director'),(24055,45407,3,'Producer'),(24055,45407,4,'Writer'),(24055,45407,2,'Director'),(13898,28672,4,'Writer'),(13898,120229,2,'Director'),(14337,76624,2,'Director'),(14337,76624,5,'Editor'),(14337,76624,3,'Producer'),(14337,76624,4,'Writer'),(14337,76624,6,'Music'),(14337,76624,9,'Cinematography'),(25975,6888,3,'Executive Producer'),(25975,61051,3,'Executive Producer'),(25975,85563,2,'Director'),(25975,94471,2,'Director'),(25975,997560,2,'Director'),(206647,153,6,'Original Music Composer'),(206647,39,2,'Director'),(206647,8384,7,'Set Decoration'),(206647,932,4,'Screenplay'),(206647,932,4,'Story'),(206647,4248,7,'Production Design'),(206647,9856,4,'Characters'),(206647,3904,5,'Editor'),(206647,7538,6,'Music Editor'),(206647,8784,3,'Co-Producer'),(206647,11227,8,'Costume Design'),(206647,10496,3,'Casting'),(206647,10666,3,'Producer'),(206647,11268,3,'Line Producer'),(206647,40827,6,'Music Editor'),(206647,14764,6,'Sound Designer'),(206647,14765,6,'Supervising Sound Editor'),(206647,36108,3,'Casting'),(206647,36108,3,'Casting Associate'),(206647,10783,4,'Screenplay'),(206647,10783,4,'Story'),(206647,10782,4,'Screenplay'),(206647,10782,4,'Story'),(206647,10876,3,'Executive Producer'),(206647,21339,4,'Screenplay'),(206647,23425,7,'Supervising Art Director'),(206647,23491,7,'Assistant Art Director'),(206647,23774,9,'Makeup Effects'),(206647,10907,3,'Casting'),(206647,61851,1,'Camera Operator'),(206647,64000,3,'Line Producer'),(206647,66941,6,'Orchestrator'),(206647,81517,3,'Associate Producer'),(206647,69678,3,'Producer'),(206647,77511,3,'Line Producer'),(206647,74401,1,'Director of Photography'),(206647,239885,9,'Special Effects Coordinator'),(206647,937946,1,'Camera Operator'),(206647,979698,7,'Art Direction'),(206647,986687,7,'Art Direction'),(206647,1024842,9,'Visual Effects Editor'),(206647,1026247,3,'Co-Producer'),(206647,1029804,10,'Visual Effects Producer'),(206647,1087452,8,'Key Hair Stylist'),(206647,1099281,8,'Hairstylist'),(206647,1118711,1,'Camera Operator'),(206647,1296445,7,'Art Direction'),(206647,1305251,3,'Casting Associate'),(206647,1315700,8,'Makeup Artist'),(206647,1319160,8,'Costume Supervisor'),(206647,1335539,7,'Art Direction'),(206647,1338241,10,'Visual Effects Coordinator'),(206647,1338372,6,'Foley'),(206647,1341741,10,'Visual Effects Supervisor'),(206647,1341858,6,'Sound Re-Recording Mixer'),(206647,1342669,2,'Script Supervisor'),(206647,1342669,3,'Associate Producer'),(206647,1345595,6,'Sound Re-Recording Mixer'),(206647,1358025,2,'Script Supervisor'),(206647,1367493,6,'Foley'),(206647,1377503,1,'Camera Operator'),(206647,1388897,1,'Steadicam Operator'),(206647,1389614,6,'Foley'),(206647,1391691,10,'Visual Effects Producer'),(206647,1392083,6,'Sound Designer'),(206647,1392246,1,'Camera Operator'),(206647,1392661,2,'Script Supervisor'),(206647,1392718,1,'Still Photographer'),(206647,1394117,7,'Art Department Coordinator'),(206647,1398089,7,'Greensman'),(206647,1398100,10,'Visual Effects Producer'),(206647,1399071,1,'Helicopter Camera'),(206647,1399862,5,'Dialogue Editor'),(206647,1401126,8,'Wigmaker'),(206647,1401147,9,'Visual Effects Editor'),(206647,1401631,6,'ADR & Dubbing'),(206647,1403411,1,'Camera Operator'),(206647,1404212,6,'Supervising Sound Editor'),(206647,1404217,6,'Sound Designer'),(206647,1404244,1,'Helicopter Camera'),(206647,1405241,1,'Helicopter Camera'),(206647,1408363,5,'First Assistant Editor'),(206647,1409821,8,'Makeup Designer'),(206647,1411323,9,'Makeup Effects'),(206647,1414096,11,'Gaffer'),(206647,1415157,9,'CG Supervisor'),(206647,1425484,9,'CG Supervisor'),(206647,1425488,10,'Visual Effects Producer'),(206647,1425971,8,'Hair Designer'),(206647,1428902,9,'Visual Effects Editor'),(206647,1439128,8,'Makeup Artist'),(206647,1442137,10,'Animation Supervisor'),(206647,1447617,9,'Visual Effects Editor'),(206647,1458416,8,'Hairstylist'),(206647,1459878,10,'Animation Director'),(206647,1459899,9,'Visual Effects Editor'),(206647,1459925,9,'CG Supervisor'),(206647,1470167,1,'Still Photographer'),(206647,1472773,7,'Assistant Art Director'),(206647,1477203,3,'Co-Producer'),(206647,1480629,8,'Key Hair Stylist'),(206647,1483141,10,'Visual Effects Supervisor'),(206647,1494824,6,'Sound Effects Editor'),(206647,1510431,8,'Costume Supervisor'),(206647,1512767,1,'Camera Operator'),(206647,1545912,8,'Costume Supervisor'),(206647,1545913,8,'Set Costumer'),(206647,1545995,1,'Additional Camera'),(206647,1546747,8,'Assistant Costume Designer'),(206647,1548406,5,'Digital Intermediate'),(206647,1550637,8,'Hairstylist'),(206647,1551770,9,'Carpenter'),(206647,1551771,9,'Property Master'),(206647,1551772,9,'Special Effects Coordinator'),(206647,1551773,3,'Casting'),(206647,1551774,3,'Casting Associate'),(206647,1551775,3,'Casting Associate'),(206647,1551777,8,'Assistant Costume Designer'),(206647,1551789,6,'Sound Effects Editor'),(206647,1551791,9,'Armorer'),(206647,1551796,3,'Researcher'),(206647,1551797,9,'Armorer'),(206647,1551798,8,'Hairstylist'),(206647,1551800,8,'Makeup Artist'),(206647,1551801,8,'Makeup Artist'),(206647,1551802,8,'Makeup Artist'),(206647,1551803,8,'Makeup Artist'),(206647,1551804,8,'Makeup Artist'),(206647,1551807,3,'Researcher'),(206647,1551809,7,'Assistant Art Director'),(206647,1551810,7,'Assistant Art Director'),(206647,1551811,7,'Assistant Art Director'),(206647,1551812,9,'Carpenter'),(206647,1551813,9,'Carpenter'),(206647,1551872,9,'CG Supervisor'),(206647,1551874,9,'CG Supervisor'),(206647,1551892,10,'Visual Effects Coordinator'),(206647,1551893,10,'Visual Effects Coordinator'),(206647,1551894,10,'Visual Effects Coordinator'),(206647,1551896,10,'Visual Effects Coordinator'),(206647,1551897,10,'Visual Effects Coordinator'),(206647,1551898,10,'Visual Effects Coordinator'),(206647,1551899,10,'Visual Effects Coordinator'),(206647,1551902,10,'Visual Effects Coordinator'),(206647,1551904,9,'Visual Effects Editor'),(206647,1551906,9,'Visual Effects Editor'),(206647,1551907,10,'Visual Effects Producer'),(206647,1551908,10,'Visual Effects Supervisor'),(206647,1551909,10,'Visual Effects Supervisor'),(206647,1551910,10,'Visual Effects Supervisor'),(206647,1551911,10,'Visual Effects Supervisor'),(206647,1551913,10,'Visual Effects Supervisor'),(206647,1551914,10,'Visual Effects Supervisor'),(206647,1553236,11,'Gaffer'),(206647,1582109,11,'Gaffer'),(49026,947,6,'Original Music Composer'),(49026,282,3,'Producer'),(49026,525,4,'Screenplay'),(49026,525,2,'Director'),(49026,525,3,'Producer'),(49026,525,4,'Story'),(49026,527,4,'Screenplay'),(49026,556,3,'Producer'),(49026,559,1,'Director of Photography'),(49026,559,1,'Camera Operator'),(49026,561,3,'Casting'),(49026,3893,4,'Story'),(49026,3794,4,'Characters'),(49026,3904,5,'Editor'),(49026,10949,3,'Executive Producer'),(49026,10951,3,'Executive Producer'),(49026,9568,9,'Stunts'),(49026,9991,8,'Makeup Artist'),(49026,10714,8,'Costume Design'),(49026,12039,7,'Set Decoration'),(49026,14762,7,'Art Direction'),(49026,15327,7,'Production Design'),(49026,15328,7,'Production Design'),(49026,17677,7,'Supervising Art Director'),(49026,35630,11,'Electrician'),(49026,40120,11,'Rigging Grip'),(49026,52193,6,'ADR & Dubbing'),(49026,54211,3,'Executive Producer'),(49026,57569,9,'Stunts'),(49026,61329,9,'Stunts'),(49026,62560,7,'Art Direction'),(49026,31172,7,'Art Direction'),(49026,68016,6,'Orchestrator'),(49026,81687,9,'Stunts'),(49026,75804,3,'Executive Producer'),(49026,113913,3,'Co-Producer'),(49026,114017,3,'Production Manager'),(49026,92231,10,'VFX Supervisor'),(49026,122549,9,'Stunts'),(49026,138618,6,'Sound Re-Recording Mixer'),(49026,142157,9,'Stunts'),(49026,202930,9,'Stunts'),(49026,204339,9,'Stunts'),(49026,230436,6,'ADR & Dubbing'),(49026,550900,9,'Stunts'),(49026,932186,6,'Orchestrator'),(49026,932748,9,'Stunts'),(49026,969743,7,'Art Direction'),(49026,1018958,3,'Casting'),(49026,1025090,9,'Stunts'),(49026,1034754,7,'Supervising Art Director'),(49026,1045964,9,'Stunts'),(49026,1046614,8,'Set Costumer'),(49026,1050930,5,'Dialogue Editor'),(49026,1061061,9,'Stunts'),(49026,1106629,9,'Stunts'),(49026,1116937,6,'Foley'),(49026,1155668,10,'Visual Effects Producer'),(49026,1270053,3,'Production Manager'),(49026,1301652,9,'Stunts'),(49026,1319744,8,'Costume Supervisor'),(49026,1322015,8,'Makeup Department Head'),(49026,1327144,7,'Art Direction'),(49026,1329415,9,'Stunts'),(49026,1329527,9,'Stunts'),(49026,1336192,8,'Costume Supervisor'),(49026,1336193,8,'Set Costumer'),(49026,1340941,9,'Stunts'),(49026,1341403,6,'Sound Designer'),(49026,1341403,6,'Supervising Sound Editor'),(49026,1341786,6,'Sound Effects Editor'),(49026,1348686,9,'Production Office Assistant'),(49026,1355530,7,'Sculptor'),(49026,1357062,9,'Special Effects Coordinator'),(49026,1357064,1,'Camera Operator'),(49026,1357066,1,'Camera Operator'),(49026,1357070,9,'Transportation Coordinator'),(49026,1358564,9,'Stunts'),(49026,1367508,2,'Script Supervisor'),(49026,1372882,9,'Visual Effects Editor'),(49026,1377222,6,'Sound Effects Editor'),(49026,1378222,7,'Construction Coordinator'),(49026,1378231,6,'Sound Effects Editor'),(49026,1378246,8,'Set Costumer'),(49026,1378726,9,'Dialect Coach'),(49026,1384390,9,'Stunts'),(49026,1389526,7,'Construction Coordinator'),(49026,1391648,8,'Set Costumer'),(49026,1392587,7,'Art Direction'),(49026,1393387,9,'Special Effects Coordinator'),(49026,1394050,9,'Dialect Coach'),(49026,1395030,8,'Set Costumer'),(49026,1395032,8,'Set Costumer'),(49026,1395430,7,'Art Department Coordinator'),(49026,1395435,7,'Set Designer'),(49026,1397823,6,'Foley'),(49026,1398089,7,'Greensman'),(49026,1399071,1,'Helicopter Camera'),(49026,1399323,8,'Set Costumer'),(49026,1399463,7,'Leadman'),(49026,1399876,1,'Still Photographer'),(49026,1401814,8,'Set Costumer'),(49026,1402008,9,'Dialect Coach'),(49026,1402079,2,'Assistant Director'),(49026,1403424,8,'Costume Design'),(49026,1403427,3,'Production Supervisor'),(49026,1404739,1,'Helicopter Camera'),(49026,1408347,10,'Visual Effects Supervisor'),(49026,1409824,8,'Wigmaker'),(49026,1411808,7,'Painter'),(49026,1412185,8,'Makeup Artist'),(49026,1413089,7,'Construction Foreman'),(49026,1415157,9,'Sequence Supervisor'),(49026,1415606,9,'Makeup Effects'),(49026,1416005,9,'Unit Publicist'),(49026,1417396,7,'Art Direction'),(49026,1417397,7,'Art Direction'),(49026,1417398,8,'Hairstylist'),(49026,1417399,8,'Hairstylist'),(49026,1417400,8,'Hairstylist'),(49026,1417403,9,'Makeup Effects'),(49026,1417406,3,'Production Manager'),(49026,1417407,3,'Production Manager'),(49026,1417408,3,'Production Supervisor'),(49026,1417409,7,'Art Department Coordinator'),(49026,1417410,7,'Art Department Coordinator'),(49026,1417411,7,'Assistant Art Director'),(49026,1417412,7,'Assistant Art Director'),(49026,1417413,9,'Property Master'),(49026,1417414,7,'Construction Coordinator'),(49026,1417415,7,'Property Master'),(49026,1417416,7,'Greensman'),(49026,1417417,9,'Scenic Artist'),(49026,1417418,7,'Leadman'),(49026,1417419,7,'Set Designer'),(49026,1417514,6,'Sound Effects Editor'),(49026,1417514,6,'Sound Re-Recording Mixer'),(49026,1417515,6,'Sound Effects Editor'),(49026,1417516,6,'Sound Effects Editor'),(49026,1417517,6,'Sound Re-Recording Mixer'),(49026,1417820,9,'Visual Effects Editor'),(49026,1417821,10,'Visual Effects Producer'),(49026,1417822,9,'Visual Effects Editor'),(49026,1417823,9,'Visual Effects Editor'),(49026,1417824,9,'Visual Effects Editor'),(49026,1417825,9,'CG Supervisor'),(49026,1417826,10,'Visual Effects Supervisor'),(49026,1417827,9,'CG Supervisor'),(49026,1417828,10,'Visual Effects Supervisor'),(49026,1417829,9,'Sequence Supervisor'),(49026,1417830,9,'Sequence Supervisor'),(49026,1417831,9,'Stunt Coordinator'),(49026,1417832,11,'Gaffer'),(49026,1417833,11,'Gaffer'),(49026,1417834,1,'Camera Technician'),(49026,1417835,11,'Rigging Gaffer'),(49026,1417836,10,'Animation'),(49026,1417837,8,'Costume Supervisor'),(49026,1417838,8,'Set Costumer'),(49026,1417839,8,'Set Costumer'),(49026,1417840,5,'First Assistant Editor'),(49026,1417841,6,'Music Editor'),(49026,1417842,9,'Transportation Coordinator'),(49026,1417843,9,'Picture Car Coordinator'),(49026,1417844,3,'Location Manager'),(49026,1417845,3,'Location Manager'),(49026,1417846,3,'Location Manager'),(49026,1417847,3,'Location Manager'),(49026,1417848,3,'Location Manager'),(49026,1427499,8,'Hairstylist'),(49026,1434599,9,'Stunts'),(49026,1440853,5,'Assistant Editor'),(49026,1455503,9,'Stunts'),(49026,1463954,3,'Casting'),(49026,1468581,9,'Stunts'),(49026,1468589,8,'Assistant Costume Designer'),(49026,1483827,9,'Stunts'),(49026,1483827,2,'Assistant Director'),(49026,1509394,1,'Grip'),(49026,1509396,1,'Grip'),(49026,1516458,8,'Hairstylist'),(49026,1525908,5,'Assistant Editor'),(49026,1531529,9,'Stunts'),(49026,1532610,1,'First Assistant Camera'),(49026,1532612,11,'Rigging Grip'),(49026,1532613,1,'First Assistant Camera'),(49026,1535095,9,'Stunts'),(49026,1535096,1,'Grip'),(49026,1535102,1,'Grip'),(49026,1544394,9,'Stunts'),(49026,1544395,9,'Stunts'),(49026,1546907,9,'Driver'),(49026,1548530,8,'Hairstylist'),(49026,1549015,9,'Propmaker'),(49026,1549026,9,'Stunts Coordinator'),(49026,1549741,9,'Stunts'),(49026,1550248,11,'Rigging Grip'),(49026,1550400,9,'Set Production Assistant'),(49026,1550725,9,'Stunts'),(49026,1551373,1,'Camera Intern'),(49026,1552549,5,'Color Timer'),(49026,1554393,9,'Stunts'),(49026,1554915,9,'Stunts'),(49026,1554921,9,'Stunts'),(49026,1554924,11,'Rigging Grip'),(49026,1554925,9,'Stunts'),(49026,1554926,9,'Stunts'),(49026,1554931,9,'Stunts'),(49026,1555027,11,'Rigging Grip'),(49026,1564997,3,'Executive In Charge Of Production'),(49026,1566280,2,'Assistant Director'),(49026,1571601,9,'Post Production Supervisor'),(49026,1622657,9,'Stunts'),(49026,1634437,9,'Stunts'),(49026,1638257,8,'Prosthetic Supervisor'),(49026,1644412,6,'Sound Mixer'),(49026,1644543,3,'Line Producer'),(49529,7,4,'Screenplay'),(49529,7,2,'Director'),(49529,7879,9,'Thanks'),(49529,490,3,'Producer'),(49529,2073,3,'Casting'),(49529,3996,6,'Sound Re-Recording Mixer'),(49529,6958,5,'Editor'),(49529,8158,5,'Dialogue Editor'),(49529,8166,6,'Sound Re-Recording Mixer'),(49529,8412,8,'Key Makeup Artist'),(49529,12039,7,'Set Decoration'),(49529,12895,9,'Thanks'),(49529,12897,9,'In Memory Of'),(49529,15017,8,'Makeup Designer'),(49529,14762,7,'Art Direction'),(49529,15327,7,'Production Design'),(49529,15347,6,'Music'),(49529,15348,1,'Director of Photography'),(49529,15354,6,'Music Editor'),(49529,34513,7,'Art Direction'),(49529,17675,8,'Costume Design'),(49529,17677,7,'Supervising Art Director'),(49529,18925,7,'Art Direction'),(49529,23454,7,'Art Direction'),(49529,28241,6,'Orchestrator'),(49529,29233,8,'Makeup Artist'),(49529,15776,4,'Original Story'),(49529,51557,3,'Casting'),(49529,39624,9,'Thanks'),(49529,61996,8,'Key Makeup Artist'),(49529,64449,3,'ADR Voice Casting'),(49529,72752,3,'Producer'),(49529,72753,3,'Producer'),(49529,67758,4,'Screenplay'),(49529,91055,3,'Unit Production Manager'),(49529,91912,1,'Camera Operator'),(49529,105780,6,'Sound Mixer'),(49529,122274,10,'Visual Effects Supervisor'),(49529,126638,4,'Screenplay'),(49529,138617,6,'Supervising Sound Editor'),(49529,238120,3,'Casting Associate'),(49529,406204,8,'Makeup Department Head'),(49529,528783,3,'Casting Associate'),(49529,967148,8,'Assistant Costume Designer'),(49529,969743,7,'Art Direction'),(49529,986687,7,'Art Direction'),(49529,1034754,7,'Supervising Art Director'),(49529,1034755,9,'Post Production Supervisor'),(49529,1055222,7,'Storyboard Designer'),(49529,1081073,10,'Special Effects Supervisor'),(49529,1121742,8,'Assistant Costume Designer'),(49529,1123360,3,'Associate Producer'),(49529,1171098,7,'Set Designer'),(49529,1218986,7,'Storyboard Designer'),(49529,1316599,8,'Makeup Artist'),(49529,1319490,8,'Makeup Artist'),(49529,1334782,7,'Assistant Art Director'),(49529,1335553,7,'Property Master'),(49529,1339450,9,'Thanks'),(49529,1357070,9,'Transportation Coordinator'),(49529,1367497,10,'Visual Effects Supervisor'),(49529,1374469,3,'Casting Assistant'),(49529,1376901,5,'Dialogue Editor'),(49529,1378828,6,'Sound Re-Recording Mixer'),(49529,1388850,7,'Assistant Art Director'),(49529,1390367,11,'Gaffer'),(49529,1390388,2,'Script Supervisor'),(49529,1394129,6,'Sound Designer'),(49529,1394129,6,'Supervising Sound Editor'),(49529,1395430,7,'Art Department Coordinator'),(49529,1395435,7,'Set Designer'),(49529,1397837,7,'Art Direction'),(49529,1399467,1,'Camera Operator'),(49529,1399475,11,'Gaffer'),(49529,1400535,1,'Camera Operator'),(49529,1400535,1,'Steadicam Operator'),(49529,1401784,3,'Production Supervisor'),(49529,1403388,8,'Key Makeup Artist'),(49529,1408379,10,'Visual Effects Producer'),(49529,1409757,8,'Key Makeup Artist'),(49529,1411320,8,'Key Makeup Artist'),(49529,1412205,1,'Still Photographer'),(49529,1414177,6,'Sound Effects Editor'),(49529,1414539,8,'Makeup Artist'),(49529,1414540,8,'Makeup Artist'),(49529,1415464,6,'Sound Effects Editor'),(49529,1417396,7,'Assistant Art Director'),(49529,1418124,8,'Hair Designer'),(49529,1421936,8,'Key Makeup Artist'),(49529,1424151,8,'Makeup Artist'),(49529,1425411,8,'Makeup Artist'),(49529,1428901,10,'Animation Supervisor'),(49529,1428905,9,'Visual Effects Editor'),(49529,1428911,8,'Makeup Artist'),(49529,1430188,1,'Camera Operator'),(49529,1441176,8,'Makeup Artist'),(49529,1447571,7,'Art Department Assistant'),(49529,1458894,8,'Makeup Artist'),(49529,1530220,8,'Makeup Artist'),(49529,1532325,8,'Key Costumer'),(49529,1536539,8,'Makeup Artist'),(49529,1546844,9,'Visual Effects Art Director'),(49529,1549655,8,'Key Makeup Artist'),(49529,1550851,9,'Stunt Coordinator'),(49529,1551810,7,'Art Department Assistant'),(49529,1561994,7,'Art Department Coordinator'),(49529,1613336,8,'Makeup Artist'),(49529,1640350,3,'Production Coordinator'),(49529,1658269,6,'Boom Operator'),(49529,1661321,7,'Art Department Assistant'),(49529,1686002,9,'Unit Publicist'),(49529,1697623,3,'Unit Production Manager'),(49529,1710258,5,'Additional Editing'),(49529,1750922,2,'First Assistant Director'),(49529,1761112,7,'Art Department Assistant'),(49529,1775681,2,'Second Assistant Director'),(49529,1775682,2,'Second Assistant Director'),(49529,1775687,7,'Art Department Coordinator'),(49529,1775688,7,'Art Department Assistant'),(49529,1775689,7,'Art Department Assistant'),(49529,1775690,8,'Key Makeup Artist'),(49529,1775691,8,'Makeup Artist'),(49529,1775692,8,'Makeup Artist'),(49529,1775693,8,'Makeup Artist'),(49529,1775701,8,'Hairstylist'),(49529,1775702,8,'Hairstylist'),(49529,1775704,6,'Boom Operator'),(49529,1775707,3,'Production Coordinator'),(49529,1775718,1,'Key Grip'),(49529,1775721,1,'Key Grip'),(49529,1775723,9,'Thanks'),(49529,1813644,9,'Stunts'),(38757,7879,3,'Executive Producer'),(38757,38748,4,'Novel'),(38757,5448,4,'Novel'),(38757,8020,10,'Animation Supervisor'),(38757,12072,7,'Production Design'),(38757,15813,6,'Original Music Composer'),(38757,15813,6,'Songs'),(38757,15892,4,'Screenplay'),(38757,56612,3,'Producer'),(38757,61414,4,'Story'),(38757,61422,7,'Co-Art Director'),(38757,61958,5,'Editor'),(38757,65644,6,'Original Music Composer'),(38757,76595,2,'Director'),(38757,83091,6,'Sound Re-Recording Mixer'),(38757,112609,6,'Sound Re-Recording Mixer'),(38757,121830,2,'Director'),(38757,137198,3,'Casting'),(38757,139474,3,'Executive Producer'),(38757,139474,10,'Animation Supervisor'),(38757,139474,4,'Characters'),(38757,928608,9,'Post Production Supervisor'),(38757,953331,9,'Executive Music Producer'),(38757,1017262,6,'Songs'),(38757,1123657,9,'Supervising Animator'),(38757,1210381,10,'Visual Effects Supervisor'),(38757,1281387,10,'Animation Supervisor'),(38757,1291315,6,'Music Supervisor'),(38757,1367494,6,'Sound Editor'),(38757,1368856,10,'Visual Development'),(38757,1381896,3,'Production Supervisor'),(38757,1408301,6,'Sound Editor'),(38757,1424167,6,'Sound Designer'),(38757,1443211,3,'Associate Producer'),(38757,1447400,10,'Visual Development'),(38757,1447483,2,'Layout'),(38757,1447497,2,'Layout'),(38757,1447499,4,'Characters'),(38757,1451279,2,'Layout'),(38757,1461361,10,'Visual Development'),(38757,1461363,2,'Layout'),(38757,1461364,4,'Characters'),(38757,1461397,2,'Layout'),(38757,1461399,10,'Visual Development'),(38757,1464355,3,'Executive In Charge Of Post Production'),(38757,1464361,3,'Production Supervisor'),(38757,1470064,11,'Lighting Supervisor'),(38757,1552863,7,'Art Direction'),(38757,1552865,10,'Visual Development'),(38757,1554457,3,'Production Manager'),(38757,1578645,2,'Layout'),(38757,1615775,2,'Layout'),(38757,1615776,9,'Technical Supervisor'),(38757,1615777,11,'Lighting Supervisor'),(38757,1615778,11,'Lighting Supervisor'),(38757,1615779,11,'Lighting Supervisor'),(38757,1615780,11,'Lighting Supervisor'),(38757,1615781,11,'Lighting Supervisor'),(38757,1615782,11,'Lighting Supervisor'),(38757,1615783,4,'Characters'),(38757,1615784,10,'Visual Development'),(38757,1615785,10,'Visual Development'),(38757,1615786,10,'Visual Development'),(38757,1615787,10,'Visual Development'),(38757,1615788,10,'Visual Development'),(38757,1615789,10,'Visual Development'),(38757,1615790,10,'Visual Development'),(38757,1615791,2,'Layout'),(38757,1615792,2,'Layout'),(38757,1615793,2,'Layout'),(38757,1615794,2,'Layout'),(38757,1615795,2,'Layout'),(38757,1615796,2,'Layout'),(38757,1615797,2,'Layout'),(38757,1615799,2,'Layout'),(38757,1615800,2,'Layout'),(38757,1615802,9,'Software Engineer'),(38757,1615803,9,'Software Engineer'),(38757,1763017,9,'Supervising Animator'),(99861,531,6,'Original Music Composer'),(99861,900,6,'Supervising Sound Editor'),(99861,900,6,'Sound Re-Recording Mixer'),(99861,7232,3,'Casting'),(99861,6041,6,'Original Music Composer'),(99861,7624,3,'Executive Producer'),(99861,7624,4,'Characters'),(99861,10850,3,'Producer'),(99861,8410,7,'Set Decoration'),(99861,8703,3,'Executive Producer'),(99861,12891,2,'Director'),(99861,12891,4,'Writer'),(99861,13009,8,'Costume Design'),(99861,35176,5,'Editor'),(99861,22161,1,'Director of Photography'),(99861,18866,4,'Characters'),(99861,15277,3,'Executive Producer'),(99861,32349,7,'Production Design'),(99861,57027,3,'Executive Producer'),(99861,113672,3,'Executive Producer'),(99861,113674,3,'Executive Producer'),(99861,113675,3,'Executive Producer'),(99861,983309,7,'Art Direction'),(99861,1018073,3,'Casting'),(99861,1018965,5,'Editor'),(99861,1051971,3,'Line Producer'),(99861,1104780,7,'Supervising Art Director'),(99861,1117747,3,'Co-Producer'),(99861,1149583,1,'Steadicam Operator'),(99861,1235786,6,'Sound Designer'),(99861,1322147,8,'Costume Supervisor'),(99861,1326451,7,'Art Direction'),(99861,1326458,7,'Art Direction'),(99861,1326460,7,'Art Direction'),(99861,1327030,6,'Sound Re-Recording Mixer'),(99861,1334420,7,'Art Direction'),(99861,1338477,7,'Set Decoration'),(99861,1339446,6,'Supervising Sound Editor'),(99861,1351240,3,'Associate Producer'),(99861,1376901,5,'Dialogue Editor'),(99861,1380002,1,'Still Photographer'),(99861,1388855,7,'Art Direction'),(99861,1388865,6,'Sound Effects Editor'),(99861,1388894,9,'Second Unit Cinematographer'),(99861,1388897,1,'Steadicam Operator'),(99861,1388898,1,'Camera Operator'),(99861,1392246,1,'Camera Operator'),(99861,1394331,9,'Stunts'),(99861,1400092,1,'Helicopter Camera'),(99861,1403641,1,'Underwater Camera'),(99861,1412756,9,'Compositors'),(99861,1414189,10,'Animation Supervisor'),(99861,1417983,10,'Animation Supervisor'),(99861,1424630,1,'Camera Operator'),(99861,1425978,6,'Sound Re-Recording Mixer'),(99861,1428837,9,'Second Unit Cinematographer'),(99861,1428916,1,'Camera Operator'),(99861,1428917,1,'Camera Operator'),(99861,1439726,10,'Animation Supervisor'),(99861,1447326,4,'Storyboard'),(99861,1456696,9,'Compositors'),(99861,1456835,10,'Animation'),(99861,1457635,10,'Visual Effects'),(99861,1458578,6,'ADR & Dubbing'),(99861,1477203,3,'Co-Producer'),(99861,1494209,1,'Helicopter Camera'),(99861,1510429,7,'Art Direction'),(99861,1510430,7,'Set Decoration'),(99861,1510431,8,'Costume Supervisor'),(99861,1510438,9,'Special Effects Coordinator'),(99861,1510439,1,'Camera Operator'),(99861,1510440,1,'Camera Operator'),(99861,1510441,1,'Still Photographer'),(99861,1512798,3,'Associate Producer'),(209112,947,6,'Original Music Composer'),(209112,282,3,'Producer'),(209112,525,3,'Executive Producer'),(209112,556,3,'Executive Producer'),(209112,3893,4,'Screenplay'),(209112,3893,3,'Executive Producer'),(209112,2293,9,'Graphic Novel Illustrator'),(209112,2293,4,'Novel'),(209112,2953,3,'Casting'),(209112,3794,4,'Characters'),(209112,3964,7,'Production Design'),(209112,7235,7,'Art Direction'),(209112,5392,8,'Costume Design'),(209112,6051,5,'Editor'),(209112,6878,7,'Art Direction'),(209112,6923,7,'Supervising Art Director'),(209112,10949,3,'Executive Producer'),(209112,10951,3,'Executive Producer'),(209112,13930,3,'Associate Producer'),(209112,15217,2,'Director'),(209112,15226,6,'Supervising Sound Editor'),(209112,17284,1,'Director of Photography'),(209112,17610,3,'Casting'),(209112,20007,4,'Characters'),(209112,20008,4,'Characters'),(209112,112656,8,'Makeup Department Head'),(209112,113051,6,'Sound Effects Editor'),(209112,113075,6,'Sound Designer'),(209112,66693,8,'Makeup Artist'),(209112,56827,6,'Original Music Composer'),(209112,60665,3,'Casting'),(209112,62723,5,'Digital Intermediate'),(209112,65937,6,'Sound Designer'),(209112,68016,6,'Orchestrator'),(209112,79242,3,'Executive Producer'),(209112,79243,3,'Producer'),(209112,78135,3,'Co-Producer'),(209112,105643,4,'Storyboard'),(209112,107420,7,'Set Decoration'),(209112,131680,4,'Screenplay'),(209112,158916,6,'Sound Re-Recording Mixer'),(209112,198034,4,'Characters'),(209112,211962,3,'Executive Producer'),(209112,229801,8,'Makeup Artist'),(209112,484529,7,'Art Department Coordinator'),(209112,930189,7,'Art Direction'),(209112,1172441,7,'Art Direction'),(209112,1305602,7,'Art Direction'),(209112,1322016,8,'Costume Supervisor'),(209112,1342054,3,'Researcher'),(209112,1352968,6,'ADR & Dubbing'),(209112,1367362,6,'Foley'),(209112,1368864,6,'Sound Re-Recording Mixer'),(209112,1368884,6,'Music Editor'),(209112,1378701,10,'Special Effects Supervisor'),(209112,1394760,2,'Script Supervisor'),(209112,1394767,1,'Still Photographer'),(209112,1394974,1,'Camera Operator'),(209112,1398958,10,'VFX Editor'),(209112,1399068,1,'Underwater Camera'),(209112,1399862,5,'Dialogue Editor'),(209112,1399875,1,'Camera Operator'),(209112,1402004,8,'Seamstress'),(209112,1403389,8,'Key Hair Stylist'),(209112,1403415,1,'Helicopter Camera'),(209112,1406780,1,'Helicopter Camera'),(209112,1408294,7,'Assistant Art Director'),(209112,1409270,6,'ADR & Dubbing'),(209112,1413508,10,'VFX Supervisor'),(209112,1418382,9,'CG Supervisor'),(209112,1423005,2,'Script Supervisor'),(209112,1428208,11,'Rigging Gaffer'),(209112,1428226,8,'Costume Supervisor'),(209112,1439088,10,'Visual Effects Supervisor'),(209112,1457327,10,'Animation Director'),(209112,1459033,3,'Co-Producer'),(209112,1460748,8,'Set Costumer'),(209112,1463804,8,'Set Costumer'),(209112,1483635,1,'Additional Camera'),(209112,1484474,7,'Art Department Coordinator'),(209112,1494535,8,'Set Costumer'),(209112,1532605,3,'Casting Associate'),(209112,1547221,8,'Hair Department Head'),(209112,1552521,9,'Stunts'),(209112,1569322,5,'Digital Intermediate'),(209112,1577213,10,'Animation Supervisor'),(209112,1594611,8,'Seamstress'),(209112,1616392,8,'Assistant Costume Designer'),(209112,1621454,10,'VFX Editor'),(209112,1637395,10,'VFX Editor'),(209112,1660720,10,'Animation Director'),(209112,1661321,7,'Assistant Art Director'),(209112,1661322,7,'Assistant Art Director'),(209112,1661324,10,'Animation Supervisor'),(209112,1661325,10,'Animation Supervisor'),(209112,1661326,3,'Casting Associate'),(209112,1661327,9,'Armorer'),(209112,1661331,9,'Armorer'),(209112,1661395,8,'Set Costumer'),(209112,1661396,8,'Set Costumer'),(209112,1661397,8,'Set Costumer'),(209112,1661400,10,'Animation Supervisor'),(209112,1661402,9,'CG Supervisor'),(209112,1661403,9,'CG Supervisor'),(209112,1661417,1,'Camera Operator'),(209112,1661418,11,'Gaffer'),(209112,1661419,11,'Rigging Gaffer'),(209112,1661421,1,'Additional Camera'),(209112,1661423,5,'First Assistant Editor'),(209112,1781335,5,'Assistant Editor'),(209112,1781336,5,'Assistant Editor'),(57201,1704,2,'Director'),(57201,1704,3,'Producer'),(57201,770,3,'Producer'),(57201,1705,4,'Screenplay'),(57201,1705,3,'Executive Producer'),(57201,1706,4,'Screenplay'),(57201,1706,3,'Executive Producer'),(57201,85,3,'Executive Producer'),(57201,1722,5,'Editor'),(57201,947,6,'Original Music Composer'),(57201,2444,3,'Executive Producer'),(57201,2445,3,'Executive Producer'),(57201,2446,3,'Executive Producer'),(57201,2215,3,'Casting'),(57201,900,6,'Sound Designer'),(57201,900,6,'Sound Re-Recording Mixer'),(57201,2216,6,'Sound Designer'),(57201,4032,7,'Set Decoration'),(57201,4034,8,'Costume Design'),(57201,10575,7,'Production Design'),(57201,7480,5,'Editor'),(57201,11699,1,'Director of Photography'),(57201,8159,6,'Supervising Sound Editor'),(57201,60665,3,'Casting'),(57201,66721,4,'Screenplay'),(57201,68016,6,'Orchestrator'),(57201,928657,3,'Executive Producer'),(57201,1322466,8,'Costume Supervisor'),(57201,1335569,6,'Music Editor'),(57201,1355894,10,'Animation'),(57201,1360103,6,'Supervising Sound Editor'),(57201,1407019,9,'Visual Effects Editor'),(57201,1521185,9,'Stunts'),(57201,1534197,6,'Music Editor'),(57201,1545540,6,'Sound mixer'),(49521,947,6,'Original Music Composer'),(49521,282,3,'Producer'),(49521,286,3,'Executive Producer'),(49521,525,3,'Producer'),(49521,525,4,'Story'),(49521,556,3,'Producer'),(49521,1303,7,'Production Design'),(49521,3893,4,'Screenplay'),(49521,3893,4,'Story'),(49521,2953,3,'Casting'),(49521,3805,3,'Executive Producer'),(49521,5392,8,'Costume Design'),(49521,8706,7,'Set Decoration'),(49521,6051,5,'Editor'),(49521,11386,8,'Costume Design'),(49521,12653,7,'Art Direction'),(49521,15217,2,'Director'),(49521,17610,3,'Casting'),(49521,20007,4,'Characters'),(49521,20008,4,'Characters'),(49521,22061,7,'Art Direction'),(49521,54211,3,'Executive Producer'),(49521,58911,9,'Stunts'),(49521,60222,7,'Art Direction'),(49521,61177,7,'Art Direction'),(49521,68016,6,'Orchestrator'),(49521,79242,3,'Co-Producer'),(49521,79243,3,'Producer'),(49521,86591,7,'Art Direction'),(49521,105643,4,'Storyboard'),(49521,1043831,1,'Director of Photography'),(49521,1182906,7,'Art Direction'),(49521,1182907,7,'Art Direction'),(49521,1182908,8,'Hairstylist'),(49521,1182909,8,'Hair Setup'),(49521,1182910,8,'Hair Setup'),(49521,1251373,9,'Stunts'),(49521,1355894,10,'Visual Effects'),(49521,1368867,10,'Special Effects Supervisor'),(49521,1368878,9,'Stunt Coordinator'),(49521,1439088,10,'Visual Effects Supervisor'),(49521,1459033,3,'Associate Producer'),(49521,1460590,9,'Special Effects'),(49521,1463185,9,'Compositors'),(49521,1486960,3,'Casting'),(49521,1552521,9,'Stunts'),(49521,1661423,5,'Assistant Editor'),(49521,1781335,5,'Assistant Editor'),(41154,488,3,'Executive Producer'),(41154,531,6,'Original Music Composer'),(41154,1484,3,'Casting'),(41154,2212,3,'Producer'),(41154,5133,7,'Production Design'),(41154,5174,2,'Director'),(41154,9341,1,'Director of Photography'),(41154,10957,5,'Editor'),(41154,8701,3,'Producer'),(41154,9613,4,'Writer'),(41154,9616,8,'Costume Design'),(41154,11713,7,'Supervising Art Director'),(41154,15005,5,'Editor'),(41154,17221,7,'Set Decoration'),(41154,23226,3,'Executive Producer'),(41154,24959,7,'Supervising Art Director'),(41154,52803,4,'Screenplay'),(41154,76054,7,'Art Direction'),(41154,1447543,10,'VFX Artist'),(41154,1463178,1,'Camera Technician'),(41154,1622657,9,'Stunts'),(122917,117,6,'Original Music Composer'),(122917,900,6,'Sound Re-Recording Mixer'),(122917,108,2,'Director'),(122917,108,3,'Producer'),(122917,108,4,'Writer'),(122917,129,4,'Novel'),(122917,126,3,'Producer'),(122917,126,4,'Writer'),(122917,128,4,'Writer'),(122917,128,3,'Co-Producer'),(122917,1313,1,'Director of Photography'),(122917,1320,7,'Conceptual Design'),(122917,1321,7,'Conceptual Design'),(122917,1323,8,'Costume Design'),(122917,1324,3,'Casting'),(122917,1325,3,'Casting'),(122917,1326,3,'Casting'),(122917,1373,7,'Production Design'),(122917,1377,5,'Editor'),(122917,3503,6,'Supervising Sound Editor'),(122917,3504,6,'Sound Designer'),(122917,3506,3,'Producer'),(122917,7267,5,'Dialogue Editor'),(122917,9357,9,'Stunt Coordinator'),(122917,10828,4,'Writer'),(122917,33303,7,'Set Decoration'),(122917,33303,7,'Supervising Art Director'),(122917,52165,8,'Makeup Department Head'),(122917,53393,3,'Producer'),(122917,67114,7,'Leadman'),(122917,75150,9,'Sound Recordist'),(122917,132604,7,'Art Direction'),(122917,132606,9,'Property Master'),(122917,132648,8,'Set Costumer'),(122917,135294,11,'Rigging Gaffer'),(122917,1016176,3,'Casting'),(122917,1016177,3,'Casting'),(122917,1016178,8,'Costume Design'),(122917,1158956,3,'Executive Producer'),(122917,1191111,6,'Sound Effects Editor'),(122917,1191112,5,'Dialogue Editor'),(122917,1310930,8,'Costume Design'),(122917,1337409,6,'ADR & Dubbing'),(122917,1337413,6,'Foley'),(122917,1367809,7,'Conceptual Design'),(122917,1378709,9,'Sequence Supervisor'),(122917,1378828,6,'Sound Re-Recording Mixer'),(122917,1391695,10,'Visual Effects Supervisor'),(122917,1392667,7,'Set Designer'),(122917,1392722,11,'Gaffer'),(122917,1397163,9,'Scenic Artist'),(122917,1401738,1,'Still Photographer'),(122917,1401896,9,'Visual Effects Editor'),(122917,1401998,10,'Animation Director'),(122917,1406066,6,'Sound Designer'),(122917,1406069,6,'Sound Re-Recording Mixer'),(122917,1409491,7,'Set Decoration'),(122917,1413175,10,'Visual Effects Supervisor'),(122917,1418374,10,'Animation Director'),(122917,1418375,10,'Animation Director'),(122917,1418377,10,'Animation Director'),(122917,1418378,9,'CG Supervisor'),(122917,1418379,9,'CG Supervisor'),(122917,1418381,9,'CG Supervisor'),(122917,1418382,9,'CG Supervisor'),(122917,1418383,10,'Animation Director'),(122917,1418395,10,'Visual Effects Supervisor'),(122917,1418395,10,'Animation Supervisor'),(122917,1424605,6,'Sound Effects Editor'),(122917,1424612,6,'Sound Effects Editor'),(122917,1424615,6,'Sound Effects Editor'),(122917,1424619,10,'Animation Manager'),(122917,1424635,5,'First Assistant Editor'),(122917,1425978,6,'Sound Re-Recording Mixer'),(122917,1431509,9,'Sound Recordist'),(122917,1447518,9,'Stunts'),(122917,1447524,7,'Conceptual Design'),(122917,1447543,10,'Visual Effects'),(122917,1452998,10,'VFX Artist'),(122917,1453938,11,'Lighting Artist'),(122917,1457302,7,'Set Decoration'),(122917,1457304,8,'Hairstylist'),(122917,1457305,8,'Hairstylist'),(122917,1457306,8,'Hairstylist'),(122917,1457307,8,'Makeup Artist'),(122917,1457308,8,'Makeup Artist'),(122917,1457309,8,'Makeup Artist'),(122917,1457310,7,'Art Department Coordinator'),(122917,1457311,7,'Assistant Art Director'),(122917,1457312,7,'Assistant Art Director'),(122917,1457314,7,'Greensman'),(122917,1457315,7,'Greensman'),(122917,1457316,7,'Greensman'),(122917,1457317,7,'Greensman'),(122917,1457318,7,'Set Designer'),(122917,1457319,7,'Set Designer'),(122917,1457320,7,'Set Designer'),(122917,1457321,6,'ADR & Dubbing'),(122917,1457322,5,'Dialogue Editor'),(122917,1457323,6,'First Assistant Sound Editor'),(122917,1457324,6,'Supervising Sound Editor'),(122917,1457325,10,'Animation Supervisor'),(122917,1457326,9,'CG Supervisor'),(122917,1457327,10,'Animation Director'),(122917,1457329,9,'Sequence Supervisor'),(122917,1457330,9,'Sequence Supervisor'),(122917,1457331,10,'Animation Production Assistant'),(122917,1457332,10,'Visual Effects Producer'),(122917,1457333,9,'Visual Effects Editor'),(122917,1457334,10,'Visual Effects Producer'),(122917,1457335,9,'Visual Effects Editor'),(122917,1457336,10,'Visual Effects Supervisor'),(122917,1457337,10,'VFX Supervisor'),(122917,1457338,10,'VFX Supervisor'),(122917,1457339,10,'VFX Supervisor'),(122917,1457359,1,'Camera Operator'),(122917,1457360,1,'Still Photographer'),(122917,1457362,8,'Set Costumer'),(122917,1457363,8,'Set Costumer'),(122917,1457365,6,'Music Editor'),(122917,1457367,6,'Music Editor'),(122917,1457371,3,'Location Manager'),(122917,1457372,9,'Dialect Coach'),(122917,1457373,3,'Location Manager'),(122917,1457374,9,'Dialect Coach'),(122917,1457375,9,'Unit Publicist'),(122917,1609850,5,'Dialogue Editor'),(57158,117,6,'Original Music Composer'),(57158,108,2,'Director'),(57158,108,4,'Screenplay'),(57158,108,3,'Producer'),(57158,129,4,'Novel'),(57158,126,4,'Screenplay'),(57158,126,3,'Producer'),(57158,128,4,'Screenplay'),(57158,1313,1,'Director of Photography'),(57158,1321,7,'Conceptual Design'),(57158,1323,8,'Costume Design'),(57158,1324,3,'Casting'),(57158,1325,3,'Casting'),(57158,1326,3,'Casting'),(57158,1373,7,'Production Design'),(57158,1377,5,'Editor'),(57158,3503,6,'Supervising Sound Editor'),(57158,3504,6,'Sound Designer'),(57158,3506,3,'Producer'),(57158,3506,2,'First Assistant Director'),(57158,7267,5,'Dialogue Editor'),(57158,10828,4,'Screenplay'),(57158,19770,3,'Executive Producer'),(57158,10830,3,'Executive Producer'),(57158,33303,7,'Supervising Art Director'),(57158,33303,7,'Set Decoration'),(57158,52165,8,'Key Makeup Artist'),(57158,53393,3,'Producer'),(57158,72232,7,'Conceptual Illustrator'),(57158,82197,3,'Executive Producer'),(57158,132604,7,'Art Direction'),(57158,132606,7,'Property Master'),(57158,132648,8,'Key Set Costumer'),(57158,226504,9,'Stunt Coordinator'),(57158,1016175,3,'Executive Producer'),(57158,1016176,3,'Casting'),(57158,1016177,3,'Casting'),(57158,1016178,8,'Costume Design'),(57158,1158956,3,'Executive Producer'),(57158,1191112,5,'Dialogue Editor'),(57158,1310930,8,'Costume Design'),(57158,1337409,6,'ADR Supervisor'),(57158,1367813,7,'Conceptual Design'),(57158,1378709,10,'Visual Effects Supervisor'),(57158,1391695,10,'Visual Effects Supervisor'),(57158,1394073,1,'Camera Operator'),(57158,1394768,1,'Camera Operator'),(57158,1401788,10,'Special Effects Supervisor'),(57158,1401799,10,'Visual Effects Supervisor'),(57158,1406066,6,'Sound Designer'),(57158,1409491,7,'Set Decoration'),(57158,1418379,9,'CG Supervisor'),(57158,1418381,9,'CG Supervisor'),(57158,1418395,10,'Visual Effects Supervisor'),(57158,1424605,6,'Sound Effects Editor'),(57158,1424606,6,'Supervising Sound Editor'),(57158,1424612,6,'Sound Effects Editor'),(57158,1424615,6,'Sound Effects Editor'),(57158,1424621,10,'Animation Supervisor'),(57158,1424637,6,'Music Editor'),(57158,1440657,9,'Stunt Coordinator'),(57158,1447518,9,'Stunts'),(57158,1447524,7,'Conceptual Design'),(57158,1447543,10,'Visual Effects'),(57158,1452998,10,'VFX Artist'),(57158,1453938,11,'Lighting Artist'),(57158,1457304,8,'Hairstylist'),(57158,1457306,8,'Hairstylist'),(57158,1457307,8,'Makeup Artist'),(57158,1457308,8,'Makeup Artist'),(57158,1457310,7,'Art Department Coordinator'),(57158,1457318,7,'Set Designer'),(57158,1457320,7,'Set Designer'),(57158,1457321,6,'ADR Editor'),(57158,1457322,5,'Dialogue Editor'),(57158,1457324,5,'Dialogue Editor'),(57158,1457334,10,'Visual Effects Producer'),(57158,1457359,1,'Steadicam Operator'),(57158,1457360,1,'Still Photographer'),(57158,1457362,8,'Set Costumer'),(57158,1457363,8,'Set Costumer'),(57158,1457367,6,'Music Editor'),(57158,1457372,9,'Dialect Coach'),(57158,1457374,9,'Dialect Coach'),(57158,1466034,9,'CG Supervisor'),(57158,1470982,2,'Script Supervisor'),(57158,1531091,8,'Set Costumer'),(57158,1531092,8,'Makeup Artist'),(57158,1544338,6,'Music Supervisor'),(57158,1544477,3,'Production Coordinator'),(57158,1546433,9,'Visual Effects Editor'),(57158,1569346,8,'Hairstylist'),(57158,1580854,3,'Production Coordinator'),(57158,1635484,8,'Hairstylist'),(57158,1635597,2,'Script Supervisor'),(57158,1641217,6,'Supervising Music Editor'),(57158,1816358,9,'Armorer'),(57158,1860312,8,'Makeup Artist'),(57158,1860313,8,'Hairstylist'),(57158,1860317,7,'Greensman'),(57158,1860319,7,'Set Designer'),(57158,1860320,7,'Set Designer'),(57158,1860324,10,'Modeling'),(57158,1860342,6,'Foley Editor'),(57158,1860346,10,'Visual Effects Coordinator'),(57158,1860347,10,'Visual Effects Coordinator'),(57158,1860355,10,'Visual Effects Coordinator'),(57158,1860372,3,'Production Coordinator'),(271110,2529,7,'Set Decoration'),(271110,3996,6,'Sound Re-Recording Mixer'),(271110,7232,3,'Casting'),(271110,5551,4,'Screenplay'),(271110,5552,4,'Screenplay'),(271110,7624,3,'Executive Producer'),(271110,10850,3,'Producer'),(271110,8159,6,'Sound Designer'),(271110,8159,6,'Supervising Sound Editor'),(271110,8166,6,'Sound Re-Recording Mixer'),(271110,8703,3,'Executive Producer'),(271110,9343,7,'Production Design'),(271110,10970,8,'Costume Design'),(271110,10903,3,'Co-Producer'),(271110,10905,3,'Co-Producer'),(271110,40766,1,'Camera Operator'),(271110,40778,11,'Gaffer'),(271110,12575,9,'Second Unit Cinematographer'),(271110,15356,10,'Special Effects Supervisor'),(271110,35176,5,'Editor'),(271110,16344,6,'Supervising Sound Editor'),(271110,18714,8,'Costume Supervisor'),(271110,18866,4,'Characters'),(271110,18996,4,'Characters'),(271110,19271,2,'Director'),(271110,19272,2,'Director'),(271110,19272,2,'Script Supervisor'),(271110,23787,8,'Makeup Artist'),(271110,24192,6,'Music Supervisor'),(271110,11106,8,'Assistant Costume Designer'),(271110,57027,3,'Executive Producer'),(271110,19002,9,'Second Unit Cinematographer'),(271110,113672,3,'Executive Producer'),(271110,113674,3,'Executive Producer'),(271110,87172,4,'Comic Book'),(271110,80827,6,'Foley'),(271110,102343,8,'Makeup Artist'),(271110,189241,1,'Additional Camera'),(271110,227440,6,'Original Music Composer'),(271110,239788,1,'Camera Operator'),(271110,936841,7,'Supervising Art Director'),(271110,967026,1,'Director of Photography'),(271110,1004624,9,'Property Master'),(271110,1067682,3,'Executive Producer'),(271110,1089142,3,'Co-Producer'),(271110,1117747,3,'Co-Producer'),(271110,1172441,7,'Art Direction'),(271110,1204332,11,'Gaffer'),(271110,1319825,8,'Costume Supervisor'),(271110,1327027,10,'Visual Effects Supervisor'),(271110,1327146,8,'Costume Supervisor'),(271110,1338241,10,'Visual Effects Coordinator'),(271110,1338964,7,'Assistant Art Director'),(271110,1340093,7,'Assistant Art Director'),(271110,1342054,3,'Researcher'),(271110,1345610,3,'Casting'),(271110,1345611,3,'Casting'),(271110,1349452,3,'Associate Producer'),(271110,1364411,6,'Boom Operator'),(271110,1378162,7,'Construction Coordinator'),(271110,1378241,1,'Camera Operator'),(271110,1379990,10,'Visual Effects Supervisor'),(271110,1389129,7,'Art Department Coordinator'),(271110,1392943,11,'Gaffer'),(271110,1393435,7,'Assistant Art Director'),(271110,1394418,6,'Sound Effects Editor'),(271110,1399320,8,'Set Costumer'),(271110,1400082,1,'Still Photographer'),(271110,1400088,6,'Music Editor'),(271110,1400092,1,'Helicopter Camera'),(271110,1403408,10,'Visual Effects Coordinator'),(271110,1403415,1,'Helicopter Camera'),(271110,1408352,9,'CG Supervisor'),(271110,1409237,10,'Animation Supervisor'),(271110,1411271,1,'Camera Operator'),(271110,1417839,8,'Set Costumer'),(271110,1424894,8,'Hair Department Head'),(271110,1439104,1,'Camera Operator'),(271110,1442097,8,'Hairstylist'),(271110,1444908,8,'Hairstylist'),(271110,1445834,5,'Dialogue Editor'),(271110,1472788,10,'Visual Effects Supervisor'),(271110,1477793,8,'Set Costumer'),(271110,1494210,1,'Steadicam Operator'),(271110,1530231,9,'Special Effects Coordinator'),(271110,1530686,7,'Assistant Art Director'),(271110,1530726,9,'Armorer'),(271110,1533084,8,'Assistant Costume Designer'),(271110,1543191,3,'Casting Associate'),(271110,1543227,10,'Visual Effects Coordinator'),(271110,1543230,9,'Armorer'),(271110,1548461,5,'First Assistant Editor'),(271110,1548530,8,'Hairstylist'),(271110,1567950,1,'Camera Operator'),(271110,1580858,10,'Visual Effects Coordinator'),(271110,1590390,9,'Property Master'),(271110,1590391,9,'Armorer'),(271110,1590392,8,'Assistant Costume Designer'),(271110,1590393,8,'Set Costumer'),(271110,1590394,8,'Set Costumer'),(271110,1590395,11,'Gaffer'),(271110,1590400,8,'Makeup Artist'),(271110,1590401,8,'Makeup Artist'),(271110,1590402,5,'Dialogue Editor'),(271110,1590403,6,'Boom Operator'),(271110,1590404,6,'Boom Operator'),(271110,1590405,10,'Animation Supervisor'),(271110,1590406,9,'CG Supervisor'),(271110,1590407,10,'Special Effects Supervisor'),(271110,1590408,10,'Visual Effects Coordinator'),(271110,1590409,10,'Visual Effects Coordinator'),(271110,1590410,9,'Visual Effects Editor'),(271110,1590411,10,'Visual Effects Producer'),(271110,1590412,10,'Visual Effects Supervisor'),(271110,1590413,10,'Visual Effects Supervisor'),(271110,1590414,5,'First Assistant Editor'),(271110,1590415,5,'First Assistant Editor'),(271110,1590416,3,'Researcher'),(271110,1676849,9,'Stunts'),(44833,10816,5,'Editor'),(44833,3995,8,'Makeup Department Head'),(44833,6870,3,'Producer'),(44833,11411,7,'Production Design'),(44833,8763,6,'Sound Designer'),(44833,8848,7,'Art Direction'),(44833,9043,8,'Costume Design'),(44833,10126,8,'Set Costumer'),(44833,13223,5,'Color Timer'),(44833,15559,1,'Director of Photography'),(44833,18264,6,'Original Music Composer'),(44833,18617,5,'Editor'),(44833,19282,3,'Producer'),(44833,24308,3,'Producer'),(44833,20170,3,'Casting'),(44833,20359,8,'Costume Design'),(44833,21984,7,'Set Decoration'),(44833,23352,8,'Makeup Artist'),(44833,23620,8,'Makeup Artist'),(44833,32282,8,'Hairstylist'),(44833,36602,2,'Director'),(44833,36602,3,'Producer'),(44833,50769,3,'Producer'),(44833,113073,6,'Sound Re-Recording Mixer'),(44833,68016,6,'Orchestrator'),(44833,25549,3,'Casting'),(44833,83083,6,'ADR & Dubbing'),(44833,83083,5,'Dialogue Editor'),(44833,91941,9,'Unit Publicist'),(44833,102343,8,'Makeup Department Head'),(44833,112947,4,'Screenplay'),(44833,112948,4,'Screenplay'),(44833,224388,7,'Art Direction'),(44833,575769,9,'Transportation Coordinator'),(44833,579405,6,'Sound Re-Recording Mixer'),(44833,937231,3,'Producer'),(44833,978127,6,'Sound Re-Recording Mixer'),(44833,1012973,9,'Stunt Coordinator'),(44833,1017296,5,'Editor'),(44833,1171098,7,'Set Designer'),(44833,1182907,7,'Art Direction'),(44833,1197278,3,'Casting'),(44833,1235712,9,'Visual Effects Editor'),(44833,1322017,7,'Set Designer'),(44833,1323092,8,'Costume Supervisor'),(44833,1337418,10,'Visual Effects Supervisor'),(44833,1338134,6,'Foley'),(44833,1347720,9,'Visual Effects Art Director'),(44833,1347763,1,'Camera Operator'),(44833,1352981,6,'Music Editor'),(44833,1357067,8,'Set Costumer'),(44833,1367672,11,'Gaffer'),(44833,1368877,10,'Visual Effects Supervisor'),(44833,1370904,7,'Sculptor'),(44833,1376893,7,'Set Designer'),(44833,1377225,10,'Visual Effects Supervisor'),(44833,1377241,3,'Location Manager'),(44833,1378240,1,'Still Photographer'),(44833,1378241,1,'Camera Operator'),(44833,1378724,6,'Music Editor'),(44833,1378830,10,'Visual Effects Producer'),(44833,1380477,6,'Sound Designer'),(44833,1389129,7,'Art Department Coordinator'),(44833,1394130,6,'Sound Re-Recording Mixer'),(44833,1394322,9,'Dialect Coach'),(44833,1394445,10,'Visual Effects Producer'),(44833,1395902,1,'Camera Operator'),(44833,1398972,1,'Underwater Camera'),(44833,1399917,6,'Foley'),(44833,1400906,6,'Sound Designer'),(44833,1401109,1,'Camera Operator'),(44833,1401109,1,'Steadicam Operator'),(44833,1403085,9,'Property Master'),(44833,1403424,8,'Costume Design'),(44833,1403425,8,'Hairstylist'),(44833,1403426,8,'Hairstylist'),(44833,1403427,3,'Production Supervisor'),(44833,1403428,3,'Production Supervisor'),(44833,1403429,3,'Production Manager'),(44833,1403430,7,'Art Department Coordinator'),(44833,1403432,7,'Construction Coordinator'),(44833,1403433,9,'Scenic Artist'),(44833,1403434,7,'Leadman'),(44833,1403435,7,'Leadman'),(44833,1403438,6,'Supervising Sound Editor'),(44833,1403438,6,'ADR & Dubbing'),(44833,1403438,5,'Dialogue Editor'),(44833,1403439,6,'Supervising Sound Editor'),(44833,1403440,6,'Sound Designer'),(44833,1403441,6,'Sound Designer'),(44833,1403442,6,'Sound Designer'),(44833,1403443,6,'ADR & Dubbing'),(44833,1403443,5,'Dialogue Editor'),(44833,1403458,10,'Visual Effects Supervisor'),(44833,1403460,9,'Visual Effects Editor'),(44833,1403461,10,'Visual Effects Supervisor'),(44833,1403463,10,'Visual Effects Supervisor'),(44833,1403464,10,'Visual Effects Supervisor'),(44833,1403465,10,'Visual Effects Supervisor'),(44833,1403467,9,'Visual Effects Editor'),(44833,1403468,10,'Visual Effects Supervisor'),(44833,1403469,10,'Visual Effects Producer'),(44833,1403470,9,'Visual Effects Editor'),(44833,1403471,10,'Visual Effects Producer'),(44833,1403472,10,'Visual Effects Producer'),(44833,1403474,10,'Visual Effects Producer'),(44833,1403475,10,'Visual Effects Producer'),(44833,1403478,1,'Camera Operator'),(44833,1403479,1,'Camera Operator'),(44833,1403480,11,'Best Boy Electric'),(44833,1403481,9,'Video Assist Operator'),(44833,1403482,9,'Cableman'),(44833,1403484,8,'Set Costumer'),(44833,1403485,8,'Set Costumer'),(44833,1403487,8,'Set Costumer'),(44833,1403488,5,'Digital Intermediate'),(44833,1403490,6,'Music Editor'),(44833,1403491,3,'Location Manager'),(44833,1403492,3,'Location Manager'),(44833,1451676,9,'Digital Effects Supervisor'),(44833,1459736,10,'Animation'),(44833,1463785,10,'Animation'),(135397,488,3,'Executive Producer'),(135397,561,3,'Casting'),(135397,664,3,'Producer'),(135397,892,1,'Director of Photography'),(135397,900,6,'Sound Re-Recording Mixer'),(135397,2216,6,'Sound Designer'),(135397,2529,7,'Set Decoration'),(135397,4030,9,'Stunts'),(135397,7238,8,'Costume Design'),(135397,4782,4,'Characters'),(135397,4953,7,'Production Design'),(135397,6922,7,'Art Direction'),(135397,20586,7,'Set Designer'),(135397,7727,10,'Visual Effects'),(135397,8160,6,'Foley'),(135397,8163,6,'Foley'),(135397,8166,6,'Sound Re-Recording Mixer'),(135397,8411,8,'Costume Design'),(135397,11300,10,'Visual Effects Supervisor'),(135397,12575,9,'Second Unit Cinematographer'),(135397,13031,9,'Stunt Coordinator'),(135397,13115,10,'Modeling'),(135397,11001,5,'Editor'),(135397,15347,6,'Original Music Composer'),(135397,42032,1,'Camera Operator'),(135397,18867,7,'Art Direction'),(135397,25600,3,'Producer'),(135397,32282,8,'Hair Setup'),(135397,54211,3,'Executive Producer'),(135397,57065,9,'Compositors'),(135397,60261,9,'Thanks'),(135397,67802,4,'Screenplay'),(135397,67802,4,'Story'),(135397,67803,4,'Screenplay'),(135397,67803,4,'Story'),(135397,92491,9,'Stunts'),(135397,92503,9,'Stunts'),(135397,71127,1,'Underwater Camera'),(135397,78890,9,'Stunts'),(135397,75380,6,'Boom Operator'),(135397,79790,11,'Gaffer'),(135397,82350,9,'Stunts'),(135397,91123,1,'Helicopter Camera'),(135397,93258,9,'Special Effects'),(135397,111893,4,'Storyboard'),(135397,137175,7,'Art Direction'),(135397,186922,9,'Stunts'),(135397,195078,9,'Prop Maker'),(135397,229860,10,'Animation'),(135397,484529,7,'Art Department Coordinator'),(135397,550473,9,'Stunts'),(135397,575694,11,'Electrician'),(135397,575765,7,'Set Designer'),(135397,575769,9,'Transportation Coordinator'),(135397,578723,8,'Hairstylist'),(135397,930707,4,'Screenplay'),(135397,930707,2,'Director'),(135397,959555,7,'Set Designer'),(135397,1020013,4,'Screenplay'),(135397,1025667,9,'Stunts'),(135397,1045115,11,'Gaffer'),(135397,1056155,9,'Special Effects'),(135397,1089920,9,'Stunts'),(135397,1095271,8,'Makeup Department Head'),(135397,1106629,9,'Stunts'),(135397,1155551,9,'Visual Effects Editor'),(135397,1191027,9,'Stunts'),(135397,1195362,7,'Art Direction'),(135397,1215298,11,'Lighting Technician'),(135397,1224272,9,'Special Effects'),(135397,1235012,9,'Stunts'),(135397,1235227,3,'Production Supervisor'),(135397,1247272,9,'Stunts'),(135397,1275523,9,'Stunts'),(135397,1285241,9,'Stunts'),(135397,1304298,8,'Makeup Artist'),(135397,1309482,7,'Art Direction'),(135397,1309482,9,'Special Effects'),(135397,1319157,8,'Set Costumer'),(135397,1320974,8,'Set Costumer'),(135397,1328407,8,'Costume Supervisor'),(135397,1333900,8,'Makeup Artist'),(135397,1339435,7,'Set Designer'),(135397,1341268,3,'Associate Producer'),(135397,1347762,9,'Thanks'),(135397,1352962,7,'Set Designer'),(135397,1355530,7,'Sculptor'),(135397,1367516,9,'Stunts'),(135397,1367945,9,'Driver'),(135397,1368863,7,'Set Designer'),(135397,1370904,7,'Sculptor'),(135397,1376889,7,'Set Designer'),(135397,1376902,6,'Supervising Sound Editor'),(135397,1386905,8,'Set Dressing Artist'),(135397,1386913,10,'Visual Effects Producer'),(135397,1387252,9,'Stunt Coordinator'),(135397,1388864,6,'ADR & Dubbing'),(135397,1388864,5,'Dialogue Editor'),(135397,1388872,10,'Visual Effects Supervisor'),(135397,1389136,6,'Music Editor'),(135397,1390516,7,'Sculptor'),(135397,1391123,7,'Greensman'),(135397,1392116,7,'Set Designer'),(135397,1392612,11,'Electrician'),(135397,1392943,11,'Gaffer'),(135397,1393581,8,'Makeup Artist'),(135397,1394724,1,'Still Photographer'),(135397,1395432,7,'Set Designer'),(135397,1399290,7,'Set Designer'),(135397,1400403,10,'Visual Effects Producer'),(135397,1400547,7,'Set Designer'),(135397,1400555,7,'Set Designer'),(135397,1400855,7,'Greensman'),(135397,1401109,1,'Steadicam Operator'),(135397,1401807,11,'Best Boy Electric'),(135397,1401884,7,'Sculptor'),(135397,1401893,9,'Visual Effects Editor'),(135397,1403415,1,'Helicopter Camera'),(135397,1403425,8,'Hairstylist'),(135397,1403432,7,'Construction Coordinator'),(135397,1404190,8,'Makeup Artist'),(135397,1405389,1,'Director of Photography'),(135397,1406872,6,'Foley'),(135397,1407340,8,'Hairstylist'),(135397,1407371,8,'Set Costumer'),(135397,1407702,10,'Modeling'),(135397,1411166,8,'Hairstylist'),(135397,1412984,6,'Sound Effects Editor'),(135397,1413402,9,'Stunts'),(135397,1414178,6,'Sound Effects Editor'),(135397,1414497,9,'Property Master'),(135397,1415334,8,'Makeup Artist'),(135397,1416386,6,'Sound Re-Recording Mixer'),(135397,1418349,8,'Makeup Artist'),(135397,1418350,8,'Makeup Artist'),(135397,1422411,6,'Sound Designer'),(135397,1431553,8,'Makeup Artist'),(135397,1432024,11,'Electrician'),(135397,1434557,8,'Makeup Artist'),(135397,1444958,10,'Visual Effects Producer'),(135397,1445834,5,'Dialogue Editor'),(135397,1447938,8,'Set Dressing Artist'),(135397,1453663,9,'Special Effects'),(135397,1453905,9,'Stunts'),(135397,1455499,9,'Stunts'),(135397,1455598,10,'Animation'),(135397,1456696,9,'Compositors'),(135397,1457666,5,'Assistant Editor'),(135397,1457917,9,'Stunts'),(135397,1458084,8,'Makeup Artist'),(135397,1458086,8,'Makeup Artist'),(135397,1458141,11,'Rigging Gaffer'),(135397,1459728,10,'Animation'),(135397,1459736,10,'Animation'),(135397,1459744,10,'Animation'),(135397,1459748,10,'Animation'),(135397,1459752,10,'Animation'),(135397,1459764,10,'Animation'),(135397,1459766,10,'Animation'),(135397,1459774,10,'Animation'),(135397,1460608,10,'Animation'),(135397,1460624,11,'Lighting Supervisor'),(135397,1460645,9,'Compositors'),(135397,1460647,9,'Compositors'),(135397,1463269,7,'Art Direction'),(135397,1463270,8,'Hairstylist'),(135397,1463271,8,'Makeup Artist'),(135397,1463272,8,'Hairstylist'),(135397,1463273,8,'Hairstylist'),(135397,1463274,8,'Makeup Artist'),(135397,1463275,8,'Hairstylist'),(135397,1463276,8,'Makeup Artist'),(135397,1463277,8,'Hairstylist'),(135397,1463278,3,'Production Supervisor'),(135397,1463279,3,'Executive In Charge Of Production'),(135397,1463281,2,'Assistant Director'),(135397,1463286,2,'Assistant Director'),(135397,1463289,2,'Assistant Director'),(135397,1463290,2,'Assistant Director'),(135397,1463291,2,'Assistant Director'),(135397,1463292,2,'Assistant Director'),(135397,1463293,2,'Assistant Director'),(135397,1463296,7,'Assistant Art Director'),(135397,1463298,9,'Propmaker'),(135397,1463299,9,'Propmaker'),(135397,1463300,4,'Storyboard'),(135397,1463301,7,'Greensman'),(135397,1463304,4,'Storyboard'),(135397,1463308,9,'Propmaker'),(135397,1463310,10,'Modeling'),(135397,1463313,4,'Storyboard'),(135397,1463318,7,'Greensman'),(135397,1463320,7,'Art Department Assistant'),(135397,1463321,7,'Assistant Art Director'),(135397,1463322,8,'Set Dressing Artist'),(135397,1463323,4,'Storyboard'),(135397,1463329,9,'Propmaker'),(135397,1463331,7,'Set Decoration'),(135397,1463330,7,'Set Decoration'),(135397,1463332,4,'Storyboard'),(135397,1463334,8,'Set Dressing Artist'),(135397,1463338,7,'Greensman'),(135397,1463339,7,'Greensman'),(135397,1463340,9,'Prop Maker'),(135397,1463343,8,'Set Dressing Artist'),(135397,1463348,7,'Greensman'),(135397,1463351,7,'Art Department Assistant'),(135397,1463360,7,'Art Department Coordinator'),(135397,1463362,7,'Greensman'),(135397,1463364,9,'Propmaker'),(135397,1463368,7,'Sculptor'),(135397,1463369,8,'Set Dressing Artist'),(135397,1463370,7,'Greensman'),(135397,1463371,7,'Art Department Assistant'),(135397,1463372,7,'Set Designer'),(135397,1463373,9,'Propmaker'),(135397,1463374,8,'Set Dressing Artist'),(135397,1463375,4,'Storyboard'),(135397,1463376,7,'Greensman'),(135397,1463377,8,'Set Dressing Artist'),(135397,1463378,7,'Sculptor'),(135397,1463379,4,'Storyboard'),(135397,1463380,7,'Set Designer'),(135397,1463381,9,'Propmaker'),(135397,1463382,8,'Set Dressing Artist'),(135397,1463383,8,'Set Dressing Artist'),(135397,1463386,9,'Propmaker'),(135397,1463387,6,'Foley'),(135397,1463388,6,'ADR & Dubbing'),(135397,1463389,6,'Sound Editor'),(135397,1463390,6,'Sound mixer'),(135397,1463391,6,'Boom Operator'),(135397,1463393,6,'Foley'),(135397,1463397,6,'Boom Operator'),(135397,1463398,6,'Foley'),(135397,1463399,6,'Boom Operator'),(135397,1463400,6,'Boom Operator'),(135397,1463402,1,'Helicopter Camera'),(135397,1463403,9,'Special Effects Coordinator'),(135397,1463405,9,'Special Effects'),(135397,1463406,9,'Special Effects'),(135397,1463407,9,'Special Effects'),(135397,1463408,9,'Special Effects'),(135397,1463409,9,'Special Effects'),(135397,1463410,9,'Special Effects'),(135397,1463411,9,'Special Effects'),(135397,1463412,9,'Special Effects Coordinator'),(135397,1463416,9,'Special Effects'),(135397,1463422,9,'Special Effects'),(135397,1463423,9,'Special Effects'),(135397,1463424,9,'Special Effects'),(135397,1463425,9,'Special Effects'),(135397,1463429,9,'Special Effects'),(135397,1463434,9,'Special Effects'),(135397,1463435,10,'Visual Effects'),(135397,1463436,9,'Compositors'),(135397,1463437,10,'VFX Artist'),(135397,1463440,10,'Visual Effects'),(135397,1463447,10,'VFX Artist'),(135397,1463448,9,'Compositors'),(135397,1463461,9,'Compositors'),(135397,1463462,9,'Compositors'),(135397,1463464,9,'Compositors'),(135397,1463467,9,'Compositors'),(135397,1463468,9,'Compositors'),(135397,1463469,9,'Compositors'),(135397,1463470,10,'VFX Artist'),(135397,1463473,9,'Compositors'),(135397,1463474,10,'Modeling'),(135397,1463480,9,'Compositors'),(135397,1463483,9,'Compositors'),(135397,1463486,9,'Compositors'),(135397,1463489,10,'VFX Production Coordinator'),(135397,1463490,9,'Compositors'),(135397,1463492,9,'Compositors'),(135397,1463496,9,'Compositors'),(135397,1463498,10,'VFX Production Coordinator'),(135397,1463499,9,'Compositors'),(135397,1463505,10,'Modeling'),(135397,1463507,9,'Compositors'),(135397,1463509,9,'Compositors'),(135397,1463512,10,'VFX Artist'),(135397,1463513,10,'Modeling'),(135397,1463515,10,'VFX Production Coordinator'),(135397,1463517,10,'VFX Production Coordinator'),(135397,1463530,10,'Animation'),(135397,1463533,10,'Animation'),(135397,1463538,9,'Compositors'),(135397,1463540,10,'Animation'),(135397,1463541,9,'Compositors'),(135397,1463543,9,'Compositors'),(135397,1463545,9,'Compositors'),(135397,1463547,3,'Production Manager'),(135397,1463551,10,'Animation'),(135397,1463552,9,'Compositors'),(135397,1463553,9,'Compositors'),(135397,1463561,10,'Modeling'),(135397,1463562,10,'Modeling'),(135397,1463565,10,'Creature Design'),(135397,1463568,10,'Visual Effects'),(135397,1463569,9,'Compositors'),(135397,1463573,9,'Compositors'),(135397,1463575,9,'Compositors'),(135397,1463577,10,'Visual Effects'),(135397,1463581,9,'Compositors'),(135397,1463586,9,'Compositors'),(135397,1463587,9,'Compositors'),(135397,1463589,9,'Compositors'),(135397,1463592,9,'Compositors'),(135397,1463594,10,'Creature Design'),(135397,1463595,9,'Compositors'),(135397,1463596,9,'Compositors'),(135397,1463601,10,'VFX Artist'),(135397,1463602,9,'Compositors'),(135397,1463603,9,'Compositors'),(135397,1463604,9,'Compositors'),(135397,1463606,11,'Lighting Technician'),(135397,1463607,10,'VFX Artist'),(135397,1463609,9,'Compositors'),(135397,1463610,9,'Compositors'),(135397,1463611,10,'Visual Effects'),(135397,1463615,10,'VFX Artist'),(135397,1463616,9,'Compositors'),(135397,1463617,9,'Compositors'),(135397,1463619,10,'Modeling'),(135397,1463622,9,'Compositors'),(135397,1463625,9,'Compositors'),(135397,1463627,10,'Animation'),(135397,1463628,10,'Modeling'),(135397,1463632,10,'VFX Production Coordinator'),(135397,1463639,9,'Compositors'),(135397,1463640,9,'Compositors'),(135397,1463642,9,'Compositors'),(135397,1463646,9,'Compositors'),(135397,1463649,10,'VFX Artist'),(135397,1463653,10,'VFX Production Coordinator'),(135397,1463654,9,'Compositors'),(135397,1463656,9,'Stunts'),(135397,1463657,9,'Stunts'),(135397,1463658,9,'Stunts'),(135397,1463659,9,'Stunts'),(135397,1463660,9,'Stunts'),(135397,1463661,9,'Stunts'),(135397,1463662,9,'Stunts'),(135397,1463663,9,'Stunts'),(135397,1463664,9,'Stunts'),(135397,1463665,9,'Stunts'),(135397,1463667,9,'Stunts'),(135397,1463668,9,'Stunts'),(135397,1463669,9,'Stunts'),(135397,1463671,9,'Stunts'),(135397,1463672,9,'Stunts'),(135397,1463673,9,'Stunts'),(135397,1463674,9,'Stunts'),(135397,1463675,9,'Stunts'),(135397,1463676,9,'Stunts'),(135397,1463677,9,'Stunts'),(135397,1463678,9,'Stunts'),(135397,1463679,9,'Stunts'),(135397,1463680,9,'Stunts'),(135397,1463681,9,'Stunts'),(135397,1463682,9,'Stunts'),(135397,1463683,9,'Stunts'),(135397,1463684,9,'Stunts'),(135397,1463685,9,'Stunts'),(135397,1463686,9,'Stunts'),(135397,1463687,9,'Stunts'),(135397,1463688,9,'Stunts'),(135397,1463689,9,'Stunts'),(135397,1463690,9,'Stunts'),(135397,1463691,9,'Stunts'),(135397,1463692,11,'Electrician'),(135397,1463696,1,'Grip'),(135397,1463699,1,'Grip'),(135397,1463700,1,'Grip'),(135397,1463702,1,'Grip'),(135397,1463705,11,'Electrician'),(135397,1463707,11,'Electrician'),(135397,1463709,11,'Electrician'),(135397,1463711,11,'Rigging Grip'),(135397,1463715,11,'Electrician'),(135397,1463717,11,'Electrician'),(135397,1463721,11,'Electrician'),(135397,1463728,11,'Rigging Gaffer'),(135397,1463729,1,'Grip'),(135397,1463730,1,'Grip'),(135397,1463731,1,'Grip'),(135397,1463732,11,'Electrician'),(135397,1463736,11,'Electrician'),(135397,1463737,1,'Grip'),(135397,1463739,11,'Electrician'),(135397,1463744,11,'Electrician'),(135397,1463746,11,'Electrician'),(135397,1463748,11,'Electrician'),(135397,1463750,1,'Grip'),(135397,1463752,11,'Electrician'),(135397,1463755,11,'Electrician'),(135397,1463756,1,'Grip'),(135397,1463757,11,'Electrician'),(135397,1463763,1,'Grip'),(135397,1463766,1,'Grip'),(135397,1463768,1,'Grip'),(135397,1463769,11,'Lighting Technician'),(135397,1463770,1,'Grip'),(135397,1463771,1,'Grip'),(135397,1463773,11,'Electrician'),(135397,1463774,11,'Electrician'),(135397,1463778,11,'Lighting Technician'),(135397,1463781,1,'Grip'),(135397,1463782,10,'Animation'),(135397,1463783,10,'Animation'),(135397,1463784,10,'Animation'),(135397,1463785,10,'Animation'),(135397,1463786,10,'Animation'),(135397,1463798,8,'Set Costumer'),(135397,1463803,8,'Set Costumer'),(135397,1463805,8,'Set Costumer'),(135397,1463807,9,'Visual Effects Editor'),(135397,1463832,9,'Driver'),(135397,1463833,9,'Transportation Co-Captain'),(135397,1463835,9,'Driver'),(135397,1463836,9,'Transportation Captain'),(135397,1463837,9,'Driver'),(135397,1463839,1,'Additional Photography'),(135397,1463841,9,'Driver'),(135397,1463842,9,'Transportation Co-Captain'),(135397,1463846,9,'Driver'),(135397,1463847,3,'Administration'),(135397,1465509,1,'Camera Operator'),(135397,1519432,6,'Music Editor'),(135397,1524158,1,'Camera Operator'),(135397,1524222,11,'Lighting Technician'),(135397,1524231,3,'Production Supervisor'),(135397,1645398,10,'Animation'),(135397,1691431,9,'Stunts'),(37724,153,6,'Original Music Composer'),(37724,39,2,'Director'),(37724,8384,7,'Set Decoration'),(37724,151,1,'Director of Photography'),(37724,932,4,'Writer'),(37724,4248,7,'Production Design'),(37724,2523,5,'Editor'),(37724,9856,4,'Characters'),(37724,11227,8,'Costume Design'),(37724,10496,3,'Casting'),(37724,10666,3,'Producer'),(37724,10783,4,'Writer'),(37724,10782,4,'Writer'),(37724,10876,3,'Executive Producer'),(37724,30463,7,'Art Direction'),(37724,81517,3,'Associate Producer'),(37724,69678,3,'Producer'),(37724,194881,7,'Art Direction'),(37724,449538,6,'Songs'),(37724,962164,7,'Art Direction'),(37724,972623,7,'Art Direction'),(37724,979698,7,'Art Direction'),(37724,1149584,6,'Songs'),(37724,1177850,1,'Still Photographer'),(37724,1271444,7,'Art Direction'),(37724,1342669,2,'Script Supervisor'),(37724,1407019,9,'Visual Effects Editor'),(37724,1551777,8,'Assistant Costume Designer'),(37724,1831266,9,'Stunts'),(37724,1835498,9,'Stunts'),(68721,1108,4,'Screenplay'),(68721,1108,2,'Director'),(68721,2483,1,'Director of Photography'),(68721,4061,8,'Costume Design'),(68721,7232,3,'Casting'),(68721,6041,6,'Original Music Composer'),(68721,7624,3,'Executive Producer'),(68721,7624,4,'Characters'),(68721,10850,3,'Producer'),(68721,15004,3,'Executive Producer'),(68721,35176,5,'Editor'),(68721,18866,4,'Characters'),(68721,15277,3,'Executive Producer'),(68721,52600,7,'Production Design'),(68721,57027,3,'Executive Producer'),(68721,57769,5,'Editor'),(68721,113672,3,'Executive Producer'),(68721,113674,3,'Executive Producer'),(68721,75391,7,'Set Decoration'),(68721,224512,3,'Executive Producer'),(68721,969387,3,'Executive Producer'),(68721,1059732,3,'Executive Producer'),(68721,1117748,3,'Executive Producer'),(68721,1194953,9,'Thanks'),(68721,1239407,4,'Screenplay'),(68721,1401803,10,'Visual Effects Supervisor'),(68721,1450362,10,'Visual Effects'),(68721,1452991,9,'Digital Effects Supervisor'),(68721,1539172,11,'Lighting Technician'),(36668,898,5,'Editor'),(36668,1098,5,'Editor'),(36668,2095,3,'Producer'),(36668,2624,3,'Casting'),(36668,4953,7,'Production Design'),(36668,5362,3,'Casting'),(36668,5363,3,'Casting'),(36668,6924,8,'Costume Supervisor'),(36668,7200,3,'Producer'),(36668,7624,3,'Executive Producer'),(36668,7626,3,'Producer'),(36668,10850,3,'Executive Producer'),(36668,10970,8,'Costume Design'),(36668,10549,7,'Art Direction'),(36668,11098,6,'Original Music Composer'),(36668,11092,4,'Screenplay'),(36668,15017,9,'Makeup Effects'),(36668,11099,1,'Director of Photography'),(36668,11011,4,'Screenplay'),(36668,11091,2,'Director'),(36668,22061,7,'Art Direction'),(36668,11021,7,'Set Decoration'),(36668,11102,7,'Art Direction'),(36668,46082,7,'Supervising Art Director'),(36668,11106,8,'Costume Design'),(36668,113194,9,'Stunts'),(36668,11100,5,'Editor'),(36668,11095,3,'Co-Producer'),(36668,11014,3,'Co-Producer'),(36668,223991,7,'Art Direction'),(36668,1182092,3,'Executive Producer'),(36668,1395269,10,'Visual Effects Supervisor'),(36668,1401803,9,'Digital Effects Supervisor'),(36668,1432021,3,'Co-Producer'),(36668,1447557,9,'Compositors'),(36668,1452932,10,'Animation'),(36668,1477146,3,'Co-Producer'),(36668,1477147,3,'Associate Producer'),(36668,1477203,3,'Associate Producer'),(62211,7,3,'Executive Producer'),(62211,8,3,'Executive Producer'),(62211,7879,3,'Executive Producer'),(62211,7880,3,'Producer'),(62211,7884,4,'Screenplay'),(62211,7885,6,'Original Music Composer'),(62211,7927,7,'Production Design'),(62211,7931,4,'Screenplay'),(62211,57673,3,'Casting'),(62211,225976,4,'Screenplay'),(62211,225976,2,'Director'),(62211,963497,3,'Casting'),(62211,1271301,3,'Executive Producer'),(91314,2215,3,'Casting'),(91314,488,3,'Executive Producer'),(91314,15841,5,'Editor'),(91314,10816,5,'Editor'),(91314,865,2,'Director'),(91314,865,3,'Executive Producer'),(91314,3183,3,'Producer'),(91314,5545,3,'Co-Producer'),(91314,9987,3,'Producer'),(91314,10952,3,'Producer'),(91314,15244,4,'Screenplay'),(91314,7848,7,'Production Design'),(91314,8848,7,'Art Direction'),(91314,10123,5,'Editor'),(91314,10687,3,'Co-Producer'),(91314,12639,7,'Set Designer'),(91314,13588,7,'Set Decoration'),(91314,21070,7,'Supervising Art Director'),(91314,18264,6,'Original Music Composer'),(91314,10994,3,'Producer'),(91314,24308,3,'Executive Producer'),(91314,24309,3,'Executive Producer'),(91314,113045,6,'Foley'),(91314,113090,6,'Foley'),(91314,60945,3,'Co-Producer'),(91314,59426,3,'Casting'),(91314,59425,3,'Casting'),(91314,60284,8,'Costume Design'),(91314,62722,3,'Co-Producer'),(91314,92359,7,'Set Designer'),(91314,969743,7,'Set Designer'),(91314,1008115,7,'Art Direction'),(91314,1043831,1,'Director of Photography'),(91314,1116937,6,'Foley'),(91314,1195362,7,'Art Direction'),(91314,1198658,7,'Art Direction'),(91314,1289015,7,'Art Direction'),(91314,1319844,8,'Costume Supervisor'),(91314,1330582,7,'Art Direction'),(91314,1330842,7,'Art Direction'),(91314,1345585,8,'Set Dressing Artist'),(91314,1345594,6,'Sound Designer'),(91314,1345597,6,'Sound Designer'),(91314,1368882,8,'Set Costumer'),(91314,1376891,7,'Set Designer'),(91314,1378695,6,'Sound Designer'),(91314,1378695,6,'Supervising Sound Editor'),(91314,1378696,6,'Sound Designer'),(91314,1378696,6,'Supervising Sound Editor'),(91314,1378700,9,'Special Effects Coordinator'),(91314,1386903,7,'Set Designer'),(91314,1386904,7,'Set Designer'),(91314,1386905,8,'Set Dressing Artist'),(91314,1386906,7,'Construction Coordinator'),(91314,1386907,7,'Art Department Coordinator'),(91314,1386908,7,'Set Designer'),(91314,1386910,10,'Visual Effects Supervisor'),(91314,1386911,10,'Visual Effects Supervisor'),(91314,1386912,10,'Visual Effects Supervisor'),(91314,1386913,10,'Visual Effects Producer'),(91314,1386914,10,'Visual Effects Producer'),(91314,1386916,10,'Visual Effects Producer'),(91314,1386917,10,'Visual Effects Producer'),(91314,1386918,10,'Visual Effects Producer'),(91314,1386919,10,'Visual Effects Producer'),(91314,1386920,1,'Still Photographer'),(91314,1386921,8,'Set Costumer'),(91314,1386923,2,'Script Supervisor'),(91314,1447209,3,'Co-Producer'),(91314,1455461,11,'Lighting Technician'),(91314,1456696,9,'Compositors'),(91314,1456835,10,'Animation'),(91314,1457935,9,'Compositors'),(91314,1459728,10,'Animation'),(91314,1459743,10,'Animation'),(91314,1460608,10,'Animation'),(91314,1460622,9,'Software Engineer'),(91314,1460628,2,'Layout'),(91314,1460644,9,'Visual Effects Editor'),(91314,1460648,9,'Compositors'),(91314,1460652,9,'Compositors'),(91314,1460655,9,'Compositors'),(91314,1463182,10,'VFX Artist'),(91314,1463183,9,'Compositors'),(91314,1463784,10,'Animation'),(91314,1477203,3,'Co-Producer'),(68728,531,6,'Music'),(68728,555,7,'Set Decoration'),(68728,561,3,'Casting'),(68728,5541,3,'Executive Producer'),(68728,7623,2,'Director'),(68728,7712,5,'Editor'),(68728,7628,3,'Executive Producer'),(68728,9051,4,'Author'),(68728,9573,1,'Director of Photography'),(68728,18311,3,'Producer'),(68728,21218,4,'Screenplay'),(68728,23766,4,'Screenplay'),(68728,46592,7,'Art Direction'),(68728,71262,3,'Executive Producer'),(68728,111052,7,'Art Direction'),(68728,543194,8,'Costume Design'),(68728,928399,3,'Executive Producer'),(68728,957889,7,'Art Direction'),(68728,959555,7,'Art Direction'),(68728,1032536,7,'Production Design'),(68728,1271755,7,'Art Direction'),(68728,1271756,7,'Art Direction'),(68728,1447388,10,'Animation'),(68728,1455598,10,'Animation'),(68728,1460607,10,'Animation'),(68728,1460655,9,'Compositors'),(68728,1463178,2,'Layout'),(68728,1463185,9,'Compositors'),(68728,1637826,7,'Art Direction'),(68728,1767709,10,'Visual Effects'),(68728,1767710,10,'Visual Effects'),(102382,947,6,'Original Music Composer'),(102382,950,5,'Editor'),(102382,5670,7,'Production Design'),(102382,7624,4,'Characters'),(102382,7625,4,'Characters'),(102382,7626,3,'Producer'),(102382,8285,7,'Supervising Art Director'),(102382,8527,8,'Costume Design'),(102382,15024,9,'Stunt Coordinator'),(102382,15026,9,'Stunt Coordinator'),(102382,15845,8,'Makeup Department Head'),(102382,15345,4,'Screenplay'),(102382,15345,4,'Story'),(102382,15346,4,'Screenplay'),(102382,15346,4,'Story'),(102382,15348,1,'Director of Photography'),(102382,16658,9,'Special Effects Coordinator'),(102382,17221,7,'Set Decoration'),(102382,18087,1,'Camera Operator'),(102382,20204,4,'Story'),(102382,46943,3,'Casting'),(102382,113124,9,'Visual Effects Editor'),(102382,68016,6,'Orchestrator'),(102382,72964,3,'Production Manager'),(102382,87742,2,'Director'),(102382,91151,9,'Transportation Captain'),(102382,95835,6,'Sound Designer'),(102382,168309,4,'Screenplay'),(102382,168309,4,'Story'),(102382,406204,8,'Makeup Artist'),(102382,419327,6,'Original Music Composer'),(102382,548849,7,'Assistant Art Director'),(102382,558267,6,'Original Music Composer'),(102382,970199,7,'Art Direction'),(102382,977941,3,'Producer'),(102382,995189,1,'Camera Operator'),(102382,1177713,8,'Costume Supervisor'),(102382,1190255,8,'Set Costumer'),(102382,1227173,6,'Foley'),(102382,1319844,8,'Costume Supervisor'),(102382,1324481,8,'Makeup Department Head'),(102382,1347723,7,'Assistant Art Director'),(102382,1347730,9,'Property Master'),(102382,1347732,9,'Scenic Artist'),(102382,1347734,7,'Assistant Art Director'),(102382,1347736,7,'Assistant Art Director'),(102382,1347738,7,'Art Department Coordinator'),(102382,1347750,8,'Costume Supervisor'),(102382,1347760,9,'Dialect Coach'),(102382,1357059,5,'Dialogue Editor'),(102382,1360093,7,'Set Designer'),(102382,1360094,7,'Set Designer'),(102382,1360095,7,'Greensman'),(102382,1360096,5,'Dialogue Editor'),(102382,1360097,5,'Dialogue Editor'),(102382,1360098,6,'Sound Effects Editor'),(102382,1360099,6,'Sound Effects Editor'),(102382,1360100,6,'Sound Effects Editor'),(102382,1360101,6,'Foley'),(102382,1360102,6,'Boom Operator'),(102382,1360103,6,'Supervising Sound Editor'),(102382,1360107,10,'Visual Effects Supervisor'),(102382,1360108,10,'Visual Effects Supervisor'),(102382,1360109,10,'Visual Effects Producer'),(102382,1360110,10,'Visual Effects Supervisor'),(102382,1360111,6,'Music Editor'),(102382,1360114,9,'Studio Teachers'),(102382,1360116,3,'Location Manager'),(102382,1399304,9,'Visual Effects Editor'),(102382,1399447,7,'Assistant Art Director'),(102382,1399448,7,'Assistant Art Director'),(102382,1399449,7,'Assistant Art Director'),(102382,1399451,7,'Assistant Art Director'),(102382,1399453,7,'Assistant Art Director'),(102382,1399455,7,'Assistant Art Director'),(102382,1399456,9,'Scenic Artist'),(102382,1399457,9,'Scenic Artist'),(102382,1399458,9,'Scenic Artist'),(102382,1399459,9,'Scenic Artist'),(102382,1399461,9,'Scenic Artist'),(102382,1399463,7,'Leadman'),(102382,1399467,1,'Camera Operator'),(102382,1399469,1,'Camera Operator'),(102382,1399471,1,'Camera Operator'),(102382,1399473,1,'Camera Operator'),(102382,1399475,11,'Gaffer'),(102382,1399476,8,'Set Costumer'),(102382,1399477,8,'Set Costumer'),(102382,1399478,5,'Digital Intermediate'),(102382,1399479,3,'Publicist'),(102382,1399481,2,'Script Supervisor'),(102382,1399483,3,'Production Manager'),(102382,1399484,3,'Production Supervisor'),(102382,1450992,10,'Animation'),(102382,1452997,10,'Animation'),(102382,1455598,10,'Animation'),(102382,1460607,10,'Animation'),(102382,1460648,9,'Compositors'),(102382,1460652,9,'Compositors'),(102382,1460655,9,'Compositors'),(102382,1463182,10,'VFX Artist'),(102382,1463183,9,'Compositors'),(49013,7879,2,'Director'),(49013,7879,4,'Original Story'),(49013,7888,7,'Production Design'),(49013,7924,2,'Script Supervisor'),(49013,7956,7,'Art Direction'),(49013,7960,7,'Sculptor'),(49013,7988,1,'Director of Photography'),(49013,8015,9,'Supervising Animator'),(49013,8040,10,'Animation Director'),(49013,8046,9,'Supervising Animator'),(49013,8103,3,'Associate Producer'),(49013,8153,9,'Post Production Supervisor'),(49013,12897,9,'Thanks'),(49013,12912,1,'Director of Photography'),(49013,15892,4,'Original Story'),(49013,15894,6,'Sound Designer'),(49013,15347,6,'Original Music Composer'),(49013,15354,6,'Music Editor'),(49013,32532,2,'Director'),(49013,32532,4,'Original Story'),(49013,57673,3,'Casting'),(49013,59363,5,'Editor'),(49013,129975,4,'Screenplay'),(49013,953331,9,'Executive Music Producer'),(49013,963497,3,'Casting'),(49013,970529,3,'Producer'),(49013,972432,7,'Art Direction'),(49013,1291315,6,'Music Supervisor'),(49013,1447565,4,'Storyboard'),(49013,1516157,7,'Art Direction'),(49013,1609019,9,'Supervising Technical Director'),(49013,1609021,3,'Production Manager'),(49013,1609024,4,'Characters'),(49013,1609027,4,'Characters'),(49013,1609031,2,'Script Supervisor'),(49013,1609033,5,'Editorial Manager'),(49013,1609036,5,'Additional Editing'),(49013,1609041,10,'Animation Manager'),(49013,1609044,10,'Animation Director'),(49013,1609045,10,'Animation Fix Coordinator'),(44912,647,1,'Director of Photography'),(44912,1213,6,'Original Music Composer'),(44912,1314,7,'Production Design'),(44912,1322,8,'Costume Design'),(44912,8706,7,'Set Decoration'),(44912,10296,4,'Screenplay'),(44912,8281,7,'Assistant Art Director'),(44912,10702,2,'Director'),(44912,18457,3,'Casting'),(44912,39923,7,'Supervising Art Director'),(44912,58470,3,'Producer'),(44912,62739,3,'Executive Producer'),(44912,66567,3,'Executive Producer'),(44912,88967,4,'Screenplay'),(44912,88967,3,'Producer'),(44912,171830,4,'Screenplay'),(44912,191937,4,'Screenplay'),(44912,211962,3,'Producer'),(44912,229345,6,'ADR & Dubbing'),(44912,575766,7,'Conceptual Design'),(44912,960282,7,'Art Direction'),(44912,983446,7,'Assistant Art Director'),(44912,1271756,7,'Art Direction'),(44912,1319843,8,'Makeup Department Head'),(44912,1335066,9,'Property Master'),(44912,1337643,7,'Art Department Coordinator'),(44912,1345635,2,'Script Supervisor'),(44912,1357052,7,'Conceptual Design'),(44912,1389131,7,'Construction Coordinator'),(44912,1406137,2,'Script Supervisor'),(44912,1409824,8,'Wigmaker'),(44912,1414993,7,'Art Department Coordinator'),(44912,1415333,8,'Makeup Artist'),(44912,1428582,8,'Hairstylist'),(44912,1428584,8,'Hairstylist'),(44912,1432033,8,'Makeup Artist'),(44912,1447543,10,'Visual Effects'),(44912,1453022,10,'Animation'),(44912,1459752,10,'Animation'),(44912,1463182,10,'VFX Artist'),(44912,1463183,10,'VFX Artist'),(44912,1465618,7,'Art Direction'),(44912,1465622,8,'Hairstylist'),(44912,1465623,8,'Hairstylist'),(44912,1465624,8,'Wigmaker'),(44912,1465625,7,'Art Department Coordinator'),(44912,1676849,9,'Stunts'),(168259,2127,2,'Director'),(168259,2519,8,'Costume Design'),(168259,7239,6,'Sound Designer'),(168259,6668,5,'Editor'),(168259,13670,9,'Second Unit Cinematographer'),(168259,6041,6,'Original Music Composer'),(168259,8162,4,'Characters'),(168259,8167,9,'Thanks'),(168259,8181,3,'Producer'),(168259,9545,3,'Casting'),(168259,11874,3,'Producer'),(168259,12562,6,'ADR & Dubbing'),(168259,12562,5,'Dialogue Editor'),(168259,12835,3,'Producer'),(168259,15330,8,'Makeup Artist'),(168259,52600,7,'Production Design'),(168259,58191,3,'Executive Producer'),(168259,58191,4,'Writer'),(168259,57158,9,'Second Unit Cinematographer'),(168259,58192,1,'Director of Photography'),(168259,62813,5,'Editor'),(168259,62780,7,'Art Direction'),(168259,74989,1,'Camera Operator'),(168259,90635,3,'Executive Producer'),(168259,75826,3,'Producer'),(168259,75391,7,'Set Decoration'),(168259,82169,1,'Steadicam Operator'),(168259,84064,3,'Associate Producer'),(168259,91122,1,'Helicopter Camera'),(168259,110262,5,'First Assistant Editor'),(168259,548445,6,'Foley'),(168259,1077782,6,'Foley'),(168259,1194885,5,'First Assistant Editor'),(168259,1204244,5,'Editor'),(168259,1204245,5,'Editor'),(168259,1236340,6,'Foley'),(168259,1276602,3,'Casting'),(168259,1309209,8,'Makeup Department Head'),(168259,1309884,6,'Supervising Sound Editor'),(168259,1317667,8,'Makeup Artist'),(168259,1326651,7,'Assistant Art Director'),(168259,1328758,6,'Music Editor'),(168259,1338147,7,'Construction Coordinator'),(168259,1342658,5,'Dialogue Editor'),(168259,1367362,6,'Foley'),(168259,1375920,1,'Additional Camera'),(168259,1378241,1,'Camera Operator'),(168259,1389138,2,'Script Supervisor'),(168259,1392083,6,'Sound Designer'),(168259,1393405,6,'Music Editor'),(168259,1394130,6,'Sound Re-Recording Mixer'),(168259,1394131,6,'Sound Re-Recording Mixer'),(168259,1395281,1,'Additional Camera'),(168259,1400354,5,'Digital Intermediate'),(168259,1403412,11,'Gaffer'),(168259,1404739,1,'Helicopter Camera'),(168259,1405376,7,'Assistant Art Director'),(168259,1408293,8,'Hairstylist'),(168259,1408356,1,'Camera Operator'),(168259,1408365,2,'Script Supervisor'),(168259,1411271,1,'Camera Operator'),(168259,1411842,1,'Camera Operator'),(168259,1412767,8,'Hairstylist'),(168259,1413125,8,'Set Costumer'),(168259,1413453,6,'Sound Effects Editor'),(168259,1414497,9,'Property Master'),(168259,1415019,8,'Set Costumer'),(168259,1419105,1,'Still Photographer'),(168259,1421687,1,'Director of Photography'),(168259,1424153,7,'Supervising Art Director'),(168259,1425409,8,'Hairstylist'),(168259,1432918,1,'Camera Operator'),(168259,1434896,1,'Camera Operator'),(168259,1437304,11,'Gaffer'),(168259,1437798,8,'Makeup Artist'),(168259,1439104,1,'Camera Operator'),(168259,1439108,11,'Rigging Gaffer'),(168259,1439109,8,'Costume Supervisor'),(168259,1439747,8,'Costume Supervisor'),(168259,1439749,5,'First Assistant Editor'),(168259,1442137,10,'Animation Supervisor'),(168259,1445830,7,'Art Direction'),(168259,1452643,8,'Hairstylist'),(168259,1455610,10,'Animation'),(168259,1459196,8,'Makeup Artist'),(168259,1464516,9,'Property Master'),(168259,1493864,7,'Art Direction'),(168259,1506359,7,'Art Department Coordinator'),(168259,1506360,7,'Art Department Coordinator'),(168259,1506364,8,'Set Costumer'),(168259,1506365,8,'Set Costumer'),(168259,1506366,8,'Set Costumer'),(168259,1506367,8,'Hairstylist'),(168259,1506368,8,'Makeup Artist'),(168259,1506369,8,'Makeup Artist'),(168259,1506371,1,'Camera Operator'),(168259,1506373,1,'Camera Operator'),(168259,1506377,10,'Animation Supervisor'),(72190,287,3,'Producer'),(72190,7229,6,'Original Music Composer'),(72190,9987,3,'Producer'),(72190,8288,3,'Unit Production Manager'),(72190,9817,7,'Production Design'),(72190,9819,7,'Supervising Art Director'),(72190,10123,5,'Editor'),(72190,10125,7,'Set Decoration'),(72190,12995,2,'Director'),(72190,13005,5,'Editor'),(72190,16729,3,'Executive Producer'),(72190,32608,3,'Executive Producer'),(72190,17675,8,'Costume Design'),(72190,20458,3,'Producer'),(72190,29018,3,'Executive Producer'),(72190,33045,4,'Screenstory'),(72190,36603,4,'Screenplay'),(72190,36603,4,'Screenstory'),(72190,41330,3,'Executive Producer'),(72190,47506,4,'Screenplay'),(72190,53346,3,'Casting'),(72190,58433,3,'Executive Producer'),(72190,63310,1,'Director of Photography'),(72190,114479,3,'Executive Producer'),(72190,28974,4,'Screenplay'),(72190,112044,4,'Novel'),(72190,967387,3,'Producer'),(72190,1407019,9,'Visual Effects Editor'),(72190,1427849,2,'Script Supervisor'),(72190,1453612,10,'Animation Supervisor'),(72190,1583827,10,'Visual Effects Supervisor'),(127585,957,4,'Story'),(127585,3276,3,'Casting'),(127585,6184,3,'Executive Producer'),(127585,6186,3,'Associate Producer'),(127585,7200,3,'Producer'),(127585,7624,3,'Executive Producer'),(127585,10956,3,'Executive Producer'),(127585,9624,9,'Stunt Coordinator'),(127585,9651,6,'Sound Designer'),(127585,9651,6,'Supervising Sound Editor'),(127585,9032,2,'Director'),(127585,9032,3,'Producer'),(127585,9039,5,'Editor'),(127585,9039,6,'Original Music Composer'),(127585,9040,1,'Director of Photography'),(127585,9043,8,'Costume Design'),(127585,9271,7,'Supervising Art Director'),(127585,11092,4,'Screenplay'),(127585,11092,3,'Producer'),(127585,11092,4,'Story'),(127585,14915,7,'Set Decoration'),(127585,16177,6,'Sound Re-Recording Mixer'),(127585,11002,7,'Production Design'),(127585,17611,3,'Casting'),(127585,23447,4,'Story'),(127585,113054,6,'Sound Designer'),(127585,113075,6,'Sound Designer'),(127585,92216,6,'Boom Operator'),(127585,131516,3,'Associate Producer'),(127585,405004,9,'Sound Recordist'),(127585,406204,8,'Makeup Artist'),(127585,584598,3,'Producer'),(127585,934847,4,'Comic Book'),(127585,1178908,7,'Set Designer'),(127585,1194953,9,'Graphic Novel Illustrator'),(127585,1198825,3,'Casting'),(127585,1204225,7,'Set Designer'),(127585,1319389,8,'Costume Supervisor'),(127585,1322016,8,'Costume Supervisor'),(127585,1326401,8,'Makeup Department Head'),(127585,1338372,6,'Foley'),(127585,1340132,10,'Visual Effects Producer'),(127585,1348006,10,'Visual Effects Producer'),(127585,1354916,7,'Art Direction'),(127585,1367494,6,'Sound Effects Editor'),(127585,1377220,6,'Sound Re-Recording Mixer'),(127585,1380378,7,'Set Designer'),(127585,1384358,7,'Art Direction'),(127585,1384359,7,'Art Direction'),(127585,1384360,7,'Set Decoration'),(127585,1384361,8,'Makeup Department Head'),(127585,1384362,7,'Set Designer'),(127585,1384363,7,'Art Department Coordinator'),(127585,1384364,9,'Property Master'),(127585,1384365,7,'Lead Painter'),(127585,1384366,6,'Boom Operator'),(127585,1384367,5,'Dialogue Editor'),(127585,1384368,10,'Visual Effects Producer'),(127585,1384369,10,'Visual Effects Supervisor'),(127585,1384371,9,'Visual Effects Editor'),(127585,1384372,9,'Visual Effects Editor'),(127585,1384373,10,'Visual Effects Supervisor'),(127585,1384374,10,'Visual Effects Producer'),(127585,1384375,10,'Visual Effects Producer'),(127585,1384381,10,'Visual Effects Producer'),(127585,1384386,10,'Visual Effects Supervisor'),(127585,1384387,10,'Visual Effects Supervisor'),(127585,1384388,9,'Stunt Coordinator'),(127585,1384390,9,'Stunt Coordinator'),(127585,1384392,8,'Set Costumer'),(127585,1384393,6,'Music Editor'),(127585,1384394,9,'Transportation Coordinator'),(127585,1384395,9,'Transportation Captain'),(127585,1384396,9,'Transportation Co-Captain'),(127585,1384397,2,'Script Supervisor'),(127585,1384398,2,'Script Supervisor'),(127585,1384399,3,'Location Manager'),(127585,1384400,3,'Location Manager'),(127585,1407019,9,'Visual Effects Editor'),(127585,1412756,9,'Visual Effects Editor'),(127585,1455610,10,'Animation'),(127585,1456696,9,'Compositors'),(127585,1457930,10,'Visual Effects'),(127585,1477203,3,'Co-Producer'),(127585,1486179,3,'Co-Producer'),(127585,1693424,8,'Assistant Costume Designer'),(54138,605,8,'Costume Design'),(54138,670,6,'Sound Designer'),(54138,1745,4,'Characters'),(54138,6052,3,'Casting'),(54138,15344,2,'Director'),(54138,15344,3,'Producer'),(54138,15345,4,'Screenplay'),(54138,15345,3,'Producer'),(54138,15346,4,'Screenplay'),(54138,15346,3,'Producer'),(54138,15347,6,'Original Music Composer'),(54138,15348,1,'Director of Photography'),(54138,15349,5,'Editor'),(54138,15350,5,'Editor'),(54138,15351,7,'Production Design'),(54138,15352,7,'Set Decoration'),(54138,21122,6,'Music Editor'),(54138,29018,3,'Executive Producer'),(54138,31556,8,'Hairstylist'),(54138,32282,8,'Hair Department Head'),(54138,38022,7,'Art Direction'),(54138,40592,3,'Executive Producer'),(54138,41330,3,'Executive Producer'),(54138,28977,3,'Producer'),(54138,58433,3,'Executive Producer'),(54138,60223,7,'Art Direction'),(54138,66491,7,'Supervising Art Director'),(54138,71536,6,'Supervising Sound Editor'),(54138,28974,4,'Screenplay'),(54138,28974,3,'Producer'),(54138,74980,10,'Special Effects Supervisor'),(54138,91912,1,'Camera Operator'),(54138,186721,10,'Visual Effects Producer'),(54138,765144,3,'Casting'),(54138,966100,7,'Art Direction'),(54138,972163,5,'First Assistant Editor'),(54138,1077115,7,'Art Direction'),(54138,1080735,10,'Creature Design'),(54138,1192526,7,'Assistant Art Director'),(54138,1206905,8,'Costume Supervisor'),(54138,1271735,7,'Art Direction'),(54138,1293467,7,'Assistant Art Director'),(54138,1315313,5,'Digital Intermediate'),(54138,1318445,8,'Makeup Artist'),(54138,1330567,8,'Set Costumer'),(54138,1338976,6,'Sound Re-Recording Mixer'),(54138,1339445,7,'Construction Coordinator'),(54138,1339450,10,'Visual Effects Supervisor'),(54138,1340005,10,'Visual Effects Supervisor'),(54138,1345600,10,'Visual Effects Supervisor'),(54138,1352421,6,'Foley'),(54138,1357058,9,'Property Master'),(54138,1364399,9,'Second Unit Cinematographer'),(54138,1376899,5,'Dialogue Editor'),(54138,1393325,10,'Visual Effects Producer'),(54138,1396810,10,'Visual Effects Producer'),(54138,1399319,1,'Still Photographer'),(54138,1399467,1,'Camera Operator'),(54138,1400081,1,'Steadicam Operator'),(54138,1400535,1,'Camera Operator'),(54138,1401893,9,'Visual Effects Editor'),(54138,1403421,2,'Script Supervisor'),(54138,1403430,7,'Art Department Coordinator'),(54138,1412204,1,'Camera Operator'),(54138,1412984,6,'Sound Effects Editor'),(54138,1414187,9,'CG Supervisor'),(54138,1414188,9,'CG Supervisor'),(54138,1414540,8,'Makeup Artist'),(54138,1414558,5,'Digital Intermediate'),(54138,1415464,6,'Sound Effects Editor'),(54138,1415480,9,'Visual Effects Editor'),(54138,1415639,8,'Set Costumer'),(54138,1416093,8,'Key Hair Stylist'),(54138,1418324,10,'Animation'),(54138,1428841,8,'Set Costumer'),(54138,1445834,6,'ADR & Dubbing'),(54138,1445839,10,'Animation Supervisor'),(54138,1445841,9,'Visual Effects Editor'),(54138,1453679,5,'Digital Intermediate'),(54138,1456696,9,'Compositors'),(54138,1458425,9,'Sound Recordist'),(54138,1481282,7,'Art Department Coordinator'),(54138,1484178,6,'Sound Effects Editor'),(54138,1484191,10,'Animation Supervisor'),(54138,1484196,10,'Animation Supervisor'),(54138,1519432,6,'Music Editor'),(54138,1526465,8,'Assistant Costume Designer'),(54138,1548527,8,'Hairstylist'),(54138,1550766,10,'Animation'),(54138,1550768,9,'Visual Effects Art Director'),(54138,1551151,8,'Set Costumer'),(54138,1551530,8,'Makeup Artist'),(54138,1552521,9,'Stunts'),(54138,1556632,5,'Dialogue Editor'),(54138,1572873,6,'Foley'),(54138,1585006,5,'First Assistant Editor'),(54138,1591301,8,'Makeup Department Head'),(54138,1597220,10,'Visual Effects Producer'),(54138,1638520,2,'Script Supervisor'),(54138,1638523,10,'Animation'),(54138,1638524,10,'Animation'),(54138,1638526,9,'CG Supervisor'),(54138,1638527,9,'Digital Effects Supervisor'),(54138,1638528,9,'Visual Effects Art Director'),(54138,1638530,10,'Visual Effects Producer'),(54138,1638534,9,'Sound Recordist'),(54138,1638537,8,'Makeup Artist'),(81005,8376,6,'Supervising Sound Editor'),(81005,498,8,'Costume Design'),(81005,3276,3,'Casting'),(81005,7784,5,'Editor'),(81005,7790,7,'Art Direction'),(81005,8410,7,'Set Decoration'),(81005,9032,2,'Director'),(81005,9033,4,'Screenplay'),(81005,9039,5,'Editor'),(81005,9039,6,'Original Music Composer'),(81005,9039,3,'Associate Producer'),(81005,9040,1,'Director of Photography'),(81005,11225,7,'Art Direction'),(81005,13165,6,'Sound Editor'),(81005,16363,3,'Casting'),(81005,23651,7,'Production Design'),(81005,23454,7,'Art Direction'),(81005,23772,7,'Art Direction'),(81005,42994,3,'Producer'),(81005,42994,4,'Story'),(81005,54211,3,'Executive Producer'),(81005,68691,3,'Executive Producer'),(81005,61091,3,'Executive Producer'),(81005,90281,3,'Executive Producer'),(81005,188869,4,'Screenplay'),(81005,548435,6,'Sound mixer'),(81005,582919,4,'Screenplay'),(81005,582919,4,'Story'),(81005,986687,7,'Art Direction'),(81005,1116283,3,'Executive Producer'),(81005,1196351,3,'Casting'),(81005,1341781,6,'Sound Re-Recording Mixer'),(81005,1378169,6,'Sound Re-Recording Mixer'),(81005,1378697,6,'Sound Re-Recording Mixer'),(81005,1378722,6,'Music Editor'),(81005,1380003,2,'Script Supervisor'),(81005,1384393,6,'Music Editor'),(81005,1415009,5,'Dialogue Editor'),(81005,1457930,10,'Visual Effects'),(81005,1548134,1,'Still Photographer'),(81005,1553743,6,'Production Sound Mixer'),(81005,1561989,6,'First Assistant Sound Editor'),(81005,1561994,7,'Art Department Coordinator'),(64682,1720,3,'Casting'),(64682,123,3,'Executive Producer'),(64682,6201,4,'Screenplay'),(64682,6201,2,'Director'),(64682,6201,3,'Producer'),(64682,6203,3,'Producer'),(64682,6211,4,'Screenplay'),(64682,7045,6,'Original Music Composer'),(64682,12202,3,'Producer'),(64682,12382,1,'Director of Photography'),(64682,33195,7,'Art Direction'),(64682,19862,3,'Producer'),(64682,37281,3,'Casting'),(64682,40035,4,'Novel'),(64682,52370,7,'Art Direction'),(64682,62745,7,'Set Decoration'),(64682,84932,3,'Executive Producer'),(64682,962431,7,'Art Direction'),(68726,10828,2,'Director'),(68726,114016,4,'Screenplay'),(68726,10828,4,'Screenplay'),(68726,10851,6,'Original Music Composer'),(68726,3113,1,'Director of Photography'),(68726,10833,5,'Editor'),(68726,67810,5,'Editor'),(68726,6045,7,'Production Design'),(68726,8315,7,'Production Design'),(68726,213644,8,'Costume Design'),(68726,957970,7,'Set Decoration'),(68726,114016,4,'Story'),(68726,10828,3,'Producer'),(68726,61091,3,'Producer'),(68726,114408,3,'Producer'),(68726,54211,3,'Producer'),(68726,19770,3,'Executive Producer'),(68726,6347,3,'Casting'),(68726,1311175,7,'Art Direction'),(68726,223991,7,'Art Direction'),(68726,8285,7,'Supervising Art Director'),(68726,10836,7,'Supervising Art Director'),(68726,1456696,9,'Compositors'),(68726,1450362,10,'Visual Effects'),(68726,1460628,10,'Visual Effects'),(68726,1463784,9,'Digital Effects Supervisor'),(68726,1447542,9,'Compositors'),(38356,2215,3,'Casting'),(38356,488,3,'Executive Producer'),(38356,15841,5,'Editor'),(38356,865,2,'Director'),(38356,865,3,'Executive Producer'),(38356,3183,3,'Producer'),(38356,9987,3,'Producer'),(38356,10952,3,'Producer'),(38356,15244,4,'Screenplay'),(38356,8285,7,'Supervising Art Director'),(38356,8527,8,'Costume Design'),(38356,9817,7,'Production Design'),(38356,10118,3,'Producer'),(38356,10123,5,'Editor'),(38356,10125,7,'Set Decoration'),(38356,13245,5,'Editor'),(38356,18264,6,'Original Music Composer'),(38356,10994,3,'Producer'),(38356,66696,3,'Production Supervisor'),(38356,59426,3,'Casting'),(38356,68016,6,'Orchestrator'),(38356,1043831,1,'Director of Photography'),(38356,1319844,8,'Costume Supervisor'),(38356,1323090,8,'Makeup Department Head'),(38356,1386923,2,'Script Supervisor'),(38356,1400738,2,'Script Supervisor'),(38356,1445842,1,'Still Photographer'),(38356,1463568,9,'Digital Effects Supervisor'),(38356,1552521,9,'Stunts'),(105864,10,4,'Story'),(105864,7879,3,'Producer'),(105864,5359,6,'Original Music Composer'),(105864,8320,6,'Original Music Composer'),(105864,21198,2,'Director'),(105864,21198,4,'Story'),(105864,182001,4,'Story'),(105864,970529,3,'Producer'),(105864,1117786,4,'Story'),(105864,1457025,4,'Screenplay'),(105864,1457025,4,'Story'),(62177,1305,6,'Music Editor'),(62177,3996,6,'Sound Re-Recording Mixer'),(62177,5338,6,'Sound Effects Editor'),(62177,7901,3,'Producer'),(62177,7972,3,'Production Manager'),(62177,7978,1,'Camera Operator'),(62177,7981,1,'Director of Photography'),(62177,8012,9,'Supervising Animator'),(62177,8078,6,'Sound Designer'),(62177,8160,6,'Foley'),(62177,8163,6,'Foley'),(62177,9152,6,'Original Music Composer'),(62177,12092,7,'Production Design'),(62177,12890,3,'Executive Producer'),(62177,15893,6,'Sound Effects Editor'),(62177,56041,4,'Screenplay'),(62177,57673,3,'Casting'),(62177,59803,4,'Screenplay'),(62177,59803,2,'Director'),(62177,59803,4,'Story'),(62177,126638,4,'Screenplay'),(62177,126638,2,'Director'),(62177,137262,4,'Screenplay'),(62177,137262,2,'Director'),(62177,963497,3,'Casting'),(62177,1335568,6,'Music Editor'),(62177,1371609,10,'Shading'),(62177,1376902,6,'Supervising Sound Editor'),(62177,1406872,6,'Sound Effects Editor'),(62177,1406873,6,'Sound Effects Editor'),(62177,1406875,10,'Simulation & Effects Artist'),(62177,1406876,10,'Simulation & Effects Artist'),(62177,1406877,10,'Simulation & Effects Artist'),(62177,1406878,10,'Simulation & Effects Artist'),(62177,1406879,10,'Simulation & Effects Artist'),(62177,1406880,10,'Simulation & Effects Artist'),(62177,1406881,10,'Animation Fix Coordinator'),(62177,1406885,9,'Supervising Animator'),(62177,1406887,3,'Publicist'),(62177,1406889,3,'Publicist'),(62177,1406890,3,'Publicist'),(62177,1406891,2,'Script Supervisor'),(62177,1447565,4,'Story'),(62177,1450317,3,'Production Manager'),(188927,1745,4,'Characters'),(188927,2486,7,'Production Design'),(188927,2519,8,'Costume Design'),(188927,7239,6,'Supervising Sound Editor'),(188927,6052,3,'Casting'),(188927,8850,3,'Associate Producer'),(188927,11108,4,'Screenplay'),(188927,12384,7,'Set Decoration'),(188927,15344,3,'Producer'),(188927,15346,3,'Producer'),(188927,15347,6,'Music'),(188927,15354,6,'Music Editor'),(188927,29018,3,'Executive Producer'),(188927,32200,7,'Art Direction'),(188927,38022,7,'Art Direction'),(188927,40592,3,'Executive Producer'),(188927,28977,3,'Producer'),(188927,58189,2,'Director'),(188927,58189,3,'Producer'),(188927,58192,1,'Director of Photography'),(188927,58193,5,'Editor'),(188927,58433,3,'Executive Producer'),(188927,61177,7,'Art Direction'),(188927,61277,7,'Art Direction'),(188927,65779,4,'Screenplay'),(188927,67695,6,'Music Editor'),(188927,75375,8,'Makeup Designer'),(188927,82169,1,'Steadicam Operator'),(188927,122274,10,'Visual Effects Supervisor'),(188927,186721,10,'Visual Effects Producer'),(188927,186721,3,'Associate Producer'),(188927,229828,7,'Conceptual Design'),(188927,765144,3,'Casting'),(188927,931286,5,'Editor'),(188927,961544,7,'Supervising Art Director'),(188927,986277,3,'Casting'),(188927,1081075,7,'Conceptual Design'),(188927,1106751,3,'Executive Producer'),(188927,1122003,3,'Casting'),(188927,1155432,3,'Casting Associate'),(188927,1192526,7,'Art Direction'),(188927,1194885,5,'First Assistant Editor'),(188927,1202779,8,'Assistant Costume Designer'),(188927,1204243,5,'Editor'),(188927,1204245,5,'Editor'),(188927,1271735,7,'Art Direction'),(188927,1293467,7,'Art Direction'),(188927,1311175,7,'Art Direction'),(188927,1314457,8,'Hairstylist'),(188927,1338372,6,'Foley'),(188927,1345600,10,'Visual Effects Supervisor'),(188927,1345602,10,'Visual Effects Producer'),(188927,1352983,2,'Script Supervisor'),(188927,1357046,7,'Conceptual Design'),(188927,1360099,6,'Sound Effects Editor'),(188927,1364399,9,'Second Unit Cinematographer'),(188927,1378676,7,'Conceptual Design'),(188927,1378716,1,'Still Photographer'),(188927,1386918,10,'Visual Effects Producer'),(188927,1389671,1,'Additional Camera'),(188927,1394130,6,'Sound Re-Recording Mixer'),(188927,1394952,10,'Special Effects Supervisor'),(188927,1395430,7,'Art Department Coordinator'),(188927,1399475,11,'Gaffer'),(188927,1401140,9,'Visual Effects Editor'),(188927,1404739,1,'Helicopter Camera'),(188927,1407685,5,'First Assistant Editor'),(188927,1408381,10,'Visual Effects Producer'),(188927,1410580,10,'Pre-Visualization Supervisor'),(188927,1413453,6,'Sound Designer'),(188927,1418404,11,'Rigging Gaffer'),(188927,1420157,10,'Visual Effects Supervisor'),(188927,1426828,6,'Foley'),(188927,1429626,3,'Casting'),(188927,1431099,8,'Set Costumer'),(188927,1439109,8,'Costume Supervisor'),(188927,1439740,10,'Visual Effects Supervisor'),(188927,1447571,7,'Assistant Art Director'),(188927,1459914,10,'Visual Effects Supervisor'),(188927,1481282,7,'Art Department Coordinator'),(188927,1519426,7,'Assistant Art Director'),(188927,1519437,8,'Set Costumer'),(188927,1530723,1,'First Assistant Camera'),(188927,1531512,9,'Visual Effects Editor'),(188927,1531862,8,'Costume Supervisor'),(188927,1548462,6,'Sound Designer'),(188927,1580832,8,'Set Costumer'),(188927,1603473,9,'Stunts'),(188927,1621492,7,'Construction Coordinator'),(188927,1636657,3,'Executive Producer'),(188927,1638547,3,'Researcher'),(188927,1638548,7,'Art Direction'),(188927,1638550,7,'Assistant Art Director'),(188927,1638551,7,'Conceptual Design'),(188927,1638552,1,'Camera Operator'),(188927,1638553,1,'Camera Operator'),(188927,1638554,1,'First Assistant Camera'),(188927,1638555,1,'First Assistant Camera'),(188927,1638556,11,'Gaffer'),(188927,1638557,8,'Assistant Costume Designer'),(188927,1638558,8,'Seamstress'),(188927,1638559,8,'Set Costumer'),(188927,1638560,8,'Set Costumer'),(188927,1638562,10,'Visual Effects Coordinator'),(188927,1638563,10,'Visual Effects Coordinator'),(188927,1638564,10,'Visual Effects Producer'),(188927,1638565,10,'Visual Effects Producer'),(188927,1687043,3,'Associate Producer'),(76757,1296,3,'Executive Producer'),(76757,1851,5,'Editor'),(76757,2483,1,'Director of Photography'),(76757,2953,3,'Casting'),(76757,6209,8,'Costume Design'),(76757,6235,7,'Art Direction'),(76757,8528,3,'Producer'),(76757,9339,2,'Director'),(76757,9339,3,'Producer'),(76757,9339,4,'Writer'),(76757,9340,2,'Director'),(76757,9340,4,'Writer'),(76757,9340,3,'Producer'),(76757,9344,7,'Production Design'),(76757,9349,6,'Supervising Sound Editor'),(76757,9583,7,'Supervising Art Director'),(76757,11354,9,'Stunt Coordinator'),(76757,11268,3,'Executive Producer'),(76757,11270,7,'Set Decoration'),(76757,15347,6,'Original Music Composer'),(76757,71579,7,'Art Direction'),(76757,135727,1,'Camera Operator'),(76757,536491,10,'Visual Effects Producer'),(76757,548444,6,'Sound Effects Editor'),(76757,575766,7,'Conceptual Design'),(76757,937975,10,'Visual Effects Supervisor'),(76757,1116937,6,'Foley'),(76757,1141796,7,'Art Direction'),(76757,1194083,10,'Visual Effects Supervisor'),(76757,1194087,10,'Visual Effects Producer'),(76757,1327144,7,'Art Direction'),(76757,1327792,8,'Costume Supervisor'),(76757,1334458,9,'Property Master'),(76757,1337393,7,'Assistant Art Director'),(76757,1338152,6,'Sound Designer'),(76757,1340110,7,'Assistant Art Director'),(76757,1341786,6,'Sound Effects Editor'),(76757,1357052,7,'Conceptual Design'),(76757,1368866,6,'Sound Designer'),(76757,1373728,11,'Gaffer'),(76757,1376803,10,'Visual Effects Supervisor'),(76757,1379989,10,'Visual Effects Supervisor'),(76757,1380003,2,'Script Supervisor'),(76757,1387184,10,'Visual Effects Supervisor'),(76757,1387252,9,'Stunt Coordinator'),(76757,1389136,6,'Music Editor'),(76757,1390368,1,'Camera Operator'),(76757,1392245,1,'Still Photographer'),(76757,1393326,10,'VFX Supervisor'),(76757,1394286,10,'Visual Effects Supervisor'),(76757,1394299,9,'Visual Effects Editor'),(76757,1397823,6,'Foley'),(76757,1398101,9,'Visual Effects Editor'),(76757,1400088,6,'Music Editor'),(76757,1401593,1,'Helicopter Camera'),(76757,1404214,5,'Dialogue Editor'),(76757,1404214,6,'ADR & Dubbing'),(76757,1411333,9,'Visual Effects Editor'),(76757,1411341,1,'Helicopter Camera'),(76757,1411533,10,'Visual Effects Supervisor'),(76757,1415500,1,'Camera Operator'),(76757,1417822,9,'Visual Effects Editor'),(76757,1417830,9,'Sequence Supervisor'),(76757,1421648,9,'Visual Effects Editor'),(76757,1421662,5,'Digital Intermediate'),(76757,1424707,11,'Rigging Gaffer'),(76757,1428190,9,'Special Effects Coordinator'),(76757,1428917,1,'Camera Operator'),(76757,1432599,6,'First Assistant Sound Editor'),(76757,1447542,9,'Compositors'),(76757,1453238,5,'First Assistant Editor'),(76757,1460648,9,'Compositors'),(76757,1460652,9,'Compositors'),(76757,1461629,9,'Visual Effects Editor'),(76757,1463182,10,'VFX Artist'),(76757,1465632,7,'Art Direction'),(76757,1482833,7,'Art Direction'),(76757,1482834,7,'Art Department Coordinator'),(76757,1482835,7,'Art Department Coordinator'),(76757,1482836,7,'Construction Coordinator'),(76757,1482837,6,'Foley'),(76757,1482840,9,'CG Supervisor'),(76757,1482841,10,'Animation Supervisor'),(76757,1482842,9,'CG Supervisor'),(76757,1482843,9,'CG Supervisor'),(76757,1482845,1,'Still Photographer'),(76757,1482846,8,'Set Costumer'),(76757,1482847,8,'Set Costumer'),(76757,1482848,5,'First Assistant Editor'),(76757,1482849,9,'Dialect Coach'),(76757,1483135,10,'VFX Production Coordinator'),(76757,1483136,10,'VFX Production Coordinator'),(76757,1483137,10,'Visual Effects Producer'),(76757,1483138,10,'Visual Effects Producer'),(76757,1483139,10,'Visual Effects Producer'),(76757,1483140,10,'Visual Effects Producer'),(76757,1483141,10,'Visual Effects Supervisor'),(76757,1483142,9,'Sequence Supervisor'),(76757,1483143,9,'Sequence Supervisor'),(76757,1483144,10,'Visual Effects Supervisor'),(76757,1483146,10,'Visual Effects Supervisor'),(76757,1558697,11,'Gaffer'),(76757,1632596,11,'Electrician'),(258489,1707,4,'Screenplay'),(258489,2593,6,'Original Music Composer'),(258489,5491,7,'Production Design'),(258489,11343,2,'Director'),(258489,11345,5,'Editor'),(258489,23422,9,'Cinematography'),(258489,15776,4,'Story'),(258489,53267,4,'Screenplay'),(258489,55474,4,'Writer'),(258489,1106745,4,'Screenplay'),(258489,1447388,10,'Animation'),(258489,1459911,9,'Visual Effects Editor'),(246655,1314,7,'Production Design'),(246655,3276,3,'Casting'),(246655,8706,7,'Set Decoration'),(246655,6184,3,'Executive Producer'),(246655,7200,3,'Producer'),(246655,7624,4,'Characters'),(246655,10956,3,'Executive Producer'),(246655,9651,6,'Sound Designer'),(246655,9032,2,'Director'),(246655,9032,3,'Executive Producer'),(246655,9032,4,'Writer'),(246655,9039,5,'Editor'),(246655,9039,6,'Original Music Composer'),(246655,9039,3,'Co-Producer'),(246655,9040,1,'Director of Photography'),(246655,9043,8,'Costume Design'),(246655,11092,3,'Producer'),(246655,11092,4,'Writer'),(246655,11012,4,'Writer'),(246655,18866,4,'Characters'),(246655,20406,9,'Second Unit Cinematographer'),(246655,25020,8,'Makeup Department Head'),(246655,32806,5,'Digital Intermediate'),(246655,113054,6,'Sound Designer'),(246655,113073,6,'Sound Re-Recording Mixer'),(246655,113075,6,'Sound Designer'),(246655,113098,10,'Special Effects Supervisor'),(246655,11013,4,'Writer'),(246655,75294,8,'Makeup Artist'),(246655,1328146,8,'Makeup Artist'),(246655,1337455,7,'Construction Coordinator'),(246655,1338372,6,'Foley'),(246655,1354916,7,'Art Direction'),(246655,1360099,6,'Sound Designer'),(246655,1367493,6,'Foley'),(246655,1378722,6,'Music Editor'),(246655,1384367,5,'Dialogue Editor'),(246655,1384372,5,'First Assistant Editor'),(246655,1384393,6,'Music Editor'),(246655,1384398,2,'Script Supervisor'),(246655,1389623,8,'Costume Supervisor'),(246655,1394756,1,'Camera Operator'),(246655,1394757,11,'Gaffer'),(246655,1394952,10,'Special Effects Supervisor'),(246655,1398946,6,'Supervising Sound Editor'),(246655,1399057,5,'Dialogue Editor'),(246655,1401309,2,'Script Supervisor'),(246655,1402032,1,'Steadicam Operator'),(246655,1405201,8,'Makeup Artist'),(246655,1406253,5,'Digital Intermediate'),(246655,1407028,1,'Still Photographer'),(246655,1409701,7,'Art Direction'),(246655,1409824,8,'Wigmaker'),(246655,1412306,3,'Casting Associate'),(246655,1412588,9,'CG Supervisor'),(246655,1414558,5,'Digital Intermediate'),(246655,1420574,1,'Camera Operator'),(246655,1459922,9,'CG Supervisor'),(246655,1483135,10,'VFX Editor'),(246655,1494205,9,'CG Supervisor'),(246655,1494209,1,'Helicopter Camera'),(246655,1519863,1,'Camera Operator'),(246655,1521757,10,'Special Effects Supervisor'),(246655,1525883,8,'Assistant Costume Designer'),(246655,1544669,6,'Foley'),(246655,1548869,9,'CG Supervisor'),(246655,1551344,9,'Stunts'),(246655,1551367,6,'Foley'),(246655,1552396,5,'Dialogue Editor'),(246655,1570586,8,'Set Costumer'),(246655,1571046,8,'Hair Department Head'),(246655,1585735,9,'CG Supervisor'),(246655,1609856,9,'Digital Effects Supervisor'),(246655,1637287,8,'Set Costumer'),(246655,1693479,1,'Underwater Camera'),(246655,1706692,11,'Rigging Grip'),(246655,1712626,7,'Art Direction'),(246655,1712629,7,'Set Decoration'),(246655,1712630,10,'Animation Director'),(246655,1712631,3,'Casting Associate'),(246655,1713049,8,'Assistant Costume Designer'),(246655,1713050,1,'Still Photographer'),(246655,1713051,11,'Rigging Grip'),(246655,1713054,10,'Animation Supervisor'),(246655,1713056,9,'CG Supervisor'),(246655,1713057,9,'CG Supervisor'),(246655,1713059,9,'Digital Effects Supervisor'),(246655,1713063,10,'VFX Editor'),(246655,1713064,10,'VFX Editor'),(246655,1713066,10,'VFX Editor'),(246655,1713067,8,'Hairstylist'),(246655,1713068,8,'Key Hair Stylist'),(246655,1713069,8,'Makeup Artist'),(246655,1713075,5,'Digital Intermediate'),(246655,1713076,5,'First Assistant Editor'),(246655,1753720,8,'Makeup Artist'),(44826,85,3,'Producer'),(44826,149,1,'Director of Photography'),(44826,117,6,'Original Music Composer'),(44826,932,4,'Screenplay'),(44826,1032,2,'Director'),(44826,1032,3,'Producer'),(44826,1638,6,'Sound Designer'),(44826,2242,3,'Casting'),(44826,2366,7,'Production Design'),(44826,2947,3,'Executive Producer'),(44826,3661,5,'Editor'),(44826,4843,9,'Post Production Supervisor'),(44826,10571,3,'Line Producer'),(44826,7170,3,'Executive Producer'),(44826,9026,7,'Set Decoration'),(44826,9027,8,'Costume Design'),(44826,12781,3,'Executive Producer'),(44826,15004,3,'Executive Producer'),(44826,16729,3,'Producer'),(44826,23773,7,'Art Direction'),(44826,30338,8,'Hairstylist'),(44826,30714,9,'Thanks'),(44826,45648,3,'Executive Producer'),(44826,92373,6,'Foley'),(44826,92376,6,'Foley'),(44826,92379,6,'First Assistant Sound Editor'),(44826,92386,6,'ADR & Dubbing'),(44826,114479,3,'Producer'),(44826,115099,9,'Visual Effects Editor'),(44826,121740,9,'Thanks'),(44826,142094,9,'Post Production Supervisor'),(44826,142157,9,'Stunt Coordinator'),(44826,548446,6,'ADR & Dubbing'),(44826,938107,3,'Executive Producer'),(44826,938234,4,'Writer'),(44826,1039164,6,'Foley'),(44826,1308375,6,'Foley'),(44826,1328380,8,'Costume Supervisor'),(44826,1330586,8,'Makeup Designer'),(44826,1333223,5,'Dialogue Editor'),(44826,1346934,7,'Supervising Art Director'),(44826,1384375,10,'Visual Effects'),(44826,1392908,10,'Visual Effects Producer'),(44826,1393351,6,'Scoring Mixer'),(44826,1393448,1,'Still Photographer'),(44826,1394750,10,'Visual Effects'),(44826,1394755,10,'VFX Artist'),(44826,1395713,6,'Production Sound Mixer'),(44826,1397846,10,'Visual Effects'),(44826,1400072,6,'Sound Re-Recording Mixer'),(44826,1401566,10,'Visual Effects Producer'),(44826,1402037,6,'Music Editor'),(44826,1402039,2,'Script Supervisor'),(44826,1404901,6,'ADR & Dubbing'),(44826,1406965,9,'Stunts'),(44826,1407198,9,'Sound Recordist'),(44826,1407696,5,'Digital Intermediate'),(44826,1411069,8,'Makeup Artist'),(44826,1427499,8,'Wigmaker'),(44826,1427522,3,'Location Manager'),(44826,1430498,11,'Gaffer'),(44826,1437312,8,'Assistant Costume Designer'),(44826,1442172,9,'Transportation Coordinator'),(44826,1445479,5,'Dialogue Editor'),(44826,1445972,10,'Special Effects Supervisor'),(44826,1487710,7,'Art Direction'),(44826,1525888,8,'Hair Designer'),(44826,1525892,8,'Makeup Artist'),(44826,1539988,6,'Sound mixer'),(44826,1541842,11,'Best Boy Electrician'),(44826,1544546,3,'Casting Associate'),(44826,1553887,6,'Foley'),(44826,1553891,6,'Sound'),(44826,1554387,10,'VFX Artist'),(44826,1606561,1,'Grip'),(44826,1643667,2,'Assistant Director'),(44826,1652832,8,'Hairstylist'),(297761,282,3,'Producer'),(297761,5914,3,'Casting'),(297761,8678,7,'Production Design'),(297761,9439,6,'Foley'),(297761,51035,8,'Costume Supervisor'),(297761,19769,2,'Director'),(297761,19769,4,'Writer'),(297761,16368,6,'Original Music Composer'),(297761,23546,7,'Supervising Art Director'),(297761,66690,8,'Hairstylist'),(297761,18953,3,'Producer'),(297761,63534,7,'Art Direction'),(297761,67160,1,'Camera Operator'),(297761,67810,5,'Editor'),(297761,71127,1,'Underwater Camera'),(297761,73916,6,'ADR & Dubbing'),(297761,115120,1,'Director of Photography'),(297761,138618,6,'Sound Re-Recording Mixer'),(297761,158916,6,'Sound Re-Recording Mixer'),(297761,211962,3,'Executive Producer'),(297761,213644,8,'Costume Design'),(297761,936841,7,'Art Direction'),(297761,1024910,3,'Casting'),(297761,1168704,9,'Stunts'),(297761,1172813,6,'Supervising Sound Editor'),(297761,1179444,11,'Gaffer'),(297761,1312174,8,'Costume Supervisor'),(297761,1317044,8,'Makeup Artist'),(297761,1318874,8,'Makeup Designer'),(297761,1330567,8,'Set Costumer'),(297761,1345862,1,'Camera Operator'),(297761,1352981,6,'Music Editor'),(297761,1354916,7,'Art Direction'),(297761,1355529,7,'Art Department Coordinator'),(297761,1357043,7,'Art Direction'),(297761,1357062,9,'Special Effects Coordinator'),(297761,1364792,8,'Makeup Department Head'),(297761,1371064,6,'Foley'),(297761,1377132,1,'Camera Operator'),(297761,1377222,6,'Sound Effects Editor'),(297761,1384371,9,'Visual Effects Editor'),(297761,1393407,2,'Script Supervisor'),(297761,1394767,1,'Still Photographer'),(297761,1399323,8,'Set Costumer'),(297761,1399877,1,'Steadicam Operator'),(297761,1400086,8,'Set Costumer'),(297761,1400373,9,'Second Unit Cinematographer'),(297761,1403415,1,'Helicopter Camera'),(297761,1403738,11,'Rigging Gaffer'),(297761,1404366,5,'Dialogue Editor'),(297761,1404739,1,'Helicopter Camera'),(297761,1404850,1,'Still Photographer'),(297761,1415007,5,'Dialogue Editor'),(297761,1415007,6,'ADR & Dubbing'),(297761,1415622,10,'VFX Editor'),(297761,1422810,8,'Prosthetic Supervisor'),(297761,1425969,8,'Hair Department Head'),(297761,1425970,8,'Key Hair Stylist'),(297761,1425973,7,'Art Department Coordinator'),(297761,1449183,2,'Script Supervisor'),(297761,1457911,10,'Special Effects Supervisor'),(297761,1459911,9,'Visual Effects Editor'),(297761,1463804,8,'Set Costumer'),(297761,1494209,1,'Helicopter Camera'),(297761,1517618,5,'First Assistant Editor'),(297761,1529990,6,'Music Supervisor'),(297761,1529999,6,'Music Supervisor'),(297761,1530194,8,'Assistant Costume Designer'),(297761,1548853,8,'Makeup Artist'),(297761,1551659,9,'Video Assist Operator'),(297761,1558697,11,'Gaffer'),(297761,1559367,1,'Camera Operator'),(297761,1559620,8,'Seamstress'),(297761,1563557,9,'Visual Effects Editor'),(297761,1572865,1,'First Assistant Camera'),(297761,1572866,1,'First Assistant Camera'),(297761,1608766,3,'Casting Associate'),(297761,1618130,5,'Digital Intermediate'),(297761,1621454,10,'VFX Editor'),(297761,1621763,9,'Visual Effects Editor'),(297761,1637330,7,'Conceptual Design'),(297761,1713066,10,'VFX Editor'),(297761,1717315,7,'Art Direction'),(297761,1717316,7,'Art Direction'),(297761,1717317,7,'Construction Coordinator'),(297761,1717318,3,'Casting Associate'),(297761,1717319,8,'Seamstress'),(297761,1717320,8,'Set Costumer'),(297761,1717321,8,'Set Costumer'),(297761,1717322,8,'Set Costumer'),(297761,1717323,8,'Set Costumer'),(297761,1717324,1,'Camera Operator'),(297761,1717325,1,'Camera Operator'),(297761,1717326,11,'Gaffer'),(297761,1717327,10,'Animation Supervisor'),(297761,1717340,10,'VFX Production Coordinator'),(297761,1717342,10,'VFX Supervisor'),(297761,1717343,9,'Visual Effects Editor'),(297761,1717344,9,'Visual Effects Editor'),(297761,1717345,6,'Sound Effects Editor'),(297761,1717351,8,'Makeup Artist'),(297761,1717352,5,'Digital Intermediate'),(297761,1717353,5,'First Assistant Editor'),(297761,1717354,1,'First Assistant Camera'),(137113,1113,3,'Casting'),(137113,647,1,'Director of Photography'),(137113,10950,3,'Producer'),(137113,8702,3,'Producer'),(137113,8678,7,'Production Design'),(137113,9033,4,'Screenplay'),(137113,11225,7,'Art Direction'),(137113,11296,7,'Art Direction'),(137113,40823,6,'Foley'),(137113,11694,2,'Director'),(137113,12787,7,'Set Decoration'),(137113,20908,3,'Producer'),(137113,21339,4,'Screenplay'),(137113,23486,6,'Original Music Composer'),(137113,53756,3,'Producer'),(137113,56917,5,'Editor'),(137113,74569,3,'Executive Producer'),(137113,117226,9,'Property Master'),(137113,119665,3,'Producer'),(137113,120254,4,'Screenplay'),(137113,213644,8,'Costume Design'),(137113,937946,1,'Camera Operator'),(137113,962164,7,'Art Direction'),(137113,986687,7,'Art Direction'),(137113,1106823,4,'Novel'),(137113,1106824,3,'Executive Producer'),(137113,1119475,2,'Script Supervisor'),(137113,1119658,5,'First Assistant Editor'),(137113,1189807,1,'Underwater Camera'),(137113,1211781,9,'CG Supervisor'),(137113,1322147,8,'Costume Supervisor'),(137113,1325211,7,'Supervising Art Director'),(137113,1327028,10,'Visual Effects Supervisor'),(137113,1335556,6,'Sound Effects Editor'),(137113,1335559,6,'Supervising Sound Editor'),(137113,1337412,6,'Foley'),(137113,1337423,9,'Choreographer'),(137113,1338113,1,'Camera Operator'),(137113,1341437,3,'Executive Producer'),(137113,1354916,7,'Art Direction'),(137113,1373694,7,'Art Direction'),(137113,1373698,7,'Art Direction'),(137113,1373700,7,'Assistant Art Director'),(137113,1373701,7,'Assistant Art Director'),(137113,1373702,7,'Standby Painter'),(137113,1373703,7,'Assistant Art Director'),(137113,1373708,7,'Art Department Coordinator'),(137113,1373709,7,'Assistant Art Director'),(137113,1373710,7,'Standby Painter'),(137113,1373711,6,'Sound Effects Editor'),(137113,1373712,5,'Dialogue Editor'),(137113,1373714,9,'Special Effects Coordinator'),(137113,1373716,10,'Visual Effects Supervisor'),(137113,1373720,10,'Visual Effects Producer'),(137113,1373723,10,'Visual Effects Supervisor'),(137113,1373724,10,'Visual Effects Producer'),(137113,1373725,10,'Visual Effects Supervisor'),(137113,1373726,10,'Visual Effects Producer'),(137113,1373727,9,'Stunt Coordinator'),(137113,1373728,11,'Gaffer'),(137113,1373729,2,'Script Supervisor'),(137113,1388890,8,'Set Costumer'),(137113,1388897,1,'Camera Operator'),(137113,1389139,1,'Still Photographer'),(137113,1389526,7,'Construction Coordinator'),(137113,1392609,6,'Sound Re-Recording Mixer'),(137113,1392614,6,'Dolby Consultant'),(137113,1393448,1,'Still Photographer'),(137113,1398101,9,'Visual Effects Editor'),(137113,1398972,1,'Underwater Camera'),(137113,1400527,3,'Production Manager'),(137113,1401126,8,'Wigmaker'),(137113,1402096,1,'Camera Operator'),(137113,1402943,2,'Script Supervisor'),(137113,1405241,1,'Helicopter Camera'),(137113,1408848,3,'Location Manager'),(137113,1411095,9,'CG Supervisor'),(137113,1415986,9,'Second Unit Cinematographer'),(137113,1424620,10,'Animation Supervisor'),(137113,1427495,8,'Makeup Artist'),(137113,1428551,2,'Script Supervisor'),(137113,1428893,10,'Animation Supervisor'),(137113,1428894,9,'CG Supervisor'),(137113,1428897,9,'CG Supervisor'),(137113,1428898,9,'CG Supervisor'),(137113,1428901,10,'Animation Supervisor'),(137113,1428902,9,'Visual Effects Editor'),(137113,1428903,9,'Visual Effects Editor'),(137113,1428904,9,'Visual Effects Editor'),(137113,1428905,9,'Visual Effects Editor'),(137113,1428906,9,'Visual Effects Editor'),(137113,1428907,9,'Visual Effects Art Director'),(137113,1428908,8,'Hairstylist'),(137113,1428909,8,'Hairstylist'),(137113,1428910,8,'Hairstylist'),(137113,1428911,8,'Makeup Artist'),(137113,1428912,8,'Makeup Artist'),(137113,1428913,8,'Makeup Artist'),(137113,1428914,8,'Makeup Artist'),(137113,1428915,1,'Camera Operator'),(137113,1428916,1,'Camera Operator'),(137113,1428917,1,'Camera Operator'),(137113,1428918,1,'Camera Operator'),(137113,1428924,8,'Set Costumer'),(137113,1428925,5,'Digital Intermediate'),(137113,1428926,5,'First Assistant Editor'),(137113,1428927,2,'Script Supervisor'),(137113,1428928,3,'Location Manager'),(137113,1431494,3,'Location Manager'),(137113,1463568,10,'Visual Effects'),(137113,1546028,7,'Art Direction'),(150540,7,3,'Executive Producer'),(150540,10,9,'Additional Dialogue'),(150540,7879,3,'Executive Producer'),(150540,3996,6,'Sound Re-Recording Mixer'),(150540,7763,6,'Sound Designer'),(150540,7883,7,'Production Design'),(150540,7901,9,'Thanks'),(150540,7927,10,'Animation'),(150540,7940,3,'Producer'),(150540,7975,1,'Director of Photography'),(150540,7980,2,'Layout'),(150540,7984,2,'Layout'),(150540,8090,10,'Modeling'),(150540,8092,9,'Lighting Camera'),(150540,8103,3,'Associate Producer'),(150540,8155,9,'Projection'),(150540,16961,9,'Additional Writing'),(150540,12890,2,'Director'),(150540,12890,4,'Story'),(150540,12890,4,'Screenplay'),(150540,15347,6,'Original Music Composer'),(150540,17867,9,'Thanks'),(150540,19278,9,'Additional Dialogue'),(150540,56158,9,'Thanks'),(150540,56322,9,'Additional Dialogue'),(150540,57673,3,'Casting'),(150540,59362,10,'Visual Effects'),(150540,72753,9,'Thanks'),(150540,74142,9,'Other'),(150540,84493,3,'Casting'),(150540,84496,4,'Screenplay'),(150540,80591,9,'Thanks'),(150540,148808,6,'Additional Soundtrack'),(150540,933558,9,'Thanks'),(150540,963497,3,'Casting'),(150540,1236458,4,'Original Story'),(150540,1267186,9,'Additional Writing'),(150540,1299484,10,'Visual Effects Supervisor'),(150540,1378828,6,'Sound Re-Recording Mixer'),(150540,1393208,7,'Conceptual Design'),(150540,1394418,6,'Sound Effects Editor'),(150540,1435597,5,'Editorial Services'),(150540,1451703,5,'Color Timer'),(150540,1455596,10,'Animation'),(150540,1457025,4,'Screenplay'),(150540,1461369,9,'Additional Dialogue'),(150540,1463239,10,'Animation'),(150540,1478854,6,'Foley'),(150540,1516156,5,'Editor'),(150540,1516157,7,'Art Direction'),(278927,4500,6,'Music'),(278927,7232,3,'Casting'),(278927,10574,5,'Editor'),(278927,9341,1,'Director of Photography'),(278927,9551,8,'Costume Design'),(278927,14744,4,'Book'),(278927,15277,2,'Director'),(278927,15277,3,'Producer'),(278927,42265,3,'Executive Producer'),(278927,68016,6,'Orchestrator'),(278927,78428,4,'Screenplay'),(278927,1271755,7,'Art Direction'),(278927,1271756,7,'Supervising Art Director'),(278927,1291656,3,'Executive Producer'),(278927,1354916,7,'Art Direction'),(278927,1389126,7,'Set Decoration'),(278927,1392615,3,'Executive Producer'),(278927,1401789,3,'Co-Producer'),(278927,1402031,10,'Visual Effects Supervisor'),(278927,1438901,7,'Conceptual Design'),(278927,1459911,9,'Visual Effects Editor'),(278927,1463874,4,'Storyboard'),(278927,1607512,7,'Production Design'),(278927,1607513,3,'Producer'),(278927,1760516,3,'Co-Producer'),(58595,8386,3,'Co-Producer'),(58595,8386,3,'Unit Production Manager'),(58595,136,3,'Producer'),(58595,557,8,'Costume Design'),(58595,1213,6,'Original Music Composer'),(58595,3987,5,'Editor'),(58595,3992,3,'Executive Producer'),(58595,10710,7,'Art Direction'),(58595,11296,7,'Art Direction'),(58595,16737,6,'Music Editor'),(58595,18311,3,'Producer'),(58595,23424,3,'Casting'),(58595,23773,7,'Art Direction'),(58595,27032,7,'Production Design'),(58595,41848,7,'Art Direction'),(58595,54040,4,'Screenplay'),(58595,113054,6,'Sound Designer'),(58595,56960,4,'Screenplay'),(58595,73348,7,'Set Decoration'),(58595,67113,1,'Director of Photography'),(58595,85960,6,'Sound Effects Editor'),(58595,85960,6,'Sound Designer'),(58595,105780,6,'Production Sound Mixer'),(58595,228134,2,'Director'),(58595,228135,4,'Screenplay'),(58595,228135,4,'Screenstory'),(58595,567478,5,'Editor'),(58595,928399,3,'Executive Producer'),(58595,1032545,3,'Location Manager'),(58595,1181554,1,'Still Photographer'),(58595,1319160,8,'Costume Supervisor'),(58595,1338976,6,'Sound Re-Recording Mixer'),(58595,1340345,6,'Supervising Sound Editor'),(58595,1340345,6,'Sound Re-Recording Mixer'),(58595,1340346,5,'Dialogue Editor'),(58595,1342663,6,'Music Editor'),(58595,1346934,7,'Supervising Art Director'),(58595,1367494,6,'Sound Effects Editor'),(58595,1367494,6,'Sound Designer'),(58595,1388851,7,'Art Direction'),(58595,1404875,2,'Script Supervisor'),(58595,1407019,9,'Visual Effects Editor'),(58595,1408400,5,'First Assistant Editor'),(58595,1425395,6,'Music Editor'),(58595,1447543,10,'VFX Artist'),(58595,1454410,10,'Visual Effects'),(58595,1454884,2,'Assistant Director'),(58595,1454884,10,'Visual Effects Supervisor'),(58595,1455461,11,'Lighting Technician'),(58595,1455610,10,'Animation'),(58595,1459734,10,'Animation'),(58595,1480629,8,'Hair Department Head'),(58595,1551487,5,'First Assistant Editor'),(58595,1553728,3,'Production Supervisor'),(58595,1553738,1,'Still Photographer'),(58595,1553741,5,'First Assistant Editor'),(102651,8386,3,'Executive Producer'),(102651,1213,6,'Original Music Composer'),(102651,4501,1,'Director of Photography'),(102651,6688,8,'Costume Design'),(102651,11701,3,'Executive Producer'),(102651,12824,3,'Producer'),(102651,23424,3,'Casting'),(102651,38792,4,'Screenplay'),(102651,1032536,2,'Director'),(102651,1447542,9,'Compositors'),(102651,1451684,10,'Visual Effects'),(102651,1452995,10,'Animation'),(102651,1454884,2,'Assistant Director'),(102651,1460603,9,'Compositors'),(119450,37832,7,'Greensman'),(119450,495,3,'Casting'),(119450,373,6,'Sound Effects Editor'),(119450,2122,5,'Editor'),(119450,6207,7,'Construction Coordinator'),(119450,9654,9,'Stunt Coordinator'),(119450,9165,1,'Director of Photography'),(119450,9546,7,'Production Design'),(119450,12240,4,'Novel'),(119450,15347,6,'Original Music Composer'),(119450,18189,3,'Executive Producer'),(119450,18189,4,'Writer'),(119450,17677,7,'Supervising Art Director'),(119450,20229,6,'Foley'),(119450,23785,8,'Makeup Department Head'),(119450,23787,8,'Makeup Department Head'),(119450,25021,8,'Makeup Department Head'),(119450,32278,2,'Director'),(119450,32806,5,'Digital Intermediate'),(119450,35799,9,'Stunt Coordinator'),(119450,41890,7,'Art Direction'),(119450,113051,6,'Sound Effects Editor'),(119450,113055,6,'ADR & Dubbing'),(119450,57432,9,'Second Unit Cinematographer'),(119450,58190,3,'Executive Producer'),(119450,67802,3,'Producer'),(119450,67802,4,'Writer'),(119450,67803,3,'Producer'),(119450,67803,4,'Writer'),(119450,110446,9,'Visual Effects Editor'),(119450,91122,1,'Helicopter Camera'),(119450,181856,5,'Editor'),(119450,202955,9,'Stunt Coordinator'),(119450,217995,7,'Set Designer'),(119450,227225,8,'Costume Design'),(119450,236696,9,'Stunt Coordinator'),(119450,236696,9,'Motion Capture Artist'),(119450,266920,3,'Producer'),(119450,536491,10,'Visual Effects Producer'),(119450,935717,3,'Producer'),(119450,960282,7,'Art Direction'),(119450,1182907,7,'Art Direction'),(119450,1182909,8,'Hairstylist'),(119450,1322011,8,'Set Costumer'),(119450,1325872,8,'Set Costumer'),(119450,1325907,7,'Art Direction'),(119450,1330583,7,'Art Direction'),(119450,1333930,7,'Set Designer'),(119450,1333982,8,'Costume Supervisor'),(119450,1338372,6,'Foley'),(119450,1341405,5,'Dialogue Editor'),(119450,1352422,6,'ADR & Dubbing'),(119450,1352973,10,'Visual Effects Producer'),(119450,1355531,2,'Script Supervisor'),(119450,1367493,6,'Foley'),(119450,1376895,7,'Set Designer'),(119450,1377215,9,'Property Master'),(119450,1389126,7,'Set Decoration'),(119450,1389127,7,'Set Designer'),(119450,1389128,7,'Assistant Art Director'),(119450,1389129,7,'Art Department Coordinator'),(119450,1389130,7,'Art Department Coordinator'),(119450,1389131,7,'Construction Coordinator'),(119450,1389133,6,'Sound Designer'),(119450,1389133,6,'Supervising Sound Editor'),(119450,1389133,6,'Sound Re-Recording Mixer'),(119450,1389134,6,'Sound Designer'),(119450,1389134,6,'Supervising Sound Editor'),(119450,1389134,6,'Sound Re-Recording Mixer'),(119450,1389135,8,'Costume Supervisor'),(119450,1389136,6,'Music Editor'),(119450,1389137,9,'Transportation Coordinator'),(119450,1389138,2,'Script Supervisor'),(119450,1389139,1,'Still Photographer'),(119450,1394070,10,'Visual Effects Supervisor'),(119450,1394768,1,'Camera Operator'),(119450,1394768,1,'Steadicam Operator'),(119450,1401391,9,'Scenic Artist'),(119450,1401793,10,'Visual Effects Producer'),(119450,1401896,9,'Visual Effects Editor'),(119450,1401998,10,'Animation Director'),(119450,1406253,5,'Digital Intermediate'),(119450,1406868,2,'Script Supervisor'),(119450,1407351,7,'Greensman'),(119450,1407371,8,'Set Costumer'),(119450,1407728,7,'Greensman'),(119450,1408799,6,'Sound Effects Editor'),(119450,1414178,6,'Sound Effects Editor'),(119450,1414537,8,'Hairstylist'),(119450,1415330,8,'Hairstylist'),(119450,1415632,1,'Camera Operator'),(119450,1416067,11,'Gaffer'),(119450,1417418,7,'Leadman'),(119450,1417838,8,'Set Costumer'),(119450,1418345,8,'Makeup Artist'),(119450,1418348,8,'Makeup Artist'),(119450,1418349,8,'Makeup Artist'),(119450,1418350,8,'Makeup Artist'),(119450,1418351,8,'Hairstylist'),(119450,1418353,9,'Makeup Effects'),(119450,1418354,9,'Makeup Effects'),(119450,1418355,9,'Makeup Effects'),(119450,1418356,9,'Property Master'),(119450,1418358,7,'Greensman'),(119450,1418359,7,'Greensman'),(119450,1418360,9,'Scenic Artist'),(119450,1418361,9,'Scenic Artist'),(119450,1418364,9,'Scenic Artist'),(119450,1418373,6,'Sound Effects Editor'),(119450,1418374,10,'Animation Director'),(119450,1418375,10,'Animation Director'),(119450,1418376,10,'Animation Director'),(119450,1418377,10,'Animation Director'),(119450,1418378,9,'CG Supervisor'),(119450,1418379,9,'CG Supervisor'),(119450,1418380,10,'Animation Director'),(119450,1418381,9,'CG Supervisor'),(119450,1418382,9,'CG Supervisor'),(119450,1418383,10,'Animation Director'),(119450,1418384,10,'Animation Supervisor'),(119450,1418392,10,'Visual Effects Producer'),(119450,1418393,10,'Visual Effects Producer'),(119450,1418394,10,'Visual Effects Producer'),(119450,1418395,10,'Visual Effects Supervisor'),(119450,1418396,10,'Visual Effects Supervisor'),(119450,1418397,10,'Visual Effects Supervisor'),(119450,1418398,1,'Camera Operator'),(119450,1418398,1,'Steadicam Operator'),(119450,1418399,1,'Camera Operator'),(119450,1418400,1,'Underwater Camera'),(119450,1418401,1,'Camera Intern'),(119450,1418402,11,'Gaffer'),(119450,1418403,11,'Rigging Gaffer'),(119450,1418404,11,'Rigging Gaffer'),(119450,1418405,8,'Set Costumer'),(119450,1418406,8,'Set Costumer'),(119450,1418407,8,'Set Costumer'),(119450,1418408,8,'Set Costumer'),(119450,1418409,5,'Digital Intermediate'),(119450,1418410,5,'First Assistant Editor'),(119450,1418411,5,'First Assistant Editor'),(119450,1418412,5,'First Assistant Editor'),(119450,1418413,9,'Unit Publicist'),(119450,1418414,3,'Location Manager'),(119450,1447543,10,'Visual Effects'),(119450,1551366,11,'Electrician'),(119450,1551367,6,'Foley'),(119450,1561731,3,'Unit Production Manager'),(79698,3502,8,'Costume Design'),(79698,6507,3,'Casting'),(79698,7050,10,'Special Effects Supervisor'),(79698,8965,2,'Director'),(79698,8965,4,'Writer'),(79698,40823,6,'Foley'),(79698,15330,8,'Makeup Department Head'),(79698,16684,6,'ADR & Dubbing'),(79698,16684,6,'Supervising Sound Editor'),(79698,17165,7,'Production Design'),(79698,17794,7,'Supervising Art Director'),(79698,30461,5,'Editor'),(79698,48309,3,'Producer'),(79698,48310,3,'Producer'),(79698,61486,7,'Supervising Art Director'),(79698,61919,1,'Director of Photography'),(79698,62745,7,'Set Decoration'),(79698,62742,7,'Art Direction'),(79698,62927,3,'Producer'),(79698,75116,1,'Still Photographer'),(79698,75140,3,'Casting'),(79698,322424,3,'Producer'),(79698,555946,3,'Casting'),(79698,587816,4,'Story'),(79698,587816,3,'Producer'),(79698,587821,3,'Executive Producer'),(79698,930784,3,'Casting'),(79698,941088,3,'Producer'),(79698,991651,8,'Costume Design'),(79698,1083220,7,'Art Direction'),(79698,1127865,3,'Casting'),(79698,1321694,8,'Costume Supervisor'),(79698,1335048,10,'Visual Effects Supervisor'),(79698,1335049,10,'Visual Effects Producer'),(79698,1340116,6,'Sound Re-Recording Mixer'),(79698,1355535,7,'Art Department Coordinator'),(79698,1392614,6,'Dolby Consultant'),(79698,1394061,7,'Assistant Art Director'),(79698,1399033,9,'Second Unit Cinematographer'),(79698,1409227,8,'Makeup Artist'),(79698,1410552,6,'ADR & Dubbing'),(79698,1412088,6,'Foley'),(79698,1412745,1,'Camera Operator'),(79698,1412747,11,'Gaffer'),(79698,1418270,7,'Assistant Art Director'),(79698,1418339,6,'Music Editor'),(79698,1421662,5,'Digital Intermediate'),(79698,1422818,6,'Music Editor'),(79698,1423432,5,'First Assistant Editor'),(79698,1444956,6,'Sound Re-Recording Mixer'),(79698,1454936,10,'Special Effects Supervisor'),(79698,1454940,8,'Set Costumer'),(79698,1540471,6,'Music Supervisor'),(79698,1551914,9,'Digital Effects Supervisor'),(79698,1608995,7,'Assistant Art Director'),(79698,1608996,7,'Assistant Art Director'),(79698,1608997,7,'Construction Coordinator'),(79698,1608998,8,'Assistant Costume Designer'),(79698,1608999,8,'Costume Supervisor'),(79698,1609000,8,'Set Costumer'),(79698,1609002,8,'Set Costumer'),(79698,1609008,9,'Armorer'),(79698,1609009,9,'Armorer'),(79698,1609010,2,'Script Supervisor'),(79698,1609011,9,'Choreographer'),(79698,1609012,1,'First Assistant Camera'),(79698,1609013,1,'First Assistant Camera'),(79698,1609014,1,'Still Photographer'),(79698,1609016,10,'Visual Effects Coordinator'),(79698,1609017,10,'Visual Effects Producer'),(79698,1609020,9,'Digital Effects Supervisor'),(79698,1609022,8,'Key Hair Stylist'),(79698,1854359,9,'Marine Coordinator'),(79698,1864771,1,'Dolly Grip'),(79698,1881409,11,'Rigging Gaffer'),(79698,1881410,11,'Electrician'),(79698,1881411,11,'Electrician'),(79698,1881412,1,'Key Grip'),(79698,1881415,9,'Marine Coordinator'),(64686,2445,3,'Producer'),(64686,2215,3,'Casting'),(64686,943,9,'Cinematography'),(64686,3311,3,'Casting'),(64686,4034,8,'Costume Design'),(64686,5021,7,'Art Direction'),(64686,5378,3,'Producer'),(64686,12787,7,'Set Decoration'),(64686,16344,5,'Dialogue Editor'),(64686,23453,7,'Art Direction'),(64686,19282,3,'Producer'),(64686,20292,7,'Production Design'),(64686,23451,6,'Music'),(64686,23773,7,'Art Direction'),(64686,47365,4,'Screenstory'),(64686,58191,4,'Screenplay'),(64686,58191,4,'Screenstory'),(64686,56960,4,'Screenplay'),(64686,71579,7,'Art Direction'),(64686,117226,9,'Property Master'),(64686,123471,9,'Scenic Artist'),(64686,239571,2,'Director'),(64686,1204668,10,'Visual Effects Producer'),(64686,1299324,7,'Assistant Art Director'),(64686,1319119,3,'Casting'),(64686,1319120,8,'Costume Supervisor'),(64686,1322138,7,'Supervising Art Director'),(64686,1322481,7,'Art Direction'),(64686,1327026,10,'Visual Effects Supervisor'),(64686,1337393,7,'Assistant Art Director'),(64686,1338372,6,'Foley'),(64686,1339436,7,'Set Designer'),(64686,1352958,7,'Set Designer'),(64686,1352973,10,'Visual Effects Producer'),(64686,1378171,6,'Sound Re-Recording Mixer'),(64686,1379430,6,'Sound Designer'),(64686,1379430,6,'Sound Re-Recording Mixer'),(64686,1392116,7,'Set Designer'),(64686,1392595,7,'Sculptor'),(64686,1392657,9,'Transportation Coordinator'),(64686,1392663,3,'Location Manager'),(64686,1394106,7,'Art Direction'),(64686,1394108,7,'Assistant Art Director'),(64686,1394113,7,'Construction Coordinator'),(64686,1394115,7,'Assistant Art Director'),(64686,1394116,7,'Art Department Coordinator'),(64686,1394117,7,'Art Department Coordinator'),(64686,1394118,7,'Set Designer'),(64686,1394119,7,'Set Designer'),(64686,1394123,7,'Set Designer'),(64686,1394128,7,'Sculptor'),(64686,1394129,6,'Supervising Sound Editor'),(64686,1394130,6,'Sound Re-Recording Mixer'),(64686,1394131,6,'Sound Re-Recording Mixer'),(64686,1394278,10,'Visual Effects Supervisor'),(64686,1394281,10,'Visual Effects Supervisor'),(64686,1394282,10,'Visual Effects Supervisor'),(64686,1394284,10,'Visual Effects Supervisor'),(64686,1394286,10,'Visual Effects Supervisor'),(64686,1394291,9,'Visual Effects Editor'),(64686,1394296,10,'Visual Effects Producer'),(64686,1394298,10,'Visual Effects Producer'),(64686,1394299,9,'Visual Effects Editor'),(64686,1394300,9,'Visual Effects Editor'),(64686,1394301,9,'Supervising Animator'),(64686,1394302,8,'Set Costumer'),(64686,1394303,8,'Set Costumer'),(64686,1394304,8,'Set Costumer'),(64686,1394305,8,'Set Costumer'),(64686,1394306,6,'Music Editor'),(64686,1394307,6,'Music Editor'),(64686,1394309,9,'Transportation Coordinator'),(64686,1394315,3,'Location Manager'),(64686,1394317,9,'Dialect Coach'),(64686,1394320,9,'Choreographer'),(64686,1394322,9,'Dialect Coach'),(64686,1394323,9,'Chef'),(64686,1447542,10,'VFX Artist'),(64686,1456696,9,'Compositors'),(64686,1457930,10,'Visual Effects'),(64686,1831266,9,'Stunts'),(100402,7232,3,'Casting'),(100402,7235,7,'Art Direction'),(100402,5551,4,'Screenplay'),(100402,5552,4,'Screenplay'),(100402,6878,7,'Art Direction'),(100402,7624,3,'Executive Producer'),(100402,10850,3,'Producer'),(100402,19157,7,'Set Decoration'),(100402,9639,7,'Supervising Art Director'),(100402,10970,8,'Costume Design'),(100402,35176,5,'Editor'),(100402,16733,7,'Production Design'),(100402,19271,2,'Director'),(100402,19272,2,'Director'),(100402,21718,7,'Art Direction'),(100402,30383,3,'Executive Producer'),(100402,57027,3,'Executive Producer'),(100402,113672,3,'Executive Producer'),(100402,113674,3,'Executive Producer'),(100402,98681,7,'Sculptor'),(100402,102343,8,'Makeup Department Head'),(100402,139744,4,'Characters'),(100402,227440,6,'Original Music Composer'),(100402,967026,9,'Cinematography'),(100402,1067682,3,'Co-Producer'),(100402,1117747,3,'Associate Producer'),(100402,1168704,9,'Stunts'),(100402,1192526,7,'Art Direction'),(100402,1349452,3,'Associate Producer'),(100402,1355525,5,'Editor'),(100402,1355526,7,'Leadman'),(100402,1355527,9,'Propmaker'),(100402,1355528,9,'Propmaker'),(100402,1355529,7,'Art Department Coordinator'),(100402,1355530,7,'Sculptor'),(100402,1412756,9,'Visual Effects Editor'),(100402,1424894,8,'Hair Department Head'),(100402,1455467,11,'Lighting Technician'),(100402,1456696,9,'Compositors'),(100402,1460622,9,'Software Engineer'),(100402,1460648,9,'Compositors'),(158852,1722,5,'Editor'),(158852,154,5,'Editor'),(158852,2216,6,'Sound Re-Recording Mixer'),(158852,5338,6,'Sound Designer'),(158852,6052,3,'Casting'),(158852,6348,8,'Costume Design'),(158852,8166,6,'Sound Re-Recording Mixer'),(158852,9558,9,'Stunt Coordinator'),(158852,12384,7,'Set Decoration'),(158852,15893,6,'Foley'),(158852,15347,6,'Original Music Composer'),(158852,15351,7,'Production Design'),(158852,17599,3,'Executive Producer'),(158852,7087,4,'Screenplay'),(158852,7087,2,'Director'),(158852,7087,3,'Producer'),(158852,7087,4,'Story'),(158852,32200,7,'Art Direction'),(158852,34887,7,'Art Direction'),(158852,40592,3,'Producer'),(158852,51333,1,'Director of Photography'),(158852,66491,7,'Supervising Art Director'),(158852,28974,4,'Screenplay'),(158852,28974,3,'Producer'),(158852,28974,4,'Story'),(158852,76054,7,'Art Direction'),(158852,134940,11,'Rigging Gaffer'),(158852,765144,3,'Casting'),(158852,959555,7,'Art Direction'),(158852,961544,7,'Supervising Art Director'),(158852,986277,3,'Casting'),(158852,1006729,7,'Assistant Art Director'),(158852,1081075,7,'Conceptual Design'),(158852,1122003,3,'Casting'),(158852,1149583,1,'Steadicam Operator'),(158852,1192526,7,'Art Direction'),(158852,1293467,7,'Assistant Art Director'),(158852,1311175,7,'Assistant Art Director'),(158852,1324015,7,'Art Direction'),(158852,1324052,7,'Assistant Art Director'),(158852,1324226,7,'Art Direction'),(158852,1325907,7,'Art Direction'),(158852,1330567,8,'Set Costumer'),(158852,1335041,7,'Construction Coordinator'),(158852,1364399,9,'Second Unit Cinematographer'),(158852,1376899,5,'Dialogue Editor'),(158852,1376902,6,'Supervising Sound Editor'),(158852,1377131,1,'Camera Operator'),(158852,1378716,1,'Still Photographer'),(158852,1378720,8,'Set Costumer'),(158852,1394418,6,'Sound Effects Editor'),(158852,1394760,2,'Script Supervisor'),(158852,1394931,7,'Art Department Coordinator'),(158852,1394974,1,'Steadicam Operator'),(158852,1397823,6,'Foley'),(158852,1399071,1,'Helicopter Camera'),(158852,1401108,9,'Visual Effects Art Director'),(158852,1401595,11,'Gaffer'),(158852,1403411,1,'Camera Operator'),(158852,1403415,1,'Helicopter Camera'),(158852,1403430,7,'Art Department Coordinator'),(158852,1405574,7,'Conceptual Design'),(158852,1406765,1,'Camera Operator'),(158852,1406844,11,'Gaffer'),(158852,1412984,6,'Foley'),(158852,1414177,6,'Sound Effects Editor'),(158852,1414539,8,'Makeup Artist'),(158852,1417834,1,'Camera Technician'),(158852,1418404,11,'Rigging Gaffer'),(158852,1431099,8,'Set Costumer'),(158852,1438914,7,'Construction Coordinator'),(158852,1439848,7,'Construction Coordinator'),(158852,1441272,8,'Makeup Department Head'),(158852,1441365,1,'Steadicam Operator'),(158852,1444239,9,'Stunt Coordinator'),(158852,1459728,10,'Animation'),(158852,1459935,8,'Costume Supervisor'),(158852,1463568,10,'Visual Effects'),(158852,1463784,10,'Animation'),(158852,1466574,4,'Story'),(158852,1492146,8,'Hairstylist'),(158852,1511803,3,'Associate Producer'),(158852,1519398,11,'Gaffer'),(158852,1519399,11,'Gaffer'),(158852,1519400,11,'Rigging Gaffer'),(158852,1519403,7,'Art Department Coordinator'),(158852,1519404,7,'Art Department Coordinator'),(158852,1519426,7,'Assistant Art Director'),(158852,1519431,6,'Music Editor'),(158852,1519432,6,'Music Editor'),(158852,1519433,8,'Set Costumer'),(158852,1519434,8,'Set Costumer'),(158852,1519437,8,'Set Costumer'),(177572,7879,3,'Executive Producer'),(177572,149,9,'Cinematography'),(177572,630,9,'Cinematography'),(177572,7884,4,'Screenplay'),(177572,7931,4,'Story'),(177572,7931,4,'Screenplay'),(177572,56612,3,'Producer'),(177572,61958,5,'Editor'),(177572,70238,2,'Director'),(177572,70240,7,'Art Direction'),(177572,78600,4,'Screenplay'),(177572,112609,6,'Sound Re-Recording Mixer'),(177572,96997,3,'Associate Producer'),(177572,137198,3,'Casting'),(177572,186605,3,'Casting'),(177572,227439,2,'Director'),(177572,227440,6,'Original Music Composer'),(177572,265415,4,'Characters'),(177572,1018965,5,'Additional Editing'),(177572,1077830,4,'Story'),(177572,1112515,10,'Visual Development'),(177572,1112517,3,'Co-Producer'),(177572,1232621,9,'Thanks'),(177572,1237903,4,'Characters'),(177572,1319965,10,'Visual Development'),(177572,1397792,9,'Other'),(177572,1397844,6,'Sound Re-Recording Mixer'),(177572,1431153,6,'Music'),(177572,1447483,2,'Layout'),(177572,1447503,2,'Layout'),(177572,1447506,2,'Layout'),(177572,1452489,1,'Camera Department Manager'),(177572,1459735,10,'Animation'),(177572,1460478,10,'Animation'),(177572,1461416,3,'Casting Associate'),(177572,1463824,6,'Music'),(177572,1464355,9,'Other'),(177572,1616082,6,'Orchestrator'),(177572,1618181,5,'Color Timer'),(82690,7879,3,'Executive Producer'),(82690,630,9,'Cinematography'),(82690,4764,9,'Additional Writing'),(82690,11506,9,'Lighting Camera'),(82690,56042,5,'Additional Editing'),(82690,61420,7,'Art Direction'),(82690,65530,7,'Production Design'),(82690,15020,4,'Story'),(82690,69798,3,'Producer'),(82690,76746,5,'Editor'),(82690,112609,6,'Sound Re-Recording Mixer'),(82690,137198,3,'Casting'),(82690,165787,2,'Director'),(82690,165787,4,'Story'),(82690,186605,3,'Casting'),(82690,227440,6,'Original Music Composer'),(82690,567562,4,'Screenplay'),(82690,928605,3,'Producer'),(82690,928608,9,'Post Production Supervisor'),(82690,928612,10,'Animation Supervisor'),(82690,1120694,4,'Screenplay'),(82690,1296646,9,'Thanks'),(82690,1341141,6,'Music Editor'),(82690,1364882,4,'Storyboard'),(82690,1447382,10,'Visual Development'),(82690,1447481,7,'Art Department Manager'),(82690,1447483,2,'Layout'),(82690,1447497,2,'Layout'),(82690,1447499,7,'Art Department Manager'),(82690,1447503,2,'Layout'),(82690,1450294,3,'Production Supervisor'),(82690,1452489,1,'Camera Department Manager'),(82690,1455461,11,'Lighting Artist'),(82690,1459735,10,'Animation'),(82690,1460489,10,'Visual Effects'),(82690,1460602,11,'Lighting Artist'),(82690,1461416,3,'Casting Associate'),(82690,1618181,5,'Digital Intermediate'),(47933,561,3,'Casting'),(47933,7237,7,'Set Decoration'),(47933,5430,3,'Producer'),(47933,5430,6,'Original Music Composer'),(47933,6046,4,'Screenplay'),(47933,6046,2,'Director'),(47933,6046,3,'Producer'),(47933,6046,4,'Characters'),(47933,6049,6,'Original Music Composer'),(47933,6033,8,'Costume Design'),(47933,6922,7,'Art Direction'),(47933,8676,4,'Screenplay'),(47933,8676,3,'Producer'),(47933,8676,4,'Characters'),(47933,10820,7,'Production Design'),(47933,19863,7,'Supervising Art Director'),(47933,20204,4,'Screenplay'),(47933,38701,7,'Art Direction'),(47933,60665,3,'Casting'),(47933,64855,9,'Visual Effects Editor'),(47933,73609,4,'Screenplay'),(47933,80019,4,'Screenplay'),(47933,92237,1,'Camera Operator'),(47933,91122,1,'Helicopter Camera'),(47933,113081,6,'Sound Effects Editor'),(47933,137175,7,'Art Direction'),(47933,143913,6,'ADR & Dubbing'),(47933,225904,5,'Editor'),(47933,582808,1,'Still Photographer'),(47933,988882,7,'Art Direction'),(47933,989750,3,'Casting Associate'),(47933,1077782,6,'Foley'),(47933,1275131,1,'Director of Photography'),(47933,1314465,8,'Makeup Department Head'),(47933,1333982,8,'Costume Supervisor'),(47933,1338372,6,'Foley'),(47933,1339456,2,'Script Supervisor'),(47933,1352962,7,'Assistant Art Director'),(47933,1354916,7,'Art Direction'),(47933,1357043,7,'Art Direction'),(47933,1360097,5,'Dialogue Editor'),(47933,1360100,6,'Sound Effects Editor'),(47933,1367493,6,'Foley'),(47933,1368856,7,'Conceptual Design'),(47933,1374169,6,'Foley'),(47933,1384387,10,'VFX Supervisor'),(47933,1389131,7,'Construction Coordinator'),(47933,1391383,7,'Construction Coordinator'),(47933,1391749,7,'Art Department Coordinator'),(47933,1392084,5,'Dialogue Editor'),(47933,1394950,6,'Sound Designer'),(47933,1394950,6,'Supervising Sound Editor'),(47933,1398101,9,'Visual Effects Editor'),(47933,1399141,6,'Sound Re-Recording Mixer'),(47933,1402947,8,'Makeup Artist'),(47933,1402951,8,'Set Costumer'),(47933,1404244,1,'Helicopter Camera'),(47933,1407227,6,'Sound Effects Editor'),(47933,1408396,11,'Gaffer'),(47933,1412223,8,'Hair Department Head'),(47933,1412997,8,'Set Costumer'),(47933,1424897,7,'Art Direction'),(47933,1428901,10,'Animation Director'),(47933,1428904,10,'VFX Editor'),(47933,1435590,9,'CG Supervisor'),(47933,1439056,9,'CG Supervisor'),(47933,1442132,9,'CG Supervisor'),(47933,1442143,9,'Visual Effects Editor'),(47933,1444923,11,'Rigging Gaffer'),(47933,1451401,7,'Art Department Coordinator'),(47933,1457338,9,'CG Supervisor'),(47933,1463296,7,'Assistant Art Director'),(47933,1473448,1,'Camera Operator'),(47933,1494209,1,'Helicopter Camera'),(47933,1494525,8,'Key Hair Stylist'),(47933,1496658,8,'Assistant Costume Designer'),(47933,1519867,2,'Script Supervisor'),(47933,1531264,8,'Assistant Costume Designer'),(47933,1532605,3,'Casting Associate'),(47933,1533592,8,'Makeup Artist'),(47933,1538207,9,'Special Effects Coordinator'),(47933,1548485,6,'Music Editor'),(47933,1551344,9,'Stunts'),(47933,1551841,6,'Music Editor'),(47933,1551872,9,'CG Supervisor'),(47933,1568831,8,'Set Costumer'),(47933,1571510,8,'Hairstylist'),(47933,1571524,11,'Rigging Grip'),(47933,1579005,8,'Makeup Artist'),(47933,1580851,10,'Animation Director'),(47933,1583075,7,'Construction Coordinator'),(47933,1590405,10,'Animation Supervisor'),(47933,1607060,6,'Music Editor'),(47933,1630905,9,'Visual Effects Editor'),(47933,1637329,7,'Art Direction'),(47933,1637330,7,'Conceptual Design'),(47933,1637331,8,'Seamstress'),(47933,1637338,1,'Camera Operator'),(47933,1637346,8,'Hairstylist'),(47933,1637347,8,'Hairstylist'),(47933,1637350,8,'Makeup Artist'),(47933,1637388,10,'3D Supervisor'),(47933,1637389,10,'Animation Supervisor'),(47933,1637390,9,'CG Supervisor'),(47933,1637391,9,'CG Supervisor'),(47933,1637392,9,'Digital Effects Supervisor'),(47933,1637395,10,'VFX Editor'),(47933,1637396,10,'VFX Supervisor'),(47933,1637399,5,'First Assistant Editor'),(118340,1722,5,'Editor'),(118340,900,6,'Supervising Sound Editor'),(118340,900,6,'Sound Re-Recording Mixer'),(118340,7232,3,'Casting'),(118340,5338,6,'Sound Effects Editor'),(118340,7624,3,'Executive Producer'),(118340,10850,3,'Producer'),(118340,8160,6,'Foley'),(118340,8163,6,'Foley'),(118340,8410,7,'Set Decoration'),(118340,10788,7,'Set Designer'),(118340,13009,8,'Costume Design'),(118340,15218,4,'Screenplay'),(118340,15218,2,'Director'),(118340,15221,6,'Original Music Composer'),(118340,15225,6,'Music Editor'),(118340,20649,5,'Editor'),(118340,22161,1,'Director of Photography'),(118340,23787,8,'Makeup Department Head'),(118340,24192,6,'Music Supervisor'),(118340,32349,7,'Production Design'),(118340,36938,7,'Sculptor'),(118340,55227,6,'Sound mixer'),(118340,57027,3,'Executive Producer'),(118340,58194,5,'Editor'),(118340,113672,3,'Executive Producer'),(118340,113674,3,'Executive Producer'),(118340,113675,3,'Executive Producer'),(118340,71536,6,'Supervising Sound Editor'),(118340,98681,7,'Sculptor'),(118340,145170,4,'Characters'),(118340,983309,7,'Art Direction'),(118340,1018073,3,'Casting'),(118340,1126962,1,'Camera Operator'),(118340,1171123,4,'Screenplay'),(118340,1189807,1,'Camera Operator'),(118340,1235786,6,'Sound Designer'),(118340,1322147,8,'Costume Supervisor'),(118340,1327025,10,'Visual Effects Supervisor'),(118340,1327026,10,'Visual Effects Supervisor'),(118340,1327027,10,'Visual Effects Supervisor'),(118340,1327028,10,'Visual Effects Supervisor'),(118340,1327029,6,'Production Sound Mixer'),(118340,1327030,6,'Sound Re-Recording Mixer'),(118340,1334429,9,'Property Master'),(118340,1335882,10,'Visual Effects Producer'),(118340,1345606,10,'Visual Effects Producer'),(118340,1352034,4,'Characters'),(118340,1355530,7,'Sculptor'),(118340,1368883,8,'Set Costumer'),(118340,1373698,7,'Assistant Art Director'),(118340,1373703,7,'Set Designer'),(118340,1376899,5,'Dialogue Editor'),(118340,1380002,1,'Still Photographer'),(118340,1388848,7,'Assistant Art Director'),(118340,1388849,7,'Construction Coordinator'),(118340,1388850,7,'Assistant Art Director'),(118340,1388851,7,'Assistant Art Director'),(118340,1388852,7,'Set Designer'),(118340,1388855,7,'Set Designer'),(118340,1388860,7,'Set Designer'),(118340,1388862,9,'Property Master'),(118340,1388863,7,'Sculptor'),(118340,1388864,5,'Dialogue Editor'),(118340,1388865,6,'Sound Effects Editor'),(118340,1388867,10,'Visual Effects Producer'),(118340,1388869,10,'Visual Effects Producer'),(118340,1388870,10,'Visual Effects Producer'),(118340,1388871,10,'Visual Effects Producer'),(118340,1388872,10,'Visual Effects Supervisor'),(118340,1388873,10,'Visual Effects Producer'),(118340,1388874,10,'Visual Effects Producer'),(118340,1388875,10,'Visual Effects Producer'),(118340,1388876,10,'Visual Effects Supervisor'),(118340,1388877,9,'Stunt Coordinator'),(118340,1388878,9,'Stunt Coordinator'),(118340,1388879,6,'Music Editor'),(118340,1388881,9,'Transportation Coordinator'),(118340,1388883,9,'Security'),(118340,1388887,8,'Set Costumer'),(118340,1388888,8,'Set Costumer'),(118340,1388890,8,'Set Costumer'),(118340,1388892,8,'Set Costumer'),(118340,1388893,1,'Camera Operator'),(118340,1388894,1,'Camera Operator'),(118340,1388895,1,'Camera Operator'),(118340,1388897,1,'Camera Operator'),(118340,1388898,1,'Camera Operator'),(118340,1388899,1,'Camera Operator'),(118340,1388900,1,'Still Photographer'),(118340,1447326,4,'Storyboard'),(118340,1448042,10,'Animation'),(118340,1450983,11,'Lighting Technician'),(118340,1451676,10,'Visual Effects'),(118340,1452488,9,'Visual Effects Editor'),(118340,1455618,10,'Animation'),(118340,1456696,9,'Compositors'),(118340,1457930,10,'Visual Effects'),(118340,1459718,10,'Animation'),(118340,1459911,9,'Visual Effects Editor'),(118340,1460658,9,'Compositors'),(118340,1477203,3,'Co-Producer'),(118340,1512798,3,'Associate Producer'),(118340,1533708,3,'Co-Producer'),(118340,1835498,9,'Stunts'),(157336,947,6,'Original Music Composer'),(157336,525,2,'Director'),(157336,525,3,'Producer'),(157336,525,4,'Writer'),(157336,527,4,'Writer'),(157336,556,3,'Producer'),(157336,561,3,'Casting'),(157336,2162,3,'Producer'),(157336,3904,5,'Editor'),(157336,7418,8,'Costume Design'),(157336,14762,7,'Set Designer'),(157336,14349,7,'Art Direction'),(157336,15327,7,'Production Design'),(157336,18926,3,'Production Manager'),(157336,21718,7,'Art Direction'),(157336,21796,7,'Set Designer'),(157336,29608,3,'Executive Producer'),(157336,52193,6,'ADR & Dubbing'),(157336,52193,5,'Dialogue Editor'),(157336,54211,3,'Executive Producer'),(157336,65711,7,'Set Decoration'),(157336,68016,6,'Orchestrator'),(157336,74401,1,'Director of Photography'),(157336,113913,3,'Executive Producer'),(157336,81731,7,'Set Designer'),(157336,98681,7,'Sculptor'),(157336,138618,6,'Sound Re-Recording Mixer'),(157336,932186,6,'Orchestrator'),(157336,969743,7,'Supervising Art Director'),(157336,988882,7,'Art Direction'),(157336,988882,7,'Set Designer'),(157336,989750,3,'Casting Associate'),(157336,991724,7,'Art Direction'),(157336,1050930,5,'Dialogue Editor'),(157336,1081074,9,'Stunt Coordinator'),(157336,1116937,6,'Foley'),(157336,1157625,3,'Executive Producer'),(157336,1322015,8,'Makeup Department Head'),(157336,1324652,1,'Still Photographer'),(157336,1328137,7,'Art Direction'),(157336,1329113,8,'Costume Supervisor'),(157336,1334782,7,'Art Direction'),(157336,1341403,6,'Supervising Sound Editor'),(157336,1341781,6,'Sound Re-Recording Mixer'),(157336,1345627,3,'Location Manager'),(157336,1355530,7,'Sculptor'),(157336,1357062,9,'Special Effects Coordinator'),(157336,1357066,1,'Camera Operator'),(157336,1357070,9,'Transportation Coordinator'),(157336,1360094,7,'Set Designer'),(157336,1377222,6,'Sound Effects Editor'),(157336,1378231,6,'Sound Effects Editor'),(157336,1378699,9,'Special Effects Coordinator'),(157336,1392896,7,'Set Designer'),(157336,1395430,7,'Art Department Coordinator'),(157336,1397823,6,'Foley'),(157336,1399071,1,'Helicopter Camera'),(157336,1399290,7,'Set Designer'),(157336,1399291,7,'Set Designer'),(157336,1400007,3,'Production Supervisor'),(157336,1400019,7,'Sculptor'),(157336,1402494,8,'Set Costumer'),(157336,1403490,6,'Music Editor'),(157336,1412185,8,'Makeup Artist'),(157336,1413116,10,'Visual Effects Producer'),(157336,1415611,7,'Greensman'),(157336,1417399,8,'Hairstylist'),(157336,1417516,6,'Sound Effects Editor'),(157336,1417823,9,'Visual Effects Editor'),(157336,1417828,10,'Visual Effects Supervisor'),(157336,1417834,1,'Camera Technician'),(157336,1417836,10,'Animation'),(157336,1417840,5,'First Assistant Editor'),(157336,1417841,6,'Music Editor'),(157336,1420642,8,'Hairstylist'),(157336,1420643,8,'Costume Supervisor'),(157336,1421695,7,'Construction Coordinator'),(157336,1424897,7,'Assistant Art Director'),(157336,1424898,7,'Construction Coordinator'),(157336,1426735,7,'Set Decoration'),(157336,1428227,8,'Set Costumer'),(157336,1428834,5,'Color Timer'),(157336,1431089,11,'Rigging Gaffer'),(157336,1440853,5,'Assistant Editor'),(157336,1442173,9,'Dialect Coach'),(157336,1447570,7,'Art Department Coordinator'),(157336,1447571,7,'Assistant Art Director'),(157336,1447574,7,'Greensman'),(157336,1447575,7,'Greensman'),(157336,1447578,7,'Greensman'),(157336,1447582,7,'Leadman'),(157336,1447583,9,'Property Master'),(157336,1447601,6,'First Assistant Sound Editor'),(157336,1447602,6,'First Assistant Sound Editor'),(157336,1447603,9,'CG Supervisor'),(157336,1447604,9,'CG Supervisor'),(157336,1447605,9,'Sequence Supervisor'),(157336,1447609,9,'Sequence Supervisor'),(157336,1447610,10,'Animation'),(157336,1447611,10,'Animation'),(157336,1447612,9,'Visual Effects Editor'),(157336,1447613,10,'Animation'),(157336,1447614,10,'Animation'),(157336,1447615,10,'Animation'),(157336,1447617,9,'Visual Effects Editor'),(157336,1447621,10,'Visual Effects Producer'),(157336,1447622,10,'Visual Effects Producer'),(157336,1447624,10,'Visual Effects Producer'),(157336,1447626,11,'Gaffer'),(157336,1447627,11,'Gaffer'),(157336,1447628,8,'Set Costumer'),(157336,1447632,8,'Set Costumer'),(157336,1447633,8,'Set Costumer'),(157336,1447636,3,'Location Manager'),(157336,1463824,6,'Music'),(157336,1463954,3,'Casting'),(157336,1564997,3,'Executive In Charge Of Production'),(157336,1571601,9,'Post Production Supervisor'),(157336,1576050,9,'Production Office Assistant'),(157336,1616082,6,'Orchestrator'),(315011,17132,6,'Original Music Composer'),(315011,43652,10,'Visual Effects'),(315011,56341,7,'Art Direction'),(315011,77921,2,'Director'),(315011,77921,4,'Screenplay'),(315011,77921,6,'Sound Designer'),(315011,77921,5,'Editor'),(315011,80752,2,'Director'),(315011,80752,10,'Visual Effects Technical Director'),(315011,132118,3,'Producer'),(315011,425396,6,'Music'),(315011,550585,9,'Visual Effects Art Director'),(315011,552024,7,'Set Decoration'),(315011,1084061,3,'Casting'),(315011,1109004,3,'Producer'),(315011,1192404,2,'Assistant Director'),(315011,1192404,10,'Visual Effects'),(315011,1192405,10,'Visual Effects Supervisor'),(315011,1192405,5,'Editor'),(315011,1537404,3,'Producer'),(315011,1575289,7,'Art Direction'),(315011,1684157,3,'Executive Producer'),(315011,1715587,9,'Cinematography'),(315011,1821073,3,'Line Producer'),(315011,1821075,3,'Producer'),(315011,1821077,7,'Set Decoration'),(315011,1821087,9,'Special Effects'),(49051,117,6,'Original Music Composer'),(49051,900,6,'Sound Re-Recording Mixer'),(49051,108,4,'Screenplay'),(49051,108,2,'Director'),(49051,108,3,'Producer'),(49051,129,4,'Novel'),(49051,126,4,'Screenplay'),(49051,126,3,'Producer'),(49051,128,4,'Screenplay'),(49051,1313,1,'Director of Photography'),(49051,1323,8,'Costume Design'),(49051,1324,3,'Casting'),(49051,1325,3,'Casting'),(49051,1326,3,'Casting'),(49051,1373,7,'Set Decoration'),(49051,1377,5,'Editor'),(49051,3503,6,'Supervising Sound Editor'),(49051,3506,3,'Producer'),(49051,10828,4,'Screenplay'),(49051,66266,7,'Conceptual Illustrator'),(49051,10830,3,'Executive Producer'),(49051,52165,8,'Makeup Department Head'),(49051,53393,3,'Producer'),(49051,82197,3,'Executive Producer'),(49051,132604,7,'Art Direction'),(49051,235025,9,'Stunts'),(49051,1016175,3,'Executive Producer'),(49051,1016176,3,'Casting'),(49051,1016177,3,'Casting'),(49051,1016178,8,'Costume Design'),(49051,1016179,4,'Storyboard'),(49051,1158956,3,'Executive Producer'),(49051,1322426,8,'Costume Supervisor'),(49051,1378828,6,'Sound Re-Recording Mixer'),(49051,1401738,1,'Still Photographer'),(49051,1406069,6,'Sound Re-Recording Mixer'),(49051,1424605,6,'Sound Effects Editor'),(49051,1424606,6,'Supervising Sound Editor'),(49051,1424612,6,'Sound Effects Editor'),(49051,1424615,6,'Sound Effects Editor'),(49051,1447518,9,'Stunts'),(49051,1447524,7,'Conceptual Design'),(49051,1452998,10,'VFX Artist'),(49051,1457360,1,'Still Photographer'),(49051,1470982,2,'Script Supervisor'),(49051,1544338,6,'Music Supervisor'),(49051,1544475,1,'Still Photographer'),(49051,1544476,1,'Still Photographer'),(49051,1544477,3,'Production Coordinator'),(49051,1544478,8,'Key Hair Stylist'),(49538,1113,3,'Casting'),(49538,943,1,'Director of Photography'),(49538,957,2,'Director'),(49538,957,4,'Writer'),(49538,3276,3,'Casting'),(49538,3904,5,'Editor'),(49538,7200,3,'Producer'),(49538,9032,3,'Producer'),(49538,9822,7,'Art Direction'),(49538,11224,7,'Art Direction'),(49538,11271,8,'Costume Design'),(49538,11092,3,'Producer'),(49538,20507,7,'Set Decoration'),(49538,34513,7,'Supervising Art Director'),(49538,21470,7,'Supervising Art Director'),(49538,23447,4,'Writer'),(49538,41848,7,'Art Direction'),(49538,49809,5,'Editor'),(49538,66689,7,'Supervising Art Director'),(49538,60579,7,'Production Design'),(49538,67202,7,'Art Direction'),(49538,67484,4,'Writer'),(49538,67485,4,'Writer'),(49538,120606,3,'Producer'),(49538,227440,6,'Music'),(49538,996220,9,'Utility Stunts'),(49538,1034754,7,'Art Direction'),(49538,1196351,3,'Casting'),(49538,1198658,7,'Art Direction'),(49538,1319752,8,'Costume Supervisor'),(49538,1327138,7,'Art Direction'),(49538,1327139,7,'Art Direction'),(49538,1327140,7,'Art Direction'),(49538,1327141,7,'Art Direction'),(49538,1327142,7,'Art Direction'),(49538,1327144,7,'Art Direction'),(49538,1327145,7,'Set Decoration'),(49538,1327146,8,'Costume Supervisor'),(49538,1401803,10,'Visual Effects Supervisor'),(49538,1452998,10,'Animation'),(49538,1453019,10,'VFX Artist'),(49538,1453944,11,'Lighting Artist'),(49538,1455461,11,'Lighting Technician'),(49538,1576050,9,'Production Office Assistant'),(49538,1642697,10,'Animation'),(131634,495,3,'Casting'),(131634,1213,6,'Original Music Composer'),(131634,1890,7,'Production Design'),(131634,4446,3,'Producer'),(131634,10571,3,'Co-Producer'),(131634,10943,2,'Director'),(131634,9619,6,'Sound Re-Recording Mixer'),(131634,9493,8,'Costume Supervisor'),(131634,10903,3,'Co-Producer'),(131634,10905,3,'Co-Producer'),(131634,40754,7,'Art Department Coordinator'),(131634,40789,11,'Rigging Gaffer'),(131634,40803,8,'Makeup Department Head'),(131634,40862,3,'Line Producer'),(131634,11508,7,'Supervising Art Director'),(131634,16737,6,'Music Editor'),(131634,21984,7,'Set Decoration'),(131634,23541,3,'Executive Producer'),(131634,27576,1,'Director of Photography'),(131634,35550,4,'Screenplay'),(131634,38022,7,'Art Direction'),(131634,41592,7,'Art Direction'),(131634,49625,7,'Greensman'),(131634,11106,8,'Assistant Costume Designer'),(131634,66513,3,'Associate Producer'),(131634,66519,5,'Editor'),(131634,69229,5,'Editor'),(131634,91055,3,'Executive Producer'),(131634,95142,8,'Makeup Department Head'),(131634,189111,3,'Executive Producer'),(131634,189111,4,'Novel'),(131634,189111,4,'Adaptation'),(131634,225633,4,'Screenplay'),(131634,406204,8,'Makeup Department Head'),(131634,406204,8,'Makeup Designer'),(131634,587804,8,'Hair Department Head'),(131634,935634,3,'Producer'),(131634,963843,7,'Art Direction'),(131634,967137,7,'Supervising Art Director'),(131634,968035,7,'Set Decoration'),(131634,971840,3,'Executive Producer'),(131634,986677,7,'Art Direction'),(131634,1089142,3,'Co-Producer'),(131634,1153038,7,'Art Direction'),(131634,1205126,8,'Costume Supervisor'),(131634,1227175,6,'Foley'),(131634,1311507,9,'Special Effects Coordinator'),(131634,1319384,9,'Makeup Effects'),(131634,1335066,9,'Property Master'),(131634,1335886,8,'Costume Supervisor'),(131634,1336198,8,'Set Costumer'),(131634,1339445,7,'Construction Coordinator'),(131634,1341865,2,'Script Supervisor'),(131634,1345596,5,'Dialogue Editor'),(131634,1345613,8,'Set Costumer'),(131634,1377290,9,'Property Master'),(131634,1379120,9,'Makeup Effects'),(131634,1380000,11,'Gaffer'),(131634,1380479,6,'Sound Designer'),(131634,1380479,6,'Supervising Sound Editor'),(131634,1392245,1,'Still Photographer'),(131634,1399071,1,'Helicopter Camera'),(131634,1399320,8,'Set Costumer'),(131634,1403415,1,'Helicopter Camera'),(131634,1403434,7,'Leadman'),(131634,1404805,8,'Makeup Artist'),(131634,1406844,11,'Gaffer'),(131634,1407722,9,'Makeup Effects'),(131634,1409281,8,'Set Costumer'),(131634,1411329,7,'Art Direction'),(131634,1412310,8,'Key Hair Stylist'),(131634,1418374,10,'Animation Director'),(131634,1424621,10,'Animation Supervisor'),(131634,1424679,7,'Assistant Art Director'),(131634,1424696,1,'Steadicam Operator'),(131634,1424894,8,'Hair Department Head'),(131634,1442115,9,'Property Master'),(131634,1442116,7,'Art Department Coordinator'),(131634,1442117,7,'Assistant Art Director'),(131634,1442118,7,'Assistant Art Director'),(131634,1442119,7,'Assistant Art Director'),(131634,1442125,7,'Construction Coordinator'),(131634,1442126,7,'Greensman'),(131634,1442164,1,'Camera Operator'),(131634,1449164,3,'Associate Producer'),(131634,1453675,11,'Gaffer'),(131634,1457327,10,'Animation Director'),(131634,1459878,10,'Animation Director'),(131634,1464851,9,'Makeup Effects'),(131634,1477203,3,'Co-Producer'),(131634,1506371,1,'Camera Operator'),(131634,1530231,10,'Special Effects Supervisor'),(131634,1532753,10,'Animation Supervisor'),(131634,1533100,8,'Seamstress'),(131634,1533491,8,'Assistant Costume Designer'),(131634,1539279,3,'Executive Producer'),(131634,1539280,3,'Co-Producer'),(131634,1541708,8,'Makeup Department Head'),(131634,1543226,10,'Visual Effects Coordinator'),(131634,1554749,9,'Armorer'),(131634,1569334,10,'Visual Effects Coordinator'),(131634,1594602,8,'Costume Design'),(131634,1594605,7,'Assistant Art Director'),(131634,1594606,3,'Casting Associate'),(131634,1594607,9,'Choreographer'),(131634,1594608,3,'Researcher'),(131634,1594611,8,'Seamstress'),(131634,1594614,8,'Hair Designer'),(131634,1594624,9,'Makeup Effects'),(131634,1594635,1,'First Assistant Camera'),(131634,1594640,10,'VFX Editor'),(131634,1594641,10,'VFX Editor'),(131634,1594642,10,'Visual Effects Coordinator'),(131634,1594650,5,'First Assistant Editor'),(241259,510,3,'Producer'),(241259,531,6,'Original Music Composer'),(241259,557,8,'Costume Design'),(241259,550,3,'Producer'),(241259,551,3,'Producer'),(241259,561,3,'Casting'),(241259,1305,6,'Music Editor'),(241259,1373,7,'Production Design'),(241259,6060,10,'Special Effects Supervisor'),(241259,7262,1,'Director of Photography'),(241259,8287,8,'Costume Supervisor'),(241259,16497,6,'Music Editor'),(241259,18311,3,'Producer'),(241259,23424,3,'Casting'),(241259,42269,10,'Visual Effects Supervisor'),(241259,42281,7,'Set Designer'),(241259,52164,8,'Hair Designer'),(241259,36657,7,'Art Direction'),(241259,38805,5,'Editor'),(241259,38792,4,'Screenplay'),(241259,67204,7,'Set Decoration'),(241259,70647,4,'Novel'),(241259,75375,8,'Makeup Artist'),(241259,80827,6,'Foley'),(241259,26205,2,'Director'),(241259,959555,7,'Supervising Art Director'),(241259,1027825,7,'Supervising Art Director'),(241259,1155668,10,'Visual Effects Producer'),(241259,1171004,11,'Electrician'),(241259,1229789,9,'Visual Effects Editor'),(241259,1322017,7,'Set Designer'),(241259,1327139,7,'Art Direction'),(241259,1334491,7,'Art Department Coordinator'),(241259,1337393,7,'Assistant Art Director'),(241259,1337394,7,'Art Direction'),(241259,1338217,7,'Construction Coordinator'),(241259,1342382,7,'Art Direction'),(241259,1350253,10,'Visual Effects Producer'),(241259,1372882,9,'Visual Effects Editor'),(241259,1376902,5,'Dialogue Editor'),(241259,1377416,6,'ADR & Dubbing'),(241259,1378828,6,'Sound Re-Recording Mixer'),(241259,1380196,5,'First Assistant Editor'),(241259,1386908,7,'Set Designer'),(241259,1389127,7,'Set Designer'),(241259,1389548,2,'Script Supervisor'),(241259,1393324,10,'Visual Effects Supervisor'),(241259,1393883,1,'Still Photographer'),(241259,1394040,1,'Additional Photography'),(241259,1394061,7,'Assistant Art Director'),(241259,1394093,2,'Script Supervisor'),(241259,1399033,9,'Second Unit Cinematographer'),(241259,1401118,9,'Choreographer'),(241259,1402921,8,'Hairstylist'),(241259,1403467,9,'Visual Effects Editor');
INSERT INTO `movie_crew` VALUES (241259,1404244,1,'Helicopter Camera'),(241259,1404845,10,'Visual Effects Producer'),(241259,1408354,1,'Steadicam Operator'),(241259,1408394,11,'Gaffer'),(241259,1409491,7,'Set Decoration'),(241259,1409817,8,'Hairstylist'),(241259,1411320,8,'Hairstylist'),(241259,1412721,5,'Digital Intermediate'),(241259,1412722,5,'Digital Intermediate'),(241259,1413180,10,'Visual Effects Supervisor'),(241259,1414558,5,'Digital Intermediate'),(241259,1417828,10,'Visual Effects Supervisor'),(241259,1417835,11,'Rigging Gaffer'),(241259,1422411,6,'Supervising Sound Editor'),(241259,1422812,9,'Property Master'),(241259,1425334,10,'Visual Effects Supervisor'),(241259,1462705,9,'Visual Effects Editor'),(241259,1465624,8,'Wigmaker'),(241259,1491848,6,'ADR & Dubbing'),(241259,1494209,1,'Helicopter Camera'),(241259,1527444,3,'Casting Associate'),(241259,1545994,1,'Camera Operator'),(241259,1551774,3,'Casting Associate'),(241259,1569346,8,'Hairstylist'),(241259,1621381,7,'Assistant Art Director'),(241259,1621391,10,'Animation Supervisor'),(241259,1621392,10,'Animation Supervisor'),(241259,1621393,10,'Animation Supervisor'),(241259,1621394,2,'Script Supervisor'),(241259,1621395,8,'Assistant Costume Designer'),(241259,1621397,9,'CG Supervisor'),(241259,1621402,11,'Gaffer'),(241259,1621403,1,'First Assistant Camera'),(241259,1621404,1,'First Assistant Camera'),(241259,1621405,1,'First Assistant Camera'),(241259,1621447,8,'Makeup Artist'),(241259,1621448,8,'Makeup Artist'),(241259,1621449,8,'Makeup Artist'),(241259,1621450,10,'Visual Effects Coordinator'),(241259,1621451,10,'Visual Effects Coordinator'),(241259,1621452,10,'Visual Effects Coordinator'),(241259,1621453,10,'Visual Effects Coordinator'),(241259,1621454,10,'Visual Effects Coordinator'),(241259,1621455,10,'Visual Effects Coordinator'),(241259,1621456,9,'Visual Effects Editor'),(241259,1621457,10,'Visual Effects Producer'),(241259,1621458,10,'Visual Effects Producer'),(68735,282,3,'Producer'),(68735,465,3,'Producer'),(68735,1997,4,'Screenplay'),(68735,5914,3,'Casting'),(68735,6882,6,'Music Editor'),(68735,12382,1,'Director of Photography'),(68735,10766,5,'Editor'),(68735,17675,8,'Costume Design'),(68735,17831,7,'Art Direction'),(68735,23651,7,'Production Design'),(68735,21026,6,'Sound Mixer'),(68735,21257,8,'Makeup Artist'),(68735,22061,7,'Supervising Art Director'),(68735,11021,7,'Set Decoration'),(68735,42264,10,'Visual Effects Producer'),(68735,10851,6,'Original Music Composer'),(68735,37436,3,'Producer'),(68735,52452,6,'Music Supervisor'),(68735,52453,6,'Music Supervisor'),(68735,54211,3,'Producer'),(68735,60711,3,'Executive Producer'),(68735,113126,9,'CG Supervisor'),(68735,113152,9,'CG Supervisor'),(68735,113180,10,'Visual Effects Supervisor'),(68735,61091,3,'Producer'),(68735,61177,7,'Art Direction'),(68735,75538,3,'Casting'),(68735,79185,8,'Makeup Department Head'),(68735,80851,5,'First Assistant Editor'),(68735,81850,2,'Director'),(68735,81850,4,'Screenplay'),(68735,158916,6,'Sound Re-Recording Mixer'),(68735,223992,8,'Makeup Artist'),(68735,548435,6,'Sound Mixer'),(68735,572622,6,'Supervising Sound Editor'),(68735,930016,6,'Sound Effects Editor'),(68735,938337,1,'Camera Operator'),(68735,966223,3,'Executive Producer'),(68735,1024910,3,'Casting'),(68735,1042640,3,'Executive Producer'),(68735,1077782,6,'Foley'),(68735,1180101,9,'Sound Design Assistant'),(68735,1196413,4,'Story'),(68735,1196413,3,'Co-Producer'),(68735,1305741,8,'Assistant Costume Designer'),(68735,1319818,8,'Set Costumer'),(68735,1320977,8,'Costume Supervisor'),(68735,1324052,7,'Art Direction'),(68735,1328138,8,'Makeup Designer'),(68735,1335416,6,'Sound Effects Editor'),(68735,1352967,5,'Dialogue Editor'),(68735,1352969,6,'Supervising Sound Editor'),(68735,1367362,6,'Foley'),(68735,1378684,7,'Assistant Art Director'),(68735,1378697,6,'Sound Re-Recording Mixer'),(68735,1378728,2,'Script Supervisor'),(68735,1382495,3,'Executive Producer'),(68735,1382496,3,'Executive Producer'),(68735,1382498,3,'Unit Production Manager'),(68735,1386918,10,'Visual Effects Producer'),(68735,1391699,1,'Still Photographer'),(68735,1391700,11,'Gaffer'),(68735,1394952,10,'Special Effects Supervisor'),(68735,1395024,6,'Sound Re-Recording Mixer'),(68735,1399071,1,'Helicopter Camera'),(68735,1401386,7,'Art Department Coordinator'),(68735,1401604,8,'Wigmaker'),(68735,1401971,10,'Visual Effects Supervisor'),(68735,1406789,6,'Music Editor'),(68735,1418529,8,'Key Hair Stylist'),(68735,1426773,10,'Animation Supervisor'),(68735,1431077,1,'Camera Operator'),(68735,1437193,6,'Sound Effects Editor'),(68735,1441365,1,'Steadicam Operator'),(68735,1442488,1,'Additional Photography'),(68735,1447148,10,'Visual Effects Producer'),(68735,1448611,1,'Camera Operator'),(68735,1455598,10,'Animation'),(68735,1459747,10,'Animation'),(68735,1460593,9,'Production Office Assistant'),(68735,1484200,10,'Visual Effects Producer'),(68735,1486827,1,'Camera Operator'),(68735,1494209,1,'Helicopter Camera'),(68735,1506266,10,'Visual Effects Producer'),(68735,1512761,8,'Makeup Artist'),(68735,1521485,3,'Casting Associate'),(68735,1548887,10,'VFX Editor'),(68735,1552332,11,'Rigging Gaffer'),(68735,1552475,1,'First Assistant Camera'),(68735,1552476,1,'First Assistant Camera'),(68735,1552623,8,'Assistant Costume Designer'),(68735,1559906,8,'Seamstress'),(68735,1568468,10,'VFX Editor'),(68735,1579180,1,'Director of Photography'),(68735,1579180,9,'Second Unit Cinematographer'),(68735,1590406,9,'Sequence Supervisor'),(68735,1595474,9,'Sequence Supervisor'),(68735,1621490,7,'Art Direction'),(68735,1621492,7,'Construction Coordinator'),(68735,1621496,8,'Assistant Costume Designer'),(68735,1621497,8,'Seamstress'),(68735,1621498,8,'Seamstress'),(68735,1621499,8,'Seamstress'),(68735,1621500,8,'Seamstress'),(68735,1621501,8,'Set Costumer'),(68735,1621502,8,'Set Costumer'),(68735,1621503,8,'Hairstylist'),(68735,1621504,8,'Hairstylist'),(68735,1621505,8,'Makeup Artist'),(68735,1621758,10,'Animation'),(68735,1621759,10,'Animation'),(68735,1621760,10,'Animation'),(68735,1621761,9,'CG Supervisor'),(68735,1621762,9,'CG Supervisor'),(68735,1621763,10,'VFX Editor'),(68735,1621764,10,'VFX Supervisor'),(68735,1621765,9,'Visual Effects Editor'),(68735,1621766,9,'Visual Effects Editor'),(68735,1621767,10,'Visual Effects Producer'),(68735,1621770,10,'Visual Effects Producer'),(68735,1621771,10,'Visual Effects Supervisor'),(68735,1621772,10,'Visual Effects Supervisor'),(68735,1621792,1,'First Assistant Camera'),(68735,1621793,1,'First Assistant Camera'),(68735,1621797,11,'Gaffer'),(68735,1621799,6,'Sound Effects Editor'),(68735,1621800,5,'First Assistant Editor'),(68735,1700105,9,'Additional Music'),(68735,1700673,1,'First Assistant Camera'),(87101,1720,3,'Casting'),(87101,869,4,'Characters'),(87101,2710,4,'Characters'),(87101,7237,7,'Set Decoration'),(87101,11411,7,'Production Design'),(87101,10123,5,'Editor'),(87101,15229,9,'Stunt Coordinator'),(87101,14341,7,'Art Direction'),(87101,13458,9,'Stunt Coordinator'),(87101,20294,4,'Screenplay'),(87101,20294,3,'Executive Producer'),(87101,17649,9,'Second Unit Cinematographer'),(87101,42034,6,'Sound Re-Recording Mixer'),(87101,20406,9,'Second Unit Cinematographer'),(87101,23420,3,'Executive Producer'),(87101,25021,8,'Makeup Department Head'),(87101,29018,3,'Producer'),(87101,27226,4,'Screenplay'),(87101,27226,3,'Executive Producer'),(87101,36605,8,'Costume Design'),(87101,41330,3,'Executive Producer'),(87101,50140,1,'Director of Photography'),(87101,113208,9,'Stunt Coordinator'),(87101,66689,7,'Art Direction'),(87101,58433,3,'Producer'),(87101,47005,2,'Director'),(87101,60155,7,'Art Direction'),(87101,92479,9,'Stunt Coordinator'),(87101,72235,8,'Wigmaker'),(87101,83093,9,'Stunts'),(87101,91122,1,'Helicopter Camera'),(87101,929145,6,'Original Music Composer'),(87101,966594,7,'Art Direction'),(87101,1018071,5,'First Assistant Editor'),(87101,1027025,3,'Executive Producer'),(87101,1084753,1,'Camera Operator'),(87101,1084754,1,'Additional Camera'),(87101,1119475,2,'Script Supervisor'),(87101,1144651,1,'Camera Operator'),(87101,1182907,7,'Supervising Art Director'),(87101,1182909,8,'Hair Department Head'),(87101,1192644,11,'Gaffer'),(87101,1195362,7,'Art Direction'),(87101,1205993,1,'Camera Operator'),(87101,1322466,8,'Costume Supervisor'),(87101,1324652,1,'Still Photographer'),(87101,1326651,7,'Assistant Art Director'),(87101,1333932,3,'Casting'),(87101,1338241,10,'Visual Effects Coordinator'),(87101,1338372,6,'Foley'),(87101,1342656,6,'ADR & Dubbing'),(87101,1342656,5,'Dialogue Editor'),(87101,1345595,6,'Sound Re-Recording Mixer'),(87101,1345596,5,'Dialogue Editor'),(87101,1345597,6,'Sound Designer'),(87101,1345597,6,'Supervising Sound Editor'),(87101,1345635,2,'Script Supervisor'),(87101,1364239,7,'Art Direction'),(87101,1367493,6,'Foley'),(87101,1378246,8,'Set Costumer'),(87101,1378695,6,'Supervising Sound Editor'),(87101,1378696,6,'Supervising Sound Editor'),(87101,1384371,9,'Visual Effects Editor'),(87101,1384388,9,'Stunt Coordinator'),(87101,1388872,10,'Visual Effects Supervisor'),(87101,1389129,7,'Art Department Coordinator'),(87101,1389131,7,'Construction Coordinator'),(87101,1394750,10,'Visual Effects Producer'),(87101,1394755,10,'Visual Effects Supervisor'),(87101,1395463,1,'Camera Operator'),(87101,1399071,1,'Helicopter Camera'),(87101,1399323,8,'Set Costumer'),(87101,1401593,1,'Helicopter Camera'),(87101,1403504,9,'Visual Effects Editor'),(87101,1405389,1,'Camera Operator'),(87101,1406757,9,'Visual Effects Editor'),(87101,1408301,6,'Sound Designer'),(87101,1410116,8,'Set Costumer'),(87101,1411272,1,'Steadicam Operator'),(87101,1418345,8,'Makeup Artist'),(87101,1418403,11,'Rigging Gaffer'),(87101,1418406,8,'Set Costumer'),(87101,1423844,1,'Additional Camera'),(87101,1427435,5,'Digital Intermediate'),(87101,1433721,6,'Sound Effects Editor'),(87101,1437305,1,'Additional Camera'),(87101,1439111,8,'Costume Supervisor'),(87101,1441673,9,'Visual Effects Editor'),(87101,1447326,4,'Storyboard'),(87101,1458103,10,'Animation Supervisor'),(87101,1459878,10,'Animation Director'),(87101,1460777,5,'Digital Intermediate'),(87101,1463777,11,'Rigging Grip'),(87101,1466537,3,'Casting Associate'),(87101,1530686,7,'Art Direction'),(87101,1530687,7,'Assistant Art Director'),(87101,1530689,7,'Art Department Coordinator'),(87101,1530690,8,'Assistant Costume Designer'),(87101,1530692,8,'Seamstress'),(87101,1530693,8,'Seamstress'),(87101,1530694,8,'Set Costumer'),(87101,1530700,8,'Key Hair Stylist'),(87101,1530701,8,'Makeup Artist'),(87101,1530702,8,'Makeup Artist'),(87101,1530703,8,'Makeup Artist'),(87101,1530705,6,'Sound Effects Editor'),(87101,1530706,6,'Sound Effects Editor'),(87101,1530710,9,'Special Effects Coordinator'),(87101,1530712,9,'Special Effects Coordinator'),(87101,1530717,11,'Gaffer'),(87101,1530718,11,'Rigging Grip'),(87101,1530719,11,'Rigging Grip'),(87101,1530720,11,'Rigging Grip'),(87101,1530721,1,'First Assistant Camera'),(87101,1530722,1,'First Assistant Camera'),(87101,1530723,1,'First Assistant Camera'),(87101,1530724,1,'First Assistant Camera'),(87101,1530725,10,'Animation Supervisor'),(87101,1530726,9,'Armorer'),(87101,1530727,9,'Armorer'),(87101,1530728,9,'Armorer'),(87101,1530743,5,'Digital Intermediate'),(87101,1530745,5,'First Assistant Editor'),(87101,1531501,10,'Visual Effects Coordinator'),(87101,1531502,10,'Visual Effects Coordinator'),(87101,1531503,10,'Animation Supervisor'),(87101,1531508,10,'Visual Effects Coordinator'),(87101,1531509,10,'Visual Effects Coordinator'),(87101,1531511,10,'Visual Effects Coordinator'),(87101,1531512,9,'Visual Effects Editor'),(87101,1531513,10,'Visual Effects Coordinator'),(87101,1531514,10,'Visual Effects Coordinator'),(87101,1531515,10,'Visual Effects Coordinator'),(87101,1531516,10,'Visual Effects Coordinator'),(87101,1531517,10,'Visual Effects Coordinator'),(87101,1531519,10,'Visual Effects Producer'),(87101,1531521,10,'Visual Effects Producer'),(87101,1531522,10,'Visual Effects Producer'),(87101,1531523,10,'Visual Effects Producer'),(87101,1531524,10,'Visual Effects Supervisor'),(87101,1531525,9,'Visual Effects Editor'),(87101,1531526,10,'Visual Effects Supervisor'),(87101,1531529,9,'Stunt Coordinator'),(87101,1551366,11,'Electrician'),(87101,1561731,3,'Unit Production Manager'),(109445,7879,3,'Executive Producer'),(109445,23486,6,'Original Music Composer'),(109445,15774,2,'Director'),(109445,15774,4,'Story'),(109445,61416,3,'Producer'),(109445,63977,4,'Author'),(109445,119863,4,'Story'),(109445,968327,5,'Editor'),(109445,1046477,3,'Production Manager'),(109445,1120694,2,'Director'),(109445,1120694,4,'Screenplay'),(109445,1120694,4,'Story'),(109445,1364882,4,'Storyboard'),(109445,1397792,10,'Visual Effects'),(109445,1443211,3,'Associate Producer'),(109445,1447483,2,'Layout'),(109445,1447497,2,'Layout'),(109445,1447499,7,'Art Department Manager'),(109445,1447503,2,'Layout'),(109445,1447506,2,'Layout'),(109445,1450984,2,'Layout'),(109445,1452489,1,'Camera Department Manager'),(109445,1459735,10,'Animation'),(109445,1460472,10,'Animation'),(109445,1460489,10,'Visual Effects'),(76338,3311,3,'Casting'),(76338,3962,8,'Costume Design'),(76338,7232,3,'Casting'),(76338,5551,4,'Screenplay'),(76338,5552,4,'Screenplay'),(76338,6041,6,'Original Music Composer'),(76338,7624,3,'Executive Producer'),(76338,10850,3,'Producer'),(76338,8415,3,'Executive Producer'),(76338,9818,7,'Art Direction'),(76338,11181,3,'Producer'),(76338,12832,4,'Story'),(76338,20401,4,'Story'),(76338,50140,1,'Director of Photography'),(76338,57027,3,'Executive Producer'),(76338,47005,2,'Director'),(76338,59728,5,'Editor'),(76338,113672,3,'Executive Producer'),(76338,113674,3,'Executive Producer'),(76338,66552,7,'Set Decoration'),(76338,87173,3,'Executive Producer'),(76338,109542,4,'Screenplay'),(76338,150194,9,'Stunts'),(76338,983309,7,'Art Direction'),(76338,1104780,7,'Supervising Art Director'),(76338,1326451,7,'Art Direction'),(76338,1326458,7,'Art Direction'),(76338,1326460,7,'Art Direction'),(76338,1388855,7,'Art Direction'),(76338,1412756,9,'Visual Effects Editor'),(76338,1428907,7,'Art Direction'),(76338,1447326,4,'Storyboard'),(76338,1447542,9,'Compositors'),(76338,1456696,9,'Compositors'),(76338,1457930,10,'Visual Effects'),(76338,1512798,3,'Associate Producer'),(76338,1533708,3,'Associate Producer'),(76338,1835498,9,'Stunts'),(76338,1877783,3,'Line Producer'),(76338,1878481,7,'Art Direction'),(76341,8374,3,'Executive Producer'),(76341,1720,3,'Casting'),(76341,1296,3,'Executive Producer'),(76341,2702,1,'Director of Photography'),(76341,4501,9,'Thanks'),(76341,9583,7,'Supervising Art Director'),(76341,17166,8,'Costume Design'),(76341,20629,2,'Director'),(76341,20629,4,'Writer'),(76341,20629,3,'Producer'),(76341,11651,3,'Producer'),(76341,37281,3,'Casting'),(76341,53346,3,'Casting'),(76341,56341,10,'Animation'),(76341,35403,8,'Prosthetic Supervisor'),(76341,56827,6,'Music'),(76341,57161,9,'Second Unit Cinematographer'),(76341,58067,5,'Editor'),(76341,59774,3,'Executive Producer'),(76341,60267,10,'Visual Effects Producer'),(76341,61485,7,'Set Decoration'),(76341,62484,7,'Supervising Art Director'),(76341,66897,3,'Executive Producer'),(76341,75575,3,'Supervising Producer'),(76341,939990,7,'Production Design'),(76341,1002602,5,'Dialogue Editor'),(76341,1025090,9,'Stunts'),(76341,1027146,4,'Writer'),(76341,1066819,3,'Supervising Producer'),(76341,1171315,9,'Thanks'),(76341,1191326,7,'Set Decoration'),(76341,1318090,1,'Camera Operator'),(76341,1337413,6,'Foley'),(76341,1337453,9,'Property Master'),(76341,1355536,5,'Dialogue Editor'),(76341,1357072,9,'Production Office Assistant'),(76341,1391711,7,'Art Direction'),(76341,1392718,1,'Still Photographer'),(76341,1392737,2,'Script Supervisor'),(76341,1401735,9,'Stunt Coordinator'),(76341,1401739,11,'Gaffer'),(76341,1402902,11,'Gaffer'),(76341,1412756,9,'Compositors'),(76341,1420856,3,'Casting'),(76341,1424598,7,'Art Department Coordinator'),(76341,1427378,1,'Camera Operator'),(76341,1432918,1,'Camera Operator'),(76341,1438652,9,'Post Production Supervisor'),(76341,1451219,3,'Executive Producer'),(76341,1451274,10,'Visual Effects'),(76341,1451525,8,'Makeup Artist'),(76341,1452256,8,'Hairstylist'),(76341,1452989,10,'Animation'),(76341,1454939,8,'Costume Supervisor'),(76341,1456696,9,'Compositors'),(76341,1457359,1,'Camera Operator'),(76341,1468313,4,'Writer'),(76341,1475737,7,'Set Designer'),(76341,1483582,8,'Set Costumer'),(76341,1494209,1,'Helicopter Camera'),(76341,1494210,1,'Steadicam Operator'),(76341,1511182,9,'Thanks'),(76341,1518756,3,'Producer'),(76341,1518756,2,'Assistant Director'),(76341,1518764,7,'Art Direction'),(76341,1518766,7,'Set Decoration'),(76341,1518773,8,'Set Costumer'),(76341,1518774,7,'Art Department Coordinator'),(76341,1518775,7,'Assistant Art Director'),(76341,1518777,1,'Additional Photography'),(76341,1518778,5,'Dialogue Editor'),(76341,1518779,5,'Dialogue Editor'),(76341,1518780,7,'Construction Coordinator'),(76341,1518781,7,'Conceptual Design'),(76341,1518782,5,'Digital Intermediate'),(76341,1554064,9,'Stunts'),(57165,474,3,'Casting'),(57165,9154,5,'Editor'),(57165,11227,8,'Costume Design'),(57165,17004,6,'Original Music Composer'),(57165,22161,1,'Director of Photography'),(57165,18865,3,'Executive Producer'),(57165,10876,3,'Executive Producer'),(57165,29609,7,'Art Direction'),(57165,32349,7,'Production Design'),(57165,54211,3,'Executive Producer'),(57165,67759,3,'Producer'),(57165,61091,3,'Executive Producer'),(57165,66739,2,'Director'),(57165,75804,3,'Executive Producer'),(57165,113987,3,'Producer'),(57165,142686,4,'Screenplay'),(57165,937234,4,'Screenplay'),(57165,983309,7,'Art Direction'),(57165,1104780,7,'Supervising Art Director'),(57165,1325212,7,'Set Decoration'),(57165,1326451,7,'Art Direction'),(57165,1326458,7,'Art Direction'),(57165,1326460,7,'Art Direction'),(57165,1326461,8,'Costume Supervisor'),(57165,1428735,6,'Other'),(57165,1463178,1,'Camera Technician'),(57165,1463182,10,'VFX Artist'),(57165,1551777,8,'Assistant Costume Designer'),(57165,1767709,10,'Visual Effects'),(57165,1767710,10,'Visual Effects'),(57165,1831266,9,'Stunts'),(62213,85,3,'Producer'),(62213,1226,7,'Production Design'),(62213,510,2,'Director'),(62213,531,6,'Original Music Composer'),(62213,541,5,'Editor'),(62213,541,3,'Executive Producer'),(62213,557,8,'Costume Design'),(62213,1296,3,'Executive Producer'),(62213,1297,3,'Producer'),(62213,1300,4,'Story'),(62213,1302,3,'Casting'),(62213,2423,1,'Director of Photography'),(62213,16729,3,'Producer'),(62213,114479,3,'Executive Producer'),(62213,565491,4,'Screenplay'),(62213,565491,4,'Story'),(62213,938107,3,'Producer'),(62213,938108,3,'Producer'),(177677,1113,3,'Casting'),(177677,498,8,'Costume Design'),(177677,500,3,'Producer'),(177677,3725,7,'Art Direction'),(177677,2950,1,'Director of Photography'),(177677,6044,3,'Casting'),(177677,9967,7,'Production Design'),(177677,9033,2,'Director'),(177677,9033,4,'Screenplay'),(177677,9033,4,'Story'),(177677,11351,6,'Supervising Sound Editor'),(177677,15312,4,'Characters'),(177677,15344,3,'Producer'),(177677,29018,3,'Executive Producer'),(177677,29608,3,'Executive Producer'),(177677,30463,7,'Supervising Art Director'),(177677,39668,7,'Art Direction'),(177677,49809,5,'Editor'),(177677,28977,3,'Producer'),(177677,52456,3,'Casting Associate'),(177677,56737,3,'Producer'),(177677,58433,3,'Producer'),(177677,62580,6,'Original Music Composer'),(177677,62723,5,'Digital Intermediate'),(177677,66552,7,'Set Decoration'),(177677,77511,3,'Line Producer'),(177677,71577,7,'Art Direction'),(177677,105780,6,'Sound Mixer'),(177677,117241,6,'Sound Effects Editor'),(177677,937946,1,'Camera Operator'),(177677,1079085,6,'Foley'),(177677,1133968,6,'Orchestrator'),(177677,1189807,1,'Camera Operator'),(177677,1239407,4,'Story'),(177677,1319120,8,'Costume Supervisor'),(177677,1335539,7,'Art Direction'),(177677,1335562,6,'Sound Effects Editor'),(177677,1337408,6,'Sound Effects Editor'),(177677,1337412,6,'Foley'),(177677,1357599,6,'Music Editor'),(177677,1373558,9,'Armorer'),(177677,1373703,7,'Assistant Art Director'),(177677,1373711,6,'Sound Effects Editor'),(177677,1373714,9,'Special Effects Coordinator'),(177677,1373726,10,'Visual Effects Producer'),(177677,1373729,2,'Script Supervisor'),(177677,1388894,1,'Camera Operator'),(177677,1389139,1,'Still Photographer'),(177677,1390350,7,'Art Direction'),(177677,1392625,10,'Visual Effects Producer'),(177677,1393300,6,'Foley'),(177677,1395024,6,'Sound Re-Recording Mixer'),(177677,1398084,7,'Art Direction'),(177677,1398100,10,'Visual Effects Producer'),(177677,1398918,6,'Foley'),(177677,1398972,1,'Underwater Camera'),(177677,1399071,1,'Helicopter Camera'),(177677,1400081,1,'Camera Operator'),(177677,1401145,10,'Visual Effects Supervisor'),(177677,1403504,9,'Visual Effects Editor'),(177677,1408378,6,'ADR & Dubbing'),(177677,1408400,5,'First Assistant Editor'),(177677,1408855,2,'Script Supervisor'),(177677,1411066,8,'Hair Designer'),(177677,1411066,8,'Makeup Designer'),(177677,1411079,7,'Assistant Art Director'),(177677,1411533,10,'Visual Effects Supervisor'),(177677,1413178,10,'Visual Effects Supervisor'),(177677,1417820,9,'Visual Effects Editor'),(177677,1422984,11,'Rigging Gaffer'),(177677,1424180,9,'Second Unit Cinematographer'),(177677,1424617,6,'Sound Re-Recording Mixer'),(177677,1426314,7,'Art Department Coordinator'),(177677,1428909,8,'Hairstylist'),(177677,1428911,8,'Key Hair Stylist'),(177677,1428911,8,'Makeup Artist'),(177677,1428912,8,'Makeup Artist'),(177677,1428916,1,'Camera Operator'),(177677,1430498,11,'Gaffer'),(177677,1435644,10,'Special Effects Supervisor'),(177677,1458109,9,'Visual Effects Editor'),(177677,1459864,7,'Assistant Art Director'),(177677,1459899,9,'Visual Effects Editor'),(177677,1465949,5,'Digital Intermediate'),(177677,1472774,7,'Assistant Art Director'),(177677,1486198,3,'Casting Associate'),(177677,1531514,10,'Visual Effects Coordinator'),(177677,1545912,8,'Costume Supervisor'),(177677,1545913,8,'Set Costumer'),(177677,1545914,8,'Set Costumer'),(177677,1545915,8,'Set Costumer'),(177677,1545919,7,'Art Direction'),(177677,1545921,7,'Set Decoration'),(177677,1545923,8,'Hairstylist'),(177677,1545925,8,'Makeup Artist'),(177677,1545926,8,'Makeup Artist'),(177677,1545929,10,'3D Supervisor'),(177677,1545932,10,'Animation'),(177677,1545978,10,'Visual Effects Coordinator'),(177677,1545979,10,'Visual Effects Coordinator'),(177677,1545980,10,'Visual Effects Coordinator'),(177677,1545981,10,'Visual Effects Coordinator'),(177677,1545982,10,'Visual Effects Coordinator'),(177677,1545983,10,'Visual Effects Coordinator'),(177677,1545984,10,'Visual Effects Producer'),(177677,1545985,9,'Sequence Supervisor'),(177677,1545987,9,'Sequence Supervisor'),(177677,1545988,10,'Special Effects Supervisor'),(177677,1545989,11,'Gaffer'),(177677,1545994,1,'Additional Camera'),(177677,1545995,1,'Additional Camera'),(177677,1545996,5,'First Assistant Editor'),(49444,947,6,'Original Music Composer'),(49444,11098,6,'Original Music Composer'),(49444,15349,5,'Editor'),(49444,56678,5,'Editor'),(49444,57743,4,'Screenplay'),(49444,57743,3,'Co-Producer'),(49444,57744,4,'Screenplay'),(49444,57744,3,'Co-Producer'),(49444,142312,2,'Director'),(49444,946051,3,'Producer'),(49444,1295761,3,'Co-Producer'),(49444,1338976,6,'Sound Re-Recording Mixer'),(49444,1352979,6,'Music Editor'),(49444,1378695,6,'Supervising Sound Editor'),(49444,1378696,6,'Supervising Sound Editor'),(49444,1416155,6,'Sound Re-Recording Mixer'),(49444,1447385,10,'Animation'),(49444,1447506,2,'Layout'),(49444,1447556,9,'Compositors'),(49444,1460472,10,'Animation'),(49444,1462666,2,'Layout'),(49444,1681250,7,'Production Design'),(49444,1681256,10,'Visual Effects Supervisor'),(117251,511,3,'Producer'),(117251,561,3,'Casting'),(117251,5430,3,'Producer'),(117251,5430,6,'Original Music Composer'),(117251,6046,2,'Director'),(117251,6046,3,'Producer'),(117251,6049,6,'Original Music Composer'),(117251,6053,7,'Set Decoration'),(117251,6033,8,'Costume Design'),(117251,15364,3,'Executive Producer'),(117251,10819,7,'Production Design'),(117251,20294,3,'Producer'),(117251,20204,3,'Producer'),(117251,20204,4,'Writer'),(117251,20208,3,'Producer'),(117251,38673,3,'Executive Producer'),(117251,225904,5,'Editor'),(117251,402272,1,'Director of Photography'),(117251,979007,7,'Set Decoration'),(117251,1074867,3,'Executive Producer'),(117251,1164341,9,'Stunts'),(117251,1455467,11,'Lighting Technician'),(50321,21879,4,'Screenplay'),(50321,21879,2,'Director'),(50321,1140576,10,'Animation'),(50321,1450983,11,'Lighting Technician'),(50321,1451682,11,'Lighting Artist'),(50321,1453014,10,'Animation'),(50321,1463784,10,'Animation'),(266647,474,3,'Casting'),(266647,943,1,'Director of Photography'),(266647,2122,5,'Editor'),(266647,3285,1,'Director of Photography'),(266647,11098,6,'Original Music Composer'),(266647,14687,4,'Characters'),(266647,13839,7,'Production Design'),(266647,21378,3,'Producer'),(266647,36588,2,'Director'),(266647,36590,5,'Editor'),(266647,36591,8,'Costume Design'),(266647,88967,3,'Producer'),(266647,131947,4,'Screenplay'),(266647,1032067,10,'Special Effects Supervisor'),(266647,1108835,3,'Casting'),(266647,1112036,3,'Executive Producer'),(266647,1337419,6,'Music Editor'),(266647,1395152,3,'Producer'),(266647,1404326,6,'Music Editor'),(266647,1425395,6,'Music Editor'),(266647,1427849,2,'Script Supervisor'),(266647,1685996,6,'Boom Operator'),(82703,18898,2,'Director'),(82703,94534,3,'Executive Producer'),(82703,175229,7,'Production Design'),(82703,186402,4,'Screenplay'),(82703,928657,3,'Executive Producer'),(82703,928659,3,'Executive Producer'),(82703,928660,10,'Visual Development'),(82703,928661,10,'Visual Effects'),(82703,1242735,4,'Characters'),(82703,1450983,11,'Lighting Technician'),(82703,1453498,10,'Visual Development'),(80321,947,6,'Original Music Composer'),(80321,5656,4,'Screenplay'),(80321,12080,2,'Director'),(80321,18863,2,'Director'),(80321,18863,4,'Screenplay'),(80321,18864,2,'Director'),(80321,51909,3,'Producer'),(80321,56671,3,'Producer'),(80321,68016,6,'Orchestrator'),(80321,928419,7,'Set Designer'),(80321,928421,10,'Visual Development'),(80321,928422,10,'Visual Development'),(80321,928423,10,'Visual Development'),(80321,928424,10,'Visual Effects'),(80321,1450983,11,'Lighting Technician'),(36669,9856,4,'Characters'),(36669,7256,2,'Director'),(36669,10666,3,'Producer'),(36669,10783,4,'Screenplay'),(36669,10782,4,'Screenplay'),(36669,81517,3,'Development Manager'),(36669,69678,3,'Producer'),(43074,707,3,'Executive Producer'),(43074,707,4,'Characters'),(43074,1524,4,'Characters'),(43074,7235,7,'Supervising Art Director'),(43074,10572,6,'Music'),(43074,5667,1,'Director of Photography'),(43074,6348,8,'Costume Design'),(43074,19157,7,'Set Decoration'),(43074,8858,3,'Producer'),(43074,13179,6,'Sound Designer'),(43074,18786,8,'Hair Department Head'),(43074,32490,8,'Hairstylist'),(43074,40104,8,'Makeup Department Head'),(43074,41079,5,'Editor'),(43074,41080,3,'Casting'),(43074,41081,7,'Production Design'),(43074,49907,3,'Executive Producer'),(43074,54251,3,'Executive Producer'),(43074,57601,3,'Executive Producer'),(43074,91326,10,'Animation Supervisor'),(43074,103536,9,'Visual Effects Editor'),(43074,116805,4,'Screenplay'),(43074,116805,2,'Director'),(43074,116805,3,'Executive Producer'),(43074,579405,6,'Sound Re-Recording Mixer'),(43074,930189,7,'Art Direction'),(43074,1031811,6,'Supervising Sound Editor'),(43074,1106222,4,'Screenplay'),(43074,1117879,3,'Executive Producer'),(43074,1293581,7,'Art Direction'),(43074,1330048,8,'Costume Supervisor'),(43074,1334462,7,'Construction Coordinator'),(43074,1338372,6,'Foley'),(43074,1350253,10,'Visual Effects Producer'),(43074,1367362,6,'Foley'),(43074,1367493,6,'Foley'),(43074,1367661,7,'Art Direction'),(43074,1368882,8,'Set Costumer'),(43074,1371112,3,'Casting Associate'),(43074,1374169,6,'Foley'),(43074,1377416,5,'Dialogue Editor'),(43074,1389609,8,'Makeup Artist'),(43074,1391337,3,'Associate Producer'),(43074,1395454,10,'Visual Effects Producer'),(43074,1395709,6,'Sound Re-Recording Mixer'),(43074,1396802,9,'Visual Effects Editor'),(43074,1400374,1,'Camera Operator'),(43074,1400540,2,'Script Supervisor'),(43074,1401593,1,'Helicopter Camera'),(43074,1404903,6,'Supervising Sound Editor'),(43074,1405232,5,'Dialogue Editor'),(43074,1407227,6,'Sound Effects Editor'),(43074,1408293,8,'Hairstylist'),(43074,1408393,1,'Still Photographer'),(43074,1412699,6,'Sound Effects Editor'),(43074,1413122,11,'Gaffer'),(43074,1416093,8,'Makeup Artist'),(43074,1417823,9,'Visual Effects Editor'),(43074,1417974,6,'First Assistant Sound Editor'),(43074,1419101,10,'Visual Effects Producer'),(43074,1419103,9,'CG Supervisor'),(43074,1419107,11,'Rigging Gaffer'),(43074,1425616,3,'Producer'),(43074,1432617,10,'Visual Effects Producer'),(43074,1447941,8,'Makeup Artist'),(43074,1459726,10,'Animation Supervisor'),(43074,1461605,8,'Makeup Artist'),(43074,1463527,10,'Visual Effects Producer'),(43074,1465618,7,'Art Direction'),(43074,1483136,10,'VFX Production Coordinator'),(43074,1483902,2,'Script Supervisor'),(43074,1494209,1,'Helicopter Camera'),(43074,1500696,3,'Executive Producer'),(43074,1500697,5,'Editor'),(43074,1530712,10,'Special Effects Supervisor'),(43074,1531532,8,'Key Hair Stylist'),(43074,1532733,8,'Assistant Costume Designer'),(43074,1533497,6,'Music Editor'),(43074,1533502,11,'Gaffer'),(43074,1533531,5,'First Assistant Editor'),(43074,1567950,1,'Additional Photography'),(43074,1569401,9,'Visual Effects Editor'),(43074,1590102,5,'Digital Intermediate'),(43074,1594001,8,'Set Costumer'),(43074,1693548,7,'Art Department Coordinator'),(43074,1717720,7,'Conceptual Design'),(43074,1717724,3,'Casting Associate'),(43074,1717726,3,'Casting Associate'),(43074,1717727,8,'Set Costumer'),(43074,1717728,8,'Set Costumer'),(43074,1717739,9,'CG Supervisor'),(43074,1717740,9,'CG Supervisor'),(43074,1717741,9,'Visual Effects Editor'),(43074,1717742,9,'Visual Effects Editor'),(43074,1717746,10,'Visual Effects Producer'),(43074,1717769,8,'Makeup Department Head'),(43074,1717770,8,'Makeup Artist'),(43074,1772830,3,'Associate Producer'),(43074,1772831,3,'Associate Producer'),(43074,1772832,7,'Set Decoration'),(140300,10828,3,'Executive Producer'),(140300,57743,4,'Writer'),(140300,57743,3,'Co-Producer'),(140300,57744,4,'Writer'),(140300,57744,3,'Co-Producer'),(140300,64151,3,'Executive Producer'),(140300,142312,2,'Director'),(140300,571581,10,'Animation'),(140300,946051,3,'Producer'),(140300,1262481,2,'Director'),(140300,1297764,10,'Animation'),(140300,1404326,6,'Music Editor'),(140300,1460504,10,'Animation Manager'),(140300,1462000,10,'Animation'),(140300,1464412,10,'Animation'),(140300,1464413,2,'Layout'),(140300,1464414,9,'Technical Supervisor'),(140300,1464415,10,'Animation'),(140300,1464416,2,'Layout'),(140300,1464417,10,'Animation'),(140300,1464418,2,'Layout'),(140300,1464419,9,'Technical Supervisor'),(140300,1464420,10,'Animation'),(140300,1464421,10,'Animation'),(140300,1464422,9,'Supervising Animator'),(140300,1464423,2,'Layout'),(140300,1464424,10,'Animation'),(140300,1464425,10,'Modeling'),(140300,1464426,10,'Animation'),(140300,1464427,10,'VFX Artist'),(140300,1558985,6,'Music'),(140300,1627914,3,'Executive Producer'),(140300,1847451,3,'Co-Producer'),(140300,1847452,3,'Executive Producer'),(56292,500,3,'Producer'),(56292,605,8,'Costume Design'),(56292,2950,1,'Director of Photography'),(56292,4854,3,'Co-Producer'),(56292,4856,3,'Co-Producer'),(56292,6052,3,'Casting'),(56292,15344,3,'Producer'),(56292,15347,6,'Original Music Composer'),(56292,7087,2,'Director'),(56292,22061,7,'Supervising Art Director'),(56292,29018,3,'Executive Producer'),(56292,40592,3,'Executive Producer'),(56292,41330,3,'Executive Producer'),(56292,28977,3,'Producer'),(56292,58433,3,'Executive Producer'),(56292,75476,3,'Line Producer'),(56292,75477,3,'Associate Producer'),(56292,120015,4,'Screenplay'),(56292,120015,3,'Co-Producer'),(56292,765144,3,'Casting'),(56292,1018751,4,'Screenplay'),(56292,1018751,3,'Co-Producer'),(56292,1102209,3,'Co-Producer'),(56292,1106751,3,'Co-Producer'),(56292,1455486,2,'Assistant Director'),(56292,1457935,9,'Compositors'),(56292,1463568,10,'Visual Effects'),(56292,1477203,3,'Consulting Producer'),(81188,23766,4,'Screenplay'),(81188,35666,3,'Producer'),(81188,60678,4,'Novel'),(81188,151007,2,'Director'),(81188,1056758,3,'Producer'),(81188,1447385,10,'Animation'),(81188,1447493,7,'Art Department Manager'),(81188,1447506,2,'Layout'),(81188,1453498,10,'Visual Development'),(81188,1453550,7,'Art Department Manager'),(147441,120,1,'Director of Photography'),(147441,405,6,'Music'),(147441,578,2,'Director'),(147441,578,3,'Producer'),(147441,946,8,'Costume Design'),(147441,944,7,'Production Design'),(147441,2260,4,'Screenplay'),(147441,4710,7,'Supervising Art Director'),(147441,8401,3,'Producer'),(147441,10704,4,'Screenplay'),(147441,40713,9,'Stunt Coordinator'),(147441,40823,6,'Foley'),(147441,16363,3,'Casting'),(147441,16683,6,'Sound Designer'),(147441,16995,7,'Set Decoration'),(147441,22498,3,'Producer'),(147441,23426,8,'Hairstylist'),(147441,27205,8,'Makeup Artist'),(147441,36427,3,'Producer'),(147441,113073,6,'Sound Re-Recording Mixer'),(147441,59265,4,'Screenplay'),(147441,59266,4,'Screenplay'),(147441,59528,9,'Second Unit Cinematographer'),(147441,71577,7,'Art Direction'),(147441,75081,8,'Hairstylist'),(147441,122274,10,'Visual Effects Supervisor'),(147441,134572,5,'Digital Intermediate'),(147441,266920,3,'Producer'),(147441,422701,7,'Art Direction'),(147441,957666,7,'Set Decoration'),(147441,1002096,11,'Gaffer'),(147441,1017296,5,'Editor'),(147441,1189807,1,'Underwater Camera'),(147441,1299324,7,'Art Direction'),(147441,1299326,7,'Art Direction'),(147441,1319160,8,'Costume Supervisor'),(147441,1327139,7,'Art Direction'),(147441,1327141,7,'Supervising Art Director'),(147441,1331893,7,'Art Direction'),(147441,1335047,9,'Property Master'),(147441,1335543,7,'Greensman'),(147441,1335544,7,'Greensman'),(147441,1335556,6,'Sound Designer'),(147441,1337412,6,'Foley'),(147441,1337420,6,'Music Editor'),(147441,1338287,6,'Music Editor'),(147441,1340110,7,'Art Direction'),(147441,1354916,7,'Art Direction'),(147441,1357600,2,'Script Supervisor'),(147441,1359989,8,'Hairstylist'),(147441,1387184,10,'Visual Effects Supervisor'),(147441,1388897,1,'Camera Operator'),(147441,1390366,1,'Still Photographer'),(147441,1390368,1,'Camera Operator'),(147441,1390388,2,'Script Supervisor'),(147441,1392622,10,'Visual Effects Producer'),(147441,1393119,6,'Sound Effects Editor'),(147441,1393300,6,'Foley'),(147441,1398918,6,'Foley'),(147441,1398927,10,'Visual Effects Producer'),(147441,1401126,8,'Wigmaker'),(147441,1403467,9,'Visual Effects Editor'),(147441,1403468,10,'Visual Effects Supervisor'),(147441,1404244,1,'Helicopter Camera'),(147441,1405241,1,'Helicopter Camera'),(147441,1406757,9,'Visual Effects Editor'),(147441,1408373,6,'Sound Designer'),(147441,1408812,9,'Visual Effects Editor'),(147441,1408850,9,'Unit Publicist'),(147441,1409293,8,'Wigmaker'),(147441,1409308,3,'Location Manager'),(147441,1409858,3,'Location Manager'),(147441,1411074,8,'Wigmaker'),(147441,1411086,9,'Animatronic and Prosthetic Effects'),(147441,1414090,8,'Makeup Department Head'),(147441,1417820,9,'Visual Effects Editor'),(147441,1418807,9,'Visual Effects Editor'),(147441,1424925,9,'Animatronic and Prosthetic Effects'),(147441,1428907,7,'Art Direction'),(147441,1428914,8,'Makeup Artist'),(147441,1428917,1,'Camera Operator'),(147441,1439132,8,'Makeup Artist'),(147441,1439161,9,'Special Effects Coordinator'),(147441,1439756,3,'Location Manager'),(147441,1442139,9,'Visual Effects Editor'),(147441,1450948,9,'Sequence Supervisor'),(147441,1456696,9,'Compositors'),(147441,1457374,9,'Dialect Coach'),(147441,1458115,9,'Visual Effects Editor'),(147441,1459846,3,'Producer'),(147441,1459850,7,'Art Direction'),(147441,1459851,8,'Hairstylist'),(147441,1459852,8,'Hairstylist'),(147441,1459853,8,'Hairstylist'),(147441,1459854,8,'Hairstylist'),(147441,1459855,8,'Hairstylist'),(147441,1459856,8,'Makeup Artist'),(147441,1459857,8,'Makeup Artist'),(147441,1459858,8,'Makeup Artist'),(147441,1459859,8,'Makeup Artist'),(147441,1459860,9,'Animatronic and Prosthetic Effects'),(147441,1459861,9,'Animatronic and Prosthetic Effects'),(147441,1459862,7,'Art Department Coordinator'),(147441,1459864,7,'Assistant Art Director'),(147441,1459865,7,'Assistant Art Director'),(147441,1459866,9,'Property Master'),(147441,1459867,7,'Assistant Art Director'),(147441,1459870,7,'Construction Coordinator'),(147441,1459872,7,'Lead Painter'),(147441,1459873,7,'Sculptor'),(147441,1459874,7,'Set Decoration Buyer'),(147441,1459875,5,'Dialogue Editor'),(147441,1459875,6,'ADR & Dubbing'),(147441,1459878,10,'Animation Director'),(147441,1459879,10,'Animation Supervisor'),(147441,1459880,10,'Animation Supervisor'),(147441,1459895,9,'Visual Effects Editor'),(147441,1459896,9,'Visual Effects Editor'),(147441,1459897,10,'Visual Effects Producer'),(147441,1459898,10,'Visual Effects Producer'),(147441,1459899,9,'Visual Effects Editor'),(147441,1459901,10,'Visual Effects Producer'),(147441,1459902,10,'Visual Effects Producer'),(147441,1459905,10,'Visual Effects Producer'),(147441,1459906,10,'Visual Effects Producer'),(147441,1459909,10,'Visual Effects Producer'),(147441,1459910,9,'Visual Effects Editor'),(147441,1459911,9,'Visual Effects Editor'),(147441,1459912,10,'Visual Effects Supervisor'),(147441,1459913,10,'Visual Effects Supervisor'),(147441,1459914,9,'Visual Effects Art Director'),(147441,1459915,9,'Visual Effects Art Director'),(147441,1459917,9,'Sequence Supervisor'),(147441,1459921,9,'Sequence Supervisor'),(147441,1459922,9,'CG Supervisor'),(147441,1459923,9,'CG Supervisor'),(147441,1459924,9,'CGI Supervisor'),(147441,1459925,9,'CG Supervisor'),(147441,1459927,1,'Camera Operator'),(147441,1459929,1,'Camera Operator'),(147441,1459930,1,'Camera Operator'),(147441,1459931,1,'Camera Operator'),(147441,1459932,1,'Camera Operator'),(147441,1459933,1,'Still Photographer'),(147441,1459935,8,'Costume Supervisor'),(147441,1459936,8,'Set Costumer'),(147441,1459937,5,'First Assistant Editor'),(147441,1459938,9,'Transportation Coordinator'),(147441,1459939,9,'Transportation Coordinator'),(147441,1459940,9,'Transportation Coordinator'),(147441,1459941,9,'Transportation Coordinator'),(147441,1459942,9,'Transportation Coordinator'),(147441,1459944,3,'Location Manager'),(147441,1459946,9,'Actor\'s Assistant'),(147441,1459947,3,'Casting'),(82702,11098,6,'Original Music Composer'),(82702,12090,3,'Casting'),(82702,12894,3,'Producer'),(82702,10828,9,'Thanks'),(82702,21035,3,'Co-Producer'),(82702,21036,3,'Co-Producer'),(82702,44123,10,'Animation'),(82702,64150,4,'Novel'),(82702,66193,3,'Executive Producer'),(82702,69613,5,'Editor'),(82702,69797,2,'Director'),(82702,69797,4,'Writer'),(82702,69797,3,'Executive Producer'),(82702,106253,5,'Editorial Services'),(82702,107704,7,'Other'),(82702,215646,9,'Production Controller'),(82702,928656,3,'Production Manager'),(82702,928658,9,'Visual Effects Design Consultant'),(82702,1198496,9,'Thanks'),(82702,1377373,3,'Casting'),(82702,1394418,6,'Sound Effects Editor'),(82702,1397896,3,'Co-Producer'),(82702,1447381,4,'Storyboard'),(82702,1450331,10,'Animation Supervisor'),(82702,1451273,2,'Layout'),(82702,1464420,10,'Animation'),(82702,1516075,3,'Co-Executive Producer'),(82702,1516077,3,'Co-Producer'),(82702,1516079,3,'Associate Producer'),(205584,561,3,'Casting'),(205584,7229,6,'Music'),(205584,9343,7,'Production Design'),(205584,17629,1,'Director of Photography'),(205584,33195,7,'Supervising Art Director'),(205584,21085,2,'Director'),(205584,21085,3,'Producer'),(205584,27750,8,'Costume Design'),(205584,32806,5,'Digital Intermediate'),(205584,37281,3,'Casting'),(205584,52370,7,'Art Direction'),(205584,67759,3,'Producer'),(205584,147855,5,'Digital Intermediate'),(205584,577468,6,'Sound Designer'),(205584,577468,6,'Supervising Sound Editor'),(205584,961037,5,'Editor'),(205584,989750,3,'Casting Associate'),(205584,1034192,7,'Art Direction'),(205584,1167472,4,'Screenplay'),(205584,1167473,4,'Screenplay'),(205584,1191326,7,'Set Decoration'),(205584,1337413,6,'Foley'),(205584,1355537,5,'Dialogue Editor'),(205584,1378724,6,'Music Editor'),(205584,1391719,5,'Dialogue Editor'),(205584,1394768,1,'Camera Operator'),(205584,1394862,6,'Supervising Sound Effects Editor'),(205584,1401739,11,'Gaffer'),(205584,1402914,1,'Camera Operator'),(205584,1403711,8,'Makeup Artist'),(205584,1403711,8,'Key Hair Stylist'),(205584,1403728,2,'Script Supervisor'),(205584,1410560,5,'Digital Intermediate'),(205584,1411219,8,'Makeup Artist'),(205584,1411238,11,'Rigging Gaffer'),(205584,1428556,1,'Camera Operator'),(205584,1453006,10,'Animation Director'),(205584,1453007,10,'Animation'),(205584,1453014,10,'Animation'),(205584,1475735,7,'Art Department Coordinator'),(205584,1475737,7,'Assistant Art Director'),(205584,1483584,2,'Script Supervisor'),(205584,1495856,6,'Sound Effects Editor'),(205584,1495857,6,'Sound Re-Recording Mixer'),(205584,1495858,6,'Sound Re-Recording Mixer'),(205584,1518775,7,'Assistant Art Director'),(205584,1539292,6,'Sound Effects Editor'),(205584,1551872,9,'CG Supervisor'),(205584,1569342,1,'Camera Operator'),(205584,1585724,1,'First Assistant Camera'),(205584,1585725,1,'First Assistant Camera'),(205584,1585726,1,'First Assistant Camera'),(205584,1585728,6,'Sound Effects Editor'),(205584,1585729,6,'Sound Effects Editor'),(205584,1585730,9,'Sound Recordist'),(205584,1585731,10,'Animation Director'),(205584,1585732,10,'Animation'),(205584,1585733,9,'CG Supervisor'),(205584,1585734,9,'CG Supervisor'),(205584,1585735,9,'CG Supervisor'),(205584,1585736,9,'CG Supervisor'),(205584,1585737,9,'Makeup Effects'),(205584,1585739,9,'Makeup Effects'),(205584,1585740,9,'Makeup Effects'),(205584,1585741,9,'Makeup Effects'),(205584,1585742,8,'Hairstylist'),(205584,1585743,8,'Hairstylist'),(205584,1585744,8,'Prosthetic Supervisor'),(205584,1585745,5,'Digital Intermediate'),(205584,1585746,5,'First Assistant Editor'),(205584,1585747,5,'First Assistant Editor'),(72559,1720,3,'Casting'),(72559,7236,7,'Production Design'),(72559,4504,3,'Executive Producer'),(72559,4507,3,'Executive Producer'),(72559,5546,5,'Editor'),(72559,10952,3,'Producer'),(72559,7775,3,'Executive Producer'),(72559,7932,4,'Writer'),(72559,10123,5,'Editor'),(72559,24308,3,'Producer'),(72559,29018,3,'Executive Producer'),(72559,41330,3,'Executive Producer'),(72559,54507,2,'Director'),(72559,58192,1,'Director of Photography'),(72559,58433,3,'Executive Producer'),(72559,62739,3,'Executive Producer'),(72559,62780,7,'Art Direction'),(72559,92302,7,'Art Direction'),(72559,76054,7,'Art Direction'),(72559,91269,4,'Writer'),(72559,150194,9,'Stunts'),(72559,227440,6,'Original Music Composer'),(72559,960282,7,'Art Direction'),(72559,1008115,7,'Art Direction'),(72559,1188916,3,'Executive Producer'),(72559,1412756,9,'Visual Effects Editor'),(72559,1456696,9,'Compositors'),(72559,1460603,9,'Compositors'),(36643,9856,4,'Characters'),(36643,8524,7,'Production Design'),(36643,6489,6,'Original Music Composer'),(36643,7783,1,'Director of Photography'),(36643,8970,5,'Editor'),(36643,10714,8,'Costume Design'),(36643,10496,3,'Casting'),(36643,10666,3,'Producer'),(36643,10705,4,'Screenplay'),(36643,10706,3,'Line Producer'),(36643,40818,6,'Sound Re-Recording Mixer'),(36643,40819,6,'Sound Re-Recording Mixer'),(36643,10789,7,'Set Decoration'),(36643,10783,4,'Story'),(36643,10782,4,'Story'),(36643,10781,2,'Director'),(36643,27135,6,'Supervising Sound Editor'),(36643,10878,5,'First Assistant Editor'),(36643,59983,5,'First Assistant Editor'),(36643,69678,3,'Producer'),(36643,105780,6,'Sound mixer'),(36643,1335179,7,'Art Department Coordinator'),(36643,1340118,6,'Sound Re-Recording Mixer'),(36643,1425502,1,'Still Photographer'),(36643,1425513,6,'Music Editor'),(36643,1462919,2,'Script Supervisor'),(36643,1561878,3,'Associate Producer'),(36643,1561880,6,'Sound Re-Recording Mixer'),(36643,1561881,5,'Dialogue Editor'),(50620,495,3,'Casting'),(50620,1225,6,'Original Music Composer'),(50620,3113,1,'Director of Photography'),(50620,10569,3,'Producer'),(50620,5392,8,'Costume Design'),(50620,6040,3,'Producer'),(50620,6207,7,'Construction Coordinator'),(50620,7727,10,'Visual Effects Supervisor'),(50620,9349,6,'Sound Designer'),(50620,9349,6,'Supervising Sound Editor'),(50620,13179,6,'Sound Re-Recording Mixer'),(50620,15557,2,'Director'),(50620,15560,5,'Editor'),(50620,29788,7,'Production Design'),(50620,32200,7,'Supervising Art Director'),(50620,56855,4,'Screenplay'),(50620,56856,3,'Producer'),(50620,56856,4,'Novel'),(50620,60282,3,'Casting'),(50620,95640,1,'Steadicam Operator'),(50620,131198,1,'Camera Operator'),(50620,548444,6,'Sound Effects Editor'),(50620,930189,7,'Art Direction'),(50620,957264,8,'Key Hair Stylist'),(50620,957292,7,'Set Decoration'),(50620,970003,9,'Second Unit Cinematographer'),(50620,1073307,5,'Editor'),(50620,1077782,6,'Foley'),(50620,1144651,1,'Camera Operator'),(50620,1282566,10,'Animation Supervisor'),(50620,1325234,8,'Makeup Department Head'),(50620,1328406,8,'Costume Supervisor'),(50620,1340739,6,'Foley'),(50620,1347761,2,'Script Supervisor'),(50620,1347993,8,'Makeup Artist'),(50620,1352979,6,'Music Editor'),(50620,1367491,9,'Property Master'),(50620,1372884,1,'Steadicam Operator'),(50620,1386920,1,'Still Photographer'),(50620,1391126,10,'Visual Effects Producer'),(50620,1391679,6,'ADR & Dubbing'),(50620,1391679,5,'Dialogue Editor'),(50620,1391699,1,'Still Photographer'),(50620,1392908,10,'Visual Effects Producer'),(50620,1393414,10,'Visual Effects Coordinator'),(50620,1394766,9,'Visual Effects Editor'),(50620,1395269,10,'Visual Effects Supervisor'),(50620,1399141,6,'Sound Re-Recording Mixer'),(50620,1400506,5,'Digital Intermediate'),(50620,1402522,11,'Rigging Gaffer'),(50620,1403391,7,'Art Department Coordinator'),(50620,1404214,5,'Dialogue Editor'),(50620,1406765,1,'Camera Operator'),(50620,1407019,9,'Visual Effects Editor'),(50620,1408200,9,'Choreographer'),(50620,1408326,9,'Visual Effects Editor'),(50620,1409712,1,'Helicopter Camera'),(50620,1414291,5,'Digital Intermediate'),(50620,1415328,8,'Hair Department Head'),(50620,1418473,9,'Visual Effects Editor'),(50620,1418528,8,'Hairstylist'),(50620,1425330,9,'Visual Effects Editor'),(50620,1431089,11,'Rigging Gaffer'),(50620,1432599,6,'First Assistant Sound Editor'),(50620,1432605,9,'CG Supervisor'),(50620,1434564,9,'Visual Effects Editor'),(50620,1434565,9,'CG Supervisor'),(50620,1437305,1,'Camera Operator'),(50620,1440403,9,'Property Master'),(50620,1443949,9,'CG Supervisor'),(50620,1453014,10,'Animation'),(50620,1453594,10,'Animation'),(50620,1453671,9,'Visual Effects Editor'),(50620,1453929,10,'Animation'),(50620,1453943,11,'Lighting Artist'),(50620,1460424,5,'First Assistant Editor'),(50620,1463784,10,'Animation'),(50620,1464538,10,'Visual Effects Coordinator'),(50620,1490951,11,'Gaffer'),(50620,1495547,10,'Visual Effects Coordinator'),(50620,1499159,8,'Key Hair Stylist'),(50620,1500901,3,'Casting Associate'),(50620,1510197,8,'Makeup Artist'),(50620,1526544,8,'Makeup Artist'),(50620,1536949,8,'Wigmaker'),(50620,1537429,1,'First Assistant Camera'),(50620,1538148,6,'Music Supervisor'),(50620,1540872,1,'First Assistant Camera'),(50620,1545169,6,'Orchestrator'),(50620,1547887,9,'Stunts'),(50620,1548867,9,'CG Supervisor'),(50620,1551523,6,'ADR & Dubbing'),(50620,1551523,5,'Dialogue Editor'),(50620,1552472,11,'Rigging Grip'),(50620,1552620,7,'Art Direction'),(50620,1552621,7,'Art Department Coordinator'),(50620,1552622,3,'Casting Associate'),(50620,1552623,8,'Assistant Costume Designer'),(50620,1552624,8,'Assistant Costume Designer'),(50620,1552778,1,'First Assistant Camera'),(50620,1552779,1,'First Assistant Camera'),(50620,1552780,11,'Rigging Grip'),(50620,1552788,9,'CG Supervisor'),(50620,1552789,9,'CG Supervisor'),(50620,1552790,9,'Digital Effects Supervisor'),(50620,1552791,10,'Visual Effects Coordinator'),(50620,1552792,10,'Visual Effects Coordinator'),(50620,1552793,10,'Visual Effects Coordinator'),(50620,1552794,10,'Visual Effects Coordinator'),(50620,1552795,10,'Visual Effects Coordinator'),(50620,1552796,10,'Visual Effects Coordinator'),(50620,1552797,10,'Visual Effects Producer'),(50620,1813644,9,'Stunts'),(65759,1296,3,'Executive Producer'),(65759,11098,6,'Original Music Composer'),(65759,17610,3,'Casting'),(65759,20629,2,'Director'),(65759,20629,3,'Producer'),(65759,20629,4,'Writer'),(65759,11651,3,'Producer'),(65759,58140,3,'Producer'),(65759,59767,4,'Writer'),(65759,59774,3,'Executive Producer'),(65759,59781,3,'Co-Producer'),(65759,61351,4,'Writer'),(65759,104428,4,'Writer'),(65759,167789,7,'Art Direction'),(65759,1450992,10,'Animation'),(65759,1451274,2,'Layout'),(65759,1452995,10,'Animation'),(65759,1452997,10,'Animation'),(65759,1453005,10,'Animation'),(65759,1453006,10,'Animation'),(65759,1460489,9,'Technical Supervisor'),(65759,1462792,3,'Line Producer'),(267935,491,6,'Original Music Composer'),(267935,136,3,'Producer'),(267935,488,2,'Director'),(267935,488,3,'Producer'),(267935,489,3,'Executive Producer'),(267935,492,1,'Director of Photography'),(267935,493,5,'Editor'),(267935,496,7,'Production Design'),(267935,664,3,'Producer'),(267935,1299,4,'Story'),(267935,9964,4,'Screenplay'),(267935,18844,3,'Executive Producer'),(267935,38020,3,'Executive Producer'),(267935,239559,7,'Art Direction'),(267935,959555,9,'Supervising Art Director'),(267935,1102140,3,'Co-Producer'),(267935,1384721,7,'Art Direction'),(281957,322,3,'Producer'),(281957,223,2,'Director'),(281957,223,4,'Writer'),(281957,376,3,'Producer'),(281957,6410,3,'Casting'),(281957,1891,5,'Editor'),(281957,4185,1,'Director of Photography'),(281957,4701,3,'Producer'),(281957,5632,7,'Production Design'),(281957,8704,9,'Supervising Art Director'),(281957,9439,6,'Foley'),(281957,11382,6,'Original Music Composer'),(281957,11818,9,'Supervising Art Director'),(281957,16736,6,'Sound Designer'),(281957,42267,6,'Supervising Sound Editor'),(281957,41326,3,'Producer'),(281957,41329,3,'Producer'),(281957,64785,4,'Writer'),(281957,114408,3,'Producer'),(281957,229908,7,'Assistant Art Director'),(281957,930016,5,'Dialogue Editor'),(281957,931140,6,'Music'),(281957,935493,3,'Casting Associate'),(281957,1006729,7,'Art Direction'),(281957,1190764,9,'Property Master'),(281957,1261812,9,'Second Unit Cinematographer'),(281957,1314457,8,'Hair Department Head'),(281957,1316345,10,'Visual Effects Coordinator'),(281957,1319818,8,'Set Costumer'),(281957,1320977,8,'Costume Supervisor'),(281957,1334182,7,'Set Decoration'),(281957,1341865,2,'Script Supervisor'),(281957,1342657,6,'Sound Designer'),(281957,1350252,10,'Visual Effects Producer'),(281957,1357066,1,'Camera Operator'),(281957,1364410,6,'ADR & Dubbing'),(281957,1367362,6,'Foley'),(281957,1371064,6,'Foley'),(281957,1377413,6,'Sound Effects Editor'),(281957,1378716,1,'Still Photographer'),(281957,1378728,2,'Script Supervisor'),(281957,1379994,10,'Visual Effects Supervisor'),(281957,1382024,6,'Original Music Composer'),(281957,1383143,9,'Visual Effects Editor'),(281957,1384322,1,'First Assistant Camera'),(281957,1388874,10,'Visual Effects Producer'),(281957,1392084,5,'Dialogue Editor'),(281957,1393857,6,'Sound Effects Editor'),(281957,1394282,10,'Visual Effects Producer'),(281957,1394952,10,'Special Effects Supervisor'),(281957,1395023,6,'Sound Effects Editor'),(281957,1399631,5,'Dialogue Editor'),(281957,1401147,9,'Visual Effects Editor'),(281957,1401386,7,'Art Department Coordinator'),(281957,1401604,8,'Wigmaker'),(281957,1401792,9,'Visual Effects Editor'),(281957,1402035,8,'Costume Supervisor'),(281957,1404244,1,'Helicopter Camera'),(281957,1406826,6,'Sound Effects Editor'),(281957,1412916,10,'Visual Effects Producer'),(281957,1413437,9,'Property Master'),(281957,1414886,6,'Foley'),(281957,1417975,10,'Visual Effects Producer'),(281957,1418353,8,'Makeup Artist'),(281957,1421695,7,'Construction Coordinator'),(281957,1422795,8,'Makeup Artist'),(281957,1431089,11,'Rigging Gaffer'),(281957,1431099,8,'Set Costumer'),(281957,1441689,7,'Set Designer'),(281957,1445873,6,'ADR & Dubbing'),(281957,1447627,11,'Gaffer'),(281957,1459857,8,'Makeup Artist'),(281957,1459922,9,'CG Supervisor'),(281957,1460640,9,'Visual Effects Editor'),(281957,1461632,10,'Visual Effects Supervisor'),(281957,1462845,6,'Supervising Sound Editor'),(281957,1463764,1,'First Assistant Camera'),(281957,1466997,8,'Makeup Artist'),(281957,1483135,10,'VFX Production Coordinator'),(281957,1530725,10,'Animation Supervisor'),(281957,1532691,7,'Construction Coordinator'),(281957,1543747,10,'Visual Effects Producer'),(281957,1548070,4,'Novel'),(281957,1548455,5,'Dialogue Editor'),(281957,1548888,5,'First Assistant Editor'),(281957,1559360,6,'Sound Effects Editor'),(281957,1559871,7,'Art Department Coordinator'),(281957,1559872,3,'Casting Associate'),(281957,1559873,3,'Casting Associate'),(281957,1559874,8,'Assistant Costume Designer'),(281957,1559905,8,'Seamstress'),(281957,1559906,8,'Seamstress'),(281957,1559907,8,'Seamstress'),(281957,1559908,8,'Seamstress'),(281957,1559912,9,'Armorer'),(281957,1559916,3,'Researcher'),(281957,1559919,8,'Key Hair Stylist'),(281957,1559925,8,'Makeup Department Head'),(281957,1560110,5,'Digital Intermediate'),(281957,1561332,1,'Camera Operator'),(281957,1561333,1,'Camera Operator'),(281957,1561335,11,'Rigging Gaffer'),(281957,1561338,11,'Rigging Gaffer'),(281957,1561340,1,'First Assistant Camera'),(281957,1561347,11,'Rigging Grip'),(281957,1561350,11,'Rigging Grip'),(281957,1561352,10,'Animation Supervisor'),(281957,1561353,9,'CG Supervisor'),(281957,1561360,5,'Dialogue Editor'),(281957,1561368,6,'Supervising Sound Editor'),(281957,1598516,2,'Script Coordinator'),(281957,1621492,7,'Construction Coordinator'),(281957,1621772,10,'Visual Effects Supervisor'),(281957,1632006,10,'Visual Effects Coordinator'),(281957,1632329,5,'Digital Intermediate'),(281957,1632330,5,'Digital Intermediate'),(281957,1632331,5,'First Assistant Editor'),(281957,1632345,10,'Visual Effects Coordinator'),(281957,1632346,10,'Visual Effects Coordinator'),(281957,1632347,10,'Visual Effects Coordinator'),(281957,1632349,10,'Visual Effects Coordinator'),(281957,1632350,9,'Visual Effects Editor'),(281957,1632351,10,'Visual Effects Supervisor'),(281957,1632352,9,'Property Master'),(77950,11652,3,'Producer'),(77950,94075,4,'Screenplay'),(77950,94075,2,'Director'),(77950,103041,4,'Screenplay'),(77950,227440,6,'Music'),(77950,582919,4,'Screenplay'),(77950,1272637,9,'Cinematography'),(77950,1272639,9,'Special Effects'),(77950,1453020,4,'Story'),(77950,1453536,4,'Storyboard'),(77950,1462666,2,'Layout'),(44896,1704,2,'Director'),(44896,1704,3,'Producer'),(44896,1704,4,'Story'),(44896,947,6,'Music'),(44896,2215,3,'Casting'),(44896,932,4,'Writer'),(44896,932,4,'Story'),(44896,16729,3,'Producer'),(44896,52693,3,'Producer'),(44896,68016,6,'Orchestrator'),(44896,146439,4,'Story'),(44896,1453594,10,'Animation'),(44896,1459736,10,'Animation'),(44896,1463568,9,'Technical Supervisor'),(270946,18863,2,'Director'),(270946,44114,2,'Director'),(270946,66511,4,'Screenplay'),(270946,66510,4,'Screenplay'),(102899,8221,7,'Supervising Art Director'),(102899,1097,3,'Local Casting'),(102899,3504,6,'Sound Designer'),(102899,3996,6,'Sound Re-Recording Mixer'),(102899,7232,3,'Casting'),(102899,7234,7,'Production Design'),(102899,22226,4,'Screenplay'),(102899,7624,3,'Executive Producer'),(102899,7624,4,'Comic Book'),(102899,10850,3,'Producer'),(102899,19157,7,'Set Decoration'),(102899,8159,6,'Supervising Sound Editor'),(102899,8165,6,'Foley Editor'),(102899,8166,6,'Sound Re-Recording Mixer'),(102899,8523,1,'Director of Photography'),(102899,9624,9,'Stunt Coordinator'),(102899,11090,4,'Screenplay'),(102899,11090,3,'Executive Producer'),(102899,11090,4,'Story'),(102899,11271,8,'Costume Design'),(102899,11455,5,'Editor'),(102899,15356,10,'Special Effects Supervisor'),(102899,16344,6,'Supervising Sound Editor'),(102899,59026,2,'Director'),(102899,18617,5,'Editor'),(102899,18866,4,'Comic Book'),(102899,18876,4,'Comic Book'),(102899,19663,7,'Art Direction'),(102899,23486,6,'Original Music Composer'),(102899,24192,6,'Music Supervisor'),(102899,30383,3,'Executive Producer'),(102899,11102,7,'Set Designer'),(102899,55710,4,'Screenplay'),(102899,57027,3,'Executive Producer'),(102899,59834,3,'Unit Production Manager'),(102899,61097,7,'Set Designer'),(102899,61974,6,'Orchestrator'),(102899,113672,3,'Executive Producer'),(102899,113674,3,'Executive Producer'),(102899,65644,6,'Orchestrator'),(102899,91123,1,'Aerial Director of Photography'),(102899,105643,7,'Storyboard Designer'),(102899,114492,8,'Makeup Artist'),(102899,155531,4,'Screenplay'),(102899,155531,4,'Story'),(102899,230436,3,'ADR Voice Casting'),(102899,375719,9,'Transportation Captain'),(102899,548441,6,'Sound Mixer'),(102899,555329,8,'Key Makeup Artist'),(102899,969743,7,'Set Designer'),(102899,1004624,7,'Property Master'),(102899,1016148,2,'First Assistant Director'),(102899,1047108,7,'Assistant Art Director'),(102899,1055222,7,'Storyboard Designer'),(102899,1116441,9,'Thanks'),(102899,1145873,9,'Thanks'),(102899,1194953,9,'Thanks'),(102899,1195200,9,'Thanks'),(102899,1218986,7,'Storyboard Designer'),(102899,1223867,9,'Thanks'),(102899,1256726,3,'Co-Producer'),(102899,1272997,9,'Additional Music'),(102899,1319752,8,'Assistant Costume Designer'),(102899,1322017,7,'Art Direction'),(102899,1327146,8,'Costume Supervisor'),(102899,1334782,7,'Set Designer'),(102899,1339459,6,'Music Editor'),(102899,1345613,8,'Key Set Costumer'),(102899,1349452,3,'Associate Producer'),(102899,1349452,2,'First Assistant Director'),(102899,1352422,5,'Dialogue Editor'),(102899,1352422,6,'ADR Editor'),(102899,1355526,7,'Leadman'),(102899,1355532,2,'Script Supervisor'),(102899,1364426,8,'Key Costumer'),(102899,1384390,9,'Stunt Coordinator'),(102899,1388864,5,'Dialogue Editor'),(102899,1389609,8,'Makeup Department Head'),(102899,1392143,8,'Key Set Costumer'),(102899,1394418,6,'Sound Effects Editor'),(102899,1397196,6,'Sound Effects Editor'),(102899,1399117,6,'Sound Designer'),(102899,1399328,9,'Transportation Captain'),(102899,1399877,1,'Camera Operator'),(102899,1399877,1,'Steadicam Operator'),(102899,1400082,1,'Still Photographer'),(102899,1400532,7,'Construction Coordinator'),(102899,1401731,10,'Visual Effects Producer'),(102899,1403415,1,'Aerial Director of Photography'),(102899,1406872,6,'Sound Effects Editor'),(102899,1406873,6,'Sound Effects Editor'),(102899,1407740,11,'Chief Lighting Technician'),(102899,1408326,9,'Visual Effects Editor'),(102899,1408360,11,'Gaffer'),(102899,1408509,8,'Key Hair Stylist'),(102899,1408799,6,'Sound Effects Editor'),(102899,1413124,11,'Rigging Gaffer'),(102899,1416093,8,'Hair Department Head'),(102899,1416796,8,'Hairstylist'),(102899,1417839,8,'Key Set Costumer'),(102899,1418485,1,'Camera Operator'),(102899,1422866,7,'Set Decoration Buyer'),(102899,1436195,8,'Key Costumer'),(102899,1442142,9,'Fight Choreographer'),(102899,1459198,7,'Set Decorating Coordinator'),(102899,1467332,10,'Visual Effects Supervisor'),(102899,1477395,7,'Art Department Coordinator'),(102899,1530726,9,'Armorer'),(102899,1533708,3,'Co-Producer'),(102899,1543191,3,'Casting Associate'),(102899,1543193,8,'Set Costumer'),(102899,1543196,8,'Makeup Artist'),(102899,1543197,8,'Hairstylist'),(102899,1543198,7,'Art Direction'),(102899,1543202,7,'Assistant Art Director'),(102899,1543203,7,'Assistant Art Director'),(102899,1543205,7,'Assistant Art Director'),(102899,1543221,10,'Visual Effects Coordinator'),(102899,1543223,10,'Visual Effects Coordinator'),(102899,1543224,10,'Visual Effects Coordinator'),(102899,1543230,9,'Armorer'),(102899,1543231,5,'Dialogue Editor'),(102899,1545386,3,'Production Coordinator'),(102899,1545387,3,'Production Supervisor'),(102899,1550058,6,'Music Editor'),(102899,1550064,8,'Key Costumer'),(102899,1552009,1,'First Assistant Camera'),(102899,1573618,9,'Production Controller'),(102899,1580943,7,'Set Designer'),(102899,1583828,7,'Storyboard Designer'),(102899,1586890,7,'Set Decoration Buyer'),(102899,1590402,6,'First Assistant Sound Editor'),(102899,1606657,9,'Unit Publicist'),(102899,1627520,3,'Production Accountant'),(102899,1634469,6,'Orchestrator'),(102899,1635175,7,'Storyboard Designer'),(102899,1669139,6,'Assistant Sound Editor'),(102899,1688600,9,'Picture Car Coordinator'),(102899,1700118,5,'First Assistant Editor'),(102899,1701752,9,'Transportation Co-Captain'),(102899,1745935,1,'Dolly Grip'),(102899,1748851,1,'First Assistant Camera'),(102899,1759751,3,'Casting Assistant'),(102899,1760567,1,'Dolly Grip'),(102899,1760569,1,'Key Grip'),(102899,1761468,9,'Compositors'),(102899,1763133,6,'Foley Editor'),(102899,1787802,2,'Second Assistant Director'),(102899,1787824,7,'Storyboard Designer'),(102899,1787826,9,'Post Production Supervisor'),(102899,1787829,5,'First Assistant Editor'),(102899,1787830,10,'Visual Effects Coordinator'),(102899,1787831,9,'Visual Effects Editor'),(102899,1787832,9,'Compositors'),(102899,1787833,9,'Compositors'),(102899,1787834,9,'Compositors'),(102899,1787835,7,'Assistant Property Master'),(102899,1787836,6,'Boom Operator'),(102899,1787837,11,'Best Boy Electric'),(102899,1787838,8,'Key Costumer'),(102899,1787839,7,'Set Decoration Buyer'),(102899,1787840,1,'Epk Camera Operator'),(102899,1787841,9,'Transportation Captain'),(102899,1787842,5,'Dialogue Editor'),(102899,1868186,7,'Set Designer'),(101299,495,3,'Casting'),(101299,1213,6,'Original Music Composer'),(101299,1890,7,'Production Design'),(101299,4446,3,'Producer'),(101299,6187,3,'Co-Producer'),(101299,10943,2,'Director'),(101299,8281,7,'Art Direction'),(101299,40644,9,'Stunt Coordinator'),(101299,16961,4,'Screenplay'),(101299,21984,7,'Set Decoration'),(101299,27576,1,'Director of Photography'),(101299,32903,7,'Set Designer'),(101299,56327,3,'Executive Producer'),(101299,56327,3,'Unit Production Manager'),(101299,57631,4,'Screenplay'),(101299,66513,9,'Post Production Supervisor'),(101299,66519,5,'Editor'),(101299,72956,3,'Executive In Charge Of Production'),(101299,189111,4,'Novel'),(101299,189111,3,'Executive Producer'),(101299,406204,8,'Makeup Department Head'),(101299,935493,3,'Casting Associate'),(101299,935634,3,'Producer'),(101299,971840,3,'Executive Producer'),(101299,1002919,8,'Costume Design'),(101299,1025712,7,'Supervising Art Director'),(101299,1068055,7,'Set Designer'),(101299,1068056,7,'Set Designer'),(101299,1120883,9,'Stunt Coordinator'),(101299,1212071,3,'Casting Associate'),(101299,1271735,7,'Set Designer'),(101299,1341865,2,'Script Supervisor'),(101299,1400555,7,'Set Designer'),(101299,1401803,10,'Visual Effects Supervisor'),(101299,1433917,3,'Location Manager'),(101299,1435657,11,'Gaffer'),(101299,1455993,7,'Art Direction'),(101299,1463359,3,'Production Coordinator'),(101299,1496418,10,'Visual Effects Producer'),(101299,1538148,6,'Music Supervisor'),(101299,1539279,3,'Executive Producer'),(101299,1539280,3,'Co-Producer'),(101299,1546957,3,'Production Supervisor'),(101299,1546958,9,'Visual Effects Editor'),(101299,1546959,10,'Visual Effects Coordinator'),(101299,1546960,10,'Visual Effects Coordinator'),(101299,1546961,9,'Production Controller'),(101299,1546962,7,'Set Designer'),(228161,12090,3,'Casting'),(228161,44119,5,'Editor'),(228161,49285,6,'Music'),(228161,51327,4,'Screenplay'),(228161,51328,4,'Screenplay'),(228161,52870,2,'Director'),(228161,56671,3,'Producer'),(228161,58421,3,'Producer'),(228161,74948,4,'Story'),(228161,929145,6,'Original Music Composer'),(228161,1165695,10,'Animation Supervisor'),(228161,1295761,3,'Producer'),(228161,1361945,4,'Novel'),(228161,1377373,3,'Casting'),(228161,1447381,9,'Supervising Animator'),(228161,1451275,7,'Art Direction'),(228161,1462666,2,'Layout'),(228161,1462760,10,'Animation Supervisor'),(228161,1508424,7,'Production Design'),(228161,1508425,10,'Visual Effects Supervisor'),(228161,1508426,4,'Characters'),(228161,1508427,3,'Production Manager'),(228161,1508428,3,'Production Manager'),(228161,1508436,11,'Lighting Coordinator'),(228161,1508437,11,'Lighting Supervisor'),(228161,1508439,11,'Lighting Supervisor'),(228161,1508440,11,'Lighting Supervisor'),(228161,1508441,11,'Lighting Supervisor'),(228161,1508442,11,'Lighting Supervisor'),(228161,1508443,11,'Lighting Supervisor'),(228161,1508444,9,'Supervising Technical Director'),(228161,1508445,10,'Modeling'),(228161,1508446,3,'Character Technical Supervisor'),(228161,1720805,10,'Animation Supervisor'),(228161,1781782,10,'Animation Supervisor'),(417859,5524,3,'Executive Producer'),(417859,12090,3,'Casting'),(417859,12071,7,'Production Design'),(417859,12071,10,'Visual Development'),(417859,12107,3,'Co-Executive Producer'),(417859,12098,2,'Director'),(417859,10828,3,'Executive Producer'),(417859,21075,4,'Story'),(417859,44217,4,'Characters'),(417859,70043,5,'Editor'),(417859,227440,6,'Original Music Composer'),(417859,227440,6,'Music'),(417859,936668,4,'Screenplay'),(417859,936668,4,'Story'),(417859,936669,3,'Producer'),(417859,1003947,3,'Producer'),(417859,1024175,4,'Story'),(417859,1451233,7,'Art Direction'),(417859,1743063,3,'Executive Producer'),(417859,1847420,3,'Associate Producer'),(417859,1847422,5,'Editor'),(86834,4023,3,'Casting'),(86834,376,3,'Producer'),(86834,5914,3,'Casting'),(86834,5670,7,'Production Design'),(86834,4867,1,'Director of Photography'),(86834,5392,8,'Costume Design'),(86834,6377,6,'Original Music Composer'),(86834,6431,2,'Director'),(86834,6431,3,'Producer'),(86834,6431,4,'Writer'),(86834,11508,7,'Supervising Art Director'),(86834,16836,3,'Executive Producer'),(86834,16836,4,'Writer'),(86834,17951,7,'Set Decoration'),(86834,38805,5,'Editor'),(86834,41018,3,'Executive Producer'),(86834,40333,9,'Thanks'),(86834,75610,9,'Dialect Coach'),(86834,91151,9,'Transportation Captain'),(86834,114408,3,'Producer'),(86834,155535,9,'Stunt Coordinator'),(86834,966515,7,'Art Direction'),(86834,994550,7,'Conceptual Design'),(86834,1015645,7,'Art Direction'),(86834,1018073,3,'Casting'),(86834,1024910,3,'Casting'),(86834,1031621,6,'Sound Effects Editor'),(86834,1080735,10,'Creature Design'),(86834,1104948,7,'Art Direction'),(86834,1116091,3,'Producer'),(86834,1161455,8,'Costume Supervisor'),(86834,1177713,8,'Costume Supervisor'),(86834,1198829,3,'Casting'),(86834,1203791,7,'Assistant Art Director'),(86834,1304276,6,'Foley'),(86834,1337464,6,'Sound Re-Recording Mixer'),(86834,1340345,6,'Supervising Sound Editor'),(86834,1345615,5,'Color Timer'),(86834,1347720,7,'Art Direction'),(86834,1347721,7,'Set Decoration'),(86834,1347722,8,'Makeup Department Head'),(86834,1347723,7,'Assistant Art Director'),(86834,1347725,9,'Scenic Artist'),(86834,1347726,9,'Scenic Artist'),(86834,1347727,9,'Scenic Artist'),(86834,1347728,9,'Scenic Artist'),(86834,1347730,9,'Property Master'),(86834,1347731,7,'Sculptor'),(86834,1347732,9,'Scenic Artist'),(86834,1347734,7,'Assistant Art Director'),(86834,1347735,7,'Construction Coordinator'),(86834,1347736,7,'Assistant Art Director'),(86834,1347737,9,'Scenic Artist'),(86834,1347738,7,'Art Department Coordinator'),(86834,1347740,6,'Sound Re-Recording Mixer'),(86834,1347741,6,'Boom Operator'),(86834,1347742,5,'Dialogue Editor'),(86834,1347750,8,'Costume Supervisor'),(86834,1347751,8,'Set Costumer'),(86834,1347752,8,'Set Costumer'),(86834,1347753,8,'Set Costumer'),(86834,1347754,8,'Set Costumer'),(86834,1347755,6,'Music Editor'),(86834,1347756,9,'Transportation Co-Captain'),(86834,1347758,3,'Location Manager'),(86834,1347759,7,'Location Scout'),(86834,1347760,9,'Dialect Coach'),(86834,1347761,2,'Script Supervisor'),(86834,1347762,9,'Thanks'),(86834,1347763,1,'Camera Operator'),(86834,1433935,9,'Other'),(86834,1456696,9,'Compositors'),(86834,1456701,9,'Visual Effects Editor'),(86834,1460622,9,'Software Engineer'),(86834,1538207,9,'Special Effects'),(82700,307,1,'Director of Photography'),(82700,1213,6,'Original Music Composer'),(82700,2484,5,'Editor'),(82700,2486,7,'Production Design'),(82700,2888,3,'Producer'),(82700,2888,4,'Story'),(82700,5669,3,'Casting'),(82700,9575,3,'Producer'),(82700,11614,2,'Director'),(82700,11614,4,'Screenplay'),(82700,11614,3,'Executive Producer'),(82700,40644,9,'Stunt Coordinator'),(82700,13588,7,'Set Decoration'),(82700,14924,10,'Visual Effects Supervisor'),(82700,17677,7,'Art Direction'),(82700,42267,6,'Sound Designer'),(82700,46080,3,'Producer'),(82700,54252,3,'Executive Producer'),(82700,113046,6,'Sound Re-Recording Mixer'),(82700,113073,6,'Sound Re-Recording Mixer'),(82700,74574,3,'Producer'),(82700,86239,4,'Screenplay'),(82700,112875,5,'Dialogue Editor'),(82700,168214,8,'Makeup Department Head'),(82700,177847,7,'Art Direction'),(82700,554888,6,'Supervising Sound Editor'),(82700,582808,1,'Still Photographer'),(82700,957874,10,'Visual Effects Supervisor'),(82700,969743,7,'Art Direction'),(82700,1190648,8,'Costume Design'),(82700,1228334,6,'Foley'),(82700,1313122,8,'Set Costumer'),(82700,1319844,8,'Costume Supervisor'),(82700,1327140,7,'Set Designer'),(82700,1335066,9,'Property Master'),(82700,1335150,9,'Visual Effects Editor'),(82700,1342663,6,'Music Editor'),(82700,1347731,7,'Sculptor'),(82700,1347734,7,'Set Designer'),(82700,1348005,10,'Visual Effects Supervisor'),(82700,1348006,10,'Visual Effects Producer'),(82700,1355530,7,'Sculptor'),(82700,1357047,7,'Set Designer'),(82700,1373434,10,'Visual Effects Producer'),(82700,1376887,7,'Set Designer'),(82700,1378220,7,'Leadman'),(82700,1378240,1,'Still Photographer'),(82700,1389568,7,'Construction Coordinator'),(82700,1389625,9,'Transportation Coordinator'),(82700,1393435,7,'Set Designer'),(82700,1395430,7,'Art Department Coordinator'),(82700,1395431,7,'Assistant Art Director'),(82700,1395432,7,'Set Designer'),(82700,1395434,7,'Set Designer'),(82700,1395435,7,'Set Designer'),(82700,1395436,7,'Sculptor'),(82700,1395437,7,'Sculptor'),(82700,1395438,7,'Sculptor'),(82700,1395439,9,'Scenic Artist'),(82700,1395440,9,'Scenic Artist'),(82700,1395441,7,'Sculptor'),(82700,1395442,6,'Foley'),(82700,1395444,6,'Sound Designer'),(82700,1395446,6,'Sound Re-Recording Mixer'),(82700,1395447,6,'Supervising Sound Editor'),(82700,1395449,10,'Visual Effects Producer'),(82700,1395451,10,'Visual Effects Producer'),(82700,1395452,10,'Visual Effects Producer'),(82700,1395453,10,'Visual Effects Producer'),(82700,1395454,10,'Visual Effects Producer'),(82700,1395455,10,'Visual Effects Producer'),(82700,1395456,9,'Visual Effects Editor'),(82700,1395457,10,'Visual Effects Supervisor'),(82700,1395458,10,'Visual Effects Supervisor'),(82700,1395460,10,'Visual Effects Supervisor'),(82700,1395462,10,'Visual Effects Supervisor'),(82700,1395463,1,'Camera Operator'),(82700,1395465,9,'Studio Teachers'),(82700,1447543,10,'Visual Effects'),(82700,1452989,10,'Animation'),(82700,1452991,10,'Animation'),(82700,1452998,10,'Animation'),(82700,1453014,10,'Animation'),(82700,1453594,10,'Animation'),(82700,1453943,11,'Lighting Artist'),(82700,1463784,10,'VFX Artist'),(181533,37,6,'Music'),(181533,539,4,'Screenplay'),(181533,3113,1,'Director of Photography'),(181533,3989,8,'Costume Design'),(181533,5362,3,'Casting'),(181533,5363,3,'Casting'),(181533,10956,3,'Executive Producer'),(181533,10956,2,'First Assistant Director'),(181533,10965,3,'Producer'),(181533,11222,3,'Producer'),(181533,17825,2,'Director'),(181533,17825,3,'Producer'),(181533,51987,7,'Production Design'),(181533,54271,5,'Editor'),(181533,113043,6,'Foley Editor'),(181533,113054,6,'Sound Designer'),(181533,113066,6,'Boom Operator'),(181533,57634,3,'Executive Producer'),(181533,59413,4,'Screenplay'),(181533,60714,7,'Set Decoration'),(181533,62859,7,'Art Direction'),(181533,82995,4,'Characters'),(181533,121357,4,'Screenplay'),(181533,121358,4,'Screenplay'),(181533,146143,9,'Stunt Coordinator'),(181533,1029804,10,'Visual Effects Producer'),(181533,1031621,6,'Sound Effects Editor'),(181533,1047108,7,'Set Designer'),(181533,1191106,7,'Art Direction'),(181533,1204225,7,'Set Designer'),(181533,1333084,7,'Property Master'),(181533,1336896,9,'Choreographer'),(181533,1340093,7,'Set Designer'),(181533,1340345,6,'Supervising Sound Editor'),(181533,1354916,7,'Art Direction'),(181533,1357046,7,'Conceptual Design'),(181533,1357047,7,'Set Designer'),(181533,1368861,7,'Construction Coordinator'),(181533,1370904,7,'Sculptor'),(181533,1372882,9,'Visual Effects Editor'),(181533,1378676,7,'Set Designer'),(181533,1380464,11,'Lighting Director'),(181533,1384362,7,'Set Designer'),(181533,1384367,6,'Dialogue Editor'),(181533,1390366,1,'Still Photographer'),(181533,1391751,7,'Set Designer'),(181533,1394306,6,'Supervising Music Editor'),(181533,1394931,7,'Art Department Coordinator'),(181533,1394973,1,'Still Photographer'),(181533,1400019,7,'Sculptor'),(181533,1400560,10,'Visual Effects Supervisor'),(181533,1403640,1,'Steadicam Operator'),(181533,1404244,1,'Aerial Director of Photography'),(181533,1404734,1,'Camera Operator'),(181533,1413000,8,'Costume Supervisor'),(181533,1418412,5,'First Assistant Editor'),(181533,1419114,9,'Dialect Coach'),(181533,1425411,8,'Makeup Artist'),(181533,1438591,8,'Key Makeup Artist'),(181533,1463380,7,'Set Designer'),(181533,1479279,7,'Set Designer'),(181533,1512761,8,'Makeup Artist'),(181533,1530322,6,'Foley Editor'),(181533,1533038,2,'Script Supervisor'),(181533,1543221,10,'Visual Effects Coordinator'),(181533,1551892,10,'Visual Effects Coordinator'),(181533,1551904,9,'Visual Effects Editor'),(181533,1558713,9,'Armorer'),(181533,1580853,5,'First Assistant Editor'),(181533,1597965,10,'Visual Effects Producer'),(181533,1598516,2,'Script Coordinator'),(181533,1621498,8,'Seamstress'),(181533,1630904,10,'VFX Editor'),(181533,1634471,6,'Orchestrator'),(181533,1638131,10,'Visual Effects Coordinator'),(181533,1687126,7,'Painter'),(181533,1694455,8,'Hair Department Head'),(181533,1732800,8,'Makeup Department Head'),(181533,1826925,1,'Dolly Grip'),(181533,1829852,1,'Key Grip'),(181533,1855305,9,'Visual Effects Editor'),(181533,1869072,8,'Makeup Artist'),(181533,1869084,7,'Set Designer'),(181533,1869085,7,'Construction Foreman'),(181533,1869086,7,'Greensman'),(181533,1869088,7,'Greensman'),(181533,1869104,7,'Painter'),(181533,1869105,9,'Carpenter'),(181533,1869359,10,'Visual Effects Coordinator'),(181533,1869360,10,'Visual Effects Coordinator'),(181533,1869361,11,'Lighting Director'),(181533,1869363,10,'Visual Effects Producer'),(181533,1869365,10,'Visual Effects Coordinator'),(181533,1869366,10,'Visual Effects Coordinator'),(181533,1869368,3,'Production Coordinator'),(181533,1869372,10,'Visual Effects Coordinator'),(181533,1869375,10,'Visual Effects Coordinator'),(181533,1869376,10,'Visual Effects Coordinator'),(181533,1869380,10,'Visual Effects Coordinator'),(181533,1869381,10,'Visual Effects Coordinator'),(181533,1869382,10,'Visual Effects Coordinator'),(181533,1869384,10,'Visual Effects Supervisor'),(181533,1869385,10,'Visual Effects Coordinator'),(181533,1869386,10,'Visual Effects Coordinator'),(181533,1869387,10,'Visual Effects Coordinator'),(181533,1869389,10,'Modeling'),(181533,1871153,8,'Seamstress'),(181533,1871154,2,'Script Supervisor'),(38055,947,6,'Original Music Composer'),(38055,7399,3,'Executive Producer'),(38055,18864,2,'Director'),(38055,22302,3,'Executive Producer'),(38055,60929,3,'Producer'),(38055,68016,6,'Orchestrator'),(38055,119496,4,'Screenplay'),(38055,119497,4,'Screenplay'),(38055,175229,7,'Production Design'),(38055,574003,3,'Producer'),(38055,929145,6,'Original Music Composer'),(38055,1447493,10,'Visual Development'),(38055,1453498,4,'Storyboard'),(38055,1453536,4,'Storyboard'),(49524,905,7,'Supervising Art Director'),(49524,1098,5,'Editor'),(49524,8181,3,'Producer'),(49524,9648,7,'Production Design'),(49524,11874,3,'Producer'),(49524,40832,3,'Producer'),(49524,20172,8,'Costume Design'),(49524,23486,6,'Original Music Composer'),(49524,26192,1,'Director of Photography'),(49524,42994,3,'Executive Producer'),(49524,42994,4,'Story'),(49524,54047,4,'Screenplay'),(49524,54047,4,'Story'),(49524,54048,4,'Screenplay'),(49524,54048,4,'Story'),(49524,57270,2,'Director'),(49524,68691,3,'Executive Producer'),(49524,58839,3,'Executive Producer'),(49524,58839,4,'Novel'),(49524,60536,9,'Stunts'),(49524,65690,3,'Executive Producer'),(49524,71230,3,'Executive Producer'),(49524,114478,3,'Casting'),(49524,963843,7,'Art Direction'),(49524,1034748,3,'Casting'),(49524,1195362,7,'Art Direction'),(49524,1447542,10,'VFX Artist'),(49524,1453021,10,'Animation'),(49524,1455461,11,'Lighting Technician'),(49524,1455463,10,'Visual Effects'),(49524,1455610,10,'Animation'),(49524,1456696,9,'Compositors'),(49524,1463785,10,'Animation'),(131631,495,3,'Casting'),(131631,1213,6,'Original Music Composer'),(131631,1233,9,'Thanks'),(131631,1890,7,'Production Design'),(131631,4446,3,'Producer'),(131631,10943,2,'Director'),(131631,8281,7,'Set Designer'),(131631,9025,7,'Set Designer'),(131631,9493,8,'Costume Supervisor'),(131631,40754,7,'Art Department Coordinator'),(131631,11508,7,'Supervising Art Director'),(131631,14771,9,'Stunt Coordinator'),(131631,21984,7,'Set Decoration'),(131631,27576,1,'Director of Photography'),(131631,35550,4,'Screenplay'),(131631,38022,7,'Art Direction'),(131631,41592,7,'Art Direction'),(131631,49625,7,'Greensman'),(131631,113045,6,'Foley'),(131631,66519,5,'Editor'),(131631,69229,5,'Editor'),(131631,95142,8,'Makeup Department Head'),(131631,189111,4,'Novel'),(131631,189111,3,'Executive Producer'),(131631,225633,4,'Screenplay'),(131631,406204,8,'Makeup Department Head'),(131631,587804,8,'Hairstylist'),(131631,935503,7,'Set Designer'),(131631,935634,3,'Producer'),(131631,967137,7,'Supervising Art Director'),(131631,986677,7,'Art Direction'),(131631,1068055,7,'Set Designer'),(131631,1068056,7,'Set Designer'),(131631,1133287,10,'Visual Effects Producer'),(131631,1182917,8,'Makeup Artist'),(131631,1293581,7,'Assistant Art Director'),(131631,1311507,9,'Special Effects Coordinator'),(131631,1332189,9,'Dialect Coach'),(131631,1335066,9,'Property Master'),(131631,1335886,8,'Costume Supervisor'),(131631,1335890,9,'Transportation Coordinator'),(131631,1338670,8,'Hairstylist'),(131631,1339445,7,'Construction Coordinator'),(131631,1341865,2,'Script Supervisor'),(131631,1342663,6,'Music Editor'),(131631,1345596,5,'Dialogue Editor'),(131631,1345613,8,'Set Costumer'),(131631,1357070,9,'Transportation Coordinator'),(131631,1360099,6,'Sound Effects Editor'),(131631,1368851,10,'Visual Effects Supervisor'),(131631,1377132,1,'Camera Operator'),(131631,1377290,9,'Property Master'),(131631,1377300,3,'Location Manager'),(131631,1380000,11,'Gaffer'),(131631,1380479,6,'Sound Designer'),(131631,1380479,6,'Sound Re-Recording Mixer'),(131631,1387256,8,'Set Costumer'),(131631,1392245,1,'Still Photographer'),(131631,1394750,10,'Visual Effects Producer'),(131631,1394755,10,'Visual Effects Supervisor'),(131631,1395281,1,'Camera Operator'),(131631,1399071,1,'Helicopter Camera'),(131631,1399290,7,'Set Designer'),(131631,1399320,8,'Set Costumer'),(131631,1399475,11,'Gaffer'),(131631,1400373,9,'Second Unit Cinematographer'),(131631,1400555,7,'Set Designer'),(131631,1401884,7,'Sculptor'),(131631,1401994,1,'Camera Operator'),(131631,1403415,1,'Helicopter Camera'),(131631,1403915,7,'Sculptor'),(131631,1404366,6,'ADR & Dubbing'),(131631,1404366,5,'Dialogue Editor'),(131631,1404805,8,'Makeup Artist'),(131631,1406761,9,'Visual Effects Editor'),(131631,1406844,11,'Gaffer'),(131631,1406850,9,'Transportation Coordinator'),(131631,1408321,10,'Visual Effects Supervisor'),(131631,1408338,10,'Visual Effects Producer'),(131631,1408342,9,'CG Supervisor'),(131631,1409281,8,'Set Costumer'),(131631,1411330,7,'Set Designer'),(131631,1411340,1,'Camera Operator'),(131631,1411357,3,'Location Manager'),(131631,1411509,7,'Set Designer'),(131631,1412310,8,'Hairstylist'),(131631,1415019,8,'Set Costumer'),(131631,1415650,9,'Unit Publicist'),(131631,1417988,9,'CG Supervisor'),(131631,1421648,9,'Visual Effects Editor'),(131631,1424696,1,'Steadicam Operator'),(131631,1424894,8,'Hairstylist'),(131631,1428904,9,'Visual Effects Editor'),(131631,1431059,10,'Visual Effects Producer'),(131631,1433917,3,'Location Manager'),(131631,1435575,8,'Hairstylist'),(131631,1442097,8,'Hairstylist'),(131631,1442114,7,'Art Department Coordinator'),(131631,1442115,9,'Property Master'),(131631,1442116,7,'Art Department Coordinator'),(131631,1442117,7,'Assistant Art Director'),(131631,1442118,7,'Assistant Art Director'),(131631,1442119,7,'Assistant Art Director'),(131631,1442125,7,'Construction Coordinator'),(131631,1442126,7,'Greensman'),(131631,1442127,7,'Sculptor'),(131631,1442128,7,'Sculptor'),(131631,1442129,7,'Set Designer'),(131631,1442130,7,'Set Decoration Buyer'),(131631,1442132,9,'CG Supervisor'),(131631,1442134,9,'CG Supervisor'),(131631,1442136,9,'CG Supervisor'),(131631,1442137,10,'Animation Supervisor'),(131631,1442139,9,'Visual Effects Editor'),(131631,1442142,10,'Visual Effects Producer'),(131631,1442143,9,'Visual Effects Editor'),(131631,1442145,10,'Visual Effects Producer'),(131631,1442146,10,'Visual Effects Producer'),(131631,1442147,10,'Visual Effects Supervisor'),(131631,1442148,10,'Visual Effects Supervisor'),(131631,1442150,10,'Visual Effects Supervisor'),(131631,1442151,10,'Visual Effects Supervisor'),(131631,1442154,10,'Visual Effects Supervisor'),(131631,1442156,10,'Visual Effects Supervisor'),(131631,1442159,10,'VFX Production Coordinator'),(131631,1442161,10,'VFX Supervisor'),(131631,1442162,9,'Stunt Coordinator'),(131631,1442164,1,'Camera Operator'),(131631,1442170,8,'Set Costumer'),(131631,1442172,9,'Picture Car Coordinator'),(131631,1442173,9,'Dialect Coach'),(131631,1442174,3,'Location Manager'),(131631,1442175,3,'Location Manager'),(131631,1594602,8,'Costume Design'),(172385,5713,3,'Executive Producer'),(172385,5714,2,'Director'),(172385,5714,4,'Story'),(172385,5718,3,'Producer'),(172385,11098,6,'Original Music Composer'),(172385,45848,3,'Casting'),(172385,42267,6,'Sound Re-Recording Mixer'),(172385,56284,5,'Editor'),(172385,58144,4,'Screenplay'),(172385,66962,4,'Screenplay'),(172385,406615,1,'Director of Photography'),(172385,535878,3,'Producer'),(172385,967321,4,'Screenplay'),(172385,1327030,6,'Sound Re-Recording Mixer'),(172385,1376902,6,'Supervising Sound Editor'),(172385,1394418,6,'Sound Effects Editor'),(172385,1404326,6,'Music Editor'),(172385,1418373,6,'Sound Effects Editor'),(172385,1455610,10,'Animation'),(172385,1459743,10,'Animation'),(172385,1524786,4,'Screenplay'),(172385,1815555,6,'Sound Recordist'),(36658,2095,3,'Producer'),(36658,3276,3,'Casting'),(36658,7200,3,'Producer'),(36658,10850,3,'Co-Producer'),(36658,9032,2,'Director'),(36658,9032,4,'Story'),(36658,9039,5,'Editor'),(36658,9039,6,'Music'),(36658,9040,1,'Director of Photography'),(36658,9043,8,'Costume Design'),(36658,11012,4,'Screenplay'),(36658,11011,4,'Story'),(36658,22061,7,'Art Direction'),(36658,11021,7,'Set Decoration'),(36658,46082,7,'Supervising Art Director'),(36658,11017,5,'Editor'),(36658,113194,9,'Stunts'),(36658,10995,4,'Screenplay'),(36658,10995,4,'Story'),(36658,11013,4,'Screenplay'),(36658,236696,9,'Choreographer'),(36658,1007395,9,'Stunts'),(36658,1271644,7,'Production Design'),(36658,1378226,6,'Sound Mixer'),(36658,1384398,2,'Script Supervisor'),(36658,1448601,10,'Animation'),(36658,1460599,10,'Animation'),(36658,1551659,9,'Video Assist Operator'),(51497,495,3,'Casting'),(51497,2519,8,'Costume Design'),(51497,7235,7,'Art Direction'),(51497,7239,6,'Supervising Sound Editor'),(51497,6668,5,'Editor'),(51497,13670,1,'Camera Operator'),(51497,6041,6,'Original Music Composer'),(51497,6045,7,'Art Direction'),(51497,6328,9,'Stunt Coordinator'),(51497,8181,3,'Producer'),(51497,9639,7,'Supervising Art Director'),(51497,11874,3,'Producer'),(51497,14041,7,'Set Decoration'),(51497,12562,6,'ADR & Dubbing'),(51497,12835,3,'Producer'),(51497,16733,7,'Production Design'),(51497,17649,9,'Second Unit Cinematographer'),(51497,58191,4,'Screenplay'),(51497,57029,3,'Executive Producer'),(51497,57158,9,'Second Unit Cinematographer'),(51497,58189,2,'Director'),(51497,58189,3,'Executive Producer'),(51497,58192,1,'Director of Photography'),(51497,58193,5,'Editor'),(51497,61996,8,'Makeup Artist'),(51497,92471,10,'Visual Effects Supervisor'),(51497,92479,9,'Stunt Coordinator'),(51497,73884,5,'Dialogue Editor'),(51497,90635,3,'Executive Producer'),(51497,80828,9,'Special Effects Coordinator'),(51497,82169,1,'Steadicam Operator'),(51497,109943,10,'Visual Effects Supervisor'),(51497,554888,6,'Sound Effects Editor'),(51497,963492,9,'Second Unit Cinematographer'),(51497,1077782,6,'Foley'),(51497,1205993,1,'Camera Operator'),(51497,1275310,9,'Scenic Artist'),(51497,1308742,7,'Set Designer'),(51497,1309209,8,'Makeup Artist'),(51497,1319750,7,'Set Designer'),(51497,1319825,8,'Costume Supervisor'),(51497,1322017,7,'Set Designer'),(51497,1327909,8,'Makeup Artist'),(51497,1329417,8,'Makeup Department Head'),(51497,1335064,7,'Greensman'),(51497,1335077,9,'Transportation Coordinator'),(51497,1338147,7,'Construction Coordinator'),(51497,1342657,6,'Sound Effects Editor'),(51497,1345268,6,'Music Editor'),(51497,1350244,10,'Visual Effects Supervisor'),(51497,1352958,7,'Assistant Art Director'),(51497,1352983,2,'Script Supervisor'),(51497,1355541,1,'Camera Operator'),(51497,1355894,10,'Animation'),(51497,1357064,1,'Camera Operator'),(51497,1367496,10,'Visual Effects Producer'),(51497,1367499,9,'Stunt Coordinator'),(51497,1375911,10,'Visual Effects Supervisor'),(51497,1375912,10,'Visual Effects Producer'),(51497,1376803,10,'Visual Effects Supervisor'),(51497,1377294,10,'Visual Effects Producer'),(51497,1378241,1,'Camera Operator'),(51497,1392083,6,'Sound Designer'),(51497,1392095,10,'Visual Effects Supervisor'),(51497,1394130,6,'Sound Re-Recording Mixer'),(51497,1394131,6,'Sound Re-Recording Mixer'),(51497,1394445,10,'Visual Effects Supervisor'),(51497,1394965,10,'Visual Effects Supervisor'),(51497,1398943,7,'Leadman'),(51497,1399071,1,'Helicopter Camera'),(51497,1399319,1,'Still Photographer'),(51497,1399889,6,'Music Editor'),(51497,1400079,1,'Camera Operator'),(51497,1400090,2,'Script Supervisor'),(51497,1400354,5,'Digital Intermediate'),(51497,1400399,6,'Foley'),(51497,1400564,10,'Visual Effects Producer'),(51497,1403406,9,'Visual Effects Editor'),(51497,1403412,11,'Gaffer'),(51497,1403551,8,'Hairstylist'),(51497,1404217,6,'Sound Effects Editor'),(51497,1404232,8,'Set Costumer'),(51497,1404285,9,'Visual Effects Editor'),(51497,1404739,1,'Helicopter Camera'),(51497,1404838,9,'Sound Recordist'),(51497,1405232,5,'Dialogue Editor'),(51497,1405241,1,'Helicopter Camera'),(51497,1405376,7,'Set Designer'),(51497,1405389,9,'Second Unit Cinematographer'),(51497,1406616,6,'ADR & Dubbing'),(51497,1407720,8,'Makeup Artist'),(51497,1408206,1,'Camera Operator'),(51497,1408338,10,'Visual Effects Producer'),(51497,1412242,6,'Dolby Consultant'),(51497,1412317,9,'Scenic Artist'),(51497,1412326,1,'Additional Camera'),(51497,1413087,7,'Art Department Coordinator'),(51497,1413453,6,'Sound Designer'),(51497,1414497,9,'Property Master'),(51497,1415010,10,'Visual Effects Producer'),(51497,1415014,10,'Visual Effects Supervisor'),(51497,1415620,9,'Visual Effects Editor'),(51497,1416056,8,'Hairstylist'),(51497,1425409,8,'Hairstylist'),(51497,1427378,1,'Camera Operator'),(51497,1429251,8,'Set Costumer'),(51497,1432039,10,'Visual Effects Supervisor'),(51497,1432045,8,'Set Costumer'),(51497,1435703,6,'Sound Designer'),(51497,1436196,9,'Picture Car Coordinator'),(51497,1436198,2,'Script Supervisor'),(51497,1436199,9,'Unit Publicist'),(51497,1438959,8,'Hairstylist'),(51497,1438960,8,'Hairstylist'),(51497,1438961,8,'Makeup Artist'),(51497,1439010,7,'Assistant Art Director'),(51497,1439013,7,'Art Department Coordinator'),(51497,1439015,7,'Art Department Assistant'),(51497,1439016,7,'Construction Coordinator'),(51497,1439019,7,'Greensman'),(51497,1439027,7,'Set Decoration Buyer'),(51497,1439051,10,'Animation'),(51497,1439053,9,'CG Supervisor'),(51497,1439056,9,'CG Supervisor'),(51497,1439058,9,'CG Supervisor'),(51497,1439059,10,'Visual Effects Producer'),(51497,1439061,9,'Visual Effects Editor'),(51497,1439066,10,'Visual Effects Producer'),(51497,1439067,9,'Visual Effects Editor'),(51497,1439088,10,'Visual Effects Supervisor'),(51497,1439092,10,'Visual Effects Supervisor'),(51497,1439094,10,'Visual Effects Supervisor'),(51497,1439096,9,'Stunt Coordinator'),(51497,1439097,11,'Gaffer'),(51497,1439099,1,'Camera Operator'),(51497,1439104,1,'Camera Operator'),(51497,1439107,11,'Gaffer'),(51497,1439108,11,'Rigging Gaffer'),(51497,1439109,8,'Costume Supervisor'),(51497,1439110,8,'Set Costumer'),(51497,1439111,8,'Set Costumer'),(51497,1439113,9,'Transportation Coordinator'),(51497,1439118,2,'Script Supervisor'),(51497,1439119,3,'Location Manager'),(51497,1439121,3,'Location Manager'),(51497,1451676,9,'Visual Effects Editor'),(58574,947,6,'Original Music Composer'),(58574,956,2,'Director'),(58574,1091,3,'Producer'),(58574,1296,3,'Executive Producer'),(58574,1301,1,'Director of Photography'),(58574,40823,6,'Foley'),(58574,41289,3,'Producer'),(58574,17166,8,'Costume Design'),(58574,25167,4,'Characters'),(58574,36656,7,'Production Design'),(58574,36657,7,'Art Direction'),(58574,36658,7,'Set Decoration'),(58574,37162,3,'Producer'),(58574,53805,4,'Screenplay'),(58574,53806,4,'Screenplay'),(58574,56917,5,'Editor'),(58574,63127,3,'Executive Producer'),(58574,112690,3,'Producer'),(58574,68016,6,'Orchestrator'),(58574,71577,7,'Art Direction'),(58574,122354,9,'Stunt Coordinator'),(58574,190914,2,'Script Supervisor'),(58574,194881,7,'Art Direction'),(58574,1018073,3,'Casting'),(58574,1027825,7,'Supervising Art Director'),(58574,1032063,7,'Set Decoration'),(58574,1032064,7,'Art Direction'),(58574,1032067,9,'Special Effects Coordinator'),(58574,1032068,9,'Stunts'),(58574,1032069,3,'Unit Production Manager'),(58574,1032070,10,'Visual Effects Supervisor'),(58574,1032071,10,'Visual Effects Supervisor'),(58574,1032072,9,'Stunt Coordinator'),(58574,1119658,5,'First Assistant Editor'),(49040,664,3,'Producer'),(49040,1213,6,'Original Music Composer'),(49040,1484,3,'Casting'),(49040,2946,3,'Executive Producer'),(49040,2950,1,'Director of Photography'),(49040,6191,7,'Set Decoration'),(49040,8684,9,'Stunt Coordinator'),(49040,89383,7,'Supervising Art Director'),(49040,11713,7,'Assistant Art Director'),(49040,13166,6,'Sound Designer'),(49040,14764,6,'Sound Designer'),(49040,14765,6,'Supervising Sound Editor'),(49040,19971,8,'Costume Design'),(49040,19242,4,'Screenplay'),(49040,19242,2,'Director'),(49040,25600,3,'Producer'),(49040,29402,3,'Executive Producer'),(49040,19755,7,'Production Design'),(49040,62062,7,'Assistant Art Director'),(49040,67810,5,'Editor'),(49040,74766,8,'Hairstylist'),(49040,76003,9,'Dialect Coach'),(49040,141712,4,'Novel'),(49040,223238,10,'Visual Effects Supervisor'),(49040,958273,2,'Script Supervisor'),(49040,983595,7,'Art Direction'),(49040,992965,1,'Still Photographer'),(49040,1006747,10,'Visual Effects Supervisor'),(49040,1015645,7,'Assistant Art Director'),(49040,1085049,7,'Art Direction'),(49040,1298625,11,'Gaffer'),(49040,1319843,8,'Makeup Department Head'),(49040,1327146,8,'Costume Supervisor'),(49040,1333082,9,'Property Master'),(49040,1333083,9,'Property Master'),(49040,1333084,9,'Property Master'),(49040,1333085,8,'Costume Supervisor'),(49040,1333086,8,'Costume Supervisor'),(49040,1333087,8,'Costume Supervisor'),(49040,1333088,8,'Costume Supervisor'),(49040,1337469,6,'Music Editor'),(49040,1338372,6,'Foley'),(49040,1339645,8,'Makeup Artist'),(49040,1342014,10,'Visual Effects Producer'),(49040,1367493,6,'Foley'),(49040,1383055,5,'First Assistant Editor'),(49040,1387183,5,'Dialogue Editor'),(49040,1387252,9,'Stunt Coordinator'),(49040,1393554,7,'Art Department Coordinator'),(49040,1395023,6,'Sound Effects Editor'),(49040,1399069,9,'Transportation Coordinator'),(49040,1399071,1,'Camera Operator'),(49040,1399479,9,'Unit Publicist'),(49040,1399873,9,'Visual Effects Art Director'),(49040,1400081,1,'Camera Operator'),(49040,1400489,9,'Scenic Artist'),(49040,1404217,6,'Sound Designer'),(49040,1404234,9,'Transportation Coordinator'),(49040,1405382,5,'Dialogue Editor'),(49040,1405419,5,'Digital Intermediate'),(49040,1406390,6,'Sound Effects Editor'),(49040,1406571,8,'Hairstylist'),(49040,1406572,8,'Hairstylist'),(49040,1406573,8,'Hairstylist'),(49040,1406578,8,'Makeup Artist'),(49040,1406582,8,'Makeup Artist'),(49040,1406584,8,'Makeup Artist'),(49040,1406593,3,'Production Manager'),(49040,1406594,3,'Production Manager'),(49040,1406595,9,'Post Production Supervisor'),(49040,1406596,7,'Assistant Art Director'),(49040,1406599,9,'Scenic Artist'),(49040,1406602,9,'Scenic Artist'),(49040,1406603,9,'Scenic Artist'),(49040,1406605,9,'Scenic Artist'),(49040,1406606,9,'Scenic Artist'),(49040,1406607,9,'Scenic Artist'),(49040,1406608,9,'Scenic Artist'),(49040,1406609,9,'Scenic Artist'),(49040,1406610,9,'Scenic Artist'),(49040,1406611,7,'Construction Coordinator'),(49040,1406612,7,'Leadman'),(49040,1406614,6,'Sound Re-Recording Mixer'),(49040,1406616,6,'ADR & Dubbing'),(49040,1406756,9,'Visual Effects Editor'),(49040,1406757,9,'Visual Effects Editor'),(49040,1406758,9,'Visual Effects Editor'),(49040,1406759,10,'Visual Effects Supervisor'),(49040,1406760,10,'Visual Effects Supervisor'),(49040,1406761,9,'Visual Effects Editor'),(49040,1406762,9,'Visual Effects Editor'),(49040,1406763,10,'Visual Effects Producer'),(49040,1406764,10,'Visual Effects Producer'),(49040,1406765,1,'Camera Operator'),(49040,1406766,1,'Additional Photography'),(49040,1406767,11,'Gaffer'),(49040,1406768,11,'Gaffer'),(49040,1406769,9,'Transportation Coordinator'),(49040,1406770,9,'Transportation Coordinator'),(49040,1406771,3,'Location Manager'),(49040,1406772,3,'Location Manager'),(49040,1414050,7,'Art Department Assistant'),(87827,2952,3,'Casting'),(87827,8384,7,'Set Decoration'),(87827,1614,2,'Director'),(87827,1635,5,'Editor'),(87827,5329,7,'Production Design'),(87827,5359,6,'Music'),(87827,6506,8,'Costume Design'),(87827,12996,4,'Screenplay'),(87827,20516,3,'Executive Producer'),(87827,25455,3,'Producer'),(87827,42736,3,'Producer'),(87827,51333,1,'Camera Operator'),(87827,68016,6,'Orchestrator'),(87827,227849,9,'Production Office Assistant'),(87827,935501,4,'Novel'),(87827,935503,7,'Art Direction'),(87827,960435,7,'Production Design'),(87827,1355894,9,'Digital Effects Supervisor'),(87827,1453019,10,'Animation'),(87827,1453021,10,'Animation'),(87827,1455463,10,'Visual Effects'),(87827,1459734,10,'Animation'),(87827,1460611,10,'Animation'),(87827,1460621,10,'Visual Effects'),(87827,1460634,9,'Compositors'),(87827,1512383,7,'Set Decoration'),(87827,1642697,10,'Animation Supervisor'),(324668,6410,3,'Casting'),(324668,664,3,'Producer'),(324668,1892,3,'Producer'),(324668,3501,3,'Casting'),(324668,6235,7,'Supervising Art Director'),(324668,40752,7,'Art Direction'),(324668,40815,6,'Foley'),(324668,11098,6,'Original Music Composer'),(324668,15493,1,'Director of Photography'),(324668,16683,6,'Sound Designer'),(324668,25606,4,'Characters'),(324668,25598,2,'Director'),(324668,25598,3,'Producer'),(324668,25598,4,'Writer'),(324668,29402,3,'Executive Producer'),(324668,29405,5,'Editor'),(324668,29405,3,'Executive Producer'),(324668,29405,4,'Writer'),(324668,30463,7,'Supervising Art Director'),(324668,40471,8,'Costume Design'),(324668,120606,3,'Producer'),(324668,137175,7,'Art Direction'),(324668,225635,6,'Original Music Composer'),(324668,937946,1,'Camera Operator'),(324668,943313,7,'Production Design'),(324668,956258,3,'Producer'),(324668,1001648,11,'Rigging Grip'),(324668,1024842,9,'Visual Effects Editor'),(324668,1117347,9,'Armorer'),(324668,1324652,1,'Still Photographer'),(324668,1327142,7,'Art Direction'),(324668,1333655,3,'Casting Associate'),(324668,1335556,6,'Sound Designer'),(324668,1336194,8,'Set Costumer'),(324668,1337412,6,'Foley'),(324668,1338217,7,'Construction Coordinator'),(324668,1368882,8,'Set Costumer'),(324668,1389525,7,'Art Department Coordinator'),(324668,1392609,6,'Sound Re-Recording Mixer'),(324668,1392718,1,'Still Photographer'),(324668,1393119,6,'Sound Re-Recording Mixer'),(324668,1393300,6,'Foley'),(324668,1394415,7,'Art Direction'),(324668,1398918,6,'Foley'),(324668,1399322,8,'Set Costumer'),(324668,1400092,1,'Helicopter Camera'),(324668,1404244,1,'Helicopter Camera'),(324668,1404326,6,'Music Editor'),(324668,1404739,1,'Helicopter Camera'),(324668,1406780,1,'Helicopter Camera'),(324668,1408338,10,'Visual Effects Producer'),(324668,1408357,1,'Camera Operator'),(324668,1408373,6,'Sound Designer'),(324668,1408373,6,'Supervising Sound Editor'),(324668,1408378,6,'ADR & Dubbing'),(324668,1408379,10,'Visual Effects Producer'),(324668,1408383,10,'Visual Effects Supervisor'),(324668,1408384,10,'Visual Effects Supervisor'),(324668,1408403,5,'Digital Intermediate'),(324668,1411128,6,'Dolby Consultant'),(324668,1411533,10,'Visual Effects Supervisor'),(324668,1411876,1,'Steadicam Operator'),(324668,1414101,5,'Digital Intermediate'),(324668,1416955,11,'Gaffer'),(324668,1426314,7,'Art Department Coordinator'),(324668,1427849,2,'Script Supervisor'),(324668,1428227,8,'Set Costumer'),(324668,1428915,1,'Camera Operator'),(324668,1437304,11,'Gaffer'),(324668,1437656,5,'Digital Intermediate'),(324668,1439104,1,'Camera Operator'),(324668,1439128,8,'Prosthetic Supervisor'),(324668,1439132,8,'Makeup Artist'),(324668,1439132,8,'Hairstylist'),(324668,1439740,10,'Visual Effects Supervisor'),(324668,1442164,1,'Camera Operator'),(324668,1444960,10,'Visual Effects Supervisor'),(324668,1445969,9,'CG Supervisor'),(324668,1459852,8,'Key Hair Stylist'),(324668,1462348,7,'Art Direction'),(324668,1463804,8,'Set Costumer'),(324668,1466122,3,'Producer'),(324668,1495530,1,'Additional Photography'),(324668,1551219,6,'Music Editor'),(324668,1551894,10,'Visual Effects Producer'),(324668,1571984,5,'Digital Intermediate'),(324668,1574046,8,'Makeup Artist'),(324668,1574092,9,'Visual Effects Editor'),(324668,1616064,8,'Prosthetic Supervisor'),(324668,1621882,8,'Set Costumer'),(324668,1621894,8,'Makeup Artist'),(324668,1636839,8,'Makeup Artist'),(324668,1650813,7,'Art Direction'),(324668,1661421,1,'Additional Camera'),(324668,1688587,7,'Art Direction'),(324668,1706702,1,'Camera Operator'),(324668,1715540,7,'Art Direction'),(324668,1715546,3,'Casting Associate'),(324668,1715548,8,'Costume Supervisor'),(324668,1715557,1,'Camera Operator'),(324668,1715565,11,'Rigging Gaffer'),(324668,1715566,11,'Rigging Grip'),(324668,1715567,10,'Animation'),(324668,1715570,10,'VFX Supervisor'),(324668,1715571,10,'Visual Effects Coordinator'),(324668,1715572,10,'Visual Effects Coordinator'),(324668,1715573,10,'Visual Effects Coordinator'),(324668,1715574,10,'Visual Effects Coordinator'),(324668,1715575,10,'Visual Effects Coordinator'),(324668,1715576,10,'Visual Effects Coordinator'),(324668,1715577,10,'Visual Effects Coordinator'),(324668,1715578,9,'Visual Effects Editor'),(324668,1715579,10,'Visual Effects Supervisor'),(324668,1715580,6,'Sound Editor'),(324668,1715581,8,'Hairstylist'),(324668,1715582,8,'Makeup Artist'),(324668,1715583,8,'Makeup Artist'),(324668,1715584,5,'First Assistant Editor'),(324668,1715585,5,'First Assistant Editor'),(70981,2952,3,'Casting'),(70981,120,1,'Director of Photography'),(70981,578,2,'Director'),(70981,578,3,'Producer'),(70981,915,3,'Producer'),(70981,946,8,'Costume Design'),(70981,944,7,'Production Design'),(70981,950,5,'Editor'),(70981,1723,3,'Producer'),(70981,8673,1,'Camera Operator'),(70981,8673,1,'Steadicam Operator'),(70981,8401,3,'Executive Producer'),(70981,40713,9,'Stunt Coordinator'),(70981,16177,6,'Sound Re-Recording Mixer'),(70981,15332,6,'Supervising Sound Editor'),(70981,16363,3,'Casting'),(70981,20507,7,'Set Decoration'),(70981,34513,7,'Supervising Art Director'),(70981,34005,7,'Art Direction'),(70981,25060,8,'Makeup Artist'),(70981,30463,7,'Art Direction'),(70981,40374,3,'Executive Producer'),(70981,113048,9,'Sound Recordist'),(70981,113089,9,'Sound Recordist'),(70981,63421,6,'Original Music Composer'),(70981,28974,3,'Executive Producer'),(70981,28974,4,'Writer'),(70981,75081,8,'Hair Designer'),(70981,80424,7,'Assistant Art Director'),(70981,141483,10,'Visual Effects Supervisor'),(70981,564940,4,'Writer'),(70981,1018939,3,'Executive Producer'),(70981,1049333,6,'Music Editor'),(70981,1327139,7,'Art Direction'),(70981,1327141,7,'Art Direction'),(70981,1330898,7,'Assistant Art Director'),(70981,1335552,7,'Assistant Art Director'),(70981,1338372,6,'Foley'),(70981,1352966,5,'Dialogue Editor'),(70981,1352968,5,'Dialogue Editor'),(70981,1364410,5,'Dialogue Editor'),(70981,1367493,6,'Foley'),(70981,1377220,6,'Sound Re-Recording Mixer'),(70981,1377294,10,'Visual Effects Producer'),(70981,1378722,6,'Music Editor'),(70981,1385883,7,'Art Direction'),(70981,1388850,7,'Art Direction'),(70981,1388881,9,'Transportation Coordinator'),(70981,1388899,1,'Camera Operator'),(70981,1389543,8,'Set Costumer'),(70981,1390340,7,'Construction Coordinator'),(70981,1390344,7,'Art Department Coordinator'),(70981,1390349,7,'Assistant Art Director'),(70981,1390350,7,'Assistant Art Director'),(70981,1390352,9,'Scenic Artist'),(70981,1390353,6,'Supervising Sound Editor'),(70981,1390357,10,'Visual Effects Supervisor'),(70981,1390360,10,'Visual Effects Supervisor'),(70981,1390362,10,'Visual Effects Supervisor'),(70981,1390363,10,'Visual Effects Producer'),(70981,1390364,10,'Visual Effects Producer'),(70981,1390366,1,'Still Photographer'),(70981,1390367,11,'Gaffer'),(70981,1390368,1,'Camera Operator'),(70981,1390372,1,'Camera Operator'),(70981,1390373,8,'Costume Supervisor'),(70981,1390375,8,'Set Costumer'),(70981,1390376,8,'Set Costumer'),(70981,1390382,6,'Music Editor'),(70981,1390384,2,'Script Coordinator'),(70981,1390386,9,'Dialect Coach'),(70981,1390387,3,'Location Manager'),(70981,1390388,2,'Script Supervisor'),(70981,1390389,2,'Script Supervisor'),(70981,1405574,7,'Conceptual Design'),(70981,1437620,8,'Hairstylist'),(70981,1457935,9,'Compositors'),(70981,1462918,8,'Hair Designer'),(70981,1537723,3,'Production Coordinator'),(70981,1537724,8,'Makeup Artist'),(70981,1537725,8,'Hairstylist'),(68724,6410,3,'Casting'),(68724,1317,7,'Production Design'),(68724,3904,5,'Editor'),(68724,7238,8,'Costume Design'),(68724,9651,6,'Sound Re-Recording Mixer'),(68724,11092,3,'Producer'),(68724,16405,7,'Art Direction'),(68724,16997,9,'Property Master'),(68724,20228,6,'Foley'),(68724,20229,6,'Foley'),(68724,21257,8,'Makeup Artist'),(68724,23414,7,'Art Direction'),(68724,113194,9,'Stunts'),(68724,113203,9,'Stunt Coordinator'),(68724,60714,7,'Set Decoration'),(68724,62859,7,'Assistant Art Director'),(68724,62907,5,'Editor'),(68724,63784,3,'Casting'),(68724,72102,3,'Producer'),(68724,73021,3,'Executive Producer'),(68724,82194,2,'Director'),(68724,82194,3,'Producer'),(68724,82194,4,'Writer'),(68724,91122,1,'Helicopter Camera'),(68724,103057,8,'Costume Design'),(68724,186478,9,'Second Unit Cinematographer'),(68724,937499,1,'Camera Operator'),(68724,954433,3,'Casting'),(68724,961544,7,'Supervising Art Director'),(68724,967026,1,'Director of Photography'),(68724,1178898,1,'Camera Operator'),(68724,1197092,7,'Assistant Art Director'),(68724,1235712,9,'Visual Effects Editor'),(68724,1271614,6,'Original Music Composer'),(68724,1328138,8,'Makeup Department Head'),(68724,1329477,8,'Set Costumer'),(68724,1334183,7,'Construction Coordinator'),(68724,1340746,6,'Music Editor'),(68724,1357060,6,'Foley'),(68724,1365540,6,'Sound Effects Editor'),(68724,1378677,7,'Set Designer'),(68724,1378688,7,'Set Designer'),(68724,1378716,1,'Still Photographer'),(68724,1379997,9,'Visual Effects Editor'),(68724,1386913,10,'Visual Effects Producer'),(68724,1392925,2,'Script Supervisor'),(68724,1394942,7,'Greensman'),(68724,1394952,9,'Special Effects Coordinator'),(68724,1394972,1,'Camera Operator'),(68724,1397279,6,'Sound Re-Recording Mixer'),(68724,1400074,10,'Visual Effects Supervisor'),(68724,1400403,10,'Visual Effects Producer'),(68724,1400906,6,'Sound Re-Recording Mixer'),(68724,1401589,10,'Visual Effects Supervisor'),(68724,1403463,10,'Visual Effects Producer'),(68724,1406066,6,'Sound Designer'),(68724,1407846,3,'Location Manager'),(68724,1408178,8,'Hairstylist'),(68724,1408179,8,'Hairstylist'),(68724,1408198,9,'Unit Publicist'),(68724,1408321,10,'Visual Effects Supervisor'),(68724,1409744,1,'Camera Operator'),(68724,1411093,10,'Visual Effects Producer'),(68724,1418398,1,'Camera Operator'),(68724,1418529,8,'Hairstylist'),(68724,1424630,1,'Additional Photography'),(68724,1424636,5,'First Assistant Editor'),(68724,1431007,8,'Hairstylist'),(68724,1431010,8,'Makeup Artist'),(68724,1431011,8,'Makeup Artist'),(68724,1431012,9,'Makeup Effects'),(68724,1431013,7,'Art Department Coordinator'),(68724,1431014,9,'Property Master'),(68724,1431015,7,'Construction Coordinator'),(68724,1431016,7,'Leadman'),(68724,1431017,7,'Leadman'),(68724,1431018,7,'Set Designer'),(68724,1431021,6,'ADR & Dubbing'),(68724,1431022,6,'Dolby Consultant'),(68724,1431024,6,'Sound Effects Editor'),(68724,1431028,9,'Special Effects Coordinator'),(68724,1431029,9,'CG Supervisor'),(68724,1431031,9,'CG Supervisor'),(68724,1431033,9,'CG Supervisor'),(68724,1431035,10,'Animation Supervisor'),(68724,1431037,9,'Visual Effects Art Director'),(68724,1431053,10,'Visual Effects Producer'),(68724,1431055,10,'Visual Effects Producer'),(68724,1431057,9,'Visual Effects Editor'),(68724,1431059,10,'Visual Effects Producer'),(68724,1431061,10,'Visual Effects Producer'),(68724,1431062,9,'Visual Effects Editor'),(68724,1431066,9,'Visual Effects Editor'),(68724,1431067,10,'Visual Effects Supervisor'),(68724,1431068,10,'Visual Effects Supervisor'),(68724,1431073,9,'Stunt Coordinator'),(68724,1431074,1,'Camera Operator'),(68724,1431075,1,'Camera Operator'),(68724,1431077,1,'Camera Operator'),(68724,1431079,1,'Camera Operator'),(68724,1431080,1,'Still Photographer'),(68724,1431084,11,'Gaffer'),(68724,1431086,11,'Gaffer'),(68724,1431089,11,'Rigging Gaffer'),(68724,1431090,11,'Gaffer'),(68724,1431091,11,'Rigging Gaffer'),(68724,1431097,8,'Costume Supervisor'),(68724,1431098,8,'Set Costumer'),(68724,1431099,8,'Set Costumer'),(68724,1431100,5,'Digital Intermediate'),(68724,1431101,5,'Digital Intermediate'),(68724,1431102,5,'Digital Intermediate'),(68724,1431104,9,'Transportation Coordinator'),(68724,1431105,9,'Transportation Coordinator'),(68724,1431106,2,'Script Supervisor'),(68724,1431108,2,'Script Supervisor'),(68724,1431109,3,'Location Manager'),(68724,1431111,3,'Location Manager'),(97020,6410,3,'Casting'),(97020,7238,8,'Costume Design'),(97020,4504,3,'Producer'),(97020,4507,3,'Producer'),(97020,7722,4,'Characters'),(97020,8578,5,'Editor'),(97020,14912,3,'Casting'),(97020,15219,3,'Producer'),(97020,15220,3,'Producer'),(97020,23546,7,'Supervising Art Director'),(97020,44036,4,'Characters'),(97020,51987,7,'Production Design'),(97020,52576,2,'Director'),(97020,52581,6,'Original Music Composer'),(97020,52582,1,'Director of Photography'),(97020,68016,6,'Orchestrator'),(97020,107420,7,'Set Decoration'),(97020,959549,7,'Art Direction'),(97020,1012022,4,'Screenplay'),(97020,1046115,5,'Editor'),(97020,1172441,7,'Art Direction'),(97020,1195362,7,'Art Direction'),(97020,1322465,8,'Costume Supervisor'),(97020,1329753,8,'Makeup Department Head'),(97020,1329754,3,'Casting'),(97020,1329755,8,'Costume Supervisor'),(97020,1456835,10,'Animation'),(42888,3388,2,'Director'),(42888,3388,3,'Producer'),(42888,3388,4,'Writer'),(42888,947,6,'Original Music Composer'),(42888,492,1,'Director of Photography'),(42888,6410,3,'Casting'),(42888,3175,5,'Editor'),(42888,7857,7,'Set Decoration'),(42888,9269,7,'Production Design'),(42888,10685,3,'Producer'),(42888,12756,3,'Executive Producer'),(42888,19971,8,'Costume Design'),(42888,16731,3,'Producer'),(42888,53182,7,'Set Decoration'),(42888,55985,5,'Editor'),(42888,67994,3,'Producer'),(42888,68016,6,'Orchestrator'),(42888,956872,7,'Art Direction'),(42888,1399989,7,'Art Direction'),(37834,373,6,'Sound Effects Editor'),(37834,376,3,'Executive Producer'),(37834,366,2,'Director'),(37834,409,3,'Producer'),(37834,432,1,'Director of Photography'),(37834,433,5,'Editor'),(37834,434,3,'Casting'),(37834,436,3,'Casting'),(37834,3227,3,'Producer'),(37834,7236,7,'Production Design'),(37834,7237,7,'Set Decoration'),(37834,9654,9,'Stunt Coordinator'),(37834,11098,6,'Music'),(37834,11814,3,'Producer'),(37834,14192,8,'Makeup Artist'),(37834,21066,4,'Writer'),(37834,18311,3,'Executive Producer'),(37834,32797,8,'Costume Design'),(37834,54250,3,'Production Supervisor'),(37834,54252,3,'Executive Producer'),(37834,54252,3,'Unit Production Manager'),(37834,113046,6,'Sound Mixer'),(37834,113046,6,'Sound Re-Recording Mixer'),(37834,113073,6,'Sound Mixer'),(37834,113073,6,'Sound Re-Recording Mixer'),(37834,113097,6,'Sound Effects Editor'),(37834,66692,8,'Hair Department Head'),(37834,59445,3,'Casting'),(37834,79664,3,'Production Manager'),(37834,79790,11,'Gaffer'),(37834,103057,9,'Thanks'),(37834,106962,6,'Sound Effects Editor'),(37834,109994,3,'Location Manager'),(37834,138379,7,'Leadman'),(37834,582915,3,'Line Producer'),(37834,936841,7,'Supervising Art Director'),(37834,970836,3,'Casting Associate'),(37834,1021691,3,'Casting Associate'),(37834,1046600,5,'Editor'),(37834,1192526,7,'Set Designer'),(37834,1271756,7,'Art Direction'),(37834,1304276,6,'Foley'),(37834,1316003,8,'Makeup Department Head'),(37834,1321589,8,'Costume Supervisor'),(37834,1338372,6,'Foley'),(37834,1345635,2,'Script Supervisor'),(37834,1352964,7,'Construction Coordinator'),(37834,1357059,5,'Dialogue Editor'),(37834,1360100,6,'Sound Effects Editor'),(37834,1365542,6,'Sound Effects Editor'),(37834,1367493,6,'Foley'),(37834,1367505,6,'Music Editor'),(37834,1376898,7,'Art Direction'),(37834,1377132,1,'Camera Operator'),(37834,1377221,6,'Boom Operator'),(37834,1378240,1,'Still Photographer'),(37834,1378241,1,'Camera Operator'),(37834,1387217,7,'Art Department Coordinator'),(37834,1389139,1,'Still Photographer'),(37834,1393435,7,'Assistant Art Director'),(37834,1399291,7,'Set Designer'),(37834,1400373,9,'Second Unit Cinematographer'),(37834,1401373,9,'Unit Publicist'),(37834,1401596,10,'Animation Director'),(37834,1404326,6,'Music Editor'),(37834,1405422,9,'Picture Car Coordinator'),(37834,1408395,11,'Best Boy Electric'),(37834,1414497,9,'Armorer'),(37834,1415007,5,'Dialogue Editor'),(37834,1416153,6,'Supervising Sound Editor'),(37834,1417975,10,'Visual Effects Coordinator'),(37834,1423986,3,'Unit Production Manager'),(37834,1428202,9,'Stunt Coordinator'),(37834,1428227,8,'Set Costumer'),(37834,1428842,8,'Set Costumer'),(37834,1432022,10,'Visual Effects Supervisor'),(37834,1447582,7,'Leadman'),(37834,1449995,11,'Best Boy Electric'),(37834,1463422,9,'Special Effects Coordinator'),(37834,1466029,7,'Conceptual Design'),(37834,1521474,8,'Key Hair Stylist'),(37834,1527912,3,'Casting Associate'),(37834,1531874,8,'Makeup Artist'),(37834,1532613,1,'First Assistant Camera'),(37834,1533015,10,'Animation Director'),(37834,1533016,10,'Animation Supervisor'),(37834,1533026,10,'Visual Effects Producer'),(37834,1533028,11,'Rigging Gaffer'),(37834,1533031,1,'First Assistant Camera'),(37834,1533052,8,'Hairstylist'),(37834,1533054,9,'Property Master'),(37834,1533060,5,'First Assistant Editor'),(37834,1538763,10,'Special Effects Supervisor'),(37834,1545540,6,'Production Sound Mixer'),(37834,1552497,7,'Construction Coordinator'),(37834,1555159,3,'Production Coordinator'),(37834,1673973,7,'Assistant Art Director'),(37834,1702598,3,'Associate Producer'),(37834,1703012,4,'Storyboard'),(37834,1703013,7,'Set Decoration Buyer'),(37834,1703014,9,'Visual Effects Editor'),(37834,1703015,9,'Post Production Assistant'),(37834,1703016,9,'Post Production Assistant'),(37834,1703017,8,'Assistant Costume Designer'),(37834,1703019,8,'Hairstylist'),(37834,1703021,3,'Location Manager'),(37834,1703022,3,'Location Manager'),(37834,1703023,3,'Production Coordinator'),(37834,1703036,9,'Thanks'),(75612,6581,5,'Editor'),(75612,3989,8,'Costume Design'),(75612,6870,3,'Producer'),(75612,16961,4,'Screenplay'),(75612,51333,1,'Director of Photography'),(75612,51557,3,'Casting'),(75612,73772,3,'Producer'),(75612,86270,2,'Director'),(75612,86270,3,'Producer'),(75612,86270,4,'Original Story'),(75612,113982,3,'Unit Production Manager'),(75612,99411,4,'Screenplay'),(75612,266920,3,'Producer'),(75612,309103,7,'Conceptual Design'),(75612,411385,7,'Production Design'),(75612,457430,3,'Executive Producer'),(75612,484529,7,'Art Department Coordinator'),(75612,528783,3,'Casting'),(75612,575762,3,'Executive Producer'),(75612,575764,3,'Unit Production Manager'),(75612,575765,7,'Assistant Art Director'),(75612,575766,7,'Conceptual Design'),(75612,575767,7,'Conceptual Design'),(75612,575769,9,'Transportation Coordinator'),(75612,575770,9,'Production Controller'),(75612,935717,3,'Producer'),(75612,966096,6,'Original Music Composer'),(75612,1098740,6,'Original Music Composer'),(75612,1193391,6,'Original Music Composer'),(75612,1304298,8,'Makeup Artist'),(75612,1433935,9,'Production Office Assistant'),(76170,4023,3,'Casting'),(76170,373,6,'Sound Effects Editor'),(76170,366,2,'Director'),(76170,433,5,'Editor'),(76170,434,3,'Casting'),(76170,436,3,'Casting'),(76170,2199,4,'Screenplay'),(76170,2293,9,'Graphic Novel Illustrator'),(76170,3311,3,'Casting'),(76170,7229,6,'Original Music Composer'),(76170,10570,3,'Executive Producer'),(76170,5549,8,'Costume Design'),(76170,6968,3,'Producer'),(76170,7200,3,'Producer'),(76170,7624,3,'Executive Producer'),(76170,16177,6,'Sound Re-Recording Mixer'),(76170,17116,7,'Art Direction'),(76170,18189,4,'Screenplay'),(76170,33195,7,'Supervising Art Director'),(76170,39923,7,'Production Design'),(76170,52193,6,'ADR & Dubbing'),(76170,52370,7,'Art Direction'),(76170,113041,6,'ADR & Dubbing'),(76170,113048,9,'Sound Recordist'),(76170,113055,5,'Dialogue Editor'),(76170,113075,6,'Sound Designer'),(76170,113089,9,'Sound Recordist'),(76170,56786,1,'Director of Photography'),(76170,75292,7,'Set Decoration'),(76170,75523,8,'Key Hair Stylist'),(76170,75553,1,'Additional Camera'),(76170,76088,8,'Makeup Artist'),(76170,34933,4,'Characters'),(76170,173658,4,'Characters'),(76170,445256,1,'Additional Photography'),(76170,584598,3,'Producer'),(76170,930016,6,'Sound Designer'),(76170,934847,4,'Novel'),(76170,970836,3,'Casting Associate'),(76170,979175,9,'Second Unit Cinematographer'),(76170,1046729,3,'Casting'),(76170,1095403,3,'Casting'),(76170,1188046,9,'Sound Recordist'),(76170,1195199,4,'Characters'),(76170,1323257,8,'Set Costumer'),(76170,1338372,6,'Foley'),(76170,1352284,11,'Gaffer'),(76170,1367493,6,'Foley'),(76170,1384367,5,'Dialogue Editor'),(76170,1391729,1,'Still Photographer'),(76170,1398946,6,'Supervising Sound Editor'),(76170,1399057,5,'Dialogue Editor'),(76170,1399071,1,'Helicopter Camera'),(76170,1400540,2,'Script Supervisor'),(76170,1401669,7,'Art Department Coordinator'),(76170,1401694,9,'Special Effects Coordinator'),(76170,1401998,10,'Animation Director'),(76170,1402900,1,'Camera Operator'),(76170,1402902,11,'Gaffer'),(76170,1405238,1,'Camera Operator'),(76170,1411238,11,'Rigging Gaffer'),(76170,1412756,9,'Compositors'),(76170,1416153,6,'Supervising Sound Editor'),(76170,1418374,10,'Animation Director'),(76170,1421687,1,'Camera Operator'),(76170,1428556,1,'Camera Operator'),(76170,1447542,10,'VFX Artist'),(76170,1452989,10,'Animation Supervisor'),(76170,1452998,10,'Animation'),(76170,1456696,9,'Compositors'),(76170,1465352,8,'Costume Supervisor'),(76170,1494208,1,'Camera Operator'),(76170,1527912,3,'Casting Associate'),(76170,1527913,3,'Casting Associate'),(76170,1527914,8,'Assistant Costume Designer'),(76170,1527915,8,'Costume Supervisor'),(76170,1527916,8,'Set Costumer'),(76170,1527919,9,'Carpenter'),(76170,1527920,9,'Carpenter'),(76170,1527925,1,'Steadicam Operator'),(76170,1527926,1,'First Assistant Camera'),(76170,1527930,6,'ADR & Dubbing'),(49519,37,6,'Music'),(49519,8930,4,'Writer'),(49519,12067,3,'Producer'),(49519,57746,9,'Cinematography'),(49519,66193,4,'Screenplay'),(49519,66193,2,'Director'),(49519,71267,2,'Director'),(49519,71267,4,'Writer'),(49519,138616,3,'Producer'),(49519,1447493,7,'Art Department Manager'),(49519,1448082,9,'Digital Producer'),(49519,1450331,10,'Animation'),(49519,1453498,7,'Art Department Manager'),(49519,1460472,10,'Animation'),(290595,432,1,'Director of Photography'),(290595,1213,6,'Music'),(290595,18311,3,'Producer'),(290595,35796,4,'Screenplay'),(290595,80675,4,'Screenplay'),(290595,228135,4,'Characters'),(290595,1454884,2,'Director'),(98566,865,3,'Producer'),(98566,6041,6,'Music'),(98566,19501,3,'Producer'),(98566,19502,4,'Characters'),(98566,19503,4,'Characters'),(98566,52582,1,'Director of Photography'),(98566,54843,3,'Producer'),(98566,54844,3,'Producer'),(98566,60245,3,'Producer'),(98566,66739,2,'Director'),(98566,120015,4,'Writer'),(98566,228135,4,'Writer'),(98566,1018751,4,'Writer'),(98566,1018752,3,'Executive Producer'),(98566,1453014,10,'Animation'),(98566,1453594,10,'Animation'),(98566,1453931,10,'Animation'),(98566,1453933,10,'Animation'),(98566,1453943,11,'Lighting Technician'),(98566,1455461,11,'Lighting Technician'),(98566,1455598,10,'Animation'),(98566,1456696,9,'Compositors'),(98566,1456701,9,'Visual Effects Editor'),(98566,1459725,10,'Animation'),(98566,1459728,10,'Animation'),(98566,1459742,10,'Animation'),(98566,1459743,10,'Animation'),(98566,1459744,10,'Animation'),(98566,1459745,10,'Animation'),(98566,1459746,2,'Layout'),(98566,1459747,10,'Animation'),(98566,1459748,10,'Animation'),(98566,1459749,10,'Animation'),(98566,1459750,10,'Animation'),(98566,1459751,10,'Animation'),(98566,1459752,10,'Animation'),(98566,1459753,10,'Animation'),(98566,1459754,10,'Animation'),(98566,1459755,10,'Animation'),(98566,1459756,10,'Animation'),(98566,1459757,10,'Animation'),(98566,1459758,10,'Animation'),(98566,1459760,2,'Layout'),(98566,1459761,10,'Animation'),(98566,1459762,10,'Animation'),(98566,1459763,10,'Animation'),(98566,1459764,10,'Animation'),(98566,1459765,10,'Animation'),(98566,1459766,10,'Animation'),(98566,1459767,10,'Animation'),(98566,1459768,1,'Grip'),(98566,1459769,9,'Stunts'),(98566,1460658,9,'Compositors'),(98566,1463785,10,'Animation Supervisor'),(49047,1113,3,'Casting'),(49047,4185,1,'Director of Photography'),(49047,5490,3,'Casting'),(49047,6235,7,'Supervising Art Director'),(49047,9619,6,'Sound Re-Recording Mixer'),(49047,9165,1,'Additional Photography'),(49047,9820,7,'Production Design'),(49047,10968,3,'Producer'),(49047,11218,2,'Director'),(49047,11218,5,'Editor'),(49047,11218,3,'Producer'),(49047,11218,4,'Writer'),(49047,40810,6,'Sound Designer'),(49047,40810,6,'Supervising Sound Editor'),(49047,40813,5,'Dialogue Editor'),(49047,16368,6,'Original Music Composer'),(49047,17428,6,'Foley'),(49047,23655,7,'Set Decoration'),(49047,25365,3,'Casting'),(49047,66897,3,'Executive Producer'),(49047,92332,8,'Hairstylist'),(49047,1003190,4,'Writer'),(49047,1032072,9,'Stunt Coordinator'),(49047,1084741,5,'Editor'),(49047,1121617,3,'Executive Producer'),(49047,1205448,8,'Costume Design'),(49047,1211781,9,'CG Supervisor'),(49047,1223036,10,'Visual Effects Producer'),(49047,1290901,3,'Executive Producer'),(49047,1335568,6,'Sound Re-Recording Mixer'),(49047,1335568,6,'Music Editor'),(49047,1338969,6,'Sound Re-Recording Mixer'),(49047,1338970,6,'Sound Effects Editor'),(49047,1393364,1,'Camera Operator'),(49047,1394286,9,'CG Supervisor'),(49047,1394291,9,'Visual Effects Editor'),(49047,1394716,5,'Dialogue Editor'),(49047,1400008,7,'Art Department Coordinator'),(49047,1404223,9,'Visual Effects Editor'),(49047,1406189,6,'ADR & Dubbing'),(49047,1406840,1,'Camera Operator'),(49047,1408362,11,'Rigging Gaffer'),(49047,1408855,2,'Script Supervisor'),(49047,1409305,5,'Digital Intermediate'),(49047,1410188,10,'Visual Effects Supervisor'),(49047,1416093,8,'Hairstylist'),(49047,1420634,9,'Property Master'),(49047,1425477,6,'Dolby Consultant'),(49047,1428506,1,'Steadicam Operator'),(49047,1452997,10,'Animation'),(49047,1461600,7,'Set Decoration'),(49047,1461605,8,'Makeup Artist'),(49047,1461609,9,'Special Effects Coordinator'),(49047,1461610,9,'CG Supervisor'),(49047,1461611,10,'Animation Supervisor'),(49047,1461612,10,'Animation Supervisor'),(49047,1461613,9,'CG Supervisor'),(49047,1461614,9,'CG Supervisor'),(49047,1461615,10,'Simulation & Effects Artist'),(49047,1461616,10,'Simulation & Effects Artist'),(49047,1461617,10,'Simulation & Effects Artist'),(49047,1461618,9,'Sequence Supervisor'),(49047,1461619,10,'Simulation & Effects Artist'),(49047,1461620,10,'Simulation & Effects Artist'),(49047,1461621,10,'Simulation & Effects Artist'),(49047,1461622,10,'Simulation & Effects Artist'),(49047,1461623,10,'Simulation & Effects Artist'),(49047,1461624,10,'Simulation & Effects Artist'),(49047,1461626,10,'Simulation & Effects Artist'),(49047,1461628,10,'Simulation & Effects Artist'),(49047,1461629,9,'Visual Effects Editor'),(49047,1461630,10,'Visual Effects Producer'),(49047,1461631,10,'Visual Effects Producer'),(49047,1461632,10,'Visual Effects Supervisor'),(49047,1461634,5,'Digital Intermediate'),(49047,1461635,5,'First Assistant Editor'),(49047,1461636,5,'First Assistant Editor'),(49047,1461643,3,'Publicist'),(49047,1473396,3,'Associate Producer'),(49047,1477203,3,'Associate Producer'),(49047,1835498,9,'Stunts'),(308531,865,3,'Executive Producer'),(308531,5546,5,'Editor'),(308531,7784,5,'Editor'),(308531,8525,7,'Production Design'),(308531,12770,3,'Executive Producer'),(308531,18264,6,'Original Music Composer'),(308531,52582,1,'Director of Photography'),(308531,62725,3,'Casting'),(308531,120015,4,'Screenplay'),(308531,120015,3,'Executive Producer'),(308531,1018751,3,'Executive Producer'),(308531,1018751,4,'Screenplay'),(308531,1101410,2,'Director'),(308531,1561731,3,'Unit Production Manager'),(166424,4017,3,'Producer'),(166424,1720,3,'Casting'),(166424,1721,5,'Editor'),(166424,957,3,'Producer'),(166424,6055,7,'Set Decoration'),(166424,7624,4,'Characters'),(166424,7624,3,'Executive Producer'),(166424,9347,9,'Second Unit Cinematographer'),(166424,11092,3,'Producer'),(166424,11092,4,'Screenplay'),(166424,12040,8,'Costume Design'),(166424,12615,8,'Key Hair Stylist'),(166424,18866,4,'Characters'),(166424,27910,6,'Orchestrator'),(166424,33284,8,'Assistant Costume Designer'),(166424,113054,6,'Sound Designer'),(166424,113073,6,'Sound Re-Recording Mixer'),(166424,60579,7,'Production Design'),(166424,63906,6,'Music Editor'),(166424,66521,7,'Art Direction'),(166424,92473,10,'Visual Effects Supervisor'),(166424,87172,9,'Creative Consultant'),(166424,91854,8,'Makeup Department Head'),(166424,94545,1,'Director of Photography'),(166424,108146,1,'First Assistant Camera'),(166424,120606,3,'Producer'),(166424,563736,6,'Music Supervisor'),(166424,584598,3,'Producer'),(166424,934803,4,'Screenplay'),(166424,934803,2,'Director'),(166424,958087,7,'Art Direction'),(166424,965383,5,'Editor'),(166424,1147923,4,'Screenplay'),(166424,1165616,9,'Stunts'),(166424,1200368,7,'Art Direction'),(166424,1316599,8,'Makeup Artist'),(166424,1321589,8,'Costume Supervisor'),(166424,1327140,7,'Supervising Art Director'),(166424,1330889,7,'Art Direction'),(166424,1333932,3,'Casting'),(166424,1338372,6,'Foley'),(166424,1340345,6,'Sound Designer'),(166424,1340345,6,'Supervising Sound Editor'),(166424,1340919,2,'Script Supervisor'),(166424,1342054,3,'Researcher'),(166424,1347740,6,'Sound Re-Recording Mixer'),(166424,1355529,7,'Art Department Coordinator'),(166424,1355541,1,'Steadicam Operator'),(166424,1357043,7,'Art Direction'),(166424,1357058,9,'Property Master'),(166424,1367493,6,'Foley'),(166424,1367495,6,'Boom Operator'),(166424,1367819,10,'Visual Effects Producer'),(166424,1367821,10,'Visual Effects Supervisor'),(166424,1368882,8,'Set Costumer'),(166424,1377137,5,'Digital Intermediate'),(166424,1389133,6,'Sound Re-Recording Mixer'),(166424,1391698,9,'Stunt Coordinator'),(166424,1391729,1,'Still Photographer'),(166424,1399057,6,'ADR & Dubbing'),(166424,1399061,6,'Sound Editor'),(166424,1399071,1,'Helicopter Camera'),(166424,1399300,9,'Visual Effects Editor'),(166424,1399313,10,'Visual Effects Producer'),(166424,1400079,1,'Camera Operator'),(166424,1400402,5,'First Assistant Editor'),(166424,1400563,10,'Visual Effects Producer'),(166424,1401563,6,'Sound Designer'),(166424,1401896,9,'Visual Effects Editor'),(166424,1403415,1,'Helicopter Camera'),(166424,1403525,10,'Visual Effects Supervisor'),(166424,1404288,1,'Camera Operator'),(166424,1406780,1,'Helicopter Camera'),(166424,1408360,11,'Gaffer'),(166424,1410114,8,'Set Costumer'),(166424,1413087,7,'Art Department Coordinator'),(166424,1415632,1,'Camera Operator'),(166424,1418377,10,'Animation Director'),(166424,1418380,10,'Animation Director'),(166424,1418464,10,'Visual Effects Supervisor'),(166424,1424180,1,'Additional Photography'),(166424,1425828,1,'Steadicam Operator'),(166424,1428227,8,'Set Costumer'),(166424,1435575,8,'Key Hair Stylist'),(166424,1437305,1,'Camera Operator'),(166424,1439016,7,'Construction Coordinator'),(166424,1442488,1,'Steadicam Operator'),(166424,1443032,8,'Hair Department Head'),(166424,1457329,10,'Visual Effects Supervisor'),(166424,1466537,3,'Casting Associate'),(166424,1492753,6,'Orchestrator'),(166424,1530726,9,'Armorer'),(166424,1548847,3,'Researcher'),(166424,1548849,7,'Conceptual Design'),(166424,1548851,6,'Orchestrator'),(166424,1548852,9,'Armorer'),(166424,1548853,8,'Makeup Artist'),(166424,1548854,9,'Carpenter'),(166424,1548859,6,'ADR & Dubbing'),(166424,1548867,9,'CG Supervisor'),(166424,1548869,9,'CG Supervisor'),(166424,1548872,9,'CG Supervisor'),(166424,1548873,9,'CG Supervisor'),(166424,1548879,1,'First Assistant Camera'),(166424,1548880,1,'First Assistant Camera'),(166424,1548881,11,'Rigging Gaffer'),(166424,1548885,10,'VFX Editor'),(166424,1548886,10,'VFX Editor'),(166424,1548887,10,'VFX Editor'),(166424,1548888,5,'First Assistant Editor'),(166424,1548928,10,'Visual Effects Supervisor'),(166424,1548930,10,'Visual Effects Supervisor'),(166424,1548931,10,'Visual Effects Supervisor'),(166424,1548932,9,'Visual Effects Editor'),(166424,1548933,9,'Visual Effects Editor'),(166424,1548934,9,'Visual Effects Editor'),(166424,1569801,9,'Stunts'),(166424,1569802,9,'Stunts'),(166424,1576050,9,'Production Office Assistant'),(254128,1296,3,'Executive Producer'),(254128,3965,3,'Casting'),(254128,7784,5,'Editor'),(254128,9583,7,'Supervising Art Director'),(254128,9441,6,'Foley'),(254128,9543,3,'Producer'),(254128,12613,8,'Makeup Artist'),(254128,12617,8,'Hairstylist'),(254128,13064,3,'Casting'),(254128,14764,6,'Sound Effects Editor'),(254128,14765,6,'Supervising Sound Editor'),(254128,10820,7,'Production Design'),(254128,18330,3,'Executive Producer'),(254128,35514,8,'Costume Design'),(254128,33624,3,'Executive Producer'),(254128,59667,1,'Director of Photography'),(254128,57161,9,'Second Unit Cinematographer'),(254128,57430,3,'Executive Producer'),(254128,60223,7,'Art Direction'),(254128,61486,7,'Art Direction'),(254128,61485,7,'Set Decoration'),(254128,67662,9,'Second Unit Cinematographer'),(254128,70789,6,'Original Music Composer'),(254128,75920,4,'Story'),(254128,91122,1,'Helicopter Camera'),(254128,132876,2,'Director'),(254128,161839,4,'Screenplay'),(254128,1034748,3,'Casting'),(254128,1097359,7,'Art Direction'),(254128,1198829,3,'Casting'),(254128,1276377,4,'Story'),(254128,1336197,6,'Music Editor'),(254128,1338372,6,'Foley'),(254128,1341781,6,'Sound Re-Recording Mixer'),(254128,1342657,6,'Sound Effects Editor'),(254128,1357064,1,'Camera Operator'),(254128,1367493,6,'Foley'),(254128,1378697,6,'Sound Re-Recording Mixer'),(254128,1391711,7,'Art Direction'),(254128,1392083,6,'Sound Designer'),(254128,1392718,1,'Still Photographer'),(254128,1392722,11,'Gaffer'),(254128,1399862,5,'Dialogue Editor'),(254128,1399863,9,'Special Effects Coordinator'),(254128,1401694,9,'Special Effects Coordinator'),(254128,1401735,1,'Camera Operator'),(254128,1404217,6,'Sound Designer'),(254128,1406390,6,'Sound Effects Editor'),(254128,1406616,6,'ADR & Dubbing'),(254128,1407019,9,'Visual Effects Editor'),(254128,1407355,5,'First Assistant Editor'),(254128,1408672,6,'ADR & Dubbing'),(254128,1412756,9,'Compositors'),(254128,1414145,6,'Foley'),(254128,1418270,7,'Assistant Art Director'),(254128,1431075,1,'Camera Operator'),(254128,1434565,9,'CG Supervisor'),(254128,1436190,1,'Camera Operator'),(254128,1447518,9,'Stunts'),(254128,1456696,9,'Compositors'),(254128,1459878,10,'Animation Director'),(254128,1463412,9,'Special Effects Coordinator'),(254128,1465351,7,'Art Department Coordinator'),(254128,1465352,8,'Costume Supervisor'),(254128,1466097,3,'Co-Producer'),(254128,1470982,2,'Script Supervisor'),(254128,1494202,7,'Set Decoration'),(254128,1494204,9,'CG Supervisor'),(254128,1494205,9,'CG Supervisor'),(254128,1494206,9,'CG Supervisor'),(254128,1494207,11,'Gaffer'),(254128,1494208,1,'Camera Operator'),(254128,1494209,1,'Helicopter Camera'),(254128,1494210,1,'Steadicam Operator'),(254128,1494211,8,'Set Costumer'),(254128,1494212,5,'Digital Intermediate'),(254128,1494213,5,'Digital Intermediate'),(254128,1494214,7,'Art Department Coordinator'),(254128,1494215,7,'Art Department Coordinator'),(254128,1494216,7,'Assistant Art Director'),(254128,1494217,7,'Assistant Art Director'),(254128,1500412,3,'Associate Producer'),(262500,3687,6,'Sound Designer'),(262500,931,3,'Producer'),(262500,5914,3,'Casting'),(262500,10573,1,'Director of Photography'),(262500,5575,4,'Screenplay'),(262500,9648,7,'Production Design'),(262500,9043,8,'Costume Design'),(262500,10122,3,'Executive Producer'),(262500,17329,3,'Executive Producer'),(262500,18189,4,'Screenplay'),(262500,19862,3,'Producer'),(262500,25058,5,'Editor'),(262500,31710,3,'Executive Producer'),(262500,39123,3,'Casting'),(262500,57270,2,'Director'),(262500,67846,5,'Editor'),(262500,62144,7,'Set Decoration'),(262500,62758,3,'Executive Producer'),(262500,62780,7,'Supervising Art Director'),(262500,74322,8,'Makeup Artist'),(262500,76003,9,'Dialect Coach'),(262500,135733,8,'Makeup Artist'),(262500,222447,1,'Camera Operator'),(262500,239788,1,'Camera Operator'),(262500,930016,6,'Sound Editor'),(262500,1077782,6,'Foley'),(262500,1098740,6,'Original Music Composer'),(262500,1165616,9,'Stunts'),(262500,1295292,4,'Screenplay'),(262500,1323090,8,'Makeup Department Head'),(262500,1342657,6,'Sound Designer'),(262500,1345249,3,'Producer'),(262500,1352956,4,'Novel'),(262500,1352956,3,'Co-Producer'),(262500,1352959,8,'Makeup Department Head'),(262500,1352966,5,'Dialogue Editor'),(262500,1357061,6,'Sound Effects Editor'),(262500,1357066,1,'Camera Operator'),(262500,1364417,6,'Sound Re-Recording Mixer'),(262500,1367362,6,'Foley'),(262500,1386923,2,'Script Supervisor'),(262500,1395025,6,'Dolby Consultant'),(262500,1399141,6,'Sound Re-Recording Mixer'),(262500,1400529,3,'Co-Producer'),(262500,1400741,8,'Hairstylist'),(262500,1401631,5,'Dialogue Editor'),(262500,1408352,9,'CG Supervisor'),(262500,1412081,8,'Makeup Artist'),(262500,1412329,11,'Rigging Gaffer'),(262500,1416584,9,'Special Effects Coordinator'),(262500,1419106,11,'Gaffer'),(262500,1420154,6,'ADR & Dubbing'),(262500,1424151,8,'Makeup Artist'),(262500,1424696,1,'Steadicam Operator'),(262500,1425972,8,'Hairstylist'),(262500,1441250,6,'Supervising Sound Editor'),(262500,1447542,9,'Compositors'),(262500,1452995,10,'Animation'),(262500,1460652,9,'Compositors'),(262500,1463182,10,'VFX Artist'),(262500,1492643,3,'Associate Producer'),(262500,1492644,3,'Co-Producer'),(262500,1492645,3,'Co-Producer'),(262500,1492646,3,'Casting'),(262500,1493864,7,'Art Direction'),(262500,1493865,7,'Art Direction'),(262500,1493866,8,'Hairstylist'),(262500,1493867,7,'Art Department Coordinator'),(262500,1493870,9,'Second Unit Cinematographer'),(262500,1614075,9,'CG Supervisor'),(262500,1813644,9,'Stunts'),(38745,546,3,'Casting'),(38745,3311,3,'Casting'),(38745,7230,5,'Editor'),(38745,6800,1,'Director of Photography'),(38745,7790,7,'Supervising Art Director'),(38745,8410,7,'Set Decoration'),(38745,11271,8,'Costume Design'),(38745,12083,4,'Screenplay'),(38745,15349,5,'Editor'),(38745,23453,7,'Art Direction'),(38745,23651,7,'Production Design'),(38745,23454,7,'Art Direction'),(38745,23772,7,'Art Direction'),(38745,52934,4,'Screenplay'),(38745,54271,5,'Editor'),(38745,65630,2,'Director'),(38745,66519,5,'Editor'),(38745,143464,4,'Novel'),(38745,227440,6,'Original Music Composer'),(38745,1401803,10,'Visual Effects Supervisor'),(38745,1412756,9,'Visual Effects Editor'),(38745,1459790,9,'Other'),(40805,201,2,'Director'),(40805,6410,3,'Casting'),(40805,892,1,'Director of Photography'),(40805,908,5,'Editor'),(40805,1213,6,'Original Music Composer'),(40805,6209,8,'Costume Design'),(40805,9343,7,'Production Design'),(40805,11874,3,'Producer'),(40805,19274,4,'Screenplay'),(40805,54734,4,'Screenplay'),(40805,124646,4,'Characters'),(40805,124647,4,'Characters'),(40805,1412756,9,'Visual Effects Editor'),(40805,1463182,10,'VFX Artist'),(40805,1552521,9,'Stunts'),(53182,2293,4,'Novel'),(53182,3964,7,'Production Design'),(53182,6051,5,'Editor'),(53182,11420,3,'Producer'),(53182,12382,1,'Director of Photography'),(53182,13223,5,'Color Timer'),(53182,10789,7,'Set Decoration'),(53182,13009,8,'Costume Design'),(53182,15217,4,'Screenplay'),(53182,15217,3,'Producer'),(53182,17285,4,'Screenplay'),(53182,33455,7,'Supervising Art Director'),(53182,23424,3,'Casting'),(53182,46088,3,'Producer'),(53182,54211,3,'Producer'),(53182,56827,6,'Music'),(53182,65377,3,'Producer'),(53182,67242,7,'Art Direction'),(53182,78914,2,'Director'),(53182,79243,3,'Producer'),(53182,95835,6,'Sound Designer'),(53182,105643,4,'Storyboard'),(53182,158916,6,'Sound Re-Recording Mixer'),(53182,226464,1,'Camera Operator'),(53182,1289047,8,'Makeup Department Head'),(53182,1299980,8,'Costume Design'),(53182,1305602,7,'Art Direction'),(53182,1335541,7,'Sculptor'),(53182,1335543,7,'Greensman'),(53182,1336197,6,'Music Editor'),(53182,1337666,8,'Costume Supervisor'),(53182,1337667,7,'Set Designer'),(53182,1338372,6,'Foley'),(53182,1347762,9,'Thanks'),(53182,1350233,7,'Art Department Coordinator'),(53182,1350254,9,'Stunt Coordinator'),(53182,1350257,8,'Set Costumer'),(53182,1350258,8,'Set Costumer'),(53182,1352962,7,'Set Designer'),(53182,1357049,7,'Set Designer'),(53182,1357059,5,'Dialogue Editor'),(53182,1367493,6,'Foley'),(53182,1368849,5,'Editor'),(53182,1368850,7,'Art Direction'),(53182,1368851,7,'Art Direction'),(53182,1368852,7,'Set Decoration'),(53182,1368854,7,'Sculptor'),(53182,1368855,7,'Sculptor'),(53182,1368856,7,'Conceptual Design'),(53182,1368857,7,'Art Department Coordinator'),(53182,1368858,7,'Set Designer'),(53182,1368859,7,'Set Designer'),(53182,1368860,7,'Set Designer'),(53182,1368861,7,'Construction Coordinator'),(53182,1368862,9,'Property Master'),(53182,1368863,7,'Set Designer'),(53182,1368864,6,'Sound Re-Recording Mixer'),(53182,1368865,6,'Supervising Sound Editor'),(53182,1368866,6,'Sound Designer'),(53182,1368867,9,'Special Effects Coordinator'),(53182,1368868,10,'Visual Effects Producer'),(53182,1368869,10,'Visual Effects Producer'),(53182,1368870,10,'Visual Effects Producer'),(53182,1368871,10,'Visual Effects Supervisor'),(53182,1368872,10,'Visual Effects Supervisor'),(53182,1368873,10,'Visual Effects Producer'),(53182,1368874,10,'Visual Effects Producer'),(53182,1368875,10,'Visual Effects Producer'),(53182,1368876,10,'Visual Effects Supervisor'),(53182,1368877,10,'Visual Effects Supervisor'),(53182,1368878,9,'Stunt Coordinator'),(53182,1368880,11,'Gaffer'),(53182,1368881,3,'Casting'),(53182,1368882,8,'Set Costumer'),(53182,1368883,8,'Set Costumer'),(53182,1368884,6,'Music Editor'),(53182,1368885,9,'Transportation Coordinator'),(53182,1368886,9,'Transportation Coordinator'),(53182,1368887,9,'Transportation Coordinator'),(53182,1368888,9,'Transportation Captain'),(53182,1368889,8,'Set Costumer'),(53182,1394764,10,'Visual Effects Producer'),(53182,1394765,9,'Visual Effects Editor'),(53182,1394766,9,'Visual Effects Editor'),(53182,1394767,1,'Still Photographer'),(53182,1394768,1,'Camera Operator'),(53182,1394769,1,'Underwater Camera'),(53182,1457930,10,'Visual Effects'),(53182,1813644,9,'Stunts'),(41513,1215,2,'Director'),(41513,5490,3,'Casting'),(41513,10709,1,'Director of Photography'),(41513,12084,4,'Screenplay'),(41513,12084,4,'Story'),(41513,12085,4,'Screenplay'),(41513,12085,4,'Story'),(41513,21968,3,'Executive Producer'),(41513,23544,5,'Editor'),(41513,25365,3,'Casting'),(41513,54904,4,'Screenplay'),(41513,58408,3,'Producer'),(41513,59706,6,'Original Music Composer'),(41513,61481,3,'Executive Producer'),(41513,68208,4,'Screenplay'),(41513,225594,4,'Characters'),(41513,971572,3,'Executive Producer'),(41513,1128347,7,'Production Design'),(41513,1453014,10,'Animation'),(41513,1453929,10,'Animation'),(41513,1455598,10,'Animation'),(41513,1460607,10,'Animation'),(41513,1463182,10,'VFX Artist'),(41513,1463185,9,'Compositors'),(41513,1463784,10,'Animation'),(262504,931,3,'Producer'),(262504,5914,3,'Casting'),(262504,3989,8,'Costume Design'),(262504,10573,1,'Director of Photography'),(262504,9648,7,'Production Design'),(262504,12575,9,'Second Unit Cinematographer'),(262504,16496,8,'Makeup Artist'),(262504,19311,4,'Screenplay'),(262504,19862,3,'Producer'),(262504,25058,5,'Editor'),(262504,25453,10,'Visual Effects Supervisor'),(262504,33284,8,'Assistant Costume Designer'),(262504,52161,6,'Music Supervisor'),(262504,39123,3,'Casting'),(262504,57270,2,'Director'),(262504,59265,4,'Screenplay'),(262504,59266,4,'Screenplay'),(262504,62144,7,'Set Decoration'),(262504,62780,7,'Supervising Art Director'),(262504,71536,6,'Supervising Sound Editor'),(262504,557528,6,'Foley'),(262504,995189,1,'Camera Operator'),(262504,1098740,6,'Original Music Composer'),(262504,1227160,4,'Screenplay'),(262504,1323090,8,'Makeup Department Head'),(262504,1327027,10,'Visual Effects Supervisor'),(262504,1345249,3,'Producer'),(262504,1352956,4,'Novel'),(262504,1352981,6,'Music Editor'),(262504,1378700,10,'Special Effects Supervisor'),(262504,1384369,10,'Visual Effects Supervisor'),(262504,1384375,10,'Visual Effects Producer'),(262504,1386923,2,'Script Supervisor'),(262504,1387252,9,'Stunt Coordinator'),(262504,1392143,8,'Set Costumer'),(262504,1392245,1,'Still Photographer'),(262504,1392943,11,'Gaffer'),(262504,1393445,10,'Visual Effects Supervisor'),(262504,1393446,10,'Visual Effects Producer'),(262504,1394282,10,'Visual Effects Producer'),(262504,1399116,6,'Sound Effects Editor'),(262504,1399117,6,'Sound Effects Editor'),(262504,1399455,7,'Art Direction'),(262504,1400087,8,'Set Costumer'),(262504,1400546,7,'Construction Coordinator'),(262504,1400741,8,'Hair Department Head'),(262504,1405210,10,'Visual Effects Producer'),(262504,1405376,7,'Art Direction'),(262504,1406253,5,'Digital Intermediate'),(262504,1408316,6,'ADR & Dubbing'),(262504,1408352,9,'CG Supervisor'),(262504,1409237,10,'Animation Supervisor'),(262504,1412081,8,'Makeup Artist'),(262504,1412329,11,'Rigging Gaffer'),(262504,1413000,8,'Costume Supervisor'),(262504,1414558,5,'Digital Intermediate'),(262504,1414886,6,'Foley'),(262504,1417408,3,'Production Supervisor'),(262504,1419106,11,'Gaffer'),(262504,1424696,1,'Steadicam Operator'),(262504,1425835,5,'Digital Intermediate'),(262504,1425972,8,'Hairstylist'),(262504,1432642,5,'First Assistant Editor'),(262504,1444294,10,'Visual Effects Producer'),(262504,1464955,8,'Key Hair Stylist'),(262504,1467509,8,'Makeup Artist'),(262504,1469619,8,'Hairstylist'),(262504,1483139,10,'Visual Effects Producer'),(262504,1493867,7,'Art Department Coordinator'),(262504,1506366,8,'Set Costumer'),(262504,1536210,10,'Visual Effects Supervisor'),(262504,1543231,6,'ADR & Dubbing'),(262504,1567767,2,'Script Coordinator'),(262504,1567950,1,'Camera Operator'),(262504,1568460,9,'CG Supervisor'),(262504,1568468,10,'VFX Editor'),(262504,1571058,6,'Foley'),(262504,1572873,6,'Foley'),(262504,1580858,10,'Visual Effects Coordinator'),(262504,1580859,10,'Visual Effects Coordinator'),(262504,1590409,10,'Visual Effects Coordinator'),(262504,1634432,10,'Visual Effects Supervisor'),(262504,1637297,9,'Visual Effects Editor'),(262504,1637302,10,'Visual Effects Supervisor'),(262504,1649355,3,'Casting Associate'),(262504,1649356,8,'Assistant Costume Designer'),(262504,1649358,8,'Hairstylist'),(262504,1649371,8,'Makeup Artist'),(262504,1649508,1,'Camera Operator'),(262504,1649509,10,'Animation Director'),(262504,1649510,9,'CG Supervisor'),(262504,1649511,9,'CG Supervisor'),(262504,1649512,9,'CG Supervisor'),(262504,1649513,9,'Sequence Supervisor'),(262504,1649514,9,'Sequence Supervisor'),(262504,1649515,9,'Sequence Supervisor'),(262504,1649516,9,'Sequence Supervisor'),(262504,1649521,10,'VFX Editor'),(262504,1649522,10,'Visual Effects Coordinator'),(262504,1649524,10,'Visual Effects Coordinator'),(262504,1649525,10,'Visual Effects Coordinator'),(262504,1649526,10,'Visual Effects Coordinator'),(262504,1649527,10,'Visual Effects Producer'),(262504,1649528,10,'Visual Effects Producer'),(262504,1649529,10,'Visual Effects Producer'),(262504,1649530,10,'Visual Effects Supervisor'),(262504,1649531,10,'Visual Effects Supervisor'),(262504,1649532,5,'Dialogue Editor'),(262504,1649534,3,'Researcher'),(39254,24,3,'Executive Producer'),(39254,30,3,'Executive Producer'),(39254,488,3,'Executive Producer'),(39254,531,6,'Original Music Composer'),(39254,1305,6,'Music Editor'),(39254,3183,3,'Producer'),(39254,3989,8,'Costume Design'),(39254,5490,3,'Casting'),(39254,6055,7,'Set Decoration'),(39254,10956,3,'Executive Producer'),(39254,12415,4,'Story'),(39254,17825,2,'Director'),(39254,17825,3,'Producer'),(39254,18265,1,'Director of Photography'),(39254,25210,4,'Story'),(39254,23779,3,'Executive Producer'),(39254,29216,9,'Choreographer'),(39254,34967,3,'Co-Producer'),(39254,34970,3,'Producer'),(39254,25365,3,'Casting'),(39254,52088,7,'Production Design'),(39254,53176,4,'Screenplay'),(39254,54271,5,'Editor'),(39254,113054,6,'Sound Designer'),(39254,113073,6,'Sound Re-Recording Mixer'),(39254,57113,4,'Story'),(39254,57634,3,'Executive Producer'),(39254,58726,4,'Screenplay'),(39254,60937,7,'Supervising Art Director'),(39254,150194,9,'Utility Stunts'),(39254,186721,3,'Associate Producer'),(39254,1126348,3,'Co-Producer'),(39254,1172414,1,'Still Photographer'),(39254,1316529,8,'Makeup Department Head'),(39254,1340345,6,'Supervising Sound Editor'),(39254,1340345,6,'Sound Designer'),(39254,1340345,6,'Sound Re-Recording Mixer'),(39254,1401563,6,'Sound Designer'),(39254,1410316,6,'Music Editor'),(39254,1442499,8,'Hair Department Head'),(39254,1459743,10,'Animation'),(39254,1477203,3,'Associate Producer'),(39254,1533038,2,'Script Supervisor'),(39254,1546456,6,'Music Supervisor'),(39254,1551727,6,'Sound Mixer'),(39254,1835023,6,'Music Supervisor'),(77931,1215,2,'Director'),(77931,52845,4,'Screenplay'),(77931,1140576,10,'Animation'),(77931,1455618,10,'Animation'),(77931,1459734,10,'Animation'),(77931,1460648,9,'Compositors'),(77931,1460652,9,'Compositors'),(77931,1460655,9,'Compositors'),(77931,1463182,10,'VFX Artist'),(77931,1463183,9,'Compositors'),(77931,1463185,9,'Compositors'),(77931,1463188,9,'Visual Effects Design Consultant'),(80274,561,3,'Casting'),(80274,1095,1,'Director of Photography'),(80274,3904,5,'Editor'),(80274,4671,5,'Editor'),(80274,6924,8,'Costume Supervisor'),(80274,9349,6,'Sound Designer'),(80274,9618,7,'Production Design'),(80274,13079,4,'Screenplay'),(80274,13079,2,'Director'),(80274,16177,6,'Sound Re-Recording Mixer'),(80274,15345,3,'Producer'),(80274,15346,3,'Producer'),(80274,16514,3,'Producer'),(80274,18264,6,'Original Music Composer'),(80274,20743,3,'Producer'),(80274,53346,3,'Casting'),(80274,113048,9,'Sound Recordist'),(80274,66692,8,'Hairstylist'),(80274,57705,2,'Script Supervisor'),(80274,60714,7,'Set Decoration'),(80274,74827,3,'Producer'),(80274,107275,3,'Producer'),(80274,107275,4,'Novel'),(80274,548444,6,'Sound Effects Editor'),(80274,934066,11,'Gaffer'),(80274,936841,7,'Art Direction'),(80274,956198,9,'Stunt Coordinator'),(80274,964321,3,'Producer'),(80274,1116937,6,'Foley'),(80274,1192644,11,'Gaffer'),(80274,1235712,9,'Visual Effects Editor'),(80274,1289014,3,'Producer'),(80274,1289015,7,'Production Design'),(80274,1299980,8,'Costume Design'),(80274,1317305,8,'Makeup Department Head'),(80274,1333930,7,'Set Designer'),(80274,1338152,6,'Sound Designer'),(80274,1341856,6,'Foley'),(80274,1352958,7,'Supervising Art Director'),(80274,1352964,7,'Construction Coordinator'),(80274,1357043,7,'Art Direction'),(80274,1360094,7,'Set Designer'),(80274,1367484,7,'Greensman'),(80274,1367497,10,'Visual Effects Supervisor'),(80274,1367510,9,'Studio Teachers'),(80274,1368859,7,'Set Designer'),(80274,1370904,7,'Sculptor'),(80274,1372205,7,'Art Department Coordinator'),(80274,1376887,7,'Set Designer'),(80274,1377128,10,'Visual Effects Supervisor'),(80274,1384381,10,'Visual Effects Producer'),(80274,1387247,10,'Visual Effects Supervisor'),(80274,1387251,10,'Visual Effects Producer'),(80274,1393862,1,'Additional Camera'),(80274,1394027,9,'Visual Effects Editor'),(80274,1395275,1,'Still Photographer'),(80274,1396825,5,'Digital Intermediate'),(80274,1397809,9,'Property Master'),(80274,1397823,6,'Foley'),(80274,1399645,9,'Studio Teachers'),(80274,1400074,10,'Visual Effects Supervisor'),(80274,1401109,1,'Camera Operator'),(80274,1401565,9,'Visual Effects Editor'),(80274,1401600,9,'Dialect Coach'),(80274,1401604,8,'Wigmaker'),(80274,1403393,7,'Sculptor'),(80274,1403433,9,'Scenic Artist'),(80274,1403463,10,'Visual Effects Producer'),(80274,1403490,6,'Music Editor'),(80274,1404190,8,'Makeup Artist'),(80274,1405389,9,'Second Unit Cinematographer'),(80274,1405389,1,'Helicopter Camera'),(80274,1405574,7,'Conceptual Design'),(80274,1406317,5,'Digital Intermediate'),(80274,1407033,9,'Unit Publicist'),(80274,1407726,7,'Set Designer'),(80274,1409712,1,'Helicopter Camera'),(80274,1411540,5,'Digital Intermediate'),(80274,1412971,8,'Hairstylist'),(80274,1415475,10,'Visual Effects Producer'),(80274,1417823,9,'Visual Effects Editor'),(80274,1418398,1,'Steadicam Operator'),(80274,1418403,11,'Rigging Gaffer'),(80274,1418414,3,'Location Manager'),(80274,1425828,1,'Camera Operator'),(80274,1427436,9,'Transportation Coordinator'),(80274,1428142,7,'Set Designer'),(80274,1431029,9,'CG Supervisor'),(80274,1431552,8,'Hairstylist'),(80274,1431554,8,'Makeup Artist'),(80274,1432575,8,'Makeup Artist'),(80274,1432577,8,'Makeup Artist'),(80274,1432584,7,'Greensman'),(80274,1432586,9,'Property Master'),(80274,1432587,7,'Leadman'),(80274,1432589,7,'Sculptor'),(80274,1432596,6,'ADR & Dubbing'),(80274,1432599,6,'First Assistant Sound Editor'),(80274,1432602,9,'CG Supervisor'),(80274,1432603,9,'CG Supervisor'),(80274,1432604,9,'CG Supervisor'),(80274,1432605,9,'CG Supervisor'),(80274,1432606,9,'CG Supervisor'),(80274,1432607,9,'CG Supervisor'),(80274,1432609,10,'Creature Design'),(80274,1432612,10,'Visual Effects Producer'),(80274,1432613,10,'Visual Effects Producer'),(80274,1432614,10,'Visual Effects Producer'),(80274,1432615,9,'Visual Effects Editor'),(80274,1432616,9,'Visual Effects Editor'),(80274,1432617,10,'Visual Effects Producer'),(80274,1432618,9,'Visual Effects Editor'),(80274,1432620,10,'Visual Effects Supervisor'),(80274,1432621,10,'VFX Supervisor'),(80274,1432622,10,'VFX Artist'),(80274,1432624,10,'VFX Artist'),(80274,1432625,10,'VFX Artist'),(80274,1432628,10,'VFX Production Coordinator'),(80274,1432632,10,'VFX Artist'),(80274,1432633,10,'VFX Artist'),(80274,1432634,1,'Camera Operator'),(80274,1432638,8,'Set Costumer'),(80274,1432640,5,'Digital Intermediate'),(80274,1432641,5,'Digital Intermediate'),(80274,1432642,5,'First Assistant Editor'),(80274,1432645,3,'Location Manager'),(80274,1432646,9,'Studio Teachers'),(286217,120,1,'Director of Photography'),(286217,578,2,'Director'),(286217,578,3,'Producer'),(286217,946,8,'Costume Design'),(286217,944,7,'Production Design'),(286217,950,5,'Editor'),(286217,5553,6,'Original Music Composer'),(286217,6060,10,'Special Effects Supervisor'),(286217,8673,1,'Camera Operator'),(286217,8401,3,'Producer'),(286217,40815,6,'Foley'),(286217,11092,3,'Producer'),(286217,15357,10,'Visual Effects Producer'),(286217,16363,3,'Casting'),(286217,16683,6,'Sound Effects Editor'),(286217,23453,7,'Art Direction'),(286217,22498,3,'Producer'),(286217,25060,8,'Makeup Artist'),(286217,32806,5,'Digital Intermediate'),(286217,49670,3,'Casting'),(286217,51922,3,'Casting'),(286217,47506,4,'Screenplay'),(286217,113073,6,'Sound Re-Recording Mixer'),(286217,75117,11,'Gaffer'),(286217,957666,7,'Set Decoration'),(286217,962164,7,'Art Direction'),(286217,968805,7,'Art Direction'),(286217,1129208,10,'Special Effects Supervisor'),(286217,1177771,7,'Set Decoration'),(286217,1285933,8,'Assistant Costume Designer'),(286217,1299326,7,'Art Direction'),(286217,1300064,3,'Casting Associate'),(286217,1318830,10,'Visual Effects Supervisor'),(286217,1320090,3,'Executive Producer'),(286217,1327141,7,'Supervising Art Director'),(286217,1334420,7,'Art Direction'),(286217,1334493,8,'Costume Supervisor'),(286217,1335556,6,'Sound Designer'),(286217,1338287,6,'Music Editor'),(286217,1352085,4,'Novel'),(286217,1354914,8,'Assistant Costume Designer'),(286217,1376804,10,'Visual Effects Producer'),(286217,1379059,2,'Script Supervisor'),(286217,1384371,10,'VFX Editor'),(286217,1384386,10,'Visual Effects Supervisor'),(286217,1386912,10,'Visual Effects Supervisor'),(286217,1388860,7,'Assistant Art Director'),(286217,1392588,7,'Art Department Coordinator'),(286217,1392589,7,'Assistant Art Director'),(286217,1393300,6,'Foley'),(286217,1393323,10,'Visual Effects Producer'),(286217,1393883,1,'Still Photographer'),(286217,1398913,9,'Property Master'),(286217,1398918,6,'Foley'),(286217,1399639,1,'Camera Operator'),(286217,1400077,10,'Visual Effects Producer'),(286217,1401126,8,'Wigmaker'),(286217,1404244,1,'Helicopter Camera'),(286217,1408373,6,'Sound Designer'),(286217,1408373,6,'Supervising Sound Editor'),(286217,1409305,5,'Digital Intermediate'),(286217,1411067,8,'Key Hair Stylist'),(286217,1411249,10,'Visual Effects Producer'),(286217,1411329,7,'Art Direction'),(286217,1414090,8,'Hair Designer'),(286217,1414090,8,'Makeup Designer'),(286217,1419604,10,'Visual Effects Supervisor'),(286217,1419605,10,'Visual Effects Supervisor'),(286217,1426327,9,'CG Supervisor'),(286217,1426846,10,'Visual Effects Producer'),(286217,1427822,8,'Makeup Artist'),(286217,1450948,10,'Visual Effects Supervisor'),(286217,1458446,1,'Camera Operator'),(286217,1459875,6,'ADR & Dubbing'),(286217,1459875,5,'Dialogue Editor'),(286217,1459902,10,'Visual Effects Producer'),(286217,1461613,10,'Visual Effects Supervisor'),(286217,1494566,9,'Second Unit Cinematographer'),(286217,1515573,8,'Costume Supervisor'),(286217,1515635,9,'Armorer'),(286217,1518764,7,'Assistant Art Director'),(286217,1533496,8,'Seamstress'),(286217,1538204,3,'Casting Associate'),(286217,1544377,6,'Orchestrator'),(286217,1548936,7,'Art Direction'),(286217,1548937,9,'Carpenter'),(286217,1548938,9,'Carpenter'),(286217,1548939,7,'Assistant Art Director'),(286217,1548940,7,'Assistant Art Director'),(286217,1548941,7,'Assistant Art Director'),(286217,1548942,6,'Orchestrator'),(286217,1548943,6,'Foley'),(286217,1548945,9,'Sound Recordist'),(286217,1548948,8,'Assistant Costume Designer'),(286217,1548952,8,'Makeup Artist'),(286217,1548953,3,'Researcher'),(286217,1548954,10,'Animation Supervisor'),(286217,1548957,9,'CG Supervisor'),(286217,1548958,9,'CG Supervisor'),(286217,1548959,9,'CG Supervisor'),(286217,1548960,10,'VFX Production Coordinator'),(286217,1548961,10,'VFX Supervisor'),(286217,1548962,10,'Visual Effects Supervisor'),(286217,1563261,11,'Gaffer'),(286217,1567986,10,'Color Designer'),(36557,8380,7,'Art Direction'),(36557,455,4,'Screenplay'),(36557,2523,5,'Editor'),(36557,9856,4,'Novel'),(36557,8524,7,'Production Design'),(36557,6489,6,'Music'),(36557,10972,6,'Sound Designer'),(36557,10908,7,'Art Direction'),(36557,10714,8,'Costume Design'),(36557,10788,7,'Art Direction'),(36557,11350,6,'Sound Effects Editor'),(36557,10496,3,'Casting'),(36557,10666,3,'Producer'),(36557,10702,2,'Director'),(36557,10709,1,'Director of Photography'),(36557,10905,3,'Co-Producer'),(36557,40749,2,'Script Supervisor'),(36557,40823,6,'Foley'),(36557,10789,7,'Set Decoration'),(36557,12761,6,'Supervising Sound Editor'),(36557,13930,2,'Assistant Director'),(36557,16683,6,'Sound Effects Editor'),(36557,17649,9,'Second Unit Cinematographer'),(36557,10783,4,'Screenplay'),(36557,10782,4,'Screenplay'),(36557,44645,3,'Casting'),(36557,81517,5,'Assistant Editor'),(36557,69678,3,'Producer'),(36557,75104,10,'Visual Effects Producer'),(36557,105330,9,'Special Effects'),(36557,117235,6,'Sound Editor'),(36557,119178,3,'Casting'),(36557,134570,5,'Digital Intermediate'),(36557,193339,9,'Stand In'),(36557,548416,3,'Production Manager'),(36557,588604,3,'Location Manager'),(36557,1024842,9,'Visual Effects Editor'),(36557,1034754,7,'Art Direction'),(36557,1046886,3,'Executive Producer'),(36557,1057785,3,'Casting'),(36557,1322147,8,'Costume Supervisor'),(36557,1325212,7,'Set Decoration'),(36557,1325557,10,'Visual Effects'),(36557,1325917,7,'Supervising Art Director'),(36557,1334489,7,'Art Direction'),(36557,1334490,8,'Makeup Artist'),(36557,1334491,7,'Art Department Coordinator'),(36557,1334492,9,'Prop Maker'),(36557,1334493,7,'Art Department Coordinator'),(36557,1334494,7,'Construction Coordinator'),(36557,1334495,9,'Prop Maker'),(36557,1334496,9,'Property Master'),(36557,1334497,7,'Construction Coordinator'),(36557,1334498,3,'Casting'),(36557,1335559,6,'Music Editor'),(36557,1376803,10,'Visual Effects Supervisor'),(36557,1380002,1,'Still Photographer'),(36557,1388850,7,'Assistant Art Director'),(36557,1389541,11,'Gaffer'),(36557,1392246,1,'Camera Operator'),(36557,1392249,9,'Transportation Coordinator'),(36557,1392609,6,'Sound Re-Recording Mixer'),(36557,1393119,6,'Sound Re-Recording Mixer'),(36557,1394040,1,'Still Photographer'),(36557,1394108,7,'Assistant Art Director'),(36557,1395024,6,'Sound Re-Recording Mixer'),(36557,1398089,7,'Greensman'),(36557,1398107,9,'Stunt Coordinator'),(36557,1398934,1,'Camera Operator'),(36557,1398934,1,'Steadicam Operator'),(36557,1403641,1,'Underwater Camera'),(36557,1403762,10,'Visual Effects Producer'),(36557,1403800,6,'Foley'),(36557,1404244,1,'Helicopter Camera'),(36557,1404539,9,'Stunt Coordinator'),(36557,1404549,2,'Script Supervisor'),(36557,1407216,10,'Visual Effects Supervisor'),(36557,1407858,6,'ADR & Dubbing'),(36557,1408204,6,'Foley'),(36557,1408373,6,'Sound Effects Editor'),(36557,1408378,5,'Dialogue Editor'),(36557,1408793,8,'Makeup Artist'),(36557,1408794,3,'Production Manager'),(36557,1408795,3,'Production Manager'),(36557,1408796,3,'Production Manager'),(36557,1408797,7,'Assistant Art Director'),(36557,1408799,6,'Sound Effects Editor'),(36557,1408802,9,'Special Effects Coordinator'),(36557,1408811,10,'Visual Effects Supervisor'),(36557,1408812,9,'Visual Effects Editor'),(36557,1408813,10,'Visual Effects Producer'),(36557,1408814,1,'Camera Operator'),(36557,1408816,1,'Camera Operator'),(36557,1408820,1,'Camera Operator'),(36557,1408822,11,'Rigging Gaffer'),(36557,1408825,1,'Still Photographer'),(36557,1408830,1,'Additional Photography'),(36557,1408834,11,'Rigging Gaffer'),(36557,1408836,8,'Set Costumer'),(36557,1408839,8,'Set Costumer'),(36557,1408842,5,'Digital Intermediate'),(36557,1408843,5,'First Assistant Editor'),(36557,1408844,9,'Transportation Coordinator'),(36557,1408845,9,'Picture Car Coordinator'),(36557,1408846,3,'Location Manager'),(36557,1408847,3,'Location Manager'),(36557,1408848,3,'Location Manager'),(36557,1408849,3,'Publicist'),(36557,1408850,9,'Unit Publicist'),(36557,1408851,3,'Location Manager'),(36557,1408852,3,'Location Manager'),(36557,1408853,2,'Script Supervisor'),(36557,1408855,2,'Script Supervisor'),(36557,1408856,2,'Assistant Director'),(36557,1408857,2,'Assistant Director'),(36557,1408858,2,'Assistant Director'),(36557,1413028,8,'Hairstylist'),(36557,1455486,2,'Assistant Director'),(36557,1456365,8,'Hairstylist'),(36557,1477203,3,'Associate Producer'),(36557,1533537,6,'Music Editor'),(36557,1566626,9,'Thanks'),(36557,1599285,3,'Executive In Charge Of Production'),(36557,1602319,3,'Casting'),(36557,1606561,11,'Electrician'),(36557,1701216,9,'Title Graphics'),(36955,898,5,'Editor'),(36955,1262,3,'Casting'),(36955,11079,7,'Set Decoration'),(36955,2710,4,'Screenplay'),(36955,2710,2,'Director'),(36955,2710,3,'Producer'),(36955,2722,6,'Original Music Composer'),(36955,7757,7,'Art Direction'),(36955,8524,7,'Production Design'),(36955,3984,3,'Producer'),(36955,3985,5,'Editor'),(36955,3987,5,'Editor'),(36955,3989,8,'Costume Design'),(36955,3995,8,'Makeup Department Head'),(36955,8523,1,'Director of Photography'),(36955,21567,3,'Executive Producer'),(36955,43518,3,'Executive Producer'),(36955,955123,3,'Executive Producer'),(36955,960431,7,'Art Direction'),(36955,1319844,8,'Costume Supervisor'),(36955,1393558,7,'Set Decoration'),(36955,1395269,10,'Visual Effects Supervisor'),(36955,1512019,3,'Associate Producer'),(39451,380,3,'Producer'),(39451,1251,9,'Cinematography'),(39451,3289,2,'Director'),(39451,3305,3,'Producer'),(39451,6737,3,'Producer'),(39451,10391,4,'Writer'),(39451,17871,4,'Writer'),(39451,17871,3,'Producer'),(39451,21266,6,'Music'),(68718,2294,9,'Thanks'),(68718,138,2,'Director'),(68718,138,4,'Writer'),(68718,149,1,'Director of Photography'),(68718,3687,6,'Sound Designer'),(68718,547,3,'Casting'),(68718,1307,3,'Executive Producer'),(68718,59839,3,'Executive Producer'),(68718,4701,3,'Executive Producer'),(68718,4701,3,'Unit Production Manager'),(68718,150,9,'Thanks'),(68718,5381,3,'Executive Producer'),(68718,5382,3,'Producer'),(68718,6487,9,'Thanks'),(68718,6730,9,'Thanks'),(68718,6856,9,'Thanks'),(68718,13304,7,'Production Design'),(68718,19157,7,'Set Decoration'),(68718,13050,9,'Dialect Coach'),(68718,13179,6,'Sound Re-Recording Mixer'),(68718,14349,7,'Art Direction'),(68718,15573,8,'Costume Design'),(68718,22383,9,'Thanks'),(68718,18867,7,'Art Direction'),(68718,23285,9,'Stunt Coordinator'),(68718,24045,9,'Thanks'),(68718,58194,5,'Editor'),(68718,58809,2,'Script Supervisor'),(68718,59287,9,'Makeup Effects'),(68718,66675,6,'Music'),(68718,68215,3,'Producer'),(68718,71279,9,'Visual Effects Editor'),(68718,71279,5,'First Assistant Editor'),(68718,237405,9,'Thanks'),(68718,548443,6,'Sound Effects Editor'),(68718,589970,11,'Gaffer'),(68718,930016,6,'Sound Effects Editor'),(68718,963669,3,'Executive Producer'),(68718,966594,7,'Art Direction'),(68718,983118,1,'Steadicam Operator'),(68718,1003189,3,'Producer'),(68718,1077782,6,'Foley'),(68718,1130027,9,'Makeup Effects'),(68718,1204243,5,'First Assistant Editor'),(68718,1206190,9,'Makeup Effects'),(68718,1328407,8,'Costume Supervisor'),(68718,1340739,6,'Foley'),(68718,1345627,3,'Location Manager'),(68718,1352966,5,'Dialogue Editor'),(68718,1352969,6,'Supervising Sound Editor'),(68718,1355526,7,'Leadman'),(68718,1355530,7,'Sculptor'),(68718,1367510,9,'Studio Teachers'),(68718,1386920,1,'Still Photographer'),(68718,1387183,5,'Dialogue Editor'),(68718,1389609,8,'Makeup Department Head'),(68718,1390522,9,'Property Master'),(68718,1392615,3,'Production Supervisor'),(68718,1393405,6,'Music Editor'),(68718,1399141,6,'Sound Re-Recording Mixer'),(68718,1400529,9,'Post Production Supervisor'),(68718,1403392,7,'Set Designer'),(68718,1407721,8,'Wigmaker'),(68718,1412189,8,'Hairstylist'),(68718,1415342,3,'Production Supervisor'),(68718,1415650,9,'Unit Publicist'),(68718,1417972,6,'Sound Effects Editor'),(68718,1420146,8,'Makeup Artist'),(68718,1420154,6,'ADR & Dubbing'),(68718,1421255,9,'Transportation Coordinator'),(68718,1422073,9,'Transportation Coordinator'),(68718,1422795,8,'Makeup Artist'),(68718,1424894,8,'Hairstylist'),(68718,1424896,7,'Art Department Coordinator'),(68718,1424897,7,'Assistant Art Director'),(68718,1424898,7,'Construction Coordinator'),(68718,1424907,9,'Sequence Supervisor'),(68718,1424908,11,'Rigging Gaffer'),(68718,1424911,3,'Location Manager'),(68718,1485553,1,'Grip'),(68718,1516962,3,'Production Accountant'),(68718,1521185,9,'Stunts'),(68718,1542917,5,'Digital Intermediate'),(68718,1545448,6,'Music Supervisor'),(68718,1547309,6,'Production Sound Mixer'),(68718,1589685,7,'Other'),(68718,1599143,3,'Associate Producer'),(68718,1599143,2,'Assistant Director'),(76163,4950,1,'Director of Photography'),(76163,8646,7,'Art Direction'),(76163,9441,6,'Foley'),(76163,9493,8,'Costume Supervisor'),(76163,51032,3,'Executive Producer'),(76163,40747,9,'Second Unit Cinematographer'),(76163,12786,2,'Director'),(76163,16483,4,'Screenplay'),(76163,16486,3,'Producer'),(76163,16830,3,'Executive Producer'),(76163,17207,3,'Producer'),(76163,17208,3,'Producer'),(76163,17209,3,'Producer'),(76163,22814,4,'Screenplay'),(76163,22814,4,'Story'),(76163,22815,3,'Producer'),(76163,29380,9,'Visual Effects Editor'),(76163,44064,4,'Story'),(76163,45829,3,'Executive Producer'),(76163,45830,3,'Executive Producer'),(76163,53758,3,'Executive Producer'),(76163,59372,7,'Production Design'),(76163,58188,9,'Visual Effects Editor'),(76163,67759,3,'Executive Producer'),(76163,61851,1,'Steadicam Operator'),(76163,61860,3,'Casting'),(76163,67238,1,'Camera Operator'),(76163,67242,7,'Art Direction'),(76163,67560,5,'Editor'),(76163,67975,3,'Executive Producer'),(76163,85515,8,'Costume Supervisor'),(76163,137125,6,'Sound Re-Recording Mixer'),(76163,138657,10,'Visual Effects Producer'),(76163,226464,1,'Camera Operator'),(76163,963705,8,'Costume Design'),(76163,1015623,7,'Art Direction'),(76163,1069627,1,'Steadicam Operator'),(76163,1077381,5,'Dialogue Editor'),(76163,1083163,4,'Story'),(76163,1126734,9,'Second Unit Cinematographer'),(76163,1191653,1,'Camera Operator'),(76163,1210734,9,'Dialect Coach'),(76163,1316296,8,'Makeup Department Head'),(76163,1318091,7,'Set Decoration'),(76163,1324818,7,'Supervising Art Director'),(76163,1327184,8,'Makeup Artist'),(76163,1337666,8,'Set Costumer'),(76163,1337667,7,'Set Designer'),(76163,1345268,6,'Music Editor'),(76163,1350232,7,'Greensman'),(76163,1350233,7,'Art Department Coordinator'),(76163,1350254,9,'Stunt Coordinator'),(76163,1350256,8,'Costume Supervisor'),(76163,1350257,8,'Set Costumer'),(76163,1350260,3,'Location Manager'),(76163,1350261,2,'Script Supervisor'),(76163,1355964,10,'Visual Effects Supervisor'),(76163,1363344,1,'Camera Operator'),(76163,1368850,7,'Art Direction'),(76163,1368858,7,'Set Designer'),(76163,1368862,9,'Property Master'),(76163,1368886,9,'Transportation Coordinator'),(76163,1377137,5,'Digital Intermediate'),(76163,1378240,1,'Still Photographer'),(76163,1379427,7,'Greensman'),(76163,1396794,6,'Sound Re-Recording Mixer'),(76163,1396796,9,'Sound Recordist'),(76163,1396801,10,'Visual Effects Supervisor'),(76163,1396811,9,'Visual Effects Art Director'),(76163,1402714,9,'Visual Effects Editor'),(76163,1404244,1,'Helicopter Camera'),(76163,1407339,8,'Hairstylist'),(76163,1407340,8,'Hairstylist'),(76163,1408357,1,'Steadicam Operator'),(76163,1408358,1,'Camera Operator'),(76163,1409889,9,'Sound Recordist'),(76163,1410107,1,'Camera Operator'),(76163,1412603,8,'Makeup Artist'),(76163,1412697,7,'Art Direction'),(76163,1412699,6,'Supervising Sound Effects Editor'),(76163,1412711,9,'Visual Effects Editor'),(76163,1412715,10,'Visual Effects Supervisor'),(76163,1412718,1,'Camera Operator'),(76163,1412720,8,'Set Costumer'),(76163,1418413,9,'Unit Publicist'),(76163,1426749,10,'Visual Effects Supervisor'),(76163,1427435,5,'Digital Intermediate'),(76163,1429341,8,'Makeup Artist'),(76163,1429370,9,'Sequence Supervisor'),(76163,1437305,1,'Camera Operator'),(76163,1437691,7,'Set Decoration'),(76163,1437692,8,'Makeup Artist'),(76163,1437693,7,'Construction Coordinator'),(76163,1437697,7,'Leadman'),(76163,1437703,6,'ADR & Dubbing'),(76163,1437712,10,'Visual Effects Producer'),(76163,1437713,10,'Visual Effects Producer'),(76163,1437714,10,'Visual Effects Supervisor'),(76163,1437715,10,'Visual Effects Supervisor'),(76163,1437716,9,'Stunt Coordinator'),(76163,1437717,8,'Set Costumer'),(76163,1437718,9,'Transportation Coordinator'),(76163,1437719,2,'Script Supervisor'),(76163,1437720,2,'Script Supervisor'),(76163,1437721,3,'Location Manager'),(76163,1460603,9,'Compositors'),(116711,531,6,'Original Music Composer'),(116711,5713,2,'Director'),(116711,5719,3,'Producer'),(116711,10295,4,'Screenplay'),(116711,51327,4,'Screenplay'),(116711,51328,4,'Screenplay'),(116711,63980,5,'Editor'),(116711,60678,4,'Screenplay'),(116711,60678,7,'Production Design'),(116711,87059,10,'Animation Supervisor'),(116711,132316,4,'Screenplay'),(116711,406615,9,'Cinematography'),(116711,1208000,7,'Production Design'),(116711,1208001,7,'Art Direction'),(116711,1217416,4,'Storyboard'),(116711,1451274,2,'Layout'),(116711,1455462,11,'Lighting Technician'),(116711,1455610,10,'Animation'),(116711,1459734,10,'Animation'),(116711,1462665,1,'Camera Department Manager'),(116711,1470237,3,'Producer'),(116711,1731716,10,'Color Designer'),(116711,1731716,7,'Set Designer'),(37710,8384,7,'Set Decoration'),(37710,286,3,'Executive Producer'),(37710,557,8,'Costume Design'),(37710,1213,6,'Original Music Composer'),(37710,1302,3,'Casting'),(37710,2243,7,'Production Design'),(37710,2702,1,'Director of Photography'),(37710,4186,5,'Editor'),(37710,4504,3,'Producer'),(37710,4507,3,'Producer'),(37710,4528,5,'Editor'),(37710,10571,3,'Line Producer'),(37710,5673,7,'Supervising Art Director'),(37710,6047,3,'Co-Producer'),(37710,8193,4,'Screenplay'),(37710,8193,2,'Director'),(37710,9033,4,'Screenplay'),(37710,10747,4,'Screenplay'),(37710,16729,3,'Producer'),(37710,21635,3,'Producer'),(37710,69987,4,'Original Story'),(37710,114479,3,'Producer'),(37710,76482,3,'Co-Producer'),(37710,968632,3,'Executive Producer'),(37710,969757,3,'Executive Producer'),(37710,1319134,8,'Costume Supervisor'),(37710,1322555,7,'Art Direction'),(37710,1381649,3,'Producer'),(37710,1538090,3,'Line Producer'),(37710,1755040,3,'Executive Producer'),(106646,275,1,'Director of Photography'),(106646,1032,2,'Director'),(106646,1032,3,'Producer'),(106646,1638,6,'Sound Effects Editor'),(106646,1886,3,'Co-Producer'),(106646,2242,3,'Casting'),(106646,2947,3,'Executive Producer'),(106646,3661,5,'Editor'),(106646,4030,9,'Stunts'),(106646,4152,9,'Special Effects'),(106646,4843,9,'Post Production Supervisor'),(106646,10571,1,'Additional Photography'),(106646,5339,6,'ADR & Dubbing'),(106646,6193,3,'Producer'),(106646,9027,8,'Costume Design'),(106646,11472,3,'Executive Producer'),(106646,11713,7,'Assistant Art Director'),(106646,13050,9,'Dialect Coach'),(106646,14924,10,'Visual Effects Supervisor'),(106646,15333,9,'Special Effects'),(106646,17950,7,'Art Direction'),(106646,26678,6,'ADR & Dubbing'),(106646,30714,3,'Executive Producer'),(106646,52161,6,'Music Supervisor'),(106646,38939,3,'Unit Production Manager'),(106646,38939,3,'Co-Producer'),(106646,45830,3,'Executive Producer'),(106646,45648,3,'Producer'),(106646,48138,9,'Thanks'),(106646,113165,9,'Compositors'),(106646,60135,7,'Set Decoration'),(106646,61329,9,'Stunts'),(106646,62635,4,'Screenplay'),(106646,92373,6,'Foley'),(106646,92376,6,'Foley'),(106646,92379,6,'First Assistant Sound Editor'),(106646,92382,5,'Additional Editing'),(106646,92386,6,'ADR & Dubbing'),(106646,72861,9,'Executive Music Producer'),(106646,75040,3,'Executive Producer'),(106646,115099,9,'Visual Effects Editor'),(106646,86598,2,'Assistant Director'),(106646,91835,9,'Stunts'),(106646,97186,9,'Thanks'),(106646,131794,9,'Thanks'),(106646,162522,9,'Stunt Coordinator'),(106646,176558,9,'Stunts'),(106646,204339,9,'Stunts'),(106646,548446,6,'ADR & Dubbing'),(106646,582807,8,'Assistant Costume Designer'),(106646,589961,9,'Utility Stunts'),(106646,932748,9,'Stunts'),(106646,948199,4,'Book'),(106646,992965,1,'Still Photographer'),(106646,1026950,9,'Stunts'),(106646,1027545,3,'Producer'),(106646,1027550,3,'Producer'),(106646,1039164,6,'Foley'),(106646,1043368,10,'Special Effects Supervisor'),(106646,1045964,9,'Stunts'),(106646,1074163,9,'Stunt Coordinator'),(106646,1084888,9,'Special Effects'),(106646,1102140,2,'Assistant Director'),(106646,1102140,3,'Co-Producer'),(106646,1102699,9,'Stunts'),(106646,1114851,9,'Stunts'),(106646,1190771,9,'Stunts'),(106646,1215982,9,'Stunts'),(106646,1228567,9,'Stunts'),(106646,1246393,9,'Stunts'),(106646,1280234,9,'Stunts'),(106646,1290147,9,'Thanks'),(106646,1296679,3,'Associate Producer'),(106646,1301652,9,'Stunts'),(106646,1302234,9,'Thanks'),(106646,1308375,6,'Foley'),(106646,1319743,8,'Makeup Department Head'),(106646,1325887,8,'Makeup Department Head'),(106646,1326110,7,'Assistant Art Director'),(106646,1328380,8,'Costume Supervisor'),(106646,1329415,9,'Stunts'),(106646,1329527,9,'Stunts'),(106646,1333223,5,'Dialogue Editor'),(106646,1334338,8,'Prosthetic Supervisor'),(106646,1337680,6,'Music'),(106646,1347726,9,'Scenic Artist'),(106646,1357072,10,'Visual Effects'),(106646,1357601,3,'Location Manager'),(106646,1358564,9,'Stunts'),(106646,1366030,9,'Stunts'),(106646,1366039,9,'Stunts'),(106646,1373433,10,'Visual Effects Supervisor'),(106646,1384375,10,'Visual Effects Producer'),(106646,1384390,9,'Stunts'),(106646,1393574,8,'Set Costumer'),(106646,1394755,10,'VFX Supervisor'),(106646,1395362,10,'Visual Effects Producer'),(106646,1395365,10,'Visual Effects Producer'),(106646,1395370,9,'Transportation Captain'),(106646,1395434,7,'Assistant Art Director'),(106646,1397846,10,'Visual Effects Supervisor'),(106646,1399096,2,'Script Supervisor'),(106646,1399303,10,'Visual Effects Supervisor'),(106646,1399481,2,'Script Supervisor'),(106646,1399546,11,'Electrician'),(106646,1399871,10,'Visual Effects Producer'),(106646,1400072,6,'Sound Re-Recording Mixer'),(106646,1400490,7,'Art Department Coordinator'),(106646,1402015,8,'Hairstylist'),(106646,1402031,9,'Second Unit'),(106646,1402031,10,'Visual Effects Supervisor'),(106646,1402031,9,'Second Unit Cinematographer'),(106646,1402037,6,'Music Editor'),(106646,1402040,9,'Unit Publicist'),(106646,1403710,2,'Script Supervisor'),(106646,1404901,6,'ADR & Dubbing'),(106646,1405809,7,'Construction Coordinator'),(106646,1406612,7,'Leadman'),(106646,1407021,1,'Camera Operator'),(106646,1407198,9,'Sound Recordist'),(106646,1411802,7,'Art Department Coordinator'),(106646,1411808,9,'Scenic Artist'),(106646,1411809,9,'Scenic Artist'),(106646,1414994,9,'Property Master'),(106646,1415964,6,'ADR & Dubbing'),(106646,1416795,7,'Assistant Art Director'),(106646,1416799,8,'Wigmaker'),(106646,1417419,10,'Visual Effects'),(106646,1422795,8,'Makeup Artist'),(106646,1427511,5,'Digital Intermediate'),(106646,1430231,7,'Production Design'),(106646,1434589,8,'Hairstylist'),(106646,1437312,8,'Set Costumer'),(106646,1439751,9,'Picture Car Coordinator'),(106646,1442172,9,'Driver'),(106646,1445470,8,'Hairstylist'),(106646,1445479,5,'Dialogue Editor'),(106646,1446462,6,'ADR & Dubbing'),(106646,1446671,7,'Greensman'),(106646,1449182,8,'Set Costumer'),(106646,1455503,9,'Stunts'),(106646,1456723,9,'Stunts'),(106646,1456750,9,'Stunts'),(106646,1457690,8,'Makeup Artist'),(106646,1458530,6,'Boom Operator'),(106646,1458693,8,'Makeup Artist'),(106646,1459768,1,'Grip'),(106646,1459924,9,'CG Supervisor'),(106646,1460666,7,'Location Scout'),(106646,1464521,11,'Rigging Gaffer'),(106646,1468577,10,'Visual Effects Producer'),(106646,1468581,9,'Stunts'),(106646,1468589,8,'Set Costumer'),(106646,1468883,8,'Hairstylist'),(106646,1474151,3,'Casting Associate'),(106646,1491496,3,'Casting Associate'),(106646,1491848,6,'ADR & Dubbing'),(106646,1496422,9,'Visual Effects Editor'),(106646,1509394,1,'Grip'),(106646,1509396,1,'Grip'),(106646,1509397,1,'Grip'),(106646,1512025,1,'Grip'),(106646,1516458,8,'Hairstylist'),(106646,1521392,9,'Special Effects'),(106646,1524174,8,'Hairstylist'),(106646,1527445,5,'Digital Intermediate'),(106646,1528942,6,'Music'),(106646,1533090,8,'Makeup Artist'),(106646,1535440,8,'Hair Department Head'),(106646,1538231,6,'Foley'),(106646,1538721,2,'Script Supervisor'),(106646,1539990,6,'ADR & Dubbing'),(106646,1540485,7,'Location Scout'),(106646,1542917,5,'Digital Intermediate'),(106646,1544394,9,'Stunts'),(106646,1544395,9,'Stunts'),(106646,1544546,3,'Casting Associate'),(106646,1545168,6,'Music'),(106646,1546840,1,'First Assistant Camera'),(106646,1548859,6,'ADR & Dubbing'),(106646,1549272,8,'Set Costumer'),(106646,1550723,9,'Set Medic'),(106646,1550725,9,'Stunts'),(106646,1551368,11,'Rigging Grip'),(106646,1552937,9,'Set Medic'),(106646,1553559,3,'Production Supervisor'),(106646,1553560,3,'Production Manager'),(106646,1553561,2,'Assistant Director'),(106646,1553572,7,'Greensman'),(106646,1553887,6,'Foley'),(106646,1553891,6,'Sound'),(106646,1553892,6,'Sound mixer'),(106646,1553893,6,'Boom Operator'),(106646,1553894,6,'ADR & Dubbing'),(106646,1553895,6,'Boom Operator'),(106646,1553897,6,'ADR & Dubbing'),(106646,1553898,6,'ADR & Dubbing'),(106646,1553901,6,'Boom Operator'),(106646,1554375,10,'Animation Supervisor'),(106646,1554377,9,'Compositors'),(106646,1554382,10,'Visual Effects Supervisor'),(106646,1554385,9,'Compositors'),(106646,1554386,9,'Compositors'),(106646,1554387,9,'Compositors'),(106646,1554392,10,'Visual Effects'),(106646,1554393,9,'Stunts'),(106646,1554915,9,'Stunts'),(106646,1554916,9,'Stunts'),(106646,1554917,9,'Stunts'),(106646,1554918,9,'Stunts'),(106646,1554919,9,'Stunts'),(106646,1554920,9,'Stunts'),(106646,1554921,9,'Stunts'),(106646,1554923,9,'Stunts'),(106646,1554924,9,'Stunts'),(106646,1554925,9,'Stunts'),(106646,1554926,9,'Stunts'),(106646,1554931,9,'Stunts'),(106646,1554936,9,'Stunts'),(106646,1554938,9,'Stunts'),(106646,1554939,9,'Stunts'),(106646,1555027,11,'Rigging Grip'),(106646,1555028,1,'First Assistant Camera'),(106646,1555029,1,'Grip'),(106646,1555030,1,'First Assistant Camera'),(106646,1555031,11,'Electrician'),(106646,1555032,11,'Electrician'),(106646,1555033,11,'Electrician'),(106646,1555034,11,'Rigging Grip'),(106646,1555035,1,'Grip'),(106646,1555036,1,'Grip'),(106646,1555037,11,'Lighting Technician'),(106646,1555053,1,'Grip'),(106646,1555345,5,'Digital Intermediate'),(106646,1555527,9,'Thanks'),(106646,1555803,9,'Set Production Assistant'),(106646,1555810,3,'Location Manager'),(106646,1555812,9,'Security'),(106646,1555813,9,'Dialect Coach'),(106646,1555814,7,'Location Scout'),(106646,1555815,9,'Stand In'),(106646,1555816,9,'Set Production Assistant'),(106646,1562190,9,'Stunts'),(106646,1648147,9,'Special Effects'),(83542,1113,3,'Casting'),(83542,1348,3,'Executive Producer'),(83542,1071,4,'Screenplay'),(83542,1071,3,'Producer'),(83542,1071,2,'Director'),(83542,1073,3,'Producer'),(83542,1075,6,'Original Music Composer'),(83542,1076,6,'Original Music Composer'),(83542,1077,9,'Cinematography'),(83542,1851,5,'Editor'),(83542,2953,3,'Casting'),(83542,6209,8,'Costume Design'),(83542,8528,3,'Producer'),(83542,9339,2,'Director'),(83542,9339,4,'Screenplay'),(83542,9339,3,'Producer'),(83542,9340,2,'Director'),(83542,9340,4,'Screenplay'),(83542,9340,3,'Producer'),(83542,9344,7,'Production Design'),(83542,9583,7,'Supervising Art Director'),(83542,11270,7,'Set Decoration'),(83542,12785,2,'Assistant Director'),(83542,40750,7,'Set Designer'),(83542,40760,9,'Property Master'),(83542,40778,11,'Gaffer'),(83542,40801,8,'Set Costumer'),(83542,40860,3,'Production Manager'),(83542,40862,3,'Production Manager'),(83542,11604,7,'Production Design'),(83542,11606,6,'Sound Re-Recording Mixer'),(83542,16887,6,'Foley'),(83542,17063,8,'Costume Design'),(83542,36402,8,'Hairstylist'),(83542,36402,8,'Makeup Department Head'),(83542,73479,6,'Sound Editor'),(83542,54963,6,'Sound Re-Recording Mixer'),(83542,48590,3,'Executive Producer'),(83542,71292,8,'Hairstylist'),(83542,71292,8,'Makeup Artist'),(83542,124697,6,'Sound Designer'),(83542,458559,7,'Supervising Art Director'),(83542,575766,7,'Conceptual Design'),(83542,967137,7,'Art Direction'),(83542,972582,7,'Art Direction'),(83542,978148,7,'Set Decoration'),(83542,986677,7,'Art Direction'),(83542,1040898,3,'Producer'),(83542,1087547,7,'Art Direction'),(83542,1111715,4,'Novel'),(83542,1207542,9,'Property Master'),(83542,1214379,10,'Visual Effects Producer'),(83542,1271696,7,'Art Direction'),(83542,1271697,7,'Supervising Art Director'),(83542,1290690,9,'Propmaker'),(83542,1304081,1,'Camera Operator'),(83542,1327025,10,'Visual Effects Supervisor'),(83542,1335851,7,'Sculptor'),(83542,1335852,7,'Art Department Coordinator'),(83542,1335853,9,'Propmaker'),(83542,1335854,9,'Property Master'),(83542,1335856,9,'Propmaker'),(83542,1335857,7,'Set Designer'),(83542,1335858,9,'Propmaker'),(83542,1335859,9,'Prop Maker'),(83542,1335860,7,'Set Designer'),(83542,1335861,9,'Prop Maker'),(83542,1335871,9,'Propmaker'),(83542,1335872,7,'Construction Coordinator'),(83542,1335873,7,'Conceptual Design'),(83542,1335874,7,'Conceptual Design'),(83542,1335878,10,'Visual Effects Producer'),(83542,1335879,10,'Visual Effects Producer'),(83542,1335880,10,'Visual Effects Producer'),(83542,1335881,10,'Visual Effects Producer'),(83542,1335882,10,'Visual Effects Producer'),(83542,1335883,10,'Visual Effects Producer'),(83542,1335884,10,'Visual Effects Producer'),(83542,1335886,8,'Costume Supervisor'),(83542,1335887,9,'Transportation Captain'),(83542,1335888,9,'Transportation Co-Captain'),(83542,1335889,9,'Transportation Captain'),(83542,1335890,9,'Transportation Captain'),(83542,1335891,9,'Transportation Coordinator'),(83542,1335892,9,'Transportation Coordinator'),(83542,1335893,9,'Transportation Coordinator'),(83542,1335894,9,'Transportation Coordinator'),(83542,1336198,8,'Set Costumer'),(83542,1339054,1,'Camera Operator'),(83542,1341743,10,'Visual Effects Supervisor'),(83542,1341744,10,'Visual Effects Supervisor'),(83542,1363070,9,'Picture Car Coordinator'),(83542,1376803,10,'Visual Effects Supervisor'),(83542,1379981,6,'Boom Operator'),(83542,1379983,5,'Dialogue Editor'),(83542,1379986,10,'Visual Effects Supervisor'),(83542,1379989,10,'Visual Effects Supervisor'),(83542,1379990,10,'Visual Effects Supervisor'),(83542,1379991,10,'Visual Effects Supervisor'),(83542,1379992,10,'Visual Effects Supervisor'),(83542,1379993,9,'Visual Effects Editor'),(83542,1379994,10,'Visual Effects Supervisor'),(83542,1379995,10,'Visual Effects Supervisor'),(83542,1379996,9,'Visual Effects Editor'),(83542,1379997,9,'Visual Effects Editor'),(83542,1379998,10,'Visual Effects Supervisor'),(83542,1379999,1,'Still Photographer'),(83542,1380000,11,'Gaffer'),(83542,1380001,1,'Steadicam Operator'),(83542,1380002,1,'Still Photographer'),(83542,1380003,2,'Script Supervisor'),(83542,1380004,2,'Script Supervisor'),(83542,1400092,1,'Helicopter Camera'),(83542,1400804,3,'Location Manager'),(83542,1401126,8,'Wigmaker'),(83542,1404553,9,'Unit Publicist'),(83542,1408346,9,'CG Supervisor'),(83542,1411244,6,'ADR & Dubbing'),(83542,1411320,8,'Hairstylist'),(83542,1411320,8,'Makeup Artist'),(83542,1411321,8,'Makeup Artist'),(83542,1411322,8,'Makeup Artist'),(83542,1411323,9,'Makeup Effects'),(83542,1411324,9,'Makeup Effects'),(83542,1411325,2,'Assistant Director'),(83542,1411326,2,'Assistant Director'),(83542,1411327,9,'Scenic Artist'),(83542,1411328,7,'Assistant Art Director'),(83542,1411329,7,'Assistant Art Director'),(83542,1411330,7,'Assistant Art Director'),(83542,1411333,9,'Visual Effects Editor'),(83542,1411334,10,'VFX Supervisor'),(83542,1411335,9,'Visual Effects Art Director'),(83542,1411336,10,'Animation Supervisor'),(83542,1411337,9,'CG Supervisor'),(83542,1411338,9,'CG Supervisor'),(83542,1411339,9,'CG Supervisor'),(83542,1411340,1,'Camera Operator'),(83542,1411341,1,'Helicopter Camera'),(83542,1411344,1,'Additional Camera'),(83542,1411345,10,'Animation'),(83542,1411346,5,'First Assistant Editor'),(83542,1411351,3,'Location Manager'),(83542,1411353,9,'Studio Teachers'),(83542,1411357,3,'Location Manager'),(83542,1411359,3,'Location Manager'),(83542,1411362,3,'Location Manager'),(83542,1411365,3,'Location Manager'),(83542,1411367,3,'Location Manager'),(41216,15217,2,'Director'),(41216,20457,4,'Screenplay'),(41216,37281,3,'Casting'),(41216,37757,6,'Original Music Composer'),(41216,58470,3,'Executive Producer'),(41216,136130,4,'Screenplay'),(41216,968957,7,'Art Direction'),(41216,970283,7,'Production Design'),(41216,970284,3,'Producer'),(41216,970287,5,'Editor'),(41216,1448042,10,'Animation'),(41216,1455461,11,'Lighting Artist'),(41216,1642697,10,'Animation'),(184315,1113,3,'Casting'),(184315,1098,5,'Editor'),(184315,2031,3,'Casting'),(184315,2532,3,'Casting'),(184315,9543,3,'Producer'),(184315,10972,6,'Supervising Sound Editor'),(184315,11227,8,'Costume Design'),(184315,40823,6,'Foley'),(184315,11099,1,'Director of Photography'),(184315,15733,7,'Set Decoration'),(184315,23453,7,'Art Direction'),(184315,37768,7,'Production Design'),(184315,21103,6,'Sound Designer'),(184315,21103,6,'Supervising Sound Editor'),(184315,11091,2,'Director'),(184315,11091,3,'Producer'),(184315,36602,3,'Executive Producer'),(184315,49670,3,'Casting'),(184315,51897,6,'Music'),(184315,50769,3,'Executive Producer'),(184315,11100,5,'Editor'),(184315,73772,3,'Producer'),(184315,61851,1,'Camera Operator'),(184315,61851,1,'Steadicam Operator'),(184315,80675,4,'Screenplay'),(184315,11014,3,'Executive Producer'),(184315,117226,9,'Property Master'),(184315,123471,9,'Scenic Artist'),(184315,570128,5,'Dialogue Editor'),(184315,575762,3,'Executive Producer'),(184315,962164,7,'Supervising Art Director'),(184315,1145398,9,'Dialect Coach'),(184315,1167458,4,'Screenplay'),(184315,1211204,6,'Original Music Composer'),(184315,1298839,1,'Camera Operator'),(184315,1329411,7,'Art Direction'),(184315,1334517,6,'Music Editor'),(184315,1337412,6,'Foley'),(184315,1338219,7,'Greensman'),(184315,1338233,9,'Transportation Coordinator'),(184315,1345603,10,'Visual Effects Producer'),(184315,1350253,10,'Visual Effects Producer'),(184315,1388872,10,'Visual Effects Supervisor'),(184315,1390366,1,'Still Photographer'),(184315,1392587,7,'Art Direction'),(184315,1392588,7,'Art Department Coordinator'),(184315,1392589,7,'Assistant Art Director'),(184315,1392594,7,'Sculptor'),(184315,1392595,7,'Sculptor'),(184315,1392603,6,'Sound Designer'),(184315,1392609,6,'Sound Re-Recording Mixer'),(184315,1392611,6,'Sound Re-Recording Mixer'),(184315,1392614,6,'Dolby Consultant'),(184315,1392616,6,'Boom Operator'),(184315,1392619,9,'Special Effects Coordinator'),(184315,1392620,10,'Visual Effects Producer'),(184315,1392622,10,'Visual Effects Producer'),(184315,1392623,10,'Visual Effects Producer'),(184315,1392625,10,'Visual Effects Producer'),(184315,1392627,10,'Visual Effects Supervisor'),(184315,1392629,10,'Visual Effects Supervisor'),(184315,1392635,9,'Stunt Coordinator'),(184315,1392637,9,'Stunt Coordinator'),(184315,1392638,9,'Stunt Coordinator'),(184315,1392641,1,'Steadicam Operator'),(184315,1392641,1,'Camera Operator'),(184315,1392650,11,'Gaffer'),(184315,1392652,8,'Costume Supervisor'),(184315,1392657,9,'Transportation Coordinator'),(184315,1392661,2,'Script Supervisor'),(184315,1392663,3,'Location Manager'),(184315,1392664,3,'Location Manager'),(184315,1395269,10,'Visual Effects Supervisor'),(184315,1457930,10,'Visual Effects'),(184315,1460658,9,'Compositors'),(184315,1551777,8,'Assistant Costume Designer'),(184315,1831266,9,'Stunts'),(138103,6041,6,'Original Music Composer'),(138103,12579,1,'Still Photographer'),(138103,16483,4,'Screenplay'),(138103,16483,4,'Story'),(138103,16486,3,'Producer'),(138103,16490,5,'Editor'),(138103,17207,3,'Producer'),(138103,17208,3,'Producer'),(138103,17209,3,'Producer'),(138103,17209,3,'Casting'),(138103,19291,7,'Production Design'),(138103,17629,1,'Director of Photography'),(138103,22815,3,'Producer'),(138103,57264,4,'Characters'),(138103,61860,3,'Casting'),(138103,67242,7,'Art Direction'),(138103,85515,8,'Costume Supervisor'),(138103,95834,6,'Music Editor'),(138103,131532,9,'Stunt Coordinator'),(138103,137125,6,'Sound Re-Recording Mixer'),(138103,138657,10,'Visual Effects Producer'),(138103,143059,2,'Director'),(138103,148697,7,'Set Decoration'),(138103,930010,7,'Art Direction'),(138103,963705,8,'Costume Design'),(138103,1015623,7,'Art Direction'),(138103,1065351,4,'Screenplay'),(138103,1065352,4,'Screenplay'),(138103,1076544,3,'Location Manager'),(138103,1077381,6,'Supervising Sound Editor'),(138103,1316296,8,'Makeup Department Head'),(138103,1318091,7,'Set Decoration'),(138103,1322142,7,'Supervising Art Director'),(138103,1327184,8,'Makeup Artist'),(138103,1337667,7,'Assistant Art Director'),(138103,1345267,8,'Set Costumer'),(138103,1346489,5,'Editor'),(138103,1350232,7,'Greensman'),(138103,1350254,9,'Stunt Coordinator'),(138103,1350256,8,'Costume Supervisor'),(138103,1350257,8,'Set Costumer'),(138103,1350258,8,'Set Costumer'),(138103,1350260,3,'Location Manager'),(138103,1350261,2,'Script Supervisor'),(138103,1355974,2,'Script Supervisor'),(138103,1368858,7,'Assistant Art Director'),(138103,1368862,9,'Property Master'),(138103,1368880,11,'Gaffer'),(138103,1368886,9,'Transportation Coordinator'),(138103,1386911,10,'Visual Effects Supervisor'),(138103,1386918,10,'Visual Effects Producer'),(138103,1386919,10,'Visual Effects Producer'),(138103,1393444,6,'Sound Designer'),(138103,1394768,1,'Camera Operator'),(138103,1394768,1,'Steadicam Operator'),(138103,1396790,7,'Art Direction'),(138103,1396792,7,'Art Department Coordinator'),(138103,1396793,6,'Foley'),(138103,1396794,6,'Sound Re-Recording Mixer'),(138103,1396796,9,'Sound Recordist'),(138103,1396798,10,'Visual Effects Supervisor'),(138103,1396799,10,'Visual Effects Supervisor'),(138103,1396800,10,'Visual Effects Supervisor'),(138103,1396801,10,'Visual Effects Supervisor'),(138103,1396802,9,'Visual Effects Editor'),(138103,1396803,9,'Visual Effects Editor'),(138103,1396804,9,'Visual Effects Editor'),(138103,1396805,9,'Visual Effects Editor'),(138103,1396806,10,'Visual Effects Producer'),(138103,1396807,10,'Visual Effects Producer'),(138103,1396808,10,'Visual Effects Producer'),(138103,1396810,10,'Visual Effects Producer'),(138103,1396811,9,'Visual Effects Art Director'),(138103,1396812,1,'Camera Operator'),(138103,1396813,1,'Camera Operator'),(138103,1396818,8,'Set Costumer'),(138103,1396820,8,'Set Costumer'),(138103,1396825,5,'Digital Intermediate'),(138103,1396827,6,'Music Editor'),(138103,1396830,3,'Location Manager'),(138103,1407339,8,'Hairstylist'),(138103,1429341,8,'Makeup Artist'),(138103,1437722,8,'Hairstylist'),(138103,1437723,8,'Makeup Artist'),(138103,1447557,9,'Compositors'),(257088,852,5,'Editor'),(257088,3718,3,'Producer'),(257088,561,3,'Casting'),(257088,5334,8,'Hair Designer'),(257088,5867,7,'Production Design'),(257088,6033,8,'Costume Design'),(257088,13927,4,'Screenplay'),(257088,13927,4,'Story'),(257088,13927,3,'Producer'),(257088,14764,6,'Sound Effects Editor'),(257088,15304,4,'Story'),(257088,15305,4,'Story'),(257088,17399,5,'Editor'),(257088,21673,2,'Director'),(257088,21673,1,'Director of Photography'),(257088,36402,8,'Hair Department Head'),(257088,58363,6,'Supervising Sound Editor'),(257088,43159,8,'Hairstylist'),(257088,47285,3,'Producer'),(257088,47286,3,'Producer'),(257088,49826,3,'Producer'),(257088,56827,6,'Music'),(257088,69286,1,'Camera Operator'),(257088,71127,1,'Underwater Camera'),(257088,83085,6,'Sound Effects Editor'),(257088,83090,6,'Supervising Sound Editor'),(257088,83091,6,'Sound Re-Recording Mixer'),(257088,91122,1,'Helicopter Camera'),(257088,93844,6,'ADR & Dubbing'),(257088,93844,5,'Dialogue Editor'),(257088,114715,10,'Visual Effects Coordinator'),(257088,131516,1,'Camera Operator'),(257088,565353,1,'Underwater Camera'),(257088,589942,8,'Hair Department Head'),(257088,989750,3,'Casting Associate'),(257088,1046684,1,'Camera Operator'),(257088,1153031,1,'Additional Camera'),(257088,1189807,1,'Camera Operator'),(257088,1207542,7,'Set Decoration'),(257088,1261812,1,'Camera Operator'),(257088,1314465,8,'Hair Designer'),(257088,1318882,5,'Editor'),(257088,1324460,7,'Art Direction'),(257088,1332515,1,'Camera Operator'),(257088,1335569,6,'Music Editor'),(257088,1335852,7,'Art Department Coordinator'),(257088,1335886,8,'Costume Supervisor'),(257088,1338372,6,'Foley'),(257088,1338964,7,'Art Direction'),(257088,1339054,1,'Camera Operator'),(257088,1364410,5,'Dialogue Editor'),(257088,1364412,6,'Sound Effects Editor'),(257088,1364798,10,'Visual Effects Producer'),(257088,1367493,6,'Foley'),(257088,1371100,9,'Visual Effects Editor'),(257088,1375182,1,'Camera Operator'),(257088,1379999,1,'Still Photographer'),(257088,1392099,10,'Visual Effects Producer'),(257088,1393453,6,'Music Editor'),(257088,1394485,1,'Helicopter Camera'),(257088,1394755,10,'Visual Effects Supervisor'),(257088,1395023,6,'Sound Designer'),(257088,1397073,11,'Rigging Gaffer'),(257088,1398930,10,'Visual Effects Producer'),(257088,1399071,1,'Helicopter Camera'),(257088,1399141,6,'Sound Re-Recording Mixer'),(257088,1399863,9,'Special Effects Coordinator'),(257088,1399871,10,'Visual Effects Producer'),(257088,1403478,1,'Camera Operator'),(257088,1403479,1,'Additional Photography'),(257088,1403930,2,'Script Supervisor'),(257088,1404739,1,'Helicopter Camera'),(257088,1405704,8,'Hair Department Head'),(257088,1406193,11,'Gaffer'),(257088,1410554,10,'Visual Effects Supervisor'),(257088,1412721,5,'Digital Intermediate'),(257088,1412722,5,'Digital Intermediate'),(257088,1412919,1,'Helicopter Camera'),(257088,1414558,5,'Digital Intermediate'),(257088,1416098,8,'Makeup Department Head'),(257088,1417979,10,'Visual Effects Supervisor'),(257088,1420190,11,'Rigging Gaffer'),(257088,1426846,10,'Visual Effects Producer'),(257088,1428595,6,'Sound Effects Editor'),(257088,1428904,10,'VFX Editor'),(257088,1430237,9,'Visual Effects Editor'),(257088,1440301,1,'Additional Photography'),(257088,1445820,8,'Hair Department Head'),(257088,1445896,11,'Gaffer'),(257088,1446750,8,'Hairstylist'),(257088,1450144,3,'Casting'),(257088,1453671,9,'Visual Effects Editor'),(257088,1456373,10,'Visual Effects Supervisor'),(257088,1456374,10,'Visual Effects Supervisor'),(257088,1460587,9,'Special Effects Coordinator'),(257088,1512667,10,'Animation Supervisor'),(257088,1512674,10,'Visual Effects Supervisor'),(257088,1519288,8,'Hairstylist'),(257088,1524231,10,'Visual Effects Coordinator'),(257088,1535987,6,'Music Supervisor'),(257088,1536949,8,'Wigmaker'),(257088,1537964,8,'Makeup Artist'),(257088,1545989,11,'Gaffer'),(257088,1549438,10,'Visual Effects Coordinator'),(257088,1551789,6,'Sound Effects Editor'),(257088,1551800,8,'Makeup Artist'),(257088,1551804,8,'Hairstylist'),(257088,1551918,6,'Music Editor'),(257088,1552788,9,'CG Supervisor'),(257088,1553236,11,'Gaffer'),(257088,1554749,9,'Armorer'),(257088,1554750,9,'Armorer'),(257088,1558086,10,'Special Effects Supervisor'),(257088,1579042,8,'Hairstylist'),(257088,1580854,10,'Visual Effects Coordinator'),(257088,1586117,10,'Visual Effects Coordinator'),(257088,1586118,9,'Visual Effects Editor'),(257088,1615696,9,'Visual Effects Editor'),(257088,1630071,9,'Armorer'),(257088,1631400,3,'Producer'),(257088,1631402,3,'Casting'),(257088,1631403,8,'Assistant Costume Designer'),(257088,1631404,8,'Costume Supervisor'),(257088,1631405,2,'Script Supervisor'),(257088,1631406,2,'Script Supervisor'),(257088,1631407,1,'Camera Operator'),(257088,1631410,1,'Still Photographer'),(257088,1631412,9,'Armorer'),(257088,1631413,10,'Animation'),(257088,1631414,10,'Animation'),(257088,1638131,10,'Visual Effects Coordinator'),(257088,1638132,10,'Visual Effects Coordinator'),(257088,1638133,10,'Visual Effects Coordinator'),(257088,1638134,10,'Visual Effects Coordinator'),(257088,1638135,10,'Visual Effects Producer'),(257088,1638136,10,'Visual Effects Supervisor'),(257088,1638139,9,'Visual Effects Editor'),(257088,1638141,9,'Visual Effects Editor'),(257088,1638142,9,'Visual Effects Editor'),(257088,1638156,8,'Makeup Department Head'),(257088,1638157,8,'Makeup Department Head'),(257088,1638158,8,'Makeup Artist'),(257088,1638159,8,'Makeup Artist'),(257088,1638160,5,'Digital Intermediate'),(205775,339,3,'Producer'),(205775,1570,1,'Director of Photography'),(205775,1997,4,'Screenplay'),(205775,1997,4,'Story'),(205775,2071,7,'Production Design'),(205775,6159,2,'Director'),(205775,6159,3,'Producer'),(205775,6189,5,'Editor'),(205775,6190,5,'Editor'),(205775,16363,3,'Casting'),(205775,14351,6,'Original Music Composer'),(205775,16731,3,'Producer'),(205775,16887,6,'Foley'),(205775,18311,3,'Producer'),(205775,36657,7,'Art Direction'),(205775,45058,8,'Costume Design'),(205775,54110,6,'Supervising Sound Editor'),(205775,67802,4,'Story'),(205775,67803,4,'Story'),(205775,71127,1,'Underwater Camera'),(205775,124697,6,'Sound Designer'),(205775,223203,10,'Visual Effects Supervisor'),(205775,586503,10,'Visual Effects Coordinator'),(205775,966721,7,'Set Decoration'),(205775,972623,7,'Art Direction'),(205775,979698,7,'Art Direction'),(205775,1019426,3,'Casting Associate'),(205775,1027825,7,'Supervising Art Director'),(205775,1032067,10,'Special Effects Supervisor'),(205775,1106181,11,'Gaffer'),(205775,1327027,10,'Visual Effects Supervisor'),(205775,1334491,7,'Art Department Coordinator'),(205775,1334535,3,'Casting'),(205775,1335545,7,'Construction Coordinator'),(205775,1363579,1,'Camera Operator'),(205775,1367819,10,'Visual Effects Producer'),(205775,1367821,10,'Visual Effects Supervisor'),(205775,1368874,10,'Visual Effects Producer'),(205775,1373694,7,'Supervising Art Director'),(205775,1386918,10,'Visual Effects Producer'),(205775,1392609,6,'Sound Re-Recording Mixer'),(205775,1394123,7,'Set Designer'),(205775,1395340,3,'Producer'),(205775,1403467,9,'Visual Effects Editor'),(205775,1404244,1,'Helicopter Camera'),(205775,1404875,2,'Script Supervisor'),(205775,1405198,11,'Gaffer'),(205775,1406116,10,'Visual Effects Producer'),(205775,1409237,10,'Animation Supervisor'),(205775,1411244,6,'ADR & Dubbing'),(205775,1411244,5,'Dialogue Editor'),(205775,1413035,1,'Steadicam Operator'),(205775,1413508,10,'VFX Supervisor'),(205775,1413843,8,'Hairstylist'),(205775,1421270,8,'Set Costumer'),(205775,1421662,5,'Digital Intermediate'),(205775,1424617,6,'Sound Re-Recording Mixer'),(205775,1427500,7,'Assistant Art Director'),(205775,1430188,1,'Camera Operator'),(205775,1439740,10,'Visual Effects Supervisor'),(205775,1439747,8,'Costume Supervisor'),(205775,1458110,10,'Visual Effects Producer'),(205775,1459924,9,'CG Supervisor'),(205775,1470159,8,'Makeup Artist'),(205775,1480629,8,'Hairstylist'),(205775,1511430,4,'Novel'),(205775,1528344,6,'Sound Editor'),(205775,1530220,8,'Makeup Artist'),(205775,1544338,6,'Music Supervisor'),(205775,1546757,9,'Armorer'),(205775,1548867,9,'CG Supervisor'),(205775,1551771,9,'Property Master'),(205775,1551899,10,'Visual Effects Coordinator'),(205775,1551907,10,'Visual Effects Producer'),(205775,1557591,6,'ADR & Dubbing'),(205775,1557591,5,'Dialogue Editor'),(205775,1561886,1,'Still Photographer'),(205775,1565667,8,'Hairstylist'),(205775,1571980,10,'Special Effects Supervisor'),(205775,1573023,10,'Visual Effects Coordinator'),(205775,1577213,10,'Animation Supervisor'),(205775,1597963,10,'Visual Effects Coordinator'),(205775,1604333,2,'Script Supervisor'),(205775,1614055,9,'Armorer'),(205775,1614056,9,'Armorer'),(205775,1614057,9,'Armorer'),(205775,1614060,6,'Music Editor'),(205775,1614061,6,'Music Editor'),(205775,1614065,9,'Second Unit Cinematographer'),(205775,1614068,11,'Gaffer'),(205775,1614070,11,'Gaffer'),(205775,1614071,11,'Rigging Gaffer'),(205775,1614072,10,'Animation Supervisor'),(205775,1614073,9,'CG Supervisor'),(205775,1614075,9,'CG Supervisor'),(205775,1614080,10,'Visual Effects Coordinator'),(205775,1614084,10,'Visual Effects Coordinator'),(205775,1614085,10,'Visual Effects Coordinator'),(205775,1614086,10,'Visual Effects Coordinator'),(205775,1614087,10,'Visual Effects Coordinator'),(205775,1614093,9,'Special Effects Coordinator'),(205775,1614101,6,'Sound Editor'),(205775,1614104,7,'Assistant Art Director'),(205775,1614105,7,'Greensman'),(205775,1614106,8,'Hairstylist'),(205775,1614107,8,'Hairstylist'),(205775,1614108,8,'Hairstylist'),(205775,1614109,8,'Makeup Designer'),(205775,1614110,5,'Digital Intermediate'),(205775,1614111,5,'First Assistant Editor'),(227973,45848,3,'Casting'),(227973,23486,6,'Original Music Composer'),(227973,71729,2,'Director'),(227973,116805,3,'Producer'),(227973,123945,4,'Characters'),(227973,406615,1,'Director of Photography'),(227973,1302779,4,'Writer'),(227973,1302779,3,'Producer'),(227973,1455462,11,'Lighting Artist'),(227973,1466446,7,'Art Direction'),(227973,1527481,4,'Screenplay'),(227973,1527481,3,'Producer'),(227973,1527482,4,'Screenplay'),(227973,1527482,3,'Producer'),(227973,1536577,5,'Editor'),(227973,1536578,3,'Producer'),(76758,607,2,'Director'),(76758,1353,3,'Producer'),(76758,6444,7,'Production Design'),(76758,11425,8,'Costume Design'),(76758,17117,7,'Set Decoration'),(76758,57913,1,'Director of Photography'),(76758,66054,1,'Camera Operator'),(76758,99693,4,'Writer'),(76758,1032373,7,'Set Designer'),(76758,1051722,6,'Sound Effects Editor'),(76758,1111097,8,'Costume Design'),(76758,1111097,6,'Music'),(76758,1292186,6,'Sound Re-Recording Mixer'),(76758,1346946,10,'Visual Effects Supervisor'),(76758,1391525,6,'Foley'),(76758,1410551,6,'Sound Effects Editor'),(76758,1419234,5,'Dialogue Editor'),(76758,1419237,6,'Foley'),(76758,1445950,5,'Editor'),(76758,1445951,8,'Makeup Artist'),(76758,1445952,3,'Production Manager'),(76758,1445953,7,'Conceptual Design'),(76758,1445954,7,'Set Designer'),(76758,1445955,9,'Sound Recordist'),(76758,1445956,9,'Sound Recordist'),(76758,1445957,9,'Sound Recordist'),(76758,1445958,5,'Dialogue Editor'),(76758,1445959,5,'Dialogue Editor'),(76758,1445960,6,'Sound Effects Editor'),(76758,1445961,6,'Sound Effects Editor'),(76758,1445962,6,'Sound Effects Editor'),(76758,1445963,6,'Sound Effects Editor'),(76758,1445964,6,'Supervising Sound Editor'),(76758,1445964,6,'Sound Re-Recording Mixer'),(76758,1445965,6,'Sound Re-Recording Mixer'),(76758,1445966,6,'Supervising Sound Editor'),(76758,1445967,10,'Visual Effects Producer'),(76758,1445968,10,'Visual Effects Producer'),(76758,1445969,9,'CG Supervisor'),(76758,1445970,10,'Visual Effects Producer'),(76758,1445971,10,'Visual Effects Supervisor'),(76758,1445972,10,'Visual Effects Supervisor'),(76758,1445974,3,'Casting'),(76758,1445975,9,'Public Relations'),(76758,1698170,2,'Assistant Director'),(77953,10572,6,'Music'),(77953,6737,2,'Director'),(77953,6737,3,'Producer'),(77953,23659,3,'Producer'),(77953,55710,3,'Producer'),(77953,55710,4,'Story'),(77953,58225,3,'Producer'),(77953,99410,4,'Screenplay'),(77953,217297,4,'Screenplay'),(77953,582943,9,'Graphic Novel Illustrator'),(77953,582944,9,'Scenic Artist'),(77953,582945,7,'Art Department Assistant'),(37786,520,3,'Producer'),(37786,10577,8,'Costume Design'),(37786,7493,5,'Editor'),(37786,40384,6,'Original Music Composer'),(37786,22105,7,'Production Design'),(37786,10830,3,'Executive Producer'),(37786,38023,2,'Director'),(37786,38023,4,'Writer'),(37786,58366,3,'Producer'),(37786,47915,3,'Producer'),(37786,58367,1,'Director of Photography'),(37786,58854,4,'Characters'),(37786,41332,3,'Executive Producer'),(37786,57430,3,'Executive Producer'),(57800,5713,3,'Executive Producer'),(57800,5716,4,'Screenplay'),(57800,11098,6,'Original Music Composer'),(57800,40138,5,'Editor'),(57800,71729,2,'Director'),(57800,131947,4,'Screenplay'),(57800,229962,2,'Director'),(57800,1098477,4,'Storyboard'),(57800,1239270,10,'Animation'),(57800,1451274,2,'Layout'),(57800,1453938,11,'Lighting Artist'),(57800,1729244,2,'Script Supervisor'),(57800,1731716,7,'Art Direction'),(150689,2366,7,'Production Design'),(150689,3288,4,'Screenplay'),(150689,5021,7,'Supervising Art Director'),(150689,9026,7,'Set Decoration'),(150689,9027,8,'Costume Design'),(150689,9152,6,'Original Music Composer'),(150689,9154,5,'Editor'),(150689,11181,2,'Director'),(150689,11351,6,'Supervising Sound Editor'),(150689,10122,3,'Executive Producer'),(150689,40811,6,'Sound Effects Editor'),(150689,40819,6,'Sound Re-Recording Mixer'),(150689,40823,6,'Foley'),(150689,65614,3,'Producer'),(150689,11092,3,'Producer'),(150689,17649,9,'Second Unit Cinematographer'),(150689,23424,3,'Casting'),(150689,23773,7,'Art Direction'),(150689,24217,1,'Director of Photography'),(150689,24232,1,'Camera Operator'),(150689,75109,11,'Rigging Gaffer'),(150689,75113,1,'Camera Operator'),(150689,75117,11,'Gaffer'),(150689,117241,6,'Sound Effects Editor'),(150689,256928,5,'Digital Intermediate'),(150689,1112036,3,'Producer'),(150689,1112036,3,'Executive Producer'),(150689,1204668,10,'Visual Effects Producer'),(150689,1322138,7,'Supervising Art Director'),(150689,1328380,8,'Costume Supervisor'),(150689,1335562,6,'Sound Effects Editor'),(150689,1335568,6,'Sound Re-Recording Mixer'),(150689,1336164,8,'Hair Designer'),(150689,1337412,6,'Foley'),(150689,1354916,7,'Art Direction'),(150689,1358025,2,'Script Supervisor'),(150689,1367821,10,'Visual Effects Supervisor'),(150689,1368871,10,'Visual Effects Supervisor'),(150689,1376806,1,'Additional Camera'),(150689,1384371,9,'Visual Effects Editor'),(150689,1385883,7,'Art Direction'),(150689,1389548,2,'Script Supervisor'),(150689,1392246,1,'Camera Operator'),(150689,1392614,6,'Dolby Consultant'),(150689,1394415,7,'Art Direction'),(150689,1394416,7,'Set Decoration'),(150689,1398927,10,'Visual Effects Producer'),(150689,1400008,7,'Art Department Coordinator'),(150689,1404244,1,'Helicopter Camera'),(150689,1407848,8,'Key Hair Stylist'),(150689,1409821,8,'Makeup Designer'),(150689,1425481,6,'Sound Re-Recording Mixer'),(150689,1428506,1,'Steadicam Operator'),(150689,1437162,5,'Digital Intermediate'),(150689,1453254,11,'Gaffer'),(150689,1458559,11,'Rigging Gaffer'),(150689,1464519,10,'Visual Effects Producer'),(150689,1470167,1,'Still Photographer'),(150689,1482846,8,'Set Costumer'),(150689,1548887,10,'VFX Editor'),(150689,1548931,10,'Visual Effects Supervisor'),(150689,1548933,9,'Visual Effects Editor'),(150689,1550774,10,'Visual Effects Coordinator'),(150689,1555226,8,'Assistant Costume Designer'),(150689,1568468,10,'VFX Editor'),(150689,1721854,10,'Animation Supervisor'),(150689,1721855,9,'Visual Effects Art Director'),(150689,1721856,9,'CG Supervisor'),(150689,1721858,9,'Visual Effects Editor'),(150689,1721859,10,'Visual Effects Coordinator'),(150689,1721860,10,'Visual Effects Coordinator'),(150689,1721861,10,'Visual Effects Coordinator'),(150689,1721862,10,'Visual Effects Coordinator'),(150689,1721863,10,'Visual Effects Coordinator'),(150689,1721864,10,'Visual Effects Coordinator'),(150689,1721866,10,'Visual Effects Coordinator'),(150689,1721867,10,'Visual Effects Coordinator'),(150689,1721870,7,'Construction Coordinator'),(150689,1721871,5,'Digital Intermediate'),(150689,1721872,5,'Digital Intermediate'),(68737,1997,4,'Screenplay'),(68737,2031,3,'Casting'),(68737,2366,7,'Production Design'),(68737,7229,6,'Music'),(68737,5362,3,'Casting'),(68737,5363,3,'Casting'),(68737,6207,7,'Art Direction'),(68737,9040,1,'Director of Photography'),(68737,41289,3,'Producer'),(68737,11818,7,'Art Direction'),(68737,17831,7,'Supervising Art Director'),(68737,11021,7,'Set Decoration'),(68737,23414,7,'Art Direction'),(68737,23770,7,'Art Direction'),(68737,25061,7,'Art Direction'),(68737,27220,7,'Art Direction'),(68737,29606,4,'Screenplay'),(68737,32490,8,'Hairstylist'),(68737,47102,9,'Second Unit Cinematographer'),(68737,54211,3,'Producer'),(68737,60711,3,'Executive Producer'),(68737,67759,3,'Producer'),(68737,61091,3,'Executive Producer'),(68737,77513,7,'Art Direction'),(68737,91122,1,'Helicopter Camera'),(68737,129876,7,'Art Direction'),(68737,130938,2,'Director'),(68737,328645,3,'Associate Producer'),(68737,958488,8,'Costume Design'),(68737,1033102,11,'Lighting Technician'),(68737,1080778,4,'Screenplay'),(68737,1123892,4,'Novel'),(68737,1311175,7,'Art Direction'),(68737,1314465,8,'Hairstylist'),(68737,1314465,8,'Makeup Artist'),(68737,1320977,8,'Costume Supervisor'),(68737,1355894,10,'Visual Effects'),(68737,1378249,3,'Executive Producer'),(68737,1378716,1,'Still Photographer'),(68737,1378719,8,'Set Costumer'),(68737,1382496,3,'Co-Producer'),(68737,1392959,3,'Executive Producer'),(68737,1392960,3,'Associate Producer'),(68737,1394760,2,'Script Supervisor'),(68737,1401595,11,'Gaffer'),(68737,1405389,1,'Helicopter Camera'),(68737,1415333,8,'Makeup Artist'),(68737,1415634,9,'Second Unit Cinematographer'),(68737,1441272,8,'Makeup Department Head'),(68737,1460672,9,'Post Production Supervisor'),(68737,1492146,8,'Hairstylist'),(68737,1499157,7,'Art Direction'),(68737,1499158,7,'Art Direction'),(68737,1499159,8,'Hairstylist'),(68737,1499160,10,'Animation Supervisor'),(157353,8376,6,'Sound Designer'),(157353,525,3,'Executive Producer'),(157353,556,3,'Executive Producer'),(157353,559,2,'Director'),(157353,561,3,'Casting'),(157353,671,6,'Sound Effects Editor'),(157353,5957,7,'Set Decoration'),(157353,12040,8,'Costume Design'),(157353,15359,9,'Stunt Coordinator'),(157353,20228,6,'Foley'),(157353,42281,7,'Set Designer'),(157353,47285,3,'Producer'),(157353,47286,3,'Producer'),(157353,66689,7,'Supervising Art Director'),(157353,60579,7,'Production Design'),(157353,60665,3,'Casting'),(157353,72853,1,'Director of Photography'),(157353,958214,7,'Set Designer'),(157353,986291,3,'Producer'),(157353,1015427,6,'Boom Operator'),(157353,1119475,2,'Script Supervisor'),(157353,1155661,4,'Writer'),(157353,1155664,3,'Producer'),(157353,1155665,3,'Producer'),(157353,1155666,3,'Producer'),(157353,1155667,3,'Producer'),(157353,1155668,10,'Visual Effects Producer'),(157353,1172441,7,'Art Direction'),(157353,1198454,9,'Stunts'),(157353,1321589,8,'Costume Supervisor'),(157353,1322015,8,'Makeup Department Head'),(157353,1327140,7,'Art Direction'),(157353,1330079,7,'Art Direction'),(157353,1335416,6,'Sound Effects Editor'),(157353,1337418,10,'Visual Effects Supervisor'),(157353,1347759,7,'Location Scout'),(157353,1357043,7,'Art Direction'),(157353,1357044,7,'Conceptual Design'),(157353,1357045,7,'Art Department Coordinator'),(157353,1357046,7,'Conceptual Design'),(157353,1357047,7,'Set Designer'),(157353,1357049,7,'Set Designer'),(157353,1357050,7,'Greensman'),(157353,1357051,7,'Set Designer'),(157353,1357052,7,'Conceptual Design'),(157353,1357053,7,'Sculptor'),(157353,1357055,7,'Art Department Coordinator'),(157353,1357056,7,'Set Designer'),(157353,1357057,7,'Leadman'),(157353,1357058,9,'Property Master'),(157353,1357059,5,'Dialogue Editor'),(157353,1357060,6,'Foley'),(157353,1357061,6,'Sound Designer'),(157353,1357062,9,'Special Effects Coordinator'),(157353,1357063,9,'Stunt Coordinator'),(157353,1357064,1,'Camera Operator'),(157353,1357065,1,'Camera Operator'),(157353,1357066,1,'Camera Operator'),(157353,1357067,8,'Set Costumer'),(157353,1357068,8,'Set Costumer'),(157353,1357069,6,'Music Editor'),(157353,1357070,9,'Transportation Coordinator'),(157353,1357071,9,'Transportation Captain'),(157353,1357072,3,'Location Manager'),(157353,1357073,7,'Location Scout'),(157353,1456696,9,'Compositors'),(157353,1488513,9,'Stunts'),(61791,495,3,'Casting'),(61791,898,5,'Editor'),(61791,1313,1,'Director of Photography'),(61791,3987,5,'Editor'),(61791,5362,3,'Casting'),(61791,5363,3,'Casting'),(61791,6057,8,'Costume Design'),(61791,9152,6,'Original Music Composer'),(61791,9152,6,'Orchestrator'),(61791,12240,4,'Novel'),(61791,13194,5,'Digital Intermediate'),(61791,16177,6,'Sound Re-Recording Mixer'),(61791,17829,7,'Production Design'),(61791,17831,7,'Art Direction'),(61791,20406,1,'Helicopter Camera'),(61791,22061,7,'Supervising Art Director'),(61791,11021,7,'Set Decoration'),(61791,52193,6,'ADR & Dubbing'),(61791,112656,8,'Makeup Department Head'),(61791,113042,6,'First Assistant Sound Editor'),(61791,113045,6,'Foley'),(61791,113051,6,'Sound Effects Editor'),(61791,113055,6,'ADR & Dubbing'),(61791,113086,6,'Foley'),(61791,113090,6,'Foley'),(61791,59812,9,'Second Unit Cinematographer'),(61791,61177,7,'Art Direction'),(61791,67802,4,'Screenplay'),(61791,67802,3,'Producer'),(61791,67803,4,'Screenplay'),(61791,67803,3,'Producer'),(61791,77357,2,'Director'),(61791,266920,3,'Producer'),(61791,935717,3,'Producer'),(61791,1192644,11,'Gaffer'),(61791,1202352,5,'First Assistant Editor'),(61791,1305741,8,'Assistant Costume Designer'),(61791,1320977,8,'Costume Supervisor'),(61791,1335568,6,'Music Editor'),(61791,1378709,9,'Digital Effects Supervisor'),(61791,1378717,11,'Gaffer'),(61791,1378728,2,'Script Supervisor'),(61791,1384367,5,'Dialogue Editor'),(61791,1384398,2,'Script Supervisor'),(61791,1389130,7,'Art Department Coordinator'),(61791,1391671,7,'Set Designer'),(61791,1391695,10,'Visual Effects Supervisor'),(61791,1394070,10,'Visual Effects Supervisor'),(61791,1394282,10,'Visual Effects Supervisor'),(61791,1394973,1,'Still Photographer'),(61791,1398946,6,'Supervising Sound Editor'),(61791,1399057,6,'ADR & Dubbing'),(61791,1401563,6,'Sound Effects Editor'),(61791,1401593,1,'Helicopter Camera'),(61791,1401596,10,'Animation Director'),(61791,1401793,10,'Visual Effects Producer'),(61791,1401808,10,'Animation Director'),(61791,1401998,10,'Animation Director'),(61791,1406767,11,'Gaffer'),(61791,1409744,1,'Camera Operator'),(61791,1410346,7,'Construction Coordinator'),(61791,1413437,7,'Property Master'),(61791,1418375,10,'Animation Director'),(61791,1418381,9,'Digital Effects Supervisor'),(61791,1418383,10,'Animation Director'),(61791,1418397,10,'Visual Effects Supervisor'),(61791,1418404,11,'Rigging Gaffer'),(61791,1418412,5,'First Assistant Editor'),(61791,1419604,10,'Visual Effects Supervisor'),(61791,1419605,10,'Visual Effects Supervisor'),(61791,1424621,10,'Animation Supervisor'),(61791,1424705,5,'Digital Intermediate'),(61791,1426761,8,'Hair Department Head'),(61791,1426765,7,'Greensman'),(61791,1431077,1,'Camera Operator'),(61791,1431098,8,'Set Costumer'),(61791,1431099,8,'Set Costumer'),(61791,1441365,1,'Steadicam Operator'),(61791,1460424,5,'First Assistant Editor'),(61791,1500901,3,'Casting Associate'),(61791,1506377,10,'Animation Supervisor'),(61791,1512292,2,'Script Supervisor'),(61791,1513861,8,'Key Hair Stylist'),(61791,1533015,10,'Animation Director'),(61791,1544669,6,'Sound Effects Editor'),(61791,1548930,10,'Visual Effects Coordinator'),(61791,1550778,1,'Camera Operator'),(61791,1551487,5,'First Assistant Editor'),(61791,1552371,10,'Animation Director'),(61791,1552381,10,'Visual Effects Producer'),(61791,1552382,10,'Visual Effects Coordinator'),(61791,1552396,5,'Dialogue Editor'),(61791,1552397,6,'Boom Operator'),(61791,1552399,8,'Set Costumer'),(61791,1552425,8,'Seamstress'),(61791,1552426,8,'Seamstress'),(61791,1552427,2,'Script Supervisor'),(61791,1552433,3,'Casting Associate'),(61791,1552434,3,'Casting Associate'),(61791,1552468,1,'Camera Operator'),(61791,1552469,11,'Gaffer'),(61791,1552472,11,'Rigging Grip'),(61791,1552473,1,'First Assistant Camera'),(61791,1552475,1,'First Assistant Camera'),(61791,1552476,1,'First Assistant Camera'),(61791,1552477,1,'First Assistant Camera'),(61791,1552479,6,'Music Editor'),(61791,1558713,9,'Armorer'),(61791,1621492,7,'Construction Coordinator'),(61791,1854975,7,'Construction Foreman'),(47964,3965,3,'Casting'),(47964,7229,6,'Music'),(47964,6040,3,'Producer'),(47964,6043,5,'Editor'),(47964,7670,4,'Writer'),(47964,12028,2,'Director'),(47964,12033,1,'Director of Photography'),(47964,13224,6,'Dolby Consultant'),(47964,16177,6,'Sound Re-Recording Mixer'),(47964,19291,7,'Production Design'),(47964,18185,4,'Screenplay'),(47964,41336,7,'Set Decoration'),(47964,49670,3,'Casting'),(47964,113048,9,'Sound Recordist'),(47964,113075,6,'Sound Effects Editor'),(47964,67702,3,'Casting'),(47964,104044,10,'Visual Effects Supervisor'),(47964,113665,3,'Producer'),(47964,1026854,10,'Animation Supervisor'),(47964,1034748,3,'Casting'),(47964,1052870,8,'Costume Design'),(47964,1063017,9,'Stunts'),(47964,1177771,7,'Set Decoration'),(47964,1198829,3,'Casting'),(47964,1214379,10,'Visual Effects Producer'),(47964,1268981,10,'Visual Effects Supervisor'),(47964,1322071,8,'Costume Supervisor'),(47964,1322142,7,'Supervising Art Director'),(47964,1327763,3,'Casting'),(47964,1329411,7,'Art Direction'),(47964,1333944,8,'Costume Supervisor'),(47964,1335151,10,'Visual Effects Supervisor'),(47964,1350244,10,'Visual Effects Supervisor'),(47964,1354927,10,'Visual Effects Supervisor'),(47964,1354929,10,'Visual Effects Producer'),(47964,1360099,6,'Sound Effects Editor'),(47964,1363066,7,'Art Direction'),(47964,1367493,6,'Foley'),(47964,1367494,6,'Sound Effects Editor'),(47964,1367496,10,'Visual Effects Producer'),(47964,1372955,1,'Additional Camera'),(47964,1374788,7,'Greensman'),(47964,1377220,6,'Sound Re-Recording Mixer'),(47964,1378240,1,'Still Photographer'),(47964,1384372,9,'Visual Effects Editor'),(47964,1390524,6,'Supervising Sound Editor'),(47964,1391520,9,'Second Unit Cinematographer'),(47964,1391697,9,'Stunt Coordinator'),(47964,1392594,7,'Sculptor'),(47964,1392595,7,'Sculptor'),(47964,1392635,9,'Stunt Coordinator'),(47964,1392657,9,'Transportation Coordinator'),(47964,1392663,3,'Location Manager'),(47964,1392664,3,'Location Manager'),(47964,1394115,7,'Assistant Art Director'),(47964,1394315,3,'Location Manager'),(47964,1399303,10,'Visual Effects Supervisor'),(47964,1399313,10,'Visual Effects Producer'),(47964,1399629,7,'Greensman'),(47964,1399643,9,'Unit Publicist'),(47964,1399644,2,'Script Supervisor'),(47964,1399871,10,'Visual Effects Producer'),(47964,1403532,8,'Makeup Artist'),(47964,1404244,1,'Helicopter Camera'),(47964,1407696,5,'Digital Intermediate'),(47964,1408358,1,'Camera Operator'),(47964,1418464,10,'Visual Effects Supervisor'),(47964,1419731,6,'Music Editor'),(47964,1420634,9,'Property Master'),(47964,1421652,1,'Camera Operator'),(47964,1422058,9,'Armorer'),(47964,1424151,8,'Makeup Department Head'),(47964,1424180,9,'Second Unit Cinematographer'),(47964,1425343,6,'ADR & Dubbing'),(47964,1427435,5,'Digital Intermediate'),(47964,1427840,11,'Gaffer'),(47964,1427850,2,'Script Supervisor'),(47964,1431033,9,'CG Supervisor'),(47964,1436594,9,'Stunt Coordinator'),(47964,1445895,1,'Camera Operator'),(47964,1458413,7,'Art Direction'),(47964,1458414,7,'Set Decoration'),(47964,1458416,8,'Hairstylist'),(47964,1458417,8,'Makeup Artist'),(47964,1458419,7,'Art Department Coordinator'),(47964,1458422,9,'Scenic Artist'),(47964,1458425,9,'Sound Recordist'),(47964,1458431,9,'CG Supervisor'),(47964,1458432,9,'CG Supervisor'),(47964,1458433,10,'Animation Supervisor'),(47964,1458438,10,'Visual Effects Producer'),(47964,1458440,10,'Visual Effects Producer'),(47964,1458441,9,'Visual Effects Editor'),(47964,1458442,9,'Visual Effects Editor'),(47964,1458443,10,'Visual Effects Supervisor'),(47964,1458444,9,'Stunt Coordinator'),(47964,1458445,1,'Camera Operator'),(47964,1458446,1,'Camera Operator'),(47964,1458447,11,'Gaffer'),(47964,1458448,1,'Additional Photography'),(47964,1458449,5,'First Assistant Editor'),(47964,1458450,9,'Transportation Coordinator'),(47964,1458451,3,'Location Manager'),(47964,1458452,9,'Dialect Coach'),(47964,1486198,3,'Casting Associate'),(47964,1539431,9,'Armorer'),(47964,1539433,9,'Armorer'),(47964,1539434,9,'Armorer'),(47964,1831266,9,'Stunts'),(44048,2445,3,'Producer'),(44048,2215,3,'Casting'),(44048,541,5,'Editor'),(44048,893,2,'Director'),(44048,893,3,'Producer'),(44048,4034,8,'Costume Design'),(44048,5553,6,'Original Music Composer'),(44048,9818,7,'Art Direction'),(44048,13920,3,'Producer'),(44048,14378,7,'Art Direction'),(44048,13588,7,'Set Decoration'),(44048,18189,4,'Writer'),(44048,30714,3,'Executive Producer'),(44048,55227,6,'Production Sound Mixer'),(44048,63989,3,'Producer'),(44048,56519,5,'Editor'),(44048,66689,7,'Art Direction'),(44048,58145,3,'Executive Producer'),(44048,60579,7,'Production Design'),(44048,63310,1,'Director of Photography'),(44048,66569,7,'Art Direction'),(44048,113665,3,'Producer'),(44048,327966,3,'Executive Producer'),(44048,548435,6,'Sound Mixer'),(44048,1322466,8,'Costume Supervisor'),(44048,1323090,8,'Makeup Department Head'),(44048,1445842,1,'Still Photographer'),(116745,7233,7,'Production Design'),(116745,10572,6,'Original Music Composer'),(116745,7262,1,'Director of Photography'),(116745,7399,2,'Director'),(116745,7399,3,'Producer'),(116745,14376,5,'Editor'),(116745,20647,4,'Screenplay'),(116745,22302,3,'Producer'),(116745,32904,7,'Art Direction'),(116745,52160,3,'Producer'),(116745,38084,8,'Costume Design'),(116745,65043,3,'Producer'),(116745,928414,3,'Casting'),(116745,1040314,4,'Story'),(116745,1192700,6,'Music Supervisor'),(116745,1337468,6,'Music Editor'),(116745,1341813,6,'Music Editor'),(116745,1407019,9,'Visual Effects Editor'),(116745,1452675,1,'Still Photographer'),(116745,1457935,9,'Compositors'),(116745,1525544,8,'Hairstylist'),(65754,2260,4,'Writer'),(65754,2260,3,'Executive Producer'),(65754,2997,3,'Producer'),(65754,3186,6,'Music'),(65754,5338,6,'Sound Effects Editor'),(65754,7467,2,'Director'),(65754,7475,3,'Producer'),(65754,7479,1,'Director of Photography'),(65754,7481,3,'Casting'),(65754,7763,6,'Supervising Sound Editor'),(65754,11354,9,'Stunt Coordinator'),(65754,40765,1,'Camera Operator'),(65754,17455,5,'Editor'),(65754,33711,7,'Set Decoration'),(65754,20209,7,'Production Design'),(65754,21796,7,'Set Designer'),(65754,40416,9,'Special Effects'),(65754,49442,3,'Casting Associate'),(65754,66689,7,'Art Direction'),(65754,76593,1,'Still Photographer'),(65754,73799,4,'Novel'),(65754,85717,6,'Music Editor'),(65754,91059,3,'Unit Production Manager'),(65754,89425,9,'Sound Recordist'),(65754,114547,3,'Location Manager'),(65754,135935,9,'Property Master'),(65754,142391,6,'Music'),(65754,184314,6,'ADR & Dubbing'),(65754,964726,5,'Editor'),(65754,997661,8,'Makeup Department Head'),(65754,1002917,3,'Producer'),(65754,1002919,8,'Costume Design'),(65754,1077406,3,'Casting'),(65754,1108466,3,'Casting'),(65754,1116937,6,'Foley'),(65754,1152810,7,'Art Direction'),(65754,1172443,1,'Still Photographer'),(65754,1208436,8,'Makeup Artist'),(65754,1208652,7,'Set Decoration'),(65754,1240514,3,'Producer'),(65754,1306202,1,'Additional Camera'),(65754,1309924,6,'Scoring Mixer'),(65754,1311507,9,'Special Effects Coordinator'),(65754,1315700,8,'Makeup Artist'),(65754,1319137,8,'Costume Supervisor'),(65754,1319744,8,'Costume Supervisor'),(65754,1322050,7,'Art Direction'),(65754,1327443,7,'Art Direction'),(65754,1339435,7,'Set Designer'),(65754,1339441,7,'Set Designer'),(65754,1339445,7,'Construction Coordinator'),(65754,1348006,10,'Visual Effects Producer'),(65754,1360093,7,'Set Designer'),(65754,1367550,7,'Art Department Assistant'),(65754,1367826,10,'Visual Effects Producer'),(65754,1367827,10,'Visual Effects Supervisor'),(65754,1368859,7,'Set Designer'),(65754,1368863,7,'Set Designer'),(65754,1374823,3,'Line Producer'),(65754,1378828,6,'Sound Re-Recording Mixer'),(65754,1384375,10,'Visual Effects Coordinator'),(65754,1389534,6,'ADR & Dubbing'),(65754,1394104,2,'Script Supervisor'),(65754,1395435,7,'Set Designer'),(65754,1395437,7,'Sculptor'),(65754,1397823,6,'Foley'),(65754,1399117,6,'Sound Effects Editor'),(65754,1400789,9,'Property Master'),(65754,1401885,7,'Sculptor'),(65754,1402143,10,'Animation'),(65754,1403191,10,'Visual Effects Producer'),(65754,1406614,6,'Sound Re-Recording Mixer'),(65754,1407023,1,'Camera Operator'),(65754,1411509,7,'Set Designer'),(65754,1411540,5,'Digital Intermediate'),(65754,1413045,3,'Location Manager'),(65754,1413125,8,'Set Costumer'),(65754,1414178,6,'Sound Effects Editor'),(65754,1415465,6,'Sound Effects Editor'),(65754,1415474,9,'CG Supervisor'),(65754,1415475,10,'Visual Effects Producer'),(65754,1415487,10,'Visual Effects Supervisor'),(65754,1415509,6,'Music Editor'),(65754,1415639,8,'Set Costumer'),(65754,1418464,10,'Visual Effects Supervisor'),(65754,1422411,6,'Sound Effects Editor'),(65754,1422412,9,'Special Effects Coordinator'),(65754,1422418,6,'Music Editor'),(65754,1425971,8,'Hairstylist'),(65754,1429243,7,'Leadman'),(65754,1432640,5,'Digital Intermediate'),(65754,1432641,5,'Digital Intermediate'),(65754,1447626,11,'Gaffer'),(65754,1448325,1,'Helicopter Camera'),(65754,1455312,3,'Location Manager'),(65754,1455316,8,'Makeup Artist'),(65754,1455330,7,'Construction Coordinator'),(65754,1455992,7,'Art Direction'),(65754,1455993,7,'Art Direction'),(65754,1455994,7,'Art Direction'),(65754,1455995,7,'Supervising Art Director'),(65754,1455997,7,'Art Department Coordinator'),(65754,1455999,7,'Art Department Coordinator'),(65754,1456001,7,'Construction Coordinator'),(65754,1456004,7,'Greensman'),(65754,1456007,9,'Property Master'),(65754,1456008,7,'Set Decoration'),(65754,1456028,8,'Makeup Department Head'),(65754,1456029,8,'Hairstylist'),(65754,1456030,8,'Hairstylist'),(65754,1456041,6,'Sound Re-Recording Mixer'),(65754,1456042,9,'Special Effects Coordinator'),(65754,1456043,9,'Visual Effects Art Director'),(65754,1456044,10,'Animation'),(65754,1456045,10,'Animation'),(65754,1456050,10,'Visual Effects Producer'),(65754,1456051,9,'Visual Effects Editor'),(65754,1456052,9,'Visual Effects Art Director'),(65754,1456053,10,'Visual Effects Supervisor'),(65754,1456054,11,'Gaffer'),(65754,1456055,11,'Gaffer'),(65754,1456056,11,'Rigging Gaffer'),(65754,1456057,11,'Rigging Gaffer'),(65754,1456063,1,'Still Photographer'),(65754,1456064,8,'Set Costumer'),(65754,1456065,8,'Set Costumer'),(65754,1456066,8,'Set Costumer'),(65754,1456068,9,'Transportation Coordinator'),(65754,1456069,9,'Picture Car Coordinator'),(65754,1456071,2,'Script Supervisor'),(65754,1456072,3,'Location Manager'),(65754,1456073,3,'Location Manager'),(65754,1456074,3,'Location Manager'),(65754,1456076,9,'Dialect Coach'),(65754,1463178,10,'Visual Effects'),(65754,1478854,6,'Foley'),(65754,1483827,9,'Stunts'),(65754,1486851,5,'Assistant Editor'),(65754,1534968,10,'Visual Effects'),(65754,1534969,2,'Assistant Director'),(65754,1534970,7,'Standby Painter'),(65754,1534982,9,'Propmaker'),(65754,1534985,6,'Sound'),(65754,1535090,10,'Visual Effects Supervisor'),(65754,1535093,10,'Digital Compositors'),(65754,1535105,6,'ADR & Dubbing'),(65754,1549026,9,'Stunts Coordinator'),(65754,1549350,8,'Prosthetic Supervisor'),(65754,1554385,10,'Visual Effects'),(271969,6870,3,'Producer'),(271969,7779,3,'Producer'),(271969,10002,4,'Novel'),(271969,23430,2,'Director'),(271969,51679,4,'Screenplay'),(271969,138183,4,'Screenplay'),(271969,223609,3,'Producer'),(271969,942904,3,'Producer'),(258509,5666,6,'Original Music Composer'),(258509,11707,4,'Screenplay'),(258509,30694,3,'Producer'),(258509,30694,4,'Characters'),(258509,30696,3,'Producer'),(258509,30696,4,'Characters'),(258509,46589,8,'Costume Design'),(258509,68573,2,'Director'),(258509,1393783,9,'Choreographer'),(258509,1393784,9,'Choreographer'),(258509,1447317,4,'Storyboard'),(258509,1542687,9,'Executive Music Producer'),(257344,4485,3,'Executive Producer'),(257344,6874,3,'Executive Producer'),(257344,10965,2,'Director'),(257344,10965,3,'Producer'),(257344,11222,3,'Producer'),(257344,11772,3,'Executive Producer'),(257344,20649,5,'Editor'),(257344,17828,3,'Producer'),(257344,19292,3,'Producer'),(257344,20818,3,'Producer'),(257344,20821,3,'Executive Producer'),(257344,56728,4,'Screenplay'),(257344,56728,3,'Executive Producer'),(257344,62637,3,'Executive Producer'),(257344,71600,3,'Executive Producer'),(257344,132315,4,'Screenplay'),(257344,211671,10,'Animation'),(257344,227440,6,'Music'),(257344,963297,3,'Co-Producer'),(257344,1043831,1,'Director of Photography'),(257344,1106516,3,'Executive Producer'),(257344,1106516,4,'Story'),(257344,1335461,3,'Executive Producer'),(257344,1424620,10,'Animation Supervisor'),(257344,1455602,10,'Animation'),(257344,1455608,10,'Animation'),(257344,1473410,3,'Executive Producer'),(257344,1473411,3,'Executive Producer'),(257344,1473412,10,'Animation'),(257344,1473413,10,'Animation'),(257344,1473414,10,'Animation'),(257344,1473415,10,'Animation'),(257344,1473416,10,'Animation'),(257344,1473417,10,'Animation'),(257344,1473418,10,'Animation'),(257344,1473419,10,'Animation'),(257344,1473420,10,'Animation'),(257344,1473421,10,'Animation'),(257344,1473422,10,'Animation'),(257344,1473423,10,'VFX Artist'),(76285,4950,1,'Director of Photography'),(76285,10569,3,'Producer'),(76285,10965,3,'Producer'),(76285,11222,3,'Executive Producer'),(76285,11823,8,'Costume Design'),(76285,17828,3,'Producer'),(76285,17829,7,'Production Design'),(76285,22061,7,'Supervising Art Director'),(76285,63720,3,'Executive Producer'),(76285,66513,3,'Associate Producer'),(76285,70789,6,'Music'),(76285,109857,2,'Director'),(76285,84220,3,'Co-Producer'),(76285,109514,4,'Novel'),(76285,171830,4,'Screenplay'),(76285,1164341,9,'Stunts'),(76285,1355894,10,'Visual Effects'),(76285,1407019,9,'Visual Effects Editor'),(76285,1447326,4,'Storyboard'),(76285,1447542,10,'VFX Artist'),(76285,1455463,10,'Visual Effects'),(76285,1456696,9,'Compositors'),(76285,1459752,10,'Animation'),(76285,1460599,10,'VFX Artist'),(76285,1460611,10,'Animation'),(76285,1460634,9,'Compositors'),(76285,1463874,4,'Storyboard'),(76285,1642697,10,'Animation Supervisor'),(76285,1737894,9,'Stunts'),(291805,135,3,'Producer'),(291805,3965,3,'Casting'),(291805,6688,8,'Costume Design'),(291805,6041,6,'Music'),(291805,9612,4,'Screenplay'),(291805,9612,4,'Story'),(291805,9439,6,'Foley'),(291805,9573,1,'Director of Photography'),(291805,15345,3,'Producer'),(291805,15346,3,'Producer'),(291805,25140,7,'Production Design'),(291805,29609,7,'Supervising Art Director'),(291805,54507,2,'Director'),(291805,84435,4,'Screenplay'),(291805,181856,5,'Editor'),(291805,978127,6,'Sound Re-Recording Mixer'),(291805,1034748,3,'Casting'),(291805,1157975,10,'VFX Production Coordinator'),(291805,1205876,8,'Assistant Costume Designer'),(291805,1327762,7,'Set Decoration'),(291805,1334489,7,'Art Direction'),(291805,1338372,6,'Foley'),(291805,1342656,6,'Supervising Sound Editor'),(291805,1345594,6,'Sound Designer'),(291805,1345594,6,'Sound Re-Recording Mixer'),(291805,1367493,6,'Foley'),(291805,1371064,6,'Foley'),(291805,1376803,10,'Visual Effects Supervisor'),(291805,1379991,10,'Visual Effects Supervisor'),(291805,1380002,1,'Still Photographer'),(291805,1389133,6,'Sound Re-Recording Mixer'),(291805,1389548,2,'Script Supervisor'),(291805,1397196,6,'Sound Effects Editor'),(291805,1399304,9,'Visual Effects Editor'),(291805,1402142,10,'Visual Effects Supervisor'),(291805,1405196,1,'Camera Operator'),(291805,1408301,6,'Sound Effects Editor'),(291805,1408354,1,'Steadicam Operator'),(291805,1412722,5,'Digital Intermediate'),(291805,1412752,5,'First Assistant Editor'),(291805,1414558,5,'Digital Intermediate'),(291805,1417400,8,'Hairstylist'),(291805,1422859,1,'Helicopter Camera'),(291805,1430188,1,'Camera Operator'),(291805,1430408,8,'Hair Designer'),(291805,1430408,8,'Makeup Designer'),(291805,1430501,8,'Costume Supervisor'),(291805,1458993,8,'Makeup Artist'),(291805,1466996,8,'Key Hair Stylist'),(291805,1483135,10,'Visual Effects Coordinator'),(291805,1483141,10,'Visual Effects Supervisor'),(291805,1486198,3,'Casting Associate'),(291805,1487710,7,'Art Direction'),(291805,1487711,7,'Art Direction'),(291805,1494205,9,'CG Supervisor'),(291805,1500872,1,'Camera Operator'),(291805,1533026,10,'Visual Effects Producer'),(291805,1539786,8,'Assistant Costume Designer'),(291805,1556418,9,'Armorer'),(291805,1565663,10,'Visual Effects Coordinator'),(291805,1569322,5,'Digital Intermediate'),(291805,1578411,10,'Visual Effects Producer'),(291805,1579401,8,'Set Costumer'),(291805,1583827,10,'Visual Effects Supervisor'),(291805,1591764,11,'Gaffer'),(291805,1616379,10,'Visual Effects Coordinator'),(291805,1650005,5,'Digital Intermediate'),(291805,1652657,9,'Armorer'),(291805,1652658,9,'Armorer'),(291805,1682058,6,'Sound Effects Editor'),(291805,1685996,6,'Boom Operator'),(291805,1714909,10,'VFX Production Coordinator'),(291805,1721398,7,'Art Department Coordinator'),(291805,1721419,10,'Animation'),(291805,1721420,10,'Animation'),(291805,1721421,10,'Animation'),(291805,1721422,10,'Animation'),(291805,1721441,9,'CG Supervisor'),(291805,1721442,10,'VFX Editor'),(291805,1721443,10,'VFX Editor'),(291805,1721444,10,'VFX Production Coordinator'),(291805,1721445,10,'VFX Supervisor'),(291805,1721446,10,'Visual Effects Coordinator'),(291805,1721447,10,'Visual Effects Coordinator'),(291805,1721449,10,'Visual Effects Supervisor'),(291805,1721449,10,'Visual Effects Coordinator'),(291805,1721450,9,'Visual Effects Editor'),(291805,1721451,9,'Visual Effects Editor'),(291805,1721452,9,'Visual Effects Editor'),(291805,1721453,9,'Visual Effects Editor'),(291805,1721454,10,'Visual Effects Supervisor'),(291805,1721456,10,'Special Effects Supervisor'),(46195,5714,2,'Director'),(46195,5714,4,'Story'),(46195,5718,3,'Producer'),(46195,11098,6,'Original Music Composer'),(46195,52696,4,'Screenplay'),(46195,58144,4,'Screenplay'),(46195,97262,4,'Screenplay'),(46195,97263,4,'Screenplay'),(46195,87059,10,'Animation Supervisor'),(46195,161888,4,'Story'),(46195,183417,4,'Story'),(46195,406615,9,'Cinematography'),(46195,535878,3,'Producer'),(46195,563826,6,'Music'),(46195,1447567,4,'Storyboard'),(46195,1453938,11,'Lighting Artist'),(49852,23922,4,'Writer'),(49852,58728,2,'Director'),(49852,58728,4,'Writer'),(52451,4014,2,'Director'),(52451,4014,3,'Producer'),(52451,4016,3,'Producer'),(52451,4017,3,'Producer'),(52451,1851,5,'Editor'),(52451,2214,6,'Music'),(52451,8921,7,'Set Decoration'),(52451,9156,4,'Screenplay'),(52451,40803,8,'Makeup Artist'),(52451,17063,8,'Costume Design'),(52451,17080,3,'Executive Producer'),(52451,22818,1,'Director of Photography'),(52451,24219,5,'Editor'),(52451,24840,4,'Novel'),(52451,40835,7,'Production Design'),(52451,113306,4,'Screenplay'),(52451,587804,8,'Hairstylist'),(52451,967137,7,'Art Direction'),(52451,1002502,7,'Art Direction'),(52451,1322019,7,'Supervising Art Director'),(52451,1322020,8,'Costume Supervisor'),(52451,1340919,2,'Script Supervisor'),(52451,1398505,3,'Casting'),(52451,1406584,8,'Makeup Artist'),(52451,1428909,8,'Hairstylist'),(52451,1470158,8,'Hairstylist'),(52451,1470158,8,'Hair Designer'),(52451,1519288,8,'Makeup Artist'),(52451,1530229,8,'Costume Supervisor'),(52451,1530230,8,'Seamstress'),(52451,1530231,10,'Special Effects Supervisor'),(76492,5666,6,'Original Music Composer'),(76492,7903,3,'Casting'),(76492,52700,3,'Producer'),(76492,185438,2,'Director'),(76492,1003944,4,'Writer'),(76492,1003944,4,'Story'),(76492,1205986,3,'Production Manager'),(76492,1447378,10,'Animation'),(76492,1447388,10,'Animation'),(76492,1453938,11,'Lighting Artist'),(76492,1455462,11,'Lighting Artist'),(76492,1460607,10,'Animation'),(76492,1463178,2,'Layout'),(59961,7232,3,'Casting'),(59961,5292,3,'Executive Producer'),(59961,6208,7,'Production Design'),(59961,9646,5,'Editor'),(59961,10976,9,'Stunt Coordinator'),(59961,11409,1,'Director of Photography'),(59961,15541,7,'Set Decoration'),(59961,17751,3,'Executive Producer'),(59961,19282,3,'Producer'),(59961,10851,6,'Original Music Composer'),(59961,35179,3,'Executive Producer'),(59961,36605,8,'Costume Design'),(59961,60471,3,'Executive Producer'),(59961,60472,3,'Executive Producer'),(59961,125738,2,'Director'),(59961,185037,7,'Set Decoration'),(59961,212823,7,'Set Decoration'),(59961,230174,4,'Writer'),(59961,1050643,3,'Executive Producer'),(59961,1053407,9,'Special Effects Coordinator'),(59108,339,3,'Producer'),(59108,776,3,'Producer'),(59108,1098,5,'Editor'),(59108,1886,4,'Story'),(59108,1886,4,'Screenplay'),(59108,2689,4,'Screenplay'),(59108,5283,3,'Executive Producer'),(59108,5284,3,'Producer'),(59108,9178,7,'Production Design'),(59108,11099,1,'Director of Photography'),(59108,27040,7,'Art Direction'),(59108,11091,2,'Director'),(59108,23420,3,'Executive Producer'),(59108,23486,6,'Original Music Composer'),(59108,38084,8,'Costume Design'),(59108,46943,3,'Casting'),(59108,59265,4,'Story'),(59108,59266,4,'Story'),(59108,1407019,9,'Visual Effects Editor'),(157350,931,3,'Producer'),(157350,5914,3,'Casting'),(157350,6581,5,'Editor'),(157350,8706,7,'Set Decoration'),(157350,9820,7,'Production Design'),(157350,10974,10,'Visual Effects Supervisor'),(157350,17329,2,'Director'),(157350,19862,3,'Producer'),(157350,19863,7,'Supervising Art Director'),(157350,26192,1,'Director of Photography'),(157350,37298,8,'Costume Design'),(157350,41592,7,'Art Direction'),(157350,39123,3,'Casting'),(157350,56827,6,'Music'),(157350,67846,5,'Editor'),(157350,62724,7,'Set Designer'),(157350,71127,1,'Underwater Camera'),(157350,76003,9,'Dialect Coach'),(157350,135727,1,'Additional Camera'),(157350,158916,6,'Sound Re-Recording Mixer'),(157350,176489,4,'Screenplay'),(157350,228135,4,'Screenplay'),(157350,930016,6,'Sound Designer'),(157350,933691,9,'Transportation Captain'),(157350,935491,7,'Art Department Coordinator'),(157350,1142338,1,'Camera Operator'),(157350,1319490,9,'Makeup Effects'),(157350,1323760,8,'Makeup Artist'),(157350,1327524,7,'Set Designer'),(157350,1334779,9,'Property Master'),(157350,1340739,6,'Foley'),(157350,1342658,5,'Dialogue Editor'),(157350,1345249,3,'Producer'),(157350,1345615,5,'Color Timer'),(157350,1347740,6,'Sound Re-Recording Mixer'),(157350,1352956,4,'Novel'),(157350,1352957,7,'Art Direction'),(157350,1352958,7,'Art Direction'),(157350,1352959,8,'Makeup Department Head'),(157350,1352960,9,'Propmaker'),(157350,1352961,7,'Leadman'),(157350,1352962,7,'Assistant Art Director'),(157350,1352963,7,'Set Designer'),(157350,1352964,7,'Construction Coordinator'),(157350,1352965,7,'Set Designer'),(157350,1352966,5,'Dialogue Editor'),(157350,1352967,6,'Sound Effects Editor'),(157350,1352968,5,'Dialogue Editor'),(157350,1352969,6,'Supervising Sound Editor'),(157350,1352970,6,'Boom Operator'),(157350,1352971,10,'Visual Effects Supervisor'),(157350,1352973,10,'Visual Effects Producer'),(157350,1352975,11,'Lighting Artist'),(157350,1352976,9,'Stunt Coordinator'),(157350,1352977,8,'Costume Supervisor'),(157350,1352979,6,'Music Editor'),(157350,1352981,6,'Music Editor'),(157350,1352982,9,'Transportation Captain'),(157350,1352983,2,'Script Supervisor'),(157350,1352985,3,'Location Manager'),(157350,1352986,9,'Studio Teachers'),(157350,1352987,9,'Dialect Coach'),(157350,1352988,3,'Location Manager'),(157350,1352989,9,'Studio Teachers'),(157350,1352990,9,'Thanks'),(157350,1352992,9,'Thanks'),(157350,1393448,1,'Still Photographer'),(157350,1399071,1,'Helicopter Camera'),(157350,1399633,10,'Visual Effects Producer'),(157350,1400354,5,'Digital Intermediate'),(157350,1401994,1,'Camera Operator'),(157350,1403389,8,'Hairstylist'),(157350,1407023,1,'Camera Operator'),(157350,1408360,11,'Gaffer'),(157350,1409712,1,'Helicopter Camera'),(157350,1409817,8,'Hairstylist'),(157350,1412469,8,'Hairstylist'),(157350,1417834,1,'Camera Technician'),(157350,1424694,1,'Camera Operator'),(157350,1424694,1,'Steadicam Operator'),(157350,1424695,9,'Second Unit Cinematographer'),(157350,1424696,1,'Camera Operator'),(157350,1424698,8,'Makeup Artist'),(157350,1424699,8,'Set Costumer'),(157350,1424700,8,'Set Costumer'),(157350,1424701,8,'Set Costumer'),(157350,1424702,8,'Set Costumer'),(157350,1424703,8,'Set Costumer'),(157350,1424704,8,'Set Costumer'),(157350,1424705,5,'Digital Intermediate'),(157350,1424706,5,'First Assistant Editor'),(157350,1424707,11,'Rigging Gaffer'),(157350,1456696,9,'Compositors'),(157350,1813644,9,'Stunts'),(157350,1885808,9,'Stunts'),(51052,5553,6,'Original Music Composer'),(51052,5721,5,'Editor'),(51052,6732,4,'Screenplay'),(51052,6732,3,'Co-Executive Producer'),(51052,11350,6,'Sound Designer'),(51052,42272,3,'Co-Producer'),(51052,53304,3,'Producer'),(51052,53329,3,'Producer'),(51052,62957,3,'Casting'),(51052,66191,2,'Director'),(51052,208113,2,'Director'),(51052,208113,4,'Screenplay'),(51052,1082203,3,'Producer'),(51052,1145214,10,'Visual Development'),(51052,1181408,8,'Costume Design'),(51052,1355894,2,'Layout'),(51052,1373711,6,'Sound Effects Editor'),(51052,1392611,6,'Sound Re-Recording Mixer'),(51052,1395024,6,'Sound Re-Recording Mixer'),(51052,1396316,6,'Sound Re-Recording Mixer'),(51052,1419601,6,'Sound Effects Editor'),(51052,1447388,10,'Animation'),(51052,1453022,10,'Animation'),(51052,1455462,11,'Lighting Artist'),(51052,1459718,10,'Animation'),(51052,1486576,5,'Editor'),(51052,1532730,10,'Visual Effects Coordinator'),(51052,1714354,3,'Co-Executive Producer'),(51052,1769889,7,'Production Design'),(51052,1814303,3,'Producer'),(51052,1814304,10,'Visual Effects Coordinator'),(51052,1814353,5,'Dialogue Editor'),(62764,3310,5,'Editor'),(62764,5328,3,'Casting'),(62764,38748,4,'Original Story'),(62764,5448,4,'Original Story'),(62764,15813,6,'Original Music Composer'),(62764,19689,3,'Casting'),(62764,11091,3,'Producer'),(62764,53476,3,'Executive Producer'),(62764,53841,1,'Director of Photography'),(62764,54419,3,'Producer'),(62764,54873,3,'Executive Producer'),(62764,56518,7,'Production Design'),(62764,56519,5,'Editor'),(62764,56512,2,'Director'),(62764,57343,3,'Executive Producer'),(62764,58789,4,'Screenplay'),(62764,59700,3,'Executive Producer'),(62764,65377,3,'Producer'),(62764,72106,3,'Producer'),(62764,74342,4,'Screenstory'),(62764,74429,3,'Executive Producer'),(62764,77288,3,'Producer'),(62764,83069,3,'Executive Producer'),(62764,133287,4,'Screenplay'),(62764,166278,3,'Producer'),(62764,964327,3,'Executive Producer'),(62764,1050653,3,'Executive Producer'),(62764,1125540,3,'Producer'),(62764,1453929,10,'Animation'),(62764,1453943,11,'Lighting Artist'),(62764,1460634,10,'Visual Effects'),(62764,1463784,10,'Animation'),(62764,1817119,3,'Executive Producer'),(49049,306,4,'Characters'),(49049,1570,1,'Director of Photography'),(49049,2036,4,'Screenplay'),(49049,7232,3,'Casting'),(49049,40810,6,'Sound Designer'),(49049,40810,6,'Supervising Sound Editor'),(49049,40813,5,'Dialogue Editor'),(49049,13086,7,'Art Direction'),(49049,13087,7,'Assistant Art Director'),(49049,35012,8,'Costume Design'),(49049,19692,8,'Costume Design'),(49049,20463,7,'Production Design'),(49049,26194,7,'Set Decoration'),(49049,43141,2,'Director'),(49049,53346,3,'Casting'),(49049,57653,4,'Characters'),(49049,231831,6,'Original Music Composer'),(49049,968232,5,'Editor'),(49049,1106181,11,'Gaffer'),(49049,1133500,3,'Casting'),(49049,1158010,10,'Visual Effects Supervisor'),(49049,1276405,8,'Makeup Artist'),(49049,1298996,9,'Second Unit Cinematographer'),(49049,1318090,1,'Camera Operator'),(49049,1318830,10,'Visual Effects Supervisor'),(49049,1323125,7,'Art Direction'),(49049,1327443,7,'Supervising Art Director'),(49049,1338478,8,'Hairstylist'),(49049,1338969,6,'Sound Re-Recording Mixer'),(49049,1338970,6,'Sound Effects Editor'),(49049,1338973,6,'Sound Effects Editor'),(49049,1357600,2,'Script Supervisor'),(49049,1374173,1,'Still Photographer'),(49049,1376807,6,'Music Editor'),(49049,1392614,6,'Dolby Consultant'),(49049,1393300,6,'Foley'),(49049,1393346,8,'Costume Supervisor'),(49049,1394001,7,'Art Direction'),(49049,1394004,6,'Sound Re-Recording Mixer'),(49049,1394011,10,'Visual Effects Producer'),(49049,1394015,5,'First Assistant Editor'),(49049,1398104,10,'Visual Effects Supervisor'),(49049,1405240,1,'Steadicam Operator'),(49049,1408402,9,'Visual Effects Editor'),(49049,1410190,10,'Animation'),(49049,1410273,7,'Assistant Art Director'),(49049,1410275,8,'Hairstylist'),(49049,1410323,3,'Location Manager'),(49049,1415976,10,'Visual Effects Producer'),(49049,1418328,9,'Stunt Coordinator'),(49049,1418329,9,'Stunt Coordinator'),(49049,1418332,1,'Still Photographer'),(49049,1418341,9,'Unit Publicist'),(49049,1424598,7,'Art Department Coordinator'),(49049,1424639,2,'Script Supervisor'),(49049,1426327,9,'CG Supervisor'),(49049,1426835,7,'Art Direction'),(49049,1426836,7,'Art Direction'),(49049,1426837,7,'Assistant Art Director'),(49049,1426838,9,'Property Master'),(49049,1426839,9,'Property Master'),(49049,1426840,7,'Conceptual Design'),(49049,1426841,7,'Conceptual Design'),(49049,1426842,7,'Conceptual Design'),(49049,1426843,7,'Conceptual Design'),(49049,1426844,9,'Scenic Artist'),(49049,1426845,9,'CG Supervisor'),(49049,1426846,10,'Visual Effects Producer'),(49049,1426847,9,'Visual Effects Editor'),(49049,1426848,10,'Visual Effects Producer'),(49049,1426850,10,'Visual Effects Producer'),(49049,1426851,9,'Visual Effects Editor'),(49049,1426853,9,'Visual Effects Art Director'),(49049,1426854,10,'Visual Effects Supervisor'),(49049,1426855,10,'Animation Supervisor'),(49049,1426856,1,'Camera Operator'),(49049,1426857,1,'Steadicam Operator'),(49049,1426858,8,'Set Costumer'),(49049,1426859,8,'Set Costumer'),(49049,1426860,8,'Set Costumer'),(49049,1426862,9,'Transportation Coordinator'),(49049,1585929,9,'Stunts'),(39691,29525,3,'Producer'),(39691,52694,4,'Writer'),(39691,52695,4,'Writer'),(39691,113987,3,'Producer'),(39691,132876,2,'Director'),(39691,1453929,10,'Animation'),(39691,1453930,10,'Animation'),(39691,1453943,9,'Technical Supervisor'),(39691,1459718,10,'Animation'),(39691,1463785,10,'Animation'),(70160,495,3,'Casting'),(70160,460,1,'Director of Photography'),(70160,1213,6,'Original Music Composer'),(70160,1483,9,'Executive Music Producer'),(70160,1890,7,'Production Design'),(70160,1891,5,'Editor'),(70160,4280,5,'Editor'),(70160,4446,3,'Producer'),(70160,6187,3,'Co-Producer'),(70160,8281,7,'Art Direction'),(70160,9776,3,'Co-Executive Producer'),(70160,10970,8,'Costume Design'),(70160,40644,9,'Stunt Coordinator'),(70160,12575,1,'Additional Photography'),(70160,16736,6,'Sound Designer'),(70160,21700,5,'Editor'),(70160,21807,4,'Screenplay'),(70160,21984,7,'Set Decoration'),(70160,23964,2,'Director'),(70160,23964,4,'Screenplay'),(70160,38270,3,'Executive Producer'),(70160,43102,10,'Animation Supervisor'),(70160,56327,3,'Executive Producer'),(70160,56327,3,'Unit Production Manager'),(70160,72956,3,'Executive In Charge Of Production'),(70160,78009,10,'Animation Supervisor'),(70160,132639,9,'Stunt Coordinator'),(70160,138379,7,'Art Direction'),(70160,158916,6,'Sound Re-Recording Mixer'),(70160,189111,4,'Novel'),(70160,189111,3,'Executive Producer'),(70160,189111,4,'Screenplay'),(70160,223242,3,'Location Manager'),(70160,328645,3,'Co-Producer'),(70160,406204,8,'Makeup Department Head'),(70160,935491,7,'Art Department Coordinator'),(70160,935634,3,'Producer'),(70160,1025712,7,'Supervising Art Director'),(70160,1103717,7,'Assistant Art Director'),(70160,1327334,9,'Visual Effects Editor'),(70160,1389626,3,'Production Supervisor'),(70160,1393014,10,'Animation Supervisor'),(70160,1394026,9,'Visual Effects Editor'),(70160,1403421,2,'Script Supervisor'),(70160,1408293,8,'Hair Department Head'),(70160,1459895,9,'Visual Effects Editor'),(70160,1539280,3,'Co-Producer'),(70160,1539947,3,'Co-Producer'),(70160,1539948,3,'Co-Producer'),(70160,1539958,6,'Sound Re-Recording Mixer'),(70160,1546811,10,'Visual Effects Coordinator'),(70160,1552802,10,'3D Supervisor'),(70160,1552803,10,'Animation Supervisor'),(70160,1552804,10,'Animation Supervisor'),(70160,1552805,9,'CG Supervisor'),(70160,1552806,9,'Digital Effects Supervisor'),(70160,1552807,9,'Digital Effects Supervisor'),(70160,1552808,9,'Digital Effects Supervisor'),(70160,1552809,10,'Visual Effects Coordinator'),(70160,1552810,9,'Visual Effects Editor'),(70160,1813644,9,'Stunts'),(45243,35796,4,'Screenplay'),(45243,53394,3,'Producer'),(45243,57130,2,'Director'),(45243,57538,4,'Screenplay'),(146216,37,6,'Music'),(146216,1253,7,'Production Design'),(146216,6392,8,'Costume Design'),(146216,3965,3,'Casting'),(146216,10952,3,'Producer'),(146216,15002,2,'Director'),(146216,17598,1,'Director of Photography'),(146216,24309,3,'Producer'),(146216,89597,4,'Writer'),(146216,112947,4,'Screenplay'),(146216,112948,4,'Screenplay'),(146216,123097,4,'Writer'),(146216,1034748,3,'Casting'),(146216,1552521,1,'Additional Photography'),(55301,11371,1,'Director of Photography'),(55301,57743,4,'Writer'),(55301,57744,4,'Writer'),(55301,64151,2,'Director'),(55301,1453019,10,'Animation'),(55301,1455463,10,'Visual Effects'),(55301,1455610,10,'Animation'),(55301,1459734,10,'Animation'),(55301,1459752,10,'Animation'),(55301,1460611,10,'Animation'),(55301,1460612,10,'Animation'),(55301,1463874,4,'Storyboard'),(55301,1642697,10,'Animation Supervisor'),(109418,2593,6,'Original Music Composer'),(109418,11772,3,'Executive Producer'),(109418,10815,1,'Director of Photography'),(109418,17494,2,'Director'),(109418,33673,7,'Set Decoration'),(109418,19292,3,'Producer'),(109418,19292,4,'Screenplay'),(109418,19292,4,'Characters'),(109418,20818,3,'Executive Producer'),(109418,20821,3,'Producer'),(109418,20826,8,'Costume Design'),(109418,42634,7,'Production Design'),(109418,42635,7,'Art Direction'),(109418,56728,4,'Screenplay'),(109418,60151,5,'Editor'),(109418,66563,4,'Characters'),(109418,66563,4,'Screenplay'),(50546,2593,6,'Original Music Composer'),(50546,3276,3,'Casting'),(50546,4485,3,'Executive Producer'),(50546,9423,6,'Supervising Sound Editor'),(50546,11772,3,'Executive Producer'),(50546,10815,1,'Director of Photography'),(50546,15018,6,'Music Editor'),(50546,17494,2,'Director'),(50546,19292,3,'Producer'),(50546,20818,3,'Executive Producer'),(50546,20821,3,'Producer'),(50546,20824,7,'Production Design'),(50546,20826,8,'Costume Design'),(50546,23427,8,'Makeup Artist'),(50546,23787,8,'Makeup Artist'),(50546,32899,3,'Associate Producer'),(50546,32903,7,'Art Direction'),(50546,34050,4,'Screenplay'),(50546,56728,3,'Executive Producer'),(50546,71130,6,'Music Supervisor'),(50546,60151,5,'Editor'),(50546,60156,7,'Set Decoration'),(50546,62637,3,'Producer'),(50546,75377,8,'Makeup Department Head'),(50546,75378,8,'Hair Department Head'),(50546,83086,6,'Sound mixer'),(50546,132315,4,'Screenplay'),(50546,552351,8,'Key Hair Stylist'),(50546,963297,3,'Co-Producer'),(50546,963297,6,'Music Supervisor'),(50546,1196351,3,'Casting'),(50546,1252535,5,'Dialogue Editor'),(50546,1395255,6,'Sound Re-Recording Mixer'),(50546,1400093,6,'Sound Effects Editor'),(50546,1404366,5,'Dialogue Editor'),(50546,1409710,1,'Steadicam Operator'),(50546,1412752,5,'First Assistant Editor'),(50546,1415007,5,'Dialogue Editor'),(50546,1416898,6,'Sound Effects Editor'),(50546,1431841,6,'Music Supervisor'),(50546,1458571,8,'Hairstylist'),(50546,1473981,2,'Script Supervisor'),(50546,1533545,6,'Sound Effects Editor'),(50546,1537179,1,'Still Photographer'),(50546,1537463,6,'Sound Re-Recording Mixer'),(50546,1538435,6,'Music Editor'),(50546,1538436,6,'Music Editor'),(50546,1538437,8,'Hairstylist'),(50546,1538440,11,'Rigging Gaffer'),(228150,287,3,'Executive Producer'),(228150,563,5,'Editor'),(228150,5914,3,'Casting'),(228150,7236,7,'Production Design'),(228150,6688,8,'Costume Design'),(228150,6235,7,'Art Direction'),(228150,6874,3,'Executive Producer'),(228150,11354,9,'Stunt Coordinator'),(228150,13177,6,'Sound Re-Recording Mixer'),(228150,13227,5,'Editor'),(228150,12654,7,'Set Decoration'),(228150,19769,2,'Director'),(228150,19769,3,'Producer'),(228150,19769,4,'Writer'),(228150,16368,6,'Original Music Composer'),(228150,23454,7,'Art Direction'),(228150,23424,3,'Casting'),(228150,23774,8,'Makeup Artist'),(228150,42261,10,'Visual Effects Supervisor'),(228150,76593,1,'Still Photographer'),(228150,72102,3,'Producer'),(228150,104044,10,'Visual Effects Producer'),(228150,115120,1,'Director of Photography'),(228150,165734,9,'Dialect Coach'),(228150,1015921,3,'Producer'),(228150,1024910,3,'Casting'),(228150,1049333,6,'Music Editor'),(228150,1077782,6,'Foley'),(228150,1090142,1,'Camera Operator'),(228150,1095253,3,'Producer'),(228150,1205876,8,'Costume Design'),(228150,1319197,7,'Set Decoration'),(228150,1327831,3,'Executive Producer'),(228150,1327833,3,'Executive Producer'),(228150,1335181,9,'Property Master'),(228150,1337393,7,'Assistant Art Director'),(228150,1360097,5,'Dialogue Editor'),(228150,1360099,6,'Sound Effects Editor'),(228150,1360100,6,'Sound Effects Editor'),(228150,1367362,6,'Foley'),(228150,1373620,9,'Makeup Effects'),(228150,1377294,10,'Visual Effects Producer'),(228150,1379044,9,'Scenic Artist'),(228150,1389858,6,'Sound Effects Editor'),(228150,1390259,3,'Executive Producer'),(228150,1394950,6,'Sound Designer'),(228150,1399478,5,'Digital Intermediate'),(228150,1401126,8,'Wigmaker'),(228150,1402012,3,'Publicist'),(228150,1403470,10,'Visual Effects Supervisor'),(228150,1403470,9,'Visual Effects Editor'),(228150,1406389,6,'Sound Effects Editor'),(228150,1406840,1,'Camera Operator'),(228150,1408358,1,'Camera Operator'),(228150,1408363,5,'First Assistant Editor'),(228150,1413092,5,'Dialogue Editor'),(228150,1415007,6,'ADR & Dubbing'),(228150,1416005,9,'Unit Publicist'),(228150,1419101,10,'Visual Effects Producer'),(228150,1419102,10,'Visual Effects Supervisor'),(228150,1419111,5,'Digital Intermediate'),(228150,1422061,6,'ADR & Dubbing'),(228150,1422984,11,'Rigging Gaffer'),(228150,1430115,8,'Makeup Artist'),(228150,1430190,8,'Set Costumer'),(228150,1430467,8,'Hairstylist'),(228150,1430468,8,'Hairstylist'),(228150,1430470,8,'Hairstylist'),(228150,1430471,8,'Makeup Artist'),(228150,1430472,8,'Makeup Artist'),(228150,1430473,8,'Makeup Artist'),(228150,1430474,9,'Makeup Effects'),(228150,1430475,9,'Makeup Effects'),(228150,1430476,9,'Makeup Effects'),(228150,1430477,7,'Art Department Coordinator'),(228150,1430479,9,'Scenic Artist'),(228150,1430488,9,'Special Effects Coordinator'),(228150,1430489,9,'CG Supervisor'),(228150,1430490,9,'CG Supervisor'),(228150,1430491,10,'Animation'),(228150,1430493,9,'Visual Effects Editor'),(228150,1430495,10,'Visual Effects Supervisor'),(228150,1430496,10,'Visual Effects Supervisor'),(228150,1430497,9,'Second Unit Cinematographer'),(228150,1430498,11,'Gaffer'),(228150,1430500,1,'Camera Operator'),(228150,1430501,8,'Costume Supervisor'),(228150,1430502,5,'First Assistant Editor'),(228150,1430503,3,'Location Manager'),(228150,1430504,3,'Location Manager'),(228150,1430861,8,'Costume Design'),(228150,1447518,9,'Stunts'),(41515,9622,2,'Director'),(41515,58471,3,'Executive Producer'),(41515,68016,6,'Orchestrator'),(41515,97263,4,'Writer'),(41515,1453021,10,'Animation'),(41515,1455463,10,'Visual Effects'),(41515,1460634,9,'Visual Effects Art Director'),(41515,1460644,10,'Color Designer'),(38317,32895,4,'Screenplay'),(38317,57370,2,'Director'),(38317,78435,4,'Screenplay'),(38317,1368867,9,'Special Effects Coordinator'),(38317,1436958,9,'Other'),(38317,1439088,10,'Visual Effects'),(161795,117075,2,'Director'),(161795,990400,4,'Writer'),(161795,117075,4,'Writer'),(159824,53684,3,'Producer'),(159824,185438,2,'Director'),(159824,185438,4,'Characters'),(159824,1003944,4,'Writer'),(159824,1003945,4,'Writer'),(159824,1447481,7,'Art Department Manager'),(159824,1450992,10,'Animation'),(159824,1452997,10,'Animation'),(159824,1455610,10,'Animation'),(49948,16390,3,'Producer'),(49948,2522,6,'Music'),(49948,5690,2,'Director'),(49948,7902,3,'Casting'),(49948,7903,3,'Casting'),(49948,12824,2,'Director'),(49948,20153,6,'Music'),(49948,53009,5,'Editor'),(49948,56146,2,'Director'),(49948,56147,2,'Director'),(49948,65531,2,'Director'),(49948,65534,10,'Animation'),(49948,67630,3,'Executive Producer'),(49948,74297,2,'Director'),(49948,74298,2,'Director'),(49948,74299,2,'Director'),(49948,74976,6,'Sound Re-Recording Mixer'),(49948,74978,6,'Sound Re-Recording Mixer'),(49948,91144,6,'Sound Re-Recording Mixer'),(49948,212135,7,'Title Designer'),(49948,230261,9,'Executive Music Producer'),(49948,233471,6,'Conductor'),(49948,588711,6,'Music'),(49948,957523,6,'Music'),(49948,974330,6,'Music'),(49948,1046051,6,'Music'),(49948,1113194,10,'Animation'),(49948,1248678,6,'Conductor'),(49948,1403438,6,'ADR Supervisor'),(49948,1403439,6,'Sound Designer'),(49948,1403440,6,'Sound Designer'),(49948,1429549,5,'Color Timer'),(49948,1447301,10,'Animation'),(49948,1447370,10,'Animation'),(49948,1447459,10,'Animation'),(49948,1457930,10,'Animation'),(49948,1461140,10,'Animation'),(49948,1462254,10,'Animation'),(49948,1463874,10,'Animation'),(49948,1482102,5,'Editor'),(49948,1629419,9,'Post Production Supervisor'),(49948,1739962,5,'Negative Cutter'),(49948,1748513,5,'Negative Cutter'),(49948,1808200,6,'Music'),(49948,1808279,3,'Associate Producer'),(49948,1808282,6,'Music'),(330770,17627,2,'Director'),(330770,17627,4,'Screenplay'),(330770,49067,3,'Producer'),(330770,56657,6,'Music'),(330770,229135,4,'Screenplay'),(330770,1174345,3,'Producer'),(330770,1207545,1,'Director of Photography'),(330770,1374466,10,'Visual Effects Supervisor'),(330770,1405360,5,'Dialogue Editor'),(330770,1434952,6,'Sound Designer'),(330770,1533796,3,'Producer'),(330770,1616018,3,'Producer'),(330770,1616019,6,'Music'),(330770,1616020,5,'Editor'),(330770,1616021,8,'Costume Design'),(330770,1616022,2,'Script Supervisor'),(330770,1616023,5,'First Assistant Editor'),(330770,1616024,1,'First Assistant Camera'),(330770,1616025,11,'Gaffer'),(77951,55474,4,'Writer'),(77951,59522,3,'Executive Producer'),(77951,66191,2,'Director'),(77951,76590,3,'Producer'),(77951,83306,4,'Storyboard'),(77951,405825,3,'Production Supervisor'),(77951,561061,2,'Director'),(77951,561061,3,'Producer'),(77951,1336716,10,'Visual Effects Supervisor'),(77951,1452995,10,'Animation'),(77951,1453005,10,'Animation'),(77951,1453022,10,'Animation'),(274854,541,5,'Editor'),(274854,561,3,'Casting'),(274854,4501,1,'Director of Photography'),(274854,12575,9,'Second Unit Cinematographer'),(274854,12835,3,'Producer'),(274854,18087,1,'Additional Photography'),(274854,18264,6,'Music'),(274854,24310,1,'Additional Photography'),(274854,32806,5,'Digital Intermediate'),(274854,46088,3,'Producer'),(274854,52609,2,'Director'),(274854,52682,8,'Costume Design'),(274854,54271,5,'Editor'),(274854,62723,5,'Digital Intermediate'),(274854,65377,3,'Producer'),(274854,92302,7,'Art Direction'),(274854,105643,4,'Storyboard'),(274854,120119,4,'Writer'),(274854,141301,7,'Production Design'),(274854,407795,8,'Hair Department Head'),(274854,572365,5,'First Assistant Editor'),(274854,968858,1,'Additional Photography'),(274854,989750,3,'Casting Associate'),(274854,1167472,4,'Writer'),(274854,1167473,4,'Writer'),(274854,1289047,8,'Makeup Department Head'),(274854,1309884,6,'Sound Re-Recording Mixer'),(274854,1316727,10,'Visual Effects Coordinator'),(274854,1324262,7,'Set Decoration'),(274854,1327027,10,'Visual Effects Supervisor'),(274854,1328147,8,'Costume Supervisor'),(274854,1328148,3,'Casting'),(274854,1360099,6,'Sound Effects Editor'),(274854,1384387,10,'VFX Supervisor'),(274854,1392085,6,'ADR & Dubbing'),(274854,1392085,5,'Dialogue Editor'),(274854,1394033,10,'Visual Effects Supervisor'),(274854,1394282,10,'Visual Effects Producer'),(274854,1395709,6,'Sound Re-Recording Mixer'),(274854,1399477,8,'Costume Supervisor'),(274854,1399866,9,'Visual Effects Editor'),(274854,1401989,1,'Additional Camera'),(274854,1401999,8,'Set Costumer'),(274854,1405235,6,'ADR & Dubbing'),(274854,1406116,10,'Visual Effects Producer'),(274854,1407889,8,'Makeup Artist'),(274854,1408352,9,'CG Supervisor'),(274854,1408357,1,'Additional Photography'),(274854,1409237,10,'Animation Supervisor'),(274854,1411095,10,'VFX Supervisor'),(274854,1412721,5,'Digital Intermediate'),(274854,1413453,6,'Sound Designer'),(274854,1414558,5,'Digital Intermediate'),(274854,1415622,10,'VFX Editor'),(274854,1418491,2,'Script Supervisor'),(274854,1419105,1,'Still Photographer'),(274854,1419924,6,'Music Editor'),(274854,1425829,1,'Steadicam Operator'),(274854,1430495,10,'Visual Effects Supervisor'),(274854,1458578,5,'Dialogue Editor'),(274854,1462852,10,'Visual Effects Supervisor'),(274854,1463346,3,'Researcher'),(274854,1483848,5,'Digital Intermediate'),(274854,1484197,10,'Visual Effects Producer'),(274854,1520683,10,'Visual Effects Supervisor'),(274854,1521453,8,'Hairstylist'),(274854,1537471,1,'Camera Operator'),(274854,1548460,8,'Assistant Costume Designer'),(274854,1552169,1,'Camera Operator'),(274854,1561353,9,'CG Supervisor'),(274854,1567759,8,'Assistant Costume Designer'),(274854,1567762,8,'Set Costumer'),(274854,1567766,2,'Script Supervisor'),(274854,1567767,2,'Script Coordinator'),(274854,1567768,7,'Set Decoration'),(274854,1567769,7,'Art Department Coordinator'),(274854,1567770,7,'Art Department Assistant'),(274854,1567771,7,'Art Department Assistant'),(274854,1567772,8,'Hairstylist'),(274854,1567773,8,'Hairstylist'),(274854,1567950,1,'Camera Operator'),(274854,1568456,10,'Animation Supervisor'),(274854,1568459,9,'CG Supervisor'),(274854,1568460,9,'CG Supervisor'),(274854,1568461,10,'VFX Editor'),(274854,1568462,10,'VFX Editor'),(274854,1568467,10,'Visual Effects Coordinator'),(274854,1568468,9,'Visual Effects Editor'),(274854,1568469,10,'Visual Effects Producer'),(274854,1568470,10,'Visual Effects Producer'),(274854,1568471,10,'Visual Effects Producer'),(274854,1568475,10,'Visual Effects Supervisor'),(36970,2359,3,'Executive Producer'),(36970,12824,3,'Executive Producer'),(36970,13838,7,'Production Design'),(36970,20029,3,'Producer'),(36970,20030,2,'Director'),(36970,20030,4,'Writer'),(36970,20030,3,'Producer'),(36970,20032,9,'Cinematography'),(36970,35073,6,'Music'),(36970,49069,9,'Cinematography'),(36970,62048,3,'Executive Producer'),(36970,64535,9,'Cinematography'),(36970,133064,9,'Cinematography'),(36970,138857,2,'Director'),(36970,138857,4,'Writer'),(36970,958458,4,'Writer'),(36970,1364617,4,'Writer'),(36970,1364618,4,'Writer'),(36970,1364619,4,'Writer'),(36970,1364620,4,'Writer'),(36970,1364621,3,'Producer'),(36970,1364622,3,'Producer'),(36970,1364623,9,'Cinematography'),(36970,1364624,9,'Cinematography'),(36970,1364625,1,'Director of Photography'),(36970,1364626,5,'Editor'),(36970,1364627,5,'Editor'),(36970,1364628,7,'Art Direction'),(76649,4014,2,'Director'),(76649,4014,3,'Producer'),(76649,4016,3,'Producer'),(76649,4017,3,'Producer'),(76649,1720,3,'Casting'),(76649,3962,8,'Costume Design'),(76649,5573,4,'Screenplay'),(76649,5574,4,'Screenplay'),(76649,7800,3,'Casting'),(76649,8303,3,'Producer'),(76649,8352,9,'Choreographer'),(76649,8921,7,'Set Decoration'),(76649,17080,3,'Producer'),(76649,22818,1,'Director of Photography'),(76649,40835,7,'Production Design'),(76649,62775,3,'Executive Producer'),(76649,62908,6,'Original Music Composer'),(76649,64923,5,'Editor'),(76649,112689,4,'Screenplay'),(76649,92234,9,'Stunt Coordinator'),(76649,1002652,10,'Visual Effects Supervisor'),(76649,1106829,7,'Set Designer'),(76649,1177335,1,'Still Photographer'),(76649,1304276,6,'Foley'),(76649,1315936,7,'Set Decoration'),(76649,1316755,8,'Costume Supervisor'),(76649,1322019,7,'Art Direction'),(76649,1337452,9,'Property Master'),(76649,1337457,6,'Boom Operator'),(76649,1337466,9,'Special Effects Coordinator'),(76649,1340919,2,'Script Supervisor'),(76649,1364792,8,'Makeup Department Head'),(76649,1364793,7,'Assistant Art Director'),(76649,1364794,7,'Leadman'),(76649,1364795,7,'Set Designer'),(76649,1364796,6,'Sound Effects Editor'),(76649,1364797,6,'Sound Effects Editor'),(76649,1364798,10,'Visual Effects Producer'),(76649,1364799,11,'Gaffer'),(76649,1364801,6,'Music Editor'),(76649,1364802,2,'Script Supervisor'),(76649,1364803,3,'Location Manager'),(76649,1456835,10,'Animation'),(293644,43092,4,'Screenplay'),(293644,150856,4,'Screenplay'),(293644,940807,4,'Screenplay'),(293644,1172908,2,'Director'),(72545,4505,3,'Executive Producer'),(72545,6800,1,'Director of Photography'),(72545,7733,7,'Art Direction'),(72545,9621,10,'Special Effects Supervisor'),(72545,9543,3,'Producer'),(72545,14341,7,'Set Designer'),(72545,21004,8,'Costume Design'),(72545,22303,5,'Editor'),(72545,42267,6,'Sound Designer'),(72545,33624,3,'Producer'),(72545,11102,7,'Set Designer'),(72545,60501,3,'Casting'),(72545,60503,3,'Casting'),(72545,62063,7,'Set Decoration'),(72545,63935,9,'Stunt Coordinator'),(72545,65711,7,'Set Decoration'),(72545,70788,3,'Producer'),(72545,70789,6,'Original Music Composer'),(72545,81687,9,'Pilot'),(72545,72724,4,'Story'),(72545,72724,4,'Screenplay'),(72545,72725,4,'Screenplay'),(72545,72725,4,'Story'),(72545,91860,7,'Set Dresser'),(72545,132876,2,'Director'),(72545,563736,6,'Music Supervisor'),(72545,566284,3,'Executive Producer'),(72545,566286,4,'Story'),(72545,585767,7,'Conceptual Illustrator'),(72545,969743,7,'Set Designer'),(72545,1128347,7,'Production Design'),(72545,1229789,9,'Visual Effects Editor'),(72545,1269670,8,'Makeup Department Head'),(72545,1330048,8,'Costume Supervisor'),(72545,1338670,8,'Hair Department Head'),(72545,1345635,2,'Script Supervisor'),(72545,1368875,10,'Visual Effects Producer'),(72545,1376902,6,'ADR Supervisor'),(72545,1378223,7,'Greensman'),(72545,1387243,6,'Foley Editor'),(72545,1389134,5,'Dialogue Editor'),(72545,1391564,7,'Construction Coordinator'),(72545,1395430,7,'Art Department Coordinator'),(72545,1399876,1,'Still Photographer'),(72545,1401588,9,'Visual Effects Editor'),(72545,1404834,7,'Conceptual Illustrator'),(72545,1405376,7,'Set Designer'),(72545,1406873,6,'Sound Effects Editor'),(72545,1412772,7,'Art Department Coordinator'),(72545,1412976,7,'Property Master'),(72545,1414182,5,'Dialogue Editor'),(72545,1415620,9,'Visual Effects Editor'),(72545,1422411,6,'Supervising Sound Editor'),(72545,1423001,1,'Camera Operator'),(72545,1423004,6,'Music Editor'),(72545,1428893,10,'Animation Supervisor'),(72545,1445838,6,'Sound Effects Editor'),(72545,1445895,1,'Camera Operator'),(72545,1455541,10,'Animation'),(72545,1456835,10,'Animation'),(72545,1457930,10,'Visual Effects'),(72545,1463376,7,'Greensman'),(72545,1532244,8,'Key Costumer'),(72545,1558806,8,'Key Costumer'),(72545,1584964,7,'Sculptor'),(72545,1613970,6,'Supervising Music Editor'),(72545,1722170,8,'Set Costumer'),(72545,1734623,7,'Conceptual Illustrator'),(72545,1856165,7,'Conceptual Illustrator'),(72545,1859962,2,'First Assistant Director'),(72545,1859963,7,'Greensman'),(72545,1859967,7,'Conceptual Illustrator'),(72545,1859975,10,'Modeling'),(72545,1859976,10,'Visual Effects Coordinator'),(72545,1859977,10,'Visual Effects Coordinator'),(72545,1859979,10,'Modeling'),(72545,1859980,10,'Modeling'),(72545,1859982,10,'Visual Effects Coordinator'),(72545,1859983,10,'Modeling'),(72545,1859984,10,'Visual Effects Supervisor'),(72545,1859985,10,'Visual Effects Supervisor'),(72545,1859986,10,'Visual Effects Producer'),(72545,1859987,10,'Visual Effects Coordinator'),(72545,1859988,10,'Visual Effects Coordinator'),(72545,1859993,8,'Key Costumer'),(72545,1859994,3,'Production Coordinator'),(109451,7903,3,'Casting'),(109451,11098,6,'Original Music Composer'),(109451,12095,2,'Director'),(109451,52935,4,'Screenplay'),(109451,65857,3,'Producer'),(109451,107446,3,'Executive Producer'),(109451,107446,4,'Story'),(109451,111876,4,'Characters'),(109451,111877,4,'Characters'),(109451,155267,3,'Executive Producer'),(109451,155267,4,'Story'),(109451,970590,3,'Producer'),(109451,993265,5,'Editor'),(109451,1046494,2,'Director'),(109451,1046497,7,'Production Design'),(109451,1236679,4,'Screenplay'),(109451,1447388,10,'Animation'),(109451,1447481,10,'Visual Development'),(109451,1450992,10,'Animation'),(109451,1452920,10,'Animation'),(109451,1452997,10,'Animation'),(109451,1453938,11,'Lighting Artist'),(109451,1455461,11,'Lighting Technician'),(109451,1455618,10,'Animation'),(109451,1455621,10,'Animation'),(109451,1456701,11,'Lighting Coordinator'),(109451,1460431,5,'Associate Editor'),(109451,1460607,9,'Supervising Animator'),(109451,1463178,2,'Layout'),(71880,1060,1,'Director of Photography'),(71880,2529,7,'Set Decoration'),(71880,4485,4,'Screenplay'),(71880,17494,2,'Director'),(71880,19292,4,'Screenplay'),(71880,20824,7,'Production Design'),(71880,20826,8,'Costume Design'),(71880,60151,5,'Editor'),(71880,1141309,4,'Story'),(71880,1336716,10,'Visual Effects Supervisor'),(71880,1406839,9,'Stunt Coordinator'),(71880,1473981,2,'Script Supervisor'),(309809,57741,2,'Director'),(309809,81262,4,'Screenplay'),(309809,234279,4,'Novel'),(309809,234279,4,'Original Story'),(309809,1459464,9,'Other'),(309809,1460512,10,'Animation'),(309809,1542277,4,'Screenplay'),(328111,1851,5,'Editor'),(328111,2949,6,'Music'),(328111,5720,3,'Producer'),(328111,8063,5,'Editor'),(328111,11174,6,'Supervising Sound Editor'),(328111,52360,4,'Writer'),(328111,52361,4,'Writer'),(328111,61300,2,'Co-Director'),(328111,65674,3,'Producer'),(328111,124748,2,'Director'),(328111,138618,6,'Sound Re-Recording Mixer'),(328111,138704,10,'Animation Director'),(328111,169082,3,'Executive Producer'),(328111,237759,3,'Associate Producer'),(328111,986240,7,'Art Direction'),(328111,998570,7,'Production Design'),(328111,998586,10,'Animation'),(328111,1024175,4,'Writer'),(328111,1235786,6,'Sound Re-Recording Mixer'),(328111,1352421,6,'Foley'),(328111,1352422,5,'Dialogue Editor'),(328111,1376899,5,'Dialogue Editor'),(328111,1394306,6,'Music Editor'),(328111,1394954,5,'First Assistant Editor'),(328111,1400354,5,'Digital Intermediate'),(328111,1411522,6,'Sound Effects Editor'),(328111,1418373,6,'Sound Effects Editor'),(328111,1455605,10,'Animation'),(328111,1479518,10,'Animation'),(328111,1479520,10,'Animation'),(328111,1479521,10,'Animation'),(328111,1479522,10,'Animation'),(328111,1479523,10,'Animation'),(328111,1479524,10,'Animation'),(328111,1479525,10,'Animation'),(328111,1479526,10,'Animation'),(328111,1479527,10,'Fix Animator'),(328111,1479528,10,'Animation'),(328111,1479529,10,'Animation'),(328111,1479531,10,'Animation'),(328111,1479532,10,'Animation'),(328111,1479533,10,'Modeling'),(328111,1479534,10,'Animation'),(328111,1479535,8,'Set Dressing Supervisor'),(328111,1479536,10,'Animation'),(328111,1479537,11,'Lighting Artist'),(328111,1479542,7,'Set Designer'),(328111,1535465,10,'Visual Effects'),(328111,1572873,6,'Foley'),(328111,1716003,9,'Sound Recordist'),(328111,1716004,5,'First Assistant Editor'),(328111,1716005,5,'First Assistant Editor'),(328111,1742327,3,'Associate Producer'),(93456,5720,3,'Producer'),(93456,17674,3,'Casting'),(93456,15779,5,'Editor'),(93456,52360,4,'Screenplay'),(93456,52361,4,'Screenplay'),(93456,59706,6,'Original Music Composer'),(93456,61300,7,'Production Design'),(93456,118713,10,'Animation'),(93456,124747,2,'Director'),(93456,124748,2,'Director'),(93456,169082,3,'Production Manager'),(93456,558267,6,'Songs'),(93456,998570,7,'Art Direction'),(93456,998572,7,'Set Designer'),(93456,998573,10,'Color Designer'),(93456,998574,7,'Set Designer'),(93456,998575,10,'Color Designer'),(93456,998576,10,'Color Designer'),(93456,998577,7,'Set Designer'),(93456,998578,4,'Storyboard'),(93456,998579,7,'Set Designer'),(93456,998580,9,'Prop Maker'),(93456,998581,6,'ADR & Dubbing'),(93456,998582,9,'Sound Recordist'),(93456,998583,9,'Technical Supervisor'),(93456,998584,10,'Animation'),(93456,998586,10,'Animation'),(93456,998587,4,'Storyboard'),(93456,1447310,9,'Post Production Supervisor'),(93456,1453488,10,'Animation'),(93456,1531911,5,'Editor'),(36657,2095,3,'Producer'),(36657,2484,5,'Editor'),(36657,3276,3,'Casting'),(36657,7200,3,'Producer'),(36657,10850,3,'Associate Producer'),(36657,7714,6,'Music'),(36657,8752,5,'Editor'),(36657,9032,2,'Director'),(36657,9032,4,'Story'),(36657,9040,1,'Director of Photography'),(36657,9043,8,'Costume Design'),(36657,11001,5,'Editor'),(36657,11002,7,'Production Design'),(36657,10994,4,'Story'),(36657,11004,7,'Art Direction'),(36657,11005,7,'Set Decoration'),(36657,40835,7,'Art Direction'),(36657,10995,4,'Screenplay'),(36657,10995,4,'Writer'),(36657,173658,4,'Characters'),(36657,1326769,8,'Costume Supervisor'),(36657,1399508,11,'Gaffer'),(36657,1459789,10,'Visual Effects'),(75656,135,3,'Producer'),(75656,3032,5,'Editor'),(75656,6041,6,'Original Music Composer'),(75656,7537,6,'Sound Designer'),(75656,7537,6,'Sound Re-Recording Mixer'),(75656,9612,4,'Screenplay'),(75656,9639,7,'Art Direction'),(75656,15345,3,'Producer'),(75656,15346,3,'Producer'),(75656,17284,1,'Director of Photography'),(75656,18865,2,'Director'),(75656,24310,1,'Director of Photography'),(75656,22498,3,'Executive Producer'),(75656,52358,4,'Screenplay'),(75656,52358,4,'Story'),(75656,52358,3,'Executive Producer'),(75656,51689,3,'Executive Producer'),(75656,51922,3,'Casting'),(75656,56231,5,'Editor'),(75656,60385,7,'Set Decoration'),(75656,86594,8,'Makeup Department Head'),(75656,91092,6,'Sound mixer'),(75656,95834,6,'Music Editor'),(75656,138617,6,'Supervising Sound Editor'),(75656,928329,8,'Costume Supervisor'),(75656,960282,7,'Art Direction'),(75656,1017240,8,'Costume Design'),(75656,1105707,4,'Screenplay'),(75656,1105707,4,'Story'),(75656,1352979,6,'Music Editor'),(75656,1402724,2,'Script Supervisor'),(75656,1406614,6,'Sound Re-Recording Mixer'),(75656,1416796,8,'Hair Department Head'),(75656,1463784,10,'Animation'),(38365,17494,2,'Director'),(38365,19292,4,'Writer'),(38365,66563,4,'Writer'),(37821,1886,4,'Writer'),(37821,3965,3,'Casting'),(37821,6581,5,'Editor'),(37821,6628,7,'Production Design'),(37821,8523,1,'Director of Photography'),(37821,15350,5,'Editor'),(37821,17751,3,'Producer'),(37821,18976,3,'Producer'),(37821,24190,6,'Music'),(37821,36797,2,'Director'),(37821,54777,3,'Casting'),(37821,62159,3,'Producer'),(37821,70779,3,'Producer'),(37821,74873,4,'Writer'),(37821,1034748,3,'Casting'),(37821,1037987,8,'Costume Design'),(37821,1377239,2,'Script Supervisor'),(203801,943,1,'Director of Photography'),(203801,956,4,'Screenplay'),(203801,956,2,'Director'),(203801,956,3,'Producer'),(203801,956,4,'Story'),(203801,2043,3,'Producer'),(203801,4658,9,'Special Effects Coordinator'),(203801,8678,7,'Production Design'),(203801,8748,3,'Line Producer'),(203801,11350,6,'Sound Designer'),(203801,40823,6,'Foley'),(203801,41289,4,'Screenplay'),(203801,41289,3,'Producer'),(203801,41289,4,'Story'),(203801,12787,7,'Set Decoration'),(203801,27151,3,'Executive Producer'),(203801,27151,4,'Story'),(203801,42994,3,'Executive Producer'),(203801,45056,6,'Music Supervisor'),(203801,113047,6,'ADR & Dubbing'),(203801,56917,5,'Editor'),(203801,62185,5,'First Assistant Editor'),(203801,63127,3,'Producer'),(203801,112691,3,'Associate Producer'),(203801,77513,7,'Assistant Art Director'),(203801,71579,7,'Art Direction'),(203801,34194,1,'Steadicam Operator'),(203801,190914,2,'Script Supervisor'),(203801,582922,6,'Original Music Composer'),(203801,1018073,3,'Casting'),(203801,1032069,3,'Co-Producer'),(203801,1034754,7,'Supervising Art Director'),(203801,1111168,4,'Story'),(203801,1319120,8,'Costume Supervisor'),(203801,1326396,7,'Art Direction'),(203801,1335559,6,'Supervising Sound Editor'),(203801,1335882,10,'Visual Effects Producer'),(203801,1338983,10,'Visual Effects Supervisor'),(203801,1357599,6,'Music Editor'),(203801,1373711,6,'Sound Effects Editor'),(203801,1373712,6,'ADR & Dubbing'),(203801,1373712,5,'Dialogue Editor'),(203801,1373728,11,'Gaffer'),(203801,1376803,10,'Visual Effects Supervisor'),(203801,1388894,1,'Camera Operator'),(203801,1388895,1,'Camera Operator'),(203801,1388899,1,'Camera Operator'),(203801,1389526,7,'Construction Coordinator'),(203801,1390344,7,'Art Department Coordinator'),(203801,1392609,6,'Sound Re-Recording Mixer'),(203801,1392614,6,'Dolby Consultant'),(203801,1394041,1,'Camera Operator'),(203801,1394108,7,'Art Direction'),(203801,1398918,6,'Foley'),(203801,1401126,8,'Wigmaker'),(203801,1402937,1,'Camera Operator'),(203801,1403641,1,'Underwater Camera'),(203801,1404207,7,'Set Designer'),(203801,1405241,1,'Helicopter Camera'),(203801,1405394,1,'Camera Operator'),(203801,1409241,11,'Gaffer'),(203801,1411066,8,'Hair Designer'),(203801,1411066,8,'Makeup Designer'),(203801,1413963,10,'Visual Effects Producer'),(203801,1415624,10,'Visual Effects Producer'),(203801,1417396,7,'Art Direction'),(203801,1417411,7,'Assistant Art Director'),(203801,1424617,6,'Sound Re-Recording Mixer'),(203801,1425515,2,'Script Supervisor'),(203801,1428906,9,'Visual Effects Editor'),(203801,1428909,8,'Hairstylist'),(203801,1428910,8,'Makeup Artist'),(203801,1428912,8,'Makeup Artist'),(203801,1428913,8,'Hairstylist'),(203801,1433736,1,'Camera Operator'),(203801,1440479,9,'Property Master'),(203801,1451219,3,'Executive Producer'),(203801,1483141,10,'Visual Effects Supervisor'),(203801,1487711,7,'Art Direction'),(203801,1528429,3,'Co-Producer'),(203801,1539759,10,'Visual Effects Coordinator'),(203801,1545925,8,'Makeup Artist'),(203801,1546737,7,'Art Direction'),(203801,1546742,3,'Casting Associate'),(203801,1546743,3,'Casting Associate'),(203801,1546745,8,'Assistant Costume Designer'),(203801,1546747,8,'Assistant Costume Designer'),(203801,1546748,8,'Costume Supervisor'),(203801,1546753,8,'Set Costumer'),(203801,1546754,8,'Set Costumer'),(203801,1546755,9,'Armorer'),(203801,1546756,9,'Armorer'),(203801,1546757,9,'Armorer'),(203801,1548134,1,'Still Photographer'),(203801,1548388,6,'ADR & Dubbing'),(203801,1548389,5,'Dialogue Editor'),(203801,1548400,1,'Helicopter Camera'),(203801,1548406,5,'Digital Intermediate'),(203801,1548408,11,'Rigging Grip'),(203801,1548409,10,'Visual Effects Coordinator'),(203801,1548410,9,'Visual Effects Editor'),(203801,1548411,10,'Visual Effects Coordinator'),(203801,1548412,10,'Visual Effects Producer'),(203801,1548416,9,'CG Supervisor'),(203801,1548417,7,'Greensman'),(37958,1593,3,'Casting'),(37958,11420,3,'Producer'),(37958,17611,3,'Casting'),(37958,17816,5,'Editor'),(37958,25058,5,'Editor'),(37958,46088,3,'Producer'),(37958,53476,3,'Executive Producer'),(37958,53476,3,'Line Producer'),(37958,53841,9,'Cinematography'),(37958,54419,3,'Producer'),(37958,54873,3,'Executive Producer'),(37958,56512,2,'Director'),(37958,64156,6,'Original Music Composer'),(37958,59700,3,'Executive Producer'),(37958,72106,3,'Producer'),(37958,77288,3,'Producer'),(37958,83069,3,'Producer'),(37958,119253,4,'Screenplay'),(37958,119254,4,'Screenplay'),(37958,231829,3,'Executive Producer'),(37958,958722,8,'Costume Design'),(37958,964327,3,'Executive Producer'),(37958,1102071,3,'Executive Producer'),(37958,1123192,3,'Producer'),(37958,1123193,3,'Line Producer'),(37958,1123194,5,'Editor'),(37958,1198825,3,'Casting'),(37958,1447543,10,'Visual Effects'),(37958,1453943,11,'Lighting Technician'),(211672,5720,3,'Producer'),(211672,8023,2,'Director'),(211672,52360,4,'Characters'),(211672,52361,4,'Characters'),(211672,59706,6,'Original Music Composer'),(211672,65674,3,'Producer'),(211672,124747,2,'Director'),(211672,124748,3,'Executive Producer'),(211672,1024175,4,'Writer'),(211672,1447310,9,'Post Production Supervisor'),(211672,1447388,10,'Animation'),(211672,1531911,5,'Editor'),(153518,13584,5,'Editor'),(153518,239,4,'Writer'),(153518,52701,2,'Director'),(153518,1011957,3,'Producer'),(153518,1281387,2,'Director'),(153518,1460607,10,'Animation'),(228165,12914,5,'Editor'),(228165,4500,6,'Original Music Composer'),(228165,10709,1,'Director of Photography'),(228165,17315,3,'Executive Producer'),(228165,52042,3,'Line Producer'),(228165,57743,4,'Screenplay'),(228165,57744,4,'Screenplay'),(228165,62063,7,'Set Decoration'),(228165,68016,6,'Orchestrator'),(228165,70651,3,'Executive Producer'),(228165,70651,4,'Story'),(228165,76054,7,'Production Design'),(228165,105643,4,'Storyboard'),(228165,108146,1,'First Assistant Camera'),(228165,114408,3,'Producer'),(228165,116076,10,'Animation Supervisor'),(228165,217174,2,'Director'),(228165,217174,4,'Story'),(228165,587815,2,'First Assistant Director'),(228165,963843,7,'Art Direction'),(228165,1077844,4,'Storyboard'),(228165,1122797,10,'Animation'),(228165,1217416,2,'Layout'),(228165,1217424,4,'Storyboard'),(228165,1232444,4,'Storyboard'),(228165,1237111,4,'Storyboard'),(228165,1266117,4,'Storyboard'),(228165,1340748,2,'Script Supervisor'),(228165,1376730,4,'Storyboard'),(228165,1395351,3,'Producer'),(228165,1395352,3,'Producer'),(228165,1402073,1,'Still Photographer'),(228165,1404540,1,'Camera Operator'),(228165,1413002,3,'Location Manager'),(228165,1447311,2,'Layout'),(228165,1447319,2,'Layout'),(228165,1447355,10,'Character Designer'),(228165,1447452,2,'Layout'),(228165,1447593,2,'Layout'),(228165,1448489,9,'Translator'),(228165,1450291,3,'Executive Producer'),(228165,1450292,3,'Unit Production Manager'),(228165,1450294,3,'Production Manager'),(228165,1450295,2,'First Assistant Director'),(228165,1450296,2,'Second Assistant Director'),(228165,1450297,2,'Second Assistant Director'),(228165,1450307,3,'Production Supervisor'),(228165,1450309,3,'Production Supervisor'),(228165,1450310,3,'Production Supervisor'),(228165,1450312,3,'Production Supervisor'),(228165,1450313,9,'Technical Supervisor'),(228165,1450320,3,'Production Coordinator'),(228165,1450328,3,'Location Manager'),(228165,1450331,10,'Animation Director'),(228165,1450333,3,'Production Supervisor'),(228165,1450347,4,'Storyboard'),(228165,1450348,4,'Storyboard'),(228165,1450349,4,'Storyboard'),(228165,1450351,4,'Storyboard'),(228165,1450352,4,'Storyboard'),(228165,1450353,4,'Storyboard'),(228165,1450354,4,'Storyboard'),(228165,1452920,10,'Animation Director'),(228165,1452924,10,'Animation'),(228165,1452932,10,'Animation'),(228165,1452934,10,'Animation'),(228165,1452989,10,'Animation Supervisor'),(228165,1452990,10,'Lead Animator'),(228165,1452991,10,'Animation'),(228165,1452992,10,'Animation'),(228165,1452993,10,'Animation'),(228165,1452994,10,'Animation'),(228165,1452995,10,'Animation'),(228165,1452996,10,'Animation'),(228165,1452997,10,'Animation'),(228165,1452998,10,'Animation'),(228165,1452999,10,'Animation'),(228165,1453000,10,'Animation'),(228165,1453001,10,'Animation'),(228165,1453002,10,'Animation'),(228165,1453003,10,'Animation'),(228165,1453004,10,'Animation'),(228165,1454249,10,'Lead Animator'),(228165,1456696,9,'Compositors'),(228165,1456701,9,'Visual Effects Editor'),(228165,1457935,9,'Compositors'),(228165,1459517,10,'Animation Supervisor'),(228165,1459611,10,'Visual Effects Supervisor'),(228165,1460658,9,'Compositors'),(228165,1464456,9,'Supervising Animator'),(228165,1464458,10,'Lead Animator'),(228165,1464459,10,'Lead Animator'),(228165,1464460,10,'Lead Animator'),(228165,1464461,10,'Animation'),(228165,1464463,9,'Compositors'),(228165,1469852,3,'Supervising Producer'),(228165,1515075,3,'Casting'),(228165,1547223,3,'Production Coordinator'),(117263,2031,3,'Casting'),(117263,2532,3,'Casting'),(117263,12131,7,'Production Design'),(117263,17276,3,'Producer'),(117263,17208,3,'Producer'),(117263,20907,2,'Director'),(117263,20907,3,'Producer'),(117263,37925,1,'Director of Photography'),(117263,58871,5,'Editor'),(117263,64156,6,'Original Music Composer'),(117263,68320,3,'Producer'),(117263,132209,3,'Producer'),(117263,431491,8,'Costume Design'),(117263,582624,3,'Producer'),(117263,964220,7,'Art Direction'),(117263,1065351,4,'Writer'),(117263,1065352,4,'Writer'),(117263,1165616,9,'Stunts'),(117263,1176140,3,'Casting Associate'),(117263,1330612,8,'Makeup Department Head'),(117263,1336431,8,'Key Hair Stylist'),(117263,1427438,2,'Script Supervisor'),(117263,1428125,8,'Hair Department Head'),(117263,1528013,6,'Music Supervisor'),(117263,1528014,7,'Set Decoration'),(117263,1528015,3,'Casting Associate'),(44943,495,3,'Casting'),(44943,2519,8,'Costume Design'),(44943,6668,5,'Editor'),(44943,6041,6,'Music'),(44943,6045,7,'Art Direction'),(44943,9558,9,'Stunt Coordinator'),(44943,9639,7,'Supervising Art Director'),(44943,11874,3,'Producer'),(44943,14041,7,'Set Decoration'),(44943,16733,7,'Production Design'),(44943,40592,3,'Producer'),(44943,41082,7,'Art Direction'),(44943,55079,1,'Director of Photography'),(44943,113046,6,'Sound Re-Recording Mixer'),(44943,113073,6,'Sound Re-Recording Mixer'),(44943,60501,3,'Casting'),(44943,60503,3,'Casting'),(44943,66739,2,'Director'),(44943,66495,7,'Assistant Art Director'),(44943,67695,6,'Music Editor'),(44943,75375,8,'Makeup Department Head'),(44943,104044,10,'Visual Effects Supervisor'),(44943,95640,1,'Additional Camera'),(44943,112875,5,'Dialogue Editor'),(44943,113081,6,'Sound Designer'),(44943,113081,6,'Sound Effects Editor'),(44943,141682,4,'Writer'),(44943,229166,8,'Makeup Artist'),(44943,234940,3,'Producer'),(44943,966594,7,'Assistant Art Director'),(44943,1032045,9,'Visual Effects Editor'),(44943,1035029,3,'Production Manager'),(44943,1149583,1,'Camera Operator'),(44943,1149583,1,'Steadicam Operator'),(44943,1189108,8,'Set Costumer'),(44943,1227173,6,'Foley'),(44943,1322017,7,'Set Designer'),(44943,1325215,8,'Set Costumer'),(44943,1327027,10,'Visual Effects Supervisor'),(44943,1327178,8,'Costume Supervisor'),(44943,1336431,8,'Hairstylist'),(44943,1338148,7,'Set Designer'),(44943,1345268,6,'Music Editor'),(44943,1360097,5,'Dialogue Editor'),(44943,1360101,6,'Foley'),(44943,1364406,9,'Property Master'),(44943,1378246,8,'Set Costumer'),(44943,1379051,10,'Visual Effects Supervisor'),(44943,1389858,6,'Sound Effects Editor'),(44943,1393389,10,'Visual Effects Producer'),(44943,1394950,6,'Supervising Sound Editor'),(44943,1394950,6,'Sound Designer'),(44943,1397822,6,'Supervising Sound Editor'),(44943,1397846,10,'Visual Effects Supervisor'),(44943,1398101,9,'Visual Effects Editor'),(44943,1399071,1,'Helicopter Camera'),(44943,1403388,8,'Makeup Artist'),(44943,1403389,8,'Key Hair Stylist'),(44943,1403390,3,'Production Supervisor'),(44943,1403391,7,'Art Department Coordinator'),(44943,1403392,7,'Set Designer'),(44943,1403393,7,'Sculptor'),(44943,1403394,7,'Sculptor'),(44943,1403395,7,'Lead Painter'),(44943,1403396,7,'Leadman'),(44943,1403397,7,'Construction Coordinator'),(44943,1403398,9,'Scenic Artist'),(44943,1403399,9,'Special Effects Coordinator'),(44943,1403400,10,'Visual Effects Supervisor'),(44943,1403401,10,'Visual Effects Supervisor'),(44943,1403402,9,'Visual Effects Editor'),(44943,1403403,9,'Visual Effects Editor'),(44943,1403404,10,'Visual Effects Supervisor'),(44943,1403405,9,'Visual Effects Editor'),(44943,1403406,9,'Visual Effects Editor'),(44943,1403407,10,'Visual Effects Producer'),(44943,1403408,10,'Visual Effects Producer'),(44943,1403409,9,'Systems Administrators & Support'),(44943,1403410,10,'Visual Effects Producer'),(44943,1403411,1,'Camera Operator'),(44943,1403412,11,'Gaffer'),(44943,1403413,1,'Additional Camera'),(44943,1403414,1,'Additional Photography'),(44943,1403415,1,'Helicopter Camera'),(44943,1403416,8,'Set Costumer'),(44943,1403417,5,'Digital Intermediate'),(44943,1403418,9,'Transportation Coordinator'),(44943,1403419,2,'Script Supervisor'),(44943,1403420,3,'Location Manager'),(44943,1403421,2,'Script Supervisor'),(44943,1403422,9,'Unit Publicist'),(44943,1403423,5,'Color Timer'),(44943,1409817,8,'Hair Department Head'),(44943,1441390,8,'Makeup Artist'),(44943,1552365,8,'Makeup Artist'),(57212,491,6,'Original Music Composer'),(57212,470,4,'Screenplay'),(57212,474,3,'Casting'),(57212,488,2,'Director'),(57212,488,3,'Producer'),(57212,489,3,'Producer'),(57212,492,1,'Director of Photography'),(57212,493,5,'Editor'),(57212,496,7,'Production Design'),(57212,498,8,'Costume Design'),(57212,2216,6,'Sound Designer'),(57212,2216,6,'Supervising Sound Editor'),(57212,4222,3,'Casting'),(57212,3996,6,'Sound Re-Recording Mixer'),(57212,4406,3,'Casting'),(57212,7018,4,'Writer'),(57212,7764,6,'Supervising Sound Editor'),(57212,8160,6,'Foley'),(57212,8163,6,'Foley'),(57212,10710,7,'Art Direction'),(57212,11225,7,'Art Direction'),(57212,40796,1,'Still Photographer'),(57212,89383,7,'Art Direction'),(57212,89385,7,'Art Direction'),(57212,21122,6,'Music Editor'),(57212,1324461,8,'Costume Supervisor'),(57212,1325211,7,'Supervising Art Director'),(57212,1325212,7,'Set Decoration'),(57212,1334458,9,'Property Master'),(57212,1338278,6,'Boom Operator'),(57212,1376899,5,'Dialogue Editor'),(57212,1386920,1,'Still Photographer'),(57212,1389524,7,'Assistant Art Director'),(57212,1389525,7,'Art Department Coordinator'),(57212,1389526,7,'Construction Coordinator'),(57212,1389534,5,'Dialogue Editor'),(57212,1389536,9,'Special Effects Coordinator'),(57212,1389537,10,'Visual Effects Supervisor'),(57212,1389538,9,'Stunt Coordinator'),(57212,1389540,11,'Gaffer'),(57212,1389541,11,'Gaffer'),(57212,1389542,3,'Casting'),(57212,1389543,8,'Set Costumer'),(57212,1389544,8,'Set Costumer'),(57212,1389545,8,'Set Costumer'),(57212,1389546,9,'Transportation Coordinator'),(57212,1389547,9,'Dialect Coach'),(57212,1389548,2,'Script Supervisor'),(152760,432,1,'Director of Photography'),(152760,474,3,'Casting'),(152760,1461,4,'Screenplay'),(152760,1461,2,'Director'),(152760,1461,3,'Producer'),(152760,1891,5,'Editor'),(152760,4222,3,'Casting'),(152760,2949,6,'Original Music Composer'),(152760,4061,8,'Costume Design'),(152760,5333,8,'Makeup Department Head'),(152760,9967,7,'Production Design'),(152760,40752,7,'Art Direction'),(152760,21846,7,'Set Decoration'),(152760,22061,7,'Supervising Art Director'),(152760,31511,4,'Screenplay'),(152760,31511,3,'Producer'),(152760,967137,7,'Art Direction'),(152760,1315933,4,'Novel'),(152760,1315934,4,'Novel'),(152760,1330047,3,'Casting'),(152760,1330048,8,'Costume Supervisor'),(49017,892,1,'Director of Photography'),(49017,943,1,'Additional Photography'),(49017,1322,8,'Costume Design'),(49017,1325,3,'Casting'),(49017,1544,4,'Characters'),(49017,4767,3,'Producer'),(49017,7786,3,'Casting'),(49017,38887,9,'Stunt Coordinator'),(49017,9646,5,'Editor'),(49017,10710,7,'Set Designer'),(49017,12039,7,'Set Decoration'),(49017,12575,9,'Second Unit Cinematographer'),(49017,14764,6,'Sound Designer'),(49017,42032,1,'Camera Operator'),(49017,30463,7,'Supervising Art Director'),(49017,10851,6,'Original Music Composer'),(49017,39923,7,'Production Design'),(49017,52370,7,'Art Direction'),(49017,75083,8,'Makeup Designer'),(49017,34194,1,'Camera Operator'),(49017,34194,1,'Additional Photography'),(49017,77730,7,'Art Direction'),(49017,123471,9,'Scenic Artist'),(49017,422701,7,'Art Direction'),(49017,1006747,10,'Visual Effects Supervisor'),(49017,1167470,2,'Director'),(49017,1167472,4,'Writer'),(49017,1167473,4,'Writer'),(49017,1318830,10,'Visual Effects Supervisor'),(49017,1325905,7,'Art Direction'),(49017,1338372,6,'Foley'),(49017,1342657,6,'Sound Designer'),(49017,1353259,1,'Camera Operator'),(49017,1367493,6,'Foley'),(49017,1373701,7,'Assistant Art Director'),(49017,1373723,10,'Visual Effects Supervisor'),(49017,1387183,5,'Dialogue Editor'),(49017,1392083,6,'Sound Designer'),(49017,1392718,1,'Still Photographer'),(49017,1394119,7,'Art Direction'),(49017,1394130,6,'Sound Re-Recording Mixer'),(49017,1394131,6,'Sound Re-Recording Mixer'),(49017,1394284,10,'Visual Effects Supervisor'),(49017,1395023,6,'Sound Effects Editor'),(49017,1398863,6,'Music Editor'),(49017,1399862,5,'Dialogue Editor'),(49017,1403488,5,'Digital Intermediate'),(49017,1403576,8,'Makeup Artist'),(49017,1404212,6,'Supervising Sound Editor'),(49017,1404217,6,'Sound Designer'),(49017,1404234,9,'Transportation Coordinator'),(49017,1405382,5,'Dialogue Editor'),(49017,1406395,9,'Visual Effects Editor'),(49017,1407870,2,'Script Supervisor'),(49017,1408354,1,'Steadicam Operator'),(49017,1408394,11,'Chief Lighting Technician'),(49017,1408779,6,'ADR & Dubbing'),(49017,1411064,8,'Makeup Artist'),(49017,1411064,8,'Hairstylist'),(49017,1417835,11,'Rigging Gaffer'),(49017,1418409,5,'Digital Intermediate'),(49017,1419264,10,'Visual Effects Producer'),(49017,1426311,8,'Hairstylist'),(49017,1426312,8,'Makeup Artist'),(49017,1426313,3,'Production Supervisor'),(49017,1426314,7,'Art Department Coordinator'),(49017,1426316,7,'Assistant Art Director'),(49017,1426317,7,'Construction Coordinator'),(49017,1426323,9,'Sound Recordist'),(49017,1426324,10,'Animation'),(49017,1426326,9,'CG Supervisor'),(49017,1426327,9,'CG Supervisor'),(49017,1426328,9,'Visual Effects Editor'),(49017,1426330,10,'Visual Effects Supervisor'),(49017,1426331,10,'Visual Effects Supervisor'),(49017,1426334,9,'Stunt Coordinator'),(49017,1426336,1,'Additional Camera'),(49017,1426338,9,'Video Assist Operator'),(49017,1426339,8,'Costume Supervisor'),(49017,1426341,9,'Unit Publicist'),(49017,1426342,3,'Location Manager'),(49017,1426481,9,'Stunts'),(49017,1484972,6,'Music Editor'),(49017,1492644,2,'First Assistant Director'),(49017,1550772,10,'Visual Effects Coordinator'),(49017,1557578,9,'Armorer'),(49017,1580667,10,'Special Effects Supervisor'),(49017,1590408,10,'Visual Effects Coordinator'),(49017,1591768,1,'Key Grip'),(49017,1632596,11,'Rigging Supervisor'),(49017,1760527,8,'Makeup Artist'),(49017,1787831,10,'VFX Editor'),(49017,1818139,9,'Fight Choreographer'),(49017,1873711,3,'Casting'),(49017,1873714,8,'Hairstylist'),(49017,1873716,7,'Painter'),(49017,1873717,7,'Greensman'),(49017,1873738,10,'Visual Effects Producer'),(49017,1873739,10,'Modeling'),(49017,1873740,10,'Visual Effects Coordinator'),(49017,1873741,10,'Visual Effects Coordinator'),(49017,1873743,11,'Lighting Director'),(49017,1873748,10,'Visual Effects Coordinator'),(49017,1873749,10,'Modeling'),(49017,1873751,1,'Still Photographer'),(49017,1873752,1,'Key Grip'),(49017,1873753,11,'Lighting Technician'),(49017,1873754,9,'Armorer'),(49017,1873755,9,'Armorer'),(49017,1873757,8,'Costume Coordinator'),(49017,1873758,3,'Production Coordinator'),(49017,1873760,7,'Sculptor'),(44564,947,6,'Music'),(44564,339,3,'Producer'),(44564,2874,3,'Casting'),(44564,3275,3,'Casting'),(44564,4937,3,'Producer'),(44564,5284,3,'Executive Producer'),(44564,6159,2,'Director'),(44564,6159,3,'Producer'),(44564,6184,3,'Executive Producer'),(44564,6186,3,'Unit Production Manager'),(44564,6186,3,'Associate Producer'),(44564,6188,3,'Associate Producer'),(44564,6189,5,'Editor'),(44564,6190,5,'Editor'),(44564,8408,1,'Director of Photography'),(44564,8411,8,'Costume Design'),(44564,8419,3,'Associate Producer'),(44564,33625,7,'Production Design'),(44564,34050,4,'Writer'),(44564,66689,7,'Supervising Art Director'),(44564,62144,7,'Set Decoration'),(44564,929145,6,'Music'),(44564,964030,3,'Executive Producer'),(44564,1352957,7,'Set Designer'),(44564,1390538,2,'Script Supervisor'),(44564,1460736,3,'Casting Associate'),(44564,1482833,7,'Set Designer'),(44564,1537443,7,'Title Designer'),(44564,1693778,3,'Casting Associate'),(44564,1755693,3,'Casting Associate'),(44564,1773743,3,'Casting Assistant'),(44564,1782534,7,'Set Designer'),(44564,1782543,3,'Casting Associate'),(44564,1782545,7,'Location Scout'),(44564,1782548,3,'Production Coordinator'),(44564,1782549,3,'Production Supervisor'),(52520,68602,3,'Producer'),(52520,2214,6,'Original Music Composer'),(52520,3950,4,'Characters'),(52520,3950,3,'Producer'),(52520,3950,4,'Story'),(52520,3950,4,'Screenplay'),(52520,3952,4,'Characters'),(52520,3953,3,'Producer'),(52520,3954,3,'Producer'),(52520,3955,3,'Executive Producer'),(52520,3956,3,'Executive Producer'),(52520,3958,3,'Executive Producer'),(52520,3958,10,'Visual Effects Supervisor'),(52520,3965,3,'Casting'),(52520,11823,8,'Costume Design'),(52520,12374,3,'Executive Producer'),(52520,17829,7,'Production Design'),(52520,31126,1,'Director of Photography'),(52520,33045,4,'Screenplay'),(52520,52790,3,'Executive Producer'),(52520,54781,4,'Screenplay'),(52520,53114,7,'Set Decoration'),(52520,75294,8,'Makeup Department Head'),(52520,80923,2,'Director'),(52520,80924,2,'Director'),(52520,146142,4,'Story'),(52520,146142,4,'Screenplay'),(52520,146143,9,'Stunt Coordinator'),(52520,184986,7,'Art Direction'),(52520,558231,5,'Editor'),(52520,1034748,3,'Casting'),(52520,1034749,9,'Post Production Supervisor'),(52520,1203578,3,'Executive Producer'),(52520,1248221,4,'Characters'),(52520,1324015,7,'Art Direction'),(52520,1384398,2,'Script Supervisor'),(52520,1431012,9,'Makeup Effects'),(52520,1451676,9,'Visual Effects Editor'),(52520,1453930,10,'Animation'),(52520,1579180,1,'First Assistant Camera'),(52520,1737894,9,'Stunts'),(80585,15009,4,'Screenplay'),(80585,2219,3,'Producer'),(80585,11699,1,'Director of Photography'),(80585,20739,2,'Director'),(80585,20739,3,'Producer'),(80585,20742,3,'Producer'),(80585,29206,3,'Producer'),(80585,34050,4,'Screenplay'),(80585,57087,5,'Editor'),(80585,131060,4,'Screenplay'),(80585,1001673,3,'Producer'),(80585,1001674,3,'Producer'),(80585,1424894,8,'Hair Department Head'),(80585,1460603,9,'Compositors'),(80585,1691433,6,'Music Director'),(49021,1075,6,'Original Music Composer'),(49021,1076,6,'Original Music Composer'),(49021,1315,5,'Editor'),(49021,3498,3,'Executive Producer'),(49021,4189,8,'Costume Design'),(49021,6590,3,'Producer'),(49021,9345,7,'Set Decoration'),(49021,12382,1,'Director of Photography'),(49021,21932,3,'Producer'),(49021,56096,3,'Executive Producer'),(49021,61483,3,'Producer'),(49021,82611,3,'Producer'),(49021,141688,2,'Director'),(49021,141688,4,'Screenplay'),(49021,216278,4,'Novel'),(49021,216278,4,'Screenplay'),(49021,900044,4,'Scenario Writer'),(49021,930784,3,'Casting'),(49021,1024904,3,'Executive Producer'),(49021,1024905,3,'Executive Producer'),(49021,1024906,3,'Executive Producer'),(49021,1024907,3,'Line Producer'),(49021,1024908,3,'Casting'),(49021,1024909,8,'Costume Design'),(49021,1452989,10,'Animation'),(49021,1457935,9,'Compositors'),(59981,40347,5,'Editor'),(59981,56270,5,'Editor'),(59981,61295,3,'Producer'),(59981,61419,3,'Casting'),(59981,73411,3,'Producer'),(59981,73412,3,'Producer'),(59981,15780,2,'Director'),(59981,15780,7,'Production Design'),(59981,80827,6,'Foley'),(59981,83085,6,'Sound Effects Editor'),(59981,112609,6,'Sound Re-Recording Mixer'),(59981,150857,6,'Music'),(59981,199698,4,'Screenplay'),(59981,1212446,9,'Choreographer'),(59981,1214818,4,'Screenplay'),(59981,1227175,6,'Supervising Sound Editor'),(59981,1339441,7,'Set Designer'),(59981,1380479,6,'Sound Designer'),(59981,1404393,6,'Music Editor'),(59981,1404717,5,'Dialogue Editor'),(59981,1438901,7,'Art Direction'),(59981,1438903,9,'Sound Recordist'),(59981,1438908,9,'CG Supervisor'),(59981,1438912,10,'Animation Director'),(59981,1438917,9,'Sequence Supervisor'),(59981,1438920,2,'Script Supervisor'),(59981,1447317,4,'Storyboard'),(59981,1447593,2,'Layout'),(59981,1451229,10,'Visual Development'),(201088,1721,5,'Editor'),(201088,2445,3,'Executive Producer'),(201088,557,8,'Costume Design'),(201088,638,2,'Director'),(201088,638,3,'Producer'),(201088,897,3,'Casting'),(201088,5553,6,'Original Music Composer'),(201088,6055,7,'Set Decoration'),(201088,7262,1,'Director of Photography'),(201088,53900,7,'Art Direction'),(201088,17962,3,'Co-Producer'),(201088,23781,5,'Editor'),(201088,54211,3,'Producer'),(201088,66692,8,'Hairstylist'),(201088,61091,3,'Producer'),(201088,92302,7,'Supervising Art Director'),(201088,76054,7,'Art Direction'),(201088,90281,3,'Executive Producer'),(201088,142094,3,'Co-Producer'),(201088,142391,6,'Original Music Composer'),(201088,936649,3,'Casting'),(201088,968471,6,'Original Music Composer'),(201088,985376,3,'Casting'),(201088,999565,5,'Editor'),(201088,1117377,2,'Script Supervisor'),(201088,1173300,3,'Line Producer'),(201088,1177364,1,'Camera Operator'),(201088,1182723,4,'Writer'),(201088,1271644,7,'Production Design'),(201088,1316003,8,'Makeup Department Head'),(201088,1367672,11,'Gaffer'),(201088,1387269,5,'Editor'),(201088,1399071,1,'Helicopter Camera'),(201088,1400543,3,'Co-Producer'),(201088,1403479,9,'Second Unit Cinematographer'),(201088,1412971,8,'Hairstylist'),(201088,1413153,7,'Construction Coordinator'),(201088,1414993,7,'Art Department Coordinator'),(201088,1415503,8,'Assistant Costume Designer'),(201088,1417834,1,'Camera Technician'),(201088,1460672,9,'Post Production Supervisor'),(201088,1461178,9,'Second Unit Cinematographer'),(201088,1464045,3,'Associate Producer'),(201088,1480628,8,'Hairstylist'),(201088,1480629,8,'Hairstylist'),(201088,1480630,8,'Makeup Artist'),(201088,1534226,11,'Gaffer'),(201088,1537505,3,'Casting Associate'),(201088,1537506,9,'Armorer'),(201088,1537507,11,'Gaffer'),(201088,1537508,1,'First Assistant Camera'),(201088,1537509,1,'First Assistant Camera'),(201088,1537510,11,'Rigging Gaffer'),(201088,1552521,9,'Stunts'),(107846,8221,7,'Art Direction'),(107846,9347,9,'Second Unit Cinematographer'),(107846,9441,6,'Foley'),(107846,9545,3,'Casting'),(107846,10820,7,'Production Design'),(107846,16486,3,'Producer'),(107846,17210,3,'Executive Producer'),(107846,17211,3,'Producer'),(107846,22047,6,'Original Music Composer'),(107846,56765,6,'Sound Re-Recording Mixer'),(107846,23906,7,'Set Decoration'),(107846,29605,2,'Director'),(107846,46088,3,'Producer'),(107846,53841,1,'Director of Photography'),(107846,55081,9,'Stunt Coordinator'),(107846,113097,6,'Sound Designer'),(107846,113097,6,'Supervising Sound Editor'),(107846,59700,3,'Producer'),(107846,67160,1,'Camera Operator'),(107846,78978,1,'Additional Camera'),(107846,133287,4,'Screenplay'),(107846,954441,3,'Executive Producer'),(107846,959114,3,'Executive Producer'),(107846,963705,8,'Costume Design'),(107846,965383,5,'Editor'),(107846,1001705,3,'Producer'),(107846,1024912,7,'Art Direction'),(107846,1042683,4,'Screenplay'),(107846,1042683,4,'Story'),(107846,1046155,3,'Executive Producer'),(107846,1047108,7,'Set Designer'),(107846,1069869,8,'Makeup Artist'),(107846,1113449,3,'Executive Producer'),(107846,1138845,3,'Executive Producer'),(107846,1144651,1,'Camera Operator'),(107846,1181371,5,'Digital Intermediate'),(107846,1276602,3,'Casting'),(107846,1285821,3,'Executive Producer'),(107846,1285822,3,'Executive Producer'),(107846,1285823,3,'Executive Producer'),(107846,1302342,3,'Executive Producer'),(107846,1316296,8,'Makeup Department Head'),(107846,1322011,8,'Set Costumer'),(107846,1322017,7,'Set Designer'),(107846,1324809,8,'Costume Supervisor'),(107846,1324809,8,'Set Costumer'),(107846,1333931,9,'Property Master'),(107846,1340105,2,'Script Supervisor'),(107846,1341405,6,'ADR & Dubbing'),(107846,1344843,2,'Script Supervisor'),(107846,1367502,11,'Gaffer'),(107846,1367503,8,'Set Costumer'),(107846,1378722,6,'Music Editor'),(107846,1392211,6,'Sound Re-Recording Mixer'),(107846,1393372,7,'Construction Coordinator'),(107846,1393434,9,'Scenic Artist'),(107846,1393581,8,'Makeup Artist'),(107846,1396794,6,'Sound Re-Recording Mixer'),(107846,1396796,9,'Sound Recordist'),(107846,1398972,1,'Underwater Camera'),(107846,1399071,1,'Helicopter Camera'),(107846,1399323,8,'Set Costumer'),(107846,1400402,5,'First Assistant Editor'),(107846,1400555,7,'Set Designer'),(107846,1401202,2,'Script Supervisor'),(107846,1401890,10,'Visual Effects Producer'),(107846,1402047,2,'Script Supervisor'),(107846,1402538,3,'Location Manager'),(107846,1403426,8,'Hairstylist'),(107846,1403479,9,'Second Unit Cinematographer'),(107846,1406106,10,'Visual Effects Supervisor'),(107846,1407019,9,'Visual Effects Editor'),(107846,1407028,1,'Still Photographer'),(107846,1407339,8,'Hairstylist'),(107846,1407351,7,'Greensman'),(107846,1407364,9,'Stunt Coordinator'),(107846,1409889,9,'Sound Recordist'),(107846,1411876,1,'Steadicam Operator'),(107846,1412699,6,'Sound Effects Editor'),(107846,1412703,5,'Dialogue Editor'),(107846,1415093,5,'Digital Intermediate'),(107846,1418350,8,'Makeup Artist'),(107846,1418413,9,'Unit Publicist'),(107846,1420781,9,'Scenic Artist'),(107846,1424637,6,'Music Editor'),(107846,1425341,11,'Rigging Gaffer'),(107846,1425829,1,'Camera Operator'),(107846,1427412,1,'Camera Operator'),(107846,1434557,8,'Makeup Artist'),(107846,1434558,7,'Art Department Coordinator'),(107846,1434559,9,'Property Master'),(107846,1434560,7,'Leadman'),(107846,1434561,10,'Animation'),(107846,1434562,9,'Visual Effects Editor'),(107846,1434563,9,'Visual Effects Editor'),(107846,1434564,9,'Visual Effects Editor'),(107846,1434565,9,'CG Supervisor'),(107846,1434566,1,'Camera Operator'),(107846,1434567,8,'Set Costumer'),(107846,1434568,8,'Set Costumer'),(188207,5935,4,'Writer'),(188207,16830,3,'Producer'),(188207,16938,2,'Director'),(188207,16938,3,'Producer'),(188207,16938,4,'Writer'),(188207,17207,3,'Producer'),(188207,17208,3,'Producer'),(188207,17209,3,'Executive Producer'),(188207,22815,3,'Executive Producer'),(188207,27220,7,'Production Design'),(188207,45829,3,'Executive Producer'),(188207,53346,3,'Casting'),(188207,56231,5,'Editor'),(188207,57585,1,'Director of Photography'),(188207,61860,3,'Casting'),(188207,65840,6,'Original Music Composer'),(188207,67242,7,'Art Direction'),(188207,117441,4,'Writer'),(188207,138657,10,'Visual Effects Producer'),(188207,1015623,7,'Art Direction'),(188207,1069627,1,'Camera Operator'),(188207,1135115,8,'Costume Design'),(188207,1274286,4,'Writer'),(188207,1327184,8,'Makeup Department Head'),(188207,1337667,7,'Set Designer'),(188207,1337669,6,'Boom Operator'),(188207,1337670,6,'Sound mixer'),(188207,1338480,6,'Foley'),(188207,1338481,6,'Sound Re-Recording Mixer'),(188207,1338482,6,'Sound Effects Editor'),(188207,1338483,6,'Sound Effects Editor'),(188207,1345262,6,'Sound Designer'),(188207,1345267,8,'Set Costumer'),(188207,1350232,7,'Greensman'),(188207,1350233,7,'Art Department Coordinator'),(188207,1350235,7,'Set Designer'),(188207,1350236,5,'Dialogue Editor'),(188207,1350237,6,'Supervising Sound Editor'),(188207,1350243,10,'Visual Effects Supervisor'),(188207,1350244,10,'Visual Effects Supervisor'),(188207,1350248,10,'Visual Effects Supervisor'),(188207,1350251,10,'Visual Effects Supervisor'),(188207,1350252,10,'Visual Effects Producer'),(188207,1350253,10,'Visual Effects Producer'),(188207,1350254,9,'Stunt Coordinator'),(188207,1350255,1,'Camera Operator'),(188207,1350256,8,'Costume Supervisor'),(188207,1350257,8,'Set Costumer'),(188207,1350258,8,'Set Costumer'),(188207,1350259,6,'Music Editor'),(188207,1350260,3,'Location Manager'),(188207,1350261,2,'Script Supervisor'),(188207,1350262,2,'Script Supervisor'),(188207,1407019,9,'Visual Effects Editor'),(214756,7494,3,'Casting'),(214756,11876,5,'Editor'),(214756,19282,3,'Producer'),(214756,42632,1,'Director of Photography'),(214756,47294,8,'Costume Design'),(214756,52139,2,'Director'),(214756,52139,3,'Producer'),(214756,52139,4,'Writer'),(214756,52139,4,'Characters'),(214756,53811,7,'Production Design'),(214756,54896,3,'Co-Producer'),(214756,74973,6,'Production Sound Mixer'),(214756,137175,7,'Art Direction'),(214756,143894,3,'Co-Producer'),(214756,570785,4,'Writer'),(214756,570785,3,'Executive Producer'),(214756,570788,3,'Producer'),(214756,960673,7,'Supervising Art Director'),(214756,996220,9,'Stunts'),(214756,1071607,6,'Original Music Composer'),(214756,1085298,9,'Special Effects Coordinator'),(214756,1089071,3,'Producer'),(214756,1140576,10,'Animation'),(214756,1204331,7,'Set Decoration'),(214756,1224494,4,'Writer'),(214756,1224494,3,'Executive Producer'),(214756,1367679,2,'Script Supervisor'),(214756,1367679,3,'Associate Producer'),(214756,1387186,1,'Still Photographer'),(214756,1395451,10,'Visual Effects Producer'),(214756,1406839,9,'Stunt Coordinator'),(214756,1434599,9,'Stunt Coordinator'),(214756,1440496,6,'Music Editor'),(214756,1452989,10,'Animation'),(214756,1452993,10,'Animation'),(214756,1453006,9,'Technical Supervisor'),(214756,1453007,10,'Animation Director'),(214756,1453014,10,'Animation'),(214756,1453594,10,'Animation'),(214756,1453928,10,'Animation'),(214756,1453929,10,'Animation'),(214756,1453930,10,'Animation'),(214756,1453931,10,'Animation'),(214756,1453932,10,'Animation'),(214756,1453933,10,'Animation'),(214756,1453934,10,'Animation'),(214756,1453943,11,'Lighting Technician'),(214756,1455534,10,'Animation'),(214756,1457917,9,'Stunts'),(214756,1457935,9,'Compositors'),(214756,1457936,9,'Compositors'),(214756,1457937,9,'Compositors'),(214756,1457938,9,'Compositors'),(214756,1457939,10,'Visual Effects Producer'),(214756,1457941,10,'Visual Effects'),(214756,1457942,9,'Stunts'),(214756,1457943,9,'Stunts'),(214756,1457944,9,'Driver'),(214756,1457945,9,'Driver'),(214756,1457947,10,'Animation'),(214756,1457948,9,'Compositors'),(214756,1457949,7,'Art Direction'),(214756,1457950,4,'Storyboard'),(214756,1459718,10,'Animation'),(214756,1459719,9,'Special Effects'),(214756,1459720,9,'Special Effects'),(214756,1459721,9,'Special Effects'),(214756,1459722,9,'Special Effects'),(214756,1459723,9,'Special Effects Coordinator'),(214756,1459724,9,'Special Effects'),(214756,1459725,9,'Special Effects'),(214756,1460179,9,'Compositors'),(214756,1464845,3,'Associate Producer'),(214756,1465139,10,'Animation'),(214756,1555208,6,'Music Editor'),(214756,1555210,6,'Orchestrator'),(48988,1597,6,'Supervising Sound Effects Editor'),(48988,11079,7,'Set Decoration'),(48988,2507,1,'Director of Photography'),(48988,6114,3,'Executive Producer'),(48988,7415,3,'Casting'),(48988,7395,4,'Screenplay'),(48988,7395,2,'Director'),(48988,7395,3,'Producer'),(48988,7396,4,'Screenplay'),(48988,7396,2,'Director'),(48988,7396,3,'Producer'),(48988,7407,3,'Producer'),(48988,7408,3,'Producer'),(48988,7409,3,'Co-Producer'),(48988,7412,3,'Co-Producer'),(48988,7416,7,'Production Design'),(48988,21004,8,'Costume Design'),(48988,10830,3,'Executive Producer'),(48988,56763,4,'Screenplay'),(48988,57430,3,'Executive Producer'),(48988,58809,2,'Script Supervisor'),(48988,73108,5,'Editor'),(48988,82357,7,'Art Direction'),(48988,285452,4,'Screenplay'),(48988,285452,4,'Story'),(48988,950257,3,'Executive Producer'),(48988,1031811,6,'Supervising Sound Editor'),(48988,1095320,6,'Music Editor'),(48988,1116283,3,'Co-Producer'),(48988,1194471,1,'Still Photographer'),(48988,1342656,5,'Dialogue Editor'),(48988,1345586,7,'Art Department Coordinator'),(48988,1387183,5,'Dialogue Editor'),(48988,1394984,6,'Music Editor'),(48988,1416056,8,'Hair Department Head'),(48988,1428259,3,'Associate Producer'),(48988,1455294,8,'Costume Supervisor'),(48988,1459196,8,'Makeup Department Head'),(48988,1546047,6,'Music Supervisor'),(48988,1546441,6,'Music Supervisor'),(48988,1550166,6,'Sound mixer'),(48988,1552070,3,'Co-Producer'),(48988,1552084,3,'Production Coordinator'),(300673,403,1,'Director of Photography'),(300673,324,4,'Screenplay'),(300673,1225,6,'Original Music Composer'),(300673,4061,8,'Costume Design'),(300673,33685,5,'Editor'),(300673,6044,3,'Casting'),(300673,7855,7,'Production Design'),(300673,8848,7,'Supervising Art Director'),(300673,15332,6,'Supervising Sound Editor'),(300673,18786,8,'Hairstylist'),(300673,32282,8,'Hair Department Head'),(300673,40104,8,'Makeup Artist'),(300673,40375,3,'Producer'),(300673,50767,2,'Director'),(300673,52456,3,'Casting Associate'),(300673,62723,5,'Digital Intermediate'),(300673,67682,3,'Producer'),(300673,71127,1,'Underwater Camera'),(300673,83085,6,'Sound Effects Editor'),(300673,83091,6,'Sound Re-Recording Mixer'),(300673,86525,4,'Screenplay'),(300673,132983,4,'Screenplay'),(300673,948223,7,'Set Decoration'),(300673,978127,6,'Sound Re-Recording Mixer'),(300673,1113479,3,'Executive Producer'),(300673,1318465,8,'Set Costumer'),(300673,1334462,7,'Construction Coordinator'),(300673,1338372,6,'Foley'),(300673,1339435,7,'Set Designer'),(300673,1352979,6,'Music Editor'),(300673,1355531,2,'Script Supervisor'),(300673,1357043,7,'Set Designer'),(300673,1357061,6,'Sound Effects Editor'),(300673,1359033,11,'Rigging Gaffer'),(300673,1367493,6,'Foley'),(300673,1376893,7,'Set Designer'),(300673,1386904,7,'Set Designer'),(300673,1392085,6,'ADR & Dubbing'),(300673,1392085,5,'Dialogue Editor'),(300673,1392116,7,'Set Designer'),(300673,1399862,5,'Dialogue Editor'),(300673,1400534,1,'Still Photographer'),(300673,1400553,7,'Set Designer'),(300673,1400734,8,'Set Costumer'),(300673,1401729,10,'Visual Effects Producer'),(300673,1406084,9,'Property Master'),(300673,1406780,1,'Helicopter Camera'),(300673,1411801,8,'Makeup Artist'),(300673,1412706,10,'VFX Editor'),(300673,1412722,5,'Digital Intermediate'),(300673,1415151,10,'Visual Effects Supervisor'),(300673,1416096,8,'Makeup Department Head'),(300673,1419099,7,'Leadman'),(300673,1426828,6,'Foley'),(300673,1428585,8,'Hairstylist'),(300673,1428835,11,'Gaffer'),(300673,1436174,9,'CG Supervisor'),(300673,1447948,1,'Still Photographer'),(300673,1457032,8,'Makeup Artist'),(300673,1459910,10,'VFX Editor'),(300673,1463296,7,'Assistant Art Director'),(300673,1468624,8,'Makeup Artist'),(300673,1501403,10,'Animation Supervisor'),(300673,1521472,8,'Costume Supervisor'),(300673,1530712,10,'Special Effects Supervisor'),(300673,1531525,9,'Visual Effects Editor'),(300673,1533038,2,'Script Supervisor'),(300673,1537105,8,'Makeup Artist'),(300673,1553741,5,'First Assistant Editor'),(300673,1554997,7,'Art Department Coordinator'),(300673,1569322,5,'Digital Intermediate'),(300673,1588593,9,'Choreographer'),(300673,1590165,4,'Book'),(300673,1590166,4,'Book'),(300673,1630612,8,'Set Costumer'),(300673,1630614,8,'Hairstylist'),(300673,1630616,8,'Hairstylist'),(300673,1630617,1,'Camera Operator'),(300673,1630618,11,'Gaffer'),(300673,1630896,9,'CG Supervisor'),(300673,1630898,9,'CG Supervisor'),(300673,1630899,9,'CG Supervisor'),(300673,1630900,10,'Animation'),(300673,1630901,10,'Animation'),(300673,1630903,9,'Visual Effects Editor'),(300673,1630904,9,'Visual Effects Editor'),(300673,1630905,9,'Visual Effects Editor'),(300673,1630906,10,'Visual Effects Producer'),(300673,1630907,10,'Visual Effects Supervisor'),(300673,1630908,10,'Visual Effects Supervisor'),(300673,1630915,9,'Special Effects Coordinator'),(300673,1630936,3,'Researcher'),(38778,6737,2,'Director'),(38778,38507,4,'Story'),(38778,38507,4,'Screenplay'),(38778,121357,4,'Screenplay'),(38778,121358,4,'Screenplay'),(38778,1453498,7,'Art Department Manager'),(72331,510,3,'Producer'),(72331,2122,5,'Editor'),(72331,4032,7,'Set Decoration'),(72331,7235,7,'Art Direction'),(72331,6044,3,'Casting'),(72331,8750,1,'Director of Photography'),(72331,11092,4,'Screenplay'),(72331,11092,3,'Executive Producer'),(72331,20720,3,'Producer'),(72331,23430,2,'Director'),(72331,23430,3,'Producer'),(72331,25292,3,'Executive Producer'),(72331,30247,8,'Costume Design'),(72331,37298,8,'Costume Design'),(72331,39923,7,'Production Design'),(72331,122294,9,'Stunts'),(72331,227440,6,'Music'),(72331,565491,4,'Screenplay'),(72331,565491,4,'Novel'),(72331,972989,3,'Executive Producer'),(72331,1392170,6,'Music Editor'),(72331,1412756,9,'Visual Effects Editor'),(72331,1456696,9,'Compositors'),(72331,1673003,9,'Stunts'),(136797,1720,3,'Casting'),(136797,10816,5,'Editor'),(136797,2243,7,'Production Design'),(136797,7735,8,'Costume Design'),(136797,9441,6,'Foley'),(136797,13102,7,'Construction Coordinator'),(136797,28401,3,'Executive Producer'),(136797,34882,3,'Producer'),(136797,53176,3,'Producer'),(136797,53176,4,'Story'),(136797,57126,1,'Director of Photography'),(136797,63946,3,'Executive Producer'),(136797,226463,6,'Original Music Composer'),(136797,293911,2,'Director'),(136797,293911,5,'Editor'),(136797,293911,3,'Executive Producer'),(136797,956222,9,'Thanks'),(136797,968453,4,'Screenplay'),(136797,968453,4,'Story'),(136797,1050654,3,'Executive Producer'),(136797,1050932,8,'Set Costumer'),(136797,1116937,6,'Foley'),(136797,1147602,3,'Producer'),(136797,1205029,6,'Boom Operator'),(136797,1269670,8,'Makeup Department Head'),(136797,1319750,7,'Set Designer'),(136797,1324018,7,'Art Direction'),(136797,1324652,1,'Still Photographer'),(136797,1329418,8,'Costume Supervisor'),(136797,1345583,7,'Construction Coordinator'),(136797,1345584,9,'Propmaker'),(136797,1345585,7,'Leadman'),(136797,1345586,7,'Art Department Coordinator'),(136797,1345588,9,'Propmaker'),(136797,1345589,9,'Propmaker'),(136797,1345590,7,'Greensman'),(136797,1345591,7,'Greensman'),(136797,1345592,7,'Standby Painter'),(136797,1345593,6,'Sound Designer'),(136797,1345594,6,'Sound Designer'),(136797,1345595,6,'Sound Re-Recording Mixer'),(136797,1345596,5,'Dialogue Editor'),(136797,1345597,6,'Supervising Sound Editor'),(136797,1345600,10,'Visual Effects Supervisor'),(136797,1345602,10,'Visual Effects Producer'),(136797,1345603,10,'Visual Effects Producer'),(136797,1345604,9,'Systems Administrators & Support'),(136797,1345606,10,'Visual Effects Producer'),(136797,1345608,9,'Stunt Coordinator'),(136797,1345610,3,'Casting'),(136797,1345611,3,'Casting'),(136797,1345612,8,'Set Costumer'),(136797,1345613,8,'Set Costumer'),(136797,1345614,8,'Set Costumer'),(136797,1345615,5,'Color Timer'),(136797,1345616,6,'Music Editor'),(136797,1345618,9,'Transportation Captain'),(136797,1345620,9,'Transportation Coordinator'),(136797,1345621,9,'Transportation Co-Captain'),(136797,1345624,3,'Location Manager'),(136797,1345626,3,'Location Manager'),(136797,1345627,3,'Location Manager'),(136797,1345633,9,'Studio Teachers'),(136797,1345635,2,'Script Supervisor'),(136797,1345651,1,'Camera Operator'),(136797,1456696,9,'Compositors'),(136797,1477203,3,'Associate Producer'),(136797,1529990,6,'Music Supervisor'),(136797,1529999,6,'Music Supervisor'),(72976,491,6,'Original Music Composer'),(72976,2952,3,'Casting'),(72976,488,2,'Director'),(72976,488,3,'Producer'),(72976,489,3,'Producer'),(72976,492,1,'Director of Photography'),(72976,493,5,'Editor'),(72976,496,7,'Production Design'),(72976,498,8,'Costume Design'),(72976,4769,3,'Executive Producer'),(72976,8680,7,'Set Decoration'),(72976,8780,4,'Screenplay'),(72976,10684,3,'Executive Producer'),(72976,23972,7,'Art Direction'),(72976,31519,3,'Executive Producer'),(72976,958921,7,'Art Direction'),(72976,966928,7,'Art Direction'),(72976,1102140,3,'Executive Producer'),(72976,1160631,3,'Executive Producer'),(72976,1230086,4,'Novel'),(72976,1271731,7,'Set Decoration'),(82695,933,4,'Screenplay'),(82695,3683,8,'Costume Design'),(82695,2236,3,'Producer'),(82695,2238,3,'Producer'),(82695,6379,7,'Production Design'),(82695,16363,3,'Casting'),(82695,37127,4,'Novel'),(82695,56021,1,'Director of Photography'),(82695,67202,7,'Supervising Art Director'),(82695,67204,7,'Set Decoration'),(82695,70500,2,'Director'),(82695,231709,4,'Musical'),(82695,231713,3,'Producer'),(82695,231716,6,'Original Music Composer'),(82695,231716,4,'Musical'),(82695,963697,7,'Art Department Coordinator'),(82695,1079085,6,'Foley'),(82695,1233684,10,'Visual Effects Supervisor'),(82695,1318830,10,'Visual Effects Supervisor'),(82695,1327792,8,'Costume Supervisor'),(82695,1335559,6,'Sound Effects Editor'),(82695,1337393,7,'Art Direction'),(82695,1337394,7,'Art Direction'),(82695,1337400,7,'Sculptor'),(82695,1337401,7,'Sculptor'),(82695,1337402,7,'Sculptor'),(82695,1337403,7,'Greensman'),(82695,1337404,7,'Sculptor'),(82695,1337406,7,'Sculptor'),(82695,1337408,6,'Sound Effects Editor'),(82695,1337409,6,'Sound Effects Editor'),(82695,1337410,6,'Supervising Sound Editor'),(82695,1337411,6,'Supervising Sound Editor'),(82695,1337412,6,'Foley'),(82695,1337413,6,'Foley'),(82695,1337414,10,'Visual Effects Supervisor'),(82695,1337415,10,'Visual Effects Producer'),(82695,1337416,10,'Visual Effects Producer'),(82695,1337417,10,'Visual Effects Supervisor'),(82695,1337418,10,'Visual Effects Supervisor'),(82695,1337419,6,'Music Editor'),(82695,1337420,6,'Music Editor'),(82695,1337421,9,'Transportation Coordinator'),(82695,1337422,2,'Script Supervisor'),(82695,1337423,9,'Choreographer'),(82695,1395709,6,'Sound Re-Recording Mixer'),(41733,7234,9,'Supervising Art Director'),(41733,5387,1,'Director of Photography'),(41733,9043,8,'Costume Design'),(41733,14189,5,'Editor'),(41733,14377,3,'Casting'),(41733,12533,6,'Sound mixer'),(41733,12587,6,'Boom Operator'),(41733,16177,6,'Sound Re-Recording Mixer'),(41733,33017,9,'Stunt Coordinator'),(41733,23486,6,'Original Music Composer'),(41733,52161,6,'Music Supervisor'),(41733,37162,3,'Executive Producer'),(41733,52600,7,'Production Design'),(41733,54211,3,'Executive Producer'),(41733,57130,2,'Director'),(41733,57130,4,'Screenplay'),(41733,57130,3,'Producer'),(41733,57132,3,'Producer'),(41733,59833,3,'Executive Producer'),(41733,60935,3,'Casting'),(41733,66549,4,'Screenplay'),(41733,74567,3,'Co-Producer'),(41733,74567,3,'Unit Production Manager'),(41733,75391,7,'Set Decoration'),(41733,86907,9,'Post Production Supervisor'),(41733,127146,4,'Screenplay'),(41733,127146,4,'Story'),(41733,127148,4,'Screenplay'),(41733,127148,4,'Story'),(41733,957353,3,'Co-Producer'),(41733,1065353,3,'Associate Producer'),(41733,1192700,6,'Music Supervisor'),(41733,1324652,1,'Still Photographer'),(41733,1357043,7,'Art Direction'),(41733,1357059,5,'Dialogue Editor'),(41733,1367494,6,'Sound Effects Editor'),(41733,1367494,6,'Sound Designer'),(41733,1377220,6,'Sound Re-Recording Mixer'),(41733,1394307,6,'Music Editor'),(41733,1394984,6,'Music Editor'),(41733,1399061,5,'Dialogue Editor'),(41733,1400738,2,'Script Supervisor'),(41733,1407229,1,'Camera Operator'),(41733,1408301,6,'Sound Effects Editor'),(41733,1408301,6,'Sound Designer'),(41733,1408311,5,'Dialogue Editor'),(41733,1415632,1,'Camera Operator'),(41733,1424153,7,'Art Direction'),(41733,1424167,6,'Sound Designer'),(41733,1424167,6,'Supervising Sound Editor'),(41733,1527863,9,'Stunts'),(41733,1531867,2,'Script Supervisor'),(41733,1539172,11,'Lighting Technician'),(41733,1546457,6,'Music Editor'),(41733,1564970,7,'Art Department Coordinator'),(41733,1564995,3,'Production Coordinator'),(41733,1564997,3,'Executive In Charge Of Production'),(227306,151,1,'Director of Photography'),(227306,151,1,'Camera Operator'),(227306,15841,5,'Editor'),(227306,6410,3,'Casting'),(227306,933,4,'Screenplay'),(227306,1223,4,'Screenplay'),(227306,1224,4,'Screenplay'),(227306,1635,5,'Editor'),(227306,2163,4,'Screenplay'),(227306,2243,7,'Production Design'),(227306,2949,6,'Music'),(227306,3184,3,'Producer'),(227306,4061,8,'Costume Design'),(227306,7531,2,'First Assistant Director'),(227306,10950,3,'Producer'),(227306,9357,9,'Stunt Coordinator'),(227306,9583,7,'Supervising Art Director'),(227306,9583,7,'Art Direction'),(227306,11701,2,'Director'),(227306,11701,3,'Producer'),(227306,52165,8,'Hairstylist'),(227306,38268,4,'Novel'),(227306,61485,7,'Set Decoration'),(227306,63289,10,'Visual Effects Producer'),(227306,75143,8,'Makeup Artist'),(227306,95835,6,'Sound Designer'),(227306,1031811,6,'Supervising Sound Editor'),(227306,1069714,8,'Makeup Department Head'),(227306,1116936,6,'Foley Editor'),(227306,1143709,3,'Producer'),(227306,1195358,8,'Costume Coordinator'),(227306,1330048,8,'Costume Supervisor'),(227306,1334496,7,'Property Master'),(227306,1347995,7,'Set Designer'),(227306,1355535,7,'Art Department Coordinator'),(227306,1364623,1,'Underwater Director of Photography'),(227306,1377293,6,'Sound Effects Editor'),(227306,1390524,6,'Sound Designer'),(227306,1391707,7,'Art Direction'),(227306,1391711,7,'Art Direction'),(227306,1394306,6,'Music Editor'),(227306,1395243,1,'Still Photographer'),(227306,1401639,8,'Hairstylist'),(227306,1404903,6,'Supervising Sound Editor'),(227306,1405232,6,'Dialogue Editor'),(227306,1406390,6,'Sound Effects Editor'),(227306,1412735,7,'Construction Coordinator'),(227306,1414185,9,'Visual Effects Editor'),(227306,1415642,6,'Music Editor'),(227306,1425376,7,'Set Designer'),(227306,1425397,2,'Script Supervisor'),(227306,1437193,6,'ADR Editor'),(227306,1453960,10,'Visual Effects Coordinator'),(227306,1453978,10,'Modeling'),(227306,1459743,10,'Animation'),(227306,1463489,10,'Visual Effects Coordinator'),(227306,1465351,7,'Art Department Coordinator'),(227306,1465352,8,'Costume Supervisor'),(227306,1536893,7,'Construction Coordinator'),(227306,1536898,9,'Armorer'),(227306,1547204,10,'Visual Effects Producer'),(227306,1554365,9,'Visual Effects Editor'),(227306,1565126,3,'Production Coordinator'),(227306,1568468,10,'VFX Editor'),(227306,1569342,1,'Steadicam Operator'),(227306,1578022,8,'Makeup Artist'),(227306,1644252,1,'Aerial Camera'),(227306,1730964,9,'Armorer'),(227306,1746452,8,'Costume Coordinator'),(227306,1816360,7,'Set Designer'),(227306,1866242,8,'Hairstylist'),(227306,1866245,8,'Makeup Artist'),(227306,1866259,7,'Construction Foreman'),(227306,1866260,10,'Modeling'),(227306,1866265,7,'Set Designer'),(227306,1866270,7,'Conceptual Illustrator'),(227306,1866272,9,'Propmaker'),(227306,1866283,7,'Greensman'),(227306,1866290,7,'Greensman'),(227306,1866293,9,'Propmaker'),(227306,1866299,6,'Boom Operator'),(227306,1866312,10,'Visual Effects Coordinator'),(227306,1866315,10,'Roto Supervisor'),(227306,1866324,10,'Visual Effects Coordinator'),(227306,1866325,10,'Visual Effects Coordinator'),(227306,1866330,10,'Visual Effects Coordinator'),(227306,1866353,8,'Key Costumer'),(227306,1866356,8,'Key Costumer'),(227306,1866370,3,'Production Coordinator'),(227306,1866374,3,'Production Coordinator'),(227306,1866376,9,'Dialect Coach'),(227306,1866378,9,'Pilot'),(76493,2997,3,'Producer'),(76493,5387,9,'Cinematography'),(76493,6348,8,'Costume Design'),(76493,6730,4,'Screenplay'),(76493,6730,3,'Producer'),(76493,6731,3,'Producer'),(76493,6739,6,'Original Music Composer'),(76493,6767,2,'Director'),(76493,57406,4,'Screenplay'),(76493,224530,5,'Editor'),(76493,1085752,8,'Hairstylist'),(196867,2888,3,'Producer'),(196867,10567,4,'Screenplay'),(196867,5332,8,'Costume Design'),(196867,9575,3,'Producer'),(196867,14640,4,'Novel'),(196867,16497,6,'Music Editor'),(196867,25906,5,'Editor'),(196867,37406,7,'Art Direction'),(196867,40511,1,'Director of Photography'),(196867,46080,3,'Producer'),(196867,46943,3,'Casting'),(196867,84932,3,'Producer'),(196867,74574,3,'Producer'),(196867,82511,2,'Director'),(196867,82511,4,'Screenplay'),(196867,91042,9,'Pilot'),(196867,91122,1,'Aerial Director of Photography'),(196867,554888,6,'Sound Effects Editor'),(196867,957292,7,'Set Decoration'),(196867,957353,2,'First Assistant Director'),(196867,1197918,7,'Production Design'),(196867,1199560,6,'Orchestrator'),(196867,1332190,7,'Property Master'),(196867,1347758,3,'Location Manager'),(196867,1360097,6,'Dialogue Editor'),(196867,1389138,2,'Script Supervisor'),(196867,1398863,6,'Music Editor'),(196867,1400490,7,'Art Department Coordinator'),(196867,1401997,11,'Gaffer'),(196867,1404364,6,'Dialogue Editor'),(196867,1406389,6,'Foley Editor'),(196867,1406571,8,'Hair Department Head'),(196867,1406780,1,'Aerial Director of Photography'),(196867,1407018,9,'Special Effects Coordinator'),(196867,1407021,1,'Steadicam Operator'),(196867,1407027,1,'Still Photographer'),(196867,1413091,6,'Supervising ADR Editor'),(196867,1417515,6,'Sound Effects Editor'),(196867,1417885,9,'Visual Effects Editor'),(196867,1440301,1,'Camera Operator'),(196867,1464521,11,'Rigging Gaffer'),(196867,1468581,9,'Stunt Coordinator'),(196867,1532407,6,'Music Editor'),(196867,1573082,1,'Key Grip'),(196867,1703992,6,'Boom Operator'),(196867,1717515,7,'Leadman'),(196867,1738669,8,'Key Makeup Artist'),(196867,1776957,8,'Tailor'),(196867,1778194,1,'Camera Operator'),(196867,1844742,8,'Tailor'),(196867,1884068,8,'Makeup Department Head'),(196867,1889729,3,'Producer'),(196867,1889730,6,'Original Music Composer'),(196867,1889731,8,'Key Hair Stylist'),(196867,1889751,6,'Supervising Sound Editor'),(196867,1889762,8,'Costume Supervisor'),(196867,1889765,8,'Costume Coordinator'),(196867,1889768,3,'Location Manager'),(196867,1889772,6,'Music Supervisor'),(196867,1889776,4,'Script Consultant'),(256591,1899,3,'Producer'),(256591,58855,3,'Casting'),(256591,40545,1,'Director of Photography'),(256591,51689,3,'Executive Producer'),(256591,56411,2,'Director'),(256591,56411,4,'Writer'),(256591,56412,2,'Director'),(256591,56412,4,'Writer'),(256591,66690,8,'Hairstylist'),(256591,60106,7,'Production Design'),(256591,74323,8,'Makeup Department Head'),(256591,423640,5,'First Assistant Editor'),(256591,578728,8,'Makeup Artist'),(256591,928329,8,'Costume Supervisor'),(256591,965666,8,'Costume Design'),(256591,989600,1,'Camera Operator'),(256591,1020057,3,'Casting'),(256591,1031656,6,'Original Music Composer'),(256591,1040860,7,'Art Direction'),(256591,1065252,8,'Costume Supervisor'),(256591,1084754,1,'Additional Camera'),(256591,1190854,8,'Set Costumer'),(256591,1310731,3,'Line Producer'),(256591,1334400,9,'Property Master'),(256591,1345635,2,'Script Supervisor'),(256591,1378240,1,'Still Photographer'),(256591,1388893,1,'Camera Operator'),(256591,1393862,1,'Camera Operator'),(256591,1395463,1,'Camera Operator'),(256591,1397725,7,'Set Decoration'),(256591,1403397,7,'Construction Coordinator'),(256591,1406780,1,'Helicopter Camera'),(256591,1407737,1,'Steadicam Operator'),(256591,1411540,5,'Digital Intermediate'),(256591,1432641,5,'Digital Intermediate'),(256591,1440264,5,'Editor'),(256591,1458987,8,'Hairstylist'),(256591,1463796,8,'Set Costumer'),(256591,1466267,3,'Executive Producer'),(256591,1466268,3,'Casting'),(256591,1472793,1,'Helicopter Camera'),(256591,1484966,8,'Hairstylist'),(256591,1484967,7,'Art Department Coordinator'),(256591,1484968,7,'Assistant Art Director'),(256591,1484969,8,'Set Costumer'),(256591,1484970,8,'Set Costumer'),(256591,1484971,5,'Digital Intermediate'),(256591,1484972,6,'Music Editor'),(59962,2888,3,'Producer'),(59962,7230,5,'Editor'),(59962,6959,3,'Casting'),(59962,36425,2,'Director'),(59962,8523,1,'Director of Photography'),(59962,8525,7,'Production Design'),(59962,9558,9,'Stunt Coordinator'),(59962,11652,3,'Executive Producer'),(59962,11092,3,'Producer'),(59962,11092,4,'Screenplay'),(59962,16177,6,'Sound Re-Recording Mixer'),(59962,10857,7,'Art Direction'),(59962,23486,6,'Original Music Composer'),(59962,29015,3,'Producer'),(59962,46080,3,'Producer'),(59962,60711,3,'Executive Producer'),(59962,113097,6,'Sound Designer'),(59962,113097,6,'Supervising Sound Editor'),(59962,58145,3,'Executive Producer'),(59962,17313,3,'Executive Producer'),(59962,11014,3,'Co-Producer'),(59962,132315,4,'Story'),(59962,132315,4,'Screenplay'),(59962,230175,4,'Story'),(59962,960323,8,'Costume Design'),(59962,961165,3,'Casting'),(59962,1325908,7,'Set Decoration'),(59962,1328137,7,'Art Direction'),(59962,1341405,5,'Dialogue Editor'),(59962,1342656,5,'Dialogue Editor'),(59962,1352966,5,'Dialogue Editor'),(59962,1377220,6,'Sound Re-Recording Mixer'),(59962,1378716,1,'Still Photographer'),(59962,1397196,6,'Sound Effects Editor'),(59962,1460786,2,'Script Supervisor'),(59962,1463178,9,'Visual Effects Editor'),(59962,1551703,3,'Production Coordinator'),(59962,1551704,3,'Production Supervisor'),(59962,1551705,6,'Production Sound Mixer'),(59962,1551706,6,'Sound Effects Editor'),(36648,3893,2,'Director'),(36648,3893,4,'Writer'),(36648,3893,3,'Producer'),(36648,4768,3,'Producer'),(36648,150,6,'Original Music Composer'),(36648,5507,3,'Casting'),(36648,6899,1,'Additional Photography'),(36648,7624,3,'Executive Producer'),(36648,7626,3,'Executive Producer'),(36648,10850,3,'Co-Producer'),(36648,9595,9,'Technical Supervisor'),(36648,9619,6,'Sound Re-Recording Mixer'),(36648,9551,8,'Costume Design'),(36648,13165,6,'Sound Effects Editor'),(36648,13223,5,'Color Timer'),(36648,10810,3,'Producer'),(36648,15317,10,'Visual Effects Producer'),(36648,15358,9,'Second Unit Cinematographer'),(36648,10853,5,'Editor'),(36648,10832,1,'Director of Photography'),(36648,17315,3,'Executive Producer'),(36648,10814,3,'Producer'),(36648,10855,7,'Production Design'),(36648,10857,7,'Art Direction'),(36648,10830,3,'Executive Producer'),(36648,25021,8,'Makeup Artist'),(36648,29208,3,'Executive In Charge Of Production'),(36648,10851,6,'Original Music Composer'),(36648,10858,7,'Set Decoration'),(36648,113100,9,'Utility Stunts'),(36648,113194,9,'Stunts'),(36648,10852,5,'Editor'),(36648,104044,9,'Digital Effects Supervisor'),(36648,121342,6,'Sound Effects Editor'),(36648,135520,4,'Characters'),(36648,143924,9,'Visual Effects Editor'),(36648,205164,9,'Stand In'),(36648,554887,6,'Sound Effects Editor'),(36648,959549,7,'Art Direction'),(36648,1031469,9,'Stunt Coordinator'),(36648,1116441,4,'Characters'),(36648,1116937,6,'Foley'),(36648,1175790,9,'Production Controller'),(36648,1182909,8,'Key Hair Stylist'),(36648,1190773,11,'Electrician'),(36648,1192700,6,'Music Supervisor'),(36648,1217703,7,'Assistant Art Director'),(36648,1227175,6,'Sound Effects Editor'),(36648,1265268,3,'Location Manager'),(36648,1301009,9,'Stunt Coordinator'),(36648,1311122,6,'Boom Operator'),(36648,1327186,8,'Set Costumer'),(36648,1335043,9,'Property Master'),(36648,1364412,6,'Sound Effects Editor'),(36648,1391671,7,'Set Designer'),(36648,1391692,10,'Visual Effects Producer'),(36648,1396804,9,'Visual Effects Editor'),(36648,1397174,9,'Special Effects Coordinator'),(36648,1397823,6,'Foley'),(36648,1399046,9,'Carpenter'),(36648,1399899,1,'Camera Technician'),(36648,1400408,1,'Still Photographer'),(36648,1403490,6,'Music Editor'),(36648,1404541,1,'Steadicam Operator'),(36648,1404699,7,'Production Design'),(36648,1404700,7,'Set Decoration'),(36648,1404701,8,'Makeup Artist'),(36648,1404702,8,'Hairstylist'),(36648,1404703,3,'Production Manager'),(36648,1404704,9,'Post Production Supervisor'),(36648,1404705,9,'Makeup Effects'),(36648,1404706,9,'Makeup Effects'),(36648,1404707,7,'Art Department Coordinator'),(36648,1404708,7,'Construction Coordinator'),(36648,1404709,7,'Set Designer'),(36648,1404710,9,'Scenic Artist'),(36648,1404711,7,'Leadman'),(36648,1404712,7,'Lead Painter'),(36648,1404713,7,'Lead Painter'),(36648,1404714,7,'Sculptor'),(36648,1404715,7,'Sculptor'),(36648,1404716,6,'Supervising Sound Editor'),(36648,1404716,6,'Sound Re-Recording Mixer'),(36648,1404717,6,'Supervising Sound Editor'),(36648,1404718,5,'Dialogue Editor'),(36648,1404722,10,'Visual Effects Producer'),(36648,1404724,10,'Visual Effects Producer'),(36648,1404727,10,'Visual Effects Producer'),(36648,1404729,10,'Visual Effects Supervisor'),(36648,1404731,10,'Visual Effects Supervisor'),(36648,1404732,9,'Stunt Coordinator'),(36648,1404734,1,'Camera Operator'),(36648,1404736,1,'Camera Operator'),(36648,1404737,1,'Camera Operator'),(36648,1404738,1,'Camera Operator'),(36648,1404739,1,'Helicopter Camera'),(36648,1404740,11,'Gaffer'),(36648,1404741,11,'Gaffer'),(36648,1404742,1,'Additional Camera'),(36648,1404744,8,'Set Costumer'),(36648,1404745,8,'Set Costumer'),(36648,1404746,8,'Costume Supervisor'),(36648,1404748,5,'Digital Intermediate'),(36648,1404749,5,'Digital Intermediate'),(36648,1404750,5,'Digital Intermediate'),(36648,1404751,9,'Transportation Coordinator'),(36648,1404752,9,'Transportation Coordinator'),(36648,1404753,2,'Script Supervisor'),(36648,1404754,2,'Script Supervisor'),(36648,1404755,9,'Unit Publicist'),(36648,1404756,9,'Studio Teachers'),(36648,1409746,11,'Rigging Gaffer'),(36648,1409747,11,'Best Boy Electric'),(36648,1413004,3,'Production Accountant'),(36648,1441321,9,'CG Supervisor'),(36648,1462607,10,'Digital Compositors'),(36648,1466741,9,'Propmaker'),(36648,1476352,3,'Co-Producer'),(36648,1476352,3,'Unit Production Manager'),(36648,1525602,9,'Post Production Assistant'),(36648,1532731,10,'Visual Effects Coordinator'),(36648,1548634,9,'Security'),(36648,1565964,8,'Assistant Costume Designer'),(36648,1575865,9,'Armorer'),(36648,1580844,11,'Rigging Grip'),(36648,1585197,4,'Storyboard'),(36648,1597443,3,'Production Supervisor'),(36648,1614193,6,'Assistant Sound Editor'),(36648,1647465,9,'Executive in Charge of Finance'),(36648,1647714,1,'First Assistant Camera'),(36648,1692717,7,'Construction Foreman'),(36648,1726365,5,'First Assistant Editor'),(36648,1769434,2,'First Assistant Director'),(36648,1824712,7,'Conceptual Design'),(36648,1824713,3,'Location Manager'),(36648,1824715,7,'Painter'),(36648,1824716,7,'Production Illustrator'),(36648,1824717,7,'Standby Painter'),(36648,1824718,1,'Key Grip'),(36648,1824720,1,'Grip'),(36648,1824722,8,'Set Dressing Artist'),(36648,1824727,9,'Chef'),(36648,1824728,9,'Craft Service'),(36648,1824729,9,'Driver'),(36648,1824730,9,'Loader'),(36648,1824731,9,'Set Production Assistant'),(36648,1824733,9,'Systems Administrators & Support'),(36648,1824734,9,'Transportation Captain'),(36648,1824735,9,'Transportation Co-Captain'),(36648,1824803,3,'Casting Associate'),(36648,1824805,3,'Production Coordinator'),(36648,1824809,6,'Sound Mixer'),(36648,1824813,10,'3D Artist'),(36648,1824814,10,'Animation Supervisor'),(36648,1824815,10,'Visual Effects'),(71679,4014,2,'Director'),(71679,4014,3,'Producer'),(71679,4014,4,'Writer'),(71679,4016,3,'Producer'),(71679,8382,7,'Production Design'),(71679,971,5,'Editor'),(71679,3962,8,'Costume Design'),(71679,7800,3,'Casting'),(71679,8303,3,'Producer'),(71679,14914,7,'Art Direction'),(71679,15223,7,'Set Decoration'),(71679,17080,3,'Executive Producer'),(71679,22818,1,'Director of Photography'),(71679,29219,7,'Art Direction'),(71679,60891,6,'Original Music Composer'),(71679,75828,3,'Line Producer'),(71679,1106750,3,'Producer'),(71679,1767709,10,'Visual Effects'),(71679,1767710,10,'Visual Effects'),(100241,1707,4,'Screenplay'),(100241,1707,2,'Director'),(100241,1707,4,'Screenstory'),(100241,68602,3,'Producer'),(100241,1075,6,'Original Music Composer'),(100241,1076,6,'Original Music Composer'),(100241,3952,3,'Executive Producer'),(100241,3952,4,'Novel'),(100241,3952,4,'Screenstory'),(100241,3953,3,'Producer'),(100241,3954,3,'Producer'),(100241,3958,3,'Executive Producer'),(100241,3958,10,'Visual Effects Supervisor'),(100241,3965,3,'Casting'),(100241,8299,3,'Producer'),(100241,9345,7,'Production Design'),(100241,9346,7,'Property Master'),(100241,11650,5,'Editor'),(100241,28970,4,'Characters'),(100241,35180,3,'Producer'),(100241,37281,3,'Casting'),(100241,38781,6,'Supervising Sound Editor'),(100241,52790,3,'Executive Producer'),(100241,56786,1,'Director of Photography'),(100241,59416,3,'Executive Producer'),(100241,62742,7,'Supervising Art Director'),(100241,75159,11,'Gaffer'),(100241,75302,10,'Special Effects Supervisor'),(100241,75524,8,'Key Makeup Artist'),(100241,117235,6,'Sound Effects Editor'),(100241,600368,6,'Sound Designer'),(100241,931858,7,'Conceptual Illustrator'),(100241,1024909,8,'Costume Supervisor'),(100241,1034748,3,'Casting'),(100241,1113488,3,'Executive Producer'),(100241,1196121,8,'Costume Design'),(100241,1203578,3,'Executive Producer'),(100241,1325185,7,'Art Direction'),(100241,1325186,7,'Set Decoration'),(100241,1325187,7,'Set Decoration'),(100241,1325188,8,'Makeup Department Head'),(100241,1348009,1,'Steadicam Operator'),(100241,1355536,6,'ADR Editor'),(100241,1391727,10,'Visual Effects Supervisor'),(100241,1402900,1,'Camera Operator'),(100241,1403715,6,'Sound Effects Editor'),(100241,1418283,7,'Set Designer'),(100241,1418303,1,'Camera Operator'),(100241,1418807,5,'First Assistant Editor'),(100241,1418807,9,'Visual Effects Editor'),(100241,1418813,9,'Stunt Coordinator'),(100241,1425396,6,'Music Editor'),(100241,1450897,1,'Still Photographer'),(100241,1452989,10,'Animation Supervisor'),(100241,1452991,10,'Animation'),(100241,1452995,10,'Animation'),(100241,1452997,10,'Animation'),(100241,1452998,10,'Animation'),(100241,1453003,10,'Animation'),(100241,1454522,8,'Makeup Artist'),(100241,1475737,7,'Set Designer'),(100241,1616642,6,'Orchestrator'),(100241,1635041,1,'Dolly Grip'),(100241,1735830,8,'Key Costumer'),(100241,1755585,1,'Key Grip'),(100241,1823948,10,'Visual Effects Producer'),(100241,1830633,9,'Stunt Coordinator'),(100241,1872810,8,'Makeup Artist'),(100241,1872812,2,'First Assistant Director'),(100241,1872822,7,'Art Department Coordinator'),(100241,1872826,9,'Propmaker'),(100241,1872828,7,'Art Department Coordinator'),(100241,1872829,6,'Sound Effects Editor'),(100241,1872837,9,'Special Effects Coordinator'),(100241,1872843,10,'Visual Effects Coordinator'),(100241,1872844,9,'Visual Effects Editor'),(100241,1872845,9,'Visual Effects Editor'),(100241,1872848,9,'CG Supervisor'),(100241,1872849,10,'Visual Effects Coordinator'),(100241,1872855,10,'Visual Effects Coordinator'),(100241,1872866,11,'Rigging Gaffer'),(100241,1872867,8,'Tailor'),(100241,1872873,8,'Costume Coordinator'),(100241,1872874,5,'Assistant Editor'),(100241,1872877,7,'Title Designer'),(100241,1872881,2,'Script Supervisor'),(100241,1872882,3,'Production Coordinator'),(253412,294,5,'Editor'),(253412,933,4,'Screenplay'),(253412,1266,3,'Producer'),(253412,2236,3,'Producer'),(253412,2238,3,'Producer'),(253412,8408,1,'Director of Photography'),(253412,9151,3,'Executive Producer'),(253412,9161,8,'Key Hair Stylist'),(253412,11269,6,'Original Music Composer'),(253412,11269,6,'Orchestrator'),(253412,40810,6,'Sound Designer'),(253412,40810,6,'Supervising Sound Editor'),(253412,40823,6,'Foley'),(253412,17211,3,'Executive Producer'),(253412,57049,3,'Producer'),(253412,57631,4,'Screenplay'),(253412,67813,2,'Director'),(253412,67813,3,'Producer'),(253412,77513,7,'Art Direction'),(253412,79854,3,'Line Producer'),(253412,86557,3,'Co-Producer'),(253412,158401,3,'Producer'),(253412,222447,9,'Second Unit Cinematographer'),(253412,1017234,3,'Producer'),(253412,1113449,3,'Executive Producer'),(253412,1183126,9,'Visual Effects Editor'),(253412,1266571,3,'Casting Associate'),(253412,1287668,8,'Costume Design'),(253412,1304301,3,'Executive Producer'),(253412,1322138,7,'Production Design'),(253412,1326461,8,'Costume Supervisor'),(253412,1335565,10,'Visual Effects Supervisor'),(253412,1335568,6,'Music Editor'),(253412,1338969,6,'Sound Re-Recording Mixer'),(253412,1338970,6,'Sound Effects Editor'),(253412,1391732,1,'Camera Operator'),(253412,1391732,1,'Steadicam Operator'),(253412,1392587,9,'Supervising Art Director'),(253412,1392614,6,'Dolby Consultant'),(253412,1392718,1,'Still Photographer'),(253412,1393300,6,'Foley'),(253412,1394719,10,'Visual Effects Producer'),(253412,1397073,11,'Rigging Gaffer'),(253412,1401126,8,'Wigmaker'),(253412,1404244,1,'Helicopter Camera'),(253412,1405374,7,'Art Department Coordinator'),(253412,1406189,6,'ADR & Dubbing'),(253412,1408374,6,'Sound Effects Editor'),(253412,1408855,2,'Script Supervisor'),(253412,1409305,5,'Digital Intermediate'),(253412,1409707,10,'Visual Effects Supervisor'),(253412,1413041,9,'Visual Effects Editor'),(253412,1414048,3,'Executive Producer'),(253412,1421642,8,'Hair Designer'),(253412,1421642,8,'Makeup Designer'),(253412,1424573,10,'Visual Effects Coordinator'),(253412,1426331,10,'Visual Effects Supervisor'),(253412,1426846,10,'Visual Effects Producer'),(253412,1427849,2,'Script Supervisor'),(253412,1430468,8,'Makeup Artist'),(253412,1430468,8,'Hairstylist'),(253412,1430470,8,'Makeup Artist'),(253412,1430470,8,'Hairstylist'),(253412,1441673,9,'Visual Effects Editor'),(253412,1444952,7,'Set Decoration'),(253412,1444954,7,'Assistant Art Director'),(253412,1444955,9,'Property Master'),(253412,1448315,10,'Visual Effects Supervisor'),(253412,1448317,10,'Visual Effects Producer'),(253412,1453653,5,'Digital Intermediate'),(253412,1456410,11,'Gaffer'),(253412,1456696,9,'Compositors'),(253412,1458727,3,'Executive Producer'),(253412,1459859,8,'Makeup Artist'),(253412,1461629,9,'Visual Effects Editor'),(253412,1538090,3,'Co-Producer'),(253412,1539303,1,'First Assistant Camera'),(253412,1540471,6,'Music Supervisor'),(253412,1543225,10,'Visual Effects Coordinator'),(253412,1544363,5,'First Assistant Editor'),(253412,1545929,10,'3D Supervisor'),(253412,1545994,1,'Additional Camera'),(253412,1550793,1,'First Assistant Camera'),(253412,1555170,10,'Visual Effects Producer'),(253412,1565647,7,'Art Department Assistant'),(253412,1565648,7,'Art Department Assistant'),(253412,1565649,7,'Assistant Art Director'),(253412,1565650,3,'Researcher'),(253412,1565651,8,'Assistant Costume Designer'),(253412,1565655,10,'Animation'),(253412,1565656,10,'Animation'),(253412,1565657,10,'Animation'),(253412,1565658,9,'CG Supervisor'),(253412,1565659,10,'Special Effects Supervisor'),(253412,1565660,10,'Visual Effects Coordinator'),(253412,1565661,10,'Visual Effects Coordinator'),(253412,1565662,10,'Visual Effects Coordinator'),(253412,1565663,10,'Visual Effects Coordinator'),(253412,1565664,10,'Visual Effects Coordinator'),(253412,1565665,10,'Visual Effects Coordinator'),(253412,1565666,10,'Visual Effects Coordinator'),(253412,1565667,8,'Makeup Artist'),(253412,1565667,8,'Hairstylist'),(253412,1565668,8,'Makeup Artist'),(253412,1565669,11,'Gaffer'),(253412,1565670,11,'Rigging Gaffer'),(253412,1565671,1,'First Assistant Camera'),(253412,1565672,1,'First Assistant Camera'),(253412,1565714,6,'ADR & Dubbing'),(253412,1565714,5,'Dialogue Editor'),(253412,1565720,10,'Visual Effects Producer'),(253412,1565723,10,'Visual Effects Supervisor'),(253412,1666174,10,'Visual Effects Producer'),(300168,18897,3,'Producer'),(300168,57832,2,'Director'),(300168,57832,4,'Writer'),(300168,140487,6,'Music'),(300168,936441,3,'Producer'),(300168,1379982,7,'Art Direction'),(300168,1593246,1,'Director of Photography'),(300168,1593247,6,'Sound Designer'),(300168,1593248,10,'Visual Effects Supervisor'),(300168,1593249,9,'Stunt Coordinator'),(273248,138,2,'Director'),(273248,138,4,'Writer'),(273248,149,1,'Director of Photography'),(273248,547,3,'Casting'),(273248,1259,6,'Original Music Composer'),(273248,1305,6,'Music Editor'),(273248,1307,3,'Executive Producer'),(273248,59839,3,'Executive Producer'),(273248,2947,3,'Executive Producer'),(273248,6444,7,'Production Design'),(273248,5382,3,'Producer'),(273248,8285,7,'Art Direction'),(273248,12997,3,'Producer'),(273248,13588,7,'Set Decoration'),(273248,23285,9,'Stunt Coordinator'),(273248,58194,5,'Editor'),(273248,58809,2,'Script Supervisor'),(273248,71279,9,'Visual Effects Editor'),(273248,555329,8,'Makeup Artist'),(273248,963669,3,'Producer'),(273248,1077782,6,'Foley'),(273248,1162661,8,'Set Costumer'),(273248,1317534,10,'Visual Effects Coordinator'),(273248,1324192,8,'Costume Design'),(273248,1326407,8,'Costume Supervisor'),(273248,1330582,7,'Art Direction'),(273248,1335416,6,'Sound Effects Editor'),(273248,1352966,5,'Dialogue Editor'),(273248,1352969,6,'Supervising Sound Editor'),(273248,1352969,6,'Sound Designer'),(273248,1364417,6,'Sound Re-Recording Mixer'),(273248,1367362,6,'Foley'),(273248,1368851,10,'Visual Effects Supervisor'),(273248,1368882,8,'Set Costumer'),(273248,1368883,8,'Set Costumer'),(273248,1386920,1,'Still Photographer'),(273248,1389609,8,'Makeup Department Head'),(273248,1392143,8,'Set Costumer'),(273248,1392622,10,'Visual Effects Producer'),(273248,1394765,9,'Visual Effects Editor'),(273248,1399141,6,'Sound Re-Recording Mixer'),(273248,1399141,6,'Sound Designer'),(273248,1400529,9,'Post Production Supervisor'),(273248,1403399,10,'Special Effects Supervisor'),(273248,1406826,6,'Sound Effects Editor'),(273248,1409816,8,'Key Hair Stylist'),(273248,1413125,8,'Set Costumer'),(273248,1413153,7,'Construction Coordinator'),(273248,1415342,3,'Unit Production Manager'),(273248,1415606,8,'Wigmaker'),(273248,1416584,9,'Special Effects Coordinator'),(273248,1424894,8,'Hair Department Head'),(273248,1434559,9,'Armorer'),(273248,1437193,5,'Dialogue Editor'),(273248,1459895,9,'Visual Effects Editor'),(273248,1485553,1,'Grip'),(273248,1494214,7,'Art Department Coordinator'),(273248,1531524,10,'Visual Effects Supervisor'),(273248,1543227,10,'Visual Effects Coordinator'),(273248,1543756,10,'Visual Effects Producer'),(273248,1545448,6,'Music Supervisor'),(273248,1547309,6,'Production Sound Mixer'),(273248,1547309,6,'Sound Designer'),(273248,1548104,8,'Makeup Artist'),(273248,1550718,1,'First Assistant Camera'),(273248,1559781,7,'Art Department Assistant'),(273248,1559782,7,'Art Department Assistant'),(273248,1559783,10,'Special Effects Supervisor'),(273248,1559784,7,'Assistant Art Director'),(273248,1559785,10,'Visual Effects Coordinator'),(273248,1559823,10,'Visual Effects Coordinator'),(273248,1559832,5,'Digital Intermediate'),(273248,1565131,3,'Production Supervisor'),(273248,1599138,7,'Sculptor'),(273248,1599143,3,'Associate Producer'),(273248,1618130,5,'Digital Intermediate'),(273248,1651460,3,'Associate Producer'),(50359,20823,1,'Director of Photography'),(50359,15779,5,'Editor'),(50359,49903,2,'Director'),(50359,49911,6,'Original Music Composer'),(50359,52360,4,'Screenplay'),(50359,52360,4,'Story'),(50359,52361,4,'Screenplay'),(50359,52361,4,'Story'),(50359,57769,5,'Editor'),(50359,1011957,3,'Executive Producer'),(50359,1024175,4,'Screenplay'),(50359,1447310,9,'Post Production Supervisor'),(50359,1453019,10,'Animation'),(50359,1453022,10,'Animation'),(50359,1454410,10,'Visual Effects'),(50359,1455463,10,'Visual Effects'),(50359,1457930,4,'Storyboard'),(50359,1459734,10,'Animation'),(50359,1460611,10,'Animation'),(50359,1460612,10,'Animation'),(50359,1642697,10,'Animation'),(210577,376,3,'Producer'),(210577,368,3,'Producer'),(210577,3186,6,'Original Music Composer'),(210577,7467,2,'Director'),(210577,7475,3,'Producer'),(210577,7479,1,'Director of Photography'),(210577,7481,3,'Casting'),(210577,7763,6,'Sound Designer'),(210577,7763,6,'Supervising Sound Editor'),(210577,10958,7,'Set Decoration'),(210577,11708,3,'Producer'),(210577,16344,5,'Dialogue Editor'),(210577,33455,7,'Supervising Art Director'),(210577,20209,7,'Production Design'),(210577,31556,8,'Hairstylist'),(210577,52993,3,'Producer'),(210577,66689,7,'Art Direction'),(210577,62824,9,'Makeup Effects'),(210577,92330,8,'Hairstylist'),(210577,71262,3,'Producer'),(210577,74567,3,'Unit Production Manager'),(210577,80807,8,'Makeup Artist'),(210577,122607,9,'Dialect Coach'),(210577,132616,3,'Location Manager'),(210577,142391,6,'Original Music Composer'),(210577,229801,8,'Makeup Department Head'),(210577,964726,5,'Editor'),(210577,1002919,8,'Costume Design'),(210577,1017340,8,'Makeup Artist'),(210577,1116937,6,'Foley'),(210577,1122560,9,'Stunt Coordinator'),(210577,1172443,1,'Still Photographer'),(210577,1194205,4,'Screenplay'),(210577,1194205,4,'Novel'),(210577,1325235,8,'Costume Supervisor'),(210577,1348005,10,'Visual Effects Supervisor'),(210577,1348006,10,'Visual Effects Producer'),(210577,1360093,7,'Set Designer'),(210577,1364239,7,'Assistant Art Director'),(210577,1367826,10,'Visual Effects Producer'),(210577,1367827,10,'Visual Effects Supervisor'),(210577,1378224,7,'Set Designer'),(210577,1378828,6,'Sound Re-Recording Mixer'),(210577,1384375,10,'VFX Supervisor'),(210577,1396825,5,'Digital Intermediate'),(210577,1397823,6,'Foley'),(210577,1398118,7,'Construction Coordinator'),(210577,1399117,6,'Sound Effects Editor'),(210577,1399321,8,'Set Costumer'),(210577,1399877,1,'Camera Operator'),(210577,1400855,7,'Greensman'),(210577,1404306,8,'Hairstylist'),(210577,1406317,5,'Digital Intermediate'),(210577,1406614,6,'Sound Re-Recording Mixer'),(210577,1411509,7,'Set Designer'),(210577,1413090,9,'Property Master'),(210577,1414539,8,'Makeup Artist'),(210577,1415464,6,'Sound Effects Editor'),(210577,1415487,10,'Visual Effects Supervisor'),(210577,1415490,10,'Animation Supervisor'),(210577,1420642,8,'Hairstylist'),(210577,1422398,8,'Set Costumer'),(210577,1422400,8,'Set Costumer'),(210577,1422401,8,'Set Costumer'),(210577,1422403,7,'Art Department Coordinator'),(210577,1422404,7,'Art Department Coordinator'),(210577,1422406,7,'Assistant Art Director'),(210577,1422411,6,'Sound Effects Editor'),(210577,1422412,9,'Special Effects Coordinator'),(210577,1422413,9,'CG Supervisor'),(210577,1422414,10,'Visual Effects Producer'),(210577,1422415,10,'Visual Effects Supervisor'),(210577,1422418,6,'Music Editor'),(210577,1422420,9,'Transportation Coordinator'),(210577,1422421,3,'Location Manager'),(210577,1463411,9,'Special Effects'),(210577,1477203,3,'Associate Producer'),(210577,1478854,6,'Foley'),(210577,1535105,3,'Casting'),(210577,1583700,2,'Assistant Director'),(210577,1583701,9,'Stunts'),(210577,1614502,5,'Assistant Editor'),(37165,555,7,'Set Decoration'),(37165,4248,7,'Production Design'),(37165,1530,3,'Casting'),(37165,2690,2,'Director'),(37165,2997,3,'Producer'),(37165,3904,5,'Editor'),(37165,5541,3,'Production Supervisor'),(37165,10717,1,'Director of Photography'),(37165,8285,7,'Art Direction'),(37165,8685,3,'Producer'),(37165,8685,4,'Writer'),(37165,11308,6,'Music Editor'),(37165,38781,5,'Dialogue Editor'),(37165,11302,3,'Producer'),(37165,56969,3,'Executive Producer'),(37165,11303,3,'Producer'),(37165,62829,7,'Art Department Coordinator'),(37165,74779,6,'Production Sound Mixer'),(37165,75437,6,'Sound Re-Recording Mixer'),(37165,116903,3,'Co-Producer'),(37165,1188738,6,'Original Music Composer'),(37165,1324652,1,'Still Photographer'),(37165,1377239,2,'Script Supervisor'),(37165,1434261,8,'Costume Design'),(37165,1538138,8,'Costume Supervisor'),(37165,1539292,6,'Sound Effects Editor'),(37165,1558202,6,'Sound Re-Recording Mixer'),(37165,1558207,6,'Sound Effects Editor'),(37165,1558209,5,'Dialogue Editor'),(136400,908,5,'Editor'),(136400,6890,3,'Executive Producer'),(136400,7494,3,'Casting'),(136400,9250,3,'Executive Producer'),(136400,11409,1,'Director of Photography'),(136400,12945,6,'Music Editor'),(136400,13179,6,'Sound Re-Recording Mixer'),(136400,17210,3,'Producer'),(136400,17211,3,'Producer'),(136400,23485,3,'Producer'),(136400,73453,3,'Producer'),(136400,60106,7,'Production Design'),(136400,60872,7,'Set Decoration'),(136400,62908,6,'Original Music Composer'),(136400,67813,2,'Director'),(136400,96357,3,'Producer'),(136400,954441,3,'Co-Producer'),(136400,964168,7,'Art Direction'),(136400,1010751,6,'Sound Re-Recording Mixer'),(136400,1105705,3,'Producer'),(136400,1113449,3,'Executive Producer'),(136400,1195057,3,'Executive Producer'),(136400,1195563,4,'Comic Book'),(136400,1229856,4,'Screenplay'),(136400,1237644,3,'Producer'),(136400,1318915,9,'Special Effects Coordinator'),(136400,1387183,5,'Dialogue Editor'),(136400,1393396,1,'Still Photographer'),(136400,1473814,2,'Script Supervisor'),(136400,1546115,6,'Sound Mixer'),(136400,1554242,6,'Music Supervisor'),(136400,1554316,3,'Executive Producer'),(136400,1554317,3,'Co-Producer'),(294254,2215,3,'Casting'),(294254,2519,8,'Costume Design'),(294254,6040,3,'Producer'),(294254,6043,5,'Editor'),(294254,12945,6,'Music Editor'),(294254,16177,6,'Sound Re-Recording Mixer'),(294254,19291,7,'Production Design'),(294254,25046,3,'Producer'),(294254,30459,1,'Director of Photography'),(294254,41592,7,'Supervising Art Director'),(294254,113048,9,'Sound Recordist'),(294254,77949,6,'Music'),(294254,91123,1,'Helicopter Camera'),(294254,91161,3,'Producer'),(294254,109870,8,'Makeup Designer'),(294254,148697,7,'Set Decoration'),(294254,228253,9,'Makeup Effects'),(294254,553928,8,'Makeup Artist'),(294254,1081074,9,'Stunt Coordinator'),(294254,1179066,2,'Director'),(294254,1179066,3,'Executive Producer'),(294254,1202779,8,'Assistant Costume Designer'),(294254,1228384,10,'Visual Effects Producer'),(294254,1231882,3,'Executive Producer'),(294254,1257087,4,'Novel'),(294254,1257144,3,'Executive Producer'),(294254,1257144,4,'Screenplay'),(294254,1257754,3,'Producer'),(294254,1269676,8,'Makeup Department Head'),(294254,1287353,9,'Makeup Effects'),(294254,1328142,3,'Producer'),(294254,1338372,6,'Foley'),(294254,1344908,10,'Animation'),(294254,1347740,6,'Sound Re-Recording Mixer'),(294254,1357044,7,'Conceptual Design'),(294254,1360099,6,'Sound Effects Editor'),(294254,1367493,6,'Foley'),(294254,1367494,6,'Sound Designer'),(294254,1367494,6,'Supervising Sound Editor'),(294254,1367498,10,'Visual Effects Producer'),(294254,1367508,2,'Script Supervisor'),(294254,1384367,5,'Dialogue Editor'),(294254,1391383,7,'Construction Coordinator'),(294254,1391695,10,'Visual Effects Supervisor'),(294254,1395275,1,'Still Photographer'),(294254,1397196,6,'Sound Effects Editor'),(294254,1402947,8,'Makeup Artist'),(294254,1404276,8,'Hair Department Head'),(294254,1406128,11,'Gaffer'),(294254,1412687,9,'Makeup Effects'),(294254,1418374,10,'Animation Director'),(294254,1418377,10,'Animation Director'),(294254,1419730,5,'First Assistant Editor'),(294254,1424696,1,'Steadicam Operator'),(294254,1425329,10,'Visual Effects Producer'),(294254,1429251,8,'Costume Supervisor'),(294254,1430493,9,'Visual Effects Editor'),(294254,1435194,6,'Music Editor'),(294254,1439109,8,'Costume Supervisor'),(294254,1440664,9,'Stunt Coordinator'),(294254,1443965,8,'Set Costumer'),(294254,1446554,8,'Makeup Artist'),(294254,1457327,10,'Animation Director'),(294254,1458089,10,'Animation Supervisor'),(294254,1481552,3,'Casting Associate'),(294254,1481560,3,'Casting Associate'),(294254,1483579,10,'Visual Effects Producer'),(294254,1494525,8,'Key Hair Stylist'),(294254,1511129,3,'Executive Producer'),(294254,1538207,9,'Special Effects Coordinator'),(294254,1552365,9,'Makeup Effects'),(294254,1569332,10,'Visual Effects Coordinator'),(294254,1569333,10,'Visual Effects Coordinator'),(294254,1569334,10,'Visual Effects Coordinator'),(294254,1571475,7,'Art Direction'),(294254,1571476,7,'Art Department Coordinator'),(294254,1571478,8,'Set Costumer'),(294254,1571481,8,'Set Costumer'),(294254,1571486,8,'Set Costumer'),(294254,1571488,8,'Set Costumer'),(294254,1571490,10,'Animation'),(294254,1571494,10,'Animation'),(294254,1571498,10,'Creature Design'),(294254,1571499,10,'Visual Effects Coordinator'),(294254,1571500,10,'Visual Effects Coordinator'),(294254,1571501,10,'Visual Effects Coordinator'),(294254,1571508,8,'Hairstylist'),(294254,1571509,8,'Hairstylist'),(294254,1571510,8,'Hairstylist'),(294254,1571511,8,'Hairstylist'),(294254,1571512,8,'Hairstylist'),(294254,1571513,9,'Makeup Effects'),(294254,1571514,9,'Property Master'),(294254,1571516,1,'First Assistant Camera'),(294254,1571517,1,'First Assistant Camera'),(294254,1571518,1,'First Assistant Camera'),(294254,1571521,5,'First Assistant Editor'),(294254,1571524,11,'Rigging Grip'),(294254,1622657,9,'Stunts'),(38167,149,1,'Director of Photography'),(38167,287,3,'Executive Producer'),(38167,6410,3,'Casting'),(38167,11269,6,'Original Music Composer'),(38167,20458,3,'Producer'),(38167,29216,9,'Choreographer'),(38167,41324,8,'Costume Design'),(38167,51689,3,'Executive Producer'),(38167,52779,4,'Screenplay'),(38167,52779,2,'Director'),(38167,56697,7,'Art Direction'),(38167,41258,4,'Screenplay'),(38167,959360,7,'Production Design'),(38167,967387,3,'Executive Producer'),(38167,969894,5,'Editor'),(38167,1265578,4,'Novel'),(39514,3965,3,'Casting'),(39514,10573,1,'Director of Photography'),(39514,10952,3,'Producer'),(39514,24309,3,'Producer'),(39514,20172,8,'Costume Design'),(39514,23486,6,'Original Music Composer'),(39514,57270,2,'Director'),(39514,89597,4,'Story'),(39514,112947,4,'Writer'),(39514,112948,4,'Writer'),(39514,123097,4,'Story'),(39514,558227,8,'Makeup Department Head'),(39514,1034748,3,'Casting'),(75780,284,3,'Producer'),(75780,500,3,'Producer'),(75780,6044,3,'Casting'),(75780,10958,7,'Set Decoration'),(75780,9967,7,'Production Design'),(75780,8750,1,'Director of Photography'),(75780,9183,3,'Producer'),(75780,9033,2,'Director'),(75780,9033,4,'Screenplay'),(75780,11001,5,'Editor'),(75780,15332,6,'Supervising Sound Editor'),(75780,29018,3,'Producer'),(75780,36605,8,'Costume Design'),(75780,56737,3,'Producer'),(75780,58433,3,'Producer'),(75780,62580,6,'Original Music Composer'),(75780,74978,6,'Sound Re-Recording Mixer'),(75780,1056052,4,'Novel'),(75780,1149583,1,'Steadicam Operator'),(75780,1149583,1,'Camera Operator'),(75780,1272963,7,'Art Direction'),(75780,1317305,8,'Makeup Department Head'),(75780,1323077,8,'Costume Supervisor'),(75780,1334485,6,'Supervising Sound Editor'),(75780,1347755,6,'Music Editor'),(75780,1347761,2,'Script Supervisor'),(75780,1364410,5,'Dialogue Editor'),(75780,1401687,6,'Sound Re-Recording Mixer'),(75780,1407019,9,'Visual Effects Editor'),(75780,1409819,8,'Hair Department Head'),(75780,1421952,1,'Still Photographer'),(75780,1457666,5,'Assistant Editor'),(75780,1465333,3,'Production Coordinator'),(75780,1544666,6,'Music Supervisor'),(75780,1544667,8,'Key Hair Stylist'),(39538,8221,7,'Supervising Art Director'),(39538,8377,6,'Original Music Composer'),(39538,1884,2,'Director'),(39538,1884,1,'Director of Photography'),(39538,1891,5,'Editor'),(39538,11079,7,'Set Decoration'),(39538,4061,8,'Costume Design'),(39538,5381,3,'Producer'),(39538,5382,3,'Producer'),(39538,5626,3,'Executive Producer'),(39538,9041,7,'Production Design'),(39538,10684,3,'Executive Producer'),(39538,12614,8,'Makeup Artist'),(39538,19014,4,'Screenplay'),(39538,31519,3,'Executive Producer'),(39538,51922,3,'Casting'),(39538,70555,3,'Executive Producer'),(39538,77511,3,'Line Producer'),(39538,75703,7,'Assistant Art Director'),(39538,86593,8,'Hairstylist'),(39538,117206,8,'Hairstylist'),(39538,119665,3,'Producer'),(39538,127799,3,'Line Producer'),(39538,229801,8,'Makeup Department Head'),(39538,548444,5,'Dialogue Editor'),(39538,582808,1,'Still Photographer'),(39538,1141796,7,'Assistant Art Director'),(39538,1323760,8,'Makeup Artist'),(39538,1334779,9,'Property Master'),(39538,1335127,6,'Supervising Sound Editor'),(39538,1335127,6,'Sound Re-Recording Mixer'),(39538,1391605,2,'Script Supervisor'),(39538,1398083,7,'Art Direction'),(39538,1398118,7,'Construction Coordinator'),(39538,1408294,7,'Art Department Coordinator'),(39538,1413223,7,'Art Direction'),(39538,1413224,8,'Hair Department Head'),(39538,1413225,8,'Hairstylist'),(39538,1413226,8,'Hairstylist'),(39538,1413227,8,'Makeup Artist'),(39538,1413230,3,'Production Manager'),(39538,1413231,3,'Production Manager'),(39538,1413232,3,'Production Manager'),(39538,1413233,7,'Art Department Coordinator'),(39538,1413234,7,'Construction Coordinator'),(39538,1413235,7,'Construction Coordinator'),(39538,1413236,7,'Construction Coordinator'),(39538,1419812,5,'Dialogue Editor'),(39538,1546856,5,'Dialogue Editor'),(39538,1551325,6,'Sound mixer'),(39538,1555637,6,'Sound mixer'),(77174,312,6,'Music'),(77174,34897,7,'Production Design'),(77174,41080,3,'Casting'),(77174,53331,1,'Director of Photography'),(77174,58897,2,'Director'),(77174,68016,6,'Orchestrator'),(77174,154705,4,'Screenplay'),(77174,154705,2,'Director'),(77174,174683,4,'Storyboard'),(77174,240779,4,'Storyboard'),(77174,384204,10,'Animation'),(77174,553920,10,'Animation Supervisor'),(77174,983740,5,'Editor'),(77174,1033661,3,'Producer'),(77174,1033661,10,'Animation'),(77174,1033662,3,'Producer'),(77174,1053243,10,'Animation'),(77174,1152981,4,'Storyboard'),(77174,1206037,10,'Animation'),(77174,1447298,10,'Animation'),(77174,1448043,10,'Animation'),(77174,1448061,10,'Animation'),(77174,1448063,10,'Animation'),(77174,1448070,10,'Animation'),(77174,1448073,10,'Animation'),(77174,1452924,10,'Animation'),(77174,1453480,10,'Animation'),(77174,1453485,10,'Animation'),(77174,1453487,10,'Animation'),(77174,1453491,10,'Animation'),(77174,1453492,10,'Animation'),(77174,1453495,10,'Animation'),(77174,1453496,4,'Storyboard'),(77174,1453499,10,'Animation'),(77174,1453500,10,'Animation'),(77174,1453501,10,'Animation'),(77174,1453502,10,'Animation'),(77174,1453513,10,'Animation'),(77174,1453514,10,'Animation'),(77174,1453526,10,'Animation'),(77174,1453527,10,'Animation'),(77174,1453532,10,'Animation'),(77174,1453543,10,'Animation'),(77174,1453551,4,'Storyboard'),(77174,1453613,4,'Storyboard'),(77174,1453614,10,'Animation'),(77174,1453615,10,'Animation'),(77174,1453616,10,'Animation'),(77174,1453617,10,'Animation'),(77174,1453618,10,'Animation'),(77174,1453619,10,'Animation'),(77174,1453621,4,'Storyboard'),(77174,1453622,10,'Animation'),(77174,1453623,4,'Storyboard'),(77174,1453624,10,'Animation Supervisor'),(77174,1453625,10,'Visual Effects'),(77174,1453626,10,'Animation'),(77174,1453627,4,'Storyboard'),(77174,1453628,4,'Storyboard'),(77174,1453629,10,'Animation'),(77174,1453630,10,'Animation'),(77174,1453631,10,'Animation'),(77174,1453632,10,'Animation Supervisor'),(77174,1453633,10,'Animation'),(77174,1453634,7,'Art Department Manager'),(77174,1453635,5,'Editorial Coordinator'),(77174,1453636,10,'Animation'),(77174,1453637,10,'Animation'),(77174,1453638,10,'Animation'),(77174,1453639,10,'Animation'),(77174,1453640,10,'Animation'),(77174,1459544,10,'Visual Development'),(77174,1782644,7,'Art Direction'),(137094,1113,3,'Casting'),(137094,508,4,'Screenplay'),(137094,3965,3,'Casting'),(137094,4611,3,'Producer'),(137094,10952,3,'Producer'),(137094,9152,6,'Music'),(137094,11181,2,'Director'),(137094,65614,3,'Producer'),(137094,24309,3,'Producer'),(137094,24217,1,'Director of Photography'),(137094,28636,7,'Production Design'),(137094,29018,3,'Executive Producer'),(137094,29609,7,'Supervising Art Director'),(137094,38568,4,'Characters'),(137094,53527,8,'Costume Design'),(137094,53680,3,'Casting'),(137094,972623,7,'Art Direction'),(137094,979698,7,'Art Direction'),(137094,1034748,3,'Casting'),(137094,1106745,4,'Screenplay'),(137094,1106750,3,'Producer'),(137094,1106751,3,'Executive Producer'),(137094,1106752,3,'Producer'),(137094,1319120,8,'Costume Supervisor'),(137094,1327762,7,'Set Decoration'),(137094,1327763,3,'Casting'),(137094,1402039,2,'Script Supervisor'),(137094,1408825,1,'Still Photographer'),(137094,1427849,2,'Script Supervisor'),(137094,1428727,6,'Other'),(137094,1583827,10,'Visual Effects Supervisor'),(274479,2043,3,'Producer'),(274479,5914,3,'Casting'),(274479,5361,5,'Editor'),(274479,5389,7,'Production Design'),(274479,5391,7,'Set Decoration'),(274479,5392,8,'Costume Design'),(274479,6624,3,'Producer'),(274479,9409,6,'Supervising Sound Editor'),(274479,10393,5,'Editor'),(274479,13227,5,'Editor'),(274479,17883,4,'Screenplay'),(274479,17883,2,'Director'),(274479,17883,3,'Producer'),(274479,17883,4,'Story'),(274479,20228,6,'Foley'),(274479,20229,6,'Foley'),(274479,32806,5,'Digital Intermediate'),(274479,45838,3,'Executive Producer'),(274479,57634,3,'Executive Producer'),(274479,60014,7,'Art Direction'),(274479,70701,3,'Producer'),(274479,80824,6,'Sound Designer'),(274479,174514,3,'Executive Producer'),(274479,174514,4,'Story'),(274479,232158,6,'Music Supervisor'),(274479,969171,1,'Director of Photography'),(274479,1015921,3,'Executive Producer'),(274479,1017340,8,'Makeup Artist'),(274479,1018480,7,'Assistant Art Director'),(274479,1024910,3,'Casting'),(274479,1027025,3,'Producer'),(274479,1156888,5,'Editor'),(274479,1177713,8,'Costume Supervisor'),(274479,1279645,3,'Executive Producer'),(274479,1318814,8,'Costume Supervisor'),(274479,1328146,8,'Makeup Department Head'),(274479,1332188,8,'Hairstylist'),(274479,1338482,6,'Sound Effects Editor'),(274479,1360096,5,'Dialogue Editor'),(274479,1364417,6,'Sound Re-Recording Mixer'),(274479,1377133,1,'Still Photographer'),(274479,1384375,10,'Visual Effects Producer'),(274479,1390357,10,'Visual Effects Supervisor'),(274479,1391679,5,'Dialogue Editor'),(274479,1395027,10,'Visual Effects Supervisor'),(274479,1397736,6,'Music Editor'),(274479,1400734,8,'Set Costumer'),(274479,1401606,8,'Hair Department Head'),(274479,1401606,8,'Hair Designer'),(274479,1401631,5,'Dialogue Editor'),(274479,1403470,9,'Visual Effects Editor'),(274479,1403488,5,'Digital Intermediate'),(274479,1404287,10,'VFX Supervisor'),(274479,1406584,8,'Makeup Artist'),(274479,1414558,5,'Digital Intermediate'),(274479,1415080,8,'Makeup Artist'),(274479,1419107,11,'Rigging Gaffer'),(274479,1420154,6,'ADR & Dubbing'),(274479,1424696,1,'Steadicam Operator'),(274479,1428595,6,'Sound Designer'),(274479,1428843,7,'Set Decoration'),(274479,1432596,6,'ADR & Dubbing'),(274479,1433656,8,'Assistant Costume Designer'),(274479,1450000,2,'Script Supervisor'),(274479,1496420,10,'Visual Effects Producer'),(274479,1521022,8,'Hairstylist'),(274479,1522988,3,'Executive Producer'),(274479,1547662,5,'First Assistant Editor'),(274479,1550237,9,'Sound Recordist'),(274479,1551814,3,'Co-Producer'),(274479,1551815,6,'Original Music Composer'),(274479,1551816,6,'Original Music Composer'),(274479,1551817,3,'Executive Producer'),(274479,1608760,7,'Art Department Coordinator'),(274479,1608761,7,'Assistant Art Director'),(274479,1608762,7,'Assistant Art Director'),(274479,1608763,9,'Second Unit Cinematographer'),(274479,1608764,11,'Gaffer'),(274479,1608765,1,'First Assistant Camera'),(274479,1608766,3,'Casting Associate'),(274479,1608767,3,'Casting Associate'),(274479,1608768,8,'Assistant Costume Designer'),(274479,1608772,9,'CG Supervisor'),(274479,1608773,10,'VFX Editor'),(274479,1608775,10,'Visual Effects Coordinator'),(274479,1608776,10,'Visual Effects Producer'),(274479,1608981,6,'ADR & Dubbing'),(274479,1608983,8,'Wigmaker'),(274479,1608984,5,'First Assistant Editor'),(267860,8410,7,'Set Decoration'),(267860,11348,8,'Hair Designer'),(267860,40796,1,'Still Photographer'),(267860,17276,3,'Producer'),(267860,17207,3,'Producer'),(267860,45702,5,'Editor'),(267860,21119,5,'Editor'),(267860,22815,3,'Producer'),(267860,23489,7,'Supervising Art Director'),(267860,38807,7,'Art Direction'),(267860,39670,8,'Costume Design'),(267860,41847,1,'Director of Photography'),(267860,53680,3,'Casting'),(267860,54868,4,'Screenplay'),(267860,64156,6,'Music'),(267860,59531,7,'Art Direction'),(267860,59529,7,'Production Design'),(267860,60335,7,'Art Direction'),(267860,61846,7,'Supervising Art Director'),(267860,61851,9,'Second Unit Cinematographer'),(267860,61860,3,'Casting'),(267860,68320,3,'Producer'),(267860,96131,6,'ADR & Dubbing'),(267860,132239,2,'Director'),(267860,137125,6,'Sound Re-Recording Mixer'),(267860,226464,1,'Camera Operator'),(267860,582624,3,'Producer'),(267860,935203,4,'Screenplay'),(267860,999561,6,'Sound Designer'),(267860,1015623,7,'Art Direction'),(267860,1018082,3,'Producer'),(267860,1065351,4,'Screenplay'),(267860,1065351,4,'Story'),(267860,1065352,4,'Screenplay'),(267860,1065352,4,'Story'),(267860,1079085,6,'Foley'),(267860,1186323,1,'Camera Operator'),(267860,1337410,6,'Supervising Sound Editor'),(267860,1337411,6,'Music Editor'),(267860,1345267,8,'Set Costumer'),(267860,1350256,8,'Costume Supervisor'),(267860,1355974,2,'Script Supervisor'),(267860,1367562,1,'Still Photographer'),(267860,1384721,7,'Art Direction'),(267860,1396803,9,'Visual Effects Editor'),(267860,1398930,10,'Visual Effects Producer'),(267860,1402934,1,'Camera Operator'),(267860,1403404,10,'Visual Effects Supervisor'),(267860,1403407,10,'Visual Effects Producer'),(267860,1404244,1,'Helicopter Camera'),(267860,1405196,1,'Camera Operator'),(267860,1408403,5,'Digital Intermediate'),(267860,1410205,2,'Script Supervisor'),(267860,1412711,9,'Visual Effects Editor'),(267860,1414101,5,'Digital Intermediate'),(267860,1417979,10,'Visual Effects Supervisor'),(267860,1427502,5,'Dialogue Editor'),(267860,1429342,7,'Art Department Coordinator'),(267860,1433002,11,'Rigging Gaffer'),(267860,1433051,10,'Visual Effects Producer'),(267860,1437156,6,'Sound Effects Editor'),(267860,1437159,6,'Sound Re-Recording Mixer'),(267860,1459226,11,'Gaffer'),(267860,1528013,6,'Music Supervisor'),(267860,1542347,1,'Camera Operator'),(267860,1553483,10,'Visual Effects Coordinator'),(267860,1555185,1,'Camera Operator'),(267860,1555186,8,'Costume Supervisor'),(267860,1574091,10,'Visual Effects Coordinator'),(267860,1582776,6,'Sound Effects Editor'),(267860,1622448,3,'Casting Associate'),(267860,1638135,10,'Visual Effects Producer'),(267860,1640705,10,'Visual Effects Coordinator'),(267860,1640706,10,'Visual Effects Coordinator'),(267860,1640707,10,'Visual Effects Coordinator'),(267860,1640708,10,'Visual Effects Coordinator'),(267860,1640709,10,'Visual Effects Coordinator'),(267860,1640710,9,'Visual Effects Editor'),(267860,1652657,9,'Armorer'),(267860,1652658,9,'Armorer'),(267860,1652659,8,'Assistant Costume Designer'),(267860,1652660,8,'Costume Supervisor'),(267860,1652661,8,'Set Costumer'),(267860,1652666,11,'Gaffer'),(267860,1652667,11,'Gaffer'),(267860,1652669,1,'Still Photographer'),(267860,1652671,9,'Special Effects Coordinator'),(267860,1652681,9,'CG Supervisor'),(267860,1652682,9,'CG Supervisor'),(267860,1652683,9,'Visual Effects Editor'),(267860,1652684,9,'Visual Effects Editor'),(267860,1652685,10,'Visual Effects Coordinator'),(267860,1652686,10,'Visual Effects Coordinator'),(267860,1652690,10,'Visual Effects Coordinator'),(267860,1652694,10,'Visual Effects Coordinator'),(267860,1652695,10,'Visual Effects Coordinator'),(267860,1652697,10,'Visual Effects Producer'),(267860,1652698,10,'Visual Effects Supervisor'),(267860,1652699,6,'Foley'),(267860,1652700,6,'Sound Effects Editor'),(267860,1711027,7,'Art Direction'),(170687,10713,6,'Songs'),(170687,7903,3,'Casting'),(170687,11269,6,'Music'),(170687,52691,2,'Director'),(170687,52691,4,'Adaptation'),(170687,68794,7,'Sculptor'),(170687,81262,4,'Screenplay'),(170687,553920,10,'Animation Supervisor'),(170687,957354,7,'Production Design'),(170687,983740,5,'Additional Editing'),(170687,1033661,3,'Producer'),(170687,1033661,10,'Animation'),(170687,1152981,2,'Director'),(170687,1152982,4,'Novel'),(170687,1201472,10,'Animation'),(170687,1299766,5,'Editor'),(170687,1349897,7,'Sculptor'),(170687,1355162,4,'Screenplay'),(170687,1391724,10,'Animation'),(170687,1411534,10,'Visual Effects Producer'),(170687,1448043,10,'Animation'),(170687,1448043,4,'Adaptation'),(170687,1448061,10,'Animation'),(170687,1448063,10,'Animation'),(170687,1448070,10,'Animation'),(170687,1448073,10,'Animation'),(170687,1453479,3,'Producer'),(170687,1453480,10,'Animation'),(170687,1453481,10,'Animation'),(170687,1453482,10,'Animation'),(170687,1453483,10,'Animation'),(170687,1453484,10,'Animation'),(170687,1453485,10,'Animation'),(170687,1453487,10,'Animation'),(170687,1453488,10,'Animation'),(170687,1453490,10,'Animation'),(170687,1453491,10,'Animation'),(170687,1453492,10,'Animation'),(170687,1453493,10,'Animation'),(170687,1453494,10,'Animation'),(170687,1453495,10,'Animation'),(170687,1453497,10,'Animation'),(170687,1453498,10,'Animation'),(170687,1453499,10,'Animation'),(170687,1453500,10,'Animation'),(170687,1453501,10,'Animation'),(170687,1453502,10,'Animation'),(170687,1453503,10,'Animation'),(170687,1453504,10,'Animation'),(170687,1453551,9,'Additional Writing'),(170687,1540471,6,'Music Supervisor'),(170687,1559587,5,'Additional Editing'),(170687,1687182,1,'Director of Photography'),(170687,1687185,10,'Visual Effects Supervisor'),(170687,1687187,10,'Visual Effects Supervisor'),(170687,1687189,8,'Costume Design'),(170687,1687190,7,'Art Direction'),(170687,1687191,5,'Editorial Coordinator'),(170687,1687192,3,'Line Producer'),(170687,1687193,3,'Production Manager'),(170687,1687194,3,'Production Coordinator'),(170687,1687195,7,'Sculptor'),(170687,1687196,7,'Art Department Coordinator'),(170687,1687197,7,'Set Designer'),(170687,1687198,7,'Set Designer'),(170687,1687199,7,'Set Designer'),(170687,1687200,9,'Post Production Supervisor'),(170687,1687201,5,'Editorial Manager'),(170687,1687202,9,'CG Supervisor'),(170687,1687203,9,'Visual Effects Editor'),(170687,1687204,10,'Visual Effects Coordinator'),(170687,1687205,10,'Visual Effects Coordinator'),(170687,1687206,9,'Choreographer'),(170687,1687207,6,'Music Editor'),(137106,5666,6,'Original Music Composer'),(137106,10949,3,'Executive Producer'),(137106,7903,3,'Casting'),(137106,21036,3,'Producer'),(137106,61955,4,'Storyboard'),(137106,112690,3,'Producer'),(137106,76733,4,'Storyboard'),(137106,107446,2,'Director'),(137106,107446,4,'Screenplay'),(137106,127380,10,'Modeling'),(137106,155267,4,'Screenplay'),(137106,155267,2,'Director'),(137106,577467,2,'Layout'),(137106,1206042,4,'Storyboard'),(137106,1276559,3,'Co-Producer'),(137106,1332273,1,'Director of Photography'),(137106,1370749,4,'Storyboard'),(137106,1370751,10,'Animation Manager'),(137106,1387180,11,'Lighting Artist'),(137106,1448042,10,'Animation'),(137106,1451245,1,'Camera Department Manager'),(137106,1451274,2,'Layout'),(137106,1452992,10,'Animation'),(137106,1452995,10,'Animation'),(137106,1453005,10,'Animation'),(137106,1453006,9,'Technical Supervisor'),(137106,1453498,7,'Conceptual Design'),(137106,1453946,11,'Lighting Artist'),(137106,1453947,11,'Lighting Artist'),(137106,1453948,10,'Animation'),(137106,1453950,10,'Animation'),(137106,1453951,2,'Layout'),(137106,1453952,11,'Lighting Coordinator'),(137106,1453953,10,'Animation'),(137106,1453954,10,'Animation'),(137106,1453955,11,'Lighting Artist'),(137106,1453956,10,'Modeling'),(137106,1453957,10,'Modeling'),(137106,1453958,11,'Lighting Technician'),(137106,1453959,10,'Animation'),(137106,1453960,10,'Animation Manager'),(137106,1453961,2,'Layout'),(137106,1453962,10,'Animation'),(137106,1453963,10,'Animation'),(137106,1453964,10,'Modeling'),(137106,1453965,11,'Lighting Coordinator'),(137106,1453966,10,'Modeling'),(137106,1453967,2,'Layout'),(137106,1453968,2,'Layout'),(137106,1453969,11,'Lighting Artist'),(137106,1453970,2,'Layout'),(137106,1453971,11,'Lighting Artist'),(137106,1453972,11,'Lighting Artist'),(137106,1453973,10,'Animation'),(137106,1453974,10,'Animation'),(137106,1453975,10,'Animation'),(137106,1453976,10,'Animation'),(137106,1453977,10,'Animation'),(137106,1453978,10,'Modeling'),(137106,1453979,10,'Modeling'),(137106,1453980,10,'Animation'),(137106,1453981,10,'Animation'),(137106,1453982,11,'Lighting Artist'),(137106,1453983,10,'Animation'),(137106,1453986,2,'Layout'),(137106,1453987,11,'Lighting Artist'),(137106,1453989,10,'Animation'),(137106,1453990,10,'Animation'),(137106,1453991,9,'Technical Supervisor'),(137106,1453993,10,'Modeling'),(137106,1453994,10,'Animation'),(137106,1453996,10,'Animation'),(137106,1453998,11,'Lighting Artist'),(137106,1453999,11,'Lighting Artist'),(137106,1454000,10,'Animation'),(137106,1454001,11,'Lighting Artist'),(137106,1454003,11,'Lighting Artist'),(137106,1454006,10,'Animation'),(137106,1454008,10,'Animation'),(137106,1454010,4,'Storyboard'),(137106,1454012,11,'Lighting Artist'),(137106,1454013,11,'Lighting Artist'),(82682,561,3,'Casting'),(82682,647,1,'Director of Photography'),(82682,5957,7,'Set Decoration'),(82682,7418,8,'Costume Design'),(82682,10393,5,'Editor'),(82682,11475,7,'Production Design'),(82682,17630,3,'Producer'),(82682,18264,6,'Original Music Composer'),(82682,19663,7,'Supervising Art Director'),(82682,22242,8,'Costume Supervisor'),(82682,56917,5,'Editor'),(82682,56932,3,'Producer'),(82682,61996,8,'Makeup Department Head'),(82682,112690,3,'Producer'),(82682,92345,7,'Construction Coordinator'),(82682,80827,6,'Foley'),(82682,83091,6,'Sound Re-Recording Mixer'),(82682,91268,2,'Director'),(82682,91912,1,'Camera Operator'),(82682,108801,1,'Camera Operator'),(82682,142157,9,'Stunt Coordinator'),(82682,143913,6,'ADR & Dubbing'),(82682,222447,1,'Camera Operator'),(82682,466391,4,'Writer'),(82682,589973,1,'Camera Operator'),(82682,928544,4,'Novel'),(82682,928546,3,'Producer'),(82682,1119658,10,'VFX Artist'),(82682,1227175,6,'Sound Effects Editor'),(82682,1323090,8,'Makeup Artist'),(82682,1341856,6,'Foley'),(82682,1347993,8,'Makeup Artist'),(82682,1352979,6,'Music Editor'),(82682,1355529,7,'Art Department Coordinator'),(82682,1355531,2,'Script Supervisor'),(82682,1355532,2,'Script Supervisor'),(82682,1357059,5,'Dialogue Editor'),(82682,1360099,6,'Sound Effects Editor'),(82682,1373432,10,'Visual Effects Producer'),(82682,1373433,10,'Visual Effects Supervisor'),(82682,1373434,10,'Visual Effects Producer'),(82682,1377137,5,'Digital Intermediate'),(82682,1390534,10,'Visual Effects Producer'),(82682,1391698,9,'Stunt Coordinator'),(82682,1394131,6,'Sound Re-Recording Mixer'),(82682,1396800,10,'Visual Effects Supervisor'),(82682,1399635,10,'Visual Effects Supervisor'),(82682,1399877,1,'Steadicam Operator'),(82682,1400739,9,'Unit Publicist'),(82682,1402038,3,'Location Manager'),(82682,1403085,9,'Property Master'),(82682,1404306,8,'Hairstylist'),(82682,1405814,6,'ADR & Dubbing'),(82682,1406389,6,'Sound Effects Editor'),(82682,1408301,6,'Sound Designer'),(82682,1408311,5,'Dialogue Editor'),(82682,1413224,8,'Hairstylist'),(82682,1414497,9,'Property Master'),(82682,1415617,6,'Sound Effects Editor'),(82682,1415965,5,'Dialogue Editor'),(82682,1416095,8,'Hairstylist'),(82682,1424151,8,'Makeup Artist'),(82682,1424156,5,'Dialogue Editor'),(82682,1424167,6,'Sound Designer'),(82682,1432030,3,'Location Manager'),(82682,1443032,8,'Hairstylist'),(82682,1452641,7,'Art Direction'),(82682,1452643,8,'Hairstylist'),(82682,1452644,8,'Hairstylist'),(82682,1452646,8,'Makeup Artist'),(82682,1452647,7,'Greensman'),(82682,1452648,7,'Greensman'),(82682,1452649,7,'Greensman'),(82682,1452650,7,'Greensman'),(82682,1452675,1,'Still Photographer'),(82682,1452686,5,'Digital Intermediate'),(82682,1452687,5,'First Assistant Editor'),(82682,1452688,9,'Transportation Coordinator'),(82682,1452689,3,'Location Manager'),(82682,1452690,9,'Studio Teachers'),(82682,1521185,9,'Stunts'),(87825,190,3,'Producer'),(87825,384,5,'Editor'),(87825,460,1,'Director of Photography'),(87825,795,7,'Production Design'),(87825,7229,6,'Original Music Composer'),(87825,4746,2,'Director'),(87825,4746,3,'Producer'),(87825,19863,7,'Art Direction'),(87825,63946,3,'Executive Producer'),(87825,74319,5,'Editor'),(87825,86589,3,'Producer'),(87825,323488,4,'Screenplay'),(87825,935490,3,'Casting'),(87825,935491,7,'Art Department Assistant'),(87825,935492,9,'Special Effects'),(87825,935493,3,'Casting'),(87825,935494,3,'Casting'),(87825,1181575,1,'Still Photographer'),(87825,1181576,11,'Gaffer'),(38321,36,1,'Director of Photography'),(38321,4767,3,'Producer'),(38321,7415,3,'Casting'),(38321,19155,6,'Original Music Composer'),(38321,14352,8,'Costume Design'),(38321,59922,3,'Executive Producer'),(38321,57873,3,'Producer'),(38321,71262,3,'Producer'),(38321,116357,2,'Director'),(38321,120119,4,'Scenario Writer'),(38321,185438,10,'Animation'),(38321,227450,3,'Executive Producer'),(38321,406204,8,'Makeup Department Head'),(38321,572089,3,'Executive Producer'),(38321,1014978,3,'Executive Producer'),(38321,1014988,4,'Writer'),(38321,1463182,10,'VFX Artist'),(137321,8220,7,'Production Design'),(137321,947,6,'Original Music Composer'),(137321,1635,5,'Editor'),(137321,2593,6,'Original Music Composer'),(137321,5575,4,'Screenplay'),(137321,5575,2,'Director'),(137321,5575,3,'Producer'),(137321,10957,5,'Editor'),(137321,8750,1,'Director of Photography'),(137321,17630,3,'Producer'),(137321,23485,3,'Producer'),(137321,1107189,4,'Novel'),(123553,4017,3,'Producer'),(123553,8303,3,'Producer'),(123553,54489,3,'Casting'),(123553,21981,2,'Director'),(123553,51869,8,'Costume Design'),(123553,57062,4,'Screenplay'),(123553,72268,6,'Music'),(123553,76570,9,'Cinematography'),(123553,1119148,4,'Writer'),(123553,1119148,4,'Novel'),(123553,1119149,4,'Screenplay'),(123553,1456835,10,'Animation'),(210860,8221,7,'Art Direction'),(210860,85,3,'Producer'),(210860,508,2,'Director'),(210860,561,3,'Casting'),(210860,10231,1,'Director of Photography'),(210860,5334,8,'Hair Designer'),(210860,5334,8,'Makeup Designer'),(210860,9035,3,'Co-Producer'),(210860,17766,5,'Editor'),(210860,17767,6,'Music'),(210860,19310,8,'Costume Design'),(210860,20743,3,'Producer'),(210860,29525,3,'Producer'),(210860,34528,3,'Production Supervisor'),(210860,40513,3,'Executive Producer'),(210860,53680,3,'Casting'),(210860,57465,3,'Producer'),(210860,57465,3,'Line Producer'),(210860,77071,6,'Music'),(210860,60190,9,'Post Production Supervisor'),(210860,92371,6,'Sound Re-Recording Mixer'),(210860,71578,7,'Set Decoration'),(210860,75375,8,'Makeup Artist'),(210860,111716,4,'Writer'),(210860,184106,3,'Executive Producer'),(210860,204408,8,'Makeup Artist'),(210860,938107,3,'Producer'),(210860,1060620,6,'Boom Operator'),(210860,1089410,7,'Assistant Art Director'),(210860,1187669,1,'Additional Photography'),(210860,1327443,9,'Supervising Art Director'),(210860,1383288,5,'Dialogue Editor'),(210860,1395729,6,'Production Sound Mixer'),(210860,1400072,6,'Sound Re-Recording Mixer'),(210860,1403389,8,'Hairstylist'),(210860,1406898,6,'Sound Effects Editor'),(210860,1407765,5,'Editor'),(210860,1409817,8,'Hair Department Head'),(210860,1420634,9,'Property Master'),(210860,1437620,8,'Hairstylist'),(210860,1443031,7,'Production Design'),(210860,1449929,8,'Makeup Artist'),(210860,1453245,9,'Carpenter'),(210860,1461271,4,'Writer'),(210860,1462433,7,'Art Direction'),(210860,1483850,6,'Music Editor'),(210860,1527431,1,'Additional Photography'),(210860,1534985,6,'Boom Operator'),(210860,1535968,7,'Art Direction'),(210860,1564096,3,'Co-Producer'),(210860,1564100,8,'Makeup Artist'),(210860,1564101,9,'Unit Production Manager'),(210860,1564102,7,'Painter'),(210860,1564103,9,'Carpenter'),(210860,1564104,9,'Carpenter'),(210860,1564105,9,'Carpenter'),(210860,1564106,9,'Carpenter'),(210860,1564107,6,'Boom Operator'),(210860,1564108,1,'Additional Photography'),(210860,1564112,9,'Score Engineer'),(210860,1717794,9,'Carpenter'),(381902,93991,2,'Director'),(381902,563604,4,'Writer'),(381902,1818520,4,'Writer'),(293660,1720,3,'Casting'),(293660,1366,9,'Stunts'),(293660,7200,3,'Producer'),(293660,7932,4,'Screenplay'),(293660,9618,7,'Production Design'),(293660,11092,3,'Producer'),(293660,12205,8,'Costume Design'),(293660,15017,8,'Makeup Designer'),(293660,10859,3,'Producer'),(293660,52193,6,'ADR & Dubbing'),(293660,55252,2,'Director'),(293660,113048,9,'Sound Recordist'),(293660,113054,6,'Sound Designer'),(293660,113054,6,'Supervising Sound Editor'),(293660,113073,6,'Sound Re-Recording Mixer'),(293660,56827,6,'Music'),(293660,58911,9,'Stunts'),(293660,78495,9,'Armorer'),(293660,62907,5,'Editor'),(293660,91269,4,'Screenplay'),(293660,91269,3,'Executive Producer'),(293660,105643,4,'Storyboard'),(293660,934844,4,'Characters'),(293660,936841,7,'Art Direction'),(293660,959274,1,'Director of Photography'),(293660,986277,3,'Casting'),(293660,1122003,3,'Casting'),(293660,1168704,9,'Stunts'),(293660,1191106,7,'Art Direction'),(293660,1222480,4,'Characters'),(293660,1327186,8,'Costume Supervisor'),(293660,1338372,6,'Foley'),(293660,1340345,6,'Sound Designer'),(293660,1367494,6,'Sound Designer'),(293660,1367505,6,'Music Editor'),(293660,1378720,8,'Set Costumer'),(293660,1389133,6,'Sound Re-Recording Mixer'),(293660,1391700,11,'Gaffer'),(293660,1394972,1,'Steadicam Operator'),(293660,1394973,1,'Still Photographer'),(293660,1399057,6,'Supervising Sound Editor'),(293660,1399061,6,'Sound Editor'),(293660,1401563,6,'Supervising Sound Editor'),(293660,1406767,11,'Gaffer'),(293660,1409237,10,'Animation Supervisor'),(293660,1409744,1,'Camera Operator'),(293660,1418374,10,'Animation Director'),(293660,1431077,1,'Camera Operator'),(293660,1440403,9,'Property Master'),(293660,1441320,10,'Special Effects Supervisor'),(293660,1441806,7,'Set Decoration'),(293660,1444239,9,'Stunt Coordinator'),(293660,1466537,3,'Casting Associate'),(293660,1471726,6,'Music Supervisor'),(293660,1494209,1,'Helicopter Camera'),(293660,1533023,10,'Visual Effects Coordinator'),(293660,1533500,10,'Visual Effects Coordinator'),(293660,1543227,10,'Visual Effects Coordinator'),(293660,1547887,9,'Stunts'),(293660,1552332,11,'Rigging Gaffer'),(293660,1552473,1,'First Assistant Camera'),(293660,1558713,9,'Armorer'),(293660,1561340,1,'First Assistant Camera'),(293660,1564737,1,'Still Photographer'),(293660,1580827,7,'Art Department Coordinator'),(293660,1580828,7,'Art Department Assistant'),(293660,1580830,8,'Assistant Costume Designer'),(293660,1580831,8,'Set Costumer'),(293660,1580832,8,'Set Costumer'),(293660,1580833,9,'Property Master'),(293660,1580835,1,'Camera Operator'),(293660,1580836,1,'Camera Operator'),(293660,1580843,11,'Rigging Grip'),(293660,1580844,11,'Rigging Grip'),(293660,1580845,11,'Rigging Grip'),(293660,1580846,1,'First Assistant Camera'),(293660,1580847,1,'First Assistant Camera'),(293660,1580851,10,'Animation Director'),(293660,1580852,10,'VFX Editor'),(293660,1580853,5,'First Assistant Editor'),(293660,1580854,10,'Visual Effects Coordinator'),(293660,1580855,10,'Visual Effects Coordinator'),(293660,1580856,10,'Visual Effects Coordinator'),(293660,1580857,10,'Visual Effects Coordinator'),(293660,1580858,10,'Visual Effects Coordinator'),(293660,1580859,10,'Visual Effects Coordinator'),(293660,1580860,10,'Visual Effects Coordinator'),(293660,1737894,9,'Stunts'),(190859,190,2,'Director'),(190859,190,3,'Producer'),(190859,384,5,'Editor'),(190859,375,6,'Supervising Sound Editor'),(190859,460,1,'Director of Photography'),(190859,461,8,'Costume Design'),(190859,795,7,'Production Design'),(190859,1296,3,'Executive Producer'),(190859,9624,9,'Stunt Coordinator'),(190859,13050,9,'Dialect Coach'),(190859,16994,6,'Sound Effects Editor'),(190859,63946,3,'Executive Producer'),(190859,65711,7,'Set Decoration'),(190859,74319,5,'Editor'),(190859,83066,8,'Hairstylist'),(190859,102089,4,'Writer'),(190859,122279,9,'Stunt Coordinator'),(190859,935490,3,'Casting'),(190859,958691,7,'Production Design'),(190859,969743,7,'Art Direction'),(190859,1061060,3,'Executive Producer'),(190859,1133287,10,'Visual Effects Producer'),(190859,1171441,4,'Writer'),(190859,1181575,1,'Still Photographer'),(190859,1181576,11,'Gaffer'),(190859,1208437,8,'Makeup Artist'),(190859,1263143,9,'Property Master'),(190859,1271735,7,'Art Direction'),(190859,1322015,8,'Makeup Department Head'),(190859,1323092,8,'Costume Supervisor'),(190859,1338372,6,'Foley'),(190859,1342625,6,'Sound Re-Recording Mixer'),(190859,1345620,9,'Transportation Coordinator'),(190859,1355532,2,'Script Supervisor'),(190859,1357059,5,'Dialogue Editor'),(190859,1357067,8,'Set Costumer'),(190859,1367493,6,'Foley'),(190859,1368865,6,'Supervising Sound Editor'),(190859,1368866,6,'Sound Designer'),(190859,1377130,10,'Visual Effects Supervisor'),(190859,1377131,1,'Camera Operator'),(190859,1378222,7,'Construction Coordinator'),(190859,1384390,9,'Stunt Coordinator'),(190859,1399315,10,'Visual Effects Producer'),(190859,1399632,6,'Sound Effects Editor'),(190859,1399877,1,'Steadicam Operator'),(190859,1400074,10,'Visual Effects Supervisor'),(190859,1403430,7,'Art Department Coordinator'),(190859,1404717,6,'ADR & Dubbing'),(190859,1406397,10,'Visual Effects Producer'),(190859,1406766,9,'Second Unit Cinematographer'),(190859,1407358,10,'Visual Effects Supervisor'),(190859,1407372,5,'Digital Intermediate'),(190859,1409719,5,'Digital Intermediate'),(190859,1412185,8,'Makeup Artist'),(190859,1413499,3,'Executive Producer'),(190859,1417399,8,'Hairstylist'),(190859,1422985,9,'Transportation Coordinator'),(190859,1428595,6,'Sound Effects Editor'),(190859,1431067,10,'Visual Effects Supervisor'),(190859,1440801,7,'Construction Coordinator'),(190859,1442137,10,'Animation Supervisor'),(190859,1458578,6,'ADR & Dubbing'),(190859,1458578,5,'Dialogue Editor'),(190859,1462203,4,'Writer'),(190859,1472773,7,'Art Department Coordinator'),(190859,1472774,7,'Assistant Art Director'),(190859,1472784,9,'Special Effects Coordinator'),(190859,1472787,10,'Visual Effects Supervisor'),(190859,1472788,10,'Visual Effects Supervisor'),(190859,1472790,10,'Visual Effects Supervisor'),(190859,1472793,1,'Helicopter Camera'),(190859,1472800,11,'Rigging Gaffer'),(190859,1701954,4,'Writer'),(257445,403,1,'Director of Photography'),(257445,531,6,'Original Music Composer'),(257445,546,3,'Casting'),(257445,1296,3,'Executive Producer'),(257445,5546,5,'Editor'),(257445,6874,3,'Executive Producer'),(257445,7130,4,'Story'),(257445,7131,4,'Story'),(257445,9618,7,'Production Design'),(257445,10970,8,'Costume Design'),(257445,11874,3,'Producer'),(257445,19863,7,'Art Direction'),(257445,23421,3,'Producer'),(257445,52681,3,'Executive Producer'),(257445,65630,2,'Director'),(257445,66535,7,'Art Direction'),(257445,76708,7,'Art Direction'),(257445,84220,3,'Executive Producer'),(257445,201757,4,'Novel'),(257445,582919,4,'Screenplay'),(257445,935278,3,'Casting'),(257445,1140576,10,'Animation'),(257445,1399633,3,'Co-Producer'),(257445,1453930,10,'Animation'),(257445,1560275,7,'Set Decoration'),(257445,1742361,3,'Executive Producer'),(347969,2593,6,'Original Music Composer'),(347969,4501,1,'Director of Photography'),(347969,9423,6,'Original Music Composer'),(347969,19292,3,'Producer'),(347969,19292,4,'Writer'),(347969,20818,3,'Producer'),(347969,20824,7,'Production Design'),(347969,56728,4,'Writer'),(347969,57370,2,'Director'),(347969,60151,5,'Editor'),(347969,1097577,3,'Producer'),(347969,1397850,11,'Gaffer'),(347969,1403865,1,'Still Photographer'),(347969,1408396,11,'Gaffer'),(116741,376,3,'Executive Producer'),(116741,4937,4,'Screenplay'),(116741,4937,3,'Producer'),(116741,4937,4,'Story'),(116741,6922,7,'Art Direction'),(116741,10956,3,'Executive Producer'),(116741,13626,7,'Set Decoration'),(116741,17825,2,'Director'),(116741,17825,3,'Producer'),(116741,19282,3,'Executive Producer'),(116741,21592,8,'Costume Design'),(116741,23486,6,'Original Music Composer'),(116741,52088,7,'Production Design'),(116741,54271,5,'Editor'),(116741,56791,1,'Director of Photography'),(116741,57634,3,'Executive Producer'),(116741,58872,3,'Casting'),(116741,89027,4,'Screenplay'),(116741,1064447,3,'Executive Producer'),(116741,1188380,3,'Executive Producer'),(35791,4014,2,'Director'),(35791,4014,3,'Producer'),(35791,4014,4,'Screenplay'),(35791,4016,3,'Producer'),(35791,4017,3,'Producer'),(35791,673,3,'Producer'),(35791,971,5,'Editor'),(35791,4697,3,'Producer'),(35791,8303,3,'Producer'),(35791,13551,8,'Costume Design'),(35791,15222,7,'Production Design'),(35791,17080,3,'Executive Producer'),(35791,22818,1,'Director of Photography'),(35791,23545,3,'Casting'),(35791,23546,7,'Art Direction'),(35791,31516,3,'Executive Producer'),(35791,60891,6,'Original Music Composer'),(35791,107420,7,'Set Decoration'),(35791,936194,8,'Makeup Artist'),(35791,1075146,9,'Armorer'),(35791,1126355,3,'Producer'),(35791,1317043,8,'Costume Design'),(35791,1317044,8,'Makeup Department Head'),(35791,1340919,2,'Script Supervisor'),(35791,1364792,9,'Makeup Effects'),(35791,1398505,3,'Casting'),(35791,1401309,2,'Script Supervisor'),(35791,1425969,8,'Hair Department Head'),(35791,1425970,8,'Key Hair Stylist'),(35791,1484713,8,'Assistant Costume Designer'),(35791,1526828,7,'Art Department Coordinator'),(35791,1530192,9,'Armorer'),(35791,1530194,8,'Assistant Costume Designer'),(72431,19801,3,'Producer'),(72431,670,6,'Sound Designer'),(72431,5287,6,'Music'),(72431,6347,3,'Casting'),(72431,6998,7,'Production Design'),(72431,8160,6,'Foley'),(72431,8163,6,'Foley'),(72431,8166,6,'Sound Re-Recording Mixer'),(72431,11457,7,'Supervising Art Director'),(72431,15733,7,'Set Decoration'),(72431,16364,7,'Production Design'),(72431,25729,3,'Casting'),(72431,51679,4,'Screenplay'),(72431,51679,4,'Story'),(72431,53360,3,'Casting'),(72431,113155,10,'Visual Effects Producer'),(72431,56642,8,'Costume Design'),(72431,71536,6,'Supervising Sound Editor'),(72431,96389,1,'Camera Operator'),(72431,125149,1,'Helicopter Camera'),(72431,957282,3,'Casting'),(72431,1037310,1,'Camera Operator'),(72431,1178898,1,'Camera Operator'),(72431,1216147,2,'Director'),(72431,1219884,3,'Producer'),(72431,1235786,6,'Sound Re-Recording Mixer'),(72431,1271924,10,'Animation Supervisor'),(72431,1308306,1,'Director of Photography'),(72431,1316804,3,'Casting'),(72431,1325916,3,'Casting'),(72431,1328822,7,'Art Direction'),(72431,1334494,7,'Art Direction'),(72431,1348005,10,'Visual Effects Supervisor'),(72431,1376899,5,'Dialogue Editor'),(72431,1389534,6,'ADR & Dubbing'),(72431,1392249,9,'Transportation Coordinator'),(72431,1398930,10,'Visual Effects Producer'),(72431,1398935,11,'Gaffer'),(72431,1399305,10,'Visual Effects Supervisor'),(72431,1400506,5,'Digital Intermediate'),(72431,1401792,9,'Visual Effects Editor'),(72431,1402934,1,'Steadicam Operator'),(72431,1404539,9,'Stunt Coordinator'),(72431,1414290,5,'Digital Intermediate'),(72431,1415463,6,'Sound Re-Recording Mixer'),(72431,1415465,6,'Sound Effects Editor'),(72431,1415474,9,'CG Supervisor'),(72431,1416844,1,'Still Photographer'),(72431,1425503,11,'Gaffer'),(72431,1431075,1,'Camera Operator'),(72431,1431090,11,'Gaffer'),(72431,1439731,10,'Visual Effects Producer'),(72431,1439739,10,'Visual Effects Supervisor'),(72431,1442151,10,'Visual Effects Supervisor'),(72431,1443984,9,'Special Effects Coordinator'),(72431,1448260,10,'Visual Effects Supervisor'),(72431,1456835,10,'Animation'),(72431,1483233,9,'CG Supervisor'),(72431,1483841,9,'Stunt Coordinator'),(72431,1483854,2,'Script Supervisor'),(72431,1484175,9,'Property Master'),(72431,1484176,9,'Sound Recordist'),(72431,1484177,9,'Sound Recordist'),(72431,1484178,6,'Sound Effects Editor'),(72431,1484191,10,'Animation Supervisor'),(72431,1484194,9,'CG Supervisor'),(72431,1484195,10,'Animation Supervisor'),(72431,1484196,10,'Animation Supervisor'),(72431,1484197,10,'Visual Effects Producer'),(72431,1484198,10,'Visual Effects Producer'),(72431,1484199,9,'Visual Effects Editor'),(72431,1484200,10,'Visual Effects Producer'),(72431,1484204,10,'Visual Effects Producer'),(72431,1484205,10,'Visual Effects Supervisor'),(72431,1484206,10,'Visual Effects Supervisor'),(72431,1484208,10,'Visual Effects Supervisor'),(72431,1484209,10,'Visual Effects Supervisor'),(72431,1484211,9,'Second Unit Cinematographer'),(72431,1484213,1,'Helicopter Camera'),(72431,1484214,11,'Gaffer'),(72431,1484215,1,'Still Photographer'),(72431,1484216,11,'Rigging Gaffer'),(72431,1484219,3,'Casting'),(72431,1484220,8,'Costume Supervisor'),(72431,1484221,5,'First Assistant Editor'),(72431,1484222,6,'Music Editor'),(72431,1484223,9,'Picture Car Coordinator'),(72431,1484224,2,'Script Coordinator'),(87428,2593,6,'Original Music Composer'),(87428,64227,1,'Director of Photography'),(87428,74619,2,'Director'),(87428,212576,3,'Executive Producer'),(87428,524128,4,'Writer'),(71676,8382,7,'Production Design'),(71676,3893,3,'Executive Producer'),(71676,3893,4,'Screenplay'),(71676,3893,4,'Story'),(71676,2073,3,'Casting'),(71676,3189,5,'Editor'),(71676,4767,3,'Producer'),(71676,7624,3,'Executive Producer'),(71676,7626,3,'Producer'),(71676,12922,3,'Executive Producer'),(71676,16837,3,'Executive Producer'),(71676,16838,3,'Producer'),(71676,20192,2,'Director'),(71676,20193,2,'Director'),(71676,21478,3,'Producer'),(71676,54420,6,'Original Music Composer'),(71676,54252,3,'Executive Producer'),(71676,64227,1,'Director of Photography'),(71676,122354,9,'Stunt Coordinator'),(71676,141359,4,'Writer'),(71676,204847,4,'Screenplay'),(71676,205379,4,'Screenplay'),(71676,238120,3,'Casting'),(71676,937174,3,'Producer'),(71676,966721,7,'Set Decoration'),(71676,995533,3,'Executive Producer'),(71676,1052870,8,'Costume Design'),(71676,1052871,9,'Special Effects'),(71676,1052872,9,'Special Effects'),(71676,1452989,10,'Animation'),(71676,1453003,10,'Animation'),(71676,1457935,9,'Digital Effects Supervisor'),(71676,1463182,10,'VFX Artist'),(71676,1767709,10,'Visual Effects'),(71676,1767710,10,'Visual Effects'),(109424,1979,3,'Executive Producer'),(109424,6410,3,'Casting'),(109424,2997,3,'Producer'),(109424,3501,3,'Casting'),(109424,4767,3,'Producer'),(109424,13670,1,'Camera Operator'),(109424,19156,3,'Casting Associate'),(109424,7790,7,'Set Designer'),(109424,9493,8,'Costume Supervisor'),(109424,40713,9,'Stunt Coordinator'),(109424,40823,6,'Foley'),(109424,15493,1,'Director of Photography'),(109424,16683,6,'Sound Designer'),(109424,18786,8,'Hairstylist'),(109424,21807,4,'Screenplay'),(109424,22486,9,'Property Master'),(109424,25598,2,'Director'),(109424,29405,5,'Editor'),(109424,40104,8,'Makeup Artist'),(109424,40471,8,'Costume Design'),(109424,54417,3,'Producer'),(109424,61094,7,'Art Direction'),(109424,120606,3,'Executive Producer'),(109424,227440,6,'Original Music Composer'),(109424,943313,7,'Production Design'),(109424,966721,7,'Set Decoration'),(109424,1046160,3,'Executive Producer'),(109424,1329113,8,'Costume Supervisor'),(109424,1334458,9,'Property Master'),(109424,1334459,9,'Property Master'),(109424,1334461,7,'Construction Coordinator'),(109424,1334462,7,'Construction Coordinator'),(109424,1334463,3,'Casting'),(109424,1335556,6,'Sound Designer'),(109424,1337412,6,'Foley'),(109424,1339460,6,'Music Editor'),(109424,1341798,3,'Location Manager'),(109424,1353259,1,'Camera Operator'),(109424,1357600,2,'Script Supervisor'),(109424,1390388,2,'Script Supervisor'),(109424,1392609,6,'Sound Re-Recording Mixer'),(109424,1392718,1,'Still Photographer'),(109424,1395024,6,'Sound Re-Recording Mixer'),(109424,1400088,6,'Music Editor'),(109424,1404234,3,'Location Manager'),(109424,1405429,3,'Location Manager'),(109424,1408371,7,'Art Direction'),(109424,1408372,7,'Leadman'),(109424,1408373,6,'Supervising Sound Editor'),(109424,1408374,6,'Sound Effects Editor'),(109424,1408377,5,'Dialogue Editor'),(109424,1408378,6,'ADR & Dubbing'),(109424,1408379,10,'Visual Effects Producer'),(109424,1408380,9,'Visual Effects Editor'),(109424,1408381,10,'Visual Effects Producer'),(109424,1408382,10,'Visual Effects Producer'),(109424,1408383,10,'Visual Effects Supervisor'),(109424,1408384,10,'Visual Effects Supervisor'),(109424,1408385,9,'CG Supervisor'),(109424,1408386,9,'CG Supervisor'),(109424,1408387,9,'CG Supervisor'),(109424,1408389,1,'Camera Operator'),(109424,1408390,1,'Camera Operator'),(109424,1408391,1,'Underwater Camera'),(109424,1408392,1,'Helicopter Camera'),(109424,1408393,1,'Still Photographer'),(109424,1408394,11,'Lighting Technician'),(109424,1408395,11,'Lighting Technician'),(109424,1408396,11,'Lighting Technician'),(109424,1408398,11,'Rigging Gaffer'),(109424,1408399,11,'Rigging Gaffer'),(109424,1408400,5,'First Assistant Editor'),(109424,1408401,5,'First Assistant Editor'),(109424,1408402,9,'Visual Effects Editor'),(109424,1408403,5,'Digital Intermediate'),(109424,1408404,9,'Transportation Coordinator'),(109424,1408405,3,'Location Manager'),(109424,1408406,3,'Location Manager'),(109424,1408407,9,'Translator'),(109424,1430408,8,'Hair Designer'),(109424,1430408,8,'Makeup Designer'),(109424,1532606,9,'Armorer'),(109424,1545988,10,'Special Effects Supervisor'),(109424,1557027,3,'Casting Associate'),(109424,1557029,3,'Casting Associate'),(35056,3989,8,'Costume Design'),(35056,4249,3,'Casting'),(35056,7237,7,'Set Decoration'),(35056,4501,1,'Director of Photography'),(35056,10570,3,'Executive Producer'),(35056,5329,7,'Production Design'),(35056,10956,3,'Executive Producer'),(35056,9360,1,'Still Photographer'),(35056,11508,7,'Art Direction'),(35056,17825,2,'Director'),(35056,17825,3,'Producer'),(35056,23486,6,'Original Music Composer'),(35056,54271,5,'Editor'),(35056,75362,3,'Producer'),(35056,113664,4,'Writer'),(35056,113666,3,'Producer'),(35056,1400081,1,'Camera Operator'),(35056,1400081,1,'Steadicam Operator'),(35056,1410316,6,'Music Editor'),(35056,1533038,2,'Script Supervisor'),(35056,1552521,9,'Stunts'),(156022,29,3,'Producer'),(156022,8220,7,'Production Design'),(156022,8221,7,'Art Direction'),(156022,5914,3,'Casting'),(156022,4190,8,'Costume Design'),(156022,4611,3,'Producer'),(156022,5292,3,'Producer'),(156022,5553,6,'Original Music Composer'),(156022,6191,7,'Set Decoration'),(156022,6874,3,'Executive Producer'),(156022,18265,1,'Director of Photography'),(156022,20907,2,'Director'),(156022,21968,3,'Executive Producer'),(156022,22814,3,'Producer'),(156022,22814,4,'Writer'),(156022,43922,3,'Producer'),(156022,51612,3,'Producer'),(156022,51613,3,'Producer'),(156022,58871,5,'Editor'),(156022,92486,9,'Stunt Coordinator'),(156022,138605,9,'Special Effects Coordinator'),(156022,928632,3,'Co-Producer'),(156022,933579,6,'ADR & Dubbing'),(156022,1002554,8,'Makeup Artist'),(156022,1024910,3,'Casting'),(156022,1046545,9,'Picture Car Coordinator'),(156022,1117436,3,'Associate Producer'),(156022,1124533,3,'Executive Producer'),(156022,1227173,6,'Foley'),(156022,1242111,7,'Set Designer'),(156022,1339460,6,'Music Editor'),(156022,1341405,5,'Dialogue Editor'),(156022,1360101,6,'Foley'),(156022,1367675,8,'Set Costumer'),(156022,1378227,6,'Sound Re-Recording Mixer'),(156022,1378228,6,'Sound Re-Recording Mixer'),(156022,1389601,2,'Script Supervisor'),(156022,1392615,3,'Production Supervisor'),(156022,1392615,3,'Associate Producer'),(156022,1393444,6,'Sound Effects Editor'),(156022,1398017,3,'Producer'),(156022,1398018,3,'Producer'),(156022,1399478,5,'Digital Intermediate'),(156022,1406780,1,'Helicopter Camera'),(156022,1408192,1,'Camera Operator'),(156022,1408192,1,'Steadicam Operator'),(156022,1408356,1,'Camera Operator'),(156022,1410019,8,'Makeup Artist'),(156022,1411846,9,'Second Unit Cinematographer'),(156022,1412699,6,'Sound Designer'),(156022,1412703,6,'Supervising Sound Editor'),(156022,1419090,8,'Hairstylist'),(156022,1419091,8,'Makeup Department Head'),(156022,1419092,7,'Art Department Coordinator'),(156022,1419093,9,'Property Master'),(156022,1419094,9,'Property Master'),(156022,1419095,7,'Construction Coordinator'),(156022,1419096,7,'Construction Foreman'),(156022,1419097,7,'Greensman'),(156022,1419098,9,'Scenic Artist'),(156022,1419099,7,'Leadman'),(156022,1419100,9,'Scenic Artist'),(156022,1419101,10,'Visual Effects Producer'),(156022,1419102,10,'Visual Effects Supervisor'),(156022,1419103,9,'CG Supervisor'),(156022,1419104,1,'Camera Operator'),(156022,1419105,1,'Still Photographer'),(156022,1419106,11,'Gaffer'),(156022,1419107,11,'Rigging Gaffer'),(156022,1419108,3,'Casting'),(156022,1419109,8,'Set Costumer'),(156022,1419110,5,'Digital Intermediate'),(156022,1419111,5,'Digital Intermediate'),(156022,1419112,5,'First Assistant Editor'),(156022,1419113,9,'Dialect Coach'),(156022,1419114,9,'Dialect Coach'),(156022,1419115,2,'Script Supervisor'),(156022,1419116,3,'Production Accountant'),(156022,1419117,9,'Studio Teachers'),(156022,1419118,9,'Translator'),(156022,1419119,9,'Unit Publicist'),(156022,1419120,3,'Location Manager'),(58224,15017,8,'Makeup Artist'),(58224,54050,2,'Director'),(58224,74619,4,'Screenplay'),(58224,212576,4,'Screenplay'),(58224,1453021,10,'Animation'),(58224,1454410,10,'Visual Effects'),(58224,1455610,10,'Animation'),(58224,1459734,10,'Animation'),(58224,1460611,10,'Animation'),(58224,1460612,10,'Animation'),(175574,7398,4,'Screenplay'),(175574,8029,4,'Screenplay'),(175574,8029,2,'Director'),(175574,20503,4,'Screenplay'),(175574,955442,4,'Writer'),(175574,1447474,10,'Animation'),(175574,1453014,10,'Animation'),(175574,1453929,10,'Animation'),(175574,1453944,11,'Lighting Artist'),(175574,1459718,10,'Animation'),(175574,1459734,10,'Animation'),(175574,1459736,10,'Animation'),(175574,1463874,4,'Storyboard'),(116149,10968,3,'Producer'),(116149,62354,9,'Cinematography'),(116149,101666,4,'Screenplay'),(116149,101666,2,'Director'),(116149,1171004,11,'Electrician'),(116149,1216480,3,'Executive Producer'),(116149,1243426,4,'Characters'),(116149,1243426,4,'Story'),(80035,497,7,'Production Design'),(80035,11079,7,'Set Decoration'),(80035,6738,3,'Executive Producer'),(80035,17825,3,'Producer'),(80035,19274,4,'Screenplay'),(80035,23486,6,'Original Music Composer'),(80035,54164,1,'Director of Photography'),(80035,54271,5,'Editor'),(80035,54734,4,'Screenplay'),(80035,62854,2,'Director'),(80035,89027,4,'Screenplay'),(80035,765144,3,'Casting'),(80035,1188380,3,'Executive Producer'),(80035,1407019,9,'Visual Effects Editor'),(72197,10572,6,'Music'),(72197,34893,7,'Art Department Manager'),(72197,53304,2,'Director'),(72197,64152,4,'Storyboard'),(72197,109189,10,'Animation Supervisor'),(72197,133293,4,'Storyboard'),(72197,174683,4,'Storyboard'),(72197,240779,10,'Animation'),(72197,554219,10,'Animation'),(72197,565297,2,'Director'),(72197,565298,4,'Writer'),(72197,1046494,4,'Storyboard'),(72197,1082203,3,'Executive Producer'),(72197,1448063,10,'Animation'),(72197,1451299,4,'Storyboard'),(72197,1453501,10,'Animation'),(72197,1453503,10,'Animation'),(72197,1453527,10,'Animation'),(72197,1453607,4,'Storyboard'),(72197,1453618,10,'Animation'),(72197,1453629,10,'Animation'),(72197,1453631,10,'Animation'),(72197,1453649,10,'Animation'),(72197,1453962,10,'Animation'),(72197,1454650,10,'Animation'),(72197,1454651,10,'Animation'),(72197,1454664,4,'Storyboard'),(72197,1454665,4,'Storyboard'),(72197,1454666,10,'Animation'),(72197,1454667,7,'Art Department Manager'),(72197,1454668,10,'Animation'),(72197,1454669,10,'Animation'),(72197,1454670,10,'Animation Supervisor'),(72197,1454671,10,'Animation'),(72197,1454672,10,'Animation'),(72197,1454673,10,'Animation'),(72197,1454675,4,'Storyboard'),(72197,1454676,7,'Art Department Manager'),(72197,1454677,10,'Animation'),(72197,1454678,10,'Animation'),(72197,1454679,10,'Animation'),(72197,1454680,10,'Animation'),(72197,1454681,10,'Animation'),(72197,1454682,10,'Animation'),(72197,1454683,10,'Animation'),(72197,1454684,10,'Animation'),(72197,1454685,7,'Art Department Manager'),(72197,1454686,10,'Animation'),(72197,1454687,10,'Animation'),(72197,1454688,10,'Animation'),(72197,1454689,10,'Animation'),(72197,1454690,10,'Animation'),(72197,1454691,4,'Storyboard'),(72197,1454692,4,'Storyboard'),(72197,1454693,4,'Storyboard'),(72197,1454694,10,'Animation'),(72197,1454695,10,'Animation'),(145220,31710,3,'Producer'),(145220,52934,4,'Screenplay'),(145220,52934,3,'Executive Producer'),(145220,62758,3,'Producer'),(145220,26205,4,'Screenplay'),(145220,26205,2,'Director'),(145220,105584,6,'Music'),(42297,561,3,'Casting'),(42297,10631,10,'Special Effects Supervisor'),(42297,11699,1,'Director of Photography'),(42297,11877,7,'Production Design'),(42297,15560,5,'Editor'),(42297,21141,6,'Supervising Music Editor'),(42297,23486,6,'Original Music Composer'),(42297,42745,2,'Director'),(42297,42745,4,'Writer'),(42297,54514,6,'Music Supervisor'),(42297,58470,3,'Producer'),(42297,112521,7,'Art Direction'),(42297,1391129,9,'Stunt Coordinator'),(42297,1392243,6,'Sound Effects Editor'),(42297,1411266,9,'Special Effects Coordinator'),(42297,1428855,6,'Supervising Sound Editor'),(42297,1460587,10,'Special Effects Supervisor'),(42297,1645509,9,'Stunt Coordinator'),(42297,1793069,10,'Visual Effects Supervisor'),(36586,472,6,'Production Sound Mixer'),(36586,1305,6,'Music Editor'),(36586,3893,3,'Executive Producer'),(36586,3893,4,'Writer'),(36586,3193,6,'Sound Designer'),(36586,3193,6,'Supervising Sound Editor'),(36586,3959,3,'Unit Production Manager'),(36586,3959,3,'Associate Producer'),(36586,3962,8,'Costume Design'),(36586,7229,6,'Original Music Composer'),(36586,4952,3,'Casting'),(36586,4767,3,'Executive Producer'),(36586,4768,3,'Executive Producer'),(36586,7624,3,'Executive Producer'),(36586,7626,3,'Executive Producer'),(36586,8315,7,'Production Design'),(36586,9409,6,'Sound Re-Recording Mixer'),(36586,10833,5,'Editor'),(36586,10810,3,'Producer'),(36586,15331,6,'Sound Effects Editor'),(36586,10832,1,'Director of Photography'),(36586,10836,7,'Supervising Art Director'),(36586,10828,2,'Director'),(36586,10829,3,'Producer'),(36586,66268,9,'Choreographer'),(36586,10814,3,'Producer'),(36586,10837,7,'Art Direction'),(36586,21933,6,'Music Supervisor'),(36586,10830,3,'Executive Producer'),(36586,23551,8,'Makeup Artist'),(36586,26873,8,'Hairstylist'),(36586,57769,9,'Visual Effects Editor'),(36586,62215,3,'Casting Associate'),(36586,71148,9,'Visual Effects Editor'),(36586,82357,7,'Co-Art Director'),(36586,83293,10,'Creature Design'),(36586,91136,5,'First Assistant Editor'),(36586,135520,4,'Characters'),(36586,158916,6,'Sound Re-Recording Mixer'),(36586,179861,9,'Utility Stunts'),(36586,544391,7,'Set Dresser'),(36586,548435,6,'Sound mixer'),(36586,548446,6,'Foley'),(36586,575769,9,'Transportation Coordinator'),(36586,957970,7,'Set Decoration'),(36586,1016318,3,'Co-Producer'),(36586,1115279,1,'Aerial Camera (suggest in addition to Helicopter Camera)'),(36586,1116440,3,'Co-Producer'),(36586,1116441,4,'Characters'),(36586,1231721,10,'24 Frame Playback'),(36586,1233109,10,'Visual Effects Supervisor'),(36586,1253648,9,'Martial Arts Choreographer'),(36586,1319625,8,'Key Hair Stylist'),(36586,1324480,7,'Art Direction'),(36586,1328822,7,'Set Designer'),(36586,1337455,7,'Construction Coordinator'),(36586,1338147,7,'Construction Coordinator'),(36586,1341719,9,'Cableman'),(36586,1341744,10,'Visual Effects Supervisor'),(36586,1342601,10,'Visual Effects Supervisor'),(36586,1346943,10,'Special Effects Supervisor'),(36586,1352966,5,'Dialogue Editor'),(36586,1352966,6,'ADR Editor'),(36586,1361676,6,'Scoring Mixer'),(36586,1373172,1,'Camera Operator'),(36586,1386317,9,'Fight Choreographer'),(36586,1389626,3,'Location Manager'),(36586,1393389,10,'Visual Effects Producer'),(36586,1395460,10,'Visual Effects Supervisor'),(36586,1398914,7,'Leadman'),(36586,1399301,10,'Visual Effects Supervisor'),(36586,1399501,9,'Scenic Artist'),(36586,1399864,10,'Visual Effects Supervisor'),(36586,1401354,3,'Production Supervisor'),(36586,1401714,10,'Visual Effects Supervisor'),(36586,1403469,10,'Visual Effects Producer'),(36586,1404339,7,'Set Decoration'),(36586,1404341,8,'Prosthetic Supervisor'),(36586,1404341,8,'Key Makeup Artist'),(36586,1404342,8,'Makeup Artist'),(36586,1404343,3,'Production Manager'),(36586,1404344,3,'Production Supervisor'),(36586,1404345,7,'Art Department Coordinator'),(36586,1404352,9,'Property Master'),(36586,1404353,9,'Property Master'),(36586,1404354,7,'Set Designer'),(36586,1404355,7,'Set Designer'),(36586,1404356,7,'Assistant Art Director'),(36586,1404357,7,'Conceptual Design'),(36586,1404359,6,'Supervising Sound Editor'),(36586,1404361,5,'Dialogue Editor'),(36586,1404363,5,'Dialogue Editor'),(36586,1404364,5,'Dialogue Editor'),(36586,1404366,6,'ADR Supervisor'),(36586,1404527,9,'Special Effects Coordinator'),(36586,1404529,10,'Visual Effects Supervisor'),(36586,1404531,10,'Visual Effects Supervisor'),(36586,1404532,9,'Visual Effects Editor'),(36586,1404533,10,'Visual Effects Supervisor'),(36586,1404535,10,'Visual Effects Producer'),(36586,1404536,10,'Visual Effects Producer'),(36586,1404537,10,'Visual Effects Producer'),(36586,1404539,9,'Stunt Coordinator'),(36586,1404540,1,'Camera Operator'),(36586,1404541,1,'Steadicam Operator'),(36586,1404542,1,'Additional Camera'),(36586,1404543,9,'Video Assist Operator'),(36586,1404544,11,'Gaffer'),(36586,1404545,11,'Gaffer'),(36586,1404546,6,'Music Editor'),(36586,1404547,9,'Transportation Coordinator'),(36586,1404548,2,'Script Supervisor'),(36586,1404550,3,'Location Manager'),(36586,1404551,9,'Dialect Coach'),(36586,1404552,9,'Stand In'),(36586,1404553,9,'Unit Publicist'),(36586,1404704,9,'Post Production Supervisor'),(36586,1406826,6,'Sound Editor'),(36586,1408500,11,'Rigging Gaffer'),(36586,1420643,8,'Key Costumer'),(36586,1432473,7,'Painter'),(36586,1452756,3,'Assistant Production Manager'),(36586,1459912,10,'Digital Compositors'),(36586,1463834,9,'Transportation Captain'),(36586,1535082,8,'Assistant Costume Designer'),(36586,1548684,5,'Color Timer'),(36586,1548685,11,'Lighting Technician'),(36586,1548698,6,'Conductor'),(36586,1554991,7,'Sculptor'),(36586,1554992,1,'First Assistant Camera'),(36586,1554993,1,'Key Grip'),(36586,1554994,9,'Additional Music'),(36586,1554995,9,'Armorer'),(36586,1554996,9,'CG Supervisor'),(36586,1554999,9,'Driver'),(36586,1555000,1,'Camera Loader'),(36586,1555001,9,'Post Production Assistant'),(36586,1555004,9,'Production Controller'),(36586,1555005,9,'Set Medic'),(36586,1555006,9,'Sound Recordist'),(36586,1555008,9,'Systems Administrators & Support'),(36586,1555369,11,'Electrician'),(36586,1555370,11,'Rigging Grip'),(36586,1555371,3,'Production Accountant'),(36586,1555372,3,'Production Coordinator'),(36586,1555373,6,'Boom Operator'),(36586,1555374,6,'Assistant Sound Editor'),(36586,1555376,10,'Visual Effects Coordinator'),(36586,1555377,4,'Storyboard'),(36586,1555380,10,'I/O Supervisor'),(36586,1555381,10,'I/O Manager'),(36586,1570769,2,'First Assistant Director'),(36586,1691586,2,'Third Assistant Director'),(36586,1707603,3,'Casting Assistant'),(36586,1721854,10,'Lead Animator'),(36586,1733142,5,'Negative Cutter'),(36586,1735735,6,'Foley Editor'),(36586,1738137,6,'Musician'),(36586,1739890,1,'Dolly Grip'),(36586,1739892,1,'Grip'),(36586,1739894,8,'Prosthetic Makeup Artist'),(36586,1739902,9,'Pilot'),(36586,1739942,2,'Second Assistant Director'),(36586,1739944,5,'Associate Editor'),(36586,1739945,3,'Assistant Production Coordinator'),(36586,1739949,10,'3D Artist'),(36586,1739950,10,'CG Animator'),(70074,490,4,'Novel'),(70074,1091,3,'Producer'),(70074,1723,2,'Director'),(70074,5914,3,'Casting'),(70074,6223,3,'Executive Producer'),(70074,9349,6,'Sound Designer'),(70074,14766,9,'Special Effects Coordinator'),(70074,14352,8,'Costume Design'),(70074,16486,3,'Producer'),(70074,18923,3,'Producer'),(70074,18924,3,'Producer'),(70074,21548,10,'Visual Effects Supervisor'),(70074,28401,3,'Executive Producer'),(70074,39123,3,'Casting'),(70074,43891,1,'Director of Photography'),(70074,57561,4,'Screenplay'),(70074,59522,3,'Executive Producer'),(70074,61921,3,'Executive Producer'),(70074,64335,5,'Editor'),(70074,75040,3,'Producer'),(70074,74989,1,'Camera Operator'),(70074,74989,1,'Steadicam Operator'),(70074,91123,1,'Helicopter Camera'),(70074,131532,9,'Stunt Coordinator'),(70074,548444,6,'Sound Effects Editor'),(70074,557922,4,'Novel'),(70074,578724,8,'Makeup Artist'),(70074,582943,7,'Art Department Coordinator'),(70074,961447,7,'Production Design'),(70074,971109,3,'Executive Producer'),(70074,989600,1,'Camera Operator'),(70074,999763,3,'Executive Producer'),(70074,1014920,3,'Casting'),(70074,1040861,7,'Set Decoration'),(70074,1103515,3,'Executive Producer'),(70074,1144651,1,'Camera Operator'),(70074,1163148,10,'Visual Effects'),(70074,1178962,6,'Original Music Composer'),(70074,1223099,6,'ADR & Dubbing'),(70074,1316296,8,'Makeup Department Head'),(70074,1321000,8,'Costume Supervisor'),(70074,1333930,7,'Set Designer'),(70074,1333931,9,'Property Master'),(70074,1333932,3,'Casting'),(70074,1360108,10,'Visual Effects Supervisor'),(70074,1360109,10,'Visual Effects Producer'),(70074,1368866,6,'Sound Re-Recording Mixer'),(70074,1378240,1,'Still Photographer'),(70074,1388879,6,'Music Editor'),(70074,1393400,11,'Gaffer'),(70074,1393451,8,'Set Costumer'),(70074,1393862,1,'Camera Operator'),(70074,1395027,10,'Visual Effects Supervisor'),(70074,1398972,1,'Underwater Camera'),(70074,1399287,10,'Visual Effects Supervisor'),(70074,1399632,6,'Supervising Sound Editor'),(70074,1399973,10,'Visual Effects Supervisor'),(70074,1401273,9,'Unit Publicist'),(70074,1401771,9,'Transportation Coordinator'),(70074,1402723,3,'Location Manager'),(70074,1404214,5,'Dialogue Editor'),(70074,1406397,10,'Visual Effects Producer'),(70074,1407032,9,'Picture Car Coordinator'),(70074,1407339,8,'Hairstylist'),(70074,1407340,8,'Hairstylist'),(70074,1407343,3,'Production Supervisor'),(70074,1407345,3,'Production Supervisor'),(70074,1407347,7,'Construction Coordinator'),(70074,1407349,9,'Scenic Artist'),(70074,1407350,7,'Greensman'),(70074,1407351,7,'Greensman'),(70074,1407354,6,'Sound Re-Recording Mixer'),(70074,1407355,9,'Visual Effects Editor'),(70074,1407356,10,'Visual Effects Supervisor'),(70074,1407357,10,'Visual Effects Supervisor'),(70074,1407358,10,'Visual Effects Supervisor'),(70074,1407359,10,'Visual Effects Supervisor'),(70074,1407360,10,'Visual Effects Producer'),(70074,1407363,10,'Visual Effects Producer'),(70074,1407364,9,'Stunt Coordinator'),(70074,1407370,11,'Best Boy Electric'),(70074,1407371,8,'Set Costumer'),(70074,1407372,5,'Digital Intermediate'),(70074,1407374,9,'Thanks'),(261023,8376,6,'Sound Re-Recording Mixer'),(261023,8376,6,'Supervising Sound Editor'),(261023,6410,3,'Casting'),(261023,13165,6,'Sound Editor'),(261023,16177,6,'Sound Re-Recording Mixer'),(261023,16738,10,'Visual Effects Coordinator'),(261023,17816,5,'Editor'),(261023,21339,4,'Screenplay'),(261023,11091,3,'Executive Producer'),(261023,39124,7,'Set Decoration'),(261023,56827,6,'Original Music Composer'),(261023,57049,3,'Producer'),(261023,57465,3,'Producer'),(261023,60087,7,'Production Design'),(261023,62740,3,'Associate Producer'),(261023,65167,2,'Director'),(261023,65167,3,'Producer'),(261023,74985,11,'Gaffer'),(261023,75375,8,'Makeup Department Head'),(261023,131037,1,'Director of Photography'),(261023,158401,3,'Producer'),(261023,933507,9,'Stunt Coordinator'),(261023,951484,3,'Executive Producer'),(261023,986415,3,'Executive Producer'),(261023,995327,3,'Co-Executive Producer'),(261023,1023713,8,'Costume Design'),(261023,1047108,7,'Assistant Art Director'),(261023,1095253,3,'Producer'),(261023,1128690,3,'Executive Producer'),(261023,1138800,3,'Co-Executive Producer'),(261023,1210259,8,'Key Hair Stylist'),(261023,1242111,7,'Art Direction'),(261023,1304301,4,'Screenplay'),(261023,1318814,8,'Costume Supervisor'),(261023,1334462,7,'Construction Coordinator'),(261023,1361169,3,'Executive Producer'),(261023,1364412,6,'Sound Effects Editor'),(261023,1368864,6,'Sound Re-Recording Mixer'),(261023,1378724,6,'Music Editor'),(261023,1388870,10,'Visual Effects Producer'),(261023,1392083,6,'Sound Designer'),(261023,1393445,10,'Visual Effects Supervisor'),(261023,1393446,10,'Visual Effects Producer'),(261023,1400534,1,'Still Photographer'),(261023,1403415,1,'Helicopter Camera'),(261023,1403504,9,'Visual Effects Editor'),(261023,1406084,9,'Property Master'),(261023,1408357,1,'Steadicam Operator'),(261023,1409817,8,'Hair Department Head'),(261023,1414048,3,'Executive Producer'),(261023,1419102,10,'Visual Effects Supervisor'),(261023,1419103,9,'CG Supervisor'),(261023,1428835,11,'Rigging Gaffer'),(261023,1434559,9,'Armorer'),(261023,1438026,3,'Executive Producer'),(261023,1442425,8,'Makeup Artist'),(261023,1450000,2,'Script Supervisor'),(261023,1451219,3,'Executive Producer'),(261023,1458726,3,'Executive Producer'),(261023,1458727,3,'Executive Producer'),(261023,1458728,3,'Executive Producer'),(261023,1465624,8,'Wigmaker'),(261023,1532072,7,'Art Department Coordinator'),(261023,1532257,5,'First Assistant Editor'),(261023,1533066,8,'Hairstylist'),(261023,1534987,6,'Sound mixer'),(261023,1536971,1,'First Assistant Camera'),(261023,1546846,4,'Book'),(261023,1546847,4,'Book'),(261023,1546856,6,'Supervising Sound Editor'),(261023,1559873,3,'Casting Associate'),(261023,1565737,8,'Assistant Costume Designer'),(261023,1585753,10,'Visual Effects Supervisor'),(261023,1586105,3,'Casting Associate'),(261023,1586111,1,'First Assistant Camera'),(261023,1593999,8,'Makeup Artist'),(261023,1594000,7,'Art Department Assistant'),(261023,1594001,8,'Set Costumer'),(261023,1745922,3,'Co-Executive Producer'),(285923,2294,2,'Director'),(285923,2294,4,'Writer'),(285923,2294,6,'Music'),(285923,2294,1,'Director of Photography'),(285923,2294,3,'Producer'),(285923,2294,5,'Editor'),(285923,138,2,'Director'),(285923,138,4,'Writer'),(285923,138,1,'Director of Photography'),(285923,138,3,'Producer'),(285923,156,5,'Editor'),(285923,1307,3,'Executive Producer'),(285923,59839,3,'Executive Producer'),(285923,5911,3,'Producer'),(285923,5912,6,'Music'),(285923,5914,3,'Casting'),(285923,6489,6,'Music'),(285923,11090,2,'Director'),(285923,11090,4,'Writer'),(285923,15221,6,'Music'),(285923,16847,2,'Director'),(285923,16847,4,'Writer'),(285923,16847,3,'Producer'),(285923,33931,1,'Director of Photography'),(285923,19659,6,'Music'),(285923,16848,2,'Director'),(285923,16848,4,'Writer'),(285923,27735,3,'Producer'),(285923,3114,1,'Director of Photography'),(285923,21322,5,'Editor'),(285923,16849,3,'Producer'),(285923,57098,3,'Line Producer'),(285923,61847,5,'Editor'),(285923,63292,7,'Set Decoration'),(285923,72853,1,'Director of Photography'),(285923,82705,7,'Production Design'),(285923,97799,7,'Art Direction'),(285923,141673,4,'Writer'),(285923,141673,2,'Director'),(285923,211600,3,'Producer'),(285923,586521,4,'Writer'),(285923,586521,3,'Producer'),(285923,949208,3,'Executive Producer'),(285923,963669,3,'Executive Producer'),(285923,999284,6,'Music'),(285923,1003189,3,'Associate Producer'),(285923,1178366,7,'Set Decoration'),(285923,1206108,4,'Writer'),(285923,1401122,7,'Art Direction'),(285923,1421271,7,'Production Design'),(285923,1523215,4,'Writer'),(285923,1741165,3,'Associate Producer'),(285923,1813644,9,'Stunts'),(285923,1840415,3,'Producer'),(39437,557,8,'Costume Design'),(39437,2163,4,'Writer'),(39437,3562,6,'Music'),(39437,16294,2,'Director'),(39437,16300,9,'Cinematography'),(39437,16328,4,'Writer'),(39437,9966,5,'Editor'),(39437,13308,4,'Writer'),(39437,63980,5,'Editor'),(39437,992503,4,'Writer'),(97630,15841,5,'Editor'),(97630,1809,5,'Editor'),(97630,2073,3,'Casting'),(97630,2949,6,'Original Music Composer'),(97630,14392,2,'Director'),(97630,14392,3,'Producer'),(97630,12040,8,'Costume Design'),(97630,19658,3,'Executive Producer'),(97630,23772,7,'Supervising Art Director'),(97630,23831,8,'Costume Supervisor'),(97630,25365,3,'Casting'),(97630,51686,3,'Producer'),(97630,51686,4,'Writer'),(97630,62778,3,'Casting'),(97630,67113,1,'Director of Photography'),(97630,117218,7,'Set Decoration'),(97630,1027025,3,'Producer'),(97630,1296445,7,'Art Direction'),(97630,1327160,7,'Production Design'),(49520,434,3,'Casting'),(49520,436,3,'Casting'),(49520,4500,6,'Music'),(49520,6389,1,'Director of Photography'),(49520,11802,8,'Costume Design'),(49520,10394,5,'Editor'),(49520,11874,3,'Producer'),(49520,14376,5,'Editor'),(49520,16658,9,'Special Effects Coordinator'),(49520,17951,7,'Set Decoration'),(49520,19284,7,'Production Design'),(49520,33195,7,'Supervising Art Director'),(49520,42994,2,'Director'),(49520,42994,3,'Producer'),(49520,52114,4,'Screenplay'),(49520,52115,4,'Screenplay'),(49520,68016,6,'Orchestrator'),(49520,229810,8,'Key Hair Stylist'),(49520,1318886,8,'Costume Supervisor'),(49520,1319750,7,'Art Direction'),(49520,1330584,8,'Set Costumer'),(49520,1341851,7,'Construction Coordinator'),(49520,1342014,10,'Visual Effects Producer'),(49520,1345611,3,'Casting Associate'),(49520,1405209,10,'Visual Effects Supervisor'),(49520,1409824,8,'Wigmaker'),(49520,1415333,8,'Makeup Department Head'),(49520,1445850,8,'Set Costumer'),(49520,1458202,2,'Script Supervisor'),(49520,1459198,7,'Art Department Coordinator'),(49520,1465623,8,'Hair Department Head'),(49520,1502255,8,'Set Costumer'),(49520,1527912,3,'Casting Associate'),(49520,1533082,10,'Visual Effects Coordinator'),(49520,1533083,3,'Casting Associate'),(49520,1533084,8,'Assistant Costume Designer'),(49520,1533085,8,'Assistant Costume Designer'),(49520,1533086,8,'Set Costumer'),(49520,1533087,8,'Seamstress'),(49520,1533089,8,'Makeup Artist'),(49520,1533090,8,'Makeup Artist'),(38050,153,6,'Original Music Composer'),(38050,330,5,'Editor'),(38050,584,4,'Writer'),(38050,1921,2,'Director'),(38050,1921,4,'Screenplay'),(38050,1921,3,'Producer'),(38050,2483,1,'Director of Photography'),(38050,2532,3,'Casting'),(38050,6624,3,'Executive Producer'),(38050,6627,3,'Producer'),(38050,7538,6,'Music Editor'),(38050,15432,6,'Supervising Sound Editor'),(38050,15432,6,'Sound Re-Recording Mixer'),(38050,15435,10,'Visual Effects Supervisor'),(38050,15528,9,'Special Effects Coordinator'),(38050,19758,1,'Camera Operator'),(38050,17221,7,'Set Decoration'),(38050,23420,3,'Producer'),(38050,19755,7,'Production Design'),(38050,40142,6,'Sound Re-Recording Mixer'),(38050,58321,3,'Producer'),(38050,92388,6,'Foley'),(38050,946092,3,'Producer'),(38050,1004171,3,'Producer'),(38050,1015645,7,'Assistant Art Director'),(38050,1023713,8,'Costume Design'),(38050,1074163,9,'Stunt Coordinator'),(38050,1085049,7,'Art Direction'),(38050,1124485,3,'Producer'),(38050,1124487,3,'Executive Producer'),(38050,1194472,11,'Gaffer'),(38050,1223936,10,'Visual Effects Supervisor'),(38050,1328146,8,'Makeup Department Head'),(38050,1328380,8,'Costume Supervisor'),(38050,1336715,10,'Visual Effects Producer'),(38050,1336716,10,'Visual Effects Supervisor'),(38050,1337463,6,'Supervising Sound Editor'),(38050,1337463,6,'Sound Re-Recording Mixer'),(38050,1337469,6,'Music Editor'),(38050,1364100,10,'Visual Effects Supervisor'),(38050,1378672,7,'Construction Coordinator'),(38050,1391591,1,'Camera Operator'),(38050,1393571,1,'Camera Operator'),(38050,1393571,1,'Steadicam Operator'),(38050,1394986,9,'Dialect Coach'),(38050,1395329,7,'Art Department Coordinator'),(38050,1395330,7,'Assistant Art Director'),(38050,1395332,7,'Assistant Art Director'),(38050,1395358,9,'Scenic Artist'),(38050,1395359,9,'Scenic Artist'),(38050,1395360,9,'Property Master'),(38050,1395361,6,'Dolby Consultant'),(38050,1395362,10,'Visual Effects Producer'),(38050,1395363,10,'Visual Effects Producer'),(38050,1395364,10,'Visual Effects Producer'),(38050,1395365,10,'Visual Effects Producer'),(38050,1395366,10,'Visual Effects Supervisor'),(38050,1395367,11,'Gaffer'),(38050,1395368,11,'Gaffer'),(38050,1395369,1,'Still Photographer'),(38050,1395370,9,'Transportation Coordinator'),(38050,1395373,2,'Script Supervisor'),(38050,1395375,9,'Choreographer'),(38050,1457935,9,'Compositors'),(72105,7494,3,'Casting'),(72105,11876,5,'Editor'),(72105,41084,8,'Costume Design'),(72105,42632,1,'Director of Photography'),(72105,52139,4,'Screenplay'),(72105,52139,2,'Director'),(72105,52139,3,'Producer'),(72105,52139,4,'Story'),(72105,53811,7,'Production Design'),(72105,114410,3,'Executive Producer'),(72105,173207,9,'Stunts'),(72105,196269,9,'Stunts'),(72105,237920,9,'Stunts'),(72105,570785,4,'Screenplay'),(72105,570788,3,'Producer'),(72105,570789,3,'Producer'),(72105,1012973,9,'Stunts'),(72105,1071607,6,'Original Music Composer'),(72105,1122560,9,'Stunts'),(72105,1204330,7,'Art Direction'),(72105,1204331,7,'Set Decoration'),(72105,1204332,11,'Gaffer'),(72105,1224494,4,'Screenplay'),(72105,1228835,9,'Stunts'),(72105,1282566,10,'Animation'),(72105,1288830,9,'Stunts'),(72105,1345596,5,'Dialogue Editor'),(72105,1399319,1,'Still Photographer'),(72105,1400534,1,'Still Photographer'),(72105,1404717,5,'Dialogue Editor'),(72105,1406839,9,'Stunt Coordinator'),(72105,1425343,5,'Dialogue Editor'),(72105,1440496,6,'Music Editor'),(72105,1445895,1,'Steadicam Operator'),(72105,1447945,9,'Stunts'),(72105,1450992,10,'Animation'),(72105,1452989,10,'Animation'),(72105,1452991,10,'Animation'),(72105,1452992,10,'Animation'),(72105,1453003,10,'Animation'),(72105,1453014,10,'Animation'),(72105,1453929,10,'Animation'),(72105,1453933,10,'Animation'),(72105,1455496,9,'Stunts'),(72105,1455497,9,'Stunts'),(72105,1455498,9,'Stunts'),(72105,1455499,9,'Stunts'),(72105,1455500,9,'Stunts'),(72105,1455503,9,'Stunts'),(72105,1455504,9,'Stunts'),(72105,1455505,9,'Stunts'),(72105,1455506,9,'Stunts'),(72105,1455508,9,'Stunts'),(72105,1455512,10,'Animation'),(72105,1455513,10,'Animation'),(72105,1455514,10,'Animation'),(72105,1455515,10,'Animation'),(72105,1455518,10,'Animation'),(72105,1455521,10,'Animation'),(72105,1455522,10,'Animation'),(72105,1455523,10,'Animation'),(72105,1455524,10,'Animation'),(72105,1455525,10,'Animation'),(72105,1455526,10,'Animation'),(72105,1455528,10,'Animation'),(72105,1455529,10,'Animation'),(72105,1455530,10,'Animation'),(72105,1455531,10,'Animation'),(72105,1455532,10,'Animation'),(72105,1455533,10,'Animation'),(72105,1455534,10,'Animation'),(72105,1455535,10,'Animation'),(72105,1455536,10,'Animation'),(72105,1455537,10,'Animation'),(72105,1455539,10,'Animation'),(72105,1455540,10,'Animation'),(72105,1455541,10,'Animation'),(72105,1455542,10,'Animation'),(72105,1534987,6,'Sound mixer'),(72105,1555208,6,'Music Editor'),(72105,1555209,6,'Music Supervisor'),(72105,1555210,6,'Orchestrator'),(72105,1713277,10,'Animation'),(109443,15017,8,'Makeup Artist'),(109443,23659,4,'Screenplay'),(109443,41039,3,'Producer'),(109443,55710,2,'Director'),(109443,55710,4,'Screenplay'),(109443,65245,6,'Original Music Composer'),(109443,65246,6,'Original Music Composer'),(109443,68016,6,'Orchestrator'),(37686,488,3,'Producer'),(37686,6052,3,'Casting'),(37686,14352,8,'Costume Design'),(37686,15344,2,'Director'),(37686,15344,3,'Producer'),(37686,15344,4,'Writer'),(37686,15347,6,'Original Music Composer'),(37686,15349,5,'Editor'),(37686,15350,5,'Editor'),(37686,17284,1,'Director of Photography'),(37686,23787,8,'Makeup Department Head'),(37686,28977,3,'Producer'),(37686,51987,7,'Production Design'),(37686,73348,7,'Set Decoration'),(37686,765144,3,'Casting'),(37686,1195362,7,'Art Direction'),(37686,1274289,3,'Casting'),(37686,1321000,8,'Costume Supervisor'),(187017,546,3,'Casting'),(187017,5666,6,'Original Music Composer'),(187017,11874,3,'Producer'),(187017,21007,3,'Producer'),(187017,21007,4,'Story'),(187017,21592,8,'Costume Design'),(187017,22303,5,'Editor'),(187017,39038,7,'Production Design'),(187017,38673,3,'Producer'),(187017,39124,7,'Set Decoration'),(187017,52681,3,'Executive Producer'),(187017,54164,1,'Director of Photography'),(187017,58744,4,'Screenplay'),(187017,58744,4,'Story'),(187017,59918,4,'Screenplay'),(187017,107446,2,'Director'),(187017,107446,3,'Executive Producer'),(187017,110019,3,'Executive Producer'),(187017,155267,2,'Director'),(187017,155267,3,'Executive Producer'),(187017,187214,3,'Executive Producer'),(187017,187214,3,'Unit Production Manager'),(187017,935278,3,'Casting'),(187017,970033,5,'Editor'),(187017,1074867,3,'Executive Producer'),(187017,1090787,4,'Screenplay'),(187017,1316599,8,'Makeup Department Head'),(187017,1324794,8,'Costume Supervisor'),(187017,1451245,9,'Second Unit Cinematographer'),(187017,1530088,6,'Music Supervisor'),(187017,1530137,5,'Assistant Editor'),(187017,1530138,5,'First Assistant Editor'),(187017,1530150,8,'Key Hair Stylist'),(187017,1618901,9,'Set Medic'),(302699,434,3,'Casting'),(302699,436,3,'Casting'),(302699,10572,6,'Music'),(302699,6191,7,'Set Decoration'),(302699,8181,3,'Producer'),(302699,10397,8,'Costume Design'),(302699,19282,3,'Producer'),(302699,10830,3,'Executive Producer'),(302699,27105,3,'Executive Producer'),(302699,37933,4,'Writer'),(302699,53811,7,'Production Design'),(302699,54164,9,'Cinematography'),(302699,57430,3,'Executive Producer'),(302699,57633,4,'Screenplay'),(302699,57633,2,'Director'),(302699,59421,3,'Producer'),(302699,63223,3,'Producer'),(302699,63263,3,'Co-Producer'),(302699,111456,5,'Editor'),(302699,198150,4,'Screenplay'),(302699,198150,4,'Story'),(302699,928158,6,'Music'),(302699,1002554,8,'Makeup Artist'),(302699,1309209,8,'Makeup Department Head'),(302699,1367491,9,'Property Master'),(302699,1371064,6,'Foley'),(302699,1397011,3,'Executive Producer'),(302699,1406084,9,'Property Master'),(302699,1419090,8,'Key Hair Stylist'),(302699,1419095,7,'Construction Coordinator'),(302699,1419099,7,'Leadman'),(302699,1451219,3,'Executive Producer'),(302699,1454295,4,'Screenplay'),(302699,1454295,4,'Story'),(302699,1457949,7,'Art Direction'),(302699,1464957,8,'Makeup Artist'),(302699,1466097,3,'Co-Producer'),(302699,1527656,3,'Executive Producer'),(302699,1532070,7,'Painter'),(302699,1536976,5,'Editor'),(302699,1537105,8,'Makeup Artist'),(302699,1543203,7,'Art Direction'),(302699,1546957,3,'Co-Producer'),(302699,1552205,6,'First Assistant Sound Editor'),(302699,1608760,7,'Art Department Coordinator'),(302699,1630616,8,'Hairstylist'),(302699,1662730,8,'Hair Department Head'),(302699,1681357,9,'Picture Car Coordinator'),(302699,1729079,8,'Hairstylist'),(302699,1729080,8,'Hairstylist'),(302699,1729081,3,'Production Supervisor'),(302699,1729084,9,'Carpenter'),(302699,1729085,9,'Carpenter'),(302699,1729086,9,'Carpenter'),(302699,1729087,7,'Greensman'),(302699,1729089,7,'Art Department Coordinator'),(302699,1729090,9,'Propmaker'),(302699,1729090,9,'Prop Maker'),(302699,1729091,9,'Prop Maker'),(302699,1729092,7,'Greensman'),(302699,1729093,9,'Carpenter'),(302699,1729094,7,'Set Designer'),(302699,1729095,7,'Set Designer'),(302699,1729096,7,'Art Department Coordinator'),(274167,1589,6,'Original Music Composer'),(274167,10397,8,'Costume Design'),(274167,10426,3,'Executive Producer'),(274167,11506,1,'Director of Photography'),(274167,13626,7,'Set Decoration'),(274167,23659,3,'Producer'),(274167,37012,5,'Editor'),(274167,54585,7,'Production Design'),(274167,55710,4,'Screenplay'),(274167,55710,3,'Producer'),(274167,56461,3,'Executive Producer'),(274167,74619,2,'Director'),(274167,74619,3,'Executive Producer'),(274167,80175,3,'Executive Producer'),(274167,99410,4,'Screenplay'),(274167,99410,3,'Producer'),(274167,179974,3,'Executive Producer'),(274167,202648,4,'Screenplay'),(274167,202648,4,'Story'),(274167,212576,3,'Producer'),(274167,224530,5,'Editor'),(274167,1011958,7,'Supervising Art Director'),(274167,1027545,3,'Executive Producer'),(274167,1027550,3,'Executive Producer'),(224141,8384,7,'Set Decoration'),(224141,557,8,'Costume Design'),(224141,647,1,'Director of Photography'),(224141,6410,3,'Casting'),(224141,4248,7,'Production Design'),(224141,4183,9,'Thanks'),(224141,8412,8,'Makeup Artist'),(224141,8412,8,'Hairstylist'),(224141,9160,6,'Music Editor'),(224141,9160,6,'Music Supervisor'),(224141,10122,9,'Thanks'),(224141,17633,2,'Director'),(224141,17633,3,'Producer'),(224141,10876,3,'Producer'),(224141,10876,3,'Unit Production Manager'),(224141,23425,7,'Supervising Art Director'),(224141,23485,3,'Producer'),(224141,32491,8,'Makeup Artist'),(224141,32491,8,'Hairstylist'),(224141,52164,8,'Hair Designer'),(224141,52164,8,'Makeup Designer'),(224141,58855,3,'Casting'),(224141,60790,6,'Orchestrator'),(224141,92389,6,'Sound Effects Editor'),(224141,75375,8,'Makeup Artist'),(224141,52154,6,'Songs'),(224141,52154,6,'Music'),(224141,52154,4,'Musical'),(224141,90037,4,'Screenplay'),(224141,90037,4,'Musical'),(224141,117842,6,'Supervising Sound Editor'),(224141,121729,7,'Art Direction'),(224141,158916,6,'Sound Re-Recording Mixer'),(224141,928389,5,'Dialogue Editor'),(224141,1020057,3,'Casting'),(224141,1026197,6,'Music Supervisor'),(224141,1079083,3,'Production Coordinator'),(224141,1255687,3,'Producer'),(224141,1296445,7,'Art Direction'),(224141,1324462,8,'Costume Supervisor'),(224141,1335539,7,'Art Direction'),(224141,1338113,1,'Camera Operator'),(224141,1340767,5,'Dialogue Editor'),(224141,1368849,5,'Editor'),(224141,1373729,2,'Script Supervisor'),(224141,1383288,5,'Dialogue Editor'),(224141,1390340,9,'Special Effects Coordinator'),(224141,1393883,1,'Still Photographer'),(224141,1395024,6,'Sound Re-Recording Mixer'),(224141,1399065,10,'Visual Effects Supervisor'),(224141,1402037,6,'Music Editor'),(224141,1402096,1,'Camera Operator'),(224141,1402096,1,'Steadicam Operator'),(224141,1402921,8,'Makeup Artist'),(224141,1402921,8,'Hairstylist'),(224141,1406595,9,'Post Production Supervisor'),(224141,1411061,9,'Stunt Coordinator'),(224141,1411077,3,'Unit Production Manager'),(224141,1411077,3,'Co-Producer'),(224141,1411320,8,'Makeup Artist'),(224141,1411320,8,'Hairstylist'),(224141,1420154,6,'Supervising Sound Editor'),(224141,1422812,9,'Property Master'),(224141,1456410,11,'Gaffer'),(224141,1457306,8,'Makeup Artist'),(224141,1457306,8,'Hairstylist'),(224141,1538231,6,'Sound Effects Editor'),(224141,1583827,10,'Visual Effects Supervisor'),(224141,1685973,3,'Co-Producer'),(224141,1685990,3,'Production Supervisor'),(224141,1685991,6,'Production Sound Mixer'),(224141,1685993,10,'Special Effects Supervisor'),(224141,1685994,4,'Storyboard'),(224141,1685995,8,'Assistant Costume Designer'),(224141,1685996,6,'Boom Operator'),(224141,1686002,9,'Unit Publicist'),(74465,10567,4,'Screenplay'),(74465,11649,2,'Director'),(74465,11649,4,'Screenplay'),(50646,1899,3,'Producer'),(50646,4495,3,'Producer'),(50646,6044,3,'Casting'),(50646,9654,9,'Stunt Coordinator'),(50646,8846,1,'Director of Photography'),(50646,10394,5,'Editor'),(50646,15892,4,'Screenplay'),(50646,16177,6,'Sound Re-Recording Mixer'),(50646,14753,3,'Executive Producer'),(50646,14753,3,'Unit Production Manager'),(50646,21747,7,'Production Design'),(50646,33455,7,'Art Direction'),(50646,27266,7,'Set Decoration'),(50646,23486,6,'Original Music Composer'),(50646,54704,3,'Executive Producer'),(50646,56411,2,'Director'),(50646,56412,2,'Director'),(50646,66513,3,'Associate Producer'),(50646,83085,6,'Sound Effects Editor'),(50646,567205,6,'Orchestrator'),(50646,965666,8,'Costume Design'),(50646,1031656,6,'Original Music Composer'),(50646,1077483,3,'Production Supervisor'),(50646,1192700,6,'Music Supervisor'),(50646,1215080,3,'Executive Producer'),(50646,1293529,1,'Still Photographer'),(50646,1342669,2,'Script Supervisor'),(50646,1377220,6,'Sound Re-Recording Mixer'),(50646,1395463,1,'Camera Operator'),(50646,1404716,6,'Supervising Sound Editor'),(50646,1404717,6,'Supervising Sound Editor'),(50646,1413092,5,'Dialogue Editor'),(50646,1425343,5,'Dialogue Editor'),(50646,1425395,6,'Music Editor'),(50646,1425395,6,'Music Supervisor'),(50646,1452643,8,'Key Hair Stylist'),(50646,1550268,6,'Sound mixer'),(50646,1555641,3,'Co-Producer'),(50646,1555643,1,'First Assistant Camera'),(50646,1555644,7,'Art Department Coordinator'),(50646,1555645,8,'Assistant Costume Designer'),(60308,287,3,'Producer'),(60308,555,7,'Set Decoration'),(60308,559,1,'Director of Photography'),(60308,6410,3,'Casting'),(60308,2260,4,'Screenplay'),(60308,2997,3,'Executive Producer'),(60308,4767,3,'Producer'),(60308,10575,7,'Production Design'),(60308,5345,2,'Director'),(60308,5359,6,'Original Music Composer'),(60308,5361,5,'Editor'),(60308,8705,7,'Art Direction'),(60308,8760,6,'Music Editor'),(60308,9493,8,'Costume Supervisor'),(60308,13102,9,'Special Effects'),(60308,13520,4,'Screenplay'),(60308,31270,3,'Producer'),(60308,35180,3,'Executive Producer'),(60308,113046,6,'Sound Re-Recording Mixer'),(60308,66692,8,'Hair Department Head'),(60308,64841,3,'Executive Producer'),(60308,92371,6,'Supervising Sound Editor'),(60308,92371,6,'Sound Re-Recording Mixer'),(60308,74567,3,'Unit Production Manager'),(60308,91854,8,'Makeup Department Head'),(60308,136186,4,'Novel'),(60308,554533,6,'Boom Operator'),(60308,587813,3,'Co-Producer'),(60308,1023713,8,'Costume Design'),(60308,1195362,7,'Art Direction'),(60308,1324649,3,'Executive Producer'),(60308,1324651,4,'Story'),(60308,1324652,1,'Still Photographer'),(60308,1357066,1,'Camera Operator'),(60308,1378752,7,'Art Department Coordinator'),(60308,1387252,9,'Stunt Coordinator'),(60308,1395290,2,'Script Supervisor'),(60308,1395446,6,'Sound Re-Recording Mixer'),(60308,1401604,8,'Wigmaker'),(60308,1408311,5,'Dialogue Editor'),(60308,1409283,9,'Unit Publicist'),(60308,1411856,6,'Music Editor'),(60308,1415965,5,'Dialogue Editor'),(60308,1435660,5,'First Assistant Editor'),(60308,1494761,2,'Assistant Director'),(60308,1535087,9,'Special Effects'),(60308,1545387,3,'Production Supervisor'),(60308,1550832,6,'Sound mixer'),(60308,1599285,3,'Executive In Charge Of Production'),(225574,1091,3,'Producer'),(225574,2031,3,'Casting'),(225574,2532,3,'Casting'),(225574,5546,5,'Editor'),(225574,9648,7,'Production Design'),(225574,9039,6,'Original Music Composer'),(225574,32904,7,'Art Direction'),(225574,50462,8,'Costume Design'),(225574,59521,2,'Director'),(225574,59528,1,'Director of Photography'),(225574,62011,3,'Producer'),(225574,587802,3,'Producer'),(225574,957661,7,'Set Decoration'),(225574,1119658,10,'VFX Artist'),(225574,1178792,6,'Other'),(225574,1211005,4,'Screenplay'),(225574,1211005,4,'Story'),(225574,1211006,4,'Screenplay'),(225574,1211006,4,'Story'),(225574,1325800,4,'Screenplay'),(225574,1336188,8,'Makeup Department Head'),(225574,1336189,9,'Property Master'),(225574,1336190,7,'Art Department Coordinator'),(225574,1336191,7,'Set Designer'),(225574,1336192,8,'Costume Supervisor'),(225574,1336193,8,'Set Costumer'),(225574,1336194,8,'Set Costumer'),(225574,1336195,9,'Transportation Captain'),(225574,1336196,9,'Transportation Co-Captain'),(225574,1336197,6,'Music Editor'),(225574,1393387,10,'Special Effects Supervisor'),(225574,1393455,2,'Script Supervisor'),(225574,1533101,6,'Music Supervisor'),(60304,3965,3,'Casting'),(60304,3989,8,'Costume Design'),(60304,10754,7,'Production Design'),(60304,40751,7,'Art Direction'),(60304,23659,3,'Producer'),(60304,21846,7,'Set Decoration'),(60304,24164,7,'Supervising Art Director'),(60304,36924,7,'Art Direction'),(60304,42633,5,'Editor'),(60304,36224,1,'Director of Photography'),(60304,54777,3,'Casting'),(60304,55710,3,'Producer'),(60304,72268,6,'Original Music Composer'),(60304,76927,2,'Director'),(60304,76927,3,'Producer'),(60304,76927,4,'Screenplay'),(60304,231825,3,'Producer'),(60304,231826,4,'Screenplay'),(60304,1034748,3,'Casting'),(60304,1404549,2,'Script Supervisor'),(60304,1406774,7,'Art Department Coordinator'),(60304,1412756,9,'Visual Effects Editor'),(60304,1456696,9,'Compositors'),(60304,1723719,9,'Stunts'),(46529,3718,3,'Executive Producer'),(46529,298,3,'Executive Producer'),(46529,865,3,'Producer'),(46529,894,6,'Original Music Composer'),(46529,3113,1,'Director of Photography'),(46529,3965,3,'Casting'),(46529,18923,4,'Screenplay'),(46529,18924,4,'Screenplay'),(46529,20223,3,'Executive Producer'),(46529,40256,2,'Director'),(46529,42633,5,'Editor'),(46529,11095,3,'Producer'),(46529,60284,8,'Costume Design'),(46529,60283,7,'Production Design'),(46529,62722,3,'Executive Producer'),(46529,149495,4,'Screenplay'),(46529,237188,4,'Novel'),(46529,237189,4,'Novel'),(46529,960407,5,'Editor'),(46529,1034748,3,'Casting'),(46529,1076510,10,'Visual Effects'),(46529,1123330,3,'Producer'),(300671,2215,3,'Casting'),(300671,647,1,'Director of Photography'),(300671,865,2,'Director'),(300671,865,3,'Producer'),(300671,950,5,'Editor'),(300671,5673,7,'Art Direction'),(300671,10950,3,'Producer'),(300671,7848,7,'Production Design'),(300671,8527,8,'Costume Design'),(300671,10119,3,'Executive Producer'),(300671,40802,8,'Hair Designer'),(300671,40802,8,'Makeup Designer'),(300671,42034,6,'Sound Re-Recording Mixer'),(300671,21801,6,'Music Editor'),(300671,62722,3,'Executive Producer'),(300671,62723,5,'Digital Intermediate'),(300671,64855,5,'First Assistant Editor'),(300671,73916,6,'ADR & Dubbing'),(300671,557443,3,'Line Producer'),(300671,929145,6,'Original Music Composer'),(300671,1008115,7,'Supervising Art Director'),(300671,1177364,1,'Steadicam Operator'),(300671,1187163,11,'Gaffer'),(300671,1263443,6,'Sound Designer'),(300671,1324462,8,'Costume Supervisor'),(300671,1335543,7,'Greensman'),(300671,1338113,1,'Camera Operator'),(300671,1338372,6,'Foley'),(300671,1338387,3,'Casting'),(300671,1338482,6,'Sound Effects Editor'),(300671,1341138,6,'Sound Re-Recording Mixer'),(300671,1345596,5,'Dialogue Editor'),(300671,1357061,6,'Sound Designer'),(300671,1367493,6,'Foley'),(300671,1377215,9,'Property Master'),(300671,1378236,10,'Visual Effects Supervisor'),(300671,1378695,6,'Supervising Sound Editor'),(300671,1378696,6,'Supervising Sound Editor'),(300671,1401893,9,'Visual Effects Editor'),(300671,1402096,1,'Camera Operator'),(300671,1403488,5,'Digital Intermediate'),(300671,1408371,7,'Art Direction'),(300671,1415959,8,'Assistant Costume Designer'),(300671,1425978,6,'Sound Re-Recording Mixer'),(300671,1434559,9,'Armorer'),(300671,1447209,3,'Co-Producer'),(300671,1465193,4,'Screenplay'),(300671,1465194,4,'Book'),(300671,1481552,3,'Casting Associate'),(300671,1481560,3,'Casting Associate'),(300671,1485682,9,'Sound Recordist'),(300671,1508409,5,'Editor'),(300671,1519298,11,'Gaffer'),(300671,1530705,6,'Sound Effects Editor'),(300671,1530722,1,'First Assistant Camera'),(300671,1530868,8,'Makeup Artist'),(300671,1537509,1,'First Assistant Camera'),(300671,1543893,1,'First Assistant Camera'),(300671,1546875,6,'Foley'),(300671,1556505,10,'Special Effects Supervisor'),(300671,1570217,10,'Special Effects Supervisor'),(300671,1571979,1,'First Assistant Camera'),(300671,1578403,7,'Art Department Coordinator'),(300671,1579398,9,'Armorer'),(300671,1579400,8,'Assistant Costume Designer'),(300671,1579401,8,'Set Costumer'),(300671,1579402,8,'Set Costumer'),(300671,1579403,1,'Camera Operator'),(300671,1579404,1,'Still Photographer'),(300671,1579406,7,'Art Department Coordinator'),(300671,1579408,9,'Property Master'),(300671,1579409,7,'Set Decoration'),(300671,1579410,7,'Construction Coordinator'),(300671,1579411,9,'Special Effects Coordinator'),(300671,1579412,10,'Visual Effects Producer'),(300671,1579413,10,'Visual Effects Supervisor'),(300671,1579414,9,'Sound Recordist'),(300671,1579415,8,'Makeup Artist'),(300671,1626072,3,'Executive Producer'),(300671,1636641,11,'Best Boy Electrician'),(228326,278,6,'Original Music Composer'),(228326,10828,3,'Producer'),(228326,45848,3,'Casting'),(228326,43092,4,'Writer'),(228326,1265056,2,'Director'),(228326,1265056,4,'Writer'),(228326,1453929,10,'Animation'),(228326,1453944,11,'Lighting Artist'),(228326,1455728,9,'Score Engineer'),(228326,1459734,10,'Animation'),(228326,1459736,10,'Animation'),(228326,1460472,10,'Animation'),(228326,1776008,10,'Character Designer'),(228326,1835270,3,'Producer'),(228326,1835276,5,'Editor'),(228326,1835286,7,'Production Design'),(71552,21747,7,'Production Design'),(71552,27266,7,'Set Decoration'),(71552,20382,5,'Editor'),(71552,21584,4,'Screenplay'),(71552,53012,6,'Original Music Composer'),(71552,56324,1,'Director of Photography'),(71552,60946,3,'Casting'),(71552,68843,2,'Director'),(71552,68844,2,'Director'),(71552,1011958,7,'Art Direction'),(71552,1336716,10,'Visual Effects Supervisor'),(216282,1296,3,'Executive Producer'),(216282,6041,6,'Original Music Composer'),(216282,6044,3,'Casting'),(216282,9440,6,'Foley'),(216282,11814,3,'Producer'),(216282,14764,6,'Sound Designer'),(216282,18921,9,'Visual Effects Editor'),(216282,21140,5,'Editor'),(216282,47102,1,'Director of Photography'),(216282,46083,7,'Production Design'),(216282,47365,3,'Executive Producer'),(216282,52456,3,'Casting Associate'),(216282,57430,3,'Executive Producer'),(216282,62724,7,'Art Direction'),(216282,63673,7,'Set Decoration'),(216282,93214,2,'Director'),(216282,587803,8,'Costume Design'),(216282,969283,3,'Executive Producer'),(216282,1031810,6,'Sound Effects Editor'),(216282,1076157,10,'Visual Effects Producer'),(216282,1178584,4,'Writer'),(216282,1182349,3,'Executive Producer'),(216282,1242779,3,'Executive Producer'),(216282,1242779,3,'Unit Production Manager'),(216282,1310823,7,'Set Designer'),(216282,1339439,7,'Art Department Coordinator'),(216282,1342657,6,'Sound Designer'),(216282,1345268,6,'Music Editor'),(216282,1350252,10,'Visual Effects Producer'),(216282,1378228,6,'Sound Re-Recording Mixer'),(216282,1386904,7,'Set Designer'),(216282,1392629,10,'Visual Effects Supervisor'),(216282,1394278,10,'Visual Effects Supervisor'),(216282,1395014,9,'Property Master'),(216282,1395023,6,'Sound Effects Editor'),(216282,1396802,9,'Visual Effects Editor'),(216282,1398118,7,'Construction Coordinator'),(216282,1399856,7,'Art Direction'),(216282,1399857,8,'Makeup Department Head'),(216282,1399858,3,'Production Supervisor'),(216282,1399859,7,'Leadman'),(216282,1399860,7,'Sculptor'),(216282,1399861,6,'Sound Re-Recording Mixer'),(216282,1399862,5,'Dialogue Editor'),(216282,1399863,9,'Special Effects Coordinator'),(216282,1399864,10,'Visual Effects Supervisor'),(216282,1399865,10,'Visual Effects Supervisor'),(216282,1399866,9,'Visual Effects Editor'),(216282,1399867,9,'Visual Effects Editor'),(216282,1399868,10,'Visual Effects Producer'),(216282,1399869,10,'Visual Effects Producer'),(216282,1399870,10,'Visual Effects Producer'),(216282,1399871,10,'Visual Effects Producer'),(216282,1399872,10,'Visual Effects Producer'),(216282,1399873,9,'Visual Effects Art Director'),(216282,1399874,9,'Stunt Coordinator'),(216282,1399875,1,'Camera Operator'),(216282,1399875,1,'Steadicam Operator'),(216282,1399876,1,'Still Photographer'),(216282,1399877,1,'Camera Operator'),(216282,1399878,1,'Additional Camera'),(216282,1399882,8,'Set Costumer'),(216282,1399883,8,'Set Costumer'),(216282,1399884,8,'Set Costumer'),(216282,1399885,8,'Set Costumer'),(216282,1399886,8,'Set Costumer'),(216282,1399887,8,'Costume Supervisor'),(216282,1399888,5,'Digital Intermediate'),(216282,1399889,6,'Music Editor'),(216282,1399890,9,'Transportation Coordinator'),(216282,1399891,3,'Location Manager'),(216282,1399892,2,'Script Supervisor'),(216282,1399893,3,'Location Manager'),(216282,1399894,3,'Publicist'),(216282,1399899,1,'Helicopter Camera'),(216282,1403421,2,'Script Supervisor'),(216282,1407019,9,'Visual Effects Editor'),(216282,1437719,2,'Script Supervisor'),(216282,1455463,10,'Visual Development'),(216282,1793316,9,'Post Production Supervisor'),(216282,1793319,3,'Casting Assistant'),(205587,153,6,'Original Music Composer'),(205587,492,1,'Director of Photography'),(205587,1296,3,'Executive Producer'),(205587,3223,3,'Executive Producer'),(205587,3989,8,'Costume Design'),(205587,10574,5,'Editor'),(205587,5328,3,'Casting'),(205587,19689,3,'Casting'),(205587,21103,6,'Sound Designer'),(205587,21103,6,'Supervising Sound Editor'),(205587,21103,6,'Sound Re-Recording Mixer'),(205587,27151,3,'Executive Producer'),(205587,37162,3,'Producer'),(205587,42994,2,'Director'),(205587,42994,3,'Producer'),(205587,42994,4,'Story'),(205587,113097,6,'Sound Designer'),(205587,113097,6,'Sound Re-Recording Mixer'),(205587,60193,7,'Production Design'),(205587,62739,3,'Executive Producer'),(205587,74315,4,'Screenplay'),(205587,74315,4,'Story'),(205587,970192,7,'Set Decoration'),(205587,979152,3,'Producer'),(205587,1281388,4,'Screenplay'),(205587,1293834,3,'Associate Producer'),(205587,1331648,8,'Hair Department Head'),(205587,1341813,6,'Music Editor'),(205587,1392603,6,'Sound Editor'),(205587,1395024,6,'Sound Re-Recording Mixer'),(205587,1399061,5,'Dialogue Editor'),(205587,1400534,1,'Still Photographer'),(205587,1406894,3,'Production Supervisor'),(205587,1412702,6,'Sound Effects Editor'),(205587,1415333,8,'Makeup Department Head'),(205587,1418491,2,'Script Supervisor'),(205587,1457935,9,'Compositors'),(205587,1547309,6,'Production Sound Mixer'),(205587,1556315,9,'Special Effects Coordinator'),(38579,376,3,'Executive Producer'),(38579,2043,3,'Producer'),(38579,9645,1,'Director of Photography'),(38579,9250,3,'Executive Producer'),(38579,11812,3,'Executive Producer'),(38579,15005,5,'Editor'),(38579,45848,3,'Casting'),(38579,23415,8,'Costume Design'),(38579,24192,6,'Music Supervisor'),(38579,29011,4,'Writer'),(38579,29012,4,'Writer'),(38579,46076,2,'Director'),(38579,49911,6,'Original Music Composer'),(38579,53813,7,'Production Design'),(38579,1454410,10,'VFX Supervisor'),(38579,1455463,10,'Visual Effects'),(38579,1527657,6,'Music Supervisor'),(38579,1529604,7,'Set Decoration'),(38579,1529605,3,'Executive Producer'),(44603,190,2,'Director'),(44603,15730,4,'Screenplay'),(72710,3498,3,'Executive Producer'),(72710,6044,3,'Casting'),(72710,6468,3,'Producer'),(72710,8685,4,'Screenplay'),(72710,8685,2,'Director'),(72710,8576,6,'Music'),(72710,13000,1,'Director of Photography'),(72710,20567,3,'Executive Producer'),(72710,56856,3,'Producer'),(72710,56856,4,'Novel'),(72710,62238,3,'Executive Producer'),(72710,71556,3,'Executive Producer'),(72710,406204,8,'Makeup Department Head'),(72710,566958,3,'Producer'),(72710,566962,3,'Producer'),(72710,963843,7,'Art Direction'),(72710,1119658,10,'VFX Artist'),(72710,1193620,8,'Costume Design'),(72710,1304298,8,'Makeup Artist'),(316152,495,3,'Casting'),(316152,1890,7,'Production Design'),(316152,4061,8,'Costume Design'),(316152,4280,5,'Editor'),(316152,4446,3,'Producer'),(316152,11508,7,'Supervising Art Director'),(316152,17147,5,'Editor'),(316152,21655,1,'Director of Photography'),(316152,19282,3,'Producer'),(316152,21984,7,'Set Decoration'),(316152,23964,2,'Director'),(316152,23964,3,'Producer'),(316152,23964,4,'Writer'),(316152,41592,7,'Art Direction'),(316152,40141,6,'Supervising Sound Editor'),(316152,40141,6,'Sound Re-Recording Mixer'),(316152,92376,6,'Foley'),(316152,95142,8,'Makeup Department Head'),(316152,928329,8,'Assistant Costume Designer'),(316152,928952,6,'Foley'),(316152,959055,9,'Visual Effects Editor'),(316152,1015965,8,'Makeup Artist'),(316152,1084753,1,'Camera Operator'),(316152,1084753,9,'Second Unit Cinematographer'),(316152,1127474,1,'Additional Camera'),(316152,1319843,8,'Hairstylist'),(316152,1337656,3,'Casting'),(316152,1347755,6,'Music Editor'),(316152,1392245,1,'Still Photographer'),(316152,1395024,6,'Sound Re-Recording Mixer'),(316152,1402713,9,'Special Effects Coordinator'),(316152,1403389,8,'Hair Department Head'),(316152,1410114,8,'Set Costumer'),(316152,1412208,8,'Costume Supervisor'),(316152,1415475,10,'Visual Effects Producer'),(316152,1418052,8,'Key Hair Stylist'),(316152,1423844,1,'Additional Camera'),(316152,1428227,8,'Set Costumer'),(316152,1442116,7,'Art Department Coordinator'),(316152,1445479,5,'Dialogue Editor'),(316152,1458580,10,'Visual Effects Supervisor'),(316152,1463798,8,'Set Costumer'),(316152,1465624,8,'Wigmaker'),(316152,1484968,7,'Art Direction'),(316152,1490951,11,'Gaffer'),(316152,1533516,6,'Music'),(316152,1560966,1,'Steadicam Operator'),(316152,1580854,10,'Visual Effects Coordinator'),(316152,1609856,10,'Visual Effects Supervisor'),(316152,1630612,8,'Set Costumer'),(316152,1630904,9,'Visual Effects Editor'),(316152,1651765,6,'Foley'),(316152,1660711,3,'Casting Associate'),(316152,1722478,4,'Story'),(316152,1722483,3,'Casting Associate'),(316152,1722485,2,'Script Supervisor'),(316152,1722486,9,'Armorer'),(316152,1722487,6,'Music Supervisor'),(316152,1722488,8,'Assistant Costume Designer'),(316152,1722489,8,'Seamstress'),(316152,1722490,8,'Set Costumer'),(316152,1722491,11,'Rigging Gaffer'),(316152,1722494,10,'Visual Effects Coordinator'),(316152,1722495,10,'Visual Effects Coordinator'),(316152,1722496,9,'Visual Effects Editor'),(316152,1722497,10,'Visual Effects Producer'),(316152,1722499,6,'ADR & Dubbing'),(316152,1722504,9,'Sound Recordist'),(316152,1722505,8,'Key Hair Stylist'),(316152,1722511,5,'Digital Intermediate'),(316152,1722512,5,'First Assistant Editor'),(241554,37,6,'Original Music Composer'),(241554,2031,3,'Casting'),(241554,2532,3,'Casting'),(241554,4869,5,'Editor'),(241554,4909,7,'Set Decoration'),(241554,25140,7,'Production Design'),(241554,17630,3,'Producer'),(241554,21036,3,'Producer'),(241554,32490,8,'Hairstylist'),(241554,32451,1,'Director of Photography'),(241554,50462,8,'Costume Design'),(241554,59521,2,'Director'),(241554,92376,6,'Foley'),(241554,92389,6,'Sound Effects Editor'),(241554,142157,9,'Stunt Coordinator'),(241554,930016,6,'Sound Designer'),(241554,930016,6,'Supervising Sound Editor'),(241554,932432,4,'Writer'),(241554,962489,3,'Producer'),(241554,995189,1,'Camera Operator'),(241554,1015645,7,'Art Direction'),(241554,1193621,9,'Property Master'),(241554,1276559,3,'Executive Producer'),(241554,1321372,8,'Makeup Department Head'),(241554,1332202,8,'Makeup Artist'),(241554,1336194,8,'Set Costumer'),(241554,1377223,10,'Visual Effects Supervisor'),(241554,1378672,7,'Construction Coordinator'),(241554,1380443,5,'Dialogue Editor'),(241554,1391583,1,'Still Photographer'),(241554,1393387,9,'Special Effects Coordinator'),(241554,1399471,1,'Camera Operator'),(241554,1399473,1,'Camera Operator'),(241554,1402026,6,'ADR & Dubbing'),(241554,1406780,1,'Helicopter Camera'),(241554,1407734,10,'Visual Effects Supervisor'),(241554,1407735,10,'Visual Effects Producer'),(241554,1409237,10,'Animation Supervisor'),(241554,1414922,6,'Sound Effects Editor'),(241554,1416820,11,'Gaffer'),(241554,1457935,9,'Compositors'),(241554,1459905,10,'Visual Effects Producer'),(241554,1464011,10,'Visual Effects Producer'),(241554,1496405,8,'Hairstylist'),(241554,1496408,5,'Dialogue Editor'),(241554,1496409,9,'Sound Recordist'),(241554,1496411,6,'Sound Designer'),(241554,1496412,6,'Sound Re-Recording Mixer'),(241554,1496417,10,'Visual Effects Producer'),(241554,1496418,10,'Visual Effects Producer'),(241554,1496420,10,'Visual Effects Producer'),(241554,1496422,9,'Visual Effects Editor'),(241554,1496424,10,'Visual Effects Supervisor'),(241554,1496425,9,'Visual Effects Editor'),(241554,1496426,10,'Visual Effects Supervisor'),(241554,1496427,10,'Visual Effects Supervisor'),(241554,1496428,1,'Steadicam Operator'),(241554,1496429,11,'Rigging Gaffer'),(241554,1496430,8,'Set Costumer'),(241554,1496431,5,'First Assistant Editor'),(38319,2073,3,'Casting'),(38319,8401,3,'Executive Producer'),(38319,19282,3,'Producer'),(38319,54709,4,'Writer'),(38319,54709,4,'Screenplay'),(38319,62862,4,'Writer'),(38319,62862,4,'Screenplay'),(38319,62862,3,'Executive Producer'),(38319,57864,3,'Executive Producer'),(38319,64141,2,'Director'),(38319,114410,3,'Executive Producer'),(69668,2952,3,'Casting'),(69668,899,5,'Editor'),(69668,4500,6,'Original Music Composer'),(69668,4700,3,'Producer'),(69668,15244,3,'Producer'),(69668,8315,7,'Production Design'),(69668,8750,1,'Director of Photography'),(69668,12945,6,'Music Editor'),(69668,12481,8,'Costume Design'),(69668,15229,9,'Stunt Coordinator'),(69668,10836,7,'Art Direction'),(69668,24192,6,'Music Supervisor'),(69668,37297,3,'Producer'),(69668,53334,2,'Director'),(69668,53685,5,'Editor'),(69668,62723,5,'Digital Intermediate'),(69668,63534,7,'Set Designer'),(69668,68016,6,'Orchestrator'),(69668,68039,4,'Screenplay'),(69668,114409,3,'Executive Producer'),(69668,224266,9,'Special Effects Coordinator'),(69668,572622,6,'Supervising Sound Editor'),(69668,957970,7,'Set Decoration'),(69668,973134,3,'Executive Producer'),(69668,1016148,2,'First Assistant Director'),(69668,1072607,6,'Music Editor'),(69668,1077782,6,'Foley'),(69668,1203317,3,'Producer'),(69668,1208908,1,'Still Photographer'),(69668,1221442,10,'Visual Effects Supervisor'),(69668,1315700,8,'Makeup Department Head'),(69668,1335884,10,'Visual Effects Producer'),(69668,1337452,9,'Property Master'),(69668,1347722,8,'Makeup Artist'),(69668,1364792,8,'Makeup Artist'),(69668,1374169,6,'Foley'),(69668,1378227,6,'Sound Re-Recording Mixer'),(69668,1393389,10,'Visual Effects Producer'),(69668,1393441,6,'Dolby Consultant'),(69668,1397736,6,'Music Editor'),(69668,1399927,1,'Camera Operator'),(69668,1404354,7,'Set Designer'),(69668,1404852,3,'Location Manager'),(69668,1405232,6,'ADR & Dubbing'),(69668,1406826,6,'Sound Effects Editor'),(69668,1407205,5,'Digital Intermediate'),(69668,1408679,1,'Camera Operator'),(69668,1412712,9,'Visual Effects Editor'),(69668,1412722,5,'Digital Intermediate'),(69668,1414558,5,'Digital Intermediate'),(69668,1416798,8,'Makeup Artist'),(69668,1419268,11,'Gaffer'),(69668,1425969,8,'Hairstylist'),(69668,1425970,8,'Hairstylist'),(69668,1425971,8,'Hairstylist'),(69668,1425972,8,'Hairstylist'),(69668,1425973,7,'Art Department Coordinator'),(69668,1425975,7,'Construction Coordinator'),(69668,1425978,6,'Sound Re-Recording Mixer'),(69668,1425980,9,'Digital Effects Supervisor'),(69668,1425982,10,'Visual Effects Producer'),(69668,1425984,9,'Visual Effects Editor'),(69668,1425987,10,'Visual Effects Producer'),(69668,1425990,10,'Visual Effects Producer'),(69668,1425994,10,'Visual Effects Supervisor'),(69668,1425996,10,'Visual Effects Supervisor'),(69668,1425999,8,'Costume Supervisor'),(69668,1426002,9,'Transportation Coordinator'),(69668,1426003,2,'Script Supervisor'),(69668,1426004,9,'Studio Teachers'),(69668,1435194,6,'Music Editor'),(69668,1436500,7,'Greensman'),(69668,1477470,8,'Makeup Artist'),(69668,1529005,9,'Carpenter'),(69668,1535322,10,'Special Effects Supervisor'),(69668,1537720,3,'Production Coordinator'),(69668,1556316,6,'Foley Editor'),(69668,1600612,7,'Painter'),(69668,1733232,1,'Dolly Grip'),(69668,1734776,6,'Boom Operator'),(69668,1877719,11,'Best Boy Electric'),(69668,1877720,1,'Dolly Grip'),(69668,1877721,11,'Best Boy Electric'),(69668,1877722,8,'Seamstress'),(69668,1877723,8,'Costume Supervisor'),(38363,11694,2,'Director'),(38363,21339,4,'Screenplay'),(38363,120254,4,'Screenplay'),(109491,3718,3,'Producer'),(109491,1301,1,'Director of Photography'),(109491,2163,2,'Director'),(109491,2163,4,'Screenplay'),(109491,5668,5,'Editor'),(109491,6347,3,'Casting'),(109491,6348,8,'Costume Design'),(109491,6923,7,'Supervising Art Director'),(109491,10950,3,'Producer'),(109491,29788,7,'Production Design'),(109491,47285,3,'Producer'),(109491,47286,3,'Producer'),(109491,47287,3,'Producer'),(109491,930189,7,'Art Direction'),(109491,956249,3,'Co-Producer'),(109491,1046637,4,'Novel'),(109491,1046638,4,'Novel'),(109491,1117311,3,'Executive Producer'),(109491,1316704,7,'Set Decoration'),(109491,1371069,2,'Script Supervisor'),(109491,1391389,1,'Still Photographer'),(329833,15009,4,'Writer'),(329833,2997,3,'Producer'),(329833,3184,3,'Producer'),(329833,7233,3,'Producer'),(329833,10572,6,'Music'),(329833,7399,2,'Director'),(329833,7399,3,'Producer'),(329833,7399,4,'Writer'),(329833,14376,5,'Editor'),(329833,15348,9,'Cinematography'),(329833,17871,4,'Writer'),(329833,22302,3,'Producer'),(329833,52934,4,'Writer'),(329833,119177,3,'Line Producer'),(329833,1759010,3,'Associate Producer'),(329833,1759012,3,'Associate Producer'),(329833,1759015,3,'Associate Producer'),(47327,3996,6,'Sound Re-Recording Mixer'),(47327,4767,3,'Producer'),(47327,7537,6,'Sound Designer'),(47327,13585,3,'Casting'),(47327,8166,6,'Sound Re-Recording Mixer'),(47327,12707,8,'Costume Design'),(47327,16830,3,'Executive Producer'),(47327,17209,3,'Executive Producer'),(47327,17849,7,'Production Design'),(47327,17852,7,'Art Direction'),(47327,20229,6,'Foley'),(47327,27226,2,'Director'),(47327,27226,4,'Writer'),(47327,27226,5,'Editor'),(47327,36064,9,'Second Unit Cinematographer'),(47327,45829,3,'Executive Producer'),(47327,45830,3,'Executive Producer'),(47327,47102,1,'Director of Photography'),(47327,63423,9,'Stunt Coordinator'),(47327,60102,6,'Music'),(47327,61117,4,'Writer'),(47327,62781,7,'Set Decoration'),(47327,132209,3,'Producer'),(47327,138657,10,'Visual Effects Producer'),(47327,550112,3,'Producer'),(47327,550113,3,'Executive Producer'),(47327,550114,3,'Executive Producer'),(47327,587817,8,'Makeup Artist'),(47327,957551,8,'Makeup Artist'),(47327,1049770,10,'Visual Effects Supervisor'),(47327,1049770,5,'First Assistant Editor'),(47327,1096444,7,'Art Direction'),(47327,1183391,1,'Still Photographer'),(47327,1191308,9,'Special Effects Coordinator'),(47327,1275670,10,'Visual Effects Producer'),(47327,1275670,5,'Editor'),(47327,1320552,8,'Costume Supervisor'),(47327,1376901,6,'ADR & Dubbing'),(47327,1377137,5,'Digital Intermediate'),(47327,1388484,9,'Property Master'),(47327,1395178,9,'Makeup Effects'),(47327,1395275,1,'Still Photographer'),(47327,1396811,9,'Visual Effects Art Director'),(47327,1399116,6,'Supervising Sound Editor'),(47327,1400814,6,'Dolby Consultant'),(47327,1404844,10,'Visual Effects Supervisor'),(47327,1407371,8,'Set Costumer'),(47327,1412711,9,'Visual Effects Editor'),(47327,1412716,10,'Animation'),(47327,1414178,6,'Sound Effects Editor'),(47327,1415508,8,'Set Costumer'),(47327,1418043,11,'Gaffer'),(47327,1419119,9,'Unit Publicist'),(47327,1425588,6,'Foley'),(47327,1427395,8,'Hairstylist'),(47327,1427396,8,'Hairstylist'),(47327,1427397,8,'Makeup Department Head'),(47327,1427402,7,'Art Department Coordinator'),(47327,1427403,7,'Construction Coordinator'),(47327,1427410,10,'Visual Effects Producer'),(47327,1427411,10,'Visual Effects Supervisor'),(47327,1427412,1,'Camera Operator'),(47327,1427413,1,'Camera Operator'),(47327,1427417,11,'Rigging Gaffer'),(47327,1427430,5,'Digital Intermediate'),(47327,1427435,5,'Digital Intermediate'),(47327,1427436,9,'Transportation Coordinator'),(47327,1427437,9,'Picture Car Coordinator'),(47327,1427438,2,'Script Supervisor'),(47327,1456696,9,'Compositors'),(96724,372,4,'Screenplay'),(96724,474,3,'Casting'),(96724,2236,3,'Producer'),(96724,2238,3,'Producer'),(96724,3285,1,'Director of Photography'),(96724,9651,6,'Sound Designer'),(96724,11269,6,'Music'),(96724,20875,4,'Novel'),(96724,21378,3,'Producer'),(96724,36588,2,'Director'),(96724,36591,8,'Costume Design'),(96724,36656,7,'Production Design'),(96724,36657,7,'Art Direction'),(96724,36658,7,'Set Decoration'),(96724,70506,5,'Editor'),(96724,1027825,7,'Supervising Art Director'),(96724,1108835,3,'Casting'),(96724,1326451,7,'Art Direction'),(96724,1338291,2,'Script Supervisor'),(96724,1357009,9,'Choreographer'),(96724,1392587,7,'Art Direction'),(96724,1408530,2,'Script Supervisor'),(96724,1409297,6,'Sound Designer'),(96724,1417837,8,'Costume Supervisor'),(96724,1466663,8,'Costume Supervisor'),(198184,947,6,'Original Music Composer'),(198184,898,5,'Editor'),(198184,6874,3,'Executive Producer'),(198184,9420,7,'Production Design'),(198184,9651,6,'Supervising Sound Editor'),(198184,11092,3,'Producer'),(198184,13086,7,'Art Direction'),(198184,19692,8,'Costume Design'),(198184,20229,6,'Foley'),(198184,23828,3,'Casting'),(198184,61255,9,'Visual Effects Editor'),(198184,62907,5,'Editor'),(198184,82194,2,'Director'),(198184,82194,4,'Writer'),(198184,82194,3,'Producer'),(198184,82195,4,'Writer'),(198184,126130,7,'Set Decoration'),(198184,230832,8,'Makeup Artist'),(198184,230832,8,'Hairstylist'),(198184,574092,3,'Co-Producer'),(198184,967026,1,'Director of Photography'),(198184,1099125,10,'Visual Effects Producer'),(198184,1348005,10,'Visual Effects Supervisor'),(198184,1348006,10,'Visual Effects Producer'),(198184,1365540,6,'Sound Effects Editor'),(198184,1395451,10,'Visual Effects Producer'),(198184,1396808,10,'Visual Effects Producer'),(198184,1397279,6,'ADR & Dubbing'),(198184,1397279,6,'Sound Re-Recording Mixer'),(198184,1400906,6,'Sound Re-Recording Mixer'),(198184,1403461,10,'Visual Effects Supervisor'),(198184,1406066,6,'Sound Designer'),(198184,1410309,1,'Steadicam Operator'),(198184,1424598,7,'Art Department Coordinator'),(198184,1424600,9,'Property Master'),(198184,1424630,1,'Camera Operator'),(198184,1424631,1,'Helicopter Camera'),(198184,1424639,2,'Script Supervisor'),(198184,1425918,10,'Visual Effects Producer'),(198184,1431024,6,'Sound Effects Editor'),(198184,1435590,9,'CG Supervisor'),(198184,1451524,7,'Art Direction'),(198184,1459752,10,'Animation'),(198184,1463631,9,'Visual Effects Editor'),(198184,1463785,10,'Animation'),(198184,1468340,3,'Co-Producer'),(198184,1486822,8,'Makeup Department Head'),(198184,1486823,7,'Set Designer'),(198184,1486827,1,'Camera Operator'),(198184,1486837,10,'Animation Supervisor'),(53953,41270,2,'Director'),(181283,578,3,'Producer'),(181283,950,5,'Editor'),(181283,1809,5,'Editor'),(181283,2989,4,'Screenplay'),(181283,9441,6,'Foley'),(181283,11409,1,'Director of Photography'),(181283,14764,6,'Sound Designer'),(181283,14765,6,'Sound Designer'),(181283,14765,6,'Supervising Sound Editor'),(181283,16363,3,'Casting'),(181283,17166,8,'Costume Design'),(181283,19658,3,'Producer'),(181283,20292,7,'Production Design'),(181283,22498,3,'Producer'),(181283,25729,3,'Casting'),(181283,43159,8,'Hairstylist'),(181283,111457,7,'Supervising Art Director'),(181283,125149,1,'Helicopter Camera'),(181283,125738,2,'Director'),(181283,138618,6,'Sound Re-Recording Mixer'),(181283,228881,9,'Stunt Coordinator'),(181283,1077404,6,'Music'),(181283,1164062,4,'Novel'),(181283,1223099,6,'ADR & Dubbing'),(181283,1304287,7,'Assistant Art Director'),(181283,1322137,8,'Costume Supervisor'),(181283,1339054,9,'Second Unit Cinematographer'),(181283,1342657,6,'Sound Effects Editor'),(181283,1387183,5,'Dialogue Editor'),(181283,1391571,6,'Sound Re-Recording Mixer'),(181283,1392083,6,'Sound Designer'),(181283,1393441,6,'Dolby Consultant'),(181283,1398934,1,'Camera Operator'),(181283,1400506,5,'Digital Intermediate'),(181283,1401126,8,'Wigmaker'),(181283,1402240,7,'Assistant Art Director'),(181283,1404217,6,'Sound Designer'),(181283,1404356,7,'Art Direction'),(181283,1404539,9,'Stunt Coordinator'),(181283,1405220,9,'Unit Publicist'),(181283,1405382,5,'Dialogue Editor'),(181283,1406390,6,'Sound Effects Editor'),(181283,1406616,6,'ADR & Dubbing'),(181283,1406903,5,'Digital Intermediate'),(181283,1408825,1,'Still Photographer'),(181283,1414145,6,'Foley'),(181283,1424690,1,'Still Photographer'),(181283,1425500,1,'Camera Operator'),(181283,1425503,11,'Gaffer'),(181283,1439130,8,'Hairstylist'),(181283,1439130,8,'Makeup Artist'),(181283,1455486,2,'Assistant Director'),(181283,1457302,7,'Set Decoration'),(181283,1459857,8,'Makeup Artist'),(181283,1486537,7,'Set Decoration'),(181283,1486538,2,'Script Supervisor'),(181283,1500280,8,'Hairstylist'),(181283,1500281,7,'Art Department Coordinator'),(181283,1500282,7,'Assistant Art Director'),(181283,1500283,6,'First Assistant Sound Editor'),(181283,1500285,5,'First Assistant Editor'),(181283,1500286,6,'Music Editor'),(181283,1500287,9,'Picture Car Coordinator'),(181283,1500288,9,'Transportation Coordinator'),(260346,59,3,'Producer'),(260346,59,4,'Writer'),(260346,61,4,'Writer'),(260346,561,3,'Casting'),(260346,3925,1,'Director of Photography'),(260346,16366,8,'Hairstylist'),(260346,16470,8,'Makeup Artist'),(260346,20722,8,'Costume Design'),(260346,35454,5,'Editor'),(260346,39110,7,'Set Decoration'),(260346,55773,6,'Original Music Composer'),(260346,75035,2,'Director'),(260346,109129,8,'Makeup Department Head'),(260346,119204,9,'Stunt Coordinator'),(260346,238393,9,'Fight Choreographer'),(260346,928492,7,'Production Design'),(260346,929839,6,'Supervising Sound Editor'),(260346,961658,1,'Camera Operator'),(260346,1015922,2,'Script Supervisor'),(260346,1039240,1,'Camera Operator'),(260346,1046590,7,'Art Direction'),(260346,1048884,8,'Makeup Artist'),(260346,1106260,9,'Pilot'),(260346,1151866,6,'ADR & Dubbing'),(260346,1309872,8,'Costume Supervisor'),(260346,1309919,8,'Set Costumer'),(260346,1317252,5,'Editor'),(260346,1321362,8,'Wardrobe Supervisor'),(260346,1321372,8,'Makeup Artist'),(260346,1327909,8,'Makeup Artist'),(260346,1329967,3,'Line Producer'),(260346,1337650,10,'Visual Effects Producer'),(260346,1363862,10,'Visual Effects Producer'),(260346,1367797,7,'Assistant Art Director'),(260346,1367808,9,'Armorer'),(260346,1372087,6,'ADR & Dubbing'),(260346,1376263,9,'Property Master'),(260346,1376266,6,'Sound Editor'),(260346,1377299,2,'Script Supervisor'),(260346,1392143,8,'Set Costumer'),(260346,1401988,11,'Chief Lighting Technician'),(260346,1402038,3,'Location Manager'),(260346,1404840,6,'Sound Re-Recording Mixer'),(260346,1405422,9,'Picture Car Coordinator'),(260346,1412487,1,'Steadicam Operator'),(260346,1412972,8,'Hairstylist'),(260346,1414541,8,'Makeup Artist'),(260346,1420326,1,'Still Photographer'),(260346,1422859,1,'Aerial Director of Photography'),(260346,1435644,9,'Special Effects Coordinator'),(260346,1436196,9,'Picture Car Coordinator'),(260346,1438565,7,'Assistant Art Director'),(260346,1442499,8,'Hairstylist'),(260346,1443033,8,'Hairstylist'),(260346,1449985,6,'Sound Effects Editor'),(260346,1470202,7,'Art Direction'),(260346,1477773,8,'Hairstylist'),(260346,1477774,7,'Art Department Coordinator'),(260346,1477775,7,'Art Department Coordinator'),(260346,1477776,7,'Art Department Coordinator'),(260346,1477777,7,'Assistant Art Director'),(260346,1477778,7,'Construction Coordinator'),(260346,1477779,7,'Construction Coordinator'),(260346,1477780,7,'Construction Coordinator'),(260346,1477781,9,'Property Master'),(260346,1477782,5,'Dialogue Editor'),(260346,1477783,10,'Visual Effects Supervisor'),(260346,1477784,1,'Camera Operator'),(260346,1477785,1,'Still Photographer'),(260346,1477786,1,'Still Photographer'),(260346,1477788,1,'Additional Photography'),(260346,1477790,8,'Costume Supervisor'),(260346,1477791,8,'Set Costumer'),(260346,1477792,8,'Set Costumer'),(260346,1477793,8,'Set Costumer'),(260346,1477795,8,'Set Costumer'),(260346,1477796,5,'First Assistant Editor'),(260346,1477797,5,'First Assistant Editor'),(260346,1477798,6,'Music Editor'),(260346,1477799,9,'Transportation Coordinator'),(260346,1477800,11,'Gaffer'),(260346,1502255,8,'Key Costumer'),(260346,1556129,10,'VFX Editor'),(260346,1581129,9,'Armorer'),(260346,1601607,9,'Propmaker'),(260346,1695015,2,'First Assistant Director'),(260346,1738113,9,'Pilot'),(260346,1765236,9,'Pilot'),(260346,1771619,3,'Production Coordinator'),(260346,1811602,6,'Foley Editor'),(260346,1826053,3,'Location Manager'),(260346,1855821,6,'Boom Operator'),(260346,1879751,7,'Art Direction'),(260346,1879753,8,'Makeup Artist'),(260346,1879771,10,'VFX Editor'),(260346,1879772,1,'Dolly Grip'),(260346,1879773,1,'Camera Operator'),(260346,1879774,11,'Electrician'),(260346,1879775,11,'Best Boy Electric'),(260346,1879778,3,'Production Coordinator'),(325789,276,5,'Editor'),(325789,945,7,'Production Design'),(325789,2073,3,'Casting'),(325789,7417,7,'Set Decoration'),(325789,40823,6,'Foley'),(325789,17419,3,'Executive Producer'),(325789,17816,5,'Editor'),(325789,34005,7,'Art Direction'),(325789,28496,3,'Co-Producer'),(325789,50988,3,'Executive Producer'),(325789,59683,8,'Costume Design'),(325789,73517,3,'Executive Producer'),(325789,73524,3,'Executive Producer'),(325789,144221,2,'Director'),(325789,144221,3,'Producer'),(325789,558231,5,'Editor'),(325789,937927,6,'Original Music Composer'),(325789,962936,3,'Co-Producer'),(325789,1032067,10,'Special Effects Supervisor'),(325789,1090694,3,'Co-Producer'),(325789,1122466,3,'Producer'),(325789,1193871,6,'Sound Effects Editor'),(325789,1338221,6,'Sound Re-Recording Mixer'),(325789,1376638,6,'ADR & Dubbing'),(325789,1376638,5,'Dialogue Editor'),(325789,1376639,10,'Visual Effects Coordinator'),(325789,1393300,6,'Foley'),(325789,1403459,3,'Line Producer'),(325789,1409297,6,'Sound Re-Recording Mixer'),(325789,1409307,2,'Script Supervisor'),(325789,1447255,4,'Screenplay'),(325789,1537869,3,'Executive Producer'),(325789,1540619,1,'Director of Photography'),(325789,1540620,3,'Executive Producer'),(325789,1540620,4,'Book'),(325789,1583824,10,'Visual Effects Producer'),(325789,1651921,3,'Producer'),(325789,1651922,3,'Co-Producer'),(325789,1651923,3,'Executive Producer'),(325789,1651924,3,'Executive Producer'),(325789,1651925,3,'Executive Producer'),(325789,1651926,3,'Producer'),(325789,1651927,7,'Set Decoration'),(325789,1672930,6,'Music Supervisor'),(325789,1699525,7,'Art Department Coordinator'),(325789,1699526,10,'Special Effects Supervisor'),(325789,1699527,10,'Visual Effects Supervisor'),(325789,1699535,6,'Foley'),(113464,792,1,'Director of Photography'),(113464,1760,6,'Original Music Composer'),(113464,2533,5,'Editor'),(113464,7511,3,'Casting'),(113464,9855,2,'Director'),(113464,10186,5,'Editor'),(113464,15176,4,'Screenplay'),(113464,15176,4,'Story'),(113464,16595,7,'Production Design'),(113464,19423,3,'Producer'),(113464,30724,4,'Screenplay'),(113464,93959,5,'Editor'),(113464,385451,5,'Editor'),(113464,1057166,3,'Producer'),(113464,1216929,4,'Story'),(113464,1429144,3,'Executive Producer'),(113464,1429145,3,'Associate Producer'),(82675,59,4,'Screenplay'),(82675,59,3,'Producer'),(82675,61,4,'Screenplay'),(82675,561,3,'Casting'),(82675,67773,6,'Music'),(82675,55773,6,'Original Music Composer'),(82675,56231,5,'Editor'),(82675,75035,2,'Director'),(82675,109129,8,'Makeup Department Head'),(82675,119203,9,'Stunts'),(82675,144848,3,'Unit Production Manager'),(82675,238393,9,'Stunt Coordinator'),(82675,904186,1,'Director of Photography'),(82675,928490,5,'Editor'),(82675,928492,7,'Production Design'),(82675,928495,6,'Sound mixer'),(82675,928496,2,'Script Supervisor'),(82675,937956,8,'Costume Design'),(82675,1046590,7,'Art Direction'),(82675,1321360,7,'Art Direction'),(82675,1321361,8,'Costume Supervisor'),(82675,1321362,8,'Costume Supervisor'),(82675,1321363,8,'Costume Supervisor'),(82675,1530856,9,'Stunts'),(82675,1855959,9,'Stunts'),(82675,1863776,9,'Stunts'),(82675,1863777,9,'Stunts'),(82675,1863778,9,'Stunts'),(88751,2088,4,'Novel'),(88751,2484,5,'Editor'),(88751,9622,2,'Director'),(88751,9543,3,'Producer'),(88751,10830,3,'Executive Producer'),(88751,33287,4,'Screenplay'),(88751,66218,4,'Screenplay'),(88751,66219,4,'Screenplay'),(88751,70789,6,'Original Music Composer'),(88751,70790,9,'Cinematography'),(88751,71148,5,'Editor'),(88751,113894,8,'Costume Design'),(88751,957146,3,'Casting'),(88751,959765,3,'Casting'),(146233,151,1,'Director of Photography'),(146233,151,1,'Camera Operator'),(146233,384,5,'Editor'),(146233,375,6,'Sound Effects Editor'),(146233,5328,3,'Casting'),(146233,6057,8,'Costume Design'),(146233,19689,3,'Casting'),(146233,47285,3,'Producer'),(146233,47286,3,'Producer'),(146233,74038,3,'Producer'),(146233,74319,5,'Editor'),(146233,102873,7,'Production Design'),(146233,117992,6,'Original Music Composer'),(146233,137427,2,'Director'),(146233,935990,4,'Writer'),(146233,1050930,5,'Dialogue Editor'),(146233,1096345,8,'Key Hair Stylist'),(146233,1122643,3,'Producer'),(146233,1206767,7,'Art Direction'),(146233,1315700,8,'Makeup Department Head'),(146233,1333222,9,'Stunt Coordinator'),(146233,1341858,6,'Sound Re-Recording Mixer'),(146233,1342626,6,'Sound Re-Recording Mixer'),(146233,1368865,6,'Supervising Sound Editor'),(146233,1368866,6,'Sound Designer'),(146233,1399632,6,'Sound Effects Editor'),(146233,1401988,11,'Gaffer'),(146233,1406190,5,'Dialogue Editor'),(146233,1428595,6,'Sound Effects Editor'),(146233,1452675,1,'Still Photographer'),(146233,1458202,2,'Script Supervisor'),(146233,1458578,5,'Dialogue Editor'),(146233,1536000,11,'Rigging Gaffer'),(146233,1550166,6,'Sound mixer'),(146233,1560275,7,'Set Decoration'),(146233,1560966,1,'Steadicam Operator'),(146233,1693424,8,'Assistant Costume Designer'),(64328,41088,4,'Writer'),(64328,52934,4,'Writer'),(64328,26205,2,'Director'),(36647,3687,6,'Sound Designer'),(36647,3687,6,'Supervising Sound Effects Editor'),(36647,10816,5,'Editor'),(36647,3893,4,'Writer'),(36647,2519,8,'Costume Design'),(36647,4140,6,'Original Music Composer'),(36647,4767,3,'Executive Producer'),(36647,4768,3,'Executive Producer'),(36647,6828,6,'Production Sound Mixer'),(36647,7624,3,'Executive Producer'),(36647,7626,3,'Executive Producer'),(36647,8134,9,'Digital Effects Producer'),(36647,10815,1,'Director of Photography'),(36647,15434,9,'Special Effects Coordinator'),(36647,10810,3,'Producer'),(36647,10819,7,'Production Design'),(36647,10820,7,'Art Direction'),(36647,10814,3,'Producer'),(36647,10814,9,'Martial Arts Choreographer'),(36647,19295,10,'Visual Effects Producer'),(36647,22077,3,'Executive In Charge Of Production'),(36647,29210,3,'Executive In Charge Of Post Production'),(36647,10809,3,'Producer'),(36647,36043,10,'Visual Effects Supervisor'),(36647,11102,7,'Set Designer'),(36647,10817,3,'Casting'),(36647,10808,2,'Director'),(36647,61844,3,'Unit Production Manager'),(36647,67695,6,'Music Editor'),(36647,104044,10,'3D Supervisor'),(36647,83121,8,'Wigmaker'),(36647,91094,6,'Foley'),(36647,91095,6,'Foley'),(36647,91147,6,'Music Supervisor'),(36647,138631,8,'Makeup Effects Designer'),(36647,205164,9,'Stand In'),(36647,230436,3,'ADR Voice Casting'),(36647,592012,10,'Visual Effects Supervisor'),(36647,956271,3,'Casting'),(36647,957495,6,'Sound Effects Editor'),(36647,982722,2,'Script Supervisor'),(36647,994637,3,'Executive Producer'),(36647,1016318,3,'Co-Producer'),(36647,1102820,1,'Camera Operator'),(36647,1116440,3,'Co-Producer'),(36647,1162272,8,'Tattoo Designer'),(36647,1175790,3,'Production Accountant'),(36647,1214872,9,'Set Production Assistant'),(36647,1253648,9,'Stunt Coordinator'),(36647,1290682,7,'Lead Painter'),(36647,1319747,8,'Costume Supervisor'),(36647,1332209,7,'Set Decoration'),(36647,1332210,8,'Makeup Department Head'),(36647,1336024,9,'Animatronic and Prosthetic Effects'),(36647,1338670,8,'Hair Department Head'),(36647,1341794,8,'Key Costumer'),(36647,1352958,7,'Set Designer'),(36647,1364411,6,'Boom Operator'),(36647,1368872,10,'Visual Effects Supervisor'),(36647,1370759,9,'Sequence Supervisor'),(36647,1378687,9,'Property Master'),(36647,1387183,5,'Dialogue Editor'),(36647,1387183,6,'ADR Editor'),(36647,1390532,10,'Visual Effects Producer'),(36647,1391594,1,'Steadicam Operator'),(36647,1392239,5,'Dialogue Editor'),(36647,1392239,6,'ADR Editor'),(36647,1395022,6,'Supervising Sound Effects Editor'),(36647,1395028,1,'Still Photographer'),(36647,1398859,11,'Gaffer'),(36647,1398863,6,'Music Editor'),(36647,1401365,9,'Video Assist Operator'),(36647,1401372,9,'Transportation Coordinator'),(36647,1401373,9,'Unit Publicist'),(36647,1401784,3,'Production Supervisor'),(36647,1402095,1,'Camera Operator'),(36647,1402112,6,'Sound Re-Recording Mixer'),(36647,1404305,8,'Makeup Artist'),(36647,1404306,8,'Hairstylist'),(36647,1404307,7,'Art Department Coordinator'),(36647,1404308,7,'Construction Coordinator'),(36647,1404309,7,'Leadman'),(36647,1404311,7,'Lead Painter'),(36647,1404313,9,'Visual Effects Editor'),(36647,1404314,9,'Visual Effects Editor'),(36647,1404315,10,'Visual Effects Supervisor'),(36647,1404316,10,'Visual Effects Supervisor'),(36647,1404324,10,'Animation Supervisor'),(36647,1404326,6,'Music Editor'),(36647,1404328,3,'Location Manager'),(36647,1404331,1,'Aerial Camera (suggest in addition to Helicopter Camera)'),(36647,1404704,9,'Post Production Supervisor'),(36647,1404834,7,'Conceptual Design'),(36647,1404834,7,'Sculptor'),(36647,1406763,3,'Line Producer'),(36647,1407237,9,'Transportation Captain'),(36647,1413459,10,'Lead Animator'),(36647,1415601,8,'Key Hair Stylist'),(36647,1428834,5,'Color Timer'),(36647,1439104,1,'Additional Photography'),(36647,1442212,7,'Production Illustrator'),(36647,1459655,6,'Orchestrator'),(36647,1462603,9,'Digital Effects Supervisor'),(36647,1513690,9,'Stunts'),(36647,1545540,6,'Sound mixer'),(36647,1549421,1,'Key Grip'),(36647,1554338,7,'Painter'),(36647,1554339,1,'First Assistant Camera'),(36647,1554340,1,'Grip'),(36647,1554341,8,'Seamstress'),(36647,1554342,8,'Set Costumer'),(36647,1554343,8,'Set Dressing Artist'),(36647,1554344,9,'Armorer'),(36647,1554345,9,'Carpenter'),(36647,1554346,9,'Chef'),(36647,1554348,9,'Craft Service'),(36647,1554350,9,'Driver'),(36647,1554351,1,'Camera Loader'),(36647,1554352,9,'Projection'),(36647,1554353,9,'Propmaker'),(36647,1554354,9,'Set Medic'),(36647,1554355,9,'Systems Administrators & Support'),(36647,1554356,9,'Technical Supervisor'),(36647,1554360,2,'First Assistant Director'),(36647,1554364,5,'Editorial Production Assistant'),(36647,1554365,5,'First Assistant Editor'),(36647,1554366,11,'Best Boy Electric'),(36647,1554367,11,'Electrician'),(36647,1554368,11,'Lighting Technician'),(36647,1554369,11,'Rigging Grip'),(36647,1554370,3,'Production Coordinator'),(36647,1554371,3,'Production Manager'),(36647,1554372,3,'Researcher'),(36647,1554373,10,'Digital Compositors'),(36647,1554374,10,'Visual Effects Coordinator'),(36647,1554390,11,'Lighting Supervisor'),(36647,1601603,10,'3D Animator'),(36647,1647465,9,'Production Controller'),(36647,1736216,9,'Pilot'),(36647,1739857,7,'Assistant Property Master'),(36647,1739868,1,'Dolly Grip'),(36647,1739877,2,'Second Assistant Director'),(36647,1739881,3,'Assistant Production Coordinator'),(36647,1739882,3,'Casting Assistant'),(36647,1739883,6,'Foley Editor'),(36647,1739884,6,'Utility Sound'),(36647,1739886,10,'3D Artist'),(232672,4485,3,'Executive Producer'),(232672,11772,3,'Executive Producer'),(232672,19292,3,'Producer'),(232672,20818,3,'Executive Producer'),(232672,20821,3,'Producer'),(232672,57370,2,'Director'),(232672,62159,3,'Producer'),(232672,186858,4,'Writer'),(232672,1274512,4,'Writer'),(82525,1152,2,'Director'),(82525,1152,4,'Screenplay'),(82525,7232,3,'Casting'),(82525,4186,5,'Editorial Production Assistant'),(82525,4186,5,'Editor'),(82525,6039,4,'Screenplay'),(82525,6039,3,'Executive Producer'),(82525,6866,3,'Executive Producer'),(82525,15017,8,'Makeup Department Head'),(82525,15348,1,'Director of Photography'),(82525,15572,7,'Production Design'),(82525,20295,3,'Producer'),(82525,20299,5,'Editor'),(82525,25058,5,'Editor'),(82525,53757,3,'Producer'),(82525,65108,4,'Screenplay'),(82525,65108,4,'Novel'),(82525,68016,6,'Orchestrator'),(82525,71332,3,'Executive Producer'),(82525,928143,3,'Producer'),(82525,1046764,6,'Original Music Composer'),(38153,16566,2,'Director'),(38153,95322,3,'Producer'),(38153,95322,4,'Writer'),(58233,1253,7,'Production Design'),(58233,21075,4,'Writer'),(58233,56710,2,'Director'),(116977,43518,2,'Director'),(116977,43518,4,'Story'),(116977,59644,4,'Story'),(116977,96358,4,'Writer'),(116977,1147178,4,'Writer'),(116977,1214713,4,'Writer'),(116977,1297324,5,'Editor'),(68734,275,1,'Director of Photography'),(68734,15841,5,'Editor'),(68734,880,2,'Director'),(68734,880,3,'Producer'),(68734,1461,3,'Producer'),(68734,2949,6,'Original Music Composer'),(68734,2953,3,'Casting'),(68734,13626,7,'Set Decoration'),(68734,25140,7,'Production Design'),(68734,16729,3,'Executive Producer'),(68734,17863,6,'Music Supervisor'),(68734,31511,3,'Producer'),(68734,41018,3,'Executive Producer'),(68734,46283,1,'Camera Operator'),(68734,60130,3,'Co-Producer'),(68734,114479,3,'Executive Producer'),(68734,131532,9,'Stunt Coordinator'),(68734,131680,4,'Screenplay'),(68734,132582,3,'Executive Producer'),(68734,228981,3,'Location Manager'),(68734,229801,8,'Makeup Department Head'),(68734,958488,8,'Costume Design'),(68734,960673,7,'Art Direction'),(68734,970155,3,'Executive Producer'),(68734,971715,3,'Executive Producer'),(68734,1032072,9,'Stunt Coordinator'),(68734,1181575,1,'Still Photographer'),(68734,1263143,9,'Property Master'),(68734,1304689,3,'Casting'),(68734,1323768,8,'Costume Supervisor'),(68734,1329756,8,'Costume Supervisor'),(68734,1338148,7,'Set Designer'),(68734,1341858,6,'Sound Re-Recording Mixer'),(68734,1342626,6,'Sound Re-Recording Mixer'),(68734,1350459,7,'Assistant Art Director'),(68734,1357059,5,'Dialogue Editor'),(68734,1367493,6,'Foley'),(68734,1378224,7,'Set Designer'),(68734,1378695,6,'Sound Designer'),(68734,1378695,6,'Supervising Sound Editor'),(68734,1378696,6,'Sound Designer'),(68734,1391604,3,'Location Manager'),(68734,1399328,9,'Transportation Coordinator'),(68734,1400527,3,'Production Supervisor'),(68734,1400528,3,'Production Manager'),(68734,1400529,9,'Post Production Supervisor'),(68734,1400530,7,'Art Department Coordinator'),(68734,1400531,7,'Leadman'),(68734,1400532,7,'Construction Coordinator'),(68734,1400533,7,'Assistant Art Director'),(68734,1400534,1,'Still Photographer'),(68734,1400535,1,'Steadicam Operator'),(68734,1400536,5,'Digital Intermediate'),(68734,1400537,6,'Music Editor'),(68734,1400538,9,'Transportation Coordinator'),(68734,1400539,3,'Publicist'),(68734,1400540,2,'Script Supervisor'),(68734,1400541,3,'Location Manager'),(228066,474,3,'Casting'),(228066,2043,3,'Producer'),(228066,2291,2,'Director'),(228066,6379,7,'Production Design'),(228066,7045,6,'Music'),(228066,11227,8,'Costume Design'),(228066,11351,6,'Supervising Sound Editor'),(228066,40819,6,'Sound Re-Recording Mixer'),(228066,11812,3,'Executive Producer'),(228066,15883,10,'Visual Effects Supervisor'),(228066,28970,4,'Novel'),(228066,45055,5,'Editor'),(228066,57201,3,'Co-Producer'),(228066,67202,7,'Supervising Art Director'),(228066,117241,6,'Sound Effects Editor'),(228066,203285,4,'Screenplay'),(228066,1181554,1,'Still Photographer'),(228066,1335562,6,'Sound Effects Editor'),(228066,1335566,10,'Visual Effects Supervisor'),(228066,1337408,6,'Sound Effects Editor'),(228066,1345974,1,'Director of Photography'),(228066,1354916,7,'Art Direction'),(228066,1367560,11,'Gaffer'),(228066,1371042,3,'Executive Producer'),(228066,1373714,9,'Special Effects Coordinator'),(228066,1384371,9,'Visual Effects Editor'),(228066,1390349,7,'Art Direction'),(228066,1393300,6,'Foley'),(228066,1394003,6,'Sound Re-Recording Mixer'),(228066,1401147,9,'Visual Effects Editor'),(228066,1403191,10,'Visual Effects Producer'),(228066,1403641,1,'Underwater Camera'),(228066,1409295,5,'Dialogue Editor'),(228066,1411074,8,'Wigmaker'),(228066,1415946,8,'Key Hair Stylist'),(228066,1415946,8,'Makeup Artist'),(228066,1422818,6,'Music Editor'),(228066,1428822,7,'Conceptual Design'),(228066,1430408,8,'Hair Designer'),(228066,1430408,8,'Makeup Designer'),(228066,1444292,10,'Animation Supervisor'),(228066,1453652,11,'Rigging Gaffer'),(228066,1459910,10,'VFX Editor'),(228066,1465990,7,'Construction Coordinator'),(228066,1470158,8,'Hairstylist'),(228066,1473168,5,'Digital Intermediate'),(228066,1531511,10,'Visual Effects Coordinator'),(228066,1537725,8,'Makeup Artist'),(228066,1546755,9,'Armorer'),(228066,1548958,9,'CG Supervisor'),(228066,1548959,9,'CG Supervisor'),(228066,1550774,10,'Visual Effects Coordinator'),(228066,1551797,9,'Armorer'),(228066,1556416,10,'Special Effects Supervisor'),(228066,1568462,10,'VFX Editor'),(228066,1570048,5,'Digital Intermediate'),(228066,1574033,5,'Editor'),(228066,1574034,7,'Art Direction'),(228066,1574035,7,'Set Decoration'),(228066,1574036,3,'Casting Associate'),(228066,1574038,8,'Costume Supervisor'),(228066,1574041,1,'First Assistant Camera'),(228066,1574043,3,'Researcher'),(228066,1574044,8,'Hairstylist'),(228066,1574046,8,'Hairstylist'),(228066,1574051,7,'Art Department Assistant'),(228066,1574052,7,'Assistant Art Director'),(228066,1574069,10,'Animation'),(228066,1574071,9,'CG Supervisor'),(228066,1574072,7,'Conceptual Design'),(228066,1574077,10,'Visual Effects Coordinator'),(228066,1574078,10,'Visual Effects Coordinator'),(228066,1574080,10,'Visual Effects Coordinator'),(228066,1574081,10,'Visual Effects Coordinator'),(228066,1574084,10,'Visual Effects Coordinator'),(228066,1574091,10,'Visual Effects Coordinator'),(228066,1574092,9,'Visual Effects Editor'),(228066,1574095,9,'Visual Effects Editor'),(228066,1574096,10,'Visual Effects Producer'),(228066,1574097,10,'Visual Effects Producer'),(228066,1574102,5,'Digital Intermediate'),(228066,1574104,5,'Digital Intermediate'),(228066,1574105,5,'First Assistant Editor'),(37233,2043,3,'Producer'),(37233,2226,2,'Director'),(37233,2226,3,'Producer'),(37233,2241,5,'Editor'),(37233,2702,1,'Director of Photography'),(37233,2997,3,'Producer'),(37233,4006,3,'Executive Producer'),(37233,5490,3,'Casting'),(37233,10640,5,'Editor'),(37233,11057,4,'Screenplay'),(37233,11060,4,'Novel'),(37233,10771,6,'Music'),(37233,19310,8,'Costume Design'),(37233,11061,7,'Production Design'),(37233,11056,4,'Screenplay'),(37233,11058,3,'Executive Producer'),(37233,11055,4,'Screenplay'),(37233,11063,7,'Set Decoration'),(37233,957310,7,'Art Direction'),(37950,52035,4,'Screenplay'),(37950,52035,4,'Writer'),(37950,6211,4,'Screenplay'),(37950,6211,4,'Writer'),(37950,23485,3,'Producer'),(37950,58552,2,'Director'),(37950,1460634,9,'Visual Effects Art Director'),(37950,1579180,1,'First Assistant Camera'),(64688,546,3,'Casting'),(64688,5666,6,'Original Music Composer'),(64688,9639,7,'Art Direction'),(64688,11874,3,'Producer'),(64688,14041,7,'Set Decoration'),(64688,13245,5,'Editor'),(64688,16733,7,'Production Design'),(64688,21007,4,'Story'),(64688,21007,3,'Executive Producer'),(64688,21968,3,'Executive Producer'),(64688,38673,3,'Executive Producer'),(64688,52681,3,'Executive Producer'),(64688,54164,1,'Director of Photography'),(64688,58744,4,'Screenplay'),(64688,58744,4,'Story'),(64688,107446,2,'Director'),(64688,91854,8,'Makeup Department Head'),(64688,110019,4,'Teleplay'),(64688,110019,3,'Producer'),(64688,143917,6,'Sound Effects Editor'),(64688,155267,2,'Director'),(64688,569307,4,'Teleplay'),(64688,935278,3,'Casting'),(64688,960282,7,'Art Direction'),(64688,971528,8,'Costume Design'),(64688,1341138,6,'Sound Re-Recording Mixer'),(64688,1355541,1,'Camera Operator'),(64688,1355541,1,'Steadicam Operator'),(64688,1400070,6,'Sound Effects Editor'),(64688,1403391,7,'Art Department Coordinator'),(64688,1407812,6,'Supervising Sound Editor'),(64688,1413092,5,'Dialogue Editor'),(64688,1413095,5,'Dialogue Editor'),(64688,1415632,1,'Camera Operator'),(64688,1419105,1,'Still Photographer'),(64688,1433021,6,'Sound Re-Recording Mixer'),(64688,1444909,8,'Hair Department Head'),(64688,1473814,2,'Script Supervisor'),(64688,1528023,8,'Assistant Costume Designer'),(64688,1534197,6,'Music Editor'),(64688,1537498,6,'Supervising Sound Editor'),(64688,1541689,1,'First Assistant Camera'),(64688,1565005,6,'Music Supervisor'),(64688,1565006,6,'Boom Operator'),(64688,1565007,6,'Production Sound Mixer'),(64688,1565008,8,'Costume Supervisor'),(64688,1565009,1,'First Assistant Camera'),(64688,1565014,1,'First Assistant Camera'),(64688,1565015,5,'Assistant Editor'),(136795,1589,6,'Original Music Composer'),(136795,5667,1,'Director of Photography'),(136795,36427,3,'Producer'),(136795,41079,5,'Editor'),(136795,41081,7,'Production Design'),(136795,49907,3,'Executive Producer'),(136795,50462,8,'Costume Design'),(136795,116805,2,'Director'),(136795,116805,3,'Executive Producer'),(136795,266920,3,'Producer'),(136795,800252,5,'Editor'),(136795,935717,3,'Executive Producer'),(136795,958905,7,'Set Decoration'),(136795,1106222,4,'Writer'),(87826,2593,6,'Original Music Composer'),(87826,4502,5,'Editor'),(87826,6959,3,'Casting'),(87826,10709,1,'Director of Photography'),(87826,11655,3,'Executive Producer'),(87826,13168,5,'Dialogue Editor'),(87826,16469,8,'Costume Design'),(87826,20824,7,'Production Design'),(87826,32895,3,'Producer'),(87826,32895,4,'Writer'),(87826,32903,7,'Art Direction'),(87826,34050,4,'Writer'),(87826,58362,6,'Supervising Sound Editor'),(87826,58363,6,'Supervising Sound Editor'),(87826,57370,2,'Director'),(87826,63516,3,'Producer'),(87826,179515,4,'Writer'),(87826,935499,9,'Production Office Assistant'),(87826,956198,9,'Stunt Coordinator'),(87826,961165,3,'Casting'),(87826,1095339,6,'Sound Re-Recording Mixer'),(87826,1316192,8,'Costume Supervisor'),(87826,1395255,6,'Sound Re-Recording Mixer'),(87826,1401135,6,'Sound Effects Editor'),(87826,1401989,1,'Steadicam Operator'),(87826,1409831,1,'Camera Operator'),(87826,1436958,9,'Other'),(87826,1473981,2,'Script Supervisor'),(87826,1531504,6,'Music Editor'),(87826,1537179,1,'Still Photographer'),(87826,1537460,6,'Sound Re-Recording Mixer'),(87826,1537461,6,'Sound Re-Recording Mixer'),(87826,1537463,6,'Sound Re-Recording Mixer'),(49730,1720,3,'Casting'),(49730,2486,7,'Production Design'),(49730,6193,3,'Producer'),(49730,16739,10,'Visual Effects Supervisor'),(49730,22047,6,'Original Music Composer'),(49730,19850,2,'Director'),(49730,19850,3,'Executive Producer'),(49730,40839,6,'Original Music Composer'),(49730,40839,6,'Music Supervisor'),(49730,47294,8,'Costume Design'),(49730,63989,3,'Producer'),(49730,113028,7,'Set Designer'),(49730,57849,1,'Director of Photography'),(49730,58797,9,'Stunt Coordinator'),(49730,11100,5,'Editor'),(49730,67846,5,'Editor'),(49730,53114,7,'Set Decoration'),(49730,142686,4,'Writer'),(49730,217995,7,'Set Designer'),(49730,967446,3,'Executive Producer'),(49730,1128184,3,'Producer'),(49730,1264811,6,'Supervising Music Editor'),(49730,1325909,8,'Wardrobe Supervisor'),(49730,1334185,8,'Wardrobe Supervisor'),(49730,1339976,7,'Set Designer'),(49730,1340318,6,'Sound Effects Editor'),(49730,1377131,1,'Camera Operator'),(49730,1378701,9,'Special Effects Coordinator'),(49730,1390524,6,'Sound Effects Editor'),(49730,1394760,2,'Script Supervisor'),(49730,1394931,7,'Art Department Coordinator'),(49730,1397736,6,'Music Editor'),(49730,1398864,9,'Choreographer'),(49730,1399914,6,'Supervising Sound Editor'),(49730,1401595,11,'Chief Lighting Technician'),(49730,1405237,9,'Visual Effects Editor'),(49730,1406389,6,'Sound Effects Editor'),(49730,1407839,9,'Stunt Coordinator'),(49730,1408311,5,'Dialogue Editor'),(49730,1431066,9,'Visual Effects Editor'),(49730,1441272,8,'Key Makeup Artist'),(49730,1441345,8,'Key Makeup Artist'),(49730,1448419,8,'Hair Department Head'),(49730,1514420,3,'Executive Producer'),(49730,1546856,6,'Supervising Dialogue Editor'),(49730,1551841,6,'Music Editor'),(54054,28,3,'Producer'),(54054,68602,3,'Producer'),(54054,3953,3,'Producer'),(54054,3965,3,'Casting'),(54054,11625,5,'Editor'),(54054,16492,7,'Production Design'),(54054,35180,3,'Producer'),(54054,19002,1,'Director of Photography'),(54054,60068,6,'Original Music Composer'),(54054,114597,2,'Director'),(54054,149935,4,'Screenplay'),(54054,939199,4,'Screenplay'),(54054,939200,4,'Screenplay'),(54054,1034748,3,'Casting'),(54054,1039860,3,'Casting'),(54054,1183391,1,'Still Photographer'),(54054,1280234,9,'Stunt Coordinator'),(54054,1450000,2,'Script Supervisor'),(54054,1810467,4,'Novel'),(228967,6410,3,'Casting'),(228967,6874,3,'Executive Producer'),(228967,17051,3,'Executive Producer'),(228967,9819,7,'Production Design'),(228967,19274,2,'Director'),(228967,19274,4,'Story'),(228967,19274,3,'Producer'),(228967,23812,7,'Art Direction'),(228967,43901,3,'Executive Producer'),(228967,54734,2,'Director'),(228967,54734,4,'Story'),(228967,54734,3,'Producer'),(228967,64227,1,'Director of Photography'),(228967,225628,5,'Editor'),(228967,227440,6,'Original Music Composer'),(228967,928595,3,'Producer'),(228967,952397,3,'Executive Producer'),(228967,1056048,5,'Editor'),(228967,1206448,3,'Executive Producer'),(228967,1206449,3,'Executive Producer'),(228967,1221087,4,'Story'),(228967,1221087,4,'Screenplay'),(228967,1403656,3,'Co-Producer'),(228967,1463874,4,'Storyboard'),(46528,123,3,'Producer'),(46528,1326,3,'Casting'),(46528,1373,7,'Production Design'),(46528,17004,6,'Original Music Composer'),(46528,39825,3,'Producer'),(46528,59703,3,'Associate Producer'),(46528,59949,3,'Producer'),(46528,60355,3,'Line Producer'),(46528,65595,3,'Executive Producer'),(46528,141169,2,'Director'),(46528,141170,4,'Writer'),(46528,206549,9,'Additional Writing'),(46528,552077,1,'Director of Photography'),(46528,959742,3,'Casting'),(46528,1128834,3,'Producer'),(46528,1128835,3,'Producer'),(46528,1128836,3,'Producer'),(46528,1128837,3,'Producer'),(46528,1128838,3,'Executive Producer'),(46528,1128839,3,'Executive Producer'),(46528,1128840,3,'Executive Producer'),(46528,1128841,5,'Editor'),(280391,2408,2,'Director'),(280391,2408,4,'Scenario Writer'),(280391,63122,4,'Scenario Writer'),(49527,3965,3,'Casting'),(49527,4909,7,'Set Decoration'),(49527,10952,3,'Producer'),(49527,9648,7,'Production Design'),(49527,11001,5,'Editor'),(49527,19290,1,'Director of Photography'),(49527,24309,3,'Producer'),(49527,20172,8,'Costume Design'),(49527,29608,3,'Executive Producer'),(49527,72344,2,'Director'),(49527,227440,6,'Original Music Composer'),(49527,932824,4,'Screenplay'),(49527,1034748,3,'Casting'),(49527,1039860,3,'Casting'),(49527,1106752,3,'Executive Producer'),(49527,1399971,9,'Special Effects Coordinator'),(49527,1401173,2,'Script Supervisor'),(49527,1416817,9,'Special Effects'),(49527,1457666,5,'Assistant Editor'),(49527,1493161,3,'Casting Associate'),(49527,1767944,9,'Special Effects'),(49527,1767945,9,'Special Effects'),(49527,1767946,3,'Casting Associate'),(49527,1767948,3,'Casting Associate'),(49527,1767949,3,'Casting Assistant'),(49527,1767953,7,'Location Scout'),(49527,1767954,7,'Location Scout'),(73937,323,3,'Producer'),(73937,2357,4,'Screenplay'),(73937,5065,2,'Director'),(73937,10569,3,'Producer'),(73937,10572,6,'Music'),(73937,10574,5,'Editor'),(73937,5387,1,'Director of Photography'),(73937,6347,3,'Casting'),(73937,22302,3,'Producer'),(168672,282,3,'Producer'),(168672,531,6,'Original Music Composer'),(168672,5914,3,'Casting'),(168672,5389,7,'Production Design'),(168672,5391,7,'Set Decoration'),(168672,5392,8,'Costume Design'),(168672,6624,3,'Producer'),(168672,10393,5,'Editor'),(168672,13227,5,'Editor'),(168672,16494,7,'Art Direction'),(168672,17883,2,'Director'),(168672,17883,4,'Writer'),(168672,40104,8,'Makeup Artist'),(168672,18952,4,'Writer'),(168672,45838,3,'Executive Producer'),(168672,51329,3,'Executive Producer'),(168672,66692,8,'Hairstylist'),(168672,18953,3,'Producer'),(168672,969171,1,'Director of Photography'),(168672,1024910,3,'Casting'),(168672,1027025,3,'Producer'),(168672,1133292,5,'Editor'),(168672,1208437,8,'Makeup Artist'),(168672,1279644,3,'Executive Producer'),(168672,1279645,3,'Executive Producer'),(168672,1328146,8,'Makeup Department Head'),(168672,1400734,8,'Set Costumer'),(168672,1401606,8,'Hairstylist'),(168672,1450000,2,'Script Supervisor'),(168672,1521446,8,'Costume Supervisor'),(240832,59,2,'Director'),(240832,59,4,'Writer'),(240832,996,6,'Original Music Composer'),(240832,997,1,'Director of Photography'),(240832,2186,3,'Casting'),(240832,8159,6,'Sound Designer'),(240832,8159,6,'Supervising Sound Editor'),(240832,16370,9,'Special Effects Coordinator'),(240832,20722,8,'Costume Design'),(240832,35455,7,'Production Design'),(240832,35918,1,'Still Photographer'),(240832,46291,6,'Sound Re-Recording Mixer'),(240832,46291,5,'Editor'),(240832,50950,3,'Producer'),(240832,119204,9,'Stunt Coordinator'),(240832,558100,3,'Executive Producer'),(240832,983118,1,'Steadicam Operator'),(240832,1023192,7,'Art Direction'),(240832,1030403,2,'Script Supervisor'),(240832,1048884,8,'Makeup Artist'),(240832,1337646,6,'Boom Operator'),(240832,1363847,5,'Dialogue Editor'),(240832,1363847,6,'Sound Re-Recording Mixer'),(240832,1363861,10,'Visual Effects Supervisor'),(240832,1363862,10,'Visual Effects Producer'),(240832,1363868,6,'Music Editor'),(240832,1367647,8,'Wigmaker'),(240832,1367797,7,'Art Direction'),(240832,1367798,7,'Art Direction'),(240832,1367799,7,'Art Direction'),(240832,1367800,7,'Set Decoration'),(240832,1367803,7,'Sculptor'),(240832,1367804,7,'Assistant Art Director'),(240832,1367805,7,'Assistant Art Director'),(240832,1367806,7,'Assistant Art Director'),(240832,1367807,7,'Assistant Art Director'),(240832,1367808,9,'Property Master'),(240832,1367809,7,'Conceptual Design'),(240832,1367810,9,'Property Master'),(240832,1367811,9,'Property Master'),(240832,1367813,7,'Conceptual Design'),(240832,1367814,6,'Supervising Sound Editor'),(240832,1367814,6,'Sound Designer'),(240832,1367815,6,'Sound Designer'),(240832,1367816,6,'Boom Operator'),(240832,1367817,9,'Sound Recordist'),(240832,1367818,10,'Visual Effects Supervisor'),(240832,1367819,10,'Visual Effects Producer'),(240832,1367820,10,'Visual Effects Producer'),(240832,1367821,10,'Visual Effects Supervisor'),(240832,1367826,10,'Visual Effects Producer'),(240832,1367827,10,'Visual Effects Supervisor'),(240832,1367828,11,'Gaffer'),(240832,1367829,3,'Location Manager'),(240832,1372951,9,'Stunts'),(240832,1394418,6,'Sound Effects Editor'),(240832,1401569,10,'Visual Effects Producer'),(240832,1412487,1,'Steadicam Operator'),(240832,1412908,8,'Makeup Artist'),(240832,1412909,8,'Makeup Artist'),(240832,1412910,8,'Makeup Artist'),(240832,1412911,8,'Makeup Artist'),(240832,1412912,9,'Makeup Effects'),(240832,1412913,9,'Makeup Effects'),(240832,1412914,3,'Production Manager'),(240832,1412915,6,'Sound Effects Editor'),(240832,1412916,10,'Visual Effects Producer'),(240832,1412917,9,'CG Supervisor'),(240832,1412918,1,'Camera Operator'),(240832,1412919,1,'Helicopter Camera'),(240832,1412920,1,'Additional Camera'),(240832,1412921,3,'Location Manager'),(240832,1412922,3,'Location Manager'),(240832,1412923,3,'Production Accountant'),(240832,1412924,3,'Production Accountant'),(216015,531,6,'Original Music Composer'),(216015,6410,3,'Casting'),(216015,1305,6,'Music Editor'),(216015,5779,7,'Production Design'),(216015,3285,1,'Director of Photography'),(216015,4767,3,'Producer'),(216015,6346,5,'Editor'),(216015,11801,7,'Set Decoration'),(216015,11818,7,'Supervising Art Director'),(216015,14189,5,'Editor'),(216015,21656,5,'Editor'),(216015,22046,8,'Costume Supervisor'),(216015,23814,7,'Set Decoration'),(216015,40471,8,'Costume Design'),(216015,41332,3,'Executive Producer'),(216015,54417,3,'Producer'),(216015,113208,9,'Stunt Coordinator'),(216015,92302,7,'Supervising Art Director'),(216015,74978,6,'Sound Re-Recording Mixer'),(216015,91147,6,'Music Supervisor'),(216015,188534,3,'Producer'),(216015,188534,4,'Novel'),(216015,428915,3,'Executive Producer'),(216015,940376,4,'Screenplay'),(216015,1006729,7,'Art Direction'),(216015,1137903,2,'Director'),(216015,1355532,2,'Script Supervisor'),(216015,1394724,1,'Still Photographer'),(216015,1401687,6,'Sound Re-Recording Mixer'),(216015,1404903,6,'Supervising Sound Editor'),(216015,1420973,9,'Stunt Coordinator'),(216015,1460593,9,'Production Office Assistant'),(216015,1511086,6,'Supervising Sound Editor'),(216015,1539947,3,'Executive In Charge Of Production'),(216015,1544639,6,'Music Editor'),(216015,1583629,4,'Musical'),(193756,2529,7,'Set Decoration'),(193756,5575,3,'Producer'),(193756,6890,3,'Executive Producer'),(193756,7146,7,'Production Design'),(193756,9493,8,'Costume Supervisor'),(193756,13240,3,'Producer'),(193756,14895,3,'Producer'),(193756,15015,8,'Costume Design'),(193756,15559,1,'Director of Photography'),(193756,17210,3,'Executive Producer'),(193756,17211,3,'Producer'),(193756,18264,6,'Original Music Composer'),(193756,18617,5,'Editor'),(193756,20170,3,'Casting'),(193756,36602,2,'Director'),(193756,36602,4,'Writer'),(193756,50769,3,'Producer'),(193756,57084,3,'Executive Producer'),(193756,80245,3,'Executive Producer'),(193756,61123,3,'Executive Producer'),(193756,25549,3,'Casting'),(193756,107372,8,'Makeup Department Head'),(193756,96357,3,'Producer'),(193756,132210,3,'Co-Producer'),(193756,143894,3,'Co-Producer'),(193756,183044,3,'Producer'),(193756,216067,4,'Book'),(193756,954441,3,'Executive Producer'),(193756,964875,3,'Executive Producer'),(193756,968496,3,'Executive Producer'),(193756,1001705,3,'Executive Producer'),(193756,1046154,3,'Executive Producer'),(193756,1046155,3,'Executive Producer'),(193756,1113449,3,'Executive Producer'),(193756,1138845,3,'Executive Producer'),(193756,1198658,7,'Art Direction'),(193756,1201063,6,'Original Music Composer'),(193756,1283039,4,'Book'),(193756,1330723,3,'Executive Producer'),(193756,1392101,3,'Co-Producer'),(193756,1414048,3,'Executive Producer'),(193756,1500206,3,'Executive Producer'),(193756,1554033,3,'Associate Producer'),(193756,1554317,3,'Co-Producer'),(193756,1654005,3,'Executive Producer'),(193756,1684362,3,'Executive Producer'),(193756,1725574,3,'Producer'),(193756,1725575,3,'Associate Producer'),(259693,36,1,'Director of Photography'),(259693,2127,2,'Director'),(259693,2127,4,'Writer'),(259693,6037,10,'Visual Effects Supervisor'),(259693,9545,3,'Casting'),(259693,18330,3,'Producer'),(259693,22038,4,'Writer'),(259693,22039,4,'Writer'),(259693,26195,8,'Makeup Artist'),(259693,39202,7,'Set Decoration'),(259693,52259,3,'Producer'),(259693,62813,5,'Editor'),(259693,73417,6,'Music'),(259693,91147,6,'Music Supervisor'),(259693,141301,7,'Production Design'),(259693,142686,4,'Writer'),(259693,928942,6,'Sound Re-Recording Mixer'),(259693,961111,7,'Art Direction'),(259693,1059590,1,'Still Photographer'),(259693,1183915,8,'Costume Design'),(259693,1276602,3,'Casting'),(259693,1309884,6,'Supervising Sound Editor'),(259693,1317667,8,'Makeup Department Head'),(259693,1324262,7,'Set Decoration'),(259693,1324816,3,'Casting'),(259693,1338134,6,'Foley'),(259693,1341794,8,'Costume Supervisor'),(259693,1352958,7,'Art Direction'),(259693,1352964,7,'Construction Coordinator'),(259693,1389138,2,'Script Supervisor'),(259693,1397736,6,'Music Editor'),(259693,1399288,7,'Art Department Coordinator'),(259693,1399635,10,'Visual Effects Supervisor'),(259693,1400877,8,'Assistant Costume Designer'),(259693,1401994,9,'Second Unit Cinematographer'),(259693,1402090,7,'Art Direction'),(259693,1402104,8,'Hairstylist'),(259693,1412767,8,'Hair Department Head'),(259693,1424694,1,'Steadicam Operator'),(259693,1432024,11,'Rigging Gaffer'),(259693,1435657,11,'Gaffer'),(259693,1437193,6,'ADR & Dubbing'),(259693,1437193,5,'Dialogue Editor'),(259693,1454503,8,'Makeup Artist'),(259693,1536954,8,'Set Costumer'),(259693,1551151,8,'Set Costumer'),(259693,1558086,10,'Special Effects Supervisor'),(259693,1565670,11,'Rigging Gaffer'),(259693,1591168,3,'Casting Associate'),(259693,1621067,7,'Art Department Assistant'),(259693,1621068,7,'Assistant Art Director'),(259693,1621072,10,'Special Effects Supervisor'),(259693,1621077,8,'Hairstylist'),(259693,1621080,8,'Makeup Artist'),(37799,1979,3,'Executive Producer'),(37799,2997,3,'Producer'),(37799,3186,6,'Music'),(37799,4767,3,'Producer'),(37799,6055,7,'Set Decoration'),(37799,7467,2,'Director'),(37799,7475,3,'Producer'),(37799,7479,1,'Director of Photography'),(37799,7481,3,'Casting'),(37799,7763,6,'Sound Re-Recording Mixer'),(37799,13520,4,'Screenplay'),(37799,17455,5,'Editor'),(37799,21568,7,'Art Direction'),(37799,20209,7,'Production Design'),(37799,23712,1,'Camera Supervisor'),(37799,49886,7,'Leadman'),(37799,54417,3,'Producer'),(37799,54418,4,'Novel'),(37799,59834,3,'Unit Production Manager'),(37799,75377,8,'Makeup Artist'),(37799,89425,9,'Sound Recordist'),(37799,132616,3,'Location Manager'),(37799,142391,6,'Music'),(37799,184314,6,'ADR & Dubbing'),(37799,935491,7,'Art Department Coordinator'),(37799,958488,8,'Costume Design'),(37799,964726,5,'Editor'),(37799,966928,7,'Art Direction'),(37799,1116937,6,'Foley'),(37799,1122560,9,'Stunt Coordinator'),(37799,1172443,1,'Still Photographer'),(37799,1181784,3,'Location Manager'),(37799,1182907,7,'Set Designer'),(37799,1195362,7,'Production Design'),(37799,1278371,9,'Stand In'),(37799,1309924,6,'Scoring Mixer'),(37799,1311507,9,'Special Effects Coordinator'),(37799,1319843,8,'Makeup Department Head'),(37799,1339445,7,'Construction Coordinator'),(37799,1347760,9,'Dialect Coach'),(37799,1367826,10,'Visual Effects Producer'),(37799,1378828,6,'Sound Re-Recording Mixer'),(37799,1384375,10,'Visual Effects Coordinator'),(37799,1389534,6,'ADR & Dubbing'),(37799,1394750,10,'Visual Effects Producer'),(37799,1394755,10,'Visual Effects Supervisor'),(37799,1395290,2,'Script Supervisor'),(37799,1395435,7,'Set Designer'),(37799,1397823,6,'Foley'),(37799,1399117,6,'Sound Effects Editor'),(37799,1399877,1,'Camera Operator'),(37799,1400010,9,'Property Master'),(37799,1403191,10,'Visual Effects Producer'),(37799,1405704,8,'Key Hair Stylist'),(37799,1406614,6,'Sound Re-Recording Mixer'),(37799,1408293,8,'Hair Department Head'),(37799,1411509,7,'Set Designer'),(37799,1411517,7,'Greensman'),(37799,1412767,8,'Hairstylist'),(37799,1413045,3,'Location Manager'),(37799,1415342,3,'Production Supervisor'),(37799,1415464,5,'Dialogue Editor'),(37799,1415465,6,'Sound Effects Editor'),(37799,1415509,6,'Music Editor'),(37799,1422418,6,'Music Editor'),(37799,1424186,3,'Location Manager'),(37799,1427522,3,'Location Manager'),(37799,1428851,2,'Script Supervisor'),(37799,1447626,11,'Gaffer'),(37799,1463778,11,'Lighting Technician'),(37799,1478854,6,'Foley'),(37799,1486851,5,'Assistant Editor'),(37799,1533033,1,'Grip'),(37799,1534966,8,'Hairstylist'),(37799,1534967,8,'Makeup Artist'),(37799,1534968,9,'Post Production Supervisor'),(37799,1534969,2,'Assistant Director'),(37799,1534970,7,'Standby Painter'),(37799,1534971,9,'Propmaker'),(37799,1534973,7,'Painter'),(37799,1534974,8,'Set Dressing Artist'),(37799,1534976,9,'Propmaker'),(37799,1534978,9,'Carpenter'),(37799,1534981,9,'Carpenter'),(37799,1534982,9,'Propmaker'),(37799,1534985,6,'Boom Operator'),(37799,1534986,6,'Sound'),(37799,1534987,6,'Sound mixer'),(37799,1535087,9,'Special Effects'),(37799,1535088,10,'Digital Compositors'),(37799,1535090,10,'Visual Effects Supervisor'),(37799,1535093,10,'Digital Compositors'),(37799,1535095,9,'Stunts'),(37799,1535096,1,'Grip'),(37799,1535097,1,'Grip'),(37799,1535100,1,'Grip'),(37799,1535101,1,'Grip'),(37799,1535102,1,'Grip'),(37799,1535103,11,'Rigging Grip'),(37799,1535104,11,'Rigging Grip'),(37799,1535105,6,'ADR & Dubbing'),(37799,1535108,9,'Craft Service'),(37799,1535470,9,'Craft Service'),(37799,1554385,10,'VFX Artist'),(37799,1554387,10,'VFX Artist'),(257091,5957,7,'Set Decoration'),(257091,11475,7,'Production Design'),(257091,17146,1,'Director of Photography'),(257091,13101,4,'Screenplay'),(257091,13101,4,'Story'),(257091,19971,8,'Costume Design'),(257091,23659,3,'Producer'),(257091,23486,6,'Original Music Composer'),(257091,41080,3,'Casting'),(257091,52803,2,'Director'),(257091,52803,4,'Screenplay'),(257091,55710,4,'Story'),(257091,55710,3,'Producer'),(257091,56461,3,'Executive Producer'),(257091,99410,3,'Executive Producer'),(257091,111456,5,'Editor'),(257091,214718,4,'Screenplay'),(257091,214718,4,'Story'),(257091,1040860,7,'Art Direction'),(257091,1095320,6,'Music Editor'),(257091,1123424,3,'Executive Producer'),(257091,1367502,11,'Gaffer'),(257091,1393396,1,'Still Photographer'),(257091,1394984,6,'Music Editor'),(257091,1400530,7,'Art Direction'),(257091,1414546,3,'Co-Producer'),(257091,1478953,2,'Script Supervisor'),(257091,1529999,6,'Music Supervisor'),(109410,36,1,'Director of Photography'),(109410,547,3,'Casting'),(109410,11079,7,'Set Decoration'),(109410,4140,6,'Original Music Composer'),(109410,4723,4,'Screenplay'),(109410,4723,2,'Director'),(109410,10365,7,'Production Design'),(109410,15017,8,'Makeup Artist'),(109410,11001,5,'Editor'),(109410,33017,9,'Stunt Coordinator'),(109410,52452,6,'Music Supervisor'),(109410,52453,6,'Music Supervisor'),(109410,54211,3,'Producer'),(109410,61091,3,'Executive Producer'),(109410,74783,9,'Special Effects Coordinator'),(109410,94534,3,'Executive Producer'),(109410,119117,8,'Costume Design'),(109410,143894,3,'Co-Producer'),(109410,146026,1,'Still Photographer'),(109410,160742,3,'Executive Producer'),(109410,1046115,5,'Editor'),(109410,1341138,6,'Sound Re-Recording Mixer'),(109410,1347755,6,'Music Editor'),(109410,1352959,8,'Makeup Department Head'),(109410,1382496,3,'Co-Producer'),(109410,1397822,6,'Supervising Sound Editor'),(109410,1403421,2,'Script Supervisor'),(109410,1403438,5,'Dialogue Editor'),(109410,1403440,6,'Sound Designer'),(109410,1403440,6,'Sound Effects Editor'),(109410,1403441,6,'Sound Effects Editor'),(109410,1411856,6,'Music Editor'),(109410,1424694,1,'Camera Operator'),(109410,1424694,1,'Steadicam Operator'),(109410,1428582,8,'Hair Department Head'),(109410,1433021,6,'Sound Re-Recording Mixer'),(109410,1457666,5,'Assistant Editor'),(109410,1460672,9,'Post Production Supervisor'),(109410,1506359,7,'Art Department Coordinator'),(109410,1511710,6,'Sound mixer'),(109410,1553857,5,'Dialogue Editor'),(109410,1553860,3,'Casting Associate'),(109410,1553863,3,'Co-Producer'),(100042,2507,1,'Director of Photography'),(100042,6114,3,'Executive Producer'),(100042,7415,3,'Casting'),(100042,7395,2,'Director'),(100042,7395,4,'Writer'),(100042,7395,3,'Producer'),(100042,7396,2,'Director'),(100042,7396,4,'Writer'),(100042,7396,3,'Producer'),(100042,7407,3,'Producer'),(100042,7408,3,'Producer'),(100042,15017,8,'Makeup Artist'),(100042,21800,4,'Writer'),(100042,42634,7,'Production Design'),(100042,45830,3,'Executive Producer'),(100042,51702,3,'Executive Producer'),(100042,51703,3,'Executive Producer'),(100042,55162,4,'Writer'),(100042,74619,4,'Writer'),(100042,179974,3,'Executive Producer'),(100042,212576,4,'Writer'),(100042,989320,5,'Editor'),(100042,1027545,3,'Producer'),(100042,1027550,3,'Producer'),(100042,1428252,3,'Executive Producer'),(100042,1428255,6,'Original Music Composer'),(257211,3032,5,'Editor'),(257211,4183,3,'Executive Producer'),(257211,10572,6,'Original Music Composer'),(257211,5582,1,'Director of Photography'),(257211,7481,3,'Casting'),(257211,9178,7,'Production Design'),(257211,11713,7,'Art Direction'),(257211,17221,7,'Set Decoration'),(257211,17698,2,'Director'),(257211,17698,3,'Producer'),(257211,17698,4,'Writer'),(257211,52161,6,'Music Supervisor'),(257211,58855,3,'Casting'),(257211,968175,7,'Art Direction'),(257211,1020057,3,'Casting'),(257211,1123348,3,'Producer'),(257211,1192700,6,'Music Supervisor'),(257211,1451219,3,'Executive Producer'),(257211,1466268,3,'Casting'),(257211,1695385,3,'Co-Producer'),(257211,1695386,3,'Associate Producer'),(257211,1695387,3,'Associate Producer'),(257211,1695388,8,'Costume Design'),(323675,298,3,'Executive Producer'),(323675,9778,3,'Producer'),(323675,11957,3,'Producer'),(323675,24310,1,'Director of Photography'),(323675,31121,3,'Producer'),(323675,20223,3,'Executive Producer'),(323675,20400,2,'Director'),(323675,47364,4,'Characters'),(323675,49911,6,'Original Music Composer'),(323675,54047,4,'Writer'),(323675,54048,4,'Writer'),(323675,57769,5,'Editor'),(323675,65135,3,'Producer'),(323675,65780,3,'Executive Producer'),(323675,112521,7,'Production Design'),(323675,94546,3,'Casting'),(323675,959114,3,'Executive Producer'),(323675,1200487,8,'Costume Design'),(323675,1378195,7,'Set Decoration'),(323675,1521395,7,'Production Design'),(323675,1555300,3,'Executive Producer'),(323675,1718777,7,'Set Decoration'),(323675,1769824,7,'Set Decoration'),(193610,545,3,'Casting'),(193610,11151,2,'Director'),(193610,63989,3,'Producer'),(193610,1173989,4,'Screenplay'),(296098,153,6,'Original Music Composer'),(296098,488,2,'Director'),(296098,488,3,'Producer'),(296098,492,1,'Director of Photography'),(296098,493,5,'Editor'),(296098,1223,4,'Writer'),(296098,1224,4,'Writer'),(296098,2242,3,'Casting'),(296098,2216,6,'Sound Re-Recording Mixer'),(296098,4769,3,'Executive Producer'),(296098,5338,6,'Sound Effects Editor'),(296098,7764,6,'Supervising Sound Editor'),(296098,8160,6,'Foley'),(296098,8163,6,'Foley'),(296098,10684,3,'Executive Producer'),(296098,11272,7,'Supervising Art Director'),(296098,40778,11,'Gaffer'),(296098,40789,11,'Rigging Gaffer'),(296098,40803,8,'Key Hair Stylist'),(296098,15528,9,'Special Effects Coordinator'),(296098,21846,7,'Set Decoration'),(296098,23485,3,'Producer'),(296098,31519,3,'Executive Producer'),(296098,36924,7,'Art Direction'),(296098,53735,7,'Art Department Coordinator'),(296098,117206,8,'Hair Department Head'),(296098,970192,7,'Set Decoration'),(296098,970199,7,'Supervising Art Director'),(296098,1023711,7,'Production Design'),(296098,1023713,8,'Costume Design'),(296098,1031561,3,'Casting'),(296098,1102140,3,'Executive Producer'),(296098,1307621,10,'Visual Effects Supervisor'),(296098,1312252,3,'Casting'),(296098,1323533,4,'Writer'),(296098,1328380,8,'Costume Supervisor'),(296098,1335886,8,'Costume Supervisor'),(296098,1337458,6,'Sound Mixer'),(296098,1338976,6,'Sound Re-Recording Mixer'),(296098,1347722,8,'Makeup Department Head'),(296098,1347730,9,'Property Master'),(296098,1347750,8,'Costume Supervisor'),(296098,1347761,2,'Script Supervisor'),(296098,1371013,3,'Producer'),(296098,1378672,7,'Construction Coordinator'),(296098,1380001,1,'Camera Operator'),(296098,1393448,1,'Still Photographer'),(296098,1395463,1,'Camera Operator'),(296098,1398100,10,'Visual Effects Producer'),(296098,1399447,7,'Assistant Art Director'),(296098,1399455,7,'Art Direction'),(296098,1402076,11,'Gaffer'),(296098,1406584,8,'Makeup Artist'),(296098,1407021,1,'Steadicam Operator'),(296098,1408384,10,'Visual Effects Supervisor'),(296098,1411803,7,'Assistant Art Director'),(296098,1428229,6,'Music Editor'),(296098,1439067,9,'Visual Effects Editor'),(296098,1439740,10,'Visual Effects Supervisor'),(296098,1447617,9,'Visual Effects Editor'),(296098,1458583,5,'Digital Intermediate'),(296098,1459899,9,'Visual Effects Editor'),(296098,1459925,9,'CG Supervisor'),(296098,1530231,9,'Special Effects Coordinator'),(296098,1530231,10,'Special Effects Supervisor'),(296098,1534620,11,'Rigging Gaffer'),(296098,1545978,10,'Visual Effects Coordinator'),(296098,1545979,10,'Visual Effects Coordinator'),(296098,1546881,11,'Rigging Grip'),(296098,1551516,11,'Gaffer'),(296098,1556632,6,'ADR & Dubbing'),(296098,1561360,5,'Dialogue Editor'),(296098,1565731,7,'Art Department Coordinator'),(296098,1565732,7,'Art Department Coordinator'),(296098,1565735,3,'Casting Associate'),(296098,1565736,8,'Assistant Costume Designer'),(296098,1565737,8,'Assistant Costume Designer'),(296098,1565738,8,'Costume Supervisor'),(296098,1565739,8,'Key Hair Stylist'),(296098,1590390,9,'Property Master'),(296098,1597956,1,'First Assistant Camera'),(296098,1597957,1,'First Assistant Camera'),(296098,1597958,1,'First Assistant Camera'),(296098,1597959,10,'Animation'),(296098,1597960,10,'Animation'),(296098,1597961,10,'Visual Effects Coordinator'),(296098,1597962,10,'Visual Effects Coordinator'),(296098,1597963,10,'Visual Effects Coordinator'),(296098,1597964,10,'Visual Effects Coordinator'),(296098,1597965,10,'Visual Effects Producer'),(296098,1597966,10,'Visual Effects Producer'),(296098,1597967,10,'Visual Effects Supervisor'),(50348,8377,6,'Original Music Composer'),(50348,68602,3,'Producer'),(50348,3953,3,'Producer'),(50348,3954,3,'Producer'),(50348,3965,3,'Casting'),(50348,35180,3,'Producer'),(50348,53182,7,'Set Decoration'),(50348,55079,1,'Director of Photography'),(50348,57993,4,'Novel'),(50348,117409,8,'Makeup Department Head'),(50348,144221,2,'Director'),(50348,558231,5,'Editor'),(50348,958691,7,'Production Design'),(50348,1034748,3,'Casting'),(50348,1193620,8,'Costume Design'),(50348,1217611,4,'Screenplay'),(50348,1276819,9,'Stunt Coordinator'),(50348,1363083,6,'Music Supervisor'),(50348,1367665,6,'Boom Operator'),(50348,1377239,2,'Script Supervisor'),(50348,1402560,1,'Still Photographer'),(50348,1408706,6,'Music Editor'),(50348,1412990,1,'Camera Operator'),(50348,1412990,1,'Steadicam Operator'),(50348,1433996,8,'Hair Department Head'),(50348,1466245,6,'Sound mixer'),(50348,1555693,6,'Music Supervisor'),(48138,1113,3,'Casting'),(48138,1091,3,'Producer'),(48138,5438,7,'Production Design'),(48138,9039,6,'Original Music Composer'),(48138,9149,3,'Executive Producer'),(48138,40752,7,'Art Direction'),(48138,40776,3,'Executive Producer'),(48138,12842,3,'Producer'),(48138,19310,8,'Costume Design'),(48138,21846,7,'Set Decoration'),(48138,24164,7,'Supervising Art Director'),(48138,36924,7,'Art Direction'),(48138,37162,3,'Executive Producer'),(48138,39726,3,'Executive Producer'),(48138,49828,1,'Steadicam Operator'),(48138,59521,2,'Director'),(48138,59528,1,'Director of Photography'),(48138,62011,3,'Producer'),(48138,64335,5,'Editor'),(48138,132350,4,'Screenplay'),(48138,139919,4,'Screenplay'),(48138,139920,4,'Novel'),(48138,971359,6,'Original Music Composer'),(48138,1319628,9,'Post Production Supervisor'),(48138,1324126,7,'Art Direction'),(48138,1324128,8,'Costume Supervisor'),(48138,1380002,1,'Still Photographer'),(48138,1398189,2,'Script Supervisor'),(48138,1462378,3,'Production Supervisor'),(48138,1533101,6,'Music Supervisor'),(227159,6922,7,'Art Direction'),(227159,9423,6,'Supervising Sound Editor'),(227159,9423,6,'Sound Re-Recording Mixer'),(227159,10397,8,'Costume Design'),(227159,11506,1,'Director of Photography'),(227159,13626,7,'Set Decoration'),(227159,23787,8,'Makeup Department Head'),(227159,24192,6,'Music Supervisor'),(227159,49911,6,'Original Music Composer'),(227159,52935,4,'Story'),(227159,54585,7,'Production Design'),(227159,74619,2,'Director'),(227159,74619,4,'Screenplay'),(227159,74619,4,'Story'),(227159,212576,4,'Screenplay'),(227159,212576,4,'Story'),(227159,224530,5,'Editor'),(227159,928414,3,'Casting'),(227159,1031811,6,'Supervising Sound Editor'),(227159,1222776,4,'Characters'),(227159,1236679,4,'Story'),(227159,1399861,6,'Sound Re-Recording Mixer'),(227159,1400362,3,'Production Supervisor'),(227159,1411166,8,'Hair Department Head'),(227159,1412699,6,'Sound Effects Editor'),(227159,1415109,1,'Still Photographer'),(227159,1417415,7,'Property Master'),(227159,1427384,2,'Script Supervisor'),(227159,1440295,7,'Art Department Coordinator'),(227159,1527657,6,'Music Supervisor'),(227159,1533545,6,'Sound Effects Editor'),(227159,1550235,6,'Sound Mixer'),(227159,1817119,3,'Executive Producer'),(68179,58327,3,'Producer'),(68179,60250,7,'Production Design'),(68179,60250,3,'Production Manager'),(68179,66725,5,'Editor'),(68179,61373,4,'Writer'),(68179,61372,4,'Writer'),(68179,61379,3,'Producer'),(68179,1098477,2,'Director'),(68179,1098477,4,'Screenplay'),(68179,1098478,4,'Screenplay'),(68179,1273226,5,'Editor'),(68179,1273227,7,'Art Direction'),(68179,1447323,4,'Storyboard'),(71864,3290,4,'Screenplay'),(71864,3290,2,'Director'),(71864,68016,6,'Orchestrator'),(71864,1463178,1,'Camera Technician'),(209451,190,2,'Director'),(209451,190,3,'Producer'),(209451,384,5,'Editor'),(209451,375,6,'Supervising Sound Editor'),(209451,460,1,'Director of Photography'),(209451,461,8,'Costume Design'),(209451,795,7,'Production Design'),(209451,4746,3,'Producer'),(209451,10439,4,'Screenplay'),(209451,10439,4,'Musical'),(209451,16729,3,'Producer'),(209451,11091,3,'Executive Producer'),(209451,63946,3,'Executive Producer'),(209451,114479,3,'Executive Producer'),(209451,74319,5,'Editor'),(209451,83066,8,'Hair Department Head'),(209451,204367,3,'Executive Producer'),(209451,935490,3,'Casting'),(209451,1251749,3,'Executive Producer'),(209451,1274515,4,'Screenplay'),(209451,1274515,4,'Musical'),(209451,1333900,8,'Makeup Department Head'),(209451,1355532,2,'Script Supervisor'),(209451,1361169,3,'Executive Producer'),(209451,1368865,6,'Supervising Sound Editor'),(209451,1458579,6,'Sound Mixer'),(209451,1708176,6,'Music Supervisor'),(39513,467,3,'Executive Producer'),(39513,5215,8,'Costume Design'),(39513,2236,3,'Producer'),(39513,2238,3,'Producer'),(39513,5387,1,'Director of Photography'),(39513,6489,6,'Original Music Composer'),(39513,9150,3,'Executive Producer'),(39513,9151,3,'Executive Producer'),(39513,11108,4,'Writer'),(39513,11109,4,'Writer'),(39513,11112,3,'Producer'),(39513,11114,5,'Editor'),(39513,16368,6,'Music Editor'),(39513,41080,3,'Casting'),(39513,41081,7,'Production Design'),(39513,44482,3,'Executive Producer'),(39513,44482,3,'Unit Production Manager'),(39513,54733,2,'Director'),(39513,71560,7,'Set Decoration'),(39513,83117,8,'Makeup Artist'),(39513,223202,6,'Music Supervisor'),(39513,223203,10,'Visual Effects Supervisor'),(39513,223237,10,'Animation Supervisor'),(39513,223238,10,'Visual Effects Supervisor'),(39513,223239,6,'Sound mixer'),(39513,223240,3,'Production Accountant'),(39513,223242,3,'Location Manager'),(39513,223243,7,'Art Direction'),(39513,223244,9,'Post Production Supervisor'),(39513,223245,5,'First Assistant Editor'),(39513,223246,9,'Visual Effects Editor'),(39513,223247,6,'Supervising Sound Editor'),(39513,1215401,9,'Stunts'),(39513,1269670,8,'Makeup Department Head'),(39513,1319744,8,'Costume Supervisor'),(39513,1357063,9,'Stunt Coordinator'),(39513,1373711,6,'Sound Effects Editor'),(39513,1392609,6,'Sound Re-Recording Mixer'),(39513,1392611,6,'Sound Re-Recording Mixer'),(39513,1393302,6,'Sound Effects Editor'),(39513,1404276,8,'Hair Department Head'),(39513,1413122,11,'Gaffer'),(39513,1418403,11,'Rigging Gaffer'),(39513,1425513,6,'Music Editor'),(39513,1425828,1,'Steadicam Operator'),(39513,1442499,8,'Hairstylist'),(39513,1452675,1,'Still Photographer'),(39513,1532733,8,'Assistant Costume Designer'),(39513,1537867,3,'Production Coordinator'),(39513,1537869,3,'Production Coordinator'),(39513,1537872,1,'Steadicam Operator'),(39513,1537883,8,'Hairstylist'),(39513,1537885,8,'Hairstylist'),(82687,10400,3,'Executive Producer'),(82687,29214,2,'Director'),(82687,15892,4,'Screenplay'),(82687,15892,3,'Executive Producer'),(82687,19274,3,'Executive Producer'),(82687,52160,3,'Producer'),(82687,54734,3,'Executive Producer'),(82687,54734,3,'Producer'),(82687,56158,3,'Producer'),(82687,57634,3,'Executive Producer'),(82687,928595,3,'Producer'),(41446,5140,2,'Director'),(41446,5140,3,'Producer'),(41446,9573,1,'Director of Photography'),(41446,26458,4,'Writer'),(41446,26458,4,'Characters'),(41446,26458,3,'Producer'),(41446,26458,4,'Screenplay'),(41446,35581,3,'Executive Producer'),(41446,63291,3,'Executive Producer'),(41446,1552521,9,'Stunts'),(41446,1813644,9,'Stunts'),(225886,29,3,'Producer'),(225886,1589,6,'Original Music Composer'),(225886,6874,3,'Executive Producer'),(225886,17146,1,'Director of Photography'),(225886,24186,5,'Editor'),(225886,58357,3,'Unit Production Manager'),(225886,38412,5,'Editor'),(225886,41081,7,'Production Design'),(225886,41084,8,'Costume Design'),(225886,41088,4,'Screenplay'),(225886,41088,3,'Executive Producer'),(225886,51851,2,'Director'),(225886,51851,3,'Executive Producer'),(225886,51612,3,'Producer'),(225886,51613,3,'Producer'),(225886,52934,4,'Screenplay'),(225886,57705,2,'Script Supervisor'),(225886,61107,3,'Executive Producer'),(225886,64606,3,'Casting'),(225886,76014,3,'Casting'),(225886,83083,5,'Dialogue Editor'),(225886,113226,4,'Screenplay'),(225886,1011958,7,'Art Direction'),(225886,1124533,3,'Executive Producer'),(225886,1204331,7,'Set Decoration'),(225886,1300755,6,'Sound Effects Editor'),(225886,1389595,8,'Costume Supervisor'),(225886,1395255,6,'Sound Re-Recording Mixer'),(225886,1400534,1,'Still Photographer'),(225886,1403440,6,'Sound Designer'),(225886,1403443,6,'Supervising Sound Editor'),(225886,1408395,11,'Gaffer'),(225886,1411272,1,'Camera Operator'),(225886,1411272,1,'Steadicam Operator'),(225886,1419107,11,'Rigging Gaffer'),(225886,1434599,9,'Stunt Coordinator'),(225886,1537463,6,'Sound Re-Recording Mixer'),(225886,1546047,6,'Music Editor'),(225886,1546047,6,'Music Supervisor'),(225886,1546440,3,'Co-Producer'),(225886,1546441,6,'Music Supervisor'),(225886,1546442,6,'Sound mixer'),(225886,1546443,3,'Production Coordinator'),(225886,1546444,1,'First Assistant Camera'),(55779,6041,6,'Original Music Composer'),(55779,21140,5,'Editor'),(55779,21585,3,'Producer'),(55779,21586,3,'Producer'),(55779,27160,8,'Costume Design'),(55779,47102,1,'Director of Photography'),(55779,46083,7,'Production Design'),(55779,53648,3,'Casting'),(55779,93214,2,'Director'),(55779,115033,4,'Screenplay'),(55779,223991,7,'Art Direction'),(55779,1007395,9,'Stunts Coordinator'),(55779,1031810,6,'Sound Effects Editor'),(55779,1049456,6,'Sound Effects Editor'),(55779,1339987,7,'Greensman'),(55779,1342657,6,'Sound Designer'),(55779,1355894,10,'Visual Effects'),(55779,1374169,6,'Foley'),(55779,1377293,6,'Sound Effects Editor'),(55779,1378228,6,'Sound Re-Recording Mixer'),(55779,1378688,7,'Assistant Art Director'),(55779,1392898,7,'Set Designer'),(55779,1394935,7,'Set Designer'),(55779,1394949,7,'Sculptor'),(55779,1399861,6,'Sound Re-Recording Mixer'),(55779,1401395,9,'Property Master'),(55779,1401631,6,'ADR & Dubbing'),(55779,1401631,5,'Dialogue Editor'),(55779,1406616,6,'ADR & Dubbing'),(55779,1407805,9,'Makeup Effects'),(55779,1410328,9,'Makeup Effects'),(55779,1413450,7,'Sculptor'),(55779,1421695,7,'Construction Coordinator'),(55779,1441250,6,'Supervising Sound Editor'),(55779,1441685,7,'Set Decoration'),(55779,1441686,7,'Set Decoration'),(55779,1441687,7,'Art Department Coordinator'),(55779,1441688,7,'Set Designer'),(55779,1441689,7,'Set Designer'),(55779,1460644,9,'Visual Effects Editor'),(55779,1460644,10,'Color Designer'),(55779,1460755,8,'Hairstylist'),(55779,1579180,1,'First Assistant Camera'),(188161,7494,3,'Casting'),(188161,11876,5,'Editor'),(188161,15017,8,'Makeup Department Head'),(188161,19282,3,'Producer'),(188161,42632,1,'Director of Photography'),(188161,49285,6,'Original Music Composer'),(188161,52139,2,'Director'),(188161,52139,3,'Producer'),(188161,52139,4,'Writer'),(188161,53811,7,'Production Design'),(188161,570785,3,'Executive Producer'),(188161,570785,4,'Writer'),(188161,1089071,3,'Producer'),(188161,1224494,3,'Executive Producer'),(188161,1224494,4,'Writer'),(188161,1361021,3,'Executive Producer'),(188161,1452989,10,'Animation Supervisor'),(188161,1452991,10,'Animation'),(188161,1452998,10,'Animation'),(188161,1453014,10,'Animation'),(188161,1453943,10,'Visual Effects Supervisor'),(188161,1488513,9,'Stunts'),(64685,27,4,'Screenplay'),(64685,468,2,'Director'),(64685,2949,6,'Original Music Composer'),(64685,4853,4,'Novel'),(38357,10567,4,'Writer'),(38357,7017,2,'Director'),(38357,15017,8,'Makeup Artist'),(38357,15344,3,'Producer'),(38357,28977,3,'Producer'),(62835,59,4,'Screenplay'),(62835,59,3,'Producer'),(62835,61,4,'Screenplay'),(62835,561,3,'Casting'),(62835,16370,9,'Special Effects Coordinator'),(62835,18186,3,'Producer'),(62835,20722,8,'Costume Design'),(62835,23728,3,'Executive Producer'),(62835,62466,3,'Line Producer'),(62835,63129,3,'Casting'),(62835,67596,1,'Helicopter Camera'),(62835,73389,7,'Production Design'),(62835,75035,2,'Director'),(62835,119204,9,'Stunt Coordinator'),(62835,135764,3,'Location Manager'),(62835,237345,9,'Stunt Coordinator'),(62835,780712,6,'Original Music Composer'),(62835,904186,1,'Director of Photography'),(62835,928490,5,'Editor'),(62835,928496,2,'Script Supervisor'),(62835,928498,7,'Art Direction'),(62835,929839,6,'Sound Designer'),(62835,931303,9,'Stunt Coordinator'),(62835,956198,9,'Stunt Coordinator'),(62835,1023192,7,'Art Direction'),(62835,1048930,7,'Set Decoration'),(62835,1119463,3,'Producer'),(62835,1119464,3,'Executive Producer'),(62835,1119465,3,'Executive Producer'),(62835,1119466,3,'Line Producer'),(62835,1119467,6,'Original Music Composer'),(62835,1120514,7,'Supervising Art Director'),(62835,1171299,6,'Foley'),(62835,1253678,7,'Set Decoration'),(62835,1278085,6,'Boom Operator'),(62835,1321362,8,'Costume Supervisor'),(62835,1323760,8,'Makeup Artist'),(62835,1337636,7,'Art Direction'),(62835,1337637,7,'Art Direction'),(62835,1337638,7,'Art Direction'),(62835,1337639,9,'Property Master'),(62835,1337640,7,'Art Department Coordinator'),(62835,1337641,7,'Art Department Coordinator'),(62835,1337642,7,'Set Designer'),(62835,1337643,7,'Art Department Coordinator'),(62835,1337644,7,'Construction Coordinator'),(62835,1337645,6,'Boom Operator'),(62835,1337646,6,'Boom Operator'),(62835,1337647,6,'Foley'),(62835,1337648,6,'Boom Operator'),(62835,1337650,10,'Visual Effects Supervisor'),(62835,1337651,10,'Visual Effects Supervisor'),(62835,1337652,10,'Visual Effects'),(62835,1337653,10,'Visual Effects'),(62835,1337655,10,'Visual Effects'),(62835,1337656,3,'Casting'),(62835,1337657,8,'Costume Supervisor'),(62835,1337658,5,'Color Timer'),(62835,1337659,9,'Transportation Coordinator'),(62835,1337660,9,'Transportation Captain'),(62835,1337661,9,'Transportation Co-Captain'),(62835,1337662,9,'Transportation Coordinator'),(62835,1337663,2,'Script Supervisor'),(62835,1376265,6,'Sound Editor'),(62835,1404840,6,'Sound Re-Recording Mixer'),(62835,1407729,7,'Leadman'),(62835,1407747,3,'Location Manager'),(62835,1412469,8,'Hairstylist'),(62835,1412474,8,'Makeup Artist'),(62835,1412476,8,'Makeup Artist'),(62835,1412477,3,'Production Manager'),(62835,1412478,7,'Assistant Art Director'),(62835,1412479,7,'Assistant Art Director'),(62835,1412480,7,'Assistant Art Director'),(62835,1412481,7,'Leadman'),(62835,1412482,7,'Leadman'),(62835,1412483,5,'Dialogue Editor'),(62835,1412484,6,'ADR & Dubbing'),(62835,1412485,10,'Visual Effects Producer'),(62835,1412486,1,'Steadicam Operator'),(62835,1412487,1,'Steadicam Operator'),(62835,1412488,1,'Still Photographer'),(62835,1412489,1,'Still Photographer'),(62835,1412491,11,'Gaffer'),(62835,1412492,11,'Rigging Gaffer'),(62835,1412493,8,'Set Costumer'),(62835,1412494,8,'Set Costumer'),(62835,1412495,8,'Set Costumer'),(62835,1412496,8,'Set Costumer'),(62835,1412497,3,'Location Manager'),(62835,1412498,3,'Production Accountant'),(80278,2635,3,'Casting'),(80278,16999,3,'Producer'),(80278,17003,3,'Producer'),(80278,27451,3,'Producer'),(80278,51894,2,'Director'),(80278,51895,4,'Writer'),(80278,51897,6,'Original Music Composer'),(80278,51898,1,'Director of Photography'),(80278,51901,8,'Costume Design'),(80278,1083072,8,'Costume Design'),(80278,1308605,8,'Costume Design'),(78698,1527,9,'Cinematography'),(78698,2120,6,'Music'),(78698,5508,7,'Production Design'),(78698,29009,2,'Director'),(78698,38418,4,'Screenplay'),(78698,38419,4,'Screenplay'),(78698,59838,7,'Art Direction'),(78698,1072323,4,'Author'),(78698,1455461,11,'Lighting Technician'),(78698,1460621,10,'Visual Effects Producer'),(56715,4023,3,'Casting'),(56715,60,3,'Producer'),(56715,1113,3,'Casting'),(56715,3192,3,'Casting'),(56715,4034,8,'Costume Design'),(56715,5328,3,'Casting'),(56715,6050,1,'Director of Photography'),(56715,11098,6,'Original Music Composer'),(56715,11505,4,'Screenplay'),(56715,20214,7,'Production Design'),(56715,28781,4,'Screenplay'),(56715,39124,7,'Set Decoration'),(56715,45862,5,'Editor'),(56715,58015,3,'Producer'),(56715,64909,4,'Screenplay'),(56715,64909,2,'Director'),(56715,227360,8,'Makeup Artist'),(56715,1206666,7,'Art Direction'),(56715,1300923,8,'Hairstylist'),(56715,1319160,8,'Costume Supervisor'),(56715,1336164,8,'Hairstylist'),(56715,1409267,8,'Wigmaker'),(56715,1463139,8,'Makeup Artist'),(56715,1480633,2,'Script Supervisor'),(56715,1524188,7,'Art Department Coordinator'),(56715,1524189,8,'Costume Supervisor'),(72358,4197,7,'Production Design'),(72358,4500,6,'Original Music Composer'),(72358,2963,3,'Producer'),(72358,4275,3,'Producer'),(72358,4485,4,'Writer'),(72358,9616,8,'Costume Design'),(72358,12945,6,'Music Editor'),(72358,14377,3,'Casting'),(72358,16489,1,'Director of Photography'),(72358,18956,3,'Producer'),(72358,53177,2,'Director'),(72358,53177,3,'Producer'),(72358,53180,3,'Producer'),(72358,62759,5,'Editor'),(72358,60935,3,'Casting'),(72358,68016,6,'Orchestrator'),(72358,117409,8,'Makeup Department Head'),(72358,968316,9,'Stunt Coordinator'),(72358,993236,3,'Producer'),(72358,1323077,8,'Costume Supervisor'),(72358,1325584,8,'Key Costumer'),(72358,1335122,6,'Sound Effects Editor'),(72358,1345596,6,'Supervising Dialogue Editor'),(72358,1345608,9,'Stunt Coordinator'),(72358,1393390,10,'Visual Effects Supervisor'),(72358,1400365,7,'Set Decoration'),(72358,1401606,8,'Key Hair Stylist'),(72358,1412195,6,'Supervising Sound Editor'),(72358,1422065,9,'Special Effects Coordinator'),(72358,1424894,8,'Hair Department Head'),(72358,1493864,7,'Art Direction'),(72358,1533093,7,'Art Department Coordinator'),(72358,1556513,6,'Sound Effects Editor'),(72358,1712105,8,'Key Makeup Artist'),(72358,1815894,9,'Visual Effects Editor'),(72358,1815910,6,'Music Supervisor'),(266396,1091,3,'Producer'),(266396,2228,4,'Screenplay'),(266396,2228,3,'Producer'),(266396,7229,6,'Original Music Composer'),(266396,9149,3,'Executive Producer'),(266396,28636,7,'Production Design'),(266396,29609,7,'Supervising Art Director'),(266396,35453,2,'Director'),(266396,53527,8,'Costume Design'),(266396,43141,4,'Screenplay'),(266396,54529,7,'Art Direction'),(266396,57294,4,'Screenplay'),(266396,59528,1,'Director of Photography'),(266396,62011,3,'Producer'),(266396,62434,5,'Editor'),(266396,78196,3,'Associate Producer'),(266396,587802,3,'Co-Producer'),(266396,942186,8,'Hairstylist'),(266396,968632,3,'Executive Producer'),(266396,969757,3,'Producer'),(266396,1018073,3,'Casting'),(266396,1054301,3,'Executive Producer'),(266396,1066819,3,'Line Producer'),(266396,1079914,4,'Novel'),(266396,1102803,8,'Hairstylist'),(266396,1121973,3,'Associate Producer'),(266396,1130038,3,'Executive Producer'),(266396,1398189,2,'Script Supervisor'),(266396,1405369,8,'Set Costumer'),(266396,1410275,8,'Makeup Artist'),(266396,1418148,7,'Art Direction'),(266396,1418153,7,'Art Department Coordinator'),(266396,1426311,8,'Makeup Artist'),(266396,1426860,8,'Set Costumer'),(266396,1439127,8,'Hairstylist'),(266396,1447191,3,'Executive Producer'),(266396,1459935,8,'Costume Supervisor'),(266396,1471946,3,'Co-Producer'),(266396,1475317,7,'Set Decoration'),(266396,1489006,7,'Art Direction'),(266396,1755841,3,'Co-Producer'),(266396,1755843,3,'Associate Producer'),(110415,3686,3,'Casting'),(110415,3959,3,'Co-Producer'),(110415,7229,6,'Original Music Composer'),(110415,4854,3,'Co-Producer'),(110415,4856,3,'Co-Producer'),(110415,10099,3,'Producer'),(110415,21684,4,'Screenplay'),(110415,21684,2,'Director'),(110415,21684,4,'Screenstory'),(110415,41288,3,'Producer'),(110415,43563,3,'Producer'),(110415,53455,4,'Screenplay'),(110415,56417,8,'Costume Design'),(110415,68909,1,'Director of Photography'),(110415,69943,4,'Original Story'),(110415,570306,5,'Editor'),(110415,962085,7,'Production Design'),(110415,1011188,3,'Casting'),(110415,1128834,3,'Producer'),(110415,1168598,3,'Producer'),(110415,1304278,4,'Original Story'),(110415,1304282,4,'Original Story'),(110415,1304287,7,'Art Direction'),(110415,1398936,3,'Unit Manager'),(110415,1442997,3,'Co-Producer'),(110415,1452555,5,'Editor'),(110415,1455486,2,'Assistant Director'),(110415,1457644,7,'Art Department Manager'),(110415,1480986,10,'Visual Effects'),(110415,1483829,7,'Set Designer'),(110415,1544356,7,'Set Decoration'),(110415,1569396,3,'Casting Assistant'),(110415,1674263,3,'Co-Producer'),(110415,1721340,3,'Production Coordinator'),(110415,1745986,3,'Unit Production Manager'),(110415,1753175,7,'Set Designer'),(110415,1843349,7,'Set Designer'),(110415,1882970,3,'Co-Producer'),(110415,1882971,3,'Co-Executive Producer'),(110415,1882972,3,'Co-Producer'),(110415,1882973,3,'Co-Executive Producer'),(110415,1882975,3,'Associate Producer'),(110415,1882976,3,'Co-Executive Producer'),(110415,1882977,3,'Associate Producer'),(110415,1882978,3,'Associate Producer'),(110415,1882979,3,'Associate Producer'),(110415,1882984,9,'Post Production Supervisor'),(110415,1882985,3,'Production Manager'),(110415,1882986,3,'Unit Production Manager'),(110415,1882988,3,'Unit Production Manager'),(110415,1882992,7,'Set Designer'),(110415,1882993,7,'Set Designer'),(110415,1882995,7,'Set Designer'),(110415,1882996,7,'Set Designer'),(110415,1882999,7,'Set Designer'),(110415,1883000,3,'Casting Assistant'),(110415,1883001,3,'Location Manager'),(110415,1883002,3,'Production Coordinator'),(110415,1883003,7,'Title Designer'),(110415,1883004,2,'Script Supervisor'),(110415,1883005,3,'Production Coordinator'),(110415,1883006,7,'Title Designer'),(77459,59,3,'Co-Producer'),(77459,32463,3,'Associate Producer'),(77459,39651,6,'Orchestrator'),(77459,54206,9,'Thanks'),(77459,54205,3,'Executive Producer'),(77459,54204,3,'Executive Producer'),(77459,56230,9,'Post Production Supervisor'),(77459,64399,3,'Production Supervisor'),(77459,65629,2,'Director'),(77459,65629,4,'Writer'),(77459,66841,6,'Original Music Composer'),(77459,109340,4,'Screenplay'),(77459,118713,10,'Animation Director'),(77459,998577,7,'Set Designer'),(77459,998584,10,'Animation Supervisor'),(77459,1015907,3,'Executive Producer'),(77459,1047588,3,'Line Producer'),(77459,1096440,6,'Music Programmer'),(77459,1282150,4,'Storyboard'),(77459,1297765,7,'Set Designer'),(77459,1297766,10,'Character Designer'),(77459,1540472,6,'Orchestrator'),(77459,1542343,3,'Production Supervisor'),(77459,1574077,3,'Assistant Production Manager'),(77459,1637475,6,'Music Supervisor'),(77459,1681495,2,'First Assistant Director'),(77459,1681511,3,'Line Producer'),(77459,1705477,4,'Storyboard'),(77459,1716984,10,'Animation'),(77459,1724718,6,'Foley'),(77459,1724719,6,'Sound Designer'),(77459,1724719,6,'Sound Editor'),(77459,1724719,6,'Recording Supervision'),(77459,1742332,7,'Production Design'),(77459,1804240,3,'Production Manager'),(77459,1804240,3,'Line Producer'),(77459,1820913,5,'Editor'),(77459,1820914,5,'Co-Editor'),(77459,1820915,6,'Music'),(77459,1821403,3,'Casting Assistant'),(77459,1821412,3,'Assistant Production Manager'),(77459,1821413,3,'Production Manager'),(77459,1821414,3,'Assistant Production Manager'),(77459,1821416,9,'Post Production Supervisor'),(77459,1821416,9,'Post-Production Manager'),(77459,1821417,10,'Character Designer'),(77459,1821418,7,'Set Designer'),(77459,1821419,6,'Assistant Sound Editor'),(77459,1821420,6,'Foley'),(77459,1821421,9,'Special Effects Coordinator'),(77459,1821422,10,'Digital Compositors'),(77459,1821423,11,'Lighting Supervisor'),(77459,1821424,10,'Character Designer'),(256040,147021,2,'Director'),(256040,147021,4,'Screenplay'),(256040,147022,4,'Story'),(256040,225318,6,'Original Music Composer'),(256040,552983,1,'Director of Photography'),(256040,581908,4,'Dialogue'),(256040,587735,9,'Stunt Coordinator'),(256040,961268,7,'Production Design'),(256040,1300814,6,'Foley'),(256040,1488790,3,'Producer'),(256040,1488791,3,'Producer'),(256040,1488792,4,'Story'),(256040,1488793,5,'Editor'),(256040,1560317,6,'Sound Re-Recording Mixer'),(256040,1606118,10,'Visual Effects Supervisor'),(256040,1606120,6,'Sound Designer'),(256040,1606145,8,'Costume Design'),(256040,1606146,8,'Costume Design'),(256040,1684194,9,'Choreographer'),(256040,1701630,3,'Producer'),(256040,1723497,6,'Sound Mixer'),(256040,1754152,2,'Assistant Director'),(256040,1754153,11,'Lighting Technician'),(256040,1754154,6,'Sound Editor'),(256040,1754155,7,'Art Direction'),(256040,1754156,7,'Assistant Art Director'),(256040,1754157,8,'Costume Design'),(256040,1803921,3,'Line Producer'),(62214,1720,3,'Casting'),(62214,1226,7,'Production Design'),(62214,510,2,'Director'),(62214,510,3,'Producer'),(62214,510,4,'Characters'),(62214,510,4,'Idea'),(62214,531,6,'Music'),(62214,541,5,'Editor'),(62214,900,6,'Sound Re-Recording Mixer'),(62214,1300,4,'Screenplay'),(62214,3996,6,'Sound Re-Recording Mixer'),(62214,9160,6,'Music Editor'),(62214,11226,7,'Art Direction'),(62214,10409,9,'Thanks'),(62214,11511,9,'Thanks'),(62214,12229,9,'Thanks'),(62214,12824,3,'Executive Producer'),(62214,34894,3,'Producer'),(62214,59745,3,'Local Casting'),(62214,29508,9,'Thanks'),(62214,125441,4,'Original Story'),(62214,146179,9,'Thanks'),(62214,172733,5,'Editor'),(62214,225791,3,'Unit Production Manager'),(62214,958088,4,'Storyboard'),(62214,959668,3,'Co-Producer'),(62214,1044492,5,'Associate Editor'),(62214,1053243,10,'Animation'),(62214,1117950,9,'Post Production Supervisor'),(62214,1134467,1,'Director of Photography'),(62214,1168620,4,'Storyboard'),(62214,1273104,3,'Production Coordinator'),(62214,1335182,6,'Supervising Dialogue Editor'),(62214,1335556,6,'Sound Effects Designer'),(62214,1341734,6,'Sound Effects Editor'),(62214,1364038,4,'Storyboard'),(62214,1364622,3,'Associate Producer'),(62214,1378828,6,'Sound Re-Recording Mixer'),(62214,1391724,10,'Animation'),(62214,1401375,10,'Lead Animator'),(62214,1408373,6,'Supervising Sound Editor'),(62214,1408374,6,'Sound Effects Editor'),(62214,1423225,10,'Animation'),(62214,1447338,4,'Storyboard'),(62214,1447370,10,'Animation'),(62214,1448047,10,'Animation'),(62214,1448052,10,'Lead Animator'),(62214,1448058,10,'Animation'),(62214,1448061,10,'Lead Animator'),(62214,1448071,10,'Animation Director'),(62214,1448076,10,'Animation Supervisor'),(62214,1450948,10,'Visual Effects Supervisor'),(62214,1453480,10,'Animation'),(62214,1453484,10,'Animation'),(62214,1453492,10,'Animation'),(62214,1453494,10,'Animation'),(62214,1453594,10,'Animation'),(62214,1453601,10,'Animation'),(62214,1453602,10,'Animation'),(62214,1453604,10,'Animation'),(62214,1453606,4,'Storyboard'),(62214,1453607,4,'Storyboard'),(62214,1453609,10,'Animation'),(62214,1453610,10,'Animation'),(62214,1453611,10,'Lead Animator'),(62214,1453612,4,'Storyboard'),(62214,1459875,6,'Assistant Sound Editor'),(62214,1511002,3,'Production Accountant'),(62214,1547231,6,'Orchestrator'),(62214,1555173,5,'First Assistant Editor'),(62214,1566831,6,'Orchestrator'),(62214,1651253,7,'Title Designer'),(62214,1651265,7,'Title Designer'),(62214,1661326,3,'Casting Associate'),(62214,1767234,3,'Line Producer'),(62214,1767236,2,'First Assistant Director'),(62214,1767242,7,'Art Direction'),(62214,1767243,11,'Gaffer'),(62214,1767244,3,'Production Coordinator'),(62214,1767245,3,'Production Coordinator'),(62214,1767246,2,'Second Assistant Director'),(62214,1767247,10,'Visual Effects Producer'),(62214,1767248,9,'Visual Effects Editor'),(64807,548,7,'Production Design'),(64807,894,6,'Original Music Composer'),(64807,3276,3,'Casting'),(64807,3305,3,'Executive Producer'),(64807,4501,1,'Director of Photography'),(64807,9616,8,'Costume Design'),(64807,16486,3,'Executive Producer'),(64807,16837,3,'Producer'),(64807,13426,2,'Director'),(64807,13426,3,'Producer'),(64807,41551,3,'Producer'),(64807,46942,5,'Editor'),(64807,59918,4,'Screenplay'),(64807,92350,7,'Set Decoration'),(64807,71079,3,'Producer'),(64807,578728,8,'Makeup Artist'),(64807,1119658,5,'Assistant Editor'),(64807,1123424,3,'Producer'),(64807,1265230,8,'Makeup Artist'),(64807,1316296,8,'Makeup Department Head'),(64807,1332188,8,'Hairstylist'),(64807,1342629,2,'Script Supervisor'),(64807,1403426,8,'Hairstylist'),(64807,1431553,8,'Makeup Artist'),(64807,1461192,8,'Hairstylist'),(64807,1490939,8,'Hairstylist'),(64807,1512725,8,'Key Hair Stylist'),(64807,1527657,6,'Music Supervisor'),(64807,1527917,8,'Hair Department Head'),(64807,1527918,8,'Makeup Artist'),(64807,1527934,5,'First Assistant Editor'),(64807,1536766,4,'Story'),(64807,1536766,4,'Screenplay'),(44865,12453,2,'Director'),(44865,12453,3,'Producer'),(44865,12453,4,'Writer'),(44865,12455,6,'Original Music Composer'),(44865,20475,3,'Producer'),(44865,45818,7,'Art Direction'),(44865,55773,6,'Music'),(44865,63422,1,'Director of Photography'),(44865,1072571,4,'Screenplay'),(44865,1447542,9,'Compositors'),(55787,275,9,'Cinematography'),(55787,2215,3,'Casting'),(55787,1213,6,'Original Music Composer'),(55787,2163,4,'Screenplay'),(55787,5632,7,'Production Design'),(55787,10943,2,'Director'),(55787,10950,3,'Producer'),(55787,8680,7,'Set Decoration'),(55787,25455,3,'Producer'),(55787,29404,3,'Producer'),(55787,66519,5,'Editor'),(55787,95849,3,'Executive Producer'),(55787,234873,4,'Author'),(55787,958488,8,'Costume Design'),(55787,958921,7,'Art Direction'),(55787,1325234,8,'Makeup Department Head'),(55787,1325235,8,'Costume Supervisor'),(55787,1813644,9,'Stunts'),(257932,57614,4,'Writer'),(257932,1496406,2,'Director'),(256961,2593,6,'Original Music Composer'),(256961,4501,1,'Director of Photography'),(256961,4502,5,'Editor'),(256961,6874,3,'Executive Producer'),(256961,20585,7,'Set Decoration'),(256961,11655,3,'Executive Producer'),(256961,11814,3,'Producer'),(256961,15018,6,'Music Editor'),(256961,19292,3,'Producer'),(256961,20821,3,'Producer'),(256961,20824,7,'Production Design'),(256961,32895,3,'Producer'),(256961,32895,4,'Characters'),(256961,32895,4,'Writer'),(256961,32903,7,'Art Direction'),(256961,51557,3,'Casting'),(256961,58375,2,'Director'),(256961,63516,3,'Executive Producer'),(256961,78435,4,'Characters'),(256961,78435,4,'Writer'),(256961,935719,8,'Costume Design'),(256961,1059590,1,'Still Photographer'),(256961,1407825,2,'Script Supervisor'),(256961,1537468,5,'First Assistant Editor'),(256961,1537471,1,'Camera Operator'),(87421,5912,6,'Original Music Composer'),(87421,9196,3,'Producer'),(87421,9545,3,'Casting'),(87421,9990,7,'Production Design'),(87421,12835,3,'Producer'),(87421,28239,4,'Writer'),(87421,28239,2,'Director'),(87421,28240,1,'Director of Photography'),(87421,60791,3,'Executive Producer'),(87421,72107,5,'Editor'),(87421,90635,3,'Producer'),(87421,90635,3,'Executive Producer'),(87421,79185,8,'Makeup Department Head'),(87421,114409,3,'Executive Producer'),(87421,1198826,8,'Costume Design'),(87421,1460608,10,'Animation Director'),(68722,4762,2,'Director'),(68722,4762,4,'Writer'),(68722,4762,3,'Producer'),(68722,4769,3,'Producer'),(68722,4770,3,'Producer'),(68722,4772,3,'Casting'),(68722,5632,7,'Production Design'),(68722,12579,1,'Still Photographer'),(68722,17863,6,'Music Supervisor'),(68722,21591,7,'Set Decoration'),(68722,40471,8,'Costume Design'),(68722,52981,1,'Director of Photography'),(68722,53683,5,'Editor'),(68722,71536,6,'Supervising Sound Editor'),(68722,74333,6,'Original Music Composer'),(68722,93258,9,'Special Effects Coordinator'),(68722,229801,8,'Makeup Department Head'),(68722,956198,9,'Stunt Coordinator'),(68722,958921,7,'Production Design'),(68722,1017340,8,'Key Makeup Artist'),(68722,1027025,3,'Producer'),(68722,1046115,5,'Editor'),(68722,1102140,2,'First Assistant Director'),(68722,1235786,6,'Sound Effects Editor'),(68722,1276817,7,'Set Designer'),(68722,1319193,8,'Key Costumer'),(68722,1327146,8,'Costume Supervisor'),(68722,1352422,5,'Dialogue Editor'),(68722,1376899,5,'Dialogue Editor'),(68722,1378828,6,'Sound Re-Recording Mixer'),(68722,1382447,5,'First Assistant Editor'),(68722,1391383,7,'Construction Coordinator'),(68722,1392237,7,'Property Master'),(68722,1394724,1,'Still Photographer'),(68722,1400535,1,'Camera Operator'),(68722,1400906,6,'Sound Designer'),(68722,1400906,6,'Sound Re-Recording Mixer'),(68722,1400906,6,'Supervising Sound Editor'),(68722,1414537,8,'Hair Department Head'),(68722,1415464,6,'Foley Editor'),(68722,1435657,11,'Chief Lighting Technician'),(68722,1457694,8,'Hairstylist'),(68722,1458085,8,'Makeup Artist'),(68722,1533037,2,'Script Supervisor'),(68722,1547309,6,'Sound mixer'),(68722,1547313,5,'First Assistant Editor'),(68722,1547323,6,'Music Editor'),(68722,1547330,9,'Transportation Captain'),(68722,1547331,7,'Art Department Coordinator'),(68722,1548530,8,'Hairstylist'),(68722,1549272,8,'Key Set Costumer'),(68722,1556632,5,'Dialogue Editor'),(68722,1733133,3,'Production Coordinator'),(68722,1865067,8,'Makeup Artist'),(68722,1865069,7,'Construction Foreman'),(68722,1865070,6,'Foley Editor'),(299687,10816,5,'Editor'),(299687,6410,3,'Casting'),(299687,2219,3,'Producer'),(299687,4768,3,'Producer'),(299687,5575,4,'Screenplay'),(299687,6340,4,'Screenplay'),(299687,9818,7,'Supervising Art Director'),(299687,9819,7,'Production Design'),(299687,16729,3,'Producer'),(299687,17598,1,'Director of Photography'),(299687,25021,8,'Makeup Department Head'),(299687,52193,6,'ADR & Dubbing'),(299687,65822,3,'Executive Producer'),(299687,76481,3,'Line Producer'),(299687,111588,2,'Director'),(299687,168309,4,'Screenplay'),(299687,227440,6,'Original Music Composer'),(299687,935493,3,'Casting Associate'),(299687,1050930,5,'Dialogue Editor'),(299687,1182909,8,'Hair Department Head'),(299687,1308529,1,'First Assistant Camera'),(299687,1314588,9,'Visual Effects Editor'),(299687,1323077,8,'Costume Supervisor'),(299687,1335151,10,'Visual Effects Supervisor'),(299687,1336197,6,'Music Editor'),(299687,1341403,6,'Supervising Sound Editor'),(299687,1341403,6,'Sound Re-Recording Mixer'),(299687,1345610,3,'Casting'),(299687,1345611,3,'Casting'),(299687,1364798,10,'Visual Effects Producer'),(299687,1367362,6,'Foley'),(299687,1368851,10,'Visual Effects Supervisor'),(299687,1379119,4,'Novel'),(299687,1379120,8,'Makeup Artist'),(299687,1384381,10,'Visual Effects Producer'),(299687,1394724,1,'Still Photographer'),(299687,1395027,10,'Visual Effects Supervisor'),(299687,1403400,10,'Visual Effects Supervisor'),(299687,1403412,11,'Gaffer'),(299687,1411835,10,'Visual Effects Supervisor'),(299687,1433059,9,'CG Supervisor'),(299687,1453671,9,'Visual Effects Editor'),(299687,1458202,2,'Script Supervisor'),(299687,1459895,9,'Visual Effects Editor'),(299687,1495530,1,'Helicopter Camera'),(299687,1501297,3,'Producer'),(299687,1533094,7,'Assistant Art Director'),(299687,1533100,8,'Seamstress'),(299687,1536977,5,'First Assistant Editor'),(299687,1546875,6,'Foley'),(299687,1555644,7,'Art Department Coordinator'),(299687,1558090,10,'Visual Effects Coordinator'),(299687,1558574,10,'Visual Effects Coordinator'),(299687,1570597,10,'Visual Effects Coordinator'),(299687,1573012,8,'Assistant Costume Designer'),(299687,1573013,8,'Set Costumer'),(299687,1573015,8,'Set Costumer'),(299687,1573016,2,'Script Coordinator'),(299687,1573017,1,'Camera Operator'),(299687,1573019,11,'Rigging Gaffer'),(299687,1573022,9,'Visual Effects Art Director'),(299687,1573023,10,'Visual Effects Coordinator'),(299687,1573024,10,'Visual Effects Coordinator'),(299687,1573025,10,'Visual Effects Coordinator'),(299687,1573031,9,'Visual Effects Editor'),(299687,1573033,10,'Visual Effects Producer'),(299687,1573035,10,'Visual Effects Producer'),(299687,1573037,8,'Hairstylist'),(299687,1573038,8,'Key Hair Stylist'),(299687,1573039,8,'Makeup Artist'),(299687,1573040,5,'Digital Intermediate'),(299687,1573043,5,'Digital Intermediate'),(299687,1625948,1,'First Assistant Camera'),(299687,1625949,9,'Armorer'),(312221,6410,3,'Casting'),(312221,7537,6,'Sound Designer'),(312221,7537,6,'Sound Re-Recording Mixer'),(312221,19156,3,'Casting'),(312221,8160,6,'Foley'),(312221,8163,6,'Foley'),(312221,11472,3,'Producer'),(312221,16483,3,'Producer'),(312221,16483,4,'Characters'),(312221,16485,3,'Producer'),(312221,16486,3,'Producer'),(312221,16487,3,'Producer'),(312221,16494,7,'Art Direction'),(312221,16514,3,'Producer'),(312221,33678,1,'Director of Photography'),(312221,29929,8,'Makeup Department Head'),(312221,135731,8,'Costume Design'),(312221,207419,3,'Producer'),(312221,589094,5,'Editor'),(312221,928158,6,'Original Music Composer'),(312221,959114,3,'Executive Producer'),(312221,990139,7,'Production Design'),(312221,1056121,4,'Screenplay'),(312221,1056121,2,'Director'),(312221,1056121,4,'Story'),(312221,1095320,6,'Music Editor'),(312221,1141734,5,'Editor'),(312221,1313928,8,'Costume Design'),(312221,1318502,8,'Assistant Costume Designer'),(312221,1352422,6,'ADR & Dubbing'),(312221,1352422,5,'Dialogue Editor'),(312221,1352424,6,'Sound Re-Recording Mixer'),(312221,1401891,9,'Visual Effects Editor'),(312221,1404808,8,'Makeup Artist'),(312221,1404817,1,'Steadicam Operator'),(312221,1407027,1,'Still Photographer'),(312221,1419815,2,'Script Supervisor'),(312221,1421236,8,'Hair Department Head'),(312221,1428583,8,'Hairstylist'),(312221,1445832,7,'Art Direction'),(312221,1458133,1,'Camera Operator'),(312221,1463387,6,'Supervising Sound Editor'),(312221,1468573,10,'Visual Effects Supervisor'),(312221,1469619,8,'Key Hair Stylist'),(312221,1485107,4,'Screenplay'),(312221,1490767,8,'Assistant Costume Designer'),(312221,1512738,11,'Gaffer'),(312221,1523886,8,'Set Costumer'),(312221,1525929,1,'First Assistant Camera'),(312221,1529999,6,'Music Supervisor'),(312221,1544542,7,'Set Decoration'),(312221,1544543,8,'Costume Supervisor'),(312221,1544544,6,'Sound mixer'),(312221,1578229,8,'Set Costumer'),(312221,1580861,7,'Art Department Coordinator'),(312221,1580862,7,'Construction Coordinator'),(312221,1580863,3,'Casting Associate'),(312221,1580864,8,'Set Costumer'),(312221,1580865,1,'Camera Operator'),(312221,1580867,1,'Additional Photography'),(312221,1580873,10,'Animation'),(312221,1580877,10,'Visual Effects Coordinator'),(312221,1580879,10,'Visual Effects Coordinator'),(312221,1580882,10,'Visual Effects Coordinator'),(312221,1580884,10,'Visual Effects Coordinator'),(312221,1580887,9,'Special Effects Coordinator'),(312221,1580890,10,'Visual Effects Producer'),(312221,1580892,10,'Visual Effects Producer'),(312221,1580893,10,'Visual Effects Producer'),(312221,1580895,10,'Visual Effects Supervisor'),(312221,1580896,10,'Visual Effects Supervisor'),(76494,3965,3,'Casting'),(76494,5666,6,'Music'),(76494,7493,5,'Editor'),(76494,19285,8,'Costume Design'),(76494,20206,3,'Producer'),(76494,20207,3,'Producer'),(76494,28636,7,'Production Design'),(76494,29016,3,'Producer'),(76494,40545,1,'Director of Photography'),(76494,64045,2,'Director'),(76494,64829,4,'Screenplay'),(76494,101903,4,'Screenplay'),(76494,1034748,3,'Casting'),(76494,1045317,4,'Writer'),(76494,1401155,2,'Script Supervisor'),(76494,1407019,9,'Visual Effects Editor'),(76494,1424894,8,'Hairstylist'),(76494,1493523,6,'Music'),(76494,1539947,3,'Co-Producer'),(96721,173,3,'Producer'),(96721,947,6,'Original Music Composer'),(96721,339,3,'Producer'),(96721,1570,1,'Director of Photography'),(96721,2238,3,'Producer'),(96721,6159,2,'Director'),(96721,6159,3,'Producer'),(96721,6184,3,'Executive Producer'),(96721,6189,5,'Editor'),(96721,15730,4,'Screenplay'),(96721,15730,3,'Producer'),(96721,16363,3,'Casting'),(96721,20463,7,'Production Design'),(96721,45058,8,'Costume Design'),(96721,57049,3,'Producer'),(96721,158401,3,'Executive Producer'),(96721,999786,3,'Executive Producer'),(96721,1348686,9,'Production Office Assistant'),(259694,2952,3,'Casting'),(259694,1588,3,'Executive Producer'),(259694,69597,3,'Executive Producer'),(259694,25906,5,'Editor'),(259694,39038,7,'Production Design'),(259694,41332,3,'Executive Producer'),(259694,56718,3,'Producer'),(259694,56718,4,'Screenplay'),(259694,57430,3,'Executive Producer'),(259694,63820,2,'Director'),(259694,69124,4,'Screenplay'),(259694,69124,4,'Screenstory'),(259694,69125,4,'Screenplay'),(259694,69125,4,'Screenstory'),(259694,122220,1,'Director of Photography'),(259694,956268,3,'Executive Producer'),(259694,969283,3,'Executive Producer'),(259694,971528,8,'Costume Design'),(259694,1116283,3,'Producer'),(259694,1233554,4,'Novel'),(259694,1397011,3,'Executive Producer'),(259694,1525811,6,'Music'),(259694,1529990,6,'Music Supervisor'),(62837,1270,2,'Director'),(62837,4140,6,'Original Music Composer'),(62837,5328,3,'Casting'),(62837,7855,7,'Production Design'),(62837,8677,1,'Director of Photography'),(62837,11343,3,'Co-Producer'),(62837,19689,3,'Casting'),(62837,10809,3,'Executive Producer'),(62837,47285,3,'Producer'),(62837,47286,3,'Producer'),(62837,56909,4,'Writer'),(62837,57642,5,'Editor'),(62837,590053,4,'Writer'),(62837,956249,3,'Executive Producer'),(62837,1117311,3,'Co-Producer'),(62837,1399693,3,'Producer'),(62837,1399694,3,'Associate Producer'),(62837,1399695,3,'Associate Producer'),(138832,298,3,'Producer'),(138832,434,3,'Casting'),(138832,436,3,'Casting'),(138832,10572,6,'Original Music Composer'),(138832,19971,8,'Costume Design'),(138832,17641,9,'Choreographer'),(138832,21933,3,'Producer'),(138832,23427,8,'Makeup Artist'),(138832,54164,1,'Director of Photography'),(138832,54585,7,'Production Design'),(138832,54871,3,'Producer'),(138832,54873,3,'Producer'),(138832,57633,2,'Director'),(138832,57820,4,'Screenplay'),(138832,57820,4,'Story'),(138832,57821,4,'Screenplay'),(138832,57821,4,'Story'),(138832,62063,7,'Set Decoration'),(138832,74619,4,'Screenplay'),(138832,111456,5,'Editor'),(138832,212576,4,'Screenplay'),(138832,928158,6,'Original Music Composer'),(138832,970836,3,'Casting Associate'),(138832,1011958,7,'Art Direction'),(138832,1086576,8,'Set Costumer'),(138832,1095320,6,'Music Editor'),(138832,1267023,3,'Producer'),(138832,1316192,8,'Costume Supervisor'),(138832,1336516,7,'Construction Coordinator'),(138832,1407234,8,'Costume Design'),(138832,1412772,7,'Art Department Coordinator'),(138832,1412972,8,'Hair Department Head'),(138832,1416096,8,'Makeup Department Head'),(138832,1421253,8,'Set Costumer'),(138832,1457032,8,'Makeup Artist'),(138832,1494534,8,'Set Costumer'),(138832,1521490,8,'Key Hair Stylist'),(138832,1527912,3,'Casting'),(138832,1533558,8,'Costume Design'),(138832,1533561,10,'Visual Effects Coordinator'),(138832,1533562,8,'Set Costumer'),(138832,1533563,8,'Key Hair Stylist'),(138832,1533564,8,'Makeup Artist'),(36670,9951,3,'Executive Producer'),(36670,9951,4,'Story'),(36670,10934,6,'Original Music Composer'),(36670,10930,2,'Director'),(36670,23880,9,'Martial Arts Choreographer'),(36670,10932,3,'Producer'),(227735,437,7,'Production Design'),(227735,1270,4,'Writer'),(227735,1270,2,'Director'),(227735,3562,6,'Original Music Composer'),(227735,11343,3,'Executive Producer'),(227735,16469,8,'Costume Design'),(227735,10809,3,'Executive Producer'),(227735,47285,3,'Producer'),(227735,47286,3,'Producer'),(227735,56324,1,'Director of Photography'),(227735,56909,4,'Characters'),(227735,57642,5,'Editor'),(227735,590053,4,'Characters'),(227735,956249,3,'Producer'),(227735,1117311,3,'Co-Producer'),(227735,1377239,2,'Script Supervisor'),(227735,1399694,3,'Associate Producer'),(227735,1399701,3,'Casting'),(227735,1422818,6,'Music Editor'),(227735,1452675,1,'Still Photographer'),(227735,1461183,6,'Music Editor'),(227735,1523885,7,'Set Decoration'),(227735,1535987,6,'Music Supervisor'),(227735,1544639,6,'Music Editor'),(227735,1556402,1,'Steadicam Operator'),(227735,1556403,6,'Sound mixer'),(222936,6410,3,'Casting'),(222936,4197,7,'Production Design'),(222936,2997,3,'Producer'),(222936,4327,9,'Stunt Coordinator'),(222936,4186,5,'Editor'),(222936,5387,1,'Additional Photography'),(222936,6874,3,'Executive Producer'),(222936,20586,7,'Set Designer'),(222936,19156,3,'Casting Associate'),(222936,8527,8,'Costume Design'),(222936,11649,2,'Director'),(222936,11649,3,'Producer'),(222936,11649,4,'Writer'),(222936,15845,8,'Makeup Artist'),(222936,15845,8,'Makeup Department Head'),(222936,18494,1,'Director of Photography'),(222936,21122,6,'Music Editor'),(222936,27095,3,'Executive Producer'),(222936,113046,6,'Sound Re-Recording Mixer'),(222936,123286,6,'Original Music Composer'),(222936,141483,10,'Visual Effects Supervisor'),(222936,578767,6,'Boom Operator'),(222936,960673,7,'Art Direction'),(222936,1010037,1,'Still Photographer'),(222936,1025667,9,'Stunt Coordinator'),(222936,1046160,3,'Executive Producer'),(222936,1049320,2,'Second Assistant Director'),(222936,1115738,6,'Sound Designer'),(222936,1118400,6,'Sound Effects Editor'),(222936,1208437,8,'Makeup Artist'),(222936,1333160,9,'Visual Effects Editor'),(222936,1342669,2,'Script Supervisor'),(222936,1360096,5,'Dialogue Editor'),(222936,1368864,6,'Sound Re-Recording Mixer'),(222936,1388862,7,'Property Master'),(222936,1389133,6,'Sound Designer'),(222936,1400365,7,'Set Decoration'),(222936,1400853,7,'Construction Coordinator'),(222936,1401606,8,'Hairstylist'),(222936,1403428,3,'Production Supervisor'),(222936,1408672,6,'ADR Editor'),(222936,1409283,9,'Unit Publicist'),(222936,1413224,8,'Hairstylist'),(222936,1413224,8,'Hair Department Head'),(222936,1418286,5,'Dialogue Editor'),(222936,1436624,7,'Assistant Art Director'),(222936,1446688,11,'Chief Lighting Technician'),(222936,1451296,7,'Storyboard Designer'),(222936,1457242,3,'Co-Producer'),(222936,1458086,8,'Key Makeup Artist'),(222936,1458141,11,'Rigging Gaffer'),(222936,1463360,7,'Art Department Coordinator'),(222936,1494758,6,'Original Music Composer'),(222936,1494759,3,'Co-Producer'),(222936,1494760,3,'Unit Production Manager'),(222936,1494760,3,'Associate Producer'),(222936,1494761,3,'Associate Producer'),(222936,1494761,2,'First Assistant Director'),(222936,1506724,3,'Location Manager'),(222936,1511710,6,'Production Sound Mixer'),(222936,1534226,11,'Chief Lighting Technician'),(222936,1546458,6,'Supervising Sound Editor'),(222936,1547656,6,'Sound Effects Editor'),(222936,1549439,1,'First Assistant Camera'),(222936,1553857,6,'Supervising ADR Editor'),(222936,1608984,5,'First Assistant Editor'),(222936,1717776,3,'Local Casting'),(222936,1728329,9,'Special Effects Coordinator'),(222936,1733132,5,'Negative Cutter'),(222936,1741091,1,'Key Grip'),(222936,1749905,3,'Production Coordinator'),(222936,1777672,3,'Casting Assistant'),(222936,1828919,1,'First Assistant Camera'),(222936,1828920,1,'Camera Operator'),(222936,1828920,1,'Steadicam Operator'),(222936,1828933,8,'Costume Supervisor'),(222936,1828941,8,'Hairstylist'),(222936,1828954,7,'Leadman'),(222936,1828956,9,'Transportation Co-Captain'),(222936,1828957,9,'Transportation Captain'),(222936,1828962,5,'Additional Editing'),(48171,3959,3,'Executive Producer'),(48171,3965,3,'Casting'),(48171,9543,3,'Producer'),(48171,22047,6,'Original Music Composer'),(48171,22161,1,'Director of Photography'),(48171,17795,7,'Art Direction'),(48171,17816,5,'Editor'),(48171,28636,7,'Production Design'),(48171,29605,2,'Director'),(48171,33624,3,'Producer'),(48171,37298,8,'Costume Design'),(48171,61239,4,'Writer'),(48171,585042,4,'Novel'),(48171,950257,3,'Executive Producer'),(48171,1034748,3,'Casting'),(48171,1317305,8,'Makeup Department Head'),(48171,1456835,10,'Animation'),(75531,284,3,'Executive Producer'),(75531,2988,5,'Editor'),(75531,6048,3,'Executive Producer'),(75531,8677,1,'Director of Photography'),(75531,9580,6,'Original Music Composer'),(75531,32588,4,'Screenplay'),(75531,31143,3,'Producer'),(75531,37419,3,'Executive Producer'),(75531,41550,2,'Director'),(365222,57304,6,'Music'),(365222,63571,2,'Director'),(365222,63574,5,'Editor'),(365222,64429,8,'Costume Design'),(365222,77703,4,'Writer'),(365222,77705,7,'Production Design'),(365222,140488,1,'Director of Photography'),(365222,237191,4,'Writer'),(365222,1110537,9,'Stunt Coordinator'),(365222,1167602,3,'Producer'),(365222,1340351,6,'Sound Designer'),(365222,1536908,4,'Writer'),(365222,1572965,6,'Sound Designer'),(365222,1590386,10,'Visual Effects'),(365222,1590387,10,'Visual Effects'),(365222,1590388,10,'Visual Effects'),(365222,1611577,3,'Casting'),(45054,8965,4,'Screenplay'),(45054,8965,2,'Director'),(51540,434,3,'Casting'),(51540,436,3,'Casting'),(51540,7234,7,'Production Design'),(51540,9423,6,'Supervising Sound Editor'),(51540,9423,6,'Sound Re-Recording Mixer'),(51540,10397,8,'Costume Design'),(51540,10426,3,'Unit Production Manager'),(51540,13626,7,'Set Decoration'),(51540,21141,6,'Music Editor'),(51540,11091,3,'Producer'),(51540,11372,5,'Editor'),(51540,23427,8,'Makeup Artist'),(51540,23787,8,'Makeup Department Head'),(51540,27154,1,'Director of Photography'),(51540,41896,3,'Producer'),(51540,49911,6,'Original Music Composer'),(51540,52935,4,'Screenplay'),(51540,71600,2,'Director'),(51540,83079,7,'Construction Coordinator'),(51540,91147,6,'Music Supervisor'),(51540,1222776,4,'Screenplay'),(51540,1222776,4,'Story'),(51540,1223099,5,'Dialogue Editor'),(51540,1236679,4,'Screenplay'),(51540,1252535,5,'Dialogue Editor'),(51540,1318886,8,'Costume Supervisor'),(51540,1357070,9,'Transportation Coordinator'),(51540,1373433,10,'Visual Effects Supervisor'),(51540,1373434,10,'Visual Effects Producer'),(51540,1399861,6,'Sound Re-Recording Mixer'),(51540,1412186,8,'Makeup Artist'),(51540,1412189,8,'Hairstylist'),(51540,1415007,5,'Dialogue Editor'),(51540,1415109,1,'Still Photographer'),(51540,1416098,8,'Makeup Artist'),(51540,1416898,6,'Sound Effects Editor'),(51540,1417399,8,'Key Hair Stylist'),(51540,1417415,7,'Property Master'),(51540,1424160,5,'Dialogue Editor'),(51540,1483583,2,'Script Supervisor'),(51540,1493864,7,'Art Direction'),(51540,1494214,7,'Art Department Coordinator'),(51540,1511710,6,'Production Sound Mixer'),(51540,1533071,9,'Special Effects Coordinator'),(51540,1533072,8,'Assistant Costume Designer'),(51540,1533073,8,'Hairstylist'),(51540,1533545,6,'Sound Effects Editor'),(51540,1688605,3,'Location Manager'),(51540,1739825,2,'First Assistant Director'),(51540,1817119,3,'Co-Producer'),(44264,151,1,'Director of Photography'),(44264,555,7,'Set Decoration'),(44264,1223,4,'Screenplay'),(44264,1223,2,'Director'),(44264,1223,3,'Producer'),(44264,1224,4,'Screenplay'),(44264,1224,2,'Director'),(44264,1224,3,'Producer'),(44264,1484,3,'Casting'),(44264,2997,3,'Producer'),(44264,10575,7,'Production Design'),(44264,7418,8,'Costume Design'),(44264,18900,7,'Supervising Art Director'),(44264,957889,7,'Art Direction'),(44264,1314465,8,'Makeup Department Head'),(44264,1319137,8,'Costume Supervisor'),(44264,1521185,9,'Stunts'),(109431,403,1,'Director of Photography'),(109431,434,3,'Casting'),(109431,436,3,'Casting'),(109431,7234,7,'Production Design'),(109431,5378,3,'Producer'),(109431,10397,8,'Costume Design'),(109431,11815,3,'Executive Producer'),(109431,14766,9,'Special Effects Coordinator'),(109431,15730,3,'Executive Producer'),(109431,20647,4,'Screenplay'),(109431,19282,3,'Producer'),(109431,19466,7,'Set Decoration'),(109431,11372,5,'Editor'),(109431,23532,3,'Producer'),(109431,35796,4,'Screenplay'),(109431,41592,7,'Art Direction'),(109431,49911,6,'Original Music Composer'),(109431,71600,2,'Director'),(109431,227360,8,'Makeup Department Head'),(109431,1318886,8,'Costume Supervisor'),(109431,1345613,8,'Set Costumer'),(109431,1401821,8,'Hairstylist'),(109431,1403083,7,'Construction Coordinator'),(109431,1407721,8,'Wigmaker'),(109431,1408293,8,'Hair Department Head'),(109431,1415020,8,'Set Costumer'),(109431,1458202,2,'Script Supervisor'),(109431,1477393,8,'Makeup Artist'),(109431,1527912,3,'Casting Associate'),(109431,1532736,8,'Makeup Artist'),(109431,1533071,9,'Special Effects Coordinator'),(109431,1533086,8,'Set Costumer'),(109431,1533093,7,'Art Department Coordinator'),(109431,1533094,7,'Art Department Coordinator'),(109431,1533097,10,'Special Effects Supervisor'),(109431,1533098,8,'Assistant Costume Designer'),(109431,1533100,8,'Seamstress'),(271718,312,6,'Original Music Composer'),(271718,5664,3,'Producer'),(271718,17951,7,'Set Decoration'),(271718,21592,8,'Costume Design'),(271718,32490,8,'Hair Department Head'),(271718,33283,5,'Editor'),(271718,19755,7,'Production Design'),(271718,41039,2,'Director'),(271718,41039,3,'Producer'),(271718,46942,5,'Editor'),(271718,139138,1,'Director of Photography'),(271718,440414,4,'Writer'),(271718,587969,2,'Script Supervisor'),(271718,992965,1,'Still Photographer'),(271718,993693,5,'Editor'),(271718,1015645,7,'Art Direction'),(271718,1416798,8,'Makeup Department Head'),(271718,1488219,8,'Costume Design'),(271718,1546047,6,'Music Editor'),(271718,1546047,6,'Music Supervisor'),(271718,1546441,6,'Music Supervisor'),(271718,1551025,6,'Production Sound Mixer'),(39486,2460,2,'Director'),(39486,2486,7,'Production Design'),(39486,4501,1,'Director of Photography'),(39486,7494,3,'Casting'),(39486,8752,5,'Editor'),(39486,8762,5,'Dialogue Editor'),(39486,9419,6,'Sound Designer'),(39486,10683,4,'Screenplay'),(39486,16618,9,'Stunt Coordinator'),(39486,17677,7,'Supervising Art Director'),(39486,42035,6,'Supervising Sound Editor'),(39486,42036,6,'Supervising Sound Editor'),(39486,54267,2,'First Assistant Director'),(39486,66693,8,'Key Makeup Artist'),(39486,57263,6,'Original Music Composer'),(39486,65710,8,'Costume Design'),(39486,65725,7,'Set Decoration'),(39486,70698,3,'Producer'),(39486,70700,3,'Producer'),(39486,1171098,7,'Set Designer'),(39486,1309884,6,'Sound Effects Editor'),(39486,1318092,9,'Special Effects Coordinator'),(39486,1357671,6,'Sound Editor'),(39486,1365542,6,'Sound Effects Editor'),(39486,1378241,1,'Camera Operator'),(39486,1389588,7,'Construction Coordinator'),(39486,1393390,10,'Visual Effects Supervisor'),(39486,1395430,7,'Art Department Coordinator'),(39486,1395431,7,'Art Direction'),(39486,1397850,11,'Chief Lighting Technician'),(39486,1399473,1,'Camera Operator'),(39486,1399632,6,'Sound Editor'),(39486,1404306,8,'Hair Department Head'),(39486,1406137,2,'Script Supervisor'),(39486,1412112,10,'Special Effects Supervisor'),(39486,1434566,7,'Production Design'),(39486,1435071,8,'Makeup Department Head'),(39486,1494210,1,'Camera Operator'),(39486,1531504,6,'Music Editor'),(39486,1536032,3,'Production Coordinator'),(39486,1548101,6,'Sound Effects Editor'),(39486,1549066,9,'Special Effects Coordinator'),(39486,1550230,8,'Costume Supervisor'),(39486,1722505,8,'Key Hair Stylist'),(39486,1825639,7,'Construction Foreman'),(39486,1825641,9,'Stunt Coordinator'),(50544,82511,4,'Screenplay'),(50544,82511,2,'Director'),(50544,147711,4,'Screenplay'),(50544,147712,4,'Screenplay'),(325133,6410,3,'Casting'),(325133,1589,6,'Original Music Composer'),(325133,19156,3,'Casting'),(325133,19274,3,'Producer'),(325133,19274,4,'Writer'),(325133,21592,8,'Costume Design'),(325133,40383,3,'Executive Producer'),(325133,52934,2,'Director'),(325133,52934,4,'Writer'),(325133,54734,3,'Producer'),(325133,54734,4,'Writer'),(325133,64227,9,'Cinematography'),(325133,184582,3,'Executive Producer'),(325133,184582,4,'Characters'),(325133,184582,4,'Writer'),(325133,225628,5,'Editor'),(325133,928595,3,'Producer'),(325133,1046971,3,'Executive Producer'),(325133,1046971,3,'Unit Production Manager'),(325133,1085179,3,'Executive Producer'),(325133,1085179,4,'Characters'),(325133,1085179,4,'Writer'),(325133,1417312,7,'Production Design'),(325133,1539279,3,'Executive Producer'),(325133,1546047,6,'Music Supervisor'),(325133,1546441,6,'Music Supervisor'),(140823,153,6,'Original Music Composer'),(140823,1720,3,'Casting'),(140823,892,1,'Director of Photography'),(140823,10574,5,'Editor'),(140823,5541,3,'Producer'),(140823,7855,7,'Production Design'),(140823,8299,3,'Executive Producer'),(140823,15726,3,'Executive Producer'),(140823,37756,3,'Producer'),(140823,38022,7,'Art Direction'),(140823,54040,2,'Director'),(140823,55418,3,'Executive Producer'),(140823,75511,4,'Writer'),(140823,940376,4,'Writer'),(140823,1113484,3,'Producer'),(140823,1113488,3,'Executive Producer'),(140823,1419114,9,'Dialect Coach'),(89492,312,6,'Original Music Composer'),(89492,432,1,'Director of Photography'),(89492,3184,3,'Producer'),(89492,5664,3,'Producer'),(89492,19157,7,'Set Decoration'),(89492,14382,6,'Supervising Sound Editor'),(89492,13177,6,'Sound Re-Recording Mixer'),(89492,13458,9,'Stunt Coordinator'),(89492,21592,8,'Costume Design'),(89492,41592,7,'Art Direction'),(89492,41039,2,'Director'),(89492,41039,3,'Producer'),(89492,41039,4,'Screenplay'),(89492,41079,5,'Editor'),(89492,41080,3,'Casting'),(89492,41081,7,'Production Design'),(89492,118944,6,'Sound Effects Editor'),(89492,800252,5,'Editor'),(89492,1008052,6,'Music Supervisor'),(89492,1122562,3,'Co-Producer'),(89492,1226294,3,'Executive Producer'),(89492,1299405,5,'Dialogue Editor'),(89492,1328406,8,'Costume Supervisor'),(89492,1352983,2,'Script Supervisor'),(89492,1377132,1,'Steadicam Operator'),(89492,1377132,1,'Camera Operator'),(89492,1387195,6,'Sound Re-Recording Mixer'),(89492,1392084,5,'Dialogue Editor'),(89492,1459254,5,'Editor'),(89492,1461177,1,'Still Photographer'),(89492,1550829,6,'Production Sound Mixer'),(89492,1552363,3,'Production Supervisor'),(49530,151,1,'Director of Photography'),(49530,2215,3,'Casting'),(49530,557,8,'Costume Design'),(49530,1303,7,'Production Design'),(49530,4671,5,'Editor'),(49530,7045,6,'Original Music Composer'),(49530,20585,7,'Set Decoration'),(49530,8288,3,'Co-Producer'),(49530,8288,3,'Unit Production Manager'),(49530,8685,2,'Director'),(49530,8685,4,'Screenplay'),(49530,8685,3,'Producer'),(49530,15219,3,'Producer'),(49530,15220,3,'Producer'),(49530,57864,3,'Executive Producer'),(49530,60222,7,'Art Direction'),(49530,589942,8,'Hairstylist'),(49530,951548,3,'Executive Producer'),(49530,959555,7,'Art Direction'),(49530,963843,7,'Supervising Art Director'),(49530,973271,3,'Executive Producer'),(49530,1182906,7,'Art Direction'),(49530,1325235,8,'Costume Supervisor'),(49530,1333900,8,'Makeup Department Head'),(49530,1336716,10,'Visual Effects Supervisor'),(49530,1377239,2,'Script Supervisor'),(49530,1428234,8,'Makeup Artist'),(49530,1445822,8,'Hairstylist'),(49530,1481282,7,'Art Department Coordinator'),(49022,1214,9,'Cinematography'),(49022,20568,5,'Editor'),(49022,39993,6,'Music'),(49022,65734,2,'Director'),(49022,296963,4,'Writer'),(88794,190,2,'Director'),(88794,190,3,'Producer'),(88794,384,5,'Editor'),(88794,339,3,'Producer'),(88794,460,1,'Director of Photography'),(88794,461,8,'Costume Design'),(88794,4746,3,'Producer'),(88794,11295,3,'Casting'),(88794,51385,3,'Executive Producer'),(88794,63946,3,'Executive Producer'),(88794,74319,5,'Editor'),(88794,123997,4,'Writer'),(88794,1552521,9,'Stunts'),(94348,1720,3,'Casting'),(94348,4500,6,'Original Music Composer'),(94348,13189,3,'Producer'),(94348,17210,3,'Executive Producer'),(94348,17211,3,'Producer'),(94348,17399,5,'Editor'),(94348,18878,2,'Director'),(94348,21022,3,'Producer'),(94348,21022,4,'Novel'),(94348,21023,4,'Screenplay'),(94348,35594,8,'Costume Design'),(94348,44741,3,'Producer'),(94348,61524,7,'Set Decoration'),(94348,72102,3,'Producer'),(94348,74322,8,'Makeup Department Head'),(94348,552955,3,'Producer'),(94348,954441,3,'Executive Producer'),(94348,1001703,4,'Screenplay'),(94348,1001704,3,'Executive Producer'),(94348,1001705,3,'Executive Producer'),(94348,1015921,3,'Executive Producer'),(94348,1033634,1,'Director of Photography'),(94348,1138845,3,'Executive Producer'),(94348,1327146,8,'Costume Supervisor'),(94348,1328410,5,'Editor'),(94348,1328411,7,'Production Design'),(94348,1328412,7,'Art Direction'),(94348,1328414,3,'Casting Associate'),(94348,1533038,2,'Script Supervisor'),(94348,1533678,3,'Executive Producer'),(94348,1546115,6,'Production Sound Mixer'),(336004,4584,3,'Producer'),(336004,4951,5,'Editor'),(336004,17210,3,'Producer'),(336004,17211,3,'Producer'),(336004,38551,3,'Executive Producer'),(336004,45832,3,'Executive Producer'),(336004,60403,3,'Line Producer'),(336004,63781,3,'Producer'),(336004,65814,3,'Executive Producer'),(336004,66723,3,'Executive Producer'),(336004,74513,4,'Screenplay'),(336004,74513,3,'Producer'),(336004,74513,4,'Original Story'),(336004,90812,2,'Director'),(336004,94047,3,'Executive Producer'),(336004,230179,3,'Executive Producer'),(336004,967417,1,'Director of Photography'),(336004,1015903,6,'Original Music Composer'),(336004,1039117,7,'Production Design'),(336004,1121984,3,'Producer'),(336004,1121985,3,'Associate Producer'),(336004,1234099,3,'Executive Producer'),(336004,1302342,3,'Executive Producer'),(336004,1367054,3,'Co-Producer'),(336004,1367058,3,'Executive Producer'),(336004,1367061,3,'Executive Producer'),(336004,1394055,3,'Associate Producer'),(336004,1404191,3,'Associate Producer'),(336004,1413505,3,'Associate Producer'),(336004,1423830,7,'Art Direction'),(336004,1436974,4,'Screenplay'),(336004,1438028,3,'Co-Producer'),(336004,1438029,3,'Executive Producer'),(336004,1465668,6,'Original Music Composer'),(336004,1531696,3,'Executive Producer'),(336004,1535394,3,'Associate Producer'),(336004,1535396,3,'Executive Producer'),(336004,1535397,3,'Executive Producer'),(35019,1213,6,'Original Music Composer'),(35019,2236,3,'Producer'),(35019,2238,3,'Producer'),(35019,5542,5,'Editor'),(35019,7056,4,'Screenplay'),(35019,7056,3,'Executive Producer'),(35019,9150,3,'Executive Producer'),(35019,9151,3,'Executive Producer'),(35019,36591,8,'Costume Design'),(35019,11058,3,'Producer'),(35019,68543,1,'Director of Photography'),(35019,68847,4,'Novel'),(35019,113600,2,'Director'),(35019,1171004,11,'Electrician'),(35019,1413230,3,'Line Producer'),(321741,578,3,'Producer'),(321741,15841,5,'Editor'),(321741,1213,6,'Original Music Composer'),(321741,1296,3,'Executive Producer'),(321741,5914,3,'Casting'),(321741,6874,3,'Executive Producer'),(321741,8408,1,'Director of Photography'),(321741,12781,3,'Executive Producer'),(321741,22498,3,'Executive Producer'),(321741,66690,8,'Hairstylist'),(321741,66692,8,'Hair Department Head'),(321741,56760,3,'Producer'),(321741,71279,5,'First Assistant Editor'),(321741,91122,1,'Helicopter Camera'),(321741,141483,10,'Visual Effects Supervisor'),(321741,168214,8,'Makeup Artist'),(321741,958921,7,'Production Design'),(321741,965666,8,'Costume Design'),(321741,1024910,3,'Casting'),(321741,1077782,6,'Foley'),(321741,1174976,3,'Casting Associate'),(321741,1192754,2,'Director'),(321741,1192754,4,'Writer'),(321741,1324652,1,'Still Photographer'),(321741,1327140,7,'Art Direction'),(321741,1333982,8,'Costume Supervisor'),(321741,1360097,5,'Dialogue Editor'),(321741,1364417,6,'Sound Re-Recording Mixer'),(321741,1367362,6,'Foley'),(321741,1367662,7,'Set Decoration'),(321741,1372203,8,'Makeup Department Head'),(321741,1377294,10,'Visual Effects Producer'),(321741,1389593,10,'Visual Effects Producer'),(321741,1390384,3,'Co-Producer'),(321741,1399141,6,'Sound Re-Recording Mixer'),(321741,1401631,5,'Dialogue Editor'),(321741,1401989,1,'Camera Operator'),(321741,1408396,11,'Gaffer'),(321741,1412699,6,'Sound Designer'),(321741,1414988,9,'Makeup Effects'),(321741,1419111,5,'Digital Intermediate'),(321741,1419558,4,'Writer'),(321741,1424196,3,'Producer'),(321741,1435641,7,'Leadman'),(321741,1441250,6,'Supervising Sound Editor'),(321741,1449993,8,'Key Hair Stylist'),(321741,1450000,2,'Script Supervisor'),(321741,1545419,9,'Special Effects Coordinator'),(321741,1551789,6,'Sound Effects Editor'),(321741,1552623,8,'Assistant Costume Designer'),(321741,1555782,3,'Producer'),(321741,1555783,3,'Producer'),(321741,1565671,1,'First Assistant Camera'),(321741,1567766,2,'Script Supervisor'),(321741,1573043,5,'Digital Intermediate'),(321741,1608766,3,'Casting Associate'),(321741,1611976,7,'Art Department Coordinator'),(321741,1634415,9,'Property Master'),(321741,1636644,7,'Assistant Art Director'),(321741,1636645,7,'Construction Coordinator'),(321741,1636648,7,'Greensman'),(321741,1636649,7,'Leadman'),(321741,1636650,8,'Seamstress'),(321741,1636651,8,'Set Costumer'),(321741,1636652,11,'Rigging Gaffer'),(321741,1636653,1,'First Assistant Camera'),(321741,1636655,8,'Makeup Artist'),(321741,1636656,9,'Makeup Effects'),(321741,1742361,3,'Executive Producer'),(59965,1593,3,'Casting'),(59965,1999,6,'Original Music Composer'),(59965,6482,2,'Director'),(59965,9772,5,'Editor'),(59965,15524,8,'Costume Design'),(59965,17629,1,'Director of Photography'),(59965,21035,3,'Producer'),(59965,21036,3,'Producer'),(59965,22145,7,'Production Design'),(59965,80830,10,'Visual Effects Supervisor'),(59965,146143,9,'Stunt Coordinator'),(59965,158916,6,'Sound Re-Recording Mixer'),(59965,234817,4,'Writer'),(59965,582943,7,'Art Department Coordinator'),(59965,1043368,9,'Special Effects Coordinator'),(59965,1077782,6,'Foley'),(59965,1257754,3,'Producer'),(59965,1328141,3,'Producer'),(59965,1328142,3,'Producer'),(59965,1328143,3,'Casting'),(59965,1328144,7,'Art Direction'),(59965,1328145,7,'Set Decoration'),(59965,1328146,8,'Makeup Department Head'),(59965,1328147,8,'Costume Supervisor'),(59965,1328148,3,'Casting'),(59965,1374169,6,'Foley'),(59965,1389593,10,'Visual Effects Producer'),(59965,1392085,5,'Dialogue Editor'),(59965,1393446,10,'Visual Effects Producer'),(59965,1395014,9,'Property Master'),(59965,1395015,7,'Assistant Art Director'),(59965,1395016,7,'Construction Coordinator'),(59965,1395019,7,'Set Designer'),(59965,1395021,7,'Leadman'),(59965,1395022,6,'Supervising Sound Editor'),(59965,1395023,6,'Supervising Sound Editor'),(59965,1395024,6,'Sound Re-Recording Mixer'),(59965,1395025,6,'Dolby Consultant'),(59965,1395026,10,'Visual Effects Producer'),(59965,1395027,10,'Visual Effects Supervisor'),(59965,1395028,1,'Still Photographer'),(59965,1395029,1,'Camera Operator'),(59965,1395030,8,'Set Costumer'),(59965,1395031,8,'Set Costumer'),(59965,1395032,8,'Set Costumer'),(59965,1395033,8,'Set Costumer'),(59965,1395034,9,'Transportation Coordinator'),(59965,1395035,2,'Script Supervisor'),(98357,37335,3,'Executive Producer'),(98357,376,3,'Producer'),(98357,7146,7,'Production Design'),(98357,7494,3,'Casting'),(98357,9647,3,'Location Manager'),(98357,11802,8,'Costume Design'),(98357,11448,2,'Director'),(98357,11448,3,'Producer'),(98357,13240,3,'Producer'),(98357,17210,3,'Executive Producer'),(98357,17211,3,'Producer'),(98357,33281,3,'Executive Producer'),(98357,47642,5,'Editor'),(98357,59040,9,'Dialect Coach'),(98357,60872,7,'Set Decoration'),(98357,63310,1,'Director of Photography'),(98357,75617,9,'Stunt Coordinator'),(98357,76497,9,'Property Master'),(98357,142391,6,'Music'),(98357,183044,3,'Producer'),(98357,954441,3,'Executive Producer'),(98357,960074,6,'Sound Effects Editor'),(98357,968182,3,'Executive Producer'),(98357,968470,6,'Music'),(98357,968471,6,'Music'),(98357,1001705,3,'Producer'),(98357,1017375,4,'Writer'),(98357,1046154,3,'Executive Producer'),(98357,1046155,3,'Executive Producer'),(98357,1072607,6,'Music Editor'),(98357,1080589,3,'Producer'),(98357,1113449,3,'Executive Producer'),(98357,1138845,3,'Executive Producer'),(98357,1153021,7,'Art Direction'),(98357,1194760,3,'Executive Producer'),(98357,1301145,6,'Sound Designer'),(98357,1316529,8,'Makeup Department Head'),(98357,1330105,7,'Leadman'),(98357,1333607,8,'Costume Supervisor'),(98357,1393433,7,'Art Department Coordinator'),(98357,1394130,6,'Sound Re-Recording Mixer'),(98357,1399071,1,'Helicopter Camera'),(98357,1401139,10,'Visual Effects Supervisor'),(98357,1401771,9,'Transportation Coordinator'),(98357,1401890,10,'Visual Effects Producer'),(98357,1403498,3,'Location Manager'),(98357,1406137,2,'Script Supervisor'),(98357,1407009,8,'Hairstylist'),(98357,1407011,8,'Hairstylist'),(98357,1407013,9,'Property Master'),(98357,1407014,7,'Leadman'),(98357,1407016,5,'Dialogue Editor'),(98357,1407017,6,'Foley'),(98357,1407018,9,'Special Effects Coordinator'),(98357,1407019,9,'Visual Effects Editor'),(98357,1407021,1,'Camera Operator'),(98357,1407023,1,'Camera Operator'),(98357,1407025,1,'Steadicam Operator'),(98357,1407027,1,'Still Photographer'),(98357,1407028,1,'Still Photographer'),(98357,1407029,11,'Gaffer'),(98357,1407030,5,'Digital Intermediate'),(98357,1407031,5,'Digital Intermediate'),(98357,1407032,9,'Picture Car Coordinator'),(98357,1407033,9,'Unit Publicist'),(49526,508,2,'Director'),(49526,508,4,'Writer'),(49526,51296,4,'Writer'),(49526,1455541,10,'Animation'),(268920,368,3,'Producer'),(268920,1217,5,'Editor'),(268920,2031,3,'Casting'),(268920,2532,3,'Casting'),(268920,5508,7,'Production Design'),(268920,29214,2,'Director'),(268920,16425,1,'Director of Photography'),(268920,23486,6,'Original Music Composer'),(268920,52993,3,'Producer'),(268920,53476,3,'Executive Producer'),(268920,56718,3,'Producer'),(268920,63716,4,'Writer'),(268920,63522,3,'Executive Producer'),(268920,71560,7,'Set Decoration'),(268920,223990,7,'Art Direction'),(268920,1317937,4,'Writer'),(268920,1491120,3,'Executive Producer'),(268920,1491121,3,'Co-Producer'),(119283,1732,5,'Editor'),(119283,6628,7,'Production Design'),(119283,14096,3,'Casting'),(119283,18596,2,'Director'),(119283,18596,3,'Producer'),(119283,19466,7,'Set Decoration'),(119283,21118,1,'Director of Photography'),(119283,21672,4,'Novel'),(119283,21932,3,'Producer'),(119283,35180,3,'Producer'),(119283,50770,3,'Executive Producer'),(119283,59960,3,'Executive Producer'),(119283,62775,3,'Executive Producer'),(119283,70732,3,'Executive Producer'),(119283,102582,3,'Producer'),(119283,225635,6,'Original Music Composer'),(119283,227225,8,'Costume Design'),(119283,966594,7,'Art Direction'),(119283,1054633,4,'Screenplay'),(119283,1098469,3,'Producer'),(119283,1190889,3,'Executive Producer'),(119283,1265263,3,'Producer'),(119283,1336716,10,'Visual Effects Supervisor'),(119283,1427438,2,'Script Supervisor'),(119283,1429245,10,'Special Effects Supervisor'),(119283,1530091,9,'Stunt Coordinator'),(119283,1533101,6,'Music Supervisor'),(119283,1533149,3,'Executive Producer'),(119283,1533150,3,'Executive Producer'),(119283,1533151,8,'Costume Supervisor'),(119283,1533152,3,'Associate Producer'),(119283,1533153,3,'Associate Producer'),(35169,1999,6,'Original Music Composer'),(35169,18269,3,'Executive Producer'),(35169,11873,2,'Director'),(35169,29015,3,'Producer'),(35169,65690,3,'Producer'),(35169,67914,3,'Executive Producer'),(35169,113862,4,'Screenplay'),(35169,113863,4,'Screenplay'),(35169,113864,3,'Executive Producer'),(35169,113865,3,'Producer'),(35169,113866,3,'Producer'),(118957,29941,3,'Casting'),(118957,52968,4,'Screenplay'),(118957,56095,3,'Producer'),(118957,56786,1,'Director of Photography'),(118957,62744,7,'Production Design'),(118957,64163,2,'Director'),(118957,75302,10,'Special Effects Supervisor'),(118957,84758,3,'Supervising Producer'),(118957,1080779,4,'Screenplay'),(118957,1080780,3,'Producer'),(118957,1080781,3,'Producer'),(118957,1195356,3,'Casting'),(118957,1195358,8,'Costume Design'),(118957,1265157,9,'Stunt Coordinator'),(118957,1317650,7,'Art Direction'),(118957,1352446,5,'Editor'),(118957,1355540,10,'Visual Effects Supervisor'),(118957,1391525,6,'Foley'),(118957,1391723,9,'Sound Recordist'),(118957,1391731,1,'Camera Operator'),(118957,1401694,7,'Art Department Coordinator'),(118957,1401732,10,'Visual Effects Producer'),(118957,1402728,6,'Music'),(118957,1402729,6,'Music'),(118957,1402730,7,'Set Decoration'),(118957,1402731,9,'Scenic Artist'),(118957,1402732,7,'Set Designer'),(118957,1402733,7,'Set Designer'),(118957,1402738,6,'Sound Effects Editor'),(118957,1402739,5,'Dialogue Editor'),(118957,1402740,6,'Foley'),(118957,1402894,9,'Visual Effects Art Director'),(118957,1402895,10,'Visual Effects Supervisor'),(118957,1402896,10,'Visual Effects Supervisor'),(118957,1402898,9,'Stunt Coordinator'),(118957,1402900,1,'Camera Operator'),(118957,1402901,1,'Still Photographer'),(118957,1402902,11,'Gaffer'),(118957,1402903,10,'Animation Supervisor'),(118957,1402904,6,'Music Editor'),(118957,1402905,3,'Location Manager'),(118957,1402906,2,'Script Supervisor'),(118957,1402907,9,'Dialect Coach'),(118957,1410551,6,'Sound Designer'),(118957,1425396,6,'Music Editor'),(118957,1445964,6,'Sound Designer'),(118957,1445964,6,'Sound Effects Editor'),(118957,1578022,8,'Hair Designer'),(118957,1578022,8,'Key Makeup Artist'),(118957,1584249,2,'First Assistant Director'),(118957,1730964,9,'Armorer'),(118957,1828721,3,'Production Coordinator'),(37498,1726,4,'Writer'),(37498,26731,9,'Cinematography'),(37498,26760,2,'Director'),(37498,66005,8,'Costume Design'),(37498,66769,3,'Producer'),(37498,127801,8,'Costume Design'),(37498,585506,3,'Casting'),(37498,960067,6,'Music'),(37498,960069,8,'Costume Design'),(37498,960203,3,'Casting'),(37498,961004,6,'Music'),(144336,563,5,'Editor'),(144336,5914,3,'Casting'),(144336,13177,6,'Sound Re-Recording Mixer'),(144336,19769,2,'Director'),(144336,19769,3,'Producer'),(144336,19769,4,'Writer'),(144336,10832,1,'Director of Photography'),(144336,16467,7,'Art Direction'),(144336,18185,4,'Writer'),(144336,33673,7,'Set Decoration'),(144336,44741,3,'Producer'),(144336,46589,8,'Costume Design'),(144336,53637,7,'Production Design'),(144336,54420,6,'Music'),(144336,72102,3,'Producer'),(144336,83085,6,'Sound Effects Editor'),(144336,112527,7,'Leadman'),(144336,117082,2,'Script Supervisor'),(144336,131413,9,'Stunt Coordinator'),(144336,555083,9,'Stunt Coordinator'),(144336,928399,3,'Producer'),(144336,1015921,3,'Producer'),(144336,1024910,3,'Casting'),(144336,1294972,1,'Camera Operator'),(144336,1319750,7,'Set Designer'),(144336,1338134,6,'Foley'),(144336,1364399,1,'Director of Photography'),(144336,1364400,8,'Makeup Department Head'),(144336,1364402,7,'Construction Coordinator'),(144336,1364403,7,'Greensman'),(144336,1364406,9,'Property Master'),(144336,1364409,7,'Construction Coordinator'),(144336,1364410,5,'Dialogue Editor'),(144336,1364411,6,'Boom Operator'),(144336,1364412,6,'Sound Designer'),(144336,1364413,9,'Special Effects Coordinator'),(144336,1364417,6,'Sound Re-Recording Mixer'),(144336,1364420,10,'Visual Effects Producer'),(144336,1364422,10,'Visual Effects Supervisor'),(144336,1364424,9,'Stunt Coordinator'),(144336,1364426,8,'Set Costumer'),(144336,1364427,6,'Music Editor'),(144336,1364430,9,'Dialect Coach'),(144336,1364433,2,'Script Supervisor'),(144336,1412326,1,'Underwater Camera'),(144336,1412326,9,'Second Unit Cinematographer'),(144336,1432042,1,'Camera Operator'),(144336,1445842,1,'Still Photographer'),(144336,1460644,5,'Editorial Manager'),(144336,1521447,1,'Camera Operator'),(285783,37,6,'Original Music Composer'),(285783,24,4,'Screenplay'),(285783,24,2,'Director'),(285783,24,3,'Producer'),(285783,30,3,'Producer'),(285783,8220,7,'Production Design'),(285783,120,1,'Director of Photography'),(285783,1324,3,'Casting'),(285783,10955,3,'Executive Producer'),(285783,8160,6,'Foley'),(285783,8163,6,'Foley'),(285783,12945,6,'Music Editor'),(285783,15893,6,'Sound Effects Editor'),(285783,16341,8,'Makeup Artist'),(285783,21224,9,'Special Effects Coordinator'),(285783,23779,3,'Producer'),(285783,23781,5,'Editor'),(285783,42360,3,'Casting'),(285783,10907,3,'Casting'),(285783,81425,4,'Novel'),(285783,210341,3,'Producer'),(285783,1179893,3,'Casting Associate'),(285783,1293479,9,'Stunt Coordinator'),(285783,1335182,6,'Supervising Sound Editor'),(285783,1340126,2,'Script Supervisor'),(285783,1371893,4,'Screenplay'),(285783,1384359,7,'Supervising Art Director'),(285783,1384360,7,'Set Decoration'),(285783,1384392,8,'Set Costumer'),(285783,1396825,5,'Digital Intermediate'),(285783,1402019,8,'Makeup Department Head'),(285783,1402032,1,'Steadicam Operator'),(285783,1406317,5,'Digital Intermediate'),(285783,1406780,1,'Helicopter Camera'),(285783,1411540,5,'Digital Intermediate'),(285783,1415464,6,'Sound Effects Editor'),(285783,1418373,6,'Sound Effects Editor'),(285783,1419733,9,'Unit Publicist'),(285783,1425353,7,'Assistant Art Director'),(285783,1491496,3,'Casting'),(285783,1536974,5,'Dialogue Editor'),(285783,1568187,8,'Makeup Artist'),(285783,1571043,3,'Casting Associate'),(285783,1571044,7,'Art Department Assistant'),(285783,1571045,1,'First Assistant Camera'),(285783,1571046,8,'Hair Department Head'),(285783,1571048,5,'Digital Intermediate'),(49478,17268,2,'Director'),(49478,150953,4,'Screenplay'),(49478,1173667,4,'Screenplay'),(49478,1410526,10,'Visual Effects'),(45958,223,4,'Screenplay'),(45958,223,2,'Director'),(45958,223,3,'Producer'),(45958,275,9,'Cinematography'),(45958,278,6,'Original Music Composer'),(45958,1891,5,'Editor'),(45958,4446,3,'Producer'),(45958,4447,3,'Producer'),(45958,11218,3,'Producer'),(45958,16941,3,'Producer'),(45958,10828,3,'Producer'),(45958,39454,3,'Executive Producer'),(45958,661870,4,'Screenplay'),(45958,931800,4,'Screenplay'),(45958,1085395,6,'Sound Designer'),(45958,1115664,3,'Producer'),(45958,1462845,6,'Sound Designer'),(310706,814,2,'Director'),(310706,20842,3,'Producer'),(310706,21808,4,'Writer'),(310706,36134,3,'Producer'),(310706,53459,3,'Producer'),(310706,56171,3,'Producer'),(310706,1034748,3,'Casting'),(310706,1493095,4,'Novel'),(198663,2215,3,'Casting'),(198663,3311,3,'Casting'),(198663,6040,3,'Producer'),(198663,6043,5,'Editor'),(198663,9622,10,'Visual Effects Supervisor'),(198663,16177,6,'Sound Re-Recording Mixer'),(198663,17598,1,'Director of Photography'),(198663,18458,7,'Set Decoration'),(198663,21470,7,'Production Design'),(198663,25046,3,'Producer'),(198663,113048,9,'Sound Recordist'),(198663,113075,6,'Sound Effects Editor'),(198663,66521,7,'Art Direction'),(198663,77949,6,'Original Music Composer'),(198663,91122,1,'Helicopter Camera'),(198663,91161,3,'Executive Producer'),(198663,526180,7,'Assistant Art Director'),(198663,578724,8,'Makeup Department Head'),(198663,578728,8,'Makeup Artist'),(198663,578730,8,'Hairstylist'),(198663,1056413,9,'Makeup Effects'),(198663,1179066,2,'Director'),(198663,1198826,8,'Costume Design'),(198663,1227160,4,'Screenplay'),(198663,1231882,3,'Producer'),(198663,1257087,4,'Novel'),(198663,1257095,4,'Screenplay'),(198663,1257144,4,'Screenplay'),(198663,1257754,3,'Producer'),(198663,1299980,8,'Costume Design'),(198663,1309872,8,'Costume Supervisor'),(198663,1318185,9,'Makeup Effects'),(198663,1328142,3,'Producer'),(198663,1338372,6,'Foley'),(198663,1344843,2,'Script Supervisor'),(198663,1350244,10,'Visual Effects Supervisor'),(198663,1367479,7,'Sculptor'),(198663,1367480,7,'Construction Coordinator'),(198663,1367481,7,'Greensman'),(198663,1367482,7,'Sculptor'),(198663,1367484,7,'Greensman'),(198663,1367488,7,'Set Designer'),(198663,1367490,7,'Set Designer'),(198663,1367491,9,'Property Master'),(198663,1367493,6,'Foley'),(198663,1367494,6,'Sound Designer'),(198663,1367495,6,'Boom Operator'),(198663,1367496,10,'Visual Effects Producer'),(198663,1367497,10,'Visual Effects Supervisor'),(198663,1367498,10,'Visual Effects Producer'),(198663,1367499,9,'Stunt Coordinator'),(198663,1367502,11,'Gaffer'),(198663,1367503,8,'Set Costumer'),(198663,1367504,8,'Set Costumer'),(198663,1367505,6,'Music Editor'),(198663,1367508,2,'Script Supervisor'),(198663,1367509,3,'Location Manager'),(198663,1367510,9,'Studio Teachers'),(198663,1377131,1,'Camera Operator'),(198663,1384367,5,'Dialogue Editor'),(198663,1386913,10,'Visual Effects Producer'),(198663,1391729,1,'Still Photographer'),(198663,1391758,3,'Executive Producer'),(198663,1400506,5,'Digital Intermediate'),(198663,1402546,8,'Hairstylist'),(198663,1415030,9,'Makeup Effects'),(198663,1416171,10,'Animation Supervisor'),(198663,1418348,8,'Makeup Artist'),(198663,1419730,5,'First Assistant Editor'),(198663,1423844,1,'Additional Camera'),(198663,1425326,9,'Makeup Effects'),(198663,1425328,9,'Visual Effects Editor'),(198663,1425329,10,'Visual Effects Producer'),(198663,1425330,9,'Visual Effects Editor'),(198663,1425332,10,'Visual Effects Producer'),(198663,1425334,9,'CG Supervisor'),(198663,1425336,9,'CG Supervisor'),(198663,1425338,1,'Camera Operator'),(198663,1425341,11,'Rigging Gaffer'),(198663,1425342,9,'Unit Publicist'),(198663,1425343,6,'ADR & Dubbing'),(239573,10905,3,'Co-Producer'),(239573,16425,9,'Cinematography'),(239573,20647,4,'Writer'),(239573,51612,3,'Producer'),(239573,1375201,2,'Director'),(127493,899,5,'Editor'),(127493,2031,3,'Casting'),(127493,2532,3,'Casting'),(127493,4140,6,'Original Music Composer'),(127493,12786,2,'Director'),(127493,46084,8,'Costume Design'),(127493,19002,1,'Director of Photography'),(127493,59567,7,'Set Decoration'),(127493,223990,7,'Production Design'),(127493,230174,4,'Writer'),(127493,550112,3,'Producer'),(127493,1098482,3,'Producer'),(127493,1117435,3,'Producer'),(228205,5914,3,'Casting'),(228205,4140,6,'Original Music Composer'),(228205,6040,3,'Producer'),(228205,6800,1,'Director of Photography'),(228205,14653,8,'Makeup Department Head'),(228205,25046,3,'Producer'),(228205,34692,4,'Screenplay'),(228205,46589,8,'Costume Design'),(228205,49907,3,'Executive Producer'),(228205,59930,5,'Editor'),(228205,62063,7,'Set Decoration'),(228205,64172,4,'Novel'),(228205,64172,3,'Producer'),(228205,66120,3,'Executive Producer'),(228205,66121,2,'Director'),(228205,66532,7,'Production Design'),(228205,280800,3,'Co-Producer'),(228205,1024910,3,'Casting'),(228205,1334481,7,'Art Direction'),(228205,1389602,2,'Script Supervisor'),(228205,1391337,3,'Associate Producer'),(228205,1439277,3,'Producer'),(228205,1443945,8,'Hairstylist'),(228205,1443946,8,'Hairstylist'),(228205,1481637,3,'Associate Producer'),(228205,1521490,8,'Hairstylist'),(228205,1521491,8,'Makeup Artist'),(228205,1521492,9,'Special Effects Coordinator'),(77875,2215,3,'Casting'),(77875,7213,3,'Producer'),(77875,17276,3,'Producer'),(77875,20646,2,'Director'),(77875,20648,6,'Music'),(77875,19291,7,'Production Design'),(77875,17629,1,'Director of Photography'),(77875,22815,3,'Producer'),(77875,36619,5,'Editor'),(77875,57343,3,'Producer'),(77875,65114,3,'Producer'),(77875,65316,4,'Writer'),(77875,582624,3,'Producer'),(192136,466,3,'Producer'),(192136,933,4,'Screenplay'),(192136,2623,3,'Casting'),(192136,22047,6,'Original Music Composer'),(192136,19692,8,'Costume Design'),(192136,23824,3,'Producer'),(192136,71570,2,'Director'),(192136,93188,1,'Director of Photography'),(192136,959982,8,'Costume Design'),(192136,1288389,5,'Editor'),(202575,10851,6,'Music'),(202575,54205,3,'Producer'),(202575,76100,2,'Director'),(202575,76100,4,'Screenplay'),(202575,76100,4,'Story'),(202575,76100,3,'Producer'),(202575,104614,3,'Associate Producer'),(202575,968632,3,'Executive Producer'),(202575,1099692,6,'ADR & Dubbing'),(202575,1324165,3,'Executive Producer'),(202575,1324170,3,'Line Producer'),(202575,1324172,7,'Art Direction'),(202575,1324172,2,'Director'),(202575,1387163,4,'Screenplay'),(202575,1483005,10,'Animation Supervisor'),(202575,1756715,4,'Screenplay'),(71469,1217,5,'Editor'),(71469,5914,3,'Casting'),(71469,15221,6,'Music'),(71469,15225,6,'Music Editor'),(71469,10855,2,'Director'),(71469,31126,1,'Director of Photography'),(71469,23430,3,'Producer'),(71469,23604,5,'Editor'),(71469,30247,8,'Costume Design'),(71469,39123,3,'Casting'),(71469,45861,3,'Producer'),(71469,61361,7,'Supervising Art Director'),(71469,158916,6,'Sound Re-Recording Mixer'),(71469,548439,6,'Foley'),(71469,548445,6,'Foley'),(71469,564940,4,'Writer'),(71469,936271,4,'Screenplay'),(71469,1106750,3,'Production Manager'),(71469,1136463,10,'Visual Effects Supervisor'),(71469,1149583,1,'Camera Operator'),(71469,1149583,1,'Steadicam Operator'),(71469,1377267,10,'Visual Effects Supervisor'),(71469,1377293,6,'Sound Effects Editor'),(71469,1379991,10,'Visual Effects Supervisor'),(71469,1392083,6,'Sound Designer'),(71469,1394282,10,'Visual Effects Supervisor'),(71469,1395024,6,'Sound Re-Recording Mixer'),(71469,1395025,6,'Dolby Consultant'),(71469,1399304,9,'Visual Effects Editor'),(71469,1401151,1,'Still Photographer'),(71469,1406778,9,'Stunt Coordinator'),(71469,1410300,10,'Visual Effects Producer'),(71469,1411844,9,'Second Unit Cinematographer'),(71469,1412460,5,'Digital Intermediate'),(71469,1412461,5,'Digital Intermediate'),(71469,1412705,10,'Visual Effects Producer'),(71469,1417965,7,'Production Design'),(71469,1417966,7,'Set Decoration'),(71469,1417967,7,'Set Decoration'),(71469,1417968,7,'Set Decoration'),(71469,1417969,7,'Set Decoration'),(71469,1417970,7,'Set Decoration'),(71469,1417971,3,'Production Manager'),(71469,1417972,6,'ADR & Dubbing'),(71469,1417974,6,'First Assistant Sound Editor'),(71469,1417975,10,'Visual Effects Producer'),(71469,1417977,10,'Visual Effects Producer'),(71469,1417978,10,'Visual Effects Producer'),(71469,1417979,10,'Visual Effects Supervisor'),(71469,1417980,9,'CG Supervisor'),(71469,1417981,9,'CG Supervisor'),(71469,1417982,10,'Visual Effects Supervisor'),(71469,1417983,10,'Animation'),(71469,1417988,10,'VFX Artist'),(71469,1417994,11,'Gaffer'),(71469,1417996,1,'Camera Technician'),(71469,1417997,1,'Camera Intern'),(71469,1417998,11,'Gaffer'),(71469,1417999,8,'Set Costumer'),(71469,1418001,5,'First Assistant Editor'),(71469,1418002,6,'Music Editor'),(71469,1418007,2,'Script Supervisor'),(71469,1418008,3,'Production Accountant'),(71469,1418009,3,'Location Manager'),(71469,1418010,9,'Unit Publicist'),(71469,1511086,6,'Supervising Sound Editor'),(85446,11696,3,'Producer'),(85446,11697,3,'Producer'),(85446,20739,3,'Producer'),(85446,20742,3,'Producer'),(85446,54507,3,'Executive Producer'),(85446,57176,5,'Editor'),(85446,224387,3,'Casting'),(85446,932088,2,'Director'),(85446,932090,9,'Cinematography'),(85446,1079109,4,'Screenplay'),(85446,1336716,10,'Visual Effects Supervisor'),(72387,2545,3,'Producer'),(72387,1979,3,'Executive Producer'),(72387,1919,1,'Director of Photography'),(72387,6223,3,'Executive Producer'),(72387,5493,8,'Costume Design'),(72387,5666,6,'Original Music Composer'),(72387,5669,3,'Casting'),(72387,9990,7,'Production Design'),(72387,13177,6,'Sound Re-Recording Mixer'),(72387,16494,7,'Art Direction'),(72387,18513,8,'Costume Design'),(72387,52358,2,'Director'),(72387,52358,4,'Writer'),(72387,54417,3,'Producer'),(72387,59522,3,'Executive Producer'),(72387,62434,5,'Editor'),(72387,548437,5,'Dialogue Editor'),(72387,930016,6,'Sound Designer'),(72387,930016,6,'Supervising Sound Editor'),(72387,965149,3,'Producer'),(72387,999763,3,'Executive Producer'),(72387,1049456,6,'Sound Editor'),(72387,1066776,6,'Music Supervisor'),(72387,1123794,3,'Producer'),(72387,1317605,7,'Set Decoration'),(72387,1352969,6,'Supervising Sound Editor'),(72387,1352969,6,'Sound Designer'),(72387,1387195,6,'Sound Re-Recording Mixer'),(72387,1395023,6,'Sound Effects Editor'),(72387,1418491,2,'Script Supervisor'),(72387,1428229,6,'Music Editor'),(72387,1551025,6,'Sound mixer'),(72387,1556316,5,'Dialogue Editor'),(72387,1556318,6,'Sound Effects Editor'),(50647,5668,5,'Editor'),(50647,17748,6,'Original Music Composer'),(50647,33673,7,'Set Decoration'),(50647,22214,2,'Director'),(50647,22214,3,'Producer'),(50647,22214,4,'Writer'),(50647,22219,3,'Casting'),(50647,41039,3,'Producer'),(50647,41084,8,'Costume Design'),(50647,42634,7,'Production Design'),(50647,52042,3,'Executive Producer'),(50647,36224,1,'Director of Photography'),(50647,77089,4,'Writer'),(50647,1423980,5,'Editor'),(55721,1589,6,'Original Music Composer'),(55721,3184,3,'Producer'),(55721,5664,3,'Producer'),(55721,5667,1,'Director of Photography'),(55721,10958,7,'Set Decoration'),(55721,8707,8,'Costume Design'),(55721,14382,6,'Supervising Sound Editor'),(55721,13177,6,'Sound Re-Recording Mixer'),(55721,21568,7,'Art Direction'),(55721,21592,8,'Costume Design'),(55721,41039,3,'Producer'),(55721,41080,3,'Casting'),(55721,41081,7,'Production Design'),(55721,41091,4,'Screenplay'),(55721,41091,3,'Co-Producer'),(55721,46942,5,'Editor'),(55721,111456,5,'Editor'),(55721,116805,2,'Director'),(55721,116805,3,'Executive Producer'),(55721,118944,6,'Sound Effects Editor'),(55721,174514,4,'Screenplay'),(55721,174514,3,'Co-Producer'),(55721,996220,9,'Stunts'),(55721,1008052,6,'Music Supervisor'),(55721,1299405,5,'Dialogue Editor'),(55721,1387195,6,'Sound Re-Recording Mixer'),(55721,1389609,8,'Makeup Department Head'),(55721,1392084,5,'Dialogue Editor'),(55721,1400374,1,'Camera Operator'),(55721,1400540,2,'Script Supervisor'),(55721,1401109,1,'Camera Operator'),(55721,1401109,1,'Steadicam Operator'),(55721,1416093,8,'Hair Department Head'),(55721,1420642,8,'Hairstylist'),(55721,1461177,1,'Still Photographer'),(55721,1550827,8,'Key Hair Stylist'),(55721,1550828,7,'Art Department Coordinator'),(55721,1550829,6,'Production Sound Mixer'),(55721,1550830,9,'Special Effects Coordinator'),(109414,449,3,'Executive Producer'),(109414,6410,3,'Casting'),(109414,7441,8,'Costume Design'),(109414,8848,7,'Art Direction'),(109414,18789,3,'Executive Producer'),(109414,19274,4,'Screenplay'),(109414,19274,2,'Director'),(109414,19274,3,'Producer'),(109414,19274,4,'Screenstory'),(109414,40383,3,'Executive Producer'),(109414,41082,7,'Production Design'),(109414,54734,4,'Screenplay'),(109414,54734,2,'Director'),(109414,54734,3,'Producer'),(109414,54734,3,'Executive Producer'),(109414,54734,4,'Screenstory'),(109414,64227,1,'Director of Photography'),(109414,225628,5,'Editor'),(109414,227440,6,'Original Music Composer'),(109414,578722,8,'Makeup Artist'),(109414,928595,3,'Producer'),(109414,958480,7,'Set Decoration'),(109414,1008052,6,'Music Editor'),(109414,1008052,6,'Music Supervisor'),(109414,1015922,2,'Script Supervisor'),(109414,1046127,3,'Executive Producer'),(109414,1206448,3,'Executive Producer'),(109414,1206449,3,'Executive Producer'),(109414,1302618,8,'Makeup Department Head'),(109414,1378697,6,'Sound Re-Recording Mixer'),(109414,1392131,6,'Sound Effects Editor'),(109414,1412450,7,'Art Department Coordinator'),(109414,1417514,6,'Sound Designer'),(109414,1417514,6,'Supervising Sound Editor'),(109414,1417514,6,'Sound Re-Recording Mixer'),(109414,1417516,6,'Sound Effects Editor'),(109414,1437305,1,'Camera Operator'),(109414,1444909,8,'Hair Department Head'),(109414,1449943,6,'Sound Effects Editor'),(109414,1461177,1,'Still Photographer'),(109414,1530150,8,'Key Hair Stylist'),(109414,1546442,6,'Production Sound Mixer'),(109414,1551918,6,'Music Editor'),(87567,19659,6,'Original Music Composer'),(87567,41675,3,'Casting'),(87567,52599,2,'Director'),(87567,52599,4,'Writer'),(87567,52599,3,'Producer'),(87567,56791,9,'Cinematography'),(87567,58084,3,'Producer'),(87567,63425,3,'Producer'),(87567,935243,5,'Editor'),(87567,935245,3,'Producer'),(87567,1031960,4,'Screenstory'),(87567,1196217,4,'Screenstory'),(38322,376,3,'Executive Producer'),(38322,1217,5,'Editor'),(38322,3393,6,'Original Music Composer'),(38322,5290,3,'Casting'),(38322,17144,3,'Producer'),(38322,78029,3,'Executive Producer'),(38322,14139,1,'Director of Photography'),(38322,24192,6,'Music Supervisor'),(38322,53360,3,'Casting'),(38322,58144,4,'Story'),(38322,58143,4,'Characters'),(38322,58145,3,'Executive Producer'),(38322,60070,3,'Executive Producer'),(38322,60070,3,'Unit Production Manager'),(38322,60504,3,'Casting'),(38322,61175,2,'Director'),(38322,66532,7,'Art Direction'),(38322,17313,3,'Producer'),(38322,111052,7,'Production Design'),(38322,222290,9,'Stand In'),(38322,548435,6,'Sound Mixer'),(38322,548441,6,'Production Sound Mixer'),(38322,579405,6,'Sound Re-Recording Mixer'),(38322,971528,8,'Costume Design'),(38322,1333978,8,'Makeup Department Head'),(38322,1336197,6,'Music Editor'),(38322,1377293,6,'Sound Effects Editor'),(38322,1378171,6,'Sound Re-Recording Mixer'),(38322,1415109,1,'Still Photographer'),(38322,1424894,8,'Hair Department Head'),(38322,1458202,2,'Script Supervisor'),(38322,1511086,6,'Supervising Sound Editor'),(38322,1527657,6,'Music Supervisor'),(38322,1551707,3,'Associate Producer'),(38322,1560275,7,'Set Decoration'),(38322,1599143,2,'Assistant Director'),(38322,1599143,3,'Associate Producer'),(38322,1777724,4,'Screenplay'),(38322,1777724,4,'Story'),(38322,1869023,9,'Stunts'),(38322,1869024,11,'Electrician'),(45612,36,1,'Director of Photography'),(45612,561,3,'Casting'),(45612,6048,3,'Producer'),(45612,6057,8,'Costume Design'),(45612,13017,3,'Executive Producer'),(45612,10766,5,'Editor'),(45612,10820,7,'Production Design'),(45612,36859,3,'Producer'),(45612,58709,4,'Writer'),(45612,60893,7,'Art Direction'),(45612,71268,6,'Original Music Composer'),(45612,81850,2,'Director'),(45612,130223,7,'Set Decoration'),(45612,342158,3,'Executive Producer'),(45612,428915,3,'Executive Producer'),(45612,512200,3,'Producer'),(45612,572622,6,'Supervising Sound Editor'),(45612,1319388,8,'Makeup Department Head'),(45612,1319389,8,'Costume Supervisor'),(45612,1355894,10,'Animation'),(157841,2419,2,'Director'),(157841,2419,3,'Producer'),(157841,2419,4,'Writer'),(157841,2420,4,'Screenplay'),(157841,2425,5,'Editor'),(157841,6997,3,'Casting'),(157841,64635,1,'Director of Photography'),(157841,73940,3,'Producer'),(157841,73941,3,'Producer'),(157841,158401,3,'Executive Producer'),(157841,1175954,4,'Author'),(157841,1207303,3,'Executive Producer'),(157841,1207304,6,'Original Music Composer'),(124459,298,3,'Producer'),(124459,434,3,'Casting'),(124459,436,3,'Casting'),(124459,4495,3,'Producer'),(124459,10394,5,'Editor'),(124459,15017,8,'Makeup Artist'),(124459,21568,7,'Production Design'),(124459,23787,8,'Makeup Department Head'),(124459,53012,6,'Music'),(124459,52935,4,'Writer'),(124459,62241,3,'Producer'),(124459,75377,8,'Makeup Artist'),(124459,76054,7,'Art Direction'),(124459,93419,2,'Director'),(124459,207213,3,'Producer'),(124459,965666,8,'Costume Design'),(124459,1108652,1,'Director of Photography'),(124459,1112474,4,'Writer'),(124459,1273002,7,'Set Decoration'),(124459,1336716,10,'Visual Effects Supervisor'),(124459,1370916,2,'Script Supervisor'),(124459,1407721,8,'Wigmaker'),(124459,1411166,8,'Hair Department Head'),(124459,1435689,7,'Construction Coordinator'),(124459,1452643,8,'Key Hair Stylist'),(124459,1481282,7,'Art Department Coordinator'),(124459,1484966,8,'Hairstylist'),(124459,1527912,3,'Casting Associate'),(124459,1533556,8,'Assistant Costume Designer'),(38073,5359,6,'Original Music Composer'),(38073,14377,3,'Casting'),(38073,15328,7,'Production Design'),(38073,20739,3,'Producer'),(38073,20742,3,'Producer'),(38073,11372,5,'Editor'),(38073,29206,3,'Producer'),(38073,46943,3,'Casting'),(38073,50462,8,'Costume Design'),(38073,52449,1,'Director of Photography'),(38073,57430,3,'Executive Producer'),(38073,60935,3,'Casting'),(38073,96439,2,'Director'),(38073,119565,4,'Writer'),(38073,969283,3,'Executive Producer'),(38073,1393558,7,'Leadman'),(38073,1397011,3,'Executive Producer'),(38073,1407029,11,'Gaffer'),(38073,1457935,9,'Compositors'),(302156,298,3,'Producer'),(302156,4697,3,'Co-Executive Producer'),(302156,6041,6,'Original Music Composer'),(302156,16830,3,'Producer'),(302156,17209,3,'Producer'),(302156,17209,3,'Executive Producer'),(302156,20223,3,'Producer'),(302156,22815,3,'Producer'),(302156,24049,4,'Writer'),(302156,31516,3,'Co-Executive Producer'),(302156,53527,8,'Costume Design'),(302156,43159,8,'Makeup Artist'),(302156,45829,3,'Producer'),(302156,53680,3,'Casting'),(302156,57870,3,'Executive Producer'),(302156,59331,4,'Writer'),(302156,62241,3,'Executive Producer'),(302156,62700,3,'Producer'),(302156,67202,7,'Supervising Art Director'),(302156,68320,3,'Producer'),(302156,81476,2,'Director'),(302156,85178,3,'Producer'),(302156,582928,7,'Production Design'),(302156,582929,7,'Set Decoration'),(302156,963861,1,'Director of Photography'),(302156,1337394,7,'Art Direction'),(302156,1401897,5,'Editor'),(302156,1414088,3,'Producer'),(302156,1419168,9,'Makeup Effects'),(302156,1431044,6,'Music'),(302156,1444930,3,'Producer'),(302156,1471673,3,'Co-Executive Producer'),(302156,1659240,3,'Associate Producer'),(302156,1659241,3,'Executive Producer'),(302156,1659242,3,'Associate Producer'),(87502,37,6,'Original Music Composer'),(87502,24,2,'Director'),(87502,24,3,'Producer'),(87502,30,3,'Producer'),(87502,36,1,'Director of Photography'),(87502,8221,7,'Art Direction'),(87502,1324,3,'Casting'),(87502,2212,3,'Producer'),(87502,4061,8,'Costume Design'),(87502,5508,7,'Production Design'),(87502,8701,3,'Producer'),(87502,9654,9,'Stunt Coordinator'),(87502,11174,6,'Sound Designer'),(87502,11174,6,'Supervising Sound Editor'),(87502,15526,8,'Hairstylist'),(87502,16344,6,'ADR & Dubbing'),(87502,20228,6,'Foley'),(87502,20229,6,'Foley'),(87502,23779,3,'Producer'),(87502,23780,1,'Steadicam Operator'),(87502,23781,5,'Editor'),(87502,42267,6,'Sound Designer'),(87502,11005,7,'Set Decoration'),(87502,53176,4,'Screenplay'),(87502,80805,8,'Makeup Artist'),(87502,95142,8,'Makeup Department Head'),(87502,1067555,8,'Makeup Artist'),(87502,1262129,2,'Script Supervisor'),(87502,1321589,8,'Costume Supervisor'),(87502,1335569,6,'Music Editor'),(87502,1352422,5,'Dialogue Editor'),(87502,1378068,8,'Makeup Artist'),(87502,1389127,7,'Set Designer'),(87502,1396825,5,'Digital Intermediate'),(87502,1399071,1,'Helicopter Camera'),(87502,1401994,1,'Camera Operator'),(87502,1403083,7,'Construction Coordinator'),(87502,1405422,9,'Picture Car Coordinator'),(87502,1409283,9,'Unit Publicist'),(87502,1411540,5,'Digital Intermediate'),(87502,1413129,9,'Transportation Coordinator'),(87502,1413169,6,'Sound Re-Recording Mixer'),(87502,1414182,5,'Dialogue Editor'),(87502,1415610,9,'Property Master'),(87502,1420157,10,'Visual Effects Producer'),(87502,1432640,5,'Digital Intermediate'),(87502,1432641,5,'Digital Intermediate'),(87502,1439027,7,'Set Decoration Buyer'),(87502,1445820,8,'Hairstylist'),(87502,1445822,8,'Hairstylist'),(87502,1445824,8,'Hairstylist'),(87502,1445825,8,'Makeup Artist'),(87502,1445827,8,'Makeup Artist'),(87502,1445828,8,'Makeup Artist'),(87502,1445829,7,'Art Department Coordinator'),(87502,1445830,7,'Assistant Art Director'),(87502,1445832,7,'Set Designer'),(87502,1445834,6,'ADR & Dubbing'),(87502,1445835,5,'Dialogue Editor'),(87502,1445837,9,'Sound Recordist'),(87502,1445838,6,'Sound Effects Editor'),(87502,1445839,10,'Animation Supervisor'),(87502,1445840,9,'Visual Effects Editor'),(87502,1445841,9,'Visual Effects Editor'),(87502,1445842,1,'Still Photographer'),(87502,1445847,8,'Set Costumer'),(87502,1445848,8,'Set Costumer'),(87502,1445850,8,'Set Costumer'),(87502,1445853,5,'Digital Intermediate'),(87502,1445854,5,'Digital Intermediate'),(87502,1445855,3,'Location Manager'),(87502,1669267,9,'Stunts'),(120467,8384,7,'Set Decoration'),(120467,474,3,'Casting'),(120467,4222,3,'Casting'),(120467,2949,6,'Original Music Composer'),(120467,2997,3,'Producer'),(120467,4406,3,'Casting'),(120467,5655,4,'Screenplay'),(120467,5655,2,'Director'),(120467,5655,3,'Producer'),(120467,5655,4,'Story'),(120467,5667,1,'Director of Photography'),(120467,5669,3,'Casting'),(120467,5671,8,'Costume Design'),(120467,10903,3,'Executive Producer'),(120467,10905,3,'Executive Producer'),(120467,40751,7,'Art Direction'),(120467,40862,3,'Unit Production Manager'),(120467,14354,4,'Story'),(120467,36402,8,'Makeup Artist'),(120467,36402,8,'Hairstylist'),(120467,43388,3,'Co-Producer'),(120467,71534,5,'Editor'),(120467,992097,4,'Story'),(120467,1004835,3,'Producer'),(120467,1004836,3,'Producer'),(120467,1023711,7,'Production Design'),(120467,1089142,3,'Executive Producer'),(120467,1127893,2,'Assistant Director'),(120467,1205126,8,'Costume Supervisor'),(120467,1293739,2,'Script Supervisor'),(120467,1332433,3,'Executive Producer'),(120467,1335888,9,'Driver'),(120467,1389542,3,'Casting'),(120467,1393351,6,'Music'),(120467,1407019,9,'Visual Effects Editor'),(120467,1415951,8,'Makeup Artist'),(120467,1415951,8,'Hairstylist'),(120467,1427843,9,'Animatronic and Prosthetic Effects'),(120467,1466996,8,'Hairstylist'),(120467,1466997,9,'Animatronic and Prosthetic Effects'),(120467,1475367,3,'Associate Producer'),(120467,1538768,10,'Digital Compositors'),(120467,1556906,9,'Post Production Supervisor'),(120467,1558266,7,'Standby Painter'),(120467,1558270,2,'Assistant Director'),(120467,1677710,1,'Grip'),(296099,298,3,'Producer'),(296099,434,3,'Casting'),(296099,436,3,'Casting'),(296099,5666,6,'Original Music Composer'),(296099,6114,3,'Executive Producer'),(296099,9423,6,'Supervising Sound Editor'),(296099,11505,4,'Characters'),(296099,19284,7,'Production Design'),(296099,10830,3,'Executive Producer'),(296099,24192,6,'Music Supervisor'),(296099,27151,3,'Executive Producer'),(296099,41084,8,'Costume Design'),(296099,42994,3,'Producer'),(296099,52935,2,'Director'),(296099,52935,4,'Writer'),(296099,54164,1,'Director of Photography'),(296099,57430,3,'Executive Producer'),(296099,74322,8,'Makeup Department Head'),(296099,91123,1,'Helicopter Camera'),(296099,969283,3,'Executive Producer'),(296099,1069872,8,'Hair Department Head'),(296099,1127245,7,'Art Direction'),(296099,1236679,2,'Director'),(296099,1236679,4,'Writer'),(296099,1341781,6,'Sound Re-Recording Mixer'),(296099,1345586,7,'Art Department Coordinator'),(296099,1399861,6,'Sound Re-Recording Mixer'),(296099,1437719,2,'Script Supervisor'),(296099,1451396,5,'Editor'),(296099,1452336,9,'Special Effects Coordinator'),(296099,1506366,8,'Set Costumer'),(296099,1527656,3,'Executive Producer'),(296099,1527657,6,'Music Supervisor'),(296099,1533588,7,'Construction Coordinator'),(296099,1533589,10,'Special Effects Supervisor'),(296099,1533590,8,'Set Costumer'),(296099,1533591,8,'Key Hair Stylist'),(296099,1533592,8,'Makeup Artist'),(296099,1546101,6,'Supervising Sound Editor'),(72570,17749,1,'Director of Photography'),(72570,21635,3,'Producer'),(72570,69125,4,'Writer'),(72570,566328,2,'Director'),(132363,3192,3,'Casting'),(132363,7627,3,'Producer'),(132363,8846,1,'Director of Photography'),(132363,12257,7,'Production Design'),(132363,15432,6,'Supervising Sound Editor'),(132363,15432,6,'Sound Re-Recording Mixer'),(132363,15524,8,'Costume Design'),(132363,20019,2,'Director'),(132363,20019,3,'Producer'),(132363,32487,8,'Hairstylist'),(132363,35550,4,'Writer'),(132363,60558,3,'Casting'),(132363,64058,3,'Producer'),(132363,66495,7,'Art Direction'),(132363,68392,5,'Editor'),(132363,92376,6,'Foley'),(132363,92382,6,'ADR & Dubbing'),(132363,77917,8,'Costume Supervisor'),(132363,111457,7,'Art Direction'),(132363,224389,7,'Set Decoration'),(132363,550473,9,'Stunt Coordinator'),(132363,935300,7,'Set Decoration Buyer'),(132363,1095402,3,'Producer'),(132363,1144651,1,'Camera Operator'),(132363,1158052,8,'Makeup Department Head'),(132363,1280961,6,'Original Music Composer'),(132363,1333930,7,'Set Designer'),(132363,1333977,7,'Art Direction'),(132363,1333978,8,'Makeup Department Head'),(132363,1333980,9,'Property Master'),(132363,1333981,7,'Set Decoration Buyer'),(132363,1333982,8,'Costume Supervisor'),(132363,1337461,6,'Sound Re-Recording Mixer'),(132363,1347760,9,'Dialect Coach'),(132363,1355970,6,'Music Editor'),(132363,1367481,7,'Greensman'),(132363,1367488,7,'Set Designer'),(132363,1383283,5,'First Assistant Editor'),(132363,1384762,6,'Sound Designer'),(132363,1393390,10,'Visual Effects Supervisor'),(132363,1396806,10,'Visual Effects Producer'),(132363,1399071,1,'Helicopter Camera'),(132363,1399323,8,'Set Costumer'),(132363,1400847,8,'Hairstylist'),(132363,1401200,11,'Lighting Technician'),(132363,1402724,2,'Script Supervisor'),(132363,1403397,7,'Construction Coordinator'),(132363,1406281,1,'Additional Camera'),(132363,1407351,7,'Greensman'),(132363,1407720,8,'Makeup Artist'),(132363,1407721,8,'Wigmaker'),(132363,1407722,9,'Makeup Effects'),(132363,1407724,3,'Production Supervisor'),(132363,1407725,7,'Art Department Coordinator'),(132363,1407726,7,'Set Designer'),(132363,1407727,7,'Construction Foreman'),(132363,1407728,7,'Greensman'),(132363,1407729,7,'Leadman'),(132363,1407730,5,'Dialogue Editor'),(132363,1407731,6,'Foley'),(132363,1407732,10,'Visual Effects Producer'),(132363,1407733,10,'Visual Effects Producer'),(132363,1407734,10,'Visual Effects Supervisor'),(132363,1407735,9,'Visual Effects Editor'),(132363,1407737,1,'Camera Operator'),(132363,1407738,1,'Additional Camera'),(132363,1407739,1,'Still Photographer'),(132363,1407740,11,'Lighting Technician'),(132363,1407741,11,'Lighting Technician'),(132363,1407743,8,'Set Costumer'),(132363,1407744,5,'Digital Intermediate'),(132363,1407745,5,'First Assistant Editor'),(132363,1407747,3,'Location Manager'),(132363,1407748,3,'Location Manager'),(82654,403,1,'Director of Photography'),(82654,7229,6,'Music'),(82654,12040,8,'Costume Design'),(82654,31710,3,'Producer'),(82654,45841,3,'Casting'),(82654,51987,7,'Production Design'),(82654,56661,4,'Screenplay'),(82654,56661,2,'Director'),(82654,62758,3,'Producer'),(82654,130223,7,'Set Decoration'),(82654,189331,3,'Producer'),(82654,224387,3,'Casting'),(82654,928444,4,'Novel'),(82654,928447,3,'Producer'),(82654,928449,3,'Producer'),(82654,959114,3,'Executive Producer'),(82654,1014937,6,'Music'),(82654,1519867,2,'Script Supervisor'),(82654,1611794,9,'Stunt Coordinator'),(59967,5914,3,'Casting'),(59967,4953,7,'Production Design'),(59967,7784,5,'Editor'),(59967,15573,8,'Costume Design'),(59967,20064,3,'Executive Producer'),(59967,24045,3,'Executive Producer'),(59967,52159,3,'Producer'),(59967,67367,2,'Director'),(59967,67367,4,'Writer'),(59967,60047,3,'Producer'),(59967,69077,6,'Original Music Composer'),(59967,59667,1,'Director of Photography'),(59967,62775,3,'Executive Producer'),(59967,62782,3,'Executive Producer'),(59967,67662,9,'Second Unit Cinematographer'),(59967,113826,3,'Unit Production Manager'),(59967,113826,3,'Co-Producer'),(59967,224512,3,'Executive Producer'),(59967,578721,8,'Makeup Artist'),(59967,578724,8,'Makeup Department Head'),(59967,582943,7,'Art Department Coordinator'),(59967,960282,7,'Art Direction'),(59967,1024910,3,'Casting'),(59967,1024912,7,'Art Direction'),(59967,1087548,3,'Co-Producer'),(59967,1127093,3,'Co-Producer'),(59967,1333222,9,'Stunt Coordinator'),(59967,1333982,8,'Costume Supervisor'),(59967,1392094,10,'Visual Effects Supervisor'),(59967,1406130,8,'Set Costumer'),(59967,1407019,9,'Visual Effects Editor'),(59967,1407028,1,'Still Photographer'),(59967,1407340,8,'Hairstylist'),(59967,1412204,1,'Camera Operator'),(59967,1458148,5,'First Assistant Editor'),(59967,1458987,8,'Hairstylist'),(59967,1471726,6,'Music Supervisor'),(59967,1473814,2,'Script Supervisor'),(59967,1521013,7,'Set Decoration'),(59967,1521021,8,'Set Costumer'),(59967,1529430,6,'Music Editor'),(59967,1529439,3,'Co-Producer'),(82696,29,3,'Executive Producer'),(82696,5065,2,'Director'),(82696,10572,6,'Music'),(82696,10573,1,'Director of Photography'),(82696,6347,3,'Casting'),(82696,9647,5,'Editor'),(82696,40383,3,'Executive Producer'),(82696,51612,3,'Producer'),(82696,51613,3,'Executive Producer'),(82696,52451,3,'Producer'),(82696,53758,3,'Producer'),(82696,176489,4,'Writer'),(82696,187214,3,'Line Producer'),(82696,215541,3,'Executive Producer'),(82696,928631,3,'Producer'),(82696,928632,3,'Producer'),(82696,1395373,2,'Script Supervisor'),(59436,3631,8,'Costume Design'),(59436,1046,3,'Casting'),(59436,1243,2,'Director'),(59436,1243,4,'Writer'),(59436,1243,4,'Screenplay'),(59436,1252,5,'Editor'),(59436,1265,3,'Producer'),(59436,1268,3,'Producer'),(59436,2240,1,'Director of Photography'),(59436,8795,7,'Production Design'),(59436,6990,3,'Co-Producer'),(59436,6990,3,'Unit Production Manager'),(59436,6994,3,'Co-Executive Producer'),(59436,6996,3,'Casting'),(59436,15432,6,'Supervising Sound Editor'),(59436,15607,3,'Producer'),(59436,49190,9,'Thanks'),(59436,49194,7,'Location Scout'),(59436,49872,1,'First Assistant Camera'),(59436,10907,3,'Casting'),(59436,92377,6,'Sound Re-Recording Mixer'),(59436,92381,6,'Foley'),(59436,92388,6,'Foley'),(59436,937622,9,'Special Effects'),(59436,978114,6,'Sound mixer'),(59436,1025318,7,'Art Direction'),(59436,1045531,8,'Hairstylist'),(59436,1151457,7,'Set Decoration'),(59436,1194063,3,'Production Accountant'),(59436,1293348,8,'Makeup Artist'),(59436,1337462,6,'Foley'),(59436,1371220,1,'Camera Operator'),(59436,1374456,7,'Art Department Coordinator'),(59436,1377116,5,'Digital Intermediate'),(59436,1399518,5,'Digital Intermediate'),(59436,1399970,6,'Sound Effects Editor'),(59436,1403423,5,'Color Timer'),(59436,1407730,6,'Sound Editor'),(59436,1409824,8,'Wigmaker'),(59436,1415995,9,'Transportation Coordinator'),(59436,1419114,9,'Dialect Coach'),(59436,1442172,9,'Transportation Coordinator'),(59436,1462270,3,'Executive Producer'),(59436,1462272,3,'Associate Producer'),(59436,1477785,1,'Still Photographer'),(59436,1477800,11,'Electrician'),(59436,1483827,2,'Assistant Director'),(59436,1530769,3,'Unit Production Manager'),(59436,1531576,5,'Dialogue Editor'),(59436,1550688,8,'Hairstylist'),(59436,1550691,8,'Makeup Artist'),(59436,1550692,8,'Hairstylist'),(59436,1550693,2,'Assistant Director'),(59436,1550841,6,'Foley'),(59436,1550842,6,'Dolby Consultant'),(59436,1550843,9,'Mixing Engineer'),(59436,1550844,10,'Special Effects Supervisor'),(59436,1550845,9,'Special Effects'),(59436,1550846,9,'Special Effects'),(59436,1550849,1,'Grip'),(59436,1551181,5,'First Assistant Editor'),(59436,1551183,5,'Digital Intermediate'),(59436,1551185,3,'Production Coordinator'),(59436,1551188,2,'Script Supervisor'),(59436,1555345,5,'Editorial Services'),(59436,1560609,11,'Gaffer'),(227783,52872,4,'Writer'),(227783,1262197,2,'Director'),(227783,1262197,4,'Writer'),(227783,1262198,4,'Writer'),(227783,1447563,4,'Storyboard'),(36593,7181,3,'Producer'),(36593,12936,3,'Executive Producer'),(36593,12987,4,'Writer'),(36593,13426,2,'Director'),(36593,13434,7,'Art Direction'),(36593,12939,6,'Original Music Composer'),(36593,25455,3,'Executive Producer'),(36593,12991,4,'Writer'),(36593,56593,1,'Director of Photography'),(36593,13429,3,'Producer'),(36593,13429,4,'Writer'),(36593,71079,3,'Producer'),(36593,950637,3,'Producer'),(37056,1264,5,'Editor'),(37056,2242,3,'Casting'),(37056,6913,3,'Producer'),(37056,5672,7,'Supervising Art Director'),(37056,6511,3,'Producer'),(37056,11696,3,'Producer'),(37056,15911,9,'Stunt Coordinator'),(37056,20648,6,'Original Music Composer'),(37056,17046,2,'Director'),(37056,18492,4,'Screenplay'),(37056,20773,4,'Screenplay'),(37056,21379,7,'Production Design'),(37056,25063,7,'Set Decoration'),(37056,46088,3,'Producer'),(37056,59984,1,'Director of Photography'),(37056,63291,3,'Executive Producer'),(37056,119176,3,'Producer'),(37056,119177,3,'Line Producer'),(37056,119178,3,'Casting'),(37056,119179,3,'Casting'),(37056,119180,7,'Art Direction'),(37056,119181,8,'Costume Design'),(37056,119182,8,'Makeup Artist'),(37056,119183,12,'Stunt Double'),(37056,1455279,2,'Script Supervisor'),(76489,4500,6,'Original Music Composer'),(76489,2507,1,'Director of Photography'),(76489,5328,3,'Casting'),(76489,7395,4,'Screenplay'),(76489,7395,2,'Director'),(76489,7396,4,'Screenplay'),(76489,7396,2,'Director'),(76489,7407,3,'Producer'),(76489,21800,4,'Screenplay'),(76489,68016,6,'Orchestrator'),(76489,73108,5,'Editor'),(273481,151,1,'Director of Photography'),(273481,375,6,'Sound Effects Editor'),(273481,6410,3,'Casting'),(273481,4588,3,'Producer'),(273481,6057,8,'Costume Design'),(273481,13626,7,'Set Decoration'),(273481,16994,6,'Sound Effects Editor'),(273481,47287,3,'Producer'),(273481,67759,3,'Producer'),(273481,67759,3,'Executive Producer'),(273481,60076,3,'Producer'),(273481,92486,9,'Stunt Coordinator'),(273481,91122,1,'Helicopter Camera'),(273481,102873,7,'Production Design'),(273481,117992,6,'Original Music Composer'),(273481,137427,2,'Director'),(273481,935493,3,'Casting Associate'),(273481,999565,5,'Editor'),(273481,1026247,3,'Executive Producer'),(273481,1026247,3,'Line Producer'),(273481,1072607,6,'Music Editor'),(273481,1206767,7,'Supervising Art Director'),(273481,1215399,4,'Writer'),(273481,1315700,8,'Makeup Department Head'),(273481,1330079,7,'Art Direction'),(273481,1342626,6,'Sound Re-Recording Mixer'),(273481,1368865,6,'Supervising Sound Editor'),(273481,1368866,6,'Sound Designer'),(273481,1368866,6,'Sound Re-Recording Mixer'),(273481,1392963,10,'Visual Effects Supervisor'),(273481,1395275,1,'Still Photographer'),(273481,1397876,9,'Special Effects'),(273481,1400506,5,'Digital Intermediate'),(273481,1402004,8,'Set Costumer'),(273481,1402029,10,'Visual Effects Supervisor'),(273481,1406079,8,'Makeup Artist'),(273481,1409284,2,'Script Supervisor'),(273481,1412223,8,'Hair Department Head'),(273481,1413500,9,'Executive Music Producer'),(273481,1428595,6,'Sound Effects Editor'),(273481,1432047,5,'Digital Intermediate'),(273481,1494525,8,'Key Hair Stylist'),(273481,1494533,8,'Assistant Costume Designer'),(273481,1519864,3,'Producer'),(273481,1519866,3,'Associate Producer'),(273481,1519868,3,'Associate Producer'),(273481,1532605,3,'Casting Associate'),(273481,1533677,9,'Executive Music Producer'),(273481,1543230,9,'Armorer'),(273481,1551040,6,'Music Supervisor'),(273481,1551041,6,'Sound mixer'),(273481,1559873,3,'Casting Associate'),(273481,1560966,1,'Steadicam Operator'),(273481,1568831,8,'Set Costumer'),(273481,1568832,5,'Dialogue Editor'),(273481,1568836,5,'First Assistant Editor'),(273481,1568837,7,'Art Department Coordinator'),(273481,1568838,10,'Animation'),(273481,1568839,10,'Animation'),(273481,1568840,10,'Visual Effects Coordinator'),(273481,1568841,10,'Visual Effects Producer'),(273481,1568842,10,'Visual Effects Supervisor'),(273481,1568843,10,'Visual Effects Supervisor'),(307081,29,3,'Producer'),(307081,1307,3,'Executive Producer'),(307081,59839,3,'Executive Producer'),(307081,1729,6,'Original Music Composer'),(307081,5914,3,'Casting'),(307081,4190,8,'Costume Design'),(307081,12131,7,'Production Design'),(307081,18265,1,'Director of Photography'),(307081,20907,2,'Director'),(307081,20907,3,'Producer'),(307081,21968,3,'Executive Producer'),(307081,47053,3,'Producer'),(307081,51612,3,'Producer'),(307081,51613,3,'Producer'),(307081,58871,5,'Editor'),(307081,62639,3,'Executive Producer'),(307081,62640,3,'Executive Producer'),(307081,65559,3,'Executive Producer'),(307081,76046,3,'Executive Producer'),(307081,200043,4,'Writer'),(307081,200043,3,'Executive Producer'),(307081,407795,8,'Hairstylist'),(307081,1024910,3,'Casting'),(307081,1117436,3,'Co-Producer'),(307081,1124533,3,'Executive Producer'),(307081,1145972,7,'Set Decoration'),(307081,1208355,7,'Art Direction'),(307081,1389601,2,'Script Supervisor'),(307081,1395030,8,'Set Costumer'),(307081,1417410,7,'Art Department Coordinator'),(307081,1419091,8,'Makeup Department Head'),(307081,1471726,6,'Music Supervisor'),(307081,1500929,3,'Producer'),(307081,1506014,3,'Executive Producer'),(307081,1506015,3,'Executive Producer'),(307081,1506016,3,'Executive Producer'),(307081,1506017,3,'Executive Producer'),(307081,1521493,8,'Makeup Artist'),(307081,1521494,8,'Costume Supervisor'),(293863,68602,3,'Producer'),(293863,3953,3,'Producer'),(293863,3965,3,'Casting'),(293863,5362,3,'Casting'),(293863,5363,3,'Casting'),(293863,12205,8,'Costume Design'),(293863,15017,8,'Makeup Artist'),(293863,17233,5,'Editor'),(293863,17829,7,'Production Design'),(293863,35180,3,'Producer'),(293863,109745,2,'Director'),(293863,225499,4,'Screenplay'),(293863,225499,4,'Story'),(293863,1034748,3,'Casting'),(293863,1042699,6,'Original Music Composer'),(293863,1111120,4,'Screenplay'),(293863,1111120,4,'Story'),(293863,1144816,1,'Director of Photography'),(293863,1324015,7,'Art Direction'),(293863,1397693,2,'Script Supervisor'),(293863,1441806,7,'Set Decoration'),(293863,1493973,3,'Casting'),(41233,54507,2,'Director'),(41233,54510,4,'Characters'),(41233,138007,4,'Writer'),(41233,138008,4,'Writer'),(41233,1594602,8,'Costume Design'),(50456,474,3,'Casting'),(50456,5325,3,'Producer'),(50456,6282,8,'Costume Design'),(50456,11273,7,'Art Direction'),(50456,18127,2,'Script Supervisor'),(50456,18789,3,'Executive Producer'),(50456,26192,1,'Director of Photography'),(50456,36588,2,'Director'),(50456,36590,5,'Editor'),(50456,36656,7,'Production Design'),(50456,36657,7,'Art Direction'),(50456,36658,7,'Set Decoration'),(50456,234880,6,'Original Music Composer'),(50456,543250,4,'Screenplay'),(50456,1027824,4,'Screenplay'),(50456,1027824,4,'Story'),(50456,1027825,7,'Supervising Art Director'),(50456,1215767,3,'Producer'),(50456,1242165,3,'Producer'),(50456,1324460,7,'Art Direction'),(50456,1404549,2,'Script Supervisor'),(59861,31,4,'Screenplay'),(59861,31,2,'Director'),(59861,31,3,'Producer'),(59861,546,3,'Casting'),(59861,3188,7,'Production Design'),(59861,1213,6,'Original Music Composer'),(59861,1301,1,'Director of Photography'),(59861,4032,7,'Set Decoration'),(59861,8275,3,'Co-Producer'),(59861,12374,3,'Executive Producer'),(59861,27098,3,'Producer'),(59861,43441,5,'Editor'),(59861,54645,4,'Screenplay'),(59861,54645,4,'Writer'),(59861,60246,3,'Executive Producer'),(59861,342158,3,'Executive Producer'),(59861,428915,3,'Executive Producer'),(59861,1316191,7,'Art Direction'),(59861,1355529,7,'Art Department Coordinator'),(59861,1395028,1,'Still Photographer'),(59861,1408293,8,'Hair Department Head'),(59861,1478953,2,'Script Supervisor'),(133805,2952,3,'Casting'),(133805,2836,2,'Director'),(133805,2866,5,'Editor'),(133805,3027,4,'Novel'),(133805,7229,6,'Music'),(133805,8315,7,'Production Design'),(133805,9439,6,'Foley'),(133805,9440,6,'Foley'),(133805,27767,4,'Screenplay'),(133805,44138,3,'Executive Producer'),(133805,55613,8,'Costume Design'),(133805,59667,9,'Cinematography'),(133805,57343,3,'Producer'),(133805,67846,5,'Editor'),(133805,67662,1,'Additional Photography'),(133805,224391,3,'Production Manager'),(133805,548438,6,'Sound Effects Editor'),(133805,558227,8,'Makeup Department Head'),(133805,579405,6,'Sound Re-Recording Mixer'),(133805,978127,6,'Sound Re-Recording Mixer'),(133805,1002652,10,'Visual Effects Supervisor'),(133805,1047628,9,'Visual Effects Editor'),(133805,1098032,4,'Screenplay'),(133805,1105218,1,'Camera Operator'),(133805,1321698,8,'Costume Supervisor'),(133805,1322019,7,'Art Direction'),(133805,1330205,9,'Unit Publicist'),(133805,1334479,7,'Set Designer'),(133805,1334480,7,'Art Department Coordinator'),(133805,1342657,6,'Sound Effects Editor'),(133805,1377293,6,'Sound Designer'),(133805,1387183,5,'Dialogue Editor'),(133805,1392105,9,'Stunt Coordinator'),(133805,1399501,9,'Scenic Artist'),(133805,1399927,1,'Camera Operator'),(133805,1400506,5,'Digital Intermediate'),(133805,1401309,2,'Script Supervisor'),(133805,1404212,6,'Supervising Sound Editor'),(133805,1404217,6,'Sound Designer'),(133805,1404850,1,'Still Photographer'),(133805,1405382,5,'Dialogue Editor'),(133805,1408665,8,'Hairstylist'),(133805,1408666,8,'Hairstylist'),(133805,1408667,9,'Makeup Effects'),(133805,1408668,9,'Makeup Effects'),(133805,1408669,7,'Construction Coordinator'),(133805,1408670,7,'Assistant Art Director'),(133805,1408671,7,'Leadman'),(133805,1408672,6,'ADR & Dubbing'),(133805,1408673,9,'Special Effects Coordinator'),(133805,1408675,10,'Visual Effects Producer'),(133805,1408676,10,'VFX Production Coordinator'),(133805,1408677,10,'Animation'),(133805,1408678,10,'Animation'),(133805,1408679,1,'Camera Operator'),(133805,1408680,1,'Underwater Camera'),(133805,1408702,11,'Rigging Gaffer'),(133805,1408704,5,'First Assistant Editor'),(133805,1408705,6,'Music Editor'),(133805,1408706,6,'Music Editor'),(133805,1408707,9,'Transportation Coordinator'),(133805,1408708,3,'Location Manager'),(133805,1408710,9,'Studio Teachers'),(133805,1408711,9,'Choreographer'),(133805,1456835,10,'Animation'),(109421,153,6,'Original Music Composer'),(109421,1884,2,'Director'),(109421,1884,1,'Director of Photography'),(109421,1884,5,'Editor'),(109421,10952,3,'Producer'),(109421,19014,4,'Screenplay'),(109421,19014,3,'Producer'),(109421,20172,8,'Costume Design'),(109421,51922,3,'Casting'),(109421,62782,3,'Executive Producer'),(109421,119665,3,'Producer'),(109421,958087,7,'Art Direction'),(109421,970192,7,'Set Decoration'),(109421,1046154,3,'Executive Producer'),(109421,1046155,3,'Executive Producer'),(51162,11506,1,'Director of Photography'),(51162,23684,9,'Supervising Animator'),(51162,58363,6,'Sound Editor'),(51162,61416,3,'Producer'),(51162,65530,10,'Visual Development'),(51162,65531,9,'Supervising Animator'),(51162,65534,10,'Visual Development'),(51162,65534,9,'Supervising Animator'),(51162,71856,2,'Layout'),(51162,77545,4,'Book'),(51162,83083,6,'ADR & Dubbing'),(51162,83085,6,'Sound Effects Editor'),(51162,83090,6,'Supervising Sound Editor'),(51162,83091,6,'Sound Re-Recording Mixer'),(51162,91093,6,'Sound Editor'),(51162,112609,6,'Sound Re-Recording Mixer'),(51162,115755,9,'Supervising Animator'),(51162,137198,3,'Casting'),(51162,227438,2,'Director'),(51162,227438,4,'Story'),(51162,227439,2,'Director'),(51162,227439,4,'Story'),(51162,227440,6,'Original Music Composer'),(51162,525908,4,'Story'),(51162,969945,5,'Editor'),(51162,971858,4,'Story'),(51162,1116937,6,'Foley'),(51162,1337303,10,'Animation'),(51162,1340669,4,'Storyboard'),(51162,1364882,4,'Story'),(51162,1395352,3,'Associate Producer'),(51162,1397792,10,'Visual Effects Supervisor'),(51162,1397823,6,'Foley'),(51162,1415618,6,'Sound Editor'),(51162,1435190,6,'Foley'),(51162,1438903,6,'Sound Recordist'),(51162,1447347,10,'Visual Development'),(51162,1447366,10,'Animation'),(51162,1447376,10,'Animation'),(51162,1447382,10,'Visual Development'),(51162,1447436,2,'Layout'),(51162,1447503,10,'Visual Development'),(51162,1447587,2,'Layout'),(51162,1447590,2,'Layout'),(51162,1447598,2,'Layout'),(51162,1447599,2,'Layout'),(51162,1450294,3,'Production Supervisor'),(51162,1451279,10,'Visual Development'),(51162,1451279,2,'Layout'),(51162,1453488,10,'Animation'),(51162,1454249,10,'Animation'),(51162,1455558,9,'Supervising Animator'),(51162,1460431,5,'First Assistant Editor'),(51162,1460486,1,'Camera Operator'),(51162,1460603,9,'Compositors'),(51162,1461353,10,'Visual Effects'),(51162,1461357,10,'Visual Effects Supervisor'),(51162,1461361,10,'Visual Development'),(51162,1461362,4,'Storyboard'),(51162,1461362,4,'Story'),(51162,1461363,4,'Storyboard'),(51162,1461363,4,'Story'),(51162,1461364,10,'Visual Development'),(51162,1461366,8,'Set Dressing Artist'),(51162,1461367,4,'Storyboard'),(51162,1461367,4,'Story'),(51162,1461368,4,'Dialogue'),(51162,1461370,6,'Sound Recordist'),(51162,1461371,6,'Foley'),(51162,1461372,6,'Sound Editor'),(51162,1461373,9,'Special Effects'),(51162,1461374,9,'Special Effects'),(51162,1461377,10,'Animation'),(51162,1461378,10,'Animation'),(51162,1461379,2,'Layout'),(51162,1461387,2,'Layout'),(51162,1461389,10,'Animation'),(51162,1461391,10,'Animation'),(51162,1461392,10,'Animation'),(51162,1461394,2,'Layout'),(51162,1461395,9,'Supervising Animator'),(51162,1461396,2,'Layout'),(51162,1461397,2,'Layout'),(51162,1461401,2,'Layout'),(51162,1461402,10,'Animation'),(51162,1461408,2,'Layout'),(51162,1461409,9,'Production Office Assistant'),(51162,1461416,3,'Casting'),(51162,1788093,1,'First Assistant Camera'),(239566,153,6,'Original Music Composer'),(239566,339,3,'Producer'),(239566,433,5,'Editor'),(239566,1428,3,'Producer'),(239566,5328,3,'Casting'),(239566,5582,1,'Director of Photography'),(239566,7538,6,'Music Editor'),(239566,15573,8,'Costume Design'),(239566,16494,7,'Art Direction'),(239566,42034,6,'Sound Re-Recording Mixer'),(239566,19689,3,'Casting'),(239566,21339,4,'Screenplay'),(239566,21339,3,'Executive Producer'),(239566,51385,3,'Producer'),(239566,52452,3,'Executive Producer'),(239566,52453,6,'Music Supervisor'),(239566,53391,3,'Producer'),(239566,55789,2,'Director'),(239566,55789,3,'Producer'),(239566,60193,7,'Production Design'),(239566,63906,6,'Music Editor'),(239566,69226,3,'Executive Producer'),(239566,73838,4,'Screenplay'),(239566,75002,6,'Music Supervisor'),(239566,120254,4,'Screenplay'),(239566,120254,3,'Executive Producer'),(239566,146026,1,'Still Photographer'),(239566,536491,3,'Executive Producer'),(239566,970192,7,'Set Decoration'),(239566,1114890,3,'Executive Producer'),(239566,1345595,6,'Sound Re-Recording Mixer'),(239566,1367665,6,'Boom Operator'),(239566,1399862,5,'Dialogue Editor'),(239566,1400093,6,'Sound Effects Editor'),(239566,1400558,6,'Sound Designer'),(239566,1400558,6,'Sound Effects Editor'),(239566,1418398,1,'Steadicam Operator'),(239566,1418398,1,'Camera Operator'),(239566,1428229,6,'Music Editor'),(239566,1428595,6,'Sound Effects Editor'),(239566,1428595,6,'Sound Designer'),(239566,1465491,3,'Production Supervisor'),(239566,1466245,6,'Sound mixer'),(239566,1478953,2,'Script Supervisor'),(239566,1564157,3,'Production Coordinator'),(239566,1564160,11,'Gaffer'),(53113,21712,2,'Director'),(184346,770,3,'Producer'),(184346,2215,3,'Casting'),(184346,5390,7,'Art Direction'),(184346,19155,6,'Music'),(184346,31126,9,'Cinematography'),(184346,55499,2,'Director'),(184346,55499,4,'Writer'),(184346,55500,4,'Writer'),(184346,60135,7,'Set Decoration'),(184346,60502,5,'Editor'),(184346,134859,9,'Stunt Coordinator'),(184346,582807,8,'Costume Design'),(184346,1043368,9,'Special Effects Coordinator'),(184346,1074163,9,'Stunt Coordinator'),(184346,1209613,11,'Gaffer'),(184346,1227173,6,'Foley'),(184346,1252535,5,'Dialogue Editor'),(184346,1331650,8,'Set Costumer'),(184346,1346957,2,'Script Supervisor'),(184346,1347726,9,'Scenic Artist'),(184346,1353746,8,'Makeup Artist'),(184346,1360101,6,'Foley'),(184346,1386918,10,'Visual Effects Producer'),(184346,1389858,6,'Sound Effects Editor'),(184346,1392104,10,'Visual Effects Producer'),(184346,1393556,9,'Property Master'),(184346,1395369,1,'Still Photographer'),(184346,1396364,3,'Production Manager'),(184346,1399461,9,'Scenic Artist'),(184346,1400546,7,'Construction Coordinator'),(184346,1401989,1,'Steadicam Operator'),(184346,1404235,9,'Unit Publicist'),(184346,1406572,8,'Hairstylist'),(184346,1406780,1,'Helicopter Camera'),(184346,1408359,1,'Camera Operator'),(184346,1411796,3,'Casting'),(184346,1411797,7,'Art Direction'),(184346,1411798,8,'Makeup Artist'),(184346,1411798,8,'Hairstylist'),(184346,1411799,8,'Hairstylist'),(184346,1411800,8,'Makeup Department Head'),(184346,1411801,8,'Makeup Artist'),(184346,1411802,7,'Art Department Coordinator'),(184346,1411803,7,'Assistant Art Director'),(184346,1411804,7,'Assistant Art Director'),(184346,1411805,7,'Assistant Art Director'),(184346,1411806,7,'Greensman'),(184346,1411807,7,'Leadman'),(184346,1411808,9,'Scenic Artist'),(184346,1411809,9,'Scenic Artist'),(184346,1411810,9,'Scenic Artist'),(184346,1411812,9,'Scenic Artist'),(184346,1411814,6,'Sound Effects Editor'),(184346,1411830,10,'Visual Effects Producer'),(184346,1411831,10,'Visual Effects Producer'),(184346,1411835,10,'Visual Effects Supervisor'),(184346,1411836,10,'Visual Effects Supervisor'),(184346,1411838,10,'Visual Effects Supervisor'),(184346,1411839,10,'Animation Supervisor'),(184346,1411840,9,'CG Supervisor'),(184346,1411841,9,'CG Supervisor'),(184346,1411842,1,'Camera Operator'),(184346,1411844,1,'Camera Operator'),(184346,1411845,1,'Helicopter Camera'),(184346,1411846,9,'Second Unit Cinematographer'),(184346,1411849,1,'Additional Camera'),(184346,1411850,11,'Gaffer'),(184346,1411853,8,'Costume Supervisor'),(184346,1411854,8,'Set Costumer'),(184346,1411855,8,'Set Costumer'),(184346,1411856,6,'Music Editor'),(184346,1411857,9,'Dialect Coach'),(184346,1411860,2,'Script Supervisor'),(184346,1411861,3,'Location Manager'),(184346,1430231,7,'Production Design'),(184346,1453594,10,'Animation'),(48340,15326,3,'Casting'),(48340,37757,6,'Music'),(48340,59126,2,'Director'),(48340,63972,1,'Director of Photography'),(48340,62744,7,'Production Design'),(48340,140264,4,'Writer'),(48340,140264,3,'Producer'),(48340,140265,4,'Writer'),(48340,1317649,3,'Producer'),(48340,1317650,7,'Art Direction'),(48340,1418813,9,'Stunt Coordinator'),(48340,1452989,10,'Animation'),(48340,1453003,10,'Animation'),(48340,1693424,8,'Costume Design'),(72207,403,1,'Director of Photography'),(72207,546,3,'Casting'),(72207,1589,6,'Original Music Composer'),(72207,21592,8,'Costume Design'),(72207,33283,5,'Editor'),(72207,41088,4,'Screenplay'),(72207,46942,5,'Editor'),(72207,52042,3,'Executive Producer'),(72207,52934,2,'Director'),(72207,52934,4,'Screenplay'),(72207,141301,7,'Production Design'),(72207,1324261,7,'Art Direction'),(72207,1324262,7,'Set Decoration'),(43539,455,4,'Screenplay'),(43539,455,2,'Director'),(43539,455,3,'Producer'),(43539,531,6,'Original Music Composer'),(43539,2948,3,'Producer'),(43539,4401,3,'Producer'),(43539,4402,3,'Producer'),(43539,19113,1,'Director of Photography'),(43539,20540,3,'Casting'),(43539,35594,8,'Costume Design'),(43539,25550,7,'Production Design'),(43539,51692,5,'Editor'),(43539,60187,3,'Executive Producer'),(43539,77008,4,'Screenplay'),(43539,134810,4,'Screenplay'),(43539,230691,3,'Executive Producer'),(43539,544093,3,'Producer'),(43539,1424894,8,'Hair Department Head'),(43347,1213,6,'Original Music Composer'),(43347,2484,5,'Editor'),(43347,9181,2,'Director'),(43347,1474332,4,'Screenplay'),(37707,5877,4,'Scenario Writer'),(37707,5877,4,'Screenplay'),(37707,5877,2,'Director'),(37707,8361,9,'Stunt Coordinator'),(37707,51035,8,'Costume Design'),(37707,16930,9,'Cinematography'),(37707,10828,3,'Producer'),(37707,23801,4,'Screenplay'),(37707,28242,9,'Stunt Coordinator'),(37707,59935,3,'Producer'),(37707,60088,7,'Art Direction'),(37707,85964,6,'Sound Effects Editor'),(37707,90769,6,'Sound Designer'),(37707,118360,4,'Screenplay'),(37707,118361,3,'Producer'),(37707,190936,3,'Casting'),(37707,544428,10,'Visual Effects Producer'),(37707,933333,3,'Casting'),(37707,937975,10,'Visual Effects Supervisor'),(37707,959555,7,'Production Design'),(37707,966444,3,'Casting'),(37707,1121601,3,'Production Manager'),(37707,1179441,1,'Still Photographer'),(37707,1183015,6,'Music'),(37707,1193691,8,'Hairstylist'),(37707,1204668,10,'Visual Effects Producer'),(37707,1233109,10,'Visual Effects Supervisor'),(37707,1242935,9,'Unit Publicist'),(37707,1312174,8,'Costume Supervisor'),(37707,1319467,8,'Makeup Department Head'),(37707,1337473,9,'Transportation Coordinator'),(37707,1338133,6,'Supervising Sound Editor'),(37707,1338134,6,'Foley'),(37707,1340343,2,'Script Supervisor'),(37707,1340346,5,'Dialogue Editor'),(37707,1375604,5,'Dialogue Editor'),(37707,1375605,6,'Sound Effects Editor'),(37707,1378228,6,'Sound Re-Recording Mixer'),(37707,1392095,10,'Visual Effects Supervisor'),(37707,1393021,6,'Music Editor'),(37707,1394445,10,'Visual Effects Producer'),(37707,1399508,11,'Gaffer'),(37707,1399508,9,'Thanks'),(37707,1399861,6,'Sound Re-Recording Mixer'),(37707,1399909,7,'Set Designer'),(37707,1399910,7,'Assistant Art Director'),(37707,1399911,9,'Scenic Artist'),(37707,1399912,7,'Leadman'),(37707,1399913,9,'Property Master'),(37707,1399914,6,'Supervising Sound Editor'),(37707,1399915,5,'Dialogue Editor'),(37707,1399916,9,'Sound Recordist'),(37707,1399917,6,'Foley'),(37707,1399918,6,'Sound Effects Editor'),(37707,1399919,9,'Special Effects Coordinator'),(37707,1399920,10,'Visual Effects Producer'),(37707,1399921,10,'Visual Effects Producer'),(37707,1399922,10,'Visual Effects Producer'),(37707,1399923,10,'Visual Effects Producer'),(37707,1399924,9,'Visual Effects Editor'),(37707,1399925,9,'Visual Effects Editor'),(37707,1399926,10,'Visual Effects Supervisor'),(37707,1399927,1,'Camera Operator'),(37707,1399928,1,'Camera Operator'),(37707,1399929,5,'Digital Intermediate'),(37707,1399930,3,'Location Manager'),(37707,1399931,5,'Color Timer'),(37707,1460504,10,'VFX Artist'),(58151,4767,3,'Producer'),(58151,50767,2,'Director'),(58151,71237,3,'Producer'),(58151,71556,3,'Executive Producer'),(58151,149495,4,'Screenplay'),(58151,227448,3,'Executive Producer'),(58151,227449,3,'Executive Producer'),(58151,227450,3,'Executive Producer'),(58151,1453944,11,'Lighting Artist'),(58151,1460672,9,'Post Production Supervisor'),(76640,1720,3,'Casting'),(76640,1921,4,'Writer'),(76640,6047,4,'Writer'),(76640,10952,3,'Producer'),(76640,11410,5,'Editor'),(76640,60665,3,'Casting'),(76640,543568,2,'Director'),(76640,929598,6,'Original Music Composer'),(76640,957799,8,'Costume Design'),(76640,1143493,4,'Screenplay'),(76640,1143493,4,'Story'),(57089,61373,4,'Writer'),(57089,108952,2,'Director'),(57089,108952,4,'Writer'),(57089,1450364,9,'Other'),(57089,1455598,10,'Animation'),(57089,1460201,10,'Animation'),(57089,1460488,7,'Art Department Manager'),(57089,1460630,10,'Visual Effects'),(46829,7800,3,'Casting'),(46829,9271,7,'Art Direction'),(46829,16363,3,'Casting'),(46829,18457,3,'Casting'),(46829,17829,7,'Production Design'),(46829,20182,3,'Producer'),(46829,21224,9,'Special Effects Coordinator'),(46829,35332,5,'Editor'),(46829,38521,1,'Director of Photography'),(46829,68317,3,'Co-Producer'),(46829,72051,3,'Co-Producer'),(46829,81138,4,'Screenplay'),(46829,92234,9,'Stunt Coordinator'),(46829,137475,2,'Director'),(46829,137476,4,'Novel'),(46829,953488,3,'Executive Producer'),(46829,959634,8,'Costume Design'),(46829,966818,6,'Original Music Composer'),(46829,1066776,6,'Music Supervisor'),(46829,1320301,3,'Co-Producer'),(46829,1392106,1,'Still Photographer'),(46829,1402023,7,'Art Department Coordinator'),(46829,1624172,2,'Script Supervisor'),(46829,1643874,1,'Still Photographer'),(146238,16304,4,'Writer'),(146238,16305,4,'Writer'),(146238,6193,3,'Producer'),(146238,18265,1,'Director of Photography'),(146238,23486,6,'Original Music Composer'),(146238,144221,2,'Director'),(146238,558231,5,'Editor'),(146238,958691,7,'Production Design'),(146238,960323,8,'Costume Design'),(146238,965663,7,'Set Decoration'),(146238,1047108,7,'Art Direction'),(146238,1279912,8,'Costume Design'),(146238,1618901,9,'Set Medic'),(146238,1657380,8,'Hairstylist'),(102362,2031,3,'Casting'),(102362,4909,7,'Set Decoration'),(102362,5332,8,'Costume Design'),(102362,11874,3,'Producer'),(102362,16494,7,'Art Direction'),(102362,19290,1,'Director of Photography'),(102362,19346,2,'Director'),(102362,19352,6,'Music'),(102362,49825,4,'Screenplay'),(102362,49825,3,'Producer'),(102362,59522,3,'Executive Producer'),(102362,62434,5,'Editor'),(102362,74759,7,'Production Design'),(102362,1106628,3,'Executive Producer'),(102362,1460603,9,'Compositors'),(76349,18897,2,'Director'),(76349,18897,9,'Stunt Coordinator'),(76349,143217,2,'Director'),(76349,461513,10,'Animation'),(76349,1125574,4,'Writer'),(76349,1125575,4,'Writer'),(265208,297,6,'Sound mixer'),(265208,348,4,'Screenplay'),(265208,348,4,'Novel'),(265208,4950,1,'Director of Photography'),(265208,11269,6,'Original Music Composer'),(265208,12786,2,'Director'),(265208,15330,8,'Makeup Department Head'),(265208,20297,5,'Editor'),(265208,20515,3,'Executive Producer'),(265208,21932,3,'Producer'),(265208,36619,5,'Editor'),(265208,41675,3,'Casting'),(265208,61703,9,'Stunt Coordinator'),(265208,64058,3,'Executive Producer'),(265208,70732,3,'Executive Producer'),(265208,77917,8,'Costume Supervisor'),(265208,146143,9,'Stunt Coordinator'),(265208,578723,8,'Hairstylist'),(265208,936841,7,'Production Design'),(265208,963705,8,'Costume Design'),(265208,1097118,9,'Second Unit Cinematographer'),(265208,1336715,10,'Visual Effects Producer'),(265208,1336716,10,'Visual Effects Supervisor'),(265208,1337656,3,'Casting'),(265208,1340006,5,'First Assistant Editor'),(265208,1341138,6,'Sound Re-Recording Mixer'),(265208,1341784,6,'Foley'),(265208,1355970,6,'Music Editor'),(265208,1360097,5,'Dialogue Editor'),(265208,1393396,1,'Still Photographer'),(265208,1400070,6,'Supervising Sound Editor'),(265208,1402047,2,'Script Supervisor'),(265208,1409875,5,'Digital Intermediate'),(265208,1410098,7,'Construction Coordinator'),(265208,1412496,8,'Set Costumer'),(265208,1420320,6,'Foley'),(265208,1428855,5,'Dialogue Editor'),(265208,1433021,6,'Sound Re-Recording Mixer'),(265208,1445895,1,'Steadicam Operator'),(265208,1490939,8,'Hairstylist'),(265208,1490940,8,'Makeup Artist'),(265208,1490941,7,'Art Department Coordinator'),(265208,1490943,9,'Property Master'),(265208,1490951,11,'Gaffer'),(265208,1490952,9,'Picture Car Coordinator'),(265208,1533150,3,'Executive Producer'),(265208,1540471,6,'Music Supervisor'),(265208,1551998,3,'Executive Producer'),(265208,1552000,3,'Executive Producer'),(265208,1552003,3,'Associate Producer'),(265208,1552004,3,'Associate Producer'),(265208,1552005,3,'Associate Producer'),(265208,1552016,3,'Production Supervisor'),(45610,1890,7,'Production Design'),(45610,7237,7,'Set Decoration'),(45610,5328,3,'Casting'),(45610,12995,2,'Director'),(45610,12995,3,'Producer'),(45610,13000,1,'Director of Photography'),(45610,13005,5,'Editor'),(45610,15541,7,'Set Decoration'),(45610,17276,3,'Executive Producer'),(45610,32608,3,'Executive Producer'),(45610,19689,3,'Casting'),(45610,19690,7,'Art Direction'),(45610,21933,6,'Music Supervisor'),(45610,56327,3,'Executive Producer'),(45610,59700,3,'Producer'),(45610,65213,3,'Executive Producer'),(45610,133287,4,'Screenplay'),(45610,201202,9,'Stunt Coordinator'),(45610,582624,3,'Executive Producer'),(45610,1014925,3,'Executive Producer'),(45610,1020053,3,'Executive Producer'),(45610,1046154,3,'Executive Producer'),(45610,1046155,3,'Executive Producer'),(45610,1053407,9,'Stunt Coordinator'),(45610,1053661,3,'Producer'),(45610,1053663,3,'Producer'),(45610,1053664,3,'Producer'),(45610,1053668,6,'Original Music Composer'),(45610,1061056,6,'Original Music Composer'),(45610,1061057,3,'Executive Producer'),(45610,1061061,9,'Stunt Coordinator'),(45610,1125216,3,'Producer'),(45610,1125217,3,'Producer'),(45610,1311133,8,'Costume Design'),(45610,1529990,6,'Music Supervisor'),(50135,3393,6,'Original Music Composer'),(50135,11920,4,'Novel'),(50135,17080,3,'Executive Producer'),(50135,36332,3,'Line Producer'),(50135,57035,4,'Screenplay'),(50135,57035,2,'Director'),(50135,57106,5,'Editor'),(50135,66942,2,'Director'),(50135,66943,4,'Screenplay'),(50135,95544,4,'Screenplay'),(50135,584480,3,'Associate Producer'),(50135,1442742,7,'Production Design'),(50135,1442743,7,'Production Design'),(50135,1442744,10,'Modeling'),(271331,21126,2,'Director'),(271331,21126,4,'Screenplay'),(271331,1322882,4,'Screenplay'),(215211,1000,7,'Production Design'),(215211,16919,2,'Director'),(215211,16929,6,'Music'),(215211,18186,3,'Producer'),(215211,18494,1,'Director of Photography'),(215211,20845,5,'Editor'),(215211,47818,6,'Sound Re-Recording Mixer'),(215211,49191,10,'Visual Effects Supervisor'),(215211,54206,3,'Producer'),(215211,890990,1,'Additional Camera'),(215211,986608,7,'Supervising Art Director'),(215211,1039356,4,'Screenplay'),(215211,1039356,3,'Producer'),(215211,1084248,8,'Costume Design'),(215211,1176098,3,'Casting'),(215211,1195523,8,'Costume Supervisor'),(215211,1332186,8,'Makeup Artist'),(215211,1372087,6,'Music Editor'),(215211,1374453,3,'Casting'),(215211,1374454,7,'Art Direction'),(215211,1374455,9,'Property Master'),(215211,1374456,7,'Art Department Coordinator'),(215211,1374457,7,'Construction Coordinator'),(215211,1374458,5,'Dialogue Editor'),(215211,1374459,5,'Dialogue Editor'),(215211,1374460,6,'Boom Operator'),(215211,1374461,6,'Foley'),(215211,1374462,6,'Supervising Sound Editor'),(215211,1374463,5,'Dialogue Editor'),(215211,1374464,6,'Sound Re-Recording Mixer'),(215211,1374465,6,'Sound Re-Recording Mixer'),(215211,1374466,10,'Visual Effects Supervisor'),(215211,1374467,11,'Gaffer'),(215211,1374469,3,'Casting'),(215211,1374470,9,'Choreographer'),(215211,1374471,1,'Still Photographer'),(215211,1407025,1,'Helicopter Camera'),(215211,1407211,8,'Makeup Artist'),(215211,1458570,8,'Hairstylist'),(215211,1458571,8,'Hairstylist'),(215211,1458572,8,'Hairstylist'),(215211,1458573,8,'Makeup Artist'),(215211,1458574,8,'Makeup Artist'),(215211,1458575,7,'Assistant Art Director'),(215211,1458576,7,'Assistant Art Director'),(367961,50942,4,'Writer'),(367961,1064931,4,'Writer'),(367961,1565981,2,'Director'),(367961,1565981,4,'Writer'),(223702,12080,2,'Director'),(223702,12080,3,'Producer'),(223702,15813,6,'Original Music Composer'),(223702,21007,3,'Executive Producer'),(223702,21007,4,'Story'),(223702,19274,4,'Story'),(223702,19274,3,'Producer'),(223702,19274,4,'Screenplay'),(223702,49911,6,'Original Music Composer'),(223702,54734,4,'Story'),(223702,54734,3,'Producer'),(223702,54734,4,'Screenplay'),(223702,142587,2,'Director'),(223702,1027025,3,'Producer'),(223702,1206448,4,'Screenplay'),(223702,1206448,3,'Executive Producer'),(223702,1206449,4,'Screenplay'),(223702,1206449,3,'Executive Producer'),(223702,1355894,2,'Layout'),(223702,1356774,3,'Line Producer'),(223702,1397895,3,'Co-Producer'),(223702,1403656,3,'Co-Producer'),(223702,1428268,3,'Co-Producer'),(223702,1447323,4,'Storyboard'),(223702,1447339,4,'Storyboard'),(223702,1450968,3,'Executive Producer'),(223702,1450971,5,'Editor'),(223702,1450974,7,'Art Direction'),(223702,1450975,3,'Production Manager'),(223702,1450979,10,'Animation'),(223702,1450982,10,'VFX Artist'),(223702,1450983,11,'Lighting Technician'),(223702,1450984,2,'Layout'),(223702,1450985,10,'Animation'),(223702,1450986,10,'Animation Supervisor'),(223702,1450989,10,'Animation Manager'),(223702,1450990,3,'Administration'),(223702,1450992,10,'Animation'),(223702,1454020,10,'Animation'),(223702,1454021,10,'Animation'),(223702,1454022,10,'Animation'),(223702,1454023,10,'Animation'),(223702,1460200,10,'Animation'),(223702,1460201,10,'Animation'),(223702,1529999,6,'Music Supervisor'),(223702,1671477,10,'Visual Effects Supervisor'),(254470,2864,1,'Director of Photography'),(254470,5328,3,'Casting'),(254470,5666,6,'Original Music Composer'),(254470,6742,5,'Editor'),(254470,9281,2,'Director'),(254470,9281,3,'Producer'),(254470,9419,6,'Sound Effects Editor'),(254470,11408,3,'Co-Producer'),(254470,16854,3,'Producer'),(254470,25138,3,'Executive Producer'),(254470,42035,6,'Sound Editor'),(254470,42036,6,'Supervising Sound Editor'),(254470,19689,3,'Casting'),(254470,40608,3,'Associate Producer'),(254470,29206,3,'Line Producer'),(254470,86197,8,'Costume Design'),(254470,168667,3,'Executive Producer'),(254470,208664,3,'Co-Producer'),(254470,208664,4,'Writer'),(254470,935298,7,'Art Direction'),(254470,961447,7,'Production Design'),(254470,1005814,3,'Producer'),(254470,1014943,7,'Set Decoration'),(254470,1115249,3,'Production Supervisor'),(254470,1290933,4,'Characters'),(254470,1378171,6,'Sound Re-Recording Mixer'),(254470,1391571,6,'Sound Re-Recording Mixer'),(254470,1400071,6,'Supervising Sound Editor'),(254470,1414532,2,'Script Supervisor'),(254470,1453135,5,'Dialogue Editor'),(254470,1533711,6,'Music Supervisor'),(254470,1545540,6,'Sound mixer'),(323676,6742,5,'Editor'),(323676,10396,7,'Production Design'),(323676,11506,1,'Director of Photography'),(323676,23659,3,'Producer'),(323676,18330,3,'Executive Producer'),(323676,33625,7,'Art Direction'),(323676,49911,6,'Original Music Composer'),(323676,55710,3,'Producer'),(323676,55536,4,'Screenplay'),(323676,55536,3,'Executive Producer'),(323676,170820,4,'Screenplay'),(323676,170820,2,'Director'),(323676,170820,3,'Executive Producer'),(323676,1221605,4,'Writer'),(323676,1329938,7,'Art Direction'),(277216,547,3,'Casting'),(277216,908,5,'Editor'),(277216,4867,1,'Director of Photography'),(277216,9778,3,'Producer'),(277216,17050,7,'Production Design'),(277216,31121,3,'Executive Producer'),(277216,2041,3,'Producer'),(277216,35179,3,'Executive Producer'),(277216,37932,2,'Director'),(277216,37932,3,'Producer'),(277216,54211,3,'Executive Producer'),(277216,53641,5,'Editor'),(277216,61091,3,'Executive Producer'),(277216,65135,3,'Producer'),(277216,65780,3,'Producer'),(277216,93023,3,'Producer'),(277216,119179,3,'Casting'),(277216,211197,4,'Screenplay'),(277216,989235,4,'Screenplay'),(277216,989235,4,'Story'),(277216,1034665,4,'Story'),(277216,1034665,3,'Co-Executive Producer'),(277216,1041278,3,'Producer'),(277216,1098740,6,'Original Music Composer'),(277216,1371401,4,'Story'),(277216,1371401,3,'Co-Executive Producer'),(277216,1500924,3,'Producer'),(277216,1552521,9,'Stunts'),(277216,1555298,7,'Art Direction'),(277216,1555300,3,'Executive Producer'),(315664,2949,6,'Music'),(315664,3224,2,'Director'),(315664,3224,4,'Writer'),(315664,6713,3,'Producer'),(315664,40712,9,'Stunt Coordinator'),(315664,15727,3,'Producer'),(315664,15732,7,'Production Design'),(315664,15734,8,'Costume Design'),(315664,16346,5,'Editor'),(315664,19993,3,'Casting'),(315664,32491,8,'Makeup Artist'),(315664,32491,8,'Hairstylist'),(315664,46943,3,'Casting'),(315664,56021,1,'Director of Photography'),(315664,75083,8,'Hair Designer'),(315664,75083,8,'Makeup Designer'),(315664,75111,1,'Camera Operator'),(315664,117235,6,'Music Editor'),(315664,134565,6,'Sound Re-Recording Mixer'),(315664,1187179,6,'Music Director'),(315664,1190164,3,'Casting'),(315664,1319623,7,'Art Direction'),(315664,1324095,8,'Costume Supervisor'),(315664,1327443,7,'Supervising Art Director'),(315664,1376808,2,'Script Supervisor'),(315664,1380895,6,'Supervising Sound Editor'),(315664,1391732,1,'Additional Camera'),(315664,1394721,10,'Visual Effects Supervisor'),(315664,1398918,6,'Foley'),(315664,1403576,8,'Hairstylist'),(315664,1408403,5,'Digital Intermediate'),(315664,1409292,8,'Makeup Artist'),(315664,1411074,8,'Wigmaker'),(315664,1413848,5,'First Assistant Editor'),(315664,1414101,5,'Digital Intermediate'),(315664,1421647,6,'Supervising Sound Editor'),(315664,1424573,10,'Visual Effects Coordinator'),(315664,1425481,6,'Sound Re-Recording Mixer'),(315664,1429628,8,'Hairstylist'),(315664,1434868,1,'Camera Operator'),(315664,1451407,6,'Sound Effects Editor'),(315664,1456410,11,'Gaffer'),(315664,1458448,1,'First Assistant Camera'),(315664,1516449,10,'Visual Effects Producer'),(315664,1535968,7,'Art Direction'),(315664,1544338,6,'Music Supervisor'),(315664,1544361,10,'Special Effects Supervisor'),(315664,1571984,5,'Digital Intermediate'),(315664,1578899,9,'Visual Effects Editor'),(315664,1601942,4,'Screenplay'),(315664,1608998,8,'Assistant Costume Designer'),(315664,1616057,1,'First Assistant Camera'),(315664,1616061,6,'ADR & Dubbing'),(315664,1616063,8,'Hairstylist'),(315664,1616064,8,'Makeup Artist'),(315664,1616065,9,'Stunt Coordinator'),(315664,1616066,7,'Assistant Art Director'),(318846,287,3,'Producer'),(318846,376,3,'Producer'),(318846,6410,3,'Casting'),(318846,3190,5,'Editor'),(318846,19156,3,'Casting'),(318846,12598,11,'Gaffer'),(318846,15493,1,'Director of Photography'),(318846,20229,6,'Foley'),(318846,20458,3,'Producer'),(318846,36605,8,'Costume Design'),(318846,54585,7,'Production Design'),(318846,55710,4,'Screenplay'),(318846,55710,2,'Director'),(318846,56327,3,'Executive Producer'),(318846,56461,3,'Executive Producer'),(318846,112307,7,'Set Decoration'),(318846,74978,6,'Sound Re-Recording Mixer'),(318846,136186,4,'Book'),(318846,582943,7,'Assistant Art Director'),(318846,967387,3,'Producer'),(318846,1011958,7,'Art Direction'),(318846,1031811,6,'Sound Designer'),(318846,1043368,9,'Special Effects Coordinator'),(318846,1319166,8,'Makeup Department Head'),(318846,1322017,7,'Set Designer'),(318846,1332300,8,'Wigmaker'),(318846,1347755,6,'Music Editor'),(318846,1367488,7,'Assistant Art Director'),(318846,1367490,7,'Set Designer'),(318846,1367818,10,'Visual Effects Supervisor'),(318846,1377416,5,'Dialogue Editor'),(318846,1399323,8,'Set Costumer'),(318846,1401687,6,'Sound Re-Recording Mixer'),(318846,1403391,7,'Art Department Coordinator'),(318846,1403397,7,'Construction Coordinator'),(318846,1404903,6,'Supervising Sound Editor'),(318846,1405232,5,'Dialogue Editor'),(318846,1407350,7,'Greensman'),(318846,1414153,11,'Rigging Gaffer'),(318846,1414291,5,'Digital Intermediate'),(318846,1414984,8,'Hair Department Head'),(318846,1417415,7,'Property Master'),(318846,1442164,1,'Camera Operator'),(318846,1446688,11,'Gaffer'),(318846,1460019,1,'Additional Photography'),(318846,1461169,6,'First Assistant Sound Editor'),(318846,1461175,1,'Camera Operator'),(318846,1461193,8,'Makeup Artist'),(318846,1461605,8,'Makeup Artist'),(318846,1463274,8,'Makeup Artist'),(318846,1474332,4,'Screenplay'),(318846,1478953,2,'Script Supervisor'),(318846,1521471,1,'Underwater Camera'),(318846,1530690,8,'Assistant Costume Designer'),(318846,1533516,6,'Original Music Composer'),(318846,1533531,5,'First Assistant Editor'),(318846,1543197,8,'Key Hair Stylist'),(318846,1544669,6,'Sound Effects Editor'),(318846,1549439,1,'First Assistant Camera'),(318846,1550230,8,'Costume Supervisor'),(318846,1552778,1,'First Assistant Camera'),(318846,1561557,6,'Sound mixer'),(318846,1568470,10,'Visual Effects Producer'),(318846,1579412,10,'Visual Effects Producer'),(318846,1585752,9,'Special Effects Coordinator'),(318846,1585753,10,'Visual Effects Supervisor'),(318846,1585755,11,'Rigging Grip'),(318846,1585766,8,'Assistant Costume Designer'),(318846,1585769,8,'Set Costumer'),(318846,1585770,5,'First Assistant Editor'),(318846,1585772,8,'Key Hair Stylist'),(318846,1624709,7,'Leadman'),(318846,1624710,7,'Set Designer'),(318846,1651979,3,'Co-Producer'),(318846,1884068,8,'Makeup Artist'),(192577,70100,2,'Director'),(192577,76948,4,'Screenplay'),(192577,78014,4,'Original Story'),(192577,562941,4,'Screenplay'),(192577,1462792,3,'Production Manager'),(137093,10685,3,'Producer'),(137093,12962,2,'Director'),(137093,15892,4,'Screenplay'),(137093,23541,3,'Producer'),(137093,40383,3,'Executive Producer'),(137093,27154,1,'Director of Photography'),(137093,60070,3,'Executive Producer'),(137093,62117,3,'Executive Producer'),(137093,1106694,3,'Producer'),(137093,1106695,3,'Producer'),(112949,14609,7,'Production Design'),(112949,5306,2,'Director'),(112949,5327,5,'Editor'),(112949,6040,3,'Producer'),(112949,11898,4,'Screenplay'),(112949,25046,3,'Producer'),(112949,45841,3,'Casting'),(112949,47293,1,'Director of Photography'),(112949,54419,3,'Producer'),(112949,60068,6,'Original Music Composer'),(112949,64172,3,'Executive Producer'),(112949,64172,4,'Novel'),(112949,224387,3,'Casting'),(112949,964601,8,'Costume Design'),(112949,1397013,4,'Screenplay'),(62206,91268,2,'Director'),(62206,236434,4,'Screenplay'),(218778,1597,6,'Sound Effects Editor'),(218778,5215,8,'Costume Design'),(218778,5541,3,'Executive Producer'),(218778,5541,3,'Unit Production Manager'),(218778,7855,7,'Production Design'),(218778,9409,6,'Sound Re-Recording Mixer'),(218778,17147,5,'Editor'),(218778,15017,8,'Makeup Artist'),(218778,17612,3,'Casting'),(218778,17825,3,'Producer'),(218778,20540,3,'Casting'),(218778,23486,6,'Original Music Composer'),(218778,23787,8,'Makeup Department Head'),(218778,30882,9,'Choreographer'),(218778,47293,1,'Director of Photography'),(218778,61069,2,'Director'),(218778,76003,9,'Dialect Coach'),(218778,93021,3,'Executive Producer'),(218778,79666,3,'Producer'),(218778,91941,9,'Unit Publicist'),(218778,95848,3,'Location Manager'),(218778,161159,1,'Still Photographer'),(218778,554533,6,'Boom Operator'),(218778,948223,7,'Set Decoration'),(218778,956198,9,'Stunt Coordinator'),(218778,1031811,6,'Supervising Sound Editor'),(218778,1085298,9,'Special Effects Coordinator'),(218778,1102816,1,'Camera Operator'),(218778,1188380,3,'Producer'),(218778,1192526,7,'Art Direction'),(218778,1203521,4,'Screenplay'),(218778,1203521,4,'Screenstory'),(218778,1203522,4,'Book'),(218778,1290687,10,'Visual Effects Supervisor'),(218778,1318465,8,'Set Costumer'),(218778,1319744,8,'Costume Supervisor'),(218778,1358589,3,'Associate Producer'),(218778,1394984,6,'Music Editor'),(218778,1397737,9,'Transportation Coordinator'),(218778,1399858,3,'Production Supervisor'),(218778,1401631,5,'Dialogue Editor'),(218778,1402105,8,'Makeup Artist'),(218778,1404218,6,'Sound Re-Recording Mixer'),(218778,1404903,6,'Supervising Sound Editor'),(218778,1406390,6,'Sound Effects Editor'),(218778,1408528,6,'Music Editor'),(218778,1411166,8,'Hairstylist'),(218778,1412228,6,'Sound Mixer'),(218778,1415610,9,'Property Master'),(218778,1416438,2,'Script Supervisor'),(218778,1420311,8,'Hair Department Head'),(218778,1432577,8,'Makeup Artist'),(218778,1435661,9,'Picture Car Coordinator'),(218778,1445820,8,'Hairstylist'),(218778,1535425,7,'Construction Coordinator'),(218778,1537106,8,'Key Hair Stylist'),(218778,1546085,8,'Hairstylist'),(218778,1548684,5,'Color Timer'),(218778,1551528,8,'Hairstylist'),(218778,1621679,10,'Visual Effects Supervisor'),(218778,1666069,8,'Makeup Department Head'),(218778,1666095,7,'Set Designer'),(218778,1666099,10,'Visual Effects Producer'),(192102,59,4,'Screenplay'),(192102,59,4,'Story'),(192102,59,3,'Producer'),(192102,997,1,'Director of Photography'),(192102,6959,3,'Casting'),(192102,36425,2,'Director'),(192102,20722,8,'Costume Design'),(192102,21650,3,'Casting'),(192102,23365,8,'Makeup Department Head'),(192102,46291,6,'Sound Re-Recording Mixer'),(192102,50950,3,'Producer'),(192102,54419,3,'Producer'),(192102,56228,3,'Producer'),(192102,95322,4,'Screenplay'),(192102,95322,3,'Producer'),(192102,928492,7,'Production Design'),(192102,929839,6,'Supervising Sound Editor'),(192102,931303,9,'Stunt Coordinator'),(192102,961165,3,'Casting'),(192102,1105594,8,'Costume Supervisor'),(192102,1157046,6,'Original Music Composer'),(192102,1317252,5,'Editor'),(192102,1317253,7,'Production Design'),(192102,1317254,7,'Art Direction'),(192102,1335149,9,'Special Effects Coordinator'),(192102,1335153,3,'Casting'),(192102,1363847,6,'Sound Re-Recording Mixer'),(192102,1363862,10,'Visual Effects Producer'),(192102,1363868,6,'Music Editor'),(192102,1367816,6,'Boom Operator'),(192102,1367828,11,'Gaffer'),(192102,1375908,7,'Set Designer'),(192102,1376261,7,'Construction Coordinator'),(192102,1376262,7,'Assistant Art Director'),(192102,1376263,9,'Property Master'),(192102,1376264,9,'Property Master'),(192102,1376265,5,'Dialogue Editor'),(192102,1376266,5,'Dialogue Editor'),(192102,1376267,6,'Foley'),(192102,1376271,10,'Visual Effects Supervisor'),(192102,1376272,8,'Set Costumer'),(192102,1376273,9,'Transportation Coordinator'),(192102,1376274,9,'Transportation Coordinator'),(192102,1376275,9,'Transportation Captain'),(192102,1376276,6,'Music Editor'),(192102,1376277,6,'Music Editor'),(192102,1376279,9,'Studio Teachers'),(192102,1376280,3,'Location Manager'),(58431,524,3,'Producer'),(58431,1587,3,'Producer'),(58431,20567,3,'Executive Producer'),(58431,32982,4,'Characters'),(58431,58552,2,'Director'),(58431,58552,4,'Screenplay'),(58431,59702,3,'Executive Producer'),(58431,59835,3,'Producer'),(58431,565491,4,'Novel'),(58431,971840,3,'Producer'),(58431,1037124,3,'Executive Producer'),(58431,1632596,11,'Rigging Gaffer'),(58431,1685996,6,'Boom Operator'),(59859,287,3,'Producer'),(59859,957,3,'Producer'),(59859,966,1,'Director of Photography'),(59859,15017,8,'Makeup Artist'),(59859,49809,5,'Editor'),(59859,55075,2,'Director'),(59859,55075,4,'Screenplay'),(59859,61578,3,'Producer'),(59859,61580,7,'Production Design'),(59859,87172,4,'Author'),(59859,128988,4,'Author'),(59859,189613,3,'Producer'),(59859,227440,6,'Original Music Composer'),(59859,967950,3,'Producer'),(59859,969021,6,'Original Music Composer'),(59859,1116284,3,'Producer'),(59859,1797240,2,'First Assistant Director'),(59859,1797246,2,'Second Assistant Director'),(254473,59,4,'Screenplay'),(254473,59,3,'Producer'),(254473,61,4,'Screenplay'),(254473,17611,3,'Casting'),(254473,45845,5,'Editor'),(254473,64156,6,'Music'),(254473,72903,3,'Producer'),(254473,142096,6,'Foley'),(254473,928490,2,'Director'),(254473,929839,6,'Supervising Sound Editor'),(254473,968605,5,'Editor'),(254473,1039357,3,'Producer'),(254473,1178908,7,'Production Design'),(254473,1193657,9,'Stunt Coordinator'),(254473,1194090,11,'Gaffer'),(254473,1198825,3,'Casting'),(254473,1340126,2,'Script Supervisor'),(254473,1363802,6,'Music'),(254473,1363838,7,'Set Decoration'),(254473,1363839,8,'Costume Design'),(254473,1363840,8,'Makeup Department Head'),(254473,1363841,7,'Assistant Art Director'),(254473,1363843,8,'Set Dressing Artist'),(254473,1363845,9,'Property Master'),(254473,1363847,6,'Sound Re-Recording Mixer'),(254473,1363848,6,'Sound Re-Recording Mixer'),(254473,1363849,6,'Boom Operator'),(254473,1363855,9,'Special Effects'),(254473,1363859,9,'Special Effects'),(254473,1363861,10,'Visual Effects Supervisor'),(254473,1363862,10,'Visual Effects Producer'),(254473,1363863,10,'Visual Effects Supervisor'),(254473,1363865,10,'Visual Effects Supervisor'),(254473,1363867,6,'Music Editor'),(254473,1363868,6,'Music Editor'),(254473,1363869,3,'Location Manager'),(254473,1363870,7,'Location Scout'),(254473,1407007,8,'Hairstylist'),(254473,1407008,3,'Production Manager'),(63574,5545,3,'Co-Producer'),(63574,7035,5,'Editor'),(63574,15758,3,'Executive Producer'),(63574,17863,6,'Music Supervisor'),(63574,18342,2,'Director'),(63574,18342,4,'Writer'),(63574,18349,3,'Producer'),(63574,20744,6,'Original Music Composer'),(63574,20744,6,'Songs'),(63574,58855,3,'Casting'),(63574,47285,3,'Producer'),(63574,47286,3,'Producer'),(63574,51449,3,'Executive Producer'),(63574,55441,1,'Director of Photography'),(63574,60504,3,'Casting'),(63574,62046,3,'Producer'),(63574,63293,7,'Production Design'),(63574,63906,6,'Music Editor'),(63574,92375,6,'Supervising Sound Editor'),(63574,80846,8,'Costume Supervisor'),(63574,84107,3,'Executive Producer'),(63574,956249,3,'Co-Producer'),(63574,1020057,3,'Casting'),(63574,1117311,3,'Co-Producer'),(63574,1237521,8,'Costume Design'),(63574,1262129,2,'Script Supervisor'),(63574,1341400,7,'Art Direction'),(63574,1355963,6,'Boom Operator'),(63574,1378169,6,'Sound Re-Recording Mixer'),(63574,1378697,6,'Sound Re-Recording Mixer'),(63574,1378765,1,'Still Photographer'),(63574,1401152,1,'First Assistant Camera'),(63574,1407227,6,'Sound Effects Editor'),(63574,1408719,1,'Camera Operator'),(63574,1415009,5,'Dialogue Editor'),(63574,1439013,7,'Art Department Coordinator'),(63574,1443968,9,'Transportation Coordinator'),(63574,1451992,6,'Sound Effects Editor'),(63574,1496408,5,'Dialogue Editor'),(63574,1550166,6,'Sound mixer'),(63574,1560275,7,'Set Decoration'),(63574,1560483,3,'Producer'),(63574,1560520,3,'Associate Producer'),(63574,1560522,1,'Camera Operator'),(63574,1560522,1,'Steadicam Operator'),(63574,1560524,9,'Transportation Captain'),(61891,6046,2,'Director'),(61891,20457,4,'Writer'),(42807,564,2,'Director'),(42807,564,4,'Screenplay'),(42807,1198263,4,'Screenplay'),(42807,1381993,4,'Screenplay'),(56288,2294,2,'Director'),(56288,2294,1,'Director of Photography'),(56288,2294,3,'Producer'),(56288,2294,4,'Writer'),(56288,2294,6,'Music'),(56288,1307,3,'Executive Producer'),(56288,59839,3,'Executive Producer'),(56288,5911,3,'Producer'),(56288,5914,3,'Casting'),(56288,6043,5,'Editor'),(56288,20489,7,'Production Design'),(56288,20490,8,'Costume Design'),(56288,57028,3,'Co-Producer'),(56288,57111,3,'Line Producer'),(56288,72030,3,'Co-Producer'),(56288,999284,6,'Music'),(56288,1014919,1,'Director of Photography'),(56288,1014920,3,'Casting'),(56288,1127209,7,'Set Decoration'),(56288,1401122,7,'Production Design'),(56288,1741165,3,'Associate Producer'),(303858,1038,2,'Director'),(303858,4867,1,'Director of Photography'),(303858,13005,5,'Editor'),(303858,21155,4,'Screenplay'),(303858,21155,4,'Story'),(303858,68432,4,'Screenplay'),(303858,1234893,4,'Screenplay'),(303858,1234893,4,'Story'),(303858,1404094,6,'Original Music Composer'),(41488,1721,5,'Editor'),(41488,1002,7,'Set Decoration'),(41488,2186,3,'Casting'),(41488,3558,4,'Writer'),(41488,13563,2,'Director'),(41488,13563,3,'Producer'),(41488,13838,7,'Production Design'),(41488,15540,3,'Producer'),(41488,16363,3,'Casting'),(41488,17212,6,'Music'),(41488,20182,3,'Producer'),(41488,23545,3,'Casting'),(41488,47113,4,'Novel'),(41488,71279,5,'Editor'),(41488,1030406,8,'Costume Design'),(41488,1317305,8,'Makeup Department Head'),(41488,1364628,7,'Assistant Art Director'),(41488,1433970,2,'Script Supervisor'),(41488,1434635,8,'Makeup Artist'),(41488,1434635,8,'Hairstylist'),(41488,1462911,1,'Director of Photography'),(41488,1462912,2,'Script Supervisor'),(41488,1462913,3,'Publicist'),(41488,1462914,9,'Unit Publicist'),(37028,11181,4,'Screenplay'),(37028,11181,2,'Director'),(37028,11181,4,'Writer'),(37028,11275,4,'Screenplay'),(37028,48971,9,'Cinematography'),(37028,63127,3,'Line Producer'),(37028,116630,3,'Producer'),(37028,120649,3,'Executive Producer'),(37028,957967,3,'Producer'),(37028,1114712,4,'Writer'),(169917,2952,3,'Casting'),(169917,518,3,'Producer'),(169917,2199,2,'Director'),(169917,2199,4,'Screenplay'),(169917,5381,3,'Producer'),(169917,5382,3,'Producer'),(169917,6391,7,'Production Design'),(169917,17766,5,'Editor'),(169917,45817,4,'Novel'),(169917,52981,1,'Director of Photography'),(169917,57049,3,'Producer'),(169917,92377,6,'Sound Re-Recording Mixer'),(169917,235806,9,'Dialect Coach'),(169917,548443,6,'Supervising Sound Editor'),(169917,564056,7,'Construction Coordinator'),(169917,930016,6,'Supervising Sound Editor'),(169917,930016,6,'Sound Designer'),(169917,930016,6,'Sound Re-Recording Mixer'),(169917,999786,3,'Producer'),(169917,1049271,5,'Digital Intermediate'),(169917,1193621,9,'Property Master'),(169917,1193622,1,'Still Photographer'),(169917,1303391,8,'Makeup Artist'),(169917,1340767,5,'Dialogue Editor'),(169917,1347726,9,'Scenic Artist'),(169917,1352969,6,'Supervising Sound Editor'),(169917,1372077,7,'Set Decoration'),(169917,1372084,7,'Leadman'),(169917,1372207,6,'Foley'),(169917,1392836,6,'Original Music Composer'),(169917,1395361,6,'Dolby Consultant'),(169917,1396806,10,'Visual Effects Producer'),(169917,1403710,2,'Script Supervisor'),(169917,1406846,1,'Camera Operator'),(169917,1407734,10,'Visual Effects Supervisor'),(169917,1414936,10,'Visual Effects Producer'),(169917,1416795,7,'Art Direction'),(169917,1416796,8,'Hairstylist'),(169917,1416797,8,'Hairstylist'),(169917,1416798,8,'Makeup Department Head'),(169917,1416799,8,'Wigmaker'),(169917,1416800,9,'Makeup Effects'),(169917,1416801,7,'Art Department Coordinator'),(169917,1416804,7,'Assistant Art Director'),(169917,1416805,7,'Assistant Art Director'),(169917,1416806,9,'Sound Recordist'),(169917,1416817,9,'Special Effects Coordinator'),(169917,1416818,10,'Visual Effects Supervisor'),(169917,1416819,9,'Stunt Coordinator'),(169917,1416820,11,'Gaffer'),(169917,1416821,8,'Costume Supervisor'),(169917,1416822,8,'Set Costumer'),(169917,1416823,5,'Digital Intermediate'),(169917,1416824,5,'First Assistant Editor'),(169917,1416825,9,'Dialect Coach'),(169917,1416826,9,'Unit Publicist'),(169917,1416827,3,'Production Accountant'),(169917,1416828,3,'Location Manager'),(134374,2215,3,'Casting'),(134374,865,2,'Director'),(134374,865,3,'Producer'),(134374,5551,4,'Screenplay'),(134374,5552,4,'Screenplay'),(134374,9987,3,'Producer'),(134374,7848,7,'Production Design'),(134374,8527,8,'Costume Design'),(134374,10119,3,'Executive Producer'),(134374,13245,5,'Editor'),(134374,18264,6,'Original Music Composer'),(134374,24311,5,'Editor'),(134374,58470,3,'Producer'),(134374,58472,3,'Executive Producer'),(134374,62722,3,'Executive Producer'),(134374,63310,1,'Director of Photography'),(134374,1008115,7,'Art Direction'),(134374,1121742,8,'Costume Design'),(62838,1201,2,'Director'),(62838,68016,6,'Orchestrator'),(62838,68308,4,'Writer'),(70436,1113,3,'Casting'),(70436,554,3,'Producer'),(70436,971,5,'Editor'),(70436,5547,7,'Production Design'),(70436,5548,7,'Set Decoration'),(70436,11266,2,'Director'),(70436,52159,3,'Executive Producer'),(70436,37298,8,'Costume Design'),(70436,37301,7,'Supervising Art Director'),(70436,53680,3,'Casting'),(70436,60471,3,'Producer'),(70436,60472,3,'Producer'),(70436,61628,1,'Director of Photography'),(70436,62982,3,'Executive Producer'),(70436,63111,4,'Screenplay'),(70436,428344,4,'Screenplay'),(70436,582917,3,'Executive Producer'),(70436,1017343,3,'Line Producer'),(70436,1018975,3,'Executive Producer'),(70436,1018976,6,'Original Music Composer'),(316002,5389,7,'Production Design'),(316002,13933,7,'Art Direction'),(316002,17883,2,'Director'),(316002,41674,6,'Music'),(316002,38794,4,'Screenplay'),(316002,1410294,2,'Director'),(36355,129941,4,'Screenplay'),(36355,129941,2,'Director'),(238615,11079,7,'Set Decoration'),(238615,5914,3,'Casting'),(238615,6745,6,'Music Editor'),(238615,8576,6,'Original Music Composer'),(238615,19971,8,'Costume Design'),(238615,17951,7,'Set Decoration'),(238615,52159,3,'Producer'),(238615,39123,3,'Casting'),(238615,25832,7,'Art Direction'),(238615,53841,1,'Director of Photography'),(238615,56518,7,'Production Design'),(238615,56519,5,'Editor'),(238615,56512,2,'Director'),(238615,60047,3,'Producer'),(238615,62775,3,'Producer'),(238615,76497,9,'Property Master'),(238615,94220,4,'Screenplay'),(238615,94222,4,'Screenplay'),(238615,113826,3,'Line Producer'),(238615,578724,8,'Makeup Artist'),(238615,1095271,8,'Makeup Department Head'),(238615,1320552,8,'Costume Supervisor'),(238615,1336436,7,'Art Department Coordinator'),(238615,1341784,6,'Foley'),(238615,1378171,6,'Sound Re-Recording Mixer'),(238615,1378244,8,'Set Costumer'),(238615,1393372,7,'Construction Coordinator'),(238615,1395447,6,'Supervising Sound Editor'),(238615,1395447,6,'Sound Re-Recording Mixer'),(238615,1396984,2,'Script Supervisor'),(238615,1400558,6,'Sound Designer'),(238615,1400558,6,'Supervising Sound Editor'),(238615,1406267,8,'Key Hair Stylist'),(238615,1413092,5,'Dialogue Editor'),(238615,1420320,6,'Foley'),(238615,1471726,6,'Music Supervisor'),(238615,1495531,8,'Set Costumer'),(238615,1501238,6,'Original Music Composer'),(238615,1501239,3,'Co-Producer'),(238615,1501240,3,'Co-Producer'),(238615,1527917,8,'Hair Department Head'),(238615,1533533,7,'Conceptual Design'),(238615,1533536,6,'Music Editor'),(238615,1533536,9,'Sound Recordist'),(238615,1533537,6,'Music Editor'),(238615,1533539,9,'Sound Recordist'),(238615,1533539,6,'Music Director'),(238615,1533541,2,'Script Supervisor'),(238615,1533545,6,'Sound Effects Editor'),(239571,52405,2,'Director'),(239571,52405,4,'Writer'),(239571,64172,4,'Novel'),(239571,224385,4,'Writer'),(239571,225499,4,'Screenplay'),(50014,153,6,'Original Music Composer'),(50014,5328,3,'Casting'),(50014,5582,1,'Director of Photography'),(50014,7538,6,'Music Editor'),(50014,10965,3,'Producer'),(50014,11222,3,'Executive Producer'),(50014,13031,9,'Stunt Coordinator'),(50014,13194,5,'Digital Intermediate'),(50014,13223,5,'Color Timer'),(50014,15573,8,'Costume Design'),(50014,20649,5,'Editor'),(50014,17828,3,'Producer'),(50014,19689,3,'Casting'),(50014,31519,3,'Executive Producer'),(50014,55789,2,'Director'),(50014,55789,4,'Screenplay'),(50014,55789,3,'Executive Producer'),(50014,113046,6,'Sound Re-Recording Mixer'),(50014,60193,7,'Production Design'),(50014,91133,9,'Post-Production Manager'),(50014,113864,3,'Executive Producer'),(50014,161159,1,'Still Photographer'),(50014,222658,9,'Post Production Supervisor'),(50014,536491,3,'Executive Producer'),(50014,585970,4,'Novel'),(50014,964979,3,'Executive Producer'),(50014,966928,7,'Art Direction'),(50014,970192,7,'Set Decoration'),(50014,1008413,3,'Producer'),(50014,1096344,8,'Makeup Artist'),(50014,1300755,6,'Sound Effects Editor'),(50014,1333982,8,'Costume Supervisor'),(50014,1345595,6,'Sound Re-Recording Mixer'),(50014,1352959,8,'Makeup Department Head'),(50014,1370799,9,'Stunts'),(50014,1391329,7,'Location Scout'),(50014,1403633,9,'Post Production Supervisor'),(50014,1409824,8,'Wigmaker'),(50014,1418398,1,'Camera Operator'),(50014,1418398,1,'Steadicam Operator'),(50014,1423986,3,'Unit Production Manager'),(50014,1424894,8,'Hair Department Head'),(50014,1463278,3,'Production Coordinator'),(50014,1478953,2,'Script Supervisor'),(50014,1519868,2,'Assistant Director'),(50014,1521453,8,'Hairstylist'),(50014,1531529,9,'Stunt Coordinator'),(50014,1535087,9,'Special Effects'),(50014,1546115,6,'Production Sound Mixer'),(50014,1546453,3,'Executive Producer'),(50014,1546454,3,'Executive Producer'),(50014,1546455,3,'Co-Producer'),(50014,1546456,6,'Music Supervisor'),(50014,1546457,6,'Music Editor'),(50014,1546458,6,'Supervising Sound Editor'),(50014,1546459,11,'Rigging Gaffer'),(50014,1553258,9,'Stunts'),(50014,1564160,11,'Lighting Technician'),(50014,1570786,11,'Electrician'),(50014,1680300,1,'Grip'),(162903,322,3,'Producer'),(162903,15557,2,'Director'),(162903,41331,3,'Producer'),(162903,150883,4,'Novel'),(162903,1105636,3,'Executive Producer'),(162903,1172246,4,'Novel'),(162903,1172247,4,'Novel'),(162903,1219529,4,'Screenplay'),(208763,11692,1,'Director of Photography'),(208763,238220,4,'Screenplay'),(208763,238220,2,'Director'),(208763,238221,4,'Screenplay'),(208763,1097807,4,'Story'),(208763,1289982,6,'Music'),(208763,1760461,3,'Producer'),(208763,1760463,3,'Producer'),(254024,172,2,'Director'),(254024,474,3,'Casting'),(254024,5914,3,'Casting'),(254024,20459,6,'Music'),(254024,53614,3,'Producer'),(254024,59871,1,'Director of Photography'),(254024,929638,4,'Screenplay'),(254024,1203437,7,'Production Design'),(254024,1277396,7,'Art Direction'),(254024,1317647,8,'Costume Supervisor'),(254024,1338959,8,'Hairstylist'),(254024,1458730,8,'Costume Design'),(254024,1458731,3,'Casting'),(254024,1466747,4,'Novel'),(254024,1466748,5,'Editor'),(254024,1466749,8,'Makeup Department Head'),(168530,298,3,'Executive Producer'),(168530,547,3,'Casting'),(168530,6742,5,'Editor'),(168530,9778,3,'Producer'),(168530,11957,3,'Producer'),(168530,31121,3,'Producer'),(168530,20223,3,'Executive Producer'),(168530,20400,2,'Director'),(168530,20406,1,'Director of Photography'),(168530,47364,4,'Screenplay'),(168530,47364,4,'Story'),(168530,49911,6,'Music'),(168530,54047,4,'Screenplay'),(168530,54048,4,'Screenplay'),(168530,65135,3,'Producer'),(168530,112521,7,'Production Design'),(168530,111683,4,'Screenplay'),(168530,959114,3,'Executive Producer'),(168530,1555300,3,'Executive Producer'),(88042,437,7,'Production Design'),(88042,7717,7,'Art Direction'),(88042,13584,5,'Editor'),(88042,51557,3,'Casting'),(88042,58375,2,'Director'),(88042,147483,4,'Screenstory'),(88042,266920,3,'Producer'),(88042,935717,3,'Producer'),(88042,935718,4,'Screenstory'),(88042,935719,8,'Costume Design'),(41630,8222,8,'Costume Design'),(41630,373,6,'Sound Effects Editor'),(41630,524,3,'Executive Producer'),(41630,4500,6,'Music'),(41630,4504,3,'Executive Producer'),(41630,4507,3,'Executive Producer'),(41630,5167,7,'Production Design'),(41630,8653,6,'Sound Mixer'),(41630,8858,2,'Director'),(41630,8858,3,'Producer'),(41630,12945,6,'Music Editor'),(41630,12948,9,'Stunt Coordinator'),(41630,16498,9,'Special Effects Coordinator'),(41630,17749,1,'Director of Photography'),(41630,21635,3,'Executive Producer'),(41630,45841,3,'Casting'),(41630,52193,5,'Dialogue Editor'),(41630,52450,5,'Editor'),(41630,54251,3,'Executive Producer'),(41630,113075,6,'Sound Effects Editor'),(41630,57601,3,'Producer'),(41630,59835,3,'Co-Producer'),(41630,75376,8,'Key Hair Stylist'),(41630,75380,6,'Boom Operator'),(41630,75391,7,'Set Decoration'),(41630,109994,3,'Location Manager'),(41630,161159,1,'Still Photographer'),(41630,224387,3,'Casting'),(41630,230436,3,'ADR Voice Casting'),(41630,513378,4,'Screenplay'),(41630,513378,4,'Story'),(41630,513378,3,'Co-Producer'),(41630,568258,4,'Story'),(41630,936841,7,'Art Direction'),(41630,948648,3,'Co-Executive Producer'),(41630,949132,3,'Producer'),(41630,1017376,1,'Steadicam Operator'),(41630,1116936,6,'Sound Effects Editor'),(41630,1117879,3,'Co-Producer'),(41630,1121874,3,'Unit Production Manager'),(41630,1266746,9,'Post Production Assistant'),(41630,1288086,3,'Casting Assistant'),(41630,1318982,1,'Camera Operator'),(41630,1331648,8,'Hair Department Head'),(41630,1368859,7,'Set Designer'),(41630,1378225,5,'Dialogue Editor'),(41630,1378228,6,'Sound Re-Recording Mixer'),(41630,1387217,7,'Art Department Coordinator'),(41630,1392084,5,'Dialogue Editor'),(41630,1393435,7,'Set Designer'),(41630,1399861,6,'Sound Re-Recording Mixer'),(41630,1403418,9,'Transportation Coordinator'),(41630,1413095,6,'Supervising Sound Editor'),(41630,1418002,6,'Music Editor'),(41630,1427384,2,'Script Supervisor'),(41630,1433084,8,'Key Makeup Artist'),(41630,1440312,9,'Unit Publicist'),(41630,1444953,8,'Makeup Department Head'),(41630,1492644,3,'Associate Producer'),(41630,1492644,2,'First Assistant Director'),(41630,1530327,6,'Orchestrator'),(41630,1531497,8,'Hairstylist'),(41630,1532755,8,'Costume Supervisor'),(41630,1547227,8,'Assistant Costume Designer'),(41630,1547771,5,'Additional Editing'),(41630,1548678,7,'Property Master'),(41630,1552997,9,'Choreographer'),(41630,1553017,11,'Chief Lighting Technician'),(41630,1554037,3,'Production Accountant'),(41630,1590392,8,'Key Costumer'),(41630,1599972,8,'Makeup Artist'),(41630,1627483,8,'Hairstylist'),(41630,1684385,3,'Production Coordinator'),(41630,1764257,2,'Second Assistant Director'),(41630,1764259,5,'First Assistant Editor'),(41630,1764291,7,'Set Dresser'),(41630,1764294,7,'Set Dresser'),(41630,1764295,7,'Set Dresser'),(41630,1764300,3,'Casting Assistant'),(41630,1764306,6,'Assistant Sound Editor'),(77877,1296,3,'Executive Producer'),(77877,33433,2,'Director'),(77877,64172,4,'Novel'),(77877,224385,4,'Screenplay'),(175555,40384,6,'Music'),(175555,33651,1,'Director of Photography'),(175555,80602,2,'Director'),(175555,80602,4,'Screenplay'),(175555,80602,3,'Producer'),(75174,561,3,'Casting'),(75174,578,3,'Producer'),(75174,893,3,'Executive Producer'),(75174,2688,6,'Supervising Sound Editor'),(75174,3498,3,'Executive Producer'),(75174,6063,10,'Visual Effects Producer'),(75174,10123,5,'Editor'),(75174,21257,8,'Makeup Department Head'),(75174,23414,7,'Art Direction'),(75174,39515,3,'Producer'),(75174,40223,2,'Director'),(75174,40223,4,'Writer'),(75174,40223,3,'Producer'),(75174,48498,3,'Producer'),(75174,63421,6,'Original Music Composer'),(75174,60502,5,'Editor'),(75174,60714,7,'Set Decoration'),(75174,62238,3,'Executive Producer'),(75174,75485,8,'Hairstylist'),(75174,90692,6,'Sound Effects Editor'),(75174,11014,3,'Executive Producer'),(75174,131037,1,'Director of Photography'),(75174,131037,1,'Camera Operator'),(75174,197930,9,'Stunt Coordinator'),(75174,558230,5,'Dialogue Editor'),(75174,571133,3,'Producer'),(75174,574090,4,'Screenplay'),(75174,574090,4,'Story'),(75174,957310,7,'Production Design'),(75174,1046154,3,'Executive Producer'),(75174,1046155,3,'Executive Producer'),(75174,1125216,3,'Producer'),(75174,1128115,3,'Producer'),(75174,1128117,3,'Executive Producer'),(75174,1229789,9,'Visual Effects Editor'),(75174,1304276,6,'Foley'),(75174,1305741,8,'Costume Design'),(75174,1333988,9,'Property Master'),(75174,1335041,7,'Construction Coordinator'),(75174,1378677,7,'Set Designer'),(75174,1378699,9,'Special Effects Coordinator'),(75174,1378716,1,'Still Photographer'),(75174,1378722,6,'Music Editor'),(75174,1390382,6,'Music Editor'),(75174,1394931,7,'Art Department Coordinator'),(75174,1397693,2,'Script Supervisor'),(75174,1399918,6,'Sound Effects Editor'),(75174,1401569,10,'Visual Effects Producer'),(75174,1412592,10,'Visual Effects Producer'),(75174,1418286,6,'ADR & Dubbing'),(75174,1418443,5,'Digital Intermediate'),(75174,1447151,10,'Visual Effects Supervisor'),(75174,1463816,5,'First Assistant Editor'),(75174,1472416,9,'CG Supervisor'),(75174,1472417,9,'CG Supervisor'),(75174,1472418,10,'Animation Director'),(77866,2236,3,'Producer'),(77866,2238,3,'Producer'),(77866,7494,3,'Casting'),(77866,9151,3,'Executive Producer'),(77866,13240,3,'Producer'),(77866,15493,1,'Director of Photography'),(77866,35665,3,'Executive Producer'),(77866,62908,6,'Original Music Composer'),(77866,67813,2,'Director'),(77866,67813,3,'Producer'),(77866,183044,3,'Producer'),(77866,935990,4,'Screenplay'),(77866,1017234,3,'Executive Producer'),(77866,1017235,5,'Editor'),(77866,1017236,3,'Casting'),(77866,1017238,7,'Set Decoration'),(77866,1017240,8,'Costume Design'),(198185,17867,4,'Screenplay'),(198185,50767,2,'Director'),(227156,1229,3,'Producer'),(227156,2095,3,'Executive Producer'),(227156,5914,3,'Casting'),(227156,7229,6,'Original Music Composer'),(227156,4953,7,'Production Design'),(227156,5289,5,'Editor'),(227156,13015,2,'Director'),(227156,37756,3,'Executive Producer'),(227156,39123,3,'Casting'),(227156,51843,3,'Producer'),(227156,56786,1,'Director of Photography'),(227156,65559,3,'Executive Producer'),(227156,74159,4,'Screenplay'),(227156,971001,3,'Executive Producer'),(227156,1211382,3,'Producer'),(227156,1349911,4,'Screenplay'),(227156,1383002,3,'Line Producer'),(227156,1383003,4,'Novel'),(190955,2952,3,'Casting'),(190955,3564,5,'Editor'),(190955,3996,6,'Sound Re-Recording Mixer'),(190955,5391,7,'Set Decoration'),(190955,19866,4,'Screenplay'),(190955,19866,2,'Director'),(190955,19866,3,'Producer'),(190955,20561,4,'Screenplay'),(190955,20569,7,'Production Design'),(190955,47817,6,'Supervising Sound Editor'),(190955,49191,10,'Visual Effects Supervisor'),(190955,55813,4,'Story'),(190955,66840,3,'Producer'),(190955,66842,1,'Director of Photography'),(190955,1030402,3,'Producer'),(190955,1095253,3,'Producer'),(190955,1128690,3,'Producer'),(190955,1193622,1,'Still Photographer'),(190955,1293457,1,'Camera Operator'),(190955,1325661,7,'Art Direction'),(190955,1326110,7,'Assistant Art Director'),(190955,1372077,7,'Set Decoration'),(190955,1372078,8,'Hairstylist'),(190955,1372079,9,'Scenic Artist'),(190955,1372080,9,'Scenic Artist'),(190955,1372081,7,'Assistant Art Director'),(190955,1372082,7,'Art Department Coordinator'),(190955,1372083,7,'Art Department Coordinator'),(190955,1372084,7,'Leadman'),(190955,1372085,9,'Property Master'),(190955,1372086,9,'Scenic Artist'),(190955,1372087,6,'ADR & Dubbing'),(190955,1372087,5,'Dialogue Editor'),(190955,1372090,6,'Sound Re-Recording Mixer'),(190955,1372092,9,'Stunt Coordinator'),(190955,1372093,11,'Gaffer'),(190955,1372094,8,'Costume Supervisor'),(190955,1372095,8,'Costume Supervisor'),(190955,1372096,9,'Transportation Captain'),(190955,1372097,2,'Script Supervisor'),(190955,1393387,9,'Special Effects Coordinator'),(190955,1400509,2,'Script Supervisor'),(190955,1405319,8,'Hairstylist'),(190955,1405321,8,'Makeup Department Head'),(190955,1405322,8,'Makeup Artist'),(190955,1405323,3,'Production Supervisor'),(190955,1405324,10,'Visual Effects Supervisor'),(190955,1405325,9,'Visual Effects Editor'),(190955,1405326,1,'Camera Operator'),(190955,1405327,11,'Lighting Technician'),(190955,1405328,8,'Set Costumer'),(190955,1405329,8,'Set Costumer'),(190955,1405330,8,'Set Costumer'),(190955,1405331,8,'Set Costumer'),(190955,1405333,8,'Set Costumer'),(190955,1562588,6,'Boom Operator'),(57431,4767,3,'Producer'),(57431,6742,5,'Editor'),(57431,15528,9,'Special Effects Coordinator'),(57431,51922,3,'Casting'),(57431,53360,3,'Casting'),(57431,64141,2,'Director'),(57431,72264,1,'Director of Photography'),(57431,92389,6,'Sound Effects Editor'),(57431,96128,8,'Key Makeup Artist'),(57431,933594,7,'Set Decoration'),(57431,937895,6,'Original Music Composer'),(57431,971528,8,'Costume Design'),(57431,999440,4,'Screenplay'),(57431,999442,4,'Screenplay'),(57431,1006723,6,'Original Music Composer'),(57431,1143778,7,'Art Direction'),(57431,1147603,7,'Production Design'),(57431,1280234,9,'Stunt Coordinator'),(57431,1329114,8,'Wardrobe Supervisor'),(57431,1380443,5,'Dialogue Editor'),(57431,1387429,9,'Special Effects Coordinator'),(57431,1389602,2,'Script Supervisor'),(57431,1404287,10,'Visual Effects Supervisor'),(57431,1409819,8,'Hair Department Head'),(57431,1411800,8,'Makeup Department Head'),(57431,1417414,7,'Construction Coordinator'),(57431,1422799,6,'Music Editor'),(57431,1458984,2,'Script Supervisor'),(57431,1546622,6,'Music Supervisor'),(57431,1556630,6,'Music Editor'),(57431,1560055,8,'Key Makeup Artist'),(57431,1636693,7,'Set Decoration'),(57431,1726909,2,'First Assistant Director'),(57431,1822026,8,'Key Hair Stylist'),(57431,1822027,7,'Art Department Coordinator'),(57431,1822028,10,'Visual Effects Coordinator'),(57431,1822029,8,'Costume Coordinator'),(57431,1822030,3,'Production Coordinator'),(284536,312,6,'Original Music Composer'),(284536,7494,3,'Casting'),(284536,11472,3,'Producer'),(284536,12781,3,'Executive Producer'),(284536,13240,3,'Producer'),(284536,16514,3,'Producer'),(284536,34510,4,'Screenplay'),(284536,34510,3,'Executive Producer'),(284536,21568,7,'Production Design'),(284536,56381,3,'Executive Producer'),(284536,56381,4,'Story'),(284536,66689,7,'Art Direction'),(284536,67113,1,'Director of Photography'),(284536,77357,2,'Director'),(284536,93600,5,'Editor'),(284536,183044,3,'Producer'),(284536,207419,3,'Producer'),(284536,957368,7,'Set Decoration'),(284536,958488,8,'Costume Design'),(284536,1099886,6,'Original Music Composer'),(284536,1133582,6,'Songs'),(152737,278,6,'Original Music Composer'),(152737,555,7,'Set Decoration'),(152737,59839,3,'Producer'),(152737,1461,3,'Producer'),(152737,1891,5,'Editor'),(152737,5329,7,'Production Design'),(152737,27562,3,'Producer'),(152737,31511,3,'Producer'),(152737,47333,2,'Director'),(152737,47294,8,'Costume Design'),(152737,52530,9,'Cinematography'),(152737,72638,4,'Screenplay'),(152737,72638,4,'Author'),(152737,941867,3,'Producer'),(319888,957,3,'Producer'),(319888,974,2,'Director'),(319888,49809,5,'Editor'),(319888,61578,3,'Producer'),(319888,91180,3,'Producer'),(319888,189613,3,'Producer'),(319888,1441716,4,'Screenplay'),(319888,1441717,4,'Screenplay'),(319888,1441718,3,'Producer'),(46261,5914,3,'Casting'),(46261,3050,5,'Editor'),(46261,7229,6,'Original Music Composer'),(46261,5162,3,'Producer'),(46261,5547,7,'Production Design'),(46261,5548,7,'Set Decoration'),(46261,12203,3,'Casting'),(46261,12677,4,'Screenplay'),(46261,15906,3,'Executive Producer'),(46261,16425,1,'Director of Photography'),(46261,10828,4,'Screenplay'),(46261,10828,3,'Producer'),(46261,26144,7,'Art Direction'),(46261,35514,8,'Costume Design'),(46261,39123,3,'Casting'),(46261,56786,9,'Second Unit Cinematographer'),(46261,75151,6,'Supervising Sound Editor'),(46261,77730,7,'Assistant Art Director'),(46261,135601,2,'Director'),(46261,213665,3,'Executive Producer'),(46261,1014937,6,'Original Music Composer'),(46261,1121616,3,'Producer'),(46261,1121617,3,'Executive Producer'),(46261,1162866,6,'Dolby Consultant'),(46261,1242852,4,'Teleplay'),(46261,1321694,8,'Costume Supervisor'),(46261,1391525,6,'Foley'),(46261,1394768,1,'Steadicam Operator'),(46261,1395454,10,'Visual Effects Producer'),(46261,1401667,7,'Assistant Art Director'),(46261,1402740,6,'Foley'),(46261,1402900,1,'Camera Operator'),(46261,1402914,1,'Camera Operator'),(46261,1402926,6,'Sound Effects Editor'),(46261,1410551,6,'Sound Designer'),(46261,1418265,8,'Hairstylist'),(46261,1418813,9,'Stunt Coordinator'),(46261,1423826,5,'Digital Intermediate'),(46261,1425359,8,'Makeup Artist'),(46261,1425360,9,'Makeup Effects'),(46261,1425367,7,'Art Department Coordinator'),(46261,1425371,7,'Construction Coordinator'),(46261,1425372,7,'Greensman'),(46261,1425373,7,'Greensman'),(46261,1425374,7,'Set Designer'),(46261,1425376,7,'Set Designer'),(46261,1425378,7,'Sculptor'),(46261,1425380,9,'Scenic Artist'),(46261,1425381,9,'Scenic Artist'),(46261,1425382,7,'Sculptor'),(46261,1425383,7,'Sculptor'),(46261,1425384,7,'Sculptor'),(46261,1425386,9,'Visual Effects Editor'),(46261,1425387,10,'Visual Effects Producer'),(46261,1425390,1,'Additional Camera'),(46261,1425391,1,'Still Photographer'),(46261,1425392,8,'Set Costumer'),(46261,1425393,5,'Digital Intermediate'),(46261,1425394,5,'First Assistant Editor'),(46261,1425395,6,'Music Editor'),(46261,1425396,6,'Music Editor'),(46261,1425397,2,'Script Supervisor'),(46261,1425398,2,'Script Supervisor'),(46261,1425399,9,'Studio Teachers'),(46261,1425400,3,'Location Manager'),(46261,1425401,9,'Unit Publicist'),(46261,1452989,10,'Animation'),(46261,1452991,10,'Animation'),(46261,1453003,10,'Animation'),(43931,2952,3,'Casting'),(43931,7229,6,'Music'),(43931,5140,2,'Director'),(43931,5140,3,'Producer'),(43931,5140,4,'Writer'),(43931,60187,3,'Producer'),(43931,1312509,3,'Producer'),(43931,1312510,1,'Director of Photography'),(43931,1327146,8,'Costume Supervisor'),(43931,1594602,8,'Costume Design'),(276907,1113,3,'Casting'),(276907,945,7,'Set Decoration'),(276907,1225,6,'Original Music Composer'),(276907,2236,3,'Producer'),(276907,2238,3,'Producer'),(276907,2524,3,'Executive Producer'),(276907,4723,2,'Director'),(276907,4723,4,'Writer'),(276907,9151,3,'Executive Producer'),(276907,57049,3,'Producer'),(276907,59681,3,'Executive Producer'),(276907,60085,1,'Director of Photography'),(276907,71573,3,'Co-Producer'),(276907,119117,8,'Costume Design'),(276907,158401,3,'Executive Producer'),(276907,968632,3,'Executive Producer'),(276907,969757,3,'Executive Producer'),(276907,995327,3,'Executive Producer'),(276907,1046115,5,'Editor'),(276907,1066776,6,'Music Supervisor'),(276907,1089410,7,'Assistant Art Director'),(276907,1095402,3,'Executive Producer'),(276907,1115629,4,'Book'),(276907,1128690,3,'Executive Producer'),(276907,1129513,3,'Producer'),(276907,1327792,8,'Costume Supervisor'),(276907,1334807,9,'Property Master'),(276907,1352979,6,'Music Editor'),(276907,1384722,7,'Art Direction'),(276907,1398758,7,'Production Design'),(276907,1410205,2,'Script Supervisor'),(276907,1411074,8,'Wigmaker'),(276907,1415987,1,'Still Photographer'),(276907,1428470,8,'Makeup Artist'),(276907,1458727,3,'Executive Producer'),(276907,1458728,3,'Executive Producer'),(276907,1459857,8,'Makeup Artist'),(276907,1465643,9,'Choreographer'),(276907,1486198,3,'Casting Associate'),(276907,1486231,3,'Producer'),(276907,1535968,7,'Art Direction'),(276907,1545926,8,'Makeup Artist'),(276907,1556417,9,'Armorer'),(276907,1568116,8,'Assistant Costume Designer'),(276907,1568117,8,'Set Costumer'),(276907,1568118,8,'Set Costumer'),(276907,1568120,7,'Assistant Art Director'),(276907,1659949,3,'Executive Producer'),(276907,1659950,3,'Executive Producer'),(65055,4755,2,'Director'),(65055,221132,4,'Screenplay'),(65055,891946,4,'Screenplay'),(65055,1140576,10,'Animation'),(65055,1460603,9,'Compositors'),(200505,561,3,'Casting'),(200505,4500,6,'Original Music Composer'),(200505,7068,5,'Editor'),(200505,8858,2,'Director'),(200505,8858,3,'Producer'),(200505,10420,7,'Production Design'),(200505,19466,7,'Set Decoration'),(200505,20743,3,'Producer'),(200505,52449,1,'Director of Photography'),(200505,52450,5,'Editor'),(200505,54251,3,'Executive Producer'),(200505,57601,3,'Producer'),(200505,57560,3,'Executive Producer'),(200505,161159,1,'Still Photographer'),(200505,1117879,3,'Producer'),(200505,1208355,7,'Art Direction'),(200505,1274505,4,'Screenplay'),(200505,1274506,4,'Screenplay'),(200505,1311133,8,'Costume Design'),(200505,1327146,8,'Costume Supervisor'),(200505,1342669,2,'Script Supervisor'),(200505,1345718,3,'Associate Producer'),(200505,1367672,11,'Gaffer'),(200505,1411166,8,'Hair Department Head'),(200505,1418002,6,'Music Editor'),(200505,1454534,8,'Set Costumer'),(200505,1454535,7,'Art Direction'),(200505,1526823,6,'Music Supervisor'),(200505,1526824,8,'Key Hair Stylist'),(60309,2952,3,'Casting'),(60309,3996,6,'Sound Re-Recording Mixer'),(60309,4061,8,'Costume Design'),(60309,4135,2,'Director'),(60309,4140,6,'Original Music Composer'),(60309,4869,5,'Editor'),(60309,7764,6,'Supervising Sound Editor'),(60309,8166,6,'Sound Re-Recording Mixer'),(60309,9040,1,'Director of Photography'),(60309,9040,1,'Camera Operator'),(60309,17148,7,'Production Design'),(60309,17150,7,'Set Decoration'),(60309,15317,10,'Visual Effects Producer'),(60309,20228,6,'Foley'),(60309,20229,6,'Foley'),(60309,29929,8,'Makeup Artist'),(60309,62723,5,'Digital Intermediate'),(60309,66532,7,'Art Direction'),(60309,138617,6,'ADR & Dubbing'),(60309,148118,4,'Story'),(60309,148118,4,'Screenplay'),(60309,230882,4,'Screenplay'),(60309,230882,4,'Story'),(60309,582808,1,'Still Photographer'),(60309,971660,3,'Producer'),(60309,1333222,9,'Stunt Coordinator'),(60309,1334481,7,'Assistant Art Director'),(60309,1336516,7,'Construction Coordinator'),(60309,1339446,6,'Sound Effects Editor'),(60309,1347760,9,'Dialect Coach'),(60309,1355972,9,'Chef'),(60309,1367672,11,'Lighting Technician'),(60309,1376899,5,'Dialogue Editor'),(60309,1376901,5,'Dialogue Editor'),(60309,1376902,5,'Dialogue Editor'),(60309,1392150,2,'Script Supervisor'),(60309,1394418,5,'Dialogue Editor'),(60309,1401786,6,'Sound Effects Editor'),(60309,1406873,6,'Sound Effects Editor'),(60309,1408714,8,'Makeup Department Head'),(60309,1409245,5,'Digital Intermediate'),(60309,1409721,6,'Music Editor'),(60309,1411540,5,'Digital Intermediate'),(60309,1412122,9,'Transportation Coordinator'),(60309,1412971,8,'Hairstylist'),(60309,1412972,8,'Hairstylist'),(60309,1412973,3,'Production Supervisor'),(60309,1412975,7,'Art Department Coordinator'),(60309,1412976,9,'Property Master'),(60309,1412977,7,'Set Designer'),(60309,1412978,7,'Leadman'),(60309,1412979,7,'Leadman'),(60309,1412980,7,'Greensman'),(60309,1412981,7,'Greensman'),(60309,1412982,7,'Greensman'),(60309,1412983,7,'Greensman'),(60309,1412984,6,'Sound Effects Editor'),(60309,1412985,6,'Sound Effects Editor'),(60309,1412986,9,'Special Effects Coordinator'),(60309,1412987,10,'Visual Effects Producer'),(60309,1412988,9,'Visual Effects Art Director'),(60309,1412989,10,'Visual Effects Supervisor'),(60309,1412990,1,'Camera Operator'),(60309,1412990,1,'Steadicam Operator'),(60309,1412991,11,'Rigging Gaffer'),(60309,1412995,8,'Set Costumer'),(60309,1412996,8,'Set Costumer'),(60309,1412997,8,'Set Costumer'),(60309,1412998,8,'Set Costumer'),(60309,1412999,8,'Set Costumer'),(60309,1413000,8,'Costume Supervisor'),(60309,1413001,5,'Digital Intermediate'),(60309,1413002,3,'Location Manager'),(60309,1413003,9,'Unit Publicist'),(60309,1413004,3,'Production Accountant'),(293646,908,5,'Editor'),(293646,3683,8,'Costume Design'),(293646,1729,6,'Original Music Composer'),(293646,3658,3,'Co-Executive Producer'),(293646,7189,4,'Screenplay'),(293646,9821,7,'Production Design'),(293646,17674,3,'Casting'),(293646,17856,3,'Producer'),(293646,18492,4,'Screenstory'),(293646,20206,3,'Producer'),(293646,59929,1,'Director of Photography'),(293646,26208,3,'Producer'),(293646,81733,3,'Supervising Producer'),(293646,437833,2,'Director'),(293646,552531,4,'Screenplay'),(293646,582915,3,'Executive Producer'),(293646,969242,3,'Executive Producer'),(293646,1133294,4,'Screenplay'),(293646,1201177,3,'Co-Producer'),(293646,1399086,7,'Art Direction'),(293646,1578152,4,'Book'),(293646,1578153,3,'Co-Producer'),(293646,1578154,3,'Co-Producer'),(293646,1578155,3,'Executive Producer'),(293646,1578156,3,'Executive Producer'),(293646,1578157,3,'Executive Producer'),(133698,8392,2,'Director'),(133698,122,6,'Original Music Composer'),(133698,38919,3,'Casting'),(133698,76257,1,'Director of Photography'),(133698,94909,3,'Producer'),(133698,142982,3,'Producer'),(133698,142982,4,'Writer'),(133698,937260,3,'Producer'),(133698,937581,7,'Production Design'),(133698,1031921,5,'Editor'),(133698,1096487,4,'Story'),(133698,1097814,4,'Writer'),(133698,1153037,8,'Costume Design'),(59440,4140,6,'Original Music Composer'),(59440,7496,7,'Production Design'),(59440,13005,5,'Editor'),(59440,16490,5,'Editor'),(59440,34511,3,'Executive Producer'),(59440,20540,3,'Casting'),(59440,25292,3,'Executive Producer'),(59440,35594,8,'Costume Design'),(59440,40248,7,'Art Direction'),(59440,40513,3,'Executive Producer'),(59440,60793,7,'Set Decoration'),(59440,65209,9,'Thanks'),(59440,67810,5,'Editor'),(59440,77003,2,'Director'),(59440,77003,4,'Screenplay'),(59440,77003,4,'Story'),(59440,77003,3,'Producer'),(59440,83069,3,'Producer'),(59440,83069,2,'Assistant Director'),(59440,113853,2,'Script Supervisor'),(59440,131037,1,'Director of Photography'),(59440,131423,9,'Stunts'),(59440,181550,4,'Screenplay'),(59440,181550,4,'Story'),(59440,199449,3,'Producer'),(59440,589613,4,'Screenplay'),(59440,589613,3,'Producer'),(59440,931974,9,'Post Production Supervisor'),(59440,954932,3,'Executive Producer'),(59440,970186,3,'Executive Producer'),(59440,995558,5,'Editor'),(59440,1125867,3,'Producer'),(59440,1264811,6,'Music Editor'),(59440,1319843,8,'Makeup Department Head'),(59440,1328148,3,'Casting'),(59440,1345635,2,'Script Supervisor'),(59440,1364422,9,'Digital Effects Supervisor'),(59440,1404285,9,'Visual Effects Editor'),(59440,1404286,9,'Visual Effects Editor'),(59440,1412986,9,'Special Effects Coordinator'),(59440,1414538,8,'Hairstylist'),(59440,1432033,8,'Makeup Artist'),(59440,1452614,8,'Hair Department Head'),(59440,1461178,1,'Camera Operator'),(59440,1539993,10,'Digital Compositors'),(59440,1540015,10,'Digital Compositors'),(59440,1550233,6,'Sound'),(59440,1550241,1,'First Assistant Camera'),(77883,7623,3,'Executive Producer'),(77883,13585,3,'Casting'),(77883,15084,5,'Editor'),(77883,21055,5,'Editor'),(77883,22676,2,'Director'),(77883,23541,3,'Executive Producer'),(77883,40383,3,'Executive Producer'),(77883,23816,8,'Costume Design'),(77883,35699,7,'Set Decoration'),(77883,40268,1,'Director of Photography'),(77883,40513,3,'Executive Producer'),(77883,47102,1,'Additional Photography'),(77883,62117,3,'Executive Producer'),(77883,65937,6,'Supervising Sound Editor'),(77883,84961,4,'Writer'),(77883,75878,8,'Makeup Department Head'),(77883,113081,6,'Sound Effects Editor'),(77883,117468,6,'ADR & Dubbing'),(77883,197930,9,'Stunt Coordinator'),(77883,582687,4,'Writer'),(77883,582688,4,'Writer'),(77883,582689,4,'Writer'),(77883,939218,9,'Unit Publicist'),(77883,1118400,6,'Sound Effects Editor'),(77883,1181479,6,'Music'),(77883,1182909,8,'Hairstylist'),(77883,1191106,7,'Art Direction'),(77883,1340737,6,'Sound Re-Recording Mixer'),(77883,1340741,5,'Dialogue Editor'),(77883,1372414,9,'Special Effects Coordinator'),(77883,1378734,9,'Studio Teachers'),(77883,1384361,8,'Makeup Department Head'),(77883,1394972,1,'Steadicam Operator'),(77883,1395322,1,'Camera Operator'),(77883,1398846,11,'Gaffer'),(77883,1399071,1,'Helicopter Camera'),(77883,1400408,1,'Still Photographer'),(77883,1400414,5,'Digital Intermediate'),(77883,1400417,9,'Transportation Coordinator'),(77883,1410328,9,'Makeup Effects'),(77883,1410582,1,'Camera Operator'),(77883,1418353,9,'Makeup Effects'),(77883,1419924,6,'Music Editor'),(77883,1425911,6,'Dolby Consultant'),(77883,1431014,9,'Property Master'),(77883,1438623,11,'Gaffer'),(77883,1438630,3,'Location Manager'),(77883,1441345,8,'Makeup Artist'),(77883,1441368,1,'Camera Operator'),(77883,1460599,10,'VFX Artist'),(77883,1460753,8,'Makeup Artist'),(77883,1460754,8,'Hairstylist'),(77883,1460755,8,'Hairstylist'),(77883,1460756,8,'Hairstylist'),(77883,1460758,7,'Production Design'),(77883,1460760,7,'Assistant Art Director'),(77883,1460761,9,'Property Master'),(77883,1460762,9,'CG Supervisor'),(77883,1460763,10,'Visual Effects Supervisor'),(77883,1460765,11,'Gaffer'),(77883,1460766,11,'Rigging Gaffer'),(77883,1460767,1,'Steadicam Operator'),(77883,1460768,1,'Still Photographer'),(77883,1460769,8,'Costume Supervisor'),(77883,1460772,8,'Set Costumer'),(77883,1460775,8,'Set Costumer'),(77883,1460776,5,'Digital Intermediate'),(77883,1460777,5,'Digital Intermediate'),(77883,1460778,5,'Digital Intermediate'),(77883,1460781,5,'Digital Intermediate'),(77883,1460782,5,'First Assistant Editor'),(77883,1460784,9,'Choreographer'),(77883,1460785,2,'Script Supervisor'),(77883,1460786,2,'Script Supervisor'),(77883,1460788,2,'Script Supervisor'),(77883,1460790,3,'Location Manager'),(77883,1579180,1,'First Assistant Camera'),(40001,2147,3,'Producer'),(40001,4952,3,'Casting'),(40001,7748,4,'Novel'),(40001,9152,6,'Original Music Composer'),(40001,24318,2,'Director'),(40001,33830,5,'Editor'),(40001,57680,3,'Producer'),(40001,57986,4,'Screenplay'),(40001,59443,1,'Director of Photography'),(40001,206366,3,'Producer'),(40001,933105,5,'Editor'),(40001,1384855,4,'Screenplay'),(64639,14941,4,'Screenplay'),(64639,14941,4,'Writer'),(64639,21526,4,'Screenplay'),(64639,21526,2,'Director'),(64639,21526,4,'Writer'),(64639,1452932,10,'Animation'),(168705,32030,4,'Writer'),(168705,23799,2,'Director'),(72113,2875,7,'Production Design'),(72113,674,3,'Co-Producer'),(72113,2949,6,'Original Music Composer'),(72113,3556,4,'Screenplay'),(72113,3556,2,'Director'),(72113,3561,1,'Director of Photography'),(72113,3564,5,'Editor'),(72113,11295,3,'Casting'),(72113,15607,3,'Co-Producer'),(72113,17080,3,'Co-Producer'),(72113,53206,3,'Producer'),(72113,120096,4,'Screenplay'),(72113,1362754,3,'Line Producer'),(72113,1462269,3,'Co-Producer'),(72113,1462270,3,'Executive Producer'),(72113,1462271,3,'Associate Producer'),(72113,1462272,3,'Associate Producer'),(94352,2710,3,'Producer'),(94352,5524,4,'Screenplay'),(94352,5524,2,'Director'),(94352,5524,3,'Producer'),(94352,12106,3,'Producer'),(94352,84804,9,'Cinematography'),(94352,1001706,6,'Music'),(94352,1001707,6,'Music'),(94352,1001708,7,'Art Direction'),(94352,1067239,3,'Producer'),(94352,1447518,9,'Stunts'),(152742,1259,6,'Original Music Composer'),(152742,65314,4,'Screenplay'),(152742,65314,2,'Director'),(152742,67324,1,'Director of Photography'),(152742,232666,3,'Producer'),(152742,1133329,3,'Producer'),(49953,10851,6,'Original Music Composer'),(49953,76100,2,'Director'),(49953,76100,3,'Producer'),(49953,104614,4,'Screenplay'),(49953,104614,3,'Producer'),(49953,161444,3,'Producer'),(49953,1008408,3,'Producer'),(49953,1008412,3,'Producer'),(48034,3564,5,'Editor'),(48034,19866,2,'Director'),(48034,19866,4,'Writer'),(48034,47818,6,'Sound Re-Recording Mixer'),(48034,47819,6,'Sound Re-Recording Mixer'),(48034,28685,6,'Sound'),(48034,37640,5,'Dialogue Editor'),(48034,54572,3,'Production Manager'),(48034,66840,3,'Producer'),(48034,66842,1,'Director of Photography'),(48034,935695,3,'Associate Producer'),(48034,1030402,3,'Executive Producer'),(48034,1030403,2,'Script Supervisor'),(48034,1030404,8,'Costume Supervisor'),(48034,1030405,3,'Casting'),(48034,1030406,8,'Costume Design'),(48034,1030407,7,'Production Design'),(48034,1286291,7,'Set Decoration'),(48034,1463656,9,'Stunts'),(48034,1500707,9,'Stunt Coordinator'),(48034,1861368,5,'First Assistant Editor'),(39845,18596,2,'Director'),(39845,34542,4,'Screenplay'),(39845,1336716,10,'Visual Effects Supervisor'),(36696,115999,2,'Director'),(36696,116000,2,'Director'),(36696,116001,4,'Writer'),(36696,116002,4,'Writer'),(109091,2952,3,'Casting'),(109091,120,1,'Director of Photography'),(109091,578,2,'Director'),(109091,578,3,'Producer'),(109091,946,8,'Costume Design'),(109091,944,7,'Production Design'),(109091,950,5,'Editor'),(109091,6468,3,'Producer'),(109091,8401,3,'Executive Producer'),(109091,16363,3,'Casting'),(109091,22498,3,'Executive Producer'),(109091,40374,3,'Executive Producer'),(109091,51736,3,'Executive Producer'),(109091,51736,4,'Writer'),(109091,566958,3,'Producer'),(109091,566962,3,'Producer'),(109091,582922,6,'Original Music Composer'),(38543,6392,8,'Costume Design'),(38543,9990,7,'Production Design'),(38543,11270,7,'Set Decoration'),(38543,12654,7,'Art Direction'),(38543,28240,1,'Director of Photography'),(38543,34967,3,'Producer'),(38543,61508,4,'Screenplay'),(38543,68016,6,'Orchestrator'),(38543,83730,2,'Director'),(38543,83730,4,'Story'),(38543,880606,9,'Special Effects'),(38543,929145,6,'Original Music Composer'),(38543,1014915,3,'Casting'),(38543,1110770,3,'Casting'),(38543,1125208,3,'Producer'),(38543,1320891,7,'Art Department Coordinator'),(38543,1326461,8,'Costume Supervisor'),(38543,1394011,10,'Visual Effects Producer'),(38543,1394027,9,'Visual Effects Editor'),(38543,1402997,10,'Visual Effects Producer'),(38543,1405194,10,'Visual Effects Coordinator'),(38543,1412708,10,'Visual Effects Producer'),(38543,1412709,10,'Visual Effects Producer'),(38543,1413849,10,'Visual Effects Coordinator'),(38543,1415976,10,'Visual Effects Producer'),(38543,1432612,10,'Visual Effects Producer'),(38543,1441674,10,'Visual Effects Producer'),(38543,1525888,8,'Hair Designer'),(38543,1525898,9,'Armorer'),(38543,1529520,10,'Visual Effects Coordinator'),(38543,1539786,8,'Assistant Costume Designer'),(38543,1539999,10,'Visual Effects Coordinator'),(38543,1540183,8,'Makeup Designer'),(38543,1553480,9,'Special Effects Coordinator'),(38543,1553481,9,'CG Supervisor'),(38543,1553482,9,'CG Supervisor'),(38543,1553483,10,'Visual Effects Coordinator'),(38543,1553484,2,'Script Supervisor'),(38543,1553485,8,'Makeup Artist'),(38543,1553486,6,'Music Supervisor'),(290864,70703,2,'Director'),(290864,70703,4,'Story'),(290864,130560,4,'Story'),(290864,1098625,3,'Producer'),(290864,1295960,9,'Cinematography'),(290864,1421219,4,'Writer'),(290864,1421220,3,'Producer'),(290864,1421221,3,'Producer'),(242166,3118,3,'Producer'),(242166,16214,2,'Director'),(242166,8751,5,'Editor'),(242166,109129,8,'Makeup Department Head'),(242166,1040895,3,'Producer'),(242166,1046168,3,'Producer'),(242166,1301270,4,'Writer'),(242166,1301271,4,'Writer'),(242166,1327247,8,'Costume Design'),(242166,1327777,7,'Production Design'),(242166,1405389,1,'Director of Photography'),(242166,1472869,3,'Producer'),(242166,1472870,3,'Producer'),(242166,1472871,6,'Music'),(242166,1472872,8,'Costume Design'),(242166,1472873,8,'Makeup Artist'),(242166,1760479,3,'Executive Producer'),(83770,6794,5,'Editor'),(83770,1776,3,'Executive Producer'),(83770,278,6,'Original Music Composer'),(83770,7441,8,'Costume Design'),(83770,8574,2,'Director'),(83770,18492,4,'Screenplay'),(83770,18494,1,'Director of Photography'),(83770,18496,7,'Production Design'),(83770,20488,3,'Producer'),(83770,54318,3,'Producer'),(83770,238715,4,'Novel'),(174751,524,3,'Producer'),(174751,33192,4,'Screenplay'),(174751,43441,5,'Editor'),(174751,50984,3,'Producer'),(174751,50988,3,'Producer'),(174751,55484,3,'Producer'),(174751,57849,1,'Director of Photography'),(174751,59702,3,'Producer'),(174751,92376,6,'Foley'),(174751,77003,2,'Director'),(174751,94457,3,'Producer'),(174751,589613,4,'Writer'),(174751,1155666,3,'Producer'),(174751,1295292,4,'Screenplay'),(174751,1521185,9,'Stunts'),(174751,1538207,10,'Special Effects Supervisor'),(184098,6874,3,'Executive Producer'),(184098,31121,3,'Producer'),(184098,31123,3,'Executive Producer'),(184098,20400,2,'Director'),(184098,49911,6,'Music'),(184098,54606,3,'Casting'),(184098,59922,3,'Executive Producer'),(184098,57769,5,'Editor'),(184098,82587,3,'Executive Producer'),(184098,82587,4,'Book'),(184098,86197,8,'Costume Design'),(184098,112521,7,'Production Design'),(184098,147711,4,'Writer'),(184098,147711,3,'Executive Producer'),(184098,147712,4,'Writer'),(184098,147712,3,'Executive Producer'),(184098,930028,1,'Director of Photography'),(184098,1733502,3,'Executive Producer'),(70868,10567,4,'Screenplay'),(70868,23966,7,'Production Design'),(70868,32983,2,'Director'),(70868,567605,4,'Novel'),(43593,2519,8,'Costume Design'),(43593,9617,8,'Makeup Department Head'),(43593,26714,1,'Director of Photography'),(43593,46088,3,'Producer'),(43593,59290,3,'Producer'),(43593,59291,2,'Director'),(43593,59291,3,'Producer'),(43593,60102,6,'Original Music Composer'),(43593,62157,4,'Writer'),(43593,102630,3,'Producer'),(43593,765144,3,'Casting'),(43593,1073317,5,'First Assistant Editor'),(43593,1399130,1,'Still Photographer'),(43593,1403480,11,'Rigging Gaffer'),(43593,1421252,11,'Gaffer'),(43593,1439109,8,'Costume Supervisor'),(43593,1452932,10,'Animation'),(43593,1453943,11,'Lighting Technician'),(43593,1460608,9,'Visual Effects Editor'),(43593,1532396,6,'Music Supervisor'),(43593,1537119,3,'Production Coordinator'),(43593,1537120,5,'First Assistant Editor'),(40688,2151,3,'Casting'),(40688,10385,4,'Writer'),(40688,27154,1,'Director of Photography'),(40688,38335,6,'Original Music Composer'),(40688,43441,5,'Editor'),(40688,49913,8,'Costume Design'),(40688,55163,3,'Producer'),(40688,57680,3,'Producer'),(40688,72258,2,'Director'),(40688,108782,7,'Production Design'),(40688,1212336,3,'Executive Producer'),(40688,1492928,7,'Set Decoration'),(40688,1494667,3,'Associate Producer'),(40688,1542943,3,'Executive Producer'),(40688,1542944,3,'Associate Producer'),(40688,1542944,2,'Assistant Director'),(45881,403,1,'Director of Photography'),(45881,9217,6,'Original Music Composer'),(45881,7661,4,'Novel'),(45881,130482,4,'Writer'),(45881,130482,2,'Director'),(41283,8221,7,'Production Design'),(41283,5635,5,'Dialogue Editor'),(41283,6377,6,'Original Music Composer'),(41283,13626,7,'Set Decoration'),(41283,41377,3,'Producer'),(41283,32806,5,'Digital Intermediate'),(41283,58363,6,'Sound Effects Editor'),(41283,40511,1,'Director of Photography'),(41283,46347,3,'Producer'),(41283,54735,3,'Executive Producer'),(41283,56281,4,'Writer'),(41283,56281,4,'Screenplay'),(41283,56281,3,'Executive Producer'),(41283,57158,9,'Second Unit Cinematographer'),(41283,66120,3,'Producer'),(41283,66121,2,'Director'),(41283,69617,4,'Writer'),(41283,69617,4,'Screenplay'),(41283,69617,3,'Producer'),(41283,71148,5,'Editor'),(41283,86197,8,'Costume Design'),(41283,91122,1,'Helicopter Camera'),(41283,548439,6,'Foley'),(41283,548445,6,'Foley'),(41283,930028,1,'Camera Operator'),(41283,966100,7,'Art Direction'),(41283,1115736,6,'Sound Effects Editor'),(41283,1298897,9,'Special Effects Coordinator'),(41283,1325234,8,'Makeup Department Head'),(41283,1336715,10,'Visual Effects Producer'),(41283,1336716,10,'Visual Effects Supervisor'),(41283,1339467,2,'Script Supervisor'),(41283,1340737,6,'Sound Re-Recording Mixer'),(41283,1355541,1,'Camera Operator'),(41283,1357063,9,'Stunt Coordinator'),(41283,1390360,10,'Visual Effects Producer'),(41283,1391383,7,'Construction Coordinator'),(41283,1391386,6,'Supervising Sound Editor'),(41283,1392970,10,'Visual Effects Producer'),(41283,1392971,9,'CG Supervisor'),(41283,1393456,9,'Dialect Coach'),(41283,1397737,9,'Transportation Coordinator'),(41283,1400085,8,'Set Costumer'),(41283,1402545,8,'Makeup Artist'),(41283,1404218,6,'Sound Re-Recording Mixer'),(41283,1406839,9,'Stunt Coordinator'),(41283,1408722,6,'Music Editor'),(41283,1411844,1,'Camera Operator'),(41283,1412723,5,'Digital Intermediate'),(41283,1414541,8,'Makeup Artist'),(41283,1417877,10,'Visual Effects Supervisor'),(41283,1418398,1,'Steadicam Operator'),(41283,1424154,7,'Set Designer'),(41283,1424701,8,'Set Costumer'),(41283,1425409,8,'Hairstylist'),(41283,1428127,8,'Makeup Artist'),(41283,1428587,7,'Assistant Art Director'),(41283,1435661,9,'Picture Car Coordinator'),(41283,1440293,8,'Hairstylist'),(41283,1440295,7,'Art Department Coordinator'),(41283,1440296,7,'Lead Painter'),(41283,1440297,5,'Dialogue Editor'),(41283,1440299,6,'Sound Effects Editor'),(41283,1440300,10,'Visual Effects Supervisor'),(41283,1440301,1,'Camera Operator'),(41283,1440303,1,'Still Photographer'),(41283,1440304,11,'Gaffer'),(41283,1440305,11,'Rigging Gaffer'),(41283,1440306,8,'Costume Supervisor'),(41283,1440307,8,'Set Costumer'),(41283,1440308,5,'Digital Intermediate'),(41283,1440309,9,'Dialect Coach'),(41283,1440311,9,'Studio Teachers'),(41283,1440312,9,'Unit Publicist'),(37137,7181,3,'Producer'),(37137,12936,4,'Writer'),(37137,12936,3,'Producer'),(37137,12987,2,'Director'),(37137,12987,4,'Writer'),(37137,12939,6,'Original Music Composer'),(37137,12991,4,'Writer'),(37137,56593,1,'Director of Photography'),(152601,1783,7,'Production Design'),(152601,4234,5,'Editor'),(152601,4769,3,'Executive Producer'),(152601,5953,2,'Director'),(152601,5953,3,'Producer'),(152601,5953,4,'Writer'),(152601,5957,7,'Set Decoration'),(152601,6955,3,'Producer'),(152601,6958,5,'Editor'),(152601,6961,8,'Costume Design'),(152601,19663,7,'Art Direction'),(152601,92329,8,'Makeup Department Head'),(152601,74401,1,'Director of Photography'),(152601,180749,3,'Executive Producer'),(152601,939529,3,'Executive Producer'),(152601,1027025,3,'Producer'),(152601,1087907,6,'Original Music Composer'),(152601,1172443,1,'Still Photographer'),(152601,1337458,6,'Production Sound Mixer'),(152601,1401109,1,'Steadicam Operator'),(152601,1406839,9,'Stunt Coordinator'),(152601,1444908,8,'Hair Department Head'),(152601,1450000,2,'Script Supervisor'),(152601,1612808,7,'Art Department Coordinator'),(227707,16984,5,'Editor'),(227707,28500,5,'Editor'),(227707,38553,1,'Director of Photography'),(227707,39203,8,'Costume Design'),(227707,51897,6,'Music'),(227707,558177,2,'Director'),(227707,936384,4,'Writer'),(227707,967479,3,'Producer'),(227707,1039358,3,'Producer'),(227707,1050634,7,'Production Design'),(227707,1128094,3,'Producer'),(227707,1222839,4,'Writer'),(227707,1269251,3,'Producer'),(227707,1273047,10,'Visual Effects Supervisor'),(227707,1328823,7,'Art Direction'),(227707,1354490,4,'Novel'),(227707,1362709,10,'Visual Effects Coordinator'),(227707,1398505,3,'Casting'),(227707,1411249,10,'Visual Effects Producer'),(227707,1503229,9,'Special Effects Coordinator'),(227707,1527431,7,'Art Direction'),(227707,1528377,8,'Hair Designer'),(227707,1528377,8,'Makeup Designer'),(227707,1530259,7,'Supervising Art Director'),(227707,1530260,7,'Set Decoration'),(227707,1530261,10,'Special Effects Supervisor'),(227707,1530262,8,'Costume Supervisor'),(227707,1530263,2,'Script Supervisor'),(227707,1530264,10,'Visual Effects Coordinator'),(227707,1530265,10,'Visual Effects Producer'),(227707,1530266,3,'Casting'),(227707,1530267,3,'Casting Associate'),(70435,1884,2,'Director'),(70435,1884,1,'Director of Photography'),(70435,1884,5,'Editor'),(70435,1889,6,'Original Music Composer'),(70435,5626,3,'Executive Producer'),(70435,9041,7,'Production Design'),(70435,23649,4,'Writer'),(70435,51922,3,'Casting'),(70435,54419,3,'Executive Producer'),(70435,54873,3,'Executive Producer'),(70435,72106,3,'Producer'),(70435,109980,3,'Executive Producer'),(70435,119665,3,'Producer'),(70435,967719,8,'Costume Design'),(70435,1813644,9,'Stunts'),(354110,2688,6,'Supervising Sound Editor'),(354110,22007,4,'Writer'),(354110,23548,8,'Costume Design'),(354110,23862,3,'Producer'),(354110,35332,5,'Editor'),(354110,36165,1,'Director of Photography'),(354110,25873,2,'Director'),(354110,63557,7,'Set Decoration'),(354110,64600,3,'Producer'),(354110,134932,6,'Sound Re-Recording Mixer'),(354110,943791,3,'Producer'),(354110,957129,7,'Production Design'),(354110,1022293,7,'Art Direction'),(354110,1099130,3,'Casting'),(354110,1261221,3,'Producer'),(354110,1304276,6,'Foley'),(354110,1320907,3,'Producer'),(354110,1320908,8,'Costume Supervisor'),(354110,1389664,8,'Makeup Designer'),(354110,1398564,2,'Script Supervisor'),(354110,1407705,6,'Sound Re-Recording Mixer'),(354110,1407714,5,'Digital Intermediate'),(354110,1408679,1,'Camera Operator'),(354110,1417919,6,'Sound Designer'),(354110,1418443,5,'Digital Intermediate'),(354110,1426751,1,'Steadicam Operator'),(354110,1481962,5,'First Assistant Editor'),(354110,1531564,8,'Assistant Costume Designer'),(354110,1559919,8,'Hair Department Head'),(354110,1565967,1,'First Assistant Camera'),(354110,1583188,1,'Still Photographer'),(354110,1583191,11,'Gaffer'),(354110,1640368,9,'Armorer'),(354110,1640369,8,'Set Costumer'),(354110,1640370,9,'Special Effects Coordinator'),(354110,1640377,7,'Art Department Coordinator'),(354110,1640379,7,'Assistant Art Director'),(354110,1640380,5,'Digital Intermediate'),(256917,934,2,'Director'),(256917,948,9,'Additional Music'),(256917,1313,1,'Director of Photography'),(256917,8299,3,'Producer'),(256917,11091,3,'Executive Producer'),(256917,37281,3,'Casting'),(256917,37757,6,'Original Music Composer'),(256917,55474,3,'Executive Producer'),(256917,65046,9,'Additional Music'),(256917,70526,9,'Additional Music'),(256917,75157,9,'Stunt Coordinator'),(256917,75292,7,'Set Decoration'),(256917,75516,1,'Camera Operator'),(256917,75523,8,'Key Hair Stylist'),(256917,75523,8,'Key Makeup Artist'),(256917,76088,8,'Hairstylist'),(256917,76088,8,'Makeup Artist'),(256917,80680,7,'Production Design'),(256917,88115,3,'Line Producer'),(256917,137902,4,'Writer'),(256917,137902,3,'Executive Producer'),(256917,142157,9,'Stunt Coordinator'),(256917,575143,3,'Production Supervisor'),(256917,577468,6,'Sound Designer'),(256917,577468,6,'Supervising Sound Editor'),(256917,577468,6,'Sound Re-Recording Mixer'),(256917,966022,5,'Editor'),(256917,1002602,5,'Dialogue Editor'),(256917,1017015,7,'Assistant Art Director'),(256917,1043367,8,'Costume Supervisor'),(256917,1113488,3,'Producer'),(256917,1153300,9,'Dialect Coach'),(256917,1188046,9,'Sound Recordist'),(256917,1190662,3,'Production Manager'),(256917,1295993,4,'Writer'),(256917,1295993,3,'Executive Producer'),(256917,1295994,3,'Producer'),(256917,1325188,8,'Makeup Supervisor'),(256917,1325188,8,'Hair Supervisor'),(256917,1342718,5,'Dialogue Editor'),(256917,1355543,8,'Costume Supervisor'),(256917,1361169,3,'Executive Producer'),(256917,1391719,6,'ADR Editor'),(256917,1391720,6,'Supervising Sound Editor'),(256917,1392722,11,'Gaffer'),(256917,1394768,1,'Steadicam Operator'),(256917,1394768,1,'Camera Operator'),(256917,1394862,6,'Sound Effects Editor'),(256917,1401665,7,'Property Master'),(256917,1401730,9,'Post Production Supervisor'),(256917,1402931,10,'Visual Effects Supervisor'),(256917,1403109,3,'Location Manager'),(256917,1409227,8,'Makeup Artist'),(256917,1410564,9,'Unit Publicist'),(256917,1418310,1,'Still Photographer'),(256917,1418314,2,'Script Supervisor'),(256917,1445423,7,'Construction Coordinator'),(256917,1470977,8,'Costume Design'),(256917,1485232,3,'Casting Associate'),(256917,1486028,3,'Casting'),(256917,1495853,7,'Art Direction'),(256917,1495854,7,'Supervising Art Director'),(256917,1495856,6,'Sound Effects Editor'),(256917,1495857,6,'Sound Re-Recording Mixer'),(256917,1495858,6,'Sound Re-Recording Mixer'),(256917,1495861,1,'Camera Operator'),(256917,1495863,1,'Additional Camera'),(256917,1495865,5,'First Assistant Editor'),(256917,1495866,6,'Music Editor'),(256917,1539292,6,'Sound Effects Editor'),(256917,1560423,10,'Special Effects Supervisor'),(256917,1585726,1,'First Assistant Camera'),(256917,1588671,1,'Key Grip'),(256917,1603263,10,'Special Effects Supervisor'),(256917,1635601,9,'Dialect Coach'),(256917,1711551,6,'Boom Operator'),(256917,1718229,1,'First Assistant Camera'),(256917,1747575,6,'Sound Effects Editor'),(256917,1773323,3,'Casting Assistant'),(256917,1805228,3,'Executive Producer'),(256917,1805229,3,'Executive Producer'),(256917,1805230,3,'Executive Producer'),(256917,1805787,2,'First Assistant Director'),(256917,1805794,1,'First Assistant Camera'),(256917,1805799,11,'Rigging Grip'),(256917,1805800,11,'Best Boy Electric'),(256917,1805804,8,'Makeup Artist'),(256917,1805804,8,'Hairstylist'),(256917,1805805,8,'Makeup Artist'),(256917,1805806,8,'Makeup Artist'),(256917,1805807,8,'Makeup Effects Designer'),(256917,1805808,2,'Second Assistant Director'),(256917,1805809,2,'Third Assistant Director'),(256917,1805810,3,'Production Coordinator'),(256917,1805811,3,'Location Manager'),(256917,1805812,3,'Location Manager'),(256917,1805839,3,'Casting Assistant'),(256917,1805847,7,'Art Department Coordinator'),(256917,1805861,4,'Storyboard'),(256917,1805862,4,'Storyboard'),(256917,1805863,3,'Production Manager'),(256917,1805865,2,'First Assistant Director'),(256917,1805866,2,'Second Assistant Director'),(256917,1805867,8,'Makeup Artist'),(256917,1805868,8,'Makeup Artist'),(256917,1805869,8,'Hairstylist'),(256917,1805870,3,'Production Accountant'),(256917,1805874,7,'Art Department Assistant'),(256917,1805884,3,'Location Manager'),(256917,1805885,3,'Location Manager'),(256917,1805896,6,'Assistant Sound Editor'),(228194,488,3,'Producer'),(228194,5306,2,'Director'),(228194,13309,3,'Producer'),(228194,23227,4,'Screenplay'),(228194,1386172,4,'Author'),(235260,128399,4,'Writer'),(235260,235820,2,'Director'),(235260,235820,4,'Writer'),(235260,1079136,4,'Writer'),(235260,1220428,4,'Writer'),(146239,312,6,'Original Music Composer'),(146239,546,3,'Casting'),(146239,1217,5,'Editor'),(146239,5167,7,'Production Design'),(146239,6389,1,'Director of Photography'),(146239,33439,8,'Costume Design'),(146239,34882,3,'Executive Producer'),(146239,60245,3,'Executive Producer'),(146239,61932,3,'Producer'),(146239,71556,3,'Executive Producer'),(146239,933594,7,'Set Decoration'),(146239,1098730,7,'Art Direction'),(146239,1120696,4,'Original Story'),(146239,1120696,4,'Screenplay'),(146239,1375201,4,'Screenplay'),(146239,1375201,4,'Original Story'),(146239,1375201,2,'Director'),(205588,8219,5,'Editor'),(205588,465,3,'Executive Producer'),(205588,1570,1,'Director of Photography'),(205588,40814,6,'Supervising Sound Editor'),(205588,40823,6,'Foley'),(205588,15731,5,'Editor'),(205588,16366,8,'Hairstylist'),(205588,20422,4,'Novel'),(205588,20422,3,'Executive Producer'),(205588,23424,3,'Casting'),(205588,36656,7,'Production Design'),(205588,36658,7,'Set Decoration'),(205588,43388,3,'Co-Producer'),(205588,45058,8,'Costume Design'),(205588,49872,1,'First Assistant Camera'),(205588,55177,6,'Original Music Composer'),(205588,65455,3,'Producer'),(205588,56960,4,'Writer'),(205588,72899,3,'Executive Producer'),(205588,113600,2,'Director'),(205588,132350,3,'Producer'),(205588,194881,7,'Supervising Art Director'),(205588,968632,3,'Executive Producer'),(205588,969757,3,'Executive Producer'),(205588,972623,7,'Art Direction'),(205588,1016188,7,'Art Direction'),(205588,1024908,3,'Casting Associate'),(205588,1032067,10,'Special Effects Supervisor'),(205588,1106181,11,'Gaffer'),(205588,1263781,8,'Assistant Costume Designer'),(205588,1281632,3,'Producer'),(205588,1341743,10,'Visual Effects Supervisor'),(205588,1342382,7,'Art Direction'),(205588,1349056,6,'Sound Re-Recording Mixer'),(205588,1376801,6,'Sound Designer'),(205588,1389976,2,'Script Supervisor'),(205588,1393300,6,'Foley'),(205588,1393448,1,'Still Photographer'),(205588,1395024,6,'Sound Re-Recording Mixer'),(205588,1401118,9,'Choreographer'),(205588,1406905,6,'Music Editor'),(205588,1408403,5,'Digital Intermediate'),(205588,1414101,5,'Digital Intermediate'),(205588,1427498,8,'Key Hair Stylist'),(205588,1427498,8,'Makeup Artist'),(205588,1441673,9,'Visual Effects Editor'),(205588,1455948,3,'Executive Producer'),(205588,1497345,9,'Score Engineer'),(205588,1519843,7,'Art Department Assistant'),(205588,1527444,3,'Casting Associate'),(205588,1545913,3,'Casting'),(205588,1545913,8,'Set Costumer'),(205588,1550844,10,'Special Effects Supervisor'),(205588,1550846,9,'Special Effects Coordinator'),(205588,1551774,3,'Casting Associate'),(205588,1571984,5,'Digital Intermediate'),(205588,1577910,8,'Hairstylist'),(205588,1578008,6,'Music Supervisor'),(205588,1606171,1,'First Assistant Camera'),(205588,1614057,9,'Armorer'),(205588,1614065,9,'Second Unit Cinematographer'),(205588,1614109,8,'Hair Designer'),(205588,1614109,8,'Makeup Designer'),(205588,1616042,11,'Gaffer'),(205588,1620227,3,'Casting'),(205588,1620228,7,'Assistant Art Director'),(205588,1620232,1,'Camera Operator'),(205588,1620233,1,'First Assistant Camera'),(205588,1620234,9,'Special Effects Coordinator'),(205588,1620235,10,'Visual Effects Supervisor'),(205588,1620236,6,'ADR & Dubbing'),(205588,1620237,6,'ADR & Dubbing'),(205588,1620238,6,'ADR & Dubbing'),(205588,1620244,9,'Property Master'),(205588,1620247,5,'First Assistant Editor'),(82650,5362,3,'Casting'),(82650,11823,8,'Costume Design'),(82650,14139,9,'Cinematography'),(82650,25142,5,'Editor'),(82650,33183,2,'Director'),(82650,486,4,'Writer'),(82650,67360,4,'Writer'),(82650,178426,4,'Screenplay'),(82650,774208,7,'Production Design'),(82650,1007395,9,'Stunts'),(82650,1231184,4,'Screenplay'),(82650,1684475,4,'Book'),(270487,151,1,'Director of Photography'),(270487,1223,2,'Director'),(270487,1223,4,'Writer'),(270487,1223,3,'Producer'),(270487,1223,5,'Editor'),(270487,1224,2,'Director'),(270487,1224,4,'Writer'),(270487,1224,3,'Producer'),(270487,1224,5,'Editor'),(270487,1225,6,'Music'),(270487,1484,3,'Casting'),(270487,2236,3,'Producer'),(270487,2238,3,'Producer'),(270487,10575,7,'Production Design'),(270487,7418,8,'Costume Design'),(270487,44482,3,'Executive Producer'),(270487,92376,6,'Foley'),(270487,1481210,3,'Associate Producer'),(270487,1576050,9,'Production Office Assistant'),(204082,798,8,'Costume Supervisor'),(204082,4140,6,'Original Music Composer'),(204082,5501,2,'Director'),(204082,10815,1,'Director of Photography'),(204082,16483,4,'Screenplay'),(204082,16483,3,'Producer'),(204082,16486,3,'Producer'),(204082,16830,3,'Executive Producer'),(204082,17209,3,'Executive Producer'),(204082,22815,3,'Producer'),(204082,52159,3,'Executive Producer'),(204082,36619,5,'Editor'),(204082,41675,3,'Casting'),(204082,45829,3,'Executive Producer'),(204082,62782,3,'Executive Producer'),(204082,68320,3,'Executive Producer'),(204082,146143,9,'Stunt Coordinator'),(204082,229813,3,'Co-Producer'),(204082,550112,3,'Executive Producer'),(204082,936841,7,'Production Design'),(204082,1017238,7,'Set Decoration'),(204082,1186424,4,'Novel'),(204082,1306225,8,'Costume Design'),(204082,1352958,7,'Art Direction'),(204082,1387186,1,'Still Photographer'),(204082,1402719,11,'Gaffer'),(204082,1469339,2,'Script Supervisor'),(204082,1471673,3,'Co-Executive Producer'),(204082,1525148,3,'Associate Producer'),(204082,1525150,3,'Production Supervisor'),(42586,1927,2,'Director'),(42586,1927,4,'Writer'),(42586,57922,4,'Writer'),(287948,59,4,'Screenplay'),(287948,59,3,'Producer'),(287948,59,4,'Characters'),(287948,61,4,'Characters'),(287948,2186,3,'Casting'),(287948,35455,7,'Production Design'),(287948,50954,6,'Music'),(287948,59265,4,'Screenplay'),(287948,59266,4,'Screenplay'),(287948,114363,5,'Editor'),(287948,928490,2,'Director'),(287948,937975,10,'Visual Effects Supervisor'),(287948,1023192,7,'Art Direction'),(287948,1175849,1,'Steadicam Operator'),(287948,1175850,1,'Still Photographer'),(287948,1321278,8,'Costume Design'),(287948,1363847,5,'Dialogue Editor'),(287948,1363861,10,'Visual Effects Supervisor'),(287948,1363862,10,'Visual Effects Producer'),(287948,1363868,6,'Music Editor'),(287948,1367797,7,'Art Direction'),(287948,1367798,7,'Art Direction'),(287948,1367799,7,'Art Direction'),(287948,1367800,7,'Set Decoration'),(287948,1367806,7,'Assistant Art Director'),(287948,1376278,2,'Script Supervisor'),(287948,1410590,8,'Makeup Artist'),(287948,1412487,1,'Steadicam Operator'),(287948,1412918,1,'Camera Operator'),(287948,1491061,3,'Producer'),(287948,1550844,10,'Special Effects Supervisor'),(287948,1556126,1,'Director of Photography'),(287948,1556127,7,'Construction Coordinator'),(287948,1556128,9,'CGI Supervisor'),(287948,1556129,10,'VFX Editor'),(287948,1556130,10,'Visual Effects Producer'),(287948,1556131,10,'Visual Effects Producer'),(287948,1556132,10,'Visual Effects Supervisor'),(287948,1556135,6,'ADR & Dubbing'),(287948,1556136,6,'Supervising Sound Editor'),(287948,1556137,11,'Gaffer'),(287948,1556138,8,'Key Hair Stylist'),(109513,40077,9,'Armorer'),(109513,51298,2,'Director'),(109513,51298,4,'Screenplay'),(109513,51298,5,'Editor'),(109513,66668,9,'Stunt Coordinator'),(109513,57822,3,'Producer'),(109513,99586,3,'Producer'),(109513,99601,9,'Armorer'),(109513,140372,2,'Director'),(109513,148736,6,'Original Music Composer'),(109513,1023315,3,'Producer'),(109513,1023319,3,'Executive Producer'),(109513,1023322,6,'Original Music Composer'),(109513,1023323,9,'Cinematography'),(109513,1023324,7,'Production Design'),(109513,1043962,7,'Set Decoration'),(109513,1047628,5,'Editor'),(109513,1047629,8,'Makeup Artist'),(109513,1331393,7,'Art Direction'),(109513,1348000,6,'Sound Designer'),(109513,1387267,2,'Script Supervisor'),(109513,1409892,6,'Music Editor'),(109513,1461164,7,'Property Master'),(109513,1542762,6,'Sound Effects Editor'),(109513,1760575,8,'Hair Department Head'),(109513,1760576,8,'Makeup Department Head'),(109513,1763652,8,'Makeup Artist'),(109513,1833855,9,'Special Effects Coordinator'),(109513,1844509,8,'Costume Design'),(109513,1844510,2,'First Assistant Director'),(109513,1844512,6,'Sound Effects Editor'),(109513,1844513,6,'Sound Effects Editor'),(109513,1844522,6,'Music Supervisor'),(109513,1844523,3,'Production Coordinator'),(204922,1999,6,'Original Music Composer'),(204922,9003,7,'Production Design'),(204922,11351,6,'Supervising Sound Editor'),(204922,16363,3,'Casting'),(204922,17209,3,'Producer'),(204922,22161,1,'Director of Photography'),(204922,17608,2,'Director'),(204922,17608,4,'Screenplay'),(204922,49345,7,'Supervising Art Director'),(204922,50953,8,'Costume Design'),(204922,68320,3,'Producer'),(204922,70506,5,'Editor'),(204922,75113,1,'Camera Operator'),(204922,34194,1,'Steadicam Operator'),(204922,141358,9,'Stunt Coordinator'),(204922,363761,3,'Producer'),(204922,965761,7,'Set Decoration'),(204922,1018082,3,'Producer'),(204922,1138277,7,'Art Direction'),(204922,1337422,2,'Script Supervisor'),(204922,1389543,8,'Set Costumer'),(204922,1389547,9,'Dialect Coach'),(204922,1392609,6,'Sound Re-Recording Mixer'),(204922,1401126,8,'Wigmaker'),(204922,1403800,6,'Foley'),(204922,1404244,1,'Helicopter Camera'),(204922,1406905,6,'Music Editor'),(204922,1408377,5,'Dialogue Editor'),(204922,1408403,5,'Digital Intermediate'),(204922,1409306,9,'Unit Publicist'),(204922,1413775,4,'Novel'),(204922,1414089,7,'Art Direction'),(204922,1414090,8,'Makeup Department Head'),(204922,1414091,8,'Makeup Artist'),(204922,1414092,9,'Property Master'),(204922,1414093,6,'Sound Effects Editor'),(204922,1414094,6,'Sound Re-Recording Mixer'),(204922,1414095,10,'Visual Effects Supervisor'),(204922,1414096,11,'Gaffer'),(204922,1414097,9,'Video Assist Operator'),(204922,1414101,5,'Digital Intermediate'),(204922,1414102,5,'First Assistant Editor'),(204922,1414103,3,'Location Manager'),(204922,1414104,3,'Location Manager'),(38985,2560,4,'Novel'),(38985,7765,4,'Screenplay'),(38985,13321,7,'Production Design'),(38985,15175,2,'Director'),(38985,15175,3,'Producer'),(38985,23914,5,'Editor'),(38985,58660,1,'Director of Photography'),(38985,942947,6,'Original Music Composer'),(38985,1033804,1,'Director of Photography'),(44113,96166,2,'Director'),(44113,985904,4,'Writer'),(164457,1720,3,'Casting'),(164457,578,3,'Producer'),(164457,893,3,'Producer'),(164457,3287,7,'Production Design'),(164457,6193,3,'Producer'),(164457,14653,8,'Makeup Department Head'),(164457,17816,5,'Editor'),(164457,21718,7,'Art Direction'),(164457,40374,3,'Producer'),(164457,53712,6,'Music'),(164457,54419,3,'Producer'),(164457,65167,4,'Screenplay'),(164457,65167,2,'Director'),(164457,131037,1,'Director of Photography'),(164457,932432,4,'Screenplay'),(164457,1128184,3,'Producer'),(164457,1145972,7,'Set Decoration'),(164457,1327146,8,'Key Costumer'),(164457,1594602,8,'Costume Design'),(153158,84714,4,'Screenplay'),(153158,84714,2,'Director'),(153158,93651,4,'Screenplay'),(153158,553927,4,'Musical'),(153158,938781,4,'Screenplay'),(81836,1243,2,'Director'),(81836,1243,4,'Writer'),(81836,2240,1,'Director of Photography'),(82693,8215,3,'Producer'),(82693,531,6,'Original Music Composer'),(82693,1307,3,'Executive Producer'),(82693,59839,3,'Executive Producer'),(82693,2226,9,'Thanks'),(82693,2239,9,'Thanks'),(82693,5914,3,'Casting'),(82693,5389,7,'Production Design'),(82693,5391,7,'Set Decoration'),(82693,6624,3,'Producer'),(82693,6883,6,'Music Editor'),(82693,9409,6,'Sound Re-Recording Mixer'),(82693,13227,5,'Editor'),(82693,16494,7,'Art Direction'),(82693,16496,8,'Makeup Artist'),(82693,17883,4,'Screenplay'),(82693,17883,2,'Director'),(82693,20063,3,'Producer'),(82693,58363,6,'Supervising Sound Editor'),(82693,40471,8,'Costume Design'),(82693,45838,3,'Executive Producer'),(82693,51329,3,'Executive Producer'),(82693,54896,3,'Producer'),(82693,59674,9,'Second Unit'),(82693,59674,9,'Stunt Coordinator'),(82693,64074,3,'Executive In Charge Of Production'),(82693,93844,5,'Dialogue Editor'),(82693,131037,1,'Director of Photography'),(82693,232158,6,'Music Supervisor'),(82693,928625,4,'Novel'),(82693,1024910,3,'Casting'),(82693,1043368,9,'Special Effects Coordinator'),(82693,1133292,5,'Editor'),(82693,1269034,9,'Stunts'),(82693,1303391,8,'Makeup Artist'),(82693,1313122,8,'Set Costumer'),(82693,1329113,8,'Costume Supervisor'),(82693,1332188,8,'Hairstylist'),(82693,1387541,5,'Dialogue Editor'),(82693,1391679,5,'Dialogue Editor'),(82693,1400486,9,'Post Production Supervisor'),(82693,1400738,2,'Script Supervisor'),(82693,1401135,6,'Sound Effects Editor'),(82693,1401606,8,'Hairstylist'),(82693,1404218,6,'Sound Re-Recording Mixer'),(82693,1404838,5,'Dialogue Editor'),(82693,1408528,6,'Music Editor'),(82693,1417516,6,'Sound Effects Editor'),(82693,1424696,1,'Steadicam Operator'),(82693,1461370,6,'Sound Re-Recording Mixer'),(82693,1464521,11,'Rigging Gaffer'),(82693,1521022,8,'Hairstylist'),(82693,1521023,7,'Art Department Coordinator'),(82693,1521024,8,'Set Costumer'),(82693,1534692,1,'Still Photographer'),(82693,1535105,3,'Casting'),(82693,1538799,3,'Production Coordinator'),(82693,1549749,2,'Assistant Director'),(82693,1551025,6,'Sound mixer'),(82693,1551814,2,'Assistant Director'),(44944,73834,3,'Producer'),(44944,80602,2,'Director'),(44944,80602,4,'Screenplay'),(49517,405,6,'Original Music Composer'),(49517,471,7,'Production Design'),(49517,474,3,'Casting'),(49517,2236,3,'Producer'),(49517,2238,3,'Producer'),(49517,15540,3,'Producer'),(49517,20422,4,'Novel'),(49517,36591,8,'Costume Design'),(49517,49345,7,'Supervising Art Director'),(49517,64814,4,'Screenplay'),(49517,74396,2,'Director'),(49517,74401,1,'Director of Photography'),(49517,74403,5,'Editor'),(49517,223202,6,'Music Supervisor'),(49517,227094,4,'Screenplay'),(49517,1322142,7,'Supervising Art Director'),(49517,1322144,7,'Art Direction'),(49517,1322145,7,'Set Decoration'),(49517,1322147,8,'Costume Supervisor'),(49517,1367566,2,'Script Supervisor'),(44857,10832,9,'Cinematography'),(44857,61820,3,'Producer'),(44857,72624,2,'Director'),(44857,169410,4,'Writer'),(50780,2952,3,'Casting'),(50780,322,3,'Producer'),(50780,1038,2,'Director'),(50780,3394,5,'Editor'),(50780,5670,7,'Production Design'),(50780,4447,3,'Producer'),(50780,8194,1,'Director of Photography'),(50780,20172,8,'Costume Design'),(50780,41329,3,'Producer'),(50780,55177,6,'Music'),(50780,566273,4,'Screenplay'),(50780,958273,2,'Script Supervisor'),(50780,966515,7,'Art Direction'),(50780,970199,7,'Art Direction'),(50780,1122387,7,'Set Decoration'),(50780,1333607,8,'Costume Supervisor'),(50780,1474151,3,'Casting'),(138843,2127,2,'Director'),(138843,9545,3,'Casting'),(138843,26714,1,'Director of Photography'),(138843,16344,5,'Dialogue Editor'),(138843,18330,3,'Producer'),(138843,22038,4,'Screenplay'),(138843,22039,4,'Screenplay'),(138843,47365,3,'Executive Producer'),(138843,52259,3,'Producer'),(138843,62813,5,'Editor'),(138843,73417,6,'Original Music Composer'),(138843,141301,7,'Production Design'),(138843,928942,6,'Sound Re-Recording Mixer'),(138843,969283,3,'Executive Producer'),(138843,1079169,3,'Producer'),(138843,1128452,1,'Steadicam Operator'),(138843,1183915,8,'Costume Design'),(138843,1276602,3,'Casting'),(138843,1289047,9,'Makeup Effects'),(138843,1309884,6,'Sound Designer'),(138843,1309884,6,'Supervising Sound Editor'),(138843,1309885,5,'Dialogue Editor'),(138843,1317667,8,'Makeup Department Head'),(138843,1324262,7,'Set Decoration'),(138843,1334481,7,'Art Direction'),(138843,1341781,6,'Sound Re-Recording Mixer'),(138843,1389588,7,'Construction Coordinator'),(138843,1389594,1,'Still Photographer'),(138843,1393390,10,'Visual Effects Supervisor'),(138843,1397736,6,'Music Editor'),(138843,1400877,8,'Costume Supervisor'),(138843,1406389,6,'Sound Effects Editor'),(138843,1407879,6,'Sound Effects Editor'),(138843,1412766,8,'Makeup Artist'),(138843,1412767,8,'Hairstylist'),(138843,1412767,8,'Hair Department Head'),(138843,1412770,8,'Key Hair Stylist'),(138843,1412772,7,'Art Department Coordinator'),(138843,1412775,7,'Leadman'),(138843,1412777,7,'Sculptor'),(138843,1412778,9,'Property Master'),(138843,1412986,10,'Special Effects Supervisor'),(138843,1469344,9,'Unit Publicist'),(138843,1478953,2,'Script Supervisor'),(138843,1545428,3,'Unit Production Manager'),(138843,1545436,5,'First Assistant Editor'),(138843,1545438,9,'Post Production Supervisor'),(138843,1545441,11,'Rigging Gaffer'),(138843,1545442,9,'Transportation Coordinator'),(138843,1545443,9,'Transportation Captain'),(226486,1589,6,'Original Music Composer'),(226486,23659,3,'Producer'),(226486,18330,3,'Executive Producer'),(226486,21162,7,'Set Decoration'),(226486,22043,1,'Director of Photography'),(226486,10830,3,'Executive Producer'),(226486,35514,8,'Costume Design'),(226486,41080,3,'Casting'),(226486,41081,7,'Production Design'),(226486,55710,3,'Producer'),(226486,56461,3,'Executive Producer'),(226486,57430,3,'Executive Producer'),(226486,55536,3,'Producer'),(226486,55536,4,'Writer'),(226486,99410,3,'Executive Producer'),(226486,111456,5,'Editor'),(226486,121275,8,'Key Hair Stylist'),(226486,170820,2,'Director'),(226486,170820,3,'Executive Producer'),(226486,170820,4,'Writer'),(226486,223243,7,'Art Direction'),(226486,928942,6,'Sound Re-Recording Mixer'),(226486,1031811,6,'Supervising Sound Editor'),(226486,1095320,6,'Music Editor'),(226486,1186842,7,'Art Department Coordinator'),(226486,1317128,8,'Makeup Artist'),(226486,1320551,8,'Makeup Artist'),(226486,1341781,6,'Sound Re-Recording Mixer'),(226486,1389594,1,'Still Photographer'),(226486,1397011,3,'Executive Producer'),(226486,1400540,2,'Script Supervisor'),(226486,1404903,6,'Supervising Sound Editor'),(226486,1405232,5,'Dialogue Editor'),(226486,1408293,8,'Hair Department Head'),(226486,1412986,9,'Special Effects Coordinator'),(226486,1439109,8,'Costume Supervisor'),(226486,1443945,8,'Hairstylist'),(226486,1483567,8,'Makeup Department Head'),(226486,1546047,6,'Music Editor'),(226486,1546047,6,'Music Supervisor'),(226486,1546441,6,'Music Supervisor'),(226486,1553783,6,'Sound mixer'),(226486,1553784,5,'First Assistant Editor'),(226486,1553785,8,'Assistant Costume Designer'),(226486,1553790,8,'Makeup Artist'),(226486,1553791,8,'Makeup Artist'),(65057,432,1,'Director of Photography'),(65057,4948,3,'Producer'),(65057,13235,4,'Screenplay'),(65057,13235,2,'Director'),(65057,13235,3,'Producer'),(65057,21691,3,'Casting'),(65057,32796,5,'Editor'),(65057,35512,7,'Production Design'),(65057,45838,3,'Producer'),(65057,54242,3,'Producer'),(65057,105648,4,'Screenplay'),(65057,161932,4,'Screenplay'),(65057,1123795,4,'Novel'),(65057,1123796,3,'Producer'),(35690,64172,4,'Screenplay'),(35690,64172,4,'Novel'),(35690,114597,2,'Director'),(35690,114598,4,'Screenplay'),(35690,217371,6,'Music'),(76203,947,6,'Original Music Composer'),(76203,287,3,'Producer'),(76203,376,3,'Producer'),(76203,465,3,'Executive Producer'),(76203,6410,3,'Casting'),(76203,5634,8,'Costume Design'),(76203,9441,6,'Foley'),(76203,20458,3,'Producer'),(76203,56765,6,'Sound Designer'),(76203,46588,3,'Producer'),(76203,51679,4,'Screenplay'),(76203,51679,3,'Executive Producer'),(76203,54926,1,'Director of Photography'),(76203,54926,1,'Camera Operator'),(76203,60187,3,'Producer'),(76203,72757,2,'Director'),(76203,72757,3,'Producer'),(76203,75380,6,'Boom Operator'),(76203,548849,7,'Art Direction'),(76203,578721,8,'Makeup Artist'),(76203,967387,3,'Producer'),(76203,983118,1,'Steadicam Operator'),(76203,999565,5,'Editor'),(76203,1018480,7,'Set Designer'),(76203,1023711,7,'Production Design'),(76203,1040861,7,'Set Decoration'),(76203,1177850,1,'Still Photographer'),(76203,1286094,4,'Novel'),(76203,1292478,9,'Stand In'),(76203,1319968,9,'Post Production Supervisor'),(76203,1320551,8,'Makeup Department Head'),(76203,1320552,8,'Costume Supervisor'),(76203,1333222,9,'Stunt Coordinator'),(76203,1336715,10,'Visual Effects Producer'),(76203,1336716,10,'Visual Effects Supervisor'),(76203,1336718,9,'Special Effects Coordinator'),(76203,1337656,3,'Casting'),(76203,1340093,7,'Set Designer'),(76203,1393433,7,'Art Department Coordinator'),(76203,1393434,9,'Scenic Artist'),(76203,1393435,7,'Set Designer'),(76203,1393436,9,'Scenic Artist'),(76203,1393437,7,'Set Designer'),(76203,1393438,7,'Construction Coordinator'),(76203,1393439,9,'Property Master'),(76203,1393440,7,'Leadman'),(76203,1393441,6,'Dolby Consultant'),(76203,1393442,5,'Dialogue Editor'),(76203,1393443,6,'Supervising Sound Editor'),(76203,1393444,6,'Supervising Sound Editor'),(76203,1393445,10,'Visual Effects Supervisor'),(76203,1393446,10,'Visual Effects Producer'),(76203,1393447,9,'Stunt Coordinator'),(76203,1393448,1,'Still Photographer'),(76203,1393449,1,'Steadicam Operator'),(76203,1393450,11,'Gaffer'),(76203,1393451,8,'Set Costumer'),(76203,1393452,6,'Music Editor'),(76203,1393453,6,'Music Editor'),(76203,1393454,9,'Transportation Coordinator'),(76203,1393455,2,'Script Supervisor'),(76203,1393456,9,'Dialect Coach'),(76203,1393457,3,'Location Manager'),(76203,1403426,8,'Hairstylist'),(76203,1409837,9,'Unit Publicist'),(76203,1414984,8,'Hair Department Head'),(76203,1463721,11,'Electrician'),(76203,1490951,11,'Gaffer'),(76203,1533019,10,'Visual Effects Coordinator'),(76203,1561051,3,'Production Supervisor'),(76203,1662136,2,'Assistant Director'),(76203,1662137,5,'Color Timer'),(35688,80602,2,'Director'),(35688,80602,4,'Writer'),(296096,476,5,'Editor'),(296096,1251,1,'Director of Photography'),(296096,10569,3,'Producer'),(296096,7045,6,'Music'),(296096,19872,7,'Production Design'),(296096,37756,3,'Producer'),(296096,53527,8,'Costume Design'),(296096,53346,3,'Casting'),(296096,60335,7,'Supervising Art Director'),(296096,65458,6,'Production Sound Mixer'),(296096,71578,7,'Set Decoration'),(296096,73021,3,'Executive Producer'),(296096,73021,3,'Unit Production Manager'),(296096,75120,8,'Assistant Costume Designer'),(296096,77950,4,'Screenplay'),(296096,77951,4,'Screenplay'),(296096,225791,3,'Line Producer'),(296096,1096867,2,'Director'),(296096,1181554,1,'Still Photographer'),(296096,1334812,8,'Costume Supervisor'),(296096,1338217,7,'Construction Coordinator'),(296096,1338277,9,'Property Master'),(296096,1371010,4,'Screenplay'),(296096,1371010,4,'Novel'),(296096,1384721,7,'Art Direction'),(296096,1406847,1,'Camera Operator'),(296096,1406847,1,'Steadicam Operator'),(296096,1413808,2,'Script Supervisor'),(296096,1427498,8,'Makeup Artist'),(296096,1427498,8,'Key Hair Stylist'),(296096,1429638,11,'Gaffer'),(296096,1437155,7,'Assistant Art Director'),(296096,1524757,8,'Key Hair Stylist'),(296096,1544338,6,'Music Supervisor'),(296096,1609843,3,'Casting Associate'),(296096,1632585,4,'Storyboard'),(296096,1632586,7,'Art Department Coordinator'),(296096,1632589,9,'Prop Maker'),(296096,1632591,9,'Choreographer'),(296096,1632592,3,'Production Supervisor'),(296096,1632593,3,'Production Coordinator'),(296096,1632594,6,'Boom Operator'),(296096,1632595,9,'Cableman'),(296096,1632596,11,'Rigging Gaffer'),(296096,1632597,11,'Lighting Technician'),(296096,1632598,11,'Lighting Technician'),(296096,1632599,11,'Lighting Technician'),(296096,1632600,7,'Painter'),(296096,1632601,7,'Standby Painter'),(296096,1632602,10,'Special Effects Supervisor'),(296096,1632604,3,'Location Manager'),(296096,1632605,3,'Unit Manager'),(103370,5290,3,'Casting'),(103370,21528,7,'Production Design'),(103370,25292,3,'Executive Producer'),(103370,36582,8,'Costume Design'),(103370,73834,3,'Producer'),(103370,80602,4,'Screenplay'),(103370,80602,2,'Director'),(103370,80602,3,'Producer'),(103370,1034510,3,'Producer'),(103370,1034511,7,'Art Direction'),(376659,52114,2,'Director'),(376659,52114,4,'Writer'),(376659,226089,2,'Director'),(376659,226089,4,'Writer'),(273895,287,3,'Executive Producer'),(273895,13309,3,'Producer'),(273895,15729,3,'Executive Producer'),(273895,27039,3,'Casting'),(273895,20458,3,'Producer'),(273895,57583,3,'Producer'),(273895,194586,4,'Writer'),(273895,929825,2,'Director'),(273895,929825,3,'Executive Producer'),(273895,967387,3,'Producer'),(273895,970199,7,'Art Direction'),(273895,1046612,1,'Director of Photography'),(273895,1066324,3,'Executive Producer'),(273895,1066326,5,'Editor'),(273895,1102066,3,'Executive Producer'),(273895,1336716,10,'Visual Effects Supervisor'),(273895,1395351,3,'Executive Producer'),(273895,1410752,3,'Executive Producer'),(272878,1720,3,'Casting'),(272878,894,6,'Original Music Composer'),(272878,1264,5,'Editor'),(272878,1919,1,'Director of Photography'),(272878,10569,3,'Producer'),(272878,17148,7,'Production Design'),(272878,16590,4,'Writer'),(272878,20826,8,'Costume Design'),(272878,52358,2,'Director'),(272878,52358,4,'Writer'),(272878,52358,3,'Executive Producer'),(272878,62807,3,'Executive Producer'),(272878,144483,3,'Producer'),(272878,1371001,2,'Assistant Director'),(272878,1521330,7,'Art Direction'),(314365,322,3,'Producer'),(314365,117,6,'Original Music Composer'),(314365,5328,3,'Casting'),(314365,10684,3,'Executive Producer'),(314365,21267,5,'Editor'),(314365,17867,2,'Director'),(314365,17867,4,'Writer'),(314365,18786,8,'Key Hair Stylist'),(314365,19689,3,'Casting'),(314365,35514,8,'Costume Design'),(314365,31519,3,'Executive Producer'),(314365,40141,6,'Sound Designer'),(314365,41331,3,'Producer'),(314365,43095,3,'Executive Producer'),(314365,53114,7,'Set Decoration'),(314365,66730,3,'Executive Producer'),(314365,92376,6,'Foley'),(314365,92386,6,'ADR Editor'),(314365,74985,11,'Gaffer'),(314365,131037,1,'Director of Photography'),(314365,163801,5,'First Assistant Editor'),(314365,190936,3,'Casting'),(314365,558227,8,'Makeup Department Head'),(314365,928353,8,'Key Hair Stylist'),(314365,933333,3,'Casting'),(314365,1016148,2,'First Assistant Director'),(314365,1026950,9,'Stunt Coordinator'),(314365,1085049,7,'Production Design'),(314365,1124485,3,'Executive Producer'),(314365,1177336,1,'Steadicam Operator'),(314365,1183452,1,'Still Photographer'),(314365,1219529,4,'Writer'),(314365,1219529,3,'Executive Producer'),(314365,1221442,10,'Visual Effects Supervisor'),(314365,1280234,9,'Stunt Coordinator'),(314365,1308375,6,'Foley'),(314365,1318814,8,'Costume Supervisor'),(314365,1322113,8,'Costume Supervisor'),(314365,1331930,8,'Costume Supervisor'),(314365,1337452,7,'Property Master'),(314365,1340919,2,'Script Supervisor'),(314365,1364117,7,'Set Decoration'),(314365,1364798,10,'Visual Effects Producer'),(314365,1392105,9,'Stunt Coordinator'),(314365,1399909,7,'Set Designer'),(314365,1402037,6,'Music Editor'),(314365,1407708,10,'Visual Effects Producer'),(314365,1408357,1,'Camera Operator'),(314365,1419114,9,'Dialect Coach'),(314365,1419269,11,'Gaffer'),(314365,1423203,8,'Hair Department Head'),(314365,1425973,7,'Art Department Coordinator'),(314365,1431793,3,'Co-Producer'),(314365,1445479,5,'Dialogue Editor'),(314365,1447948,1,'Still Photographer'),(314365,1448748,6,'Music Editor'),(314365,1453671,9,'Visual Effects Editor'),(314365,1458885,8,'Hairstylist'),(314365,1476170,2,'Script Supervisor'),(314365,1527445,5,'Digital Intermediate'),(314365,1530194,8,'Assistant Costume Designer'),(314365,1538231,6,'Sound Effects Editor'),(314365,1545448,6,'Music Supervisor'),(314365,1548063,3,'Executive Producer'),(314365,1548064,3,'Executive Producer'),(314365,1548066,3,'Executive Producer'),(314365,1548067,3,'Producer'),(314365,1548068,3,'Producer'),(314365,1548532,8,'Makeup Artist'),(314365,1552788,9,'CG Supervisor'),(314365,1553395,3,'Co-Producer'),(314365,1553396,3,'Associate Producer'),(314365,1565967,1,'First Assistant Camera'),(314365,1572866,1,'First Assistant Camera'),(314365,1586105,3,'Casting Associate'),(314365,1586106,3,'Casting Associate'),(314365,1586107,3,'Casting Associate'),(314365,1586108,3,'Casting Associate'),(314365,1586109,8,'Set Costumer'),(314365,1586111,1,'First Assistant Camera'),(314365,1586114,11,'Rigging Gaffer'),(314365,1586115,11,'Rigging Gaffer'),(314365,1586116,11,'Rigging Grip'),(314365,1586117,10,'Visual Effects Coordinator'),(314365,1586118,9,'Visual Effects Editor'),(314365,1586119,7,'Art Direction'),(314365,1586121,8,'Makeup Artist'),(314365,1586122,8,'Makeup Artist'),(314365,1636733,10,'Visual Effects Coordinator'),(314365,1674251,7,'Set Dresser'),(314365,1701161,3,'Production Coordinator'),(314365,1865740,7,'Set Designer'),(314365,1865741,7,'Set Dresser'),(314365,1865742,7,'Set Dresser'),(314365,1865743,7,'Set Dresser'),(314365,1865744,7,'Set Dresser'),(314365,1865746,10,'Visual Effects Supervisor'),(314365,1865747,9,'Dialect Coach'),(40264,376,3,'Executive Producer'),(40264,1260,7,'Production Design'),(40264,4952,3,'Casting'),(40264,35513,7,'Set Decoration'),(40264,33283,5,'Editor'),(40264,35694,2,'Director'),(40264,35694,3,'Producer'),(40264,35694,4,'Writer'),(40264,35734,2,'Director'),(40264,35734,3,'Producer'),(40264,35734,4,'Writer'),(40264,49911,6,'Original Music Composer'),(40264,52259,3,'Producer'),(40264,52260,1,'Director of Photography'),(40264,150748,3,'Co-Producer'),(40264,961093,3,'Co-Producer'),(40264,964168,7,'Art Direction'),(40264,1398176,8,'Costume Design'),(239678,15347,6,'Music'),(239678,16731,3,'Producer'),(239678,17825,2,'Director'),(239678,17825,3,'Producer'),(239678,47293,9,'Cinematography'),(239678,54271,5,'Editor'),(239678,1257706,3,'Producer'),(239678,1274663,4,'Screenplay'),(239678,1393558,7,'Leadman'),(76617,1260,7,'Production Design'),(76617,2145,3,'Executive Producer'),(76617,10051,3,'Executive Producer'),(76617,10051,4,'Characters'),(76617,11419,9,'Makeup Effects'),(76617,12707,8,'Costume Design'),(76617,17209,3,'Executive Producer'),(76617,19464,1,'Director of Photography'),(76617,20355,4,'Story'),(76617,21962,6,'Original Music Composer'),(76617,45830,3,'Executive Producer'),(76617,51216,3,'Executive Producer'),(76617,55955,5,'Editor'),(76617,27797,3,'Executive Producer'),(76617,27797,4,'Characters'),(76617,62700,3,'Executive Producer'),(76617,64743,4,'Screenplay'),(76617,64743,4,'Story'),(76617,74344,4,'Screenplay'),(76617,74344,4,'Story'),(76617,85178,3,'Executive Producer'),(76617,97026,2,'Director'),(76617,229813,3,'Line Producer'),(76617,364835,3,'Producer'),(76617,1054727,4,'Screenplay'),(76617,1129323,3,'Line Producer'),(76617,1169751,3,'Associate Producer'),(335778,1325,3,'Casting'),(335778,5672,7,'Production Design'),(335778,5674,7,'Art Direction'),(335778,8751,5,'Editor'),(335778,8756,8,'Costume Design'),(335778,14351,6,'Original Music Composer'),(335778,8300,4,'Screenplay'),(335778,8300,2,'Director'),(335778,48498,3,'Producer'),(335778,61851,1,'Director of Photography'),(335778,964093,3,'Producer'),(335778,1057785,3,'Casting'),(335778,1186631,3,'Producer'),(335778,1212239,3,'Executive Producer'),(335778,1338387,3,'Casting'),(335778,1418443,5,'Digital Intermediate'),(335778,1454287,4,'Screenplay'),(335778,1454287,4,'Story'),(335778,1494760,3,'Executive Producer'),(335778,1556479,7,'Art Direction'),(335778,1621155,7,'Art Direction'),(55465,546,3,'Casting'),(55465,11166,6,'Original Music Composer'),(55465,19658,3,'Producer'),(55465,34898,7,'Art Department Manager'),(55465,42632,1,'Director of Photography'),(55465,59426,3,'Casting'),(55465,59425,3,'Casting'),(55465,68843,4,'Writer'),(55465,68844,4,'Writer'),(55465,222470,2,'Director'),(55465,224530,5,'Editor'),(55465,384204,10,'Animation'),(55465,935278,3,'Casting'),(55465,1245933,10,'Animation'),(55465,1428744,10,'Animation'),(55465,1453516,10,'Animation'),(55465,1453531,10,'Animation'),(55465,1453617,10,'Animation'),(55465,1454038,4,'Storyboard'),(55465,1454039,10,'Animation Production Assistant'),(55465,1454041,10,'Animation'),(55465,1454042,10,'Animation'),(55465,1454043,3,'Production Manager'),(55465,1454044,7,'Art Department Manager'),(48289,153,6,'Music'),(48289,957,4,'Screenplay'),(48289,957,3,'Producer'),(48289,1253,7,'Production Design'),(48289,1851,5,'Editor'),(48289,5489,3,'Casting'),(48289,7538,6,'Music Editor'),(48289,10976,9,'Stunt Coordinator'),(48289,10908,7,'Supervising Art Director'),(48289,22161,1,'Director of Photography'),(48289,18844,2,'Director'),(48289,22968,8,'Costume Design'),(48289,23447,4,'Screenplay'),(48289,64814,4,'Screenplay'),(48289,66552,7,'Set Decoration'),(48289,75120,8,'Costume Supervisor'),(48289,117238,6,'Sound Re-Recording Mixer'),(48289,122274,10,'Visual Effects Supervisor'),(48289,140192,4,'Writer'),(48289,140193,4,'Writer'),(48289,963336,3,'Producer'),(48289,1180952,3,'Producer'),(48289,1312810,6,'Sound Effects Editor'),(48289,1334429,9,'Property Master'),(48289,1342607,3,'Producer'),(48289,1392635,9,'Stunt Coordinator'),(48289,1393300,6,'Foley'),(48289,1393301,6,'Foley'),(48289,1398473,1,'Camera Operator'),(48289,1401126,8,'Wigmaker'),(48289,1405795,6,'Sound Re-Recording Mixer'),(48289,1406197,5,'Digital Intermediate'),(48289,1406200,9,'Unit Publicist'),(48289,1406837,10,'Visual Effects Producer'),(48289,1413035,1,'Steadicam Operator'),(48289,1421642,8,'Makeup Artist'),(48289,1421644,8,'Hairstylist'),(48289,1421645,3,'Production Manager'),(48289,1421646,3,'Production Manager'),(48289,1421647,6,'Supervising Sound Editor'),(48289,1421648,9,'Visual Effects Editor'),(48289,1421650,10,'Visual Effects Producer'),(48289,1421652,1,'Camera Operator'),(48289,1421657,1,'Still Photographer'),(48289,1421659,9,'Video Assist Operator'),(48289,1421660,8,'Costume Supervisor'),(48289,1421661,5,'Digital Intermediate'),(48289,1421662,5,'Digital Intermediate'),(48289,1421663,2,'Script Supervisor'),(38303,7398,3,'Producer'),(38303,11779,7,'Production Design'),(38303,22303,5,'Editor'),(38303,27154,1,'Director of Photography'),(38303,38415,3,'Executive Producer'),(38303,46324,6,'Music'),(38303,58375,2,'Director'),(38303,58375,3,'Producer'),(38303,63672,3,'Casting'),(38303,74729,3,'Producer'),(38303,120093,4,'Writer'),(38303,945213,3,'Producer'),(38303,970033,5,'Editor'),(107985,2236,3,'Producer'),(107985,2238,3,'Producer'),(107985,9341,1,'Director of Photography'),(107985,11090,2,'Director'),(107985,11090,4,'Writer'),(107985,11108,4,'Writer'),(107985,11112,3,'Producer'),(107985,16368,6,'Original Music Composer'),(107985,39200,7,'Production Design'),(107985,122277,3,'Production Manager'),(107985,969705,5,'Editor'),(59860,376,3,'Producer'),(59860,1112,7,'Production Design'),(59860,1899,3,'Producer'),(59860,2178,3,'Executive Producer'),(59860,2227,3,'Producer'),(59860,3965,3,'Casting'),(59860,13225,6,'Music Supervisor'),(59860,15347,6,'Original Music Composer'),(59860,19971,8,'Costume Design'),(59860,35176,5,'Editor'),(59860,19773,7,'Set Decoration'),(59860,51689,3,'Executive Producer'),(59860,53346,3,'Casting Associate'),(59860,56789,2,'Director'),(59860,56789,4,'Screenplay'),(59860,56791,1,'Director of Photography'),(59860,66963,3,'Producer'),(59860,70592,3,'Executive Producer'),(59860,86035,4,'Screenplay'),(59860,231039,4,'Screenplay'),(59860,1034748,3,'Casting'),(59860,1179244,3,'Executive Producer'),(59860,1194472,11,'Gaffer'),(59860,1399644,2,'Script Supervisor'),(59860,1531527,4,'Screenstory'),(59860,1531528,4,'Novel'),(328387,561,3,'Casting'),(328387,18087,1,'Camera Operator'),(328387,52161,6,'Music Supervisor'),(328387,45738,1,'Director of Photography'),(328387,60187,3,'Producer'),(328387,72038,5,'Editor'),(328387,77831,4,'Writer'),(328387,142272,2,'Director'),(328387,142276,2,'Director'),(328387,558231,5,'Editor'),(328387,966560,7,'Production Design'),(328387,971840,3,'Producer'),(328387,989750,3,'Casting Associate'),(328387,1042699,6,'Original Music Composer'),(328387,1043368,9,'Special Effects Coordinator'),(328387,1116095,1,'Still Photographer'),(328387,1335210,7,'Art Direction'),(328387,1372082,7,'Art Department Coordinator'),(328387,1372207,6,'Foley'),(328387,1376486,11,'Gaffer'),(328387,1395362,10,'Visual Effects Producer'),(328387,1395365,10,'Visual Effects Producer'),(328387,1403710,2,'Script Supervisor'),(328387,1462854,11,'Rigging Gaffer'),(328387,1480443,8,'Makeup Artist'),(328387,1524770,8,'Costume Supervisor'),(328387,1526824,8,'Key Hair Stylist'),(328387,1528942,6,'Music Supervisor'),(328387,1532873,6,'Foley'),(328387,1538810,8,'Costume Design'),(328387,1546622,6,'Music Editor'),(328387,1554382,10,'Visual Effects Supervisor'),(328387,1558090,10,'Visual Effects Coordinator'),(328387,1580948,9,'Sound Recordist'),(328387,1660294,4,'Novel'),(328387,1660296,7,'Set Decoration'),(328387,1660299,8,'Assistant Costume Designer'),(328387,1660300,3,'Casting Associate'),(328387,1660306,9,'Visual Effects Editor'),(328387,1660308,10,'Visual Effects Supervisor'),(328387,1660311,5,'First Assistant Editor'),(328387,1717769,8,'Makeup Artist'),(226857,5378,3,'Producer'),(226857,19282,3,'Producer'),(226857,129718,2,'Director'),(226857,129718,4,'Writer'),(226857,168798,3,'Producer'),(226857,168812,3,'Producer'),(226857,1223158,4,'Writer'),(47941,54590,2,'Director'),(61012,3962,8,'Costume Design'),(61012,4697,3,'Producer'),(61012,7800,3,'Casting'),(61012,8301,6,'Music'),(61012,8303,3,'Producer'),(61012,8320,6,'Music'),(61012,8355,9,'Stunt Coordinator'),(61012,23461,9,'Cinematography'),(61012,33612,7,'Production Design'),(61012,64923,5,'Editor'),(61012,69593,2,'Director'),(61012,69593,4,'Writer'),(61012,75828,3,'Line Producer'),(61012,962731,7,'Art Direction'),(61012,1018349,6,'Supervising Sound Editor'),(61012,1318873,8,'Makeup Department Head'),(61012,1337419,6,'Music Editor'),(61012,1337466,9,'Special Effects Coordinator'),(61012,1337467,10,'Visual Effects Supervisor'),(61012,1338130,6,'Sound Effects Editor'),(61012,1338133,6,'Supervising Sound Editor'),(61012,1364801,6,'Music Editor'),(61012,1457911,10,'Special Effects Supervisor'),(61012,1457912,10,'Special Effects Supervisor'),(61012,1797102,10,'Visual Effects Coordinator'),(290751,5162,3,'Producer'),(290751,21807,4,'Screenplay'),(290751,21807,2,'Director'),(290751,59416,3,'Executive Producer'),(290751,93651,4,'Screenplay'),(290751,1046684,1,'Director of Photography'),(290751,1103515,3,'Co-Executive Producer'),(290751,1420665,3,'Executive Producer'),(290751,1420666,3,'Executive Producer'),(63492,9819,7,'Production Design'),(63492,40384,6,'Music'),(63492,46943,3,'Casting'),(63492,57199,2,'Director'),(63492,189741,4,'Screenplay'),(63492,1213123,4,'Screenplay'),(63492,1336716,10,'Visual Effects Supervisor'),(81796,59,4,'Writer'),(81796,59,3,'Executive Producer'),(81796,12654,7,'Set Decoration'),(81796,20722,8,'Costume Design'),(81796,37301,7,'Supervising Art Director'),(81796,50954,6,'Original Music Composer'),(81796,56228,3,'Producer'),(81796,59684,7,'Production Design'),(81796,102967,7,'Art Direction'),(81796,928490,5,'Editor'),(81796,936154,2,'Director'),(81796,936154,4,'Writer'),(81796,938686,3,'Producer'),(81796,960832,7,'Art Direction'),(81796,1017277,8,'Makeup Artist'),(81796,1017343,3,'Executive Producer'),(81796,1017344,5,'Editor'),(81796,1022701,2,'Script Supervisor'),(81796,1311595,2,'Director'),(41402,2952,3,'Casting'),(41402,12232,3,'Producer'),(41402,12234,3,'Executive Producer'),(41402,15347,6,'Original Music Composer'),(41402,20063,3,'Producer'),(41402,20569,7,'Production Design'),(41402,32278,4,'Screenplay'),(41402,32278,2,'Director'),(41402,67113,1,'Director of Photography'),(41402,74397,4,'Screenplay'),(41402,74397,4,'Novel'),(41402,74399,3,'Producer'),(41402,74400,3,'Producer'),(41402,181856,5,'Editor'),(41402,937239,3,'Producer'),(41402,961101,3,'Executive Producer'),(41402,968182,3,'Executive Producer'),(41402,999786,3,'Producer'),(41402,1001708,7,'Art Direction'),(41402,1068119,3,'Executive Producer'),(41402,1105708,3,'Producer'),(146198,1809,5,'Editor'),(146198,18511,7,'Production Design'),(146198,20567,3,'Producer'),(146198,41329,3,'Producer'),(146198,60187,3,'Producer'),(146198,60501,3,'Casting'),(146198,60503,3,'Casting'),(146198,74322,8,'Makeup Department Head'),(146198,53333,2,'Director'),(146198,142391,6,'Music'),(146198,236909,1,'Director of Photography'),(146198,928371,8,'Costume Design'),(146198,968470,6,'Music'),(146198,968471,6,'Music'),(146198,1049268,5,'Digital Intermediate'),(146198,1085006,5,'Dialogue Editor'),(146198,1122560,9,'Stunt Coordinator'),(146198,1123799,4,'Writer'),(146198,1128690,3,'Producer'),(146198,1309924,6,'Sound Re-Recording Mixer'),(146198,1367133,9,'Special Effects Coordinator'),(146198,1367491,9,'Property Master'),(146198,1372207,6,'Foley'),(146198,1395362,10,'Visual Effects Producer'),(146198,1395365,10,'Visual Effects Producer'),(146198,1398970,9,'Second Unit Cinematographer'),(146198,1407744,5,'Digital Intermediate'),(146198,1408316,6,'ADR & Dubbing'),(146198,1408716,7,'Construction Coordinator'),(146198,1412327,1,'Camera Operator'),(146198,1412328,1,'Still Photographer'),(146198,1416823,5,'Digital Intermediate'),(146198,1437719,2,'Script Supervisor'),(146198,1445484,11,'Gaffer'),(146198,1452233,8,'Makeup Artist'),(146198,1459196,8,'Makeup Artist'),(146198,1463795,3,'Casting Associate'),(146198,1467550,7,'Set Decoration'),(146198,1526823,6,'Music Supervisor'),(146198,1531365,8,'Costume Supervisor'),(146198,1532873,6,'Foley'),(146198,1548064,3,'Producer'),(146198,1548530,8,'Key Hair Stylist'),(146198,1551345,6,'ADR & Dubbing'),(146198,1554382,10,'Visual Effects Supervisor'),(146198,1566124,7,'Art Department Coordinator'),(146198,1580941,6,'Music'),(146198,1580942,7,'Art Department Assistant'),(146198,1580943,7,'Assistant Art Director'),(146198,1580944,10,'Visual Effects Supervisor'),(146198,1580948,9,'Sound Recordist'),(146198,1580956,1,'Camera Operator'),(146198,1580958,11,'Rigging Gaffer'),(146198,1580959,1,'First Assistant Camera'),(146198,1580960,1,'First Assistant Camera'),(146198,1580961,11,'Rigging Gaffer'),(146198,1580962,5,'First Assistant Editor'),(146198,1580964,8,'Set Costumer'),(146198,1580965,8,'Set Costumer'),(146198,1580968,8,'Hairstylist'),(146198,1580971,8,'Hairstylist'),(146198,1580972,8,'Makeup Artist'),(295964,1307,3,'Executive Producer'),(295964,59839,3,'Executive Producer'),(295964,3310,5,'Editor'),(295964,5329,7,'Production Design'),(295964,5381,3,'Executive Producer'),(295964,5382,3,'Producer'),(295964,10950,3,'Producer'),(295964,16363,3,'Casting'),(295964,18784,7,'Supervising Art Director'),(295964,21390,3,'Executive Producer'),(295964,23227,4,'Screenplay'),(295964,41848,7,'Supervising Art Director'),(295964,47333,2,'Director'),(295964,47333,3,'Producer'),(295964,52530,1,'Director of Photography'),(295964,58097,4,'Story'),(295964,65559,3,'Executive Producer'),(295964,70052,3,'Executive Producer'),(295964,72898,3,'Co-Producer'),(295964,963336,3,'Executive Producer'),(295964,1042699,6,'Original Music Composer'),(295964,1327142,7,'Art Direction'),(295964,1557690,3,'Executive Producer'),(295964,1557691,3,'Associate Producer'),(42618,4350,8,'Costume Design'),(42618,4415,4,'Original Story'),(42618,5396,4,'Original Story'),(42618,5397,4,'Original Story'),(42618,10005,1,'Director of Photography'),(42618,30103,3,'Producer'),(42618,30259,5,'Editor'),(42618,41712,4,'Screenplay'),(42618,65617,6,'Original Music Composer'),(42618,66777,2,'Director'),(171274,2950,1,'Director of Photography'),(171274,4762,2,'Director'),(171274,4762,3,'Producer'),(171274,4762,4,'Writer'),(171274,4769,3,'Producer'),(171274,4770,3,'Producer'),(171274,4772,3,'Casting'),(171274,17863,6,'Music Supervisor'),(171274,21591,7,'Set Decoration'),(171274,40471,8,'Costume Design'),(171274,53683,5,'Editor'),(171274,74333,6,'Original Music Composer'),(171274,958921,7,'Production Design'),(171274,1003244,3,'Casting Associate'),(171274,1046160,3,'Co-Producer'),(171274,1102140,3,'Executive Producer'),(171274,1223649,4,'Novel'),(171274,1299194,7,'Art Direction'),(171274,1339432,9,'Post Production Supervisor'),(171274,1400906,6,'Sound Designer'),(171274,1442207,3,'Co-Producer'),(171274,1533037,2,'Script Supervisor'),(171274,1535737,3,'Production Supervisor'),(171274,1733133,3,'Production Coordinator'),(109417,9543,3,'Producer'),(109417,14768,5,'Editor'),(109417,31121,3,'Executive Producer'),(109417,31128,3,'Casting'),(109417,21412,3,'Producer'),(109417,33624,3,'Producer'),(109417,42632,1,'Director of Photography'),(109417,59922,3,'Executive Producer'),(109417,57769,5,'Editor'),(109417,71851,4,'Screenplay'),(109417,112521,7,'Production Design'),(109417,238679,4,'Screenplay'),(109417,983595,7,'Art Direction'),(109417,1046142,2,'Director'),(109417,1460603,9,'Compositors'),(109417,1599059,8,'Hairstylist'),(106747,2294,2,'Director'),(106747,2294,4,'Story'),(106747,2294,3,'Producer'),(106747,2294,6,'Original Music Composer'),(106747,2294,5,'Editor'),(106747,2294,1,'Director of Photography'),(106747,5914,3,'Casting'),(106747,9439,6,'Foley'),(106747,20489,7,'Production Design'),(106747,20490,8,'Costume Design'),(106747,23285,9,'Stunt Coordinator'),(106747,34340,3,'Producer'),(106747,72030,5,'Editor'),(106747,80826,6,'Sound Effects Editor'),(106747,85960,6,'Sound Designer'),(106747,118413,4,'Screenplay'),(106747,122294,9,'Stunt Coordinator'),(106747,217470,8,'Hairstylist'),(106747,999284,6,'Original Music Composer'),(106747,1040895,3,'Producer'),(106747,1040896,3,'Producer'),(106747,1040897,3,'Producer'),(106747,1040898,3,'Producer'),(106747,1130777,9,'Makeup Effects'),(106747,1229153,3,'Casting'),(106747,1337108,4,'Story'),(106747,1361172,9,'Second Unit Cinematographer'),(106747,1397852,8,'Set Costumer'),(106747,1401129,7,'Art Department Coordinator'),(106747,1401129,7,'Set Decoration'),(106747,1401133,6,'Sound Re-Recording Mixer'),(106747,1401134,6,'Sound Designer'),(106747,1401135,6,'Sound Designer'),(106747,1401136,6,'Supervising Sound Editor'),(106747,1401151,1,'Still Photographer'),(106747,1401152,1,'Camera Operator'),(106747,1407019,9,'Visual Effects Editor'),(106747,1414890,1,'Steadicam Operator'),(106747,1419925,2,'Script Supervisor'),(106747,1521392,9,'Special Effects Coordinator'),(106747,1521393,1,'Additional Photography'),(106747,1760479,3,'Associate Producer'),(46435,6379,7,'Production Design'),(46435,10714,8,'Costume Design'),(46435,16363,3,'Casting'),(46435,17254,5,'Editor'),(46435,20423,3,'Producer'),(46435,36205,7,'Art Direction'),(46435,60085,1,'Director of Photography'),(46435,65452,2,'Director'),(46435,65452,4,'Writer'),(46435,66552,7,'Set Decoration'),(256962,1221,3,'Casting'),(256962,8532,9,'Post Production Supervisor'),(256962,8864,3,'Casting'),(256962,9551,8,'Costume Design'),(256962,9821,7,'Supervising Art Director'),(256962,16404,7,'Production Design'),(256962,23604,5,'Editor'),(256962,61048,3,'Co-Executive Producer'),(256962,59473,5,'Editor'),(256962,72960,2,'Director'),(256962,72960,4,'Screenplay'),(256962,72960,3,'Producer'),(256962,72967,3,'Producer'),(256962,72968,3,'Executive Producer'),(256962,72972,9,'Cinematography'),(256962,72970,3,'Executive Producer'),(256962,72981,6,'Music'),(256962,150660,3,'Executive Producer'),(256962,173150,3,'Executive Producer'),(256962,942904,3,'Executive Producer'),(256962,1296179,4,'Screenplay'),(256962,1377213,7,'Art Direction'),(256962,1404749,9,'Post Production Supervisor'),(256962,1412482,7,'Set Decoration'),(256962,1423983,8,'Costume Design'),(256962,1521664,2,'Script Supervisor'),(256962,1646873,3,'Line Producer'),(256962,1819153,3,'Executive Producer'),(256962,1819154,3,'Executive Producer'),(256962,1819155,3,'Executive Producer'),(256962,1819156,3,'Executive Producer'),(256962,1819157,6,'Music'),(256962,1819158,5,'Editor'),(256962,1819162,7,'Art Direction'),(256962,1819163,7,'Set Decoration'),(256962,1819164,3,'Production Supervisor'),(256962,1819165,3,'Casting Assistant'),(256962,1819166,3,'Location Manager'),(256962,1819167,6,'Music Supervisor'),(256962,1819168,3,'Production Coordinator'),(48231,224,2,'Director'),(48231,307,1,'Director of Photography'),(48231,310,5,'Editor'),(48231,117,6,'Original Music Composer'),(48231,3056,3,'Producer'),(48231,6629,7,'Production Design'),(48231,7800,3,'Casting'),(48231,12614,8,'Makeup Designer'),(48231,12614,8,'Hair Designer'),(48231,12952,4,'Screenplay'),(48231,12952,4,'Theatre Play'),(48231,13551,8,'Costume Design'),(48231,37022,3,'Co-Producer'),(48231,37022,3,'Line Producer'),(48231,20014,7,'Supervising Art Director'),(48231,32467,3,'Executive Producer'),(48231,59716,3,'Co-Producer'),(48231,68748,6,'Supervising Sound Editor'),(48231,69883,3,'Executive Producer'),(48231,79536,3,'Associate Producer'),(48231,91882,5,'Dialogue Editor'),(48231,91886,6,'Supervising Sound Editor'),(48231,134932,6,'Sound Re-Recording Mixer'),(48231,558230,5,'Dialogue Editor'),(48231,933134,3,'Associate Producer'),(48231,1012907,7,'Art Direction'),(48231,1030396,3,'Executive Producer'),(48231,1030397,3,'Executive Producer'),(48231,1030399,3,'Executive Producer'),(48231,1030400,7,'Set Decoration'),(48231,1030401,4,'Novel'),(48231,1317048,8,'Assistant Costume Designer'),(48231,1338845,6,'Production Sound Mixer'),(48231,1375244,7,'Art Direction'),(48231,1380004,2,'Script Supervisor'),(48231,1394103,11,'Gaffer'),(48231,1402037,6,'Music Editor'),(48231,1404354,7,'Set Designer'),(48231,1408670,7,'Set Designer'),(48231,1409225,6,'Sound Effects Editor'),(48231,1413907,6,'Sound Re-Recording Mixer'),(48231,1427557,1,'Still Photographer'),(48231,1441745,7,'Art Direction'),(48231,1529391,9,'Property Master'),(48231,1581119,8,'Set Dressing Artist'),(48231,1586395,6,'Boom Operator'),(48231,1586398,6,'Production Sound Mixer'),(48231,1643408,3,'Unit Production Manager'),(48231,1643409,9,'Post Production Supervisor'),(48231,1643410,7,'Art Department Coordinator'),(48231,1643411,7,'Set Decoration Buyer'),(48231,1643413,3,'Production Coordinator'),(48231,1643414,9,'Dialect Coach'),(48231,1643415,8,'Key Hair Stylist'),(48231,1643416,8,'Key Hair Stylist'),(48231,1643418,8,'Makeup Artist'),(48231,1643418,8,'Hairstylist'),(48231,1643422,3,'Location Manager'),(48231,1643423,9,'Production Controller'),(82684,323,2,'Director'),(82684,323,3,'Producer'),(82684,1315,5,'Editor'),(82684,5914,3,'Casting'),(82684,2947,3,'Executive Producer'),(82684,2947,3,'Unit Production Manager'),(82684,5167,7,'Production Design'),(82684,5393,6,'Original Music Composer'),(82684,7040,4,'Screenplay'),(82684,9341,1,'Director of Photography'),(82684,12572,7,'Set Decoration'),(82684,13064,3,'Casting'),(82684,17276,3,'Executive Producer'),(82684,10781,2,'Director'),(82684,39123,3,'Casting'),(82684,92301,3,'Producer'),(82684,563736,6,'Music Supervisor'),(82684,582624,3,'Executive Producer'),(82684,616781,3,'Producer'),(82684,616781,4,'Story'),(82684,928567,3,'Producer'),(82684,928567,4,'Story'),(82684,960323,8,'Costume Design'),(82684,1407679,7,'Art Direction'),(82684,1488219,8,'Assistant Costume Designer'),(82684,1535116,2,'Script Supervisor'),(82684,1669272,9,'Special Effects Coordinator'),(82684,1800608,3,'Production Supervisor'),(241239,7537,6,'Sound Designer'),(241239,7537,6,'Supervising Sound Editor'),(241239,7764,6,'Supervising Sound Editor'),(241239,20228,6,'Foley'),(241239,20229,6,'Foley'),(241239,58855,3,'Casting'),(241239,76003,9,'Dialect Coach'),(241239,91071,7,'Construction Coordinator'),(241239,117206,8,'Hairstylist'),(241239,142165,6,'Music Editor'),(241239,213863,3,'Producer'),(241239,556172,4,'Screenplay'),(241239,556172,2,'Director'),(241239,556172,3,'Producer'),(241239,968175,7,'Art Direction'),(241239,968532,5,'Editor'),(241239,1020057,3,'Casting'),(241239,1023713,8,'Costume Design'),(241239,1046612,1,'Director of Photography'),(241239,1059009,6,'Music'),(241239,1122225,6,'Music Editor'),(241239,1193622,1,'Still Photographer'),(241239,1235847,7,'Art Department Coordinator'),(241239,1276817,7,'Production Design'),(241239,1303391,8,'Makeup Artist'),(241239,1340752,8,'Makeup Artist'),(241239,1347750,8,'Costume Supervisor'),(241239,1347761,2,'Script Supervisor'),(241239,1352424,6,'Sound Re-Recording Mixer'),(241239,1357060,6,'Foley'),(241239,1376901,6,'ADR & Dubbing'),(241239,1376901,5,'Dialogue Editor'),(241239,1377117,5,'Digital Intermediate'),(241239,1388865,6,'Sound Effects Editor'),(241239,1393371,9,'Property Master'),(241239,1395363,10,'Visual Effects Producer'),(241239,1395366,10,'Visual Effects Supervisor'),(241239,1399875,1,'Steadicam Operator'),(241239,1399971,9,'Special Effects Coordinator'),(241239,1401997,11,'Gaffer'),(241239,1402039,2,'Script Supervisor'),(241239,1407735,10,'Visual Effects Producer'),(241239,1410216,1,'Camera Operator'),(241239,1414182,6,'ADR & Dubbing'),(241239,1414936,10,'Visual Effects Producer'),(241239,1416796,8,'Hairstylist'),(241239,1416798,8,'Makeup Department Head'),(241239,1416804,7,'Assistant Art Director'),(241239,1422056,7,'Set Decoration'),(241239,1425978,6,'Sound Re-Recording Mixer'),(241239,1434593,9,'CG Supervisor'),(241239,1434598,10,'Visual Effects Supervisor'),(241239,1446690,8,'Set Costumer'),(241239,1468094,9,'Unit Publicist'),(241239,1468519,3,'Producer'),(241239,1468535,8,'Hairstylist'),(241239,1468540,7,'Art Department Coordinator'),(241239,1468544,9,'Property Master'),(241239,1468547,7,'Assistant Art Director'),(241239,1468554,6,'ADR & Dubbing'),(241239,1468571,9,'CG Supervisor'),(241239,1468572,10,'VFX Supervisor'),(241239,1468573,10,'Visual Effects Producer'),(241239,1468574,10,'Visual Effects Producer'),(241239,1468575,10,'Visual Effects Supervisor'),(241239,1468577,10,'Visual Effects Supervisor'),(241239,1468581,9,'Stunt Coordinator'),(241239,1468585,1,'Director of Photography'),(241239,1468586,1,'Still Photographer'),(241239,1468587,1,'Additional Photography'),(241239,1468588,8,'Costume Supervisor'),(241239,1468589,8,'Set Costumer'),(241239,1468590,5,'First Assistant Editor'),(241239,1468592,9,'Dialect Coach'),(241239,1468593,3,'Location Manager'),(241239,1468594,9,'Dialect Coach'),(241239,1468595,9,'Unit Publicist'),(241239,1468596,9,'Unit Publicist'),(77948,3657,8,'Costume Design'),(77948,1251,1,'Director of Photography'),(77948,2260,3,'Executive Producer'),(77948,4710,7,'Production Design'),(77948,9545,3,'Casting'),(77948,16236,8,'Makeup Department Head'),(77948,16346,5,'Editor'),(77948,60471,3,'Producer'),(77948,60472,4,'Screenplay'),(77948,74426,3,'Executive Producer'),(77948,74924,2,'Director'),(77948,83985,3,'Executive Producer'),(77948,83985,4,'Writer'),(77948,179586,6,'ADR & Dubbing'),(77948,582913,4,'Writer'),(77948,582914,3,'Producer'),(77948,582915,3,'Line Producer'),(77948,582916,3,'Executive Producer'),(77948,582917,3,'Executive Producer'),(77948,1018976,6,'Original Music Composer'),(40932,8877,4,'Writer'),(40932,8878,4,'Writer'),(40932,47503,2,'Director'),(334531,2031,3,'Casting'),(334531,2532,3,'Casting'),(334531,6043,5,'Editor'),(334531,19758,1,'Director of Photography'),(334531,18344,3,'Producer'),(334531,21824,8,'Costume Supervisor'),(334531,32236,7,'Production Design'),(334531,52161,6,'Music Supervisor'),(334531,44848,2,'Director'),(334531,44848,4,'Writer'),(334531,54761,8,'Costume Design'),(334531,57560,3,'Executive Producer'),(334531,61524,7,'Set Decoration'),(334531,77949,6,'Original Music Composer'),(334531,364835,3,'Executive Producer'),(334531,1080454,7,'Art Direction'),(334531,1301688,3,'Co-Producer'),(334531,1366483,3,'Co-Producer'),(334531,1378765,1,'Still Photographer'),(334531,1401152,1,'Camera Operator'),(334531,1406137,2,'Script Supervisor'),(334531,1488312,3,'Executive Producer'),(334531,1638233,4,'Book'),(334531,1638235,3,'Executive Producer'),(334531,1638236,3,'Executive Producer'),(334531,1638237,3,'Executive Producer'),(112937,71965,9,'Cinematography'),(112937,116370,2,'Director'),(112937,1055970,4,'Writer'),(112937,1055971,9,'Creator'),(112937,1055972,3,'Producer'),(112937,1055973,3,'Line Producer'),(112937,1055974,5,'Editor'),(112937,1055975,6,'Original Music Composer'),(112937,1055976,7,'Production Design'),(112937,1055977,7,'Art Direction'),(314385,287,3,'Producer'),(314385,2243,7,'Production Design'),(314385,7735,8,'Costume Design'),(314385,4528,5,'Editor'),(314385,5488,6,'Original Music Composer'),(314385,6027,1,'Director of Photography'),(314385,7531,3,'Co-Producer'),(314385,40772,6,'Production Sound Mixer'),(314385,11701,4,'Screenplay'),(314385,11701,2,'Director'),(314385,11701,3,'Producer'),(314385,41018,3,'Executive Producer'),(314385,41336,7,'Set Decoration'),(314385,60130,3,'Co-Producer'),(314385,1172443,1,'Still Photographer'),(314385,1182554,8,'Key Hair Stylist'),(314385,1201953,11,'Gaffer'),(314385,1201956,11,'Rigging Gaffer'),(314385,1287614,5,'Editor'),(314385,1302636,8,'Makeup Artist'),(314385,1322142,7,'Supervising Art Director'),(314385,1325234,8,'Makeup Artist'),(314385,1326461,8,'Costume Supervisor'),(314385,1338387,3,'Casting'),(314385,1395709,6,'Sound Re-Recording Mixer'),(314385,1401687,6,'Sound Re-Recording Mixer'),(314385,1404903,6,'Supervising Sound Editor'),(314385,1405232,5,'Dialogue Editor'),(314385,1408371,7,'Art Direction'),(314385,1414984,8,'Hairstylist'),(314385,1420634,9,'Property Master'),(314385,1425397,2,'Script Supervisor'),(314385,1459859,8,'Makeup Artist'),(314385,1530856,9,'Stunt Coordinator'),(314385,1530861,3,'Executive Producer'),(314385,1530865,3,'Executive Producer'),(314385,1530868,8,'Makeup Artist'),(314385,1530869,8,'Hairstylist'),(314385,1544669,6,'Sound Effects Editor'),(314385,1564037,1,'First Assistant Camera'),(314385,1568468,9,'Visual Effects Editor'),(314385,1578403,7,'Art Department Coordinator'),(314385,1578404,7,'Assistant Art Director'),(314385,1578405,8,'Costume Supervisor'),(314385,1578407,1,'Camera Operator'),(314385,1578407,1,'Steadicam Operator'),(314385,1578408,1,'Camera Operator'),(314385,1578409,10,'Visual Effects Coordinator'),(314385,1578410,10,'Visual Effects Coordinator'),(314385,1578411,10,'Visual Effects Producer'),(314385,1578412,10,'Visual Effects Supervisor'),(46503,23287,2,'Director'),(46503,23289,4,'Screenplay'),(46503,564870,4,'Screenplay'),(43935,122,6,'Original Music Composer'),(43935,10953,3,'Executive Producer'),(43935,19499,2,'Director'),(43935,53297,4,'Writer'),(43935,60404,1,'Director of Photography'),(43935,87681,4,'Characters'),(43935,1582866,4,'Writer'),(44638,16403,5,'Editor'),(44638,16296,3,'Executive Producer'),(44638,5581,6,'Music'),(44638,6210,4,'Original Story'),(44638,7262,1,'Director of Photography'),(44638,9027,8,'Costume Design'),(44638,16391,2,'Director'),(44638,16391,3,'Producer'),(44638,16391,4,'Screenplay'),(44638,16514,3,'Producer'),(44638,67999,3,'Executive Producer'),(44638,74827,3,'Producer'),(44638,223778,4,'Writer'),(44638,223778,3,'Producer'),(44638,227431,3,'Producer'),(44638,227433,3,'Executive Producer'),(44638,227434,3,'Executive Producer'),(44638,227435,3,'Executive Producer'),(44638,227436,3,'Executive Producer'),(241257,3631,8,'Costume Design'),(241257,474,3,'Casting'),(241257,8315,7,'Production Design'),(241257,14351,6,'Music'),(241257,10836,7,'Art Direction'),(241257,16941,3,'Producer'),(241257,19840,4,'Screenplay'),(241257,19840,2,'Director'),(241257,19840,3,'Producer'),(241257,71277,1,'Director of Photography'),(241257,132642,1,'Still Photographer'),(241257,190936,3,'Casting'),(241257,986632,3,'Producer'),(241257,1179660,5,'Editor'),(241257,1333909,8,'Makeup Department Head'),(241257,1337413,6,'Foley'),(241257,1399927,1,'Camera Operator'),(241257,1400474,6,'Sound Re-Recording Mixer'),(241257,1412575,8,'Hair Department Head'),(241257,1412580,9,'Property Master'),(241257,1436795,6,'Dolby Consultant'),(241257,1439128,8,'Makeup Artist'),(241257,1439128,8,'Hairstylist'),(241257,1444919,10,'Visual Effects Producer'),(241257,1454140,6,'Foley'),(241257,1463993,5,'Dialogue Editor'),(241257,1463994,6,'Foley'),(241257,1464001,6,'Sound Designer'),(241257,1464001,6,'Supervising Sound Editor'),(241257,1464002,6,'Sound Effects Editor'),(241257,1484255,2,'Script Supervisor'),(241257,1517932,7,'Set Decoration'),(241257,1538877,5,'Digital Intermediate'),(241257,1568813,7,'Art Department Coordinator'),(241257,1568814,9,'Special Effects Coordinator'),(241257,1568815,10,'Visual Effects Producer'),(241257,1568816,1,'First Assistant Camera'),(241257,1568817,11,'Gaffer'),(241257,1568818,8,'Assistant Costume Designer'),(241257,1568819,8,'Assistant Costume Designer'),(241257,1568823,7,'Assistant Art Director'),(241257,1568824,7,'Assistant Art Director'),(241257,1568825,7,'Construction Coordinator'),(241257,1568826,5,'First Assistant Editor'),(133931,1098107,4,'Screenplay'),(133931,1098107,2,'Director'),(133931,1098109,9,'Script'),(133931,1098110,4,'Screenplay'),(133931,1098111,4,'Screenplay'),(280871,110702,5,'Editor'),(280871,1158786,1,'Director of Photography'),(280871,1304544,6,'Original Music Composer'),(280871,1339129,2,'Director'),(280871,1339129,4,'Screenplay'),(280871,1339129,4,'Story'),(280871,1339130,3,'Producer'),(280871,1339131,3,'Producer'),(280871,1339132,3,'Producer'),(280871,1339133,3,'Producer'),(280871,1625701,7,'Art Direction'),(280871,1640317,6,'Sound Designer'),(280871,1698402,8,'Costume Design'),(239897,1275019,2,'Director'),(239897,1275019,3,'Producer'),(239897,1275019,4,'Writer'),(239897,1275020,4,'Writer'),(184341,57454,2,'Director'),(184341,57454,4,'Writer'),(184341,61847,5,'Editor'),(184341,72812,1,'Director of Photography'),(334074,11266,2,'Director'),(334074,40827,6,'Music Editor'),(334074,11472,3,'Producer'),(334074,16487,3,'Producer'),(334074,16830,3,'Producer'),(334074,17207,3,'Executive Producer'),(334074,17209,3,'Executive Producer'),(334074,22815,3,'Executive Producer'),(334074,23451,6,'Original Music Composer'),(334074,39670,8,'Costume Design'),(334074,45829,3,'Executive Producer'),(334074,53680,3,'Casting'),(334074,57870,3,'Executive Producer'),(334074,61628,1,'Director of Photography'),(334074,61846,7,'Supervising Art Director'),(334074,61851,1,'Steadicam Operator'),(334074,61860,3,'Casting'),(334074,68320,3,'Executive Producer'),(334074,75116,1,'Still Photographer'),(334074,117232,6,'Sound Re-Recording Mixer'),(334074,117241,6,'Sound Effects Editor'),(334074,226464,9,'Second Unit Cinematographer'),(334074,564209,3,'Line Producer'),(334074,960087,7,'Set Decoration'),(334074,1018082,3,'Producer'),(334074,1024907,3,'Co-Producer'),(334074,1167321,9,'Stunt Coordinator'),(334074,1318091,7,'Set Decoration'),(334074,1334812,8,'Costume Supervisor'),(334074,1337394,7,'Supervising Art Director'),(334074,1337409,6,'Sound Designer'),(334074,1337409,6,'Supervising Sound Editor'),(334074,1337413,6,'Foley'),(334074,1350256,8,'Costume Supervisor'),(334074,1350258,8,'Key Costumer'),(334074,1355964,10,'Visual Effects Supervisor'),(334074,1363348,7,'Art Department Coordinator'),(334074,1368862,7,'Property Master'),(334074,1368880,11,'Gaffer'),(334074,1369373,8,'Makeup Artist'),(334074,1373700,7,'Art Direction'),(334074,1388878,9,'Stunt Coordinator'),(334074,1396803,9,'Visual Effects Editor'),(334074,1399033,9,'Second Unit Cinematographer'),(334074,1400092,1,'Helicopter Camera'),(334074,1400317,1,'Still Photographer'),(334074,1405795,6,'Sound Re-Recording Mixer'),(334074,1408822,11,'Gaffer'),(334074,1408843,5,'Editor'),(334074,1412711,9,'Visual Effects Editor'),(334074,1414093,5,'Dialogue Editor'),(334074,1465940,7,'Property Master'),(334074,1466046,4,'Screenplay'),(334074,1471673,3,'Co-Executive Producer'),(334074,1509637,8,'Makeup Artist'),(334074,1522767,10,'Animation'),(334074,1522768,1,'Camera Operator'),(334074,1522769,5,'Dialogue Editor'),(334074,1528013,6,'Music Supervisor'),(334074,1532215,9,'Armorer'),(334074,1540244,10,'Visual Effects Supervisor'),(334074,1541499,9,'Armorer'),(334074,1570217,10,'Special Effects Supervisor'),(334074,1593066,7,'Art Department Coordinator'),(334074,1640705,10,'Visual Effects Coordinator'),(334074,1640706,10,'Visual Effects Coordinator'),(334074,1640707,10,'Visual Effects Coordinator'),(334074,1640708,10,'Visual Effects Coordinator'),(334074,1640709,10,'Visual Effects Coordinator'),(334074,1640710,9,'Visual Effects Editor'),(334074,1804229,10,'Visual Effects Coordinator'),(334074,1833103,10,'Visual Effects Coordinator'),(334074,1833106,1,'Camera Operator'),(334074,1833111,3,'Production Coordinator'),(334074,1833112,9,'Armorer'),(199373,1309,3,'Producer'),(199373,17211,3,'Producer'),(199373,21420,7,'Production Design'),(199373,62644,3,'Producer'),(199373,929145,6,'Original Music Composer'),(199373,954441,3,'Producer'),(199373,961664,1,'Director of Photography'),(199373,1001705,3,'Producer'),(199373,1035444,5,'Editor'),(199373,1070054,3,'Producer'),(199373,1179590,2,'Director'),(199373,1179591,4,'Writer'),(52449,1589,6,'Original Music Composer'),(52449,2529,7,'Set Decoration'),(52449,2947,3,'Executive Producer'),(52449,2947,3,'Unit Production Manager'),(52449,10199,8,'Makeup Department Head'),(52449,21039,1,'Director of Photography'),(52449,38412,5,'Editor'),(52449,41592,7,'Art Direction'),(52449,41081,7,'Production Design'),(52449,41084,8,'Costume Design'),(52449,51851,2,'Director'),(52449,51851,3,'Executive Producer'),(52449,61107,3,'Producer'),(52449,61397,3,'Producer'),(52449,92370,6,'Boom Operator'),(52449,76014,3,'Casting'),(52449,76015,3,'Casting'),(52449,84416,4,'Screenplay'),(52449,84416,3,'Executive Producer'),(52449,84417,4,'Screenplay'),(52449,84417,3,'Executive Producer'),(52449,83083,5,'Dialogue Editor'),(52449,228981,3,'Location Manager'),(52449,960074,6,'Sound Effects Editor'),(52449,996220,9,'Stunts'),(52449,1095320,6,'Music Editor'),(52449,1340318,6,'Sound Effects Editor'),(52449,1341414,6,'Boom Operator'),(52449,1341781,6,'Sound Re-Recording Mixer'),(52449,1344264,6,'Sound Designer'),(52449,1344264,6,'Sound Effects Editor'),(52449,1403443,6,'Supervising Sound Editor'),(52449,1442499,8,'Hair Department Head'),(52449,1533037,2,'Script Supervisor'),(52449,1536542,1,'Still Photographer'),(52449,1537463,6,'Sound Re-Recording Mixer'),(52449,1546047,6,'Music Editor'),(52449,1546047,6,'Music Supervisor'),(52449,1546441,6,'Music Supervisor'),(52449,1546442,6,'Sound mixer'),(52449,1550828,7,'Art Department Coordinator'),(52449,1552205,6,'First Assistant Sound Editor'),(52449,1565123,1,'Steadicam Operator'),(52449,1565126,3,'Production Coordinator'),(52449,1565131,3,'Production Supervisor'),(385383,1450630,1,'Director of Photography'),(385383,1585252,4,'Screenplay'),(385383,1585252,2,'Director'),(385383,1592753,3,'Producer'),(385383,1592754,3,'Producer'),(385383,1592755,3,'Producer'),(385383,1592756,3,'Producer'),(41210,4491,3,'Executive Producer'),(41210,5669,3,'Casting'),(41210,17172,3,'Producer'),(41210,17173,3,'Producer'),(41210,17229,4,'Story'),(41210,40383,3,'Executive Producer'),(41210,34050,4,'Screenplay'),(41210,34050,3,'Co-Producer'),(41210,39993,6,'Music'),(41210,52451,3,'Co-Producer'),(41210,54773,3,'Co-Producer'),(41210,60922,2,'Director'),(41210,60923,2,'Director'),(41210,72853,9,'Cinematography'),(41210,187214,3,'Co-Producer'),(41210,974609,3,'Executive Producer'),(41210,1023711,7,'Production Design'),(41210,1327432,7,'Art Direction'),(41210,1446191,3,'Co-Producer'),(62630,1325,3,'Casting'),(62630,6688,8,'Costume Design'),(62630,7189,4,'Screenplay'),(62630,7256,2,'Director'),(62630,36696,7,'Set Decoration'),(62630,16684,6,'Sound Designer'),(62630,16684,6,'Supervising Sound Editor'),(62630,26196,8,'Makeup Artist'),(62630,26196,8,'Hairstylist'),(62630,41846,6,'Music'),(62630,48309,3,'Producer'),(62630,48310,3,'Producer'),(62630,57585,1,'Director of Photography'),(62630,96357,3,'Producer'),(62630,584566,4,'Screenplay'),(62630,943313,7,'Production Design'),(62630,996068,3,'Producer'),(62630,1016176,3,'Casting'),(62630,1058157,3,'Producer'),(62630,1106173,6,'Foley'),(62630,1114476,9,'Cinematography'),(62630,1129208,9,'Special Effects Coordinator'),(62630,1182555,8,'Makeup Artist'),(62630,1266990,11,'Rigging Gaffer'),(62630,1335048,10,'Visual Effects Supervisor'),(62630,1335049,10,'Visual Effects Producer'),(62630,1338287,6,'Music Editor'),(62630,1338388,8,'Set Costumer'),(62630,1340116,6,'Sound Re-Recording Mixer'),(62630,1350255,1,'Camera Operator'),(62630,1399591,5,'Digital Intermediate'),(62630,1404553,9,'Unit Publicist'),(62630,1404861,6,'ADR & Dubbing'),(62630,1408371,7,'Art Direction'),(62630,1408405,3,'Location Manager'),(62630,1415999,3,'Location Manager'),(62630,1423422,7,'Art Department Coordinator'),(62630,1423423,7,'Assistant Art Director'),(62630,1423424,9,'Property Master'),(62630,1423425,9,'Scenic Artist'),(62630,1423427,9,'Stunt Coordinator'),(62630,1423428,1,'Steadicam Operator'),(62630,1423429,1,'Still Photographer'),(62630,1423430,8,'Set Costumer'),(62630,1423431,5,'Digital Intermediate'),(62630,1423432,5,'First Assistant Editor'),(62630,1423433,9,'Transportation Coordinator'),(62630,1423434,9,'Picture Car Coordinator'),(62630,1423436,2,'Script Supervisor'),(62630,1423439,3,'Location Manager'),(244114,1351,3,'Producer'),(244114,25246,3,'Producer'),(244114,64490,5,'Editor'),(244114,70110,2,'Director'),(244114,70110,4,'Writer'),(203833,491,6,'Original Music Composer'),(203833,476,5,'Editor'),(203833,4222,3,'Casting'),(203833,10569,3,'Producer'),(203833,10573,1,'Director of Photography'),(203833,6688,8,'Costume Design'),(203833,9022,3,'Executive Producer'),(203833,40645,9,'Stunt Coordinator'),(203833,40748,9,'Dialect Coach'),(203833,40762,7,'Set Designer'),(203833,40764,9,'Property Master'),(203833,40804,9,'Special Effects Coordinator'),(203833,40810,6,'Sound Designer'),(203833,40810,6,'Supervising Sound Editor'),(203833,40813,5,'Dialogue Editor'),(203833,40816,6,'Sound Effects Editor'),(203833,21122,6,'Music Editor'),(203833,23489,7,'Supervising Art Director'),(203833,36924,7,'Art Direction'),(203833,49625,7,'Greensman'),(203833,52193,5,'Dialogue Editor'),(203833,53346,3,'Casting'),(203833,61239,4,'Writer'),(203833,124707,3,'Location Manager'),(203833,126945,2,'Director'),(203833,144483,3,'Producer'),(203833,190914,2,'Script Supervisor'),(203833,968035,7,'Set Decoration'),(203833,1023480,7,'Production Design'),(203833,1268786,4,'Novel'),(203833,1299012,7,'Art Direction'),(203833,1331979,8,'Costume Supervisor'),(203833,1335882,10,'Visual Effects Producer'),(203833,1336198,8,'Set Costumer'),(203833,1338963,8,'Makeup Department Head'),(203833,1338964,7,'Set Designer'),(203833,1338967,7,'Assistant Art Director'),(203833,1338969,6,'Sound Re-Recording Mixer'),(203833,1338970,6,'Sound Effects Editor'),(203833,1338971,6,'Foley'),(203833,1338972,6,'Foley'),(203833,1338973,6,'Sound Effects Editor'),(203833,1338975,6,'Boom Operator'),(203833,1338976,6,'Sound Re-Recording Mixer'),(203833,1338977,6,'Boom Operator'),(203833,1338983,10,'Visual Effects Supervisor'),(203833,1339053,10,'Visual Effects Supervisor'),(203833,1339054,1,'Camera Operator'),(203833,1339055,1,'Camera Operator'),(203833,1339056,8,'Costume Supervisor'),(203833,1339057,8,'Set Costumer'),(203833,1339058,8,'Set Costumer'),(203833,1339059,9,'Transportation Captain'),(203833,1339060,9,'Post Production Supervisor'),(203833,1394716,5,'Dialogue Editor'),(203833,1401126,8,'Wigmaker'),(203833,1405241,1,'Helicopter Camera'),(203833,1406187,9,'Scenic Artist'),(203833,1406188,9,'Scenic Artist'),(203833,1406189,6,'ADR & Dubbing'),(203833,1406190,5,'Dialogue Editor'),(203833,1406192,1,'Still Photographer'),(203833,1406193,11,'Gaffer'),(203833,1406195,11,'Best Boy Electric'),(203833,1406197,5,'Digital Intermediate'),(203833,1406199,9,'Dialect Coach'),(203833,1406200,9,'Unit Publicist'),(50725,17052,4,'Story'),(50725,9417,6,'Sound Effects Editor'),(50725,10394,5,'Editor'),(50725,12945,6,'Music Editor'),(50725,21747,7,'Production Design'),(50725,22504,4,'Script Editor'),(50725,36582,8,'Costume Design'),(50725,40375,3,'Producer'),(50725,45841,3,'Casting'),(50725,47293,1,'Director of Photography'),(50725,54419,3,'Producer'),(50725,71280,2,'Director'),(50725,111942,4,'Screenplay'),(50725,111943,4,'Screenplay'),(50725,224387,3,'Casting'),(50725,558105,6,'Original Music Composer'),(50725,1011958,7,'Art Direction'),(50725,1122560,9,'Stunt Coordinator'),(50725,1183391,1,'Still Photographer'),(50725,1299201,8,'Makeup Department Head'),(50725,1312641,7,'Set Decoration'),(50725,1325353,7,'Construction Coordinator'),(50725,1326407,8,'Costume Supervisor'),(50725,1357045,7,'Art Department Coordinator'),(50725,1387247,10,'Visual Effects Coordinator'),(50725,1400085,8,'Key Set Costumer'),(50725,1400738,2,'Script Supervisor'),(50725,1404306,8,'Hair Department Head'),(50725,1409511,1,'Camera Operator'),(50725,1412699,6,'Sound Effects Editor'),(50725,1415007,5,'Dialogue Editor'),(50725,1416584,9,'Special Effects Coordinator'),(50725,1433655,1,'Camera Operator'),(50725,1460034,8,'Key Hair Stylist'),(50725,1530166,6,'Music Supervisor'),(50725,1556651,1,'Steadicam Operator'),(50725,1643713,2,'First Assistant Director'),(50725,1732801,2,'Script Supervisor'),(50725,1733141,8,'Key Costumer'),(50725,1830502,4,'Story'),(50725,1830503,3,'Producer'),(50725,1830504,8,'Key Makeup Artist'),(50725,1830506,7,'Art Department Coordinator'),(50725,1830513,9,'Special Effects Coordinator'),(50725,1830526,3,'Production Coordinator'),(82631,5162,3,'Producer'),(82631,10396,7,'Production Design'),(82631,15426,3,'Casting'),(82631,21718,7,'Art Direction'),(82631,23543,1,'Director of Photography'),(82631,47776,5,'Editor'),(82631,52682,8,'Costume Design'),(82631,55177,6,'Original Music Composer'),(82631,59429,7,'Set Decoration'),(82631,84061,4,'Screenplay'),(82631,84061,2,'Director'),(73191,716,2,'Director'),(340611,2952,3,'Casting'),(340611,321,3,'Producer'),(340611,1617,2,'Director'),(340611,1617,4,'Screenplay'),(340611,1617,3,'Producer'),(340611,4868,5,'Editor'),(340611,33235,3,'Executive Producer'),(340611,67481,4,'Novel'),(340611,230690,3,'Executive Producer'),(340611,933407,7,'Art Direction'),(340611,1084983,1,'Director of Photography'),(340611,1193617,7,'Production Design'),(340611,1300796,3,'Producer'),(340611,1333664,7,'Set Decoration'),(340611,1409986,3,'Executive Producer'),(340611,1516293,8,'Costume Design'),(340611,1564055,3,'Executive Producer'),(340611,1636994,3,'Executive Producer'),(340611,1722532,3,'Executive Producer'),(340611,1722536,6,'Original Music Composer'),(340611,1722537,3,'Executive Producer'),(340611,1722538,3,'Executive Producer'),(340611,1722541,3,'Executive Producer'),(244339,21905,2,'Director'),(244339,21905,3,'Producer'),(244339,21905,4,'Writer'),(244339,31033,2,'Director'),(244339,31033,3,'Producer'),(244339,31033,4,'Writer'),(244339,66053,6,'Music'),(244339,70111,1,'Director of Photography'),(244339,93992,4,'Screenplay'),(244339,118737,3,'Producer'),(244339,1279764,4,'Writer'),(244339,1279765,4,'Writer'),(244339,1279766,6,'Music'),(195589,6410,3,'Casting'),(195589,1589,6,'Original Music Composer'),(195589,10199,8,'Makeup Department Head'),(195589,19274,3,'Producer'),(195589,23285,9,'Stunt Coordinator'),(195589,21592,8,'Costume Design'),(195589,23541,3,'Executive Producer'),(195589,40383,3,'Executive Producer'),(195589,52934,2,'Director'),(195589,54734,3,'Producer'),(195589,64227,1,'Director of Photography'),(195589,141301,7,'Production Design'),(195589,184582,4,'Writer'),(195589,184582,3,'Executive Producer'),(195589,187214,3,'Executive Producer'),(195589,225628,5,'Editor'),(195589,928595,3,'Producer'),(195589,1085179,4,'Writer'),(195589,1085179,3,'Executive Producer'),(195589,1149583,1,'Steadicam Operator'),(195589,1271793,9,'Special Effects Coordinator'),(195589,1324262,7,'Set Decoration'),(195589,1338670,8,'Hair Department Head'),(195589,1339447,6,'Boom Operator'),(195589,1350459,7,'Art Direction'),(195589,1377240,2,'Script Supervisor'),(195589,1400007,3,'Production Supervisor'),(195589,1412228,6,'Sound mixer'),(195589,1546047,6,'Music Supervisor'),(195589,1546047,6,'Music Editor'),(195589,1546441,6,'Music Supervisor'),(195589,1552040,1,'Still Photographer'),(195589,1559873,3,'Casting'),(195589,1562065,7,'Art Department Coordinator'),(195589,1562067,5,'First Assistant Editor'),(195589,1589489,1,'Additional Camera'),(218043,356,1,'Director of Photography'),(218043,5633,7,'Set Decoration'),(218043,10420,7,'Production Design'),(218043,15358,2,'Director'),(218043,21119,5,'Editor'),(218043,30874,3,'Casting'),(218043,30876,3,'Casting'),(218043,117387,4,'Screenplay'),(218043,117387,3,'Producer'),(218043,126156,6,'Sound Re-Recording Mixer'),(218043,179882,9,'Stunt Coordinator'),(218043,575700,2,'Script Supervisor'),(218043,991157,3,'Producer'),(218043,1039434,4,'Screenplay'),(218043,1053820,10,'Visual Effects Producer'),(218043,1059528,6,'Music'),(218043,1127245,7,'Art Direction'),(218043,1214744,4,'Writer'),(218043,1314062,3,'Casting'),(218043,1336431,8,'Hairstylist'),(218043,1340089,8,'Costume Supervisor'),(218043,1340093,7,'Assistant Art Director'),(218043,1367481,7,'Greensman'),(218043,1367484,7,'Greensman'),(218043,1367510,9,'Studio Teachers'),(218043,1368931,4,'Writer'),(218043,1393863,3,'Location Manager'),(218043,1402557,7,'Leadman'),(218043,1410095,3,'Producer'),(218043,1410096,8,'Hairstylist'),(218043,1410097,8,'Makeup Artist'),(218043,1410098,7,'Construction Coordinator'),(218043,1410099,7,'Art Department Coordinator'),(218043,1410100,7,'Set Designer'),(218043,1410101,9,'Scenic Artist'),(218043,1410102,9,'Property Master'),(218043,1410103,7,'Greensman'),(218043,1410104,5,'Dialogue Editor'),(218043,1410105,10,'Visual Effects Supervisor'),(218043,1410105,9,'Second Unit Cinematographer'),(218043,1410106,10,'Visual Effects Supervisor'),(218043,1410108,1,'Camera Operator'),(218043,1410109,1,'Camera Operator'),(218043,1410110,1,'Still Photographer'),(218043,1410111,11,'Rigging Gaffer'),(218043,1410112,11,'Best Boy Electric'),(218043,1410113,8,'Set Costumer'),(218043,1410114,8,'Set Costumer'),(218043,1410115,8,'Set Costumer'),(218043,1410116,8,'Set Costumer'),(218043,1410117,8,'Set Costumer'),(218043,1410118,9,'Transportation Coordinator'),(218043,1410119,9,'Picture Car Coordinator'),(302688,31,3,'Producer'),(302688,2864,9,'Cinematography'),(302688,12374,3,'Co-Producer'),(302688,12931,3,'Producer'),(302688,16854,3,'Executive Producer'),(302688,25138,3,'Executive Producer'),(302688,40608,3,'Associate Producer'),(302688,49911,6,'Music Editor'),(302688,51869,8,'Costume Design'),(302688,54645,3,'Executive Producer'),(302688,54645,4,'Writer'),(302688,60246,3,'Executive Producer'),(302688,64045,2,'Director'),(302688,1046700,7,'Production Design'),(302688,1113371,7,'Set Decoration'),(302688,1115249,3,'Associate Producer'),(302688,1263769,5,'Editor'),(302688,1639937,3,'Associate Producer'),(60307,33183,2,'Director'),(60307,178426,4,'Screenplay'),(60307,1231184,4,'Screenplay'),(60307,1684475,4,'Book'),(194662,223,4,'Screenplay'),(194662,223,2,'Director'),(194662,223,3,'Producer'),(194662,275,1,'Additional Photography'),(194662,376,3,'Producer'),(194662,6410,3,'Casting'),(194662,1891,5,'Editor'),(194662,4185,1,'Director of Photography'),(194662,4701,3,'Producer'),(194662,9619,6,'Sound Re-Recording Mixer'),(194662,8885,8,'Costume Design'),(194662,9439,6,'Foley'),(194662,17115,5,'Editor'),(194662,16994,6,'Sound Effects Editor'),(194662,17222,9,'Property Master'),(194662,17950,7,'Assistant Art Director'),(194662,18173,7,'Set Decoration'),(194662,19755,7,'Production Design'),(194662,83085,5,'Dialogue Editor'),(194662,91116,11,'Gaffer'),(194662,176558,9,'Stunt Coordinator'),(194662,548445,6,'Foley'),(194662,661870,4,'Screenplay'),(194662,931800,4,'Screenplay'),(194662,931800,3,'Associate Producer'),(194662,1046134,3,'Executive Producer'),(194662,1077782,6,'Foley'),(194662,1085049,7,'Art Direction'),(194662,1095253,3,'Producer'),(194662,1128690,3,'Executive Producer'),(194662,1167113,6,'Original Music Composer'),(194662,1193622,1,'Still Photographer'),(194662,1280039,3,'Executive Producer'),(194662,1281196,4,'Screenplay'),(194662,1281196,3,'Associate Producer'),(194662,1300340,8,'Makeup Artist'),(194662,1332188,8,'Hairstylist'),(194662,1340739,6,'Foley'),(194662,1347722,8,'Makeup Department Head'),(194662,1368866,6,'Sound Re-Recording Mixer'),(194662,1378672,7,'Construction Coordinator'),(194662,1380479,6,'Sound Designer'),(194662,1384394,9,'Transportation Coordinator'),(194662,1388879,6,'Music Editor'),(194662,1393455,2,'Script Supervisor'),(194662,1394130,6,'Sound Re-Recording Mixer'),(194662,1394131,6,'Sound Re-Recording Mixer'),(194662,1395434,7,'Assistant Art Director'),(194662,1400508,9,'Unit Publicist'),(194662,1401109,1,'Steadicam Operator'),(194662,1401631,6,'ADR & Dubbing'),(194662,1404716,6,'Sound Designer'),(194662,1407014,7,'Leadman'),(194662,1410753,3,'Associate Producer'),(194662,1410754,3,'Associate Producer'),(194662,1413452,6,'Sound Re-Recording Mixer'),(194662,1414290,5,'Digital Intermediate'),(194662,1417975,10,'Visual Effects Producer'),(194662,1435703,5,'Dialogue Editor'),(194662,1445873,6,'ADR & Dubbing'),(194662,1452686,5,'Digital Intermediate'),(194662,1462838,8,'Hairstylist'),(194662,1462839,7,'Art Department Coordinator'),(194662,1462841,6,'ADR & Dubbing'),(194662,1462842,9,'Sound Recordist'),(194662,1462843,9,'Sound Recordist'),(194662,1462844,9,'Sound Recordist'),(194662,1462845,6,'Sound Designer'),(194662,1462845,6,'Music Editor'),(194662,1462849,9,'Special Effects Coordinator'),(194662,1462850,9,'Visual Effects Editor'),(194662,1462851,10,'Visual Effects Producer'),(194662,1462852,10,'Visual Effects Supervisor'),(194662,1462853,1,'Still Photographer'),(194662,1462854,11,'Rigging Gaffer'),(194662,1462855,8,'Costume Supervisor'),(194662,1462856,5,'First Assistant Editor'),(160588,403,1,'Director of Photography'),(160588,1046,3,'Casting'),(160588,1243,2,'Director'),(160588,1243,4,'Writer'),(160588,1252,5,'Editor'),(160588,1265,3,'Producer'),(160588,1268,3,'Producer'),(160588,6996,3,'Casting'),(160588,8869,8,'Costume Design'),(160588,23966,7,'Production Design'),(160588,1175486,3,'Producer'),(160588,1285840,3,'Executive Producer'),(160588,1285841,3,'Executive Producer'),(43959,129952,2,'Director'),(43959,129952,4,'Screenplay'),(43959,157903,4,'Screenplay'),(44115,465,3,'Executive Producer'),(44115,1114,5,'Editor'),(44115,1570,1,'Director of Photography'),(44115,2034,4,'Screenplay'),(44115,2034,2,'Director'),(44115,2034,3,'Producer'),(44115,4249,3,'Casting'),(44115,5288,6,'Original Music Composer'),(44115,6373,3,'Executive Producer'),(44115,40810,6,'Sound Designer'),(44115,40810,6,'Supervising Sound Editor'),(44115,40819,6,'Sound Re-Recording Mixer'),(44115,14719,9,'Special Effects Coordinator'),(44115,15729,3,'Executive Producer'),(44115,17428,6,'Foley'),(44115,17598,1,'Director of Photography'),(44115,17599,3,'Executive Producer'),(44115,25292,3,'Executive Producer'),(44115,57583,3,'Producer'),(44115,57631,4,'Screenplay'),(44115,68542,3,'Producer'),(44115,135731,8,'Assistant Costume Designer'),(44115,141570,7,'Production Design'),(44115,141570,8,'Costume Design'),(44115,952397,9,'Thanks'),(44115,965155,3,'Producer'),(44115,973238,4,'Novel'),(44115,1034679,3,'Executive Producer'),(44115,1102066,3,'Executive Producer'),(44115,1102067,3,'Producer'),(44115,1106181,11,'Gaffer'),(44115,1192525,2,'Assistant Director'),(44115,1319731,8,'Assistant Costume Designer'),(44115,1324018,7,'Art Direction'),(44115,1324019,7,'Set Decoration'),(44115,1327894,7,'Set Decoration'),(44115,1327895,8,'Makeup Department Head'),(44115,1327896,8,'Makeup Department Head'),(44115,1327898,8,'Costume Supervisor'),(44115,1337411,6,'Music Editor'),(44115,1338969,6,'Sound Re-Recording Mixer'),(44115,1339060,9,'Post Production Supervisor'),(44115,1341763,9,'Stunt Coordinator'),(44115,1345583,7,'Construction Coordinator'),(44115,1392614,6,'Dolby Consultant'),(44115,1394004,6,'Sound Re-Recording Mixer'),(44115,1394445,10,'Visual Effects Producer'),(44115,1394711,9,'Property Master'),(44115,1394712,7,'Sculptor'),(44115,1394713,7,'Leadman'),(44115,1394714,7,'Art Department Coordinator'),(44115,1394715,7,'Greensman'),(44115,1394716,5,'Dialogue Editor'),(44115,1394718,6,'Sound Re-Recording Mixer'),(44115,1394719,10,'Visual Effects Producer'),(44115,1394720,9,'Visual Effects Editor'),(44115,1394721,10,'Visual Effects Supervisor'),(44115,1394722,11,'Gaffer'),(44115,1394723,1,'Camera Operator'),(44115,1394724,1,'Still Photographer'),(44115,1394725,8,'Set Costumer'),(44115,1394726,9,'Transportation Coordinator'),(44115,1394727,9,'Studio Teachers'),(44115,1394728,2,'Script Supervisor'),(44115,1394729,2,'Script Supervisor'),(44115,1394730,3,'Location Manager'),(44115,1444917,10,'Special Effects Supervisor'),(44115,1532327,8,'Hairstylist'),(333348,16853,2,'Director'),(333348,47283,4,'Screenplay'),(333348,92376,6,'Foley'),(321697,6410,3,'Casting'),(321697,2034,2,'Director'),(321697,2034,3,'Producer'),(321697,2997,3,'Producer'),(321697,6048,3,'Producer'),(321697,5957,7,'Set Decoration'),(321697,40810,6,'Sound Designer'),(321697,40810,6,'Supervising Sound Editor'),(321697,40813,6,'ADR & Dubbing'),(321697,40813,5,'Dialogue Editor'),(321697,40823,6,'Foley'),(321697,12613,8,'Makeup Artist'),(321697,12617,8,'Key Hair Stylist'),(321697,13064,3,'Casting'),(321697,13065,3,'Casting Associate'),(321697,13520,4,'Writer'),(321697,17599,5,'Editor'),(321697,17599,3,'Executive Producer'),(321697,26192,1,'Director of Photography'),(321697,53758,3,'Producer'),(321697,57583,3,'Producer'),(321697,92301,3,'Unit Production Manager'),(321697,76003,9,'Dialect Coach'),(321697,76054,7,'Supervising Art Director'),(321697,82169,1,'Steadicam Operator'),(321697,141570,8,'Costume Design'),(321697,228981,3,'Location Manager'),(321697,582922,6,'Original Music Composer'),(321697,960673,7,'Art Direction'),(321697,1110812,8,'Set Costumer'),(321697,1177850,1,'Still Photographer'),(321697,1224272,9,'Special Effects Coordinator'),(321697,1230042,4,'Book'),(321697,1271644,7,'Production Design'),(321697,1332186,8,'Hair Designer'),(321697,1332186,8,'Makeup Designer'),(321697,1338969,6,'Sound Re-Recording Mixer'),(321697,1338970,6,'Sound Effects Editor'),(321697,1394719,10,'Visual Effects Producer'),(321697,1394721,10,'Visual Effects Supervisor'),(321697,1408374,6,'Sound Effects Editor'),(321697,1413855,5,'First Assistant Editor'),(321697,1416438,2,'Script Supervisor'),(321697,1421662,5,'Digital Intermediate'),(321697,1457242,3,'Co-Producer'),(321697,1491504,6,'Music Editor'),(321697,1494211,8,'Set Costumer'),(321697,1530723,1,'First Assistant Camera'),(321697,1536089,8,'Costume Supervisor'),(321697,1547041,6,'Sound Mixer'),(321697,1550567,1,'First Assistant Camera'),(321697,1559873,3,'Casting Associate'),(321697,1578896,7,'Art Department Coordinator'),(321697,1578897,8,'Set Costumer'),(321697,1578898,6,'Music Editor'),(321697,1578899,9,'Visual Effects Editor'),(321697,1578900,10,'Visual Effects Coordinator'),(321697,1578901,1,'Camera Operator'),(321697,1578902,1,'Camera Operator'),(321697,1578903,1,'Camera Operator'),(321697,1578904,11,'Rigging Gaffer'),(321697,1578905,5,'Dialogue Editor'),(321697,1578907,5,'First Assistant Editor'),(321697,1578908,5,'First Assistant Editor'),(38665,12846,2,'Director'),(38665,57624,4,'Screenplay'),(38665,57625,4,'Screenplay'),(146227,33290,6,'Original Music Composer'),(146227,56032,3,'Producer'),(146227,61921,2,'Director'),(146227,61921,3,'Producer'),(146227,61927,3,'Producer'),(146227,61930,3,'Producer'),(146227,932099,5,'Editor'),(146227,935296,1,'Director of Photography'),(146227,935298,7,'Production Design'),(146227,1123869,4,'Writer'),(146227,1123870,4,'Writer'),(146227,1170240,7,'Production Design'),(146227,1271609,3,'Casting'),(146227,1271610,7,'Art Direction'),(146227,1271611,7,'Art Direction'),(68924,2952,3,'Casting'),(68924,1614,2,'Director'),(68924,1614,3,'Producer'),(68924,1617,3,'Producer'),(68924,1617,4,'Writer'),(68924,1635,5,'Editor'),(68924,4434,1,'Director of Photography'),(68924,5670,7,'Production Design'),(68924,4907,7,'Set Decoration'),(68924,5359,6,'Music'),(68924,5952,3,'Producer'),(68924,36582,8,'Costume Design'),(68924,46529,4,'Writer'),(68924,992965,2,'Script Supervisor'),(68924,1430231,7,'Art Direction'),(68924,1467411,9,'Unit Publicist'),(253235,3026,2,'Director'),(253235,3026,3,'Producer'),(253235,7735,8,'Costume Design'),(253235,5886,7,'Set Decoration'),(253235,6890,3,'Producer'),(253235,9251,6,'Original Music Composer'),(253235,15426,3,'Casting'),(253235,27541,3,'Producer'),(253235,28780,4,'Screenplay'),(253235,41678,7,'Art Direction'),(253235,67356,1,'Director of Photography'),(253235,75626,5,'Editor'),(253235,198641,7,'Production Design'),(253235,971528,8,'Costume Design'),(253235,1554936,9,'Stunt Coordinator'),(253235,1855404,7,'Art Direction'),(36811,52405,2,'Director'),(130150,4023,3,'Casting'),(130150,7441,8,'Costume Design'),(130150,7794,4,'Novel'),(130150,24190,6,'Music'),(130150,39038,7,'Production Design'),(130150,39124,7,'Set Decoration'),(130150,52443,4,'Screenplay'),(130150,52443,2,'Director'),(130150,52443,3,'Producer'),(130150,52445,3,'Producer'),(130150,52449,1,'Director of Photography'),(130150,52450,5,'Editor'),(130150,52897,3,'Producer'),(130150,61996,8,'Makeup Department Head'),(130150,76003,9,'Dialect Coach'),(130150,83091,6,'Sound Re-Recording Mixer'),(130150,95830,9,'Property Master'),(130150,1006747,10,'Visual Effects Supervisor'),(130150,1046729,3,'Casting'),(130150,1191813,6,'Foley'),(130150,1287961,3,'Producer'),(130150,1323077,8,'Costume Supervisor'),(130150,1327524,7,'Set Designer'),(130150,1334462,7,'Construction Coordinator'),(130150,1337461,6,'Sound Re-Recording Mixer'),(130150,1342014,10,'Visual Effects Producer'),(130150,1364239,7,'Art Direction'),(130150,1367660,3,'Producer'),(130150,1367661,7,'Set Designer'),(130150,1367662,7,'Leadman'),(130150,1367665,6,'Boom Operator'),(130150,1367666,5,'Dialogue Editor'),(130150,1367667,6,'Supervising Sound Editor'),(130150,1367668,6,'Foley'),(130150,1367670,9,'Special Effects Coordinator'),(130150,1367671,9,'Stunt Coordinator'),(130150,1367672,11,'Gaffer'),(130150,1367673,8,'Set Costumer'),(130150,1367674,8,'Set Costumer'),(130150,1367675,8,'Set Costumer'),(130150,1367676,6,'Music Editor'),(130150,1367677,9,'Transportation Coordinator'),(130150,1367678,9,'Associate Choreographer'),(130150,1367679,2,'Script Supervisor'),(130150,1367680,9,'Choreographer'),(130150,1367681,3,'Location Manager'),(245703,6410,3,'Casting'),(245703,16398,3,'Producer'),(245703,19663,7,'Art Direction'),(245703,53645,5,'Editor'),(245703,71872,4,'Screenplay'),(245703,71872,2,'Director'),(245703,71880,1,'Director of Photography'),(245703,578724,8,'Makeup Department Head'),(245703,578730,8,'Key Hair Stylist'),(245703,928074,7,'Production Design'),(245703,984533,7,'Set Decoration'),(245703,999763,3,'Producer'),(245703,1027140,7,'Assistant Art Director'),(245703,1193620,8,'Costume Design'),(245703,1326407,8,'Costume Supervisor'),(245703,1337656,3,'Casting'),(245703,1350252,10,'Visual Effects Producer'),(245703,1389133,6,'Supervising Sound Editor'),(245703,1389624,6,'Music Editor'),(245703,1391729,1,'Still Photographer'),(245703,1393372,7,'Construction Coordinator'),(245703,1394418,6,'Sound Designer'),(245703,1394954,5,'First Assistant Editor'),(245703,1396984,2,'Script Supervisor'),(245703,1399071,1,'Helicopter Camera'),(245703,1406839,9,'Stunt Coordinator'),(245703,1407019,9,'Visual Effects Editor'),(245703,1412984,6,'Sound Effects Editor'),(245703,1414178,6,'Sound Effects Editor'),(245703,1415009,5,'Dialogue Editor'),(245703,1415334,8,'Makeup Artist'),(245703,1432047,5,'Digital Intermediate'),(245703,1434565,9,'CG Supervisor'),(245703,1453667,6,'Sound Effects Editor'),(245703,1458987,8,'Hair Department Head'),(245703,1493522,8,'Assistant Costume Designer'),(245703,1565123,1,'Steadicam Operator'),(245703,1571058,6,'Foley'),(245703,1612808,7,'Art Department Coordinator'),(245703,1632006,10,'Visual Effects Coordinator'),(245703,1632331,5,'First Assistant Editor'),(245703,1641656,3,'Casting Associate'),(245703,1641657,3,'Casting Associate'),(245703,1641658,1,'Camera Operator'),(245703,1641659,11,'Gaffer'),(245703,1641660,10,'Animation'),(127560,15329,8,'Costume Design'),(127560,31136,3,'Producer'),(127560,26190,4,'Screenplay'),(127560,33442,4,'Screenplay'),(127560,33442,3,'Producer'),(127560,37279,1,'Director of Photography'),(127560,37281,3,'Casting'),(127560,37757,6,'Original Music Composer'),(127560,75942,7,'Production Design'),(127560,97942,2,'Director'),(127560,123511,3,'Producer'),(127560,1087547,7,'Art Direction'),(127560,1191324,4,'Author'),(127560,1191326,7,'Set Decoration'),(127560,1195356,3,'Casting'),(127560,1317282,3,'Casting'),(127560,1317283,3,'Casting'),(37903,1073,3,'Producer'),(37903,4222,3,'Casting'),(37903,6011,4,'Screenplay'),(37903,6011,2,'Director'),(37903,6011,4,'Story'),(37903,6027,1,'Director of Photography'),(37903,6032,7,'Production Design'),(37903,6098,3,'Producer'),(37903,6100,3,'Producer'),(37903,6101,3,'Executive Producer'),(37903,28605,3,'Casting'),(37903,31011,3,'Producer'),(37903,55491,5,'Editor'),(37903,144338,3,'Casting'),(37903,1125171,3,'Associate Producer'),(37903,1465577,3,'Line Producer'),(396152,12714,2,'Director'),(396152,12714,4,'Screenplay'),(396152,1211636,4,'Screenplay'),(193613,41671,2,'Director'),(193613,41671,4,'Writer'),(193613,57637,4,'Writer'),(193613,69230,4,'Writer'),(193613,69231,4,'Writer'),(193613,69233,4,'Writer'),(193613,1460644,9,'Visual Effects Editor'),(193613,1579180,1,'First Assistant Camera'),(43434,4404,1,'Director of Photography'),(43434,18904,3,'Producer'),(43434,21678,4,'Screenplay'),(43434,21678,2,'Director'),(43434,23397,5,'Editor'),(43434,23464,1,'Director of Photography'),(43434,50118,3,'Line Producer'),(43434,52733,3,'Executive Producer'),(43434,56204,4,'Screenplay'),(43434,56204,3,'Producer'),(43434,134415,4,'Screenplay'),(43434,984014,5,'Editor'),(43434,1117765,3,'Producer'),(43434,1117766,3,'Producer'),(43434,1117767,3,'Producer'),(43434,1117768,3,'Executive Producer'),(43434,1117769,3,'Executive Producer'),(69848,2121,3,'Casting'),(69848,16320,3,'Associate Producer'),(69848,23867,7,'Art Direction'),(69848,23868,7,'Set Decoration'),(69848,37592,6,'Original Music Composer'),(69848,53008,5,'Editor'),(69848,57153,3,'Unit Production Manager'),(69848,57154,2,'Director'),(69848,58818,1,'Director of Photography'),(69848,61820,3,'Producer'),(69848,1000406,7,'Production Design'),(69848,1112902,8,'Costume Design'),(69848,1319401,3,'Casting'),(69848,1478102,1,'Additional Photography'),(69848,1478461,3,'Associate Producer'),(69848,1478462,3,'Co-Producer'),(69848,1478463,8,'Costume Design'),(69848,1479559,4,'Writer'),(332411,3115,1,'Director of Photography'),(332411,26713,2,'Director'),(332411,30874,3,'Casting'),(332411,30876,3,'Casting'),(332411,33625,7,'Production Design'),(332411,38551,3,'Executive Producer'),(332411,39822,3,'Line Producer'),(332411,43583,4,'Story'),(332411,43583,3,'Executive Producer'),(332411,52469,3,'Co-Executive Producer'),(332411,63423,9,'Stunt Coordinator'),(332411,63423,3,'Co-Producer'),(332411,63425,3,'Executive Producer'),(332411,60862,3,'Co-Executive Producer'),(332411,63721,3,'Producer'),(332411,78335,4,'Writer'),(332411,78336,3,'Executive Producer'),(332411,92604,6,'Foley'),(332411,132210,3,'Co-Executive Producer'),(332411,928942,6,'Sound Re-Recording Mixer'),(332411,948841,3,'Producer'),(332411,1074308,7,'Art Direction'),(332411,1083165,9,'Stunt Coordinator'),(332411,1084757,6,'Supervising Sound Editor'),(332411,1210567,6,'Original Music Composer'),(332411,1323760,8,'Makeup Department Head'),(332411,1367061,3,'Executive Producer'),(332411,1367127,7,'Set Decoration'),(332411,1442145,3,'Associate Producer'),(332411,1454534,8,'Co-Costume Designer'),(332411,1477488,3,'Associate Producer'),(332411,1556404,2,'Script Supervisor'),(332411,1579377,3,'Casting'),(332411,1579378,7,'Set Decoration'),(332411,1579379,8,'Costume Design'),(332411,1579380,8,'Costume Supervisor'),(332411,1579381,8,'Set Costumer'),(332411,1579382,6,'Music Editor'),(332411,1579383,6,'Music Supervisor'),(332411,1579384,1,'Camera Operator'),(332411,1579385,1,'Steadicam Operator'),(332411,1579386,1,'Still Photographer'),(332411,1579387,1,'First Assistant Camera'),(332411,1579388,1,'First Assistant Camera'),(332411,1579389,10,'Special Effects Supervisor'),(332411,1579390,5,'Dialogue Editor'),(332411,1579391,5,'Dialogue Editor'),(332411,1579392,9,'Property Master'),(332411,1579393,8,'Hair Department Head'),(332411,1579394,8,'Makeup Artist'),(332411,1579395,8,'Makeup Artist'),(332411,1627248,3,'Executive Producer'),(332411,1627249,3,'Executive Producer'),(332411,1627250,3,'Executive Producer'),(75638,1720,3,'Casting'),(75638,37952,9,'Cinematography'),(75638,95320,2,'Director'),(75638,95320,4,'Screenplay'),(75638,95320,3,'Producer'),(75638,962243,8,'Costume Design'),(75638,1054301,3,'Producer'),(75638,1120586,6,'Music'),(290555,10995,4,'Screenplay'),(290555,10995,2,'Director'),(290555,1418443,5,'Digital Intermediate'),(175541,51864,4,'Screenplay'),(175541,51864,2,'Director'),(175541,9178,7,'Production Design'),(175541,19464,1,'Director of Photography'),(175541,51868,5,'Editor'),(175541,51869,8,'Costume Design'),(175541,52515,6,'Original Music Composer'),(175541,95022,3,'Producer'),(175541,224389,7,'Set Decoration'),(175541,235558,3,'Producer'),(175541,927850,6,'Original Music Composer'),(175541,968175,7,'Art Direction'),(175541,1132114,4,'Theatre Play'),(175541,1403710,2,'Script Supervisor'),(241254,13673,5,'Editor'),(241254,9545,3,'Casting'),(241254,17210,3,'Producer'),(241254,17211,3,'Producer'),(241254,21003,3,'Executive Producer'),(241254,30057,9,'Cinematography'),(241254,65814,3,'Executive Producer'),(241254,65814,3,'Associate Producer'),(241254,75920,4,'Screenplay'),(241254,84876,3,'Producer'),(241254,84876,9,'Stunt Coordinator'),(241254,94047,3,'Executive Producer'),(241254,102400,3,'Executive Producer'),(241254,132210,3,'Co-Producer'),(241254,935296,9,'Cinematography'),(241254,935298,7,'Production Design'),(241254,989610,6,'Music'),(241254,1024823,2,'Director'),(241254,1113449,3,'Executive Producer'),(241254,1113451,3,'Executive Producer'),(241254,1170240,7,'Art Direction'),(241254,1194369,7,'Leadman'),(241254,1205762,8,'Costume Design'),(241254,1276377,4,'Screenplay'),(241254,1302342,3,'Executive Producer'),(241254,1340088,7,'Set Decoration'),(241254,1367053,3,'Executive Producer'),(241254,1367054,3,'Co-Producer'),(241254,1367056,3,'Associate Producer'),(241254,1367057,3,'Associate Producer'),(241254,1367058,3,'Executive Producer'),(241254,1367059,3,'Producer'),(241254,1367061,3,'Executive Producer'),(241254,1367124,8,'Hairstylist'),(241254,1371880,9,'Stand In'),(241254,1376489,1,'Still Photographer'),(241254,1388484,9,'Property Master'),(241254,1393406,9,'Transportation Coordinator'),(241254,1404190,8,'Makeup Department Head'),(241254,1404191,9,'Post Production Supervisor'),(241254,1404192,10,'Visual Effects'),(241254,1404193,9,'Stunt Coordinator'),(241254,1404194,11,'Gaffer'),(241254,1404195,11,'Best Boy Electric'),(241254,1404196,5,'Digital Intermediate'),(241254,1404197,2,'Script Supervisor'),(241254,1404198,3,'Location Manager'),(241254,1404199,9,'Stand In'),(241254,1770856,6,'Music'),(193893,1264,5,'Editor'),(193893,4952,3,'Casting'),(193893,11092,3,'Producer'),(193893,15435,7,'Title Designer'),(193893,45848,3,'Casting'),(193893,33673,7,'Set Decoration'),(193893,21747,7,'Production Design'),(193893,23486,6,'Original Music Composer'),(193893,35582,2,'First Assistant Director'),(193893,41084,8,'Costume Design'),(193893,56324,1,'Director of Photography'),(193893,60504,3,'Casting'),(193893,65734,4,'Screenplay'),(193893,65734,2,'Director'),(193893,65734,3,'Producer'),(193893,92380,6,'Supervising Sound Editor'),(193893,74322,8,'Makeup Department Head'),(193893,80828,9,'Special Effects Coordinator'),(193893,103536,9,'Visual Effects Editor'),(193893,567205,6,'Original Music Composer'),(193893,1067555,8,'Makeup Artist'),(193893,1138332,6,'Music Editor'),(193893,1214379,10,'Visual Effects Producer'),(193893,1215771,4,'Screenplay'),(193893,1320090,3,'Producer'),(193893,1329938,7,'Art Direction'),(193893,1333222,9,'Stunt Coordinator'),(193893,1372208,6,'Supervising ADR Editor'),(193893,1377239,2,'Script Supervisor'),(193893,1378240,1,'Still Photographer'),(193893,1379961,6,'Sound Editor'),(193893,1380443,6,'Dialogue Editor'),(193893,1389595,8,'Costume Supervisor'),(193893,1390523,6,'Sound Editor'),(193893,1394033,10,'Visual Effects Supervisor'),(193893,1407207,6,'Music Editor'),(193893,1412327,1,'Camera Operator'),(193893,1414935,6,'Foley Editor'),(193893,1439066,10,'Visual Effects Coordinator'),(193893,1442119,7,'Set Designer'),(193893,1445820,8,'Hair Department Head'),(193893,1445824,8,'Hairstylist'),(193893,1452231,8,'Key Hair Stylist'),(193893,1452641,7,'Art Direction'),(193893,1471726,6,'Music Supervisor'),(193893,1496420,10,'Visual Effects Producer'),(193893,1496425,9,'Visual Effects Editor'),(193893,1533100,8,'Seamstress'),(193893,1533591,8,'Key Hair Stylist'),(193893,1550778,1,'Steadicam Operator'),(193893,1578877,7,'Construction Coordinator'),(193893,1580968,8,'Hairstylist'),(193893,1585165,1,'Key Grip'),(193893,1594987,11,'Gaffer'),(193893,1618777,1,'Camera Operator'),(193893,1635172,7,'Art Department Coordinator'),(193893,1662725,10,'Visual Effects Producer'),(193893,1662736,8,'Key Makeup Artist'),(193893,1667750,9,'Choreographer'),(193893,1790345,10,'Visual Effects Coordinator'),(193893,1824510,6,'Foley Editor'),(193893,1871185,8,'Hairstylist'),(193893,1871188,8,'Makeup Artist'),(193893,1871230,7,'Painter'),(193893,1871233,6,'Boom Operator'),(193893,1871238,6,'Sound Effects Editor'),(193893,1871247,10,'Visual Effects Coordinator'),(193893,1871251,1,'Camera Operator'),(193893,1871270,8,'Key Costumer'),(193893,1871278,6,'Sound Editor'),(193893,1871280,3,'Production Coordinator'),(146304,7779,3,'Producer'),(146304,72024,2,'Director'),(146304,72024,4,'Writer'),(146304,72024,3,'Producer'),(146304,1158052,8,'Makeup Department Head'),(146304,1797254,1,'Key Grip'),(41439,2127,3,'Executive Producer'),(41439,2128,3,'Executive Producer'),(41439,2145,3,'Producer'),(41439,2147,3,'Producer'),(41439,2148,6,'Original Music Composer'),(41439,2150,2,'Director'),(41439,51021,4,'Screenplay'),(41439,51023,4,'Screenplay'),(41439,51026,3,'Executive Producer'),(41439,51029,3,'Executive Producer'),(41439,51030,3,'Executive Producer'),(41439,51035,8,'Costume Design'),(41439,14913,7,'Art Direction'),(41439,222327,9,'Cinematography'),(41439,962731,7,'Production Design'),(38117,55177,6,'Music'),(38117,84061,2,'Director'),(38117,84061,4,'Writer'),(38117,84061,4,'Screenplay'),(38117,119705,4,'Novel'),(38117,119705,4,'Screenplay'),(38117,1119658,5,'First Assistant Editor'),(228203,8576,6,'Original Music Composer'),(228203,15287,2,'Director'),(228203,38415,3,'Executive Producer'),(228203,42392,4,'Screenplay'),(228203,47293,1,'Director of Photography'),(228203,60497,4,'Screenplay'),(228203,60499,4,'Screenplay'),(228203,70698,3,'Producer'),(228203,70700,3,'Producer'),(228203,549317,9,'Cinematography'),(41382,130687,2,'Director'),(41382,130688,4,'Screenplay'),(114150,5328,3,'Casting'),(114150,9281,3,'Producer'),(114150,9333,8,'Makeup Department Head'),(114150,11506,1,'Director of Photography'),(114150,11625,5,'Editor'),(114150,13083,6,'Original Music Composer'),(114150,16854,3,'Producer'),(114150,25138,3,'Executive Producer'),(114150,19284,7,'Production Design'),(114150,19689,3,'Casting'),(114150,23486,6,'Original Music Composer'),(114150,32197,3,'Line Producer'),(114150,86197,8,'Costume Design'),(114150,168667,2,'Director'),(114150,208664,4,'Screenplay'),(114150,1005814,3,'Producer'),(114150,1088600,8,'Costume Supervisor'),(114150,1127209,7,'Set Decoration'),(114150,1127245,7,'Art Direction'),(114150,1194471,1,'Still Photographer'),(114150,1290933,4,'Novel'),(114150,1304298,8,'Makeup Artist'),(114150,1376486,11,'Gaffer'),(114150,1377239,2,'Script Supervisor'),(114150,1401757,8,'Key Hair Stylist'),(114150,1411876,1,'Steadicam Operator'),(114150,1471302,8,'Hair Department Head'),(114150,1533711,6,'Music Supervisor'),(114150,1533714,9,'Stunt Coordinator'),(109428,7623,3,'Producer'),(109428,7623,4,'Story'),(109428,11357,3,'Producer'),(109428,11359,3,'Producer'),(109428,54490,7,'Production Design'),(109428,14351,6,'Original Music Composer'),(109428,23541,3,'Executive Producer'),(109428,40383,3,'Executive Producer'),(109428,61125,3,'Executive Producer'),(109428,61772,3,'Casting'),(109428,62117,3,'Co-Producer'),(109428,62775,3,'Executive Producer'),(109428,73025,3,'Co-Producer'),(109428,80826,6,'Sound Designer'),(109428,132601,9,'Scenic Artist'),(109428,486330,1,'Additional Photography'),(109428,554887,6,'Sound Designer'),(109428,932248,4,'Screenplay'),(109428,932248,2,'Director'),(109428,971958,3,'Casting'),(109428,971959,3,'Casting'),(109428,990511,3,'Producer'),(109428,1046225,4,'Screenplay'),(109428,1155982,1,'Director of Photography'),(109428,1155983,5,'Editor'),(109428,1155984,8,'Costume Design'),(109428,1335147,6,'Sound Effects Editor'),(109428,1338482,6,'Sound Effects Editor'),(109428,1340003,6,'Supervising Sound Editor'),(109428,1350236,5,'Dialogue Editor'),(109428,1350237,6,'Sound Effects Editor'),(109428,1392969,6,'Sound Re-Recording Mixer'),(109428,1394064,9,'Property Master'),(109428,1394071,1,'Still Photographer'),(109428,1405807,9,'Makeup Effects'),(109428,1419924,6,'Music Editor'),(109428,1420719,10,'Visual Effects Producer'),(109428,1420720,10,'Visual Effects Supervisor'),(109428,1431503,8,'Hairstylist'),(109428,1431518,9,'Unit Publicist'),(109428,1434937,8,'Makeup Artist'),(109428,1434937,8,'Hairstylist'),(109428,1434938,8,'Makeup Artist'),(109428,1434939,9,'Animatronic and Prosthetic Effects'),(109428,1434940,7,'Art Department Coordinator'),(109428,1434941,7,'Set Designer'),(109428,1434943,6,'Sound Effects Editor'),(109428,1434944,9,'Stunt Coordinator'),(109428,1434945,1,'Camera Operator'),(109428,1434946,2,'Script Supervisor'),(109428,1434947,3,'Location Manager'),(58048,100981,4,'Writer'),(58048,134639,2,'Director'),(58048,228992,4,'Writer'),(255343,6051,5,'Editor'),(255343,18496,7,'Production Design'),(255343,11358,5,'Editor'),(255343,24006,6,'Sound Re-Recording Mixer'),(255343,40541,4,'Screenplay'),(255343,40541,2,'Director'),(255343,40546,1,'Camera Operator'),(255343,46266,6,'Music'),(255343,125895,6,'Sound Re-Recording Mixer'),(255343,967604,3,'Producer'),(255343,1049333,6,'Music Editor'),(255343,1084613,3,'Casting'),(255343,1190035,3,'Casting'),(255343,1300810,5,'First Assistant Editor'),(255343,1321362,8,'Costume Design'),(255343,1335416,5,'Dialogue Editor'),(255343,1351723,6,'Sound Designer'),(255343,1351724,6,'Foley'),(255343,1399588,10,'Visual Effects Producer'),(255343,1402249,10,'Visual Effects Supervisor'),(255343,1427381,6,'Music Editor'),(255343,1492034,7,'Set Decoration'),(255343,1512767,1,'Director of Photography'),(255343,1512768,3,'Casting'),(255343,1512769,7,'Assistant Art Director'),(255343,1512770,6,'ADR & Dubbing'),(255343,1512771,6,'Sound Editor'),(255343,1512772,6,'Sound Editor'),(255343,1512775,10,'VFX Production Coordinator'),(255343,1512781,10,'Visual Effects Supervisor'),(255343,1512783,10,'Visual Effects Supervisor'),(255343,1512784,9,'Stunt Coordinator'),(255343,1512785,2,'Script Supervisor'),(79694,16710,7,'Set Decoration'),(79694,18188,3,'Executive Producer'),(79694,20382,5,'Editor'),(79694,39038,7,'Production Design'),(79694,587800,2,'Director'),(79694,587800,4,'Writer'),(79694,587802,3,'Producer'),(79694,587803,8,'Costume Design'),(79694,587804,8,'Makeup Artist'),(79694,1119658,5,'Editor'),(74643,2324,3,'Casting'),(74643,6029,6,'Sound Editor'),(74643,6880,7,'Set Decoration'),(74643,19772,9,'Thanks'),(74643,20593,1,'Director of Photography'),(74643,20674,3,'Producer'),(74643,28686,6,'Sound Re-Recording Mixer'),(74643,36126,3,'Production Supervisor'),(74643,40471,8,'Costume Design'),(74643,25550,7,'Production Design'),(74643,54206,3,'Co-Producer'),(74643,54205,3,'Co-Producer'),(74643,54204,3,'Co-Producer'),(74643,54274,9,'Thanks'),(74643,56024,3,'Producer'),(74643,56837,9,'Thanks'),(74643,57279,3,'Production Coordinator'),(74643,64399,3,'Executive In Charge Of Production'),(74643,65822,3,'Executive Producer'),(74643,67717,2,'Director'),(74643,67717,5,'Editor'),(74643,67717,4,'Writer'),(74643,69788,9,'Thanks'),(74643,71506,9,'Thanks'),(74643,80470,3,'Executive Producer'),(74643,83062,8,'Makeup Artist'),(74643,83793,9,'Thanks'),(74643,93887,9,'Stunt Coordinator'),(74643,96133,3,'Casting Associate'),(74643,13443,9,'Stunts'),(74643,113612,3,'Associate Producer'),(74643,126750,9,'Thanks'),(74643,142989,9,'Thanks'),(74643,147361,9,'Property Master'),(74643,203950,9,'Stunts'),(74643,472101,6,'Original Music Composer'),(74643,543837,10,'Visual Effects'),(74643,543837,10,'Digital Compositors'),(74643,937652,5,'Editor'),(74643,939251,2,'Assistant Director'),(74643,939869,9,'Stunts'),(74643,1011158,9,'Thanks'),(74643,1015907,3,'Co-Producer'),(74643,1019837,9,'Thanks'),(74643,1046463,9,'Stunts'),(74643,1077342,3,'Casting Associate'),(74643,1164748,9,'Thanks'),(74643,1170456,6,'Orchestrator'),(74643,1172441,7,'Art Direction'),(74643,1187029,9,'Thanks'),(74643,1194468,3,'Executive Producer'),(74643,1194468,3,'Unit Production Manager'),(74643,1194471,1,'Still Photographer'),(74643,1194472,11,'Gaffer'),(74643,1217505,9,'Stunts'),(74643,1307540,8,'Hairstylist'),(74643,1319166,8,'Makeup Designer'),(74643,1334782,7,'Assistant Art Director'),(74643,1335059,9,'Special Effects Coordinator'),(74643,1337647,6,'Foley'),(74643,1337651,10,'Visual Effects'),(74643,1337651,9,'Thanks'),(74643,1338670,8,'Hairstylist'),(74643,1345651,1,'Camera Operator'),(74643,1355529,7,'Art Department Coordinator'),(74643,1362330,9,'Stunt Coordinator'),(74643,1370953,9,'Stunts'),(74643,1391598,8,'Set Costumer'),(74643,1400014,7,'Leadman'),(74643,1402245,6,'Sound'),(74643,1407214,6,'Sound'),(74643,1409961,9,'Stunts'),(74643,1412485,10,'Visual Effects Producer'),(74643,1413133,7,'Location Scout'),(74643,1414984,8,'Hairstylist'),(74643,1417863,8,'Makeup Artist'),(74643,1420160,1,'Additional Camera'),(74643,1424701,8,'Set Costumer'),(74643,1428233,8,'Makeup Artist'),(74643,1432044,8,'Set Costumer'),(74643,1434621,1,'Camera Operator'),(74643,1439145,7,'Greensman'),(74643,1443032,8,'Hairstylist'),(74643,1443038,8,'Makeup Artist'),(74643,1444908,8,'Hair Designer'),(74643,1444909,8,'Hairstylist'),(74643,1455496,9,'Stunts'),(74643,1460739,8,'Key Hair Stylist'),(74643,1463435,3,'Production Coordinator'),(74643,1483569,7,'Construction Coordinator'),(74643,1484966,8,'Hairstylist'),(74643,1493076,2,'Assistant Director'),(74643,1532613,1,'First Assistant Camera'),(74643,1534982,9,'Propmaker'),(74643,1536107,1,'Camera Operator'),(74643,1542343,3,'Executive In Charge Of Production'),(74643,1542345,3,'Executive In Charge Of Production'),(74643,1546085,8,'Hairstylist'),(74643,1546823,8,'Makeup Artist'),(74643,1548527,8,'Hairstylist'),(74643,1548528,8,'Makeup Artist'),(74643,1548530,8,'Hairstylist'),(74643,1549011,9,'Post-Production Manager'),(74643,1549012,3,'Production Supervisor'),(74643,1549013,7,'Art Department Assistant'),(74643,1549014,9,'Propmaker'),(74643,1549015,7,'Construction Foreman'),(74643,1549016,6,'Sound mixer'),(74643,1549017,6,'ADR & Dubbing'),(74643,1549018,6,'Sound'),(74643,1549019,6,'Foley'),(74643,1549020,6,'Boom Operator'),(74643,1549021,9,'Special Effects'),(74643,1549022,10,'Pyrotechnic Supervisor'),(74643,1549023,10,'Digital Compositors'),(74643,1549024,10,'Digital Compositors'),(74643,1549025,9,'Stunts'),(74643,1549026,9,'Stunts Coordinator'),(74643,1549107,1,'Grip'),(74643,1549108,11,'Rigging Grip'),(74643,1549109,1,'Grip'),(74643,1549110,11,'Rigging Grip'),(74643,1549111,1,'Grip'),(74643,1549117,1,'First Assistant Camera'),(74643,1549118,1,'First Assistant Camera'),(74643,1549119,11,'Electrician'),(74643,1549120,1,'First Assistant Camera'),(74643,1549121,11,'Rigging Grip'),(74643,1549348,5,'Digital Intermediate'),(74643,1549349,5,'Color Timer'),(74643,1549353,3,'Executive Producer'),(74643,1549354,9,'Driver'),(74643,1549355,9,'Transportation Coordinator'),(74643,1549499,9,'Stand In'),(74643,1549500,2,'Script Supervisor'),(83666,2949,6,'Original Music Composer'),(83666,2997,3,'Producer'),(83666,5655,2,'Director'),(83666,5655,4,'Writer'),(83666,5655,3,'Producer'),(83666,5667,1,'Director of Photography'),(83666,5669,3,'Casting'),(83666,38803,4,'Writer'),(83666,38805,5,'Editor'),(83666,52991,3,'Executive Producer'),(83666,67758,9,'Thanks'),(83666,1004835,3,'Producer'),(83666,1004836,3,'Producer'),(83666,1023711,7,'Production Design'),(83666,1023712,7,'Set Decoration'),(83666,1023713,8,'Costume Design'),(83666,1078304,5,'Digital Intermediate'),(83666,1407019,9,'Visual Effects Editor'),(318850,4500,6,'Music'),(318850,9018,4,'Novel'),(318850,23487,9,'Cinematography'),(318850,110618,4,'Screenplay'),(318850,110618,2,'Director'),(318850,110619,4,'Screenplay'),(39180,21792,4,'Story'),(39180,21792,4,'Writer'),(39180,50942,4,'Writer'),(39180,61175,2,'Director'),(39180,67776,4,'Adaptation'),(39180,71001,4,'Story'),(39180,122432,4,'Writer'),(39180,122433,4,'Writer'),(39180,122434,4,'Story'),(39180,122435,4,'Adaptation'),(49950,7713,3,'Executive Producer'),(49950,11877,7,'Production Design'),(49950,3114,1,'Director of Photography'),(49950,21035,3,'Producer'),(49950,21962,6,'Original Music Composer'),(49950,59932,3,'Casting'),(49950,55955,5,'Editor'),(49950,81699,3,'Producer'),(49950,143079,2,'Director'),(49950,564949,4,'Writer'),(49950,564949,3,'Executive Producer'),(49950,1128308,4,'Writer'),(49950,1128308,3,'Producer'),(49950,1128309,4,'Writer'),(49950,1128309,3,'Executive Producer'),(49950,1128310,4,'Writer'),(49950,1128310,3,'Producer'),(49950,1128311,3,'Producer'),(49950,1128312,3,'Producer'),(49950,1128313,3,'Producer'),(40160,10629,10,'Visual Effects'),(40160,7501,2,'Director'),(40160,8885,8,'Costume Design'),(40160,10009,7,'Production Design'),(40160,14436,8,'Makeup Artist'),(40160,12277,4,'Screenplay'),(40160,12277,4,'Story'),(40160,13942,8,'Makeup Artist'),(40160,16653,8,'Hairstylist'),(40160,19422,3,'Executive Producer'),(40160,21821,5,'Editor'),(40160,30605,1,'Director of Photography'),(40160,52025,6,'Original Music Composer'),(40160,58180,4,'Screenplay'),(40160,77491,3,'Producer'),(40160,102232,3,'Executive Producer'),(40160,554224,3,'Producer'),(40160,1027800,7,'Set Decoration'),(40160,1362582,8,'Hairstylist'),(40160,1364856,7,'Art Direction'),(40160,1364857,10,'Visual Effects Supervisor'),(40160,1364859,8,'Makeup Artist'),(152599,2240,1,'Director of Photography'),(152599,5634,8,'Costume Design'),(152599,19658,3,'Producer'),(152599,20561,2,'Director'),(152599,20561,3,'Producer'),(152599,20561,4,'Writer'),(152599,20568,5,'Editor'),(152599,60187,3,'Producer'),(152599,957292,7,'Set Decoration'),(152599,963170,7,'Production Design'),(152599,1099631,5,'Editor'),(152599,1109464,7,'Art Direction'),(152599,1128690,3,'Producer'),(152599,1133010,4,'Writer'),(152599,1336716,10,'Visual Effects Supervisor'),(152599,1393558,7,'Leadman'),(68727,1114,5,'Editor'),(68727,1570,1,'Director of Photography'),(68727,2034,2,'Director'),(68727,2034,3,'Producer'),(68727,2071,7,'Production Design'),(68727,2073,3,'Casting'),(68727,4249,3,'Casting'),(68727,6373,3,'Executive Producer'),(68727,8999,4,'Writer'),(68727,17599,3,'Executive Producer'),(68727,26193,7,'Supervising Art Director'),(68727,57583,3,'Producer'),(68727,84664,6,'Original Music Composer'),(68727,141570,8,'Costume Design'),(68727,190341,4,'Writer'),(68727,966721,7,'Set Decoration'),(68727,1024297,7,'Art Direction'),(68727,1394040,1,'Still Photographer'),(68727,1402943,2,'Script Supervisor'),(68727,1412120,6,'Music Editor'),(73935,17146,1,'Camera Operator'),(73935,57426,5,'Editor'),(73935,57434,4,'Screenplay'),(73935,57434,2,'Director'),(185567,2949,6,'Music'),(185567,40827,6,'Music Editor'),(185567,23398,5,'Editor'),(185567,23828,3,'Casting'),(185567,47818,6,'Sound Re-Recording Mixer'),(185567,28687,7,'Production Design'),(185567,52165,8,'Hairstylist'),(185567,51323,3,'Producer'),(185567,49191,10,'Visual Effects Supervisor'),(185567,52344,4,'Screenplay'),(185567,52353,1,'Director of Photography'),(185567,69987,4,'Screenplay'),(185567,69987,2,'Director'),(185567,141470,11,'Gaffer'),(185567,1332513,8,'Costume Design'),(185567,1374461,6,'Foley'),(185567,1374462,6,'Supervising Sound Editor'),(185567,1404861,5,'Dialogue Editor'),(185567,1405240,1,'Steadicam Operator'),(185567,1410307,9,'Stunt Coordinator'),(185567,1418316,8,'Makeup Department Head'),(185567,1420856,3,'Casting'),(185567,1424630,1,'Camera Operator'),(185567,1424639,2,'Script Supervisor'),(185567,1424686,10,'Visual Effects Supervisor'),(185567,1426838,9,'Property Master'),(185567,1460317,7,'Set Decoration'),(185567,1460319,8,'Hairstylist'),(185567,1460320,9,'Animatronic and Prosthetic Effects'),(185567,1460321,7,'Construction Coordinator'),(185567,1460322,6,'Sound Designer'),(185567,1460322,6,'Sound Effects Editor'),(185567,1460323,5,'First Assistant Editor'),(185567,1460324,9,'Transportation Coordinator'),(185567,1461906,4,'Novel'),(185567,1461907,2,'Script Supervisor'),(264656,59,3,'Producer'),(264656,275,1,'Director of Photography'),(264656,546,3,'Casting'),(264656,2176,2,'Director'),(264656,2176,3,'Executive Producer'),(264656,2176,4,'Writer'),(264656,2889,6,'Sound Re-Recording Mixer'),(264656,7229,6,'Original Music Composer'),(264656,5635,6,'Foley'),(264656,7857,7,'Production Design'),(264656,23780,1,'Steadicam Operator'),(264656,46813,3,'Executive Producer'),(264656,53687,5,'Editor'),(264656,113097,6,'Sound Designer'),(264656,72585,3,'Producer'),(264656,72959,4,'Novel'),(264656,73916,6,'Supervising Sound Editor'),(264656,79253,8,'Costume Design'),(264656,957243,7,'Assistant Art Director'),(264656,986980,3,'Producer'),(264656,1001708,7,'Art Direction'),(264656,1012801,7,'Set Decoration'),(264656,1095271,8,'Makeup Department Head'),(264656,1123338,3,'Executive Producer'),(264656,1226987,4,'Writer'),(264656,1291827,4,'Writer'),(264656,1324118,8,'Makeup Department Head'),(264656,1339456,8,'Set Costumer'),(264656,1339457,8,'Set Costumer'),(264656,1345633,9,'Studio Teachers'),(264656,1378724,6,'Music Editor'),(264656,1378724,6,'Sound Re-Recording Mixer'),(264656,1379632,3,'Executive Producer'),(264656,1379633,3,'Executive Producer'),(264656,1400536,5,'Digital Intermediate'),(264656,1402001,8,'Costume Supervisor'),(264656,1402009,9,'Studio Teachers'),(264656,1406137,2,'Script Supervisor'),(264656,1406903,5,'Digital Intermediate'),(264656,1407225,7,'Construction Coordinator'),(264656,1407227,6,'Sound Effects Editor'),(264656,1411868,7,'Leadman'),(264656,1412423,7,'Art Department Coordinator'),(264656,1431022,6,'Dolby Consultant'),(264656,1444908,8,'Hairstylist'),(264656,1444909,8,'Hairstylist'),(264656,1444910,7,'Greensman'),(264656,1444911,7,'Greensman'),(264656,1444912,9,'Property Master'),(264656,1444913,7,'Greensman'),(264656,1444914,7,'Leadman'),(264656,1444915,7,'Set Decoration Buyer'),(264656,1444916,6,'Foley'),(264656,1444917,9,'Special Effects Coordinator'),(264656,1444918,9,'CGI Supervisor'),(264656,1444919,10,'Visual Effects Producer'),(264656,1444920,10,'Visual Effects Supervisor'),(264656,1444921,9,'Stunt Coordinator'),(264656,1444922,1,'Still Photographer'),(264656,1444923,11,'Rigging Gaffer'),(264656,1444924,11,'Rigging Gaffer'),(264656,1444925,9,'Transportation Coordinator'),(264656,1444926,3,'Location Manager'),(35696,114646,2,'Director'),(35696,114647,4,'Writer'),(38717,140151,2,'Director'),(45269,8219,5,'Editor'),(45269,118,3,'Executive Producer'),(45269,1307,3,'Executive Producer'),(45269,59839,3,'Executive Producer'),(45269,2949,6,'Original Music Composer'),(45269,6379,7,'Production Design'),(45269,8412,8,'Makeup Artist'),(45269,9161,8,'Hairstylist'),(45269,40823,6,'Foley'),(45269,40827,6,'Music Editor'),(45269,16363,3,'Casting'),(45269,17166,8,'Costume Design'),(45269,19807,9,'Thanks'),(45269,30340,2,'Assistant Director'),(45269,37270,3,'Producer'),(45269,37272,9,'Thanks'),(45269,37273,9,'Thanks'),(45269,37276,3,'Producer'),(45269,39651,6,'Orchestrator'),(45269,56021,1,'Director of Photography'),(45269,56021,1,'Camera Operator'),(45269,69452,3,'Executive Producer'),(45269,69881,3,'Executive Producer'),(45269,70500,2,'Director'),(45269,75081,8,'Hairstylist'),(45269,132212,3,'Executive Producer'),(45269,132832,4,'Screenplay'),(45269,959442,2,'Assistant Director'),(45269,963697,7,'Art Department Coordinator'),(45269,1032067,10,'Special Effects Supervisor'),(45269,1108804,9,'CG Supervisor'),(45269,1125550,3,'Co-Executive Producer'),(45269,1203105,9,'Thanks'),(45269,1319628,9,'Post Production Supervisor'),(45269,1320210,7,'Supervising Art Director'),(45269,1327762,7,'Set Decoration'),(45269,1337410,6,'Supervising Sound Editor'),(45269,1340116,6,'Sound Re-Recording Mixer'),(45269,1341750,6,'Supervising Sound Editor'),(45269,1343898,6,'Sound Re-Recording Mixer'),(45269,1364422,10,'Visual Effects Supervisor'),(45269,1384725,3,'Line Producer'),(45269,1394027,9,'Visual Effects Editor'),(45269,1395713,6,'Production Sound Mixer'),(45269,1401126,8,'Wigmaker'),(45269,1404285,9,'Visual Effects Editor'),(45269,1404286,9,'Visual Effects Editor'),(45269,1405206,6,'ADR & Dubbing'),(45269,1408338,10,'Visual Effects Producer'),(45269,1409764,6,'Sound Effects Editor'),(45269,1410202,3,'Location Manager'),(45269,1411326,2,'Assistant Director'),(45269,1412088,6,'Foley'),(45269,1412708,10,'Visual Effects Producer'),(45269,1413927,8,'Prosthetic Supervisor'),(45269,1416447,8,'Makeup Artist'),(45269,1419220,1,'Steadicam Operator'),(45269,1421657,1,'Still Photographer'),(45269,1428473,7,'Property Master'),(45269,1428509,3,'Location Manager'),(45269,1428510,7,'Location Scout'),(45269,1430072,7,'Art Direction'),(45269,1430408,8,'Hair Designer'),(45269,1433625,2,'Script Supervisor'),(45269,1434919,5,'Dialogue Editor'),(45269,1444956,6,'ADR & Dubbing'),(45269,1456407,5,'Dialogue Editor'),(45269,1456410,11,'Gaffer'),(45269,1539083,3,'Co-Producer'),(45269,1539086,3,'Producer'),(45269,1539834,3,'Production Manager'),(45269,1539835,3,'Executive In Charge Of Post Production'),(45269,1539988,6,'Sound mixer'),(45269,1539990,6,'ADR & Dubbing'),(45269,1539991,9,'Special Effects'),(45269,1539992,9,'Visual Effects Editor'),(45269,1539993,10,'Digital Compositors'),(45269,1539999,10,'Visual Effects Coordinator'),(45269,1540003,10,'Digital Compositors'),(45269,1540011,10,'Digital Compositors'),(45269,1540015,10,'Visual Effects'),(45269,1540029,10,'Digital Compositors'),(45269,1540470,5,'Color Timer'),(45269,1540471,6,'Music Supervisor'),(45269,1540472,6,'Orchestrator'),(45269,1540473,6,'Orchestrator'),(45269,1540474,9,'Transportation Captain'),(45269,1540475,9,'Transportation Captain'),(45269,1540477,9,'Public Relations'),(45269,1540484,9,'Dialect Coach'),(45269,1540485,7,'Location Scout'),(45269,1540486,9,'Stand In'),(45269,1673059,9,'Stand In'),(205596,471,7,'Production Design'),(205596,15841,5,'Editor'),(205596,2949,6,'Original Music Composer'),(205596,11271,8,'Costume Design'),(205596,40823,6,'Foley'),(205596,16363,3,'Casting'),(205596,51898,1,'Director of Photography'),(205596,58283,1,'Camera Operator'),(205596,60335,7,'Supervising Art Director'),(205596,77965,2,'Director'),(205596,221850,4,'Screenplay'),(205596,221850,3,'Executive Producer'),(205596,999561,6,'Sound Designer'),(205596,1080589,3,'Producer'),(205596,1337410,6,'Supervising Sound Editor'),(205596,1338217,7,'Construction Coordinator'),(205596,1338277,9,'Property Master'),(205596,1340116,6,'Sound Re-Recording Mixer'),(205596,1359989,8,'Makeup Artist'),(205596,1367562,1,'Still Photographer'),(205596,1376803,10,'Visual Effects Supervisor'),(205596,1384721,7,'Art Direction'),(205596,1384722,7,'Art Direction'),(205596,1384723,3,'Producer'),(205596,1384724,3,'Producer'),(205596,1384725,3,'Co-Producer'),(205596,1390382,6,'Music Editor'),(205596,1405798,1,'Steadicam Operator'),(205596,1410205,2,'Script Supervisor'),(205596,1416452,5,'Dialogue Editor'),(205596,1424794,1,'Camera Operator'),(205596,1430497,9,'Second Unit Cinematographer'),(205596,1437152,8,'Makeup Artist'),(205596,1437153,8,'Makeup Artist'),(205596,1437155,7,'Assistant Art Director'),(205596,1437156,6,'Sound Effects Editor'),(205596,1437159,6,'Sound Re-Recording Mixer'),(205596,1437160,10,'Visual Effects Producer'),(205596,1437161,10,'Visual Effects Supervisor'),(205596,1437162,5,'Digital Intermediate'),(205596,1437164,9,'Dialect Coach'),(205596,1437168,3,'Location Manager'),(205596,1437169,3,'Production Manager'),(132232,10828,3,'Executive Producer'),(132232,23545,3,'Casting'),(132232,44138,3,'Producer'),(132232,51897,6,'Original Music Composer'),(132232,55613,8,'Costume Design'),(132232,62120,7,'Production Design'),(132232,64923,5,'Editor'),(132232,510218,4,'Writer'),(132232,1094761,3,'Producer'),(132232,1094761,4,'Writer'),(132232,1094762,9,'Cinematography'),(132232,1113116,2,'Director'),(132232,1113116,4,'Writer'),(132232,1551659,9,'Video Assist Operator'),(208134,5953,4,'Screenplay'),(208134,5953,3,'Producer'),(208134,5953,4,'Story'),(208134,9656,4,'Screenplay'),(208134,9656,3,'Producer'),(208134,9656,4,'Story'),(208134,37850,4,'Story'),(208134,56578,4,'Screenplay'),(208134,56578,2,'Director'),(208134,56578,3,'Producer'),(208134,56578,4,'Story'),(208134,56580,1,'Director of Photography'),(208134,61432,3,'Producer'),(208134,61440,1,'Director of Photography'),(208134,72406,4,'Story'),(208134,1371036,3,'Associate Producer'),(65086,966,1,'Director of Photography'),(65086,1114,5,'Editor'),(65086,7229,6,'Original Music Composer'),(65086,6227,3,'Co-Producer'),(65086,9003,7,'Production Design'),(65086,10969,3,'Casting'),(65086,12232,3,'Executive Producer'),(65086,12234,3,'Executive Producer'),(65086,17794,7,'Supervising Art Director'),(65086,21036,3,'Executive Producer'),(65086,23447,4,'Screenplay'),(65086,57049,3,'Producer'),(65086,63056,3,'Executive Producer'),(65086,63306,2,'Director'),(65086,66730,3,'Executive Producer'),(65086,70477,3,'Producer'),(65086,158401,3,'Executive Producer'),(65086,174205,3,'Co-Producer'),(65086,934760,4,'Novel'),(65086,937239,3,'Producer'),(65086,965761,7,'Set Decoration'),(65086,979474,8,'Costume Design'),(65086,999786,3,'Executive Producer'),(65086,1326396,7,'Art Direction'),(65086,1326397,8,'Costume Supervisor'),(65086,1358016,3,'Co-Producer'),(65086,1395761,3,'Co-Producer'),(65086,1428264,3,'Executive Producer'),(134411,5914,3,'Casting'),(134411,8576,6,'Music'),(134411,10684,3,'Producer'),(134411,12232,3,'Producer'),(134411,12234,3,'Producer'),(134411,18918,3,'Producer'),(134411,50459,3,'Executive Producer'),(134411,62781,7,'Set Decoration'),(134411,66721,4,'Screenplay'),(134411,66721,3,'Executive Producer'),(134411,66740,5,'Editor'),(134411,76422,4,'Screenplay'),(134411,76422,2,'Director'),(134411,587803,8,'Costume Design'),(134411,963861,1,'Director of Photography'),(134411,1024910,3,'Casting'),(134411,1027579,7,'Production Design'),(134411,1039217,3,'Producer'),(134411,1074308,7,'Art Direction'),(134411,1095252,3,'Producer'),(134411,1105708,3,'Producer'),(134411,1105709,3,'Producer'),(134411,1309209,8,'Makeup Department Head'),(134411,1319157,8,'Costume Supervisor'),(134411,1319158,8,'Costume Supervisor'),(287903,2031,3,'Casting'),(287903,2532,3,'Casting'),(287903,9420,7,'Production Design'),(287903,13179,6,'Sound Re-Recording Mixer'),(287903,11012,2,'Director'),(287903,11012,4,'Writer'),(287903,11012,3,'Producer'),(287903,20568,5,'Editor'),(287903,52452,6,'Music Supervisor'),(287903,52453,6,'Music Supervisor'),(287903,54211,3,'Producer'),(287903,57196,6,'Original Music Composer'),(287903,63972,1,'Director of Photography'),(287903,61091,3,'Producer'),(287903,91059,3,'Executive Producer'),(287903,90281,3,'Producer'),(287903,126130,7,'Set Decoration'),(287903,132614,10,'Special Effects Supervisor'),(287903,221162,4,'Writer'),(287903,962679,7,'Supervising Art Director'),(287903,1016177,3,'Casting'),(287903,1039264,5,'Dialogue Editor'),(287903,1085296,3,'Casting Associate'),(287903,1194081,10,'Visual Effects Producer'),(287903,1209871,1,'Additional Photography'),(287903,1310930,8,'Costume Design'),(287903,1377293,6,'Sound Designer'),(287903,1388873,10,'Visual Effects Producer'),(287903,1391730,1,'Still Photographer'),(287903,1395709,6,'Sound Re-Recording Mixer'),(287903,1409487,3,'Associate Producer'),(287903,1418374,10,'Animation Director'),(287903,1418380,10,'Animation Director'),(287903,1443683,4,'Writer'),(287903,1443683,3,'Executive Producer'),(287903,1457329,10,'Visual Effects Supervisor'),(287903,1467461,9,'Production Intern'),(287903,1494212,5,'Digital Intermediate'),(287903,1511086,6,'Supervising Sound Editor'),(287903,1518774,7,'Art Department Coordinator'),(287903,1544669,6,'Sound Effects Editor'),(287903,1545403,2,'Script Supervisor'),(287903,1548485,6,'Music Editor'),(287903,1569329,10,'Animation'),(287903,1569330,10,'Special Effects Supervisor'),(287903,1569331,9,'Armorer'),(287903,1569332,10,'Visual Effects Coordinator'),(287903,1569333,10,'Visual Effects Coordinator'),(287903,1569334,10,'Visual Effects Coordinator'),(287903,1569335,9,'Visual Effects Editor'),(287903,1569336,10,'Visual Effects Producer'),(287903,1569337,10,'Visual Effects Producer'),(287903,1569338,10,'Visual Effects Producer'),(287903,1569340,10,'Visual Effects Supervisor'),(287903,1569341,11,'Rigging Gaffer'),(287903,1569342,1,'Additional Camera'),(287903,1569344,1,'First Assistant Camera'),(287903,1569346,8,'Key Hair Stylist'),(287903,1569347,8,'Makeup Designer'),(287903,1569348,9,'Makeup Effects'),(287903,1569349,5,'First Assistant Editor'),(287903,1583553,8,'Costume Supervisor'),(77016,131,3,'Executive Producer'),(77016,563,5,'Editor'),(77016,5914,3,'Casting'),(77016,12232,3,'Executive Producer'),(77016,13224,6,'Dolby Consultant'),(77016,19769,4,'Screenplay'),(77016,19769,2,'Director'),(77016,19769,3,'Producer'),(77016,16467,7,'Art Direction'),(77016,16994,6,'Sound Designer'),(77016,17211,3,'Executive Producer'),(77016,23788,9,'Makeup Effects'),(77016,46589,8,'Costume Design'),(77016,53637,7,'Production Design'),(77016,54420,6,'Original Music Composer'),(77016,62279,7,'Set Decoration'),(77016,92332,8,'Hairstylist'),(77016,92336,9,'Makeup Effects'),(77016,75624,9,'Choreographer'),(77016,75625,3,'Executive Producer'),(77016,115120,1,'Director of Photography'),(77016,131413,9,'Stunt Coordinator'),(77016,548439,6,'Foley'),(77016,548445,6,'Foley'),(77016,999786,3,'Executive Producer'),(77016,1001705,3,'Executive Producer'),(77016,1010751,6,'Sound Re-Recording Mixer'),(77016,1024910,3,'Casting'),(77016,1077782,6,'Foley'),(77016,1095252,3,'Producer'),(77016,1095253,3,'Producer'),(77016,1138800,3,'Executive Producer'),(77016,1271767,3,'Executive Producer'),(77016,1335069,9,'Special Effects Coordinator'),(77016,1364400,8,'Makeup Department Head'),(77016,1364409,7,'Construction Coordinator'),(77016,1364417,6,'Sound Re-Recording Mixer'),(77016,1364427,6,'Music Editor'),(77016,1395685,6,'Music Editor'),(77016,1400354,5,'Digital Intermediate'),(77016,1402501,1,'Camera Operator'),(77016,1409283,3,'Publicist'),(77016,1410345,9,'Property Master'),(77016,1417972,6,'Supervising Sound Editor'),(77016,1419105,1,'Still Photographer'),(77016,1419919,5,'Dialogue Editor'),(77016,1422073,6,'Music Editor'),(77016,1432032,8,'Hairstylist'),(77016,1432033,8,'Makeup Artist'),(77016,1432034,7,'Art Department Coordinator'),(77016,1432035,9,'Property Master'),(77016,1432038,10,'Visual Effects Producer'),(77016,1432039,10,'Visual Effects Supervisor'),(77016,1432042,1,'Camera Operator'),(77016,1432043,11,'Rigging Gaffer'),(77016,1432044,8,'Costume Supervisor'),(77016,1432045,8,'Set Costumer'),(77016,1432047,5,'Digital Intermediate'),(77016,1432049,5,'Digital Intermediate'),(77016,1432050,5,'First Assistant Editor'),(77016,1432052,3,'Location Manager'),(77016,1432053,9,'Unit Publicist'),(77016,1432054,9,'Studio Teachers'),(77016,1529990,6,'Music Supervisor'),(77016,1529999,6,'Music Supervisor'),(266856,2236,3,'Producer'),(266856,2238,3,'Producer'),(266856,9151,3,'Executive Producer'),(266856,40810,6,'Supervising Sound Editor'),(266856,40813,5,'Dialogue Editor'),(266856,40813,6,'ADR Editor'),(266856,40816,6,'Sound Designer'),(266856,21655,1,'Director of Photography'),(266856,16363,3,'Casting'),(266856,26196,8,'Key Makeup Artist'),(266856,42178,6,'Foley Editor'),(266856,71574,7,'Production Design'),(266856,76998,2,'Director'),(266856,117992,6,'Orchestrator'),(266856,117992,6,'Music'),(266856,132643,1,'Steadicam Operator'),(266856,948648,3,'Producer'),(266856,958649,3,'Co-Producer'),(266856,1001393,5,'Editor'),(266856,1019426,3,'Casting Assistant'),(266856,1032067,10,'Special Effects Supervisor'),(266856,1041394,3,'Producer'),(266856,1041394,4,'Screenplay'),(266856,1178898,11,'Gaffer'),(266856,1300064,3,'Casting Assistant'),(266856,1318478,8,'Costume Design'),(266856,1320210,7,'Supervising Art Director'),(266856,1337411,6,'Music Editor'),(266856,1338970,6,'Sound Designer'),(266856,1338971,6,'Foley Editor'),(266856,1338973,6,'Sound Effects Editor'),(266856,1340728,9,'Stunt Coordinator'),(266856,1372465,4,'Book'),(266856,1387385,7,'Set Decoration'),(266856,1394004,6,'Sound Re-Recording Mixer'),(266856,1401126,8,'Wigmaker'),(266856,1402943,2,'Script Supervisor'),(266856,1406815,7,'Greensman'),(266856,1408374,6,'Sound Effects Editor'),(266856,1410203,9,'Dialect Coach'),(266856,1412120,6,'Music Editor'),(266856,1416468,1,'Camera Operator'),(266856,1421273,5,'Dialogue Editor'),(266856,1421273,6,'ADR Editor'),(266856,1421642,8,'Prosthetic Designer'),(266856,1421642,8,'Hair Designer'),(266856,1421642,8,'Makeup Designer'),(266856,1422832,3,'Unit Production Manager'),(266856,1427557,1,'Still Photographer'),(266856,1429628,8,'Makeup Artist'),(266856,1446413,9,'Post Production Supervisor'),(266856,1465936,8,'Hairstylist'),(266856,1465936,8,'Makeup Artist'),(266856,1465937,7,'Assistant Art Director'),(266856,1465940,9,'Property Master'),(266856,1465947,6,'Sound Re-Recording Mixer'),(266856,1465948,8,'Costume Supervisor'),(266856,1465950,5,'First Assistant Editor'),(266856,1465950,5,'Associate Editor'),(266856,1465951,3,'Location Manager'),(266856,1465952,3,'Location Manager'),(266856,1465953,9,'Unit Publicist'),(266856,1492088,3,'Executive Producer'),(266856,1516449,10,'Visual Effects Producer'),(266856,1555688,11,'Rigging Gaffer'),(266856,1565661,10,'Visual Effects Coordinator'),(266856,1565662,10,'Visual Effects Coordinator'),(266856,1578875,7,'Art Department Assistant'),(266856,1619627,6,'Music Supervisor'),(266856,1640361,6,'Production Sound Mixer'),(266856,1650817,6,'Boom Operator'),(266856,1659949,3,'Executive Producer'),(266856,1665616,7,'Title Designer'),(266856,1746697,3,'Associate Producer'),(266856,1746698,2,'First Assistant Director'),(266856,1746699,3,'Production Accountant'),(266856,1746701,4,'Storyboard'),(266856,1746702,3,'Casting Associate'),(266856,1746703,6,'Assistant Sound Editor'),(266856,1746704,6,'Music Supervisor'),(266856,1746705,6,'Orchestrator'),(266856,1816126,7,'Sculptor'),(266856,1878501,7,'Greensman'),(266856,1878505,7,'Painter'),(266856,1878521,1,'Key Grip'),(266856,1878524,3,'Production Coordinator'),(228970,373,6,'Sound Effects Editor'),(228970,368,3,'Producer'),(228970,3225,4,'Writer'),(228970,5490,3,'Casting'),(228970,6924,8,'Costume Supervisor'),(228970,13152,8,'Makeup Department Head'),(228970,20483,9,'Property Master'),(228970,21268,7,'Production Design'),(228970,46588,3,'Producer'),(228970,52993,3,'Producer'),(228970,113043,6,'Foley Editor'),(228970,113048,9,'Sound Recordist'),(228970,113049,6,'First Assistant Sound Editor'),(228970,113055,6,'Supervising Sound Editor'),(228970,69371,2,'Director'),(228970,69371,5,'Editor'),(228970,83077,7,'Painter'),(228970,227225,8,'Costume Design'),(228970,232158,6,'Music Supervisor'),(228970,1020060,7,'Set Decoration'),(228970,1031621,6,'Sound Effects Editor'),(228970,1031978,1,'Director of Photography'),(228970,1047629,8,'Makeup Artist'),(228970,1263516,4,'Original Story'),(228970,1263516,3,'Associate Producer'),(228970,1263516,3,'Executive Producer'),(228970,1287614,5,'Editor'),(228970,1287615,7,'Art Direction'),(228970,1338372,6,'Foley'),(228970,1338976,6,'Sound Re-Recording Mixer'),(228970,1367493,6,'Foley'),(228970,1367494,6,'Sound Designer'),(228970,1367494,6,'Supervising Sound Editor'),(228970,1377131,1,'Steadicam Operator'),(228970,1384367,5,'Dialogue Editor'),(228970,1390356,10,'Visual Effects Producer'),(228970,1394489,3,'Executive Producer'),(228970,1397196,6,'Sound Effects Editor'),(228970,1406137,2,'Script Supervisor'),(228970,1406190,5,'Dialogue Editor'),(228970,1407739,1,'Still Photographer'),(228970,1414537,8,'Hairstylist'),(228970,1415965,5,'Dialogue Editor'),(228970,1417838,8,'Key Costumer'),(228970,1418010,9,'Unit Publicist'),(228970,1419725,10,'Visual Effects Supervisor'),(228970,1434899,8,'Makeup Artist'),(228970,1451417,2,'Script Supervisor'),(228970,1470524,8,'Makeup Artist'),(228970,1470525,7,'Art Department Coordinator'),(228970,1470526,7,'Construction Coordinator'),(228970,1470527,1,'Camera Operator'),(228970,1470528,8,'Set Costumer'),(228970,1470535,10,'Visual Effects Supervisor'),(228970,1470536,9,'Scenic Artist'),(228970,1619730,9,'Armorer'),(228970,1630903,5,'First Assistant Editor'),(228970,1789398,9,'Special Effects Coordinator'),(228970,1830526,3,'Production Coordinator'),(228970,1837277,2,'First Assistant Director'),(228970,1848863,6,'Boom Operator'),(228970,1867517,7,'Set Decoration'),(228970,1867518,8,'Makeup Artist'),(228970,1867525,7,'Set Designer'),(228970,1867528,7,'Greensman'),(228970,1867529,7,'Greensman'),(228970,1867530,9,'Stunt Coordinator'),(228970,1867531,11,'Lighting Technician'),(228970,1867541,5,'First Assistant Editor'),(64690,8377,6,'Original Music Composer'),(64690,5337,5,'Dialogue Editor'),(64690,6044,3,'Casting'),(64690,6968,9,'Thanks'),(64690,9040,1,'Director of Photography'),(64690,9439,6,'Foley'),(64690,9440,6,'Foley'),(64690,9250,3,'Unit Production Manager'),(64690,12561,9,'Post Production Supervisor'),(64690,16736,6,'Sound Designer'),(64690,20743,3,'Producer'),(64690,21183,2,'Director'),(64690,23485,3,'Producer'),(64690,40142,6,'Sound Re-Recording Mixer'),(64690,49886,7,'Leadman'),(64690,52456,3,'Casting Associate'),(64690,55119,9,'Thanks'),(64690,73453,3,'Producer'),(64690,56960,4,'Screenplay'),(64690,56960,9,'Thanks'),(64690,57077,3,'Co-Producer'),(64690,60106,7,'Production Design'),(64690,62723,5,'Digital Intermediate'),(64690,66726,3,'Producer'),(64690,76016,7,'Art Direction'),(64690,79664,3,'Unit Production Manager'),(64690,198845,6,'ADR & Dubbing'),(64690,548412,8,'Makeup Artist'),(64690,590473,4,'Novel'),(64690,966286,5,'Editor'),(64690,1031810,6,'Sound Effects Editor'),(64690,1033102,11,'Lighting Technician'),(64690,1125189,3,'Co-Producer'),(64690,1182092,3,'Producer'),(64690,1193620,8,'Costume Design'),(64690,1318915,9,'Special Effects Coordinator'),(64690,1322014,8,'Costume Supervisor'),(64690,1334400,9,'Property Master'),(64690,1336716,10,'Visual Effects Supervisor'),(64690,1337463,6,'Sound Re-Recording Mixer'),(64690,1357063,9,'Stunt Coordinator'),(64690,1363083,6,'Music Supervisor'),(64690,1387183,5,'Dialogue Editor'),(64690,1390353,6,'Sound Designer'),(64690,1392097,10,'Visual Effects Supervisor'),(64690,1395180,9,'Creative Consultant'),(64690,1395275,1,'Still Photographer'),(64690,1397725,7,'Set Decoration'),(64690,1399323,8,'Set Costumer'),(64690,1407205,5,'Digital Intermediate'),(64690,1407813,6,'Sound Effects Editor'),(64690,1409245,5,'Digital Intermediate'),(64690,1409245,5,'First Assistant Editor'),(64690,1411258,8,'Hairstylist'),(64690,1412990,1,'Steadicam Operator'),(64690,1415647,3,'Location Manager'),(64690,1419119,9,'Unit Publicist'),(64690,1421721,9,'Special Effects'),(64690,1424151,8,'Makeup Department Head'),(64690,1427364,7,'Art Department Coordinator'),(64690,1427366,7,'Construction Coordinator'),(64690,1427375,9,'Sound Recordist'),(64690,1427377,10,'Visual Effects Producer'),(64690,1427378,1,'Camera Operator'),(64690,1427379,11,'Rigging Gaffer'),(64690,1427380,5,'Digital Intermediate'),(64690,1427381,6,'Music Editor'),(64690,1427382,9,'Transportation Coordinator'),(64690,1427383,9,'Picture Car Coordinator'),(64690,1427384,2,'Script Supervisor'),(64690,1451798,2,'Assistant Director'),(64690,1521504,8,'Hair Department Head'),(64690,1555693,6,'Music Supervisor'),(64690,1585029,9,'Stunts'),(232679,52038,2,'Director'),(232679,55078,4,'Writer'),(232679,55078,3,'Producer'),(232679,69144,4,'Writer'),(232679,1304298,8,'Makeup Artist'),(232679,1395070,4,'Novel'),(38843,1527,1,'Director of Photography'),(38843,1899,3,'Producer'),(38843,5362,3,'Casting'),(38843,5363,3,'Casting'),(38843,5666,6,'Music'),(38843,9619,6,'Sound Re-Recording Mixer'),(38843,45848,3,'Casting'),(38843,21264,9,'Stunt Coordinator'),(38843,43899,3,'Co-Producer'),(38843,56690,11,'Gaffer'),(38843,66963,3,'Producer'),(38843,83749,4,'Screenplay'),(38843,83655,6,'Music Supervisor'),(38843,133205,4,'Screenplay'),(38843,133206,4,'Novel'),(38843,774208,7,'Production Design'),(38843,957731,5,'Editor'),(38843,962063,8,'Costume Design'),(38843,1194379,1,'Camera Operator'),(38843,1223175,2,'Director'),(38843,1301009,9,'Stunt Coordinator'),(38843,1324015,7,'Set Designer'),(38843,1325908,7,'Set Decoration'),(38843,1333084,9,'Property Master'),(38843,1333986,7,'Art Direction'),(38843,1341781,6,'Sound Re-Recording Mixer'),(38843,1345594,6,'Sound Effects Editor'),(38843,1357059,5,'Dialogue Editor'),(38843,1378695,6,'Sound Designer'),(38843,1397174,9,'Special Effects Coordinator'),(38843,1400390,7,'Construction Coordinator'),(38843,1406057,9,'Unit Publicist'),(38843,1407028,1,'Still Photographer'),(38843,1408787,1,'Camera Operator'),(38843,1408787,1,'Steadicam Operator'),(38843,1409718,8,'Assistant Costume Designer'),(38843,1421693,8,'Hairstylist'),(38843,1422963,7,'Art Department Assistant'),(38843,1424183,5,'Additional Editing'),(38843,1438597,7,'Art Department Assistant'),(38843,1441272,8,'Makeup Artist'),(38843,1441324,11,'Best Boy Electric'),(38843,1480966,2,'Script Supervisor'),(38843,1544669,6,'Supervising Sound Editor'),(38843,1713972,3,'Unit Production Manager'),(38843,1713977,4,'Storyboard'),(38843,1713980,6,'Sound Mixer'),(38843,1713981,6,'Boom Operator'),(38843,1713986,8,'Set Costumer'),(38843,1713987,3,'Location Manager'),(38843,1713988,3,'Production Coordinator'),(38843,1713989,9,'Special Effects'),(38843,1713990,7,'Construction Foreman'),(342521,18264,6,'Original Music Composer'),(342521,42634,7,'Production Design'),(342521,42635,7,'Art Direction'),(342521,61550,1,'Director of Photography'),(342521,63223,3,'Producer'),(342521,136153,2,'Director'),(342521,291263,3,'Producer'),(342521,291263,4,'Writer'),(342521,298410,3,'Producer'),(342521,1186278,6,'Original Music Composer'),(342521,1193632,8,'Costume Design'),(342521,1253678,7,'Set Decoration'),(342521,1350906,4,'Writer'),(342521,1383482,9,'Stunts'),(342521,1472891,2,'Script Supervisor'),(342521,1538796,5,'Editor'),(342521,1587123,2,'Script Supervisor'),(342521,1748386,3,'Producer'),(45272,1527,9,'Cinematography'),(45272,2219,3,'Producer'),(45272,9966,5,'Editor'),(45272,19016,6,'Music'),(45272,36427,3,'Producer'),(45272,81699,3,'Producer'),(45272,129718,2,'Director'),(45272,129718,4,'Writer'),(45272,956624,3,'Producer'),(45272,1046685,5,'Editor'),(97367,35180,3,'Producer'),(97367,53073,3,'Producer'),(97367,53077,3,'Producer'),(97367,53078,3,'Producer'),(97367,54926,1,'Director of Photography'),(97367,96128,8,'Makeup Department Head'),(97367,119179,3,'Casting'),(97367,122451,6,'Original Music Composer'),(97367,132973,4,'Story'),(97367,132973,4,'Screenplay'),(97367,139098,2,'Director'),(97367,139098,4,'Story'),(97367,139098,4,'Screenplay'),(97367,968531,5,'Editor'),(97367,968532,5,'Editor'),(97367,1076793,4,'Screenplay'),(97367,1193617,7,'Production Design'),(97367,1193618,7,'Art Direction'),(97367,1193619,7,'Set Decoration'),(97367,1193620,8,'Costume Design'),(97367,1193621,9,'Property Master'),(97367,1193622,1,'Still Photographer'),(254904,517,3,'Executive Producer'),(254904,1315,5,'Editor'),(254904,5914,3,'Casting'),(254904,7229,6,'Music'),(254904,6412,7,'Set Decoration'),(254904,15328,7,'Production Design'),(254904,21370,2,'Director'),(254904,25729,3,'Casting'),(254904,94453,3,'Producer'),(254904,99411,4,'Screenplay'),(254904,113307,4,'Screenplay'),(254904,904186,1,'Director of Photography'),(254904,1046231,7,'Art Direction'),(254904,1052870,8,'Costume Design'),(254904,1215499,4,'Novel'),(254904,1486525,2,'Script Supervisor'),(64689,287,3,'Producer'),(64689,6410,3,'Casting'),(64689,3498,3,'Executive Producer'),(64689,5634,7,'Production Design'),(64689,5634,8,'Costume Design'),(64689,19759,5,'Editor'),(64689,20458,3,'Producer'),(64689,20567,3,'Executive Producer'),(64689,37618,2,'Director'),(64689,37618,4,'Screenplay'),(64689,60187,3,'Producer'),(64689,62238,3,'Executive Producer'),(64689,67113,1,'Director of Photography'),(64689,94092,4,'Novel'),(64689,234982,9,'Thanks'),(64689,566958,3,'Producer'),(64689,566962,3,'Producer'),(64689,1027025,3,'Executive Producer'),(64689,1046154,3,'Executive Producer'),(64689,1046155,3,'Executive Producer'),(64689,1336716,10,'Visual Effects Supervisor'),(157849,474,3,'Casting'),(157849,4222,3,'Casting'),(157849,5228,6,'Music'),(157849,6078,6,'Sound Re-Recording Mixer'),(157849,6374,3,'Producer'),(157849,11274,7,'Production Design'),(157849,40827,6,'Music Editor'),(157849,11880,5,'Editor'),(157849,21655,1,'Director of Photography'),(157849,16735,8,'Hairstylist'),(157849,16887,6,'Foley'),(157849,17561,7,'Set Decoration'),(157849,20255,8,'Costume Design'),(157849,20422,4,'Novel'),(157849,24178,3,'Producer'),(157849,45052,2,'Director'),(157849,54110,6,'Supervising Sound Editor'),(157849,65455,3,'Producer'),(157849,57835,4,'Screenplay'),(157849,132350,3,'Producer'),(157849,587804,8,'Makeup Artist'),(157849,972582,7,'Art Direction'),(157849,1281632,3,'Producer'),(157849,1335852,7,'Art Department Coordinator'),(157849,1380004,2,'Script Supervisor'),(157849,1380443,5,'Dialogue Editor'),(157849,1388873,10,'Visual Effects Producer'),(157849,1407869,5,'First Assistant Editor'),(157849,1420179,3,'Production Manager'),(157849,1420180,9,'Property Master'),(157849,1420181,7,'Leadman'),(157849,1420187,10,'Visual Effects Supervisor'),(157849,1420188,10,'Visual Effects Supervisor'),(157849,1420189,9,'Stunt Coordinator'),(157849,1420190,11,'Gaffer'),(157849,1420191,1,'Additional Camera'),(157849,1420192,11,'Rigging Gaffer'),(157849,1420193,5,'Digital Intermediate'),(157849,1420195,9,'Transportation Coordinator'),(157849,1420196,9,'Picture Car Coordinator'),(157849,1420197,2,'Script Supervisor'),(157849,1420198,3,'Location Manager'),(37003,11676,2,'Director'),(37003,27218,3,'Executive Producer'),(37003,59949,3,'Executive Producer'),(37003,60245,3,'Co-Executive Producer'),(37003,61294,3,'Producer'),(37003,1370831,3,'Supervising Producer'),(37003,1446172,9,'Cinematography'),(37003,1670361,2,'Director'),(37003,1670361,3,'Producer'),(37003,1670362,3,'Executive Producer'),(37003,1670363,3,'Executive Producer'),(37003,1670364,3,'Producer'),(37003,1670365,3,'Producer'),(37003,1670366,3,'Line Producer'),(37003,1670367,9,'Cinematography'),(37003,1670368,5,'Editor'),(51828,1176,2,'Director'),(51828,2071,7,'Production Design'),(51828,3562,6,'Music'),(51828,23424,3,'Casting'),(51828,133876,4,'Screenplay'),(51828,935634,3,'Producer'),(37718,13,2,'Director'),(37718,13,4,'Writer'),(37718,11368,4,'Writer'),(37718,11371,1,'Director of Photography'),(97430,2215,3,'Casting'),(97430,4844,3,'Executive Producer'),(97430,150,4,'Writer'),(97430,150,2,'Director'),(97430,15219,3,'Producer'),(97430,15220,3,'Producer'),(97430,16847,4,'Writer'),(97430,16847,3,'Producer'),(97430,58846,3,'Executive Producer'),(97430,973271,3,'Executive Producer'),(97430,1010997,8,'Costume Design'),(97430,1311213,9,'Cinematography'),(57943,29648,2,'Director'),(72359,5668,5,'Editor'),(72359,40384,6,'Original Music Composer'),(72359,33651,1,'Director of Photography'),(72359,41554,5,'Editor'),(72359,53638,3,'Producer'),(72359,57431,3,'Producer'),(72359,60475,3,'Line Producer'),(72359,73834,3,'Producer'),(72359,84124,2,'Director'),(72359,84124,4,'Screenplay'),(72359,80602,3,'Producer'),(72359,275201,7,'Production Design'),(72359,979128,7,'Art Direction'),(72359,1034510,3,'Producer'),(72359,1207433,7,'Set Decoration'),(72359,1207434,8,'Costume Design'),(133694,531,6,'Original Music Composer'),(133694,1892,4,'Writer'),(133694,1892,3,'Producer'),(133694,5216,2,'Director'),(133694,5216,3,'Executive Producer'),(133694,6627,3,'Producer'),(133694,16497,6,'Music Editor'),(133694,17697,4,'Writer'),(133694,17697,3,'Producer'),(133694,33625,7,'Production Design'),(133694,40839,6,'Music Supervisor'),(133694,63291,3,'Executive Producer'),(133694,84414,4,'Story'),(133694,957570,8,'Costume Design'),(133694,969171,1,'Director of Photography'),(133694,1017296,5,'Editor'),(36047,56263,2,'Director'),(36047,60208,4,'Writer'),(38031,1243,2,'Director'),(38031,1243,4,'Writer'),(38031,1252,5,'Editor'),(38031,1253,7,'Production Design'),(38031,1265,3,'Producer'),(38031,1268,3,'Producer'),(38031,6392,8,'Costume Design'),(38031,12235,1,'Director of Photography'),(38031,15607,3,'Producer'),(38031,92377,6,'Sound Mixer'),(38031,1334489,7,'Art Direction'),(42188,465,3,'Executive Producer'),(42188,2035,3,'Producer'),(42188,2036,4,'Screenplay'),(42188,2036,3,'Executive Producer'),(42188,3562,6,'Original Music Composer'),(42188,5360,1,'Director of Photography'),(42188,9006,8,'Costume Design'),(42188,40813,5,'Dialogue Editor'),(42188,15909,10,'Special Effects Supervisor'),(42188,17600,3,'Producer'),(42188,20463,7,'Production Design'),(42188,26193,7,'Supervising Art Director'),(42188,26194,7,'Set Decoration'),(42188,52161,6,'Music Supervisor'),(42188,53346,3,'Casting'),(42188,57446,2,'Director'),(42188,71534,5,'Editor'),(42188,83664,3,'Executive Producer'),(42188,83664,4,'Novel'),(42188,958649,3,'Producer'),(42188,1125600,3,'Producer'),(42188,1181554,1,'Still Photographer'),(42188,1192700,6,'Music Supervisor'),(42188,1271079,9,'Stunt Coordinator'),(42188,1318478,8,'Costume Design'),(42188,1319629,2,'First Assistant Director'),(42188,1338969,6,'Sound Effects Editor'),(42188,1376807,6,'Music Editor'),(42188,1388897,1,'Steadicam Operator'),(42188,1394104,2,'Script Supervisor'),(42188,1426835,7,'Art Direction'),(42188,1831960,8,'Costume Supervisor'),(42188,1831962,3,'Production Coordinator'),(112430,30149,2,'Director'),(331592,1070273,8,'Makeup Artist'),(331592,1108355,6,'Original Music Composer'),(331592,1113278,11,'Gaffer'),(331592,1204031,5,'Editor'),(331592,1293379,1,'Director of Photography'),(331592,1303881,7,'Art Direction'),(331592,1305960,6,'Foley'),(331592,1305960,6,'Supervising Sound Editor'),(331592,1378775,3,'Producer'),(331592,1415086,5,'Dialogue Editor'),(331592,1415086,6,'Sound Effects Editor'),(331592,1442530,6,'ADR & Dubbing'),(331592,1442530,6,'Foley'),(331592,1498767,2,'Director'),(331592,1498767,4,'Writer'),(331592,1498767,3,'Producer'),(331592,1571062,3,'Producer'),(331592,1571063,7,'Production Design'),(331592,1571064,7,'Set Decoration'),(331592,1571065,8,'Costume Design'),(331592,1571066,7,'Assistant Art Director'),(331592,1571067,1,'First Assistant Camera'),(331592,1571068,6,'Sound Designer'),(331592,1571069,8,'Key Hair Stylist'),(331592,1611023,3,'Producer'),(331592,1611027,8,'Makeup Artist'),(331592,1611029,10,'Visual Effects'),(331592,1611031,7,'Set Designer'),(47692,1253,7,'Production Design'),(47692,9027,8,'Costume Design'),(47692,56205,4,'Screenplay'),(47692,56205,2,'Director'),(47692,200700,4,'Novel'),(253450,25472,6,'Original Music Composer'),(253450,64992,2,'Director'),(253450,64992,4,'Screenplay'),(253450,64992,3,'Executive Producer'),(253450,69834,5,'Editor'),(253450,69834,3,'Executive Producer'),(253450,69831,4,'Screenplay'),(253450,69841,8,'Costume Design'),(253450,69841,7,'Production Design'),(253450,140486,3,'Producer'),(253450,232804,1,'Director of Photography'),(253450,233199,4,'Screenplay'),(253450,555633,3,'Co-Producer'),(253450,1127725,3,'Producer'),(253450,1173591,3,'Co-Producer'),(253450,1173592,3,'Producer'),(253450,1316884,6,'Sound Editor'),(253450,1316884,6,'Sound Re-Recording Mixer'),(253450,1475472,9,'Cinematography'),(253450,1798428,6,'Sound Re-Recording Mixer'),(253450,1860293,4,'Screenplay'),(253450,1860304,5,'Editor'),(253450,1860310,9,'Special Effects'),(253450,1860311,3,'Producer'),(75033,16730,2,'Director'),(75033,1039336,4,'Screenplay'),(75033,1272899,4,'Novel'),(74536,53935,4,'Screenplay'),(74536,53935,2,'Director'),(74536,53935,4,'Writer'),(172391,1098111,4,'Writer'),(172391,1199049,2,'Director'),(172391,1199049,4,'Writer'),(262543,3131,3,'Producer'),(262543,17207,3,'Producer'),(262543,17208,3,'Producer'),(262543,17209,3,'Executive Producer'),(262543,53346,3,'Casting'),(262543,56657,6,'Original Music Composer'),(262543,61846,7,'Supervising Art Director'),(262543,61860,3,'Casting'),(262543,62776,1,'Director of Photography'),(262543,119953,2,'Director'),(262543,119953,4,'Writer'),(262543,138657,10,'Visual Effects Producer'),(262543,559371,9,'Stunt Coordinator'),(262543,1115664,3,'Producer'),(262543,1319165,8,'Set Costumer'),(262543,1337413,6,'Foley'),(262543,1350253,10,'Visual Effects Producer'),(262543,1355193,4,'Writer'),(262543,1355194,4,'Writer'),(262543,1355974,2,'Script Supervisor'),(262543,1363348,7,'Art Department Coordinator'),(262543,1369373,8,'Makeup Artist'),(262543,1379178,5,'Editor'),(262543,1379179,7,'Production Design'),(262543,1379438,8,'Costume Supervisor'),(262543,1396803,9,'Visual Effects Editor'),(262543,1396811,9,'Visual Effects Art Director'),(262543,1396818,8,'Set Costumer'),(262543,1410303,10,'Visual Effects Producer'),(262543,1412711,9,'Visual Effects Editor'),(262543,1420338,7,'Construction Coordinator'),(262543,1420341,1,'Camera Operator'),(262543,1428872,6,'Foley'),(262543,1429340,8,'Makeup Artist'),(262543,1429341,8,'Makeup Artist'),(262543,1429361,1,'Steadicam Operator'),(262543,1429370,10,'Visual Effects Supervisor'),(262543,1436793,6,'Sound Re-Recording Mixer'),(262543,1436795,6,'Dolby Consultant'),(262543,1454140,6,'Foley'),(262543,1459226,11,'Gaffer'),(262543,1463989,8,'Costume Design'),(262543,1463990,8,'Hairstylist'),(262543,1463992,9,'Property Master'),(262543,1463993,5,'Dialogue Editor'),(262543,1463994,6,'Foley'),(262543,1464001,6,'Sound Designer'),(262543,1464001,6,'Supervising Sound Editor'),(262543,1464002,6,'Sound Effects Editor'),(262543,1464008,10,'Animation'),(262543,1464009,10,'Animation'),(262543,1464011,10,'Visual Effects Producer'),(262543,1464016,10,'Visual Effects Supervisor'),(262543,1464018,1,'Camera Operator'),(262543,1464019,1,'Camera Operator'),(262543,1464022,1,'Still Photographer'),(370980,59911,2,'Director'),(370980,59911,4,'Screenplay'),(370980,68016,6,'Orchestrator'),(370980,69868,4,'Screenplay'),(370980,120128,3,'Producer'),(370980,1544272,6,'Original Music Composer'),(40880,22669,2,'Director'),(264999,1884,1,'Director of Photography'),(264999,1884,5,'Editor'),(264999,1884,1,'Camera Operator'),(264999,6468,3,'Producer'),(264999,9041,7,'Production Design'),(264999,12568,7,'Set Decoration'),(264999,34528,3,'Unit Production Manager'),(264999,34528,3,'Co-Producer'),(264999,38673,3,'Producer'),(264999,51922,3,'Casting'),(264999,119665,2,'Director'),(264999,119665,3,'Producer'),(264999,582807,8,'Costume Design'),(264999,582808,1,'Still Photographer'),(264999,1074867,3,'Producer'),(264999,1074867,4,'Writer'),(264999,1417408,3,'Production Supervisor'),(264999,1420642,8,'Key Hair Stylist'),(264999,1529990,6,'Music Supervisor'),(264999,1529991,8,'Makeup Department Head'),(264999,1551325,6,'Sound mixer'),(53457,2425,5,'Editor'),(53457,22318,1,'Director of Photography'),(53457,33462,7,'Production Design'),(53457,46266,6,'Original Music Composer'),(53457,55330,3,'Producer'),(53457,67702,3,'Casting'),(53457,144519,4,'Screenplay'),(53457,144519,2,'Director'),(53457,566309,4,'Novel'),(53457,566310,4,'Screenplay'),(53457,971722,8,'Costume Design'),(53457,1374470,9,'Choreographer'),(53457,1539372,3,'Casting'),(53457,1539373,8,'Assistant Costume Designer'),(288980,238822,4,'Writer'),(288980,1219769,2,'Director'),(319910,460,1,'Director of Photography'),(319910,4500,6,'Music'),(319910,99710,2,'Director'),(319910,99710,4,'Writer'),(319910,1450654,4,'Writer'),(62008,5290,3,'Casting'),(62008,40384,6,'Original Music Composer'),(62008,33651,1,'Director of Photography'),(62008,48443,5,'Editor'),(62008,46785,8,'Costume Design'),(62008,61653,7,'Production Design'),(62008,80602,2,'Director'),(62008,80602,4,'Screenplay'),(62008,80801,7,'Set Decoration'),(62008,928304,7,'Art Direction'),(71688,153,6,'Original Music Composer'),(71688,5506,1,'Director of Photography'),(71688,6373,3,'Executive Producer'),(71688,15734,8,'Costume Design'),(71688,16363,3,'Casting'),(71688,35010,5,'Editor'),(71688,45056,6,'Music Supervisor'),(71688,55480,3,'Producer'),(71688,71068,2,'Director'),(71688,93289,4,'Screenplay'),(71688,1023480,7,'Production Design'),(71688,1023481,3,'Executive Producer'),(71688,1348686,9,'Production Office Assistant'),(71688,1376808,2,'Script Supervisor'),(71688,1482227,7,'Set Decoration'),(82679,7439,7,'Production Design'),(82679,53012,6,'Original Music Composer'),(82679,111456,5,'Editor'),(82679,168798,2,'Director'),(82679,168798,3,'Producer'),(82679,168812,3,'Producer'),(82679,765144,3,'Casting'),(82679,783230,1,'Director of Photography'),(82679,928528,7,'Art Direction'),(82679,1236611,4,'Screenplay'),(87729,54441,2,'Director'),(87729,54443,4,'Writer'),(87729,54448,3,'Producer'),(87729,1043954,3,'Executive Producer'),(41317,666,1,'Director of Photography'),(41317,2108,3,'Producer'),(41317,14748,8,'Makeup Artist'),(41317,14931,5,'Editor'),(41317,38229,8,'Costume Design'),(41317,66222,2,'Director'),(41317,150933,4,'Screenplay'),(41317,1024855,6,'Original Music Composer'),(41317,1238749,4,'Novel'),(41317,1336465,4,'Screenplay'),(41317,1336466,4,'Screenplay'),(41317,1336467,7,'Art Direction'),(41317,1336468,7,'Art Direction'),(41317,1336469,9,'Property Master'),(41317,1336472,8,'Hairstylist'),(41317,1336473,9,'Special Effects'),(245700,465,3,'Executive Producer'),(245700,10725,5,'Editor'),(245700,40814,6,'Supervising Sound Editor'),(245700,40820,6,'Sound Re-Recording Mixer'),(245700,16363,3,'Casting'),(245700,36591,8,'Costume Design'),(245700,24178,3,'Co-Producer'),(245700,65455,3,'Executive Producer'),(245700,55808,3,'Co-Producer'),(245700,57569,9,'Stunt Coordinator'),(245700,60085,9,'Cinematography'),(245700,65452,2,'Director'),(245700,65452,4,'Writer'),(245700,65454,3,'Producer'),(245700,65458,6,'Sound Recordist'),(245700,73524,3,'Executive Producer'),(245700,957031,6,'Original Music Composer'),(245700,1024844,7,'Set Decoration'),(245700,1319487,10,'Visual Effects Producer'),(245700,1324461,8,'Costume Supervisor'),(245700,1335159,7,'Production Design'),(245700,1376801,6,'Sound Designer'),(245700,1384722,7,'Assistant Art Director'),(245700,1402096,1,'Steadicam Operator'),(245700,1406815,7,'Greensman'),(245700,1412126,2,'Script Supervisor'),(245700,1413028,8,'Makeup Artist'),(245700,1413036,11,'Gaffer'),(245700,1415987,1,'Still Photographer'),(245700,1422818,6,'Music Editor'),(245700,1428470,8,'Hair Designer'),(245700,1428470,8,'Makeup Designer'),(245700,1434859,7,'Art Direction'),(245700,1434862,8,'Makeup Artist'),(245700,1434863,3,'Production Manager'),(245700,1434864,9,'Property Master'),(245700,1434865,7,'Greensman'),(245700,1434867,10,'Visual Effects Supervisor'),(245700,1434868,1,'Camera Operator'),(245700,1434870,8,'Set Costumer'),(245700,1434871,5,'Digital Intermediate'),(245700,1798337,3,'Line Producer'),(245700,1798338,3,'Researcher'),(37842,3564,5,'Editor'),(37842,11983,2,'Director'),(37842,11983,4,'Adaptation'),(37842,11983,4,'Writer'),(37842,12633,6,'Music'),(37842,18494,1,'Director of Photography'),(37842,24297,7,'Production Design'),(37842,55921,3,'Producer'),(37842,439550,4,'Adaptation'),(37842,439550,4,'Writer'),(37842,1008329,3,'Executive Producer'),(37842,1125202,4,'Novel'),(37842,1125202,4,'Writer'),(44092,11401,3,'Producer'),(44092,11401,2,'Director'),(44092,11404,3,'Producer'),(44092,21907,8,'Costume Design'),(44092,63574,5,'Editor'),(44092,66053,6,'Original Music Composer'),(44092,554948,2,'Director'),(44092,554948,4,'Screenplay'),(44092,991750,7,'Production Design'),(44092,993814,3,'Casting'),(44092,1047597,6,'Original Music Composer'),(44092,1295960,1,'Director of Photography'),(44092,1307306,3,'Producer'),(44092,1307307,7,'Production Design'),(44754,2226,3,'Producer'),(44754,2239,3,'Executive Producer'),(44754,2997,3,'Producer'),(44754,4438,9,'Stunt Coordinator'),(44754,5337,5,'Dialogue Editor'),(44754,5371,3,'Producer'),(44754,5669,3,'Casting'),(44754,5884,5,'Editor'),(44754,7496,7,'Production Design'),(44754,30711,2,'Director'),(44754,30711,4,'Writer'),(44754,33439,8,'Costume Design'),(44754,40248,7,'Art Direction'),(44754,60793,7,'Set Decoration'),(44754,65913,3,'Co-Producer'),(44754,960261,1,'Director of Photography'),(44754,1045816,6,'Original Music Composer'),(44754,1085007,6,'Sound Re-Recording Mixer'),(44754,1314588,5,'Editor'),(44754,1337465,6,'Sound Effects Editor'),(44754,1472449,2,'Script Supervisor'),(44754,1527434,5,'Dialogue Editor'),(44754,1551912,6,'Sound Mixer'),(44754,1625316,6,'Sound Designer'),(44754,1634762,8,'Costume Supervisor'),(43949,371,1,'First Assistant Camera'),(43949,2874,3,'Casting'),(43949,3026,2,'Director'),(43949,3026,4,'Screenplay'),(43949,3026,3,'Producer'),(43949,3030,4,'Screenplay'),(43949,3031,1,'Director of Photography'),(43949,3032,5,'Editor'),(43949,3275,3,'Casting'),(43949,9251,6,'Music'),(43949,13177,6,'Sound Re-Recording Mixer'),(43949,14753,3,'Executive Producer'),(43949,14753,3,'Unit Production Manager'),(43949,41377,3,'Executive Producer'),(43949,27541,3,'Producer'),(43949,46347,3,'Executive Producer'),(43949,52600,7,'Production Design'),(43949,57077,3,'Co-Producer'),(43949,57077,2,'First Assistant Director'),(43949,92471,10,'Visual Effects Supervisor'),(43949,75379,2,'Second Assistant Director'),(43949,75391,7,'Set Decoration'),(43949,86907,9,'Post Production Supervisor'),(43949,91854,8,'Makeup Artist'),(43949,958835,8,'Costume Design'),(43949,1077483,3,'Production Supervisor'),(43949,1293529,1,'Still Photographer'),(43949,1316599,8,'Key Makeup Artist'),(43949,1321000,8,'Costume Supervisor'),(43949,1339435,7,'Set Designer'),(43949,1342656,5,'Dialogue Editor'),(43949,1342657,6,'Sound Effects Editor'),(43949,1355532,2,'Script Supervisor'),(43949,1377132,1,'Camera Operator'),(43949,1377132,1,'Steadicam Operator'),(43949,1378222,7,'Construction Coordinator'),(43949,1378227,6,'Sound Re-Recording Mixer'),(43949,1398980,9,'Transportation Coordinator'),(43949,1412324,9,'Stunt Coordinator'),(43949,1424153,7,'Art Direction'),(43949,1425831,1,'Camera Operator'),(43949,1435703,6,'ADR Supervisor'),(43949,1458533,6,'Music Editor'),(43949,1460736,3,'Casting Associate'),(43949,1460745,7,'Art Department Coordinator'),(43949,1461169,6,'First Assistant Sound Editor'),(43949,1469344,9,'Unit Publicist'),(43949,1503172,4,'Novel'),(43949,1521504,8,'Key Hair Stylist'),(43949,1532735,8,'Hairstylist'),(43949,1533589,9,'Special Effects Coordinator'),(43949,1547761,8,'Assistant Costume Designer'),(43949,1552190,5,'First Assistant Editor'),(43949,1568230,9,'Special Effects'),(43949,1585009,11,'Chief Lighting Technician'),(43949,1586932,9,'Transportation Captain'),(43949,1697273,3,'Location Manager'),(43949,1704257,6,'Boom Operator'),(43949,1733132,5,'Negative Cutter'),(43949,1733146,9,'Cableman'),(43949,1749905,3,'Production Office Coordinator'),(43949,1752929,6,'Production Sound Mixer'),(43949,1761280,1,'First Assistant Camera'),(43949,1761283,1,'Camera Operator'),(43949,1761286,1,'Key Grip'),(43949,1761288,7,'Property Master'),(43949,1761290,3,'Production Accountant'),(43949,1761293,9,'Transportation Captain'),(43949,1761297,7,'Art Department Assistant'),(43949,1761301,9,'Post Production Assistant'),(43949,1761302,7,'Title Designer'),(243938,3227,2,'Director'),(243938,6117,1,'Director of Photography'),(243938,13168,5,'Dialogue Editor'),(243938,22219,3,'Casting'),(243938,23486,6,'Original Music Composer'),(243938,58362,6,'Supervising Sound Editor'),(243938,52997,3,'Executive Producer'),(243938,113052,6,'Sound Effects Editor'),(243938,57431,3,'Executive Producer'),(243938,57822,3,'Producer'),(243938,62807,3,'Executive Producer'),(243938,66495,7,'Art Direction'),(243938,76497,7,'Property Master'),(243938,347335,4,'Characters'),(243938,347335,4,'Writer'),(243938,500199,7,'Set Decoration'),(243938,578725,8,'Makeup Artist'),(243938,1002643,7,'Production Design'),(243938,1392098,10,'Visual Effects Supervisor'),(243938,1393375,7,'Leadman'),(243938,1396794,6,'Sound Re-Recording Mixer'),(243938,1400837,3,'Location Manager'),(243938,1401562,6,'Sound Re-Recording Mixer'),(243938,1401765,1,'Still Photographer'),(243938,1402719,11,'Gaffer'),(243938,1402721,11,'Rigging Gaffer'),(243938,1403416,8,'Costume Supervisor'),(243938,1406267,8,'Hairstylist'),(243938,1408784,10,'Visual Effects Producer'),(243938,1412466,3,'Production Supervisor'),(243938,1415083,7,'Greensman'),(243938,1422996,8,'Costume Design'),(243938,1424896,7,'Art Department Coordinator'),(243938,1425831,1,'Steadicam Operator'),(243938,1431552,8,'Hairstylist'),(243938,1431554,8,'Makeup Department Head'),(243938,1437305,1,'Camera Operator'),(243938,1442535,9,'Stunt Coordinator'),(243938,1449071,2,'First Assistant Director'),(243938,1451395,3,'Associate Producer'),(243938,1451396,5,'Editor'),(243938,1463274,8,'Makeup Artist'),(243938,1463801,8,'Seamstress'),(243938,1484984,11,'Best Boy Electric'),(243938,1495523,7,'Set Designer'),(243938,1527917,8,'Hair Department Head'),(243938,1549179,1,'Dolly Grip'),(243938,1551818,2,'Script Supervisor'),(243938,1551819,3,'Production Coordinator'),(243938,1551839,6,'Production Sound Mixer'),(243938,1551840,6,'Music Editor'),(243938,1551840,6,'Music Supervisor'),(243938,1551841,6,'Music Editor'),(243938,1551842,1,'First Assistant Camera'),(243938,1552626,8,'Key Costumer'),(243938,1558086,10,'Special Effects Supervisor'),(243938,1558087,9,'Special Effects Coordinator'),(243938,1558716,10,'Visual Effects Coordinator'),(243938,1585302,7,'Construction Coordinator'),(243938,1712001,8,'Makeup Artist'),(243938,1798593,2,'First Assistant Director'),(243938,1844322,9,'Production Controller'),(243938,1881584,9,'Additional Writing'),(243938,1881586,8,'Makeup Artist'),(243938,1881587,7,'Title Designer'),(243938,1881589,7,'Painter'),(243938,1881592,7,'Set Designer'),(243938,1881596,6,'Boom Operator'),(243938,1881600,11,'Best Boy Electric'),(243938,1881602,1,'Key Grip'),(243938,1881603,1,'Dolly Grip'),(243938,1881605,8,'Seamstress'),(86838,465,3,'Executive Producer'),(86838,1225,6,'Original Music Composer'),(86838,5779,7,'Production Design'),(86838,21656,5,'Editor'),(86838,22161,1,'Director of Photography'),(86838,19285,8,'Costume Design'),(86838,29227,3,'Producer'),(86838,54472,2,'Director'),(86838,54472,4,'Screenplay'),(86838,54472,3,'Producer'),(86838,54474,3,'Producer'),(97370,5333,8,'Makeup Artist'),(97370,6468,3,'Producer'),(97370,16899,3,'Casting'),(97370,66728,4,'Screenplay'),(97370,66728,2,'Director'),(97370,117238,6,'Sound Re-Recording Mixer'),(97370,208693,3,'Producer'),(97370,548400,1,'Director of Photography'),(97370,1047640,4,'Screenplay'),(97370,1225721,9,'Stunt Coordinator'),(97370,1318478,8,'Costume Design'),(97370,1335186,10,'Visual Effects Producer'),(97370,1335543,7,'Greensman'),(97370,1335544,7,'Greensman'),(97370,1335854,9,'Property Master'),(97370,1335854,9,'Armorer'),(97370,1335879,10,'Visual Effects Producer'),(97370,1337412,6,'Foley'),(97370,1338222,6,'Foley'),(97370,1340897,7,'Production Design'),(97370,1341724,4,'Novel'),(97370,1341726,6,'Original Music Composer'),(97370,1341727,5,'Editor'),(97370,1341728,7,'Art Direction'),(97370,1341729,7,'Art Direction'),(97370,1341731,7,'Greensman'),(97370,1341733,7,'Greensman'),(97370,1341734,6,'Sound Effects Editor'),(97370,1341735,6,'Sound Designer'),(97370,1341735,6,'Supervising Sound Editor'),(97370,1341736,6,'Sound Effects Editor'),(97370,1341737,5,'Dialogue Editor'),(97370,1341738,6,'Boom Operator'),(97370,1341739,6,'Foley'),(97370,1341741,9,'Special Effects'),(97370,1341742,9,'Special Effects'),(97370,1341743,10,'Visual Effects Supervisor'),(97370,1341744,10,'Visual Effects Supervisor'),(97370,1341745,9,'Compositors'),(97370,1341746,9,'Compositors'),(97370,1341749,8,'Costume Supervisor'),(97370,1341750,6,'Music Editor'),(97370,1341754,2,'Script Supervisor'),(97370,1341755,3,'Location Manager'),(97370,1341757,7,'Location Scout'),(97370,1341758,7,'Location Scout'),(97370,1394011,10,'Visual Effects Producer'),(97370,1394103,11,'Gaffer'),(97370,1402934,1,'Camera Operator'),(97370,1542374,6,'Foley Editor'),(97370,1590412,10,'Visual Effects Supervisor'),(97370,1613281,2,'First Assistant Director'),(97370,1759650,6,'Music Supervisor'),(97370,1825628,6,'Orchestrator'),(97370,1881042,8,'Makeup Artist'),(97370,1881049,8,'Hairstylist'),(97370,1881057,9,'Carpenter'),(97370,1881067,1,'Still Photographer'),(97370,1881073,5,'Assistant Editor'),(97370,1881075,6,'Music Editor'),(97370,1881076,3,'Production Coordinator'),(97370,1881077,9,'Dialect Coach'),(70829,64331,2,'Director'),(70829,64331,4,'Writer'),(54518,54507,2,'Director'),(54518,1594602,8,'Costume Design'),(44214,5914,3,'Casting'),(44214,3287,7,'Production Design'),(44214,4867,1,'Director of Photography'),(44214,6377,6,'Original Music Composer'),(44214,6431,2,'Director'),(44214,7531,3,'Producer'),(44214,7531,2,'Assistant Director'),(44214,9544,3,'Casting'),(44214,9557,6,'Sound Designer'),(44214,16836,3,'Executive Producer'),(44214,18250,3,'Executive Producer'),(44214,20206,3,'Producer'),(44214,20207,3,'Producer'),(44214,20208,3,'Executive Producer'),(44214,21969,3,'Casting'),(44214,26678,3,'Casting'),(44214,29016,3,'Executive Producer'),(44214,34340,3,'Executive Producer'),(44214,38805,5,'Editor'),(44214,57049,3,'Producer'),(44214,66265,3,'Executive Producer'),(44214,92383,9,'Sound Recordist'),(44214,74985,11,'Gaffer'),(44214,143258,4,'Screenplay'),(44214,143259,4,'Screenplay'),(44214,143259,4,'Story'),(44214,155535,9,'Stunt Coordinator'),(44214,158401,3,'Executive Producer'),(44214,548849,7,'Art Direction'),(44214,970088,9,'Choreographer'),(44214,1011113,3,'Executive Producer'),(44214,1049271,5,'Digital Intermediate'),(44214,1054633,4,'Screenplay'),(44214,1116091,3,'Producer'),(44214,1116092,3,'Producer'),(44214,1116093,3,'Producer'),(44214,1116095,1,'Still Photographer'),(44214,1190648,8,'Costume Design'),(44214,1269034,9,'Stunts'),(44214,1269675,8,'Hairstylist'),(44214,1304276,6,'Foley'),(44214,1321372,8,'Makeup Artist'),(44214,1322503,9,'Property Master'),(44214,1328383,7,'Set Decoration'),(44214,1329527,9,'Stunts'),(44214,1332202,8,'Makeup Department Head'),(44214,1332203,8,'Costume Supervisor'),(44214,1334338,9,'Makeup Effects'),(44214,1335119,7,'Construction Coordinator'),(44214,1337464,6,'Sound Re-Recording Mixer'),(44214,1337468,6,'Music Editor'),(44214,1340345,6,'Sound Designer'),(44214,1340345,6,'Supervising Sound Editor'),(44214,1340345,6,'Sound Re-Recording Mixer'),(44214,1340346,6,'ADR & Dubbing'),(44214,1347722,8,'Makeup Designer'),(44214,1347741,6,'Boom Operator'),(44214,1364422,10,'Digital Compositors'),(44214,1372084,7,'Leadman'),(44214,1393571,1,'Camera Operator'),(44214,1393574,8,'Set Costumer'),(44214,1393576,8,'Set Costumer'),(44214,1399971,9,'Special Effects Coordinator'),(44214,1399979,2,'Script Supervisor'),(44214,1401174,3,'Location Manager'),(44214,1401563,6,'Sound Effects Editor'),(44214,1404276,8,'Hairstylist'),(44214,1404277,3,'Production Supervisor'),(44214,1404278,7,'Art Department Coordinator'),(44214,1404282,9,'Sound Recordist'),(44214,1404283,10,'Visual Effects Producer'),(44214,1404284,10,'Visual Effects Producer'),(44214,1404285,9,'Visual Effects Editor'),(44214,1404286,9,'Visual Effects Editor'),(44214,1404287,10,'Visual Effects Supervisor'),(44214,1404288,1,'Camera Operator'),(44214,1404289,11,'Best Boy Electric'),(44214,1404290,11,'Gaffer'),(44214,1404291,1,'Camera Intern'),(44214,1404292,8,'Set Costumer'),(44214,1404293,5,'Digital Intermediate'),(44214,1404294,9,'Associate Choreographer'),(44214,1406756,5,'Assistant Editor'),(44214,1408338,10,'Visual Effects Producer'),(44214,1410149,8,'Hair Designer'),(44214,1415606,9,'Makeup Effects'),(44214,1446462,6,'ADR & Dubbing'),(44214,1465333,3,'Production Coordinator'),(44214,1529999,6,'Music Supervisor'),(44214,1531494,6,'Music Supervisor'),(44214,1531578,9,'Stunts'),(44214,1539993,10,'Digital Compositors'),(44214,1540003,10,'Digital Compositors'),(44214,1540015,10,'Digital Compositors'),(44214,1544736,1,'Grip'),(44214,1545160,5,'Digital Intermediate'),(44214,1545162,5,'Editorial Services'),(44214,1547458,6,'Production Sound Mixer'),(44214,1576967,9,'Transportation Captain'),(44214,1635482,8,'Prosthetic Supervisor'),(44214,1667289,1,'Grip'),(339984,18311,3,'Producer'),(339984,235558,3,'Producer'),(339984,323488,4,'Adaptation'),(339984,437833,2,'Director'),(339984,1466528,3,'Producer'),(339984,1466529,4,'Novel'),(239563,2871,3,'Producer'),(239563,1782,5,'Editor'),(239563,10572,6,'Original Music Composer'),(239563,15426,3,'Casting'),(239563,11372,5,'Editor'),(239563,23969,1,'Director of Photography'),(239563,36427,3,'Producer'),(239563,266920,3,'Producer'),(239563,1141683,2,'Director'),(239563,1141683,4,'Screenplay'),(239563,1141683,3,'Producer'),(239563,1193617,7,'Production Design'),(222899,3227,2,'Director'),(222899,31121,3,'Producer'),(222899,59922,3,'Executive Producer'),(222899,82511,3,'Producer'),(222899,217587,4,'Screenplay'),(332567,7229,6,'Original Music Composer'),(332567,4768,3,'Producer'),(332567,6209,8,'Costume Design'),(332567,9344,7,'Production Design'),(332567,13245,5,'Editor'),(332567,59521,2,'Director'),(332567,59528,1,'Director of Photography'),(332567,129607,4,'Screenplay'),(332567,167789,10,'Visual Effects Supervisor'),(332567,222362,6,'Sound Effects Editor'),(332567,544372,11,'Rigging Gaffer'),(332567,990036,8,'Costume Supervisor'),(332567,1113479,3,'Executive Producer'),(332567,1195356,3,'Casting'),(332567,1263443,6,'Sound Designer'),(332567,1337418,10,'Visual Effects Supervisor'),(332567,1338482,6,'Sound Effects Editor'),(332567,1338484,6,'Sound Effects Editor'),(332567,1360101,6,'Foley'),(332567,1360111,6,'Music Editor'),(332567,1364623,1,'Underwater Camera'),(332567,1387246,6,'Foley'),(332567,1394282,10,'Visual Effects Supervisor'),(332567,1395027,10,'Visual Effects Supervisor'),(332567,1395243,1,'Still Photographer'),(332567,1401690,6,'ADR & Dubbing'),(332567,1401690,5,'Dialogue Editor'),(332567,1421687,1,'Additional Photography'),(332567,1427466,1,'Steadicam Operator'),(332567,1430237,10,'Visual Effects Supervisor'),(332567,1434544,5,'Digital Intermediate'),(332567,1451992,6,'Sound Effects Editor'),(332567,1454522,8,'Makeup Artist'),(332567,1458872,2,'Script Supervisor'),(332567,1463527,10,'Visual Effects Producer'),(332567,1465623,8,'Hair Department Head'),(332567,1512667,10,'Animation Supervisor'),(332567,1512783,10,'Special Effects Supervisor'),(332567,1537463,6,'Sound Re-Recording Mixer'),(332567,1573035,10,'Visual Effects Producer'),(332567,1573040,5,'Digital Intermediate'),(332567,1608995,7,'Art Direction'),(332567,1636656,8,'Makeup Department Head'),(332567,1638134,10,'Visual Effects Coordinator'),(332567,1642831,3,'Producer'),(332567,1642832,7,'Supervising Art Director'),(332567,1642833,9,'Makeup Effects'),(332567,1642834,8,'Hairstylist'),(332567,1644252,1,'Helicopter Camera'),(332567,1644253,1,'First Assistant Camera'),(332567,1644254,10,'Visual Effects Coordinator'),(332567,1644255,10,'Visual Effects Coordinator'),(332567,1644256,10,'Visual Effects Coordinator'),(332567,1644257,10,'Visual Effects Coordinator'),(332567,1644258,9,'Visual Effects Editor'),(332567,1644259,9,'Visual Effects Editor'),(332567,1644260,9,'Visual Effects Editor'),(332567,1644261,10,'Visual Effects Producer'),(332567,1644271,10,'Visual Effects Supervisor'),(332567,1718711,8,'Makeup Artist'),(332567,1718712,7,'Construction Coordinator'),(332567,1718713,7,'Art Department Coordinator'),(38223,18320,2,'Director'),(38223,163496,4,'Screenplay'),(38223,1213071,4,'Screenplay'),(136835,2214,6,'Music'),(136835,9419,6,'Sound Effects Editor'),(136835,17605,3,'Executive Producer'),(136835,42036,6,'Supervising Sound Editor'),(136835,31121,3,'Producer'),(136835,31123,3,'Executive Producer'),(136835,31131,8,'Costume Design'),(136835,33290,9,'Additional Music'),(136835,40036,3,'Executive Producer'),(136835,42632,1,'Director of Photography'),(136835,42633,5,'Editor'),(136835,59922,3,'Executive Producer'),(136835,59922,3,'Unit Production Manager'),(136835,55955,5,'Editor'),(136835,72111,3,'Location Manager'),(136835,84459,9,'Stunt Coordinator'),(136835,112521,7,'Production Design'),(136835,134156,2,'Director'),(136835,567238,3,'Casting'),(136835,937024,4,'Writer'),(136835,937024,3,'Executive Producer'),(136835,1094286,7,'Set Decoration'),(136835,1102803,8,'Hairstylist'),(136835,1138332,6,'Scoring Mixer'),(136835,1231882,3,'Executive Producer'),(136835,1257754,3,'Executive Producer'),(136835,1339961,9,'Transportation Captain'),(136835,1355956,7,'Property Master'),(136835,1355963,6,'Boom Operator'),(136835,1355966,8,'Costume Supervisor'),(136835,1357671,6,'Assistant Sound Editor'),(136835,1363349,6,'Sound Re-Recording Mixer'),(136835,1363349,6,'Supervising Sound Editor'),(136835,1363351,6,'Sound Effects Editor'),(136835,1371001,2,'First Assistant Director'),(136835,1378171,6,'Sound Re-Recording Mixer'),(136835,1378241,1,'Camera Operator'),(136835,1399632,6,'Sound Effects Editor'),(136835,1400071,6,'ADR Editor'),(136835,1404546,6,'Music Editor'),(136835,1409831,1,'Camera Operator'),(136835,1412112,10,'Special Effects Supervisor'),(136835,1452233,8,'Makeup Department Head'),(136835,1493865,7,'Art Direction'),(136835,1550166,6,'Production Sound Mixer'),(136835,1554754,8,'Hair Department Head'),(136835,1560972,1,'Still Photographer'),(136835,1567766,2,'Script Supervisor'),(136835,1733525,3,'Production Accountant'),(136835,1740519,8,'Key Costumer'),(136835,1752243,2,'Second Assistant Director'),(136835,1752250,3,'Production Supervisor'),(136835,1752251,8,'Set Costumer'),(136835,1752254,8,'Key Makeup Artist'),(136835,1752257,8,'Hairstylist'),(136835,1752259,11,'Chief Lighting Technician'),(136835,1752262,1,'Key Grip'),(136835,1752269,3,'Production Coordinator'),(136835,1752270,9,'Unit Publicist'),(136835,1752273,9,'Transportation Co-Captain'),(136835,1752275,5,'Assistant Editor'),(136835,1752279,6,'Assistant Sound Editor'),(264660,465,3,'Executive Producer'),(264660,6410,3,'Casting'),(264660,2035,3,'Producer'),(264660,2036,2,'Director'),(264660,2036,4,'Writer'),(264660,2997,3,'Executive Producer'),(264660,11345,5,'Editor'),(264660,11271,8,'Costume Design'),(264660,40810,6,'Sound Designer'),(264660,40810,6,'Supervising Sound Editor'),(264660,40813,6,'ADR & Dubbing'),(264660,40813,5,'Dialogue Editor'),(264660,40823,6,'Foley'),(264660,17600,3,'Producer'),(264660,17428,6,'Foley'),(264660,20463,7,'Production Design'),(264660,26193,7,'Supervising Art Director'),(264660,26194,7,'Set Decoration'),(264660,30081,9,'Animatronic and Prosthetic Effects'),(264660,60316,3,'Line Producer'),(264660,78441,6,'Original Music Composer'),(264660,1046160,3,'Executive Producer'),(264660,1125600,3,'Associate Producer'),(264660,1162217,1,'Director of Photography'),(264660,1233684,10,'Visual Effects Supervisor'),(264660,1318830,10,'Visual Effects Supervisor'),(264660,1319752,8,'Costume Supervisor'),(264660,1338277,9,'Property Master'),(264660,1338969,6,'Sound Re-Recording Mixer'),(264660,1354926,9,'Stunt Coordinator'),(264660,1376807,6,'Music Editor'),(264660,1379650,6,'Original Music Composer'),(264660,1388900,1,'Still Photographer'),(264660,1392627,10,'VFX Supervisor'),(264660,1394001,7,'Art Direction'),(264660,1394004,6,'Sound Re-Recording Mixer'),(264660,1394011,10,'Visual Effects Producer'),(264660,1394027,9,'Visual Effects Editor'),(264660,1400078,10,'Visual Effects Producer'),(264660,1400092,1,'Helicopter Camera'),(264660,1402934,9,'Second Unit Cinematographer'),(264660,1403467,9,'Visual Effects Editor'),(264660,1404201,9,'Animatronic and Prosthetic Effects'),(264660,1409305,5,'Digital Intermediate'),(264660,1410142,2,'Script Supervisor'),(264660,1411074,8,'Wigmaker'),(264660,1422795,8,'Makeup Department Head'),(264660,1426327,9,'CG Supervisor'),(264660,1437633,5,'Digital Intermediate'),(264660,1457242,3,'Associate Producer'),(264660,1473160,7,'Assistant Art Director'),(264660,1473162,10,'VFX Production Coordinator'),(264660,1473163,9,'Visual Effects Editor'),(264660,1473164,10,'Visual Effects Supervisor'),(264660,1473167,5,'Digital Intermediate'),(264660,1473168,5,'Digital Intermediate'),(264660,1473169,5,'Digital Intermediate'),(264660,1473170,5,'Digital Intermediate'),(264660,1473173,9,'Unit Publicist'),(264660,1473175,5,'First Assistant Editor'),(238603,10970,8,'Costume Design'),(238603,17612,3,'Casting'),(238603,20540,3,'Casting'),(238603,23461,1,'Director of Photography'),(238603,54419,3,'Producer'),(238603,57822,3,'Producer'),(238603,57822,4,'Story'),(238603,59674,9,'Stunt Coordinator'),(238603,1049745,1,'Additional Photography'),(238603,1077115,7,'Production Design'),(238603,1085298,9,'Special Effects Coordinator'),(238603,1087212,1,'Additional Photography'),(238603,1098740,6,'Original Music Composer'),(238603,1101410,2,'Director'),(238603,1101411,4,'Screenplay'),(238603,1101411,4,'Story'),(238603,1133292,5,'Editor'),(238603,1150954,9,'Visual Effects Editor'),(238603,1190760,8,'Hairstylist'),(238603,1190778,9,'Transportation Coordinator'),(238603,1237711,10,'Visual Effects Producer'),(238603,1289568,1,'Helicopter Camera'),(238603,1339444,7,'Set Designer'),(238603,1339445,7,'Construction Coordinator'),(238603,1351274,7,'Set Decoration'),(238603,1360101,6,'Foley'),(238603,1376488,1,'Camera Operator'),(238603,1377223,10,'Visual Effects Supervisor'),(238603,1377461,5,'Editor'),(238603,1387212,7,'Art Direction'),(238603,1387213,8,'Makeup Department Head'),(238603,1387214,9,'Property Master'),(238603,1387215,7,'Assistant Art Director'),(238603,1387216,7,'Leadman'),(238603,1387217,7,'Art Department Coordinator'),(238603,1387243,6,'Sound Effects Editor'),(238603,1387243,5,'Dialogue Editor'),(238603,1387244,6,'Sound Designer'),(238603,1387244,6,'Supervising Sound Editor'),(238603,1387245,6,'Foley'),(238603,1387246,6,'Sound Effects Editor'),(238603,1387247,10,'Visual Effects Supervisor'),(238603,1387248,10,'Visual Effects Supervisor'),(238603,1387250,10,'Visual Effects Producer'),(238603,1387251,10,'Visual Effects Producer'),(238603,1387252,9,'Stunt Coordinator'),(238603,1387254,11,'Gaffer'),(238603,1387256,8,'Set Costumer'),(238603,1387259,8,'Set Costumer'),(238603,1387265,6,'Music Editor'),(238603,1387266,9,'Transportation Captain'),(238603,1387267,2,'Script Supervisor'),(238603,1387268,2,'Script Coordinator'),(238603,1396802,9,'Visual Effects Editor'),(238603,1399866,9,'Visual Effects Editor'),(238603,1401147,9,'Visual Effects Editor'),(238603,1418399,1,'Camera Operator'),(238603,1428233,8,'Makeup Artist'),(238603,1428234,8,'Makeup Artist'),(58680,56714,2,'Director'),(58680,64311,4,'Writer'),(264644,465,3,'Executive Producer'),(264644,11295,3,'Casting'),(264644,23545,3,'Casting'),(264644,43144,3,'Executive Producer'),(264644,43147,3,'Producer'),(264644,56021,1,'Director of Photography'),(264644,75828,3,'Production Manager'),(264644,83281,2,'Director'),(264644,92234,9,'Stunt Coordinator'),(264644,90693,8,'Costume Design'),(264644,198641,7,'Production Design'),(264644,551482,6,'Original Music Composer'),(264644,967559,7,'Art Direction'),(264644,1116093,3,'Executive Producer'),(264644,1167206,5,'Editor'),(264644,1310031,4,'Screenplay'),(264644,1310031,3,'Executive Producer'),(264644,1310031,4,'Novel'),(264644,1375896,3,'Producer'),(264644,1375897,3,'Executive Producer'),(264644,1492086,3,'Executive Producer'),(264644,1492088,3,'Executive Producer'),(264644,1492089,7,'Set Decoration'),(264644,1510491,9,'Stunt Coordinator'),(107811,13585,3,'Casting'),(107811,8707,8,'Costume Design'),(107811,10421,7,'Production Design'),(107811,31710,3,'Producer'),(107811,47293,1,'Director of Photography'),(107811,53012,6,'Music'),(107811,52114,2,'Director'),(107811,52114,4,'Screenplay'),(107811,54419,3,'Producer'),(107811,58871,5,'Editor'),(107811,62758,3,'Producer'),(107811,112307,7,'Set Decoration'),(107811,226089,2,'Director'),(107811,955114,3,'Producer'),(107811,1269670,8,'Makeup Artist'),(107811,1364433,2,'Script Supervisor'),(107811,1387217,7,'Art Department Coordinator'),(107811,1407238,2,'Script Supervisor'),(107811,1460815,7,'Set Decoration'),(107811,1460816,8,'Hairstylist'),(107811,1460817,8,'Makeup Department Head'),(107811,1460818,8,'Makeup Artist'),(107811,1460819,8,'Makeup Artist'),(107811,1460820,8,'Makeup Artist'),(107811,1460821,7,'Art Department Coordinator'),(107811,1460825,2,'Script Supervisor'),(144340,3289,2,'Director'),(144340,3289,3,'Producer'),(144340,45584,3,'Producer'),(144340,57245,3,'Producer'),(144340,193394,4,'Screenplay'),(48217,37626,2,'Director'),(48217,37626,4,'Writer'),(48217,51833,4,'Writer'),(47502,8217,9,'Cinematography'),(47502,380,3,'Producer'),(47502,9046,4,'Screenplay'),(47502,9046,4,'Theatre Play'),(47502,47773,2,'Director'),(84892,5914,3,'Casting'),(84892,4190,8,'Costume Design'),(84892,6949,3,'Producer'),(84892,8846,1,'Director of Photography'),(84892,15350,5,'Editor'),(84892,19016,6,'Original Music Composer'),(84892,19311,4,'Screenplay'),(84892,19311,2,'Director'),(84892,19311,3,'Executive Producer'),(84892,19311,4,'Novel'),(84892,39123,3,'Casting'),(84892,52445,3,'Producer'),(84892,52897,3,'Producer'),(84892,82132,3,'Executive Producer'),(84892,1015922,2,'Script Supervisor'),(84892,1193617,7,'Production Design'),(44853,4023,3,'Casting'),(44853,172,2,'Director'),(44853,173,3,'Producer'),(44853,2071,7,'Production Design'),(44853,3192,3,'Casting'),(44853,5328,3,'Casting'),(44853,10759,6,'Music'),(44853,20462,3,'Casting'),(44853,26190,4,'Screenplay'),(44853,26192,1,'Director of Photography'),(44853,28157,5,'Editor'),(44853,31929,4,'Novel'),(44853,957129,7,'Production Design'),(44853,1316756,2,'Script Supervisor'),(44853,1324920,8,'Costume Design'),(44853,1368650,8,'Makeup Artist'),(44853,1426735,7,'Set Decoration'),(44853,1523872,8,'Hairstylist'),(44853,1523874,7,'Art Department Coordinator'),(157544,68602,3,'Producer'),(157544,3953,3,'Producer'),(157544,10421,7,'Production Design'),(157544,20193,2,'Director'),(157544,58191,3,'Producer'),(157544,60426,4,'Screenplay'),(157544,73417,6,'Original Music Composer'),(157544,95324,4,'Screenplay'),(157544,1034748,3,'Casting'),(157544,1414539,8,'Makeup Department Head'),(157544,1428986,3,'Producer'),(157544,1447600,5,'Editor'),(157544,1457694,8,'Hairstylist'),(157544,1457713,8,'Hairstylist'),(157544,1493522,8,'Costume Design'),(157544,1493973,3,'Casting'),(157544,1494252,1,'Director of Photography'),(157544,1494277,8,'Costume Supervisor'),(157544,1494278,8,'Set Costumer'),(157544,1494279,2,'Script Supervisor'),(59678,465,3,'Executive Producer'),(59678,11090,3,'Executive Producer'),(59678,11112,3,'Producer'),(59678,16363,3,'Casting'),(59678,16368,6,'Original Music Composer'),(59678,19295,3,'Executive Producer'),(59678,39200,7,'Production Design'),(59678,39201,7,'Set Decoration'),(59678,70522,3,'Executive Producer'),(59678,155531,2,'Director'),(59678,155531,4,'Writer'),(59678,208693,3,'Producer'),(59678,223202,6,'Music Supervisor'),(59678,223247,6,'Supervising Sound Editor'),(59678,968632,3,'Executive Producer'),(59678,968858,1,'Director of Photography'),(59678,969704,5,'Editor'),(59678,1300066,8,'Costume Design'),(59678,1337422,2,'Script Supervisor'),(59678,1360275,6,'Production Sound Mixer'),(59678,1373711,6,'Sound Effects Editor'),(59678,1388897,1,'Camera Operator'),(59678,1388897,1,'Steadicam Operator'),(59678,1393303,6,'Sound Designer'),(59678,1427557,1,'Still Photographer'),(59678,1455948,3,'Executive Producer'),(59678,1553153,7,'Art Direction'),(59678,1834969,6,'Boom Operator'),(79777,2073,3,'Casting'),(79777,2243,7,'Production Design'),(79777,4501,1,'Director of Photography'),(79777,4528,5,'Editor'),(79777,5488,6,'Original Music Composer'),(79777,11701,2,'Director'),(79777,11701,4,'Writer'),(79777,11701,3,'Producer'),(79777,16729,3,'Producer'),(79777,46019,8,'Costume Design'),(79777,63946,3,'Producer'),(79777,67204,7,'Set Decoration'),(79777,114479,3,'Producer'),(79777,142325,3,'Associate Producer'),(79777,1428927,2,'Script Supervisor'),(79777,1494210,1,'Steadicam Operator'),(79777,1494210,1,'Camera Operator'),(79777,1530861,3,'Executive Producer'),(79777,1530865,3,'Executive Producer'),(158011,4500,6,'Original Music Composer'),(158011,16492,7,'Production Design'),(158011,16492,7,'Art Direction'),(158011,37948,2,'Director'),(158011,52001,4,'Story'),(158011,57524,4,'Screenplay'),(158011,57524,4,'Story'),(158011,62143,3,'Producer'),(158011,74580,3,'Producer'),(158011,971003,5,'Editor'),(158011,1106628,3,'Producer'),(158011,1160627,3,'Producer'),(158011,1160628,3,'Producer'),(158011,1223327,1,'Director of Photography'),(158011,1281700,4,'Story'),(407887,78866,4,'Screenplay'),(407887,78866,2,'Director'),(407887,143804,4,'Screenplay'),(407887,148676,3,'Producer'),(407887,1604286,4,'Writer'),(62204,2352,2,'Director'),(62204,2356,4,'Writer'),(62204,4034,8,'Costume Design'),(62204,10423,8,'Costume Design'),(62204,20075,6,'Music'),(62204,52093,5,'Editor'),(62204,66271,9,'Cinematography'),(59457,46266,6,'Music'),(59457,227936,2,'Director'),(59457,227936,4,'Writer'),(59457,1037931,1,'Director of Photography'),(59457,1812637,5,'Editor'),(37414,172,2,'Director'),(37414,172,4,'Writer'),(37414,3335,4,'Novel'),(37414,96166,4,'Screenplay'),(43867,1546,4,'Screenplay'),(43867,3358,7,'Art Direction'),(43867,8503,6,'Original Music Composer'),(43867,14569,1,'Director of Photography'),(43867,14676,9,'Additional Dialogue'),(43867,14960,1,'Director of Photography'),(43867,18908,4,'Novel'),(43867,31497,2,'Director'),(43867,32427,2,'Director'),(43867,33276,8,'Costume Design'),(43867,68417,5,'Editor'),(43867,96253,4,'Adaptation'),(43867,1168853,4,'Writer'),(43867,1368085,9,'Sound Recordist'),(39780,58094,2,'Director'),(39780,65035,4,'Screenplay'),(36691,2952,3,'Casting'),(36691,1884,3,'Producer'),(36691,16304,4,'Screenplay'),(36691,16304,2,'Director'),(36691,16305,4,'Screenplay'),(36691,16305,2,'Director'),(36691,18344,3,'Producer'),(45324,37852,2,'Director'),(45324,57884,4,'Writer'),(56601,10494,6,'Music'),(56601,22078,3,'Producer'),(56601,56506,2,'Director'),(56601,63775,3,'Executive Producer'),(56601,111212,3,'Producer'),(56601,954783,3,'Producer'),(56601,964702,3,'Producer'),(56601,1201225,1,'Director of Photography'),(56601,1291345,4,'Writer'),(56601,1291345,4,'Story'),(56601,1291345,3,'Producer'),(56601,1291347,3,'Line Producer'),(56601,1291348,3,'Producer'),(56601,1291349,3,'Executive Producer'),(126319,45774,3,'Producer'),(126319,59447,3,'Producer'),(126319,108842,3,'Producer'),(126319,126597,2,'Director'),(126319,126599,2,'Director'),(126319,1064165,4,'Screenplay'),(126319,1092607,2,'Director'),(126319,1163106,6,'Original Music Composer'),(126319,1292187,3,'Producer'),(126319,1340961,4,'Novel'),(126319,1340962,7,'Production Design'),(126319,1340963,7,'Production Design'),(67660,14768,5,'Assistant Editor'),(67660,17995,6,'Assistant Sound Editor'),(67660,31121,3,'Producer'),(67660,31123,3,'Executive Producer'),(67660,20400,2,'Director'),(67660,20406,1,'Director of Photography'),(67660,21141,6,'Music Editor'),(67660,49911,6,'Music'),(67660,54606,3,'Casting'),(67660,59922,3,'Executive Producer'),(67660,59922,3,'Unit Production Manager'),(67660,55600,2,'First Assistant Director'),(67660,113046,6,'Sound Re-Recording Mixer'),(67660,113073,6,'Sound Re-Recording Mixer'),(67660,57769,5,'Editor'),(67660,72111,3,'Location Manager'),(67660,82587,4,'Book'),(67660,82587,3,'Executive Producer'),(67660,86197,8,'Costume Design'),(67660,112521,7,'Production Design'),(67660,147711,4,'Writer'),(67660,147712,4,'Writer'),(67660,554888,6,'Sound Effects Editor'),(67660,930028,1,'Camera Operator'),(67660,957315,6,'Sound Mixer'),(67660,959111,7,'Set Decoration'),(67660,970836,3,'Casting Associate'),(67660,983595,7,'Art Direction'),(67660,1033106,8,'Set Costumer'),(67660,1088600,8,'Set Costumer'),(67660,1102803,8,'Key Hair Stylist'),(67660,1158052,8,'Makeup Department Head'),(67660,1301145,6,'Sound Effects Editor'),(67660,1333978,8,'Key Makeup Artist'),(67660,1378225,5,'Dialogue Editor'),(67660,1389138,2,'Script Supervisor'),(67660,1400070,6,'Sound Effects Editor'),(67660,1400079,1,'Camera Operator'),(67660,1402687,9,'Stunt Coordinator'),(67660,1407028,1,'Still Photographer'),(67660,1413095,6,'Supervising Sound Editor'),(67660,1415610,9,'Property Master'),(67660,1460587,10,'Special Effects Supervisor'),(67660,1476175,1,'First Assistant Camera'),(67660,1508556,8,'Hair Department Head'),(67660,1532691,7,'Construction Coordinator'),(67660,1532739,7,'Art Department Coordinator'),(67660,1534985,6,'Boom Operator'),(67660,1538255,8,'Key Costumer'),(67660,1543137,8,'Costume Supervisor'),(67660,1563920,7,'Leadman'),(67660,1691195,1,'Steadicam Operator'),(67660,1697452,3,'Production Coordinator'),(67660,1704427,1,'First Assistant Camera'),(67660,1733502,3,'Executive Producer'),(67660,1733509,2,'Second Assistant Director'),(67660,1733511,3,'Production Supervisor'),(67660,1733514,11,'Chief Lighting Technician'),(67660,1733525,3,'Production Accountant'),(67660,1733526,9,'Unit Publicist'),(67660,1733530,9,'Transportation Captain'),(67660,1733531,9,'Transportation Co-Captain'),(75674,908,5,'Editor'),(75674,13585,3,'Casting'),(75674,17285,4,'Writer'),(75674,22429,7,'Art Direction'),(75674,52452,6,'Music Supervisor'),(75674,57126,1,'Director of Photography'),(75674,72112,9,'Special Effects Coordinator'),(75674,90429,2,'Director'),(75674,90429,3,'Producer'),(75674,226463,6,'Original Music Composer'),(75674,293911,2,'Director'),(75674,293911,5,'Editor'),(75674,293911,3,'Producer'),(75674,979055,1,'Camera Operator'),(75674,1100137,11,'Gaffer'),(75674,1118398,8,'Costume Supervisor'),(75674,1118402,9,'Special Effects Coordinator'),(75674,1197263,5,'Dialogue Editor'),(75674,1202539,8,'Costume Design'),(75674,1287812,7,'Set Decoration'),(75674,1297659,6,'Sound Re-Recording Mixer'),(75674,1319827,7,'Production Design'),(75674,1328375,10,'Visual Effects Supervisor'),(75674,1341138,6,'Sound Re-Recording Mixer'),(75674,1345616,6,'Music Editor'),(75674,1357064,1,'Camera Operator'),(75674,1384322,1,'Camera Operator'),(75674,1391129,9,'Stunt Coordinator'),(75674,1392116,7,'Set Designer'),(75674,1395309,9,'Property Master'),(75674,1395311,6,'Foley'),(75674,1395315,6,'Supervising Sound Editor'),(75674,1395316,5,'Dialogue Editor'),(75674,1395318,9,'Sound Recordist'),(75674,1395319,9,'Sound Recordist'),(75674,1395320,10,'Visual Effects Producer'),(75674,1395321,10,'Visual Effects Supervisor'),(75674,1395322,1,'Camera Operator'),(75674,1395323,1,'Camera Operator'),(75674,1395324,1,'Camera Operator'),(75674,1395324,1,'Steadicam Operator'),(75674,1395326,9,'Chef'),(75674,1440228,6,'Sound Re-Recording Mixer'),(75674,1537698,6,'Music Supervisor'),(76726,1720,3,'Casting'),(76726,2043,3,'Producer'),(76726,2625,7,'Supervising Art Director'),(76726,10420,7,'Production Design'),(76726,13179,6,'Sound Re-Recording Mixer'),(76726,23849,7,'Set Decoration'),(76726,19692,8,'Costume Design'),(76726,11303,3,'Producer'),(76726,61848,3,'Executive Producer'),(76726,94545,1,'Director of Photography'),(76726,203285,4,'Screenplay'),(76726,203285,4,'Story'),(76726,548439,6,'Foley'),(76726,548445,6,'Foley'),(76726,934803,4,'Screenplay'),(76726,934803,2,'Director'),(76726,965383,5,'Editor'),(76726,1002564,5,'Digital Intermediate'),(76726,1010751,6,'Sound Re-Recording Mixer'),(76726,1031810,6,'Sound Effects Editor'),(76726,1053820,10,'Visual Effects Supervisor'),(76726,1053821,10,'Visual Effects Supervisor'),(76726,1053822,10,'Visual Effects Supervisor'),(76726,1053823,10,'Visual Effects Supervisor'),(76726,1053824,10,'Visual Effects'),(76726,1262097,3,'Publicist'),(76726,1318090,1,'Camera Operator'),(76726,1335151,10,'Visual Effects Supervisor'),(76726,1357061,6,'Sound Designer'),(76726,1377293,6,'Sound Designer'),(76726,1391534,10,'Visual Effects Producer'),(76726,1393278,8,'Makeup Department Head'),(76726,1393278,8,'Hair Department Head'),(76726,1394876,10,'Visual Effects Supervisor'),(76726,1399300,9,'Visual Effects Editor'),(76726,1400402,5,'First Assistant Editor'),(76726,1407028,1,'Still Photographer'),(76726,1408189,9,'Visual Effects Art Director'),(76726,1408790,3,'Location Manager'),(76726,1410273,7,'Art Direction'),(76726,1410274,8,'Hairstylist'),(76726,1410275,8,'Hairstylist'),(76726,1410276,3,'Production Manager'),(76726,1410277,3,'Production Manager'),(76726,1410278,7,'Art Department Coordinator'),(76726,1410279,7,'Assistant Art Director'),(76726,1410280,7,'Greensman'),(76726,1410281,9,'Property Master'),(76726,1410282,7,'Leadman'),(76726,1410283,7,'Set Designer'),(76726,1410298,9,'Visual Effects Editor'),(76726,1410300,10,'Visual Effects Producer'),(76726,1410301,10,'Visual Effects Producer'),(76726,1410302,10,'Visual Effects Producer'),(76726,1410303,10,'Visual Effects Producer'),(76726,1410304,10,'Visual Effects Supervisor'),(76726,1410307,9,'Stunt Coordinator'),(76726,1410308,9,'Second Unit Cinematographer'),(76726,1410309,1,'Camera Operator'),(76726,1410311,11,'Gaffer'),(76726,1410312,11,'Rigging Gaffer'),(76726,1410314,5,'First Assistant Editor'),(76726,1410316,6,'Music Editor'),(76726,1410317,9,'Transportation Coordinator'),(76726,1410318,9,'Picture Car Coordinator'),(76726,1410320,2,'Script Supervisor'),(76726,1410323,3,'Location Manager'),(76726,1459752,10,'Animation'),(76726,1460621,10,'Visual Effects Producer'),(76726,1460644,9,'Visual Effects Editor'),(76726,1511086,6,'Supervising Sound Editor'),(36819,280,2,'Director'),(36819,280,3,'Producer'),(36819,280,4,'Writer'),(36819,383,4,'Writer'),(36819,390,3,'Casting'),(36819,391,7,'Art Direction'),(36819,7020,6,'Music'),(36819,10717,1,'Director of Photography'),(36819,10718,5,'Editor'),(36819,10593,3,'Executive Producer'),(36819,10593,6,'Music'),(36819,61865,3,'Executive Producer'),(36819,69671,8,'Costume Design'),(36819,1057320,3,'Executive Producer'),(36819,1250017,6,'Original Music Composer'),(36819,1353879,7,'Production Design'),(57214,1091,3,'Executive Producer'),(57214,11655,3,'Executive Producer'),(57214,14377,3,'Casting'),(57214,39726,3,'Executive Producer'),(57214,52600,7,'Production Design'),(57214,57130,3,'Producer'),(57214,58744,4,'Story'),(57214,58744,4,'Screenplay'),(57214,59833,3,'Executive Producer'),(57214,60935,3,'Casting'),(57214,62011,3,'Executive Producer'),(57214,208139,4,'Screenplay'),(57214,587802,3,'Executive Producer'),(57214,959274,1,'Director of Photography'),(57214,961610,5,'Editor'),(57214,1119658,10,'VFX Artist'),(57214,1299380,2,'Director'),(101267,339,3,'Producer'),(101267,6159,3,'Producer'),(101267,53267,3,'Executive Producer'),(101267,161159,1,'Still Photographer'),(101267,577594,3,'Associate Producer'),(101267,1027017,2,'Director'),(101267,1027018,2,'Director'),(101267,1027019,3,'Line Producer'),(101267,1027020,5,'Additional Editing'),(101267,1027021,9,'Second Unit'),(101267,1027022,6,'Music Editor'),(101267,1412756,9,'Compositors'),(101267,1456696,9,'Compositors'),(222935,1720,3,'Casting'),(222935,45762,11,'Gaffer'),(222935,6040,3,'Producer'),(222935,89383,7,'Production Design'),(222935,16682,8,'Key Hair Stylist'),(222935,19661,5,'Editor'),(222935,20228,6,'Foley'),(222935,20229,6,'Foley'),(222935,25046,3,'Producer'),(222935,46589,8,'Costume Design'),(222935,77950,4,'Screenplay'),(222935,77951,4,'Screenplay'),(222935,201210,6,'Music'),(222935,989833,6,'Music'),(222935,1053420,2,'Director'),(222935,1118557,1,'Director of Photography'),(222935,1145972,7,'Set Decoration'),(222935,1208353,4,'Novel'),(222935,1208354,3,'Executive Producer'),(222935,1208355,7,'Art Direction'),(222935,1262129,2,'Script Supervisor'),(222935,1307423,1,'Camera Operator'),(222935,1317617,8,'Costume Supervisor'),(222935,1328148,3,'Casting'),(222935,1329112,9,'Makeup Effects'),(222935,1335140,9,'Makeup Effects'),(222935,1338976,6,'Sound Re-Recording Mixer'),(222935,1357060,6,'Foley'),(222935,1367826,10,'Visual Effects Producer'),(222935,1367827,10,'Visual Effects Supervisor'),(222935,1393568,1,'Still Photographer'),(222935,1395366,10,'Visual Effects Supervisor'),(222935,1399057,6,'Sound Editor'),(222935,1401989,1,'Steadicam Operator'),(222935,1406190,6,'Sound Editor'),(222935,1416153,6,'Supervising Sound Editor'),(222935,1466537,3,'Casting Associate'),(222935,1486847,5,'Digital Intermediate'),(222935,1512734,10,'Visual Effects Supervisor'),(222935,1521447,1,'Steadicam Operator'),(222935,1521494,8,'Costume Supervisor'),(222935,1529990,6,'Music Supervisor'),(222935,1539311,10,'Visual Effects Producer'),(222935,1544667,8,'Hair Department Head'),(222935,1548696,5,'Digital Intermediate'),(222935,1567986,9,'Special Effects'),(222935,1611976,7,'Art Department Coordinator'),(222935,1636645,7,'Construction Coordinator'),(222935,1636652,11,'Gaffer'),(222935,1636655,8,'Makeup Department Head'),(222935,1726763,3,'Casting Associate'),(222935,1726764,8,'Set Costumer'),(222935,1726765,1,'Camera Operator'),(222935,1726766,11,'Rigging Gaffer'),(222935,1726767,1,'Steadicam Operator'),(222935,1726768,11,'Rigging Grip'),(222935,1726769,10,'Special Effects Supervisor'),(222935,1726770,10,'Visual Effects Coordinator'),(222935,1726771,9,'Visual Effects Editor'),(222935,1726771,5,'First Assistant Editor'),(222935,1726772,10,'Visual Effects Producer'),(222935,1726773,9,'Special Effects Coordinator'),(222935,1726774,6,'Sound Re-Recording Mixer'),(222935,1726775,8,'Key Hair Stylist'),(222935,1726776,8,'Makeup Artist'),(284296,547,3,'Casting'),(284296,2632,2,'Director'),(284296,2632,4,'Writer'),(284296,2997,3,'Producer'),(284296,4719,6,'Original Music Composer'),(284296,4720,3,'Co-Producer'),(284296,5884,5,'Editor'),(284296,10365,7,'Production Design'),(284296,18783,3,'Executive Producer'),(284296,41909,1,'Director of Photography'),(284296,84932,3,'Co-Producer'),(284296,928158,6,'Original Music Composer'),(284296,1046160,3,'Producer'),(284296,1094563,7,'Set Decoration'),(284296,1252207,3,'Executive Producer'),(284296,1341400,7,'Art Direction'),(284296,1516293,8,'Costume Design'),(284296,1516294,2,'Script Supervisor'),(205220,2949,6,'Original Music Composer'),(205220,3224,2,'Director'),(205220,4581,3,'Producer'),(205220,4581,4,'Screenplay'),(205220,4585,3,'Executive Producer'),(205220,6373,3,'Executive Producer'),(205220,15726,3,'Executive Producer'),(205220,15727,3,'Producer'),(205220,15729,3,'Executive Producer'),(205220,15732,7,'Production Design'),(205220,15734,8,'Costume Design'),(205220,16346,5,'Editor'),(205220,23772,7,'Supervising Art Director'),(205220,53020,7,'Set Decoration'),(205220,71086,1,'Director of Photography'),(205220,73463,3,'Producer'),(205220,73464,3,'Executive Producer'),(205220,113515,4,'Screenplay'),(205220,1187669,7,'Art Direction'),(205220,1311552,4,'Novel'),(205220,1348686,9,'Other'),(286565,1720,3,'Casting'),(286565,6040,3,'Producer'),(286565,25046,3,'Producer'),(286565,41082,7,'Production Design'),(286565,46589,8,'Costume Design'),(286565,77950,4,'Screenplay'),(286565,77951,4,'Screenplay'),(286565,836732,2,'Director'),(286565,1113553,5,'Editor'),(286565,1144816,1,'Director of Photography'),(286565,1208353,4,'Novel'),(286565,1529990,6,'Music Supervisor'),(286565,1778310,6,'Original Music Composer'),(129670,432,1,'Director of Photography'),(129670,2396,7,'Art Direction'),(129670,9408,6,'Sound Designer'),(129670,9568,9,'Stunts'),(129670,17172,3,'Producer'),(129670,17173,3,'Producer'),(129670,12533,6,'Sound Mixer'),(129670,12587,6,'Boom Operator'),(129670,13155,7,'Construction Coordinator'),(129670,13156,9,'Transportation Captain'),(129670,13235,2,'Director'),(129670,21691,3,'Casting'),(129670,16614,7,'Production Design'),(129670,37010,9,'Stunts'),(129670,32796,5,'Editor'),(129670,35514,8,'Costume Design'),(129670,41301,6,'Original Music Composer'),(129670,45838,3,'Executive Producer'),(129670,45838,2,'Assistant Director'),(129670,53967,3,'Executive Producer'),(129670,113043,6,'Foley'),(129670,113045,6,'Foley'),(129670,113090,6,'Foley'),(129670,60385,7,'Set Decoration'),(129670,92332,8,'Hair Department Head'),(129670,73916,6,'ADR & Dubbing'),(129670,548432,6,'Sound Re-Recording Mixer'),(129670,550900,9,'Stunts'),(129670,574380,9,'Stunts'),(129670,1141479,1,'Camera Operator'),(129670,1163926,9,'Post Production Assistant'),(129670,1176869,3,'Executive Producer'),(129670,1196440,1,'Grip'),(129670,1367681,3,'Location Manager'),(129670,1377132,1,'Steadicam Operator'),(129670,1377133,1,'Still Photographer'),(129670,1390522,9,'Property Master'),(129670,1393441,6,'Dolby Consultant'),(129670,1400537,9,'Executive Music Producer'),(129670,1400537,6,'Music Editor'),(129670,1407696,5,'Digital Intermediate'),(129670,1412185,8,'Makeup Artist'),(129670,1415024,9,'Driver'),(129670,1416438,2,'Script Supervisor'),(129670,1418364,9,'Scenic Artist'),(129670,1427435,5,'Digital Intermediate'),(129670,1428230,9,'Picture Car Coordinator'),(129670,1460277,3,'Executive Producer'),(129670,1463778,11,'Electrician'),(129670,1525030,9,'Stunt Coordinator'),(129670,1531874,8,'Makeup Department Head'),(129670,1531875,8,'Costume Supervisor'),(129670,1532750,9,'Executive Visual Effects Producer'),(129670,1533005,7,'Art Department Coordinator'),(129670,1533545,6,'Sound Editor'),(129670,1538365,9,'Stunts'),(129670,1538366,4,'Writer'),(129670,1538374,3,'Unit Production Manager'),(129670,1538376,9,'Post Production Supervisor'),(129670,1538377,9,'Post Production Supervisor'),(129670,1538384,5,'Dialogue Editor'),(129670,1538385,10,'Visual Effects Supervisor'),(129670,1538386,9,'Stunts'),(129670,1538442,11,'Electrician'),(129670,1538444,1,'Grip'),(129670,1538445,1,'Grip'),(129670,1538447,9,'Transportation Coordinator'),(129670,1538448,9,'Transportation Captain'),(129670,1538449,9,'Craft Service'),(57157,4023,3,'Casting'),(57157,4190,8,'Costume Design'),(57157,5886,7,'Set Decoration'),(57157,6949,3,'Executive Producer'),(57157,40383,3,'Executive Producer'),(57157,24190,6,'Original Music Composer'),(57157,19755,7,'Production Design'),(57157,52443,2,'Director'),(57157,52443,3,'Producer'),(57157,52444,4,'Screenplay'),(57157,52444,3,'Producer'),(57157,52445,3,'Producer'),(57157,52446,3,'Producer'),(57157,52449,1,'Director of Photography'),(57157,52450,5,'Editor'),(57157,52451,3,'Co-Producer'),(57157,52454,6,'Original Music Composer'),(57157,52897,3,'Producer'),(57157,1004836,3,'Executive Producer'),(57157,1043368,9,'Special Effects Coordinator'),(57157,1046729,3,'Casting'),(57157,1117873,3,'Co-Producer'),(57157,1193618,7,'Art Direction'),(57157,1287961,3,'Executive Producer'),(57157,1347730,9,'Property Master'),(57157,1395329,7,'Art Department Coordinator'),(57157,1400490,7,'Art Department Coordinator'),(57157,1446191,3,'Co-Producer'),(57157,1473178,8,'Hair Department Head'),(57157,1473179,8,'Makeup Department Head'),(57157,1527447,8,'Assistant Costume Designer'),(57157,1527448,8,'Costume Supervisor'),(57157,1527449,8,'Set Costumer'),(57157,1527450,8,'Set Costumer'),(57157,1527451,8,'Seamstress'),(57157,1527452,8,'Seamstress'),(57157,1527453,8,'Key Hair Stylist'),(57157,1527454,8,'Makeup Artist'),(57157,1527455,9,'Carpenter'),(57157,1527456,9,'Carpenter'),(57157,1527457,9,'Carpenter'),(46889,518,3,'Producer'),(46889,1527,1,'Director of Photography'),(46889,1528,6,'Music'),(46889,2163,2,'Director'),(46889,2163,4,'Writer'),(46889,3394,5,'Editor'),(46889,5381,3,'Producer'),(46889,5382,3,'Producer'),(46889,6347,3,'Casting'),(46889,10725,5,'Editor'),(46889,1377239,2,'Script Supervisor'),(38093,2952,3,'Casting'),(38093,4190,8,'Costume Design'),(38093,15758,3,'Producer'),(38093,27040,7,'Production Design'),(38093,17233,5,'Editor'),(38093,47293,1,'Director of Photography'),(38093,59973,3,'Producer'),(38093,59430,7,'Set Decoration'),(38093,34061,6,'Music'),(38093,34060,6,'Music'),(38093,64140,2,'Director'),(38093,84107,3,'Producer'),(38093,88129,4,'Writer'),(38093,1432053,9,'Unit Publicist'),(38093,1474139,7,'Art Direction'),(122906,1266,3,'Producer'),(122906,2236,3,'Producer'),(122906,2238,3,'Producer'),(122906,7018,2,'Director'),(122906,7018,4,'Writer'),(122906,11295,3,'Casting'),(122906,11345,5,'Editor'),(122906,39202,7,'Set Decoration'),(122906,67203,7,'Art Direction'),(122906,71574,7,'Production Design'),(122906,967792,1,'Director of Photography'),(122906,983071,6,'Original Music Composer'),(60599,8377,6,'Music'),(60599,4404,1,'Director of Photography'),(60599,6409,3,'Producer'),(60599,5886,7,'Set Decoration'),(60599,15426,3,'Casting'),(60599,15528,9,'Special Effects Coordinator'),(60599,17115,5,'Editor'),(60599,17992,6,'Sound mixer'),(60599,21706,3,'Producer'),(60599,36429,8,'Costume Design'),(60599,60106,7,'Production Design'),(60599,74534,3,'Producer'),(60599,75610,9,'Dialect Coach'),(60599,81856,2,'Director'),(60599,81856,4,'Writer'),(60599,1062336,3,'Producer'),(60599,1074163,9,'Stunt Coordinator'),(60599,1170025,6,'Foley'),(60599,1193618,7,'Art Direction'),(60599,1329529,8,'Makeup Department Head'),(60599,1329530,8,'Costume Supervisor'),(60599,1329533,3,'Casting'),(60599,1341856,6,'Foley'),(60599,1358022,10,'Visual Effects Supervisor'),(60599,1379994,10,'Visual Effects Supervisor'),(60599,1391583,1,'Still Photographer'),(60599,1393441,6,'Dolby Consultant'),(60599,1393571,1,'Camera Operator'),(60599,1394751,10,'Visual Effects Producer'),(60599,1395677,7,'Construction Coordinator'),(60599,1395683,11,'Gaffer'),(60599,1400485,3,'Production Supervisor'),(60599,1400486,9,'Post Production Supervisor'),(60599,1400487,9,'Scenic Artist'),(60599,1400488,9,'Scenic Artist'),(60599,1400489,9,'Scenic Artist'),(60599,1400490,7,'Art Department Coordinator'),(60599,1400491,7,'Assistant Art Director'),(60599,1400492,9,'Property Master'),(60599,1400493,7,'Leadman'),(60599,1400494,5,'Dialogue Editor'),(60599,1400495,5,'Dialogue Editor'),(60599,1400496,6,'Sound Engineer'),(60599,1400497,6,'Sound Effects Editor'),(60599,1400498,9,'Visual Effects Editor'),(60599,1400500,10,'Visual Effects Supervisor'),(60599,1400503,1,'Camera Operator'),(60599,1400504,11,'Gaffer'),(60599,1400505,8,'Set Costumer'),(60599,1400506,5,'Digital Intermediate'),(60599,1400507,6,'Music Editor'),(60599,1400508,3,'Publicist'),(60599,1400509,2,'Script Supervisor'),(60599,1400510,3,'Location Manager'),(60599,1400511,9,'Chef'),(60599,1499778,3,'Executive Producer'),(227719,2215,3,'Casting'),(227719,865,3,'Producer'),(227719,11475,7,'Production Design'),(227719,14924,10,'Visual Effects Supervisor'),(227719,35766,8,'Costume Design'),(227719,54843,3,'Producer'),(227719,54844,3,'Producer'),(227719,62907,5,'Editor'),(227719,227360,8,'Makeup Department Head'),(227719,545502,9,'Special Effects Coordinator'),(227719,1049770,5,'Editor'),(227719,1094152,9,'Cinematography'),(227719,1099862,2,'Director'),(227719,1262962,2,'Script Supervisor'),(227719,1270553,4,'Writer'),(227719,1270554,4,'Writer'),(227719,1319158,8,'Costume Supervisor'),(227719,1406105,9,'Visual Effects Editor'),(227719,1444909,8,'Hairstylist'),(227719,1459905,10,'Visual Effects Producer'),(227719,1477393,8,'Makeup Artist'),(227719,1477394,7,'Art Department Coordinator'),(227719,1477395,7,'Art Department Coordinator'),(227719,1477396,7,'Construction Coordinator'),(227719,1477397,9,'CG Supervisor'),(227719,1477398,10,'Animation'),(227719,1477399,10,'Animation'),(227719,1477400,10,'Visual Effects Producer'),(61752,5281,2,'Director'),(61752,1374424,4,'Writer'),(45226,1091,9,'Creative Consultant'),(45226,1724,2,'Director'),(45226,1729,6,'Music'),(45226,4037,9,'Creative Consultant'),(45226,12119,1,'Director of Photography'),(45226,14094,1,'Director of Photography'),(45226,17797,3,'Producer'),(45226,126390,4,'Screenplay'),(45226,999716,9,'Stunt Coordinator'),(45226,1213763,2,'Script Supervisor'),(45226,1502328,4,'Writer'),(179144,7560,1,'Director of Photography'),(179144,42027,8,'Wigmaker'),(179144,56194,4,'Screenplay'),(179144,56194,2,'Director'),(179144,60087,7,'Production Design'),(179144,126970,4,'Screenplay'),(179144,420499,6,'Original Music Composer'),(179144,932943,3,'Researcher'),(179144,933273,3,'Producer'),(179144,933274,3,'Producer'),(179144,1034125,5,'Editor'),(179144,1093364,6,'Foley'),(179144,1182556,8,'Makeup Department Head'),(179144,1318474,1,'Camera Operator'),(179144,1392641,1,'Steadicam Operator'),(179144,1412686,8,'Key Hair Stylist'),(179144,1422522,6,'Sound Effects Editor'),(179144,1458730,8,'Costume Design'),(179144,1458731,3,'Casting'),(179144,1459859,8,'Makeup Artist'),(179144,1600799,6,'Sound Re-Recording Mixer'),(179144,1616847,8,'Assistant Costume Designer'),(179144,1630067,11,'Gaffer'),(179144,1630070,10,'Visual Effects Supervisor'),(179144,1646085,8,'Assistant Costume Designer'),(179144,1646086,8,'Assistant Costume Designer'),(179144,1646087,8,'Assistant Costume Designer'),(179144,1646088,8,'Assistant Costume Designer'),(179144,1646089,1,'Still Photographer'),(179144,1646090,1,'Underwater Camera'),(179144,1646091,10,'Visual Effects Coordinator'),(179144,1646099,8,'Makeup Artist'),(86825,578,3,'Producer'),(86825,893,3,'Producer'),(86825,3287,7,'Production Design'),(86825,3972,4,'Writer'),(86825,7230,5,'Editor'),(86825,6377,6,'Original Music Composer'),(86825,6488,3,'Executive Producer'),(86825,10099,2,'Director'),(86825,10107,1,'Director of Photography'),(86825,21971,7,'Art Direction'),(86825,40374,3,'Producer'),(86825,67796,9,'Additional Writing'),(86825,1004836,3,'Executive Producer'),(86825,1594602,8,'Costume Design'),(38448,1357,1,'Director of Photography'),(38448,1302,3,'Casting'),(38448,17016,2,'Director'),(38448,17016,4,'Writer'),(38448,17016,3,'Producer'),(38448,15878,7,'Production Design'),(38448,12685,5,'Editor'),(38448,42006,3,'Executive Producer'),(38448,123288,6,'Original Music Composer'),(38448,475380,3,'Producer'),(38448,953724,3,'Executive Producer'),(38448,958799,3,'Casting'),(38448,968733,3,'Executive Producer'),(38448,968735,3,'Casting'),(38448,1029064,3,'Line Producer'),(38448,1125638,3,'Executive Producer'),(38448,1252225,3,'Producer'),(61337,2952,3,'Casting'),(61337,39996,2,'Director'),(61337,39996,3,'Producer'),(61337,10639,1,'Director of Photography'),(61337,20838,7,'Set Decoration'),(61337,20968,7,'Production Design'),(61337,29219,7,'Art Direction'),(61337,53468,5,'Editor'),(61337,162532,4,'Screenplay'),(61337,162532,3,'Producer'),(61337,944971,8,'Costume Design'),(61337,1401601,9,'Unit Publicist'),(61337,1415591,4,'Novel'),(61337,1457045,2,'Script Supervisor'),(61337,1467298,7,'Set Decoration'),(89325,321,3,'Producer'),(89325,1213,6,'Music'),(89325,8844,2,'Director'),(89325,8844,3,'Producer'),(89325,8844,4,'Writer'),(89325,9966,5,'Editor'),(89325,25292,3,'Executive Producer'),(89325,133580,3,'Executive Producer'),(89325,133580,4,'Writer'),(89325,230690,3,'Producer'),(89325,958512,9,'Cinematography'),(89325,1026258,3,'Producer'),(89325,1192558,3,'Producer'),(89325,1695848,3,'Producer'),(41508,1259,6,'Original Music Composer'),(41508,47275,2,'Director'),(41508,1201863,4,'Writer'),(44555,607,2,'Director'),(44555,1223,4,'Original Story'),(44555,1224,4,'Original Story'),(44555,57913,1,'Director of Photography'),(44555,130975,4,'Writer'),(44555,130976,4,'Writer'),(173931,1438306,2,'Director'),(61984,43652,2,'Director'),(61984,43659,1,'Director of Photography'),(61984,67078,3,'Producer'),(61984,67078,3,'Executive Producer'),(61984,78014,4,'Writer'),(61984,115641,5,'Editor'),(61984,135238,3,'Executive Producer'),(61984,139090,4,'Story'),(61984,234646,4,'Writer'),(61984,552535,7,'Production Design'),(61984,1537405,6,'Original Music Composer'),(50601,894,6,'Music'),(50601,13585,3,'Casting'),(50601,16938,2,'Director'),(50601,16938,3,'Producer'),(50601,59929,9,'Cinematography'),(50601,61850,8,'Costume Supervisor'),(50601,552531,4,'Screenplay'),(50601,1189759,3,'Producer'),(50601,1189760,3,'Producer'),(50601,1189761,8,'Costume Design'),(50601,1189762,8,'Costume Design'),(50601,1206115,7,'Set Decoration'),(50601,1327180,3,'Producer'),(50601,1327181,7,'Production Design'),(50601,1327182,7,'Art Direction'),(50601,1327183,7,'Art Direction'),(50601,1327184,8,'Makeup Department Head'),(345003,64468,3,'Producer'),(345003,71716,3,'Casting'),(345003,998473,3,'Executive Producer'),(345003,1011452,3,'Executive Producer'),(345003,1128550,2,'Director'),(345003,1128550,4,'Writer'),(345003,1132612,3,'Producer'),(345003,1838599,3,'Producer'),(345003,1838600,6,'Music'),(345003,1838602,8,'Costume Design'),(236751,136,3,'Executive Producer'),(236751,2460,2,'Director'),(236751,2460,4,'Screenplay'),(236751,4501,1,'Director of Photography'),(236751,7494,3,'Casting'),(236751,8752,5,'Editor'),(236751,18311,3,'Producer'),(236751,54267,3,'Co-Producer'),(236751,57263,6,'Original Music Composer'),(236751,71487,4,'Screenplay'),(236751,73021,3,'Executive Producer'),(236751,235558,3,'Producer'),(236751,553211,3,'Co-Producer'),(236751,1131840,3,'Co-Producer'),(236751,1663896,3,'Executive Producer'),(357837,29700,2,'Director'),(357837,45343,4,'Writer'),(358451,64490,5,'Editor'),(358451,103602,2,'Director'),(358451,103602,4,'Writer'),(358451,103603,4,'Writer'),(358451,997118,1,'Director of Photography'),(291870,297,6,'Sound Mixer'),(291870,1589,6,'Original Music Composer'),(291870,5884,5,'Editor'),(291870,6389,1,'Director of Photography'),(291870,6733,2,'Director'),(291870,21747,7,'Production Design'),(291870,42906,3,'Producer'),(291870,1127245,7,'Art Direction'),(291870,1345422,3,'Producer'),(291870,1371033,4,'Screenplay'),(291870,1371034,3,'Producer'),(291870,1371035,3,'Producer'),(291870,1493867,7,'Art Department Coordinator'),(291870,1493964,8,'Costume Design'),(291870,1533038,2,'Script Supervisor'),(206563,468,2,'Director'),(206563,2236,3,'Producer'),(206563,2238,3,'Producer'),(206563,7018,4,'Screenplay'),(206563,8565,3,'Executive Producer'),(206563,8576,6,'Original Music Composer'),(206563,8579,7,'Production Design'),(206563,8581,8,'Costume Design'),(206563,52530,1,'Director of Photography'),(206563,11017,5,'Editor'),(206563,111100,3,'Casting'),(206563,963336,3,'Producer'),(206563,1313766,9,'Additional Writing'),(206563,1372464,4,'Novel'),(206563,1426062,3,'Associate Producer'),(206563,1426063,3,'Casting'),(206563,1426066,7,'Art Direction'),(45317,324,4,'Screenplay'),(45317,1307,3,'Executive Producer'),(45317,59839,3,'Executive Producer'),(45317,5389,7,'Production Design'),(45317,5390,7,'Art Direction'),(45317,5957,7,'Set Decoration'),(45317,6431,3,'Executive Producer'),(45317,6942,9,'Actor\'s Assistant'),(45317,7494,3,'Casting'),(45317,17147,5,'Editor'),(45317,11649,9,'Thanks'),(45317,13240,3,'Producer'),(45317,17883,2,'Director'),(45317,19016,6,'Original Music Composer'),(45317,31710,3,'Producer'),(45317,58363,6,'Sound Designer'),(45317,40471,8,'Costume Design'),(45317,53476,3,'Co-Producer'),(45317,54419,3,'Producer'),(45317,54873,3,'Executive Producer'),(45317,54896,3,'Unit Production Manager'),(45317,15756,9,'Thanks'),(45317,62758,3,'Producer'),(45317,67682,3,'Producer'),(45317,72106,3,'Co-Producer'),(45317,72106,3,'Executive In Charge Of Production'),(45317,72109,9,'Post Production Supervisor'),(45317,74401,1,'Director of Photography'),(45317,82169,1,'Steadicam Operator'),(45317,86525,4,'Screenplay'),(45317,86525,4,'Story'),(45317,86525,3,'Producer'),(45317,132983,4,'Screenplay'),(45317,132983,4,'Story'),(45317,132983,3,'Executive Producer'),(45317,132984,4,'Story'),(45317,132984,3,'Executive Producer'),(45317,147490,3,'Executive Producer'),(45317,202930,9,'Stunts'),(45317,232158,9,'Thanks'),(45317,895204,5,'Assistant Editor'),(45317,1002554,8,'Makeup Artist'),(45317,1046757,9,'Post-Production Manager'),(45317,1269034,9,'Stunts'),(45317,1332017,9,'Stunts'),(45317,1335156,5,'Color Timer'),(45317,1340941,9,'Stunt Coordinator'),(45317,1387247,10,'Visual Effects Supervisor'),(45317,1387251,10,'Visual Effects Producer'),(45317,1400738,2,'Script Supervisor'),(45317,1419090,8,'Hairstylist'),(45317,1442425,8,'Prosthetic Supervisor'),(45317,1447543,10,'Visual Effects'),(45317,1460582,1,'Grip'),(45317,1521474,8,'Hairstylist'),(45317,1532068,2,'Assistant Director'),(45317,1550830,9,'Special Effects Coordinator'),(45317,1551814,2,'Assistant Director'),(45317,1555017,9,'Special Effects'),(45317,1608789,3,'Production Supervisor'),(45317,1656613,6,'Boom Operator'),(249164,1720,3,'Casting'),(249164,1899,3,'Executive Producer'),(249164,11823,8,'Costume Design'),(249164,17863,6,'Music Supervisor'),(249164,40614,7,'Art Direction'),(249164,24256,1,'Director of Photography'),(249164,35699,7,'Set Decoration'),(249164,43899,3,'Executive Producer'),(249164,66963,3,'Producer'),(249164,59706,6,'Original Music Composer'),(249164,101903,4,'Screenplay'),(249164,197930,9,'Stunt Coordinator'),(249164,774208,7,'Production Design'),(249164,1182909,8,'Key Hair Stylist'),(249164,1284493,2,'Director'),(249164,1314441,5,'Editor'),(249164,1378728,2,'Script Supervisor'),(249164,1406202,3,'Executive Producer'),(249164,1406202,4,'Novel'),(249164,1444287,8,'Makeup Artist'),(249164,1514148,8,'Hairstylist'),(249164,1531832,10,'Visual Effects Coordinator'),(256092,30874,3,'Casting'),(256092,30876,3,'Casting'),(256092,78967,5,'Editor'),(256092,79116,8,'Costume Design'),(256092,78217,4,'Writer'),(256092,78219,4,'Writer'),(256092,80683,3,'Producer'),(256092,84981,2,'Director'),(256092,957786,7,'Production Design'),(256092,1265157,9,'Stunt Coordinator'),(256092,1307805,3,'Production Manager'),(256092,1325555,6,'Original Music Composer'),(256092,1325839,4,'Writer'),(256092,1325840,3,'Producer'),(256092,1325841,1,'Director of Photography'),(256092,1325867,7,'Art Direction'),(256092,1325868,7,'Set Decoration'),(256092,1395242,1,'Still Photographer'),(256092,1427457,8,'Makeup Artist'),(256092,1427461,6,'Sound Designer'),(256092,1427462,6,'Sound Effects Editor'),(256092,1427464,6,'Sound Effects Editor'),(256092,1427466,1,'Camera Operator'),(256092,1427467,5,'First Assistant Editor'),(256092,1427468,3,'Location Manager'),(167073,3225,4,'Screenplay'),(167073,4483,9,'Thanks'),(167073,6226,3,'Executive Producer'),(167073,11295,3,'Casting'),(167073,40810,6,'Sound Designer'),(167073,40810,6,'Supervising Sound Editor'),(167073,40813,6,'ADR & Dubbing'),(167073,40813,5,'Dialogue Editor'),(167073,34001,3,'Producer'),(167073,19016,6,'Original Music Composer'),(167073,20424,8,'Costume Design'),(167073,26143,7,'Art Direction'),(167073,38523,7,'Production Design'),(167073,43159,8,'Makeup Artist'),(167073,51675,3,'Producer'),(167073,60316,3,'Line Producer'),(167073,69374,3,'Co-Producer'),(167073,77269,2,'Director'),(167073,109980,3,'Executive Producer'),(167073,109981,3,'Co-Producer'),(167073,130223,7,'Set Decoration'),(167073,1031978,1,'Director of Photography'),(167073,1125551,5,'Digital Intermediate'),(167073,1138934,3,'Co-Producer'),(167073,1192791,3,'Line Producer'),(167073,1194075,9,'Special Effects'),(167073,1266571,3,'Casting Associate'),(167073,1279526,7,'Production Design'),(167073,1327213,8,'Key Hair Stylist'),(167073,1327223,8,'Makeup Artist'),(167073,1339949,8,'Makeup Department Head'),(167073,1353255,5,'Editor'),(167073,1368852,7,'Set Decoration'),(167073,1376807,6,'Music Editor'),(167073,1390366,1,'Still Photographer'),(167073,1393300,6,'Foley'),(167073,1394004,6,'Sound Re-Recording Mixer'),(167073,1402034,11,'Gaffer'),(167073,1407847,8,'Hair Department Head'),(167073,1408374,6,'Sound Effects Editor'),(167073,1409696,7,'Art Direction'),(167073,1409724,9,'Picture Car Coordinator'),(167073,1411235,10,'Visual Effects Supervisor'),(167073,1411854,3,'Line Producer'),(167073,1413858,9,'Unit Publicist'),(167073,1427834,6,'Sound Effects Editor'),(167073,1436238,2,'Script Supervisor'),(167073,1440477,7,'Set Decoration'),(167073,1465333,3,'Production Manager'),(167073,1465947,6,'Sound Re-Recording Mixer'),(167073,1466006,8,'Makeup Department Head'),(167073,1473169,5,'Digital Intermediate'),(167073,1484249,4,'Novel'),(167073,1510251,10,'VFX Supervisor'),(167073,1516458,8,'Key Hair Stylist'),(167073,1516459,8,'Hair Department Head'),(167073,1531843,3,'Executive Producer'),(167073,1544665,9,'Post Production Supervisor'),(167073,1574102,5,'Digital Intermediate'),(167073,1577998,7,'Assistant Art Director'),(167073,1578000,10,'Visual Effects Coordinator'),(167073,1578001,10,'Visual Effects Producer'),(167073,1578002,1,'First Assistant Camera'),(167073,1578003,11,'Gaffer'),(167073,1578004,1,'Steadicam Operator'),(167073,1578006,8,'Assistant Costume Designer'),(167073,1578007,8,'Assistant Costume Designer'),(167073,1578008,6,'Music Supervisor'),(167073,1578009,5,'Dialogue Editor'),(167073,1578011,5,'First Assistant Editor'),(167073,1611823,3,'Unit Manager'),(167073,1650190,2,'Assistant Director'),(121826,3558,4,'Theatre Play'),(121826,3558,4,'Screenplay'),(121826,4483,2,'Director'),(121826,4483,3,'Executive Producer'),(121826,11269,6,'Original Music Composer'),(121826,19872,7,'Production Design'),(121826,20424,8,'Costume Design'),(121826,23424,3,'Casting'),(121826,24256,1,'Director of Photography'),(121826,51675,3,'Producer'),(121826,55360,3,'Executive Producer'),(121826,66730,3,'Executive Producer'),(121826,71534,5,'Editor'),(121826,1052253,3,'Producer'),(121826,1340898,3,'Executive Producer'),(121826,1340899,3,'Executive Producer'),(121826,1340900,3,'Executive Producer'),(121826,1409768,9,'Stunt Coordinator'),(121826,1531843,3,'Executive Producer'),(121826,1531844,3,'Executive Producer'),(304357,947,6,'Original Music Composer'),(304357,466,3,'Producer'),(304357,1253,7,'Production Design'),(304357,4222,3,'Casting'),(304357,3965,3,'Casting'),(304357,7787,7,'Art Direction'),(304357,10710,7,'Art Direction'),(304357,47205,3,'Casting'),(304357,54777,3,'Casting'),(304357,56786,1,'Director of Photography'),(304357,133502,2,'Director'),(304357,137175,7,'Art Direction'),(304357,139904,6,'Original Music Composer'),(304357,963336,3,'Producer'),(304357,1032067,10,'Special Effects Supervisor'),(304357,1034748,3,'Casting'),(304357,1099948,6,'Music Editor'),(304357,1128796,5,'Editor'),(304357,1312810,6,'Sound Effects Editor'),(304357,1334489,7,'Supervising Art Director'),(304357,1376803,10,'Visual Effects Supervisor'),(304357,1397614,4,'Writer'),(304357,1410142,2,'Script Supervisor'),(304357,1415951,8,'Key Hair Stylist'),(304357,1415951,8,'Key Makeup Artist'),(304357,1421647,6,'Supervising Sound Editor'),(304357,1422818,6,'Music Editor'),(304357,1425931,2,'Script Supervisor'),(304357,1437160,10,'Visual Effects Producer'),(304357,1539786,8,'Costume Supervisor'),(304357,1540471,6,'Music Supervisor'),(63020,37,6,'Music'),(63020,4023,3,'Casting'),(63020,2948,3,'Producer'),(63020,3192,3,'Casting'),(63020,4141,5,'Editor'),(63020,5670,7,'Production Design'),(63020,4907,7,'Set Decoration'),(63020,5328,3,'Casting'),(63020,6495,2,'Director'),(63020,7262,1,'Director of Photography'),(63020,18887,8,'Costume Design'),(63020,19852,4,'Screenplay'),(63020,38804,3,'Producer'),(63020,993781,5,'Editor'),(63020,1327149,8,'Makeup Artist'),(63020,1407825,2,'Script Supervisor'),(63020,1432008,7,'Art Direction'),(63020,1444908,8,'Hairstylist'),(63020,1522025,4,'Novel'),(86829,1223,2,'Director'),(86829,1223,5,'Editor'),(86829,1223,3,'Producer'),(86829,1223,4,'Writer'),(86829,1224,2,'Director'),(86829,1224,4,'Writer'),(86829,1224,3,'Producer'),(86829,1224,5,'Editor'),(86829,1483,9,'Executive Music Producer'),(86829,1484,3,'Casting'),(86829,2423,1,'Director of Photography'),(86829,2997,3,'Producer'),(86829,10575,7,'Production Design'),(86829,7418,8,'Costume Design'),(86829,9619,6,'Supervising Sound Editor'),(86829,9619,6,'Sound Re-Recording Mixer'),(86829,17221,7,'Set Decoration'),(86829,17990,6,'Music Editor'),(86829,22242,8,'Costume Supervisor'),(86829,44482,3,'Executive Producer'),(86829,223239,6,'Production Sound Mixer'),(86829,587969,2,'Script Supervisor'),(86829,968632,3,'Executive Producer'),(86829,969757,3,'Executive Producer'),(86829,1015645,7,'Art Direction'),(86829,1178792,3,'Other'),(86829,1281538,9,'Stunt Coordinator'),(86829,1395255,6,'Sound Re-Recording Mixer'),(86829,1428845,6,'Music Editor'),(86829,1457935,9,'Compositors'),(86829,1462853,1,'Still Photographer'),(86829,1552333,3,'Production Coordinator'),(42345,1938,6,'Original Music Composer'),(42345,6835,4,'Writer'),(42345,6835,3,'Producer'),(42345,7338,7,'Set Decoration'),(42345,7689,8,'Makeup Artist'),(42345,14569,1,'Director of Photography'),(42345,16751,5,'Editor'),(42345,18854,2,'Director'),(42345,18854,3,'Producer'),(42345,29800,8,'Costume Design'),(42345,74692,7,'Art Direction'),(42345,78390,3,'Casting'),(42345,121077,8,'Hairstylist'),(42345,935835,4,'Novel'),(42345,1344817,2,'Script Supervisor'),(42345,1518585,3,'Casting'),(42345,1518586,2,'Assistant Director'),(62728,15379,4,'Novel'),(62728,17608,4,'Screenplay'),(62728,17608,2,'Director'),(45138,1259,6,'Original Music Composer'),(45138,4954,3,'Producer'),(45138,14590,8,'Costume Design'),(45138,29888,7,'Production Design'),(45138,29888,7,'Set Decoration'),(45138,31852,4,'Writer'),(45138,52258,5,'Editor'),(45138,98784,3,'Producer'),(45138,132257,2,'Director'),(45138,132257,4,'Writer'),(45138,132259,4,'Novel'),(45138,138638,7,'Set Decoration'),(45138,138639,8,'Hairstylist'),(45138,240922,1,'Director of Photography'),(45138,1286509,3,'Production Manager'),(45138,1532123,7,'Art Direction'),(45138,1542052,2,'Assistant Director'),(45138,1586001,8,'Makeup Artist'),(45138,1625907,7,'Art Direction'),(45138,1625908,3,'Production Manager'),(80271,5381,3,'Producer'),(80271,5382,3,'Producer'),(80271,5388,5,'Editor'),(80271,40383,3,'Executive Producer'),(80271,52451,3,'Co-Producer'),(80271,54171,3,'Executive Producer'),(80271,62117,3,'Co-Producer'),(80271,71575,1,'Director of Photography'),(80271,82132,3,'Co-Producer'),(80271,229568,4,'Screenplay'),(80271,229568,2,'Director'),(80271,229568,3,'Executive Producer'),(80271,229568,4,'Writer'),(80271,586297,3,'Executive Producer'),(80271,999787,3,'Producer'),(80271,1042699,6,'Music'),(80271,1739946,4,'Screenplay'),(80271,1739947,3,'Co-Producer'),(80271,1739948,3,'Producer'),(190847,2635,3,'Casting'),(190847,6713,3,'Producer'),(190847,10788,7,'Art Direction'),(190847,46266,6,'Original Music Composer'),(190847,53356,4,'Screenplay'),(190847,58477,9,'Thanks'),(190847,71086,1,'Director of Photography'),(190847,75095,6,'Boom Operator'),(190847,80424,7,'Art Direction'),(190847,90508,2,'Director'),(190847,117239,6,'Supervising Sound Editor'),(190847,132212,3,'Executive Producer'),(190847,582928,7,'Production Design'),(190847,582929,7,'Set Decoration'),(190847,1128796,5,'Editor'),(190847,1171432,4,'Story'),(190847,1276527,3,'Producer'),(190847,1276530,3,'Executive Producer'),(190847,1276531,3,'Executive Producer'),(190847,1319623,7,'Art Direction'),(190847,1338240,5,'Dialogue Editor'),(190847,1354913,7,'Art Direction'),(190847,1354914,8,'Costume Design'),(190847,1354915,9,'Property Master'),(190847,1354916,7,'Conceptual Design'),(190847,1354917,9,'Property Master'),(190847,1354918,7,'Art Department Coordinator'),(190847,1354919,9,'Prop Maker'),(190847,1354920,9,'Prop Maker'),(190847,1354922,6,'Sound Re-Recording Mixer'),(190847,1354923,6,'Sound Re-Recording Mixer'),(190847,1354924,6,'Foley'),(190847,1354925,9,'Sound Recordist'),(190847,1354926,9,'Stunt Coordinator'),(190847,1354927,10,'Visual Effects Supervisor'),(190847,1354928,10,'Visual Effects Supervisor'),(190847,1354929,10,'Visual Effects Producer'),(190847,1354930,2,'Script Supervisor'),(88641,1263,3,'Casting'),(88641,2874,3,'Casting'),(88641,3275,3,'Casting'),(88641,9797,5,'Editor'),(88641,12846,1,'Director of Photography'),(88641,14895,3,'Executive Producer'),(88641,33456,8,'Costume Design'),(88641,21797,7,'Set Decoration'),(88641,48443,5,'Editor'),(88641,63614,3,'Producer'),(88641,67834,2,'Director'),(88641,67834,4,'Writer'),(88641,1148214,7,'Art Direction'),(88641,1354400,3,'Executive Producer'),(88641,1397305,7,'Production Design'),(58051,14086,2,'Director'),(58051,14086,4,'Screenplay'),(58051,35086,4,'Story'),(58051,85030,4,'Writer'),(58051,227366,4,'Screenplay'),(58051,227367,4,'Screenplay'),(96399,112630,2,'Director'),(96399,1089565,4,'Writer'),(304410,19074,4,'Screenplay'),(304410,85340,2,'Director'),(304410,1526756,4,'Writer'),(373314,31136,3,'Executive Producer'),(373314,45546,6,'Original Music Composer'),(373314,62342,4,'Writer'),(373314,63099,1,'Director of Photography'),(373314,65814,3,'Executive Producer'),(373314,94047,3,'Executive Producer'),(373314,118901,4,'Writer'),(373314,432629,2,'Director'),(373314,963705,8,'Costume Design'),(373314,1024837,3,'Executive Producer'),(373314,1367057,3,'Co-Producer'),(373314,1490497,3,'Producer'),(373314,1555064,3,'Co-Producer'),(373314,1555066,3,'Executive Producer'),(316727,494,3,'Casting'),(316727,865,3,'Producer'),(316727,19081,3,'Executive Producer'),(316727,53120,2,'Director'),(316727,53120,4,'Writer'),(316727,54843,3,'Producer'),(316727,54844,3,'Producer'),(316727,60870,7,'Production Design'),(316727,67560,5,'Editor'),(316727,92380,6,'Sound Re-Recording Mixer'),(316727,92380,6,'Supervising Sound Editor'),(316727,84348,3,'Producer'),(316727,1030966,3,'Executive Producer'),(316727,1039265,6,'Foley'),(316727,1186277,3,'Producer'),(316727,1186278,6,'Original Music Composer'),(316727,1186279,1,'Director of Photography'),(316727,1319040,3,'Executive Producer'),(316727,1319731,8,'Costume Design'),(316727,1332599,8,'Costume Supervisor'),(316727,1345614,8,'Set Costumer'),(316727,1358021,10,'Visual Effects Producer'),(316727,1364117,7,'Set Decoration'),(316727,1393859,1,'Still Photographer'),(316727,1401149,10,'Visual Effects Producer'),(316727,1401857,3,'Co-Producer'),(316727,1410106,10,'Visual Effects Supervisor'),(316727,1414935,6,'ADR & Dubbing'),(316727,1428842,8,'Set Costumer'),(316727,1434563,9,'Visual Effects Editor'),(316727,1447940,8,'Key Hair Stylist'),(316727,1459723,9,'Special Effects Coordinator'),(316727,1464950,8,'Assistant Costume Designer'),(316727,1468624,8,'Makeup Department Head'),(316727,1473447,10,'Visual Effects Supervisor'),(316727,1476170,2,'Script Supervisor'),(316727,1496422,9,'Visual Effects Editor'),(316727,1527445,5,'Digital Intermediate'),(316727,1532072,7,'Art Department Coordinator'),(316727,1533529,3,'Casting Associate'),(316727,1537105,8,'Makeup Artist'),(316727,1546356,10,'Visual Effects Coordinator'),(316727,1585731,10,'Visual Effects Supervisor'),(316727,1643606,1,'Camera Operator'),(316727,1662702,7,'Art Direction'),(316727,1662707,7,'Assistant Art Director'),(316727,1662708,7,'Assistant Art Director'),(316727,1662713,8,'Seamstress'),(316727,1662715,8,'Set Costumer'),(316727,1662717,1,'Camera Operator'),(316727,1662720,10,'Visual Effects Coordinator'),(316727,1662721,9,'Visual Effects Editor'),(316727,1662724,10,'Visual Effects Producer'),(316727,1662725,10,'Visual Effects Producer'),(316727,1662726,10,'Visual Effects Producer'),(316727,1662728,10,'Visual Effects Supervisor'),(316727,1662730,8,'Hair Department Head'),(316727,1662732,8,'Makeup Artist'),(74534,5489,3,'Casting'),(74534,17510,4,'Screenplay'),(74534,18844,2,'Director'),(74534,29227,3,'Producer'),(321258,68602,3,'Producer'),(321258,3189,5,'Editor'),(321258,3953,3,'Producer'),(321258,3954,3,'Producer'),(321258,6042,1,'Director of Photography'),(321258,21156,3,'Executive Producer'),(321258,23812,7,'Art Direction'),(321258,27160,8,'Costume Design'),(321258,29015,3,'Executive Producer'),(321258,52790,3,'Executive Producer'),(321258,57618,3,'Executive Producer'),(321258,59416,3,'Producer'),(321258,59811,6,'Original Music Composer'),(321258,62768,2,'Director'),(321258,109429,3,'Executive Producer'),(321258,385220,9,'Stunt Coordinator'),(321258,756950,10,'Visual Effects Producer'),(321258,956248,3,'Producer'),(321258,957310,7,'Production Design'),(321258,1116878,8,'Makeup Artist'),(321258,1128312,3,'Producer'),(321258,1148750,8,'Key Hair Stylist'),(321258,1203578,3,'Executive Producer'),(321258,1276559,3,'Executive Producer'),(321258,1338134,6,'Foley'),(321258,1395454,10,'Visual Effects Producer'),(321258,1406825,6,'Supervising Sound Editor'),(321258,1410582,1,'Camera Operator'),(321258,1412722,5,'Digital Intermediate'),(321258,1414558,5,'Digital Intermediate'),(321258,1447246,4,'Writer'),(321258,1460011,9,'Special Effects Coordinator'),(321258,1473445,6,'Sound Re-Recording Mixer'),(321258,1512383,7,'Set Decoration'),(321258,1551838,7,'Assistant Art Director'),(321258,1560665,8,'Costume Supervisor'),(321258,1603473,9,'Stunts'),(321258,1609859,5,'Dialogue Editor'),(321258,1622443,6,'Music Editor'),(321258,1626015,3,'Associate Producer'),(321258,1626017,3,'Casting'),(321258,1626019,3,'Executive Producer'),(321258,1626021,3,'Executive Producer'),(321258,1649998,8,'Assistant Costume Designer'),(321258,1649999,3,'Casting Associate'),(321258,1650000,1,'Still Photographer'),(321258,1650001,10,'Visual Effects Supervisor'),(321258,1650005,5,'Digital Intermediate'),(44040,495,3,'Casting'),(44040,136,3,'Producer'),(44040,16300,1,'Director of Photography'),(44040,6446,9,'Makeup Effects'),(44040,5669,3,'Casting'),(44040,11614,4,'Story'),(44040,11614,3,'Producer'),(44040,23545,3,'Casting'),(44040,27572,4,'Screenplay'),(44040,51897,6,'Original Music Composer'),(44040,51987,7,'Production Design'),(44040,69226,3,'Executive Producer'),(44040,77147,2,'Director'),(44040,142520,3,'Executive Producer'),(44040,578729,8,'Hairstylist'),(44040,958493,3,'Producer'),(44040,965383,5,'Editor'),(44040,1121600,3,'Producer'),(44040,1121601,3,'Line Producer'),(44040,1121601,3,'Production Manager'),(44040,1193620,8,'Costume Design'),(44040,1212071,3,'Casting Associate'),(44040,1316292,8,'Makeup Artist'),(44040,1322019,7,'Art Direction'),(44040,1322113,8,'Costume Supervisor'),(44040,1326769,8,'Assistant Costume Designer'),(44040,1339459,6,'Music Editor'),(44040,1399502,9,'Scenic Artist'),(44040,1401283,7,'Set Designer'),(44040,1401285,9,'Scenic Artist'),(44040,1423203,8,'Hairstylist'),(44040,1423204,8,'Makeup Artist'),(44040,1423205,9,'Makeup Effects'),(44040,1423206,7,'Art Department Coordinator'),(44040,1423207,7,'Assistant Art Director'),(44040,1423208,7,'Assistant Art Director'),(44040,1423209,9,'Property Master'),(44040,1423210,7,'Set Designer'),(44040,1423211,7,'Set Designer'),(44040,1460669,6,'Orchestrator'),(44040,1493522,8,'Assistant Costume Designer'),(44040,1552360,9,'Special Effects Coordinator'),(44040,1552362,6,'Orchestrator'),(280092,494,3,'Casting'),(280092,2127,3,'Producer'),(280092,2128,2,'Director'),(280092,2128,4,'Writer'),(280092,2128,4,'Characters'),(280092,6745,6,'Music Editor'),(280092,21323,7,'Set Decoration'),(280092,47102,1,'Director of Photography'),(280092,62775,3,'Executive Producer'),(280092,64335,5,'Editor'),(280092,66730,3,'Executive Producer'),(280092,66494,8,'Costume Design'),(280092,73417,6,'Original Music Composer'),(280092,84348,3,'Producer'),(280092,90591,3,'Producer'),(280092,169743,7,'Production Design'),(280092,995456,3,'Executive Producer'),(280092,999763,3,'Executive Producer'),(280092,1030966,3,'Executive Producer'),(280092,1059590,1,'Still Photographer'),(280092,1125685,3,'Co-Producer'),(280092,1178366,7,'Art Direction'),(280092,1276601,3,'Executive Producer'),(280092,1317667,8,'Makeup Department Head'),(280092,1338151,5,'Dialogue Editor'),(280092,1367920,8,'Makeup Artist'),(280092,1387185,10,'Visual Effects Producer'),(280092,1399631,6,'Supervising Sound Editor'),(280092,1401857,3,'Co-Producer'),(280092,1402475,8,'Hair Department Head'),(280092,1406825,6,'Sound Re-Recording Mixer'),(280092,1409784,8,'Set Costumer'),(280092,1417867,3,'Associate Producer'),(280092,1430989,8,'Makeup Department Head'),(280092,1435638,8,'Key Hair Stylist'),(280092,1435642,6,'Sound Designer'),(280092,1437197,11,'Gaffer'),(280092,1451997,8,'Set Costumer'),(280092,1451999,2,'Script Supervisor'),(280092,1473447,10,'Visual Effects Supervisor'),(280092,1478662,3,'Co-Producer'),(280092,1494209,1,'Helicopter Camera'),(280092,1533529,3,'Casting Associate'),(280092,1533588,7,'Construction Coordinator'),(280092,1547763,6,'Music Supervisor'),(280092,1548075,7,'Art Department Coordinator'),(280092,1548076,10,'Visual Effects Coordinator'),(280092,1548077,10,'Visual Effects Coordinator'),(280092,1548078,1,'First Assistant Camera'),(280092,1548079,8,'Costume Supervisor'),(280092,1548080,5,'First Assistant Editor'),(280092,1548081,9,'Craft Service'),(280092,1548082,8,'Makeup Artist'),(280092,1657236,1,'Camera Operator'),(294272,495,3,'Casting'),(294272,11699,1,'Director of Photography'),(294272,11625,5,'Editor'),(294272,12653,7,'Supervising Art Director'),(294272,33303,7,'Set Decoration'),(294272,40375,3,'Producer'),(294272,67115,7,'Art Direction'),(294272,67428,4,'Story'),(294272,68016,6,'Orchestrator'),(294272,139145,7,'Production Design'),(294272,211391,6,'Original Music Composer'),(294272,592493,2,'Director'),(294272,592493,4,'Writer'),(294272,984533,7,'Set Decoration'),(294272,989349,8,'Costume Design'),(294272,1024909,8,'Assistant Costume Designer'),(294272,1133332,4,'Writer'),(294272,1332514,8,'Costume Supervisor'),(294272,1337413,6,'Foley'),(294272,1352425,6,'Sound Effects Editor'),(294272,1354928,10,'Visual Effects Supervisor'),(294272,1376902,6,'Supervising Sound Editor'),(294272,1392706,10,'Visual Effects Producer'),(294272,1393445,10,'Visual Effects Supervisor'),(294272,1393446,10,'Visual Effects Producer'),(294272,1400078,10,'Visual Effects Producer'),(294272,1400354,5,'Digital Intermediate'),(294272,1401799,10,'Visual Effects Supervisor'),(294272,1401998,10,'Animation Director'),(294272,1412984,6,'Sound Effects Editor'),(294272,1414177,6,'Sound Effects Editor'),(294272,1414182,6,'ADR & Dubbing'),(294272,1414886,6,'Foley'),(294272,1425978,6,'Sound Re-Recording Mixer'),(294272,1432047,5,'Digital Intermediate'),(294272,1434945,1,'Camera Operator'),(294272,1439092,10,'Visual Effects Supervisor'),(294272,1450233,4,'Story'),(294272,1457325,10,'Animation Supervisor'),(294272,1457327,10,'Animation Director'),(294272,1484178,6,'Sound Effects Editor'),(294272,1494209,1,'Helicopter Camera'),(294272,1497530,3,'Casting Associate'),(294272,1531504,6,'Music Editor'),(294272,1546434,8,'Hair Designer'),(294272,1550780,6,'Sound Effects Editor'),(294272,1568900,2,'Script Supervisor'),(294272,1569332,10,'Visual Effects Coordinator'),(294272,1569334,10,'Visual Effects Coordinator'),(294272,1572873,6,'Foley'),(294272,1590402,6,'Sound Effects Editor'),(294272,1590409,10,'Visual Effects Coordinator'),(294272,1594606,3,'Casting Associate'),(294272,1635535,9,'Special Effects Coordinator'),(294272,1635597,2,'Script Supervisor'),(294272,1658887,6,'Sound Effects Editor'),(294272,1660708,7,'Art Department Coordinator'),(294272,1660709,3,'Casting Associate'),(294272,1660711,3,'Casting Associate'),(294272,1660714,1,'Helicopter Camera'),(294272,1660717,1,'Still Photographer'),(294272,1660719,10,'Animation Director'),(294272,1660720,10,'Animation Director'),(294272,1660722,10,'Creature Design'),(294272,1660723,10,'Creature Design'),(294272,1660724,10,'Creature Design'),(294272,1660726,10,'Visual Effects Coordinator'),(294272,1660727,10,'Visual Effects Coordinator'),(294272,1660728,10,'Visual Effects Coordinator'),(294272,1660729,10,'Visual Effects Supervisor'),(283445,494,3,'Casting'),(283445,53640,1,'Director of Photography'),(283445,55499,4,'Writer'),(283445,55499,4,'Characters'),(283445,55499,3,'Producer'),(283445,60891,6,'Original Music Composer'),(283445,64335,5,'Editor'),(283445,84348,3,'Producer'),(283445,86585,1,'Camera Operator'),(283445,145142,2,'Director'),(283445,928106,4,'Writer'),(283445,928106,4,'Characters'),(283445,938105,5,'Editor'),(283445,967417,1,'Additional Photography'),(283445,995569,6,'ADR & Dubbing'),(283445,999763,3,'Producer'),(283445,1012984,8,'Costume Supervisor'),(283445,1030966,3,'Executive Producer'),(283445,1059590,1,'Still Photographer'),(283445,1087425,7,'Set Decoration'),(283445,1118582,8,'Costume Design'),(283445,1128347,7,'Production Design'),(283445,1129907,2,'Script Supervisor'),(283445,1141796,7,'Art Direction'),(283445,1261682,1,'Camera Operator'),(283445,1327842,5,'Editor'),(283445,1341150,7,'Set Decoration'),(283445,1342625,6,'Sound Re-Recording Mixer'),(283445,1346251,3,'Co-Producer'),(283445,1367920,8,'Makeup Artist'),(283445,1386918,10,'Visual Effects Producer'),(283445,1391693,10,'Visual Effects Supervisor'),(283445,1392104,10,'Visual Effects Producer'),(283445,1399631,6,'Sound Designer'),(283445,1399631,6,'Supervising Sound Editor'),(283445,1401857,3,'Co-Producer'),(283445,1402501,9,'Steadycam'),(283445,1412973,3,'Co-Producer'),(283445,1437304,11,'Gaffer'),(283445,1457485,8,'Hair Department Head'),(283445,1478662,3,'Co-Executive Producer'),(283445,1486960,3,'Casting'),(283445,1494209,1,'Helicopter Camera'),(283445,1533529,3,'Casting Associate'),(283445,1533588,7,'Construction Coordinator'),(283445,1543589,3,'Co-Producer'),(283445,1543591,3,'Casting'),(283445,1545127,5,'Dialogue Editor'),(283445,1547749,8,'Makeup Department Head'),(283445,1548084,7,'Set Decoration'),(283445,1548085,7,'Art Department Coordinator'),(283445,1548086,7,'Construction Coordinator'),(283445,1548087,9,'Carpenter'),(283445,1548088,9,'Carpenter'),(283445,1548089,9,'Special Effects Coordinator'),(283445,1548090,9,'Special Effects Coordinator'),(283445,1548091,10,'Visual Effects Coordinator'),(283445,1548092,10,'Visual Effects Producer'),(283445,1548093,8,'Costume Supervisor'),(283445,1548094,8,'Set Costumer'),(283445,1548095,1,'Steadicam Operator'),(283445,1548096,1,'Still Photographer'),(283445,1548097,1,'Still Photographer'),(283445,1548098,1,'Still Photographer'),(283445,1548099,5,'First Assistant Editor'),(283445,1548100,6,'Foley'),(283445,1548101,6,'Sound Editor'),(283445,1548102,8,'Key Hair Stylist'),(283445,1548103,8,'Key Hair Stylist'),(283445,1548104,8,'Makeup Artist'),(283445,1548105,8,'Makeup Artist'),(88036,3117,7,'Production Design'),(88036,15524,8,'Costume Design'),(88036,19464,1,'Director of Photography'),(88036,31128,3,'Casting'),(88036,51868,5,'Editor'),(88036,59973,3,'Producer'),(88036,94158,6,'Songs'),(88036,183230,4,'Writer'),(88036,184986,7,'Art Direction'),(88036,225556,2,'Director'),(88036,933575,7,'Set Decoration'),(39349,5287,6,'Original Music Composer'),(39349,11699,1,'Director of Photography'),(39349,9774,7,'Set Decoration'),(39349,18887,8,'Costume Design'),(39349,78997,2,'Director'),(39349,1087624,7,'Production Design'),(39349,1218287,5,'Editor'),(39349,1392252,4,'Writer'),(39349,1802938,7,'Art Direction'),(42684,6037,2,'Director'),(42684,6037,3,'Producer'),(42684,6038,2,'Director'),(42684,6038,3,'Producer'),(42684,11091,3,'Executive Producer'),(42684,54419,3,'Executive Producer'),(42684,54873,3,'Executive Producer'),(42684,65884,5,'Editor'),(42684,128635,4,'Writer'),(42684,128636,4,'Writer'),(42684,128636,3,'Producer'),(42684,496733,3,'Producer'),(42684,496733,3,'Casting'),(42684,969021,6,'Original Music Composer'),(42684,970568,7,'Production Design'),(42684,999763,3,'Executive Producer'),(42684,1127471,3,'Producer'),(42684,1127472,3,'Producer'),(42684,1127473,3,'Line Producer'),(42684,1127474,1,'Director of Photography'),(42684,1318663,8,'Costume Design'),(42684,1319123,8,'Makeup Department Head'),(268238,153,6,'Music'),(268238,17510,4,'Screenplay'),(268238,18844,2,'Director'),(268238,966545,9,'Cinematography'),(41823,5281,2,'Director'),(41823,5281,3,'Producer'),(41823,5281,4,'Writer'),(41823,15520,6,'Original Music Composer'),(41823,15521,1,'Director of Photography'),(41823,18747,5,'Editor'),(103731,554,3,'Producer'),(103731,6410,3,'Casting'),(103731,16398,3,'Producer'),(103731,53645,5,'Editor'),(103731,54761,8,'Costume Design'),(103731,60385,7,'Set Decoration'),(103731,71872,2,'Director'),(103731,71872,4,'Writer'),(103731,71880,1,'Director of Photography'),(103731,142850,3,'Executive Producer'),(103731,937895,6,'Original Music Composer'),(103731,965155,3,'Executive Producer'),(103731,1011958,7,'Art Direction'),(103731,1018975,3,'Executive Producer'),(103731,1034679,3,'Producer'),(103731,1147603,7,'Production Design'),(103731,1382732,3,'Executive Producer'),(164558,57492,2,'Director'),(164558,57492,3,'Producer'),(164558,165899,3,'Producer'),(164558,1146048,3,'Producer'),(164558,1146049,3,'Producer'),(75900,59839,3,'Producer'),(75900,3965,3,'Casting'),(75900,16363,3,'Casting'),(75900,20062,3,'Producer'),(75900,29483,4,'Screenplay'),(75900,53527,8,'Costume Design'),(75900,133502,2,'Director'),(75900,966545,1,'Director of Photography'),(75900,966545,6,'Music'),(75900,1034748,3,'Casting'),(75900,1074457,4,'Novel'),(328425,494,3,'Casting'),(328425,9333,8,'Makeup Department Head'),(328425,13175,6,'Foley'),(328425,13005,5,'Editor'),(328425,19081,3,'Executive Producer'),(328425,33192,2,'Director'),(328425,33192,3,'Producer'),(328425,33192,4,'Writer'),(328425,23602,9,'Second Unit Cinematographer'),(328425,29788,7,'Production Design'),(328425,75131,9,'Stunt Coordinator'),(328425,84348,3,'Producer'),(328425,91147,3,'Associate Producer'),(328425,91147,6,'Music Supervisor'),(328425,113853,2,'Script Supervisor'),(328425,223247,6,'Supervising Sound Editor'),(328425,223247,6,'Sound Re-Recording Mixer'),(328425,223690,5,'Editor'),(328425,582924,1,'Director of Photography'),(328425,930189,7,'Art Direction'),(328425,1030966,3,'Executive Producer'),(328425,1059590,1,'Still Photographer'),(328425,1194472,11,'Gaffer'),(328425,1316704,7,'Set Decoration'),(328425,1319040,3,'Executive Producer'),(328425,1355970,6,'Music Editor'),(328425,1379720,3,'Associate Producer'),(328425,1387179,7,'Construction Coordinator'),(328425,1401857,3,'Co-Producer'),(328425,1402001,8,'Costume Supervisor'),(328425,1434549,3,'Producer'),(328425,1461372,6,'First Assistant Sound Editor'),(328425,1519819,2,'Script Supervisor'),(328425,1526870,3,'Associate Producer'),(328425,1532597,8,'Costume Design'),(328425,1533529,3,'Casting Associate'),(328425,1534966,8,'Hair Department Head'),(328425,1545127,5,'Dialogue Editor'),(328425,1546356,10,'Visual Effects Coordinator'),(328425,1546357,1,'First Assistant Camera'),(328425,1546358,1,'First Assistant Camera'),(328425,1546359,6,'Boom Operator'),(328425,1546360,6,'Foley'),(328425,1546361,7,'Leadman'),(87093,510,3,'Producer'),(87093,510,2,'Director'),(87093,541,5,'Editor'),(87093,1307,3,'Executive Producer'),(87093,59839,3,'Executive Producer'),(87093,2423,1,'Director of Photography'),(87093,7130,3,'Producer'),(87093,7130,4,'Writer'),(87093,7131,4,'Writer'),(87093,7131,3,'Producer'),(87093,8275,3,'Executive Producer'),(87093,53073,3,'Producer'),(87093,53078,3,'Executive Producer'),(87093,959668,3,'Executive Producer'),(37931,62831,4,'Writer'),(37931,62863,2,'Director'),(37931,119152,4,'Writer'),(87818,1098,5,'Editor'),(87818,2171,2,'Director'),(87818,2507,1,'Director of Photography'),(87818,5328,3,'Casting'),(87818,5388,5,'Editor'),(87818,7396,3,'Producer'),(87818,7396,2,'Director'),(87818,7408,3,'Producer'),(87818,7416,7,'Production Design'),(87818,9281,2,'Director'),(87818,9040,1,'Director of Photography'),(87818,9360,1,'Still Photographer'),(87818,10970,8,'Costume Design'),(87818,10419,5,'Editor'),(87818,11046,4,'Writer'),(87818,17146,1,'Director of Photography'),(87818,15218,2,'Director'),(87818,15218,4,'Writer'),(87818,15221,6,'Original Music Composer'),(87818,19758,1,'Director of Photography'),(87818,32593,2,'Director'),(87818,18276,5,'Editor'),(87818,21640,7,'Production Design'),(87818,19689,3,'Casting'),(87818,11091,2,'Director'),(87818,21642,7,'Set Decoration'),(87818,23486,6,'Original Music Composer'),(87818,11373,7,'Production Design'),(87818,52112,2,'Director'),(87818,52989,3,'Producer'),(87818,52994,3,'Executive Producer'),(87818,54419,3,'Producer'),(87818,54873,3,'Executive Producer'),(87818,56716,5,'Editor'),(87818,57426,5,'Editor'),(87818,59410,4,'Writer'),(87818,60009,6,'Original Music Composer'),(87818,60663,4,'Writer'),(87818,60947,5,'Editor'),(87818,69670,5,'Editor'),(87818,68441,1,'Director of Photography'),(87818,73108,5,'Editor'),(87818,82482,4,'Writer'),(87818,86197,8,'Costume Design'),(87818,113853,2,'Script Supervisor'),(87818,139145,7,'Production Design'),(87818,141825,2,'Director'),(87818,161159,1,'Still Photographer'),(87818,205158,4,'Writer'),(87818,208238,7,'Set Decoration'),(87818,231829,3,'Executive Producer'),(87818,585655,4,'Writer'),(87818,935467,4,'Writer'),(87818,938681,2,'Director'),(87818,938682,2,'Director'),(87818,938682,4,'Writer'),(87818,938683,4,'Writer'),(87818,938684,4,'Writer'),(87818,961447,7,'Production Design'),(87818,963170,7,'Production Design'),(87818,964101,7,'Set Decoration'),(87818,967666,7,'Set Decoration'),(87818,972554,8,'Costume Design'),(87818,993693,5,'Editor'),(87818,1020060,7,'Set Decoration'),(87818,1038914,6,'Original Music Composer'),(87818,1066767,1,'Director of Photography'),(87818,1083072,8,'Costume Design'),(87818,1155579,8,'Costume Design'),(87818,1193617,7,'Production Design'),(87818,1193619,7,'Set Decoration'),(87818,1271757,7,'Set Decoration'),(87818,1272994,3,'Producer'),(87818,1272994,5,'Editor'),(87818,1272994,2,'Director'),(87818,1272994,4,'Writer'),(87818,1272995,3,'Producer'),(87818,1272996,3,'Producer'),(87818,1272997,6,'Original Music Composer'),(87818,1272998,1,'Director of Photography'),(87818,1272999,5,'Editor'),(87818,1273000,5,'Editor'),(87818,1273001,7,'Production Design'),(87818,1273002,7,'Set Decoration'),(87818,1273003,7,'Set Decoration'),(87818,1273004,8,'Costume Design'),(87818,1273006,8,'Costume Design'),(87818,1346442,4,'Writer'),(87818,1393859,1,'Still Photographer'),(87818,1395269,10,'Visual Effects'),(87818,1407697,2,'Script Supervisor'),(87818,1418074,2,'Script Supervisor'),(87818,1424894,8,'Hair Department Head'),(87818,1450000,2,'Script Supervisor'),(87818,1453185,1,'Still Photographer'),(87818,1461498,2,'Script Supervisor'),(87818,1464541,2,'Script Supervisor'),(87818,1473813,2,'Script Supervisor'),(87818,1494658,4,'Writer'),(87818,1521077,2,'Script Supervisor'),(87818,1555714,1,'Still Photographer'),(87818,1555715,1,'Still Photographer'),(87818,1555719,2,'Script Supervisor'),(87818,1555721,2,'Script Supervisor'),(87818,1579627,4,'Writer'),(87818,1579630,2,'Director'),(87818,1579630,4,'Writer'),(87818,1579631,4,'Writer'),(87818,1579632,4,'Writer'),(87818,1579634,4,'Writer'),(87818,1579636,4,'Writer'),(88005,322,3,'Producer'),(88005,546,3,'Casting'),(88005,6488,3,'Producer'),(88005,41082,7,'Production Design'),(88005,62144,7,'Set Decoration'),(88005,72264,1,'Director of Photography'),(88005,71551,2,'Director'),(88005,71551,4,'Screenplay'),(88005,935278,3,'Casting'),(88005,1004836,3,'Producer'),(88005,1006866,3,'Producer'),(88005,1042699,6,'Music'),(88005,1107146,6,'Music'),(88005,1183915,8,'Costume Design'),(88005,1318445,8,'Makeup Department Head'),(52067,61069,2,'Director'),(52067,224530,5,'Editor'),(52067,567562,4,'Screenplay'),(134597,1593,3,'Casting'),(134597,2148,6,'Music'),(134597,2150,5,'Editor'),(134597,5583,5,'Editor'),(134597,51021,4,'Screenplay'),(134597,51023,2,'Director'),(134597,51023,4,'Screenplay'),(134597,57585,1,'Director of Photography'),(134597,62743,7,'Production Design'),(134597,92493,9,'Stunt Coordinator'),(134597,80828,9,'Special Effects Coordinator'),(134597,108765,3,'Producer'),(134597,108768,3,'Producer'),(134597,222460,3,'Production Accountant'),(134597,946579,3,'Producer'),(134597,1149583,1,'Camera Operator'),(134597,1149583,1,'Steadicam Operator'),(134597,1165024,10,'Visual Effects Supervisor'),(134597,1329938,7,'Set Designer'),(134597,1345613,8,'Set Costumer'),(134597,1375911,10,'Visual Effects Supervisor'),(134597,1375912,10,'Visual Effects Producer'),(134597,1394421,2,'Script Supervisor'),(134597,1401175,8,'Makeup Artist'),(134597,1404814,9,'Property Master'),(134597,1412306,3,'Casting'),(134597,1412307,7,'Art Direction'),(134597,1412308,7,'Set Decoration'),(134597,1412309,8,'Costume Design'),(134597,1412310,8,'Hairstylist'),(134597,1412311,8,'Makeup Department Head'),(134597,1412312,3,'Production Supervisor'),(134597,1412313,7,'Art Department Coordinator'),(134597,1412315,7,'Construction Coordinator'),(134597,1412316,7,'Set Designer'),(134597,1412317,9,'Scenic Artist'),(134597,1412318,7,'Leadman'),(134597,1412319,5,'Dialogue Editor'),(134597,1412322,10,'Visual Effects Supervisor'),(134597,1412324,9,'Stunt Coordinator'),(134597,1412325,1,'Additional Photography'),(134597,1412326,9,'Second Unit Cinematographer'),(134597,1412327,9,'Second Unit Cinematographer'),(134597,1412328,1,'Still Photographer'),(134597,1412329,11,'Rigging Gaffer'),(134597,1412330,8,'Costume Supervisor'),(134597,1412331,8,'Set Costumer'),(134597,1412332,6,'Music Editor'),(134597,1412333,9,'Transportation Coordinator'),(134597,1412334,9,'Picture Car Coordinator'),(134597,1412335,2,'Script Supervisor'),(134597,1412336,3,'Location Manager'),(134597,1424782,6,'Supervising Sound Editor'),(209403,23532,2,'Director'),(209403,1192897,4,'Screenplay'),(73247,491,6,'Original Music Composer'),(73247,12433,3,'Producer'),(73247,16157,5,'Editor'),(73247,15409,3,'Casting'),(73247,21645,7,'Production Design'),(73247,41151,1,'Director of Photography'),(73247,58101,4,'Writer'),(73247,58101,3,'Associate Producer'),(73247,60261,9,'Makeup Effects'),(73247,83198,2,'Director'),(73247,1056058,3,'Casting'),(73247,1219883,3,'Executive Producer'),(73247,1318662,7,'Set Decoration'),(73247,1709648,8,'Costume Design'),(253331,1269,3,'Producer'),(253331,5287,6,'Music'),(253331,6479,3,'Casting'),(253331,22043,1,'Director of Photography'),(253331,24173,2,'Director'),(253331,24173,4,'Writer'),(253331,24173,3,'Producer'),(253331,24184,7,'Production Design'),(253331,509950,3,'Producer'),(253331,1332245,9,'Stunts'),(256924,15892,2,'Director'),(256924,15892,4,'Screenplay'),(256924,15017,8,'Makeup Department Head'),(82532,494,3,'Casting'),(82532,1589,6,'Original Music Composer'),(82532,13152,8,'Makeup Department Head'),(82532,41082,7,'Production Design'),(82532,45405,2,'Director'),(82532,45405,4,'Screenplay'),(82532,45407,2,'Director'),(82532,45407,4,'Screenplay'),(82532,52897,3,'Producer'),(82532,61550,1,'Director of Photography'),(82532,800252,5,'Editor'),(82532,888740,7,'Set Decoration'),(82532,928329,8,'Costume Design'),(82532,932178,1,'Still Photographer'),(82532,1333222,9,'Stunt Coordinator'),(82532,1402724,2,'Script Supervisor'),(82532,1407724,3,'Production Supervisor'),(82532,1414546,3,'Unit Production Manager'),(82532,1458987,8,'Hair Department Head'),(82532,1550235,6,'Sound Mixer'),(41110,3063,3,'Producer'),(41110,4404,1,'Director of Photography'),(41110,18838,4,'Screenplay'),(41110,78160,4,'Screenplay'),(41110,78160,2,'Director'),(41110,78160,3,'Producer'),(41110,78160,4,'Story'),(41110,84258,4,'Screenplay'),(41110,84258,5,'Editor'),(41110,111427,4,'Screenplay'),(41110,142387,6,'Original Music Composer'),(41110,1110466,3,'Producer'),(41110,1145014,3,'Producer'),(134371,21475,2,'Director'),(134371,70818,3,'Producer'),(134371,76803,3,'Producer'),(134371,91784,4,'Co-Writer'),(134371,109405,4,'Novel'),(134371,180596,4,'Writer'),(134371,996331,3,'Producer'),(134371,1098665,4,'Co-Writer'),(67911,19292,4,'Writer'),(67911,66512,2,'Director'),(329440,2545,3,'Executive Producer'),(329440,8382,7,'Production Design'),(329440,3893,3,'Producer'),(329440,39454,3,'Producer'),(329440,43425,5,'Editor'),(329440,53680,3,'Casting'),(329440,59811,6,'Music'),(329440,61119,3,'Executive Producer'),(329440,63798,8,'Prosthetic Supervisor'),(329440,134604,4,'Writer'),(329440,146439,3,'Co-Producer'),(329440,936978,1,'Director of Photography'),(329440,954164,3,'Line Producer'),(329440,993880,7,'Art Direction'),(329440,1017343,3,'Line Producer'),(329440,1046231,7,'Art Direction'),(329440,1052870,8,'Costume Design'),(329440,1114792,4,'Writer'),(329440,1300274,2,'Director'),(329440,1335138,7,'Set Decoration'),(329440,1335144,7,'Art Department Coordinator'),(329440,1335149,9,'Special Effects Coordinator'),(329440,1344831,6,'Foley'),(329440,1354928,10,'Visual Effects Supervisor'),(329440,1367560,11,'Gaffer'),(329440,1392104,10,'Visual Effects Producer'),(329440,1395447,6,'Sound Re-Recording Mixer'),(329440,1396810,10,'Visual Effects Producer'),(329440,1396825,5,'Digital Intermediate'),(329440,1399066,1,'Still Photographer'),(329440,1403359,2,'Script Supervisor'),(329440,1404218,6,'Sound Re-Recording Mixer'),(329440,1409863,8,'Key Hair Stylist'),(329440,1409865,8,'Makeup Artist'),(329440,1412452,6,'Supervising Sound Editor'),(329440,1424682,9,'Property Master'),(329440,1428551,2,'Script Supervisor'),(329440,1445854,5,'Digital Intermediate'),(329440,1450234,4,'Writer'),(329440,1486525,2,'Script Supervisor'),(329440,1495871,1,'Steadicam Operator'),(329440,1495874,8,'Set Costumer'),(329440,1500923,3,'Executive Producer'),(329440,1530138,5,'First Assistant Editor'),(329440,1590441,8,'Hairstylist'),(329440,1590442,1,'Helicopter Camera'),(329440,1594682,11,'Gaffer'),(329440,1616397,5,'Digital Intermediate'),(329440,1622443,6,'Music Editor'),(329440,1622445,3,'Producer'),(329440,1622446,8,'Assistant Costume Designer'),(329440,1622447,8,'Seamstress'),(329440,1622448,3,'Casting Associate'),(329440,1622449,11,'Gaffer'),(329440,1622450,1,'First Assistant Camera'),(329440,1622451,1,'First Assistant Camera'),(329440,1622452,1,'Still Photographer'),(329440,1622453,10,'Visual Effects Supervisor'),(329440,1622454,9,'Property Master'),(329440,1622455,8,'Makeup Artist'),(329440,1622456,5,'Digital Intermediate'),(329440,1777438,3,'Executive Producer'),(329440,1777439,3,'Co-Producer'),(47890,8524,7,'Supervising Art Director'),(47890,6584,7,'Production Design'),(47890,8974,8,'Costume Design'),(47890,11997,5,'Editor'),(47890,13265,2,'Director'),(47890,13265,3,'Executive Producer'),(47890,14005,7,'Art Direction'),(47890,32767,4,'Screenplay'),(47890,39968,6,'Original Music Composer'),(47890,47846,1,'Director of Photography'),(47890,58102,3,'Producer'),(47890,68651,4,'Novel'),(47890,71094,5,'Editor'),(252512,6410,3,'Casting'),(252512,2997,3,'Producer'),(252512,5656,2,'Director'),(252512,5656,3,'Producer'),(252512,5656,4,'Writer'),(252512,5669,3,'Casting'),(252512,18783,3,'Producer'),(252512,613035,6,'Original Music Composer'),(252512,1023711,7,'Production Design'),(252512,1046160,3,'Producer'),(252512,1075441,1,'Director of Photography'),(252512,1113553,5,'Editor'),(252512,1457242,3,'Associate Producer'),(252512,1481210,3,'Associate Producer'),(55720,403,1,'Director of Photography'),(55720,1593,3,'Casting'),(55720,2707,3,'Producer'),(55720,2708,3,'Executive Producer'),(55720,2949,6,'Original Music Composer'),(55720,3288,2,'Director'),(55720,3288,3,'Producer'),(55720,6628,7,'Production Design'),(55720,9995,3,'Producer'),(55720,15226,6,'Supervising Sound Editor'),(55720,53902,7,'Set Decoration'),(55720,17674,3,'Casting'),(55720,42032,1,'Camera Operator'),(55720,62142,3,'Co-Producer'),(55720,62142,3,'Unit Production Manager'),(55720,76016,7,'Art Direction'),(55720,151092,4,'Screenplay'),(55720,932923,4,'Story'),(55720,1128796,5,'Editor'),(55720,1172443,1,'Still Photographer'),(55720,1336716,10,'Visual Effects Supervisor'),(55720,1358564,9,'Stunt Coordinator'),(55720,1395035,2,'Script Supervisor'),(55720,1408192,1,'Steadicam Operator'),(55720,1408192,1,'Camera Operator'),(55720,1530085,8,'Costume Design'),(55720,1536630,3,'Production Supervisor'),(55720,1537184,3,'Producer'),(55720,1538148,6,'Music Supervisor'),(55720,1638066,3,'Producer'),(55720,1638067,6,'Sound Mixer'),(68812,5328,3,'Casting'),(68812,18321,8,'Costume Design'),(68812,36999,3,'Producer'),(68812,19689,3,'Casting'),(68812,81476,4,'Screenplay'),(68812,81476,2,'Director'),(68812,81476,3,'Producer'),(68812,1209263,1,'Director of Photography'),(68812,1210567,6,'Music'),(73567,2215,3,'Casting'),(73567,7537,6,'Sound Designer'),(73567,8750,1,'Director of Photography'),(73567,15221,6,'Music'),(73567,15175,2,'Director'),(73567,16492,7,'Production Design'),(73567,52377,3,'Producer'),(73567,72638,4,'Screenplay'),(73567,72643,5,'Editor'),(73567,73844,3,'Associate Producer'),(73567,1031200,3,'Producer'),(73567,1040861,7,'Set Decoration'),(73567,1046134,3,'Executive Producer'),(73567,1122476,3,'Production Supervisor'),(73567,1128684,3,'Executive Producer'),(73567,1128690,3,'Executive Producer'),(73567,1193191,3,'Co-Producer'),(73567,1193191,3,'Unit Production Manager'),(73567,1281881,8,'Costume Design'),(73567,1636277,3,'Co-Executive Producer'),(73567,1749840,3,'Co-Executive Producer'),(73567,1755292,3,'Line Producer'),(41479,126910,2,'Director'),(41479,126910,4,'Writer'),(91076,1241,2,'Director'),(91076,1241,4,'Screenplay'),(91076,1241,3,'Producer'),(91076,7493,5,'Editor'),(91076,10688,1,'Director of Photography'),(91076,21148,7,'Art Direction'),(91076,52989,3,'Producer'),(91076,62517,7,'Production Design'),(91076,976387,4,'Screenplay'),(64559,1002,7,'Set Decoration'),(64559,1134,3,'Producer'),(64559,16732,1,'Director of Photography'),(64559,19070,8,'Costume Design'),(64559,19069,2,'Director'),(64559,19069,4,'Writer'),(64559,19167,6,'Original Music Composer'),(64559,19169,5,'Editor'),(222649,495,3,'Casting'),(222649,117,6,'Music'),(222649,330,5,'Editor'),(222649,474,3,'Casting'),(222649,2997,3,'Producer'),(222649,12219,2,'Director'),(222649,12219,4,'Screenplay'),(222649,12219,3,'Producer'),(222649,20743,3,'Producer'),(222649,62560,7,'Production Design'),(222649,1150161,7,'Set Decoration'),(222649,1150162,7,'Set Decoration'),(222649,1159771,4,'Story'),(222649,1208134,4,'Story'),(222649,1208136,3,'Producer'),(222649,1209263,1,'Director of Photography'),(222649,1330047,3,'Casting'),(222649,1395373,2,'Script Supervisor'),(222649,1452223,8,'Costume Design'),(222649,1466745,7,'Art Direction'),(222649,1466746,8,'Costume Supervisor'),(115872,23611,4,'Novel'),(115872,37577,2,'Director'),(115872,37577,4,'Screenplay'),(115872,84770,4,'Screenplay'),(115872,263085,4,'Screenplay'),(101173,474,3,'Casting'),(101173,932,4,'Screenplay'),(101173,932,3,'Producer'),(101173,5469,2,'Director'),(101173,5469,3,'Producer'),(101173,6210,4,'Theatre Play'),(101173,15493,1,'Director of Photography'),(101173,23451,6,'Original Music Composer'),(101173,28901,3,'Producer'),(101173,61361,7,'Production Design'),(101173,73463,3,'Producer'),(101173,75079,5,'Editor'),(101173,75582,9,'Post Production Supervisor'),(101173,164709,6,'Sound Re-Recording Mixer'),(101173,223778,3,'Producer'),(101173,1052870,8,'Costume Design'),(101173,1308514,3,'Production Manager'),(101173,1319197,7,'Set Decoration'),(101173,1335145,7,'Art Direction'),(101173,1335149,9,'Special Effects Coordinator'),(101173,1335157,9,'Picture Car Coordinator'),(101173,1335158,9,'Transportation Coordinator'),(101173,1338291,2,'Script Supervisor'),(101173,1388878,9,'Stunt Coordinator'),(101173,1393300,6,'Foley'),(101173,1398918,6,'Foley'),(101173,1403631,3,'Publicist'),(101173,1408373,6,'Supervising Sound Editor'),(101173,1408378,6,'ADR & Dubbing'),(101173,1408378,5,'Dialogue Editor'),(101173,1408394,11,'Gaffer'),(101173,1408825,1,'Still Photographer'),(101173,1409865,8,'Makeup Artist'),(101173,1409868,3,'Production Manager'),(101173,1409871,1,'Camera Operator'),(101173,1409871,1,'Steadicam Operator'),(101173,1413843,8,'Makeup Artist'),(101173,1413843,8,'Hairstylist'),(101173,1413844,8,'Makeup Artist'),(101173,1413844,8,'Hairstylist'),(101173,1413845,7,'Art Department Coordinator'),(101173,1413846,9,'Property Master'),(101173,1413847,6,'Dolby Consultant'),(101173,1413848,9,'Visual Effects Editor'),(101173,1413849,10,'Visual Effects Producer'),(101173,1413850,10,'Visual Effects Supervisor'),(101173,1413851,1,'Camera Operator'),(101173,1413852,1,'Camera Operator'),(101173,1413853,11,'Gaffer'),(101173,1413854,8,'Costume Supervisor'),(101173,1413855,5,'First Assistant Editor'),(101173,1413857,9,'Unit Publicist'),(101173,1413858,3,'Publicist'),(101173,1413859,3,'Publicist'),(101173,1413860,3,'Publicist'),(41894,7671,2,'Director'),(184374,42024,9,'Stunt Coordinator'),(184374,229893,6,'Sound Re-Recording Mixer'),(184374,1160347,7,'Production Design'),(184374,1180953,1,'Director of Photography'),(184374,1372633,6,'ADR & Dubbing'),(184374,1372633,5,'Dialogue Editor'),(184374,1389425,6,'Foley'),(184374,1400349,1,'First Assistant Camera'),(184374,1402206,6,'Sound Re-Recording Mixer'),(184374,1432207,2,'Director'),(184374,1432207,5,'Editor'),(184374,1432207,4,'Writer'),(184374,1437049,5,'Editor'),(184374,1568917,6,'Sound Designer'),(184374,1568918,6,'Sound Re-Recording Mixer'),(184374,1583542,6,'Music'),(184374,1583543,7,'Set Decoration'),(184374,1583544,6,'Music Supervisor'),(184374,1583545,1,'Still Photographer'),(184374,1583546,9,'CG Supervisor'),(184374,1583547,10,'Visual Effects'),(184374,1583548,10,'Visual Effects'),(184374,1583549,6,'Sound Effects Editor'),(268171,4907,7,'Production Design'),(268171,5507,3,'Casting'),(268171,8307,5,'Editor'),(268171,23580,3,'Casting'),(268171,28898,2,'Director'),(268171,28898,4,'Writer'),(268171,57367,3,'Producer'),(268171,132841,4,'Writer'),(268171,543194,8,'Costume Design'),(268171,1040861,7,'Set Decoration'),(268171,1153021,7,'Art Direction'),(268171,1163706,1,'Director of Photography'),(268171,1316660,8,'Makeup Artist'),(268171,1316661,3,'Production Supervisor'),(268171,1316662,3,'Producer'),(268171,1316663,3,'Producer'),(268171,1316664,3,'Producer'),(268171,1402047,2,'Script Supervisor'),(78149,4952,3,'Casting'),(78149,10492,4,'Writer'),(78149,55948,2,'Director'),(78149,133259,2,'Director'),(39037,129716,2,'Director'),(39037,129716,4,'Writer'),(39055,56506,2,'Director'),(39055,145182,4,'Writer'),(39055,145183,4,'Writer'),(245846,10762,5,'Editor'),(245846,37281,3,'Casting'),(245846,61627,7,'Production Design'),(245846,75943,8,'Costume Design'),(245846,207954,4,'Writer'),(245846,219961,2,'Director'),(245846,219961,3,'Co-Producer'),(245846,443498,1,'Director of Photography'),(245846,983674,3,'Producer'),(245846,1161602,6,'Original Music Composer'),(245846,1470216,4,'Writer'),(245846,1486918,3,'Producer'),(245846,1486921,3,'Co-Producer'),(49787,76085,3,'Casting'),(49787,81328,2,'Director'),(49787,81328,3,'Producer'),(49787,81328,4,'Writer'),(49787,940630,3,'Producer'),(49787,1316851,9,'Cinematography'),(49787,1316852,6,'Music'),(66767,310,5,'Editor'),(66767,31120,2,'Director'),(66767,31120,4,'Writer'),(66767,39670,8,'Costume Design'),(66767,59871,1,'Director of Photography'),(66767,43229,5,'Editor'),(66767,70789,6,'Music'),(66767,967559,7,'Art Direction'),(66767,1035176,3,'Casting'),(66767,1243312,3,'Producer'),(66767,1280965,3,'Casting'),(66767,1418444,2,'Script Supervisor'),(66767,1516101,3,'Casting'),(66767,1518462,7,'Production Design'),(66767,1518813,3,'Producer'),(66767,1518814,3,'Producer'),(66767,1518819,7,'Set Decoration'),(283671,1291685,2,'Director'),(283671,1334477,4,'Writer'),(283671,1395853,2,'Director'),(283671,1395857,4,'Story'),(283671,1395858,4,'Story'),(217708,6759,3,'Producer'),(217708,42092,2,'Director'),(217708,42092,4,'Writer'),(217708,79815,9,'Cinematography'),(217708,544972,6,'Music'),(217708,1202635,5,'Editor'),(217708,1539034,7,'Production Design'),(217708,1539035,8,'Makeup Department Head'),(217708,1539036,7,'Art Direction'),(42057,6220,4,'Screenplay'),(42057,6220,2,'Director'),(42057,6220,3,'Producer'),(42057,6222,4,'Screenplay'),(42057,6222,3,'Executive Producer'),(42057,53521,3,'Executive Producer'),(78383,2075,4,'Writer'),(78383,61899,3,'Executive Producer'),(78383,65243,3,'Producer'),(78383,71901,2,'Director'),(78383,583874,1,'Director of Photography'),(78383,583875,5,'Editor'),(43090,4583,3,'Producer'),(43090,7800,3,'Casting'),(43090,40608,3,'Producer'),(43090,23811,3,'Casting'),(43090,43901,3,'Producer'),(43090,72762,3,'Executive Producer'),(43090,62901,3,'Producer'),(43090,62900,3,'Line Producer'),(43090,107630,2,'Director'),(43090,107630,4,'Writer'),(43090,957150,1,'Director of Photography'),(43090,957826,3,'Executive Producer'),(43090,960783,5,'Editor'),(43090,989892,7,'Production Design'),(43090,1027125,3,'Producer'),(43090,1311206,3,'Producer'),(43090,1311207,3,'Producer'),(43090,1311208,6,'Original Music Composer'),(43090,1311209,7,'Art Direction'),(43090,1311210,7,'Set Decoration'),(43090,1361529,3,'Associate Producer'),(250066,9445,6,'Sound Effects Editor'),(250066,17175,1,'Director of Photography'),(250066,23906,7,'Set Decoration'),(250066,25009,4,'Writer'),(250066,80824,6,'Sound Designer'),(250066,84702,9,'Stunt Coordinator'),(250066,232858,2,'Director'),(250066,232858,3,'Producer'),(250066,893948,3,'Casting'),(250066,1013105,5,'Editor'),(250066,1024912,7,'Production Design'),(250066,1030585,3,'Producer'),(250066,1167489,5,'Editor'),(250066,1181371,5,'Digital Intermediate'),(250066,1227500,6,'Sound Re-Recording Mixer'),(250066,1258045,6,'Music Editor'),(250066,1303423,3,'Producer'),(250066,1303424,3,'Producer'),(250066,1320552,8,'Costume Supervisor'),(250066,1338330,8,'Costume Design'),(250066,1338484,6,'Sound Effects Editor'),(250066,1340105,2,'Script Supervisor'),(250066,1364100,10,'Visual Effects Supervisor'),(250066,1373429,6,'Sound Re-Recording Mixer'),(250066,1393859,1,'Still Photographer'),(250066,1393862,1,'Steadicam Operator'),(250066,1403860,6,'Sound Re-Recording Mixer'),(250066,1407032,9,'Picture Car Coordinator'),(250066,1412459,8,'Key Costumer'),(250066,1415093,5,'Digital Intermediate'),(250066,1415330,8,'Hairstylist'),(250066,1415334,8,'Makeup Department Head'),(250066,1423203,8,'Hairstylist'),(250066,1423844,1,'Camera Operator'),(250066,1451527,6,'Foley'),(250066,1451541,3,'Casting'),(250066,1458991,7,'Construction Coordinator'),(250066,1490951,11,'Gaffer'),(250066,1495518,3,'Producer'),(250066,1495520,6,'Original Music Composer'),(250066,1495521,6,'Original Music Composer'),(250066,1495522,6,'Original Music Composer'),(250066,1495523,7,'Art Direction'),(250066,1495524,8,'Makeup Artist'),(250066,1495525,7,'Art Department Coordinator'),(250066,1495526,6,'Foley'),(250066,1495527,9,'CG Supervisor'),(250066,1495528,10,'VFX Supervisor'),(250066,1495530,1,'Helicopter Camera'),(250066,1495531,8,'Set Costumer'),(250066,1495532,9,'Transportation Coordinator'),(250066,1827364,3,'Production Coordinator'),(208869,63052,2,'Director'),(208869,63052,4,'Writer'),(208869,63059,4,'Writer'),(208869,1453233,4,'Writer'),(86837,2240,1,'Director of Photography'),(86837,4804,9,'Thanks'),(86837,6011,4,'Screenplay'),(86837,6011,2,'Director'),(86837,6029,5,'Editor'),(86837,6030,3,'Casting'),(86837,40766,1,'Camera Operator'),(86837,19058,8,'Costume Design'),(86837,37768,7,'Production Design'),(86837,54180,2,'Script Supervisor'),(86837,55491,5,'Editor'),(86837,48590,3,'Executive Producer'),(86837,1161091,7,'Set Decoration'),(86837,1433965,8,'Makeup Department Head'),(86837,1449981,8,'Makeup Artist'),(86837,1465577,3,'Production Manager'),(86837,1477800,11,'Electrician'),(86837,1551410,3,'Casting'),(86837,1560609,11,'Gaffer'),(86837,1603706,3,'Co-Producer'),(86837,1605589,7,'Art Direction'),(86837,1670725,9,'Additional Music'),(86837,1699678,2,'Assistant Director'),(106845,1040955,2,'Director'),(106845,1327402,4,'Writer'),(244316,2679,2,'Director'),(244316,16651,5,'Editor'),(244316,18344,3,'Producer'),(244316,56535,6,'Original Music Composer'),(244316,62703,7,'Production Design'),(244316,62922,1,'Director of Photography'),(244316,65109,3,'Line Producer'),(244316,137485,3,'Executive Producer'),(244316,145612,4,'Screenplay'),(244316,178539,3,'Casting'),(244316,583875,5,'Editor'),(244316,966617,3,'Executive Producer'),(244316,1098931,8,'Costume Design'),(244316,1103529,3,'Casting'),(244316,1382036,2,'First Assistant Director'),(244316,1398155,9,'Special Effects Coordinator'),(244316,1399918,6,'Supervising Sound Editor'),(244316,1409225,6,'Music Editor'),(244316,1415077,5,'Editor'),(244316,1426223,4,'Story'),(244316,1426223,4,'Screenplay'),(244316,1426224,3,'Producer'),(244316,1426225,3,'Producer'),(244316,1426229,3,'Co-Producer'),(244316,1426230,3,'Co-Producer'),(244316,1426231,3,'Executive Producer'),(244316,1426232,3,'Associate Producer'),(244316,1533101,6,'Music Supervisor'),(244316,1551838,7,'Art Direction'),(244316,1555314,10,'Visual Effects Coordinator'),(244316,1662345,10,'Visual Effects Supervisor'),(244316,1768379,2,'Second Assistant Director'),(244316,1796688,3,'Co-Producer'),(244316,1870516,3,'Production Manager'),(37737,53616,6,'Original Music Composer'),(37737,119819,2,'Director'),(62215,42,4,'Screenplay'),(62215,42,2,'Director'),(62215,1174,3,'Executive Producer'),(62215,6156,5,'Editor'),(62215,6797,8,'Costume Design'),(62215,7586,7,'Art Direction'),(62215,19353,3,'Executive Producer'),(62215,41909,1,'Director of Photography'),(62215,42099,3,'Producer'),(62215,71161,7,'Production Design'),(62215,57018,3,'Producer'),(66125,554,3,'Executive Producer'),(66125,3050,3,'Associate Producer'),(66125,3050,5,'Editor'),(66125,6625,3,'Executive Producer'),(66125,12203,3,'Casting'),(66125,18845,4,'Novel'),(66125,33195,7,'Production Design'),(66125,60404,1,'Director of Photography'),(66125,59774,3,'Executive Producer'),(66125,65596,3,'Producer'),(66125,72902,3,'Executive Producer'),(66125,74063,3,'Executive Producer'),(66125,74063,4,'Screenplay'),(66125,75940,6,'Original Music Composer'),(66125,78964,3,'Executive Producer'),(66125,110427,2,'Director'),(66125,112679,3,'Producer'),(66125,1017015,7,'Art Direction'),(66125,1122770,3,'Executive Producer'),(66125,1244653,3,'Associate Producer'),(66125,1465890,3,'Executive Producer'),(132316,5288,6,'Original Music Composer'),(132316,35770,2,'Director'),(132316,35771,4,'Screenplay'),(132316,35771,3,'Producer'),(132316,35771,4,'Writer'),(132316,35738,9,'Cinematography'),(132316,231005,4,'Screenplay'),(132316,1026842,5,'Editor'),(68684,66823,2,'Director'),(68684,66823,4,'Writer'),(68684,66825,5,'Editor'),(68684,82627,9,'Makeup Effects'),(68684,553502,4,'Writer'),(68684,567344,6,'Original Music Composer'),(68684,969859,8,'Costume Design'),(68684,1076356,1,'Director of Photography'),(68684,1076360,7,'Set Decoration'),(68684,1304289,3,'Producer'),(68684,1304290,3,'Producer'),(68684,1304291,6,'Original Music Composer'),(68684,1304292,7,'Production Design'),(68684,1304293,9,'Makeup Effects'),(68684,1304294,9,'Makeup Effects'),(68684,1304296,9,'Makeup Effects'),(68684,1304297,9,'Makeup Effects'),(68684,1304298,8,'Makeup Artist'),(68684,1304299,7,'Art Direction'),(68684,1304300,8,'Makeup Artist'),(68684,1658518,3,'Casting'),(40794,72197,2,'Director'),(40794,72197,4,'Writer'),(238636,494,3,'Casting'),(238636,865,3,'Producer'),(238636,8705,7,'Production Design'),(238636,9437,9,'Stunt Coordinator'),(238636,13175,6,'Foley'),(238636,13177,6,'Sound Re-Recording Mixer'),(238636,19081,3,'Executive Producer'),(238636,53120,2,'Director'),(238636,53120,4,'Writer'),(238636,53120,4,'Characters'),(238636,54843,3,'Producer'),(238636,54844,3,'Producer'),(238636,67560,5,'Editor'),(238636,92497,7,'Leadman'),(238636,84348,3,'Producer'),(238636,113853,2,'Script Supervisor'),(238636,126841,9,'Stunt Coordinator'),(238636,223247,6,'Supervising Sound Editor'),(238636,223247,6,'Sound Designer'),(238636,578727,8,'Key Hair Stylist'),(238636,930028,9,'Second Unit Cinematographer'),(238636,960407,5,'Editor'),(238636,1030966,3,'Executive Producer'),(238636,1186277,3,'Producer'),(238636,1186278,6,'Original Music Composer'),(238636,1186279,1,'Director of Photography'),(238636,1186279,1,'Camera Operator'),(238636,1317305,8,'Makeup Department Head'),(238636,1321266,8,'Costume Design'),(238636,1351274,7,'Set Decoration'),(238636,1360111,6,'Music Editor'),(238636,1387179,7,'Construction Coordinator'),(238636,1387180,9,'Property Master'),(238636,1387181,7,'Art Department Coordinator'),(238636,1387183,5,'Dialogue Editor'),(238636,1387184,10,'Visual Effects Supervisor'),(238636,1387185,10,'Visual Effects Producer'),(238636,1387186,1,'Still Photographer'),(238636,1387187,11,'Gaffer'),(238636,1387188,8,'Costume Supervisor'),(238636,1387189,8,'Set Costumer'),(238636,1387190,8,'Set Costumer'),(238636,1387191,3,'Location Manager'),(238636,1387195,6,'Sound Re-Recording Mixer'),(238636,1392623,10,'Visual Effects Coordinator'),(238636,1398101,9,'Visual Effects Editor'),(238636,1403415,1,'Helicopter Camera'),(238636,1427378,1,'Camera Operator'),(238636,1434563,9,'Visual Effects Editor'),(238636,1452614,8,'Hair Department Head'),(238636,1463731,11,'Rigging Grip'),(238636,1473448,1,'Camera Operator'),(238636,1475208,6,'Orchestrator'),(238636,1493771,1,'First Assistant Camera'),(238636,1530726,9,'Armorer'),(238636,1533529,3,'Casting Associate'),(238636,1547235,11,'Rigging Gaffer'),(238636,1547749,8,'Makeup Artist'),(238636,1547751,10,'Visual Effects Coordinator'),(238636,1547756,1,'Camera Operator'),(238636,1547758,11,'Rigging Grip'),(238636,1547759,11,'Rigging Grip'),(238636,1547761,8,'Assistant Costume Designer'),(238636,1547763,6,'Music Supervisor'),(293670,68909,1,'Director of Photography'),(293670,69085,6,'Original Music Composer'),(293670,69388,5,'Editor'),(293670,554373,3,'Producer'),(293670,1294908,6,'Original Music Composer'),(293670,1296119,2,'Director'),(293670,1296119,4,'Writer'),(67675,5388,5,'Editor'),(67675,22818,1,'Director of Photography'),(67675,8305,3,'Executive Producer'),(67675,29216,9,'Choreographer'),(67675,29216,3,'Co-Producer'),(67675,52779,4,'Writer'),(67675,59595,4,'Writer'),(67675,59595,3,'Executive Producer'),(67675,101518,2,'Director'),(67675,111048,3,'Producer'),(67675,964511,8,'Costume Design'),(67675,1224030,4,'Writer'),(250349,81796,4,'Writer'),(250349,121588,2,'Director'),(250349,121588,4,'Writer'),(39806,59923,2,'Director'),(291081,19725,4,'Writer'),(291081,29226,2,'Director'),(291081,118607,4,'Writer'),(41248,20075,6,'Original Music Composer'),(41248,24823,7,'Production Design'),(41248,32506,1,'Director of Photography'),(41248,41524,5,'Editor'),(41248,53206,3,'Producer'),(41248,73829,4,'Screenplay'),(41248,96627,4,'Screenplay'),(41248,96627,2,'Director'),(41248,1462342,8,'Costume Design'),(41248,1640928,3,'Casting'),(52010,67691,3,'Producer'),(52010,145169,2,'Director'),(52010,145170,4,'Screenplay'),(52010,145171,3,'Producer'),(43418,9346,9,'Property Master'),(43418,37280,5,'Editor'),(43418,58652,3,'Executive Producer'),(43418,61799,4,'Writer'),(43418,61799,3,'Co-Producer'),(43418,75940,6,'Original Music Composer'),(43418,75544,2,'Director'),(43418,75544,3,'Co-Producer'),(43418,75553,1,'Camera Operator'),(43418,75553,1,'Director of Photography'),(43418,75555,7,'Production Design'),(43418,75715,9,'Stunt Coordinator'),(43418,82654,3,'Producer'),(43418,1014928,3,'Line Producer'),(43418,1162866,6,'Dolby Consultant'),(43418,1194106,7,'Art Direction'),(43418,1194110,6,'Sound Designer'),(43418,1198829,3,'Casting'),(43418,1198830,8,'Costume Design'),(43418,1325187,7,'Set Decoration'),(43418,1391525,6,'Foley'),(43418,1401734,9,'Stunt Coordinator'),(43418,1402739,5,'Dialogue Editor'),(43418,1403711,8,'Hairstylist'),(43418,1403711,8,'Makeup Artist'),(43418,1403712,3,'Production Manager'),(43418,1403713,7,'Art Department Coordinator'),(43418,1403714,9,'Sound Recordist'),(43418,1403715,6,'Sound Effects Editor'),(43418,1403716,6,'Sound Re-Recording Mixer'),(43418,1403717,9,'Visual Effects Editor'),(43418,1403718,10,'Visual Effects Supervisor'),(43418,1403719,1,'Camera Operator'),(43418,1403721,1,'Still Photographer'),(43418,1403724,11,'Gaffer'),(43418,1403726,9,'Unit Publicist'),(43418,1403728,2,'Script Supervisor'),(43418,1403732,8,'Makeup Artist'),(43418,1482963,3,'Executive Producer'),(43418,1482964,3,'Executive Producer'),(71157,469,6,'Original Music Composer'),(71157,5431,1,'Director of Photography'),(71157,6318,5,'Editor'),(71157,25340,4,'Screenplay'),(71157,53438,5,'Editor'),(71157,63129,3,'Casting'),(71157,64210,4,'Screenplay'),(71157,64210,2,'Director'),(71157,66840,3,'Producer'),(71157,579047,8,'Costume Design'),(71157,1094278,7,'Production Design'),(333355,1,4,'Writer'),(333355,60300,4,'Writer'),(333355,126638,4,'Writer'),(333355,185438,2,'Director'),(333355,185438,4,'Writer'),(333355,1218986,4,'Writer'),(333355,1232445,4,'Writer'),(327833,9187,5,'Editor'),(327833,9545,3,'Casting'),(327833,14695,3,'Producer'),(327833,16644,4,'Screenplay'),(327833,16644,3,'Producer'),(327833,16644,4,'Story'),(327833,19352,6,'Music'),(327833,40608,3,'Associate Producer'),(327833,23811,3,'Casting'),(327833,49605,2,'Director'),(327833,113216,1,'First Assistant Camera'),(327833,57217,1,'Camera Operator'),(327833,61919,1,'Director of Photography'),(327833,62941,4,'Screenplay'),(327833,154804,6,'Sound Re-Recording Mixer'),(327833,229893,6,'Sound Re-Recording Mixer'),(327833,532757,3,'Supervising Producer'),(327833,552422,7,'Production Design'),(327833,1053823,10,'Visual Effects Producer'),(327833,1083936,8,'Costume Design'),(327833,1116881,6,'Sound Re-Recording Mixer'),(327833,1387782,3,'Casting'),(327833,1387782,9,'Thanks'),(327833,1396342,1,'Still Photographer'),(327833,1400415,6,'Music Editor'),(327833,1401317,6,'Sound Designer'),(327833,1402205,6,'Sound Designer'),(327833,1407832,6,'ADR Editor'),(327833,1412747,11,'Gaffer'),(327833,1421633,4,'Screenplay'),(327833,1441224,1,'Steadicam Operator'),(327833,1459141,3,'Producer'),(327833,1460776,5,'Editor'),(327833,1512292,2,'Script Supervisor'),(327833,1637441,9,'Visual Effects Editor'),(327833,1643843,6,'Foley Editor'),(327833,1650940,3,'Associate Producer'),(327833,1650941,3,'Associate Producer'),(327833,1650942,8,'Set Dressing Artist'),(327833,1650943,3,'Location Manager'),(327833,1650944,6,'Music Supervisor'),(327833,1653534,11,'Gaffer'),(327833,1653540,8,'Key Hair Stylist'),(327833,1740783,1,'Key Grip'),(327833,1802684,8,'Key Costumer'),(327833,1802685,11,'Lighting Technician'),(327833,1802687,10,'3D Modeller'),(327833,1802694,8,'Key Makeup Artist'),(327833,1865804,7,'Property Master'),(175528,5290,3,'Casting'),(175528,25142,5,'Editor'),(175528,40384,6,'Original Music Composer'),(175528,19464,1,'Director of Photography'),(175528,22433,3,'Producer'),(175528,11373,7,'Production Design'),(175528,58267,5,'First Assistant Editor'),(175528,60157,8,'Costume Design'),(175528,109692,2,'Director'),(175528,109692,4,'Novel'),(175528,109692,4,'Screenplay'),(175528,109692,3,'Producer'),(175528,83655,6,'Music Supervisor'),(175528,995418,3,'Producer'),(175528,1056043,3,'Unit Production Manager'),(175528,1458581,1,'Still Photographer'),(175528,1480099,2,'Script Supervisor'),(175528,1532690,7,'Art Department Coordinator'),(175528,1534226,11,'Gaffer'),(175528,1542688,9,'Stunt Coordinator'),(175528,1542689,3,'Co-Producer'),(175528,1542690,5,'First Assistant Editor'),(175528,1542695,3,'Casting Associate'),(71805,9152,6,'Original Music Composer'),(71805,12649,3,'Executive Producer'),(71805,12825,7,'Production Design'),(71805,22558,2,'Director'),(71805,22558,4,'Screenplay'),(71805,8313,3,'Casting'),(71805,69253,3,'Producer'),(71805,68124,4,'Screenplay'),(71805,124865,5,'Editor'),(71805,146129,3,'Casting'),(71805,287527,4,'Screenplay'),(71805,552320,1,'Director of Photography'),(71805,837430,3,'Associate Producer'),(71805,936664,8,'Costume Design'),(71805,1061944,4,'Novel'),(71805,1310027,7,'Production Design'),(71805,1337825,7,'Set Decoration'),(71805,1424593,8,'Costume Design'),(71805,1635809,7,'Art Direction'),(71805,1644921,4,'Screenplay'),(71805,1644922,3,'Associate Producer'),(71805,1644923,3,'Casting'),(71805,1644924,7,'Art Direction'),(71805,1644925,7,'Set Decoration'),(71805,1644926,7,'Set Decoration'),(71805,1644927,7,'Set Decoration'),(272693,36425,3,'Producer'),(272693,10548,5,'Editor'),(272693,15359,9,'Stunt Coordinator'),(272693,27154,1,'Director of Photography'),(272693,33437,3,'Producer'),(272693,40142,6,'Sound Re-Recording Mixer'),(272693,42634,7,'Production Design'),(272693,42635,7,'Art Direction'),(272693,104659,3,'Executive Producer'),(272693,117082,2,'Script Supervisor'),(272693,129305,4,'Screenplay'),(272693,129305,3,'Co-Producer'),(272693,964768,3,'Producer'),(272693,991868,2,'Director'),(272693,1021206,3,'Casting'),(272693,1046971,3,'Executive Producer'),(272693,1046971,3,'Unit Production Manager'),(272693,1097118,1,'Camera Operator'),(272693,1176357,3,'Casting'),(272693,1192579,8,'Costume Design'),(272693,1316003,8,'Makeup Department Head'),(272693,1333607,8,'Costume Supervisor'),(272693,1336197,6,'Music Editor'),(272693,1367681,3,'Location Manager'),(272693,1396840,6,'Sound Mixer'),(272693,1404091,4,'Book'),(272693,1404093,3,'Executive Producer'),(272693,1404094,6,'Music'),(272693,1406898,6,'Supervising Sound Editor'),(272693,1412770,8,'Key Hair Stylist'),(272693,1415342,3,'Production Manager'),(272693,1423751,7,'Set Decoration'),(272693,1477795,8,'Set Costumer'),(272693,1526824,8,'Hair Department Head'),(272693,1545953,1,'Camera Operator'),(272693,1545953,1,'Steadicam Operator'),(272693,1548165,6,'Boom Operator'),(272693,1560273,1,'Still Photographer'),(272693,1591748,6,'Music Supervisor'),(272693,1591749,8,'Assistant Costume Designer'),(272693,1707107,6,'Boom Operator'),(272693,1709321,7,'Art Department Coordinator'),(272693,1709322,4,'Storyboard'),(272693,1709323,8,'Set Costumer'),(272693,1709326,3,'Location Manager'),(272693,1709327,7,'Location Scout'),(272693,1709328,5,'Additional Editing'),(272693,1709329,9,'Post Production Supervisor'),(272693,1709337,9,'Additional Music'),(150202,51795,2,'Director'),(150202,156947,4,'Screenplay'),(152747,7537,6,'Supervising Sound Editor'),(152747,7537,6,'Sound Designer'),(152747,7537,6,'Sound Re-Recording Mixer'),(152747,9821,7,'Art Direction'),(152747,19758,1,'Director of Photography'),(152747,19758,1,'Camera Operator'),(152747,20228,6,'Foley'),(152747,20229,6,'Foley'),(152747,29929,8,'Makeup Department Head'),(152747,63730,8,'Costume Design'),(152747,64058,3,'Executive Producer'),(152747,70088,3,'Executive Producer'),(152747,71127,1,'Director of Photography'),(152747,74534,3,'Executive Producer'),(152747,17306,3,'Executive Producer'),(152747,93600,5,'Editor'),(152747,131609,3,'Producer'),(152747,142165,6,'Music Editor'),(152747,213863,3,'Producer'),(152747,556172,2,'Director'),(152747,556172,4,'Screenplay'),(152747,937173,3,'Executive Producer'),(152747,956672,3,'Executive Producer'),(152747,1018975,3,'Executive Producer'),(152747,1020051,3,'Executive Producer'),(152747,1020052,3,'Executive Producer'),(152747,1059009,6,'Original Music Composer'),(152747,1062336,3,'Producer');
INSERT INTO `movie_crew` VALUES (152747,1080589,3,'Producer'),(152747,1221442,10,'Visual Effects Supervisor'),(152747,1233109,10,'Visual Effects Supervisor'),(152747,1276817,7,'Production Design'),(152747,1276818,7,'Set Decoration'),(152747,1276819,9,'Stunt Coordinator'),(152747,1352424,6,'Sound Re-Recording Mixer'),(152747,1393389,10,'Visual Effects Producer'),(152747,1395275,1,'Still Photographer'),(152747,1399084,7,'Art Department Coordinator'),(152747,1399085,7,'Construction Coordinator'),(152747,1399086,7,'Set Designer'),(152747,1399088,9,'Scenic Artist'),(152747,1399089,7,'Leadman'),(152747,1399090,9,'Special Effects Coordinator'),(152747,1399091,1,'Still Photographer'),(152747,1399092,1,'Additional Camera'),(152747,1399093,9,'Transportation Coordinator'),(152747,1399096,2,'Script Supervisor'),(152747,1406239,9,'Property Master'),(62676,7067,1,'Director of Photography'),(62676,102445,2,'Director'),(62676,102445,4,'Writer'),(185008,71273,6,'Music'),(185008,87378,2,'Director'),(185008,87378,4,'Writer'),(242582,131,3,'Producer'),(242582,1213,6,'Original Music Composer'),(242582,2946,3,'Producer'),(242582,2950,1,'Director of Photography'),(242582,3193,6,'Sound Designer'),(242582,6044,3,'Casting'),(242582,6412,7,'Set Decoration'),(242582,9250,3,'Executive In Charge Of Production'),(242582,15328,7,'Production Design'),(242582,17677,7,'Art Direction'),(242582,19242,3,'Producer'),(242582,20229,6,'Foley'),(242582,45836,2,'Assistant Director'),(242582,52456,3,'Casting Associate'),(242582,57113,2,'Director'),(242582,57113,4,'Writer'),(242582,59418,3,'Executive Producer'),(242582,59418,3,'Unit Production Manager'),(242582,60864,3,'Producer'),(242582,66726,3,'Producer'),(242582,66727,3,'Executive Producer'),(242582,67810,5,'Editor'),(242582,75380,6,'Boom Operator'),(242582,529477,9,'Propmaker'),(242582,957315,6,'Production Sound Mixer'),(242582,957495,6,'Sound Editor'),(242582,978127,6,'Sound Re-Recording Mixer'),(242582,1125189,3,'Associate Producer'),(242582,1190648,8,'Costume Design'),(242582,1315700,8,'Makeup Department Head'),(242582,1333162,9,'Property Master'),(242582,1337469,6,'Music Editor'),(242582,1337469,6,'Music Supervisor'),(242582,1338670,8,'Key Hair Stylist'),(242582,1341397,9,'Post Production Supervisor'),(242582,1361601,7,'Set Decoration Buyer'),(242582,1364410,5,'Dialogue Editor'),(242582,1377139,7,'Location Scout'),(242582,1378222,7,'Construction Coordinator'),(242582,1387181,7,'Art Department Coordinator'),(242582,1394724,1,'Still Photographer'),(242582,1395179,3,'Associate Producer'),(242582,1395180,3,'Co-Producer'),(242582,1397737,3,'Consulting Producer'),(242582,1399863,10,'Special Effects Supervisor'),(242582,1399870,10,'Visual Effects Producer'),(242582,1400081,1,'Steadicam Operator'),(242582,1400087,8,'Set Costumer'),(242582,1400847,8,'Hair Department Head'),(242582,1408401,5,'First Assistant Editor'),(242582,1408401,10,'VFX Editor'),(242582,1414532,2,'Script Supervisor'),(242582,1418409,5,'Digital Intermediate'),(242582,1419728,1,'Camera Operator'),(242582,1420328,3,'Location Manager'),(242582,1435638,8,'Hairstylist'),(242582,1435639,8,'Makeup Artist'),(242582,1435641,7,'Leadman'),(242582,1435642,6,'Sound Re-Recording Mixer'),(242582,1435643,6,'First Assistant Sound Editor'),(242582,1435644,9,'Special Effects Coordinator'),(242582,1435647,10,'Visual Effects Supervisor'),(242582,1435655,9,'Stunt Coordinator'),(242582,1435656,11,'Rigging Gaffer'),(242582,1435657,11,'Gaffer'),(242582,1435660,5,'First Assistant Editor'),(242582,1435661,9,'Picture Car Coordinator'),(242582,1447631,9,'Post Production Assistant'),(242582,1460379,8,'Costume Supervisor'),(242582,1463954,3,'Casting'),(242582,1532704,8,'Set Dressing Artist'),(242582,1532724,8,'Hairstylist'),(242582,1538374,3,'Unit Production Manager'),(242582,1573474,4,'Storyboard'),(242582,1603306,8,'Set Dressing Artist'),(242582,1633478,8,'Assistant Costume Designer'),(242582,1643804,6,'Music Supervisor'),(242582,1643840,3,'Production Supervisor'),(242582,1643840,3,'Production Coordinator'),(37964,51866,2,'Director'),(37964,88129,4,'Screenplay'),(40807,3388,9,'Thanks'),(40807,6410,3,'Casting'),(40807,5530,9,'Thanks'),(40807,15347,6,'Original Music Composer'),(40807,15354,6,'Music Editor'),(40807,19274,3,'Producer'),(40807,23414,7,'Art Direction'),(40807,40383,3,'Executive Producer'),(40807,23799,9,'Thanks'),(40807,23816,8,'Costume Design'),(40807,33288,9,'Post Production Supervisor'),(40807,47293,1,'Director of Photography'),(40807,54734,3,'Producer'),(40807,56661,2,'Director'),(40807,62117,3,'Co-Producer'),(40807,53114,7,'Set Decoration'),(40807,77623,9,'Stunts'),(40807,124649,3,'Executive Producer'),(40807,124649,4,'Writer'),(40807,197930,9,'Stunt Coordinator'),(40807,225628,5,'Editor'),(40807,964595,7,'Production Design'),(40807,1029806,9,'Stunts'),(40807,1149550,3,'Producer'),(40807,1235815,9,'Stunts'),(40807,1336715,10,'Visual Effects Producer'),(40807,1336716,10,'Visual Effects Supervisor'),(40807,1345615,5,'Color Timer'),(40807,1372414,9,'Special Effects Coordinator'),(40807,1378717,11,'Gaffer'),(40807,1399067,11,'Best Boy Electric'),(40807,1400407,1,'Still Photographer'),(40807,1401604,8,'Wigmaker'),(40807,1401605,8,'Hair Department Head'),(40807,1406057,9,'Unit Publicist'),(40807,1431089,11,'Rigging Gaffer'),(40807,1441272,8,'Makeup Department Head'),(40807,1441329,5,'Assistant Editor'),(40807,1460786,2,'Script Supervisor'),(40807,1529999,6,'Music Supervisor'),(40807,1531494,6,'Music Supervisor'),(40807,1533019,10,'Visual Effects Coordinator'),(40807,1552473,1,'First Assistant Camera'),(40807,1638919,3,'Unit Production Manager'),(40807,1669856,2,'Assistant Director'),(40807,1676151,9,'Stunts'),(225565,546,3,'Casting'),(225565,4438,9,'Stunt Coordinator'),(225565,32604,3,'Casting'),(225565,17751,3,'Producer'),(225565,22013,5,'Editor'),(225565,29222,3,'Executive Producer'),(225565,50772,6,'Original Music Composer'),(225565,62775,3,'Executive Producer'),(225565,62942,3,'Producer'),(225565,64227,1,'Director of Photography'),(225565,66594,3,'Co-Producer'),(225565,69093,5,'Editor'),(225565,74534,3,'Producer'),(225565,91054,8,'Makeup Department Head'),(225565,198641,7,'Production Design'),(225565,206596,3,'Executive Producer'),(225565,223752,3,'Line Producer'),(225565,239461,3,'Co-Producer'),(225565,1062336,3,'Producer'),(225565,1083072,8,'Costume Design'),(225565,1193638,1,'Still Photographer'),(225565,1211000,2,'Director'),(225565,1211000,4,'Screenplay'),(225565,1276601,3,'Executive Producer'),(225565,1338482,6,'Sound Effects Editor'),(225565,1345422,3,'Executive Producer'),(225565,1352981,6,'Music Editor'),(225565,1371034,3,'Executive Producer'),(225565,1376486,11,'Gaffer'),(225565,1396984,2,'Script Supervisor'),(225565,1402075,1,'Steadicam Operator'),(225565,1431803,8,'Hair Department Head'),(225565,1525196,8,'Costume Supervisor'),(225565,1533532,6,'Music Supervisor'),(225565,1533665,7,'Set Decoration'),(225565,1533675,3,'Executive Producer'),(225565,1533677,3,'Executive Producer'),(225565,1533678,3,'Executive Producer'),(225565,1533679,3,'Associate Producer'),(225565,1533680,3,'Associate Producer'),(385736,40839,6,'Original Music Composer'),(385736,43387,3,'Producer'),(385736,937872,3,'Producer'),(385736,969845,3,'Producer'),(385736,1175743,3,'Producer'),(385736,1321105,1,'Director of Photography'),(385736,1354959,2,'Director'),(385736,1354959,4,'Screenplay'),(385736,1397717,3,'Producer'),(385736,1447274,4,'Screenplay'),(385736,1475289,5,'Editor'),(385736,1583652,5,'Editor'),(385736,1605632,3,'Producer'),(385736,1605634,8,'Costume Design'),(385736,1605635,7,'Production Design'),(42819,54441,2,'Director'),(42819,54443,4,'Screenplay'),(42819,132547,4,'Novel'),(42819,968817,3,'Producer'),(42819,1080783,3,'Producer'),(209263,321,3,'Producer'),(209263,546,3,'Casting'),(209263,10958,7,'Set Decoration'),(209263,13225,6,'Music Supervisor'),(209263,21568,7,'Production Design'),(209263,40545,1,'Director of Photography'),(209263,55177,6,'Original Music Composer'),(209263,56539,2,'Director'),(209263,56539,4,'Writer'),(209263,65849,5,'Editor'),(209263,75625,3,'Executive Producer'),(209263,76054,7,'Art Direction'),(209263,230690,3,'Producer'),(209263,971528,8,'Costume Design'),(209263,1399975,1,'Still Photographer'),(209263,1416438,2,'Script Supervisor'),(209263,1524763,8,'Makeup Department Head'),(209263,1531497,8,'Hair Department Head'),(209263,1531498,8,'Key Hair Stylist'),(209263,1531499,8,'Costume Supervisor'),(37735,41588,3,'Producer'),(37735,40511,1,'Director of Photography'),(37735,59922,3,'Unit Production Manager'),(37735,61484,5,'Editorial Services'),(37735,82511,2,'Director'),(37735,82511,3,'Producer'),(37735,930426,4,'Screenplay'),(37735,1197918,7,'Production Design'),(37735,1313057,6,'Music'),(37735,1333900,8,'Makeup Department Head'),(37735,1339812,7,'Art Direction'),(37735,1354410,3,'Co-Producer'),(37735,1355529,7,'Art Department Coordinator'),(37735,1387216,7,'Leadman'),(37735,1414497,9,'Property Master'),(37735,1414984,8,'Hair Department Head'),(37735,1420642,8,'Key Hair Stylist'),(37735,1428234,8,'Makeup Artist'),(37735,1451489,3,'Production Supervisor'),(37735,1527280,3,'Casting'),(37735,1532691,7,'Construction Coordinator'),(37735,1549013,7,'Art Department Assistant'),(37735,1552503,7,'Set Decoration'),(37735,1652402,3,'Associate Producer'),(37735,1652417,8,'Costume Design'),(37735,1652418,8,'Hairstylist'),(37735,1652421,8,'Makeup Artist'),(37735,1652422,8,'Hairstylist'),(37735,1652423,8,'Hairstylist'),(37735,1652424,8,'Key Hair Stylist'),(37735,1652431,2,'Assistant Director'),(37735,1652432,2,'Assistant Director'),(37735,1652433,2,'Assistant Director'),(37735,1652434,2,'Assistant Director'),(37735,1652435,2,'Assistant Director'),(37735,1652436,7,'Painter'),(37735,1652438,7,'Art Department Assistant'),(37735,1652439,7,'Greensman'),(37735,1652440,7,'Art Department Assistant'),(37735,1652445,7,'Painter'),(37735,1652446,9,'Property Master'),(37735,1652448,7,'Art Department Coordinator'),(37735,1652449,8,'Set Dressing Artist'),(37735,1652450,7,'Standby Painter'),(37735,1652451,7,'Set Decoration Buyer'),(59930,230059,2,'Director'),(51588,1886,3,'Producer'),(51588,7439,7,'Production Design'),(51588,17847,3,'Executive Producer'),(51588,51557,3,'Casting'),(51588,54597,2,'Director'),(51588,59892,1,'Director of Photography'),(51588,60068,6,'Original Music Composer'),(51588,63672,3,'Casting'),(51588,141303,5,'Editor'),(51588,145835,4,'Writer'),(51588,528783,3,'Casting Associate'),(51588,960808,7,'Art Direction'),(51588,967719,8,'Costume Design'),(51588,970765,3,'Producer'),(51588,1318982,1,'Camera Operator'),(51588,1395275,1,'Still Photographer'),(51588,1427395,8,'Hair Department Head'),(51588,1527657,6,'Music Supervisor'),(51588,1527698,7,'Set Decoration'),(51588,1527704,8,'Makeup Artist'),(51588,1527705,8,'Makeup Artist'),(51588,1527899,8,'Makeup Department Head'),(291270,202,2,'Director'),(291270,202,4,'Theatre Play'),(291270,202,4,'Writer'),(291270,1225,6,'Original Music Composer'),(291270,34891,10,'Animation'),(291270,65856,10,'Animation'),(291270,224684,10,'Animation'),(291270,1019303,2,'Director'),(291270,1053243,10,'Animation'),(291270,1138632,10,'Animation'),(291270,1278671,10,'Animation'),(291270,1332501,10,'Animation'),(291270,1353148,10,'Animation'),(291270,1448073,10,'Animation'),(291270,1453487,10,'Animation'),(291270,1453490,10,'Animation'),(291270,1453495,10,'Animation'),(291270,1453514,10,'Animation'),(291270,1453517,10,'Animation'),(291270,1453519,10,'Animation'),(291270,1453524,10,'Animation'),(291270,1453526,10,'Animation'),(291270,1453591,10,'Animation'),(291270,1453596,10,'Animation'),(291270,1453618,10,'Animation'),(291270,1453638,10,'Animation'),(291270,1454032,10,'Animation'),(291270,1454750,10,'Animation'),(291270,1455701,10,'Animation'),(291270,1455702,10,'Animation'),(291270,1455705,10,'Animation'),(291270,1455706,10,'Animation'),(291270,1455710,10,'Animation'),(291270,1462579,10,'Animation'),(291270,1536583,1,'Director of Photography'),(291270,1536584,5,'Editor'),(291270,1536585,7,'Production Design'),(291270,1536585,7,'Art Direction'),(291270,1536586,7,'Production Design'),(291270,1536587,8,'Costume Design'),(291270,1584350,10,'Animation'),(291270,1584351,10,'Animation'),(291270,1584352,10,'Animation'),(291270,1584353,10,'Animation'),(291270,1584354,10,'Animation'),(291270,1584357,10,'Animation'),(291270,1584360,10,'Animation'),(291270,1584365,10,'Animation'),(291270,1584366,10,'Animation'),(291270,1584367,10,'Animation'),(291270,1584369,10,'Animation'),(291270,1584370,10,'Animation'),(291270,1584372,10,'Animation'),(291270,1584373,10,'Animation'),(291270,1584375,10,'Animation'),(291270,1584376,10,'Animation'),(44009,465,3,'Executive Producer'),(44009,10725,5,'Editor'),(44009,16363,3,'Casting'),(44009,36591,8,'Costume Design'),(44009,65455,3,'Executive Producer'),(44009,60085,1,'Director of Photography'),(44009,60336,7,'Set Decoration'),(44009,65452,2,'Director'),(44009,65452,4,'Writer'),(44009,65454,3,'Producer'),(44009,957031,6,'Original Music Composer'),(44009,961111,7,'Art Direction'),(44009,969765,7,'Production Design'),(44009,1079088,6,'Sound Re-Recording Mixer'),(44009,1337409,6,'Supervising Sound Editor'),(44009,1395709,6,'Sound Re-Recording Mixer'),(44009,1412126,2,'Script Supervisor'),(44009,1415987,1,'Still Photographer'),(44009,1422818,6,'Music Editor'),(44009,1544665,9,'Post Production Supervisor'),(43923,5886,7,'Set Decoration'),(43923,40141,6,'Supervising Sound Editor'),(43923,40141,6,'Sound Re-Recording Mixer'),(43923,53068,2,'Director'),(43923,53068,4,'Screenplay'),(43923,53069,2,'Director'),(43923,53069,4,'Screenplay'),(43923,53069,5,'Editor'),(43923,53079,3,'Executive Producer'),(43923,53649,1,'Director of Photography'),(43923,57343,3,'Producer'),(43923,60106,7,'Production Design'),(43923,96128,8,'Makeup Department Head'),(43923,119179,3,'Casting'),(43923,132714,4,'Novel'),(43923,388770,5,'Dialogue Editor'),(43923,475380,3,'Producer'),(43923,968733,3,'Executive Producer'),(43923,1125638,3,'Executive Producer'),(43923,1193618,7,'Art Direction'),(43923,1372092,9,'Stunt Coordinator'),(43923,1397322,3,'Executive Producer'),(43923,1402073,1,'Still Photographer'),(43923,1407021,1,'Steadicam Operator'),(43923,1445479,5,'Dialogue Editor'),(43923,1473813,2,'Script Supervisor'),(43923,1554050,8,'Hair Department Head'),(43923,1594602,8,'Costume Design'),(46138,6489,6,'Original Music Composer'),(46138,9021,3,'Producer'),(46138,15726,3,'Executive Producer'),(46138,19872,7,'Production Design'),(46138,23424,3,'Casting'),(46138,24248,2,'Director'),(46138,24256,1,'Director of Photography'),(46138,53361,5,'Editor'),(46138,73524,3,'Executive Producer'),(46138,118168,3,'Executive Producer'),(46138,199978,4,'Writer'),(46138,590074,3,'Producer'),(46138,948439,3,'Line Producer'),(46138,1125228,3,'Executive Producer'),(45791,3311,3,'Casting'),(45791,26481,2,'Director'),(45791,27265,6,'Original Music Composer'),(45791,28157,5,'Editor'),(45791,37434,1,'Director of Photography'),(45791,50952,7,'Production Design'),(45791,53020,7,'Set Decoration'),(45791,119117,8,'Costume Design'),(45791,133875,4,'Novel'),(45791,133876,4,'Screenplay'),(45791,948439,3,'Co-Producer'),(45791,1465384,7,'Art Direction'),(110683,296,6,'Music Editor'),(110683,6603,1,'Director of Photography'),(110683,7793,8,'Costume Design'),(110683,9950,9,'Sound Recordist'),(110683,11458,3,'Casting'),(110683,14459,6,'Sound Editor'),(110683,19244,4,'Screenplay'),(110683,19244,2,'Director'),(110683,19244,5,'Editor'),(110683,33008,3,'Producer'),(110683,33009,3,'Producer'),(110683,110066,6,'Music'),(110683,26985,8,'Makeup Artist'),(110683,36823,7,'Production Design'),(110683,125398,4,'Screenplay'),(110683,1120159,3,'Associate Producer'),(110683,1202511,4,'Book'),(110683,1316341,10,'Visual Effects'),(110683,1370844,1,'Camera Operator'),(110683,1401432,10,'Special Effects Supervisor'),(110683,1409267,8,'Wigmaker'),(110683,1511709,8,'Hairstylist'),(110683,1537564,6,'Sound Re-Recording Mixer'),(110683,1575400,1,'Camera Operator'),(110683,1639076,1,'Still Photographer'),(110683,1643449,2,'Script Supervisor'),(110683,1643450,9,'Choreographer'),(110683,1643451,11,'Gaffer'),(110683,1643452,10,'Special Effects Supervisor'),(110683,1643453,6,'Sound Editor'),(110683,1643454,6,'Sound Editor'),(198277,321,3,'Producer'),(198277,546,3,'Casting'),(198277,4868,5,'Editor'),(198277,45117,2,'Director'),(198277,45117,4,'Writer'),(198277,783230,1,'Director of Photography'),(198277,928074,7,'Production Design'),(198277,999786,3,'Producer'),(198277,1363962,6,'Original Music Composer'),(198277,1363963,3,'Casting'),(198277,1363964,7,'Art Direction'),(153397,63120,4,'Screenplay'),(153397,1134201,2,'Director'),(153397,1835498,9,'Stunts'),(44147,5432,1,'Director of Photography'),(44147,10969,3,'Casting'),(44147,21217,2,'Director'),(44147,51116,4,'Writer'),(44147,53361,5,'Editor'),(44147,77697,8,'Costume Design'),(44147,199526,6,'Original Music Composer'),(44147,583082,7,'Production Design'),(44147,583083,7,'Set Decoration'),(44147,1182720,4,'Writer'),(44147,1318419,7,'Art Direction'),(36597,30224,4,'Novel'),(36597,115677,2,'Director'),(36597,115678,4,'Adaptation'),(251321,101399,2,'Director'),(251321,101399,4,'Writer'),(49081,93136,2,'Director'),(256687,228311,2,'Director'),(256687,228311,4,'Screenplay'),(256687,1021244,3,'Producer'),(256687,1295506,3,'Producer'),(220488,1339,3,'Producer'),(220488,46324,6,'Original Music Composer'),(220488,52910,4,'Screenplay'),(220488,63574,5,'Editor'),(220488,66960,2,'Director'),(220488,66960,4,'Story'),(220488,74528,3,'Producer'),(220488,551916,9,'Cinematography'),(220488,968332,3,'Producer'),(220488,968332,7,'Production Design'),(220488,978686,5,'Editor'),(220488,1042056,3,'Producer'),(220488,1050576,3,'Producer'),(220488,1128285,4,'Story'),(220488,1128285,3,'Producer'),(220488,1206310,4,'Story'),(220488,1206310,4,'Screenplay'),(220488,1307112,4,'Screenplay'),(220488,1307113,4,'Screenplay'),(220488,1307114,3,'Line Producer'),(220488,1307116,8,'Costume Design'),(374461,4140,6,'Original Music Composer'),(374461,5696,2,'Director'),(374461,27677,5,'Editor'),(374461,46088,3,'Producer'),(374461,53181,1,'Director of Photography'),(374461,61921,3,'Producer'),(374461,74277,4,'Writer'),(374461,967484,3,'Producer'),(374461,1067252,3,'Producer'),(182873,238120,3,'Casting'),(182873,239663,3,'Producer'),(182873,1088094,4,'Writer'),(182873,1088094,3,'Producer'),(182873,1088096,2,'Director'),(182873,1301632,3,'Producer'),(182873,1301634,6,'Music'),(182873,1301635,6,'Music'),(182873,1301636,8,'Costume Design'),(182873,1340730,2,'Script Supervisor'),(182873,1379027,5,'Editor'),(182873,1470147,1,'Director of Photography'),(182873,1470153,7,'Production Design'),(182873,1470154,7,'Art Direction'),(182873,1575766,3,'Producer'),(389425,2121,3,'Casting'),(389425,16650,5,'Editor'),(389425,24968,9,'Stunt Coordinator'),(389425,60362,3,'Casting'),(389425,101233,2,'Director'),(389425,101233,4,'Writer'),(389425,108741,3,'Casting Associate'),(389425,229833,6,'Sound Designer'),(389425,229833,6,'Supervising Sound Editor'),(389425,1001733,1,'Director of Photography'),(389425,1308215,1,'First Assistant Camera'),(389425,1334791,7,'Production Design'),(389425,1357338,6,'Sound Effects Editor'),(389425,1387775,6,'Foley'),(389425,1406294,5,'Digital Intermediate'),(389425,1413833,8,'Makeup Department Head'),(389425,1451811,3,'Producer'),(389425,1516616,1,'Still Photographer'),(389425,1519639,6,'Music'),(389425,1519787,6,'Sound Effects Editor'),(389425,1576477,5,'Dialogue Editor'),(389425,1583078,2,'Script Supervisor'),(389425,1631798,1,'Camera Operator'),(389425,1631799,1,'First Assistant Camera'),(389425,1631800,1,'First Assistant Camera'),(389425,1631802,7,'Art Direction'),(389425,1631803,11,'Gaffer'),(389425,1631804,9,'Property Master'),(389425,1631805,8,'Key Hair Stylist'),(283708,110,3,'Co-Producer'),(283708,4280,5,'Editor'),(283708,39516,6,'Music'),(283708,54323,3,'Producer'),(283708,89597,6,'Music'),(283708,112771,3,'Producer'),(283708,585161,2,'Director'),(283708,585161,4,'Screenplay'),(283708,1001851,4,'Story'),(283708,1130034,1,'Director of Photography'),(283708,1346240,3,'Producer'),(283708,1440456,7,'Art Direction'),(283708,1462342,8,'Costume Design'),(36046,229198,2,'Director'),(55903,18209,4,'Screenplay'),(55903,18209,2,'Director'),(55903,3791,4,'Novel'),(55903,18208,3,'Producer'),(55903,23978,5,'Editor'),(55903,54288,3,'Producer'),(55903,1189783,3,'Producer'),(55903,1270992,1,'Director of Photography'),(103903,107039,2,'Director'),(103903,152149,4,'Writer'),(73873,515,4,'Screenplay'),(73873,515,3,'Producer'),(73873,2210,3,'Producer'),(73873,24204,3,'Producer'),(73873,77162,2,'Director'),(73873,109980,3,'Producer'),(73873,936279,4,'Screenplay'),(73873,936280,4,'Screenplay'),(312113,968998,2,'Director'),(312113,968998,4,'Writer'),(45650,298,3,'Executive Producer'),(45650,4600,2,'Director'),(45650,13585,3,'Casting'),(45650,10815,1,'Director of Photography'),(45650,17004,6,'Music'),(45650,23351,8,'Makeup Artist'),(45650,44993,5,'Editor'),(45650,56533,3,'Producer'),(45650,60599,7,'Production Design'),(45650,60864,3,'Producer'),(45650,64785,4,'Writer'),(45650,66726,3,'Producer'),(45650,1190607,8,'Hairstylist'),(45650,1311209,7,'Assistant Art Director'),(45650,1311210,7,'Set Decoration'),(45650,1329481,7,'Art Direction'),(45650,1329483,8,'Costume Design'),(45650,1404702,8,'Hairstylist'),(45650,1404753,2,'Script Supervisor'),(45650,1459204,8,'Makeup Artist'),(45650,1459206,8,'Costume Supervisor'),(301365,8377,6,'Original Music Composer'),(301365,8570,3,'Producer'),(301365,9250,3,'Executive Producer'),(301365,18828,3,'Executive Producer'),(301365,21183,4,'Screenplay'),(301365,21183,2,'Director'),(301365,21183,3,'Producer'),(301365,21183,4,'Story'),(301365,56787,3,'Executive Producer'),(301365,66726,3,'Executive Producer'),(301365,66727,3,'Executive Producer'),(301365,69316,1,'Director of Photography'),(301365,108398,11,'Gaffer'),(301365,119105,3,'Producer'),(301365,135965,6,'Sound Designer'),(301365,236608,3,'Casting'),(301365,935703,3,'Producer'),(301365,966286,5,'Editor'),(301365,968710,3,'Executive Producer'),(301365,984533,7,'Set Decoration'),(301365,995327,3,'Executive Producer'),(301365,1106173,6,'Foley'),(301365,1128690,3,'Executive Producer'),(301365,1159929,3,'Line Producer'),(301365,1159944,9,'Makeup Effects'),(301365,1170386,3,'Executive Producer'),(301365,1186191,7,'Production Design'),(301365,1193620,8,'Costume Design'),(301365,1193984,1,'Camera Operator'),(301365,1313484,3,'Casting'),(301365,1331646,9,'Makeup Effects'),(301365,1351724,6,'Foley'),(301365,1363577,4,'Screenplay'),(301365,1363720,3,'Executive Producer'),(301365,1390528,9,'Special Effects Coordinator'),(301365,1397141,4,'Screenplay'),(301365,1400327,10,'Visual Effects Supervisor'),(301365,1402142,10,'Visual Effects Supervisor'),(301365,1416449,8,'Makeup Department Head'),(301365,1420311,8,'Hair Department Head'),(301365,1443982,6,'Sound Designer'),(301365,1461174,1,'Underwater Camera'),(301365,1463778,11,'Lighting Technician'),(301365,1494277,8,'Costume Supervisor'),(301365,1558847,8,'Costume Supervisor'),(301365,1562469,3,'Co-Producer'),(301365,1629338,7,'Set Decoration'),(301365,1629339,9,'Property Master'),(301365,1629340,1,'Steadicam Operator'),(301365,1629341,6,'Sound Editor'),(301365,1629342,8,'Makeup Artist'),(301365,1629343,9,'Makeup Effects'),(301365,1629344,5,'First Assistant Editor'),(301365,1645883,10,'Visual Effects Supervisor'),(301365,1645884,10,'Visual Effects Supervisor'),(301365,1645885,10,'Visual Effects Producer'),(301365,1645886,10,'Visual Effects Producer'),(301365,1679127,3,'Executive Producer'),(301365,1679128,3,'Executive Producer'),(301365,1679129,3,'Executive Producer'),(326284,5917,2,'Director'),(326284,41654,3,'Casting'),(326284,60652,9,'Thanks'),(326284,126812,1,'Camera Operator'),(326284,229987,1,'Director of Photography'),(326284,1105186,6,'Music'),(326284,1296430,3,'Casting'),(326284,1392229,2,'Script Supervisor'),(326284,1442176,4,'Writer'),(326284,1480953,3,'Producer'),(326284,1480954,8,'Costume Design'),(326284,1480955,7,'Production Design'),(326284,1480956,7,'Art Direction'),(77930,1884,2,'Director'),(77930,1884,5,'Editor'),(77930,1884,1,'Director of Photography'),(77930,6468,3,'Producer'),(77930,9041,7,'Production Design'),(77930,12568,7,'Set Decoration'),(77930,34528,3,'Unit Production Manager'),(77930,38673,3,'Producer'),(77930,51922,3,'Casting'),(77930,63190,9,'Post Production Supervisor'),(77930,111213,6,'Music Supervisor'),(77930,119665,3,'Producer'),(77930,582807,8,'Costume Design'),(77930,582808,1,'Still Photographer'),(77930,582810,8,'Costume Design'),(77930,582811,8,'Hairstylist'),(77930,1074867,4,'Screenplay'),(77930,1074867,3,'Producer'),(77930,1189082,3,'Unit Production Manager'),(77930,1391605,2,'Script Supervisor'),(77930,1433917,3,'Location Manager'),(77930,1536630,3,'Production Coordinator'),(77930,1538204,3,'Casting Associate'),(77930,1763646,7,'Art Direction'),(77930,1784685,3,'Production Coordinator'),(57119,62162,3,'Producer'),(57119,81831,4,'Screenplay'),(57119,156993,4,'Screenplay'),(57119,225556,2,'Director'),(57119,235558,3,'Producer'),(79316,494,3,'Casting'),(79316,2043,3,'Producer'),(79316,55954,5,'Editor'),(79316,66681,2,'Director'),(79316,76497,9,'Property Master'),(79316,500199,7,'Set Decoration'),(79316,563736,6,'Music Supervisor'),(79316,1039527,2,'Director'),(79316,1039528,1,'Director of Photography'),(79316,1273949,4,'Screenplay'),(79316,1314063,9,'Makeup Effects'),(79316,1333932,3,'Casting'),(79316,1340089,8,'Set Costumer'),(79316,1367503,8,'Set Costumer'),(79316,1393859,1,'Still Photographer'),(79316,1406291,11,'Gaffer'),(79316,1410105,9,'CG Supervisor'),(79316,1415330,8,'Hair Department Head'),(79316,1418345,8,'Makeup Department Head'),(79316,1434557,8,'Makeup Artist'),(79316,1463801,8,'Seamstress'),(79316,1473814,2,'Script Supervisor'),(79316,1492033,7,'Production Design'),(79316,1533529,3,'Casting Associate'),(79316,1544368,10,'Visual Effects Producer'),(79316,1544370,10,'Visual Effects Supervisor'),(79316,1547666,9,'Visual Effects Editor'),(79316,1547667,6,'Music Editor'),(79316,1547668,5,'Dialogue Editor'),(79316,1547669,8,'Makeup Artist'),(79316,1547670,9,'Makeup Effects'),(79316,1547671,9,'Makeup Effects'),(79316,1547672,9,'Makeup Effects'),(308639,51866,2,'Director'),(308639,51866,4,'Writer'),(308639,1108963,6,'Original Music Composer'),(77156,151096,4,'Writer'),(77156,158835,2,'Director'),(77156,1061122,3,'Producer'),(77156,1061125,6,'Original Music Composer'),(77156,1061126,1,'Director of Photography'),(44718,8222,8,'Costume Design'),(44718,22680,6,'Original Music Composer'),(44718,32403,7,'Production Design'),(44718,55441,1,'Director of Photography'),(44718,58292,2,'Director'),(44718,58292,5,'Editor'),(44718,60501,3,'Casting'),(44718,60503,3,'Casting'),(44718,175646,4,'Screenplay'),(44718,208214,4,'Screenplay'),(44718,1521395,7,'Art Direction'),(44718,1560275,7,'Set Decoration'),(241771,4140,6,'Music'),(241771,9360,1,'Still Photographer'),(241771,9417,6,'Supervising Sound Editor'),(241771,11422,7,'Production Design'),(241771,27039,3,'Casting'),(241771,27041,8,'Costume Design'),(241771,56765,6,'Sound Re-Recording Mixer'),(241771,21323,7,'Set Decoration'),(241771,45836,2,'First Assistant Director'),(241771,51868,5,'Editor'),(241771,53638,3,'Producer'),(241771,54419,3,'Producer'),(241771,54873,3,'Executive Producer'),(241771,59700,3,'Executive Producer'),(241771,65135,3,'Executive Producer'),(241771,71943,3,'Producer'),(241771,71947,2,'Director'),(241771,71947,4,'Writer'),(241771,72106,3,'Co-Producer'),(241771,72106,3,'Executive In Charge Of Production'),(241771,72109,9,'Post Production Supervisor'),(241771,75628,8,'Makeup Department Head'),(241771,80809,8,'Key Makeup Artist'),(241771,83655,6,'Music Supervisor'),(241771,228247,3,'Executive Producer'),(241771,557794,9,'Choreographer'),(241771,933117,7,'Title Designer'),(241771,958706,1,'Director of Photography'),(241771,960808,7,'Art Direction'),(241771,1012973,9,'Stunt Coordinator'),(241771,1038313,7,'Property Master'),(241771,1049333,6,'Music Editor'),(241771,1050653,3,'Executive Producer'),(241771,1115001,3,'Associate Producer'),(241771,1137065,3,'Co-Producer'),(241771,1137065,3,'Line Producer'),(241771,1190164,3,'Local Casting'),(241771,1191308,10,'Special Effects Supervisor'),(241771,1254537,6,'Vocal Coach'),(241771,1264811,6,'Music Editor'),(241771,1292850,3,'Location Manager'),(241771,1335059,9,'Special Effects Coordinator'),(241771,1344842,2,'Script Supervisor'),(241771,1363720,3,'Unit Production Manager'),(241771,1377216,7,'Art Department Coordinator'),(241771,1377228,1,'Steadicam Operator'),(241771,1387247,10,'Visual Effects Supervisor'),(241771,1387251,10,'Visual Effects Producer'),(241771,1409889,6,'Assistant Sound Editor'),(241771,1412275,9,'Unit Publicist'),(241771,1428857,6,'Boom Operator'),(241771,1490113,3,'Producer'),(241771,1508556,8,'Key Hair Stylist'),(241771,1521077,2,'Script Supervisor'),(241771,1538218,7,'Construction Coordinator'),(241771,1543137,8,'Costume Supervisor'),(241771,1546115,6,'Production Sound Mixer'),(241771,1547039,5,'Additional Editing'),(241771,1549075,3,'Production Accountant'),(241771,1551525,8,'Hair Department Head'),(241771,1552845,1,'Camera Operator'),(241771,1660829,9,'Post Production Supervisor'),(241771,1667869,1,'Camera Operator'),(241771,1749895,2,'Second Assistant Director'),(241771,1749903,9,'Stunt Coordinator'),(241771,1749905,3,'Production Supervisor'),(241771,1749911,7,'Set Decoration'),(241771,1749912,7,'Leadman'),(241771,1749913,7,'Set Dresser'),(241771,1749914,7,'Set Dresser'),(241771,1749915,7,'Set Dresser'),(241771,1749917,11,'Gaffer'),(241771,1749918,8,'Key Costumer'),(241771,1749919,8,'Set Costumer'),(241771,1749932,9,'Studio Teachers'),(241771,1749934,9,'Transportation Coordinator'),(241771,1749935,3,'Local Casting'),(241771,1749936,5,'First Assistant Editor'),(241771,1749937,6,'Assistant Sound Editor'),(57825,6220,2,'Director'),(57825,6220,4,'Writer'),(57825,6222,4,'Writer'),(57825,32982,4,'Novel'),(39053,578,3,'Executive Producer'),(39053,893,3,'Executive Producer'),(39053,1589,6,'Original Music Composer'),(39053,6328,9,'Stunt Coordinator'),(39053,40374,3,'Producer'),(39053,45405,2,'Director'),(39053,45405,4,'Writer'),(39053,45407,2,'Director'),(39053,45407,4,'Writer'),(39053,61550,1,'Director of Photography'),(39053,75625,3,'Co-Producer'),(39053,800252,5,'Editor'),(39053,964595,7,'Production Design'),(39053,1018939,3,'Co-Producer'),(39053,1335069,9,'Special Effects Coordinator'),(39053,1419812,6,'Sound Editor'),(39053,1544312,6,'Music Supervisor'),(39053,1546047,6,'Music Editor'),(104896,40220,2,'Director'),(71859,1884,3,'Executive Producer'),(71859,2946,3,'Producer'),(71859,3063,3,'Executive Producer'),(71859,3192,3,'Casting'),(71859,3285,1,'Director of Photography'),(71859,6409,3,'Producer'),(71859,5389,7,'Production Design'),(71859,5391,7,'Set Decoration'),(71859,6827,5,'Editor'),(71859,9000,3,'Executive Producer'),(71859,15726,3,'Executive Producer'),(71859,40148,3,'Producer'),(71859,56417,8,'Costume Design'),(71859,73524,3,'Executive Producer'),(71859,74333,6,'Original Music Composer'),(71859,83287,2,'Director'),(71859,83287,4,'Screenplay'),(71859,83287,3,'Executive Producer'),(71859,155527,3,'Co-Executive Producer'),(71859,888594,3,'Co-Executive Producer'),(71859,1008091,3,'Executive Producer'),(71859,1020053,3,'Co-Executive Producer'),(71859,1065913,3,'Executive Producer'),(71859,1075511,4,'Screenplay'),(71859,1090703,3,'Executive Producer'),(71859,1193638,1,'Still Photographer'),(71859,1357599,6,'Music Editor'),(71859,1393455,2,'Script Supervisor'),(71859,1474667,7,'Art Direction'),(71859,1482216,4,'Novel'),(71859,1496428,1,'Steadicam Operator'),(71859,1547458,6,'Production Sound Mixer'),(71859,1619473,3,'Executive Producer'),(71859,1619474,3,'Executive Producer'),(71859,1619483,3,'Co-Executive Producer'),(71859,1619484,3,'Co-Executive Producer'),(71859,1619485,7,'Art Department Coordinator'),(226354,15220,4,'Writer'),(226354,43384,3,'Producer'),(226354,1080286,4,'Writer'),(226354,1177723,3,'Producer'),(226354,1387618,2,'Director'),(48620,550857,2,'Director'),(37080,77162,2,'Director'),(37080,77162,4,'Writer'),(39210,1776,3,'Executive Producer'),(39210,2871,3,'Executive Producer'),(39210,1769,2,'Director'),(39210,1769,4,'Writer'),(39210,1769,3,'Producer'),(39210,1782,5,'Editor'),(39210,1784,7,'Production Design'),(39210,2889,6,'Sound Re-Recording Mixer'),(39210,10688,1,'Director of Photography'),(39210,17050,7,'Art Direction'),(39210,19772,3,'Executive Producer'),(39210,23226,3,'Producer'),(39210,38803,3,'Producer'),(39210,73348,7,'Set Decoration'),(39210,236608,3,'Casting'),(39210,1053169,3,'Line Producer'),(39210,1172443,1,'Still Photographer'),(39210,1313484,3,'Casting'),(39210,1342669,2,'Script Supervisor'),(39210,1385487,8,'Costume Design'),(39210,1419106,11,'Gaffer'),(39210,1527446,5,'First Assistant Editor'),(39210,1533151,8,'Costume Supervisor'),(39210,1538230,6,'Sound Re-Recording Mixer'),(39210,1538231,6,'Sound Effects Editor'),(39210,1538232,9,'Stunt Coordinator'),(39210,1538236,3,'Production Coordinator'),(44835,433,5,'Editor'),(44835,524,3,'Producer'),(44835,6959,3,'Casting'),(44835,7434,3,'Producer'),(44835,21933,3,'Co-Producer'),(44835,23602,1,'Director of Photography'),(44835,114334,4,'Writer'),(44835,131521,2,'Director'),(44835,131521,4,'Writer'),(44835,131521,3,'Producer'),(44835,131521,5,'Editor'),(44835,229813,3,'Co-Producer'),(44835,961165,3,'Casting'),(44835,1001673,3,'Producer'),(44835,1001674,3,'Producer'),(44835,1030992,3,'Producer'),(44835,1089503,3,'Producer'),(44835,1258674,3,'Associate Producer'),(44835,1328411,7,'Production Design'),(44835,1401644,3,'Co-Producer'),(44835,1446651,4,'Story'),(44835,1462283,4,'Original Story'),(44835,1462284,3,'Co-Producer'),(44835,1462285,3,'Co-Producer'),(44835,1462286,3,'Co-Producer'),(44835,1462287,3,'Co-Producer'),(44835,1462288,3,'Co-Producer'),(44835,1462289,3,'Co-Producer'),(44835,1462290,3,'Associate Producer'),(192134,3079,1,'Director of Photography'),(192134,3082,7,'Production Design'),(192134,16363,3,'Casting'),(192134,24190,6,'Original Music Composer'),(192134,44740,2,'Director'),(192134,44740,4,'Writer'),(192134,45058,8,'Costume Design'),(192134,56907,5,'Editor'),(192134,967365,7,'Set Decoration'),(306745,5327,5,'Editor'),(306745,33678,1,'Director of Photography'),(306745,59330,4,'Screenplay'),(306745,71548,2,'Director'),(47088,122,6,'Original Music Composer'),(47088,321,3,'Producer'),(47088,5389,7,'Production Design'),(47088,8570,3,'Executive Producer'),(47088,17863,6,'Music Supervisor'),(47088,72205,2,'Director'),(47088,72205,3,'Executive Producer'),(47088,72206,4,'Screenplay'),(47088,72206,2,'Director'),(47088,72206,5,'Editor'),(47088,72206,3,'Executive Producer'),(47088,47293,1,'Director of Photography'),(47088,141570,8,'Costume Design'),(47088,142292,4,'Screenplay'),(47088,142292,3,'Executive Producer'),(47088,230689,3,'Producer'),(47088,230690,3,'Executive Producer'),(47088,230691,3,'Executive Producer'),(47088,230692,3,'Unit Production Manager'),(110402,99269,3,'Producer'),(110402,150634,4,'Novel'),(110402,150635,4,'Novel'),(110402,270361,2,'Director'),(110402,270361,4,'Adaptation'),(110402,1177224,1,'Director of Photography'),(110402,1271302,4,'Adaptation'),(110402,1272373,5,'Editor'),(110402,1451829,3,'Producer'),(110402,1546530,1,'Director of Photography'),(110402,1546531,6,'Original Music Composer'),(277519,64487,3,'Producer'),(277519,64488,3,'Associate Producer'),(277519,64490,5,'Editor'),(277519,141503,2,'Director'),(277519,141503,4,'Story'),(277519,1157306,4,'Writer'),(277519,1173591,3,'Producer'),(78381,1776,4,'Screenplay'),(78381,1776,2,'Director'),(78381,1776,3,'Producer'),(78381,1776,4,'Story'),(78381,2871,3,'Executive Producer'),(78381,899,5,'Editor'),(78381,2889,6,'Sound Designer'),(78381,13102,9,'Special Effects Coordinator'),(78381,52980,3,'Executive Producer'),(78381,52981,1,'Director of Photography'),(78381,52982,6,'Original Music Composer'),(78381,91896,9,'Special Effects'),(78381,144360,7,'Set Decoration'),(78381,583871,6,'Original Music Composer'),(78381,583872,5,'Editor'),(78381,583873,5,'Editor'),(78381,1017338,8,'Costume Design'),(78381,1017339,7,'Art Direction'),(78381,1017340,8,'Makeup Department Head'),(78381,1017340,9,'Makeup Effects'),(78381,1400556,6,'Supervising Sound Editor'),(78381,1563443,1,'Still Photographer'),(78381,1563448,6,'Sound Re-Recording Mixer'),(78381,1563450,6,'Sound Effects Editor'),(164372,1006810,2,'Director'),(164372,1006810,4,'Writer'),(164372,1150877,2,'Director'),(164372,1150877,4,'Writer'),(294512,107274,2,'Director'),(325373,6995,5,'Editor'),(325373,646785,2,'Director'),(325373,646785,4,'Screenplay'),(325373,959308,1,'Director of Photography'),(334527,8891,3,'Executive Producer'),(334527,10692,3,'Executive Producer'),(334527,17183,2,'Director'),(334527,20299,5,'Editor'),(334527,66174,3,'Producer'),(334527,110261,1,'Director of Photography'),(334527,221018,3,'Executive Producer'),(334527,996410,7,'Production Design'),(334527,1015060,8,'Makeup Artist'),(334527,1021206,3,'Casting'),(334527,1097817,10,'Visual Effects Supervisor'),(334527,1161602,6,'Original Music Composer'),(334527,1176357,3,'Casting'),(334527,1209872,7,'Set Decoration'),(334527,1347999,6,'Foley Editor'),(334527,1385641,9,'Stunt Coordinator'),(334527,1392942,1,'Still Photographer'),(334527,1403860,6,'Sound Effects Editor'),(334527,1454534,8,'Costume Design'),(334527,1475160,3,'Casting'),(334527,1548095,1,'Camera Operator'),(334527,1579392,7,'Property Master'),(334527,1579393,8,'Hairstylist'),(334527,1579394,8,'Makeup Department Head'),(334527,1579395,8,'Makeup Artist'),(334527,1608011,7,'Art Department Coordinator'),(334527,1611776,3,'Producer'),(334527,1619486,3,'Producer'),(334527,1643852,4,'Writer'),(334527,1735076,8,'Costume Supervisor'),(334527,1754129,6,'Music Supervisor'),(334527,1802515,2,'First Assistant Director'),(334527,1853834,3,'Production Coordinator'),(334527,1865508,8,'Hair Department Head'),(334527,1865518,6,'Music Editor'),(82505,554,3,'Producer'),(82505,561,3,'Casting'),(82505,2688,6,'Supervising Sound Editor'),(82505,7213,4,'Story'),(82505,7227,3,'Producer'),(82505,8751,5,'Editor'),(82505,51030,3,'Producer'),(82505,38955,5,'Editor'),(82505,38081,3,'Executive Producer'),(82505,54419,3,'Executive Producer'),(82505,54873,3,'Executive Producer'),(82505,68039,4,'Screenplay'),(82505,86482,2,'Director'),(82505,90690,1,'Director of Photography'),(82505,223467,6,'Sound Re-Recording Mixer'),(82505,564949,3,'Executive Producer'),(82505,1095320,6,'Music Editor'),(82505,1099886,6,'Original Music Composer'),(82505,1130513,6,'Supervising Sound Editor'),(82505,1418415,7,'Production Design'),(82505,1418417,7,'Set Decoration'),(82505,1435539,2,'Script Supervisor'),(82505,1553775,8,'Costume Design'),(82505,1553776,1,'Still Photographer'),(82505,1553777,3,'Executive Producer'),(82505,1553778,3,'Executive Producer'),(82505,1553779,6,'Sound Re-Recording Mixer'),(82505,1553781,6,'Music Editor'),(82505,1553782,6,'Music Supervisor'),(46738,4657,10,'Special Effects Supervisor'),(46738,6997,3,'Casting'),(46738,5426,3,'Co-Producer'),(46738,7290,3,'Co-Producer'),(46738,8355,9,'Stunts'),(46738,21471,5,'Editor'),(46738,57069,6,'Original Music Composer'),(46738,57069,6,'Orchestrator'),(46738,73613,1,'Steadicam Operator'),(46738,92235,9,'Stunt Coordinator'),(46738,110629,7,'Set Decoration'),(46738,137427,2,'Director'),(46738,137427,4,'Dialogue'),(46738,137427,4,'Writer'),(46738,232866,3,'Production Manager'),(46738,936321,3,'Unit Production Manager'),(46738,963927,3,'Producer'),(46738,966444,3,'Casting'),(46738,970214,9,'Script'),(46738,982586,1,'Director of Photography'),(46738,1013562,8,'Costume Design'),(46738,1028809,9,'Thanks'),(46738,1037327,7,'Production Design'),(46738,1051320,3,'Co-Producer'),(46738,1117880,3,'Line Producer'),(46738,1124448,4,'Writer'),(46738,1150161,8,'Set Dressing Artist'),(46738,1207137,3,'Line Producer'),(46738,1215970,3,'Associate Producer'),(46738,1294674,6,'Sound Designer'),(46738,1320183,3,'Casting'),(46738,1327222,7,'Set Decoration'),(46738,1354915,7,'Painter'),(46738,1384392,8,'Set Costumer'),(46738,1398426,6,'Foley'),(46738,1408831,6,'Sound Re-Recording Mixer'),(46738,1409724,9,'Picture Car Coordinator'),(46738,1419721,9,'Special Effects'),(46738,1452223,8,'Assistant Costume Designer'),(46738,1456316,8,'Hairstylist'),(46738,1462852,10,'Digital Compositors'),(46738,1466745,7,'Construction Coordinator'),(46738,1469621,7,'Art Department Coordinator'),(46738,1519906,1,'Still Photographer'),(46738,1536183,8,'Key Hair Stylist'),(46738,1536187,9,'Post Production Supervisor'),(46738,1536192,2,'Assistant Director'),(46738,1536193,6,'Boom Operator'),(46738,1536194,6,'ADR & Dubbing'),(46738,1536195,6,'Foley'),(46738,1536196,6,'Sound Engineer'),(46738,1536197,6,'Boom Operator'),(46738,1536199,9,'Special Effects'),(46738,1536208,10,'Digital Compositors'),(46738,1536209,10,'Visual Effects Supervisor'),(46738,1536210,10,'Digital Compositors'),(46738,1536211,10,'Visual Effects Producer'),(46738,1536639,11,'Electrician'),(46738,1536640,11,'Gaffer'),(46738,1536641,11,'Electrician'),(46738,1536642,5,'Assistant Editor'),(46738,1536643,5,'Assistant Editor'),(46738,1536644,6,'Scoring Mixer'),(46738,1536645,6,'Scoring Mixer'),(46738,1536646,6,'Music Editor'),(46738,1536649,6,'Music Supervisor'),(46738,1536650,3,'Publicist'),(46738,1536651,9,'Thanks'),(46738,1558543,8,'Costume Supervisor'),(38970,20646,2,'Director'),(38970,20646,4,'Writer'),(41009,77268,4,'Writer'),(41009,109978,2,'Director'),(250546,2127,3,'Producer'),(250546,26714,2,'Director'),(250546,15427,7,'Production Design'),(250546,17851,7,'Set Decoration'),(250546,51795,5,'Editor'),(250546,52259,3,'Producer'),(250546,66691,8,'Hairstylist'),(250546,63935,9,'Stunt Coordinator'),(250546,66521,7,'Art Direction'),(250546,73417,6,'Original Music Composer'),(250546,73417,9,'Stunts'),(250546,94543,3,'Executive Producer'),(250546,967203,3,'Casting'),(250546,1002564,5,'Digital Intermediate'),(250546,1056043,3,'Co-Producer'),(250546,1190608,3,'Location Manager'),(250546,1309884,6,'Sound Designer'),(250546,1309885,5,'Dialogue Editor'),(250546,1317667,8,'Makeup Department Head'),(250546,1338134,6,'Foley'),(250546,1338249,4,'Writer'),(250546,1358568,1,'Director of Photography'),(250546,1394307,6,'Music Editor'),(250546,1395023,6,'Sound Designer'),(250546,1400876,3,'Casting'),(250546,1400877,8,'Costume Design'),(250546,1400878,9,'Makeup Effects'),(250546,1400879,8,'Makeup Artist'),(250546,1413003,9,'Unit Publicist'),(250546,1413115,10,'Visual Effects Producer'),(250546,1416155,6,'Sound Re-Recording Mixer'),(250546,1421252,11,'Gaffer'),(250546,1424911,3,'Location Manager'),(250546,1430988,8,'Makeup Artist'),(250546,1430989,8,'Makeup Department Head'),(250546,1430990,7,'Art Department Coordinator'),(250546,1430992,9,'Sound Recordist'),(250546,1430993,6,'Foley'),(250546,1430995,10,'Visual Effects Supervisor'),(250546,1430997,8,'Set Costumer'),(250546,1430998,8,'Set Costumer'),(250546,1430999,9,'Transportation Coordinator'),(250546,1431000,2,'Script Supervisor'),(250546,1432377,8,'Costume Supervisor'),(250546,1432379,9,'Studio Teachers'),(250546,1432380,9,'Studio Teachers'),(38415,942251,2,'Director'),(38415,1452989,10,'Animation'),(76025,2952,3,'Casting'),(76025,4190,8,'Costume Design'),(76025,5389,7,'Production Design'),(76025,5391,7,'Set Decoration'),(76025,20459,6,'Music'),(76025,37270,3,'Producer'),(76025,37276,3,'Producer'),(76025,54926,1,'Director of Photography'),(76025,72757,2,'Director'),(76025,72757,4,'Writer'),(76025,93289,4,'Screenplay'),(76025,999565,5,'Editor'),(76025,1320551,8,'Makeup Department Head'),(76025,1393455,2,'Script Supervisor'),(76025,1431803,8,'Hairstylist'),(76025,1474667,7,'Art Direction'),(76025,1474668,8,'Hairstylist'),(76025,1474669,8,'Makeup Artist'),(87499,1720,3,'Casting'),(87499,578,3,'Producer'),(87499,893,3,'Executive Producer'),(87499,1264,5,'Editor'),(87499,1597,6,'Supervising Sound Effects Editor'),(87499,5553,9,'Additional Music'),(87499,38805,5,'Editor'),(87499,40374,3,'Producer'),(87499,59478,3,'Producer'),(87499,92488,9,'Stunt Coordinator'),(87499,115120,1,'Director of Photography'),(87499,222330,3,'Producer'),(87499,222330,4,'Writer'),(87499,229810,8,'Hair Department Head'),(87499,231832,8,'Costume Design'),(87499,575700,2,'Script Supervisor'),(87499,933739,2,'Director'),(87499,933739,4,'Writer'),(87499,966515,7,'Production Design'),(87499,1010751,6,'Sound Re-Recording Mixer'),(87499,1031811,6,'Supervising Sound Editor'),(87499,1203712,5,'First Assistant Editor'),(87499,1203790,6,'Original Music Composer'),(87499,1203791,7,'Art Direction'),(87499,1299360,7,'Set Decoration'),(87499,1320551,8,'Makeup Department Head'),(87499,1367505,6,'Music Editor'),(87499,1391583,1,'Still Photographer'),(87499,1402111,6,'Sound Re-Recording Mixer'),(87499,1402565,8,'Costume Supervisor'),(87499,1405232,5,'Dialogue Editor'),(87499,1435703,5,'Dialogue Editor'),(87499,1533714,9,'Stunt Coordinator'),(87499,1551853,6,'Sound mixer'),(62255,40747,1,'Director of Photography'),(62255,15585,3,'Producer'),(62255,64876,5,'Editor'),(62255,67115,7,'Art Direction'),(62255,113907,2,'Director'),(62255,132613,9,'Armorer'),(62255,144897,11,'Gaffer'),(62255,1310930,8,'Costume Design'),(62255,1315040,7,'Production Design'),(62255,1323883,4,'Writer'),(62255,1338229,10,'Visual Effects Producer'),(62255,1340122,10,'Visual Effects Supervisor'),(62255,1349046,6,'Sound Designer'),(62255,1405206,6,'ADR & Dubbing'),(62255,1416949,6,'Sound Effects Editor'),(62255,1419174,6,'Foley'),(62255,1437633,5,'Digital Intermediate'),(62255,1556436,2,'Script Supervisor'),(62255,1575246,1,'Steadicam Operator'),(62255,1583551,3,'Producer'),(62255,1583551,6,'Music'),(62255,1583552,3,'Casting'),(62255,1583553,8,'Costume Supervisor'),(62255,1583554,1,'Still Photographer'),(62255,1583555,1,'First Assistant Camera'),(62255,1583556,10,'Animation'),(62255,1583557,10,'Visual Effects Supervisor'),(62255,1583558,10,'Visual Effects Supervisor'),(62255,1583559,9,'Sound Recordist'),(62255,1583560,8,'Makeup Designer'),(62255,1583561,8,'Makeup Artist'),(62255,1583562,5,'Digital Intermediate'),(62255,1583563,5,'Digital Intermediate'),(62255,1583564,5,'First Assistant Editor'),(36739,5281,2,'Director'),(36739,5281,4,'Writer'),(36739,5281,3,'Producer'),(36739,5289,5,'Editor'),(36739,15521,1,'Director of Photography'),(92591,564,2,'Director'),(92591,564,4,'Screenplay'),(92591,580,5,'Editor'),(92591,5913,3,'Casting'),(92591,18135,3,'Producer'),(92591,41377,3,'Producer'),(92591,32234,6,'Original Music Composer'),(92591,32236,7,'Production Design'),(92591,34481,3,'Producer'),(92591,34483,3,'Producer'),(92591,46347,3,'Producer'),(92591,53277,3,'Producer'),(92591,54761,8,'Costume Design'),(92591,60085,1,'Director of Photography'),(92591,67233,3,'Executive Producer'),(92591,201590,3,'Executive Producer'),(92591,995326,4,'Screenplay'),(92591,995327,3,'Executive Producer'),(92591,995328,3,'Executive Producer'),(92591,1026259,3,'Producer'),(92591,1026260,3,'Producer'),(92591,1080454,7,'Art Direction'),(92591,1454820,3,'Casting'),(57612,111085,2,'Director'),(57612,111086,3,'Executive Producer'),(57612,111087,6,'Original Music Composer'),(57612,111088,1,'Director of Photography'),(57612,1117377,4,'Adaptation'),(57612,1441146,4,'Writer'),(57612,1441147,4,'Writer'),(83686,51996,4,'Screenplay'),(83686,51996,2,'Director'),(83686,106946,3,'Producer'),(83686,929917,4,'Screenplay'),(83686,929917,2,'Director'),(83686,1048595,3,'Producer'),(83686,1499778,3,'Executive Producer'),(80304,6412,7,'Set Decoration'),(80304,15328,7,'Production Design'),(80304,17677,7,'Art Direction'),(80304,41080,3,'Casting'),(80304,59423,9,'Cinematography'),(80304,65245,6,'Original Music Composer'),(80304,65246,6,'Original Music Composer'),(80304,106458,3,'Location Manager'),(80304,589159,2,'Director'),(80304,928345,5,'Editor'),(80304,928346,8,'Costume Design'),(67913,2070,5,'Editor'),(67913,474,3,'Casting'),(67913,5018,1,'Director of Photography'),(67913,43144,3,'Producer'),(67913,43154,8,'Costume Design'),(67913,45126,6,'Production Sound Mixer'),(67913,64634,6,'Music'),(67913,65594,4,'Screenplay'),(67913,65594,2,'Director'),(67913,71574,7,'Production Design'),(67913,965568,3,'Producer'),(67913,1129513,3,'Producer'),(67913,1330113,1,'Steadicam Operator'),(67913,1407848,8,'Hairstylist'),(67913,1407870,2,'Script Supervisor'),(67913,1408354,1,'Steadicam Operator'),(67913,1466005,7,'Art Direction'),(67913,1466006,8,'Makeup Department Head'),(67913,1466007,8,'Costume Supervisor'),(67913,1466008,9,'Unit Publicist'),(231576,2952,3,'Casting'),(231576,5367,2,'Director'),(231576,5367,3,'Producer'),(231576,5367,4,'Writer'),(231576,5381,3,'Producer'),(231576,5382,3,'Producer'),(231576,5387,1,'Director of Photography'),(231576,5388,5,'Editor'),(231576,1042699,6,'Music'),(231576,1475282,3,'Producer'),(231576,1475282,4,'Writer'),(347764,80006,2,'Director'),(347764,80006,1,'Director of Photography'),(347764,80006,3,'Producer'),(347764,80006,4,'Writer'),(347764,1419843,5,'Editor'),(347764,1485124,3,'Producer'),(347764,1485124,4,'Writer'),(347764,1573355,7,'Art Direction'),(347764,1573356,8,'Costume Design'),(347764,1573357,8,'Assistant Costume Designer'),(59728,2325,3,'Casting'),(59728,7494,3,'Casting'),(59728,53008,5,'Editor'),(59728,71339,2,'Director'),(59728,71339,3,'Producer'),(59728,71339,4,'Writer'),(59728,91916,8,'Costume Design'),(59728,103797,3,'Unit Production Manager'),(59728,103797,3,'Line Producer'),(59728,957361,1,'Director of Photography'),(59728,1017236,3,'Casting'),(59728,1021394,1,'Camera Operator'),(59728,1159944,8,'Makeup Department Head'),(59728,1331646,8,'Makeup Department Head'),(59728,1352970,6,'Boom Operator'),(59728,1393568,1,'Still Photographer'),(59728,1453866,7,'Production Design'),(59728,1521754,2,'Script Supervisor'),(59728,1563899,6,'Production Sound Mixer'),(59728,1564375,7,'Set Decoration'),(59728,1575691,7,'Art Direction'),(59728,1648022,3,'Associate Producer'),(59728,1654137,6,'Music'),(59728,1654139,3,'Co-Producer'),(59728,1654141,3,'Co-Producer'),(59728,1654146,3,'Executive Producer'),(59728,1654147,3,'Executive Producer'),(59728,1654336,3,'Associate Producer'),(58882,3562,6,'Original Music Composer'),(58882,5144,4,'Screenplay'),(58882,39819,2,'Director'),(58882,39828,5,'Editor'),(58882,92380,6,'Supervising Sound Editor'),(58882,92380,6,'Sound Re-Recording Mixer'),(58882,142642,7,'Production Design'),(58882,148659,4,'Screenplay'),(58882,229833,6,'Sound Effects Editor'),(58882,956491,1,'Director of Photography'),(58882,1039265,6,'Foley'),(58882,1376807,6,'Music Editor'),(58882,1379967,11,'Best Boy Electric'),(58882,1380433,4,'Screenplay'),(58882,1380434,4,'Novel'),(58882,1380435,3,'Producer'),(58882,1380436,3,'Producer'),(58882,1380439,7,'Art Direction'),(58882,1380443,5,'Dialogue Editor'),(58882,1380444,10,'Visual Effects'),(58882,1380445,11,'Gaffer'),(58882,1380446,2,'Script Supervisor'),(35944,11275,4,'Book'),(35944,57630,2,'Director'),(35944,84665,4,'Writer'),(42222,666,1,'Director of Photography'),(42222,1046,3,'Casting'),(42222,3535,6,'Original Music Composer'),(42222,4065,2,'Director'),(42222,7630,4,'Screenplay'),(42222,10471,3,'Casting'),(42222,11790,3,'Producer'),(42222,11836,7,'Production Design'),(42222,12020,8,'Costume Design'),(42222,14748,8,'Makeup Artist'),(42222,14879,7,'Production Design'),(42222,19057,7,'Production Design'),(42222,85692,4,'Book'),(42222,1072700,3,'Casting'),(42222,1621680,8,'Makeup Artist'),(44260,814,2,'Director'),(44260,814,4,'Writer'),(38940,102445,4,'Screenplay'),(38940,124783,2,'Director'),(38940,380639,4,'Story'),(35689,114596,2,'Director'),(35689,114596,4,'Writer'),(97614,284,3,'Producer'),(97614,7229,6,'Original Music Composer'),(97614,6043,5,'Editor'),(97614,9271,7,'Art Direction'),(97614,15115,2,'Director'),(97614,20540,3,'Casting'),(97614,28632,3,'Producer'),(97614,31520,3,'Producer'),(97614,40835,7,'Production Design'),(97614,57126,1,'Director of Photography'),(97614,92234,9,'Stunt Coordinator'),(97614,132642,1,'Still Photographer'),(97614,137125,6,'Sound Re-Recording Mixer'),(97614,179267,9,'Thanks'),(97614,961452,8,'Costume Design'),(97614,968605,5,'Editor'),(97614,1014026,4,'Screenplay'),(97614,1326401,8,'Makeup Artist'),(97614,1384359,7,'Assistant Art Director'),(97614,1384364,9,'Property Master'),(97614,1384392,8,'Set Costumer'),(97614,1384394,9,'Transportation Coordinator'),(97614,1393444,6,'Sound Effects Editor'),(97614,1393456,9,'Dialect Coach'),(97614,1394747,5,'Dialogue Editor'),(97614,1394756,1,'Steadicam Operator'),(97614,1396794,6,'Sound Re-Recording Mixer'),(97614,1396796,9,'Sound Recordist'),(97614,1401135,6,'Sound Effects Editor'),(97614,1406051,1,'Still Photographer'),(97614,1407007,8,'Hairstylist'),(97614,1409721,6,'Music Editor'),(97614,1409724,9,'Picture Car Coordinator'),(97614,1409875,5,'Digital Intermediate'),(97614,1411857,9,'Dialect Coach'),(97614,1412699,6,'Sound Effects Editor'),(97614,1412702,6,'Supervising Sound Editor'),(97614,1412703,6,'Sound Effects Editor'),(97614,1419717,3,'Producer'),(97614,1419718,8,'Hairstylist'),(97614,1419721,9,'Special Effects Coordinator'),(97614,1419723,9,'Visual Effects Editor'),(97614,1419724,9,'Visual Effects Editor'),(97614,1419725,10,'Visual Effects Producer'),(97614,1419726,1,'Camera Operator'),(97614,1419728,9,'Second Unit Cinematographer'),(97614,1419729,5,'Digital Intermediate'),(97614,1419730,5,'First Assistant Editor'),(97614,1419731,6,'Music Editor'),(97614,1419732,2,'Script Coordinator'),(97614,1419733,9,'Unit Publicist'),(37206,87121,2,'Director'),(37206,87121,4,'Writer'),(37206,563649,4,'Writer'),(37206,953724,3,'Executive Producer'),(58626,78217,4,'Writer'),(58626,78219,4,'Writer'),(58626,228177,2,'Director'),(183894,32982,4,'Writer'),(183894,152249,2,'Director'),(244783,1813,3,'Producer'),(244783,3498,3,'Executive Producer'),(244783,16294,3,'Producer'),(244783,23485,3,'Producer'),(244783,62238,3,'Executive Producer'),(244783,72038,5,'Editor'),(244783,967792,1,'Director of Photography'),(244783,1046134,3,'Producer'),(244783,1128690,3,'Producer'),(244783,1246866,3,'Producer'),(244783,1280037,2,'Director'),(244783,1280037,4,'Writer'),(244783,1280038,3,'Executive Producer'),(244783,1280039,3,'Executive Producer'),(168027,2241,5,'Editor'),(168027,2235,4,'Novel'),(168027,13585,3,'Casting'),(168027,11468,6,'Music'),(168027,15225,6,'Music Editor'),(168027,60283,7,'Production Design'),(168027,70949,1,'Director of Photography'),(168027,102779,9,'Stunt Coordinator'),(168027,122728,2,'Director'),(168027,122728,3,'Producer'),(168027,122728,4,'Adaptation'),(168027,1317128,8,'Makeup Department Head'),(168027,1324792,7,'Set Decoration'),(168027,1347997,6,'Sound Re-Recording Mixer'),(168027,1358021,10,'Visual Effects Supervisor'),(168027,1368885,9,'Transportation Coordinator'),(168027,1371063,8,'Costume Design'),(168027,1391594,1,'Camera Operator'),(168027,1397724,8,'Set Costumer'),(168027,1397736,6,'Music Editor'),(168027,1402169,11,'Gaffer'),(168027,1415010,10,'Visual Effects Producer'),(168027,1415014,10,'Visual Effects Supervisor'),(168027,1431557,9,'Property Master'),(168027,1452332,8,'Makeup Artist'),(168027,1452340,1,'Still Photographer'),(168027,1452342,8,'Costume Supervisor'),(168027,1460736,3,'Casting'),(168027,1460739,8,'Hairstylist'),(168027,1460740,8,'Hairstylist'),(168027,1460741,8,'Makeup Artist'),(168027,1460742,8,'Makeup Artist'),(168027,1460745,7,'Art Department Coordinator'),(168027,1460746,7,'Construction Coordinator'),(168027,1460748,8,'Set Costumer'),(168027,1460749,5,'First Assistant Editor'),(168027,1460750,9,'Choreographer'),(168027,1460751,2,'Script Supervisor'),(168027,1460752,3,'Location Manager'),(135595,1102620,2,'Director'),(135595,1102620,4,'Screenplay'),(89861,4016,3,'Producer'),(89861,7658,6,'Sound Editor'),(89861,20779,2,'Director'),(89861,20779,3,'Producer'),(89861,20779,4,'Writer'),(89861,937886,4,'Writer'),(89861,937887,3,'Executive Producer'),(89861,937888,3,'Line Producer'),(57022,102445,2,'Director'),(147767,88593,6,'Music'),(147767,88593,4,'Story'),(147767,131856,2,'Director'),(55567,59023,2,'Director'),(55567,59023,4,'Writer'),(138697,5914,3,'Casting'),(138697,5081,9,'Thanks'),(138697,16498,9,'Special Effects Coordinator'),(138697,24045,2,'Director'),(138697,24045,4,'Writer'),(138697,39123,3,'Casting'),(138697,46081,1,'Director of Photography'),(138697,54419,3,'Executive Producer'),(138697,54873,3,'Executive Producer'),(138697,60047,3,'Producer'),(138697,69077,6,'Original Music Composer'),(138697,111052,7,'Production Design'),(138697,138618,6,'Sound Re-Recording Mixer'),(138697,960565,7,'Set Decoration'),(138697,971528,8,'Costume Design'),(138697,990955,3,'Line Producer'),(138697,1001368,5,'Editor'),(138697,1031200,3,'Executive Producer'),(138697,1279522,7,'Art Direction'),(138697,1322015,8,'Makeup Department Head'),(138697,1344842,2,'Script Supervisor'),(138697,1388865,6,'Supervising Sound Editor'),(138697,1410954,6,'Sound mixer'),(138697,1412204,1,'Camera Operator'),(138697,1414179,6,'Sound Re-Recording Mixer'),(138697,1420326,1,'Still Photographer'),(138697,1425827,1,'Camera Operator'),(138697,1425827,1,'Steadicam Operator'),(138697,1452614,8,'Hair Department Head'),(138697,1471726,6,'Music Supervisor'),(138697,1501240,3,'Associate Producer'),(138697,1529430,6,'Music Editor'),(138697,1565099,3,'Production Coordinator'),(138697,1565101,8,'Assistant Costume Designer'),(138697,1701606,3,'Location Manager'),(73532,16767,2,'Director'),(73532,16767,4,'Writer'),(73532,16769,1,'Director of Photography'),(73532,1381113,11,'Gaffer'),(193722,71080,4,'Screenplay'),(193722,71080,2,'Director'),(193722,71081,4,'Screenplay'),(193722,72458,1,'Director of Photography'),(193722,1112446,4,'Screenplay'),(193722,1291354,4,'Screenplay'),(193722,1291355,4,'Screenplay'),(193722,1291357,6,'Music'),(193722,1291358,5,'Editor'),(253253,31654,3,'Producer'),(253253,78976,3,'Producer'),(253253,83854,4,'Writer'),(253253,1288700,2,'Director'),(51995,17451,3,'Producer'),(51995,46802,4,'Screenplay'),(51995,46802,2,'Director'),(51995,53277,3,'Producer'),(51995,217519,4,'Screenplay'),(51995,1011113,3,'Producer'),(70670,7746,1,'Director of Photography'),(70670,15082,6,'Original Music Composer'),(70670,71165,9,'Special Effects Coordinator'),(70670,76571,3,'Casting'),(70670,77965,2,'Director'),(70670,77966,4,'Screenplay'),(70670,136364,6,'Sound Designer'),(70670,559204,3,'Producer'),(70670,559205,3,'Producer'),(70670,559206,4,'Screenplay'),(70670,574200,9,'Sound Recordist'),(70670,832208,6,'Original Music Composer'),(70670,934166,4,'Novel'),(70670,1003008,3,'Executive Producer'),(70670,1066227,3,'Executive Producer'),(70670,1066233,6,'Sound Effects Editor'),(70670,1102112,3,'Executive Producer'),(70670,1122835,8,'Makeup Designer'),(70670,1123790,3,'Executive Producer'),(70670,1123791,3,'Line Producer'),(70670,1123792,7,'Production Design'),(70670,1151225,8,'Costume Design'),(70670,1336914,6,'Foley'),(70670,1351731,1,'Still Photographer'),(70670,1411042,1,'Camera Operator'),(70670,1427144,7,'Art Department Coordinator'),(70670,1427148,1,'Still Photographer'),(70670,1448311,5,'Dialogue Editor'),(70670,1448312,6,'Sound Effects Editor'),(70670,1448321,10,'Visual Effects Supervisor'),(70670,1545282,6,'Sound Re-Recording Mixer'),(70670,1545283,8,'Hairstylist'),(70670,1586293,2,'Script Supervisor'),(70670,1586294,1,'Camera Operator'),(70670,1586295,11,'Gaffer'),(70670,1586298,9,'Sound Recordist'),(84204,41846,6,'Original Music Composer'),(84204,45118,3,'Producer'),(84204,47207,3,'Producer'),(84204,66910,3,'Producer'),(84204,79135,3,'Producer'),(84204,89824,2,'Director'),(84204,571434,9,'Visual Effects Editor'),(84204,933208,4,'Writer'),(84204,971882,8,'Costume Design'),(84204,972161,3,'Producer'),(84204,995066,5,'Editor'),(84204,1014915,3,'Casting'),(84204,1024291,1,'Director of Photography'),(84204,1042042,7,'Assistant Art Director'),(84204,1135836,10,'Creature Design'),(84204,1162253,3,'Casting'),(84204,1287464,9,'Stunt Coordinator'),(84204,1325591,7,'Set Decoration'),(84204,1325904,7,'Production Design'),(84204,1337412,6,'Foley'),(84204,1338229,10,'Visual Effects Producer'),(84204,1363694,3,'Producer'),(84204,1393303,6,'Sound Designer'),(84204,1394010,10,'Visual Effects Supervisor'),(84204,1404873,9,'Unit Publicist'),(84204,1405206,6,'ADR & Dubbing'),(84204,1406918,7,'Art Direction'),(84204,1407854,7,'Sculptor'),(84204,1408387,9,'CG Supervisor'),(84204,1411670,6,'Foley'),(84204,1415042,1,'Steadicam Operator'),(84204,1416455,6,'Sound Re-Recording Mixer'),(84204,1416455,5,'Dialogue Editor'),(84204,1437634,5,'Digital Intermediate'),(84204,1458537,8,'Hairstylist'),(84204,1458538,8,'Makeup Artist'),(84204,1458539,9,'Property Master'),(84204,1458540,7,'Sculptor'),(84204,1458541,9,'Sound Recordist'),(84204,1458542,6,'Sound Effects Editor'),(84204,1458548,10,'Animation'),(84204,1458549,10,'Animation'),(84204,1458550,10,'Animation'),(84204,1458551,10,'Animation'),(84204,1458553,10,'Visual Effects Producer'),(84204,1458556,1,'Steadicam Operator'),(84204,1458557,1,'Still Photographer'),(84204,1458559,11,'Gaffer'),(84204,1458560,2,'Script Supervisor'),(84204,1458561,3,'Location Manager'),(84204,1458562,2,'Script Supervisor'),(230266,11233,5,'Editor'),(230266,11916,2,'Director'),(230266,11916,4,'Screenplay'),(230266,48567,4,'Theatre Play'),(230266,56915,3,'Producer'),(230266,68525,9,'Cinematography'),(230266,135118,3,'Producer'),(230266,1290783,3,'Producer'),(230266,1290784,3,'Producer'),(230266,1290785,3,'Producer'),(63006,85446,3,'Producer'),(63006,85443,4,'Writer'),(63006,85445,2,'Director'),(91586,2127,2,'Director'),(91586,2127,4,'Story'),(91586,2128,4,'Screenplay'),(91586,2128,4,'Characters'),(91586,2128,4,'Story'),(91586,9545,3,'Casting'),(91586,26714,1,'Director of Photography'),(91586,51613,3,'Producer'),(91586,62813,5,'Editor'),(91586,62775,3,'Executive Producer'),(91586,73417,6,'Original Music Composer'),(91586,90591,3,'Producer'),(91586,169743,7,'Production Design'),(91586,991706,3,'Executive Producer'),(91586,995456,3,'Executive Producer'),(91586,999763,3,'Executive Producer'),(91586,1030966,3,'Executive Producer'),(91586,1178366,7,'Art Direction'),(91586,1183915,8,'Costume Design'),(91586,1276601,3,'Executive Producer'),(91586,1276602,3,'Casting'),(333371,2325,3,'Casting'),(333371,15344,3,'Producer'),(333371,23788,9,'Makeup Effects'),(333371,69506,1,'Director of Photography'),(333371,59811,6,'Music'),(333371,66491,7,'Production Design'),(333371,92336,9,'Makeup Effects'),(333371,136495,4,'Screenplay'),(333371,568322,2,'Director'),(333371,888740,7,'Set Decoration'),(333371,928329,8,'Costume Design'),(333371,1069869,8,'Makeup Artist'),(333371,1115738,6,'Supervising Sound Editor'),(333371,1117947,4,'Screenplay'),(333371,1127474,9,'Second Unit Cinematographer'),(333371,1330582,7,'Set Designer'),(333371,1333932,3,'Casting'),(333371,1351724,6,'Foley'),(333371,1389133,6,'Sound Re-Recording Mixer'),(333371,1393859,1,'Still Photographer'),(333371,1401593,1,'Helicopter Camera'),(333371,1407729,7,'Leadman'),(333371,1409258,2,'Script Supervisor'),(333371,1410111,11,'Rigging Gaffer'),(333371,1414558,5,'Digital Intermediate'),(333371,1423702,1,'Camera Operator'),(333371,1425208,1,'Camera Operator'),(333371,1445820,8,'Hair Department Head'),(333371,1451552,6,'Sound Re-Recording Mixer'),(333371,1451556,5,'First Assistant Editor'),(333371,1455525,10,'Animation Supervisor'),(333371,1456496,7,'Set Designer'),(333371,1463352,9,'Property Master'),(333371,1463359,7,'Assistant Art Director'),(333371,1463380,7,'Set Designer'),(333371,1484980,7,'Greensman'),(333371,1493738,4,'Screenplay'),(333371,1550766,9,'CG Supervisor'),(333371,1553629,7,'Construction Coordinator'),(333371,1558086,10,'Special Effects Supervisor'),(333371,1558087,9,'Special Effects Coordinator'),(333371,1558851,11,'Gaffer'),(333371,1585745,5,'Digital Intermediate'),(333371,1621797,11,'Gaffer'),(333371,1636657,3,'Producer'),(333371,1636658,5,'Editor'),(333371,1636659,3,'Casting Associate'),(333371,1636660,8,'Costume Supervisor'),(333371,1636661,3,'Researcher'),(333371,1636662,10,'Special Effects Supervisor'),(333371,1636663,10,'Visual Effects Coordinator'),(333371,1636665,10,'Visual Effects Coordinator'),(333371,1636666,10,'Visual Effects Producer'),(333371,1636667,10,'Visual Effects Supervisor'),(333371,1636668,6,'Foley'),(333371,1636669,8,'Hairstylist'),(333371,1636670,8,'Makeup Department Head'),(333371,1636674,1,'First Assistant Camera'),(333371,1636676,5,'Digital Intermediate'),(345911,2127,3,'Producer'),(345911,40825,6,'Original Music Composer'),(345911,23788,8,'Prosthetic Designer'),(345911,62841,3,'Executive Producer'),(345911,84181,7,'Art Direction'),(345911,115033,4,'Screenplay'),(345911,115033,3,'Producer'),(345911,169743,7,'Production Design'),(345911,1148632,7,'Set Decoration'),(345911,1183915,8,'Costume Design'),(345911,1302082,2,'Director'),(345911,1302082,4,'Writer'),(345911,1414532,2,'Script Supervisor'),(345911,1421687,1,'Director of Photography'),(345911,1453428,8,'Prosthetic Makeup Artist'),(345911,1514418,3,'Producer'),(345911,1636865,8,'Prosthetic Makeup Artist'),(72571,494,3,'Casting'),(72571,54248,4,'Writer'),(72571,54248,3,'Co-Producer'),(72571,84348,3,'Producer'),(72571,90591,3,'Producer'),(72571,136068,1,'Director of Photography'),(72571,141483,10,'Visual Effects Supervisor'),(72571,142272,2,'Director'),(72571,142276,2,'Director'),(72571,148697,7,'Set Decoration'),(72571,169743,7,'Production Design'),(72571,935493,3,'Casting Associate'),(72571,995456,3,'Producer'),(72571,995462,5,'Editor'),(72571,1018071,9,'Visual Effects Editor'),(72571,1190783,2,'Script Supervisor'),(72571,1314152,8,'Costume Design'),(72571,1377294,10,'Visual Effects Producer'),(72571,1407700,8,'Makeup Artist'),(72571,1470524,8,'Makeup Department Head'),(72571,1481011,8,'Hair Department Head'),(72571,1547185,9,'Property Master'),(72571,1547186,9,'Special Effects Coordinator'),(72571,1547188,8,'Costume Supervisor'),(242512,865,3,'Producer'),(242512,13585,3,'Casting'),(242512,9351,6,'Music Editor'),(242512,19284,7,'Production Design'),(242512,35766,8,'Costume Design'),(242512,54843,3,'Producer'),(242512,54844,3,'Producer'),(242512,59674,9,'Stunt Coordinator'),(242512,84961,4,'Screenplay'),(242512,84962,4,'Screenplay'),(242512,84962,2,'Director'),(242512,84348,3,'Producer'),(242512,131413,9,'Stunt Coordinator'),(242512,937231,3,'Producer'),(242512,938105,5,'Editor'),(242512,1059590,1,'Still Photographer'),(242512,1127245,7,'Art Direction'),(242512,1159944,9,'Makeup Effects'),(242512,1181479,6,'Original Music Composer'),(242512,1184221,9,'Property Master'),(242512,1315842,8,'Makeup Artist'),(242512,1331646,8,'Makeup Artist'),(242512,1340320,6,'Sound Designer'),(242512,1341138,6,'Sound Re-Recording Mixer'),(242512,1344831,6,'Foley'),(242512,1344842,2,'Script Supervisor'),(242512,1358021,10,'Visual Effects Supervisor'),(242512,1377293,6,'Sound Designer'),(242512,1377416,6,'Supervising Sound Editor'),(242512,1387185,10,'Visual Effects Producer'),(242512,1387195,6,'Sound Re-Recording Mixer'),(242512,1396827,6,'Music Editor'),(242512,1398970,1,'Director of Photography'),(242512,1408356,1,'Camera Operator'),(242512,1411685,7,'Art Direction'),(242512,1415640,8,'Costume Supervisor'),(242512,1417865,8,'Makeup Department Head'),(242512,1417867,3,'Production Supervisor'),(242512,1417888,3,'Location Manager'),(242512,1436195,8,'Set Costumer'),(242512,1437191,8,'Hairstylist'),(242512,1437192,7,'Art Department Coordinator'),(242512,1437193,5,'Dialogue Editor'),(242512,1437194,9,'Special Effects Coordinator'),(242512,1437195,9,'Special Effects Coordinator'),(242512,1437196,10,'Visual Effects Producer'),(242512,1437197,11,'Gaffer'),(242512,1437198,9,'Picture Car Coordinator'),(242512,1511086,6,'Supervising Sound Editor'),(242512,1564536,7,'Set Decoration'),(211954,27181,6,'Music'),(211954,129456,4,'Writer'),(211954,234749,5,'Editor'),(211954,239574,2,'Director'),(211954,239574,4,'Writer'),(211954,1181141,9,'Cinematography'),(82990,494,3,'Casting'),(82990,21323,7,'Set Decoration'),(82990,54248,4,'Screenplay'),(82990,54248,3,'Executive Producer'),(82990,84348,3,'Producer'),(82990,90591,3,'Producer'),(82990,142272,2,'Director'),(82990,142276,2,'Director'),(82990,169743,7,'Production Design'),(82990,929987,1,'Director of Photography'),(82990,935493,3,'Casting Associate'),(82990,995456,3,'Producer'),(82990,995462,5,'Editor'),(82990,1178366,7,'Art Direction'),(82990,1190783,2,'Script Supervisor'),(82990,1314152,8,'Costume Design'),(82990,1406868,2,'Script Supervisor'),(82990,1407700,8,'Makeup Department Head'),(82990,1417875,9,'Special Effects Coordinator'),(82990,1457696,8,'Makeup Department Head'),(82990,1481011,8,'Hair Department Head'),(82990,1547188,8,'Costume Supervisor'),(82990,1547201,7,'Art Department Coordinator'),(82990,1547203,9,'Visual Effects Editor'),(82990,1547204,10,'Visual Effects Producer'),(82990,1547205,10,'Visual Effects Supervisor'),(82990,1547206,2,'Script Supervisor'),(227348,17674,3,'Casting'),(227348,17849,7,'Production Design'),(227348,17852,7,'Art Direction'),(227348,54248,2,'Director'),(227348,54248,4,'Writer'),(227348,84348,3,'Producer'),(227348,90591,3,'Producer'),(227348,995462,5,'Editor'),(227348,1099278,1,'Director of Photography'),(152532,5328,3,'Casting'),(152532,16831,3,'Executive Producer'),(152532,19689,3,'Casting'),(152532,21268,7,'Production Design'),(152532,56759,3,'Executive Producer'),(152532,59700,3,'Producer'),(152532,64058,3,'Executive Producer'),(152532,69371,2,'Director'),(152532,69371,5,'Editor'),(152532,74342,4,'Screenplay'),(152532,928272,3,'Casting'),(152532,1031200,3,'Executive Producer'),(152532,1031978,1,'Director of Photography'),(152532,1128684,3,'Executive Producer'),(152532,1133294,4,'Screenplay'),(152532,1279972,3,'Executive Producer'),(152532,1281376,3,'Executive Producer'),(152532,1287613,3,'Producer'),(152532,1287614,5,'Editor'),(152532,1287615,7,'Art Direction'),(152532,1287616,3,'Executive Producer'),(152532,1287617,3,'Executive Producer'),(152532,1304298,8,'Makeup Artist'),(152532,1594602,8,'Costume Design'),(243940,5914,3,'Casting'),(243940,16651,5,'Editor'),(243940,39123,3,'Casting'),(243940,113045,6,'Foley'),(243940,113090,6,'Foley'),(243940,56690,11,'Gaffer'),(243940,61397,3,'Producer'),(243940,63099,1,'Director of Photography'),(243940,67317,4,'Screenplay'),(243940,92331,8,'Hairstylist'),(243940,92484,9,'Stunt Coordinator'),(243940,84348,3,'Producer'),(243940,928915,2,'Director'),(243940,937956,8,'Costume Design'),(243940,1049456,6,'Supervising Sound Editor'),(243940,1147923,4,'Screenplay'),(243940,1186280,7,'Production Design'),(243940,1287869,9,'Makeup Effects'),(243940,1289047,9,'Makeup Effects'),(243940,1344842,2,'Script Supervisor'),(243940,1349966,8,'Makeup Artist'),(243940,1387186,1,'Still Photographer'),(243940,1387195,6,'Sound Re-Recording Mixer'),(243940,1406825,6,'Supervising Sound Editor'),(243940,1417864,9,'Makeup Effects'),(243940,1420326,1,'Still Photographer'),(243940,1423984,7,'Set Decoration'),(243940,1423985,7,'Art Direction'),(243940,1427435,5,'Digital Intermediate'),(243940,1434896,1,'Camera Operator'),(243940,1461164,9,'Property Master'),(243940,1461177,1,'Still Photographer'),(243940,1473445,6,'Sound Re-Recording Mixer'),(243940,1525141,3,'Producer'),(243940,1525142,3,'Producer'),(243940,1525143,6,'Music'),(243940,1525145,8,'Makeup Department Head'),(243940,1525146,7,'Art Department Coordinator'),(243940,1525147,7,'Construction Coordinator'),(243940,1525152,10,'Visual Effects Producer'),(243940,1525153,10,'Visual Effects Supervisor'),(243940,1525154,10,'Visual Effects Supervisor'),(243940,1525155,1,'Camera Operator'),(243940,1525157,1,'Steadicam Operator'),(243940,1525159,5,'First Assistant Editor'),(157547,9545,3,'Casting'),(157547,24529,9,'Stunt Coordinator'),(157547,60471,3,'Producer'),(157547,60472,3,'Producer'),(157547,61318,8,'Costume Design'),(157547,63099,1,'Director of Photography'),(157547,113081,6,'Sound Re-Recording Mixer'),(157547,551463,2,'Director'),(157547,551463,4,'Screenplay'),(157547,551463,5,'Editor'),(157547,554887,6,'Sound Designer'),(157547,888740,7,'Set Decoration'),(157547,989610,6,'Original Music Composer'),(157547,990882,11,'Lighting Technician'),(157547,1069078,7,'Production Design'),(157547,1137487,9,'Transportation Coordinator'),(157547,1224355,4,'Screenplay'),(157547,1276602,3,'Casting'),(157547,1309872,8,'Costume Supervisor'),(157547,1340088,7,'Leadman'),(157547,1340734,7,'Art Direction'),(157547,1340735,8,'Makeup Department Head'),(157547,1340736,9,'Property Master'),(157547,1340737,6,'Supervising Sound Editor'),(157547,1340738,6,'Boom Operator'),(157547,1340739,6,'Foley'),(157547,1340741,5,'Dialogue Editor'),(157547,1340742,10,'Visual Effects Producer'),(157547,1340743,10,'Visual Effects Supervisor'),(157547,1340744,8,'Set Costumer'),(157547,1340745,8,'Set Costumer'),(157547,1340746,6,'Music Editor'),(157547,1340747,9,'Transportation Captain'),(157547,1340748,2,'Script Supervisor'),(157547,1340749,9,'Security'),(157547,1376279,9,'Studio Teachers'),(157547,1376486,11,'Gaffer'),(157547,1376487,1,'Camera Operator'),(157547,1376488,1,'Camera Operator'),(157547,1376489,1,'Still Photographer'),(157547,1376490,11,'Best Boy Electric'),(157547,1376491,3,'Location Manager'),(157547,1770856,6,'Original Music Composer'),(147773,1527,1,'Director of Photography'),(147773,33685,5,'Editor'),(147773,20743,3,'Executive Producer'),(147773,41080,3,'Casting'),(147773,45838,3,'Executive Producer'),(147773,60193,7,'Production Design'),(147773,105648,2,'Director'),(147773,105648,3,'Executive Producer'),(147773,105648,4,'Writer'),(147773,161932,2,'Director'),(147773,161932,3,'Executive Producer'),(147773,161932,4,'Writer'),(147773,945058,3,'Producer'),(147773,970192,7,'Set Decoration'),(147773,1042699,6,'Original Music Composer'),(147773,1242109,3,'Executive Producer'),(147773,1242110,3,'Producer'),(147773,1242111,7,'Art Direction'),(59968,321,3,'Producer'),(59968,546,3,'Casting'),(59968,2863,6,'Music'),(59968,4855,3,'Producer'),(59968,4857,3,'Producer'),(59968,5327,5,'Editor'),(59968,46809,5,'Editor'),(59968,130816,2,'Director'),(59968,130816,4,'Story'),(59968,213608,4,'Screenplay'),(59968,213608,4,'Story'),(59968,582807,8,'Costume Design'),(59968,583692,4,'Screenplay'),(59968,583692,4,'Story'),(59968,783230,1,'Director of Photography'),(59968,1193617,7,'Production Design'),(59968,1193618,7,'Art Direction'),(59968,1193637,7,'Set Decoration'),(59968,1193638,1,'Still Photographer'),(59968,1193640,6,'Music'),(323677,2042,2,'Director'),(323677,2042,3,'Producer'),(323677,2044,1,'Director of Photography'),(323677,4023,3,'Casting'),(323677,2678,3,'Casting'),(323677,3562,6,'Music'),(323677,6118,5,'Editor'),(323677,6391,7,'Production Design'),(323677,8704,7,'Supervising Art Director'),(323677,40801,8,'Set Costumer'),(323677,17611,3,'Casting'),(323677,32462,3,'Producer'),(323677,75451,1,'Director of Photography'),(323677,113894,8,'Costume Design'),(323677,84577,10,'Visual Effects Coordinator'),(323677,186592,4,'Screenplay'),(323677,587804,8,'Makeup Artist'),(323677,958156,3,'Producer'),(323677,1099948,6,'Music Editor'),(323677,1178912,3,'Producer'),(323677,1194066,8,'Makeup Department Head'),(323677,1197112,6,'Sound Re-Recording Mixer'),(323677,1198825,3,'Casting'),(323677,1316729,3,'Producer'),(323677,1327907,7,'Art Direction'),(323677,1358022,10,'Visual Effects Producer'),(323677,1363865,10,'Visual Effects Supervisor'),(323677,1391763,9,'Property Master'),(323677,1392955,6,'Supervising Sound Editor'),(323677,1394740,7,'Art Department Coordinator'),(323677,1394756,1,'Steadicam Operator'),(323677,1406774,7,'Set Decoration'),(323677,1412585,6,'Sound Effects Editor'),(323677,1412586,6,'Sound Editor'),(323677,1412588,9,'CG Supervisor'),(323677,1436493,8,'Hair Department Head'),(323677,1437280,6,'ADR & Dubbing'),(323677,1448200,4,'Screenplay'),(323677,1496417,10,'Visual Effects Producer'),(323677,1519863,1,'Additional Photography'),(323677,1519906,1,'Still Photographer'),(323677,1536209,10,'Visual Effects Supervisor'),(323677,1566366,6,'Sound Effects Editor'),(323677,1585735,9,'CG Supervisor'),(323677,1590089,7,'Set Decoration'),(323677,1630954,1,'Still Photographer'),(323677,1637281,3,'Producer'),(323677,1637282,3,'Producer'),(323677,1637283,3,'Producer'),(323677,1637284,7,'Art Department Coordinator'),(323677,1637285,8,'Assistant Costume Designer'),(323677,1637286,8,'Costume Supervisor'),(323677,1637287,8,'Set Costumer'),(323677,1637288,1,'First Assistant Camera'),(323677,1637289,10,'Animation'),(323677,1637290,10,'VFX Editor'),(323677,1637291,10,'Visual Effects Coordinator'),(323677,1637292,10,'Visual Effects Coordinator'),(323677,1637293,10,'Visual Effects Coordinator'),(323677,1637294,10,'Visual Effects Coordinator'),(323677,1637295,10,'Visual Effects Coordinator'),(323677,1637296,10,'Visual Effects Coordinator'),(323677,1637297,9,'Visual Effects Editor'),(323677,1637298,10,'Visual Effects Producer'),(323677,1637299,10,'Visual Effects Producer'),(323677,1637301,10,'Visual Effects Producer'),(323677,1637302,10,'Visual Effects Supervisor'),(323677,1637304,10,'Visual Effects Supervisor'),(323677,1637305,6,'ADR & Dubbing'),(323677,1637310,8,'Hairstylist'),(323677,1637312,8,'Makeup Artist'),(256274,7232,3,'Casting'),(256274,16369,10,'Special Effects Supervisor'),(256274,16370,9,'Special Effects Coordinator'),(256274,16337,3,'Casting'),(256274,16339,7,'Set Decoration'),(256274,16339,7,'Set Designer'),(256274,37975,9,'Stunt Coordinator'),(256274,54211,3,'Producer'),(256274,61091,3,'Producer'),(256274,65327,3,'Co-Producer'),(256274,65217,8,'Costume Design'),(256274,77147,2,'Director'),(256274,77147,4,'Screenplay'),(256274,141483,3,'Co-Producer'),(256274,141483,10,'Visual Effects Supervisor'),(256274,142520,4,'Screenplay'),(256274,142520,3,'Producer'),(256274,579405,6,'Sound Re-Recording Mixer'),(256274,964093,3,'Producer'),(256274,965383,5,'Editor'),(256274,1010751,6,'Sound Re-Recording Mixer'),(256274,1099878,3,'Casting'),(256274,1161602,6,'Original Music Composer'),(256274,1175850,1,'Still Photographer'),(256274,1337637,7,'Art Direction'),(256274,1340739,6,'Foley'),(256274,1357061,6,'Sound Designer'),(256274,1371561,1,'Director of Photography'),(256274,1377287,7,'Production Design'),(256274,1377288,7,'Assistant Art Director'),(256274,1377289,7,'Assistant Art Director'),(256274,1377290,9,'Property Master'),(256274,1377291,6,'Boom Operator'),(256274,1377293,6,'Sound Designer'),(256274,1377294,10,'Visual Effects Producer'),(256274,1377295,11,'Gaffer'),(256274,1377296,11,'Best Boy Electric'),(256274,1377297,8,'Costume Supervisor'),(256274,1377298,5,'Digital Intermediate'),(256274,1377299,2,'Script Supervisor'),(256274,1377300,3,'Location Manager'),(256274,1377416,6,'Foley Editor'),(256274,1460672,9,'Post Production Supervisor'),(256274,1477780,7,'Construction Coordinator'),(256274,1511086,6,'Supervising Sound Editor'),(256274,1559356,10,'Visual Effects Coordinator'),(256274,1733119,6,'Music Supervisor'),(256274,1826956,2,'First Assistant Director'),(256274,1863511,10,'Visual Effects Coordinator'),(256274,1863512,3,'Production Coordinator'),(256274,1863514,9,'Production Controller'),(235271,5290,3,'Casting'),(235271,5917,4,'Screenplay'),(235271,40384,6,'Music'),(235271,62116,2,'Director'),(235271,73834,3,'Producer'),(235271,80802,3,'Co-Producer'),(235271,86817,7,'Production Design'),(235271,975143,9,'Cinematography'),(235271,1172617,4,'Screenplay'),(235271,1250686,3,'Executive Producer'),(235271,1250686,4,'Novel'),(235271,1439027,7,'Set Decoration'),(235271,1452230,8,'Costume Design'),(235271,1452231,8,'Hairstylist'),(235271,1452232,8,'Hairstylist'),(235271,1452233,8,'Makeup Department Head'),(235271,1452234,8,'Makeup Artist'),(45153,2231,3,'Producer'),(45153,5776,3,'Casting'),(45153,5777,3,'Casting'),(45153,51864,2,'Director'),(45153,51864,4,'Writer'),(45153,5287,6,'Original Music Composer'),(45153,6468,3,'Executive Producer'),(45153,6802,8,'Costume Design'),(45153,16400,3,'Co-Producer'),(45153,32591,7,'Set Decoration'),(45153,39973,3,'Producer'),(45153,51868,5,'Editor'),(45153,53640,1,'Director of Photography'),(45153,63989,3,'Executive Producer'),(45153,58048,3,'Executive Producer'),(45153,60871,7,'Art Direction'),(45153,68310,3,'Co-Producer'),(45153,73844,3,'Executive Producer'),(45153,205411,3,'Co-Executive Producer'),(45153,991016,3,'Co-Executive Producer'),(45153,1376901,6,'Sound Effects Editor'),(45153,1400407,1,'Still Photographer'),(45153,1402153,5,'Dialogue Editor'),(45153,1406098,6,'Sound Effects Editor'),(45153,1406241,6,'Sound Effects Editor'),(45153,1411265,5,'Dialogue Editor'),(45153,1440230,6,'Sound Effects Editor'),(45153,1526031,7,'Production Design'),(45153,1546559,6,'Sound Re-Recording Mixer'),(45153,1550254,3,'Co-Producer'),(45153,1550266,2,'Script Supervisor'),(45153,1550267,6,'Sound Effects Editor'),(45153,1550268,6,'Sound mixer'),(45153,1550269,5,'Dialogue Editor'),(284293,5328,3,'Casting'),(284293,19689,3,'Casting'),(284293,23464,1,'Director of Photography'),(284293,23451,6,'Original Music Composer'),(284293,57427,3,'Producer'),(284293,71087,5,'Editor'),(284293,82335,2,'Director'),(284293,82335,4,'Screenplay'),(284293,82337,2,'Director'),(284293,82337,4,'Screenplay'),(284293,928299,7,'Production Design'),(284293,1099013,3,'Casting'),(284293,1190971,3,'Producer'),(284293,1190973,3,'Producer'),(284293,1385486,4,'Novel'),(284293,1385487,8,'Costume Design'),(122081,8377,6,'Original Music Composer'),(122081,7481,3,'Casting'),(122081,9196,3,'Executive Producer'),(122081,14599,1,'Director of Photography'),(122081,17115,5,'Editor'),(122081,17231,3,'Producer'),(122081,17231,1,'Still Photographer'),(122081,52161,6,'Music Supervisor'),(122081,51918,2,'Director'),(122081,51918,4,'Writer'),(122081,113097,6,'Sound Effects Editor'),(122081,71332,3,'Executive Producer'),(122081,75081,8,'Hairstylist'),(122081,75081,8,'Makeup Artist'),(122081,79533,3,'Producer'),(122081,79534,3,'Executive Producer'),(122081,92595,9,'Additional Music'),(122081,94541,3,'Co-Producer'),(122081,94541,3,'Unit Production Manager'),(122081,153933,3,'Executive Producer'),(122081,622844,3,'Executive Producer'),(122081,929998,6,'Original Music Composer'),(122081,950644,3,'Producer'),(122081,952397,3,'Executive Producer'),(122081,963377,8,'Costume Design'),(122081,984533,7,'Set Decoration'),(122081,1027025,3,'Executive Producer'),(122081,1036825,3,'Executive Producer'),(122081,1089527,3,'Producer'),(122081,1149914,8,'Set Costumer'),(122081,1186191,7,'Production Design'),(122081,1271456,7,'Art Direction'),(122081,1272771,3,'Executive Producer'),(122081,1309888,9,'Special Effects Coordinator'),(122081,1319384,8,'Makeup Department Head'),(122081,1330530,3,'Co-Producer'),(122081,1332171,3,'Casting Associate'),(122081,1338374,6,'Sound Re-Recording Mixer'),(122081,1340091,9,'Post Production Supervisor'),(122081,1397076,3,'Associate Producer'),(122081,1404716,6,'Supervising Sound Editor'),(122081,1404716,6,'Sound Designer'),(122081,1404716,6,'Sound Re-Recording Mixer'),(122081,1414984,8,'Hair Department Head'),(122081,1452327,1,'Camera Operator'),(122081,1497319,9,'Additional Music'),(122081,1530092,8,'Costume Supervisor'),(122081,1543197,8,'Key Hair Stylist'),(122081,1546856,6,'Supervising Sound Editor'),(122081,1589519,5,'Additional Editing'),(122081,1653675,4,'Storyboard'),(122081,1665860,9,'Stunt Coordinator'),(122081,1719400,3,'Executive Producer'),(122081,1719401,3,'Executive Producer'),(122081,1719402,3,'Executive Producer'),(122081,1719403,9,'Stunt Coordinator'),(122081,1719404,3,'Associate Producer'),(122081,1719405,3,'Associate Producer'),(122081,1719407,3,'Associate Producer'),(122081,1719408,3,'Associate Producer'),(122081,1719409,2,'Script Supervisor'),(122081,1719410,1,'Steadicam Operator'),(122081,1719411,6,'Boom Operator'),(122081,1719412,8,'Set Costumer'),(122081,1719413,9,'Property Master'),(122081,1719414,1,'Still Photographer'),(122081,1719415,6,'Music Editor'),(50357,2952,3,'Casting'),(50357,3686,3,'Casting'),(50357,3687,6,'Music'),(50357,3687,6,'Sound Designer'),(50357,6045,7,'Production Design'),(50357,23430,3,'Producer'),(50357,23545,3,'Casting'),(50357,40608,9,'Post Production Supervisor'),(50357,23811,3,'Casting'),(50357,27226,5,'Editor'),(50357,113194,9,'Stunt Coordinator'),(50357,59426,3,'Casting'),(50357,63557,7,'Set Decoration'),(50357,53115,8,'Costume Design'),(50357,77123,2,'Director'),(50357,89545,9,'Dialect Coach'),(50357,112470,9,'Dialect Coach'),(50357,129945,4,'Screenplay'),(50357,197930,9,'Stunt Coordinator'),(50357,229837,6,'Sound Re-Recording Mixer'),(50357,229839,6,'Sound Re-Recording Mixer'),(50357,229893,6,'Sound Re-Recording Mixer'),(50357,931976,6,'Sound Re-Recording Mixer'),(50357,972989,3,'Producer'),(50357,1011188,3,'Casting'),(50357,1077782,6,'Foley'),(50357,1099146,6,'Music Editor'),(50357,1126235,1,'Director of Photography'),(50357,1194380,8,'Costume Design'),(50357,1235397,9,'Stunt Coordinator'),(50357,1282778,3,'Production Manager'),(50357,1329480,7,'Art Direction'),(50357,1329481,7,'Art Direction'),(50357,1329482,7,'Set Decoration'),(50357,1329483,8,'Costume Design'),(50357,1352969,6,'Supervising Sound Editor'),(50357,1352969,6,'Sound Designer'),(50357,1377412,9,'Property Master'),(50357,1387183,5,'Dialogue Editor'),(50357,1394876,10,'Visual Effects Supervisor'),(50357,1394985,9,'Chef'),(50357,1396343,1,'Camera Operator'),(50357,1400389,9,'Scenic Artist'),(50357,1400390,7,'Construction Coordinator'),(50357,1400391,7,'Sculptor'),(50357,1400392,7,'Sculptor'),(50357,1400393,7,'Sculptor'),(50357,1400394,7,'Assistant Art Director'),(50357,1400398,9,'Sound Recordist'),(50357,1400399,6,'Foley'),(50357,1400400,10,'Visual Effects Producer'),(50357,1400401,10,'Visual Effects Producer'),(50357,1400402,9,'Visual Effects Editor'),(50357,1400403,10,'Visual Effects Supervisor'),(50357,1400405,10,'Visual Effects Supervisor'),(50357,1400406,11,'Gaffer'),(50357,1400407,1,'Still Photographer'),(50357,1400408,1,'Still Photographer'),(50357,1400409,1,'Still Photographer'),(50357,1400410,11,'Best Boy Electric'),(50357,1400411,11,'Best Boy Electric'),(50357,1400412,11,'Best Boy Electric'),(50357,1400413,8,'Set Costumer'),(50357,1400414,5,'Digital Intermediate'),(50357,1400415,6,'Music Editor'),(50357,1400417,9,'Transportation Coordinator'),(50357,1400419,2,'Script Supervisor'),(50357,1400421,2,'Script Supervisor'),(50357,1400423,9,'Chef'),(50357,1400424,9,'Chef'),(50357,1400425,2,'Script Supervisor'),(50357,1400427,9,'Chef'),(50357,1400435,3,'Location Manager'),(50357,1400436,9,'Post Production Supervisor'),(192141,7229,6,'Original Music Composer'),(192141,15222,7,'Production Design'),(192141,53648,3,'Casting'),(192141,60864,3,'Producer'),(192141,61119,3,'Executive Producer'),(192141,65217,8,'Costume Design'),(192141,66726,3,'Producer'),(192141,66727,3,'Executive Producer'),(192141,76481,3,'Co-Producer'),(192141,77147,2,'Director'),(192141,77147,4,'Writer'),(192141,142520,3,'Producer'),(192141,142520,4,'Writer'),(192141,965383,5,'Editor'),(192141,1010751,6,'Sound Re-Recording Mixer'),(192141,1014937,6,'Original Music Composer'),(192141,1077782,6,'Foley'),(192141,1127092,3,'Executive Producer'),(192141,1272269,1,'Still Photographer'),(192141,1272269,2,'Script Supervisor'),(192141,1290458,9,'Stunts'),(192141,1340739,6,'Foley'),(192141,1344831,6,'Foley'),(192141,1371561,1,'Director of Photography'),(192141,1377293,6,'Sound Designer'),(192141,1395180,3,'Co-Producer'),(192141,1395709,6,'Sound Re-Recording Mixer'),(192141,1433199,8,'Makeup Artist'),(192141,1445867,8,'Hairstylist'),(192141,1447379,10,'Visual Effects Supervisor'),(192141,1469288,3,'Casting'),(192141,1511086,6,'Supervising Sound Editor'),(192141,1530538,7,'Art Direction'),(192141,1540351,1,'Camera Operator'),(192141,1540899,8,'Makeup Artist'),(192141,1559352,7,'Art Department Coordinator'),(192141,1559353,7,'Construction Coordinator'),(192141,1559354,10,'Special Effects Supervisor'),(192141,1559355,10,'Visual Effects Coordinator'),(192141,1559356,10,'Visual Effects Coordinator'),(192141,1559357,10,'Visual Effects Producer'),(192141,1559358,10,'Visual Effects Producer'),(192141,1559359,8,'Hairstylist'),(192141,1559360,6,'Sound Effects Editor'),(192141,1871555,9,'Stunts'),(351819,9562,4,'Writer'),(351819,56908,4,'Writer'),(351819,188534,4,'Novel'),(351819,1110102,2,'Director'),(378200,62116,2,'Director'),(378200,62116,9,'Documentation & Support'),(378200,95458,4,'Writer'),(378200,1569971,4,'Writer'),(378200,1569972,4,'Screenplay'),(78394,111086,3,'Producer'),(78394,583893,2,'Director'),(78394,583893,4,'Writer'),(78394,583894,2,'Director'),(78394,583894,3,'Producer'),(78394,583894,4,'Writer'),(78394,1320184,5,'Editor'),(78394,1321171,3,'Producer'),(78394,1321192,1,'Director of Photography'),(78394,1360175,6,'Original Music Composer'),(78394,1472974,3,'Line Producer'),(78394,1472975,7,'Production Design'),(46332,19112,3,'Producer'),(46332,50539,1,'Director of Photography'),(46332,72320,2,'Director'),(46332,72320,4,'Writer'),(46332,74117,3,'Producer'),(343795,22119,1,'Director of Photography'),(343795,41887,4,'Screenplay'),(343795,41887,2,'Director'),(45658,580,5,'Editor'),(45658,14609,7,'Production Design'),(45658,10413,4,'Short Story'),(45658,36623,7,'Set Decoration'),(45658,42632,1,'Director of Photography'),(45658,45841,3,'Casting'),(45658,50772,6,'Original Music Composer'),(45658,133406,2,'Director'),(45658,133406,4,'Screenplay'),(45658,142152,8,'Makeup Department Head'),(45658,224387,3,'Casting'),(45658,963284,7,'Art Direction'),(45658,1095093,8,'Hair Department Head'),(45658,1333756,8,'Key Hair Stylist'),(45658,1344831,6,'Foley'),(45658,1376489,1,'Still Photographer'),(45658,1459189,8,'Makeup Artist'),(45658,1521450,2,'First Assistant Director'),(45658,1551839,6,'Sound Mixer'),(45658,1654970,9,'Stunt Coordinator'),(45658,1732800,8,'Key Makeup Artist'),(45658,1732801,2,'Script Supervisor'),(36351,1035,2,'Director'),(36351,1035,4,'Writer'),(36351,3986,3,'Executive Producer'),(36351,6345,1,'Director of Photography'),(36351,23226,3,'Producer'),(36351,47776,5,'Editor'),(36351,146522,3,'Producer'),(36351,1061552,6,'Music'),(245916,5378,3,'Producer'),(245916,17604,3,'Producer'),(245916,19282,3,'Producer'),(245916,54926,9,'Cinematography'),(245916,69077,6,'Music'),(245916,79665,3,'Producer'),(245916,84931,2,'Director'),(245916,1192754,4,'Screenplay'),(245916,1539947,3,'Executive In Charge Of Production'),(313922,2952,3,'Casting'),(313922,20487,3,'Producer'),(313922,30065,8,'Makeup Artist'),(313922,47099,3,'Producer'),(313922,74655,2,'Director'),(313922,74655,4,'Writer'),(313922,90280,7,'Production Design'),(313922,209513,3,'Co-Producer'),(313922,1010024,1,'Director of Photography'),(313922,1070314,7,'Set Decoration'),(313922,1076157,10,'Visual Effects Producer'),(313922,1102524,3,'Executive Producer'),(313922,1149911,5,'Editor'),(313922,1189828,7,'Art Direction'),(313922,1198921,11,'Gaffer'),(313922,1315941,6,'Original Music Composer'),(313922,1315942,6,'Original Music Composer'),(313922,1318192,3,'Casting Associate'),(313922,1358075,8,'Makeup Artist'),(313922,1383288,6,'ADR & Dubbing'),(313922,1383288,5,'Dialogue Editor'),(313922,1396755,5,'Assistant Editor'),(313922,1401604,8,'Wigmaker'),(313922,1402071,6,'Sound Re-Recording Mixer'),(313922,1433466,7,'Art Department Coordinator'),(313922,1460838,3,'Executive Producer'),(313922,1470526,7,'Construction Coordinator'),(313922,1476167,3,'Casting Associate'),(313922,1493100,3,'Producer'),(313922,1525925,9,'Makeup Effects'),(313922,1527588,10,'Visual Effects Supervisor'),(313922,1582569,6,'Sound Designer'),(313922,1582569,6,'Supervising Sound Editor'),(313922,1603333,6,'Music Editor'),(313922,1616391,6,'Music Supervisor'),(313922,1616450,8,'Costume Design'),(313922,1616451,2,'Script Supervisor'),(313922,1616452,1,'Camera Operator'),(313922,1616453,1,'Steadicam Operator'),(313922,1616454,11,'Rigging Gaffer'),(313922,1616455,11,'Rigging Grip'),(313922,1616456,11,'Rigging Grip'),(313922,1616457,1,'First Assistant Camera'),(313922,1616458,1,'First Assistant Camera'),(313922,1616460,9,'Special Effects Coordinator'),(313922,1616467,10,'Visual Effects Supervisor'),(313922,1616468,6,'Foley'),(313922,1616469,8,'Hair Department Head'),(313922,1616470,8,'Key Hair Stylist'),(313922,1616471,8,'Makeup Department Head'),(313922,1616472,9,'Makeup Effects'),(313922,1616473,5,'Digital Intermediate'),(313922,1642953,3,'Co-Producer'),(313922,1642954,3,'Executive Producer'),(199933,434,3,'Casting'),(199933,436,3,'Casting'),(199933,6881,8,'Costume Design'),(199933,15325,5,'Editor'),(199933,42119,1,'Director of Photography'),(199933,43609,6,'Music'),(199933,70818,3,'Producer'),(199933,91784,4,'Co-Writer'),(199933,109405,4,'Novel'),(199933,970836,3,'Casting Associate'),(199933,996331,3,'Producer'),(199933,1098665,4,'Co-Writer'),(199933,1343882,2,'Director'),(38428,37242,5,'Editor'),(38428,72118,3,'Producer'),(38428,120426,2,'Director'),(38428,120426,4,'Writer'),(38428,120427,6,'Music'),(38428,120428,9,'Cinematography'),(39269,2778,2,'Director'),(39269,2778,4,'Writer'),(39269,8955,3,'Executive Producer'),(39269,9823,7,'Set Decoration'),(39269,16550,8,'Hairstylist'),(39269,16550,8,'Makeup Artist'),(39269,32772,7,'Production Design'),(39269,1121654,2,'Assistant Director'),(39269,1377622,1,'Director of Photography'),(39269,1379159,6,'Original Music Composer'),(39269,1394644,3,'Producer'),(39269,1397151,3,'Casting'),(39269,1561092,4,'Writer'),(39269,1561092,3,'Producer'),(39269,1561093,4,'Writer'),(39269,1561094,4,'Writer'),(39269,1561094,3,'Producer'),(39269,1561095,3,'Associate Producer'),(39269,1561096,5,'Editor'),(39269,1561097,7,'Art Direction'),(46838,6223,3,'Producer'),(46838,19541,3,'Executive Producer'),(46838,31906,1,'Director of Photography'),(46838,52479,2,'Director'),(46838,52479,4,'Writer'),(46838,57366,3,'Executive Producer'),(46838,59939,6,'Original Music Composer'),(46838,137482,4,'Writer'),(46838,137482,3,'Producer'),(46838,455575,5,'Editor'),(46838,936268,3,'Producer'),(46838,936269,3,'Producer'),(51384,989831,2,'Director'),(51384,1819100,3,'Producer'),(56930,30294,4,'Screenplay'),(56930,95723,2,'Director'),(56930,100914,4,'Screenplay'),(56930,1193825,4,'Novel'),(41730,17598,9,'Cinematography'),(41730,66800,2,'Director'),(41730,66800,4,'Writer'),(298312,5669,3,'Casting'),(298312,11614,2,'Director'),(298312,11614,3,'Producer'),(298312,11614,4,'Writer'),(298312,17677,7,'Production Design'),(298312,33678,1,'Director of Photography'),(298312,65243,3,'Producer'),(298312,84348,3,'Producer'),(298312,91069,4,'Storyboard'),(298312,582811,8,'Hairstylist'),(298312,885544,7,'Art Direction'),(298312,995456,3,'Executive Producer'),(298312,1121600,3,'Producer'),(298312,1190648,8,'Costume Design'),(298312,1297858,10,'Visual Effects Producer'),(298312,1366030,9,'Stunts'),(298312,1377245,9,'Compositors'),(298312,1401857,9,'Post Production Assistant'),(298312,1450333,3,'Production Supervisor'),(298312,1458401,9,'Stunts'),(298312,1458402,5,'Editor'),(298312,1458403,7,'Set Decoration'),(298312,1458404,9,'Post Production Supervisor'),(298312,1458405,9,'Compositors'),(298312,1458406,10,'Visual Effects Producer'),(298312,1458407,9,'Special Effects'),(71547,64314,8,'Costume Design'),(71547,568267,2,'Director'),(71547,568267,4,'Writer'),(71547,965663,7,'Set Decoration'),(71547,1335080,6,'Sound'),(71547,1617049,7,'Art Direction'),(57876,859,3,'Casting'),(57876,19863,7,'Production Design'),(57876,59522,3,'Executive Producer'),(57876,60457,7,'Set Decoration'),(57876,76055,7,'Art Direction'),(57876,84348,3,'Producer'),(57876,90591,2,'Director'),(57876,90591,4,'Writer'),(57876,90591,3,'Executive Producer'),(57876,995456,3,'Producer'),(57876,995456,3,'Executive Producer'),(57876,1030966,3,'Line Producer'),(57876,1096444,7,'Art Direction'),(57876,1125683,3,'Executive Producer'),(57876,1125685,3,'Line Producer'),(57876,1464945,5,'Editor'),(57876,1467332,3,'Co-Producer'),(57876,1467333,1,'Director of Photography'),(57876,1467334,5,'Editor'),(57876,1467337,8,'Costume Design'),(77495,54520,1,'Director of Photography'),(77495,54525,2,'Director'),(77495,54528,4,'Screenplay'),(77495,54528,3,'Executive Producer'),(77495,69872,3,'Co-Executive Producer'),(77495,967367,3,'Casting'),(77495,1018976,6,'Original Music Composer'),(77495,1143013,5,'Editor'),(77495,1143014,7,'Production Design'),(77495,1143015,8,'Costume Design'),(77495,1304421,3,'Associate Producer'),(244403,3905,2,'Director'),(244403,3905,4,'Writer'),(244403,20568,5,'Editor'),(244403,954441,3,'Producer'),(244403,983720,3,'Producer'),(244403,1031598,1,'Director of Photography'),(244403,1279651,4,'Writer'),(244403,1279652,4,'Writer'),(244403,1449168,3,'Producer'),(292481,955442,4,'Screenplay'),(292481,1229003,3,'Production Supervisor'),(292481,1365766,2,'Director'),(292481,1447499,7,'Art Department Manager'),(340816,29380,5,'Editor'),(340816,29380,3,'Associate Producer'),(340816,29940,3,'Casting'),(340816,44127,3,'Producer'),(340816,61860,3,'Casting'),(340816,63491,3,'Co-Producer'),(340816,86164,2,'Director'),(340816,86164,3,'Producer'),(340816,86164,4,'Writer'),(340816,554888,6,'Sound Effects Editor'),(340816,956271,3,'Casting'),(340816,1029829,3,'Producer'),(340816,1085738,1,'Director of Photography'),(340816,1135297,10,'Visual Effects Supervisor'),(340816,1191535,6,'Original Music Composer'),(340816,1191535,6,'Music Supervisor'),(340816,1264748,4,'Writer'),(340816,1271611,7,'Set Decoration'),(340816,1344831,6,'Foley'),(340816,1347547,3,'Producer'),(340816,1350254,9,'Stunt Coordinator'),(340816,1350262,2,'Script Supervisor'),(340816,1372424,5,'Dialogue Editor'),(340816,1412693,7,'Production Design'),(340816,1429361,1,'Steadicam Operator'),(340816,1459226,11,'Gaffer'),(340816,1544711,5,'Editor'),(340816,1544712,10,'Special Effects Supervisor'),(340816,1544713,10,'Visual Effects Producer'),(340816,1544715,6,'Music Editor'),(340816,1544716,6,'Orchestrator'),(340816,1546536,3,'Line Producer'),(78814,11776,5,'Editor'),(78814,21640,7,'Production Design'),(78814,30478,4,'Teleplay'),(78814,41654,3,'Casting'),(78814,60045,2,'Director'),(78814,60052,1,'Director of Photography'),(78814,71829,6,'Original Music Composer'),(78814,935563,3,'Producer'),(78814,946129,3,'Producer'),(78814,1031469,9,'Stunt Coordinator'),(78814,1099632,8,'Key Makeup Artist'),(78814,1129907,2,'Script Supervisor'),(78814,1317391,8,'Costume Supervisor'),(78814,1350236,6,'ADR Editor'),(78814,1350237,6,'Supervising Sound Editor'),(78814,1382430,4,'Novel'),(78814,1382432,4,'Novel'),(78814,1409545,6,'Sound Effects Editor'),(78814,1409781,1,'Still Photographer'),(78814,1540361,8,'Makeup Department Head'),(78814,1542741,5,'Dialogue Editor'),(78814,1545930,7,'Set Decoration'),(78814,1801526,2,'First Assistant Director'),(78814,1855099,8,'Costume Design'),(78814,1855100,7,'Property Master'),(78814,1855101,6,'Foley Editor'),(78814,1855103,6,'Music Editor'),(297596,1035,2,'Director'),(297596,1035,4,'Screenplay'),(297596,19044,5,'Editor'),(297596,33142,1,'Director of Photography'),(297596,33147,9,'Property Master'),(297596,60591,3,'Casting'),(297596,61902,7,'Art Direction'),(297596,71882,3,'Producer'),(297596,119554,8,'Makeup Artist'),(297596,119556,8,'Hairstylist'),(297596,544355,6,'Original Music Composer'),(297596,1069078,7,'Production Design'),(297596,1099266,7,'Art Direction'),(297596,1099544,8,'Costume Design'),(297596,1110992,9,'Stunt Coordinator'),(297596,1193192,3,'Casting'),(297596,1277050,3,'Producer'),(297596,1325841,1,'Camera Operator'),(297596,1335147,6,'Sound Designer'),(297596,1338480,6,'Foley'),(297596,1338482,6,'Sound Effects Editor'),(297596,1346953,8,'Set Costumer'),(297596,1357335,7,'Construction Coordinator'),(297596,1357342,9,'Stunt Coordinator'),(297596,1357345,8,'Set Costumer'),(297596,1357346,8,'Set Costumer'),(297596,1357350,1,'Steadicam Operator'),(297596,1357352,11,'Gaffer'),(297596,1369374,6,'Sound Effects Editor'),(297596,1369376,6,'ADR & Dubbing'),(297596,1369376,5,'Dialogue Editor'),(297596,1382441,3,'Producer'),(297596,1382442,3,'Producer'),(297596,1401196,1,'Still Photographer'),(297596,1409545,6,'Sound Effects Editor'),(297596,1427457,8,'Makeup Artist'),(297596,1434541,7,'Set Decoration'),(297596,1434542,9,'Special Effects'),(297596,1434543,1,'Camera Operator'),(297596,1434544,5,'Digital Intermediate'),(297596,1434545,9,'Transportation Coordinator'),(297596,1434546,2,'Script Supervisor'),(297596,1434547,2,'Script Supervisor'),(297596,1434548,3,'Location Manager'),(297596,1434769,8,'Costume Supervisor'),(297596,1434773,2,'Script Supervisor'),(297596,1434775,8,'Costume Supervisor'),(297596,1434776,10,'Visual Effects Producer'),(299552,75578,3,'Casting'),(299552,1311704,6,'Music'),(299552,1404799,2,'Director'),(299552,1404799,5,'Editor'),(299552,1404799,4,'Writer'),(299552,1404800,3,'Producer'),(299552,1404800,4,'Writer'),(299552,1469073,1,'Director of Photography'),(299552,1469074,7,'Production Design'),(299552,1469075,7,'Art Direction'),(299552,1469076,8,'Costume Design'),(299552,1469077,8,'Makeup Department Head'),(299552,1469078,2,'Script Supervisor'),(113406,5914,3,'Casting'),(113406,7034,1,'Director of Photography'),(113406,7437,5,'Editor'),(113406,12966,4,'Story'),(113406,17767,6,'Music'),(113406,22013,5,'Editor'),(113406,40385,2,'Director'),(113406,39110,7,'Set Decoration'),(113406,85142,4,'Screenplay'),(113406,85142,3,'Producer'),(113406,85142,4,'Story'),(113406,589854,8,'Makeup Artist'),(113406,1024910,3,'Casting'),(113406,1031770,8,'Costume Design'),(113406,1046590,7,'Production Design'),(113406,1296822,2,'Script Supervisor'),(113406,1338146,8,'Makeup Department Head'),(113406,1520696,4,'Screenplay'),(113406,1520697,4,'Screenplay'),(113406,1520698,3,'Producer'),(113406,1520701,8,'Hairstylist'),(290825,19303,2,'Director'),(290825,19303,5,'Editor'),(290825,19303,4,'Writer'),(290825,23658,3,'Producer'),(290825,960350,1,'Director of Photography'),(290825,962464,7,'Production Design'),(290825,996220,9,'Stunts'),(290825,1113050,6,'Original Music Composer'),(290825,1161120,3,'Producer'),(290825,1331168,3,'Producer'),(290825,1444286,8,'Costume Design'),(290825,1534675,2,'Script Supervisor'),(290825,1728355,1,'Camera Operator'),(290825,1728356,1,'Camera Operator'),(361159,46091,3,'Producer'),(361159,56353,1,'Director of Photography'),(361159,60401,3,'Executive Producer'),(361159,85965,5,'Editor'),(361159,150955,3,'Producer'),(361159,208236,4,'Screenplay'),(361159,928351,7,'Production Design'),(361159,1031200,3,'Executive Producer'),(361159,1314062,3,'Casting'),(361159,1349963,3,'Co-Producer'),(361159,1393858,5,'Editor'),(361159,1393858,3,'Executive Producer'),(361159,1393858,2,'Director'),(361159,1467373,8,'Costume Design'),(361159,1511810,3,'Executive Producer'),(361159,1513919,6,'Original Music Composer'),(361159,1513920,3,'Executive Producer'),(361159,1513920,4,'Story'),(361159,1513921,3,'Executive Producer'),(361159,1513922,3,'Producer'),(361159,1513923,3,'Producer'),(77949,2635,3,'Casting'),(77949,16683,6,'Sound Designer'),(77949,34194,1,'Steadicam Operator'),(77949,110833,4,'Screenplay'),(77949,119117,8,'Costume Design'),(77949,125261,5,'Editor'),(77949,582918,4,'Screenplay'),(77949,582918,2,'Director'),(77949,582922,6,'Original Music Composer'),(77949,582924,1,'Director of Photography'),(77949,582928,7,'Production Design'),(77949,582929,7,'Set Decoration'),(77949,1079085,6,'Foley'),(77949,1087547,7,'Supervising Art Director'),(77949,1181554,1,'Still Photographer'),(77949,1339652,9,'Stunt Coordinator'),(77949,1380898,6,'Foley'),(77949,1400804,3,'Location Manager'),(77949,1402090,7,'Art Direction'),(77949,1402091,3,'Production Manager'),(77949,1402092,9,'Property Master'),(77949,1402093,9,'Special Effects'),(77949,1402094,10,'Visual Effects Supervisor'),(77949,1402096,1,'Steadicam Operator'),(77949,1402097,1,'Steadicam Operator'),(77949,1402098,1,'Helicopter Camera'),(77949,1402099,5,'Digital Intermediate'),(77949,1402100,9,'Unit Publicist'),(77949,1402101,3,'Location Manager'),(77949,1402102,3,'Publicist'),(77949,1402103,2,'Script Supervisor'),(64720,16398,3,'Executive Producer'),(64720,71872,2,'Director'),(64720,71872,4,'Screenplay'),(64720,71880,1,'Director of Photography'),(64720,79415,3,'Producer'),(64720,585679,3,'Casting'),(64720,928074,7,'Production Design'),(64720,928336,5,'Editor'),(64720,937895,6,'Music'),(64720,937957,3,'Producer'),(64720,984533,7,'Set Decoration'),(64720,996410,7,'Art Direction'),(64720,1321356,8,'Costume Design'),(49365,8523,1,'Director of Photography'),(49365,583023,4,'Writer'),(49365,583023,2,'Director'),(49365,583023,6,'Original Music Composer'),(300706,35595,2,'Director'),(300706,35595,4,'Writer'),(77987,8377,6,'Original Music Composer'),(77987,3081,3,'Casting'),(77987,5018,1,'Director of Photography'),(77987,21183,2,'Director'),(77987,21183,4,'Writer'),(77987,119105,3,'Producer'),(77987,966286,5,'Editor'),(40185,123912,2,'Director'),(40185,123912,4,'Writer'),(40185,123913,2,'Director'),(40185,123913,4,'Writer'),(68202,84437,2,'Director'),(68202,84437,4,'Adaptation'),(68202,550535,4,'Novel'),(50848,55818,8,'Costume Design'),(50848,72940,3,'Casting'),(50848,225887,2,'Director'),(50848,225887,4,'Writer'),(50848,523463,4,'Writer'),(50848,1018986,1,'Director of Photography'),(50848,1067074,5,'Editor'),(50848,1152354,7,'Production Design'),(166624,77125,4,'Writer'),(166624,1148217,2,'Director'),(166624,1148217,4,'Writer'),(65749,7202,1,'Director of Photography'),(65749,9217,6,'Original Music Composer'),(65749,96369,2,'Director'),(65749,96369,4,'Writer'),(252680,26996,3,'Executive Producer'),(252680,47932,3,'Executive Producer'),(252680,66532,7,'Production Design'),(252680,92534,3,'Casting'),(252680,116431,3,'Producer'),(252680,156045,3,'Executive Producer'),(252680,235548,3,'Producer'),(252680,590281,4,'Writer'),(252680,844266,2,'Director'),(252680,844266,3,'Producer'),(252680,844266,4,'Writer'),(252680,909318,2,'Director'),(252680,909318,5,'Editor'),(252680,909318,3,'Producer'),(252680,1027620,5,'Editor'),(252680,1031536,6,'Original Music Composer'),(252680,1031536,6,'Music'),(252680,1085777,3,'Producer'),(252680,1085785,3,'Producer'),(252680,1116038,3,'Producer'),(252680,1152735,6,'Original Music Composer'),(252680,1152735,6,'Music'),(252680,1152737,3,'Producer'),(252680,1288071,1,'Director of Photography'),(252680,1332175,8,'Costume Design'),(252680,1547450,6,'Music Supervisor'),(252680,1661906,3,'Associate Producer'),(66607,545086,2,'Director'),(39800,6345,1,'Director of Photography'),(39800,64314,8,'Costume Design'),(39800,66605,2,'Director'),(39800,66605,4,'Writer'),(39800,1607207,3,'Casting'),(62116,24481,2,'Director'),(62116,24481,4,'Writer'),(68818,474,3,'Casting'),(68818,19841,2,'Director'),(68818,20693,1,'Director of Photography'),(68818,28500,5,'Editor'),(68818,54131,3,'Producer'),(68818,67265,6,'Original Music Composer'),(68818,1082714,4,'Writer'),(68818,1117843,7,'Production Design'),(68818,1128094,3,'Producer'),(68818,1173687,9,'Stunt Coordinator'),(68818,1334537,8,'Makeup Designer'),(68818,1400474,6,'Sound Re-Recording Mixer'),(68818,1400476,6,'Dolby Consultant'),(68818,1405361,6,'Foley Editor'),(68818,1409820,8,'Hair Designer'),(68818,1434952,6,'Sound Designer'),(68818,1466011,7,'Set Decoration'),(68818,1466012,8,'Costume Design'),(68818,1466013,8,'Costume Supervisor'),(68818,1466014,8,'Costume Supervisor'),(68818,1466015,2,'Script Supervisor'),(68818,1526013,10,'Visual Effects Supervisor'),(68818,1580204,1,'First Assistant Camera'),(68818,1583565,8,'Seamstress'),(68818,1583566,8,'Seamstress'),(68818,1583567,3,'Casting'),(68818,1583568,3,'Casting'),(68818,1583569,11,'Gaffer'),(68818,1583570,1,'Steadicam Operator'),(68818,1583571,10,'Visual Effects Supervisor'),(68818,1583572,10,'Visual Effects Supervisor'),(68818,1583573,5,'Dialogue Editor'),(68818,1583574,6,'Foley'),(68818,1583575,7,'Art Department Coordinator'),(68818,1583576,7,'Construction Coordinator'),(68818,1583577,9,'Carpenter'),(68818,1583578,9,'Property Master'),(68818,1864472,2,'Assistant Director'),(68818,1864473,6,'Boom Operator'),(68818,1864475,8,'Tailor'),(68818,1864474,8,'Tailor'),(68818,1864476,3,'Production Coordinator'),(36419,971,5,'Editor'),(36419,2214,6,'Music'),(36419,4438,9,'Stunt Coordinator'),(36419,15817,3,'Producer'),(36419,19464,1,'Camera Operator'),(36419,19464,1,'Director of Photography'),(36419,20569,7,'Production Design'),(36419,29941,3,'Casting'),(36419,53277,3,'Producer'),(36419,52682,8,'Costume Design'),(36419,92376,6,'Foley'),(36419,100772,3,'Producer'),(36419,129715,2,'Director'),(36419,129715,4,'Writer'),(36419,965320,7,'Art Direction'),(36419,968868,4,'Writer'),(36419,968869,4,'Writer'),(36419,1031621,6,'Supervising Sound Editor'),(36419,1031621,6,'Sound Re-Recording Mixer'),(36419,1043368,9,'Special Effects Coordinator'),(36419,1070138,8,'Makeup Department Head'),(36419,1078304,5,'Digital Intermediate'),(36419,1299150,9,'Scenic Artist'),(36419,1321374,8,'Costume Supervisor'),(36419,1328383,7,'Set Decoration'),(36419,1337464,6,'Sound Re-Recording Mixer'),(36419,1395669,9,'Scenic Artist'),(36419,1395670,9,'Scenic Artist'),(36419,1395671,9,'Scenic Artist'),(36419,1395672,9,'Scenic Artist'),(36419,1395673,9,'Scenic Artist'),(36419,1395674,9,'Scenic Artist'),(36419,1395675,7,'Art Department Coordinator'),(36419,1395676,7,'Leadman'),(36419,1395677,7,'Construction Coordinator'),(36419,1395678,7,'Assistant Art Director'),(36419,1395679,10,'Visual Effects Producer'),(36419,1395680,10,'Visual Effects Producer'),(36419,1395681,10,'Visual Effects Producer'),(36419,1395682,1,'Still Photographer'),(36419,1395683,11,'Gaffer'),(36419,1395684,1,'Camera Operator'),(36419,1395685,6,'Music Editor'),(36419,1395686,9,'Chef'),(36419,1395687,2,'Script Supervisor'),(281730,1352997,2,'Director'),(281730,1352998,4,'Writer'),(362105,109984,4,'Writer'),(362105,109985,4,'Writer'),(362105,118463,2,'Director'),(362105,1514566,9,'Cinematography'),(362105,1645416,3,'Production Office Coordinator'),(375290,35735,3,'Producer'),(375290,83595,3,'Producer'),(375290,87296,2,'Director'),(375290,87296,4,'Story'),(375290,142632,4,'Writer'),(375290,150486,4,'Dialogue'),(375290,150486,4,'Writer'),(375290,1118109,5,'Editor'),(375290,1323149,3,'Producer'),(375290,1556434,4,'Musical'),(375290,1556435,9,'Cinematography'),(375290,1557508,3,'Producer'),(375290,1662480,6,'Music'),(270938,5917,2,'Director'),(270938,20639,3,'Producer'),(270938,40269,5,'Editor'),(270938,42504,3,'Line Producer'),(270938,101022,6,'Original Music Composer'),(270938,935296,1,'Director of Photography'),(270938,965663,7,'Production Design'),(270938,967507,3,'Casting'),(270938,1328122,7,'Set Decoration'),(270938,1350642,4,'Writer'),(270938,1350644,3,'Producer'),(116613,8999,4,'Writer'),(116613,32263,7,'Production Design'),(116613,41530,2,'Director'),(116613,41530,4,'Writer'),(116613,41532,3,'Producer'),(116613,41537,2,'First Assistant Director'),(116613,41538,3,'Producer'),(116613,41542,8,'Costume Design'),(116613,47205,3,'Casting'),(116613,56917,5,'Editor'),(116613,60322,3,'Producer'),(116613,62185,5,'First Assistant Editor'),(116613,80689,3,'Producer'),(116613,231582,6,'Sound Effects Editor'),(116613,929145,6,'Music'),(116613,962751,7,'Art Direction'),(116613,1057356,9,'Cinematography'),(116613,1072686,6,'Sound Designer'),(116613,1168604,3,'Producer'),(116613,1264547,10,'Visual Effects Supervisor'),(116613,1321249,7,'Set Decoration'),(116613,1334764,6,'Sound Effects Editor'),(116613,1335162,6,'Sound Recordist'),(116613,1354919,9,'Prop Maker'),(116613,1397797,6,'Foley Editor'),(116613,1397798,6,'Dialogue Editor'),(116613,1402093,10,'Pyrotechnic Supervisor'),(116613,1404869,11,'Gaffer'),(116613,1441565,9,'Stunt Coordinator'),(116613,1553484,2,'Script Supervisor'),(116613,1565659,10,'Special Effects Supervisor'),(116613,1575351,8,'Key Costumer'),(116613,1578004,1,'Steadicam Operator'),(116613,1610731,6,'Music Supervisor'),(116613,1703626,8,'Hair Designer'),(116613,1703626,8,'Makeup Designer'),(116613,1736382,1,'Still Photographer'),(116613,1790844,9,'Pyrotechnician'),(116613,1891307,7,'Property Master'),(116613,1891308,6,'Boom Operator'),(116613,1891315,9,'Pyrotechnician'),(116613,1891322,1,'Still Photographer'),(116613,1891323,1,'Camera Operator'),(116613,1891324,1,'Key Grip'),(116613,1891325,6,'Music Editor'),(116613,1891327,3,'Production Coordinator'),(116613,1891328,9,'Armorer'),(116613,1891329,4,'Script Editor'),(47452,16333,4,'Novel'),(47452,228797,2,'Director'),(47452,228797,4,'Writer'),(287424,1100,3,'Producer'),(287424,3498,3,'Producer'),(287424,18186,3,'Producer'),(287424,55079,1,'Director of Photography'),(287424,62238,3,'Executive Producer'),(287424,65814,3,'Executive Producer'),(287424,68172,7,'Art Direction'),(287424,94047,3,'Executive Producer'),(287424,132209,3,'Executive Producer'),(287424,937895,6,'Original Music Composer'),(287424,1002564,5,'Digital Intermediate'),(287424,1017017,8,'Costume Design'),(287424,1024836,3,'Executive Producer'),(287424,1055498,5,'Editor'),(287424,1121974,3,'Associate Producer'),(287424,1176140,3,'Casting'),(287424,1194884,9,'Second Unit Cinematographer'),(287424,1205705,3,'Production Supervisor'),(287424,1253678,7,'Set Decoration'),(287424,1265230,9,'Makeup Effects'),(287424,1304298,8,'Makeup Artist'),(287424,1319523,7,'Production Design'),(287424,1319524,7,'Assistant Art Director'),(287424,1335147,6,'Sound Effects Editor'),(287424,1338480,6,'Foley'),(287424,1338484,6,'Sound Designer'),(287424,1340090,9,'Makeup Effects'),(287424,1350236,5,'Dialogue Editor'),(287424,1350237,6,'Sound Effects Editor'),(287424,1354171,2,'Director'),(287424,1367135,11,'Gaffer'),(287424,1369374,6,'Foley'),(287424,1371037,3,'Producer'),(287424,1391642,3,'Producer'),(287424,1393375,7,'Leadman'),(287424,1393860,11,'Gaffer'),(287424,1401757,8,'Key Hair Stylist'),(287424,1402708,8,'Key Hair Stylist'),(287424,1404190,8,'Makeup Department Head'),(287424,1404197,2,'Script Supervisor'),(287424,1406292,8,'Set Costumer'),(287424,1407738,1,'Camera Operator'),(287424,1414088,9,'Makeup Effects'),(287424,1415330,8,'Hair Department Head'),(287424,1418349,8,'Makeup Artist'),(287424,1418405,8,'Costume Supervisor'),(287424,1418414,3,'Associate Producer'),(287424,1425326,9,'Makeup Effects'),(287424,1428906,9,'Visual Effects Editor'),(287424,1453641,4,'Writer'),(287424,1453641,3,'Executive Producer'),(287424,1463775,1,'First Assistant Camera'),(287424,1465052,3,'Producer'),(287424,1465055,3,'Producer'),(287424,1465058,3,'Executive Producer'),(287424,1465059,3,'Executive Producer'),(287424,1465060,3,'Producer'),(287424,1465061,3,'Executive Producer'),(287424,1495179,6,'Sound Effects Editor'),(287424,1533532,6,'Music Supervisor'),(287424,1537179,1,'Still Photographer'),(287424,1539756,7,'Construction Coordinator'),(287424,1539757,9,'Special Effects Coordinator'),(287424,1539758,10,'Visual Effects Coordinator'),(287424,1539759,10,'Visual Effects Coordinator'),(287424,1539760,10,'Visual Effects Coordinator'),(287424,1539761,10,'Visual Effects Producer'),(287424,1539762,10,'Visual Effects Supervisor'),(287424,1539763,10,'Visual Effects Supervisor'),(287424,1539764,10,'Visual Effects Supervisor'),(287424,1539765,1,'First Assistant Camera'),(287424,1539768,6,'Foley'),(165864,1149038,2,'Director'),(165864,1149041,4,'Writer'),(241251,13585,3,'Casting'),(241251,14712,6,'Music'),(241251,16866,3,'Producer'),(241251,19659,6,'Original Music Composer'),(241251,18878,2,'Director'),(241251,28635,3,'Producer'),(241251,52004,3,'Producer'),(241251,75376,8,'Hairstylist'),(241251,84348,3,'Producer'),(241251,126886,1,'Director of Photography'),(241251,1059586,8,'Makeup Artist'),(241251,1148632,7,'Set Decoration'),(241251,1276375,4,'Screenplay'),(241251,1324192,8,'Costume Design'),(241251,1328412,7,'Production Design'),(241251,1367666,5,'Dialogue Editor'),(241251,1378171,6,'Sound Re-Recording Mixer'),(241251,1378227,6,'Sound Re-Recording Mixer'),(241251,1407696,5,'Digital Intermediate'),(241251,1412452,6,'Supervising Sound Editor'),(241251,1417879,1,'Steadicam Operator'),(241251,1428927,2,'Script Supervisor'),(241251,1429252,5,'Editor'),(241251,1434563,9,'Visual Effects Editor'),(241251,1435644,9,'Special Effects Coordinator'),(241251,1461164,9,'Property Master'),(241251,1461166,7,'Art Department Coordinator'),(241251,1461167,7,'Art Department Assistant'),(241251,1461169,6,'First Assistant Sound Editor'),(241251,1461174,1,'Camera Operator'),(241251,1461175,1,'Camera Operator'),(241251,1461177,1,'Still Photographer'),(241251,1461178,9,'Second Unit Cinematographer'),(241251,1461179,11,'Gaffer'),(241251,1461181,8,'Costume Supervisor'),(241251,1461183,6,'Music Editor'),(241251,1461184,2,'Script Supervisor'),(40494,4341,4,'Writer'),(40494,12241,6,'Original Music Composer'),(40494,12720,1,'Director of Photography'),(40494,14568,3,'Producer'),(40494,15378,2,'Director'),(40494,29663,4,'Writer'),(40494,38247,4,'Adaptation'),(40494,69104,4,'Screenplay'),(40494,124084,4,'Novel'),(39781,1225,6,'Music'),(39781,5371,3,'Producer'),(39781,40277,4,'Screenplay'),(39781,46589,8,'Costume Design'),(39781,53277,3,'Producer'),(39781,53354,1,'Director of Photography'),(39781,65613,3,'Producer'),(39781,75699,2,'Director'),(39781,141298,3,'Producer'),(39781,141299,3,'Producer'),(39781,141301,7,'Production Design'),(39781,141303,5,'Editor'),(39781,1313359,3,'Producer'),(146203,136495,4,'Writer'),(146203,557179,2,'Director'),(146203,557179,4,'Writer'),(85350,564,2,'Director'),(85350,564,4,'Writer'),(85350,564,3,'Producer'),(85350,576,1,'Director of Photography'),(85350,580,5,'Editor'),(85350,580,3,'Co-Producer'),(85350,566,3,'Associate Producer'),(85350,3727,3,'Producer'),(85350,5913,3,'Casting'),(85350,6510,3,'Producer'),(85350,6511,3,'Associate Producer'),(85350,32235,1,'Director of Photography'),(85350,52161,6,'Music Supervisor'),(85350,54761,8,'Costume Design'),(85350,928336,5,'Digital Intermediate'),(85350,931948,3,'Producer'),(85350,959477,8,'Set Costumer'),(85350,1001361,3,'Co-Producer'),(85350,1001361,2,'Assistant Director'),(85350,1080454,7,'Production Design'),(85350,1355718,7,'Production Design'),(85350,1372211,9,'Stunts'),(85350,1397852,8,'Set Costumer'),(85350,1401262,9,'Stunts'),(85350,1415507,8,'Set Costumer'),(85350,1420147,8,'Hairstylist'),(85350,1528942,6,'Music Supervisor'),(85350,1628089,10,'Digital Compositors'),(47816,65134,2,'Director'),(47816,65134,4,'Writer'),(184345,9562,4,'Writer'),(184345,56908,4,'Writer'),(184345,1110102,2,'Director'),(48572,3965,3,'Casting'),(48572,6624,3,'Producer'),(48572,19303,4,'Screenplay'),(48572,19303,2,'Director'),(48572,19303,5,'Editor'),(48572,21405,1,'Director of Photography'),(48572,62586,7,'Set Decoration'),(48572,558225,8,'Costume Design'),(48572,962464,7,'Production Design'),(48572,986274,7,'Art Direction'),(48572,1034748,3,'Casting'),(89708,948,6,'Music'),(89708,48069,6,'Music'),(89708,68994,2,'Director'),(89708,68994,4,'Writer'),(89708,582625,6,'Music'),(89708,937749,3,'Producer'),(89708,937749,4,'Writer'),(64678,4438,9,'Stunt Coordinator'),(64678,15426,3,'Casting'),(64678,60110,8,'Costume Design'),(64678,119417,2,'Director'),(64678,119417,4,'Writer'),(64678,958228,7,'Production Design'),(64678,969958,3,'Producer'),(64678,995906,3,'Producer'),(64678,1031695,1,'Director of Photography'),(64678,1099499,6,'Music'),(64678,1333149,8,'Key Makeup Artist'),(64678,1516455,3,'Casting'),(64678,1516456,3,'Casting'),(64678,1619917,3,'Producer'),(64678,1831713,3,'Producer'),(64678,1831716,8,'Key Hair Stylist'),(309503,3965,3,'Casting'),(309503,6431,3,'Executive Producer'),(309503,16836,3,'Executive Producer'),(309503,17175,1,'Director of Photography'),(309503,17799,3,'Producer'),(309503,62705,6,'Original Music Composer'),(309503,114034,3,'Executive Producer'),(309503,143258,3,'Producer'),(309503,575700,2,'Script Supervisor'),(309503,990139,7,'Production Design'),(309503,1004171,5,'Editor'),(309503,1004171,3,'Producer'),(309503,1004171,4,'Writer'),(309503,1004172,2,'Director'),(309503,1004172,4,'Writer'),(309503,1014942,8,'Costume Design'),(309503,1034748,3,'Casting'),(309503,1116091,3,'Executive Producer'),(309503,1188277,3,'Producer'),(309503,1203779,5,'Editor'),(309503,1407345,3,'Line Producer'),(309503,1493973,3,'Casting'),(309503,1493998,3,'Producer'),(309503,1513880,3,'Co-Producer'),(309503,1513881,3,'Associate Producer'),(309503,1513882,3,'Executive Producer'),(309503,1513883,3,'Executive Producer'),(103328,27977,2,'Director'),(103328,27977,4,'Writer'),(103328,41021,3,'Producer'),(103328,50539,1,'Director of Photography'),(103328,1033714,3,'Producer'),(103328,1608062,7,'Production Design'),(157847,41680,8,'Costume Design'),(157847,41082,7,'Production Design'),(157847,45745,3,'Producer'),(157847,64141,2,'Director'),(157847,64141,3,'Producer'),(157847,72264,1,'Director of Photography'),(157847,92380,6,'Supervising Sound Editor'),(157847,958480,7,'Set Decoration'),(157847,999821,3,'Producer'),(157847,1006723,6,'Original Music Composer'),(157847,1023495,5,'Editor'),(157847,1128690,3,'Producer'),(157847,1190764,9,'Property Master'),(157847,1192773,4,'Screenplay'),(157847,1192774,4,'Novel'),(157847,1309224,3,'Casting'),(157847,1321356,8,'Costume Design'),(157847,1347740,9,'Sound Recordist'),(157847,1372202,3,'Casting'),(157847,1372203,8,'Makeup Department Head'),(157847,1372204,9,'Scenic Artist'),(157847,1372205,7,'Assistant Art Director'),(157847,1372206,7,'Leadman'),(157847,1372207,6,'Foley'),(157847,1372208,5,'Dialogue Editor'),(157847,1372209,9,'Special Effects Coordinator'),(157847,1372210,10,'Visual Effects Supervisor'),(157847,1372211,9,'Stunt Coordinator'),(157847,1372213,8,'Set Costumer'),(157847,1372214,9,'Transportation Captain'),(157847,1372215,2,'Script Supervisor'),(157847,1372216,3,'Location Manager'),(48309,4614,1,'Director of Photography'),(48309,16938,2,'Director'),(48309,19711,6,'Original Music Composer'),(48309,19707,3,'Executive Producer'),(48309,19713,4,'Screenplay'),(48309,28947,6,'Original Music Composer'),(48309,60411,5,'Editor'),(48309,64059,3,'Producer'),(48309,1123910,3,'Casting'),(242575,940807,4,'Screenplay'),(242575,940807,2,'Director'),(242575,940807,5,'Editor'),(242575,954804,5,'Editor'),(242575,1051964,9,'Cinematography'),(242575,1273170,5,'Editor'),(242575,1277705,6,'Sound Editor'),(242575,1277706,6,'Sound Designer'),(242575,1277707,6,'Sound mixer'),(242575,1277708,6,'Sound mixer'),(242575,1277709,6,'Sound Designer'),(242575,1277710,6,'Music'),(242575,1277711,7,'Art Direction'),(44945,5914,3,'Casting'),(44945,2863,6,'Music'),(44945,2867,7,'Production Design'),(44945,3658,3,'Producer'),(44945,3115,1,'Director of Photography'),(44945,14409,2,'Director'),(44945,14409,3,'Producer'),(44945,17115,5,'Editor'),(44945,16830,3,'Executive Producer'),(44945,17209,3,'Executive Producer'),(44945,20826,8,'Costume Design'),(44945,22815,3,'Executive Producer'),(44945,45829,3,'Executive Producer'),(44945,45830,3,'Executive Producer'),(44945,65114,3,'Producer'),(44945,112300,3,'Producer'),(44945,86595,8,'Hair Department Head'),(44945,132209,3,'Producer'),(44945,132209,3,'Unit Production Manager'),(44945,150429,3,'Producer'),(44945,150430,6,'Sound Director'),(44945,150431,4,'Writer'),(44945,150432,4,'Writer'),(44945,997367,8,'Set Costumer'),(44945,1024910,3,'Casting'),(44945,1367662,7,'Set Decoration'),(44945,1410182,8,'Makeup Artist'),(44945,1428226,8,'Costume Supervisor'),(44945,1460748,8,'Set Costumer'),(44945,1481828,2,'Script Supervisor'),(44945,1520594,7,'Art Direction'),(44945,1520595,8,'Key Hair Stylist'),(44945,1520596,8,'Makeup Department Head'),(44945,1520597,8,'Makeup Artist'),(44945,1520598,7,'Art Department Coordinator'),(125123,57631,4,'Screenplay'),(125123,134156,2,'Director'),(111190,3489,3,'Executive Producer'),(111190,8299,3,'Producer'),(111190,12204,7,'Production Design'),(111190,12952,4,'Screenplay'),(111190,19986,1,'Director of Photography'),(111190,23397,5,'Editor'),(111190,50516,3,'Producer'),(111190,48583,2,'Director'),(111190,65045,6,'Original Music Composer'),(111190,75942,7,'Production Design'),(111190,88115,3,'Producer'),(111190,185253,3,'Producer'),(111190,935703,3,'Executive Producer'),(111190,1034192,7,'Art Direction'),(111190,1113488,3,'Executive Producer'),(111190,1140274,4,'Novel'),(111190,1182942,5,'Editor'),(133575,69099,2,'Director'),(133575,110562,4,'Screenplay'),(54580,4378,3,'Casting'),(54580,13833,3,'Producer'),(54580,15602,4,'Screenplay'),(54580,15602,2,'Director'),(54580,15604,5,'Editor'),(54580,15607,3,'Producer'),(54580,16876,7,'Production Design'),(54580,16877,8,'Costume Design'),(54580,31011,3,'Producer'),(54580,67265,6,'Original Music Composer'),(54580,994574,4,'Screenplay'),(54580,1125543,3,'Producer'),(54580,1143456,1,'Director of Photography'),(52015,4906,3,'Casting'),(52015,31268,3,'Producer'),(52015,67580,4,'Screenplay'),(52015,87082,2,'Director'),(52015,87082,4,'Screenplay'),(52015,94470,3,'Casting'),(52015,130857,1,'Director of Photography'),(52015,1015883,6,'Original Music Composer'),(52015,1015884,3,'Producer'),(52015,1015885,3,'Producer'),(52015,1015886,3,'Producer'),(52015,1015887,3,'Executive Producer'),(52015,1015889,3,'Executive Producer'),(52015,1015890,3,'Executive Producer'),(52015,1015891,3,'Producer'),(52015,1292999,7,'Production Design'),(52015,1319731,8,'Costume Design'),(52015,1319732,8,'Costume Supervisor'),(227975,8569,3,'Producer'),(227975,40690,9,'Stunts'),(227975,19695,3,'Executive Producer'),(227975,23927,3,'Casting'),(227975,29824,3,'Production Manager'),(227975,40296,7,'Location Scout'),(227975,55018,2,'Director'),(227975,55018,4,'Writer'),(227975,73582,9,'Cinematography'),(227975,1004714,4,'Writer'),(227975,1010763,7,'Production Design'),(227975,1010763,7,'Art Direction'),(227975,1023809,6,'Music'),(227975,1050896,4,'Writer'),(227975,1072116,8,'Key Makeup Artist'),(227975,1299012,7,'Art Direction'),(227975,1414670,11,'Gaffer'),(227975,1420187,10,'Visual Effects'),(227975,1425855,6,'Foley Editor'),(227975,1439118,2,'Script Supervisor'),(227975,1503691,9,'Stunts'),(227975,1566088,6,'Foley Editor'),(227975,1619156,3,'Co-Producer'),(227975,1634845,9,'Stunts'),(227975,1680653,5,'Editor'),(227975,1701838,3,'Producer'),(227975,1707461,3,'Co-Producer'),(227975,1775622,3,'Line Producer'),(227975,1775623,3,'Line Producer'),(227975,1775624,3,'Executive Producer'),(227975,1775625,3,'Co-Producer'),(227975,1775626,8,'Costume Design'),(227975,1775627,8,'Costume Design'),(227975,1775628,3,'Production Manager'),(227975,1775629,4,'Storyboard'),(227975,1775630,6,'Sound'),(227975,1775631,6,'Sound'),(227975,1775632,6,'Boom Operator'),(227975,1775633,6,'Boom Operator'),(227975,1775634,6,'Sound Designer'),(227975,1775635,7,'Title Designer'),(227975,1775636,9,'Stunts'),(227975,1775637,11,'Electrician'),(227975,1775638,1,'Key Grip'),(227975,1775639,11,'Electrician'),(227975,1775640,1,'Grip'),(227975,1775641,11,'Electrician'),(227975,1775641,11,'Gaffer'),(227975,1775642,9,'Machinist'),(227975,1775642,1,'Grip'),(227975,1775643,9,'Machinist'),(227975,1775644,1,'Key Grip'),(227975,1775651,7,'Location Scout'),(227975,1775652,7,'Location Scout'),(227975,1775653,3,'Production Coordinator'),(227975,1775654,3,'Production Coordinator'),(60422,96172,2,'Director'),(60422,96172,4,'Writer'),(60422,1078114,3,'Producer'),(60422,1095401,3,'Producer'),(60422,1327146,8,'Key Costumer'),(81390,3697,3,'Casting'),(81390,63052,2,'Director'),(81390,63052,4,'Writer'),(81390,63059,4,'Writer'),(81390,63064,1,'Director of Photography'),(81390,963653,8,'Costume Design'),(81390,1024243,6,'Music'),(81390,1310937,3,'Producer'),(225235,30397,4,'Screenplay'),(225235,126856,4,'Novel'),(225235,1210747,4,'Screenplay'),(225235,1210747,2,'Director'),(225235,1282723,4,'Writer'),(121676,108072,2,'Director'),(121676,108072,4,'Screenplay'),(257087,18500,2,'Director'),(257087,59413,4,'Screenplay'),(257087,59413,3,'Producer'),(257087,62725,3,'Casting'),(257087,84348,3,'Producer'),(257087,967719,8,'Costume Design'),(257087,1003244,3,'Casting'),(257087,1145778,9,'Stunts'),(257087,1177150,9,'Thanks'),(257087,1179891,1,'Director of Photography'),(257087,1186278,6,'Music'),(257087,1190601,7,'Set Decoration'),(257087,1190773,11,'Gaffer'),(257087,1298017,8,'Set Costumer'),(257087,1298017,8,'Key Costumer'),(257087,1298017,8,'Key Set Costumer'),(257087,1387243,6,'Sound Re-Recording Mixer'),(257087,1387243,6,'Supervising Sound Editor'),(257087,1401150,6,'Boom Operator'),(257087,1403864,1,'Steadicam Operator'),(257087,1403864,1,'Camera Operator'),(257087,1407030,5,'Digital Intermediate'),(257087,1414548,6,'Foley'),(257087,1424500,5,'Assistant Editor'),(257087,1435638,8,'Hairstylist'),(257087,1451772,5,'Editor'),(257087,1453676,8,'Set Costumer'),(257087,1457687,8,'Makeup Department Head'),(257087,1492699,1,'Key Grip'),(257087,1525145,8,'Makeup Artist'),(257087,1538947,9,'Special Effects'),(257087,1544900,5,'Dialogue Editor'),(257087,1544900,6,'ADR & Dubbing'),(257087,1544900,9,'Dialect Coach'),(257087,1544900,6,'ADR Supervisor'),(257087,1547749,8,'Makeup Department Head'),(257087,1548099,5,'First Assistant Editor'),(257087,1548121,8,'Key Hair Stylist'),(257087,1548485,6,'Music Editor'),(257087,1548491,8,'Makeup Artist'),(257087,1548491,8,'Key Makeup Artist'),(257087,1558723,5,'Digital Intermediate'),(257087,1569303,7,'Production Design'),(257087,1569304,7,'Art Department Coordinator'),(257087,1569305,10,'Special Effects Supervisor'),(257087,1569306,10,'Visual Effects'),(257087,1569310,8,'Costume Supervisor'),(257087,1569314,8,'Set Costumer'),(257087,1569315,2,'Script Supervisor'),(257087,1569316,1,'Still Photographer'),(257087,1569317,8,'Hair Department Head'),(257087,1569318,8,'Key Hair Stylist'),(257087,1569322,5,'Digital Intermediate'),(257087,1627485,9,'Post Production Supervisor'),(257087,1634388,8,'Makeup Artist'),(257087,1650728,6,'Foley'),(257087,1654425,1,'First Assistant Camera'),(257087,1676121,9,'Additional Music'),(257087,1746667,3,'Unit Production Manager'),(257087,1789934,3,'Production Coordinator'),(257087,1831353,3,'Production Accountant'),(257087,1831354,9,'Set Medic'),(257087,1831356,9,'Post Production Supervisor'),(257087,1831357,9,'Post Production Assistant'),(257087,1831358,8,'Assistant Costume Designer'),(257087,1831359,9,'Loader'),(257087,1831360,1,'Grip'),(257087,1831363,1,'Grip'),(257087,1831364,10,'Visual Effects'),(257087,1831366,7,'Property Master'),(257087,1831367,2,'Second Assistant Director'),(257087,1831368,3,'Production Supervisor'),(257087,1831369,8,'Makeup Artist'),(257087,1831370,8,'Hair Department Head'),(46420,75678,6,'Music'),(46420,76085,3,'Casting'),(46420,79104,8,'Costume Design'),(46420,82611,3,'Producer'),(46420,136345,2,'Director'),(46420,136345,4,'Writer'),(46420,1034190,1,'Director of Photography'),(46420,1311129,3,'Producer'),(46420,1452989,10,'Visual Effects'),(114635,127936,2,'Director'),(158150,106491,2,'Director'),(158150,1525602,4,'Writer'),(251979,144528,2,'Director'),(251979,144528,3,'Producer'),(251979,928572,3,'Associate Producer'),(251979,1156823,4,'Writer'),(251979,1242498,3,'Producer'),(251979,1287267,4,'Writer'),(266102,2070,5,'Editor'),(266102,6371,3,'Producer'),(266102,40825,6,'Music'),(266102,16340,8,'Costume Design'),(266102,45056,6,'Music Supervisor'),(266102,59592,3,'Producer'),(266102,73420,5,'Editor'),(266102,81828,3,'Casting'),(266102,117242,6,'Foley'),(266102,564559,1,'Director of Photography'),(266102,962679,7,'Art Direction'),(266102,1030160,2,'Director'),(266102,1030160,3,'Producer'),(266102,1156997,9,'Second Unit Cinematographer'),(266102,1312262,4,'Screenplay'),(266102,1319487,10,'Visual Effects Producer'),(266102,1331983,8,'Costume Supervisor'),(266102,1354925,6,'Supervising Sound Editor'),(266102,1367557,6,'Supervising Sound Editor'),(266102,1376635,6,'Foley'),(266102,1379051,10,'Visual Effects Supervisor'),(266102,1398083,7,'Assistant Art Director'),(266102,1403708,11,'Rigging Gaffer'),(266102,1410204,2,'Script Supervisor'),(266102,1416949,6,'Sound Effects Editor'),(266102,1568596,9,'Choreographer'),(266102,1570044,8,'Makeup Designer'),(266102,1606165,3,'Producer'),(266102,1606166,3,'Producer'),(266102,1606167,7,'Production Design'),(266102,1606169,6,'Music Supervisor'),(266102,1606170,11,'Gaffer'),(266102,1606171,1,'First Assistant Camera'),(266102,1606172,1,'First Assistant Camera'),(266102,1606173,1,'Steadicam Operator'),(266102,1606175,9,'Sound Recordist'),(266102,1606176,8,'Key Hair Stylist'),(266102,1606177,8,'Makeup Artist'),(266102,1780045,8,'Assistant Costume Designer'),(37495,3081,3,'Casting'),(37495,39201,7,'Production Design'),(37495,62946,4,'Writer'),(37495,62948,4,'Writer'),(37495,70524,3,'Producer'),(37495,93494,9,'Additional Writing'),(37495,93494,4,'Writer'),(37495,93188,1,'Director of Photography'),(37495,97055,5,'Editor'),(37495,117794,2,'Director'),(37495,117794,4,'Writer'),(37495,1231665,3,'Producer'),(37495,1642086,6,'Music'),(35032,9055,3,'Producer'),(35032,9062,7,'Art Direction'),(35032,10537,1,'Director of Photography'),(35032,13980,2,'Director'),(35032,26159,4,'Screenplay'),(35032,26160,4,'Screenplay'),(352978,105860,2,'Director'),(352978,105860,4,'Writer'),(310131,2688,3,'Co-Executive Producer'),(310131,5907,6,'Original Music Composer'),(310131,10965,3,'Executive Producer'),(310131,11183,3,'Executive Producer'),(310131,131399,3,'Producer'),(310131,131400,3,'Producer'),(310131,138781,2,'Director'),(310131,138781,4,'Writer'),(310131,139846,3,'Executive Producer'),(310131,190936,3,'Casting'),(310131,236318,3,'Executive Producer'),(310131,933333,3,'Casting'),(310131,958242,7,'Production Design'),(310131,1107430,3,'Executive Producer'),(310131,1135102,1,'Director of Photography'),(310131,1300796,3,'Producer'),(310131,1312552,3,'Producer'),(310131,1333650,3,'Executive Producer'),(310131,1393490,8,'Makeup Department Head'),(310131,1397720,3,'Executive Producer'),(310131,1397777,5,'Editor'),(310131,1403404,10,'Visual Effects Supervisor'),(310131,1403407,10,'Visual Effects Producer'),(310131,1409986,3,'Executive Producer'),(310131,1410216,1,'Steadicam Operator'),(310131,1413907,6,'Sound Re-Recording Mixer'),(310131,1417919,6,'Sound Designer'),(310131,1417922,9,'Special Effects Coordinator'),(310131,1417924,3,'Co-Executive Producer'),(310131,1417939,3,'Co-Producer'),(310131,1484704,8,'Wigmaker'),(310131,1492089,7,'Set Decoration'),(310131,1511809,3,'Producer'),(310131,1517110,8,'Costume Design'),(310131,1519621,6,'Sound Re-Recording Mixer'),(310131,1537721,1,'Still Photographer'),(310131,1553779,6,'Sound Re-Recording Mixer'),(310131,1598733,7,'Art Direction'),(310131,1636994,3,'Executive Producer'),(310131,1653024,3,'Casting'),(310131,1653025,11,'Gaffer'),(310131,1653026,10,'Special Effects Supervisor'),(310131,1722532,3,'Executive Producer'),(310131,1732136,3,'Co-Producer'),(310131,1776154,3,'Co-Producer'),(310131,1793054,3,'Executive Producer'),(310131,1805883,3,'Co-Executive Producer'),(40505,65164,4,'Writer'),(40505,65164,4,'Story'),(40505,258199,2,'Director'),(205321,30053,3,'Producer'),(205321,85822,2,'Director'),(205321,102389,4,'Writer'),(205321,211900,3,'Casting'),(205321,236844,3,'Executive Producer'),(205321,1023419,10,'Visual Effects Supervisor'),(205321,1097209,10,'Visual Effects Coordinator'),(205321,1097223,5,'Editor'),(205321,1099914,1,'Director of Photography'),(205321,1189979,6,'Original Music Composer'),(205321,1189980,7,'Production Design'),(205321,1189981,7,'Art Direction'),(205321,1282041,10,'Visual Effects Supervisor'),(205321,1321938,1,'Still Photographer'),(205321,1338421,9,'Stunt Coordinator'),(205321,1350808,2,'Script Supervisor'),(89540,6208,7,'Art Direction'),(89540,16985,7,'Set Decoration'),(89540,937439,2,'Director'),(89540,937439,5,'Editor'),(89540,937439,4,'Writer'),(89540,989732,1,'Director of Photography'),(89540,1801710,7,'Production Design'),(46146,69253,3,'Producer'),(46146,76571,3,'Casting'),(46146,135113,2,'Director'),(46146,135113,4,'Writer'),(46146,136364,6,'Sound Effects Editor'),(46146,142005,1,'Director of Photography'),(46146,142006,5,'Editor'),(46146,840072,3,'Producer'),(46146,927994,10,'Visual Effects Supervisor'),(46146,971116,8,'Costume Design'),(46146,980271,6,'Sound Effects Editor'),(46146,1066233,5,'Dialogue Editor'),(46146,1336911,7,'Production Design'),(46146,1336914,6,'Foley'),(46146,1336927,7,'Set Decoration'),(46146,1448313,6,'Sound Designer'),(46146,1448318,10,'Visual Effects Producer'),(46146,1478688,10,'Creature Design'),(46146,1513839,10,'Creature Design'),(46146,1708799,6,'Music Supervisor'),(46146,1724178,7,'Art Direction'),(46146,1724181,2,'Script Supervisor'),(46146,1724182,6,'Music Supervisor'),(46146,1724183,6,'Music Supervisor'),(46146,1724184,8,'Assistant Costume Designer'),(46146,1724185,8,'Makeup Artist'),(46146,1724185,8,'Set Costumer'),(46146,1724186,11,'Gaffer'),(46146,1724187,11,'Gaffer'),(46146,1724188,1,'First Assistant Camera'),(46146,1724189,10,'Animation Supervisor'),(46146,1724190,10,'Animation Supervisor'),(46146,1724191,9,'CG Supervisor'),(46146,1724192,10,'Creature Design'),(46146,1724193,10,'Visual Effects Supervisor'),(46146,1724194,6,'Sound Effects Editor'),(38007,119367,2,'Director'),(370464,63852,2,'Director'),(370464,1438026,4,'Co-Writer'),(370464,1546073,4,'Book'),(370464,1546074,4,'Writer'),(224569,95550,2,'Director'),(224569,95550,4,'Writer'),(224569,1210132,4,'Writer'),(395766,133210,4,'Writer'),(395766,582918,2,'Director'),(39303,2149,3,'Producer'),(39303,2149,9,'Cinematography'),(39303,22040,3,'Producer'),(39303,30874,3,'Casting'),(39303,30876,3,'Casting'),(39303,64340,8,'Costume Design'),(39303,93344,4,'Writer'),(39303,93344,3,'Producer'),(39303,986334,7,'Production Design'),(39303,996070,2,'Director'),(39303,996070,3,'Producer'),(39303,1023324,7,'Art Direction'),(39303,1023366,6,'Music'),(39303,1323619,3,'Producer'),(39303,1323620,5,'Editor'),(39303,1323621,8,'Makeup Department Head'),(142061,2293,4,'Novel'),(142061,2293,9,'Graphic Novel Illustrator'),(142061,10949,3,'Executive Producer'),(142061,105643,2,'Director'),(142061,212618,4,'Screenplay'),(142061,1033619,5,'Editor'),(142061,1113050,6,'Music'),(142061,1116126,3,'Casting'),(370662,74058,2,'Director'),(370662,74058,4,'Writer'),(370662,225599,4,'Writer'),(252360,23799,2,'Director'),(252360,40609,3,'Producer'),(252360,1233813,4,'Writer'),(256740,59668,3,'Casting'),(256740,68636,5,'Editor'),(256740,87183,2,'Director'),(256740,87183,4,'Writer'),(256740,233360,3,'Producer'),(256740,233360,6,'Original Music Composer'),(256740,550473,9,'Stunt Coordinator'),(256740,937526,1,'Director of Photography'),(256740,995354,3,'Producer'),(256740,995355,3,'Executive Producer'),(256740,1009121,3,'Producer'),(256740,1098218,7,'Production Design'),(256740,1142353,2,'Script Supervisor'),(256740,1302410,6,'Sound Re-Recording Mixer'),(256740,1314062,3,'Casting'),(256740,1322010,7,'Art Direction'),(256740,1322011,8,'Costume Design'),(256740,1331136,3,'Casting'),(256740,1338134,6,'Foley'),(256740,1372213,8,'Set Costumer'),(256740,1402516,9,'Property Master'),(256740,1402518,5,'Dialogue Editor'),(256740,1402519,6,'Foley'),(256740,1402520,1,'Camera Operator'),(256740,1402522,11,'Gaffer'),(256740,1402524,2,'Script Supervisor'),(256740,1402525,3,'Location Manager'),(256740,1402526,9,'Stand In'),(299145,774,2,'Director'),(299145,928572,3,'Producer'),(299145,1308361,4,'Writer'),(299145,1308362,4,'Writer'),(241766,189431,3,'Producer'),(241766,1103587,9,'Cinematography'),(241766,1196968,8,'Costume Design'),(241766,1283831,2,'Director'),(241766,1283831,4,'Writer'),(241766,1283832,3,'Producer'),(241766,1283833,6,'Music'),(241766,1283835,6,'Music'),(241766,1283836,3,'Casting'),(50839,2863,6,'Original Music Composer'),(50839,19758,1,'Director of Photography'),(50839,21268,7,'Production Design'),(50839,58855,3,'Casting'),(50839,40142,6,'Sound Re-Recording Mixer'),(50839,61075,3,'Executive Producer'),(50839,64058,3,'Executive Producer'),(50839,72461,3,'Executive Producer'),(50839,17306,3,'Producer'),(50839,93600,5,'Editor'),(50839,94451,3,'Producer'),(50839,213863,3,'Producer'),(50839,556172,4,'Screenplay'),(50839,556172,2,'Director'),(50839,888594,3,'Executive Producer'),(50839,937171,3,'Producer'),(50839,937172,3,'Producer'),(50839,937173,3,'Producer'),(50839,1020051,3,'Executive Producer'),(50839,1020052,3,'Executive Producer'),(50839,1020053,3,'Executive Producer'),(50839,1020054,3,'Executive Producer'),(50839,1020057,3,'Casting'),(50839,1020060,7,'Set Decoration'),(50839,1020061,8,'Costume Design'),(50839,1078304,5,'Digital Intermediate'),(50839,1337465,6,'Sound Re-Recording Mixer'),(50839,1877592,6,'Sound Mixer'),(86549,933320,2,'Director'),(244786,494,3,'Casting'),(244786,6745,6,'Music Editor'),(244786,9250,3,'Executive In Charge Of Production'),(244786,23783,8,'Makeup Artist'),(244786,23786,8,'Makeup Department Head'),(244786,53181,1,'Director of Photography'),(244786,52443,3,'Executive Producer'),(244786,60864,3,'Producer'),(244786,66726,3,'Producer'),(244786,66727,3,'Executive Producer'),(244786,84348,3,'Producer'),(244786,136495,2,'Director'),(244786,136495,4,'Screenplay'),(244786,198799,9,'Stunt Coordinator'),(244786,230436,3,'Casting'),(244786,1017376,1,'Steadicam Operator'),(244786,1018788,9,'Thanks'),(244786,1030966,3,'Executive Producer'),(244786,1049456,6,'Sound Re-Recording Mixer'),(244786,1049456,6,'Supervising Sound Editor'),(244786,1099700,9,'Stunts'),(244786,1125189,3,'Co-Producer'),(244786,1156888,5,'Editor'),(244786,1186280,7,'Production Design'),(244786,1197441,2,'Assistant Director'),(244786,1287961,3,'Producer'),(244786,1319040,3,'Executive Producer'),(244786,1338158,9,'Transportation Captain'),(244786,1358021,10,'Visual Effects Supervisor'),(244786,1395180,3,'Co-Producer'),(244786,1401855,8,'Costume Design'),(244786,1401857,3,'Associate Producer'),(244786,1402475,8,'Hair Department Head'),(244786,1403508,9,'Transportation Coordinator'),(244786,1406825,6,'Sound Re-Recording Mixer'),(244786,1406825,6,'Supervising Sound Editor'),(244786,1411844,1,'Camera Operator'),(244786,1417888,3,'Location Manager'),(244786,1419137,9,'Stunts'),(244786,1419631,6,'Original Music Composer'),(244786,1420326,1,'Still Photographer'),(244786,1423984,7,'Set Decoration'),(244786,1423985,7,'Art Direction'),(244786,1429003,9,'Special Effects Coordinator'),(244786,1437191,8,'Key Hair Stylist'),(244786,1437193,6,'Sound Editor'),(244786,1443967,5,'Digital Intermediate'),(244786,1450000,2,'Script Supervisor'),(244786,1450766,9,'Stunts'),(244786,1451910,7,'Construction Coordinator'),(244786,1453571,9,'Stunts'),(244786,1525146,7,'Art Department Coordinator'),(244786,1533101,6,'Music Supervisor'),(244786,1533516,3,'Co-Producer'),(244786,1533528,3,'Line Producer'),(244786,1533529,3,'Casting Associate'),(244786,1533530,11,'Gaffer'),(244786,1547656,5,'Dialogue Editor'),(244786,1547657,6,'Foley'),(244786,1547658,10,'Visual Effects Supervisor'),(244786,1547659,10,'Visual Effects Supervisor'),(244786,1547660,5,'Digital Intermediate'),(244786,1547661,5,'Digital Intermediate'),(244786,1547662,5,'First Assistant Editor'),(75861,66532,7,'Production Design'),(75861,131668,2,'Director'),(75861,131668,4,'Story'),(75861,586028,4,'Screenplay'),(75861,586029,3,'Associate Producer'),(75861,943189,5,'Editor'),(75861,1010847,3,'Co-Producer'),(75861,1085478,3,'Executive Producer'),(75861,1122495,3,'Producer'),(75861,1162483,3,'Executive Producer'),(75861,1165679,5,'Editor'),(75861,1165679,1,'Director of Photography'),(75861,1391659,3,'Producer'),(75861,1391660,3,'Producer'),(75861,1391661,3,'Executive Producer'),(75861,1391662,3,'Associate Producer'),(75861,1391663,3,'Line Producer'),(75861,1391664,3,'Executive Producer'),(75861,1391665,3,'Executive Producer'),(75861,1391666,3,'Associate Producer'),(75861,1391673,3,'Casting'),(75861,1391675,7,'Art Direction'),(103663,6797,8,'Costume Design'),(103663,6157,6,'Sound Designer'),(103663,1015,3,'Producer'),(103663,1560,3,'Producer'),(103663,4453,2,'Director'),(103663,4453,4,'Screenplay'),(103663,4453,3,'Producer'),(103663,23332,5,'Editor'),(103663,71165,9,'Special Effects Coordinator'),(103663,69018,5,'Editor'),(103663,73486,6,'Original Music Composer'),(103663,141883,4,'Screenplay'),(103663,234892,1,'Director of Photography'),(103663,927979,10,'Visual Effects Supervisor'),(103663,1293422,7,'Production Design'),(103663,1293423,7,'Set Decoration'),(103663,1438698,9,'Second Unit Cinematographer'),(103663,1455318,6,'Foley'),(103663,1545022,11,'Gaffer'),(103663,1545295,2,'Script Supervisor'),(103663,1577894,8,'Hair Designer'),(103663,1577894,8,'Makeup Designer'),(103663,1659182,9,'Sound Recordist'),(103663,1727713,6,'Music Supervisor'),(103663,1728108,1,'Still Photographer'),(103663,1728109,10,'Visual Effects Supervisor'),(103663,1728111,6,'Sound Editor'),(103663,1728112,8,'Hairstylist'),(301748,55265,2,'Director'),(301748,76095,2,'Director'),(301748,588169,4,'Writer'),(301748,1382950,4,'Writer'),(108346,61927,3,'Producer'),(108346,231521,2,'Director'),(108346,413175,4,'Writer'),(108346,1043949,3,'Executive Producer'),(55347,17050,7,'Production Design'),(55347,17439,2,'Director'),(55347,17439,4,'Screenplay'),(55347,30872,6,'Original Music Composer'),(55347,40839,6,'Original Music Composer'),(55347,64179,3,'Producer'),(55347,71622,5,'Editor'),(55347,131399,3,'Producer'),(55347,131400,3,'Producer'),(55347,161074,6,'Original Music Composer'),(55347,188097,8,'Costume Design'),(55347,236604,3,'Producer'),(55347,236605,3,'Producer'),(55347,236606,1,'Director of Photography'),(55347,236608,3,'Casting'),(55347,236610,3,'Unit Production Manager'),(55347,236611,3,'Executive Producer'),(55347,236612,3,'Production Supervisor'),(55347,236613,1,'Steadicam Operator'),(55347,1179066,10,'Visual Effects'),(55347,1313484,3,'Casting'),(55347,1532396,6,'Music Supervisor'),(125490,4583,3,'Producer'),(125490,7800,3,'Casting'),(125490,15222,7,'Production Design'),(125490,72762,3,'Executive Producer'),(125490,66228,1,'Director of Photography'),(125490,957826,3,'Executive Producer'),(125490,989692,5,'Editor'),(125490,1081445,4,'Screenplay'),(125490,1081445,2,'Director'),(125490,1172632,6,'Original Music Composer'),(125490,1177335,1,'Still Photographer'),(125490,1179436,3,'Line Producer'),(125490,1179437,3,'Production Manager'),(125490,1179438,2,'Script Supervisor'),(125490,1179440,7,'Art Direction'),(125490,1179441,1,'Still Photographer'),(125490,1179442,8,'Costume Design'),(125490,1179443,9,'Property Master'),(125490,1179444,11,'Gaffer'),(125490,1500500,3,'Associate Producer'),(125490,1500501,3,'Associate Producer'),(41436,494,3,'Casting'),(41436,5575,3,'Executive Producer'),(41436,20133,2,'Director'),(41436,45738,1,'Director of Photography'),(41436,54248,4,'Screenplay'),(41436,60713,3,'Casting'),(41436,87130,10,'Visual Effects Supervisor'),(41436,84348,3,'Producer'),(41436,90591,3,'Producer'),(41436,141391,4,'Screenplay'),(41436,169743,7,'Production Design'),(41436,995456,3,'Executive Producer'),(41436,995462,5,'Editor'),(41436,1030966,3,'Line Producer'),(41436,1183915,8,'Costume Design'),(41436,1190783,2,'Script Supervisor'),(41436,1214473,4,'Screenplay'),(41436,1214473,4,'Story'),(41436,1364433,2,'Script Supervisor'),(41436,1377294,10,'Visual Effects Producer'),(41436,1389942,11,'Gaffer'),(41436,1414517,9,'Visual Effects Editor'),(41436,1417875,9,'Special Effects Coordinator'),(41436,1447379,10,'Visual Effects Supervisor'),(41436,1537833,2,'Script Supervisor'),(41436,1547180,7,'Assistant Art Director'),(41436,1547182,3,'Casting Associate'),(259943,607,2,'Director'),(259943,1351,3,'Producer'),(259943,39454,3,'Executive Producer'),(259943,121567,4,'Novel'),(259943,1174082,3,'Producer'),(259943,1302417,4,'Screenplay'),(259943,1698170,5,'Editor'),(158015,865,3,'Producer'),(158015,53120,2,'Director'),(158015,53120,4,'Writer'),(158015,54843,3,'Producer'),(158015,54844,3,'Producer'),(158015,84348,3,'Producer'),(158015,1186025,5,'Editor'),(158015,1186277,3,'Producer'),(158015,1186278,6,'Original Music Composer'),(158015,1186279,1,'Director of Photography'),(158015,1186280,7,'Production Design'),(82507,4340,1,'Director of Photography'),(82507,6391,7,'Production Design'),(82507,7494,3,'Casting'),(82507,19155,6,'Original Music Composer'),(82507,55499,2,'Director'),(82507,55499,3,'Executive Producer'),(82507,62434,5,'Editor'),(82507,84348,3,'Producer'),(82507,928106,4,'Screenplay'),(82507,991706,3,'Executive Producer'),(82507,999763,3,'Producer'),(82507,1193632,8,'Costume Design'),(82507,1318875,3,'Casting'),(82507,1318876,8,'Makeup Department Head'),(223485,10725,5,'Editor'),(223485,12653,7,'Production Design'),(223485,15589,8,'Costume Design'),(223485,17288,3,'Executive Producer'),(223485,16899,3,'Casting'),(223485,37270,3,'Producer'),(223485,37276,3,'Producer'),(223485,37281,3,'Casting'),(223485,67115,7,'Art Direction'),(223485,71086,1,'Director of Photography'),(223485,144888,10,'Visual Effects Supervisor'),(223485,210705,3,'Executive Producer'),(223485,549315,6,'Original Music Composer'),(223485,968946,5,'Editor'),(223485,1016177,3,'Casting'),(223485,1062805,2,'Director'),(223485,1062805,4,'Writer'),(223485,1209627,3,'Producer'),(223485,1262011,3,'Producer'),(223485,1263911,8,'Makeup Designer'),(223485,1273154,1,'Steadicam Operator'),(223485,1376803,10,'Visual Effects Supervisor'),(223485,1392611,6,'Sound Re-Recording Mixer'),(223485,1398909,7,'Art Direction'),(223485,1401788,10,'Special Effects Supervisor'),(223485,1406072,9,'Stunt Coordinator'),(223485,1408403,5,'Digital Intermediate'),(223485,1409297,6,'Sound Designer'),(223485,1409297,6,'Supervising Sound Editor'),(223485,1409490,3,'Casting'),(223485,1414101,5,'Digital Intermediate'),(223485,1437160,10,'Visual Effects Producer'),(223485,1451518,2,'Script Supervisor'),(223485,1457305,8,'Makeup Artist'),(223485,1477627,8,'Assistant Costume Designer'),(223485,1486938,3,'Associate Producer'),(223485,1486939,3,'Line Producer'),(223485,1531091,8,'Set Costumer'),(223485,1531092,8,'Makeup Artist'),(223485,1531093,8,'Makeup Artist'),(223485,1531094,9,'Property Master'),(223485,1531095,7,'Set Decoration'),(223485,1531096,5,'Dialogue Editor'),(223485,1531097,10,'Special Effects Supervisor'),(223485,1531098,11,'Gaffer'),(223485,1531099,1,'Still Photographer'),(223485,1531100,5,'First Assistant Editor'),(223485,1531101,5,'First Assistant Editor'),(223485,1531102,6,'Music Supervisor'),(53862,95458,4,'Writer'),(53862,161858,2,'Director'),(132344,564,2,'Director'),(132344,564,3,'Producer'),(132344,564,4,'Writer'),(132344,564,4,'Characters'),(132344,568,4,'Characters'),(132344,569,4,'Writer'),(132344,580,5,'Editor'),(132344,1146,4,'Writer'),(132344,3727,3,'Executive Producer'),(132344,41377,3,'Executive Producer'),(132344,32234,6,'Original Music Composer'),(132344,32234,6,'Music'),(132344,46347,3,'Executive Producer'),(132344,114309,3,'Producer'),(132344,147816,8,'Makeup Artist'),(132344,236884,3,'Co-Producer'),(132344,580570,6,'Music Editor'),(132344,928336,10,'Color Designer'),(132344,933680,3,'Unit Production Manager'),(132344,1001361,3,'Co-Producer'),(132344,1001361,2,'Assistant Director'),(132344,1039845,3,'Executive Producer'),(132344,1095303,3,'Producer'),(132344,1140266,1,'Director of Photography'),(132344,1211139,7,'Art Direction'),(132344,1211139,7,'Set Designer'),(132344,1373895,8,'Hairstylist'),(132344,1406412,3,'Line Producer'),(132344,1406412,3,'Production Manager'),(132344,1429265,8,'Hairstylist'),(132344,1439059,9,'Post Production Supervisor'),(132344,1570069,8,'Costume Design'),(132344,1570072,2,'Assistant Director'),(132344,1570245,9,'Stunts'),(132344,1570245,9,'Driver'),(44634,77300,2,'Director'),(44634,162900,4,'Screenplay'),(40247,321,3,'Producer'),(40247,56539,2,'Director'),(40247,56539,4,'Writer'),(121986,2997,3,'Producer'),(121986,5656,2,'Director'),(121986,5656,3,'Producer'),(121986,5656,4,'Writer'),(121986,5669,3,'Casting'),(121986,18783,3,'Producer'),(121986,18783,3,'Unit Production Manager'),(121986,45400,4,'Writer'),(121986,1046160,3,'Co-Producer'),(121986,1075441,1,'Director of Photography'),(121986,1113553,5,'Editor'),(121986,1300796,3,'Producer'),(121986,1347758,3,'Production Supervisor'),(121986,1409986,3,'Executive Producer'),(121986,1417252,7,'Production Design'),(121986,1417252,7,'Title Designer'),(121986,1468070,3,'Casting Associate'),(121986,1500310,3,'Co-Producer'),(121986,1615326,2,'Script Supervisor'),(121986,1789098,3,'Executive Producer'),(121986,1789100,3,'Location Manager'),(121986,1789101,3,'Location Manager'),(121986,1789102,3,'Production Coordinator'),(246403,19303,2,'Director'),(246403,19303,4,'Writer'),(246403,19303,5,'Editor'),(246403,19302,3,'Associate Producer'),(246403,23658,3,'Executive Producer'),(246403,64231,7,'Art Direction'),(246403,135334,3,'Associate Producer'),(246403,960350,1,'Director of Photography'),(246403,963669,3,'Producer'),(246403,986505,3,'Producer'),(246403,1001661,3,'Executive Producer'),(246403,1015060,9,'Makeup Effects'),(246403,1093640,3,'Executive Producer'),(246403,1099261,3,'Producer'),(246403,1113050,6,'Original Music Composer'),(246403,1161120,3,'Associate Producer'),(246403,1209168,3,'Producer'),(246403,1395158,7,'Production Design'),(35691,114614,2,'Director'),(35691,114615,2,'Director'),(35691,114616,4,'Writer'),(49010,4583,3,'Producer'),(49010,7800,3,'Casting'),(49010,66228,1,'Director of Photography'),(49010,84021,3,'Producer'),(49010,82705,8,'Costume Design'),(49010,141673,2,'Director'),(49010,586521,3,'Producer'),(49010,928323,6,'Original Music Composer'),(49010,948709,6,'Music'),(49010,971393,3,'Casting'),(49010,1206108,4,'Writer'),(49010,1244274,3,'Producer'),(49010,1307785,6,'Music'),(317930,1223306,4,'Screenplay'),(317930,1308060,9,'Cinematography'),(317930,1413364,4,'Screenplay'),(317930,1480591,2,'Director'),(82533,78188,2,'Director'),(82533,78188,4,'Writer'),(50942,8554,4,'Novel'),(50942,63904,4,'Teleplay'),(50942,76418,2,'Director'),(84174,4438,9,'Stunt Coordinator'),(84174,10365,7,'Production Design'),(84174,23659,3,'Producer'),(84174,17990,6,'Music Editor'),(84174,24527,9,'Compositors'),(84174,41845,10,'Visual Effects'),(84174,52056,5,'Editor'),(84174,55710,3,'Producer'),(84174,65245,6,'Music'),(84174,65246,6,'Music'),(84174,92371,6,'Sound Re-Recording Mixer'),(84174,80175,3,'Producer'),(84174,80830,10,'Visual Effects Supervisor'),(84174,91147,6,'Music Supervisor'),(84174,99410,3,'Executive Producer'),(84174,217587,2,'Director'),(84174,217587,4,'Screenplay'),(84174,217587,4,'Theatre Play'),(84174,217587,3,'Co-Producer'),(84174,232004,3,'Producer'),(84174,929987,9,'Cinematography'),(84174,979121,3,'Executive Producer'),(84174,1018467,3,'Producer'),(84174,1018472,3,'Producer'),(84174,1083072,8,'Costume Design'),(84174,1085007,6,'Sound Re-Recording Mixer'),(84174,1163982,9,'Post Production Supervisor'),(84174,1179562,1,'Camera Operator'),(84174,1179562,1,'Steadicam Operator'),(84174,1335119,7,'Construction Coordinator'),(84174,1398132,3,'Casting'),(84174,1417868,3,'Co-Producer'),(84174,1434591,7,'Art Direction'),(84174,1436490,3,'Executive Producer'),(84174,1444964,1,'Camera Operator'),(84174,1448188,8,'Assistant Costume Designer'),(84174,1526981,7,'Set Decoration'),(84174,1531494,6,'Music Supervisor'),(84174,1533692,6,'Music Supervisor'),(84174,1533795,3,'Co-Producer'),(84174,1533802,2,'Script Supervisor'),(84174,1533803,8,'Hair Department Head'),(84174,1533804,8,'Makeup Department Head'),(84174,1547414,3,'Casting Associate'),(84174,1549321,6,'Sound Mixer'),(84174,1583079,9,'Compositors'),(84174,1584520,1,'Still Photographer'),(84174,1625316,6,'Supervising Sound Editor'),(84174,1625316,6,'Sound Re-Recording Mixer'),(84174,1647465,3,'Executive Producer'),(84174,1688190,8,'Key Hair Stylist'),(84174,1691221,9,'Compositors'),(84174,1694455,8,'Hairstylist'),(84174,1697381,5,'Dialogue Editor'),(84174,1697381,6,'Foley'),(84174,1697578,3,'Production Supervisor'),(84174,1697579,3,'Associate Producer'),(84174,1697580,3,'Associate Producer'),(84174,1697581,7,'Art Department Coordinator'),(84174,1697583,9,'Property Master'),(84174,1697584,6,'Boom Operator'),(84174,1697586,9,'Post Production Supervisor'),(84174,1697590,9,'Compositors'),(79940,31520,3,'Producer'),(79940,132856,4,'Screenplay'),(79940,132856,2,'Director'),(79940,132857,2,'Director'),(79940,132857,4,'Screenplay'),(79940,132857,3,'Producer'),(79940,212431,9,'Additional Writing'),(79940,212449,9,'Additional Writing'),(79940,929426,7,'Art Direction'),(79940,933280,9,'Additional Writing'),(281230,84769,2,'Director'),(281230,105363,4,'Writer'),(281230,105363,2,'Director'),(38033,57858,5,'Editor'),(38033,59018,3,'Producer'),(38033,59018,4,'Writer'),(38033,60226,3,'Casting'),(38033,80822,6,'Sound Re-Recording Mixer'),(38033,42824,9,'Stunt Coordinator'),(38033,119419,2,'Director'),(38033,119419,3,'Producer'),(38033,119420,4,'Writer'),(38033,128496,6,'Music'),(38033,161589,3,'Casting'),(38033,572365,5,'First Assistant Editor'),(38033,1189796,9,'Cinematography'),(38033,1205323,8,'Costume Design'),(38033,1313362,7,'Production Design'),(38033,1334834,5,'Editor'),(38033,1334835,7,'Art Direction'),(38033,1334836,7,'Sculptor'),(38033,1334837,9,'Special Effects'),(38033,1337668,6,'Supervising Sound Editor'),(38033,1350236,6,'ADR & Dubbing'),(38033,1350237,6,'Sound Effects Editor'),(38033,1392974,1,'Camera Operator'),(38033,1392974,1,'Steadicam Operator'),(38033,1401760,7,'Assistant Art Director'),(38033,1406254,9,'Transportation Coordinator'),(38033,1409542,8,'Hairstylist'),(38033,1409544,8,'Makeup Artist'),(38033,1409545,6,'Sound Effects Editor'),(38033,1409546,6,'Sound Effects Editor'),(38033,1409547,2,'Script Supervisor'),(38033,1409548,3,'Location Manager'),(38033,1409549,3,'Location Manager'),(38033,1409551,2,'Script Supervisor'),(100975,1206,2,'Director'),(100975,3659,1,'Director of Photography'),(100975,27569,5,'Editor'),(100975,197961,4,'Screenplay'),(100975,1400197,8,'Costume Design'),(38541,18184,2,'Director'),(38541,45843,9,'Cinematography'),(38541,45845,5,'Editor'),(38541,21421,3,'Producer'),(38541,41334,7,'Production Design'),(38541,46291,6,'Sound Re-Recording Mixer'),(38541,54232,9,'Stunt Coordinator'),(38541,59932,3,'Casting'),(38541,59657,3,'Producer'),(38541,61128,8,'Costume Design'),(38541,64481,7,'Art Direction'),(38541,77107,5,'Digital Intermediate'),(38541,120669,4,'Writer'),(38541,120670,4,'Writer'),(38541,1026248,3,'Producer'),(38541,1026249,3,'Producer'),(38541,1038001,9,'Makeup Effects'),(38541,1184361,9,'Stunt Coordinator'),(38541,1282402,6,'Music'),(38541,1337040,10,'Visual Effects Supervisor'),(38541,1340725,6,'Sound Designer'),(38541,1363847,6,'Sound Re-Recording Mixer'),(38541,1392112,2,'Script Supervisor'),(38541,1398155,9,'Special Effects Coordinator'),(38541,1406767,11,'Gaffer'),(38541,1415577,1,'Steadicam Operator'),(38541,1422851,6,'Foley'),(38541,1424732,8,'Hairstylist'),(38541,1424735,9,'Makeup Effects'),(38541,1424736,6,'ADR & Dubbing'),(38541,1424738,9,'Special Effects Coordinator'),(38541,1424739,10,'Visual Effects Producer'),(38541,1424740,10,'Visual Effects Supervisor'),(38541,1424741,1,'Camera Operator'),(38541,1424742,9,'Transportation Coordinator'),(39563,73289,2,'Director'),(234212,1307,3,'Executive Producer'),(234212,59839,3,'Executive Producer'),(234212,2127,3,'Producer'),(234212,6411,7,'Production Design'),(234212,13585,3,'Casting'),(234212,51966,9,'Second Unit Cinematographer'),(234212,63099,1,'Director of Photography'),(234212,71882,3,'Executive Producer'),(234212,71882,3,'Line Producer'),(234212,76013,3,'Producer'),(234212,95640,1,'Steadicam Operator'),(234212,94403,3,'Co-Producer'),(234212,223098,4,'Screenplay'),(234212,223098,2,'Director'),(234212,223099,4,'Screenplay'),(234212,937024,3,'Co-Producer'),(234212,1002564,5,'Digital Intermediate'),(234212,1014942,8,'Costume Design'),(234212,1117377,2,'Script Supervisor'),(234212,1253678,7,'Set Decoration'),(234212,1304298,8,'Makeup Artist'),(234212,1324035,5,'Editor'),(234212,1327071,9,'Stunt Coordinator'),(234212,1338480,6,'Foley'),(234212,1338481,6,'Sound Re-Recording Mixer'),(234212,1338482,6,'Sound Designer'),(234212,1338483,6,'Sound Effects Editor'),(234212,1338484,6,'Sound Effects Editor'),(234212,1358021,10,'Visual Effects Supervisor'),(234212,1367480,7,'Construction Coordinator'),(234212,1369376,6,'ADR & Dubbing'),(234212,1393855,9,'Dialect Coach'),(234212,1393860,11,'Gaffer'),(234212,1394412,1,'Still Photographer'),(234212,1402546,8,'Hairstylist'),(234212,1402565,8,'Costume Supervisor'),(234212,1410107,1,'Camera Operator'),(234212,1429345,9,'Property Master'),(234212,1461190,4,'Screenplay'),(234212,1461190,4,'Story'),(234212,1461191,6,'Original Music Composer'),(234212,1461192,8,'Hairstylist'),(234212,1461193,8,'Makeup Department Head'),(234212,1461196,9,'CG Supervisor'),(234212,1461197,10,'Visual Effects Producer'),(234212,1461198,10,'Visual Effects Supervisor'),(234212,1461202,5,'First Assistant Editor'),(170480,32897,4,'Writer'),(170480,109905,2,'Director'),(170480,109905,4,'Writer'),(170480,130530,4,'Writer'),(170480,1300069,4,'Writer'),(71866,564082,2,'Director'),(71866,564082,4,'Writer'),(71866,564082,3,'Producer'),(71866,564083,2,'Director'),(71866,564083,4,'Writer'),(71866,958083,5,'Editor'),(71866,1090272,5,'Editor'),(71866,1090302,3,'Producer'),(71866,1103654,3,'Executive Producer'),(71866,1103655,9,'Cinematography'),(192210,228041,2,'Director'),(192210,228041,4,'Writer'),(192210,996401,7,'Production Design'),(192210,1531391,9,'Cinematography'),(192210,1668820,4,'Screenplay'),(192210,1668821,6,'Music'),(180296,7439,7,'Production Design'),(180296,17748,6,'Original Music Composer'),(180296,22214,2,'Director'),(180296,22214,4,'Writer'),(180296,22214,3,'Executive Producer'),(180296,22215,4,'Writer'),(180296,22215,3,'Producer'),(180296,60109,3,'Casting'),(180296,60107,3,'Casting'),(180296,63223,3,'Executive Producer'),(180296,1000467,7,'Set Decoration'),(180296,1192172,6,'Original Music Composer'),(180296,1252207,3,'Executive Producer'),(180296,1252208,3,'Associate Producer'),(180296,1451396,5,'Editor'),(180296,1525141,3,'Executive Producer'),(180296,1544257,1,'Director of Photography'),(180296,1544259,7,'Art Direction'),(180296,1544260,8,'Costume Design'),(180296,1544261,3,'Associate Producer'),(157058,130051,2,'Director'),(157058,130051,4,'Writer'),(70006,55077,4,'Writer'),(70006,55080,5,'Editor'),(70006,59932,3,'Casting'),(70006,59885,6,'Original Music Composer'),(70006,64856,2,'Director'),(70006,935296,9,'Cinematography'),(70006,935298,7,'Production Design'),(70006,935300,7,'Set Decoration'),(70006,935301,8,'Costume Design'),(70006,1170240,7,'Art Direction'),(79587,2215,3,'Casting'),(79587,20646,3,'Producer'),(79587,20646,4,'Writer'),(79587,39613,6,'Music'),(79587,141203,3,'Casting'),(79587,587519,2,'Director'),(79587,865418,3,'Producer'),(79587,996050,7,'Production Design'),(79587,1021206,3,'Casting'),(79587,1117101,2,'Script Supervisor'),(79587,1118298,3,'Producer'),(79587,1233554,4,'Writer'),(79587,1411796,3,'Casting'),(79587,1419108,3,'Casting'),(79587,1481013,1,'Director of Photography'),(79587,1533032,1,'Grip'),(176077,930627,2,'Director'),(176077,1158417,2,'Director'),(176077,1158417,4,'Writer'),(260947,16371,3,'Executive Producer'),(260947,18299,3,'Producer'),(260947,33618,1,'Director of Photography'),(260947,57777,2,'Director'),(260947,60713,3,'Casting'),(260947,156832,3,'Casting'),(260947,965436,6,'Original Music Composer'),(260947,1139529,3,'Executive Producer'),(260947,1304135,4,'Story'),(260947,1304136,4,'Screenplay'),(260947,1304136,3,'Producer'),(260947,1304137,7,'Production Design'),(260947,1304137,3,'Executive Producer'),(260947,1304137,7,'Art Direction'),(260947,1304138,3,'Executive Producer'),(260947,1304139,5,'Editor'),(342502,130530,2,'Director'),(342502,130530,4,'Writer'),(342502,1316069,4,'Writer'),(191229,20921,2,'Director'),(191229,20921,4,'Writer'),(191229,90267,9,'Cinematography'),(191229,975212,4,'Novel'),(191229,990029,4,'Writer'),(191229,1171780,4,'Writer'),(43213,566314,2,'Director'),(43213,566315,4,'Screenplay'),(43213,566316,4,'Story'),(44594,5914,3,'Casting'),(44594,9993,3,'Associate Producer'),(44594,9993,9,'Post Production Supervisor'),(44594,23602,1,'Director of Photography'),(44594,39123,3,'Casting'),(44594,52261,8,'Costume Design'),(44594,53757,3,'Producer'),(44594,59473,5,'Editor'),(44594,74062,3,'Executive Producer'),(44594,131060,2,'Director'),(44594,131060,4,'Screenplay'),(44594,151062,3,'Production Coordinator'),(44594,229813,3,'Executive Producer'),(44594,986792,3,'Producer'),(44594,986793,3,'Producer'),(44594,1001673,3,'Executive Producer'),(44594,1001674,3,'Producer'),(44594,1014920,3,'Casting'),(44594,1024910,3,'Casting Associate'),(44594,1169741,2,'Script Supervisor'),(44594,1293002,3,'Unit Production Manager'),(44594,1329558,7,'Set Decoration'),(44594,1423772,3,'Location Manager'),(44594,1462287,3,'Co-Producer'),(44594,1462288,3,'Executive Producer'),(44594,1521110,3,'Casting Assistant'),(44594,1555534,3,'Executive Producer'),(44594,1777755,4,'Novel'),(44594,1777757,3,'Co-Executive Producer'),(44594,1777758,3,'Producer'),(44594,1777758,3,'Associate Producer'),(44594,1777758,3,'Unit Production Manager'),(44594,1777761,3,'Executive Producer'),(44594,1777762,6,'Music'),(44594,1777764,7,'Production Design'),(44594,1777768,7,'Title Designer'),(325173,36999,3,'Producer'),(325173,59502,4,'Writer'),(325173,59668,3,'Casting'),(325173,62811,6,'Music'),(325173,78108,2,'Director'),(325173,78217,4,'Writer'),(325173,85514,5,'Editor'),(325173,933118,10,'Visual Effects'),(325173,1033510,1,'Director of Photography'),(325173,1191308,9,'Special Effects Coordinator'),(325173,1249408,6,'ADR & Dubbing'),(325173,1369376,6,'ADR & Dubbing'),(325173,1369376,5,'Dialogue Editor'),(325173,1380919,9,'Stunts Coordinator'),(325173,1409545,6,'Sound Effects Editor'),(325173,1411317,11,'Gaffer'),(325173,1495179,6,'Sound Effects Editor'),(325173,1516801,8,'Costume Design'),(325173,1519611,6,'Sound Mixer'),(325173,1579007,6,'Sound Effects Editor'),(325173,1601636,7,'Production Design'),(325173,1601637,7,'Art Direction'),(325173,1601638,7,'Set Decoration'),(325173,1601639,9,'Armorer'),(325173,1601640,9,'Sound Recordist'),(325173,1601641,9,'Second Unit Cinematographer'),(325173,1601642,1,'Additional Camera'),(325173,1601643,8,'Set Costumer'),(325173,1601644,5,'First Assistant Editor'),(351043,41887,2,'Director'),(351043,1125160,4,'Writer'),(351043,1386893,4,'Writer'),(43942,19003,2,'Director'),(43942,19003,4,'Writer'),(43942,19006,2,'Director'),(43942,19006,4,'Writer'),(43942,23405,3,'Producer'),(43942,23408,3,'Producer'),(43942,46807,3,'Producer'),(43942,50993,3,'Executive Producer'),(43942,57492,2,'Director'),(43942,57492,4,'Writer'),(43942,71600,2,'Director'),(43942,71600,3,'Executive Producer'),(43942,71797,4,'Screenplay'),(43942,71797,2,'Director'),(43942,71797,4,'Writer'),(43942,84369,2,'Director'),(43942,84369,4,'Writer'),(43942,101298,3,'Executive Producer'),(43942,136074,3,'Producer'),(43942,136075,3,'Producer'),(43942,136076,3,'Producer'),(43942,136077,3,'Executive Producer'),(43942,136078,3,'Executive Producer'),(43942,136079,3,'Executive Producer'),(43942,136080,3,'Executive Producer'),(43942,136082,4,'Screenplay'),(43942,136083,4,'Writer'),(66942,84451,2,'Director'),(66942,84451,4,'Writer'),(356483,117168,2,'Director'),(356483,1589489,9,'Stunts'),(55306,3727,3,'Executive Producer'),(55306,16297,3,'Executive Producer'),(55306,4855,3,'Co-Producer'),(55306,138322,2,'Director'),(55306,138322,5,'Editor'),(55306,138322,4,'Writer'),(55306,1030290,6,'Original Music Composer'),(55306,1324700,3,'Executive Producer'),(55306,1391067,3,'Casting'),(55306,1391068,8,'Costume Design'),(55306,1423867,1,'Director of Photography'),(55306,1453741,7,'Production Design'),(55306,1474667,7,'Set Decoration'),(55306,1604114,3,'Co-Producer'),(55306,1604116,3,'Line Producer'),(346081,1312905,2,'Director'),(43306,70,1,'Director of Photography'),(43306,9049,2,'Director'),(43306,9062,7,'Art Direction'),(43306,9063,7,'Set Decoration'),(43306,11993,4,'Screenplay'),(43306,12307,1,'Director of Photography'),(43306,14679,5,'Editor'),(43306,27969,6,'Sound'),(43306,69121,4,'Adaptation'),(43306,72066,6,'Original Music Composer'),(43306,82492,4,'Story'),(43306,977767,3,'Producer'),(43306,1133921,4,'Story'),(43306,1312999,2,'Assistant Director'),(43306,1529435,2,'Assistant Director'),(43306,1530915,3,'Unit Production Manager'),(43306,1532477,3,'Unit Production Manager'),(209274,6157,6,'Original Music Composer'),(209274,11687,3,'Producer'),(209274,64194,2,'Director'),(209274,64194,4,'Writer'),(209274,88206,7,'Production Design'),(209274,515221,4,'Writer'),(209274,936755,3,'Producer'),(209274,960261,1,'Director of Photography'),(209274,979225,3,'Producer'),(209274,1136769,6,'Foley'),(209274,1316933,6,'Sound Editor'),(209274,1350222,6,'Supervising Sound Editor'),(209274,1350222,6,'Sound Re-Recording Mixer'),(209274,1398743,3,'Co-Producer'),(209274,1398744,3,'Line Producer'),(209274,1398746,3,'Casting'),(209274,1398748,8,'Costume Design'),(209274,1398749,7,'Production Design'),(209274,1421495,5,'Editor'),(209274,1553208,6,'ADR & Dubbing'),(209274,1553208,5,'Dialogue Editor'),(209274,1570911,7,'Art Direction'),(209274,1570913,7,'Assistant Art Director'),(209274,1570914,7,'Assistant Art Director'),(209274,1570915,7,'Assistant Art Director'),(209274,1570916,8,'Assistant Costume Designer'),(209274,1570917,1,'Camera Operator'),(209274,1570919,1,'Still Photographer'),(209274,1570921,1,'Still Photographer'),(209274,1570923,11,'Gaffer'),(209274,1570925,10,'Visual Effects Producer'),(209274,1570926,10,'Visual Effects Producer'),(209274,1570927,6,'Sound Editor'),(209274,1570928,8,'Makeup Artist'),(209274,1570929,8,'Makeup Artist'),(209274,1609221,1,'Director of Photography'),(72914,567558,2,'Director'),(72914,567559,2,'Director'),(139038,5914,3,'Casting'),(139038,9562,4,'Writer'),(139038,9562,3,'Producer'),(139038,56908,4,'Writer'),(139038,56908,3,'Producer'),(139038,65136,5,'Editor'),(139038,68441,1,'Director of Photography'),(139038,1110102,2,'Director'),(126509,2211,3,'Producer'),(126509,151460,2,'Director'),(126509,151460,3,'Executive Producer'),(126509,151460,4,'Writer'),(126509,219861,2,'Director'),(126509,219861,3,'Executive Producer'),(126509,219861,4,'Writer'),(181330,55638,3,'Executive Producer'),(181330,55638,4,'Writer'),(181330,65918,3,'Executive Producer'),(181330,92151,3,'Producer'),(181330,555308,3,'Executive Producer'),(181330,559968,2,'Director'),(181330,935469,3,'Associate Producer'),(181330,935470,3,'Associate Producer'),(181330,1286555,3,'Executive Producer'),(181330,1320506,4,'Writer'),(181330,1320508,4,'Writer'),(181330,1687490,3,'Associate Producer'),(181330,1775756,3,'Executive Producer'),(181330,1775776,3,'Co-Producer'),(181330,1775777,3,'Co-Producer'),(181330,1775778,3,'Associate Producer'),(181330,1775779,3,'Associate Producer'),(181330,1775780,2,'First Assistant Director'),(181330,1775781,3,'Production Supervisor'),(181330,1775783,7,'Art Direction'),(181330,1775784,11,'Gaffer'),(50538,73613,1,'Director of Photography'),(50538,130358,2,'Director'),(50538,130358,4,'Screenplay'),(50538,191654,3,'Associate Producer'),(50538,1041415,4,'Screenplay'),(50538,1041415,4,'Novel'),(50538,1549105,5,'Editor'),(50538,1763718,3,'Line Producer'),(50538,1763740,3,'Associate Producer'),(84329,1781,3,'Producer'),(84329,53276,3,'Producer'),(84329,60110,8,'Costume Design'),(84329,62723,3,'Executive Producer'),(84329,101814,4,'Screenplay'),(84329,836732,2,'Director'),(84329,1094150,3,'Producer'),(84329,1094151,6,'Original Music Composer'),(84329,1094152,1,'Director of Photography'),(84329,1094153,7,'Art Direction'),(84329,1094155,7,'Set Decoration'),(84329,1095275,3,'Producer'),(84329,1099832,3,'Co-Producer'),(84329,1163940,3,'Executive Producer'),(84329,1381803,3,'Co-Producer'),(84329,1458717,3,'Associate Producer'),(84329,1458720,3,'Executive Producer'),(84329,1458721,3,'Executive Producer'),(84329,1507562,3,'Executive Producer'),(84329,1507563,3,'Executive Producer'),(84329,1507564,3,'Executive Producer'),(84329,1507565,3,'Executive Producer'),(84329,1507566,3,'Executive Producer'),(157386,17825,3,'Producer'),(157386,66264,3,'Producer'),(157386,66724,3,'Producer'),(157386,72643,5,'Editor'),(157386,72853,1,'Director of Photography'),(157386,75362,3,'Producer'),(157386,77950,4,'Screenplay'),(157386,77951,4,'Screenplay'),(157386,930710,2,'Director'),(157386,963284,7,'Production Design'),(157386,1021206,3,'Casting'),(157386,1042699,6,'Original Music Composer'),(157386,1094287,8,'Costume Design'),(157386,1138714,4,'Novel'),(157386,1176357,3,'Casting'),(157386,1285825,7,'Set Decoration'),(157386,1529990,6,'Music Supervisor'),(157386,1529999,6,'Music Supervisor'),(116584,133684,2,'Director'),(116584,1064080,4,'Writer'),(46849,59975,2,'Director'),(46849,59975,4,'Author'),(46849,562914,4,'Author'),(40428,123990,2,'Director'),(40428,123990,4,'Writer'),(40428,123991,2,'Director'),(45132,1260,7,'Production Design'),(45132,5952,3,'Producer'),(45132,11678,3,'Executive Producer'),(45132,15218,2,'Director'),(45132,15218,4,'Screenplay'),(45132,15221,6,'Original Music Composer'),(45132,56716,5,'Editor'),(45132,62781,7,'Set Decoration'),(45132,66263,3,'Producer'),(45132,68441,1,'Director of Photography'),(45132,70301,3,'Executive Producer'),(45132,84702,9,'Stunt Coordinator'),(45132,91324,6,'Music Editor'),(45132,229810,8,'Hair Department Head'),(45132,1066776,6,'Music Supervisor'),(45132,1129323,3,'Production Supervisor'),(45132,1169254,3,'Producer'),(45132,1172909,8,'Costume Design'),(45132,1347997,6,'Supervising Sound Editor'),(45132,1347997,6,'Sound Re-Recording Mixer'),(45132,1347999,5,'Dialogue Editor'),(45132,1397822,6,'Sound Designer'),(45132,1401765,1,'Still Photographer'),(45132,1440228,6,'Sound Re-Recording Mixer'),(45132,1450000,2,'Script Supervisor'),(45132,1458988,8,'Makeup Department Head'),(45132,1551846,6,'Sound mixer'),(76706,110834,2,'Director'),(76706,582317,4,'Writer'),(254472,4526,3,'Co-Producer'),(254472,4930,3,'Producer'),(254472,16887,6,'Foley'),(254472,56653,3,'Line Producer'),(254472,1001659,3,'Executive Producer'),(254472,1001661,3,'Executive Producer'),(254472,1001662,3,'Executive Producer'),(254472,1093640,3,'Executive Producer'),(254472,1201942,6,'Sound Re-Recording Mixer'),(254472,1290942,2,'Director'),(254472,1382116,4,'Writer'),(254472,1382117,1,'Director of Photography'),(254472,1408650,6,'Sound Re-Recording Mixer'),(254472,1408652,6,'Sound Designer'),(254472,1408652,6,'Supervising Sound Editor'),(254472,1453666,6,'ADR & Dubbing'),(254472,1454140,6,'Foley'),(254472,1477798,6,'Original Music Composer'),(254472,1486469,5,'Editor'),(254472,1522486,3,'Producer'),(254472,1522487,6,'Original Music Composer'),(254472,1522489,3,'Production Manager'),(254472,1528339,8,'Makeup Department Head'),(254472,1528340,6,'ADR & Dubbing'),(254472,1528341,5,'Dialogue Editor'),(254472,1528344,6,'Foley'),(254472,1528345,6,'Sound Designer'),(254472,1528346,1,'First Assistant Camera'),(254472,1528347,2,'Script Supervisor'),(254472,1528348,10,'Visual Effects Producer'),(254472,1528349,10,'Visual Effects Supervisor'),(254472,1820658,10,'Special Effects Supervisor'),(332285,10871,3,'Producer'),(332285,79580,3,'Producer'),(332285,130858,2,'Director'),(332285,130858,4,'Writer'),(332285,928456,3,'Producer'),(332285,934130,3,'Producer'),(332285,1369103,3,'Producer'),(332285,1562979,1,'Director of Photography'),(332285,1562981,5,'Editor'),(49471,5281,2,'Director'),(49471,71943,4,'Writer'),(356216,123410,9,'Stunt Coordinator'),(356216,439236,2,'Director'),(356216,1143389,6,'Sound Re-Recording Mixer'),(356216,1273062,1,'Director of Photography'),(356216,1280379,7,'Production Design'),(356216,1280381,8,'Costume Design'),(356216,1282286,3,'Casting'),(356216,1323676,6,'Sound Designer'),(356216,1361909,4,'Writer'),(356216,1361909,3,'Producer'),(356216,1385516,8,'Costume Supervisor'),(356216,1406731,1,'Steadicam Operator'),(356216,1423696,7,'Art Direction'),(356216,1437652,8,'Makeup Artist'),(356216,1450945,5,'Editor'),(356216,1450945,6,'Music'),(356216,1487864,3,'Producer'),(356216,1502400,4,'Writer'),(356216,1502400,3,'Producer'),(356216,1502406,11,'Gaffer'),(356216,1502428,2,'Script Supervisor'),(146631,109388,3,'Producer'),(146631,168435,3,'Producer'),(146631,230157,2,'Director'),(146631,230157,4,'Writer'),(146631,230157,3,'Producer'),(146631,1050600,1,'Director of Photography'),(146631,1191178,3,'Producer'),(146631,1280379,7,'Production Design'),(146631,1280381,8,'Costume Supervisor'),(146631,1323676,6,'Music'),(146631,1323677,8,'Costume Design'),(43546,9058,5,'Editor'),(43546,9062,7,'Art Direction'),(43546,9063,7,'Set Decoration'),(43546,10537,1,'Director of Photography'),(43546,29345,7,'Art Direction'),(43546,21506,2,'Director'),(43546,21507,3,'Producer'),(43546,31069,4,'Screenplay'),(43546,47844,4,'Screenplay'),(43546,167903,4,'Story'),(43546,240838,4,'Screenplay'),(43546,552346,7,'Art Direction'),(43546,935862,4,'Story'),(43546,1012329,8,'Costume Supervisor'),(43546,1150509,4,'Story'),(61038,232216,2,'Director'),(78373,77919,2,'Director'),(78373,77919,4,'Writer'),(74457,16214,2,'Director'),(74457,240736,4,'Writer'),(74457,1076342,4,'Writer'),(283384,2688,6,'Supervising Sound Editor'),(283384,20228,6,'Foley'),(283384,23545,3,'Casting'),(283384,62242,7,'Set Decoration'),(283384,72117,9,'Stunt Coordinator'),(283384,72461,3,'Producer'),(283384,124321,3,'Producer'),(283384,960707,8,'Costume Design'),(283384,995558,5,'Editor'),(283384,1046127,2,'Director'),(283384,1183452,1,'Still Photographer'),(283384,1302397,7,'Production Design'),(283384,1317669,7,'Art Direction'),(283384,1318446,6,'Original Music Composer'),(283384,1320551,8,'Makeup Department Head'),(283384,1331930,8,'Costume Supervisor'),(283384,1340343,2,'Script Supervisor'),(283384,1345424,4,'Screenplay'),(283384,1345424,3,'Producer'),(283384,1345425,4,'Novel'),(283384,1397173,6,'Sound Re-Recording Mixer'),(283384,1413898,9,'Makeup Effects'),(283384,1417919,6,'Sound Effects Editor'),(283384,1418431,6,'Sound Effects Editor'),(283384,1418443,5,'Digital Intermediate'),(283384,1429300,3,'Producer'),(283384,1429301,1,'Director of Photography'),(283384,1429320,7,'Assistant Art Director'),(283384,1429321,6,'Sound Re-Recording Mixer'),(283384,1429322,1,'Steadicam Operator'),(283384,1429323,5,'First Assistant Editor'),(283384,1429324,9,'Transportation Coordinator'),(283384,1429325,9,'Picture Car Coordinator'),(283384,1429326,9,'Unit Publicist'),(283384,1429327,3,'Location Manager'),(283384,1429330,7,'Construction Coordinator'),(283384,1429331,9,'Property Master'),(283384,1429332,8,'Hairstylist'),(283384,1429333,8,'Hairstylist'),(283384,1429334,11,'Gaffer'),(283384,1429335,9,'Second Unit Cinematographer'),(283384,1840492,2,'First Assistant Director'),(283384,1840493,3,'Production Coordinator'),(433715,1734565,2,'Director'),(433715,1734566,4,'Writer'),(433715,1734567,4,'Writer'),(309425,22055,3,'Casting'),(309425,113045,6,'Foley'),(309425,113090,6,'Foley'),(309425,94471,2,'Director'),(309425,109016,4,'Screenplay'),(309425,109017,4,'Screenplay'),(309425,116431,3,'Producer'),(309425,225346,7,'Production Design'),(309425,584292,3,'Producer'),(309425,937340,3,'Producer'),(309425,1085779,6,'Music'),(309425,1085785,3,'Producer'),(309425,1152737,3,'Producer'),(309425,1399875,1,'Steadicam Operator'),(309425,1413092,6,'Dialogue Editor'),(309425,1444033,3,'ADR Voice Casting'),(309425,1451529,6,'Sound Designer'),(309425,1473445,6,'Sound Re-Recording Mixer'),(309425,1494297,7,'Set Decoration'),(309425,1494298,5,'Editor'),(309425,1521492,9,'Special Effects Coordinator'),(309425,1535550,1,'Director of Photography'),(309425,1592664,8,'Key Makeup Artist'),(309425,1609859,6,'Sound Editor'),(309425,1722234,7,'Art Direction'),(309425,1742761,3,'Casting'),(309425,1826528,10,'Visual Effects Supervisor'),(309425,1830062,1,'Key Grip'),(309425,1878370,3,'Producer'),(309425,1878371,2,'Script Supervisor'),(309425,1878372,3,'ADR Voice Casting'),(309425,1878373,1,'Camera Operator'),(309425,1878374,1,'Dolly Grip'),(309425,1878376,8,'Key Hair Stylist'),(43610,8623,4,'Screenplay'),(43610,9058,5,'Editor'),(43610,14678,1,'Director of Photography'),(43610,70045,4,'Screenplay'),(43610,72066,6,'Original Music Composer'),(43610,74878,2,'Director'),(43610,89906,3,'Producer'),(43610,129674,4,'Theatre Play'),(360339,1413504,2,'Director'),(360339,1511466,4,'Writer'),(297621,1385666,4,'Screenplay'),(297621,1385666,2,'Director'),(364083,92376,6,'Foley'),(364083,1477006,3,'Executive Producer'),(364083,1523137,2,'Director'),(364083,1523137,3,'Producer'),(364083,1523137,4,'Writer'),(364083,1523140,1,'Director of Photography'),(364083,1523141,5,'Editor'),(69640,106458,3,'Location Manager'),(69640,116832,2,'Director'),(69640,226533,4,'Writer'),(347548,295591,6,'Foley'),(347548,1380862,6,'Supervising Sound Editor'),(347548,1394994,3,'Casting'),(347548,1419218,6,'Sound Re-Recording Mixer'),(347548,1422585,6,'Music'),(347548,1427118,3,'Casting'),(347548,1535032,5,'Editor'),(347548,1560279,2,'Director'),(347548,1560279,4,'Story'),(347548,1560280,4,'Screenplay'),(347548,1569445,1,'Still Photographer'),(347548,1580612,6,'Sound Effects Editor'),(347548,1642009,3,'Producer'),(347548,1642011,3,'Producer'),(347548,1642012,3,'Producer'),(347548,1642013,1,'Director of Photography'),(347548,1642014,7,'Art Direction'),(347548,1642016,7,'Production Design'),(347548,1642018,8,'Costume Design'),(347548,1642020,2,'Script Supervisor'),(347548,1642021,11,'Gaffer'),(347548,1642022,9,'Second Unit Cinematographer'),(347548,1642023,1,'Still Photographer'),(347548,1642024,1,'Still Photographer'),(347548,1642025,1,'Still Photographer'),(347548,1642026,10,'Special Effects Supervisor'),(347548,1642028,9,'Sound Recordist'),(347548,1642029,8,'Makeup Artist'),(347548,1642030,8,'Makeup Artist'),(347548,1642031,8,'Makeup Artist'),(347548,1642032,8,'Makeup Artist'),(347548,1642033,8,'Makeup Designer'),(322443,3114,1,'Director of Photography'),(322443,31627,9,'Second Unit Cinematographer'),(322443,52377,3,'Producer'),(322443,56639,3,'Casting'),(322443,60408,7,'Production Design'),(322443,126156,6,'Sound Re-Recording Mixer'),(322443,967827,4,'Writer'),(322443,1021206,3,'Casting'),(322443,1052872,10,'Visual Effects Producer'),(322443,1052872,10,'Special Effects Supervisor'),(322443,1176357,3,'Casting'),(322443,1193191,3,'Producer'),(322443,1325648,8,'Costume Supervisor'),(322443,1346943,10,'Special Effects Supervisor'),(322443,1346946,10,'Visual Effects Supervisor'),(322443,1346949,9,'Stunt Coordinator'),(322443,1388653,2,'Director'),(322443,1388653,4,'Writer'),(322443,1388653,5,'Editor'),(322443,1399565,1,'Steadicam Operator'),(322443,1401176,8,'Key Hair Stylist'),(322443,1401196,1,'Still Photographer'),(322443,1401197,1,'Camera Operator'),(322443,1402558,6,'Sound Effects Editor'),(322443,1407677,8,'Makeup Artist'),(322443,1407677,8,'Makeup Designer'),(322443,1409403,11,'Gaffer'),(322443,1427850,2,'Script Supervisor'),(322443,1467334,5,'Editor'),(322443,1540844,8,'Costume Design'),(322443,1540864,7,'Art Direction'),(322443,1542341,8,'Makeup Artist'),(322443,1543690,7,'Set Designer'),(322443,1615074,4,'Writer'),(322443,1615075,6,'Music'),(322443,1615076,7,'Set Decoration'),(322443,1615077,2,'Script Supervisor'),(322443,1615079,1,'First Assistant Camera'),(322443,1615080,1,'First Assistant Camera'),(322443,1615081,6,'Sound Re-Recording Mixer'),(322443,1627136,7,'Assistant Art Director'),(322443,1627138,9,'Armorer'),(270303,62778,3,'Casting'),(270303,76674,9,'Stunt Coordinator'),(270303,463602,1,'Director of Photography'),(270303,558929,4,'Screenplay'),(270303,558929,2,'Director'),(270303,937872,3,'Producer'),(270303,971868,5,'Editor'),(270303,1099032,3,'Producer'),(270303,1151493,7,'Art Direction'),(270303,1204004,7,'Production Design'),(270303,1375918,6,'Supervising Sound Editor'),(270303,1397714,3,'Producer'),(270303,1397716,3,'Casting'),(270303,1397717,3,'Producer'),(270303,1397724,8,'Costume Design'),(270303,1399875,1,'Steadicam Operator'),(270303,1402503,11,'Gaffer'),(270303,1404196,5,'Digital Intermediate'),(270303,1415093,5,'Digital Intermediate'),(270303,1435645,10,'Visual Effects Producer'),(270303,1435646,10,'Visual Effects Producer'),(270303,1460741,8,'Makeup Department Head'),(270303,1462037,10,'Visual Effects Producer'),(270303,1462038,10,'Visual Effects Supervisor'),(270303,1483629,6,'Music'),(270303,1483631,8,'Hairstylist'),(270303,1483632,8,'Hairstylist'),(270303,1483635,9,'Second Unit Cinematographer'),(270303,1483637,2,'Script Supervisor'),(92182,640,2,'Director'),(92182,642,2,'Director'),(92182,642,4,'Writer'),(92182,642,3,'Producer'),(92182,2863,6,'Music'),(92182,230691,3,'Producer'),(92182,542246,4,'Writer'),(72213,78040,2,'Director'),(72213,78040,4,'Writer'),(72213,430997,4,'Writer'),(55604,8619,6,'Original Music Composer'),(55604,3648,7,'Set Decoration'),(55604,14681,8,'Hairstylist'),(55604,9057,1,'Director of Photography'),(55604,9058,5,'Editor'),(55604,9062,7,'Art Direction'),(55604,9063,7,'Set Decoration'),(55604,9064,8,'Costume Design'),(55604,10004,3,'Producer'),(55604,10010,7,'Set Decoration'),(55604,10796,8,'Makeup Artist'),(55604,27969,6,'Sound'),(55604,29618,4,'Screenplay'),(55604,29984,9,'Special Effects'),(55604,50302,4,'Story'),(55604,82413,2,'Director'),(55604,103050,1,'Director of Photography'),(55604,121150,5,'Editor'),(55604,1312999,2,'Assistant Director'),(55604,1534172,7,'Set Decoration'),(39013,5328,3,'Casting'),(39013,7439,7,'Production Design'),(39013,19689,3,'Casting'),(39013,53712,6,'Original Music Composer'),(39013,53713,5,'Editor'),(39013,115563,4,'Novel'),(39013,121873,4,'Screenplay'),(39013,121873,2,'Director'),(39013,961347,4,'Screenplay'),(39013,962851,8,'Costume Design'),(39013,1078304,5,'Digital Intermediate'),(39013,1163706,1,'Director of Photography'),(39013,1163710,7,'Set Decoration'),(43839,874,7,'Art Direction'),(43839,8503,6,'Music Director'),(43839,8509,8,'Costume Design'),(43839,10603,5,'Editor'),(43839,14646,4,'Screenplay'),(43839,29637,7,'Art Direction'),(43839,30176,4,'Writer'),(43839,37362,2,'Director'),(43839,98501,9,'Cinematography'),(43839,105452,4,'Writer'),(43839,1192600,4,'Adaptation'),(44639,22047,6,'Original Music Composer'),(44639,30384,3,'Executive Producer'),(44639,74058,2,'Director'),(44639,74058,3,'Producer'),(44639,96126,3,'Executive Producer'),(44639,216642,6,'Sound mixer'),(44639,225599,5,'Editor'),(44639,225599,4,'Writer'),(44639,225600,5,'Editor'),(44639,225600,4,'Writer'),(44639,232153,3,'Producer'),(44639,232154,3,'Producer'),(44639,232155,3,'Producer'),(44639,232156,1,'Director of Photography'),(44639,232157,1,'Director of Photography'),(44639,232158,6,'Music Supervisor'),(44639,232159,6,'Sound mixer'),(44639,232160,6,'Sound mixer'),(44639,232161,11,'Gaffer'),(44639,232162,11,'Gaffer'),(44639,232163,11,'Gaffer'),(44639,232164,11,'Gaffer'),(44639,232165,11,'Gaffer'),(44639,232166,11,'Gaffer'),(44639,232167,1,'Grip'),(44639,232168,1,'Grip'),(44639,232169,1,'Grip'),(44639,232170,1,'Grip'),(44639,232171,1,'Grip'),(44639,232172,1,'Grip'),(44639,232173,1,'Grip'),(301351,2236,3,'Producer'),(301351,2238,3,'Producer'),(301351,1023389,4,'Screenplay'),(301351,1182914,5,'Editor'),(301351,1194884,9,'Cinematography'),(301351,1257827,2,'Director'),(301351,1257827,4,'Screenplay'),(331190,2095,3,'Executive Producer'),(331190,17233,5,'Editor'),(331190,35013,3,'Producer'),(331190,52094,2,'Director'),(331190,60440,4,'Screenplay'),(331190,60440,3,'Executive Producer'),(331190,60504,3,'Casting'),(331190,99435,3,'Executive Producer'),(331190,119406,3,'Executive Producer'),(331190,137994,3,'Producer'),(331190,202003,3,'Producer'),(331190,559901,3,'Producer'),(331190,929145,6,'Original Music Composer'),(331190,958014,7,'Production Design'),(331190,1052537,6,'Music Supervisor'),(331190,1277673,6,'Sound Re-Recording Mixer'),(331190,1277674,9,'Sound Recordist'),(331190,1322405,9,'Property Master'),(331190,1336431,8,'Key Hair Stylist'),(331190,1354931,3,'Producer'),(331190,1372633,5,'Dialogue Editor'),(331190,1389425,6,'Foley'),(331190,1399625,3,'Co-Producer'),(331190,1421236,8,'Hair Department Head'),(331190,1421250,9,'Second Unit Cinematographer'),(331190,1482740,4,'Book'),(331190,1490792,10,'Visual Effects Supervisor'),(331190,1512767,1,'Director of Photography'),(331190,1537536,3,'Producer'),(331190,1543195,8,'Makeup Artist'),(331190,1545419,9,'Special Effects Coordinator'),(331190,1558804,7,'Art Direction'),(331190,1558805,7,'Set Decoration'),(331190,1558806,8,'Costume Design'),(331190,1558807,3,'Associate Producer'),(331190,1558808,3,'Executive Producer'),(331190,1568906,7,'Art Department Coordinator'),(331190,1568908,7,'Art Department Coordinator'),(331190,1568910,10,'Visual Effects Producer'),(331190,1568911,11,'Rigging Gaffer'),(331190,1568913,8,'Set Costumer'),(331190,1568914,8,'Set Costumer'),(331190,1568916,1,'First Assistant Camera'),(331190,1568917,6,'Sound Effects Editor'),(331190,1568918,6,'Sound Re-Recording Mixer'),(331190,1568922,8,'Hair Department Head'),(331190,1568924,8,'Hairstylist'),(331190,1568929,8,'Makeup Department Head'),(250124,13064,3,'Casting'),(250124,17450,3,'Producer'),(250124,70323,5,'Editor'),(250124,62863,3,'Executive Producer'),(250124,64227,1,'Director of Photography'),(250124,66263,3,'Producer'),(250124,81963,7,'Production Design'),(250124,113844,6,'Music Supervisor'),(250124,128616,3,'Producer'),(250124,177532,2,'Director'),(250124,177532,4,'Screenplay'),(250124,932180,3,'Line Producer'),(250124,932180,3,'Co-Producer'),(250124,1143384,3,'Executive Producer'),(250124,1377502,1,'Still Photographer'),(250124,1494216,7,'Set Decoration'),(250124,1534670,4,'Novel'),(250124,1534671,5,'Editor'),(250124,1534672,8,'Costume Design'),(250124,1534673,6,'Original Music Composer'),(250124,1534674,7,'Art Direction'),(250124,1534675,2,'Script Supervisor'),(250124,1561258,3,'Producer'),(250124,1561509,3,'Executive Producer'),(250124,1583889,3,'Co-Producer'),(250124,1583890,3,'Associate Producer'),(250124,1583891,3,'Executive Producer'),(57120,9417,6,'Supervising Sound Editor'),(57120,9441,6,'Foley'),(57120,15426,3,'Casting'),(57120,20487,3,'Producer'),(57120,56765,6,'Sound Designer'),(57120,47099,3,'Producer'),(57120,54900,8,'Costume Design'),(57120,56383,2,'Director'),(57120,56383,5,'Editor'),(57120,96128,8,'Makeup Department Head'),(57120,225557,4,'Writer'),(57120,957598,7,'Production Design'),(57120,1015883,6,'Music'),(57120,1084983,1,'Director of Photography'),(57120,1396793,6,'Foley'),(57120,1405242,5,'Digital Intermediate'),(57120,1434906,1,'Camera Operator'),(57120,1436322,1,'Still Photographer'),(57120,1437313,5,'Digital Intermediate'),(57120,1516456,3,'Casting Associate'),(57120,1546357,1,'First Assistant Camera'),(57120,1571004,7,'Art Direction'),(57120,1583644,3,'Producer'),(57120,1583645,3,'Producer'),(57120,1583648,3,'Casting'),(57120,1583648,1,'Still Photographer'),(57120,1583649,2,'Script Supervisor'),(57120,1583649,5,'First Assistant Editor'),(57120,1583650,1,'Still Photographer'),(57120,1583651,11,'Gaffer'),(57120,1583652,5,'First Assistant Editor'),(57120,1583653,8,'Key Hair Stylist'),(57120,1583654,8,'Makeup Artist'),(55561,145134,2,'Director'),(42889,120246,2,'Director'),(42889,120247,2,'Director'),(273899,6046,2,'Director'),(273899,69697,4,'Screenplay'),(273899,1275131,1,'Director of Photography'),(273899,1519867,2,'Script Supervisor'),(67373,1016108,4,'Writer'),(67373,1736589,2,'Director'),(67373,1736589,4,'Writer'),(171759,125637,1,'Director of Photography'),(171759,584292,7,'Production Design'),(171759,1031536,6,'Original Music Composer'),(171759,1062889,2,'Director'),(171759,1062889,4,'Writer'),(171759,1152735,6,'Original Music Composer'),(206296,2163,2,'Director'),(206296,2163,3,'Producer'),(206296,2163,4,'Writer'),(206296,1188751,3,'Producer'),(206296,1188752,3,'Producer'),(35219,114004,2,'Director'),(35219,114004,4,'Writer'),(335866,1454563,2,'Director'),(335866,1454563,4,'Writer'),(335866,1454564,2,'Director'),(335866,1454564,4,'Writer'),(215881,19850,2,'Director'),(215881,19850,4,'Writer'),(215881,11100,5,'Editor'),(215881,990070,7,'Production Design'),(215881,1046684,1,'Director of Photography'),(215881,1200486,4,'Writer'),(215881,1200487,8,'Costume Design'),(50698,938336,3,'Producer'),(50698,938337,1,'Director of Photography'),(50698,938338,6,'Music'),(50698,938339,7,'Production Design'),(50698,938340,8,'Costume Design'),(50698,1094289,3,'Casting'),(50698,1310518,2,'Director'),(50698,1310518,4,'Writer'),(50698,1310518,5,'Editor'),(50698,1375066,2,'Director'),(50698,1375066,4,'Writer'),(50698,1375066,5,'Editor'),(50698,1397279,6,'Sound Designer'),(50698,1398155,9,'Special Effects Coordinator'),(50698,1459976,8,'Makeup Department Head'),(50698,1459977,7,'Assistant Art Director'),(115210,43145,3,'Producer'),(115210,52205,9,'Cinematography'),(115210,63371,3,'Producer'),(115210,78545,2,'Director'),(115210,78545,4,'Writer'),(115210,192539,4,'Writer'),(115210,1320132,3,'Producer'),(115210,1320133,3,'Producer'),(115210,1320136,3,'Casting'),(115210,1320140,6,'Music'),(115210,1320141,7,'Production Design'),(459488,1253596,2,'Director'),(119458,60374,3,'Casting'),(119458,190366,8,'Costume Design'),(119458,1070340,2,'Director'),(119458,1070341,4,'Writer'),(119458,1070341,3,'Producer'),(119458,1070342,3,'Executive Producer'),(119458,1070343,3,'Line Producer'),(119458,1070344,9,'Cinematography'),(119458,1070345,5,'Editor'),(119458,1070346,7,'Production Design'),(95755,897,3,'Producer'),(95755,897,3,'Casting'),(95755,5290,3,'Casting'),(95755,24953,3,'Producer'),(95755,60580,8,'Costume Design'),(95755,65816,3,'Producer'),(95755,65823,3,'Producer'),(95755,71329,2,'Director'),(95755,99601,9,'Armorer'),(95755,104718,6,'Music'),(95755,225746,5,'Editor'),(95755,1006732,4,'Writer'),(95755,1006732,4,'Novel'),(95755,1031357,3,'Casting Associate'),(95755,1148633,8,'Costume Supervisor'),(95755,1271793,9,'Special Effects Coordinator'),(95755,1340087,7,'Production Design'),(95755,1453676,8,'Set Costumer'),(95755,1530353,1,'Director of Photography'),(95755,1537467,7,'Art Direction'),(95755,1537469,7,'Set Decoration'),(95755,1537470,7,'Assistant Art Director'),(95755,1537472,1,'Camera Operator'),(95755,1537473,9,'Second Unit Cinematographer'),(95755,1537474,11,'Gaffer'),(95755,1537475,8,'Assistant Costume Designer'),(95755,1537476,9,'Armorer'),(198062,14139,9,'Cinematography'),(198062,62759,5,'Editor'),(198062,68574,2,'Director'),(198062,68574,4,'Writer'),(198062,1178365,6,'Original Music Composer'),(198062,1178366,7,'Art Direction'),(188652,1031972,2,'Director'),(188652,1031972,4,'Writer'),(174311,4234,5,'Editor'),(174311,17246,2,'Director'),(174311,17246,4,'Writer'),(174311,21969,3,'Casting'),(174311,32234,6,'Original Music Composer'),(174311,35180,3,'Producer'),(174311,52989,3,'Producer'),(174311,54244,1,'Director of Photography'),(174311,62778,3,'Casting'),(174311,436271,3,'Producer'),(174311,965294,7,'Set Decoration'),(174311,966050,3,'Producer'),(174311,1035067,7,'Production Design'),(174311,1037909,3,'Executive Producer'),(174311,1045860,8,'Costume Design'),(174311,1236175,7,'Art Direction'),(153795,16831,3,'Producer'),(153795,40508,2,'Director'),(153795,59233,3,'Producer'),(153795,184477,4,'Screenplay'),(153795,550112,3,'Producer'),(98549,4906,3,'Casting'),(98549,8890,9,'Stunt Coordinator'),(98549,13619,7,'Set Decoration'),(98549,20464,7,'Production Design'),(98549,54761,8,'Costume Design'),(98549,94309,1,'Still Photographer'),(98549,94313,3,'Producer'),(98549,94470,3,'Casting'),(98549,138291,7,'Art Direction'),(98549,543551,3,'Producer'),(98549,559323,8,'Makeup Artist'),(98549,1018660,2,'Director'),(98549,1018660,4,'Writer'),(98549,1018662,6,'Original Music Composer'),(98549,1018663,9,'Cinematography'),(98549,1018664,5,'Editor'),(98549,1018664,10,'Visual Effects Supervisor'),(98549,1372203,8,'Makeup Artist'),(98549,1372211,9,'Stunt Coordinator'),(98549,1386315,2,'First Assistant Director'),(98549,1420148,7,'Art Department Coordinator'),(98549,1425913,10,'Visual Effects Producer'),(98549,1461564,3,'Line Producer'),(98549,1520687,8,'Makeup Department Head'),(98549,1520687,8,'Hair Department Head'),(98549,1520688,8,'Hairstylist'),(98549,1531203,2,'Script Supervisor'),(98549,1554344,9,'Armorer'),(98549,1746222,11,'Gaffer'),(98549,1789977,5,'Assistant Editor'),(98549,1818575,3,'Production Coordinator'),(98549,1836192,7,'Property Master'),(98549,1851795,7,'Leadman'),(98549,1882579,7,'Construction Coordinator'),(98549,1882580,9,'Carpenter'),(98549,1882586,10,'Visual Effects Supervisor'),(98549,1882594,1,'Still Photographer'),(98549,1882598,1,'Key Grip'),(98549,1882599,1,'Camera Operator'),(98549,1882602,3,'Location Manager'),(312793,1434686,2,'Director'),(312793,1434687,4,'Writer'),(309919,4869,5,'Editor'),(309919,16379,4,'Screenplay'),(309919,16379,3,'Executive Producer'),(309919,30059,3,'Line Producer'),(309919,53648,3,'Casting'),(309919,61843,6,'Original Music Composer'),(309919,33349,4,'Screenplay'),(309919,33349,2,'Director'),(309919,135997,1,'Director of Photography'),(309919,966983,8,'Costume Design'),(309919,1184221,7,'Production Design'),(309919,1382446,3,'Producer'),(309919,1496663,4,'Novel'),(309919,1498906,3,'Producer'),(309919,1498907,3,'Producer'),(309919,1498908,5,'Editor'),(309919,1498908,3,'Associate Producer'),(309919,1498909,3,'Associate Producer'),(309919,1498910,3,'Associate Producer'),(309919,1498911,3,'Co-Producer'),(309919,1498912,3,'Co-Producer'),(309919,1498913,3,'Executive Producer'),(309919,1498914,3,'Executive Producer'),(299553,16644,3,'Producer'),(299553,1378892,2,'Director'),(299553,1378893,3,'Producer'),(299553,1378894,4,'Writer'),(299553,1378895,4,'Writer'),(299553,1473963,9,'Cinematography'),(329540,45702,5,'Editor'),(329540,56452,4,'Writer'),(329540,60584,1,'Camera Operator'),(329540,115090,5,'Digital Intermediate'),(329540,129988,8,'Costume Design'),(329540,228177,2,'Director'),(329540,229833,6,'Sound Designer'),(329540,557806,9,'Stunt Coordinator'),(329540,971793,1,'Director of Photography'),(329540,1188587,7,'Production Design'),(329540,1189275,6,'Sound Designer'),(329540,1311274,3,'Casting'),(329540,1339987,7,'Greensman'),(329540,1343708,6,'Music'),(329540,1371519,5,'Digital Intermediate'),(329540,1377410,3,'Producer'),(329540,1377411,7,'Set Decoration'),(329540,1377412,9,'Property Master'),(329540,1377416,6,'Supervising Sound Editor'),(329540,1377417,9,'Special Effects Coordinator'),(329540,1377419,6,'Music Editor'),(329540,1395709,6,'Sound Re-Recording Mixer'),(329540,1396342,1,'Still Photographer'),(329540,1437193,6,'ADR & Dubbing'),(329540,1437193,5,'Dialogue Editor'),(329540,1441221,7,'Construction Coordinator'),(329540,1478412,7,'Art Direction'),(329540,1478413,7,'Set Designer'),(329540,1478420,5,'First Assistant Editor'),(49020,465,3,'Executive Producer'),(49020,7399,3,'Executive Producer'),(49020,10969,3,'Casting'),(49020,11114,5,'Editor'),(49020,40814,6,'ADR Editor'),(49020,53896,3,'Executive Producer'),(49020,20465,8,'Costume Design'),(49020,22302,3,'Executive Producer'),(49020,34883,3,'Executive Producer'),(49020,41543,8,'Makeup Artist'),(49020,43398,3,'Executive Producer'),(49020,46284,7,'Production Design'),(49020,62354,1,'Director of Photography'),(49020,70522,3,'Executive Producer'),(49020,70524,3,'Producer'),(49020,98103,2,'Director'),(49020,98103,4,'Writer'),(49020,566791,4,'Novel'),(49020,566791,4,'Script Consultant'),(49020,967482,5,'Editor'),(49020,1011834,7,'Art Direction'),(49020,1029332,6,'Original Music Composer'),(49020,1035714,3,'Executive Producer'),(49020,1120753,3,'Producer'),(49020,1127666,3,'Producer'),(49020,1127667,3,'Producer'),(49020,1127668,3,'Producer'),(49020,1127669,3,'Executive Producer'),(49020,1127670,3,'Line Producer'),(49020,1156461,6,'Dialogue Editor'),(49020,1337419,6,'Music Editor'),(49020,1338218,7,'Property Master'),(49020,1393551,9,'Stunt Coordinator'),(49020,1405199,2,'Script Supervisor'),(49020,1419218,6,'Sound Effects Editor'),(49020,1419222,1,'Still Photographer'),(49020,1426336,1,'Camera Operator'),(49020,1578868,11,'Gaffer'),(49020,1580461,8,'Costume Supervisor'),(49020,1651927,7,'Set Decoration'),(49020,1818527,9,'Dialect Coach'),(49020,1824241,2,'First Assistant Director'),(49020,1841574,6,'Music Supervisor'),(49020,1877386,8,'Hair Designer'),(49020,1877386,8,'Makeup Designer'),(49020,1877389,8,'Makeup Artist'),(49020,1877398,7,'Set Dresser'),(49020,1877404,6,'Foley Editor'),(49020,1877411,5,'First Assistant Editor'),(49020,1877412,3,'Location Manager'),(49020,1877417,3,'Production Coordinator'),(159037,53661,5,'Editor'),(159037,53661,1,'Camera Operator'),(159037,115892,2,'Director'),(159037,175275,5,'Editor'),(159037,966343,3,'Producer'),(159037,966343,3,'Executive Producer'),(159037,966343,9,'Cinematography'),(159037,1140481,3,'Executive Producer'),(157293,53677,3,'Producer'),(157293,233068,3,'Producer'),(157293,545639,6,'Music'),(157293,550327,4,'Writer'),(157293,1113239,9,'Cinematography'),(157293,1170143,2,'Director'),(157293,1170143,4,'Story'),(157293,1279372,6,'Music'),(157293,1457344,9,'Additional Dialogue'),(356987,1108711,2,'Director'),(356987,1502558,4,'Writer'),(295886,15758,3,'Executive Producer'),(295886,68754,3,'Executive Producer'),(295886,84107,3,'Executive Producer'),(295886,121473,2,'Director'),(295886,121473,4,'Writer'),(295886,1046543,3,'Producer'),(295886,1186724,3,'Producer'),(295886,1186724,3,'Executive Producer'),(295886,1423435,3,'Producer'),(295886,1423437,3,'Producer'),(295886,1423438,3,'Producer'),(295886,1513813,3,'Executive Producer'),(38358,15219,3,'Producer'),(38358,16847,3,'Producer'),(38358,19659,6,'Music'),(38358,58846,3,'Producer'),(38358,120245,2,'Director'),(38358,120246,4,'Writer'),(38358,120247,4,'Writer'),(38358,967203,3,'Casting'),(38358,1014942,8,'Costume Design'),(38358,1046534,9,'Cinematography'),(84175,5873,3,'Executive Producer'),(84175,53713,5,'Editor'),(84175,223516,2,'Director'),(84175,223516,4,'Writer'),(84175,223516,6,'Original Music Composer'),(84175,966515,7,'Production Design'),(84175,1054098,7,'Art Direction'),(84175,1055231,4,'Writer'),(84175,1055232,3,'Producer'),(84175,1055233,3,'Producer'),(84175,1055234,3,'Producer'),(84175,1118557,1,'Director of Photography'),(84175,1118582,8,'Costume Design'),(84175,1132576,9,'Scenic Artist'),(84175,1149913,7,'Set Decoration'),(84175,1155138,5,'Editor'),(84175,1155140,6,'Original Music Composer'),(62677,6510,3,'Executive Producer'),(62677,6511,3,'Executive Producer'),(62677,7435,6,'Original Music Composer'),(62677,17598,1,'Director of Photography'),(62677,21162,7,'Set Decoration'),(62677,35060,5,'Editor'),(62677,66265,3,'Co-Producer'),(62677,94831,2,'Director'),(62677,94831,4,'Writer'),(62677,243207,3,'Producer'),(62677,957622,3,'Casting'),(62677,1017236,3,'Casting'),(62677,1023713,8,'Costume Design'),(62677,1403392,7,'Art Direction'),(62677,1517814,3,'Casting'),(62677,1517815,7,'Production Design'),(62677,1517816,3,'Producer'),(62677,1517817,3,'Co-Producer'),(62677,1517818,3,'Associate Producer'),(62677,1517819,3,'Associate Producer'),(62677,1517820,3,'Associate Producer'),(50875,21657,2,'Director'),(260778,581195,3,'Producer'),(260778,584851,3,'Producer'),(260778,585344,6,'Original Music Composer'),(260778,588015,4,'Screenplay'),(260778,588015,2,'Director'),(260778,588015,4,'Dialogue'),(260778,588015,4,'Story'),(260778,1124458,1,'Director of Photography'),(260778,1143559,9,'Choreographer'),(260778,1325428,9,'Stunts Coordinator'),(260778,1332920,5,'Editor'),(260778,1337026,9,'Stunts Coordinator'),(260778,1391958,5,'Assistant Editor'),(260778,1663244,7,'Art Direction'),(260778,1687890,4,'Screenplay'),(58492,57492,2,'Director'),(58492,57492,4,'Writer'),(44562,196769,2,'Director'),(37232,115309,2,'Director'),(37232,115309,4,'Writer'),(36334,3632,2,'Director'),(36334,3632,4,'Writer'),(36334,10602,1,'Director of Photography'),(36334,11438,3,'Producer'),(36334,14647,6,'Original Music Composer'),(36334,22096,5,'Editor'),(36334,30922,6,'Original Music Composer'),(386826,63150,4,'Writer'),(386826,63169,4,'Writer'),(386826,94917,2,'Director'),(386826,94917,4,'Writer'),(386826,1001718,1,'Director of Photography'),(386826,1155471,6,'Original Music Composer'),(386826,1639312,5,'Editor'),(205126,1020851,4,'Writer'),(205126,1187609,2,'Director'),(205126,1284681,4,'Writer'),(98557,74198,8,'Makeup Artist'),(98557,586136,3,'Producer'),(98557,1018699,2,'Director'),(98557,1018700,4,'Writer'),(98557,1018703,3,'Executive Producer'),(98557,1018705,9,'Cinematography'),(98557,1018706,3,'Casting'),(98557,1018708,7,'Production Design'),(98557,1018710,8,'Costume Design'),(98557,1018712,6,'Sound Designer'),(98557,1241977,3,'Producer'),(246449,115585,2,'Director'),(246449,115585,4,'Writer'),(43947,88039,2,'Director'),(43947,42367,3,'Producer'),(43947,42368,3,'Producer'),(43947,93410,4,'Story'),(43947,93410,3,'Executive Producer'),(43947,101623,6,'Original Music Composer'),(43947,105009,5,'Editor'),(43947,130238,3,'Casting'),(43947,175183,9,'Makeup Effects'),(43947,235283,4,'Screenplay'),(43947,235286,1,'Director of Photography'),(43947,955396,8,'Costume Design'),(43947,1265230,9,'Makeup Effects'),(191714,45738,1,'Director of Photography'),(191714,46266,6,'Original Music Composer'),(191714,66985,5,'Editor'),(191714,1117026,2,'Director'),(191714,1117026,4,'Writer'),(191714,1322645,3,'Casting'),(191714,1389933,8,'Costume Design'),(191714,1389934,7,'Production Design'),(206284,1156260,2,'Director'),(206284,1156260,4,'Writer'),(66468,155747,2,'Director'),(66468,1039984,4,'Writer'),(283686,3657,8,'Costume Design'),(283686,16984,5,'Editor'),(283686,17003,3,'Producer'),(283686,17603,3,'Producer'),(283686,51897,6,'Music'),(283686,77125,4,'Writer'),(283686,94220,4,'Writer'),(283686,94222,4,'Writer'),(283686,969241,3,'Producer'),(283686,969242,3,'Producer'),(283686,1031748,3,'Casting'),(283686,1143001,1,'Camera Operator'),(283686,1211204,6,'Music Editor'),(283686,1323112,7,'Production Design'),(283686,1346215,2,'Director'),(283686,1381236,6,'Foley'),(283686,1400474,6,'Sound Re-Recording Mixer'),(283686,1400476,6,'Dolby Consultant'),(283686,1405361,6,'Sound Designer'),(283686,1405362,6,'Sound Designer'),(283686,1405362,6,'Supervising Sound Editor'),(283686,1439846,1,'Director of Photography'),(283686,1492133,8,'Costume Supervisor'),(283686,1511601,7,'Set Decoration'),(283686,1528707,10,'Animation'),(283686,1572874,5,'Dialogue Editor'),(283686,1582725,7,'Art Direction'),(283686,1582728,7,'Art Department Coordinator'),(283686,1582729,7,'Construction Coordinator'),(283686,1582733,2,'Script Supervisor'),(283686,1582735,11,'Gaffer'),(283686,1582736,10,'Visual Effects Producer'),(283686,1582741,6,'Sound Effects Editor'),(283686,1582744,5,'Digital Intermediate'),(283686,1582745,8,'Makeup Artist'),(283686,1582746,8,'Makeup Designer'),(74084,231345,2,'Director'),(74084,231345,4,'Writer'),(298584,16847,3,'Executive Producer'),(298584,16847,4,'Original Story'),(298584,22239,2,'Director'),(298584,30065,9,'Makeup Effects'),(298584,59883,3,'Producer'),(298584,64058,3,'Executive Producer'),(298584,69803,4,'Screenplay'),(298584,69803,9,'Script'),(298584,69804,3,'Co-Executive Producer'),(298584,69806,3,'Co-Executive Producer'),(298584,94451,3,'Co-Executive Producer'),(298584,227228,3,'Line Producer'),(298584,227228,3,'Co-Producer'),(298584,956271,3,'Casting'),(298584,966927,1,'Director of Photography'),(298584,1011113,3,'Executive Producer'),(298584,1053661,3,'Co-Executive Producer'),(298584,1069713,7,'Production Design'),(298584,1069713,7,'Set Decoration'),(298584,1116092,3,'Executive Producer'),(298584,1116280,6,'Original Music Composer'),(298584,1125682,3,'Casting'),(298584,1169304,9,'Makeup Effects'),(298584,1169529,1,'Camera Operator'),(298584,1199826,3,'Producer'),(298584,1295448,3,'Co-Executive Producer'),(298584,1319446,8,'Costume Supervisor'),(298584,1375905,3,'Producer'),(298584,1375918,6,'Sound Re-Recording Mixer'),(298584,1404196,5,'Digital Intermediate'),(298584,1434899,9,'Makeup Effects'),(298584,1474174,3,'Co-Executive Producer'),(298584,1481334,5,'Editor'),(298584,1577696,3,'Executive Producer'),(298584,1577697,3,'Executive Producer'),(298584,1577698,8,'Costume Design'),(298584,1583134,5,'Dialogue Editor'),(298584,1583135,6,'Sound Designer'),(298584,1619730,9,'Armorer'),(298584,1619731,6,'Music Editor'),(298584,1619732,6,'Music Supervisor'),(298584,1619733,8,'Set Costumer'),(298584,1619734,3,'Casting'),(298584,1619735,3,'Casting Associate'),(298584,1619736,1,'First Assistant Camera'),(298584,1619737,1,'Still Photographer'),(298584,1619738,11,'Gaffer'),(298584,1619739,10,'Visual Effects Supervisor'),(298584,1619741,6,'Sound Re-Recording Mixer'),(298584,1619742,9,'Property Master'),(298584,1619743,8,'Key Hair Stylist'),(298584,1619744,8,'Makeup Artist'),(298584,1619745,9,'Makeup Effects'),(298584,1619746,9,'Makeup Effects'),(298584,1619750,9,'Makeup Effects'),(308529,9196,3,'Producer'),(308529,57082,2,'Director'),(308529,15111,4,'Characters'),(308529,41355,4,'Writer'),(308529,41355,3,'Producer'),(308529,64681,4,'Characters'),(308529,77806,3,'Producer'),(308529,1165329,5,'Editor'),(308529,1377461,5,'Editor'),(308529,1380048,6,'Original Music Composer'),(308529,1427887,4,'Writer'),(308529,1587448,3,'Producer'),(308529,1590203,3,'Co-Producer'),(308529,1654830,3,'Producer'),(308529,1756363,9,'Cinematography'),(308529,1756364,3,'Producer'),(308529,1756365,3,'Producer'),(49018,2127,2,'Director'),(49018,2127,5,'Editor'),(49018,2128,4,'Writer'),(49018,9545,3,'Casting'),(49018,26714,1,'Director of Photography'),(49018,51613,3,'Producer'),(49018,62813,5,'Editor'),(49018,73417,6,'Original Music Composer'),(49018,90591,3,'Producer'),(49018,995456,3,'Producer'),(49018,999763,3,'Executive Producer'),(49018,1003253,1,'Director of Photography'),(49018,1183915,8,'Costume Design'),(49018,1276602,3,'Casting'),(127918,1085923,2,'Director'),(129139,113844,6,'Music Supervisor'),(129139,465763,4,'Screenplay'),(129139,928346,8,'Costume Design'),(129139,929987,1,'Director of Photography'),(129139,947095,5,'Editor'),(129139,1002643,7,'Production Design'),(129139,1002644,7,'Art Direction'),(129139,1088647,2,'Director'),(129139,1107429,3,'Producer'),(129139,1108587,7,'Set Decoration'),(129139,1190760,8,'Hair Department Head'),(129139,1401501,1,'Camera Operator'),(129139,1423258,8,'Makeup Department Head'),(129139,1534693,1,'Still Photographer'),(323271,1501366,2,'Director'),(66025,550858,2,'Director'),(39541,880,3,'Producer'),(39541,1892,3,'Producer'),(39541,6627,3,'Producer'),(39541,25548,6,'Original Music Composer'),(39541,51983,3,'Casting'),(39541,53637,7,'Production Design'),(39541,68615,5,'Editor'),(39541,285452,2,'Director'),(39541,285452,4,'Writer'),(39541,935475,9,'Cinematography'),(51820,66116,2,'Director'),(291362,76245,2,'Director'),(291362,76245,4,'Writer'),(291362,76245,3,'Producer'),(291362,76248,2,'Director'),(291362,76248,4,'Writer'),(291362,76248,3,'Producer'),(291362,1099734,3,'Line Producer'),(291362,1261365,6,'Original Music Composer'),(291362,1341689,3,'Producer'),(291362,1440575,3,'Co-Producer'),(291362,1440576,3,'Executive Producer'),(291362,1440578,1,'Director of Photography'),(291362,1440579,7,'Production Design'),(291362,1457670,5,'Editor'),(72913,102445,2,'Director'),(72913,102445,4,'Writer'),(104755,2325,3,'Casting'),(104755,16848,2,'Director'),(104755,16848,3,'Producer'),(104755,16848,4,'Writer'),(104755,27735,3,'Producer'),(104755,21322,5,'Editor'),(104755,21323,7,'Set Decoration'),(104755,64227,1,'Director of Photography'),(104755,84348,3,'Producer'),(104755,90591,3,'Producer'),(104755,141289,6,'Original Music Composer'),(104755,169743,7,'Production Design'),(104755,995456,3,'Producer'),(104755,995456,3,'Executive Producer'),(104755,999763,3,'Executive Producer'),(104755,1030966,3,'Associate Producer'),(104755,1125685,3,'Unit Production Manager'),(104755,1125685,3,'Associate Producer'),(104755,1190608,3,'Location Manager'),(104755,1285843,6,'Original Music Composer'),(104755,1314152,8,'Costume Design'),(104755,1324831,3,'Co-Producer'),(104755,1344842,2,'Script Supervisor'),(104755,1403498,7,'Location Scout'),(104755,1417867,3,'Production Supervisor'),(104755,1417867,3,'Production Coordinator'),(104755,1478662,3,'Associate Producer'),(104755,1651762,9,'Post Production Supervisor'),(104755,1680437,3,'Associate Producer'),(104755,1752044,6,'Music Supervisor'),(104755,1759274,3,'Associate Producer'),(104755,1836446,9,'Post Production Supervisor'),(253306,1143876,7,'Art Direction'),(253306,1174074,3,'Producer'),(253306,1271977,1,'Director of Photography'),(253306,1288796,2,'Director'),(253306,1288796,5,'Editor'),(253306,1288796,4,'Writer'),(253306,1359249,7,'Art Direction'),(253306,1375900,3,'Producer'),(253306,1375901,6,'Original Music Composer'),(253306,1375903,7,'Production Design'),(253306,1517640,7,'Production Design'),(253306,1575246,1,'Steadicam Operator'),(253306,1590253,8,'Costume Design'),(253306,1614256,1,'Still Photographer'),(253306,1656293,1,'Steadicam Operator'),(253306,1727255,7,'Art Direction'),(253306,1727256,7,'Art Direction'),(253306,1727257,7,'Set Decoration'),(253306,1727258,7,'Set Decoration'),(253306,1727259,7,'Set Decoration'),(253306,1727260,2,'Script Supervisor'),(253306,1727261,11,'Gaffer'),(253306,1727262,1,'Helicopter Camera'),(253306,1727263,1,'Steadicam Operator'),(253306,1727264,11,'Gaffer'),(253306,1727265,10,'Visual Effects Supervisor'),(46729,1375378,2,'Director'),(46729,1375378,4,'Story'),(294600,991853,2,'Director'),(294600,991853,4,'Writer'),(137347,55520,2,'Director'),(137347,55520,4,'Writer'),(290370,52044,2,'Director'),(290370,112388,4,'Writer'),(290370,147053,3,'Producer'),(290370,304528,3,'Producer'),(290370,1323117,9,'Cinematography'),(426469,1002001,2,'Director'),(426469,1819513,4,'Screenplay'),(426469,1819514,5,'Editor'),(356841,1169157,2,'Director'),(356841,1510863,4,'Writer'),(356841,1510864,4,'Writer'),(356841,1510865,4,'Writer'),(301325,61111,4,'Screenplay'),(301325,61111,2,'Director'),(301325,61111,3,'Producer'),(301325,1382445,3,'Producer'),(301325,1382446,3,'Producer'),(301325,1382448,3,'Producer'),(347755,70076,2,'Director'),(347755,70076,4,'Writer'),(44413,56208,2,'Director'),(44413,56208,4,'Screenplay'),(44413,414697,1,'Director of Photography'),(44413,978234,5,'Editor'),(44413,983358,8,'Costume Design'),(44413,1364226,7,'Set Decoration'),(44413,1801300,6,'Original Music Composer'),(44413,1801301,7,'Art Direction'),(39209,3347,4,'Screenplay'),(39209,9867,1,'Director of Photography'),(39209,12737,3,'Producer'),(39209,27342,5,'Editor'),(39209,33087,3,'Executive Producer'),(39209,45081,4,'Screenplay'),(39209,50301,4,'Novel'),(39209,51882,3,'Producer'),(39209,64114,2,'Director'),(39209,78943,4,'Screenplay'),(39209,125904,3,'Producer'),(39209,142172,6,'Original Music Composer'),(39209,590115,4,'Screenstory'),(39209,1127148,7,'Art Direction'),(48463,6818,4,'Writer'),(48463,11011,2,'Director'),(48463,11011,4,'Writer'),(394047,294813,4,'Writer'),(394047,474199,2,'Director'),(394047,474199,4,'Writer'),(394047,1077612,1,'Director of Photography'),(394047,1283653,6,'Original Music Composer'),(394047,1390112,3,'Producer'),(312791,4340,1,'Director of Photography'),(312791,9545,3,'Casting'),(312791,60891,6,'Music'),(312791,70896,3,'Producer'),(312791,80006,2,'Director'),(312791,80013,2,'Director'),(312791,966927,1,'Additional Photography'),(312791,1194884,1,'Additional Photography'),(312791,1418415,7,'Production Design'),(312791,1418416,7,'Art Direction'),(312791,1418417,7,'Set Decoration'),(312791,1418424,7,'Assistant Art Director'),(312791,1418425,7,'Construction Coordinator'),(312791,1418431,6,'Sound Effects Editor'),(312791,1418432,6,'Sound Re-Recording Mixer'),(312791,1418444,2,'Script Supervisor'),(312791,1419843,5,'Editor'),(312791,1430993,6,'Foley'),(312791,1435534,10,'Visual Effects'),(312791,1435537,1,'Camera Operator'),(312791,1444300,5,'Digital Intermediate'),(312791,1478495,3,'Producer'),(312791,1478495,4,'Writer'),(312791,1485497,5,'First Assistant Editor'),(312791,1553775,8,'Costume Design'),(312791,1582570,8,'Makeup Department Head'),(312791,1582676,9,'Property Master'),(312791,1582677,8,'Set Costumer'),(312791,1582678,6,'Music Supervisor'),(312791,1582679,1,'Steadicam Operator'),(312791,1582680,1,'First Assistant Camera'),(312791,1582681,1,'First Assistant Camera'),(312791,1582682,1,'First Assistant Camera'),(312791,1582683,5,'Dialogue Editor'),(312791,1582684,8,'Key Hair Stylist'),(312791,1582685,8,'Makeup Artist'),(312791,1582686,5,'First Assistant Editor'),(312791,1582687,11,'Gaffer'),(312791,1582688,11,'Gaffer'),(266034,6794,5,'Editor'),(266034,5268,3,'Producer'),(266034,8789,4,'Screenplay'),(266034,8789,2,'Director'),(266034,19986,1,'Director of Photography'),(266034,24534,4,'Writer'),(266034,57069,6,'Music'),(266034,1338472,4,'Screenplay'),(266034,1875106,6,'Sound Designer'),(280381,15445,6,'Music'),(280381,22012,2,'Director'),(280381,22012,9,'Cinematography'),(280381,1293997,7,'Art Direction'),(280381,1337593,3,'Producer'),(280381,1337593,4,'Writer'),(280381,1337594,4,'Writer'),(280381,1337595,5,'Editor'),(280381,1337596,7,'Production Design'),(280381,1337597,6,'Music'),(218500,86293,2,'Director'),(218500,1203223,4,'Writer'),(52790,39822,2,'Director'),(100275,166530,4,'Writer'),(100275,179266,4,'Story'),(100275,1024216,4,'Screenplay'),(100275,1024216,2,'Director'),(100275,1024216,3,'Producer'),(100275,1035176,3,'Casting'),(100275,1078982,3,'Producer'),(100275,1119430,1,'Director of Photography'),(100275,1516101,3,'Casting'),(100275,1519334,3,'Producer'),(100275,1519335,6,'Music'),(100275,1519336,5,'Editor'),(295914,1372345,4,'Screenplay'),(295914,1372345,2,'Director'),(295914,1719452,4,'Writer'),(42033,1767,5,'Editor'),(42033,19155,6,'Original Music Composer'),(42033,52194,9,'Post Production Supervisor'),(42033,144430,2,'Director'),(42033,144430,3,'Producer'),(42033,144430,4,'Writer'),(42033,198705,3,'Casting'),(42033,1109245,2,'Director'),(42033,1109245,3,'Producer'),(42033,1340915,3,'Producer'),(42033,1340918,1,'Director of Photography'),(42033,1378300,3,'Producer'),(42033,1378301,3,'Executive Producer'),(42033,1378302,3,'Executive Producer'),(42033,1378303,1,'Director of Photography'),(42033,1378304,7,'Production Design'),(42033,1378305,7,'Production Design'),(46415,85030,4,'Writer'),(46415,631226,2,'Director'),(46415,631226,4,'Writer'),(38570,68216,4,'Writer'),(38570,130051,2,'Director'),(38570,130051,4,'Writer'),(84197,133790,2,'Director'),(84197,930627,2,'Director'),(46256,932013,2,'Director'),(43266,8500,2,'Director'),(43266,8502,3,'Producer'),(43266,8503,6,'Original Music Composer'),(43266,8506,7,'Art Direction'),(43266,8508,7,'Set Decoration'),(43266,8509,8,'Costume Design'),(43266,8511,6,'Sound'),(43266,14648,1,'Director of Photography'),(43266,38250,5,'Editor'),(43266,44878,7,'Art Direction'),(43266,116326,4,'Screenplay'),(43266,145845,4,'Novel'),(43266,958515,6,'Sound'),(43266,1377159,8,'Makeup Artist'),(278316,5281,4,'Screenplay'),(278316,5281,2,'Director'),(278316,5281,3,'Producer'),(278316,5290,3,'Casting'),(278316,15524,8,'Costume Design'),(278316,228834,3,'Co-Producer'),(278316,989751,7,'Production Design'),(278316,1001932,6,'Original Music Composer'),(278316,1333660,3,'Associate Producer'),(278316,1333661,3,'Co-Producer'),(278316,1333663,5,'Editor'),(278316,1333664,7,'Set Decoration'),(39939,52049,2,'Director'),(39939,52049,4,'Writer'),(39939,52051,4,'Writer'),(39939,56251,4,'Writer'),(39939,56252,4,'Writer'),(39939,56253,4,'Writer'),(357834,1504620,2,'Director'),(357834,1504620,4,'Writer'),(215924,14196,1,'Director of Photography'),(215924,978234,5,'Editor'),(215924,1200528,4,'Screenplay'),(215924,1200528,2,'Director'),(215924,1202016,6,'Music'),(176124,15220,4,'Writer'),(176124,55441,2,'Director'),(176124,92534,3,'Casting'),(176124,1080286,4,'Writer'),(176124,1178144,4,'Writer'),(176124,1550236,6,'Sound Effects Editor'),(60400,8502,3,'Producer'),(60400,8506,7,'Art Direction'),(60400,8508,7,'Set Decoration'),(60400,8509,8,'Costume Design'),(60400,14648,1,'Director of Photography'),(60400,80570,2,'Director'),(60400,103507,7,'Art Direction'),(60400,102365,4,'Screenplay'),(60400,231003,5,'Editor'),(310569,54984,6,'Sound Designer'),(310569,111103,3,'Producer'),(310569,111104,3,'Producer'),(310569,550280,4,'Screenplay'),(310569,550280,2,'Director'),(310569,550280,3,'Producer'),(310569,1010763,7,'Production Design'),(310569,1013608,5,'Editor'),(310569,1112961,1,'Director of Photography'),(310569,1371277,3,'Producer'),(310569,1404864,6,'Sound Designer'),(310569,1432933,7,'Production Design'),(310569,1432934,6,'Original Music Composer'),(310569,1432935,6,'Original Music Composer'),(98369,440517,4,'Screenplay'),(98369,440517,2,'Director'),(98369,1018930,4,'Screenplay'),(98369,1018930,4,'Story'),(98369,1018931,4,'Screenplay'),(98369,1018931,9,'Cinematography'),(89750,135534,2,'Director'),(49951,233519,2,'Director'),(86331,17531,1,'Director of Photography'),(86331,119297,3,'Producer'),(86331,128712,4,'Screenplay'),(86331,128712,2,'Director'),(86331,228581,3,'Producer'),(86331,376760,3,'Casting Associate'),(86331,1162853,7,'Set Decoration'),(86331,1367815,6,'Supervising Sound Editor'),(86331,1407213,6,'Sound Re-Recording Mixer'),(86331,1602568,8,'Costume Design'),(86331,1631874,6,'Sound Editor'),(86331,1646101,3,'Producer'),(86331,1646102,6,'Music'),(86331,1646103,5,'Editor'),(86331,1646104,3,'Casting'),(86331,1646105,3,'Casting Associate'),(86331,1646106,8,'Assistant Costume Designer'),(86331,1646107,8,'Assistant Costume Designer'),(86331,1646108,2,'Script Supervisor'),(86331,1646109,1,'First Assistant Camera'),(86331,1646110,5,'Dialogue Editor'),(86331,1646111,9,'Sound Recordist'),(86331,1646112,9,'Sound Recordist'),(86331,1646113,8,'Makeup Department Head'),(355629,1142836,3,'Producer'),(355629,1264017,3,'Producer'),(355629,1499089,2,'Director'),(355629,1499089,3,'Producer'),(43884,3249,6,'Original Music Composer'),(43884,4109,2,'Director'),(43884,8714,1,'Director of Photography'),(43884,18800,5,'Editor'),(43884,8717,8,'Costume Design'),(43884,31967,4,'Screenplay'),(43884,142216,9,'Poem'),(43884,142217,4,'Story'),(43884,142217,4,'Screenplay'),(43884,1132129,7,'Art Direction'),(107315,1041549,2,'Director'),(107315,1041550,4,'Writer'),(59917,6847,1,'Director of Photography'),(59917,15531,4,'Screenplay'),(59917,15531,2,'Director'),(59917,17949,5,'Editor'),(59917,19743,4,'Screenplay'),(59917,65043,3,'Producer'),(59917,66100,6,'Music'),(59917,224533,4,'Novel'),(157422,33618,1,'Director of Photography'),(157422,91494,4,'Screenplay'),(157422,91494,3,'Producer'),(157422,112080,4,'Screenplay'),(157422,112080,4,'Story'),(157422,101802,3,'Associate Producer'),(157422,163642,3,'Associate Producer'),(157422,204325,2,'Director'),(157422,827378,4,'Screenplay'),(157422,827378,4,'Story'),(157422,978753,8,'Costume Design'),(157422,1138751,4,'Screenplay'),(157422,1138751,3,'Producer'),(157422,1285606,6,'Original Music Composer'),(157422,1545663,3,'Associate Producer'),(157422,1545664,3,'Associate Producer'),(157422,1545665,3,'Associate Producer'),(157422,1545666,3,'Executive Producer'),(310933,479587,2,'Director'),(39895,31621,2,'Director'),(55616,1544,4,'Novel'),(55616,97579,2,'Director'),(55616,222738,3,'Producer'),(55616,222739,4,'Writer'),(55616,222740,9,'Cinematography'),(55616,222741,5,'Editor'),(50037,37691,11,'Gaffer'),(50037,970129,1,'Director of Photography'),(50037,1044250,2,'Director'),(50037,1044250,4,'Writer'),(50037,1063979,7,'Production Design'),(50037,1085617,3,'Casting'),(50037,1389425,6,'Foley'),(50037,1407208,6,'Music Editor'),(50037,1407208,6,'Sound Designer'),(50037,1411725,6,'ADR Editor'),(50037,1411725,6,'Foley Editor'),(50037,1431022,6,'Dolby Consultant'),(50037,1438594,8,'Key Makeup Artist'),(50037,1460762,10,'Visual Effects'),(50037,1460776,5,'Digital Intermediate'),(50037,1496781,8,'Costume Design'),(50037,1511789,7,'Set Decoration'),(50037,1764738,3,'Producer'),(50037,1764739,3,'Producer'),(50037,1764740,6,'Music'),(50037,1764741,5,'Editor'),(50037,1764742,7,'Conceptual Design'),(50037,1764743,7,'Construction Coordinator'),(50037,1764744,2,'Script Supervisor'),(50037,1764749,1,'Dolly Grip'),(50037,1764750,1,'First Assistant Camera'),(50037,1764751,9,'Second Unit Cinematographer'),(50037,1764753,1,'Still Photographer'),(50037,1764754,1,'Key Grip'),(50037,1764756,10,'Special Effects Supervisor'),(50037,1764758,6,'Foley'),(50037,1764760,6,'Sound Recordist'),(50037,1764761,6,'Sound Re-Recording Mixer'),(50037,1764762,8,'Key Hair Stylist'),(50037,1764766,9,'Makeup Effects'),(50037,1764770,5,'Digital Intermediate'),(50037,1764772,5,'Digital Intermediate'),(50037,1764774,5,'Digital Intermediate'),(94329,142013,2,'Director'),(94329,142013,4,'Writer'),(94329,142013,5,'Editor'),(94329,142023,3,'Executive Producer'),(94329,142025,3,'Producer'),(94329,142026,1,'Director of Photography'),(94329,214830,6,'Original Music Composer'),(94329,1001658,3,'Executive Producer'),(94329,1001659,3,'Executive Producer'),(94329,1001660,3,'Executive Producer'),(94329,1001661,3,'Executive Producer'),(94329,1001662,3,'Executive Producer'),(94329,1098740,6,'Original Music Composer'),(94329,1127110,1,'Director of Photography'),(94329,1127111,7,'Art Direction'),(94329,1316295,3,'Casting'),(53502,24528,2,'Director'),(53502,92490,2,'Director'),(53502,92490,4,'Writer'),(202604,1184745,2,'Director'),(244776,35147,7,'Production Design'),(244776,55493,4,'Writer'),(244776,1050348,5,'Editor'),(244776,1280031,2,'Director'),(244776,1280031,4,'Writer'),(244776,1394671,8,'Costume Design'),(244776,1394672,1,'Director of Photography'),(244776,1394673,5,'Editor'),(277685,23430,3,'Producer'),(277685,84348,3,'Executive Producer'),(277685,86688,2,'Director'),(277685,583464,3,'Production Manager'),(277685,583464,3,'Location Manager'),(277685,935493,3,'Casting'),(277685,1194701,5,'Additional Editing'),(277685,1300755,6,'Sound Re-Recording Mixer'),(277685,1340318,6,'Sound Designer'),(277685,1347823,3,'Producer'),(277685,1347823,4,'Writer'),(277685,1347824,1,'Director of Photography'),(277685,1347824,3,'Co-Producer'),(277685,1347952,9,'Stunts'),(277685,1385059,3,'Co-Executive Producer'),(277685,1401857,9,'Post Production Assistant'),(277685,1412386,5,'Editor'),(277685,1423409,9,'Stunt Coordinator'),(277685,1453878,5,'Editor'),(277685,1453879,7,'Production Design'),(277685,1453880,7,'Art Direction'),(277685,1453881,8,'Costume Design'),(277685,1453882,8,'Makeup Artist'),(277685,1453883,6,'Sound mixer'),(277685,1453884,6,'Sound Engineer'),(277685,1453892,5,'Dialogue Editor'),(277685,1453893,6,'Sound Engineer'),(277685,1453894,9,'Mixing Engineer'),(277685,1453896,6,'Sound Editor'),(277685,1453896,6,'Sound Re-Recording Mixer'),(277685,1453899,6,'Boom Operator'),(277685,1453901,6,'Boom Operator'),(277685,1453903,9,'Stunts'),(277685,1453903,9,'Stand In'),(277685,1453905,9,'Stunts'),(277685,1453907,9,'Digital Producer'),(277685,1453915,9,'Production Office Assistant'),(277685,1453916,9,'Production Office Assistant'),(277685,1453917,2,'Script Supervisor'),(277685,1456598,9,'Stunts'),(277685,1491178,3,'Associate Producer'),(93856,494,3,'Casting'),(93856,1175,9,'Cinematography'),(93856,14924,10,'Visual Effects Supervisor'),(93856,28387,7,'Production Design'),(93856,53530,2,'First Assistant Director'),(93856,57857,3,'Producer'),(93856,85809,4,'Screenplay'),(93856,90591,4,'Screenplay'),(93856,90591,3,'Producer'),(93856,113784,4,'Screenplay'),(93856,181856,5,'Editor'),(93856,935493,3,'Casting Associate'),(93856,999812,2,'Director'),(93856,1054796,9,'Stunt Coordinator'),(93856,1105594,8,'Costume Design'),(93856,1105644,6,'Music'),(93856,1192700,6,'Music Supervisor'),(93856,1297858,10,'Visual Effects Coordinator'),(93856,1335138,7,'Set Decoration'),(93856,1335140,9,'Makeup Effects'),(93856,1335142,9,'Property Master'),(93856,1335143,9,'Property Master'),(93856,1335144,7,'Art Department Coordinator'),(93856,1335145,7,'Construction Coordinator'),(93856,1335146,6,'Sound mixer'),(93856,1335147,6,'Sound Effects Editor'),(93856,1335148,9,'Special Effects'),(93856,1335149,9,'Special Effects Coordinator'),(93856,1335150,9,'Visual Effects Editor'),(93856,1335151,10,'Visual Effects Supervisor'),(93856,1335152,10,'Visual Effects Producer'),(93856,1335153,3,'Casting'),(93856,1335154,3,'Casting'),(93856,1335155,8,'Costume Supervisor'),(93856,1335156,5,'Color Timer'),(93856,1335157,9,'Transportation Coordinator'),(93856,1335157,9,'Picture Car Coordinator'),(93856,1335158,9,'Transportation Captain'),(93856,1350236,5,'Dialogue Editor'),(93856,1350237,6,'Sound Effects Editor'),(93856,1374792,11,'Gaffer'),(93856,1389134,6,'Sound Designer'),(93856,1392126,6,'Foley'),(93856,1392969,6,'Sound Re-Recording Mixer'),(93856,1408316,6,'ADR & Dubbing'),(93856,1409863,8,'Hairstylist'),(93856,1409864,8,'Hairstylist'),(93856,1409865,8,'Makeup Artist'),(93856,1409867,3,'Production Manager'),(93856,1409868,3,'Production Manager'),(93856,1409869,7,'Leadman'),(93856,1409870,9,'Stunt Coordinator'),(93856,1409871,1,'Camera Operator'),(93856,1409872,1,'Still Photographer'),(93856,1409873,1,'Additional Photography'),(93856,1409874,11,'Gaffer'),(93856,1409875,5,'Digital Intermediate'),(93856,1409876,5,'First Assistant Editor'),(93856,1409877,6,'Music Editor'),(93856,1409878,3,'Location Manager'),(93856,1409879,2,'Script Supervisor'),(93856,1409880,3,'Location Manager'),(93856,1539442,8,'Seamstress'),(93856,1547193,10,'Visual Effects Coordinator'),(93856,1547196,6,'Music Supervisor'),(93856,1547197,9,'Armorer'),(93856,1547198,11,'Best Boy Electric'),(93856,1857017,8,'Key Costumer'),(93856,1857019,3,'Production Coordinator'),(347126,22055,3,'Casting'),(347126,109016,4,'Writer'),(347126,109017,4,'Writer'),(347126,937340,2,'Director'),(347126,1494298,5,'Editor'),(347126,1494299,8,'Costume Design'),(347126,1535550,9,'Cinematography'),(347126,1742761,3,'Casting'),(347126,1779166,7,'Production Design'),(46705,1812,3,'Executive Producer'),(46705,30614,3,'Executive Producer'),(46705,53071,3,'Executive Producer'),(46705,53073,3,'Producer'),(46705,53077,3,'Producer'),(46705,53078,3,'Producer'),(46705,53649,1,'Director of Photography'),(46705,64058,3,'Executive Producer'),(46705,73991,3,'Executive Producer'),(46705,119179,3,'Casting'),(46705,139098,2,'Director'),(46705,139098,4,'Screenplay'),(46705,549018,4,'Screenplay'),(46705,964570,6,'Original Music Composer'),(46705,968531,5,'Editor'),(46705,968532,5,'Editor'),(46705,969855,3,'Executive Producer'),(46705,1078304,5,'Digital Intermediate'),(46705,1117290,4,'Screenplay'),(46705,1117291,3,'Producer'),(46705,1117292,3,'Executive Producer'),(46705,1193617,7,'Production Design'),(46705,1193619,7,'Set Decoration'),(46705,1193620,8,'Costume Design'),(46705,1193621,9,'Property Master'),(46705,1193630,1,'Still Photographer'),(76487,19662,3,'Casting'),(76487,61126,5,'Editor'),(76487,62768,2,'Director'),(76487,62768,4,'Writer'),(76487,62768,5,'Editor'),(76487,62770,4,'Writer'),(76487,62770,3,'Producer'),(76487,893948,3,'Casting'),(76487,937168,3,'Producer'),(76487,957840,6,'Supervising Sound Editor'),(76487,1039869,8,'Costume Design'),(76487,1063962,6,'Sound Designer'),(76487,1063965,6,'Supervising Sound Effects Editor'),(76487,1070135,9,'Sound Recordist'),(76487,1099278,9,'Cinematography'),(76487,1099278,1,'Camera Operator'),(76487,1191813,6,'Foley'),(76487,1207166,8,'Makeup Artist'),(76487,1309884,6,'Sound Re-Recording Mixer'),(76487,1313440,7,'Set Decoration'),(76487,1344831,6,'Foley'),(76487,1346949,9,'Stunt Coordinator'),(76487,1346959,3,'Location Manager'),(76487,1367365,6,'Sound Re-Recording Mixer'),(76487,1367667,6,'Supervising Sound Editor'),(76487,1396794,9,'Sound Recordist'),(76487,1406825,6,'Sound Re-Recording Mixer'),(76487,1407677,8,'Makeup Artist'),(76487,1407693,11,'Gaffer'),(76487,1411345,10,'Animation'),(76487,1411873,6,'Sound Effects Editor'),(76487,1411874,5,'Dialogue Editor'),(76487,1423365,6,'Music'),(76487,1423366,6,'Music'),(76487,1423368,7,'Production Design'),(76487,1423371,8,'Makeup Artist'),(76487,1423373,8,'Makeup Artist'),(76487,1423375,3,'Production Manager'),(76487,1423378,1,'Still Photographer'),(76487,1423380,11,'Gaffer'),(76487,1423383,9,'Transportation Coordinator'),(76487,1423384,9,'Studio Teachers'),(76487,1423385,3,'Location Manager'),(39833,2766,3,'Producer'),(39833,3358,7,'Art Direction'),(39833,9587,7,'Set Decoration'),(39833,11441,6,'Original Music Composer'),(39833,11443,5,'Editor'),(39833,12279,1,'Director of Photography'),(39833,14651,6,'Sound'),(39833,20371,4,'Screenplay'),(39833,26174,8,'Costume Design'),(39833,26175,8,'Makeup Artist'),(39833,26176,8,'Hairstylist'),(39833,27732,6,'Sound'),(39833,34362,7,'Set Decoration'),(39833,89216,2,'Director'),(39833,103925,4,'Story'),(39833,123014,2,'Assistant Director'),(39833,132251,7,'Art Direction'),(171424,16847,2,'Director'),(171424,16847,4,'Screenplay'),(171424,16847,3,'Producer'),(171424,19662,3,'Casting'),(171424,59287,9,'Makeup Effects'),(171424,107372,9,'Makeup Effects'),(171424,84348,3,'Executive Producer'),(171424,86500,3,'Producer'),(171424,118369,5,'Editor'),(171424,236211,4,'Screenplay'),(171424,557303,9,'Second Unit Cinematographer'),(171424,557303,1,'Camera Operator'),(171424,893948,3,'Casting'),(171424,1046134,3,'Producer'),(171424,1049546,3,'Producer'),(171424,1049547,6,'Original Music Composer'),(171424,1049548,1,'Director of Photography'),(171424,1056187,6,'Foley'),(171424,1056188,6,'Sound Re-Recording Mixer'),(171424,1128690,3,'Producer'),(171424,1142399,2,'Script Supervisor'),(171424,1207547,7,'Art Direction'),(171424,1207548,7,'Set Decoration'),(171424,1207549,8,'Costume Design'),(171424,1280038,3,'Executive Producer'),(171424,1280039,3,'Executive Producer'),(171424,1287868,9,'Makeup Effects'),(171424,1316449,8,'Costume Design'),(171424,1317890,3,'Executive Producer'),(171424,1407619,6,'ADR & Dubbing'),(171424,1407619,5,'Dialogue Editor'),(171424,1407620,6,'Sound Effects Editor'),(171424,1407722,9,'Makeup Effects'),(171424,1410216,1,'Steadicam Operator'),(171424,1441139,3,'Associate Producer'),(171424,1477027,1,'Camera Operator'),(171424,1486921,3,'Co-Producer'),(171424,1510551,8,'Hairstylist'),(171424,1510552,10,'Visual Effects Supervisor'),(171424,1510554,7,'Production Design'),(171424,1519660,3,'Co-Producer'),(171424,1519661,3,'Executive Producer'),(171424,1571126,7,'Art Direction'),(171424,1571127,2,'Script Supervisor'),(171424,1571128,9,'Stunt Coordinator'),(171424,1571128,9,'Fight Choreographer'),(171424,1571129,6,'Sound Re-Recording Mixer'),(171424,1571130,8,'Hairstylist'),(171424,1571131,8,'Makeup Artist'),(171424,1571132,8,'Makeup Artist'),(171424,1714325,3,'Line Producer'),(171424,1714331,2,'First Assistant Director'),(171424,1714332,6,'Boom Operator'),(171424,1714334,6,'Music Editor'),(171424,1879693,7,'Production Design'),(171424,1879694,6,'Boom Operator'),(171424,1879697,9,'Production Controller'),(361475,75108,1,'Director of Photography'),(361475,937592,6,'Foley'),(361475,1028241,5,'Editor'),(361475,1159587,8,'Costume Design'),(361475,1389687,6,'Foley'),(361475,1521130,2,'Director'),(361475,1521130,4,'Writer'),(361475,1559450,10,'Visual Effects'),(361475,1568244,3,'Producer'),(361475,1572412,8,'Makeup Designer'),(361475,1599478,6,'Sound Designer'),(361475,1620303,3,'Producer'),(361475,1620304,3,'Producer'),(361475,1620305,6,'Music'),(361475,1620306,7,'Set Decoration'),(361475,1620307,2,'Script Supervisor'),(361475,1620308,3,'Casting Associate'),(361475,1620314,1,'First Assistant Camera'),(361475,1620315,1,'Steadicam Operator'),(361475,1620316,1,'Still Photographer'),(361475,1620317,1,'Underwater Camera'),(361475,1620318,11,'Gaffer'),(361475,1620320,11,'Gaffer'),(361475,1620323,9,'Sound Recordist'),(361475,1620325,6,'Foley'),(361475,1620326,6,'Sound Re-Recording Mixer'),(361475,1620327,9,'Property Master'),(113947,7229,6,'Original Music Composer'),(113947,5507,3,'Casting'),(113947,19660,5,'Editor'),(113947,19722,3,'Producer'),(113947,52055,1,'Director of Photography'),(113947,102332,7,'Production Design'),(113947,168330,2,'Director'),(113947,168330,3,'Producer'),(113947,168330,4,'Writer'),(113947,1067233,3,'Producer'),(113947,1143244,8,'Costume Design'),(113947,1333161,7,'Set Decoration'),(113947,1335147,6,'Sound Effects Editor'),(113947,1350236,5,'Dialogue Editor'),(113947,1350237,6,'Supervising Sound Editor'),(113947,1409545,6,'Sound Effects Editor'),(113947,1535216,6,'Music Editor'),(83860,844266,4,'Writer'),(83860,909318,2,'Director'),(83860,930212,2,'Director'),(83860,930213,4,'Writer'),(41469,37948,2,'Director'),(41469,37948,4,'Writer'),(244772,2952,3,'Casting'),(244772,2863,6,'Original Music Composer'),(244772,67356,1,'Director of Photography'),(244772,143258,4,'Writer'),(244772,158455,3,'Producer'),(244772,303056,2,'Director'),(244772,303056,4,'Writer'),(244772,1011204,3,'Producer'),(244772,1039845,3,'Producer'),(50837,5952,3,'Executive Producer'),(50837,32604,3,'Casting'),(50837,56369,3,'Producer'),(50837,139138,1,'Director of Photography'),(50837,139141,6,'Production Sound Mixer'),(50837,142275,3,'Line Producer'),(50837,527607,2,'Director'),(50837,527607,4,'Screenplay'),(50837,928074,7,'Production Design'),(50837,980761,3,'Executive Producer'),(50837,983638,3,'Casting'),(50837,983884,8,'Costume Design'),(50837,984103,5,'Editor'),(50837,984513,6,'Original Music Composer'),(50837,1027140,7,'Art Direction'),(50837,1031621,6,'Sound Re-Recording Mixer'),(50837,1031621,6,'Supervising Sound Editor'),(50837,1078304,5,'Digital Intermediate'),(50837,1180074,3,'Producer'),(50837,1208226,6,'Original Music Composer'),(50837,1298746,3,'Co-Producer'),(50837,1339963,2,'Script Supervisor'),(50837,1355491,3,'Executive Producer'),(50837,1405356,6,'Sound Effects Editor'),(50837,1554054,3,'Producer'),(50837,1554055,3,'Producer'),(50837,1554056,1,'Still Photographer'),(50837,1554061,3,'Executive Producer'),(50837,1554063,3,'Executive Producer'),(248774,4023,3,'Casting'),(248774,213001,3,'Executive Producer'),(248774,569547,7,'Set Decoration'),(248774,1023141,3,'Executive Producer'),(248774,1046729,3,'Casting'),(248774,1149912,7,'Production Design'),(248774,1284099,4,'Screenplay'),(248774,1284099,2,'Director'),(248774,1284099,3,'Executive Producer'),(248774,1284099,4,'Story'),(248774,1394652,1,'Director of Photography'),(248774,1394653,5,'Editor'),(248774,1394654,6,'Original Music Composer'),(248774,1394655,8,'Costume Design'),(248774,1394656,4,'Story'),(248774,1394657,3,'Producer'),(248774,1394657,4,'Story'),(248774,1397717,3,'Executive Producer'),(248774,1397719,3,'Executive Producer'),(248774,1397720,3,'Executive Producer'),(248774,1397721,3,'Executive Producer'),(248774,1528016,7,'Art Direction'),(248774,1528017,8,'Assistant Costume Designer'),(248774,1528018,2,'Script Supervisor'),(248774,1528019,8,'Makeup Department Head'),(159014,228643,2,'Director'),(49963,2952,3,'Casting'),(49963,1252,5,'Editor'),(49963,1617,3,'Producer'),(49963,5952,3,'Producer'),(49963,56539,2,'Director'),(49963,56539,4,'Author'),(49963,65506,1,'Director of Photography'),(49963,1400540,2,'Script Supervisor'),(49963,1407222,9,'Unit Publicist'),(49963,1457392,8,'Costume Design'),(49963,1467186,7,'Production Design'),(49963,1467187,7,'Art Direction'),(37532,82286,2,'Director'),(56666,146970,4,'Writer'),(56666,224751,2,'Director'),(56666,224751,4,'Writer'),(47686,1432957,7,'Art Department Manager'),(46989,74638,2,'Director'),(46989,74638,4,'Writer'),(192132,2889,6,'Sound Re-Recording Mixer'),(192132,2889,6,'Sound Designer'),(192132,17051,4,'Story'),(192132,90758,6,'Boom Operator'),(192132,198799,9,'Stunt Coordinator'),(192132,622844,3,'Producer'),(192132,952397,3,'Producer'),(192132,1193602,2,'Director'),(192132,1193602,4,'Screenplay'),(192132,1324192,8,'Costume Design'),(192132,1372045,3,'Producer'),(192132,1385904,1,'Director of Photography'),(192132,1385905,5,'Editor'),(192132,1385906,3,'Producer'),(192132,1423006,7,'Production Design'),(192132,1538425,5,'Dialogue Editor'),(192132,1563443,1,'Still Photographer'),(192132,1569087,6,'Sound Mixer'),(192132,1612485,7,'Set Decoration'),(192132,1612486,2,'Script Supervisor'),(192132,1612487,7,'Art Direction'),(244267,10692,3,'Executive Producer'),(244267,45459,4,'Screenplay'),(244267,45459,2,'Director'),(244267,45459,5,'Editor'),(244267,45459,3,'Producer'),(244267,53072,3,'Producer'),(244267,53077,3,'Producer'),(244267,1275131,1,'Director of Photography'),(244267,1279526,7,'Production Design'),(123678,6818,3,'Executive Producer'),(123678,18533,3,'Executive Producer'),(123678,23332,5,'Editor'),(123678,40414,6,'Sound Editor'),(123678,53296,2,'Director'),(123678,53296,3,'Co-Producer'),(123678,54901,3,'Executive Producer'),(123678,98071,1,'Director of Photography'),(123678,124865,5,'Editor'),(123678,563328,5,'Editor'),(123678,575128,6,'Sound Editor'),(123678,1037275,3,'Executive Producer'),(123678,1349420,2,'Director'),(123678,1349420,3,'Producer'),(123678,1349423,9,'Post-Production Manager'),(123678,1349423,3,'Associate Producer'),(123678,1349424,3,'Producer'),(123678,1349425,3,'Associate Producer'),(123678,1349426,3,'Producer'),(123678,1349427,3,'Executive Producer'),(123678,1349428,3,'Executive Producer'),(123678,1349429,3,'Producer'),(123678,1349430,1,'Director of Photography'),(123678,1349431,5,'Editor'),(123678,1349432,5,'Editor'),(123678,1349433,5,'Editor'),(123678,1349434,9,'Post-Production Manager'),(123678,1349435,9,'Post-Production Manager'),(123678,1349436,6,'Sound Designer'),(123678,1349437,10,'Visual Effects'),(123678,1349438,10,'Visual Effects'),(123678,1710652,2,'Director'),(39183,4339,2,'Director'),(39183,94816,4,'Screenplay'),(39183,150347,2,'Director'),(39183,150347,4,'Screenplay'),(62402,1867383,2,'Director'),(62402,1867383,4,'Writer'),(206412,2171,2,'Director'),(201132,960650,6,'Original Music Composer'),(201132,1073734,6,'Original Music Composer'),(201132,1182832,2,'Director'),(201132,1182832,4,'Writer'),(201132,1182832,3,'Producer'),(201132,1182832,1,'Director of Photography'),(201132,1182833,9,'Second Unit'),(201132,1182834,6,'Sound Designer'),(201132,1182835,5,'Editor'),(201132,1182835,4,'Writer'),(201132,1361390,6,'Original Music Composer'),(201132,1362147,6,'Original Music Composer'),(201132,1445390,3,'Executive Producer'),(201132,1445391,3,'Associate Producer'),(251471,6740,1,'Director of Photography'),(251471,74146,1,'Director of Photography'),(251471,75591,5,'Editor'),(251471,76013,3,'Executive Producer'),(251471,110643,3,'Executive Producer'),(251471,129921,2,'Director'),(251471,129921,4,'Writer'),(251471,240740,2,'Director'),(251471,240740,4,'Writer'),(251471,240740,3,'Producer'),(251471,1038922,3,'Producer'),(251471,1074667,3,'Co-Producer'),(251471,1074667,4,'Writer'),(251471,1074667,5,'Editor'),(251471,1095418,3,'Associate Producer'),(251471,1265842,5,'Editor'),(251471,1374902,6,'Original Music Composer'),(251471,1495696,3,'Producer'),(251471,1495697,3,'Producer'),(251471,1495698,3,'Co-Producer'),(251471,1495699,3,'Co-Producer'),(251471,1495700,3,'Executive Producer'),(251471,1495701,3,'Associate Producer'),(251471,1495702,5,'Editor'),(251471,1495703,5,'Editor'),(251471,1495704,5,'Editor'),(112456,126152,6,'Original Music Composer'),(112456,973712,4,'Writer'),(112456,1016502,3,'Casting'),(112456,1023720,2,'Director'),(112456,1023720,4,'Writer'),(112456,1023720,3,'Producer'),(112456,1153841,6,'Supervising Sound Editor'),(112456,1357339,6,'Sound Designer'),(112456,1816440,5,'Editor'),(112456,1816446,7,'Production Design'),(112456,1816447,8,'Costume Design'),(112456,1816449,6,'Sound Editor'),(66195,550681,4,'Screenplay'),(66195,550681,2,'Director'),(66195,1304298,8,'Makeup Department Head'),(46727,5216,3,'Executive Producer'),(46727,17210,3,'Producer'),(46727,17211,3,'Producer'),(46727,33008,3,'Co-Executive Producer'),(46727,33009,3,'Co-Executive Producer'),(46727,67160,9,'Cinematography'),(46727,67584,3,'Line Producer'),(46727,137392,4,'Writer'),(46727,137392,2,'Director'),(46727,954441,3,'Producer'),(46727,1467299,3,'Co-Producer'),(46727,1730749,6,'Music'),(46727,1733373,3,'Associate Producer'),(46727,1733376,3,'Associate Producer'),(46727,1733383,3,'Producer'),(46727,1733387,3,'Associate Producer'),(46727,1733392,3,'Associate Producer'),(46727,1733394,3,'Associate Producer'),(46727,1733397,5,'Editor'),(55180,22119,1,'Director of Photography'),(55180,158480,2,'Director'),(91122,939176,2,'Director'),(91122,939176,4,'Writer'),(320146,7438,3,'Casting'),(320146,40141,6,'Sound Designer'),(320146,101810,2,'Director'),(320146,101810,4,'Writer'),(320146,139141,4,'Writer'),(320146,142275,3,'Producer'),(320146,1043234,3,'Executive Producer'),(320146,1168691,3,'Producer'),(320146,1290981,5,'Editor'),(320146,1388962,1,'Director of Photography'),(320146,1410849,3,'Producer'),(320146,1458713,5,'Editor'),(320146,1591486,8,'Costume Design'),(320146,1591487,3,'Line Producer'),(320146,1591488,3,'Unit Production Manager'),(320146,1591490,6,'Original Music Composer'),(320146,1591493,7,'Production Design'),(320146,1591494,3,'Executive Producer'),(320146,1591495,3,'Executive Producer'),(320146,1591496,3,'Producer'),(219716,239418,2,'Director'),(56491,84981,2,'Director'),(56491,84981,3,'Producer'),(56491,428938,4,'Screenplay'),(56491,987025,4,'Screenplay'),(99826,11805,2,'Director'),(99826,11805,4,'Writer'),(99826,1178529,4,'Writer'),(186935,50559,5,'Editor'),(186935,56375,2,'Director'),(186935,56375,4,'Writer'),(186935,967253,1,'Director of Photography'),(186935,1154340,2,'Assistant Director'),(186935,1307931,4,'Screenplay'),(242083,212,2,'Director'),(242083,212,4,'Writer'),(41830,2289,6,'Music'),(41830,9915,2,'Director'),(41830,6491,5,'Editor'),(41830,29496,4,'Writer'),(41830,1043953,1,'Director of Photography'),(41830,1568861,8,'Makeup Artist'),(41830,1580159,6,'Sound Editor'),(41830,1590918,7,'Art Direction'),(41830,1590919,1,'Camera Operator'),(41830,1590921,9,'Sound Recordist'),(41830,1590923,8,'Hairstylist'),(37694,568822,2,'Director'),(63287,15309,2,'Director'),(63287,15309,4,'Writer'),(63287,58563,4,'Writer'),(63287,110019,3,'Producer'),(63287,137972,3,'Producer'),(335874,1467662,2,'Director'),(335874,1467662,4,'Screenplay'),(92635,20953,6,'Original Music Composer'),(92635,97618,2,'Director'),(92635,63198,5,'Editor'),(92635,97859,3,'Production Manager'),(92635,128979,3,'Producer'),(92635,130832,7,'Production Design'),(92635,928670,4,'Screenplay'),(92635,995466,3,'Executive Producer'),(92635,995467,3,'Executive Producer'),(92635,995468,6,'Sound Designer'),(258755,1012105,2,'Director'),(258755,1012105,4,'Writer'),(96534,64252,4,'Writer'),(96534,227945,4,'Writer'),(96534,227945,2,'Director'),(272724,97618,2,'Director'),(272724,97618,3,'Producer'),(272724,63772,4,'Writer'),(84178,45407,4,'Screenplay'),(84178,45407,3,'Executive Producer'),(84178,148739,1,'Director of Photography'),(84178,221944,2,'Director'),(84178,221944,3,'Executive Producer'),(84178,221944,4,'Story'),(84178,969845,3,'Producer'),(84178,1042452,6,'Original Music Composer'),(84178,1149913,7,'Production Design'),(84178,1155518,5,'Editor'),(84178,1186631,3,'Executive Producer'),(84178,1332200,8,'Makeup Artist'),(84178,1367667,6,'Supervising Sound Editor'),(84178,1404272,6,'Foley'),(84178,1404273,10,'Visual Effects Supervisor'),(84178,1404274,1,'Still Photographer'),(84178,1404275,1,'Still Photographer'),(84178,1544312,6,'Music Supervisor'),(84178,1550236,6,'Sound Editor'),(84178,1787551,6,'Sound Editor'),(101179,56710,5,'Editor'),(101179,139352,4,'Writer'),(101179,145045,2,'Director'),(101179,1103577,3,'Executive Producer'),(101179,1103578,3,'Executive Producer'),(101179,1103579,3,'Executive Producer'),(101179,1103581,3,'Producer'),(101179,1103584,3,'Producer'),(101179,1103586,6,'Music'),(101179,1103587,9,'Cinematography'),(101179,1193192,3,'Casting'),(101179,1196968,8,'Costume Design'),(101179,1323351,7,'Production Design'),(101179,1323352,7,'Art Direction'),(101179,1323353,7,'Art Direction'),(52462,146026,2,'Director'),(52462,146026,4,'Writer'),(269057,1196522,2,'Director'),(269057,1196522,4,'Writer'),(287524,82101,2,'Director'),(287524,82101,4,'Writer'),(287524,975143,9,'Cinematography'),(287524,1354408,4,'Writer'),(287524,1354409,3,'Producer'),(287524,1354410,3,'Producer'),(206213,1188585,2,'Director'),(206213,1188585,4,'Writer'),(206213,1188586,4,'Writer'),(206213,1459421,3,'Associate Producer'),(248402,985146,2,'Director'),(207769,45900,6,'Original Music Composer'),(207769,17306,3,'Executive Producer'),(207769,210157,3,'Casting'),(207769,213863,3,'Executive Producer'),(207769,215726,8,'Costume Design'),(207769,930010,7,'Production Design'),(207769,1011000,3,'Executive Producer'),(207769,1191051,2,'Director'),(207769,1191051,4,'Writer'),(207769,1279046,3,'Producer'),(207769,1279047,3,'Producer'),(207769,1279048,3,'Producer'),(207769,1283875,3,'Location Manager'),(207769,1287346,4,'Story'),(207769,1287347,3,'Executive Producer'),(207769,1287348,3,'Executive Producer'),(207769,1287349,3,'Executive Producer'),(207769,1287350,1,'Director of Photography'),(207769,1287351,5,'Editor'),(207769,1287352,7,'Art Direction'),(207769,1287353,9,'Makeup Effects'),(207769,1335375,9,'Stunt Coordinator'),(207769,1402946,8,'Makeup Department Head'),(207769,1402947,8,'Makeup Artist'),(207769,1402948,9,'Property Master'),(207769,1402949,7,'Leadman'),(207769,1402950,10,'Visual Effects Producer'),(207769,1402951,2,'Script Supervisor'),(207769,1402952,9,'Unit Publicist'),(271185,3965,3,'Casting'),(271185,22070,7,'Set Decoration'),(271185,24960,3,'Associate Producer'),(271185,24960,7,'Production Design'),(271185,42909,8,'Costume Design'),(271185,54781,2,'Director'),(271185,54781,4,'Writer'),(271185,941427,3,'Associate Producer'),(271185,1034748,3,'Casting'),(271185,1292074,10,'Visual Effects'),(271185,1314579,5,'Editor'),(271185,1362475,1,'Director of Photography'),(271185,1493973,3,'Casting'),(271185,1493979,3,'Producer'),(271185,1493981,3,'Producer'),(271185,1493982,3,'Producer'),(271185,1493983,6,'Music'),(292539,1341629,2,'Director'),(91070,52454,6,'Original Music Composer'),(91070,77971,5,'Editor'),(91070,78080,4,'Screenplay'),(91070,939123,2,'Director'),(91070,939123,4,'Screenplay'),(91070,939124,3,'Producer'),(91070,959764,1,'Director of Photography'),(91070,1064439,7,'Production Design'),(91070,1085600,3,'Casting'),(91070,1085602,7,'Art Direction'),(91070,1085603,8,'Makeup Artist'),(91070,1200297,8,'Costume Design'),(91070,1269129,5,'Editor'),(323270,146275,2,'Director'),(323270,146275,4,'Writer'),(323270,1208166,2,'Director'),(323270,1208166,4,'Writer'),(323270,1208168,4,'Writer'),(323270,1223224,2,'Director'),(323270,1577521,2,'Director'),(323270,1577521,4,'Writer'),(60421,549971,2,'Director'),(60421,549971,4,'Screenplay'),(157354,2178,3,'Producer'),(157354,8428,8,'Costume Design'),(157354,13064,3,'Casting'),(157354,589094,5,'Editor'),(157354,928158,6,'Original Music Composer'),(157354,984113,1,'Director of Photography'),(157354,990139,7,'Production Design'),(157354,1056121,2,'Director'),(157354,1056121,4,'Writer'),(157354,1141734,5,'Editor'),(157354,1280963,3,'Producer'),(157354,1280964,3,'Executive Producer'),(157354,1280965,3,'Casting'),(157354,1293141,1,'Other'),(157354,1534675,2,'Script Supervisor'),(157354,1535111,1,'Still Photographer'),(157354,1535116,2,'Script Supervisor'),(157354,1535117,1,'Still Photographer'),(157354,1535118,11,'Gaffer'),(157354,1535120,1,'Steadicam Operator'),(127867,68636,5,'Editor'),(127867,1029332,6,'Original Music Composer'),(127867,1085904,2,'Director'),(127867,1085904,4,'Story'),(127867,1141271,4,'Screenplay'),(127867,1141271,4,'Story'),(127867,1155552,7,'Production Design'),(127867,1179270,1,'Director of Photography'),(127867,1179271,7,'Art Direction'),(127867,1179272,2,'Script Supervisor'),(127867,1179273,8,'Costume Design'),(127867,1179274,11,'Gaffer'),(146882,1124971,2,'Director'),(146882,1124971,4,'Screenplay'),(146882,1126638,4,'Screenplay'),(215918,1150712,2,'Director'),(215918,1150712,4,'Screenplay'),(215918,1150712,3,'Producer'),(215918,1150712,5,'Editor'),(84200,41674,6,'Original Music Composer'),(84200,54716,4,'Writer'),(84200,60157,8,'Costume Design'),(84200,60629,7,'Set Decoration'),(84200,70729,3,'Producer'),(84200,71552,3,'Executive Producer'),(84200,548443,6,'Supervising Sound Editor'),(84200,930629,2,'Director'),(84200,931976,6,'Sound Re-Recording Mixer'),(84200,960350,1,'Director of Photography'),(84200,1021206,3,'Casting'),(84200,1046787,3,'Executive Producer'),(84200,1056041,3,'Producer'),(84200,1056043,3,'Producer'),(84200,1056044,4,'Writer'),(84200,1056048,5,'Editor'),(84200,1176357,3,'Casting'),(84200,1296822,2,'Script Supervisor'),(84200,1367365,6,'Sound Re-Recording Mixer'),(84200,1406825,6,'Sound Re-Recording Mixer'),(84200,1406826,6,'Sound Effects Editor'),(84200,1591750,7,'Production Design'),(84200,1591751,6,'Sound Effects Editor'),(84200,1591752,7,'Art Department Coordinator'),(84184,78500,4,'Screenplay'),(84184,80591,4,'Screenplay'),(84184,109745,2,'Director'),(84184,1067252,3,'Producer'),(84184,1457056,9,'Production Intern'),(84184,1728359,6,'Music'),(84184,1814933,6,'Music'),(45767,122842,2,'Director'),(45767,122842,4,'Writer'),(367551,41530,2,'Director'),(367551,41530,4,'Writer'),(367551,929145,6,'Original Music Composer'),(367551,1057356,1,'Director of Photography'),(367551,1154463,5,'Editor'),(367551,1176140,3,'Casting'),(367551,1454543,8,'Costume Design'),(367551,1610731,6,'Music Supervisor'),(343409,1517664,2,'Director'),(343409,1517666,4,'Writer'),(60243,229931,4,'Screenplay'),(60243,229931,2,'Director'),(60243,229931,3,'Producer'),(60243,413062,6,'Sound'),(60243,545097,1,'Director of Photography'),(60243,1083060,7,'Production Design'),(60243,1083063,3,'Executive Producer'),(60243,1083064,6,'Original Music Composer'),(60243,1083065,5,'Editor'),(60243,1141700,8,'Makeup Artist'),(60243,1141702,6,'Sound mixer'),(60243,1532374,6,'Sound Editor'),(60243,1727734,2,'Script Supervisor'),(60243,1727735,1,'Still Photographer'),(57294,222098,2,'Director'),(57294,222098,4,'Writer'),(47889,136738,7,'Production Design'),(47889,138322,2,'Director'),(47889,138322,5,'Editor'),(47889,138322,4,'Writer'),(47889,1030290,6,'Original Music Composer'),(47889,1215656,3,'Line Producer'),(47889,1391067,3,'Casting'),(47889,1391068,8,'Costume Design'),(47889,1604114,3,'Executive Producer'),(47889,1604116,3,'Production Manager'),(47889,1607803,1,'Director of Photography'),(47889,1607806,7,'Art Direction'),(47889,1607808,2,'Assistant Director'),(78705,1018728,2,'Director'),(146269,35495,8,'Costume Design'),(146269,41103,4,'Theatre Play'),(146269,210562,4,'Screenplay'),(146269,210562,2,'Director'),(146269,1578413,1,'Director of Photography'),(146269,1578413,5,'Editor'),(292483,6627,3,'Executive Producer'),(292483,69876,3,'Executive Producer'),(292483,17306,3,'Executive Producer'),(292483,168349,2,'Director'),(292483,168349,3,'Producer'),(292483,213863,3,'Executive Producer'),(292483,937173,3,'Executive Producer'),(292483,1275451,3,'Casting'),(292483,1365767,4,'Writer'),(292483,1367076,3,'Executive Producer'),(292483,1367077,3,'Executive Producer'),(292483,1367078,3,'Executive Producer'),(292483,1367079,3,'Executive Producer'),(292483,1367080,3,'Executive Producer'),(292483,1367082,3,'Producer'),(292483,1367083,3,'Producer'),(292483,1367084,3,'Executive Producer'),(292483,1367085,9,'Cinematography'),(292483,1367086,3,'Casting'),(292483,1367087,7,'Production Design'),(211557,554900,2,'Director'),(211557,939612,6,'Original Music Composer'),(211557,1179419,4,'Writer'),(211557,1179422,4,'Writer'),(211557,1297436,9,'Cinematography'),(211557,1491492,5,'Editor'),(40862,51521,2,'Director'),(84332,4855,3,'Producer'),(84332,4857,3,'Producer'),(84332,45405,3,'Executive Producer'),(84332,45407,3,'Executive Producer'),(84332,148735,1,'Director of Photography'),(84332,930707,2,'Director'),(84332,930707,3,'Producer'),(84332,1011204,3,'Producer'),(84332,1014920,3,'Casting'),(84332,1020013,3,'Producer'),(84332,1020013,4,'Writer'),(84332,1103629,3,'Executive Producer'),(84332,1103630,6,'Original Music Composer'),(84332,1173410,5,'Editor'),(84332,1173411,5,'Editor'),(84332,1173412,7,'Production Design'),(84332,1173413,8,'Costume Design'),(84332,1173416,7,'Art Direction'),(84332,1173417,3,'Executive Producer'),(84332,1173421,3,'Casting'),(84332,1198921,11,'Gaffer'),(84332,1543344,2,'Script Supervisor'),(84332,1544312,6,'Music Supervisor'),(74510,20400,2,'Director'),(74510,55638,4,'Writer'),(74510,559968,2,'Director'),(74725,43394,3,'Producer'),(74725,101909,1,'Director of Photography'),(74725,137467,2,'Director'),(74725,137467,5,'Editor'),(74725,137467,4,'Writer'),(74725,137469,5,'Editor'),(74725,146113,3,'Producer'),(74725,150547,6,'Original Music Composer'),(74725,524112,5,'Editor'),(74725,524112,4,'Writer'),(74725,1109487,3,'Casting'),(74725,1181406,7,'Production Design'),(74725,1282557,9,'Special Effects'),(74725,1304612,8,'Costume Design'),(58428,31268,3,'Producer'),(58428,62725,3,'Casting'),(58428,101542,2,'Director'),(58428,101542,4,'Writer'),(58428,101542,3,'Producer'),(58428,139145,7,'Production Design'),(58428,966560,7,'Set Decoration'),(58428,1015883,6,'Original Music Composer'),(58428,1015884,3,'Producer'),(58428,1015891,3,'Producer'),(58428,1025921,1,'Director of Photography'),(58428,1319731,8,'Costume Design'),(58428,1394660,7,'Art Direction'),(58428,1407902,2,'Script Supervisor'),(58428,1531578,9,'Stunts'),(36584,17329,2,'Director'),(206197,27680,4,'Novel'),(206197,544748,2,'Director'),(206197,1188753,4,'Screenplay'),(302579,65937,6,'Sound mixer'),(302579,76722,9,'Property Master'),(302579,90041,9,'Stunts'),(302579,131455,3,'Producer'),(302579,131455,2,'Director'),(302579,131455,4,'Writer'),(302579,956271,3,'Casting'),(302579,1266423,9,'Loader'),(302579,1302405,3,'Casting'),(302579,1384726,3,'Producer'),(302579,1384736,9,'Production Office Assistant'),(302579,1384737,3,'Line Producer'),(302579,1384740,3,'Executive Producer'),(302579,1384742,6,'Music'),(302579,1384745,9,'Cinematography'),(302579,1384746,5,'Editor'),(302579,1384747,7,'Production Design'),(302579,1384749,8,'Costume Design'),(302579,1384753,9,'Second Unit'),(302579,1384754,2,'Assistant Director'),(302579,1384756,6,'Sound Effects Editor'),(302579,1384760,9,'Sound Design Assistant'),(302579,1384761,9,'Cableman'),(302579,1384762,9,'Post Production Supervisor'),(302579,1384765,1,'Camera Intern'),(302579,1384766,1,'Grip'),(302579,1384767,10,'Color Designer'),(302579,1384768,9,'Stand In'),(302579,1384771,2,'Director'),(51955,34061,6,'Original Music Composer'),(51955,34060,6,'Original Music Composer'),(51955,62162,3,'Executive Producer'),(51955,93133,2,'Director'),(51955,93133,4,'Writer'),(51955,93133,3,'Producer'),(51955,932172,3,'Executive Producer'),(51955,932173,3,'Executive Producer'),(51955,932181,9,'Cinematography'),(51955,932187,7,'Production Design'),(376004,51684,3,'Producer'),(376004,55084,3,'Producer'),(376004,61992,5,'Editor'),(376004,99601,9,'Armorer'),(376004,688807,2,'Director'),(376004,688807,4,'Writer'),(376004,961554,9,'Cinematography'),(376004,1099760,6,'Sound mixer'),(376004,1241977,3,'Executive Producer'),(376004,1302899,5,'Editor'),(376004,1320530,6,'Music'),(376004,1340131,3,'Line Producer'),(376004,1340131,3,'Executive Producer'),(376004,1407254,6,'Sound Director'),(376004,1407254,6,'Sound Re-Recording Mixer'),(376004,1411263,7,'Production Design'),(376004,1445513,9,'Second Unit'),(376004,1445513,2,'Script Supervisor'),(376004,1531792,3,'Co-Executive Producer'),(376004,1537476,9,'Armorer'),(376004,1539049,3,'Executive Producer'),(376004,1562398,3,'Executive Producer'),(376004,1562399,3,'Co-Executive Producer'),(376004,1562400,3,'Co-Executive Producer'),(376004,1562401,3,'Co-Executive Producer'),(376004,1562402,3,'Associate Producer'),(376004,1562403,3,'Producer'),(376004,1562404,3,'Executive Producer'),(376004,1562405,8,'Makeup Artist'),(376004,1562406,8,'Makeup Artist'),(376004,1562407,2,'Assistant Director'),(376004,1562408,2,'Assistant Director'),(376004,1562409,4,'Storyboard'),(376004,1562410,1,'Camera Intern'),(376004,1562411,9,'Second Unit'),(376004,1562412,1,'Camera Technician'),(376004,1562413,1,'Camera Operator'),(376004,1562414,1,'Camera Intern'),(376004,1562415,10,'Color Designer'),(376004,1562416,6,'Music'),(376004,1562417,9,'Driver'),(158752,113708,7,'Production Design'),(158752,240336,3,'Producer'),(158752,240336,3,'Casting'),(158752,558016,6,'Original Music Composer'),(158752,1140160,2,'Director'),(158752,1140160,4,'Writer'),(158752,1140161,1,'Director of Photography'),(158752,1289019,5,'Editor'),(158752,1289019,3,'Producer'),(158752,1289022,7,'Production Design'),(40658,1122434,2,'Director'),(296943,948217,2,'Director'),(118612,556038,3,'Executive Producer'),(118612,1100753,2,'Director'),(118612,1100753,4,'Writer'),(118612,1100753,4,'Story'),(118612,1181263,9,'Stunt Coordinator'),(118612,1293379,1,'Director of Photography'),(118612,1332163,3,'Producer'),(118612,1332165,4,'Story'),(118612,1332165,7,'Art Direction'),(118612,1332165,3,'Associate Producer'),(118612,1332168,6,'Original Music Composer'),(118612,1332170,5,'Editor'),(118612,1332171,3,'Casting'),(118612,1332171,3,'Co-Producer'),(118612,1332172,7,'Production Design'),(118612,1332173,7,'Set Decoration'),(118612,1332175,8,'Costume Design'),(118612,1395397,9,'Property Master'),(118612,1395399,6,'Supervising Sound Editor'),(118612,1395400,10,'Visual Effects'),(118612,1395401,10,'Visual Effects'),(118612,1395402,10,'Visual Effects'),(118612,1395403,10,'Visual Effects'),(118612,1395404,1,'Camera Operator'),(118612,1395405,10,'Animation'),(118612,1395406,3,'Location Manager'),(118612,1395407,2,'Script Supervisor'),(118612,1459385,3,'Line Producer'),(118612,1459387,3,'Executive Producer'),(118612,1459388,3,'Executive Producer'),(118612,1459390,3,'Executive Producer'),(138976,1110059,2,'Director'),(323967,62773,2,'Director'),(323967,62773,3,'Executive Producer'),(323967,1014920,3,'Casting'),(323967,1089528,3,'Producer'),(323967,1155099,7,'Production Design'),(323967,1155099,3,'Associate Producer'),(323967,1155140,6,'Original Music Composer'),(323967,1188273,3,'Producer'),(323967,1188274,3,'Producer'),(323967,1209168,3,'Executive Producer'),(323967,1245845,3,'Executive Producer'),(323967,1324034,1,'Director of Photography'),(323967,1386894,3,'Executive Producer'),(323967,1423811,4,'Writer'),(323967,1471775,5,'Editor'),(323967,1513130,8,'Costume Design'),(323967,1513133,3,'Producer'),(323967,1513134,3,'Producer'),(323967,1513135,3,'Executive Producer'),(323967,1513137,3,'Executive Producer'),(323967,1513141,3,'Executive Producer'),(323967,1513142,3,'Executive Producer'),(323967,1513143,3,'Executive Producer'),(323967,1513150,3,'Executive Producer'),(323967,1513151,3,'Co-Executive Producer'),(323967,1513153,3,'Co-Executive Producer'),(323967,1513154,3,'Co-Producer'),(323967,1513163,3,'Co-Executive Producer'),(323967,1513164,3,'Co-Executive Producer'),(323967,1513170,1,'Still Photographer'),(181940,5631,3,'Casting'),(181940,1164825,2,'Director'),(181940,1164825,3,'Producer'),(181940,1164825,4,'Writer'),(181940,1287338,7,'Set Decoration'),(181940,1329384,7,'Production Design'),(181940,1383067,4,'Writer'),(181940,1383071,3,'Producer'),(181940,1383072,3,'Producer'),(181940,1383073,6,'Music'),(181940,1383075,9,'Cinematography'),(181940,1383077,8,'Costume Design'),(125263,43439,2,'Director'),(263503,57414,2,'Director'),(263503,57414,4,'Writer'),(263503,127578,3,'Co-Executive Producer'),(324322,1424432,2,'Director'),(324322,1667103,4,'Writer'),(324322,1667104,1,'Director of Photography'),(375950,231431,2,'Director'),(375950,231431,4,'Writer'),(375950,523463,4,'Writer'),(375950,1034578,1,'Director of Photography'),(375950,1660859,4,'Writer'),(278348,33650,3,'Producer'),(278348,185995,2,'Director'),(278348,185995,4,'Writer'),(278348,569737,5,'Editor'),(278348,1179842,8,'Costume Design'),(278348,1475287,7,'Production Design'),(278348,1603224,1,'Director of Photography'),(278348,1611978,6,'Original Music Composer'),(278348,1611979,6,'Music Supervisor'),(278348,1611980,2,'Script Supervisor'),(70875,232190,2,'Director'),(75986,102429,3,'Producer'),(75986,6391,7,'Art Direction'),(75986,9269,7,'Production Design'),(75986,10548,5,'Editor'),(75986,21371,2,'Director'),(75986,21371,4,'Writer'),(75986,52192,9,'Cinematography'),(75986,61429,3,'Executive Producer'),(75986,938123,3,'Casting'),(75986,1000515,3,'Casting'),(75986,1219615,3,'Line Producer'),(75986,1304306,6,'Music'),(75986,1304307,8,'Costume Design'),(385636,228764,4,'Screenplay'),(385636,584938,3,'Producer'),(385636,1051398,4,'Screenplay'),(385636,1380244,2,'Director'),(385636,1380244,4,'Screenplay'),(385636,1380245,1,'Director of Photography'),(385636,1585908,4,'Screenplay'),(385636,1585909,3,'Producer'),(211086,7324,2,'Director'),(211086,7324,4,'Screenplay'),(211086,7324,3,'Producer'),(211086,7324,1,'Director of Photography'),(211086,53615,6,'Music'),(211086,1450908,5,'Editor'),(211086,1462552,3,'Producer'),(211086,1462553,3,'Line Producer'),(211086,1462554,3,'Producer'),(211086,1462555,3,'Producer'),(211086,1462556,1,'Director of Photography'),(211086,1462558,1,'Director of Photography'),(211086,1462560,5,'Editor'),(211086,1462561,3,'Production Manager'),(89857,59841,4,'Screenplay'),(89857,59841,2,'Director'),(89857,59841,3,'Producer'),(89857,937871,4,'Screenplay'),(89857,937872,3,'Executive Producer'),(89857,937873,3,'Producer'),(89857,937874,3,'Executive Producer'),(89857,937875,3,'Producer'),(89857,937876,7,'Art Direction'),(89857,1001906,6,'Boom Operator'),(41144,125637,2,'Director'),(35199,116330,2,'Director'),(35199,116330,4,'Writer'),(35199,116332,4,'Writer'),(84401,656971,2,'Director'),(84401,656971,4,'Writer'),(36825,288712,2,'Director'),(125052,66800,2,'Director'),(125052,66800,4,'Writer'),(96238,35145,3,'Casting'),(96238,62271,3,'Producer'),(96238,68185,2,'Director'),(96238,68185,3,'Producer'),(96238,68185,4,'Writer'),(96238,68188,6,'Original Music Composer'),(96238,986119,3,'Producer'),(96238,1069799,3,'Producer'),(96238,1069800,9,'Cinematography'),(96238,1069801,5,'Editor'),(172533,40863,2,'Director'),(172533,40863,5,'Editor'),(172533,40863,3,'Producer'),(172533,40863,4,'Writer'),(172533,47099,3,'Executive Producer'),(172533,59315,3,'Executive Producer'),(172533,62778,3,'Casting'),(172533,71804,8,'Costume Design'),(172533,139137,3,'Producer'),(172533,1084950,3,'Line Producer'),(172533,1118557,1,'Director of Photography'),(172533,1134543,3,'Co-Producer'),(172533,1273857,3,'Producer'),(172533,1273858,3,'Producer'),(172533,1273859,3,'Producer'),(172533,1273860,7,'Production Design'),(172533,1273861,7,'Art Direction'),(172533,1281371,3,'Executive Producer'),(172533,1381155,3,'Co-Producer'),(172533,1397717,3,'Executive Producer'),(172533,1397722,3,'Executive Producer'),(172533,1397723,3,'Executive Producer'),(180383,51030,3,'Co-Executive Producer'),(180383,78655,9,'Cinematography'),(180383,938837,3,'Producer'),(180383,1115066,2,'Director'),(180383,1115066,5,'Editor'),(180383,1210241,7,'Art Direction'),(180383,1388081,3,'Producer'),(180383,1388082,3,'Producer'),(180383,1388084,3,'Executive Producer'),(180383,1388089,3,'Associate Producer'),(180383,1388090,3,'Associate Producer'),(180383,1388091,6,'Music'),(180383,1388092,6,'Music'),(84318,930701,2,'Director'),(84318,1084960,4,'Writer'),(84318,1084960,3,'Producer'),(84318,1084962,3,'Producer'),(84318,1084962,4,'Writer'),(84318,1084963,9,'Cinematography'),(84318,1084965,5,'Editor'),(84318,1084967,6,'Sound Re-Recording Mixer'),(84318,1084968,1,'Camera Operator'),(84318,1084969,1,'Camera Operator'),(45145,1808,5,'Editor'),(45145,4907,7,'Set Decoration'),(45145,6400,2,'Director'),(45145,6400,4,'Writer'),(45145,37406,7,'Production Design'),(45145,51954,3,'Casting'),(45145,56905,6,'Original Music Composer'),(45145,71400,3,'Co-Producer'),(45145,82768,3,'Executive Producer'),(45145,95166,3,'Executive Producer'),(45145,786406,1,'Director of Photography'),(45145,1606650,3,'Co-Producer'),(45145,1794865,7,'Art Direction'),(45145,1872868,8,'Costume Design'),(45145,1872871,3,'Producer'),(45145,1872872,3,'Co-Producer'),(45649,16337,3,'Casting'),(45649,78211,6,'Original Music Composer'),(45649,133398,2,'Director'),(45649,133398,4,'Writer'),(45649,133398,5,'Editor'),(45649,133398,1,'Director of Photography'),(45649,133398,6,'Original Music Composer'),(45649,1096441,3,'Producer'),(45649,1096443,3,'Casting'),(45649,1096444,7,'Art Direction'),(45649,1317572,3,'Producer'),(45649,1317573,3,'Casting'),(45649,1646384,8,'Costume Design'),(43933,41530,3,'Executive Producer'),(43933,41532,3,'Producer'),(43933,41538,3,'Executive Producer'),(43933,60322,3,'Producer'),(43933,70504,3,'Executive Producer'),(43933,129894,2,'Director'),(43933,129894,1,'Director of Photography'),(43933,129894,7,'Production Design'),(43933,129894,10,'Visual Effects'),(43933,129894,4,'Writer'),(43933,1051397,3,'Line Producer'),(43933,1051399,6,'Original Music Composer'),(43933,1051401,5,'Editor'),(73511,13064,3,'Casting'),(73511,29940,3,'Casting'),(73511,39013,4,'Novel'),(73511,63924,1,'Director of Photography'),(73511,68530,3,'Producer'),(73511,91171,7,'Set Decoration'),(73511,132812,2,'Director'),(73511,132812,4,'Writer'),(73511,132812,3,'Producer'),(73511,143639,5,'Editor'),(73511,1069108,10,'Visual Effects Coordinator'),(73511,1302405,3,'Casting'),(73511,1357955,7,'Art Direction'),(73511,1380077,8,'Costume Design'),(73511,1383561,7,'Production Design'),(73511,1535116,2,'Script Supervisor'),(73511,1540371,4,'Writer'),(73511,1540371,3,'Producer'),(73511,1540373,3,'Producer'),(73511,1540374,6,'Music'),(73511,1540375,7,'Art Department Coordinator'),(73511,1540376,7,'Construction Coordinator'),(73511,1540377,10,'Visual Effects Supervisor'),(43653,93022,2,'Director'),(43653,129750,4,'Writer'),(43653,129754,4,'Writer'),(139715,92287,2,'Director'),(139715,92287,4,'Writer'),(139715,79492,3,'Producer'),(139715,205366,3,'Producer'),(139715,939557,6,'Original Music Composer'),(139715,1292997,1,'Director of Photography'),(139715,1358058,7,'Production Design'),(45380,17295,2,'Director'),(45380,17299,1,'Director of Photography'),(45380,25246,9,'Presenter'),(45380,237195,4,'Writer'),(45380,989420,3,'Producer'),(81220,12995,2,'Director'),(81220,89585,4,'Author'),(81220,591276,4,'Author'),(253626,2952,3,'Casting'),(253626,4671,5,'Editor'),(253626,8685,2,'Director'),(253626,8685,4,'Writer'),(253626,23486,6,'Original Music Composer'),(253626,51693,8,'Costume Design'),(253626,58048,3,'Producer'),(253626,60665,3,'Casting'),(253626,91122,1,'Helicopter Camera'),(253626,91147,6,'Music Supervisor'),(253626,1001708,7,'Production Design'),(253626,1012801,7,'Set Decoration'),(253626,1031200,3,'Producer'),(253626,1043831,1,'Director of Photography'),(253626,1128684,3,'Producer'),(253626,1269672,8,'Makeup Department Head'),(253626,1269675,8,'Hairstylist'),(253626,1335165,10,'Visual Effects Producer'),(253626,1394984,6,'Music Editor'),(253626,1408396,11,'Gaffer'),(253626,1412423,7,'Art Department Coordinator'),(253626,1415632,1,'Camera Operator'),(253626,1442493,5,'First Assistant Editor'),(253626,1472774,7,'Set Decoration'),(253626,1475892,3,'Casting'),(253626,1475893,2,'Script Supervisor'),(253626,1494523,7,'Art Direction'),(253626,1494525,8,'Hairstylist'),(253626,1494528,6,'Sound Re-Recording Mixer'),(253626,1494529,9,'Property Master'),(253626,1494530,10,'Visual Effects Supervisor'),(253626,1494531,10,'Visual Effects Supervisor'),(253626,1494532,11,'Rigging Gaffer'),(253626,1494533,8,'Costume Supervisor'),(253626,1494534,8,'Set Costumer'),(253626,1494535,8,'Set Costumer'),(253626,1494536,5,'Digital Intermediate'),(253626,1494537,5,'Digital Intermediate'),(253626,1533692,6,'Music Supervisor'),(294550,139537,2,'Director'),(90369,17510,2,'Director'),(90369,17510,4,'Screenplay'),(117942,98541,2,'Director'),(117942,98541,4,'Screenplay'),(117942,98541,3,'Producer'),(117942,98541,5,'Editor'),(117942,103253,4,'Screenplay'),(117942,1066308,2,'Director'),(117942,1066309,4,'Story'),(117942,1066309,3,'Producer'),(117942,1066310,3,'Executive Producer'),(117942,1069668,6,'Original Music Composer'),(117942,1069669,9,'Cinematography'),(117942,1069670,9,'Cinematography'),(117942,1069671,8,'Makeup Artist'),(322194,1184351,2,'Director'),(322194,1184351,4,'Writer'),(322194,1184351,5,'Editor'),(322194,1184354,3,'Producer'),(322194,1420618,3,'Producer'),(322194,1420620,6,'Music'),(322194,1420621,6,'Music'),(322194,1420622,3,'Casting'),(98568,43923,3,'Co-Producer'),(98568,68170,1,'Director of Photography'),(98568,72974,3,'Co-Producer'),(98568,155945,2,'Director'),(98568,155945,3,'Producer'),(98568,234817,3,'Executive Producer'),(98568,234817,4,'Writer'),(98568,939456,3,'Producer'),(98568,1018753,3,'Executive Producer'),(98568,1018753,4,'Writer'),(98568,1018754,3,'Executive Producer'),(98568,1018757,6,'Original Music Composer'),(98568,1018759,5,'Editor'),(98568,1700795,3,'Executive Producer'),(98568,1748993,3,'Associate Producer'),(119657,1070682,2,'Director'),(119657,1070682,4,'Writer'),(119657,1070683,4,'Writer'),(380733,1571422,2,'Director'),(285743,2675,2,'Director'),(285743,76686,4,'Writer'),(285743,1103573,7,'Production Design'),(285743,1350805,3,'Producer'),(285743,1350806,3,'Co-Producer'),(285743,1350807,3,'Producer'),(285743,1350808,2,'Script Supervisor'),(362765,1519326,2,'Director'),(362765,1519326,4,'Writer'),(362765,1519327,4,'Writer'),(379532,88506,2,'Director'),(379532,88506,3,'Producer'),(379532,1607605,6,'Original Music Composer'),(379532,1688529,4,'Screenplay'),(379532,1757218,3,'Associate Producer'),(379532,1758165,4,'Screenplay'),(379532,1758166,3,'Producer'),(379532,1758167,1,'Director of Photography'),(379532,1758167,5,'Editor'),(253261,1418,1,'Director of Photography'),(253261,117841,1,'Director of Photography'),(253261,1108554,1,'Director of Photography'),(253261,1131020,5,'Editor'),(253261,1161761,2,'Director'),(253261,1161761,3,'Producer'),(253261,1292118,3,'Producer'),(94072,230059,2,'Director'),(198370,1059034,3,'Producer'),(198370,1291408,2,'Director'),(308467,582527,2,'Director'),(188166,47099,3,'Producer'),(188166,74655,2,'Director'),(188166,74655,4,'Writer'),(188166,74655,1,'Director of Photography'),(188166,209513,3,'Executive Producer'),(188166,1102524,3,'Producer'),(188166,1111410,6,'Sound Designer'),(188166,1149911,5,'Editor'),(188166,1162674,7,'Production Design'),(188166,1193631,7,'Art Direction'),(188166,1315939,3,'Producer'),(188166,1315940,3,'Executive Producer'),(188166,1315941,6,'Original Music Composer'),(188166,1315942,6,'Original Music Composer'),(188166,1364094,3,'Casting'),(188166,1364096,3,'Casting'),(188166,1364097,8,'Costume Design'),(188166,1364098,6,'Boom Operator'),(188166,1364099,6,'Supervising Sound Editor'),(188166,1364099,5,'Dialogue Editor'),(188166,1364099,6,'Sound Re-Recording Mixer'),(188166,1364100,10,'Visual Effects Supervisor'),(188166,1364101,11,'Gaffer'),(188166,1364102,2,'Script Supervisor'),(188166,1405352,8,'Makeup Artist'),(188166,1405353,3,'Production Supervisor'),(188166,1405355,9,'Property Master'),(188166,1405356,6,'Sound Designer'),(188166,1405357,5,'Dialogue Editor'),(188166,1405358,5,'Digital Intermediate'),(64499,52449,1,'Director of Photography'),(64499,63558,3,'Casting'),(64499,66569,7,'Production Design'),(64499,81963,7,'Production Design'),(64499,82335,2,'Director'),(64499,82335,4,'Writer'),(64499,82337,2,'Director'),(64499,82337,4,'Writer'),(64499,939510,3,'Producer'),(64499,1056180,5,'Editor'),(64499,1334020,7,'Set Decoration'),(64499,1454540,5,'Editor'),(64499,1454542,8,'Costume Design'),(64499,1454543,8,'Costume Design'),(64499,1454544,11,'Gaffer'),(281189,1116801,2,'Director'),(189711,1170800,4,'Writer'),(189711,1425142,2,'Director'),(157909,545261,2,'Director'),(157909,545261,4,'Writer'),(65203,1497,3,'Producer'),(65203,3633,3,'Producer'),(65203,9062,7,'Art Direction'),(65203,10004,5,'Editor'),(65203,29970,1,'Director of Photography'),(65203,34740,4,'Writer'),(65203,120305,3,'Producer'),(65203,145605,2,'Director'),(103620,20674,3,'Producer'),(103620,23461,1,'Director of Photography'),(103620,44765,3,'Producer'),(103620,44765,4,'Writer'),(103620,59290,4,'Writer'),(103620,59291,4,'Writer'),(103620,59291,3,'Producer'),(103620,62725,3,'Casting'),(103620,64211,2,'Director'),(103620,1003244,3,'Casting'),(103620,1189108,8,'Costume Design'),(103620,1530239,6,'Original Music Composer'),(319069,1414588,6,'Music'),(319069,1414864,2,'Director'),(319069,1414864,4,'Writer'),(319069,1426194,4,'Writer'),(79161,586066,2,'Director'),(371690,1557430,2,'Director'),(371690,1619545,4,'Writer'),(371690,1667207,4,'Writer'),(371690,1697858,4,'Writer'),(371690,1697859,4,'Writer'),(371690,1697861,3,'Producer'),(371690,1697866,5,'Editor'),(371690,1697866,6,'Music'),(371690,1697867,1,'Director of Photography'),(371690,1697869,5,'Editor'),(371690,1697870,7,'Production Design'),(371690,1697872,7,'Set Decoration'),(371690,1697877,1,'Still Photographer'),(371690,1697878,8,'Makeup Artist'),(52032,146883,2,'Director'),(52032,146883,4,'Screenplay'),(52032,146883,5,'Editor'),(52032,146883,10,'Animation'),(52032,146884,2,'Director'),(52032,146884,4,'Screenplay'),(52032,146884,10,'Animation'),(52032,1150805,6,'Music'),(52032,1318285,4,'Story'),(52032,1790119,3,'Producer'),(38810,72525,5,'Editor'),(38810,122423,2,'Director'),(38810,122423,4,'Screenplay'),(38810,136427,4,'Screenplay'),(38810,1128434,1,'Director of Photography'),(38810,1185440,8,'Makeup Artist'),(38810,1367564,3,'Casting'),(38810,1488729,8,'Costume Design'),(38810,1548889,2,'Script Supervisor'),(38810,1552030,3,'Casting'),(38810,1553679,1,'First Assistant Camera'),(38810,1570054,1,'First Assistant Camera'),(38810,1570055,1,'First Assistant Camera'),(38810,1570057,8,'Assistant Costume Designer'),(38810,1570059,8,'Assistant Costume Designer'),(38810,1570060,8,'Assistant Costume Designer'),(38810,1570061,9,'Special Effects'),(38810,1570062,9,'Special Effects'),(38810,1570063,7,'Construction Coordinator'),(38810,1570064,8,'Hairstylist'),(55123,77003,2,'Director'),(162396,58547,2,'Director'),(68412,115226,2,'Director'),(68412,115226,4,'Writer'),(87943,1046935,2,'Director'),(87943,1046935,4,'Writer'),(87943,1139506,2,'Director'),(87943,1139506,4,'Writer'),(73981,7324,2,'Director'),(91721,86293,1,'Director of Photography'),(91721,86293,3,'Producer'),(91721,1043404,2,'Director'),(91721,1043404,3,'Producer'),(91721,1043405,4,'Writer'),(91721,1043424,3,'Producer'),(91721,1043425,5,'Editor'),(91721,1043426,8,'Costume Design'),(91721,1043427,3,'Unit Production Manager'),(91721,1043428,6,'Sound mixer'),(91721,1043429,6,'Sound Designer'),(91721,1043430,11,'Electrician'),(91721,1043431,1,'Camera Operator'),(91721,1043432,5,'Editorial Production Assistant'),(91721,1043433,5,'Editorial Production Assistant'),(91721,1043434,6,'Music'),(91721,1052231,4,'Writer'),(118452,36589,4,'Story'),(118452,78550,4,'Screenplay'),(118452,130816,2,'Director'),(47534,101187,4,'Writer'),(47534,112632,2,'Director'),(40914,125044,2,'Director'),(40914,125045,4,'Writer'),(365052,6360,4,'Writer'),(365052,71044,5,'Editor'),(365052,79726,2,'Director'),(365052,1016541,3,'Executive Producer'),(250184,61983,2,'Director'),(250184,61983,4,'Screenplay'),(250184,1301700,2,'Director'),(250184,1301700,4,'Screenplay'),(426067,1708905,2,'Director'),(324352,115005,3,'Producer'),(324352,1424519,2,'Director'),(324352,1424519,4,'Writer'),(324352,1424519,3,'Producer'),(324352,1424521,3,'Producer'),(324352,1424522,3,'Producer'),(324352,1424523,3,'Producer'),(324352,1424524,3,'Producer'),(324352,1424525,9,'Stunt Coordinator'),(318040,56373,3,'Co-Producer'),(318040,1555903,2,'Director'),(318040,1555903,4,'Writer'),(318040,1555903,3,'Producer'),(318040,1555906,9,'Translator'),(318040,1555906,3,'Co-Producer'),(318040,1555907,3,'Executive Producer'),(318040,1555907,3,'Producer'),(318040,1555909,3,'Producer'),(318040,1555910,3,'Co-Producer'),(80468,4610,3,'Executive Producer'),(80468,65242,2,'Director'),(80468,589583,4,'Writer'),(84188,71880,1,'Director of Photography'),(84188,79434,2,'Director'),(84188,79434,4,'Writer'),(84188,1000467,3,'Producer'),(84188,1565248,6,'Music'),(50035,56539,2,'Director'),(50035,56539,4,'Writer'),(44490,17735,4,'Writer'),(44490,61069,2,'Director'),(76996,67583,4,'Screenplay'),(76996,142513,4,'Screenplay'),(76996,142513,2,'Director'),(76996,278228,4,'Screenplay'),(76996,413105,1,'Director of Photography'),(76996,581055,4,'Screenplay'),(76996,581056,6,'Original Music Composer'),(51942,126125,2,'Director'),(51942,126125,9,'Creator'),(60420,132963,4,'Writer'),(60420,132964,2,'Director'),(60420,132964,4,'Writer'),(60420,233130,6,'Original Music Composer'),(60420,967792,1,'Director of Photography'),(60420,1616265,3,'Executive Producer'),(60420,1616266,3,'Executive Producer'),(142132,3110,2,'Director'),(142132,3110,4,'Writer'),(142132,21404,2,'Director'),(142132,21404,4,'Writer'),(142132,21409,1,'Director of Photography'),(142132,112751,3,'Producer'),(142132,115312,3,'Producer'),(142132,960413,5,'Editor'),(142132,1116371,3,'Producer'),(142132,1116372,6,'Original Music Composer'),(109729,1035,3,'Producer'),(109729,1035,2,'Director'),(109729,16379,4,'Writer'),(109729,16379,3,'Producer'),(109729,19044,5,'Editor'),(109729,49265,3,'Co-Producer'),(109729,558896,9,'Stunt Coordinator'),(109729,959314,3,'Producer'),(109729,1108685,3,'Co-Producer'),(109729,1108685,10,'Visual Effects Supervisor'),(109729,1190103,8,'Costume Design'),(109729,1458208,1,'Director of Photography'),(109729,1566120,6,'Music Supervisor'),(109729,1718899,3,'Co-Producer'),(109729,1718900,3,'Co-Producer'),(109729,1765999,3,'Co-Producer'),(109729,1766001,3,'Executive Producer'),(109729,1766002,3,'Co-Producer'),(109729,1766004,7,'Production Design'),(109729,1766006,8,'Key Makeup Artist'),(109729,1766006,8,'Key Hair Stylist'),(109729,1766007,1,'Grip'),(109729,1766008,1,'Grip'),(109729,1766009,1,'Key Grip'),(109729,1766010,1,'Grip'),(109729,1766011,1,'Grip'),(109729,1766012,1,'Grip'),(109729,1766013,7,'Storyboard Designer'),(109729,1766014,11,'Gaffer'),(109729,1766015,1,'Grip'),(109729,1766016,1,'Grip'),(109729,1766017,1,'Grip'),(78307,930628,2,'Director'),(78307,1194681,2,'Director'),(70687,85925,2,'Director'),(70687,85925,4,'Writer'),(60463,30053,3,'Producer'),(60463,79390,3,'Producer'),(60463,110876,2,'Director'),(60463,110876,4,'Screenplay'),(60463,236844,3,'Executive Producer'),(60463,931158,6,'Music'),(60463,1157369,4,'Screenplay'),(60463,1157369,3,'Line Producer'),(60463,1157370,9,'Cinematography'),(46252,21246,2,'Director'),(46252,21246,4,'Writer'),(77934,582841,2,'Director'),(77934,582842,4,'Writer'),(77934,582843,9,'Property Master'),(77934,582844,8,'Set Dressing Artist'),(77934,582845,8,'Set Dressing Artist'),(77934,582846,8,'Set Dressing Artist'),(77934,582847,9,'Property Master'),(77934,582848,3,'Producer'),(77934,582849,6,'Music'),(77934,582850,9,'Cinematography'),(150211,1331465,2,'Director'),(306667,88506,4,'Screenplay'),(306667,88506,2,'Director'),(306667,88506,3,'Producer'),(306667,112724,3,'Associate Producer'),(306667,1154823,3,'Co-Producer'),(306667,1344755,1,'Director of Photography'),(306667,1601315,1,'Director of Photography'),(306667,1607605,6,'Original Music Composer'),(306667,1758176,5,'Editor'),(306667,1758177,8,'Costume Design'),(306667,1758178,3,'Associate Producer'),(274758,1231548,3,'Executive Producer'),(274758,1231548,4,'Writer'),(274758,1308365,1,'Director of Photography'),(274758,1460398,2,'Director'),(173224,1155992,2,'Director'),(173224,1155992,4,'Writer'),(376010,1320540,9,'Cinematography'),(376010,1562428,2,'Director'),(376010,1562428,4,'Writer'),(139948,1111709,2,'Director'),(139948,1111710,2,'Director'),(77332,193390,2,'Director'),(70478,558559,2,'Director'),(35073,4104,7,'Set Decoration'),(35073,7305,1,'Director of Photography'),(35073,11558,2,'Director'),(35073,11558,7,'Production Design'),(35073,11558,9,'Special Effects'),(35073,14522,4,'Screenplay'),(35073,17667,6,'Original Music Composer'),(35073,59832,3,'Co-Producer'),(35073,62923,4,'Story'),(35073,66758,10,'Visual Effects'),(35073,89227,3,'Producer'),(35073,16036,4,'Screenplay'),(35073,993210,3,'Co-Producer'),(35073,993210,5,'Editor'),(35073,1312999,2,'Assistant Director'),(35073,1432114,8,'Makeup Artist'),(35073,1582632,9,'Special Effects'),(35073,1582633,9,'Special Effects'),(43595,4350,8,'Costume Design'),(43595,103616,4,'Writer'),(43595,116186,2,'Director'),(43595,128355,4,'Screenplay'),(54897,44065,4,'Writer'),(54897,557883,2,'Director'),(83588,27039,3,'Casting'),(83588,929825,2,'Director'),(83588,929825,4,'Writer'),(83588,929825,3,'Producer'),(83588,1046612,1,'Director of Photography'),(83588,1066324,3,'Producer'),(83588,1066326,5,'Editor'),(83588,1066327,6,'Original Music Composer'),(83588,1066328,8,'Costume Design'),(53256,1071,4,'Screenplay'),(53256,1071,2,'Director'),(40920,44026,3,'Producer'),(40920,1201090,2,'Director'),(40920,1201090,4,'Writer'),(287815,1553042,2,'Director'),(54702,151017,2,'Director'),(54702,151018,4,'Writer'),(176074,50583,2,'Director'),(176074,50583,4,'Writer'),(69270,31625,4,'Screenplay'),(69270,51445,2,'Director'),(402515,1686666,2,'Director'),(402515,1686667,2,'Director'),(126141,9956,2,'Director'),(48035,11572,4,'Screenplay'),(48035,11572,2,'Director'),(48035,11572,3,'Producer'),(48035,51212,7,'Production Design'),(48035,56885,9,'Cinematography'),(48035,142923,4,'Story'),(48035,1017687,3,'Producer'),(48035,1017698,5,'Editor'),(48035,1111128,6,'Sound Designer'),(48035,1876054,3,'Producer'),(48035,1876058,6,'Music'),(48035,1876060,8,'Costume Design'),(48035,1876061,8,'Makeup Artist'),(37985,74105,2,'Director'),(37985,74106,2,'Director'),(36549,1187357,4,'Screenplay'),(36549,1187357,2,'Director'),(36549,1539172,11,'Best Boy Electric'),(361398,1514634,2,'Director'),(361398,1514635,4,'Screenplay'),(361398,1514635,2,'Director'),(289180,1330498,2,'Director'),(289180,1330498,4,'Writer'),(289180,1330499,2,'Director'),(289180,1330499,4,'Writer'),(288927,1375627,4,'Screenplay'),(288927,1375627,2,'Director'),(288927,1375627,3,'Producer'),(288927,1394559,3,'Producer'),(288927,1394560,3,'Producer'),(79120,586002,2,'Director'),(79120,586002,4,'Writer'),(79120,586002,5,'Editor'),(253290,147729,3,'Producer'),(253290,1288774,3,'Producer'),(253290,1288774,2,'Director'),(253290,1295724,3,'Producer'),(344466,1030521,3,'Producer'),(344466,1113128,6,'Original Music Composer'),(344466,1476699,2,'Director'),(344466,1486164,1,'Director of Photography'),(344466,1486165,4,'Screenplay'),(344466,1486166,7,'Production Design'),(344466,1486173,3,'Producer'),(55420,5873,3,'Executive Producer'),(55420,45459,2,'Director'),(55420,45459,1,'Director of Photography'),(55420,45459,5,'Editor'),(55420,45459,3,'Producer'),(55420,45459,4,'Writer'),(55420,53072,3,'Producer'),(55420,222330,3,'Producer'),(55420,222330,4,'Writer'),(55420,682687,3,'Executive Producer'),(55420,930989,6,'Original Music Composer'),(55420,930989,6,'Musician'),(55420,996135,3,'Producer'),(55420,1073059,6,'Sound Designer'),(55420,1073059,6,'Supervising Sound Editor'),(55420,1073059,6,'Sound Re-Recording Mixer'),(55420,1114902,9,'Post Production Supervisor'),(55420,1114902,3,'Unit Production Manager'),(55420,1114902,3,'Associate Producer'),(55420,1192861,3,'Casting'),(55420,1192862,3,'Casting'),(55420,1193631,7,'Art Direction'),(55420,1298750,6,'Original Music Composer'),(55420,1298750,6,'Musician'),(55420,1329419,8,'Costume Design'),(55420,1329419,7,'Art Direction'),(55420,1332126,6,'Production Sound Mixer'),(55420,1400099,5,'Dialogue Editor'),(55420,1400100,6,'Dolby Consultant'),(55420,1400101,6,'Sound Effects Editor'),(55420,1400102,10,'Visual Effects Supervisor'),(55420,1400104,10,'Visual Effects Supervisor'),(55420,1400105,11,'Gaffer'),(55420,1400105,1,'Still Photographer'),(55420,1400105,2,'Assistant Director'),(55420,1400105,1,'First Assistant Camera'),(55420,1400106,11,'Gaffer'),(55420,1400107,2,'Script Supervisor'),(55420,1553974,6,'Supervising Dialogue Editor'),(55420,1575194,3,'Assistant Production Coordinator'),(55420,1799864,7,'Production Design'),(55420,1799865,3,'Production Coordinator'),(55420,1799869,3,'Production Coordinator'),(55420,1799870,5,'Assistant Editor'),(408429,1677569,2,'Director'),(39141,3727,3,'Executive Producer'),(39141,6510,3,'Executive Producer'),(39141,6511,3,'Executive Producer'),(39141,12624,4,'Writer'),(39141,17044,3,'Associate Producer'),(39141,17046,2,'Director'),(39141,17046,3,'Producer'),(39141,17491,3,'Producer'),(39141,33650,3,'Producer'),(39141,59871,1,'Director of Photography'),(39141,61484,5,'Editor'),(39141,1749185,4,'Writer'),(39141,1749186,3,'Line Producer'),(39141,1749187,6,'Music'),(50497,3081,3,'Casting'),(50497,6223,3,'Producer'),(50497,88323,2,'Director'),(50497,88323,4,'Writer'),(50497,966378,3,'Producer'),(50497,968934,6,'Original Music Composer'),(50497,993624,7,'Production Design'),(50497,1147911,7,'Art Direction'),(50497,1322568,5,'Editor'),(50497,1325677,9,'Cinematography'),(50497,1325678,5,'Editor'),(50497,1325679,8,'Costume Design'),(354624,1562421,2,'Director'),(354624,1562422,4,'Writer'),(354624,1562423,4,'Writer'),(335244,1456123,2,'Director'),(178862,1162816,2,'Director'),(178862,1162816,3,'Producer'),(178862,1300550,3,'Producer'),(178862,1300550,9,'Cinematography'),(178862,1300551,3,'Producer'),(178862,1300552,3,'Executive Producer'),(178862,1300553,6,'Music'),(178862,1300554,5,'Editor'),(178862,1300555,8,'Hairstylist'),(178862,1300556,6,'Sound Editor'),(178862,1300558,5,'Color Timer'),(331745,1448550,2,'Director'),(331745,1448551,2,'Director'),(282128,1343876,2,'Director'),(86812,222330,3,'Producer'),(86812,222330,4,'Writer'),(86812,933739,2,'Director'),(86812,933739,4,'Writer'),(84355,5081,9,'Creative Consultant'),(84355,90492,2,'Director'),(84355,90492,4,'Writer'),(84355,148735,1,'Director of Photography'),(84355,148737,5,'Editor'),(84355,966335,6,'Original Music Composer'),(84355,1053991,7,'Production Design'),(84355,1328189,3,'Producer'),(40652,1653,7,'Assistant Art Director'),(40652,1653,2,'Assistant Director'),(40652,3526,5,'Editor'),(40652,3528,6,'Sound'),(40652,3540,1,'Director of Photography'),(40652,3571,6,'Sound'),(40652,3776,2,'Director'),(40652,3776,4,'Screenplay'),(40652,9959,6,'Sound'),(40652,28097,5,'Editor'),(40652,67964,5,'Editor'),(40652,1046052,6,'Original Music Composer'),(40652,1052402,3,'Production Manager'),(40652,1145371,3,'Production Manager'),(40652,1560807,7,'Set Designer'),(40652,1608857,5,'Editor'),(40652,1608858,7,'Production Design'),(40652,1608859,2,'Assistant Director'),(40652,1608860,2,'Assistant Director'),(339408,5914,3,'Casting'),(339408,2484,5,'Editor'),(339408,5506,1,'Director of Photography'),(339408,32403,7,'Production Design'),(339408,11005,7,'Set Decoration'),(339408,60475,3,'Producer'),(339408,60501,3,'Casting'),(339408,60503,3,'Casting'),(339408,62643,8,'Costume Design'),(339408,74534,3,'Producer'),(339408,77277,2,'Director'),(339408,77277,4,'Writer'),(339408,77277,3,'Producer'),(339408,227440,6,'Original Music Composer'),(339408,1116278,3,'Producer'),(339408,1301687,3,'Producer'),(339408,1418373,6,'Supervising Sound Editor'),(339408,1521110,3,'Casting'),(339408,1571008,4,'Story'),(339408,1571009,3,'Casting'),(266857,1314011,2,'Director'),(299245,84348,3,'Producer'),(299245,1263442,6,'Music'),(299245,1308365,1,'Director of Photography'),(299245,1401541,2,'Director'),(299245,1401541,4,'Writer'),(299245,1401542,2,'Director'),(299245,1401542,4,'Writer'),(299245,1401543,3,'Producer'),(65448,932993,2,'Director'),(65448,932993,4,'Writer'),(272726,99240,2,'Director'),(272726,99240,4,'Screenplay'),(272726,1510013,1,'Director of Photography'),(272726,1518617,3,'Producer'),(272726,1825605,3,'Producer'),(272726,1825606,6,'Original Music Composer'),(175291,92993,4,'Writer'),(175291,84697,2,'Director'),(175291,107765,3,'Producer'),(175291,146836,3,'Producer'),(175291,965242,1,'Director of Photography'),(175291,1012028,3,'Casting'),(175291,1103566,7,'Production Design'),(175291,1106692,6,'Original Music Composer'),(175291,1291702,4,'Writer'),(175291,1302895,3,'Producer'),(175291,1302896,3,'Executive Producer'),(175291,1302897,3,'Executive Producer'),(175291,1302898,3,'Executive Producer'),(175291,1302899,5,'Editor'),(175291,1302900,7,'Art Direction'),(175291,1302901,9,'Makeup Effects'),(175291,1532916,1,'Director of Photography'),(80215,1044256,2,'Director'),(80215,1044257,2,'Director'),(80215,1577704,6,'Music'),(51130,29635,1,'Director of Photography'),(51130,32125,5,'Editor'),(51130,55694,6,'Original Music Composer'),(51130,114396,2,'Director'),(51130,124850,4,'Screenplay'),(270554,1321304,2,'Director'),(270554,1321306,4,'Writer'),(270554,142098,3,'Producer'),(270554,1321306,3,'Producer'),(270554,1385087,6,'Music'),(270554,1452239,1,'Director of Photography'),(270554,1452240,8,'Makeup Department Head'),(270554,1452241,8,'Makeup Artist'),(270554,1452242,10,'Visual Effects'),(270554,1452243,2,'Script Supervisor'),(72086,89981,2,'Director'),(72086,567805,4,'Writer'),(268917,1314543,4,'Writer'),(268917,1645102,2,'Director'),(268917,1645102,4,'Writer'),(268917,1645102,1,'Director of Photography'),(64973,1184450,2,'Director'),(90414,87033,2,'Director'),(111794,18691,3,'Executive Producer'),(111794,13445,3,'Executive Producer'),(111794,162102,2,'Director'),(111794,176253,4,'Writer'),(111794,977559,3,'Producer'),(111794,1052873,3,'Producer'),(360188,98094,4,'Writer'),(360188,98094,2,'Director'),(360188,98094,3,'Producer'),(360188,98865,3,'Producer'),(360188,99154,6,'Music'),(85860,64227,2,'Director'),(85860,64227,4,'Writer'),(85860,1009253,2,'Director'),(85860,1009254,4,'Writer'),(244534,40863,4,'Screenplay'),(244534,40863,2,'Director'),(244534,40863,3,'Producer'),(244534,130642,3,'Producer'),(244534,1118557,1,'Director of Photography'),(294086,1142889,4,'Writer'),(294086,1366270,4,'Writer'),(294086,1366270,2,'Director'),(139998,90575,2,'Director'),(139998,90575,4,'Writer'),(139998,171766,4,'Writer'),(74777,551463,2,'Director'),(74777,551463,5,'Editor'),(74777,551463,3,'Producer'),(74777,551463,4,'Writer'),(74777,572407,3,'Line Producer'),(74777,583456,3,'Producer'),(74777,583457,3,'Producer'),(74777,583459,3,'Producer'),(74777,583460,3,'Producer'),(74777,583461,3,'Producer'),(74777,583462,3,'Producer'),(74777,583463,3,'Producer'),(74777,583464,3,'Producer'),(74777,583465,6,'Original Music Composer'),(74777,583466,1,'Director of Photography'),(74777,583467,8,'Costume Design'),(74777,583468,8,'Makeup Artist'),(74777,583468,2,'Script Supervisor'),(74777,583469,9,'Makeup Effects'),(74777,583470,9,'Makeup Effects'),(74777,583471,9,'Second Unit'),(74777,583472,7,'Art Department Manager'),(74777,583473,9,'Sound Design Assistant'),(74777,583474,6,'Sound Designer'),(74777,583475,10,'Visual Effects'),(74777,583476,1,'Grip'),(74777,583477,1,'Camera Operator'),(74777,583478,8,'Costume Supervisor'),(74777,583479,5,'Color Timer'),(74777,583480,3,'Production Manager'),(159770,201799,4,'Writer'),(159770,1144092,2,'Director'),(159770,1144092,4,'Writer'),(159770,1208341,4,'Story'),(159770,1319305,4,'Story'),(42109,15194,1,'Director of Photography'),(42109,69719,4,'Screenplay'),(42109,69719,2,'Director'),(42109,87343,4,'Screenplay'),(42109,240585,4,'Novel'),(42109,1084094,4,'Screenplay'),(47607,139135,2,'Director'),(47607,139135,4,'Writer'),(47607,139136,3,'Producer'),(47607,139137,3,'Producer'),(47607,139138,1,'Director of Photography'),(47607,139139,5,'Editor'),(47607,139140,3,'Producer'),(47607,139141,6,'Sound Director'),(47607,139143,11,'Gaffer'),(47607,139144,1,'Grip'),(47607,139145,7,'Art Direction'),(47607,139146,2,'Script Supervisor'),(193603,1434676,2,'Director'),(193603,1434676,4,'Writer'),(84659,1289580,2,'Director'),(84659,1289581,4,'Writer'),(322745,74971,2,'Director'),(174362,1168852,2,'Director'),(174362,1168852,4,'Writer'),(174362,1168854,1,'Director of Photography'),(174362,1168854,4,'Writer'),(174362,1168855,5,'Editor'),(242095,5914,3,'Casting'),(242095,3189,5,'Editor'),(242095,13030,9,'Special Effects Coordinator'),(242095,32806,5,'Digital Intermediate'),(242095,39123,3,'Casting'),(242095,70149,1,'Additional Photography'),(242095,61522,7,'Art Direction'),(242095,62775,3,'Executive Producer'),(242095,111052,7,'Production Design'),(242095,125324,2,'Director'),(242095,125324,4,'Writer'),(242095,929093,8,'Makeup Artist'),(242095,937957,3,'Producer'),(242095,999763,3,'Producer'),(242095,1023296,4,'Writer'),(242095,1144816,1,'Director of Photography'),(242095,1172235,1,'Camera Operator'),(242095,1192854,6,'Original Music Composer'),(242095,1221442,10,'Visual Effects Supervisor'),(242095,1276601,3,'Executive Producer'),(242095,1277093,4,'Writer'),(242095,1283875,3,'Location Manager'),(242095,1363590,3,'Executive Producer'),(242095,1401690,5,'Dialogue Editor'),(242095,1402951,2,'Script Supervisor'),(242095,1403856,9,'Property Master'),(242095,1403858,7,'Art Department Coordinator'),(242095,1403865,1,'Still Photographer'),(242095,1406079,8,'Makeup Department Head'),(242095,1411877,9,'Transportation Coordinator'),(242095,1436181,10,'Visual Effects Producer'),(242095,1441322,10,'Visual Effects Supervisor'),(242095,1453658,7,'Art Direction'),(242095,1453659,7,'Set Decoration'),(242095,1453661,8,'Costume Design'),(242095,1453662,8,'Makeup Artist'),(242095,1453663,9,'Makeup Effects'),(242095,1453664,7,'Construction Coordinator'),(242095,1453665,7,'Leadman'),(242095,1453666,6,'ADR & Dubbing'),(242095,1453667,6,'Sound Re-Recording Mixer'),(242095,1453668,10,'Animation'),(242095,1453669,9,'Visual Effects Art Director'),(242095,1453671,9,'Visual Effects Editor'),(242095,1453673,9,'Stunt Coordinator'),(242095,1453674,1,'Camera Operator'),(242095,1453675,11,'Gaffer'),(242095,1453676,8,'Costume Supervisor'),(242095,1453677,8,'Set Costumer'),(242095,1453678,8,'Set Costumer'),(242095,1453679,5,'Digital Intermediate'),(242095,1454274,7,'Leadman'),(250902,8042,3,'Co-Producer'),(250902,117661,3,'Producer'),(250902,220272,3,'Executive Producer'),(250902,220274,2,'Director'),(250902,220274,5,'Editor'),(250902,220274,3,'Producer'),(250902,220274,4,'Writer'),(250902,220275,3,'Executive Producer'),(250902,220276,3,'Producer'),(250902,220276,9,'Cinematography'),(250902,1541602,3,'Co-Producer'),(250902,1693035,3,'Co-Producer'),(250902,1753379,3,'Associate Producer'),(250902,1753380,3,'Associate Producer'),(250902,1753381,3,'Co-Producer'),(250902,1753382,3,'Producer'),(250902,1753382,3,'Executive Producer'),(250902,1753383,3,'Associate Producer'),(158895,971868,5,'Editor'),(158895,983343,6,'Original Music Composer'),(158895,1031144,2,'Director'),(158895,1031144,4,'Writer'),(158895,1046658,3,'Producer'),(158895,1203818,9,'Cinematography'),(158895,1203819,7,'Production Design'),(158895,1203819,8,'Costume Design'),(158895,1458259,3,'Co-Producer'),(222250,57997,2,'Director'),(125537,85242,2,'Director'),(326576,1078217,1,'Director of Photography'),(326576,1078217,3,'Co-Producer'),(326576,1429671,2,'Director'),(326576,1429671,5,'Editor'),(326576,1429671,10,'Visual Effects'),(326576,1429671,4,'Writer'),(326576,1429673,3,'Producer'),(326576,1429673,4,'Writer'),(228550,1263110,2,'Director'),(290391,1177998,3,'Casting'),(290391,1177998,4,'Writer'),(290391,1360439,2,'Director'),(290391,1360440,6,'Music'),(290391,1360441,9,'Cinematography'),(290391,1360442,5,'Editor'),(290391,1360443,7,'Production Design'),(290391,1360443,7,'Set Decoration'),(290391,1360444,3,'Casting'),(44770,131388,2,'Director'),(44770,131388,5,'Editor'),(44770,131388,3,'Producer'),(44770,131388,4,'Writer'),(44770,131393,3,'Producer'),(44770,131394,3,'Executive Producer'),(44770,131395,3,'Executive Producer'),(44770,131396,3,'Producer'),(44770,131397,5,'Editor'),(44770,131397,3,'Producer'),(44770,131397,2,'Assistant Director'),(44770,131399,3,'Executive Producer'),(44770,131400,3,'Executive Producer'),(69382,558540,2,'Director'),(40769,40864,2,'Director'),(40769,40864,4,'Writer'),(220490,1263945,2,'Director'),(220490,1263945,4,'Writer'),(42151,137467,2,'Director'),(42151,137467,4,'Writer'),(42151,137469,4,'Writer'),(42497,66709,6,'Music'),(42497,66709,9,'Cinematography'),(42497,64728,6,'Music'),(42497,237393,2,'Director'),(42497,237393,4,'Story'),(42497,237393,3,'Producer'),(185465,151092,2,'Director'),(185465,151092,4,'Writer'),(38780,23799,2,'Director'),(38780,23799,4,'Writer'),(38780,23799,3,'Producer'),(38780,23808,1,'Director of Photography'),(38780,40609,3,'Producer'),(38780,40608,3,'Executive Producer'),(38780,23806,6,'Original Music Composer'),(38780,32205,3,'Co-Producer'),(38780,43901,3,'Producer'),(38780,113194,9,'Stunt Coordinator'),(38780,62703,7,'Production Design'),(38780,129988,8,'Costume Design'),(38780,876526,3,'Executive Producer'),(38780,1278332,5,'Editor'),(38780,1481357,7,'Art Direction'),(366967,1532382,4,'Screenplay'),(366967,1532382,2,'Director'),(366967,1532383,4,'Screenstory'),(366967,1532384,4,'Screenplay'),(255266,1263110,2,'Director'),(255266,1263110,4,'Writer'),(255266,1263111,4,'Writer'),(255266,1299347,1,'Director of Photography'),(226458,9545,3,'Casting'),(226458,29922,2,'Director'),(226458,29922,3,'Producer'),(226458,71145,6,'Music'),(226458,590055,6,'Sound Re-Recording Mixer'),(226458,960074,6,'Sound Designer'),(226458,1020053,3,'Producer'),(226458,1054727,4,'Writer'),(226458,1113449,3,'Producer'),(226458,1276602,3,'Casting'),(226458,1350849,3,'Casting'),(226458,1392098,10,'Visual Effects Supervisor'),(226458,1399022,8,'Costume Design'),(226458,1411876,1,'Steadicam Operator'),(226458,1415030,9,'Makeup Effects'),(226458,1428843,8,'Costume Supervisor'),(226458,1442425,9,'Makeup Effects'),(226458,1447945,9,'Stunt Coordinator'),(226458,1459723,9,'Special Effects Coordinator'),(226458,1464943,3,'Producer'),(226458,1464944,1,'Director of Photography'),(226458,1464945,5,'Editor'),(226458,1464947,7,'Production Design'),(226458,1464948,7,'Art Direction'),(226458,1464950,7,'Set Decoration'),(226458,1464955,8,'Hairstylist'),(226458,1464956,8,'Makeup Department Head'),(226458,1464957,8,'Makeup Artist'),(226458,1464958,9,'Property Master'),(226458,1464959,6,'First Assistant Sound Editor'),(226458,1464960,10,'Visual Effects Supervisor'),(226458,1464961,1,'Camera Operator'),(226458,1464963,1,'Still Photographer'),(226458,1464964,11,'Gaffer'),(226458,1464965,6,'Music Editor'),(226458,1464967,2,'Script Supervisor'),(287625,1360240,2,'Director'),(287625,1360240,1,'Director of Photography'),(287625,1360248,3,'Producer'),(287625,1427414,4,'Screenplay'),(287625,1427416,4,'Screenplay'),(287625,1427420,3,'Producer'),(287625,1427422,1,'Director of Photography'),(44990,82885,4,'Screenplay'),(44990,131870,2,'Director'),(44990,131870,4,'Screenplay'),(44990,131870,5,'Editor'),(44990,1455747,1,'Director of Photography'),(44990,1612319,4,'Screenplay'),(44990,1612320,6,'Original Music Composer'),(86304,1009255,2,'Director'),(86304,1009255,4,'Writer'),(39851,21678,2,'Director'),(39851,21678,4,'Writer'),(157185,1310498,2,'Director'),(157185,1310498,3,'Producer'),(157185,1310498,4,'Writer'),(157185,1657964,1,'Director of Photography'),(36095,26882,2,'Director'),(36095,26882,4,'Writer'),(182291,1398500,2,'Director'),(182291,1398500,4,'Story'),(182291,1398501,4,'Screenplay'),(182291,1398501,4,'Story'),(286939,1171387,2,'Director'),(286939,1171387,3,'Producer'),(286939,1171387,4,'Writer'),(124606,77465,2,'Director'),(124606,77465,4,'Writer'),(124606,77469,3,'Producer'),(124606,551516,3,'Producer'),(124606,1108768,9,'Cinematography'),(124606,1487597,6,'Original Music Composer'),(67238,1174437,2,'Director'),(67238,1174438,2,'Director'),(72766,12833,2,'Director'),(72766,12833,3,'Producer'),(72766,12833,4,'Writer'),(72766,1066767,3,'Producer'),(72766,1066767,9,'Cinematography'),(72766,1251352,6,'Music'),(72766,1552358,5,'Editor'),(72766,1566006,3,'Producer'),(231617,23816,8,'Costume Design'),(231617,32733,3,'Producer'),(231617,43925,1,'Director of Photography'),(231617,166873,4,'Writer'),(231617,166873,3,'Executive Producer'),(231617,174065,3,'Executive Producer'),(231617,435006,3,'Casting'),(231617,551521,3,'Casting'),(231617,1012891,7,'Production Design'),(231617,1099146,6,'Original Music Composer'),(231617,1219158,2,'Director'),(231617,1219158,3,'Executive Producer'),(231617,1271268,5,'Editor'),(126186,208138,2,'Director'),(126186,208138,4,'Writer');
/*!40000 ALTER TABLE `movie_crew` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `movie_genres`
--
DROP TABLE IF EXISTS `movie_genres`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `movie_genres` (
`movie_id` int(10) DEFAULT NULL,
`genre_id` int(10) DEFAULT NULL,
KEY `fk_mg_movie` (`movie_id`),
KEY `fk_mg_genre` (`genre_id`),
CONSTRAINT `fk_mg_genre` FOREIGN KEY (`genre_id`) REFERENCES `genre` (`genre_id`),
CONSTRAINT `fk_mg_movie` FOREIGN KEY (`movie_id`) REFERENCES `movie` (`movie_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `movie_genres`
--
LOCK TABLES `movie_genres` WRITE;
/*!40000 ALTER TABLE `movie_genres` DISABLE KEYS */;
INSERT INTO `movie_genres` VALUES (5,35),(5,80),(11,12),(11,28),(11,878),(12,16),(12,10751),(13,18),(13,35),(13,10749),(14,18),(16,18),(16,80),(16,10402),(18,12),(18,14),(18,28),(18,53),(18,878),(19,18),(19,878),(20,18),(20,10749),(22,12),(22,14),(22,28),(24,28),(24,80),(25,18),(25,10752),(28,18),(28,10752),(33,37),(35,16),(35,35),(35,10751),(38,18),(38,878),(38,10749),(55,18),(55,53),(58,12),(58,14),(58,28),(59,18),(59,53),(59,80),(62,12),(62,878),(62,9648),(65,18),(66,18),(66,53),(66,80),(68,35),(68,878),(69,18),(69,10402),(69,10749),(70,18),(71,18),(71,35),(71,10402),(73,18),(74,12),(74,53),(74,878),(75,14),(75,35),(75,878),(76,18),(76,10749),(77,53),(77,9648),(78,18),(78,53),(78,878),(79,12),(79,18),(79,28),(79,36),(80,18),(80,10749),(83,18),(83,53),(85,12),(85,28),(87,12),(87,28),(89,12),(89,28),(90,28),(90,35),(90,80),(95,12),(95,28),(95,53),(95,878),(96,28),(96,35),(96,80),(98,12),(98,18),(98,28),(100,35),(100,80),(103,18),(103,80),(104,18),(104,28),(104,53),(105,12),(105,35),(105,878),(105,10751),(106,12),(106,28),(106,53),(106,878),(107,53),(107,80),(111,18),(111,28),(111,53),(111,80),(114,35),(114,10749),(115,35),(115,80),(116,18),(116,53),(116,80),(116,10749),(117,18),(117,36),(117,53),(117,80),(118,12),(118,14),(118,35),(118,10751),(120,12),(120,14),(120,28),(121,12),(121,14),(121,28),(122,12),(122,14),(122,28),(128,12),(128,14),(128,16),(129,12),(129,14),(129,16),(129,10751),(134,12),(134,28),(134,35),(137,14),(137,18),(137,35),(137,10749),(141,14),(141,18),(141,9648),(142,18),(142,10749),(146,12),(146,18),(146,28),(146,10749),(149,16),(149,878),(152,12),(152,878),(152,9648),(153,18),(154,12),(154,28),(154,53),(154,878),(155,18),(155,28),(155,53),(155,80),(157,12),(157,28),(157,53),(157,878),(161,53),(161,80),(162,14),(162,18),(162,10749),(163,53),(163,80),(165,12),(165,35),(165,878),(165,10751),(167,18),(167,878),(168,12),(168,878),(169,28),(169,53),(169,878),(170,27),(170,53),(170,878),(172,12),(172,28),(172,53),(172,878),(173,12),(173,18),(173,878),(174,12),(174,28),(174,53),(174,878),(176,27),(176,80),(176,9648),(177,18),(177,35),(179,53),(179,80),(180,28),(180,53),(180,878),(180,9648),(182,18),(182,53),(182,80),(182,9648),(182,10749),(182,10752),(184,35),(184,80),(184,10749),(186,18),(186,53),(186,80),(186,9648),(187,28),(187,53),(187,80),(189,53),(189,80),(193,12),(193,28),(193,53),(193,878),(194,35),(194,10749),(196,12),(196,35),(196,878),(196,10751),(197,18),(197,28),(197,36),(197,10752),(199,12),(199,28),(199,53),(199,878),(200,12),(200,28),(200,53),(200,878),(201,12),(201,28),(201,53),(201,878),(203,18),(203,80),(205,18),(205,36),(205,10752),(207,18),(214,27),(214,53),(214,80),(215,27),(217,12),(217,28),(218,28),(218,53),(218,878),(219,18),(219,35),(219,10749),(223,18),(223,9648),(226,18),(226,80),(227,18),(227,80),(231,18),(231,53),(235,18),(235,80),(238,18),(238,80),(239,35),(239,10749),(240,18),(240,80),(242,18),(242,53),(242,80),(243,18),(243,35),(243,10402),(243,10749),(245,18),(245,35),(245,10749),(248,18),(248,35),(251,14),(251,18),(251,53),(251,9648),(251,10749),(252,14),(252,10751),(253,12),(253,28),(253,53),(254,12),(254,18),(254,28),(257,18),(257,80),(257,10751),(261,18),(261,10749),(268,14),(268,28),(272,18),(272,28),(272,80),(274,18),(274,53),(274,80),(277,14),(277,28),(277,53),(278,18),(278,80),(279,18),(279,36),(279,10402),(280,28),(280,53),(280,878),(284,18),(284,35),(284,10749),(285,12),(285,14),(285,28),(288,37),(289,18),(289,10749),(291,99),(292,35),(292,99),(292,10402),(296,28),(296,53),(296,878),(297,14),(297,18),(297,9648),(298,53),(298,80),(302,53),(302,80),(306,28),(306,35),(306,80),(309,18),(310,14),(310,35),(311,18),(311,80),(314,28),(314,80),(319,28),(319,53),(319,80),(319,10749),(320,53),(320,80),(320,9648),(321,35),(321,10749),(322,18),(322,53),(322,80),(322,9648),(326,27),(326,28),(326,53),(326,80),(327,18),(327,53),(327,80),(329,12),(329,878),(330,12),(330,28),(330,878),(331,12),(331,28),(331,53),(331,878),(332,12),(332,28),(332,35),(332,10751),(334,18),(335,37),(338,18),(338,35),(338,10749),(342,18),(342,35),(345,18),(345,9648),(346,18),(346,28),(348,27),(348,28),(348,53),(348,878),(350,18),(350,35),(350,10749),(364,14),(364,28),(377,27),(380,18),(387,12),(387,18),(387,28),(387,36),(387,10752),(388,18),(388,53),(388,80),(389,18),(391,37),(392,18),(392,35),(392,10749),(393,28),(393,53),(393,80),(395,12),(395,28),(395,878),(398,18),(398,80),(400,18),(400,80),(401,18),(401,35),(401,10749),(403,18),(403,35),(404,18),(408,14),(408,16),(408,10751),(409,18),(409,10749),(409,10752),(411,12),(411,14),(411,10751),(414,14),(414,28),(414,80),(415,14),(415,28),(415,80),(421,12),(421,18),(421,35),(423,18),(423,10752),(424,18),(424,36),(424,10752),(425,12),(425,16),(425,35),(425,10751),(429,37),(431,53),(431,878),(431,9648),(433,14),(433,35),(433,10751),(435,12),(435,28),(435,53),(435,878),(436,18),(436,53),(436,80),(440,14),(440,27),(440,28),(440,53),(440,878),(451,18),(451,10749),(453,18),(453,10749),(454,18),(454,10749),(455,18),(455,35),(455,10749),(462,18),(464,18),(464,35),(464,10402),(464,10749),(468,18),(468,10749),(470,18),(470,53),(470,80),(473,18),(473,53),(473,9648),(479,12),(479,28),(479,53),(479,80),(480,18),(480,35),(480,10749),(489,18),(492,14),(492,18),(492,35),(496,35),(497,14),(497,18),(497,80),(500,53),(500,80),(503,12),(503,18),(503,28),(503,53),(504,18),(504,80),(507,18),(507,28),(507,53),(507,80),(508,18),(508,35),(508,10749),(509,18),(509,35),(509,10749),(510,18),(512,35),(512,9648),(522,18),(522,35),(522,36),(524,18),(524,80),(525,28),(525,35),(525,80),(525,10402),(526,12),(526,14),(526,18),(526,10749),(533,12),(533,16),(533,35),(533,10751),(534,28),(534,53),(534,878),(535,18),(535,10402),(535,10749),(539,18),(539,27),(539,53),(540,28),(542,18),(542,10749),(544,35),(544,10749),(546,18),(547,18),(547,10749),(549,18),(549,36),(550,18),(557,14),(557,28),(558,12),(558,14),(558,28),(559,12),(559,14),(559,28),(562,28),(562,53),(563,12),(563,28),(563,53),(563,878),(568,18),(573,18),(573,53),(573,80),(573,9648),(576,12),(576,37),(577,14),(577,18),(577,35),(577,53),(578,12),(578,27),(578,53),(579,27),(579,53),(580,12),(580,53),(581,12),(581,18),(581,37),(582,18),(582,53),(584,28),(584,53),(584,80),(585,16),(585,35),(585,10751),(586,18),(586,35),(587,12),(587,14),(587,18),(588,27),(588,9648),(590,18),(591,53),(591,9648),(592,18),(592,80),(592,9648),(593,12),(593,18),(593,878),(593,9648),(594,18),(594,35),(595,18),(595,80),(597,18),(597,53),(597,10749),(598,18),(598,80),(601,12),(601,14),(601,878),(601,10751),(602,12),(602,28),(602,878),(603,28),(603,878),(604,12),(604,28),(604,53),(604,878),(605,12),(605,28),(605,53),(605,878),(606,18),(607,12),(607,28),(607,35),(607,878),(608,12),(608,28),(608,35),(608,878),(609,27),(612,18),(612,28),(612,36),(612,53),(613,18),(613,36),(613,10752),(615,18),(616,18),(616,28),(616,36),(616,10752),(617,18),(617,80),(617,9648),(619,18),(619,28),(619,53),(619,10402),(619,10749),(621,10749),(622,27),(622,53),(622,9648),(627,18),(627,80),(628,27),(628,10749),(629,18),(629,53),(629,80),(630,12),(630,14),(630,10751),(634,18),(634,35),(634,10749),(639,18),(639,35),(639,10749),(640,18),(640,80),(641,18),(641,80),(642,18),(642,36),(642,37),(642,80),(644,12),(644,18),(644,878),(646,12),(646,28),(646,53),(650,18),(650,80),(652,12),(652,18),(652,10752),(654,18),(654,80),(657,12),(657,28),(657,53),(658,12),(658,28),(658,53),(660,12),(660,28),(660,53),(663,27),(663,53),(663,80),(664,12),(664,18),(664,28),(666,18),(667,12),(667,28),(667,53),(668,12),(668,28),(668,53),(670,18),(670,28),(670,53),(670,9648),(671,12),(671,14),(671,10751),(672,12),(672,14),(672,10751),(673,12),(673,14),(673,10751),(674,12),(674,14),(674,10751),(675,12),(675,14),(675,9648),(675,10751),(676,36),(676,10749),(676,10752),(679,27),(679,28),(679,53),(679,878),(680,53),(680,80),(681,12),(681,28),(681,53),(682,12),(682,28),(682,53),(686,18),(686,878),(686,9648),(687,18),(688,18),(688,10749),(691,12),(691,28),(691,53),(692,27),(692,35),(692,80),(693,35),(693,10749),(694,27),(694,53),(698,12),(698,28),(698,53),(698,878),(699,12),(699,28),(699,53),(700,12),(700,28),(700,53),(702,18),(703,18),(703,35),(703,10749),(704,35),(704,10402),(707,12),(707,28),(707,53),(708,12),(708,28),(708,53),(709,12),(709,28),(709,53),(710,12),(710,28),(710,53),(711,18),(712,18),(712,35),(712,10749),(713,18),(713,10749),(714,12),(714,28),(714,53),(744,28),(744,10749),(744,10752),(745,18),(745,53),(745,9648),(746,18),(746,36),(747,27),(747,35),(752,14),(752,28),(752,53),(754,28),(754,53),(754,80),(754,878),(755,27),(755,28),(755,53),(755,80),(756,16),(756,10402),(756,10751),(762,12),(762,14),(762,35),(764,27),(765,14),(765,27),(765,35),(766,14),(766,27),(766,35),(767,12),(767,14),(767,10751),(768,27),(768,53),(768,9648),(769,18),(769,80),(770,18),(770,10749),(770,10752),(771,35),(771,10751),(772,12),(772,35),(772,80),(772,10751),(773,18),(773,35),(782,53),(782,878),(782,9648),(782,10749),(783,18),(783,36),(786,18),(786,10402),(787,18),(787,28),(787,35),(787,53),(788,18),(788,35),(788,10751),(790,27),(792,18),(792,28),(792,10752),(794,27),(794,53),(795,14),(795,18),(795,10749),(796,18),(796,53),(796,10749),(801,18),(801,35),(801,10752),(802,18),(802,10749),(805,18),(805,27),(805,9648),(807,53),(807,80),(807,9648),(808,12),(808,14),(808,16),(808,35),(808,10751),(809,12),(809,14),(809,16),(809,35),(809,10751),(810,12),(810,14),(810,16),(810,35),(810,10751),(811,12),(811,18),(811,878),(812,12),(812,14),(812,16),(812,35),(812,10749),(812,10751),(813,35),(816,35),(816,80),(816,878),(817,12),(817,35),(817,80),(817,878),(818,35),(818,80),(818,878),(819,18),(819,53),(819,80),(820,18),(820,36),(820,53),(821,18),(821,36),(824,18),(824,10402),(824,10749),(826,18),(826,36),(826,10752),(834,14),(834,28),(834,53),(834,878),(837,27),(837,878),(837,9648),(838,18),(838,35),(840,18),(840,878),(841,12),(841,28),(841,878),(844,14),(844,18),(844,878),(844,10749),(846,53),(846,878),(846,9648),(848,14),(849,12),(849,14),(849,28),(850,35),(850,10751),(853,10752),(854,14),(854,35),(854,80),(854,10749),(855,28),(855,36),(855,10752),(857,18),(857,36),(857,10752),(859,18),(859,10749),(860,53),(860,878),(861,12),(861,28),(861,878),(862,16),(862,35),(862,10751),(863,16),(863,35),(863,10751),(864,35),(865,28),(865,878),(866,18),(868,18),(868,80),(869,12),(869,28),(869,53),(869,878),(872,35),(872,10402),(872,10749),(873,18),(874,18),(874,36),(879,12),(879,14),(879,35),(879,10751),(881,18),(887,18),(887,36),(887,10749),(888,14),(888,35),(888,10751),(889,35),(889,878),(889,10749),(889,10751),(905,18),(905,53),(905,10749),(907,18),(907,10749),(907,10752),(913,18),(913,80),(913,10749),(920,12),(920,16),(920,35),(920,10751),(921,18),(921,36),(921,10749),(924,14),(924,27),(924,28),(925,18),(926,35),(926,878),(926,10751),(927,14),(927,27),(927,35),(928,14),(928,27),(928,35),(935,18),(935,35),(935,10752),(943,12),(943,28),(943,35),(943,53),(943,80),(944,12),(944,28),(944,35),(944,53),(944,80),(947,12),(947,18),(947,36),(947,10752),(948,27),(948,53),(950,12),(950,16),(950,35),(950,10751),(951,35),(953,16),(953,10751),(954,12),(954,28),(954,53),(955,12),(955,28),(955,53),(956,12),(956,28),(956,53),(957,35),(957,878),(978,12),(978,18),(978,36),(979,18),(979,53),(979,80),(979,9648),(985,14),(985,18),(985,27),(985,878),(987,18),(987,35),(987,10749),(990,18),(1018,18),(1018,53),(1018,9648),(1024,14),(1024,18),(1051,28),(1051,53),(1051,80),(1073,18),(1073,53),(1073,9648),(1088,18),(1088,10751),(1090,53),(1090,878),(1090,9648),(1091,27),(1091,878),(1091,9648),(1103,28),(1103,878),(1116,18),(1116,36),(1116,10752),(1123,18),(1123,28),(1123,53),(1124,18),(1124,53),(1124,9648),(1125,18),(1164,18),(1165,18),(1213,18),(1213,53),(1213,80),(1245,18),(1245,10749),(1246,18),(1248,18),(1248,53),(1248,80),(1250,14),(1250,27),(1250,28),(1250,53),(1251,12),(1251,18),(1251,28),(1251,10752),(1255,18),(1255,27),(1255,878),(1257,35),(1259,18),(1259,10749),(1262,14),(1262,18),(1262,35),(1262,10749),(1265,12),(1265,18),(1265,10751),(1266,18),(1266,28),(1266,53),(1266,80),(1268,35),(1268,10751),(1271,12),(1271,28),(1271,10752),(1272,53),(1272,878),(1273,12),(1273,16),(1273,35),(1273,10751),(1282,99),(1359,18),(1359,53),(1359,80),(1360,18),(1360,10749),(1365,18),(1365,10749),(1366,18),(1368,12),(1368,28),(1368,53),(1368,10752),(1369,12),(1369,28),(1369,53),(1369,10752),(1370,12),(1370,28),(1370,53),(1370,10752),(1372,18),(1372,28),(1372,53),(1378,18),(1378,35),(1378,10749),(1381,12),(1381,18),(1381,878),(1381,10749),(1382,18),(1382,35),(1389,35),(1389,80),(1389,10749),(1391,18),(1391,10749),(1402,18),(1408,12),(1408,28),(1412,18),(1415,18),(1415,35),(1415,80),(1417,14),(1417,18),(1417,10752),(1422,18),(1422,53),(1422,80),(1424,18),(1424,53),(1424,9648),(1427,14),(1427,18),(1427,80),(1428,28),(1429,18),(1429,80),(1430,99),(1435,18),(1435,99),(1439,18),(1439,36),(1439,10749),(1440,18),(1440,10749),(1443,18),(1443,10749),(1452,12),(1452,14),(1452,28),(1452,878),(1487,14),(1487,28),(1487,878),(1491,14),(1491,18),(1491,53),(1491,10749),(1493,28),(1493,35),(1493,80),(1494,14),(1494,18),(1494,28),(1495,12),(1495,18),(1495,28),(1495,36),(1495,10752),(1497,12),(1497,28),(1497,35),(1497,878),(1497,10751),(1499,12),(1499,14),(1499,28),(1499,35),(1499,878),(1499,10751),(1523,18),(1535,28),(1535,53),(1535,80),(1537,12),(1537,28),(1537,53),(1537,80),(1538,18),(1538,53),(1538,80),(1542,35),(1542,80),(1544,18),(1544,35),(1544,10749),(1546,18),(1546,35),(1547,27),(1547,35),(1548,18),(1548,35),(1550,18),(1550,35),(1551,18),(1551,27),(1551,53),(1551,878),(1555,18),(1555,35),(1555,10749),(1562,27),(1562,53),(1562,878),(1571,28),(1571,53),(1572,28),(1572,53),(1573,28),(1573,53),(1574,18),(1574,28),(1574,35),(1574,80),(1574,10402),(1576,27),(1576,28),(1576,878),(1577,27),(1577,28),(1577,878),(1578,18),(1579,12),(1579,18),(1579,28),(1579,53),(1581,35),(1581,10749),(1584,35),(1584,10402),(1585,14),(1585,18),(1585,10751),(1586,53),(1586,9648),(1587,18),(1587,10749),(1588,35),(1590,18),(1591,18),(1593,12),(1593,14),(1593,28),(1593,35),(1593,10751),(1597,35),(1597,10749),(1598,53),(1598,80),(1599,35),(1599,10749),(1613,28),(1613,35),(1613,53),(1613,80),(1619,18),(1619,28),(1619,53),(1619,80),(1620,18),(1620,28),(1620,53),(1620,80),(1621,35),(1624,35),(1635,12),(1635,28),(1635,53),(1635,878),(1636,14),(1636,35),(1636,10749),(1637,12),(1637,28),(1637,80),(1639,12),(1639,28),(1639,53),(1640,18),(1642,18),(1642,28),(1642,53),(1642,80),(1642,9648),(1645,18),(1645,53),(1645,80),(1646,18),(1646,80),(1648,12),(1648,35),(1648,878),(1649,12),(1649,14),(1649,35),(1649,878),(1649,10751),(1651,18),(1651,80),(1651,10749),(1656,12),(1656,28),(1667,99),(1667,10751),(1669,12),(1669,28),(1669,53),(1677,18),(1677,10402),(1683,27),(1685,12),(1685,878),(1685,9648),(1687,28),(1687,878),(1688,28),(1688,878),(1690,27),(1691,27),(1696,18),(1696,27),(1696,80),(1698,27),(1698,53),(1701,28),(1701,53),(1701,80),(1705,28),(1705,878),(1710,18),(1710,53),(1717,18),(1717,53),(1722,18),(1722,36),(1722,10749),(1724,12),(1724,28),(1724,878),(1725,18),(1725,80),(1725,10402),(1726,12),(1726,28),(1726,878),(1729,12),(1729,14),(1729,28),(1734,12),(1734,14),(1734,28),(1735,12),(1735,14),(1735,28),(1770,18),(1770,53),(1771,12),(1771,28),(1771,878),(1777,99),(1779,36),(1779,99),(1781,99),(1788,18),(1788,10402),(1788,10749),(1788,10751),(1792,35),(1808,18),(1808,10402),(1809,18),(1809,35),(1809,10749),(1813,18),(1813,27),(1813,53),(1813,9648),(1817,18),(1817,53),(1819,35),(1819,10749),(1824,35),(1824,10749),(1830,18),(1830,53),(1830,80),(1831,35),(1832,12),(1832,14),(1832,35),(1833,18),(1833,10749),(1844,18),(1844,9648),(1844,10749),(1850,18),(1850,35),(1850,10749),(1852,18),(1852,36),(1852,53),(1858,12),(1858,28),(1858,878),(1865,12),(1865,14),(1865,28),(1874,18),(1874,36),(1878,12),(1878,18),(1878,35),(1880,28),(1880,53),(1883,18),(1883,36),(1885,18),(1887,18),(1887,36),(1891,12),(1891,28),(1891,878),(1892,12),(1892,28),(1892,878),(1893,12),(1893,28),(1893,878),(1894,12),(1894,28),(1894,878),(1895,12),(1895,28),(1895,878),(1900,18),(1900,53),(1900,80),(1901,18),(1901,35),(1901,10749),(1903,18),(1903,53),(1903,878),(1903,9648),(1903,10749),(1904,18),(1904,36),(1904,10749),(1907,12),(1907,18),(1907,53),(1907,10749),(1909,18),(1909,35),(1909,10749),(1911,12),(1911,14),(1911,28),(1913,18),(1921,18),(1921,10749),(1924,12),(1924,14),(1924,28),(1924,878),(1927,18),(1927,28),(1927,878),(1930,12),(1930,14),(1930,28),(1931,18),(1931,10402),(1933,18),(1933,27),(1933,53),(1933,9648),(1934,36),(1934,10749),(1946,27),(1946,28),(1946,53),(1946,878),(1947,18),(1948,28),(1948,53),(1948,80),(1949,18),(1949,53),(1949,80),(1949,9648),(1950,18),(1950,10749),(1951,18),(1954,53),(1954,878),(1955,18),(1955,36),(1956,12),(1956,18),(1956,9648),(1957,18),(1957,53),(1958,35),(1958,53),(1958,80),(1958,9648),(1958,10402),(1961,27),(1961,35),(1966,12),(1966,18),(1966,28),(1966,36),(1966,10749),(1966,10752),(1969,28),(1969,35),(1969,37),(1969,80),(1970,27),(1970,53),(1970,9648),(1975,27),(1975,53),(1979,12),(1979,14),(1979,28),(1979,53),(1985,18),(1985,53),(1985,9648),(1988,18),(1988,53),(1989,18),(1989,10749),(1995,12),(1995,14),(1995,28),(1995,53),(1996,12),(1996,14),(1996,28),(1996,53),(1997,12),(1997,18),(1997,10751),(1999,18),(1999,53),(2001,18),(2001,53),(2001,80),(2008,14),(2008,18),(2008,28),(2008,53),(2008,10749),(2009,18),(2011,16),(2011,18),(2013,18),(2018,35),(2022,35),(2022,10749),(2023,12),(2023,37),(2024,18),(2024,28),(2024,36),(2024,10752),(2026,18),(2026,53),(2026,80),(2026,9648),(2034,18),(2034,28),(2034,53),(2034,80),(2043,28),(2043,53),(2043,80),(2043,9648),(2044,18),(2044,9648),(2044,10749),(2048,28),(2048,878),(2054,18),(2054,10402),(2054,10751),(2055,37),(2056,18),(2056,35),(2057,18),(2057,53),(2057,9648),(2057,10749),(2059,12),(2059,28),(2059,53),(2059,9648),(2062,14),(2062,16),(2062,35),(2062,10751),(2067,878),(2069,35),(2069,80),(2074,35),(2074,10749),(2080,12),(2080,28),(2080,53),(2080,878),(2084,35),(2084,53),(2084,80),(2085,28),(2085,53),(2085,80),(2088,18),(2088,28),(2088,53),(2088,80),(2100,18),(2100,28),(2100,53),(2105,35),(2105,10749),(2110,18),(2110,28),(2110,35),(2112,18),(2112,28),(2112,53),(2112,80),(2114,12),(2114,14),(2114,16),(2114,28),(2114,53),(2114,878),(2116,18),(2116,53),(2116,80),(2118,18),(2118,53),(2118,80),(2118,9648),(2119,12),(2122,35),(2122,53),(2122,80),(2123,35),(2133,18),(2135,12),(2135,28),(2135,878),(2140,28),(2140,53),(2140,80),(2142,18),(2142,28),(2142,80),(2148,18),(2148,80),(2148,10402),(2148,10749),(2155,53),(2157,12),(2157,878),(2157,10751),(2162,28),(2162,35),(2162,53),(2163,18),(2163,28),(2163,53),(2176,18),(2176,53),(2185,28),(2185,35),(2185,53),(2196,18),(2196,35),(2207,12),(2207,28),(2207,53),(2207,80),(2211,18),(2211,36),(2211,10749),(2251,18),(2251,53),(2252,53),(2252,80),(2252,9648),(2253,18),(2253,36),(2253,53),(2253,10752),(2255,18),(2255,35),(2255,10749),(2266,18),(2266,10749),(2268,12),(2268,14),(2270,12),(2270,14),(2270,10749),(2270,10751),(2275,18),(2275,53),(2275,80),(2275,9648),(2277,35),(2277,878),(2280,14),(2280,18),(2280,35),(2280,10749),(2280,10751),(2287,99),(2288,18),(2288,10749),(2289,18),(2290,18),(2290,35),(2290,36),(2292,35),(2293,35),(2293,10749),(2294,35),(2295,35),(2300,14),(2300,16),(2300,18),(2300,35),(2300,10751),(2309,12),(2309,14),(2309,10751),(2310,12),(2310,16),(2310,28),(2312,12),(2312,14),(2312,18),(2312,28),(2320,12),(2320,18),(2320,28),(2320,53),(2355,18),(2359,99),(2370,18),(2370,28),(2370,53),(2370,9648),(2395,12),(2395,14),(2395,35),(2395,10751),(2428,18),(2428,36),(2447,18),(2447,36),(2453,28),(2453,53),(2454,12),(2454,14),(2454,10751),(2486,12),(2486,14),(2486,28),(2486,10751),(2493,12),(2493,14),(2493,35),(2493,10749),(2493,10751),(2501,18),(2501,28),(2501,53),(2501,9648),(2502,18),(2502,28),(2502,53),(2503,18),(2503,28),(2503,53),(2503,9648),(2539,35),(2567,18),(2575,18),(2575,53),(2577,18),(2577,53),(2577,878),(2577,10749),(2604,18),(2604,10752),(2610,18),(2610,35),(2610,10749),(2619,14),(2619,35),(2619,10749),(2621,18),(2621,35),(2621,10749),(2636,28),(2636,53),(2637,18),(2637,27),(2637,9648),(2639,18),(2639,35),(2642,35),(2642,10749),(2649,18),(2649,53),(2649,9648),(2652,18),(2652,53),(2655,18),(2655,27),(2655,53),(2655,9648),(2661,12),(2661,35),(2661,80),(2661,878),(2661,10751),(2662,27),(2666,878),(2666,9648),(2667,27),(2667,9648),(2669,18),(2669,28),(2669,36),(2675,18),(2675,53),(2675,878),(2675,9648),(2687,14),(2687,35),(2687,878),(2698,14),(2698,35),(2698,10751),(2749,28),(2749,53),(2749,80),(2752,35),(2752,10749),(2755,18),(2755,35),(2756,12),(2756,28),(2756,53),(2756,878),(2757,18),(2757,35),(2757,80),(2770,35),(2770,10749),(2771,18),(2771,35),(2779,35),(2779,53),(2779,80),(2779,9648),(2779,10749),(2786,18),(2786,53),(2787,28),(2787,53),(2787,878),(2789,28),(2789,878),(2830,35),(2830,10749),(2832,53),(2832,9648),(2841,18),(2895,18),(2898,35),(2898,10749),(2900,18),(2900,53),(2900,878),(2907,14),(2907,27),(2907,35),(2925,35),(2959,35),(2976,35),(2976,10402),(2976,10749),(2976,10751),(2977,18),(2977,10749),(2989,12),(2989,53),(3021,27),(3021,53),(3028,27),(3028,35),(3028,878),(3033,18),(3034,35),(3034,878),(3040,14),(3040,28),(3040,53),(3049,35),(3049,9648),(3050,14),(3050,35),(3050,10751),(3059,18),(3060,18),(3060,10749),(3060,10752),(3062,35),(3062,10402),(3062,10749),(3078,35),(3078,10749),(3080,35),(3080,10402),(3080,10749),(3082,18),(3082,35),(3083,18),(3083,35),(3089,37),(3093,53),(3093,80),(3093,9648),(3116,18),(3131,18),(3131,36),(3131,80),(3132,12),(3132,28),(3132,35),(3132,53),(3170,16),(3170,18),(3170,10751),(3172,28),(3172,35),(3172,80),(3172,10749),(3175,18),(3175,10749),(3175,10752),(3179,16),(3179,35),(3291,18),(3291,36),(3472,18),(3472,53),(3472,80),(3482,18),(3482,28),(3482,53),(3482,10752),(3489,53),(3489,80),(3489,9648),(3509,16),(3509,53),(3509,878),(3512,28),(3512,53),(3536,18),(3536,28),(3536,53),(3536,10752),(3558,18),(3580,18),(3580,80),(3580,9648),(3587,14),(3587,35),(3587,10751),(3594,18),(3594,53),(3594,9648),(3595,28),(3595,53),(3597,27),(3597,53),(3597,9648),(3600,27),(3600,53),(3600,9648),(3604,878),(3635,18),(3635,10749),(3638,35),(3682,18),(3682,10402),(3683,18),(3683,36),(3683,10752),(3766,18),(3766,80),(3766,9648),(3877,18),(3902,18),(3902,10402),(3933,14),(3933,16),(3933,10402),(3933,10749),(3981,35),(3981,10749),(3989,12),(3989,16),(3989,28),(3989,35),(3989,10402),(4011,14),(4011,35),(4012,18),(4032,18),(4032,35),(4032,10751),(4105,28),(4105,53),(4105,80),(4107,12),(4107,18),(4107,28),(4107,36),(4108,28),(4108,53),(4108,80),(4133,18),(4133,80),(4147,18),(4147,53),(4147,80),(4148,18),(4148,10749),(4170,18),(4170,53),(4174,18),(4174,53),(4174,9648),(4232,27),(4232,80),(4232,9648),(4233,27),(4233,9648),(4234,27),(4234,9648),(4244,14),(4244,35),(4244,10751),(4248,35),(4251,18),(4251,10749),(4256,35),(4257,35),(4258,35),(4327,12),(4327,28),(4327,35),(4327,53),(4327,80),(4347,18),(4347,10749),(4348,18),(4348,10749),(4349,18),(4349,28),(4349,53),(4379,35),(4379,10749),(4380,18),(4380,35),(4380,10749),(4421,18),(4421,28),(4442,12),(4442,14),(4442,28),(4442,35),(4442,53),(4464,18),(4464,36),(4474,14),(4474,18),(4474,28),(4474,35),(4474,80),(4474,878),(4476,12),(4476,18),(4476,10749),(4476,10752),(4477,18),(4477,53),(4477,80),(4512,18),(4512,28),(4512,37),(4513,27),(4513,53),(4515,12),(4515,18),(4515,28),(4515,36),(4517,18),(4517,36),(4517,10749),(4518,18),(4518,36),(4523,14),(4523,35),(4523,10749),(4523,10751),(4547,18),(4547,53),(4547,80),(4550,18),(4550,53),(4551,35),(4551,80),(4553,18),(4553,53),(4566,18),(4566,80),(4566,9648),(4584,18),(4584,10749),(4597,18),(4597,28),(4597,53),(4597,80),(4599,18),(4599,35),(4599,10749),(4614,18),(4614,28),(4614,53),(4638,28),(4638,35),(4638,80),(4657,18),(4657,53),(4657,80),(4657,9648),(4688,12),(4688,18),(4688,10402),(4688,10749),(4723,12),(4723,18),(4723,28),(4723,35),(4723,53),(4723,878),(4806,35),(4806,10749),(4816,18),(4816,80),(4824,12),(4824,28),(4824,53),(4824,80),(4836,18),(4836,53),(4836,80),(4858,53),(4858,878),(4911,18),(4911,28),(4911,53),(4911,80),(4912,18),(4912,35),(4912,53),(4912,80),(4912,10749),(4922,14),(4922,18),(4922,53),(4922,9648),(4922,10749),(4929,37),(4935,12),(4935,14),(4935,16),(4942,18),(4942,35),(4942,10749),(4944,18),(4944,35),(4951,18),(4951,35),(4951,10749),(4953,18),(4953,35),(4958,14),(4958,18),(4959,18),(4959,53),(4959,80),(4960,18),(4964,18),(4964,35),(4964,10749),(4965,28),(4965,53),(4965,878),(4967,35),(4970,27),(4970,53),(4982,18),(4982,80),(4995,18),(4997,18),(4997,53),(4997,80),(4997,9648),(5038,18),(5038,10749),(5072,27),(5072,35),(5072,53),(5123,18),(5125,18),(5125,53),(5126,18),(5137,12),(5137,28),(5137,53),(5137,878),(5137,9648),(5172,12),(5172,18),(5172,35),(5172,878),(5174,28),(5174,35),(5174,53),(5174,80),(5175,28),(5175,35),(5175,53),(5175,80),(5176,37),(5178,18),(5178,35),(5178,10749),(5236,28),(5236,35),(5236,80),(5236,9648),(5255,12),(5255,14),(5255,16),(5255,10751),(5279,18),(5279,53),(5279,9648),(5353,12),(5353,18),(5353,28),(5353,53),(5393,14),(5393,16),(5393,35),(5393,878),(5393,10751),(5491,28),(5491,878),(5491,10752),(5494,12),(5503,12),(5503,28),(5503,53),(5503,80),(5503,9648),(5516,35),(5516,53),(5516,80),(5528,18),(5550,12),(5550,28),(5550,53),(5550,80),(5550,878),(5551,12),(5551,28),(5551,53),(5559,12),(5559,16),(5559,35),(5559,10751),(5689,12),(5689,18),(5689,10749),(5708,18),(5722,18),(5722,35),(5722,53),(5723,18),(5723,10402),(5723,10749),(5759,18),(5759,27),(5759,35),(5769,12),(5769,35),(5769,36),(5769,10749),(5780,53),(5780,9648),(5820,28),(5820,53),(5820,80),(5822,18),(5822,28),(5822,10749),(5852,18),(5852,53),(5852,10749),(5854,35),(5854,53),(5854,80),(5876,27),(5876,53),(5876,878),(5900,18),(5900,35),(5902,18),(5902,36),(5902,10752),(5915,12),(5915,18),(5925,12),(5925,18),(5925,36),(5925,53),(5925,10752),(5955,18),(5955,53),(5955,80),(5955,9648),(5966,35),(5966,10749),(5971,18),(5971,35),(5971,80),(5994,14),(5994,18),(5994,35),(5994,10749),(6007,18),(6007,35),(6016,18),(6016,53),(6016,80),(6020,35),(6023,18),(6023,10749),(6038,12),(6038,28),(6038,35),(6038,37),(6068,12),(6068,28),(6068,35),(6068,10749),(6071,18),(6071,28),(6071,53),(6071,80),(6073,28),(6073,35),(6073,80),(6073,10749),(6106,18),(6114,27),(6114,10749),(6116,12),(6116,14),(6116,18),(6116,35),(6116,10402),(6171,18),(6171,27),(6171,53),(6171,878),(6217,14),(6217,18),(6217,27),(6217,53),(6278,12),(6278,14),(6278,28),(6282,35),(6415,12),(6415,28),(6415,35),(6435,14),(6435,18),(6435,35),(6439,35),(6440,18),(6440,10749),(6466,27),(6477,14),(6477,16),(6477,35),(6477,10402),(6477,10751),(6478,18),(6478,10402),(6479,18),(6479,27),(6479,28),(6479,53),(6479,878),(6488,27),(6488,35),(6519,12),(6519,28),(6519,35),(6520,12),(6520,18),(6520,28),(6520,10749),(6521,18),(6521,53),(6537,18),(6537,27),(6537,53),(6538,18),(6538,35),(6538,36),(6552,27),(6552,35),(6552,53),(6557,35),(6557,10749),(6575,35),(6575,10402),(6615,18),(6615,35),(6615,10749),(6623,28),(6623,53),(6639,18),(6639,10749),(6687,53),(6687,80),(6687,9648),(6795,12),(6795,14),(6795,878),(6795,10751),(6877,35),(6933,27),(6933,53),(6933,9648),(6947,18),(6947,53),(6947,9648),(6950,18),(6950,28),(6950,53),(6950,878),(6957,35),(6957,10749),(6961,35),(6961,10749),(6963,18),(6963,35),(6964,18),(6964,35),(6964,10749),(6968,18),(6968,28),(6968,36),(6968,53),(6968,80),(6972,18),(6973,18),(6973,36),(6973,53),(6973,80),(6973,9648),(6977,18),(6977,53),(6977,80),(6978,12),(6978,14),(6978,28),(6978,35),(7006,14),(7006,18),(7006,27),(7006,53),(7191,28),(7191,53),(7191,878),(7214,18),(7220,18),(7220,28),(7220,80),(7278,35),(7288,28),(7288,35),(7288,53),(7299,28),(7299,53),(7299,878),(7301,18),(7301,35),(7301,10749),(7303,18),(7303,35),(7303,10749),(7304,18),(7304,28),(7304,53),(7304,80),(7305,12),(7305,18),(7305,28),(7305,53),(7326,18),(7326,35),(7326,10749),(7341,27),(7341,53),(7341,878),(7345,18),(7347,18),(7347,28),(7347,80),(7350,18),(7350,35),(7364,12),(7364,18),(7364,28),(7364,35),(7364,9648),(7443,16),(7443,35),(7443,10751),(7445,18),(7445,53),(7445,10752),(7446,28),(7446,35),(7450,12),(7450,16),(7450,28),(7450,878),(7450,10751),(7451,12),(7451,28),(7451,53),(7453,12),(7453,35),(7453,878),(7453,10751),(7459,28),(7459,878),(7459,10751),(7461,18),(7461,28),(7461,53),(7461,80),(7484,12),(7484,16),(7484,10751),(7485,18),(7485,28),(7485,53),(7485,80),(7485,9648),(7501,53),(7501,80),(7504,18),(7509,18),(7509,10749),(7509,10769),(7510,18),(7510,35),(7512,12),(7512,35),(7512,878),(7515,18),(7515,28),(7515,10749),(7516,28),(7516,35),(7516,53),(7516,80),(7518,16),(7518,35),(7518,10751),(7547,18),(7547,10749),(7548,18),(7548,10749),(7552,35),(7553,35),(7735,18),(7735,53),(7737,27),(7737,28),(7737,878),(7859,18),(7863,18),(7870,18),(7870,10749),(7873,18),(7873,28),(7873,53),(7873,80),(7874,18),(7913,18),(7942,35),(7942,10749),(7944,99),(7944,10402),(7973,18),(7973,35),(7973,10749),(7978,18),(7978,27),(7978,53),(7979,18),(7980,14),(7980,18),(8007,18),(8007,28),(8007,53),(8007,10752),(8009,12),(8009,14),(8009,28),(8011,14),(8011,28),(8011,878),(8012,35),(8012,53),(8012,80),(8046,18),(8051,18),(8051,35),(8051,10749),(8053,12),(8053,18),(8053,37),(8053,80),(8053,9648),(8054,12),(8054,14),(8054,9648),(8055,18),(8055,10749),(8060,18),(8060,80),(8060,10749),(8065,18),(8065,80),(8068,28),(8068,53),(8068,80),(8069,878),(8077,27),(8077,28),(8077,878),(8078,27),(8078,28),(8078,878),(8080,53),(8080,80),(8090,18),(8095,18),(8095,36),(8095,10749),(8141,35),(8141,53),(8141,80),(8141,10749),(8193,35),(8195,12),(8195,28),(8195,53),(8195,80),(8197,18),(8197,53),(8197,80),(8197,9648),(8198,18),(8198,28),(8198,53),(8198,10749),(8202,28),(8202,878),(8204,12),(8204,14),(8204,10751),(8224,53),(8224,80),(8224,9648),(8247,12),(8247,14),(8247,878),(8265,35),(8271,18),(8271,53),(8271,9648),(8272,18),(8273,35),(8273,10749),(8285,28),(8285,35),(8285,53),(8285,80),(8285,878),(8291,18),(8291,10749),(8292,28),(8292,80),(8293,18),(8293,10749),(8321,18),(8321,35),(8321,80),(8326,12),(8326,18),(8326,35),(8326,10751),(8328,18),(8328,10402),(8328,10749),(8329,27),(8329,9648),(8337,27),(8337,28),(8337,53),(8337,878),(8338,18),(8338,53),(8338,878),(8338,9648),(8346,18),(8346,35),(8346,10749),(8355,12),(8355,16),(8355,35),(8355,10751),(8357,99),(8358,12),(8358,18),(8359,18),(8359,35),(8359,10751),(8363,35),(8367,12),(8373,12),(8373,28),(8373,878),(8374,28),(8374,53),(8374,80),(8386,35),(8390,35),(8390,10749),(8408,27),(8408,878),(8409,18),(8409,28),(8413,27),(8413,878),(8413,9648),(8416,18),(8427,12),(8427,28),(8427,35),(8427,53),(8435,18),(8435,35),(8452,878),(8456,18),(8456,28),(8457,35),(8461,27),(8461,53),(8461,80),(8467,35),(8469,35),(8470,18),(8470,53),(8470,80),(8487,12),(8487,28),(8487,35),(8487,37),(8487,878),(8488,18),(8488,35),(8488,10749),(8489,18),(8536,12),(8536,14),(8536,28),(8536,878),(8545,18),(8545,35),(8584,12),(8584,28),(8584,35),(8584,37),(8587,16),(8587,18),(8587,10751),(8592,12),(8592,28),(8592,35),(8592,53),(8592,80),(8617,27),(8617,80),(8618,18),(8618,35),(8619,12),(8643,18),(8643,27),(8643,53),(8643,80),(8645,53),(8645,878),(8649,18),(8656,18),(8656,28),(8656,10749),(8665,18),(8665,36),(8665,53),(8669,18),(8669,35),(8675,35),(8676,12),(8676,35),(8676,10749),(8681,28),(8681,53),(8688,80),(8688,9648),(8698,14),(8698,28),(8698,53),(8698,878),(8699,35),(8741,18),(8741,36),(8741,10752),(8744,18),(8744,53),(8744,80),(8780,35),(8810,12),(8810,28),(8810,53),(8810,878),(8814,12),(8814,27),(8814,28),(8818,18),(8818,36),(8818,10402),(8831,28),(8831,53),(8831,80),(8831,878),(8834,18),(8834,28),(8834,53),(8834,9648),(8835,35),(8836,18),(8836,53),(8836,878),(8836,9648),(8838,18),(8838,28),(8838,53),(8838,80),(8839,14),(8839,35),(8839,10751),(8840,14),(8841,18),(8842,18),(8842,10749),(8843,27),(8843,53),(8843,878),(8847,99),(8848,18),(8848,53),(8848,80),(8849,35),(8850,12),(8850,14),(8850,28),(8850,53),(8850,878),(8854,12),(8854,28),(8854,878),(8859,35),(8869,27),(8869,28),(8869,35),(8869,53),(8870,28),(8870,53),(8870,878),(8871,14),(8871,35),(8871,10751),(8872,35),(8872,10402),(8874,35),(8874,10749),(8875,27),(8875,53),(8879,37),(8879,10749),(8883,18),(8883,36),(8883,80),(8883,10752),(8885,16),(8885,18),(8885,10752),(8909,28),(8909,53),(8909,80),(8913,18),(8913,27),(8914,28),(8914,53),(8914,878),(8916,12),(8916,16),(8916,35),(8916,10751),(8920,16),(8920,35),(8920,10751),(8922,27),(8922,53),(8942,18),(8944,18),(8944,35),(8952,18),(8952,35),(8952,10749),(8953,14),(8953,16),(8953,878),(8960,14),(8960,28),(8961,12),(8961,28),(8961,35),(8961,53),(8961,80),(8963,18),(8963,28),(8963,53),(8966,12),(8966,14),(8966,18),(8966,10749),(8967,14),(8967,18),(8968,18),(8968,27),(8968,53),(8968,9648),(8970,35),(8975,12),(8975,18),(8975,28),(8975,53),(8976,35),(8978,53),(8981,18),(8981,10751),(8982,18),(8982,28),(8982,53),(8982,80),(8984,18),(8984,53),(8984,80),(8984,9648),(8984,10749),(8987,12),(8987,28),(8987,53),(8987,80),(8988,18),(8988,10752),(8998,18),(8998,35),(8998,10749),(8999,18),(8999,53),(9003,27),(9007,14),(9007,35),(9007,10749),(9008,18),(9008,53),(9009,18),(9009,27),(9009,53),(9012,35),(9012,99),(9013,12),(9013,35),(9013,80),(9016,12),(9016,14),(9016,16),(9016,878),(9016,10751),(9021,14),(9021,35),(9021,10751),(9022,27),(9022,53),(9022,9648),(9023,12),(9023,16),(9023,35),(9023,37),(9023,10751),(9026,18),(9026,35),(9026,36),(9026,10749),(9027,35),(9027,10749),(9029,35),(9029,10749),(9030,18),(9030,27),(9030,53),(9032,18),(9032,35),(9034,18),(9034,35),(9035,27),(9035,35),(9035,878),(9036,12),(9036,18),(9036,10751),(9042,12),(9042,27),(9042,28),(9042,53),(9043,18),(9043,35),(9043,10749),(9045,18),(9045,36),(9053,12),(9053,28),(9053,53),(9059,27),(9059,35),(9059,53),(9067,14),(9067,28),(9067,35),(9067,878),(9072,35),(9072,80),(9074,28),(9074,35),(9074,80),(9075,18),(9075,53),(9075,10752),(9087,18),(9087,35),(9087,10749),(9089,18),(9089,35),(9089,10749),(9092,14),(9092,27),(9093,12),(9093,18),(9093,10749),(9093,10752),(9095,18),(9095,27),(9095,53),(9095,10749),(9096,12),(9099,35),(9099,10751),(9100,14),(9100,18),(9100,27),(9100,53),(9104,18),(9104,35),(9104,53),(9104,80),(9104,10752),(9208,12),(9208,18),(9208,28),(9208,53),(9257,28),(9257,53),(9257,80),(9260,35),(9266,12),(9268,18),(9268,28),(9268,53),(9268,9648),(9271,28),(9271,53),(9271,80),(9271,878),(9273,12),(9273,35),(9273,80),(9275,18),(9275,35),(9275,53),(9275,80),(9276,27),(9276,878),(9276,9648),(9277,18),(9277,35),(9277,80),(9279,35),(9279,10751),(9280,53),(9280,80),(9280,10749),(9281,18),(9281,53),(9281,80),(9281,10749),(9282,18),(9282,53),(9282,80),(9285,12),(9285,35),(9286,27),(9286,9648),(9288,12),(9288,14),(9288,28),(9289,18),(9289,28),(9289,36),(9289,10752),(9290,12),(9290,35),(9291,18),(9291,35),(9292,12),(9292,28),(9292,35),(9294,14),(9294,18),(9294,878),(9294,10749),(9297,14),(9297,16),(9297,35),(9297,10751),(9302,18),(9302,10749),(9303,18),(9303,53),(9303,80),(9303,10749),(9304,14),(9304,35),(9304,878),(9306,14),(9306,27),(9306,878),(9310,18),(9310,35),(9310,10751),(9311,18),(9311,28),(9311,53),(9311,80),(9311,9648),(9312,14),(9312,28),(9313,12),(9313,18),(9313,28),(9315,18),(9315,53),(9315,9648),(9327,14),(9327,35),(9327,878),(9327,10749),(9331,18),(9331,28),(9331,53),(9334,12),(9334,14),(9334,28),(9335,28),(9335,53),(9335,80),(9336,35),(9336,80),(9339,14),(9339,18),(9339,35),(9339,10749),(9341,12),(9341,28),(9341,53),(9341,878),(9342,12),(9342,28),(9344,18),(9344,80),(9348,27),(9348,28),(9348,878),(9350,12),(9350,28),(9350,53),(9352,35),(9353,35),(9353,10751),(9355,12),(9355,28),(9355,878),(9357,27),(9357,53),(9358,27),(9358,9648),(9360,12),(9360,27),(9360,53),(9361,12),(9361,18),(9361,28),(9361,36),(9361,10749),(9361,10752),(9362,27),(9362,28),(9366,18),(9366,53),(9366,80),(9367,28),(9367,53),(9367,80),(9372,18),(9372,35),(9372,99),(9374,14),(9374,35),(9378,27),(9378,53),(9381,12),(9381,28),(9381,53),(9381,878),(9383,28),(9383,53),(9383,878),(9384,35),(9384,80),(9387,12),(9387,14),(9387,28),(9388,18),(9388,35),(9389,16),(9389,28),(9389,878),(9390,18),(9390,35),(9390,10749),(9392,12),(9392,27),(9396,12),(9396,35),(9398,35),(9400,18),(9400,28),(9400,80),(9408,16),(9408,35),(9408,10751),(9414,28),(9414,35),(9414,53),(9414,80),(9416,12),(9416,28),(9416,35),(9422,18),(9424,27),(9424,878),(9424,9648),(9425,28),(9425,878),(9425,10752),(9427,35),(9428,18),(9428,35),(9429,35),(9430,35),(9430,53),(9430,80),(9433,12),(9433,18),(9433,28),(9434,28),(9434,35),(9434,53),(9434,10749),(9437,18),(9437,53),(9437,80),(9437,9648),(9440,18),(9440,35),(9441,18),(9441,10749),(9443,18),(9443,36),(9444,16),(9444,10751),(9447,12),(9447,14),(9447,18),(9447,35),(9447,10751),(9448,12),(9448,28),(9448,35),(9448,53),(9449,12),(9449,14),(9449,28),(9449,35),(9449,10751),(9451,35),(9452,18),(9452,35),(9454,18),(9454,35),(9454,10749),(9455,28),(9455,53),(9455,80),(9455,9648),(9457,12),(9457,27),(9457,28),(9457,878),(9459,36),(9459,99),(9459,10402),(9464,18),(9464,35),(9464,80),(9464,10749),(9466,18),(9466,35),(9469,18),(9470,14),(9470,28),(9470,35),(9470,80),(9471,12),(9471,28),(9471,35),(9472,35),(9473,16),(9473,35),(9473,10402),(9476,12),(9476,18),(9476,28),(9476,10749),(9481,18),(9481,53),(9481,80),(9481,9648),(9486,12),(9486,28),(9486,35),(9487,12),(9487,16),(9487,35),(9487,10751),(9488,12),(9488,28),(9488,10751),(9489,35),(9489,10749),(9490,35),(9490,80),(9493,35),(9495,14),(9495,28),(9495,53),(9502,12),(9502,16),(9502,35),(9502,10751),(9504,18),(9504,80),(9504,9648),(9509,18),(9509,28),(9509,53),(9509,80),(9513,16),(9513,35),(9513,10751),(9515,18),(9515,28),(9515,35),(9515,53),(9515,80),(9516,18),(9516,28),(9516,80),(9517,18),(9517,80),(9526,18),(9526,35),(9526,10402),(9531,12),(9531,14),(9531,28),(9531,35),(9531,878),(9532,27),(9533,27),(9533,53),(9533,80),(9535,35),(9535,80),(9541,35),(9541,10749),(9543,12),(9543,14),(9543,28),(9543,10749),(9544,27),(9544,53),(9548,28),(9548,35),(9548,53),(9548,80),(9548,9648),(9549,18),(9549,36),(9550,12),(9550,18),(9550,28),(9550,10749),(9552,18),(9552,27),(9552,53),(9555,12),(9555,18),(9555,28),(9555,36),(9557,35),(9562,12),(9562,28),(9562,878),(9563,18),(9566,18),(9566,53),(9566,9648),(9567,18),(9567,28),(9567,10752),(9570,12),(9570,28),(9570,878),(9570,10751),(9571,18),(9571,35),(9573,18),(9573,53),(9573,80),(9573,9648),(9574,35),(9574,878),(9574,10751),(9576,35),(9576,10749),(9582,35),(9582,10749),(9583,18),(9583,35),(9583,10749),(9587,18),(9587,10749),(9588,12),(9588,18),(9588,28),(9588,37),(9588,10749),(9591,18),(9591,35),(9593,12),(9593,14),(9593,28),(9593,35),(9593,10751),(9594,18),(9594,28),(9594,53),(9594,80),(9598,14),(9598,18),(9598,35),(9598,10751),(9600,35),(9600,80),(9603,18),(9603,35),(9603,10749),(9607,12),(9607,14),(9607,35),(9607,10751),(9610,12),(9610,14),(9610,28),(9613,18),(9613,53),(9613,9648),(9614,35),(9615,18),(9615,28),(9615,53),(9615,80),(9616,14),(9616,18),(9616,27),(9616,53),(9616,9648),(9616,10749),(9618,12),(9618,28),(9618,35),(9619,12),(9619,28),(9619,53),(9620,12),(9620,28),(9620,53),(9620,878),(9620,9648),(9621,18),(9621,35),(9621,10749),(9623,18),(9623,53),(9624,28),(9624,53),(9625,12),(9625,18),(9625,28),(9625,53),(9625,80),(9626,12),(9626,14),(9626,28),(9631,12),(9631,18),(9631,28),(9631,53),(9631,80),(9631,9648),(9637,12),(9637,35),(9637,9648),(9641,35),(9644,35),(9645,27),(9645,53),(9645,9648),(9647,14),(9647,18),(9647,35),(9654,28),(9654,80),(9655,18),(9655,35),(9655,10749),(9655,10751),(9656,27),(9656,53),(9659,12),(9659,28),(9659,53),(9659,878),(9662,12),(9662,16),(9662,18),(9662,35),(9664,12),(9664,18),(9664,28),(9664,36),(9664,10749),(9664,10752),(9665,10752),(9667,14),(9667,18),(9667,53),(9667,9648),(9671,12),(9671,35),(9672,18),(9675,18),(9675,35),(9675,10749),(9676,18),(9678,14),(9678,35),(9678,10749),(9679,28),(9679,53),(9679,80),(9682,27),(9682,53),(9683,12),(9683,18),(9683,35),(9683,10749),(9685,18),(9685,35),(9686,18),(9686,35),(9686,10749),(9689,18),(9689,35),(9691,12),(9691,28),(9691,53),(9691,80),(9693,18),(9693,28),(9693,53),(9693,878),(9697,14),(9697,18),(9697,53),(9697,9648),(9700,18),(9700,10749),(9701,18),(9702,18),(9702,28),(9702,53),(9702,80),(9703,12),(9703,14),(9703,28),(9703,10752),(9705,28),(9705,53),(9705,80),(9707,14),(9707,27),(9707,35),(9707,53),(9707,9648),(9709,18),(9709,53),(9709,10749),(9713,18),(9713,35),(9715,18),(9715,10749),(9716,35),(9716,10402),(9716,10749),(9718,35),(9725,27),(9725,53),(9726,18),(9726,35),(9726,10749),(9728,27),(9728,53),(9729,18),(9729,53),(9729,9648),(9730,27),(9730,53),(9731,27),(9731,53),(9737,28),(9737,35),(9737,53),(9737,80),(9741,18),(9741,53),(9741,878),(9746,18),(9754,53),(9759,12),(9759,28),(9759,53),(9759,80),(9760,12),(9760,28),(9760,35),(9762,18),(9762,80),(9762,10402),(9762,10749),(9763,18),(9766,12),(9766,18),(9766,28),(9766,80),(9767,35),(9767,10749),(9770,18),(9770,28),(9770,53),(9772,28),(9772,53),(9776,35),(9778,35),(9778,10749),(9779,18),(9779,35),(9781,35),(9781,10402),(9782,18),(9782,53),(9783,27),(9783,53),(9787,18),(9792,27),(9792,53),(9793,27),(9793,53),(9794,35),(9794,10749),(9798,18),(9798,28),(9798,53),(9799,28),(9799,53),(9799,80),(9800,18),(9801,35),(9801,10749),(9802,12),(9802,28),(9802,53),(9804,12),(9804,28),(9806,12),(9806,16),(9806,28),(9806,10751),(9809,35),(9809,80),(9813,18),(9813,53),(9816,18),(9816,10402),(9816,10749),(9816,10751),(9819,18),(9821,18),(9821,35),(9822,12),(9822,14),(9822,28),(9822,10751),(9823,14),(9823,28),(9823,878),(9824,12),(9824,14),(9824,28),(9824,35),(9824,878),(9825,27),(9825,28),(9825,35),(9825,53),(9825,878),(9826,12),(9826,28),(9829,18),(9829,28),(9829,36),(9829,53),(9829,80),(9833,18),(9833,53),(9833,10749),(9836,16),(9836,35),(9837,12),(9837,16),(9837,18),(9837,10402),(9837,10751),(9839,12),(9839,18),(9839,10749),(9839,10752),(9842,18),(9842,35),(9842,10749),(9849,18),(9849,35),(9849,878),(9849,10751),(9869,18),(9869,28),(9869,53),(9869,80),(9870,18),(9870,35),(9870,10749),(9877,27),(9877,53),(9879,18),(9879,53),(9879,80),(9880,35),(9880,10749),(9880,10751),(9882,18),(9882,28),(9882,53),(9882,80),(9884,18),(9884,28),(9884,53),(9889,35),(9889,10749),(9890,28),(9890,35),(9890,878),(9893,35),(9893,10751),(9894,18),(9894,35),(9894,53),(9895,18),(9895,35),(9895,53),(9895,10749),(9896,12),(9896,35),(9899,35),(9899,10402),(9900,35),(9902,27),(9902,53),(9903,18),(9903,35),(9906,12),(9906,14),(9906,16),(9906,35),(9906,10751),(9907,16),(9907,35),(9907,10751),(9912,18),(9913,18),(9913,27),(9913,53),(9913,9648),(9916,18),(9918,18),(9919,35),(9919,10749),(9920,28),(9920,53),(9920,878),(9922,12),(9922,18),(9923,28),(9923,80),(9928,16),(9928,35),(9928,878),(9928,10751),(9930,18),(9930,35),(9930,53),(9930,80),(9930,10749),(9932,35),(9932,80),(9942,35),(9944,18),(9944,53),(9944,80),(9944,9648),(9945,14),(9945,18),(9945,27),(9945,28),(9945,53),(9946,14),(9946,27),(9946,28),(9946,9648),(9947,14),(9947,28),(9950,18),(9950,28),(9950,35),(9950,80),(9952,12),(9952,18),(9952,10752),(9954,12),(9954,14),(9954,27),(9954,28),(9954,53),(9954,878),(9955,18),(9955,28),(9955,35),(9957,35),(9962,18),(9962,35),(9962,10749),(9963,18),(9963,53),(9963,9648),(9969,35),(9969,10751),(9975,12),(9975,16),(9975,35),(9975,10751),(9978,12),(9978,28),(9978,10751),(9981,35),(9981,10749),(9981,10751),(9982,16),(9982,35),(9982,10751),(9986,14),(9986,35),(9986,10751),(9988,35),(9989,18),(9989,28),(9989,80),(9991,18),(9991,35),(9992,12),(9992,14),(9992,16),(9992,10751),(10003,12),(10003,28),(10003,53),(10003,878),(10003,10749),(10008,27),(10008,53),(10012,27),(10012,35),(10013,14),(10013,18),(10013,35),(10013,10749),(10014,27),(10016,27),(10016,28),(10016,878),(10017,27),(10017,28),(10017,80),(10017,878),(10017,10749),(10022,18),(10022,28),(10022,35),(10022,53),(10022,10751),(10024,18),(10025,14),(10025,18),(10025,35),(10025,10749),(10025,10751),(10027,28),(10027,80),(10028,10402),(10028,10749),(10028,10751),(10029,35),(10029,53),(10029,80),(10030,18),(10030,35),(10030,10749),(10034,28),(10034,35),(10034,80),(10040,28),(10040,35),(10045,28),(10045,53),(10045,878),(10047,12),(10047,18),(10047,28),(10047,36),(10047,10752),(10048,28),(10050,35),(10050,10749),(10052,18),(10053,27),(10053,53),(10054,12),(10054,28),(10054,35),(10054,10751),(10060,18),(10061,12),(10061,28),(10061,53),(10061,878),(10065,18),(10065,27),(10065,53),(10066,27),(10067,35),(10067,10751),(10068,18),(10068,10749),(10069,27),(10069,53),(10070,27),(10070,28),(10070,35),(10071,35),(10072,27),(10072,53),(10073,35),(10074,28),(10074,35),(10075,14),(10075,18),(10075,27),(10075,10749),(10077,12),(10077,28),(10077,53),(10077,878),(10090,12),(10090,28),(10090,35),(10090,80),(10092,27),(10092,53),(10096,14),(10096,35),(10096,10749),(10105,12),(10105,18),(10105,28),(10105,36),(10105,10752),(10115,18),(10115,35),(10117,12),(10117,18),(10117,28),(10117,35),(10117,80),(10131,27),(10131,53),(10132,18),(10133,53),(10133,878),(10133,9648),(10135,28),(10135,53),(10136,12),(10136,28),(10136,35),(10137,14),(10137,16),(10137,35),(10137,10751),(10138,12),(10138,28),(10138,878),(10139,18),(10139,36),(10140,12),(10140,14),(10140,10751),(10147,18),(10147,35),(10147,80),(10152,35),(10153,878),(10154,35),(10154,80),(10154,10749),(10156,35),(10159,12),(10159,28),(10159,35),(10159,53),(10160,27),(10160,53),(10162,35),(10162,10749),(10163,27),(10163,53),(10163,878),(10167,28),(10167,53),(10167,80),(10179,28),(10179,35),(10179,878),(10183,18),(10184,18),(10184,35),(10184,10749),(10185,18),(10185,27),(10185,53),(10185,80),(10185,9648),(10186,35),(10186,10402),(10187,18),(10187,35),(10188,12),(10188,18),(10188,35),(10188,10751),(10189,28),(10189,35),(10191,12),(10191,14),(10191,16),(10191,10751),(10192,12),(10192,14),(10192,16),(10192,35),(10192,10751),(10193,16),(10193,35),(10193,10751),(10195,12),(10195,14),(10195,28),(10196,12),(10196,14),(10196,28),(10196,10751),(10197,18),(10197,10402),(10197,10749),(10198,16),(10198,10402),(10198,10749),(10198,10751),(10199,12),(10199,16),(10199,10751),(10200,18),(10200,53),(10200,878),(10201,35),(10202,14),(10202,35),(10202,10749),(10202,10751),(10204,12),(10204,28),(10204,35),(10207,18),(10207,10749),(10208,14),(10208,35),(10208,878),(10208,10751),(10212,27),(10212,35),(10212,37),(10212,53),(10214,12),(10214,14),(10214,35),(10214,10751),(10215,14),(10215,18),(10215,35),(10215,10749),(10217,18),(10218,35),(10218,10749),(10219,18),(10219,10749),(10220,18),(10220,80),(10223,18),(10223,53),(10223,80),(10225,27),(10225,53),(10225,9648),(10226,27),(10226,53),(10226,9648),(10229,18),(10229,10749),(10238,18),(10246,35),(10253,14),(10253,18),(10253,27),(10253,28),(10253,53),(10253,878),(10269,18),(10269,10402),(10269,10749),(10279,18),(10279,53),(10279,80),(10279,10749),(10280,27),(10280,53),(10281,27),(10281,53),(10283,27),(10283,53),(10285,14),(10285,27),(10285,53),(10288,18),(10288,27),(10288,35),(10288,10749),(10306,27),(10306,53),(10307,27),(10312,18),(10312,35),(10313,35),(10313,10752),(10314,35),(10314,10749),(10315,12),(10315,16),(10315,35),(10315,10751),(10316,18),(10317,18),(10317,35),(10320,18),(10320,27),(10320,53),(10327,35),(10329,12),(10329,18),(10329,28),(10329,53),(10329,878),(10329,9648),(10330,35),(10331,27),(10333,18),(10333,10749),(10336,12),(10336,14),(10336,27),(10336,28),(10336,53),(10336,878),(10339,12),(10339,18),(10350,28),(10350,878),(10353,14),(10353,35),(10357,18),(10357,28),(10357,53),(10357,878),(10358,35),(10362,18),(10362,10749),(10364,18),(10364,35),(10364,10752),(10366,28),(10366,878),(10368,18),(10368,35),(10368,10752),(10375,28),(10375,53),(10377,18),(10377,35),(10383,27),(10383,53),(10384,27),(10384,53),(10384,878),(10385,18),(10385,35),(10386,12),(10386,14),(10386,16),(10386,878),(10386,10751),(10388,18),(10388,28),(10388,53),(10388,80),(10388,9648),(10390,18),(10390,10749),(10391,18),(10391,27),(10391,53),(10391,80),(10393,35),(10395,14),(10397,18),(10398,18),(10398,53),(10398,80),(10398,9648),(10400,18),(10402,35),(10410,36),(10410,80),(10413,12),(10413,18),(10413,28),(10413,53),(10414,35),(10414,10751),(10416,18),(10416,35),(10416,878),(10416,10749),(10425,18),(10425,28),(10425,53),(10425,80),(10426,35),(10428,18),(10428,28),(10428,53),(10428,80),(10431,28),(10431,53),(10431,80),(10436,18),(10436,10749),(10437,14),(10437,18),(10437,35),(10437,10751),(10439,14),(10439,35),(10439,10751),(10445,18),(10445,10749),(10448,12),(10461,18),(10461,28),(10461,53),(10461,80),(10468,18),(10468,35),(10471,35),(10472,18),(10472,35),(10472,10749),(10472,10751),(10476,18),(10477,28),(10478,18),(10478,35),(10478,10749),(10480,35),(10480,53),(10480,80),(10481,35),(10481,10751),(10483,28),(10483,53),(10483,878),(10488,12),(10488,14),(10488,35),(10488,10751),(10490,35),(10496,27),(10496,53),(10501,12),(10501,16),(10501,35),(10501,10751),(10514,53),(10514,878),(10521,35),(10523,18),(10523,36),(10527,16),(10527,10751),(10528,12),(10528,28),(10528,80),(10528,9648),(10530,12),(10530,16),(10530,18),(10530,10751),(10533,18),(10533,36),(10533,10749),(10534,18),(10534,28),(10535,28),(10535,35),(10537,18),(10537,10402),(10545,16),(10545,18),(10545,10751),(10549,18),(10550,12),(10550,28),(10550,53),(10555,16),(10555,28),(10555,35),(10555,10751),(10557,35),(10559,18),(10559,53),(10559,80),(10559,878),(10560,18),(10560,10402),(10563,35),(10563,10749),(10564,18),(10564,35),(10564,10749),(10567,16),(10567,10751),(10569,28),(10569,35),(10569,80),(10571,18),(10571,35),(10571,10749),(10577,27),(10577,53),(10585,27),(10585,53),(10586,12),(10588,14),(10588,35),(10588,10751),(10589,18),(10589,28),(10589,35),(10589,80),(10590,28),(10590,36),(10590,10752),(10591,35),(10592,18),(10592,10752),(10603,12),(10603,35),(10603,10749),(10603,10751),(10610,14),(10610,28),(10610,35),(10610,53),(10611,18),(10611,35),(10615,28),(10615,35),(10622,28),(10622,35),(10622,80),(10623,18),(10623,28),(10623,80),(10625,35),(10628,12),(10628,35),(10628,80),(10629,18),(10629,53),(10629,80),(10632,18),(10632,28),(10632,53),(10632,80),(10634,35),(10637,18),(10641,18),(10641,10749),(10642,18),(10642,35),(10642,10749),(10642,10751),(10643,12),(10643,27),(10643,28),(10643,878),(10646,35),(10646,10749),(10647,18),(10647,10749),(10655,18),(10655,36),(10655,10752),(10656,28),(10656,53),(10658,14),(10658,35),(10658,878),(10661,28),(10661,35),(10663,35),(10664,27),(10664,53),(10673,18),(10673,80),(10674,12),(10674,16),(10674,10751),(10676,27),(10676,878),(10676,9648),(10678,35),(10681,16),(10681,10751),(10683,18),(10683,35),(10684,18),(10684,53),(10684,9648),(10684,10752),(10685,53),(10685,9648),(10691,18),(10691,10749),(10696,18),(10696,10749),(10705,18),(10705,28),(10705,36),(10705,10749),(10705,10752),(10707,18),(10707,35),(10708,35),(10708,10751),(10710,35),(10712,18),(10712,10749),(10715,16),(10715,35),(10715,10751),(10718,28),(10719,14),(10719,35),(10719,10751),(10724,12),(10724,28),(10724,53),(10724,878),(10727,27),(10727,53),(10731,18),(10731,53),(10731,80),(10731,9648),(10733,36),(10733,37),(10733,10752),(10734,18),(10734,80),(10735,35),(10739,35),(10739,10749),(10740,18),(10740,53),(10740,9648),(10741,18),(10741,36),(10743,28),(10743,35),(10743,53),(10743,80),(10744,18),(10744,10749),(10748,35),(10748,878),(10748,10751),(10756,14),(10756,35),(10756,53),(10756,9648),(10756,10751),(10758,35),(10760,35),(10761,35),(10761,10749),(10762,12),(10762,28),(10762,35),(10762,53),(10764,12),(10764,28),(10764,53),(10764,80),(10765,35),(10771,28),(10771,35),(10771,53),(10771,878),(10773,18),(10773,35),(10774,18),(10776,27),(10776,35),(10776,10402),(10781,27),(10782,18),(10782,28),(10782,53),(10782,80),(10782,9648),(10783,12),(10783,28),(10783,35),(10783,53),(10783,80),(10783,10749),(10786,12),(10786,18),(10786,28),(10786,10749),(10796,28),(10796,53),(10796,878),(10800,16),(10800,10751),(10802,18),(10803,12),(10803,28),(10803,878),(10803,10749),(10806,35),(10806,10749),(10808,14),(10808,35),(10808,10749),(10808,10751),(10822,18),(10833,35),(10833,80),(10833,10749),(10844,18),(10858,18),(10858,36),(10861,12),(10861,28),(10861,53),(10865,12),(10865,16),(10865,878),(10865,10751),(10866,18),(10866,53),(10866,9648),(10871,12),(10871,28),(10871,53),(10871,9648),(10873,18),(10873,27),(10876,18),(10877,28),(10877,53),(10877,80),(10878,35),(10878,80),(10878,10749),(10885,27),(10885,53),(10885,9648),(10890,28),(10890,35),(10894,18),(10894,27),(10894,53),(10894,10749),(10895,16),(10895,10751),(10913,18),(10913,35),(10913,80),(10913,10749),(10914,18),(10914,28),(10914,35),(10914,37),(10923,28),(10925,27),(10925,35),(10929,27),(10930,18),(10934,18),(10934,35),(10934,10749),(10935,18),(10935,28),(10935,36),(10935,37),(10944,53),(10944,9648),(10947,18),(10947,35),(10947,10402),(10947,10751),(10947,10770),(10950,18),(10955,53),(10955,80),(10956,12),(10956,18),(10956,35),(10956,9648),(10956,10749),(10970,35),(10972,27),(10972,9648),(10981,14),(10981,35),(10981,878),(10982,16),(10982,35),(10982,10751),(10984,27),(10984,53),(10985,35),(10985,10751),(10987,27),(10987,53),(10991,12),(10991,14),(10991,16),(10991,28),(10991,10751),(10992,35),(10992,10751),(10994,18),(10996,12),(10996,16),(10996,35),(10996,10751),(10998,18),(10998,53),(10998,10749),(10999,12),(10999,28),(10999,53),(11001,28),(11001,35),(11001,80),(11004,18),(11004,35),(11007,35),(11011,35),(11011,10751),(11013,18),(11013,35),(11013,10749),(11015,27),(11015,53),(11015,9648),(11022,18),(11022,28),(11022,53),(11022,80),(11023,18),(11023,80),(11024,12),(11024,14),(11024,35),(11024,9648),(11025,35),(11026,27),(11026,53),(11026,9648),(11027,18),(11027,80),(11027,10749),(11033,27),(11033,53),(11033,9648),(11036,18),(11036,10749),(11042,18),(11042,35),(11042,80),(11051,18),(11056,27),(11058,18),(11058,27),(11058,53),(11058,878),(11062,18),(11062,53),(11065,18),(11065,53),(11065,10749),(11066,35),(11066,10749),(11072,35),(11072,37),(11086,18),(11086,10749),(11090,28),(11090,35),(11091,18),(11091,35),(11091,10749),(11093,18),(11096,27),(11096,53),(11096,9648),(11109,18),(11109,80),(11113,18),(11113,10402),(11113,10749),(11113,10751),(11128,18),(11128,28),(11128,53),(11129,18),(11129,35),(11130,18),(11130,35),(11130,10749),(11130,10751),(11132,35),(11137,35),(11137,10749),(11141,28),(11141,35),(11141,53),(11141,10749),(11152,18),(11152,27),(11153,12),(11153,35),(11153,10749),(11156,18),(11156,36),(11162,18),(11162,10749),(11165,12),(11165,18),(11165,28),(11165,36),(11165,10752),(11170,18),(11172,35),(11172,10402),(11172,10749),(11176,12),(11176,35),(11176,10751),(11184,18),(11186,18),(11186,27),(11190,18),(11190,53),(11190,9648),(11191,18),(11191,35),(11191,10749),(11194,12),(11194,28),(11194,99),(11199,12),(11199,28),(11199,35),(11202,18),(11202,36),(11202,10752),(11208,18),(11208,53),(11208,9648),(11208,10749),(11212,12),(11212,28),(11212,35),(11212,10751),(11217,27),(11217,35),(11219,35),(11219,53),(11219,9648),(11228,12),(11228,28),(11228,53),(11229,18),(11229,35),(11229,53),(11232,14),(11232,35),(11232,878),(11232,10749),(11237,12),(11237,27),(11237,28),(11237,53),(11237,878),(11240,18),(11240,35),(11240,10749),(11247,35),(11249,18),(11249,27),(11249,35),(11253,12),(11253,14),(11253,878),(11257,18),(11257,10749),(11258,53),(11260,12),(11260,35),(11260,878),(11260,10751),(11282,12),(11282,35),(11283,14),(11283,35),(11283,10751),(11284,27),(11284,35),(11284,53),(11287,35),(11298,18),(11298,27),(11302,35),(11306,18),(11306,53),(11308,18),(11308,35),(11313,18),(11313,9648),(11321,18),(11322,18),(11322,36),(11322,80),(11323,18),(11323,35),(11323,80),(11324,18),(11324,53),(11324,9648),(11336,27),(11336,53),(11336,878),(11342,12),(11342,14),(11342,27),(11342,35),(11351,27),(11351,53),(11353,35),(11354,18),(11354,35),(11357,27),(11357,53),(11358,12),(11358,18),(11358,28),(11358,53),(11359,12),(11359,14),(11359,10751),(11361,27),(11361,53),(11362,12),(11362,18),(11362,28),(11362,53),(11363,35),(11363,10749),(11370,12),(11370,18),(11370,28),(11371,28),(11371,53),(11371,80),(11374,35),(11375,12),(11375,28),(11375,35),(11375,53),(11377,27),(11377,53),(11377,9648),(11382,28),(11382,35),(11382,53),(11386,18),(11386,53),(11386,80),(11386,10749),(11395,14),(11395,18),(11395,35),(11395,10751),(11397,35),(11398,12),(11398,28),(11398,80),(11400,18),(11400,36),(11400,10749),(11404,18),(11404,35),(11411,12),(11411,28),(11411,878),(11412,28),(11412,53),(11412,80),(11412,9648),(11426,18),(11426,10749),(11426,10752),(11431,18),(11431,35),(11431,10749),(11439,53),(11439,9648),(11442,27),(11442,53),(11446,18),(11446,35),(11451,12),(11451,14),(11451,35),(11451,10749),(11451,10751),(11452,35),(11452,10749),(11453,35),(11456,53),(11456,80),(11456,9648),(11457,18),(11458,18),(11458,53),(11459,12),(11459,35),(11459,10751),(11460,27),(11460,53),(11467,35),(11467,10749),(11468,18),(11468,53),(11468,9648),(11469,12),(11469,14),(11469,35),(11470,27),(11470,878),(11478,18),(11478,53),(11478,80),(11495,14),(11495,18),(11495,27),(11495,28),(11495,53),(11499,18),(11499,36),(11507,27),(11507,53),(11507,80),(11507,9648),(11509,18),(11509,28),(11509,37),(11509,80),(11516,99),(11517,28),(11517,35),(11517,80),(11519,28),(11519,35),(11529,35),(11529,10749),(11531,27),(11531,53),(11531,9648),(11535,28),(11535,53),(11535,878),(11536,18),(11536,28),(11536,10749),(11543,35),(11544,16),(11544,10751),(11545,18),(11545,35),(11546,35),(11546,80),(11551,12),(11551,14),(11551,28),(11551,35),(11551,878),(11560,18),(11560,53),(11560,80),(11560,9648),(11561,35),(11561,878),(11561,10749),(11564,18),(11564,27),(11564,28),(11564,53),(11564,80),(11565,35),(11565,80),(11576,12),(11576,28),(11576,35),(11576,80),(11577,37),(11583,12),(11583,18),(11583,53),(11583,80),(11586,14),(11586,27),(11586,53),(11588,53),(11588,878),(11588,9648),(11592,27),(11592,35),(11592,53),(11592,80),(11596,14),(11596,27),(11596,53),(11596,9648),(11598,35),(11600,18),(11600,10752),(11601,27),(11601,53),(11601,9648),(11615,18),(11615,53),(11615,80),(11618,14),(11618,27),(11618,53),(11618,9648),(11619,12),(11619,16),(11619,35),(11619,10751),(11620,18),(11620,36),(11620,10749),(11622,35),(11622,10749),(11624,35),(11631,35),(11631,10749),(11632,18),(11632,10749),(11635,35),(11637,12),(11637,35),(11637,10749),(11637,10751),(11638,35),(11638,10749),(11644,18),(11644,53),(11644,9648),(11648,35),(11648,10749),(11658,12),(11658,18),(11658,28),(11658,36),(11658,10752),(11661,18),(11661,36),(11661,10402),(11661,10749),(11661,10752),(11665,28),(11665,35),(11665,53),(11667,12),(11667,28),(11667,53),(11676,12),(11676,28),(11676,35),(11678,12),(11678,28),(11678,53),(11679,12),(11679,18),(11679,28),(11679,53),(11679,80),(11679,9648),(11683,27),(11687,14),(11687,35),(11687,878),(11688,12),(11688,14),(11688,16),(11688,35),(11688,10751),(11690,28),(11692,28),(11692,35),(11692,878),(11697,37),(11699,18),(11699,80),(11702,18),(11702,28),(11702,53),(11702,80),(11770,28),(11770,35),(11775,35),(11775,80),(11775,10749),(11778,18),(11778,10752),(11780,12),(11798,18),(11798,80),(11802,16),(11802,10751),(11804,18),(11804,27),(11804,53),(11812,35),(11812,10749),(11817,14),(11817,28),(11817,35),(11818,12),(11818,18),(11818,28),(11820,18),(11820,10749),(11823,35),(11823,10749),(11826,18),(11826,53),(11826,80),(11827,16),(11827,878),(11831,18),(11831,36),(11831,9648),(11835,18),(11835,28),(11835,53),(11835,80),(11836,16),(11836,35),(11836,10751),(11843,35),(11858,35),(11858,10752),(11863,28),(11863,53),(11863,9648),(11863,10749),(11866,12),(11866,18),(11866,28),(11866,53),(11870,35),(11870,10751),(11873,18),(11876,12),(11876,18),(11876,10749),(11876,10752),(11887,18),(11887,35),(11887,10402),(11887,10749),(11887,10751),(11888,12),(11888,35),(11888,10751),(11889,18),(11889,10749),(11891,28),(11891,35),(11892,18),(11892,53),(11892,80),(11901,37),(11904,12),(11904,18),(11904,28),(11904,53),(11904,80),(11904,9648),(11904,10751),(11908,27),(11908,35),(11917,27),(11917,53),(11917,80),(11918,28),(11918,35),(11918,878),(11932,27),(11932,35),(11934,18),(11934,35),(11935,18),(11935,28),(11935,53),(11935,878),(11954,14),(11954,27),(11954,53),(11954,878),(11956,35),(11959,35),(11967,12),(11967,18),(11967,28),(11967,37),(11967,80),(11968,12),(11968,28),(11968,53),(11968,80),(11969,12),(11969,18),(11969,28),(11969,36),(11969,37),(11971,18),(11971,35),(11971,10749),(11973,18),(11973,53),(11975,18),(11975,53),(11975,80),(11977,35),(11978,18),(11979,14),(11979,18),(11979,27),(11980,14),(11980,27),(11980,53),(11983,12),(11983,18),(11983,28),(11983,53),(11983,10749),(12079,18),(12079,35),(12079,80),(12085,28),(12085,35),(12085,80),(12088,28),(12088,53),(12088,878),(12090,35),(12093,18),(12093,80),(12094,28),(12094,35),(12094,99),(12096,28),(12096,35),(12096,80),(12096,9648),(12096,10751),(12100,18),(12100,28),(12100,36),(12100,10752),(12103,53),(12106,28),(12106,37),(12107,14),(12107,35),(12107,878),(12107,10749),(12109,18),(12109,35),(12109,10402),(12113,18),(12113,28),(12113,53),(12117,18),(12117,53),(12117,9648),(12120,35),(12120,878),(12123,18),(12123,28),(12123,53),(12123,878),(12133,35),(12138,12),(12138,28),(12138,35),(12138,53),(12138,80),(12142,14),(12142,27),(12142,28),(12142,53),(12144,12),(12144,16),(12144,10751),(12149,18),(12149,53),(12149,80),(12150,18),(12150,80),(12150,9648),(12153,35),(12154,18),(12154,35),(12154,10751),(12155,12),(12155,14),(12155,10751),(12158,27),(12158,35),(12158,10749),(12159,14),(12159,18),(12159,10749),(12160,18),(12160,28),(12160,37),(12162,18),(12162,53),(12162,10752),(12163,18),(12163,10749),(12177,35),(12177,10749),(12182,35),(12182,10402),(12182,10749),(12183,18),(12183,35),(12183,10749),(12184,18),(12192,27),(12192,53),(12192,80),(12193,18),(12193,35),(12193,10749),(12201,18),(12201,53),(12201,80),(12201,9648),(12207,28),(12207,35),(12211,14),(12211,28),(12211,878),(12212,27),(12220,18),(12220,35),(12220,10749),(12227,12),(12227,18),(12227,28),(12227,10751),(12228,36),(12228,99),(12244,12),(12244,16),(12244,28),(12244,53),(12244,878),(12245,53),(12245,80),(12245,9648),(12246,36),(12247,18),(12247,53),(12257,18),(12257,35),(12257,10749),(12271,18),(12277,28),(12277,35),(12279,12),(12279,28),(12279,35),(12279,878),(12279,10751),(12281,18),(12281,80),(12289,12),(12289,18),(12289,28),(12312,35),(12400,18),(12403,12),(12403,53),(12403,9648),(12404,18),(12404,35),(12404,10749),(12405,18),(12405,10749),(12410,18),(12412,18),(12412,10752),(12429,16),(12429,10751),(12437,12),(12437,14),(12437,28),(12437,53),(12437,878),(12454,18),(12454,35),(12479,35),(12484,12),(12484,27),(12484,28),(12484,53),(12486,35),(12486,99),(12498,18),(12506,18),(12508,18),(12508,35),(12508,10402),(12509,18),(12509,10749),(12535,35),(12535,10402),(12555,18),(12555,35),(12569,35),(12573,18),(12573,35),(12586,18),(12586,10749),(12589,12),(12589,14),(12589,16),(12589,28),(12589,35),(12589,878),(12589,10751),(12596,18),(12596,35),(12602,27),(12602,36),(12602,9648),(12610,12),(12610,16),(12610,28),(12610,35),(12610,10751),(12612,18),(12612,53),(12612,80),(12618,18),(12618,10749),(12620,35),(12620,10749),(12621,35),(12621,10402),(12634,35),(12634,80),(12637,18),(12637,10402),(12637,10749),(12657,35),(12657,10749),(12658,35),(12658,10749),(12690,18),(12690,37),(12690,80),(12703,18),(12704,12),(12704,28),(12704,35),(12763,10402),(12770,18),(12770,28),(12770,35),(12771,35),(12771,10749),(12779,35),(12779,10749),(12783,18),(12783,36),(12783,10749),(12797,14),(12797,35),(12797,10749),(12819,16),(12819,10751),(12837,12),(12838,18),(12877,18),(12877,53),(12877,80),(12901,99),(12920,18),(12920,10751),(13001,12),(13001,878),(13006,27),(13006,28),(13006,53),(13006,80),(13006,878),(13007,35),(13007,99),(13025,27),(13025,28),(13025,878),(13027,28),(13027,53),(13027,9648),(13051,28),(13053,12),(13053,16),(13053,35),(13053,10751),(13056,28),(13056,80),(13064,12),(13064,28),(13064,35),(13066,35),(13066,10749),(13067,18),(13067,35),(13067,10749),(13072,18),(13072,28),(13072,53),(13074,18),(13075,18),(13079,18),(13079,53),(13079,9648),(13090,18),(13090,35),(13092,18),(13092,35),(13092,10749),(13121,27),(13121,35),(13132,18),(13132,10749),(13150,18),(13150,53),(13150,80),(13154,28),(13154,53),(13155,12),(13155,14),(13155,10751),(13156,18),(13156,35),(13156,10751),(13158,16),(13158,35),(13159,18),(13159,35),(13159,10749),(13160,35),(13166,35),(13173,35),(13183,28),(13183,878),(13183,9648),(13184,28),(13184,53),(13184,80),(13187,16),(13187,35),(13187,10751),(13187,10770),(13191,12),(13191,28),(13191,35),(13191,53),(13193,18),(13193,35),(13197,18),(13197,28),(13197,53),(13197,80),(13197,9648),(13198,14),(13198,18),(13198,35),(13198,10749),(13201,18),(13201,28),(13201,80),(13201,10749),(13223,18),(13250,18),(13250,53),(13250,80),(13260,35),(13279,18),(13279,53),(13279,80),(13282,28),(13282,35),(13282,878),(13335,12),(13335,35),(13342,35),(13362,99),(13363,18),(13363,878),(13370,35),(13370,10402),(13374,18),(13374,35),(13374,10751),(13389,18),(13389,28),(13389,53),(13389,80),(13403,35),(13403,10402),(13405,18),(13405,10752),(13408,28),(13408,35),(13411,35),(13411,80),(13429,18),(13429,27),(13429,53),(13429,80),(13435,18),(13435,10749),(13448,53),(13448,9648),(13460,28),(13460,53),(13460,878),(13475,12),(13475,28),(13475,878),(13476,35),(13476,10749),(13483,53),(13483,80),(13483,9648),(13490,18),(13490,35),(13491,12),(13491,18),(13491,28),(13491,10749),(13495,28),(13496,28),(13496,37),(13497,18),(13497,35),(13497,10402),(13497,10749),(13498,28),(13498,35),(13501,14),(13501,18),(13501,35),(13501,10402),(13501,10749),(13503,28),(13503,37),(13508,99),(13510,27),(13510,53),(13515,27),(13515,53),(13515,9648),(13516,99),(13518,18),(13518,99),(13523,12),(13523,35),(13523,10749),(13536,18),(13536,80),(13536,9648),(13537,18),(13537,36),(13538,53),(13539,10749),(13551,18),(13551,53),(13551,80),(13551,9648),(13569,18),(13569,27),(13569,53),(13576,99),(13576,10402),(13579,18),(13579,10751),(13596,35),(13596,10749),(13600,12),(13600,14),(13600,10751),(13649,18),(13649,35),(13649,10402),(13649,10751),(13673,35),(13673,10751),(13680,35),(13680,10751),(13682,16),(13682,10751),(13685,18),(13685,35),(13685,80),(13688,14),(13688,18),(13688,35),(13688,878),(13688,10751),(13689,18),(13689,10749),(13700,16),(13700,10751),(13751,18),(13768,14),(13768,18),(13768,878),(13768,10749),(13768,10751),(13776,18),(13776,35),(13778,35),(13785,35),(13788,27),(13788,53),(13788,9648),(13805,28),(13805,35),(13807,28),(13807,53),(13807,80),(13809,28),(13809,53),(13809,80),(13811,12),(13811,18),(13811,28),(13811,53),(13811,878),(13811,9648),(13812,27),(13812,53),(13812,878),(13816,18),(13816,80),(13816,10402),(13820,35),(13820,53),(13820,80),(13820,878),(13824,35),(13824,10751),(13827,35),(13836,12),(13836,14),(13836,28),(13836,53),(13836,878),(13836,10751),(13849,27),(13849,35),(13849,53),(13849,80),(13853,12),(13853,18),(13856,14),(13856,18),(13856,878),(13888,12),(13888,18),(13888,10749),(13889,18),(13898,18),(13898,10769),(13908,35),(13908,10751),(13909,37),(13919,18),(13919,35),(13920,18),(13922,28),(13922,36),(13922,10752),(13937,18),(13937,27),(13937,53),(13937,80),(13938,12),(13938,28),(13938,35),(13948,14),(13948,35),(13950,12),(13950,28),(13950,35),(13960,18),(13963,99),(13963,10402),(13967,18),(13967,10749),(13967,10751),(13972,18),(13972,35),(13972,10749),(13973,18),(13973,35),(13982,35),(13982,80),(13983,35),(13990,18),(13991,35),(13994,35),(13994,10402),(13994,10749),(13996,18),(13996,35),(14012,18),(14014,35),(14022,35),(14024,18),(14024,10402),(14024,10749),(14033,27),(14033,53),(14033,9648),(14034,28),(14034,35),(14043,12),(14043,28),(14043,53),(14043,80),(14043,9648),(14043,10751),(14047,18),(14048,36),(14048,53),(14048,80),(14048,99),(14054,18),(14054,10749),(14057,18),(14057,35),(14057,10749),(14112,18),(14112,80),(14113,14),(14113,35),(14113,10751),(14114,18),(14120,12),(14120,18),(14137,35),(14139,53),(14139,878),(14144,35),(14144,10751),(14156,53),(14156,10749),(14160,12),(14160,16),(14160,35),(14160,10751),(14161,12),(14161,28),(14161,878),(14164,12),(14164,14),(14164,28),(14164,53),(14164,878),(14165,35),(14165,10749),(14165,10751),(14175,12),(14175,16),(14175,10751),(14177,35),(14177,10749),(14181,18),(14181,53),(14181,80),(14191,14),(14191,35),(14191,10749),(14191,10751),(14195,35),(14195,53),(14195,80),(14199,12),(14199,878),(14199,10751),(14202,18),(14202,10749),(14220,35),(14256,18),(14256,35),(14271,99),(14275,99),(14278,99),(14283,18),(14283,53),(14283,9648),(14283,10402),(14283,10749),(14284,99),(14290,18),(14290,80),(14292,18),(14292,36),(14293,18),(14293,35),(14293,53),(14295,18),(14295,10749),(14299,18),(14299,36),(14299,10402),(14306,35),(14306,10751),(14317,12),(14317,16),(14317,10751),(14324,12),(14324,28),(14324,35),(14324,10749),(14325,18),(14337,18),(14337,53),(14337,878),(14351,12),(14351,18),(14351,28),(14353,27),(14353,35),(14353,878),(14353,10402),(14358,99),(14358,10751),(14359,18),(14359,9648),(14369,35),(14392,18),(14392,28),(14392,36),(14395,18),(14395,10749),(14396,28),(14396,35),(14396,80),(14405,12),(14405,35),(14405,10751),(14411,12),(14411,16),(14411,10751),(14425,35),(14429,18),(14429,35),(14429,10749),(14429,10751),(14434,35),(14434,10749),(14435,27),(14435,9648),(14438,18),(14442,14),(14442,35),(14442,10751),(14444,16),(14444,10751),(14451,27),(14451,35),(14462,18),(14462,53),(14462,9648),(14474,18),(14474,35),(14474,10749),(14517,14),(14536,35),(14538,18),(14538,28),(14538,36),(14544,18),(14544,35),(14544,10751),(14557,35),(14560,12),(14560,28),(14560,35),(14560,10751),(14574,18),(14574,10752),(14576,28),(14576,53),(14576,80),(14577,35),(14578,18),(14578,35),(14578,10749),(14582,18),(14582,36),(14582,10749),(14582,10752),(14585,18),(14585,35),(14608,18),(14608,10749),(14608,10769),(14623,12),(14623,14),(14623,28),(14623,35),(14623,878),(14623,10751),(14624,18),(14624,10749),(14624,10751),(14629,18),(14629,35),(14629,10749),(14631,18),(14635,18),(14635,10751),(14652,18),(14652,35),(14652,10769),(14655,35),(14655,10402),(14662,18),(14662,35),(14709,18),(14709,35),(14709,10749),(14729,36),(14729,37),(14736,18),(14736,28),(14736,35),(14736,10749),(14745,18),(14745,27),(14757,18),(14758,18),(14758,35),(14758,10749),(14778,18),(14778,35),(14799,18),(14799,35),(14811,18),(14811,10749),(14823,18),(14823,53),(14823,80),(14834,18),(14834,10749),(14836,16),(14836,10751),(14844,35),(14844,10749),(14846,18),(14846,35),(14846,10749),(14849,14),(14849,18),(14849,35),(14854,18),(14854,28),(14854,37),(14854,53),(14854,80),(14854,10749),(14869,12),(14869,28),(14869,53),(14869,878),(14873,12),(14873,16),(14873,10751),(14877,18),(14877,28),(14877,36),(14877,37),(14877,10749),(14902,18),(14902,35),(14902,36),(14902,10402),(14914,18),(14976,18),(15005,18),(15013,18),(15017,35),(15017,10749),(15028,12),(15028,53),(15028,878),(15028,10751),(15037,18),(15037,35),(15037,10749),(15045,18),(15045,35),(15045,10751),(15049,28),(15049,35),(15049,80),(15059,18),(15067,12),(15067,28),(15067,35),(15067,37),(15070,12),(15070,18),(15070,28),(15070,53),(15074,12),(15074,18),(15074,28),(15074,53),(15092,28),(15092,53),(15092,80),(15121,18),(15121,10402),(15121,10749),(15121,10751),(15122,35),(15122,10749),(15158,27),(15158,28),(15158,53),(15158,878),(15173,12),(15173,14),(15173,16),(15173,28),(15173,35),(15173,10749),(15173,10751),(15186,18),(15186,35),(15186,10749),(15189,35),(15189,10751),(15198,18),(15198,35),(15208,14),(15208,18),(15237,18),(15237,10402),(15239,27),(15239,28),(15239,35),(15239,878),(15250,18),(15250,35),(15256,18),(15256,35),(15256,10749),(15268,12),(15268,28),(15268,53),(15268,878),(15301,14),(15301,18),(15301,27),(15301,53),(15301,878),(15365,12),(15365,28),(15365,35),(15365,80),(15373,35),(15389,18),(15389,35),(15394,18),(15394,53),(15394,80),(15487,18),(15487,10751),(15489,35),(15489,10751),(15511,12),(15511,16),(15511,35),(15511,878),(15511,10751),(15512,12),(15512,16),(15512,878),(15512,10751),(15544,35),(15556,18),(15556,10749),(15568,18),(15581,35),(15582,14),(15582,35),(15582,10751),(15624,18),(15624,10749),(15639,35),(15644,18),(15644,28),(15644,53),(15647,35),(15648,18),(15648,35),(15648,10749),(15648,10751),(15655,16),(15655,10751),(15660,18),(15670,18),(15670,35),(15670,80),(15673,35),(15699,18),(15699,10751),(15699,10769),(15708,18),(15708,35),(15708,10749),(15745,28),(15745,35),(15745,53),(15765,18),(15765,10402),(15797,28),(15800,99),(15875,12),(15875,35),(15875,10749),(15907,12),(15907,18),(15907,10751),(15927,12),(15927,18),(15927,36),(15976,18),(15976,10749),(15983,28),(15983,53),(15992,18),(15992,53),(15992,9648),(16005,18),(16005,35),(16005,36),(16016,12),(16016,16),(16016,28),(16016,35),(16016,878),(16028,27),(16028,53),(16052,18),(16072,18),(16072,36),(16072,10752),(16096,35),(16110,16),(16110,18),(16110,878),(16110,10751),(16112,10751),(16148,35),(16148,53),(16148,80),(16148,9648),(16155,35),(16155,80),(16158,18),(16158,35),(16158,10749),(16161,18),(16161,80),(16161,10749),(16162,18),(16162,35),(16172,35),(16186,18),(16186,35),(16186,10749),(16205,27),(16205,28),(16205,35),(16222,18),(16222,35),(16222,10749),(16232,18),(16232,35),(16241,18),(16241,27),(16241,53),(16241,878),(16281,14),(16281,27),(16281,35),(16288,27),(16290,28),(16290,35),(16290,99),(16300,14),(16300,35),(16300,878),(16300,10749),(16320,12),(16320,28),(16320,53),(16320,878),(16323,18),(16323,10402),(16323,10749),(16337,27),(16340,12),(16340,16),(16340,35),(16340,10751),(16351,18),(16351,10752),(16353,12),(16353,28),(16353,53),(16358,18),(16358,35),(16363,35),(16388,18),(16388,35),(16388,10749),(16406,35),(16428,35),(16428,10749),(16433,12),(16433,18),(16433,35),(16433,80),(16441,14),(16441,28),(16448,35),(16448,10402),(16471,35),(16508,16),(16508,35),(16508,10751),(16523,14),(16523,10751),(16538,35),(16558,35),(16558,80),(16558,10749),(16564,18),(16564,36),(16564,10752),(16577,16),(16577,28),(16577,878),(16577,10751),(16608,12),(16608,18),(16608,28),(16608,37),(16608,53),(16608,80),(16614,35),(16617,53),(16617,80),(16617,9648),(16619,18),(16620,18),(16620,10402),(16633,14),(16633,18),(16633,878),(16633,10749),(16642,18),(16642,10749),(16643,18),(16643,35),(16643,10749),(16651,12),(16651,18),(16651,28),(16651,10751),(16653,18),(16653,35),(16653,10749),(16653,10751),(16690,12),(16690,14),(16690,16),(16690,10751),(16727,18),(16769,18),(16769,10402),(16781,18),(16781,35),(16781,10749),(16784,35),(16857,18),(16857,35),(16858,18),(16858,10402),(16866,12),(16866,16),(16866,35),(16866,878),(16866,10751),(16869,18),(16869,28),(16869,53),(16869,10752),(16871,27),(16871,53),(16888,35),(16899,35),(16899,10749),(16911,14),(16911,28),(16911,53),(16911,878),(16988,18),(16991,18),(16991,35),(16991,80),(16995,28),(16996,35),(17043,12),(17043,28),(17043,10751),(17044,18),(17044,10749),(17044,10752),(17047,35),(17113,18),(17127,18),(17127,35),(17127,10749),(17130,12),(17130,18),(17130,28),(17130,35),(17130,10402),(17130,10749),(17130,10751),(17134,12),(17134,18),(17134,28),(17134,53),(17139,18),(17139,36),(17139,10769),(17170,18),(17182,18),(17182,53),(17186,12),(17186,18),(17186,28),(17186,10749),(17187,18),(17187,10749),(17202,18),(17202,35),(17264,12),(17264,10751),(17277,18),(17277,36),(17287,27),(17287,35),(17332,18),(17334,35),(17334,10749),(17339,12),(17339,28),(17339,53),(17339,10752),(17345,18),(17345,10751),(17379,12),(17379,18),(17379,35),(17403,18),(17403,35),(17403,10749),(17431,18),(17431,878),(17436,18),(17577,27),(17577,28),(17577,53),(17577,878),(17578,12),(17578,16),(17578,9648),(17610,12),(17610,35),(17622,28),(17622,53),(17644,10751),(17654,878),(17663,18),(17663,10751),(17707,18),(17707,53),(17708,28),(17708,35),(17708,80),(17709,35),(17709,10749),(17709,10751),(17710,16),(17710,10751),(17711,12),(17711,16),(17711,28),(17711,35),(17711,10751),(17734,18),(17768,35),(17768,10402),(17795,18),(17795,35),(17813,35),(17813,10749),(17820,10402),(17820,10749),(17834,12),(17834,14),(17834,35),(17834,10751),(17880,18),(17880,35),(17880,10751),(17908,18),(17908,35),(17908,10751),(17917,18),(17917,10402),(17917,10751),(17926,35),(17926,10749),(17979,16),(17979,18),(17994,27),(17995,35),(17995,99),(18041,18),(18041,53),(18041,9648),(18045,27),(18045,53),(18045,878),(18065,28),(18065,35),(18065,80),(18074,18),(18074,35),(18074,10402),(18079,18),(18079,53),(18079,80),(18126,18),(18126,35),(18126,10402),(18126,10749),(18126,10751),(18147,35),(18147,10751),(18162,12),(18162,35),(18162,878),(18191,18),(18191,53),(18206,18),(18206,53),(18206,80),(18206,10749),(18238,27),(18238,35),(18239,12),(18239,14),(18239,18),(18239,10749),(18240,18),(18240,35),(18240,10749),(18254,18),(18254,36),(18276,18),(18276,10751),(18292,18),(18320,18),(18320,36),(18320,10749),(18357,12),(18357,35),(18357,10751),(18360,12),(18360,14),(18360,28),(18360,35),(18360,10751),(18405,18),(18405,27),(18405,53),(18405,80),(18442,27),(18442,53),(18442,878),(18475,18),(18475,35),(18480,35),(18487,18),(18487,53),(18487,80),(18501,28),(18501,53),(18501,878),(18516,18),(18516,10752),(18530,18),(18533,18),(18533,28),(18533,80),(18550,28),(18550,35),(18550,53),(18570,99),(18602,18),(18615,18),(18615,9648),(18615,10749),(18616,27),(18616,53),(18632,35),(18681,18),(18681,53),(18681,9648),(18701,18),(18701,35),(18701,10749),(18712,18),(18712,28),(18712,36),(18712,10752),(18713,35),(18713,80),(18734,18),(18736,35),(18736,10751),(18777,18),(18777,53),(18777,80),(18777,9648),(18785,35),(18808,12),(18808,18),(18808,28),(18823,12),(18823,14),(18823,28),(18828,12),(18828,18),(18828,28),(18828,35),(18828,10749),(18840,18),(18840,36),(18840,10749),(18840,10751),(18841,27),(18841,35),(18841,878),(18869,18),(18869,28),(18869,53),(18869,80),(18885,12),(18885,28),(18885,35),(18885,10751),(18886,12),(18886,18),(18886,28),(18886,53),(18892,35),(18900,18),(18900,80),(18923,18),(18923,10749),(18925,18),(18937,14),(18937,16),(18937,18),(18937,10749),(18937,10751),(18947,18),(18947,35),(18975,14),(18975,16),(18975,10751),(19052,18),(19052,53),(19084,35),(19084,10751),(19150,28),(19150,35),(19153,99),(19187,28),(19187,35),(19204,27),(19255,18),(19255,35),(19255,10749),(19265,35),(19265,10749),(19316,35),(19316,10749),(19344,18),(19344,10749),(19366,35),(19366,10402),(19405,16),(19405,35),(19405,878),(19405,10751),(19419,28),(19419,35),(19457,18),(19457,28),(19457,53),(19457,80),(19489,35),(19495,28),(19495,36),(19495,10752),(19556,35),(19556,10749),(19585,12),(19585,14),(19585,28),(19585,35),(19585,10751),(19615,18),(19644,18),(19644,28),(19644,36),(19724,35),(19803,28),(19803,35),(19840,35),(19840,10749),(19844,18),(19844,35),(19844,10749),(19848,18),(19898,27),(19898,28),(19898,53),(19898,878),(19898,9648),(19899,35),(19899,10749),(19901,14),(19901,27),(19901,28),(19901,53),(19901,878),(19904,27),(19904,53),(19904,9648),(19905,35),(19908,27),(19908,35),(19912,27),(19912,9648),(19913,18),(19913,35),(19913,10749),(19933,12),(19933,14),(19933,16),(19933,35),(19933,10402),(19933,10751),(19959,28),(19959,53),(19959,878),(19994,27),(19994,35),(19995,12),(19995,14),(19995,28),(19995,878),(19997,18),(19997,53),(19997,80),(20009,35),(20009,10749),(20024,18),(20055,18),(20055,53),(20055,80),(20055,9648),(20065,18),(20065,35),(20065,10749),(20083,18),(20083,28),(20083,53),(20083,80),(20156,18),(20156,9648),(20178,35),(20178,10749),(20296,53),(20309,35),(20309,10749),(20322,18),(20322,35),(20322,10749),(20337,35),(20352,16),(20352,10751),(20360,18),(20360,10749),(20360,10769),(20391,18),(20391,28),(20391,35),(20391,37),(20391,10402),(20406,12),(20406,18),(20406,28),(20455,14),(20455,16),(20455,878),(20455,10751),(20468,35),(20468,10769),(20483,12),(20483,28),(20483,10751),(20504,28),(20504,53),(20504,878),(20520,18),(20520,35),(20526,12),(20526,28),(20526,878),(20533,14),(20533,18),(20533,28),(20533,37),(20533,53),(20542,12),(20542,14),(20542,16),(20542,35),(20542,878),(20542,10751),(20616,18),(20616,53),(20653,16),(20653,10751),(20653,10769),(20662,12),(20662,28),(20694,16),(20694,10751),(20697,18),(20697,28),(20697,35),(20737,18),(20737,35),(20737,10751),(20761,18),(20761,35),(20763,18),(20764,18),(20764,53),(20764,878),(20766,12),(20766,18),(20770,35),(20794,35),(20794,53),(20794,80),(20829,18),(20829,35),(20856,12),(20856,14),(20856,35),(20856,878),(20856,10751),(20857,35),(20857,10749),(20862,18),(20862,35),(20943,35),(20943,10749),(20981,14),(20981,27),(20981,53),(21014,35),(21074,18),(21208,27),(21208,53),(21208,9648),(21283,35),(21283,10749),(21301,18),(21301,35),(21309,18),(21309,80),(21311,12),(21311,18),(21311,10749),(21334,18),(21334,35),(21334,10751),(21338,28),(21338,53),(21338,80),(21345,18),(21345,36),(21345,10752),(21349,18),(21349,35),(21349,10749),(21355,18),(21355,37),(21355,10749),(21413,18),(21413,35),(21413,10749),(21461,18),(21461,35),(21461,10749),(21494,18),(21494,35),(21494,10749),(21512,12),(21512,28),(21512,878),(21525,99),(21525,10402),(21610,28),(21610,53),(21610,80),(21612,18),(21612,80),(21641,18),(21724,28),(21724,35),(21724,10402),(21755,12),(21755,18),(21755,35),(21755,10749),(21765,35),(21765,878),(21765,10751),(21801,18),(21972,14),(21972,18),(21972,35),(21972,10751),(22007,27),(22007,53),(22013,18),(22051,18),(22051,10749),(22074,99),(22102,12),(22102,35),(22102,10751),(22215,18),(22215,35),(22215,10749),(22256,18),(22267,18),(22267,37),(22267,10749),(22267,10752),(22301,18),(22301,28),(22301,36),(22314,18),(22314,28),(22314,53),(22314,80),(22327,18),(22327,35),(22327,10749),(22345,35),(22345,878),(22345,10751),(22479,18),(22479,53),(22479,80),(22479,10402),(22488,18),(22488,28),(22488,10751),(22488,10770),(22530,27),(22538,12),(22538,28),(22538,35),(22556,18),(22556,10749),(22597,18),(22597,35),(22597,10749),(22600,18),(22600,28),(22600,80),(22600,10769),(22617,18),(22617,28),(22617,53),(22649,18),(22649,10749),(22649,10752),(22787,28),(22787,53),(22787,80),(22787,9648),(22794,16),(22794,35),(22794,10751),(22796,18),(22796,35),(22796,10751),(22798,18),(22803,18),(22803,53),(22803,80),(22804,27),(22804,9648),(22805,18),(22805,35),(22820,28),(22820,35),(22820,53),(22821,28),(22821,53),(22821,80),(22824,53),(22824,878),(22824,9648),(22825,53),(22825,878),(22832,28),(22832,53),(22832,80),(22881,18),(22894,27),(22897,35),(22897,10749),(22907,18),(22907,28),(22907,53),(22907,80),(22908,18),(22908,35),(22908,10769),(22913,18),(22913,35),(22913,10749),(22947,18),(22947,10749),(22949,35),(22949,10751),(22954,18),(22954,36),(22970,27),(22970,53),(22971,18),(22971,10749),(22971,10752),(22972,12),(22972,18),(22972,28),(22972,53),(22972,10752),(23048,12),(23048,35),(23048,878),(23049,35),(23049,10749),(23069,12),(23069,10749),(23069,10751),(23082,14),(23082,35),(23082,10749),(23168,18),(23168,53),(23168,80),(23169,18),(23169,10749),(23172,28),(23172,35),(23172,10751),(23330,28),(23330,35),(23330,37),(23367,18),(23367,35),(23367,10402),(23367,10751),(23398,14),(23398,16),(23398,35),(23398,10402),(23398,10751),(23479,35),(23479,10751),(23483,28),(23483,80),(23531,35),(23531,10749),(23570,35),(23570,10749),(23618,35),(23629,14),(23629,28),(23629,53),(23631,28),(23631,35),(23631,53),(23655,18),(23655,10402),(23655,10749),(23685,12),(23685,14),(23685,16),(23685,28),(23685,35),(23706,35),(23730,27),(23730,878),(23742,28),(23742,35),(23742,80),(23759,12),(23759,18),(23759,28),(23827,27),(23827,9648),(23963,27),(23963,878),(23963,9648),(23988,27),(23988,35),(24021,12),(24021,14),(24021,18),(24021,10749),(24034,16),(24034,18),(24034,10402),(24034,10751),(24055,18),(24055,35),(24055,10749),(24066,35),(24066,80),(24071,18),(24071,35),(24071,10749),(24100,27),(24100,10751),(24113,35),(24113,10749),(24126,14),(24126,27),(24126,878),(24137,18),(24137,35),(24137,10749),(24150,27),(24206,18),(24206,28),(24206,53),(24226,18),(24227,28),(24264,12),(24264,14),(24264,28),(24264,35),(24264,878),(24266,18),(24266,28),(24266,37),(24266,10749),(24266,10751),(24356,18),(24356,10402),(24363,18),(24363,35),(24418,12),(24418,14),(24418,28),(24418,53),(24420,14),(24420,18),(24420,10749),(24424,18),(24424,80),(24428,12),(24428,28),(24428,878),(24432,10751),(24438,35),(24469,18),(24575,18),(24575,28),(24575,53),(24621,35),(24621,10749),(24662,16),(24662,35),(24662,10402),(24662,10751),(24663,18),(24663,35),(24663,10749),(24664,18),(24664,35),(24684,18),(24684,10749),(24746,12),(24746,28),(24746,878),(24747,18),(24748,18),(24748,28),(24748,37),(24803,18),(24803,10749),(24869,14),(24869,28),(24913,27),(24913,9648),(24940,35),(24940,10749),(24961,12),(24961,14),(24961,10402),(24961,10751),(24973,18),(24973,36),(24977,99),(24985,18),(24985,10749),(25066,27),(25066,53),(25066,80),(25113,18),(25113,35),(25113,10749),(25132,35),(25132,10751),(25166,35),(25166,80),(25166,9648),(25186,35),(25189,18),(25189,35),(25189,10749),(25195,35),(25195,10749),(25196,18),(25196,10402),(25196,10749),(25208,18),(25208,53),(25208,9648),(25209,28),(25209,35),(25209,37),(25209,10402),(25209,10749),(25212,18),(25212,28),(25212,53),(25212,9648),(25248,18),(25248,35),(25312,18),(25312,10749),(25350,18),(25350,35),(25353,12),(25353,16),(25353,10751),(25376,18),(25376,80),(25376,9648),(25376,10749),(25379,12),(25379,18),(25379,10751),(25388,12),(25388,18),(25388,28),(25388,10752),(25428,18),(25428,9648),(25461,18),(25461,10749),(25462,35),(25462,10749),(25520,18),(25520,10749),(25636,18),(25636,35),(25636,10749),(25643,18),(25643,10749),(25678,12),(25678,18),(25678,28),(25704,35),(25719,35),(25719,80),(25719,10749),(25763,12),(25763,28),(25763,878),(25769,18),(25769,27),(25769,28),(25769,53),(25769,878),(25784,18),(25786,18),(25786,10751),(25793,18),(25941,18),(25941,28),(25941,53),(25941,80),(25968,18),(25968,10749),(25975,99),(25983,27),(25983,9648),(26022,18),(26022,10749),(26039,18),(26039,28),(26039,53),(26039,80),(26171,18),(26268,18),(26268,28),(26268,53),(26268,80),(26268,9648),(26306,18),(26306,10749),(26320,18),(26320,35),(26320,10402),(26352,28),(26352,35),(26352,80),(26367,18),(26367,35),(26371,18),(26371,10749),(26379,18),(26379,10751),(26379,10769),(26388,18),(26388,53),(26388,9648),(26389,28),(26389,53),(26389,80),(26390,18),(26390,53),(26390,80),(26428,12),(26428,18),(26428,36),(26466,27),(26486,28),(26486,35),(26518,18),(26602,18),(26602,35),(26602,10749),(26618,18),(26618,35),(26618,53),(26618,80),(26665,18),(26665,35),(26665,10769),(26672,12),(26672,14),(26672,16),(26672,878),(26672,10751),(26673,35),(26673,10749),(26688,27),(26688,53),(26688,9648),(26710,35),(26748,18),(26748,9648),(26748,10749),(26791,18),(26791,53),(26791,80),(26791,9648),(26815,18),(26815,35),(26815,10749),(26837,18),(26837,80),(26837,10402),(26843,28),(26843,36),(26843,10752),(26899,18),(26916,12),(26916,18),(26916,28),(26963,14),(26963,16),(26963,10751),(27004,35),(27004,53),(27004,80),(27022,12),(27022,14),(27022,18),(27022,28),(27022,35),(27023,35),(27029,18),(27191,18),(27191,28),(27191,10749),(27205,12),(27205,28),(27205,53),(27205,878),(27205,9648),(27322,18),(27322,35),(27322,10749),(27329,18),(27329,36),(27329,10752),(27329,10769),(27342,28),(27342,53),(27360,35),(27360,80),(27374,27),(27374,53),(27380,12),(27380,28),(27380,878),(27404,35),(27420,27),(27451,18),(27455,18),(27455,35),(27549,12),(27549,14),(27549,28),(27549,878),(27551,12),(27551,14),(27569,18),(27573,28),(27576,28),(27576,53),(27576,9648),(27578,12),(27578,28),(27578,53),(27579,18),(27579,53),(27579,80),(27581,28),(27581,35),(27581,80),(27582,28),(27582,53),(27582,80),(27585,18),(27586,18),(27586,10402),(27588,18),(27588,27),(27588,10749),(27686,10402),(27686,10749),(27723,35),(27759,18),(27759,28),(27759,36),(27845,18),(27845,35),(27936,28),(27936,35),(27936,80),(27983,18),(27983,35),(27983,10751),(27995,35),(27995,10749),(28005,18),(28005,36),(28005,10749),(28029,18),(28029,10749),(28053,18),(28053,35),(28089,18),(28089,36),(28121,35),(28121,53),(28121,80),(28121,10749),(28165,27),(28165,28),(28165,35),(28178,18),(28178,10751),(28211,18),(28211,53),(28211,9648),(28260,27),(28260,35),(28260,878),(28260,10749),(28353,35),(28353,10749),(28355,27),(28355,53),(28355,9648),(28580,18),(28665,18),(28665,35),(28665,10402),(28665,10749),(28666,18),(28902,18),(28902,53),(28932,18),(28932,28),(29015,28),(29015,35),(29064,27),(29064,53),(29076,28),(29076,35),(29076,53),(29076,10749),(29078,18),(29122,35),(29122,80),(29146,18),(29146,878),(29146,10749),(29193,18),(29193,53),(29193,80),(29193,9648),(29262,18),(29339,12),(29339,18),(29339,28),(29339,10751),(29371,18),(29371,35),(29371,10749),(29406,18),(29426,27),(29426,878),(29427,27),(29427,28),(29427,9648),(29461,18),(29461,35),(29463,18),(29463,10402),(29463,10749),(29514,27),(29514,53),(29595,99),(29697,18),(29715,37),(29715,10752),(29731,35),(29731,10749),(29912,18),(29917,53),(29917,9648),(29920,18),(29920,53),(29920,80),(29963,18),(29963,10749),(29996,18),(29996,36),(29996,10749),(29996,10752),(30082,18),(30082,10749),(30128,18),(30128,35),(30139,35),(30139,10749),(30141,35),(30141,80),(30141,9648),(30141,10402),(30246,18),(30246,53),(30246,80),(30309,18),(30309,35),(30315,27),(30315,878),(30379,28),(30379,53),(30379,878),(30497,27),(30596,18),(30596,28),(30596,36),(30867,99),(30867,10402),(30890,18),(30890,35),(30943,18),(30943,9648),(30973,18),(30973,36),(30979,99),(31005,18),(31005,10749),(31007,18),(31064,18),(31064,53),(31117,35),(31117,10751),(31163,35),(31163,10749),(31163,10769),(31166,18),(31166,53),(31174,18),(31174,10752),(31175,18),(31175,35),(31203,35),(31246,35),(31246,10749),(31306,18),(31306,35),(31535,35),(31582,18),(31582,35),(31640,18),(31640,53),(31640,80),(31668,18),(31668,28),(31668,35),(31668,36),(31867,28),(31867,53),(31867,80),(31867,878),(31908,18),(31908,36),(31909,878),(31915,27),(31915,878),(31932,53),(32222,18),(32222,35),(32222,10749),(32235,14),(32235,18),(32235,878),(32274,18),(32275,37),(32316,35),(32395,18),(32456,18),(32456,10749),(32579,18),(32657,12),(32657,14),(32657,10751),(32740,28),(32740,878),(32823,35),(32856,35),(32856,10749),(33106,12),(33106,18),(33106,28),(33106,35),(33106,10769),(33155,35),(33155,878),(33157,18),(33157,28),(33157,36),(33196,12),(33196,18),(33196,28),(33196,53),(33217,35),(33217,10751),(33430,18),(33430,10749),(33468,27),(33468,878),(33511,18),(33542,28),(33542,35),(33542,53),(33542,80),(33644,18),(33644,35),(33644,10749),(33667,18),(33667,10749),(33676,35),(33693,18),(33693,35),(33870,18),(33870,10749),(33909,18),(33909,80),(34016,35),(34016,10749),(34043,35),(34043,10749),(34043,10751),(34069,53),(34069,878),(34069,9648),(34086,35),(34086,878),(34086,10751),(34099,18),(34099,10402),(34099,10751),(34101,35),(34106,35),(34106,10749),(34152,18),(34152,35),(34314,28),(34314,53),(34314,80),(34335,18),(34335,27),(34335,53),(34335,80),(34341,35),(34417,35),(34549,14),(34549,35),(34549,878),(34549,10751),(34563,35),(34584,12),(34584,14),(34584,18),(34584,10751),(34592,27),(34647,14),(34647,18),(34653,18),(34653,10749),(34697,18),(34697,80),(34723,12),(34723,18),(34723,28),(34723,10751),(34769,18),(34769,28),(34769,35),(34769,80),(34806,35),(34806,10749),(34813,12),(34813,28),(34813,53),(34813,80),(34813,9648),(34851,12),(34851,28),(34851,53),(34851,878),(34941,18),(35019,14),(35019,35),(35032,10402),(35032,10749),(35056,35),(35073,12),(35073,27),(35073,878),(35169,35),(35199,99),(35219,18),(35219,35),(35219,53),(35219,9648),(35688,35),(35688,10749),(35689,53),(35689,80),(35689,9648),(35690,18),(35690,10749),(35690,10751),(35691,18),(35691,28),(35691,53),(35691,10751),(35696,18),(35696,35),(35791,12),(35791,27),(35791,28),(35791,878),(35944,28),(35944,35),(36046,18),(36046,10749),(36047,53),(36095,27),(36095,53),(36095,80),(36095,9648),(36334,18),(36334,80),(36351,18),(36351,80),(36355,12),(36355,10751),(36419,18),(36419,27),(36419,53),(36419,9648),(36549,18),(36549,53),(36549,878),(36549,9648),(36557,12),(36557,28),(36557,53),(36584,18),(36584,53),(36586,14),(36586,27),(36586,28),(36586,53),(36593,35),(36593,80),(36597,18),(36643,12),(36643,28),(36643,53),(36647,27),(36647,28),(36648,12),(36648,14),(36648,27),(36648,28),(36648,53),(36648,878),(36657,12),(36657,28),(36657,878),(36658,12),(36658,28),(36658,53),(36658,878),(36668,12),(36668,28),(36668,53),(36668,878),(36669,12),(36669,28),(36669,53),(36670,12),(36670,28),(36670,53),(36691,18),(36691,35),(36691,10749),(36696,16),(36696,10751),(36739,18),(36739,35),(36811,18),(36811,10749),(36819,12),(36819,14),(36819,35),(36819,878),(36819,10751),(36825,35),(36825,80),(36825,10751),(36955,28),(36955,53),(36970,99),(36970,10751),(37003,99),(37003,10402),(37028,18),(37028,35),(37028,10402),(37056,18),(37056,35),(37056,10749),(37080,18),(37080,10749),(37137,35),(37137,80),(37165,18),(37165,35),(37206,18),(37206,10751),(37232,12),(37232,18),(37232,10769),(37233,18),(37233,53),(37233,9648),(37414,18),(37414,53),(37414,80),(37495,18),(37495,35),(37495,80),(37498,12),(37498,28),(37498,53),(37532,18),(37686,53),(37686,878),(37686,9648),(37694,18),(37707,27),(37707,53),(37707,878),(37710,28),(37710,53),(37710,10749),(37718,14),(37718,35),(37724,12),(37724,28),(37724,53),(37735,35),(37737,18),(37737,28),(37737,10749),(37786,18),(37786,35),(37786,10749),(37799,18),(37821,28),(37821,35),(37821,53),(37821,10749),(37834,28),(37834,35),(37842,18),(37842,10749),(37903,18),(37903,80),(37903,9648),(37931,12),(37931,28),(37931,35),(37950,18),(37958,14),(37958,18),(37958,28),(37964,35),(37964,10749),(37985,99),(38007,35),(38007,10749),(38031,18),(38031,35),(38031,10749),(38033,27),(38033,53),(38050,53),(38050,878),(38050,10749),(38055,16),(38055,28),(38055,35),(38055,878),(38055,10751),(38073,18),(38073,35),(38073,10749),(38093,18),(38093,35),(38093,10749),(38117,14),(38117,18),(38117,10749),(38153,28),(38153,53),(38167,18),(38223,18),(38223,35),(38223,10751),(38303,35),(38303,10749),(38317,35),(38317,10749),(38317,10751),(38319,35),(38321,14),(38321,27),(38321,28),(38321,53),(38321,878),(38322,28),(38322,35),(38322,80),(38356,12),(38356,28),(38356,878),(38357,18),(38357,35),(38357,10749),(38358,18),(38358,27),(38358,53),(38363,18),(38363,53),(38365,35),(38415,18),(38415,35),(38415,10749),(38415,10769),(38428,18),(38428,36),(38428,10769),(38448,18),(38448,10749),(38541,878),(38543,12),(38543,28),(38543,36),(38543,10749),(38570,35),(38579,35),(38579,10751),(38665,12),(38665,28),(38665,37),(38665,10749),(38717,12),(38717,18),(38717,28),(38745,35),(38757,16),(38757,10751),(38778,35),(38780,18),(38780,28),(38780,53),(38780,80),(38810,18),(38843,35),(38843,10751),(38940,28),(38940,53),(38970,18),(38970,35),(38970,10749),(38985,12),(38985,28),(38985,53),(39013,18),(39037,35),(39037,10749),(39053,18),(39053,35),(39053,10749),(39055,18),(39055,10751),(39141,18),(39141,35),(39141,10749),(39180,28),(39180,35),(39180,10751),(39183,99),(39209,37),(39210,18),(39210,35),(39254,18),(39254,28),(39254,878),(39269,18),(39303,27),(39303,53),(39303,9648),(39349,18),(39349,28),(39349,53),(39437,18),(39437,53),(39451,35),(39451,10749),(39486,18),(39513,12),(39513,35),(39513,878),(39514,12),(39514,28),(39514,35),(39514,53),(39514,80),(39538,18),(39538,53),(39538,878),(39541,18),(39541,35),(39541,10751),(39563,18),(39563,27),(39563,10749),(39691,35),(39691,10751),(39780,18),(39780,10749),(39781,18),(39781,35),(39800,18),(39800,35),(39806,18),(39833,18),(39833,28),(39833,37),(39833,10402),(39833,10749),(39845,18),(39851,18),(39895,27),(39895,35),(39939,35),(39939,80),(39939,9648),(40001,18),(40001,35),(40001,10749),(40160,28),(40160,53),(40160,878),(40185,18),(40185,10749),(40247,18),(40247,35),(40264,27),(40264,35),(40428,99),(40494,18),(40505,28),(40505,35),(40652,18),(40652,10749),(40658,99),(40658,10769),(40688,16),(40688,35),(40688,10751),(40769,18),(40769,35),(40794,18),(40794,35),(40794,10749),(40805,28),(40805,35),(40805,80),(40807,18),(40807,35),(40862,99),(40880,18),(40880,10769),(40914,28),(40914,53),(40920,18),(40920,10402),(40932,35),(40932,10402),(40963,35),(41009,18),(41009,28),(41009,35),(41009,80),(41110,18),(41110,10749),(41144,18),(41154,28),(41154,35),(41154,878),(41210,18),(41210,35),(41210,10749),(41216,12),(41216,14),(41216,16),(41216,10751),(41233,18),(41233,10749),(41248,18),(41248,10749),(41283,18),(41283,28),(41283,53),(41283,80),(41317,12),(41317,18),(41317,28),(41317,10749),(41382,35),(41402,18),(41402,27),(41402,9648),(41436,27),(41436,53),(41439,27),(41439,80),(41446,27),(41446,9648),(41469,18),(41469,35),(41469,10749),(41479,18),(41479,35),(41488,18),(41488,53),(41508,18),(41508,10752),(41513,12),(41513,14),(41513,16),(41513,35),(41513,10751),(41515,12),(41515,16),(41515,35),(41515,10751),(41630,35),(41630,10749),(41730,18),(41730,35),(41733,18),(41733,35),(41823,18),(41823,10749),(41830,18),(41894,18),(41894,80),(42033,878),(42057,35),(42057,10749),(42109,18),(42109,10749),(42151,18),(42151,28),(42151,35),(42188,18),(42188,878),(42188,10749),(42222,18),(42297,18),(42297,10749),(42345,18),(42345,36),(42497,18),(42497,10749),(42586,18),(42586,35),(42586,53),(42586,10402),(42586,10749),(42618,18),(42618,35),(42618,10402),(42618,10749),(42684,878),(42807,18),(42807,28),(42807,80),(42819,18),(42888,18),(42888,35),(42888,10749),(42889,35),(43074,14),(43074,28),(43074,35),(43090,18),(43090,28),(43090,35),(43090,37),(43213,28),(43213,53),(43213,80),(43266,18),(43306,18),(43306,10749),(43306,10752),(43347,18),(43347,35),(43347,10749),(43418,18),(43418,36),(43418,10752),(43434,18),(43434,36),(43434,53),(43434,80),(43539,18),(43539,53),(43539,80),(43539,10749),(43546,35),(43546,10402),(43593,27),(43593,35),(43595,35),(43610,18),(43630,28),(43630,35),(43630,878),(43653,35),(43743,18),(43743,53),(43743,9648),(43839,18),(43839,10402),(43839,10749),(43867,12),(43867,18),(43867,10749),(43884,12),(43884,18),(43884,28),(43884,10752),(43923,18),(43923,35),(43931,18),(43931,27),(43931,53),(43931,9648),(43933,18),(43933,53),(43933,878),(43935,27),(43935,28),(43935,35),(43935,53),(43935,878),(43935,9648),(43942,99),(43947,27),(43947,53),(43947,80),(43949,18),(43949,10749),(43959,18),(43959,28),(44009,18),(44009,35),(44040,27),(44040,53),(44040,9648),(44048,28),(44048,53),(44092,28),(44092,36),(44113,18),(44115,12),(44115,18),(44115,53),(44147,28),(44147,35),(44214,18),(44214,53),(44260,99),(44264,12),(44264,18),(44264,37),(44413,18),(44413,10769),(44490,18),(44490,35),(44555,18),(44555,35),(44555,53),(44562,35),(44564,18),(44564,35),(44594,18),(44594,35),(44594,10749),(44603,14),(44603,18),(44634,18),(44638,14),(44638,18),(44639,99),(44718,18),(44718,35),(44718,9648),(44754,18),(44770,18),(44770,10749),(44826,12),(44826,18),(44826,10751),(44833,12),(44833,28),(44833,53),(44833,878),(44835,18),(44853,18),(44853,37),(44853,10749),(44857,18),(44857,35),(44857,10749),(44865,18),(44865,28),(44865,36),(44896,12),(44896,16),(44896,35),(44896,37),(44896,10751),(44912,12),(44912,28),(44912,53),(44912,878),(44943,28),(44943,878),(44944,18),(44945,18),(44945,53),(44945,80),(44990,35),(44990,10749),(45054,18),(45132,18),(45132,28),(45132,35),(45138,18),(45138,28),(45138,53),(45138,80),(45138,10769),(45145,35),(45145,10749),(45153,18),(45226,12),(45226,53),(45226,80),(45243,35),(45269,18),(45269,36),(45272,18),(45272,10749),(45317,18),(45324,18),(45324,35),(45324,80),(45380,28),(45380,35),(45610,28),(45610,53),(45610,80),(45612,53),(45612,878),(45612,9648),(45649,14),(45649,18),(45649,27),(45649,35),(45649,9648),(45650,12),(45650,14),(45650,53),(45658,18),(45658,35),(45658,10749),(45767,18),(45767,35),(45767,878),(45767,10751),(45791,18),(45881,18),(45881,10749),(45958,18),(46138,18),(46138,35),(46138,36),(46146,14),(46146,27),(46195,12),(46195,16),(46195,35),(46195,10751),(46252,18),(46256,12),(46256,16),(46256,35),(46256,10751),(46261,14),(46261,27),(46261,53),(46332,18),(46332,36),(46415,35),(46415,10749),(46420,27),(46435,18),(46435,35),(46435,10402),(46503,18),(46503,53),(46503,80),(46503,9648),(46503,10749),(46528,12),(46528,14),(46528,28),(46528,37),(46528,53),(46529,12),(46529,28),(46529,53),(46529,878),(46705,18),(46705,10749),(46727,18),(46727,80),(46727,10749),(46729,14),(46729,18),(46729,35),(46729,878),(46729,10749),(46738,18),(46738,9648),(46738,10752),(46829,18),(46829,35),(46838,27),(46838,35),(46849,18),(46889,18),(46889,35),(46889,10749),(46989,18),(47088,35),(47327,14),(47327,28),(47327,53),(47327,80),(47452,18),(47452,10749),(47452,10769),(47502,18),(47502,35),(47502,80),(47534,12),(47534,18),(47534,28),(47546,99),(47607,18),(47607,35),(47607,10749),(47686,35),(47692,18),(47816,28),(47816,35),(47816,10749),(47889,18),(47889,10749),(47890,12),(47890,53),(47890,9648),(47933,12),(47933,28),(47933,878),(47941,35),(47964,28),(47964,53),(48034,18),(48034,35),(48035,18),(48138,28),(48138,53),(48138,9648),(48171,18),(48171,27),(48171,53),(48217,18),(48217,10749),(48231,18),(48231,53),(48289,18),(48289,53),(48309,18),(48309,27),(48309,53),(48309,80),(48340,28),(48340,53),(48463,12),(48463,27),(48463,35),(48572,27),(48572,28),(48572,53),(48620,18),(48620,28),(48988,35),(49010,28),(49010,35),(49010,53),(49013,12),(49013,16),(49013,35),(49013,10751),(49017,14),(49017,18),(49017,27),(49017,28),(49017,10752),(49018,27),(49018,53),(49020,18),(49020,35),(49020,10749),(49021,12),(49021,28),(49021,53),(49022,18),(49022,35),(49022,10749),(49026,18),(49026,28),(49026,53),(49026,80),(49040,28),(49040,53),(49047,18),(49047,53),(49047,878),(49049,28),(49049,878),(49051,12),(49051,14),(49051,28),(49081,18),(49365,27),(49365,53),(49444,16),(49444,10751),(49471,18),(49478,14),(49478,28),(49478,10751),(49517,18),(49517,53),(49517,9648),(49519,12),(49519,14),(49519,16),(49519,35),(49519,10751),(49520,35),(49521,12),(49521,14),(49521,28),(49521,878),(49524,14),(49524,28),(49524,35),(49524,80),(49526,28),(49526,53),(49526,80),(49527,28),(49527,53),(49527,80),(49529,12),(49529,28),(49529,878),(49530,28),(49530,53),(49530,878),(49538,12),(49538,28),(49538,878),(49730,14),(49730,27),(49730,53),(49787,18),(49787,27),(49787,53),(49852,14),(49852,28),(49852,10751),(49948,16),(49948,10402),(49948,10751),(49950,18),(49950,27),(49950,53),(49951,35),(49953,16),(49953,10751),(49963,18),(49963,35),(49963,10749),(50014,18),(50035,18),(50035,35),(50035,10749),(50037,14),(50037,27),(50037,878),(50135,16),(50135,35),(50135,10751),(50321,12),(50321,16),(50321,10751),(50348,18),(50348,53),(50348,80),(50357,27),(50357,53),(50357,878),(50359,16),(50359,35),(50359,10751),(50456,12),(50456,28),(50456,53),(50497,18),(50497,27),(50497,53),(50538,27),(50538,53),(50538,9648),(50544,35),(50544,10749),(50546,35),(50546,10749),(50601,18),(50601,10752),(50620,12),(50620,14),(50620,18),(50620,10749),(50646,18),(50646,35),(50646,10749),(50647,35),(50698,27),(50698,53),(50725,18),(50725,35),(50725,10749),(50780,18),(50837,18),(50837,53),(50839,18),(50839,53),(50848,18),(50848,35),(50848,10749),(50875,18),(50875,53),(50942,27),(50942,53),(50942,878),(51052,16),(51052,18),(51052,35),(51052,10751),(51130,53),(51130,80),(51130,9648),(51162,16),(51162,10751),(51384,18),(51384,10749),(51497,28),(51497,53),(51497,80),(51540,35),(51540,80),(51588,35),(51820,35),(51828,18),(51828,10749),(51942,16),(51942,18),(51942,35),(51955,28),(51955,35),(51955,53),(51955,878),(51955,10749),(51995,18),(51995,28),(51995,35),(51995,53),(52010,16),(52010,878),(52015,18),(52015,27),(52015,28),(52015,53),(52015,878),(52032,16),(52032,18),(52032,35),(52067,35),(52449,35),(52451,12),(52451,28),(52451,53),(52462,18),(52462,53),(52520,14),(52520,27),(52520,28),(52790,18),(53113,18),(53113,10749),(53182,28),(53182,10752),(53256,18),(53256,35),(53256,10749),(53457,18),(53457,10752),(53502,27),(53502,28),(53502,878),(53862,35),(53862,10749),(53953,27),(54054,28),(54054,35),(54054,80),(54138,12),(54138,28),(54138,878),(54518,99),(54518,10402),(54518,10751),(54580,18),(54702,27),(54702,53),(54702,80),(54897,18),(55123,18),(55123,35),(55180,18),(55180,35),(55301,14),(55301,16),(55301,35),(55301,10402),(55301,10751),(55306,18),(55347,18),(55347,35),(55347,10749),(55420,18),(55420,878),(55465,35),(55561,18),(55561,35),(55567,35),(55567,10402),(55567,10751),(55604,12),(55604,18),(55604,10749),(55616,27),(55720,18),(55721,35),(55721,10749),(55779,27),(55779,9648),(55787,18),(55787,10749),(55831,18),(55831,35),(55831,10749),(55903,18),(55903,53),(55903,80),(55903,10769),(56288,28),(56288,35),(56288,10751),(56292,12),(56292,28),(56292,53),(56491,18),(56491,28),(56491,53),(56601,18),(56601,10751),(56666,18),(56666,10749),(56666,10769),(56715,14),(56715,35),(56715,878),(56930,18),(56930,28),(56930,10749),(57022,18),(57089,16),(57089,35),(57089,10751),(57119,35),(57120,18),(57120,37),(57157,18),(57157,35),(57158,12),(57158,14),(57165,12),(57201,12),(57201,28),(57201,37),(57212,18),(57212,10752),(57214,35),(57214,80),(57294,18),(57294,35),(57294,53),(57431,35),(57612,99),(57800,12),(57800,16),(57800,35),(57800,10751),(57825,18),(57825,35),(57825,10402),(57825,10749),(57876,27),(57876,53),(57876,878),(57943,14),(57943,18),(57943,35),(57943,10749),(58048,12),(58051,18),(58051,35),(58051,10749),(58051,10769),(58151,27),(58151,35),(58224,35),(58224,10751),(58233,12),(58233,28),(58233,35),(58233,53),(58233,80),(58428,27),(58428,53),(58431,27),(58431,35),(58431,53),(58431,10749),(58492,35),(58492,99),(58574,12),(58574,28),(58574,80),(58574,9648),(58595,12),(58595,14),(58595,18),(58626,28),(58626,53),(58680,35),(58680,10749),(58882,18),(58882,36),(59108,28),(59108,35),(59436,14),(59436,35),(59436,10749),(59440,18),(59440,28),(59457,878),(59457,10749),(59678,28),(59678,35),(59678,878),(59728,18),(59859,12),(59859,28),(59859,80),(59860,12),(59860,35),(59860,10749),(59861,18),(59861,35),(59861,10749),(59917,12),(59917,28),(59930,18),(59930,35),(59930,10749),(59961,28),(59961,53),(59962,28),(59962,35),(59962,10749),(59965,28),(59965,53),(59965,9648),(59967,28),(59967,53),(59967,878),(59968,18),(59968,35),(59981,16),(59981,10402),(59981,10751),(60243,18),(60304,14),(60304,27),(60304,28),(60307,35),(60307,10751),(60308,18),(60309,18),(60309,36),(60309,80),(60400,14),(60400,18),(60400,10751),(60420,18),(60420,10749),(60421,18),(60422,18),(60422,35),(60463,10402),(60599,18),(60599,53),(61012,27),(61012,53),(61012,9648),(61038,18),(61038,10751),(61337,18),(61337,35),(61752,35),(61791,18),(61791,28),(61791,53),(61791,878),(61891,18),(61891,36),(61891,53),(61984,878),(62008,18),(62008,35),(62008,10749),(62116,18),(62177,12),(62177,14),(62177,16),(62177,28),(62177,35),(62177,10751),(62204,12),(62204,18),(62206,12),(62206,28),(62206,35),(62211,16),(62211,10751),(62213,14),(62213,35),(62214,16),(62214,35),(62214,10751),(62215,18),(62215,878),(62255,12),(62255,18),(62255,28),(62255,53),(62402,18),(62630,18),(62630,28),(62630,53),(62630,80),(62630,10752),(62676,12),(62676,18),(62676,53),(62677,18),(62677,10402),(62728,18),(62728,53),(62728,80),(62764,12),(62764,14),(62764,18),(62764,35),(62764,878),(62764,10751),(62835,18),(62835,28),(62835,53),(62835,80),(62837,18),(62837,10751),(62838,35),(62838,10749),(63006,18),(63006,28),(63006,80),(63006,10769),(63020,18),(63020,35),(63020,10749),(63287,18),(63492,35),(63492,10749),(63574,35),(63574,10402),(64328,35),(64328,10402),(64328,10751),(64499,18),(64559,35),(64559,53),(64559,80),(64639,18),(64639,53),(64678,18),(64678,10749),(64682,18),(64682,10749),(64685,18),(64686,12),(64686,14),(64686,18),(64686,28),(64688,28),(64688,35),(64688,80),(64689,53),(64689,80),(64690,18),(64690,28),(64690,53),(64690,80),(64720,18),(64720,53),(64807,35),(64973,99),(65055,27),(65055,53),(65057,18),(65057,35),(65086,18),(65086,27),(65086,53),(65203,18),(65203,10402),(65203,10749),(65448,18),(65448,28),(65749,18),(65749,10749),(65749,10769),(65754,18),(65754,53),(65754,80),(65754,9648),(65759,16),(65759,35),(65759,10751),(66025,18),(66125,18),(66125,35),(66125,10751),(66195,35),(66195,53),(66195,80),(66468,18),(66468,53),(66468,80),(66607,28),(66607,35),(66607,10769),(66767,18),(66767,10402),(66942,18),(66942,35),(66942,10749),(67238,53),(67238,10769),(67373,18),(67373,28),(67373,53),(67660,35),(67660,10749),(67675,99),(67675,10402),(67675,10751),(67911,35),(67913,28),(67913,35),(67913,53),(67913,80),(68179,12),(68179,16),(68179,35),(68179,878),(68179,10751),(68202,35),(68202,10749),(68412,18),(68684,27),(68684,35),(68684,878),(68718,18),(68718,37),(68721,12),(68721,28),(68721,878),(68722,18),(68724,18),(68724,28),(68724,53),(68724,878),(68726,12),(68726,28),(68726,878),(68727,18),(68727,53),(68727,80),(68727,9648),(68728,12),(68728,14),(68728,10751),(68734,18),(68734,53),(68735,12),(68735,14),(68735,28),(68737,12),(68737,14),(68812,18),(68812,53),(68812,80),(68818,12),(68818,28),(68818,37),(68924,18),(69270,27),(69382,28),(69382,37),(69640,18),(69640,53),(69640,9648),(69668,18),(69668,53),(69668,9648),(69848,18),(69848,28),(69848,36),(69848,37),(70006,18),(70006,28),(70074,28),(70074,53),(70074,80),(70160,12),(70160,14),(70160,878),(70435,28),(70435,53),(70436,53),(70436,80),(70436,9648),(70478,35),(70670,53),(70670,80),(70687,18),(70687,878),(70829,28),(70829,35),(70829,53),(70868,35),(70868,10749),(70875,99),(70981,12),(70981,878),(70981,9648),(71157,18),(71469,27),(71469,28),(71469,53),(71469,878),(71547,53),(71547,10749),(71552,35),(71676,14),(71676,28),(71676,53),(71679,27),(71679,28),(71679,878),(71688,18),(71688,36),(71805,12),(71805,10751),(71859,18),(71859,53),(71864,14),(71864,18),(71864,35),(71864,10751),(71866,18),(71880,35),(72086,27),(72086,80),(72105,14),(72105,35),(72113,18),(72113,35),(72190,18),(72190,27),(72190,28),(72190,53),(72190,878),(72197,12),(72197,16),(72197,35),(72197,10751),(72207,35),(72213,18),(72331,14),(72331,27),(72331,28),(72358,18),(72358,35),(72359,35),(72387,28),(72387,53),(72387,80),(72431,12),(72431,18),(72431,28),(72431,36),(72431,10752),(72545,12),(72545,28),(72545,878),(72559,12),(72559,28),(72559,53),(72559,878),(72570,18),(72570,10749),(72571,27),(72710,12),(72710,28),(72710,53),(72710,878),(72710,10749),(72766,35),(72766,10749),(72913,18),(72913,36),(72913,10752),(72914,99),(72976,18),(72976,36),(73191,14),(73191,10402),(73191,10751),(73247,35),(73247,10749),(73247,10751),(73511,18),(73511,35),(73532,18),(73532,35),(73567,18),(73567,53),(73567,80),(73873,18),(73935,27),(73935,35),(73935,10749),(73937,35),(73981,99),(74084,10749),(74457,18),(74465,18),(74465,35),(74465,10751),(74510,35),(74510,99),(74534,18),(74534,35),(74536,18),(74536,53),(74536,80),(74643,18),(74643,35),(74643,10749),(74725,27),(74725,53),(74725,80),(74777,27),(74777,53),(74777,9648),(75033,18),(75174,18),(75174,28),(75174,53),(75531,18),(75531,35),(75612,12),(75612,28),(75612,878),(75612,9648),(75638,53),(75656,53),(75656,80),(75674,28),(75674,53),(75674,10752),(75780,18),(75780,53),(75780,80),(75861,18),(75861,10402),(75900,18),(75986,18),(75986,53),(76025,18),(76163,12),(76163,28),(76163,53),(76170,12),(76170,14),(76170,28),(76170,878),(76203,18),(76203,36),(76285,12),(76285,14),(76285,10751),(76338,12),(76338,14),(76338,28),(76341,12),(76341,28),(76341,53),(76341,878),(76349,12),(76349,18),(76349,28),(76349,36),(76349,10752),(76487,27),(76487,53),(76489,35),(76492,14),(76492,16),(76492,35),(76492,10751),(76493,35),(76494,18),(76494,35),(76494,10749),(76617,27),(76617,53),(76640,28),(76640,53),(76640,80),(76649,12),(76649,18),(76649,28),(76649,36),(76649,10749),(76706,35),(76706,10751),(76726,18),(76726,53),(76726,878),(76757,12),(76757,14),(76757,28),(76757,878),(76758,18),(76758,36),(76758,10752),(76996,35),(76996,10749),(77016,18),(77016,53),(77016,80),(77156,27),(77156,28),(77156,53),(77156,878),(77174,12),(77174,16),(77174,35),(77174,10751),(77332,18),(77332,10749),(77459,12),(77459,14),(77459,16),(77459,35),(77459,10751),(77495,53),(77866,18),(77866,28),(77866,53),(77866,80),(77875,35),(77875,10749),(77877,18),(77877,10749),(77883,27),(77883,53),(77930,18),(77930,35),(77931,14),(77931,16),(77931,35),(77931,10751),(77934,18),(77934,10751),(77948,28),(77948,53),(77949,27),(77949,53),(77950,16),(77950,10751),(77951,12),(77951,16),(77951,10751),(77953,35),(77987,18),(77987,53),(77987,80),(78149,35),(78307,18),(78373,18),(78373,35),(78373,10751),(78381,27),(78381,53),(78383,27),(78383,53),(78394,99),(78698,12),(78698,18),(78698,10749),(78705,18),(78705,10769),(78814,18),(78814,53),(78814,80),(78814,10770),(79120,18),(79120,10749),(79161,99),(79316,27),(79587,18),(79587,35),(79694,27),(79694,53),(79698,12),(79698,28),(79698,878),(79698,10749),(79777,18),(79777,10749),(79777,10752),(79940,35),(80035,35),(80215,99),(80271,18),(80271,35),(80271,10749),(80274,12),(80274,28),(80274,878),(80278,18),(80278,53),(80304,35),(80304,37),(80321,16),(80321,10751),(80468,27),(80468,35),(80468,53),(80585,18),(80585,35),(80585,10402),(80585,10749),(81005,14),(81005,28),(81005,10751),(81188,14),(81188,16),(81188,10751),(81220,18),(81390,12),(81390,28),(81390,53),(81390,80),(81796,28),(81796,53),(81796,878),(81836,35),(81836,10749),(82505,27),(82505,53),(82507,27),(82507,53),(82507,9648),(82525,18),(82525,53),(82525,80),(82532,18),(82532,35),(82533,35),(82533,10749),(82631,18),(82650,35),(82650,10751),(82654,27),(82654,35),(82654,10749),(82675,28),(82675,53),(82675,80),(82679,35),(82682,18),(82682,28),(82682,53),(82682,80),(82684,18),(82687,35),(82690,12),(82690,16),(82690,35),(82690,10751),(82693,18),(82693,35),(82693,10749),(82695,18),(82695,10402),(82695,10749),(82696,18),(82696,35),(82696,10749),(82700,12),(82700,28),(82700,878),(82702,12),(82702,14),(82702,16),(82702,28),(82702,35),(82702,10751),(82703,12),(82703,16),(82703,10751),(82990,27),(83542,18),(83542,878),(83588,18),(83666,18),(83666,35),(83666,10749),(83686,18),(83686,53),(83770,12),(83770,18),(83860,18),(84174,35),(84174,10749),(84175,14),(84175,18),(84178,27),(84178,53),(84184,18),(84184,35),(84184,10749),(84188,18),(84188,53),(84188,80),(84197,18),(84200,35),(84204,27),(84204,35),(84204,53),(84204,878),(84318,99),(84329,18),(84329,35),(84329,80),(84329,878),(84332,18),(84332,35),(84332,878),(84332,10749),(84355,18),(84355,35),(84401,99),(84659,18),(84659,35),(84659,10751),(84892,18),(84892,10749),(85350,18),(85446,18),(85446,10402),(85446,10749),(85860,35),(86304,53),(86304,878),(86331,18),(86331,10749),(86549,18),(86812,18),(86812,878),(86812,9648),(86825,18),(86825,27),(86825,53),(86829,18),(86829,10402),(86834,12),(86834,18),(86837,18),(86837,10749),(86838,35),(86838,80),(87093,18),(87101,12),(87101,28),(87101,53),(87101,878),(87421,28),(87421,53),(87421,878),(87428,35),(87499,18),(87499,53),(87502,18),(87567,35),(87729,18),(87729,10749),(87818,35),(87825,18),(87825,10749),(87826,35),(87827,12),(87827,18),(87827,28),(87943,99),(88005,18),(88005,35),(88005,878),(88005,10749),(88036,18),(88036,10402),(88042,35),(88641,18),(88641,35),(88751,12),(88751,28),(88751,35),(88751,878),(88751,10751),(88794,18),(88794,36),(88794,80),(89325,18),(89325,10749),(89492,35),(89540,18),(89540,10769),(89708,18),(89708,99),(89750,99),(89857,35),(89861,35),(90369,18),(90369,10749),(90414,35),(90414,10749),(91070,35),(91076,18),(91122,35),(91122,10749),(91314,12),(91314,28),(91314,878),(91586,27),(91586,53),(91721,18),(92182,27),(92182,9648),(92591,18),(92591,35),(92591,80),(92635,27),(92635,53),(93456,16),(93456,35),(93456,10751),(93856,27),(93856,53),(94072,18),(94329,28),(94329,53),(94329,80),(94348,28),(94348,53),(94348,80),(94348,9648),(94352,14),(94352,10751),(95755,35),(95755,80),(96238,35),(96238,10749),(96399,18),(96399,36),(96534,18),(96534,35),(96534,10749),(96721,18),(96721,28),(96724,18),(96724,10749),(97020,28),(97020,878),(97367,18),(97367,80),(97370,18),(97370,53),(97370,878),(97430,28),(97614,18),(97614,53),(97614,80),(97630,18),(97630,36),(97630,53),(98357,18),(98357,53),(98357,80),(98369,18),(98369,35),(98549,12),(98549,28),(98549,36),(98549,37),(98557,35),(98557,10749),(98566,12),(98566,14),(98566,28),(98566,35),(98566,878),(98568,53),(98568,878),(98568,9648),(99826,18),(99826,35),(99861,12),(99861,28),(99861,878),(100042,35),(100241,27),(100241,53),(100275,27),(100275,35),(100402,12),(100402,28),(100402,878),(100975,18),(100975,35),(101173,18),(101173,53),(101179,27),(101179,53),(101179,9648),(101267,99),(101267,10402),(101299,12),(101299,28),(101299,878),(102362,18),(102362,28),(102362,53),(102362,80),(102382,12),(102382,14),(102382,28),(102651,12),(102651,14),(102651,28),(102651,10749),(102651,10751),(102840,99),(102899,12),(102899,28),(102899,878),(103328,14),(103328,18),(103370,18),(103370,35),(103370,80),(103620,27),(103663,18),(103731,18),(103903,35),(104755,27),(104755,53),(104896,18),(104896,10751),(105864,12),(105864,16),(105864,10751),(106646,18),(106646,35),(106646,80),(106747,28),(106747,53),(106747,80),(106845,27),(106845,878),(107315,27),(107315,53),(107811,35),(107846,28),(107846,53),(107985,28),(107985,35),(107985,878),(108346,18),(108346,10749),(109091,18),(109091,53),(109091,80),(109410,18),(109414,28),(109414,35),(109417,18),(109417,10402),(109418,35),(109421,18),(109421,53),(109421,80),(109424,18),(109424,28),(109424,53),(109428,27),(109431,35),(109431,80),(109443,35),(109445,12),(109445,16),(109445,10751),(109451,16),(109451,35),(109451,10751),(109491,14),(109491,18),(109491,10749),(109513,28),(109513,35),(109513,10749),(109729,18),(109729,53),(110402,18),(110402,878),(110415,18),(110415,28),(110415,878),(110683,12),(110683,18),(111190,18),(111794,35),(111794,10749),(112430,18),(112456,18),(112456,28),(112937,10751),(112949,10749),(113406,18),(113406,35),(113464,18),(113464,36),(113464,10752),(113947,18),(113947,35),(113947,10749),(114065,35),(114065,10402),(114150,35),(114150,10402),(114150,10749),(114635,27),(115210,27),(115872,18),(116149,35),(116149,10751),(116584,18),(116613,18),(116613,28),(116613,80),(116711,12),(116711,14),(116711,16),(116711,10751),(116741,35),(116745,12),(116745,14),(116745,18),(116745,35),(116977,16),(116977,28),(116977,35),(116977,10751),(117251,18),(117251,28),(117251,53),(117263,28),(117263,53),(117942,27),(117942,35),(118340,12),(118340,28),(118340,878),(118452,18),(118612,53),(118612,9648),(118957,27),(118957,28),(118957,53),(119283,28),(119283,80),(119450,18),(119450,28),(119450,53),(119450,878),(119458,53),(119657,18),(119657,80),(120467,18),(120467,35),(121676,53),(121676,10749),(121826,18),(121826,35),(121826,10749),(121986,18),(121986,35),(122081,18),(122081,80),(122906,18),(122906,35),(122906,878),(122917,12),(122917,14),(122917,28),(123553,12),(123553,14),(123553,18),(123553,28),(123553,9648),(123553,10749),(123678,99),(124459,35),(124606,18),(125052,18),(125052,80),(125052,10749),(125123,35),(125123,10749),(125263,18),(125490,27),(125490,878),(125537,35),(125537,10749),(126141,99),(126319,16),(126319,18),(126319,35),(126319,10751),(126509,99),(127493,18),(127493,28),(127493,53),(127493,80),(127560,18),(127560,36),(127585,12),(127585,14),(127585,28),(127585,878),(127867,14),(127867,35),(127867,53),(127918,99),(129139,35),(129139,10749),(129670,12),(129670,18),(130150,18),(131631,12),(131631,53),(131631,878),(131634,12),(131634,28),(131634,878),(132232,27),(132316,18),(132316,10749),(132344,18),(132344,10749),(132363,18),(133575,18),(133575,10749),(133694,18),(133698,35),(133698,10749),(133805,18),(133805,27),(133931,12),(133931,16),(133931,35),(133931,10751),(134371,18),(134371,878),(134371,9648),(134374,28),(134374,53),(134374,80),(134411,18),(134411,53),(134597,27),(134597,53),(135397,12),(135397,28),(135397,53),(135397,878),(135595,18),(135595,53),(136400,28),(136400,35),(136400,80),(136795,28),(136795,35),(136795,80),(136797,18),(136797,28),(136797,53),(136797,80),(136835,53),(136835,80),(137093,35),(137094,18),(137094,28),(137094,53),(137106,12),(137106,14),(137106,16),(137106,35),(137106,10751),(137113,28),(137113,878),(137321,14),(137321,18),(137321,9648),(137321,10749),(137347,18),(137347,35),(138103,12),(138103,28),(138103,53),(138697,18),(138697,35),(138697,10749),(138832,35),(138832,80),(138843,27),(138843,53),(138976,18),(139038,27),(139038,35),(139715,27),(139715,35),(139948,99),(139948,10769),(139998,18),(139998,35),(140300,12),(140300,16),(140300,28),(140300,35),(140300,10751),(140823,18),(140823,35),(140823,36),(142061,16),(142061,28),(142132,35),(144336,18),(144336,28),(144336,53),(144336,80),(144340,18),(144340,35),(144340,10749),(145220,12),(145220,35),(145220,80),(145220,10751),(146198,28),(146198,53),(146203,27),(146203,53),(146216,28),(146216,35),(146216,53),(146216,80),(146227,28),(146227,80),(146233,18),(146233,53),(146233,80),(146238,18),(146238,53),(146238,80),(146239,35),(146269,18),(146304,35),(146631,12),(146631,28),(146631,878),(146882,18),(147441,12),(147441,18),(147441,28),(147767,28),(147767,35),(147773,18),(147773,35),(150202,18),(150202,27),(150202,53),(150211,27),(150211,53),(150540,16),(150540,18),(150540,35),(150540,10751),(150689,14),(150689,18),(150689,10749),(150689,10751),(152532,18),(152532,36),(152599,18),(152599,10749),(152601,18),(152601,878),(152601,10749),(152737,18),(152737,35),(152742,18),(152742,80),(152742,9648),(152742,10749),(152747,12),(152747,18),(152747,28),(152760,18),(152760,28),(152760,36),(152760,10752),(153158,12),(153158,16),(153158,10749),(153397,18),(153397,10749),(153397,10770),(153518,16),(153518,10751),(153795,18),(153795,35),(156022,28),(156022,53),(156022,80),(157058,35),(157185,27),(157293,18),(157293,10402),(157336,12),(157336,18),(157336,878),(157350,12),(157350,28),(157350,878),(157353,18),(157353,53),(157353,878),(157353,9648),(157354,18),(157386,18),(157386,35),(157386,10749),(157422,27),(157544,27),(157544,53),(157547,27),(157841,12),(157841,18),(157841,10751),(157847,18),(157849,53),(157909,18),(157909,53),(158011,53),(158011,80),(158015,27),(158015,53),(158015,878),(158150,35),(158150,10749),(158150,10770),(158752,14),(158752,27),(158852,12),(158852,878),(158852,9648),(158852,10751),(158895,18),(159014,99),(159014,10402),(159037,18),(159037,36),(159037,99),(159770,18),(159824,16),(159824,35),(159824,10751),(160588,18),(160588,35),(161795,18),(161795,10749),(162903,18),(162903,53),(164372,14),(164372,16),(164457,18),(164457,53),(164457,80),(164558,99),(164558,10402),(165864,27),(165864,35),(166424,12),(166424,28),(166424,878),(166624,18),(166624,35),(167073,18),(167073,10749),(168027,35),(168259,28),(168530,28),(168530,35),(168672,18),(168672,80),(168705,12),(168705,14),(168705,27),(168705,28),(169917,18),(169917,53),(169917,80),(169917,9648),(170480,35),(170480,10751),(170687,14),(170687,16),(170687,35),(170687,10751),(171274,18),(171274,35),(171274,80),(171274,9648),(171274,10749),(171424,12),(171424,27),(171424,28),(171424,53),(171759,12),(171759,10751),(172385,12),(172385,16),(172385,35),(172385,10751),(172391,12),(172391,16),(172391,10751),(172533,18),(172533,10749),(173224,35),(173224,10402),(173224,10749),(173931,12),(173931,16),(173931,28),(173931,35),(173931,10751),(174311,18),(174311,35),(174362,99),(174751,18),(174751,28),(174751,37),(175291,18),(175291,35),(175291,80),(175528,35),(175541,18),(175541,10402),(175555,18),(175555,35),(175574,16),(175574,35),(175574,10751),(176077,53),(176124,18),(177572,12),(177572,16),(177572,28),(177572,35),(177572,10751),(177677,12),(177677,28),(177677,53),(178862,99),(179144,18),(179144,35),(180296,35),(180383,99),(181283,53),(181283,80),(181330,35),(181330,99),(181533,12),(181533,14),(181533,35),(181533,10751),(181940,53),(181940,9648),(182291,18),(182873,18),(182873,28),(183894,18),(183894,35),(183894,10749),(184098,35),(184098,10749),(184315,12),(184315,28),(184341,18),(184345,27),(184345,35),(184346,27),(184346,53),(184346,80),(184374,18),(184374,36),(184374,10752),(185008,10749),(185465,18),(185567,18),(185567,53),(185567,80),(186935,18),(186935,80),(187017,28),(187017,35),(187017,80),(188161,35),(188161,37),(188166,53),(188166,80),(188207,12),(188207,28),(188652,14),(188652,35),(188652,10402),(188927,12),(188927,28),(188927,878),(189711,27),(189711,35),(190847,27),(190847,53),(190847,878),(190859,28),(190859,10752),(190955,18),(190955,53),(190955,80),(191714,18),(191714,10749),(192102,18),(192102,28),(192102,53),(192102,80),(192132,18),(192134,18),(192134,35),(192134,80),(192136,18),(192136,36),(192141,28),(192141,53),(192210,18),(192210,28),(192210,53),(192577,16),(192577,878),(193603,27),(193603,53),(193610,35),(193610,10749),(193613,10402),(193722,18),(193722,35),(193756,18),(193756,28),(193756,53),(193756,10752),(193893,35),(194662,18),(194662,35),(195589,35),(196867,18),(196867,35),(196867,10751),(198062,35),(198184,28),(198184,80),(198184,878),(198185,18),(198277,18),(198277,35),(198277,10402),(198277,10749),(198663,28),(198663,53),(198663,878),(198663,9648),(199373,53),(199373,80),(199933,18),(199933,878),(199933,9648),(200505,18),(201088,18),(201088,80),(201088,9648),(201132,12),(201132,18),(201132,99),(202575,12),(202575,14),(202575,16),(202575,10751),(202604,27),(202604,99),(202604,9648),(203801,12),(203801,28),(203801,35),(203833,18),(204082,28),(204082,53),(204922,53),(204922,9648),(205126,28),(205126,878),(205220,18),(205321,27),(205321,10770),(205584,14),(205587,18),(205588,53),(205596,18),(205596,36),(205596,53),(205596,10752),(205775,12),(205775,18),(205775,28),(205775,36),(205775,53),(206197,18),(206197,53),(206197,9648),(206213,28),(206213,35),(206213,53),(206213,878),(206284,18),(206284,10402),(206296,18),(206296,35),(206296,10402),(206296,10749),(206563,12),(206563,18),(206563,53),(206563,80),(206647,12),(206647,28),(206647,80),(207769,27),(207769,53),(208134,35),(208763,12),(208763,14),(208763,53),(208763,9648),(208869,18),(208869,28),(208869,35),(208869,80),(209112,12),(209112,14),(209112,28),(209263,18),(209263,35),(209263,10749),(209274,18),(209403,35),(209451,18),(209451,10402),(210577,18),(210577,53),(210577,9648),(210860,12),(210860,35),(211086,18),(211086,99),(211557,27),(211557,878),(211672,12),(211672,16),(211672,35),(211672,10751),(211954,18),(211954,35),(214756,35),(215211,18),(215211,10749),(215881,53),(215918,18),(215924,18),(215924,35),(216015,18),(216015,53),(216015,10749),(216282,28),(216282,53),(217708,18),(217708,35),(217708,10749),(218043,28),(218043,53),(218043,878),(218500,37),(218778,35),(218778,10751),(220488,35),(220488,10749),(220490,27),(222250,35),(222649,18),(222899,35),(222899,10749),(222935,18),(222935,10749),(222936,18),(222936,35),(222936,10749),(223485,37),(223485,53),(223485,10749),(223702,12),(223702,14),(223702,16),(223702,35),(224141,14),(224141,35),(224141,10402),(224569,28),(224569,35),(224569,53),(224569,80),(225235,18),(225565,35),(225565,10749),(225574,28),(225574,53),(225574,9648),(225886,35),(226354,18),(226354,10751),(226458,27),(226458,53),(226486,35),(226857,18),(226857,10749),(227156,18),(227156,878),(227159,35),(227306,18),(227306,10752),(227348,27),(227348,53),(227707,12),(227707,14),(227707,10751),(227719,53),(227719,878),(227735,18),(227735,10751),(227783,12),(227783,16),(227783,35),(227783,10751),(227973,16),(227975,18),(228066,18),(228066,53),(228066,878),(228150,18),(228150,28),(228150,10752),(228161,14),(228161,16),(228161,35),(228161,878),(228161,10751),(228165,12),(228165,16),(228165,35),(228165,10751),(228194,18),(228203,18),(228205,18),(228205,10749),(228326,12),(228326,14),(228326,16),(228326,35),(228326,10749),(228326,10751),(228550,27),(228967,28),(228967,35),(228970,18),(230266,18),(231576,18),(231576,35),(231617,18),(231617,35),(231617,10749),(231617,10770),(232672,35),(232679,18),(234212,27),(234212,53),(235260,18),(235271,18),(235271,53),(236751,18),(238603,12),(238603,878),(238603,10751),(238615,53),(238615,878),(238615,9648),(238636,27),(238636,53),(239563,35),(239566,18),(239566,10402),(239571,18),(239571,10749),(239573,35),(239678,18),(239678,35),(239897,16),(240832,28),(240832,878),(241239,18),(241239,53),(241239,80),(241251,53),(241254,28),(241254,53),(241257,27),(241257,53),(241257,9648),(241259,14),(241554,18),(241554,28),(241554,53),(241554,80),(241554,9648),(241766,53),(241766,80),(241766,9648),(241771,18),(241771,10749),(242083,18),(242083,35),(242095,53),(242095,878),(242166,28),(242166,53),(242512,27),(242575,18),(242582,18),(242582,53),(242582,80),(243938,35),(243940,27),(243940,53),(244114,28),(244114,80),(244267,18),(244267,878),(244316,27),(244316,28),(244316,53),(244339,28),(244403,18),(244403,35),(244403,10402),(244534,18),(244534,35),(244772,18),(244776,18),(244783,18),(244786,18),(245700,18),(245700,36),(245703,12),(245703,18),(245703,878),(245846,18),(245846,53),(245916,18),(245916,53),(245916,80),(245916,9648),(246403,27),(246403,35),(246449,12),(246449,10751),(246655,878),(248402,18),(248774,35),(248774,10749),(249164,18),(250066,28),(250124,18),(250124,10749),(250184,18),(250184,27),(250184,53),(250349,35),(250546,27),(250902,99),(251321,18),(251471,99),(251979,12),(251979,18),(251979,10749),(252360,12),(252360,14),(252360,18),(252360,28),(252512,18),(252512,35),(252512,9648),(252680,35),(253235,18),(253235,35),(253235,10749),(253253,18),(253261,99),(253290,99),(253306,27),(253306,35),(253306,53),(253331,18),(253412,12),(253412,18),(253450,18),(253450,28),(253450,36),(253626,18),(253626,28),(253626,53),(254024,18),(254024,53),(254128,18),(254128,28),(254128,53),(254470,35),(254470,10402),(254472,27),(254472,35),(254473,18),(254473,28),(254473,80),(254904,28),(254904,53),(254904,80),(255266,35),(255266,10749),(255343,53),(255343,10749),(256040,12),(256040,28),(256040,36),(256040,10752),(256092,28),(256092,35),(256092,80),(256274,27),(256274,53),(256591,18),(256591,35),(256591,80),(256591,10749),(256687,18),(256687,28),(256687,53),(256740,18),(256740,28),(256740,53),(256917,18),(256917,10752),(256924,18),(256924,35),(256924,10402),(256961,28),(256961,35),(256961,10751),(256962,18),(256962,35),(256962,10752),(257087,27),(257088,28),(257088,53),(257088,80),(257091,35),(257211,35),(257344,28),(257344,35),(257344,878),(257445,12),(257445,27),(257445,35),(257932,12),(257932,14),(257932,16),(257932,10751),(258489,12),(258489,28),(258509,12),(258509,16),(258509,35),(258509,10751),(258755,18),(258755,10749),(259693,27),(259694,35),(259694,10749),(259943,18),(260346,28),(260346,53),(260778,35),(260778,10749),(260947,53),(260947,9648),(261023,18),(261023,80),(262500,12),(262500,53),(262500,878),(262504,12),(262504,878),(262543,53),(262543,878),(263503,18),(263503,80),(264644,18),(264644,53),(264656,18),(264656,37),(264660,18),(264660,878),(264999,18),(264999,35),(264999,10402),(265208,18),(265208,53),(265208,80),(266034,18),(266034,53),(266034,80),(266102,18),(266396,18),(266396,28),(266396,80),(266647,12),(266647,14),(266647,10751),(266856,18),(266856,10749),(266857,35),(267860,28),(267860,53),(267860,80),(267935,12),(267935,14),(267935,10751),(268171,35),(268171,10749),(268171,10751),(268238,18),(268238,35),(268917,99),(268917,10402),(268920,28),(268920,35),(268920,80),(269057,18),(269057,878),(269057,10402),(270303,27),(270303,53),(270487,18),(270487,35),(270487,9648),(270554,18),(270554,28),(270554,53),(270554,878),(270938,12),(270938,28),(270946,12),(270946,16),(270946,35),(270946,10751),(271110,12),(271110,28),(271110,878),(271185,18),(271185,53),(271185,9648),(271331,18),(271718,35),(271969,18),(272693,35),(272693,10749),(272724,37),(272726,10751),(272878,12),(272878,18),(272878,10751),(273248,18),(273248,37),(273248,80),(273248,9648),(273481,18),(273481,28),(273481,53),(273481,80),(273481,9648),(273895,18),(273895,36),(273899,18),(274167,35),(274479,18),(274479,35),(274758,99),(274854,12),(274854,14),(274854,28),(276907,53),(276907,80),(277216,18),(277216,10402),(277519,53),(277519,80),(277685,27),(277685,53),(278316,35),(278316,53),(278316,10749),(278348,53),(278927,12),(278927,14),(278927,18),(278927,10751),(280092,18),(280092,27),(280092,53),(280381,27),(280381,53),(280391,12),(280391,16),(280391,35),(280871,18),(280871,36),(281230,18),(281230,36),(281230,10752),(281730,18),(281730,35),(281730,53),(281957,12),(281957,18),(281957,37),(281957,53),(283384,53),(283445,27),(283671,12),(283671,16),(283671,10751),(283686,27),(283686,53),(283708,18),(283708,10752),(284293,18),(284296,18),(284296,35),(284536,18),(284536,53),(284536,80),(285743,27),(285743,10402),(285783,12),(285783,18),(285783,53),(285923,27),(285923,28),(285923,53),(286217,12),(286217,18),(286217,878),(286565,18),(286565,9648),(286565,10749),(286939,27),(286939,35),(286939,53),(287424,27),(287524,27),(287625,18),(287815,99),(287903,14),(287903,27),(287903,35),(287948,28),(287948,53),(287948,80),(288927,18),(288980,18),(289180,18),(289180,53),(289180,878),(290370,878),(290391,27),(290391,53),(290555,27),(290555,28),(290595,12),(290595,18),(290595,28),(290751,18),(290751,80),(290751,9648),(290825,14),(290825,27),(290825,35),(290825,53),(290864,28),(290864,53),(290864,80),(291081,18),(291081,53),(291081,80),(291081,9648),(291270,16),(291270,18),(291270,35),(291270,10749),(291362,35),(291805,12),(291805,28),(291805,35),(291805,53),(291805,80),(291805,9648),(291870,35),(292481,16),(292481,10751),(292483,35),(292539,99),(293644,16),(293644,35),(293646,18),(293646,36),(293660,12),(293660,28),(293660,35),(293670,27),(293670,9648),(293863,14),(293863,18),(293863,10749),(294086,18),(294254,28),(294272,12),(294272,14),(294272,10751),(294512,12),(294512,16),(294512,35),(294512,10751),(294600,18),(294600,35),(295886,18),(295914,18),(295914,28),(295964,18),(296096,18),(296096,10749),(296098,18),(296098,53),(296099,35),(296943,99),(297596,18),(297596,53),(297621,35),(297621,10402),(297621,10749),(297761,12),(297761,14),(297761,28),(297761,80),(297761,878),(298312,27),(298312,53),(298584,27),(299145,18),(299245,27),(299245,53),(299552,28),(299552,53),(299552,10752),(299553,53),(299687,12),(299687,878),(300168,12),(300168,18),(300168,28),(300671,18),(300671,28),(300671,36),(300671,53),(300671,10752),(300673,18),(300673,28),(300673,36),(300673,53),(300706,35),(301325,18),(301325,27),(301325,53),(301325,9648),(301351,18),(301351,10402),(301351,10749),(301365,27),(301365,53),(301748,35),(302156,28),(302579,18),(302688,35),(302688,10749),(302688,10751),(302699,28),(302699,35),(303858,53),(304357,18),(304410,18),(304410,35),(304410,10402),(306667,18),(306667,10751),(306745,18),(306745,10749),(307081,18),(307081,28),(308467,18),(308467,27),(308529,18),(308529,28),(308531,12),(308531,14),(308531,28),(308531,35),(308639,18),(308639,35),(308639,80),(309425,14),(309425,18),(309503,18),(309503,53),(309809,12),(309809,14),(309809,16),(309919,18),(309919,27),(309919,53),(309919,9648),(310131,27),(310131,9648),(310569,18),(310706,18),(310706,80),(310933,27),(312113,18),(312113,28),(312113,80),(312221,18),(312791,27),(312791,53),(312793,35),(312793,878),(313922,27),(313922,53),(313922,80),(314365,18),(314365,36),(314365,53),(314385,18),(314385,10749),(315011,12),(315011,18),(315011,27),(315011,28),(315011,878),(315664,18),(315664,35),(316002,35),(316002,10749),(316152,18),(316152,28),(316152,36),(316152,53),(316152,10752),(316727,27),(316727,28),(316727,53),(317930,28),(317930,35),(318040,18),(318040,10749),(318846,18),(318846,35),(318850,18),(319069,36),(319069,99),(319888,18),(319888,35),(319888,36),(319910,18),(319910,53),(319910,80),(319910,9648),(320146,18),(320146,878),(321258,27),(321258,53),(321258,9648),(321697,18),(321697,36),(321741,18),(322194,28),(322194,53),(322194,9648),(322443,12),(322443,18),(322443,37),(322745,99),(323270,27),(323271,27),(323271,28),(323271,53),(323675,28),(323675,35),(323676,35),(323677,18),(323677,28),(323967,18),(323967,35),(324322,99),(324322,10402),(324352,18),(324352,35),(324352,10749),(324668,28),(324668,53),(325123,27),(325133,35),(325173,28),(325173,80),(325373,18),(325373,10749),(325789,18),(325789,53),(325789,80),(326284,28),(326576,18),(326576,53),(326576,878),(327833,18),(327833,28),(327833,53),(328111,16),(328111,10751),(328387,12),(328387,80),(328387,9648),(328425,53),(328425,9648),(329440,27),(329440,53),(329540,28),(329540,53),(329833,35),(330770,18),(330770,27),(330770,9648),(331190,18),(331190,53),(331190,80),(331592,18),(331592,53),(331592,878),(331745,99),(332285,27),(332411,18),(332411,28),(332411,53),(332411,80),(332567,18),(332567,27),(332567,53),(333348,35),(333348,10751),(333355,12),(333355,14),(333355,16),(333355,28),(333355,878),(333371,18),(333371,53),(333371,878),(334074,53),(334527,18),(334527,53),(334527,80),(334531,18),(335244,99),(335778,28),(335866,27),(335866,878),(336004,28),(336004,53),(336004,80),(339408,18),(339984,18),(340611,18),(340816,35),(340816,10749),(342502,53),(342521,28),(342521,35),(343409,53),(343409,9648),(343795,18),(344466,18),(345003,18),(345911,27),(345911,53),(347126,18),(347548,27),(347548,53),(347548,878),(347755,27),(347755,28),(347755,53),(347764,18),(347764,27),(347764,53),(347764,9648),(347969,35),(347969,37),(351043,18),(351043,27),(351043,53),(351043,9648),(351819,35),(351819,10749),(352978,12),(352978,28),(352978,53),(354110,18),(354110,37),(354624,18),(354624,28),(355629,18),(355629,35),(356216,80),(356483,27),(356483,28),(356483,53),(356841,28),(356841,53),(356841,80),(356987,18),(356987,53),(357441,35),(357441,10751),(357837,18),(357837,10749),(358451,18),(358451,36),(358451,10749),(360188,878),(360339,18),(360339,53),(361159,27),(361159,28),(361398,18),(361398,35),(361398,10402),(361475,18),(361475,10749),(361475,10751),(361505,18),(361505,35),(361505,10749),(362105,27),(362105,35),(362765,35),(362765,53),(362765,9648),(364083,18),(364083,80),(365222,18),(365222,28),(365222,36),(366967,18),(366967,53),(366967,80),(367551,28),(367551,35),(367551,878),(367961,12),(367961,14),(367961,16),(370464,28),(370464,80),(370662,99),(370980,18),(371690,878),(371690,10751),(373314,18),(373314,53),(374461,18),(375290,18),(375290,28),(375290,36),(375290,53),(375950,18),(375950,35),(376004,18),(376004,53),(376004,80),(376010,37),(376659,35),(378200,35),(378200,10749),(378237,18),(378237,28),(378237,80),(379532,10751),(380733,28),(380733,10749),(381902,12),(381902,14),(381902,28),(385383,18),(385383,28),(385636,18),(385636,35),(385736,12),(386826,27),(386826,35),(386826,53),(389425,28),(389425,53),(389425,80),(394047,18),(395766,18),(396152,27),(402515,27),(407887,18),(407887,28),(407887,36),(407887,10752),(408429,18),(417859,12),(417859,14),(417859,16),(417859,28),(417859,10751),(426067,27),(426469,18),(426469,35),(426469,10751),(433715,18),(433715,53),(447027,10751),(459488,99);
/*!40000 ALTER TABLE `movie_genres` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `movie_keywords`
--
DROP TABLE IF EXISTS `movie_keywords`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `movie_keywords` (
`movie_id` int(10) DEFAULT NULL,
`keyword_id` int(10) DEFAULT NULL,
KEY `fk_mk_movie` (`movie_id`),
KEY `fk_mk_keyword` (`keyword_id`),
CONSTRAINT `fk_mk_keyword` FOREIGN KEY (`keyword_id`) REFERENCES `keyword` (`keyword_id`),
CONSTRAINT `fk_mk_movie` FOREIGN KEY (`movie_id`) REFERENCES `movie` (`movie_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `movie_keywords`
--
LOCK TABLES `movie_keywords` WRITE;
/*!40000 ALTER TABLE `movie_keywords` DISABLE KEYS */;
INSERT INTO `movie_keywords` VALUES (5,612),(5,613),(5,616),(5,622),(5,922),(5,2700),(5,12670),(5,160488),(5,187056),(5,198129),(11,803),(11,4270),(11,4271),(11,10013),(11,10016),(11,10527),(11,11107),(11,11195),(11,11196),(11,13194),(11,155336),(11,160134),(11,161176),(11,163295),(11,178710),(11,178712),(12,494),(12,10026),(12,14785),(12,33759),(12,33760),(12,156948),(12,179430),(12,179431),(12,180557),(12,180568),(12,180574),(12,181068),(13,422),(13,458),(13,791),(13,795),(13,818),(13,2956),(13,2957),(13,6054),(13,9673),(13,10235),(13,10624),(13,157499),(13,162365),(13,162934),(13,166980),(13,180204),(13,187844),(13,208143),(13,215492),(14,255),(14,293),(14,596),(14,1599),(14,1862),(14,2201),(14,2249),(14,2389),(14,2483),(14,2559),(14,2918),(14,8201),(14,9957),(14,10123),(14,10532),(14,10683),(14,10776),(14,33611),(14,166123),(14,224279),(14,229299),(16,30),(16,246),(16,279),(16,642),(16,730),(16,1328),(16,1382),(16,1415),(16,1691),(16,1741),(16,2122),(16,2356),(16,2480),(16,2481),(16,2486),(16,2487),(16,2488),(16,2489),(16,2490),(16,2624),(16,3737),(16,4580),(16,6054),(16,9826),(16,10508),(16,11061),(16,13129),(16,14536),(16,15090),(18,402),(18,444),(18,679),(18,1160),(18,2964),(18,3622),(18,3801),(18,4776),(18,6163),(18,9673),(18,9951),(18,10093),(18,10150),(18,10842),(18,10950),(18,11148),(18,11290),(18,14512),(18,161176),(18,162365),(18,164920),(18,169593),(18,172718),(18,223344),(18,229863),(18,234630),(19,312),(19,1001),(19,1436),(19,1761),(19,2346),(19,2964),(19,3223),(19,3640),(19,4034),(19,4565),(19,5966),(19,6662),(19,10012),(19,10125),(19,11222),(19,14544),(19,14796),(19,154802),(19,201028),(19,206472),(19,234109),(19,234110),(20,455),(20,457),(20,3737),(20,4225),(20,5600),(20,7879),(20,10707),(20,187056),(22,911),(22,1318),(22,1319),(22,1321),(22,1459),(22,1860),(22,3266),(22,4062),(22,5600),(22,5744),(22,11086),(22,11087),(22,12988),(22,33457),(22,157186),(22,167861),(22,179430),(22,185200),(22,235625),(22,235626),(24,233),(24,732),(24,779),(24,780),(24,1449),(24,1794),(24,1938),(24,3582),(24,9748),(24,10292),(24,10704),(24,11221),(24,13027),(24,18098),(24,193521),(25,1589),(25,4405),(25,5174),(25,5175),(25,161236),(25,188114),(28,1008),(28,1261),(28,2956),(28,2959),(28,2960),(28,6092),(28,6255),(28,10148),(28,10403),(28,10787),(28,12332),(28,34079),(28,177275),(33,549),(33,798),(33,800),(33,802),(33,6145),(33,9748),(33,157512),(33,159434),(33,160410),(33,209631),(35,494),(35,1889),(35,2181),(35,2184),(35,2205),(35,3700),(35,4931),(35,6305),(35,6832),(35,6898),(35,7464),(35,9673),(35,9880),(35,10041),(35,10061),(35,15174),(35,40922),(35,157303),(35,179431),(35,192544),(38,563),(38,802),(38,931),(38,1453),(38,1566),(38,1604),(38,5625),(38,9673),(38,10937),(38,12400),(38,14534),(38,34265),(38,157171),(38,204374),(38,224279),(55,960),(55,1547),(55,5600),(55,7879),(55,10399),(55,10594),(55,15162),(55,157171),(55,171366),(55,209987),(58,616),(58,663),(58,910),(58,911),(58,1299),(58,1316),(58,1317),(58,1319),(58,1461),(58,3799),(58,5600),(58,12988),(58,157186),(58,179430),(59,642),(59,848),(59,851),(59,1415),(59,1447),(59,1448),(59,1721),(59,2801),(59,6038),(59,10235),(59,10325),(59,10738),(59,10909),(59,11578),(59,14819),(59,18083),(62,305),(62,306),(62,310),(62,312),(62,1576),(62,3222),(62,3714),(62,3801),(62,4040),(62,12185),(62,14626),(62,34152),(62,155689),(62,156039),(65,30),(65,542),(65,704),(65,897),(65,898),(65,899),(65,900),(65,6325),(65,9457),(65,18021),(65,190187),(66,417),(66,441),(66,521),(66,570),(66,833),(66,840),(66,5600),(66,6086),(66,9937),(66,41249),(66,208633),(68,211),(68,318),(68,321),(68,1025),(68,1566),(68,4565),(68,6086),(68,236316),(69,74),(69,378),(69,532),(69,596),(69,727),(69,953),(69,963),(69,6029),(69,6038),(69,9457),(69,207819),(69,208992),(70,396),(70,1252),(70,2660),(70,2792),(70,3737),(70,4327),(70,4613),(70,5212),(70,6075),(70,11322),(70,156330),(70,207999),(71,1682),(71,2684),(71,4112),(71,5215),(71,6278),(71,10551),(73,279),(73,376),(73,378),(73,379),(73,380),(73,570),(73,1755),(73,5301),(73,6496),(73,9890),(73,10873),(73,11105),(73,12670),(73,18035),(73,41509),(73,159950),(73,160910),(73,165583),(73,191726),(73,215876),(74,447),(74,586),(74,3800),(74,4565),(74,5600),(74,12332),(74,14909),(74,207569),(75,83),(75,464),(75,833),(75,839),(75,840),(75,843),(75,1280),(75,1704),(75,1705),(75,2867),(75,3243),(76,811),(76,813),(76,814),(76,815),(76,816),(76,1201),(76,197528),(76,215205),(76,224279),(76,233027),(76,233055),(77,30),(77,328),(77,331),(77,828),(77,1453),(77,2669),(77,3973),(77,9748),(77,11469),(77,33874),(77,187844),(77,207268),(78,310),(78,312),(78,679),(78,801),(78,803),(78,4565),(78,6017),(78,10718),(78,12190),(78,12670),(78,178657),(78,207268),(79,548),(79,1014),(79,6145),(79,54324),(80,90),(80,736),(80,811),(80,814),(80,815),(80,816),(80,817),(80,2038),(80,10818),(83,269),(83,843),(83,3030),(83,4210),(83,5250),(83,5251),(83,10503),(83,15097),(83,155334),(85,83),(85,483),(85,485),(85,486),(85,487),(85,488),(85,1160),(85,1294),(85,1454),(85,1456),(85,2650),(85,2652),(85,2656),(85,2853),(85,2854),(85,2856),(85,6956),(85,9032),(85,11105),(85,41586),(85,176731),(85,184134),(87,483),(87,1454),(87,2860),(87,4062),(87,6956),(87,13006),(87,14819),(87,15149),(87,34117),(87,41586),(87,162767),(87,167106),(87,174465),(87,174468),(87,174469),(87,174472),(87,174476),(87,174480),(87,176731),(87,184134),(89,83),(89,110),(89,113),(89,295),(89,483),(89,494),(89,1294),(89,1454),(89,2652),(89,2847),(89,2901),(89,6956),(89,10685),(89,11102),(89,14656),(89,41586),(89,176731),(89,184134),(90,387),(90,797),(90,1568),(90,3688),(90,5340),(90,6110),(90,6149),(90,6212),(90,8181),(90,12371),(90,12545),(90,12670),(90,14967),(90,15478),(90,15483),(90,157892),(90,163047),(90,167541),(90,172466),(90,178539),(90,178929),(90,188294),(90,188933),(95,83),(95,90),(95,305),(95,843),(95,1423),(95,1430),(95,1432),(95,1826),(95,1872),(95,5600),(95,9882),(95,13027),(95,14626),(95,164889),(95,179431),(95,199076),(95,211487),(96,374),(96,703),(96,1567),(96,1568),(96,3688),(96,4898),(96,5340),(96,6149),(96,8181),(96,9663),(96,10950),(96,12371),(96,12670),(96,14601),(96,14819),(96,15483),(96,18021),(96,155544),(96,163047),(96,167316),(96,193507),(96,226427),(96,226428),(96,226429),(98,588),(98,1394),(98,1395),(98,1399),(98,1405),(98,2280),(98,2831),(98,10141),(98,11221),(98,14704),(98,15300),(98,18543),(98,157499),(98,160840),(98,179780),(98,192230),(98,235791),(98,235792),(98,235793),(100,502),(100,567),(100,1366),(100,4262),(100,4523),(100,7149),(100,9227),(100,9897),(100,10776),(100,11362),(100,11488),(100,15394),(100,15395),(100,15396),(100,18047),(100,167542),(100,207592),(100,227944),(100,227945),(103,422),(103,444),(103,1523),(103,2231),(103,4225),(103,7002),(103,7368),(103,9622),(103,11325),(103,33625),(103,167104),(104,220),(104,585),(104,745),(104,794),(104,795),(104,960),(104,1545),(104,1546),(104,1552),(104,5600),(104,10594),(104,10855),(105,389),(105,830),(105,949),(105,951),(105,952),(105,953),(105,955),(105,999),(105,1436),(105,1743),(105,4379),(105,4776),(105,9104),(105,9789),(105,10125),(105,11860),(105,18425),(105,40850),(105,186189),(105,187376),(105,187710),(105,189449),(105,206687),(105,206715),(105,206720),(105,206735),(105,206736),(105,206737),(105,206738),(106,1291),(106,1297),(106,9951),(106,10333),(106,14915),(106,15248),(106,209714),(107,394),(107,397),(107,398),(107,900),(107,4931),(107,6075),(107,7155),(107,11362),(107,33461),(107,227892),(111,416),(111,417),(111,592),(111,701),(111,947),(111,1155),(111,1578),(111,2150),(111,34117),(111,157223),(114,549),(114,592),(114,995),(114,996),(114,999),(114,1022),(114,1023),(114,6054),(114,12670),(114,207592),(115,418),(115,419),(115,420),(115,422),(115,1337),(115,1541),(115,1786),(115,1930),(115,5498),(115,10776),(115,12670),(115,33626),(115,155291),(115,160846),(115,163045),(115,167556),(115,198673),(115,200646),(115,219881),(116,128),(116,212),(116,213),(116,596),(116,1488),(116,1489),(116,9673),(116,10329),(116,14794),(116,162257),(116,192657),(116,197092),(116,207583),(117,14899),(117,155714),(117,168590),(117,177354),(117,177359),(117,177362),(117,177364),(117,177370),(117,177372),(117,177380),(117,214548),(118,212),(118,494),(118,715),(118,730),(118,818),(118,970),(118,985),(118,987),(118,1158),(118,10508),(120,603),(120,604),(120,606),(120,609),(120,611),(120,818),(120,1262),(120,2407),(120,3098),(120,3347),(120,4587),(120,4959),(120,6464),(120,46951),(120,177912),(120,234213),(121,603),(121,606),(121,609),(121,611),(121,818),(121,1653),(121,1964),(121,4268),(121,6092),(121,10364),(121,10563),(121,33788),(121,177912),(121,189093),(121,234213),(122,603),(122,606),(122,609),(122,818),(122,3301),(122,3930),(122,6091),(122,9812),(122,11173),(122,14707),(122,14819),(122,162846),(122,173700),(122,207372),(122,234213),(128,1721),(128,1994),(128,3787),(128,5274),(128,5275),(128,5276),(128,5277),(128,6054),(128,7376),(128,10842),(128,210024),(129,616),(129,970),(129,2343),(129,2640),(129,3762),(129,3787),(129,4652),(129,4931),(129,5280),(129,6016),(129,13008),(129,155582),(129,196509),(129,207695),(129,210024),(134,530),(134,531),(134,532),(134,727),(134,787),(134,3182),(134,4344),(134,4373),(137,563),(137,901),(137,902),(137,903),(137,904),(137,905),(137,1442),(137,1521),(137,10854),(137,34117),(137,181324),(137,220046),(141,970),(141,3800),(141,4379),(141,5674),(141,7358),(141,10532),(141,10629),(141,11011),(141,13130),(142,237),(142,548),(142,1013),(142,1014),(142,1016),(142,1019),(142,2123),(142,2284),(142,3010),(142,5600),(142,5809),(142,7879),(142,155291),(142,165086),(146,334),(146,779),(146,2063),(146,4575),(146,4809),(146,5293),(146,14604),(146,18432),(149,83),(149,464),(149,467),(149,542),(149,1353),(149,1402),(149,1485),(149,1706),(149,1815),(149,2766),(149,4565),(149,6092),(149,12190),(149,210024),(149,234290),(152,310),(152,504),(152,505),(152,582),(152,1430),(152,1612),(152,155211),(152,155212),(152,161176),(153,213),(153,922),(153,965),(153,1004),(153,1005),(153,1007),(153,1463),(153,1895),(153,3490),(153,6059),(153,179430),(153,187056),(154,504),(154,747),(154,1423),(154,1430),(154,1599),(154,1613),(154,1615),(154,1617),(154,1618),(154,5218),(154,5219),(154,6017),(154,161176),(155,849),(155,853),(155,1308),(155,3151),(155,4426),(155,4630),(155,6969),(155,7002),(155,9537),(155,9715),(155,9717),(155,10044),(155,10291),(155,18023),(155,33518),(155,156395),(155,163074),(155,163455),(155,230775),(161,378),(161,3430),(161,3688),(161,10453),(161,10530),(161,11362),(161,14570),(161,159355),(161,159358),(161,159362),(161,159369),(161,159370),(162,240),(162,699),(162,928),(162,1415),(162,1435),(162,1436),(162,1437),(162,6059),(163,9663),(163,159480),(163,159488),(163,159490),(163,159491),(163,159496),(163,159497),(165,390),(165,391),(165,830),(165,951),(165,952),(165,956),(165,1436),(165,4379),(165,9663),(165,10738),(165,12026),(165,13130),(165,33888),(165,172251),(165,196664),(165,226370),(165,226371),(167,642),(167,1566),(167,3363),(167,5340),(167,9826),(167,9951),(167,11612),(167,13194),(167,14781),(167,14784),(167,15106),(167,156810),(167,180241),(167,184130),(167,199214),(167,202735),(168,83),(168,582),(168,665),(168,4379),(168,4676),(168,5359),(168,155212),(168,161176),(169,1297),(169,1601),(169,1603),(169,12670),(169,14915),(170,212),(170,968),(170,1375),(170,1420),(170,5385),(170,5600),(170,12377),(170,188957),(172,503),(172,505),(172,665),(172,748),(172,963),(172,1430),(172,1562),(172,5362),(172,12388),(172,155211),(172,155212),(172,161176),(173,269),(173,270),(173,339),(173,385),(173,1316),(173,2768),(173,2769),(173,2770),(173,2772),(173,3193),(173,3799),(173,6091),(173,10503),(173,14785),(173,155334),(173,191409),(173,219972),(174,455),(174,503),(174,505),(174,559),(174,665),(174,750),(174,3012),(174,4732),(174,4812),(174,155211),(174,161176),(176,1366),(176,13000),(176,13125),(176,13132),(176,157367),(176,157375),(176,157376),(177,113),(177,960),(177,1014),(177,1313),(177,1335),(177,1660),(177,1873),(177,2045),(177,2486),(177,2796),(177,3305),(177,3446),(177,3600),(177,3741),(177,3754),(177,6059),(177,187554),(179,242),(179,407),(179,409),(179,434),(179,441),(179,836),(179,9748),(179,9826),(179,15053),(179,15155),(179,18525),(179,174375),(180,476),(180,521),(180,2620),(180,2964),(180,3249),(180,4565),(180,9826),(180,207268),(180,236189),(182,220),(182,417),(182,1933),(182,2038),(182,2072),(182,2449),(182,2534),(182,4518),(182,5299),(182,5300),(182,6256),(182,9826),(182,202647),(184,822),(184,1449),(184,2001),(184,6110),(184,6149),(184,14964),(186,441),(186,782),(186,1284),(186,1589),(186,2281),(186,2606),(186,3149),(186,5305),(186,5306),(186,9826),(186,12355),(186,18525),(186,155759),(186,155841),(186,156573),(186,156574),(186,160488),(186,179450),(187,4565),(187,9717),(187,15365),(187,18712),(187,158973),(187,159362),(187,171570),(187,175593),(187,175600),(187,175603),(187,175610),(187,207268),(189,703),(189,4565),(189,7089),(189,9826),(189,9937),(189,15016),(189,18712),(189,178857),(189,207268),(189,209714),(193,10988),(193,34079),(193,162410),(193,162415),(193,162429),(194,90),(194,128),(194,365),(194,366),(194,367),(194,1407),(194,5600),(194,5972),(194,5973),(194,6025),(196,386),(196,387),(196,951),(196,957),(196,999),(196,1436),(196,1544),(196,1582),(196,2284),(196,4379),(196,9503),(196,9663),(196,10125),(196,10322),(196,10511),(196,10950),(196,12371),(196,13008),(196,155573),(196,156234),(197,30),(197,388),(197,930),(197,3754),(197,4097),(197,6987),(197,162845),(197,189433),(199,503),(199,505),(199,522),(199,671),(199,679),(199,680),(199,836),(199,1436),(199,1522),(199,1523),(199,49960),(199,161176),(200,161176),(200,162388),(200,162392),(200,162399),(201,402),(201,441),(201,502),(201,503),(201,505),(201,671),(201,768),(201,803),(201,1399),(201,1430),(201,1475),(201,6110),(201,12388),(201,161176),(203,1944),(203,2236),(203,7879),(203,10594),(203,11436),(205,971),(205,972),(205,973),(205,1550),(205,9826),(205,10089),(205,10877),(205,11872),(205,13069),(205,14624),(205,14819),(205,15053),(205,33617),(205,34079),(207,30),(207,490),(207,496),(207,497),(207,1992),(207,2132),(207,6054),(207,226128),(214,879),(214,2483),(214,3407),(214,157512),(214,157513),(214,157514),(214,157515),(215,483),(215,10714),(217,83),(217,483),(217,1294),(217,1454),(217,1547),(217,2650),(217,4276),(217,4939),(217,5566),(217,5967),(217,6956),(217,9830),(217,18524),(217,41586),(217,176731),(217,184134),(218,83),(218,310),(218,526),(218,679),(218,1366),(218,1373),(218,1381),(218,4565),(218,15483),(218,18069),(218,33556),(218,162484),(219,516),(219,570),(219,657),(219,739),(219,744),(219,1328),(219,1571),(219,1577),(219,5331),(219,6156),(219,14536),(219,34079),(219,162846),(219,212642),(223,660),(223,818),(223,965),(223,1328),(223,1523),(223,3582),(223,8079),(223,9673),(223,9937),(223,11004),(223,14769),(223,17997),(223,34079),(223,155881),(223,188990),(223,195402),(223,228602),(226,570),(226,572),(226,1284),(226,1415),(226,9673),(226,9713),(226,9826),(226,9840),(226,10984),(226,17975),(226,18047),(226,187056),(226,191008),(226,205733),(226,208799),(226,210039),(227,542),(227,6272),(227,10683),(227,10726),(227,14857),(227,223438),(231,139),(231,258),(231,441),(231,539),(231,589),(231,591),(231,592),(231,593),(231,697),(231,1241),(231,1242),(231,1269),(231,5175),(235,818),(235,6054),(235,10683),(235,169875),(235,169878),(235,169885),(235,169886),(235,169887),(235,169895),(235,208349),(235,208611),(235,216919),(238,131),(238,699),(238,1872),(238,4677),(238,10291),(238,10391),(238,10909),(238,11590),(238,33421),(238,165725),(238,166462),(238,207883),(239,520),(239,3581),(239,4048),(239,10391),(239,12090),(239,33624),(239,160395),(239,160396),(239,160397),(239,160400),(239,160404),(239,160406),(240,700),(240,701),(240,1950),(240,4232),(240,6049),(240,9748),(240,10391),(240,10909),(240,11221),(240,156024),(240,158261),(240,187788),(242,131),(242,186),(242,242),(242,441),(242,700),(242,716),(242,717),(242,718),(242,720),(242,5600),(242,10909),(243,520),(243,532),(243,578),(243,633),(243,634),(243,635),(243,637),(243,638),(243,639),(245,212),(245,578),(245,641),(245,897),(245,1338),(245,1412),(245,6054),(245,9457),(248,419),(248,947),(248,9758),(248,14512),(248,33673),(248,157904),(248,162752),(248,165282),(248,214548),(251,417),(251,663),(251,881),(251,975),(251,1553),(251,6155),(251,210530),(252,715),(252,730),(252,818),(252,985),(252,986),(252,987),(252,1158),(252,1382),(252,4344),(252,9457),(252,10508),(253,212),(253,242),(253,258),(253,392),(253,470),(253,798),(253,851),(253,1308),(253,2149),(253,2591),(253,2671),(253,3185),(253,3266),(253,3269),(253,3272),(253,3390),(253,3391),(253,3392),(253,3393),(253,179430),(254,774),(254,776),(254,837),(254,886),(254,887),(254,911),(254,1299),(254,1551),(254,3799),(254,12616),(257,212),(257,516),(257,542),(257,708),(257,714),(257,6272),(257,6783),(257,9727),(257,14819),(257,46958),(257,208349),(261,30),(261,236),(261,531),(261,596),(261,787),(261,894),(261,931),(261,1157),(261,3737),(261,33457),(268,848),(268,849),(268,851),(268,852),(268,853),(268,855),(268,6969),(268,9715),(268,163455),(272,486),(272,779),(272,849),(272,853),(272,1308),(272,1568),(272,1701),(272,1872),(272,3679),(272,6969),(272,7002),(272,9715),(272,9717),(272,9823),(272,10044),(272,10278),(272,10842),(272,14536),(272,163455),(272,173719),(272,179095),(272,187710),(272,206694),(272,206700),(272,206709),(272,206715),(272,206716),(274,818),(274,6259),(274,8087),(274,9937),(274,10714),(274,12565),(274,14895),(274,18525),(274,33872),(274,208048),(277,810),(277,1552),(277,2038),(277,3133),(277,4197),(277,4198),(277,6062),(277,10950),(277,12564),(277,34136),(277,231407),(278,378),(278,417),(278,796),(278,2885),(278,4779),(278,8622),(278,9777),(278,12662),(278,180172),(278,207883),(279,131),(279,1233),(279,2199),(279,2276),(279,4048),(279,5809),(279,9649),(279,9826),(279,18267),(279,155624),(279,160279),(280,679),(280,1366),(280,4458),(280,4565),(280,11426),(280,11857),(280,14819),(280,14946),(280,160131),(280,160381),(280,162532),(280,175468),(280,175472),(284,242),(284,613),(284,725),(284,965),(284,1252),(284,1438),(284,1439),(284,1440),(284,1441),(284,1442),(284,1443),(284,1487),(284,9799),(284,34094),(285,270),(285,726),(285,911),(285,1319),(285,2038),(285,2052),(285,2580),(285,2660),(285,3799),(285,5740),(285,5941),(285,6155),(285,6211),(285,12988),(285,157186),(285,179430),(288,75),(288,797),(288,5572),(288,11011),(288,11207),(288,14643),(288,15108),(288,18522),(288,166552),(288,174244),(288,188907),(289,128),(289,417),(289,470),(289,836),(289,1623),(289,1625),(289,1626),(289,1627),(289,1628),(289,1631),(289,2652),(289,6091),(289,10644),(289,195402),(291,270),(291,387),(291,658),(291,966),(291,1524),(291,1668),(291,1669),(291,1670),(291,1671),(291,1672),(291,2006),(292,577),(292,898),(292,1515),(292,1516),(292,1517),(292,1673),(292,1674),(296,83),(296,310),(296,312),(296,679),(296,1373),(296,1381),(296,2650),(296,2651),(296,2732),(296,2733),(296,2735),(296,2736),(296,4565),(296,15106),(297,314),(297,699),(297,978),(297,2407),(297,3684),(297,10791),(297,10855),(297,13005),(297,33626),(298,585),(298,9727),(298,9748),(298,10051),(298,14570),(298,159772),(298,159783),(302,212),(302,293),(302,515),(302,548),(302,818),(302,1552),(302,1649),(302,1655),(302,1731),(302,1732),(302,2200),(302,3737),(302,5600),(302,8181),(302,9826),(302,9937),(302,10818),(302,14964),(306,703),(306,1568),(306,3016),(306,4230),(306,5340),(306,6110),(306,9663),(306,10084),(306,10889),(306,10950),(306,11719),(306,12371),(306,12670),(306,14601),(306,14819),(306,14967),(306,15124),(306,15483),(306,41249),(306,155582),(306,156768),(306,163047),(306,167541),(309,236),(309,494),(309,516),(309,739),(309,894),(309,970),(309,1328),(309,1421),(309,1608),(309,1611),(309,1655),(309,5600),(309,12996),(309,18187),(309,156181),(309,208349),(310,186),(310,305),(310,457),(310,488),(310,542),(310,725),(310,917),(310,1605),(310,6150),(310,6157),(310,9649),(310,9844),(311,314),(311,417),(311,542),(311,570),(311,625),(311,725),(311,739),(311,975),(311,1632),(314,418),(314,572),(314,849),(314,3258),(314,4411),(314,6496),(314,10843),(314,11322),(314,11738),(314,18933),(314,180734),(314,236969),(319,494),(319,887),(319,1666),(319,1872),(319,2150),(319,9673),(319,10391),(319,12670),(319,14964),(319,33625),(319,163656),(320,703),(320,718),(320,1812),(320,1849),(320,1936),(320,3879),(320,9673),(320,9826),(320,12670),(320,13130),(320,207268),(321,237),(321,494),(321,572),(321,700),(321,725),(321,924),(321,1329),(321,1605),(321,1862),(321,2554),(321,10181),(321,10198),(321,18035),(321,156195),(321,158718),(321,192519),(322,516),(322,739),(322,1452),(322,1522),(322,1660),(322,1679),(322,1680),(322,1682),(322,11445),(322,208349),(326,1585),(326,9937),(326,18525),(326,34079),(326,158130),(326,158153),(326,179431),(326,195435),(326,197487),(326,231621),(327,380),(327,441),(327,1463),(327,1601),(327,1794),(327,1796),(327,1797),(327,2231),(327,9016),(327,12670),(329,911),(329,1718),(329,1719),(329,1720),(329,1764),(329,1765),(329,1767),(329,2041),(329,12616),(329,155582),(329,158340),(329,178010),(330,911),(330,1718),(330,1719),(330,1720),(330,1766),(330,1768),(330,12616),(330,178010),(330,223059),(331,911),(331,1718),(331,1719),(331,1720),(331,1766),(331,1770),(331,3800),(331,10084),(331,10364),(331,12616),(331,178010),(332,1683),(334,455),(334,802),(334,970),(334,1252),(334,1412),(334,1872),(334,3737),(334,3817),(334,5561),(334,5600),(334,6059),(334,163976),(335,797),(335,800),(335,801),(335,963),(335,1647),(335,1936),(335,2089),(335,2095),(335,2096),(335,3737),(335,4402),(335,6255),(335,156212),(338,211),(338,292),(338,318),(338,732),(338,936),(338,1157),(338,1627),(338,1772),(338,1773),(338,1774),(338,1872),(338,3461),(338,9457),(338,13091),(338,229388),(342,65),(342,237),(342,255),(342,271),(342,566),(342,572),(342,725),(342,826),(342,1862),(342,1888),(342,1889),(342,1890),(342,1891),(342,5767),(342,6054),(342,6075),(342,9986),(342,10791),(342,13088),(342,14751),(342,158718),(345,314),(345,459),(345,460),(345,826),(345,1441),(345,1664),(345,1817),(345,2404),(345,10776),(345,33625),(346,233),(346,1462),(346,4402),(346,4631),(346,5329),(346,5330),(346,5331),(346,11426),(346,14643),(346,33558),(346,208244),(348,803),(348,1825),(348,1826),(348,1828),(348,1829),(348,4565),(348,6016),(348,7956),(348,9831),(348,9882),(348,9951),(348,11322),(348,12405),(348,157634),(348,181034),(348,226177),(350,90),(350,736),(350,917),(350,1854),(350,3486),(350,3487),(350,3488),(350,3489),(350,4222),(364,65),(364,417),(364,848),(364,849),(364,853),(364,3298),(364,5570),(364,6969),(364,7002),(364,9715),(364,14819),(364,15002),(364,15481),(364,163074),(364,163455),(364,173861),(364,173866),(364,173867),(364,214644),(377,1468),(377,2116),(377,3030),(377,6152),(377,12339),(377,13130),(377,18029),(377,33457),(377,157418),(377,163841),(377,170383),(377,171814),(377,225209),(380,30),(380,791),(380,1646),(380,1872),(380,1873),(380,1874),(380,1906),(380,9935),(380,11428),(380,15106),(380,179431),(380,214965),(387,321),(387,339),(387,818),(387,1913),(387,1915),(387,1956),(387,4263),(387,5299),(387,6791),(387,15111),(387,41599),(387,155499),(387,156217),(387,180178),(387,200223),(387,226473),(387,226474),(387,226475),(387,226476),(387,228491),(388,1929),(388,1930),(388,1933),(388,1937),(388,1954),(388,3012),(388,10051),(388,33672),(389,934),(389,1417),(389,2118),(389,2122),(389,2123),(389,2124),(389,2142),(389,3012),(389,3772),(389,6040),(389,6069),(389,6139),(389,6148),(389,33519),(391,2987),(391,4942),(391,5332),(391,6062),(391,156212),(392,715),(392,1919),(392,1924),(392,9457),(392,10707),(393,380),(393,1400),(393,1908),(393,2784),(393,3927),(393,5600),(393,6145),(393,9457),(393,179430),(393,179431),(395,83),(395,1297),(395,1378),(395,1826),(395,1949),(395,6049),(395,9951),(395,226177),(398,237),(398,476),(398,818),(398,917),(398,1284),(398,1566),(398,1948),(398,2132),(398,3737),(398,5565),(400,494),(400,801),(400,1422),(400,1587),(400,1909),(400,1977),(400,2022),(400,2340),(400,2708),(400,6054),(400,6259),(400,9748),(400,9826),(400,10183),(400,10391),(400,10738),(400,11221),(400,13142),(400,14819),(400,33625),(400,34094),(401,586),(401,856),(401,936),(401,996),(401,1740),(401,1941),(401,1942),(401,1944),(401,1945),(401,1947),(401,2467),(401,6059),(401,9457),(401,10776),(401,12670),(401,15106),(401,158741),(403,30),(403,577),(403,2072),(403,2076),(403,4129),(403,10144),(403,11508),(403,12532),(403,33885),(403,211660),(404,380),(404,787),(404,2024),(404,2026),(404,2029),(404,5565),(404,9672),(404,10183),(404,10235),(404,18035),(404,167043),(408,351),(408,616),(408,1412),(408,1647),(408,2011),(408,2013),(408,3737),(408,3758),(408,7376),(408,166625),(408,169341),(409,487),(409,1160),(409,1284),(409,1453),(409,1956),(409,1959),(409,1961),(409,1963),(409,1964),(409,1965),(409,1966),(409,1967),(409,1968),(409,1969),(409,1971),(409,1972),(409,2050),(409,2051),(409,2052),(409,2053),(409,3800),(409,7879),(411,83),(411,616),(411,818),(411,1155),(411,1430),(411,1442),(411,1990),(411,2042),(411,2043),(411,6187),(411,14643),(411,166930),(411,170362),(411,179431),(414,483),(414,849),(414,3259),(414,6969),(414,9104),(414,9715),(414,10486),(414,10525),(414,11268),(414,14819),(414,15009),(414,33518),(414,33626),(414,33981),(414,34156),(414,156116),(414,157166),(414,157583),(414,163455),(414,170383),(414,170652),(415,848),(415,849),(415,851),(415,853),(415,855),(415,6969),(415,9715),(415,10452),(415,163455),(421,270),(421,886),(421,936),(421,2045),(421,2159),(421,3799),(423,30),(423,836),(423,1224),(423,1327),(423,1465),(423,1468),(423,1899),(423,1956),(423,1968),(423,2156),(423,2428),(423,2430),(423,2431),(423,2433),(423,2434),(423,2435),(423,2436),(423,2652),(423,5565),(423,5783),(423,11102),(423,14743),(424,1382),(424,1631),(424,1701),(424,1739),(424,1956),(424,2652),(424,3599),(424,5565),(424,194409),(425,311),(425,970),(425,990),(425,1445),(425,1452),(425,2078),(425,2079),(425,3737),(425,4428),(425,10506),(425,158017),(425,159955),(425,166958),(425,178645),(425,183414),(425,192918),(429,801),(429,972),(429,1321),(429,2095),(429,2125),(429,2708),(429,6092),(429,9503),(429,10950),(429,11426),(429,156212),(431,483),(431,1646),(431,2147),(431,2158),(431,2846),(431,2847),(431,6009),(431,9826),(431,10685),(431,14819),(431,191494),(431,206850),(433,212),(433,246),(433,970),(433,974),(433,1155),(433,1505),(433,2246),(433,2341),(433,2342),(433,2343),(433,2344),(433,4344),(433,209220),(435,83),(435,295),(435,843),(435,2210),(435,2212),(435,2213),(435,2214),(435,2215),(435,2216),(435,2218),(435,2219),(435,2220),(435,2221),(435,2222),(435,2223),(435,2224),(435,2225),(435,2226),(435,2227),(435,3693),(435,6086),(435,10794),(435,12670),(435,14760),(435,34161),(435,157160),(435,199076),(436,30),(436,242),(436,704),(436,2148),(436,2149),(436,2150),(436,2151),(436,2173),(436,2174),(436,3800),(436,3930),(436,10508),(436,13149),(436,155023),(440,1297),(440,5387),(440,9410),(440,9951),(440,10326),(440,163386),(440,163392),(440,163395),(440,226177),(451,30),(451,549),(451,567),(451,585),(451,699),(451,725),(451,887),(451,888),(451,922),(451,3737),(451,3927),(451,6059),(451,7464),(451,12670),(451,15237),(451,155793),(453,30),(453,222),(453,1700),(453,2038),(453,2051),(453,2303),(453,2304),(453,2305),(453,2307),(453,2309),(453,2461),(453,2462),(453,6009),(453,6262),(454,497),(454,3691),(454,163656),(454,165086),(454,165214),(454,188237),(454,188404),(454,196374),(454,208052),(455,212),(455,941),(455,958),(455,1463),(455,1900),(455,2273),(455,2274),(455,2278),(455,13042),(455,18035),(455,187056),(462,5565),(462,9672),(462,14768),(462,163212),(462,196407),(464,30),(464,240),(464,791),(464,936),(464,1192),(464,1499),(464,1660),(464,1786),(464,1872),(464,2317),(464,2318),(464,2320),(464,2409),(464,2410),(464,3737),(464,5331),(464,6027),(464,6029),(464,7879),(468,30),(468,237),(468,494),(468,588),(468,642),(468,1454),(468,1896),(468,2150),(468,2200),(468,2347),(468,2348),(468,2349),(468,2350),(468,2352),(468,2353),(468,13059),(468,15135),(468,33841),(468,158718),(468,167043),(470,314),(470,741),(470,1252),(470,1333),(470,1465),(470,1591),(470,1647),(470,3927),(470,9844),(473,2157),(473,2303),(473,2358),(473,2359),(473,2362),(473,2390),(473,6009),(473,6255),(473,6257),(479,417),(479,577),(479,700),(479,1155),(479,2231),(479,9748),(479,9826),(479,14819),(479,14964),(479,15090),(479,160910),(480,516),(480,596),(480,2692),(480,10540),(480,13027),(480,187056),(480,220451),(480,220453),(489,1480),(489,1680),(489,1992),(489,2462),(489,2463),(489,3734),(489,6009),(489,6257),(489,9673),(489,9713),(489,10756),(489,11018),(489,11268),(489,13160),(489,33519),(489,187844),(489,228041),(492,30),(492,108),(492,566),(492,616),(492,1284),(492,2117),(492,2547),(492,2551),(492,2552),(492,2553),(492,2585),(492,2586),(492,2587),(492,2588),(492,2589),(492,3255),(492,7879),(496,255),(496,279),(496,387),(496,549),(496,736),(496,1019),(496,2475),(496,2477),(496,2479),(496,6268),(496,10144),(496,10468),(496,11800),(496,12193),(496,179430),(496,179431),(497,531),(497,577),(497,791),(497,818),(497,2499),(497,2501),(497,2881),(497,5571),(497,9774),(497,11263),(497,156597),(497,167696),(497,180162),(497,214548),(500,2052),(500,6099),(500,6259),(500,9727),(500,10051),(500,10085),(500,10092),(500,10685),(500,10726),(500,11071),(500,157892),(500,159753),(500,170313),(500,171826),(500,177438),(500,201058),(500,207784),(500,224552),(500,233069),(500,233072),(500,233073),(503,613),(503,657),(503,793),(503,843),(503,1872),(503,1913),(503,2283),(503,2488),(503,2580),(503,2581),(503,2583),(503,3799),(503,5600),(503,9457),(503,10685),(503,155530),(504,293),(504,549),(504,570),(504,739),(504,1333),(504,2122),(504,2669),(504,3489),(504,9672),(504,9826),(504,10085),(504,10714),(504,12987),(504,13059),(504,34265),(504,41329),(504,187056),(504,233021),(507,90),(507,549),(507,642),(507,726),(507,740),(507,974),(507,1416),(507,1562),(507,1759),(507,1930),(507,1953),(507,2375),(507,2492),(507,2671),(507,6054),(507,9826),(507,10183),(507,13132),(507,14819),(507,14964),(507,15363),(507,33625),(507,160488),(508,212),(508,255),(508,293),(508,699),(508,840),(508,916),(508,1438),(508,1441),(508,1459),(508,2182),(508,2562),(508,2568),(508,2569),(508,2570),(508,2571),(508,2573),(508,5597),(508,7358),(508,171366),(509,212),(509,817),(509,1421),(509,1605),(509,2559),(509,2560),(509,2562),(509,2564),(509,2565),(509,2566),(509,6054),(509,10232),(509,33648),(509,162262),(509,184989),(510,30),(510,526),(510,1824),(510,2564),(510,2574),(510,3737),(510,3927),(510,6089),(510,6255),(510,6334),(510,15106),(512,213),(512,549),(512,736),(512,793),(512,918),(512,2343),(512,2591),(512,2594),(512,2596),(512,2619),(512,2623),(512,3739),(512,5340),(512,5600),(512,6031),(512,6155),(512,8181),(512,9826),(512,10329),(512,14638),(512,158431),(522,30),(522,444),(522,571),(522,663),(522,774),(522,886),(522,887),(522,1950),(522,2559),(522,2792),(522,2793),(522,2794),(522,6562),(522,10338),(522,10732),(522,12670),(522,18179),(522,155167),(522,162687),(522,173594),(522,180193),(522,207716),(522,232471),(524,383),(524,726),(524,1228),(524,2635),(524,33625),(525,246),(525,378),(525,520),(525,727),(525,745),(525,1416),(525,1926),(525,2636),(525,2652),(525,6027),(525,6029),(525,6031),(525,6272),(525,6490),(525,6783),(525,11313),(525,14765),(525,15211),(525,15232),(525,15483),(525,41591),(525,156336),(525,167213),(525,226464),(525,226465),(526,305),(526,345),(526,1400),(526,2637),(526,2638),(526,2639),(526,2640),(526,2642),(526,9727),(533,271),(533,2105),(533,6401),(533,10121),(533,10336),(533,11836),(533,15162),(533,15199),(533,185424),(533,185425),(533,210009),(534,83),(534,310),(534,530),(534,582),(534,679),(534,1373),(534,1420),(534,4458),(534,4565),(534,6092),(534,6112),(534,11159),(534,12670),(535,246),(535,1691),(535,6735),(535,165445),(539,612),(539,1443),(539,1859),(539,1879),(539,2217),(539,2669),(539,10594),(539,11677),(539,13092),(539,13112),(539,14604),(539,155790),(539,233450),(540,1862),(540,10185),(540,10768),(540,11322),(540,11524),(540,13000),(540,158718),(540,158747),(540,158748),(540,158750),(540,158752),(540,158753),(540,158758),(540,158761),(540,158763),(540,158764),(540,158765),(540,187056),(540,193285),(542,1786),(542,2149),(542,2151),(542,2697),(542,2698),(542,10093),(542,13149),(542,161207),(542,209987),(544,3262),(544,6844),(544,9799),(544,11223),(544,15027),(544,155457),(544,158502),(544,158505),(544,158507),(544,194413),(546,30),(546,237),(546,242),(546,279),(546,440),(546,494),(546,566),(546,571),(546,708),(546,739),(546,828),(546,970),(546,1803),(546,2150),(546,2316),(546,2348),(546,2547),(546,2669),(546,2726),(546,2727),(546,7312),(546,10183),(546,12670),(546,17975),(546,162842),(546,206977),(547,128),(547,242),(547,680),(547,1534),(547,2246),(547,2284),(547,2673),(547,2749),(547,2751),(547,2752),(547,2753),(547,2754),(547,2755),(547,5809),(547,6711),(547,9935),(547,10707),(547,18165),(547,18330),(549,242),(549,572),(549,726),(549,960),(549,1605),(549,1803),(549,2635),(549,2815),(549,2816),(549,2818),(549,2819),(549,6054),(549,10183),(549,14964),(549,33648),(550,825),(550,851),(550,1541),(550,3927),(550,4142),(550,4565),(550,14819),(557,1014),(557,3986),(557,4543),(557,5812),(557,6062),(557,8828),(557,9715),(557,11794),(557,156075),(557,169887),(557,189094),(558,851),(558,2038),(558,5983),(558,8828),(558,9663),(558,9715),(558,13005),(558,14760),(558,14991),(558,34079),(558,163074),(559,851),(559,1453),(559,1965),(559,2038),(559,3446),(559,3986),(559,4391),(559,4959),(559,5776),(559,5789),(559,5857),(559,6062),(559,8828),(559,9663),(559,9715),(559,9748),(562,720),(562,736),(562,818),(562,949),(562,1418),(562,1441),(562,1470),(562,1562),(562,1930),(562,1953),(562,5572),(562,9826),(562,10051),(562,10950),(562,12670),(562,13116),(562,14601),(562,14819),(562,18525),(562,33553),(562,33965),(562,162304),(562,162914),(562,219404),(563,305),(563,1423),(563,1826),(563,2051),(563,2900),(563,2902),(563,4565),(563,6092),(563,8201),(563,9831),(563,13065),(563,161247),(563,162365),(568,305),(568,1196),(568,1432),(568,2345),(568,4776),(568,9609),(568,9672),(568,9882),(568,10084),(568,10349),(568,10617),(568,14601),(568,14626),(568,156395),(568,184994),(568,189098),(568,193479),(568,226233),(568,226234),(568,226235),(568,226236),(573,212),(573,570),(573,6149),(573,9937),(573,10714),(576,240),(576,642),(576,801),(576,1556),(576,2940),(576,6054),(576,9812),(576,10726),(576,10950),(576,13065),(576,163671),(576,189262),(577,596),(577,1442),(577,1523),(577,2136),(577,6018),(577,208477),(578,1495),(578,1913),(578,2069),(578,2580),(578,2993),(578,2996),(578,3737),(578,11280),(578,15097),(578,15098),(578,223059),(579,1919),(579,2041),(579,2993),(579,3180),(579,3735),(579,3737),(579,4210),(579,5156),(579,5160),(579,9663),(579,10084),(579,13130),(579,15097),(579,15098),(579,158297),(579,204009),(580,2988),(580,3345),(580,3737),(580,5160),(580,9663),(580,9748),(580,14785),(580,15097),(580,15098),(580,158130),(580,167861),(580,207317),(580,227106),(581,548),(581,818),(581,1252),(581,1463),(581,1465),(581,1806),(581,2297),(581,2568),(581,2796),(581,2911),(581,2912),(581,2914),(581,6059),(581,6089),(581,10322),(581,207928),(581,208780),(582,74),(582,220),(582,236),(582,292),(582,417),(582,1772),(582,1776),(582,1936),(582,2106),(582,2111),(582,2483),(582,2903),(582,2930),(582,2935),(582,2936),(582,5265),(582,6022),(582,6086),(582,15271),(582,18420),(582,18457),(582,34265),(582,156026),(582,173644),(582,206304),(584,416),(584,830),(584,999),(584,12670),(584,33885),(584,159953),(585,1299),(585,3256),(585,6107),(585,6129),(585,9823),(585,12011),(585,12392),(585,13124),(585,167106),(585,204006),(585,225061),(586,521),(586,570),(586,591),(586,840),(586,1543),(586,2419),(586,2559),(586,2941),(586,2943),(586,2944),(586,2946),(586,2952),(586,2953),(586,2954),(586,6085),(586,6086),(586,6091),(586,13065),(586,34094),(587,291),(587,494),(587,616),(587,1357),(587,1495),(587,2038),(587,2517),(587,3206),(587,4073),(587,4120),(587,5938),(587,10163),(587,14534),(587,14751),(587,156192),(588,1299),(588,2784),(588,2871),(588,3002),(588,3032),(588,3762),(588,4426),(588,6152),(588,9748),(588,9887),(588,10292),(588,10349),(588,10842),(588,11221),(588,12446),(588,13006),(588,13031),(588,14819),(588,15001),(588,40929),(588,41645),(588,157444),(588,161264),(588,166701),(588,179878),(590,212),(590,236),(590,237),(590,496),(590,740),(590,793),(590,894),(590,1526),(590,1587),(590,1824),(590,2065),(590,2132),(590,2386),(590,2755),(590,2783),(590,2875),(590,2981),(590,2982),(590,6262),(591,90),(591,113),(591,186),(591,345),(591,818),(591,1222),(591,2908),(591,2966),(591,2969),(591,2970),(591,2975),(591,2976),(591,2978),(591,4008),(591,10410),(591,11855),(591,156081),(591,161207),(591,161507),(591,161508),(591,163531),(591,173162),(592,582),(592,2340),(592,2380),(592,2980),(592,4918),(593,1228),(593,1565),(593,1603),(593,2117),(593,2808),(593,3298),(593,3801),(593,14626),(593,157938),(594,242),(594,822),(594,1459),(594,1638),(594,1846),(594,2080),(594,2173),(594,2568),(594,3013),(594,3014),(594,3015),(594,3016),(594,3017),(594,3018),(594,3019),(594,3022),(594,3023),(594,6054),(595,577),(595,818),(595,1155),(595,1412),(595,1533),(595,1679),(595,1952),(595,2005),(595,2325),(595,3009),(595,3010),(595,3011),(595,3012),(595,6094),(595,6145),(595,6148),(595,208349),(597,2580),(597,2984),(597,3799),(597,4210),(597,4388),(597,4953),(597,6917),(597,7579),(597,9673),(597,10617),(597,10703),(597,14514),(597,156395),(597,165086),(597,182615),(597,182621),(597,182625),(597,209714),(597,210184),(598,255),(598,542),(598,983),(598,1003),(598,1228),(598,1525),(598,2394),(598,2987),(598,10683),(598,187056),(598,208289),(601,455),(601,1007),(601,1432),(601,1603),(601,1604),(601,1826),(601,1872),(601,2430),(601,3197),(601,3243),(601,3246),(601,3335),(601,4527),(601,5958),(601,9457),(602,1612),(602,1627),(602,1825),(602,4097),(602,4278),(602,6091),(602,9738),(602,9739),(602,9831),(602,9951),(602,14643),(603,83),(603,310),(603,312),(603,490),(603,530),(603,779),(603,1430),(603,1721),(603,3074),(603,4563),(603,4565),(603,6256),(603,12190),(603,187056),(603,194063),(603,221385),(604,83),(604,310),(604,312),(604,779),(604,780),(604,1001),(604,1566),(604,1701),(604,1721),(604,2812),(604,2849),(604,2964),(604,3217),(604,3219),(604,3221),(604,3737),(604,4563),(604,4565),(604,6104),(604,6150),(604,6193),(604,6256),(604,10364),(604,12190),(604,187056),(604,221385),(605,83),(605,310),(605,312),(605,334),(605,490),(605,663),(605,780),(605,1001),(605,1373),(605,1530),(605,1552),(605,1566),(605,1670),(605,1701),(605,1721),(605,2725),(605,2812),(605,2849),(605,2964),(605,3219),(605,3222),(605,3223),(605,3225),(605,3737),(605,4563),(605,4565),(605,6104),(605,6150),(605,6193),(605,6256),(605,10084),(605,10364),(605,12190),(605,187056),(605,220232),(605,221385),(606,246),(606,477),(606,509),(606,657),(606,1227),(606,1461),(606,2043),(606,2406),(606,2407),(606,2968),(606,2983),(606,3009),(606,3136),(606,3510),(606,3512),(606,3513),(606,3515),(606,3800),(606,4317),(606,4414),(606,5160),(606,6054),(606,6628),(607,1308),(607,1381),(607,1568),(607,1826),(607,2173),(607,2428),(607,2547),(607,3240),(607,3242),(607,3243),(607,4751),(607,9951),(607,174915),(608,83),(608,1308),(608,1381),(608,1568),(608,1826),(608,2173),(608,2428),(608,2547),(608,3243),(608,3760),(608,6112),(608,9951),(608,174915),(609,2723),(609,3093),(609,3350),(609,3358),(609,3737),(609,10235),(609,10842),(609,11627),(609,196964),(609,198019),(609,230191),(612,90),(612,441),(612,536),(612,922),(612,1228),(612,1562),(612,2051),(612,2070),(612,2437),(612,3037),(612,3038),(612,3039),(612,3043),(612,3046),(612,3047),(612,3048),(612,3049),(612,3052),(612,9748),(613,220),(613,351),(613,407),(613,1443),(613,1698),(613,1956),(613,2052),(613,2300),(613,2535),(613,2850),(613,3054),(613,3055),(613,3060),(613,3061),(613,3063),(613,3064),(613,3065),(613,3068),(613,3737),(613,6165),(613,33671),(615,186),(615,835),(615,1405),(615,2974),(615,3032),(615,3033),(615,3034),(615,3035),(615,3036),(615,10364),(615,13006),(616,233),(616,1327),(616,1335),(616,1400),(616,1402),(616,1462),(616,1543),(616,1908),(616,1938),(616,2001),(616,2156),(616,2280),(616,2568),(616,2796),(616,2802),(616,2905),(616,3070),(616,3072),(616,3073),(616,3074),(616,3077),(616,3078),(616,3080),(616,4549),(616,10089),(616,13065),(616,33457),(616,33564),(616,170007),(616,207928),(616,220492),(617,213),(617,351),(617,544),(617,570),(617,739),(617,1196),(617,1664),(617,1936),(617,2087),(617,2920),(617,3012),(617,3152),(617,3180),(617,3181),(617,3182),(617,3183),(617,3184),(617,3185),(617,3186),(617,3188),(617,3189),(617,3190),(617,3192),(617,3193),(617,4580),(617,4812),(617,6148),(617,9457),(617,33626),(617,34094),(617,179431),(619,1156),(619,1596),(619,2992),(619,3088),(619,3089),(619,12670),(621,391),(621,542),(621,795),(621,3687),(621,4344),(621,9823),(621,18453),(621,34130),(621,158375),(621,159953),(621,164246),(621,165132),(621,165136),(621,165137),(621,165139),(621,165143),(621,165147),(621,165148),(621,165154),(622,242),(622,1523),(622,1745),(622,2335),(622,2870),(622,3095),(622,3096),(622,3097),(622,3098),(622,3099),(622,33626),(627,212),(627,567),(627,572),(627,818),(627,1803),(627,2231),(627,2334),(627,2375),(627,2671),(627,2694),(627,3131),(627,3298),(627,6054),(627,9887),(627,10123),(627,10261),(627,11635),(627,34117),(627,155936),(627,156117),(627,168179),(627,180431),(627,206829),(627,230607),(628,90),(628,582),(628,3133),(628,3136),(628,3143),(628,4197),(628,231407),(629,3703),(629,5493),(629,14604),(629,15009),(629,18023),(629,18024),(629,18027),(630,616),(630,704),(630,818),(630,1308),(630,1507),(630,1566),(630,2043),(630,2213),(630,3151),(630,4344),(630,4639),(630,6027),(630,7658),(630,11020),(630,11409),(630,13001),(630,191616),(634,65),(634,212),(634,392),(634,567),(634,572),(634,725),(634,903),(634,1421),(634,1441),(634,1774),(634,2039),(634,2913),(634,3170),(634,5600),(634,10707),(634,10909),(634,12193),(634,34094),(634,179431),(634,187056),(634,207317),(639,242),(639,1157),(639,1946),(639,3200),(639,3201),(639,6054),(639,10556),(640,3202),(640,5565),(640,18525),(640,172889),(640,177465),(640,177473),(640,177482),(640,214810),(640,231069),(641,1803),(641,2375),(641,2671),(641,3428),(641,3429),(641,6059),(641,33625),(642,1016),(642,6165),(642,168374),(644,310),(644,530),(644,549),(644,803),(644,936),(644,1603),(644,2219),(644,2393),(644,3205),(644,3244),(644,3246),(644,3248),(644,3249),(644,4565),(644,9951),(644,40850),(644,156702),(644,161891),(646,212),(646,392),(646,441),(646,470),(646,585),(646,911),(646,1317),(646,1826),(646,2051),(646,3266),(646,3268),(646,3269),(646,3270),(646,3271),(646,3272),(646,3275),(646,3289),(646,4289),(646,18268),(650,542),(650,577),(650,897),(650,898),(650,3261),(650,4562),(650,7920),(650,12670),(652,380),(652,596),(652,2035),(652,3258),(652,3265),(652,3930),(652,4372),(652,4373),(652,6062),(652,6917),(652,9725),(652,10141),(652,14704),(652,158553),(652,162861),(652,189601),(652,235615),(652,235616),(652,235617),(652,235618),(652,235619),(654,9826),(654,9937),(654,15137),(654,47079),(654,69467),(654,156151),(657,110),(657,212),(657,321),(657,392),(657,441),(657,470),(657,782),(657,1847),(657,2139),(657,3269),(657,3271),(657,3272),(657,3278),(657,3279),(657,3281),(657,3282),(657,3284),(657,3289),(657,179431),(658,3271),(658,3272),(658,3275),(658,3286),(658,3287),(658,3288),(658,3291),(658,3293),(658,3800),(658,156095),(658,179431),(660,90),(660,1196),(660,2533),(660,3179),(660,3271),(660,3312),(660,3343),(660,3345),(660,10503),(660,155334),(660,156095),(663,1445),(663,4399),(663,4424),(663,6186),(663,6259),(663,11221),(663,11263),(663,13005),(663,13006),(663,14819),(663,15090),(663,18525),(663,189421),(664,1157),(664,2213),(664,2214),(664,2493),(664,3337),(664,3338),(664,3693),(664,3875),(664,5096),(664,5543),(664,9276),(664,10617),(664,12335),(664,12336),(664,15160),(666,983),(666,1161),(666,1809),(666,3344),(666,3593),(666,10508),(666,33457),(666,34139),(666,158639),(666,158642),(666,158651),(667,212),(667,233),(667,392),(667,441),(667,720),(667,746),(667,782),(667,1293),(667,1308),(667,1432),(667,2041),(667,2139),(667,2534),(667,2770),(667,3075),(667,3268),(667,3269),(667,3271),(667,3272),(667,3284),(667,3289),(667,3346),(667,3347),(667,3739),(667,9882),(667,13065),(667,15127),(667,41249),(667,222423),(668,212),(668,236),(668,392),(668,1223),(668,1308),(668,2547),(668,2676),(668,3269),(668,3271),(668,3288),(668,3289),(668,3370),(668,3371),(668,3372),(668,3373),(668,5600),(668,11134),(668,15127),(668,156095),(668,159558),(668,160175),(668,179430),(670,3364),(670,3927),(670,5585),(670,5600),(670,6062),(670,7412),(670,9748),(670,9957),(670,14778),(670,18047),(670,18396),(670,33841),(670,159544),(671,616),(671,1441),(671,2343),(671,2630),(671,3335),(671,3650),(671,3872),(671,4238),(671,4456),(671,170362),(671,223438),(672,391),(672,616),(672,2343),(672,2630),(672,3650),(672,3872),(672,3873),(672,3884),(672,3891),(672,4252),(672,179430),(673,334),(673,2052),(673,2343),(673,2630),(673,3650),(673,3872),(673,3873),(673,3884),(673,3904),(673,4252),(673,4379),(673,12392),(673,12564),(673,33783),(673,33784),(673,179430),(674,2343),(674,3737),(674,3872),(674,3873),(674,3884),(674,4238),(674,4252),(674,6271),(674,10629),(674,12380),(674,13130),(674,177912),(674,188178),(674,223438),(675,530),(675,616),(675,1014),(675,2343),(675,2630),(675,3650),(675,3737),(675,3872),(675,3873),(675,3884),(675,4252),(675,4959),(675,5147),(675,221387),(676,428),(676,1627),(676,1668),(676,1956),(676,3203),(676,3365),(676,3366),(676,3800),(676,6091),(676,6092),(676,9673),(676,155565),(679,803),(679,1603),(679,1826),(679,2345),(679,3385),(679,3387),(679,3388),(679,3389),(679,3591),(679,3801),(679,4090),(679,9951),(679,226177),(680,396),(680,1411),(680,2231),(680,2792),(680,4076),(680,8627),(680,9730),(680,10104),(680,11242),(680,11423),(680,11434),(680,11435),(680,11436),(680,11442),(680,11446),(680,11447),(680,14604),(680,14707),(681,470),(681,1721),(681,3271),(681,3376),(681,4289),(681,4585),(681,6212),(681,9826),(681,11259),(681,14819),(681,33626),(681,154881),(681,155514),(681,166873),(681,174511),(681,174519),(681,174520),(681,174523),(681,179430),(681,206694),(682,212),(682,392),(682,779),(682,782),(682,911),(682,1321),(682,2708),(682,3269),(682,3289),(682,3432),(682,3434),(682,3435),(682,3436),(682,12354),(682,12965),(682,13132),(682,41249),(682,179430),(686,818),(686,1432),(686,1508),(686,1603),(686,2846),(686,3412),(686,3416),(686,3417),(686,3419),(686,10706),(686,11001),(686,14760),(686,15246),(686,159961),(686,160515),(686,162356),(686,162357),(686,226028),(686,226240),(687,378),(687,570),(687,1952),(687,2060),(687,2122),(687,2300),(687,2501),(687,2538),(687,2726),(687,2796),(687,2885),(687,3012),(687,3437),(687,3440),(687,3441),(687,3442),(687,3446),(687,3447),(687,3448),(687,3927),(687,6059),(687,6145),(687,6148),(687,11263),(687,13001),(688,455),(688,596),(688,699),(688,1003),(688,1157),(688,2029),(688,2038),(688,2784),(688,3450),(688,3451),(688,3452),(688,4402),(688,5809),(688,6025),(688,6059),(688,7879),(688,221355),(691,212),(691,339),(691,392),(691,441),(691,470),(691,487),(691,949),(691,1160),(691,1583),(691,1949),(691,2139),(691,3152),(691,3272),(691,3278),(691,3289),(691,3312),(691,3464),(691,3465),(691,3466),(691,3467),(691,3468),(691,3469),(691,9826),(691,15097),(691,15127),(691,156095),(691,159558),(692,237),(692,900),(692,1740),(692,2231),(692,2671),(692,2843),(692,2874),(692,3443),(692,3444),(692,3445),(692,4580),(692,10183),(692,11192),(692,12420),(692,165580),(692,171636),(692,206977),(693,591),(693,970),(693,1196),(693,2088),(693,2606),(693,3453),(693,3454),(693,3455),(693,3456),(693,6188),(693,18035),(693,183886),(694,612),(694,1533),(694,1611),(694,1981),(694,2158),(694,3458),(694,3598),(694,6262),(694,9957),(694,10241),(694,10629),(694,10794),(694,13028),(694,33457),(694,190107),(694,198471),(698,110),(698,1583),(698,1826),(698,1828),(698,2711),(698,2902),(698,3268),(698,3469),(698,3801),(698,12391),(698,14626),(698,155551),(698,156095),(698,162610),(699,212),(699,339),(699,392),(699,658),(699,782),(699,1262),(699,1568),(699,2070),(699,2149),(699,3269),(699,3272),(699,3278),(699,3343),(699,3476),(699,3478),(699,3481),(699,3483),(699,10671),(699,14735),(699,41592),(699,156095),(699,159558),(700,1815),(700,2295),(700,3185),(700,3272),(700,3278),(700,3496),(700,3497),(700,6587),(700,156095),(702,531),(702,570),(702,1156),(702,1565),(702,2102),(702,2320),(702,2411),(702,11209),(702,12980),(702,157131),(702,160945),(702,210284),(703,2398),(703,2835),(703,3485),(703,3489),(703,9673),(703,10229),(703,11508),(703,11687),(703,160442),(703,162463),(704,704),(704,1463),(704,2562),(704,9817),(704,11148),(704,11800),(704,14669),(704,41133),(704,54005),(704,163865),(704,164077),(704,164218),(704,164224),(704,164225),(707,90),(707,212),(707,254),(707,392),(707,582),(707,643),(707,657),(707,720),(707,726),(707,949),(707,1308),(707,2733),(707,2736),(707,3289),(707,3518),(707,3519),(707,3520),(707,3521),(707,3522),(707,3523),(707,3524),(707,3525),(707,3528),(707,3535),(707,10794),(707,156095),(707,159558),(708,212),(708,374),(708,378),(708,392),(708,441),(708,470),(708,769),(708,1308),(708,1610),(708,2001),(708,2139),(708,2149),(708,3269),(708,3272),(708,3278),(708,3289),(708,3529),(708,3531),(708,3532),(708,3534),(708,3535),(708,3536),(708,3537),(708,3538),(708,3539),(708,3540),(708,3541),(708,3800),(708,5886),(708,10685),(708,186450),(708,233055),(709,417),(709,1196),(709,1308),(709,2019),(709,2149),(709,3435),(709,3543),(709,3545),(709,3546),(709,3547),(709,3800),(709,156095),(710,701),(710,769),(710,1308),(710,2812),(710,3268),(710,3272),(710,3278),(710,3376),(710,3531),(710,3560),(710,3561),(710,3562),(710,3563),(710,3564),(710,193008),(711,213),(711,380),(711,388),(711,496),(711,818),(711,1310),(711,1412),(711,1992),(711,2132),(711,3192),(711,3548),(711,3549),(711,3551),(711,3553),(711,3556),(711,3558),(711,3737),(711,5614),(711,6054),(711,6059),(711,6270),(711,6278),(711,170652),(712,213),(712,699),(712,1334),(712,1459),(712,1873),(712,2038),(712,3568),(712,3577),(712,3581),(712,3582),(712,3583),(712,3584),(712,3739),(712,5347),(712,6054),(712,13027),(712,236055),(713,128),(713,388),(713,456),(713,596),(713,738),(713,931),(713,1463),(713,1533),(713,1664),(713,1942),(713,2060),(713,2320),(713,2658),(713,2659),(713,2692),(713,3590),(713,3591),(713,3593),(713,3595),(713,6038),(713,7879),(713,187056),(714,212),(714,392),(714,470),(714,478),(714,1774),(714,2051),(714,2136),(714,2534),(714,2954),(714,3272),(714,3531),(714,3586),(714,3587),(714,3588),(714,14735),(714,41249),(714,164713),(744,725),(744,1014),(744,2533),(744,2796),(744,3203),(744,3564),(744,3737),(744,3776),(744,3777),(744,3779),(744,3800),(744,3851),(744,3994),(744,4410),(744,6062),(744,7879),(744,13001),(744,207414),(745,516),(745,1335),(745,1452),(745,2246),(745,2800),(745,3737),(745,5809),(745,6155),(745,9457),(745,11627),(745,13001),(745,208349),(745,210530),(746,188),(746,233),(746,236),(746,478),(746,1252),(746,1327),(746,1412),(746,1533),(746,1601),(746,2020),(746,2280),(746,2692),(746,3995),(746,3996),(746,3999),(746,4004),(746,4005),(746,6091),(746,6285),(746,10508),(746,33683),(746,163048),(746,173644),(747,639),(747,2382),(747,2836),(747,5319),(747,6581),(747,9799),(747,12377),(747,14744),(747,18298),(747,33615),(747,33616),(747,50009),(747,155479),(747,191076),(747,233944),(752,703),(752,716),(752,1755),(752,3099),(752,3603),(752,4565),(752,6086),(752,7525),(752,9748),(752,11476),(752,13006),(752,158449),(752,158456),(752,161207),(752,172391),(752,175949),(752,189995),(752,198331),(752,208647),(752,208725),(752,214978),(752,220888),(752,221385),(752,221387),(754,1568),(754,1666),(754,1865),(754,3868),(754,3927),(754,5572),(754,6062),(754,9748),(754,9758),(754,10614),(754,10950),(754,11612),(754,12391),(754,12670),(754,14601),(754,14687),(754,18525),(754,156786),(754,170212),(754,187844),(754,188134),(754,194942),(754,208708),(755,246),(755,380),(755,459),(755,797),(755,798),(755,1664),(755,2483),(755,2492),(755,3133),(755,3649),(755,4063),(755,6593),(755,10093),(755,14601),(755,14687),(755,15363),(755,18072),(755,18233),(755,41380),(755,163795),(755,167664),(755,168152),(755,174878),(755,188711),(755,191441),(755,227811),(756,3537),(756,5783),(756,190719),(762,113),(762,345),(762,770),(762,1400),(762,3966),(762,3968),(762,3969),(762,5160),(762,10466),(762,10982),(762,11327),(762,11487),(762,161817),(762,177129),(762,236316),(764,769),(764,1829),(764,2380),(764,4010),(764,4013),(764,4014),(764,4015),(764,4748),(764,9713),(764,10121),(764,156075),(764,156174),(764,157458),(764,157466),(764,161261),(764,189921),(764,232281),(765,7946),(765,8636),(765,11335),(765,12394),(765,13153),(765,14819),(765,18451),(765,155626),(765,157458),(765,157459),(765,157465),(765,157466),(765,157468),(765,157470),(765,157471),(766,530),(766,616),(766,1400),(766,1545),(766,3098),(766,3970),(766,4013),(766,4060),(766,4062),(766,4065),(766,4066),(766,4067),(766,4379),(766,10327),(766,10466),(766,12377),(766,41406),(766,46958),(766,157466),(766,161891),(767,616),(767,2343),(767,3872),(767,3884),(767,6333),(767,10164),(767,10791),(767,12564),(768,1465),(768,1803),(768,4007),(769,378),(769,818),(769,1196),(769,1228),(769,1583),(769,1857),(769,2149),(769,5565),(769,9672),(769,9826),(769,10291),(769,10292),(769,10391),(769,13142),(769,14512),(769,14687),(769,14819),(769,41523),(769,214983),(769,214985),(770,314),(770,393),(770,531),(770,1452),(770,1459),(770,2076),(770,2613),(770,3136),(770,4020),(770,4021),(770,5809),(771,65),(771,1437),(771,14903),(771,15075),(771,163841),(771,169826),(771,169829),(771,169850),(771,207317),(771,208349),(772,65),(772,242),(772,14512),(772,207317),(773,387),(773,1155),(773,1157),(773,2783),(773,3089),(773,3306),(773,3746),(773,5496),(773,5549),(773,7312),(773,10235),(773,33694),(773,167043),(773,187056),(773,191583),(782,856),(782,1252),(782,1332),(782,1718),(782,2345),(782,2547),(782,2690),(782,3864),(782,4035),(782,4039),(782,4040),(782,4565),(782,5340),(782,6017),(782,6062),(782,33611),(782,158292),(782,162988),(783,789),(783,958),(783,1775),(783,1956),(783,2883),(783,3398),(783,3644),(783,3930),(783,4089),(783,4090),(783,4092),(783,4096),(783,4097),(783,4100),(783,4101),(783,4102),(783,4104),(783,4106),(783,4107),(783,4108),(783,4109),(783,4110),(783,4112),(783,6089),(783,6157),(783,6193),(783,6194),(783,7926),(783,33485),(786,922),(786,1768),(786,1803),(786,2080),(786,2635),(786,4044),(786,4045),(786,4047),(786,5288),(786,6029),(786,8181),(786,9672),(786,10505),(786,10683),(786,15291),(786,157722),(786,163976),(786,165402),(786,170333),(786,178650),(786,180413),(787,258),(787,782),(787,1308),(787,1328),(787,1376),(787,1419),(787,2587),(787,2708),(787,4049),(787,5809),(787,6038),(787,8438),(787,10061),(787,12371),(787,14677),(788,582),(788,970),(788,1946),(788,2341),(788,2546),(788,4056),(788,167808),(790,530),(790,658),(790,966),(790,1321),(790,1415),(790,1829),(790,1938),(790,2398),(790,3002),(790,3341),(790,3799),(790,4079),(790,14765),(792,1505),(792,1701),(792,1960),(792,2957),(792,5331),(792,10292),(792,10787),(792,11314),(792,13065),(792,14643),(792,18543),(792,208992),(794,345),(794,530),(794,1704),(794,2341),(794,4083),(794,4084),(794,4087),(794,5160),(794,6025),(794,11627),(794,13001),(794,41586),(795,236),(795,290),(795,314),(795,1333),(795,1604),(795,4116),(795,6150),(795,6155),(795,12670),(795,212760),(796,213),(796,459),(796,572),(796,622),(796,625),(796,726),(796,1155),(796,2045),(796,2150),(796,2389),(796,2887),(796,3182),(796,3452),(796,3551),(796,6139),(796,6782),(796,9673),(796,157154),(801,578),(801,1224),(801,1327),(801,1491),(801,1653),(801,2045),(801,2135),(801,2957),(801,2959),(801,2998),(801,3366),(801,3737),(801,3740),(801,3923),(801,4119),(801,4125),(801,6145),(802,459),(802,612),(802,894),(802,936),(802,1415),(802,1486),(802,1599),(802,1664),(802,2086),(802,2087),(802,2669),(802,2913),(802,3182),(802,3691),(802,3746),(802,4125),(802,4126),(802,4127),(802,4129),(802,4130),(802,4549),(802,5767),(802,7879),(805,8685),(805,18401),(805,41600),(805,156174),(805,161261),(805,163055),(805,172376),(805,172382),(805,172383),(805,172391),(807,476),(807,703),(807,1470),(807,2231),(807,3597),(807,3857),(807,3927),(807,3932),(807,4138),(807,4142),(807,5340),(807,6125),(807,6149),(807,10714),(808,2343),(808,2434),(808,2596),(808,3098),(808,4147),(808,4158),(808,6187),(808,7376),(808,9755),(808,187056),(808,189111),(809,378),(809,2343),(809,2434),(809,2676),(809,3453),(809,4152),(809,4158),(809,4159),(809,4375),(809,6187),(810,502),(810,1647),(810,1674),(810,2019),(810,2041),(810,2052),(810,2580),(810,3071),(810,3799),(810,4144),(810,4152),(810,4326),(810,4375),(810,4541),(810,4988),(810,5515),(810,6093),(810,6271),(810,6285),(810,10508),(810,12392),(810,12554),(810,13001),(810,13149),(810,156702),(810,179431),(811,1826),(811,2725),(811,3704),(811,3801),(811,4165),(811,4166),(811,4168),(811,4565),(811,9882),(811,10637),(811,14544),(811,156039),(812,2343),(812,4344),(812,6513),(812,7376),(812,9673),(812,10267),(812,10336),(812,15149),(812,173259),(812,179430),(812,190536),(812,234183),(813,520),(813,567),(813,843),(813,953),(813,1279),(813,1749),(813,1757),(813,2007),(813,2080),(813,3203),(813,3800),(813,4544),(813,4545),(813,4547),(813,4548),(813,5091),(813,11931),(813,12670),(813,15237),(813,179430),(813,236316),(816,803),(816,1568),(816,2534),(816,2655),(816,3800),(816,4159),(816,4379),(816,4504),(816,4505),(816,4506),(816,4507),(816,6293),(816,14914),(816,15267),(816,155762),(816,179430),(816,179431),(817,83),(817,305),(817,339),(817,402),(817,470),(817,591),(817,797),(817,803),(817,840),(817,911),(817,977),(817,1280),(817,1432),(817,1568),(817,1826),(817,1926),(817,3796),(817,4379),(817,4522),(817,9457),(817,179430),(817,179431),(818,83),(818,339),(818,380),(818,402),(818,470),(818,720),(818,1321),(818,1375),(818,1423),(818,1568),(818,1690),(818,1881),(818,1926),(818,2334),(818,3290),(818,3346),(818,3371),(818,3796),(818,4507),(818,4539),(818,4541),(818,15267),(818,179431),(819,516),(819,625),(819,739),(819,1499),(819,1522),(819,2400),(819,3012),(819,5319),(819,6148),(819,14857),(819,208349),(820,441),(820,591),(820,1013),(820,2411),(820,2957),(820,4170),(820,5340),(820,6086),(820,6165),(820,8570),(820,10410),(820,34079),(820,170548),(821,934),(821,1631),(821,1956),(821,2652),(821,3012),(821,3061),(821,3068),(821,4172),(821,6145),(821,11038),(824,4235),(824,4344),(824,5914),(824,6027),(824,6564),(824,13028),(824,158111),(824,164753),(824,164754),(824,164759),(824,164764),(824,164770),(824,164772),(824,164775),(824,186403),(826,233),(826,836),(826,907),(826,1261),(826,1968),(826,3434),(826,3450),(826,3776),(834,810),(834,2849),(834,3133),(834,3760),(834,12564),(834,34152),(834,231407),(837,236),(837,2571),(837,3298),(837,3586),(837,3740),(837,4227),(837,4565),(837,12400),(837,193594),(838,455),(838,578),(838,642),(838,699),(838,830),(838,1224),(838,1927),(838,2016),(838,2135),(838,3740),(838,3800),(838,33885),(838,208349),(840,1447),(840,1523),(840,1603),(840,2227),(840,2583),(840,3243),(840,3268),(840,3760),(840,4212),(840,4214),(840,4217),(840,9738),(840,9951),(840,10629),(840,156091),(840,160754),(840,187710),(840,206711),(840,206811),(841,530),(841,616),(841,1299),(841,1475),(841,1815),(841,1826),(841,2280),(841,2766),(841,3074),(841,3801),(841,4234),(841,4235),(841,4237),(841,4238),(841,4565),(841,4743),(841,6074),(841,6091),(841,194063),(841,197602),(844,460),(844,612),(844,725),(844,738),(844,780),(844,803),(844,815),(844,818),(844,922),(844,931),(844,2038),(844,2062),(844,4224),(844,6059),(844,7879),(844,9826),(844,10818),(844,12354),(844,14602),(844,33625),(844,34094),(844,163132),(846,258),(846,720),(846,1328),(846,1523),(846,1603),(846,1812),(846,1826),(846,2766),(846,2908),(846,3271),(846,3288),(846,4249),(846,6086),(848,1308),(848,1430),(848,2343),(848,2389),(848,2642),(848,2858),(848,3873),(848,4257),(848,4258),(848,4260),(848,5698),(848,7376),(848,10821),(848,10864),(848,12554),(848,186189),(848,201554),(848,233023),(848,234213),(849,4152),(849,10016),(849,10471),(849,10877),(849,15252),(849,33974),(849,161891),(849,161893),(849,161896),(850,65),(850,5609),(850,11336),(850,170472),(850,170487),(850,170496),(850,170499),(850,207317),(850,207883),(853,1442),(853,1589),(853,1956),(853,4264),(854,851),(854,974),(854,2422),(854,6348),(854,9903),(854,156257),(854,179101),(855,1968),(855,2820),(855,4265),(855,4267),(855,4337),(855,10174),(855,222529),(857,1327),(857,1430),(857,1543),(857,1956),(857,2770),(857,3800),(857,3930),(857,4299),(857,4300),(857,4302),(857,4303),(857,4304),(857,6092),(857,7956),(857,11108),(857,11111),(857,11371),(857,162365),(857,207883),(859,725),(859,738),(859,1332),(859,2045),(859,2336),(859,2687),(859,2692),(859,2983),(859,3182),(859,3452),(859,3925),(859,4315),(859,4319),(859,4320),(859,4812),(859,6049),(859,34221),(860,282),(860,310),(860,1812),(860,2106),(860,2157),(860,3246),(860,4284),(860,6086),(860,6104),(860,156767),(861,560),(861,769),(861,836),(861,839),(861,848),(861,1475),(861,1852),(861,3249),(861,3388),(861,3864),(861,4289),(861,4565),(861,12190),(861,187008),(861,187046),(862,931),(862,4290),(862,5202),(862,6054),(862,9713),(862,9823),(862,165503),(862,170722),(862,187065),(863,2598),(863,3246),(863,3394),(863,3800),(863,4294),(863,4295),(863,4298),(863,6054),(863,18031),(863,175343),(863,179431),(863,187065),(863,209386),(863,209387),(864,1442),(864,1482),(864,2070),(864,3266),(864,3777),(864,4307),(864,4310),(864,6075),(865,378),(865,3713),(865,4323),(865,4325),(865,4565),(865,162988),(866,212),(866,388),(866,970),(866,1412),(866,2486),(866,2784),(866,3321),(866,3836),(866,4129),(866,4326),(866,4327),(866,4328),(866,4332),(866,4333),(866,4414),(866,4549),(866,5809),(866,6034),(866,6054),(866,6150),(866,9457),(866,10707),(866,10818),(866,12988),(866,40895),(866,184989),(866,208349),(868,100),(868,1009),(868,1721),(868,2483),(868,3077),(868,4339),(868,6149),(868,9673),(868,9713),(868,9826),(868,10726),(868,13130),(868,14819),(868,15009),(868,155238),(869,690),(869,1826),(869,1828),(869,2020),(869,2552),(869,2831),(869,3801),(869,4379),(869,4565),(869,10158),(869,14759),(869,207569),(872,3177),(872,3748),(872,4344),(872,6494),(872,9104),(872,9732),(872,156028),(872,164090),(872,164623),(872,164628),(872,164636),(872,164641),(873,378),(873,409),(873,531),(873,570),(873,577),(873,1156),(873,1416),(873,2299),(873,2320),(873,2386),(873,2393),(873,3017),(873,3344),(873,33841),(874,392),(874,717),(874,1829),(874,2122),(874,4350),(874,4351),(874,4352),(874,4353),(874,190285),(879,334),(879,1400),(879,1938),(879,2486),(879,4332),(879,5600),(879,6187),(879,10084),(881,236),(881,240),(881,2619),(881,3012),(881,3588),(881,3703),(881,3737),(881,4404),(881,4405),(881,4406),(881,4407),(881,4408),(881,4409),(881,4410),(881,4411),(881,6145),(881,10181),(881,163189),(881,187844),(881,227642),(881,227890),(887,279),(887,447),(887,1543),(887,1956),(887,2367),(887,2425),(888,554),(888,931),(888,2374),(888,2393),(888,2783),(888,4428),(888,4812),(888,6054),(888,12392),(888,12616),(889,828),(889,1459),(889,1486),(889,4428),(889,12392),(889,12616),(905,212),(905,585),(905,893),(905,3691),(905,4549),(905,14872),(905,154802),(907,128),(907,428),(907,1252),(907,1465),(907,2504),(907,3460),(907,3691),(907,4500),(907,5600),(907,6917),(913,159520),(913,159521),(913,159523),(913,159529),(913,159531),(913,159532),(913,159534),(913,159538),(913,159539),(920,830),(920,1926),(920,3787),(920,3796),(920,4944),(920,4945),(920,4946),(920,4948),(920,6007),(920,6054),(920,6075),(920,11500),(920,12670),(920,167043),(920,179430),(920,179431),(921,396),(921,1199),(921,1477),(921,1952),(921,2783),(921,2792),(921,4487),(921,4610),(921,4613),(921,4614),(921,4615),(921,5565),(921,5600),(921,6066),(921,6075),(924,972),(924,1583),(924,1912),(924,1926),(924,2081),(924,2583),(924,2776),(924,3725),(924,3737),(924,4197),(924,4277),(924,4376),(924,4531),(924,4682),(924,5369),(924,12377),(924,15162),(924,33885),(924,179431),(925,577),(925,700),(925,796),(925,1381),(925,1463),(925,3261),(925,3772),(925,3910),(925,4305),(925,4470),(925,4630),(925,4668),(925,4733),(925,4735),(925,10594),(925,12425),(925,207009),(926,2902),(926,9831),(926,11931),(926,179781),(927,65),(927,1299),(927,1415),(927,2081),(927,2182),(927,2526),(927,2551),(927,2725),(927,4013),(927,5151),(927,5152),(927,5154),(927,6126),(927,6300),(927,7948),(927,9963),(927,10005),(927,10006),(928,242),(928,1299),(928,1418),(928,1852),(928,1946),(928,2526),(928,2766),(928,3586),(928,3737),(928,4237),(928,4713),(928,5154),(928,5155),(928,5156),(928,5157),(928,6247),(928,10005),(928,13001),(935,840),(935,1402),(935,2106),(935,2531),(935,3312),(935,160370),(935,160377),(935,160381),(935,160387),(935,194825),(935,214655),(943,155716),(943,167308),(943,167309),(943,167310),(943,167311),(943,167313),(943,167316),(943,167319),(943,179430),(944,167377),(944,167381),(944,188944),(947,487),(947,1975),(947,2504),(947,2673),(947,3575),(947,4100),(947,4107),(947,4535),(947,4717),(947,6091),(947,18034),(947,173259),(947,214410),(948,293),(948,2483),(948,2546),(948,2604),(948,3335),(948,6149),(948,10024),(948,10183),(948,10333),(948,10714),(948,10776),(948,11040),(948,11221),(948,11488),(948,12339),(948,13112),(948,14698),(948,14805),(948,14819),(948,17987),(948,18035),(948,34117),(948,156075),(948,157701),(948,174424),(948,198914),(948,207159),(950,2078),(950,2079),(950,2219),(950,2223),(950,2224),(950,2984),(950,3528),(950,4414),(950,4663),(950,4875),(950,158017),(951,853),(951,1650),(951,2231),(951,3737),(951,4590),(951,5091),(951,6149),(951,10508),(951,214555),(953,2043),(953,2509),(953,2510),(953,3028),(953,7639),(954,90),(954,212),(954,470),(954,591),(954,949),(954,1308),(954,1568),(954,2001),(954,2112),(954,3268),(954,3269),(954,3530),(954,4123),(954,4289),(954,4683),(954,6104),(954,10364),(954,10988),(954,11134),(954,33705),(955,321),(955,514),(955,591),(955,720),(955,1308),(955,1418),(955,1568),(955,2041),(955,2695),(955,3269),(955,3737),(955,4289),(955,6104),(955,12965),(955,14675),(955,14819),(955,18031),(955,33705),(955,33885),(955,191881),(956,220),(956,591),(956,716),(956,833),(956,1308),(956,1328),(956,1653),(956,1880),(956,1969),(956,2052),(956,2546),(956,2676),(956,2682),(956,3181),(956,3269),(956,3344),(956,3739),(956,3877),(956,4277),(956,4289),(956,4697),(956,4698),(956,4699),(956,4700),(956,4701),(956,4702),(956,6104),(956,9748),(956,9826),(956,10364),(956,11612),(956,12965),(956,18118),(956,33648),(956,46958),(956,191881),(956,222423),(957,803),(957,1280),(957,1400),(957,1530),(957,1826),(957,2902),(957,3801),(957,4040),(957,4270),(957,4575),(957,4578),(957,4579),(957,4581),(957,4583),(957,4585),(957,4587),(957,5539),(957,5560),(957,11931),(978,188),(978,486),(978,1201),(978,1262),(978,1529),(978,1956),(978,1968),(978,2385),(978,4558),(978,4559),(978,4560),(978,4561),(978,13027),(979,90),(979,549),(979,570),(979,572),(979,2483),(979,2754),(979,4728),(979,6093),(979,6149),(979,9673),(979,9748),(979,12420),(979,14624),(979,14707),(979,14819),(979,14964),(979,33783),(979,156075),(979,156478),(979,184352),(979,203258),(979,224663),(985,1009),(985,1852),(985,2147),(985,3030),(985,3453),(985,4597),(985,4598),(985,9887),(985,10183),(985,13006),(985,33465),(985,234129),(987,520),(987,736),(987,918),(987,1459),(987,4602),(987,4604),(987,155744),(990,236),(990,395),(990,554),(990,567),(990,818),(990,1010),(990,1356),(990,2348),(990,6075),(990,8508),(990,10499),(990,10594),(990,18249),(990,40879),(990,199050),(1018,222),(1018,1284),(1018,1453),(1018,1565),(1018,1660),(1018,2754),(1018,2849),(1018,3183),(1018,3298),(1018,3307),(1018,3489),(1018,4623),(1018,9937),(1018,10183),(1018,10768),(1018,12670),(1024,456),(1024,572),(1024,1328),(1024,1523),(1024,2132),(1024,2483),(1024,2486),(1024,2983),(1024,9673),(1024,9713),(1024,9826),(1024,10183),(1024,10768),(1024,10984),(1024,14534),(1051,796),(1051,916),(1051,1759),(1051,2013),(1051,2231),(1051,2235),(1051,3149),(1051,3391),(1051,4654),(1051,4655),(1051,238010),(1073,258),(1073,949),(1073,1812),(1073,1992),(1073,2340),(1073,3616),(1073,4183),(1073,6078),(1073,6092),(1073,9826),(1073,9937),(1073,10226),(1073,33705),(1073,159419),(1073,200883),(1073,207268),(1088,270),(1088,936),(1088,941),(1088,963),(1088,1412),(1088,2273),(1088,2386),(1088,2658),(1088,2667),(1088,2914),(1088,2971),(1088,3131),(1088,4676),(1088,4677),(1088,4678),(1088,4707),(1088,6337),(1088,13056),(1088,187056),(1090,310),(1090,2423),(1090,4286),(1090,4563),(1090,4565),(1090,9826),(1090,12670),(1091,1445),(1091,1826),(1091,2340),(1091,3373),(1091,4711),(1091,4713),(1091,9714),(1091,9951),(1091,14728),(1091,14729),(1091,155821),(1103,444),(1103,542),(1103,840),(1103,1543),(1103,1562),(1103,1930),(1103,2019),(1103,2095),(1103,3149),(1103,4565),(1103,4668),(1103,5034),(1103,12190),(1103,217083),(1116,212),(1116,380),(1116,392),(1116,393),(1116,836),(1116,1008),(1116,1208),(1116,1353),(1116,1756),(1116,2052),(1116,3070),(1116,4097),(1116,4100),(1116,4729),(1116,4730),(1116,6057),(1116,6110),(1116,12579),(1116,15202),(1116,158217),(1123,796),(1123,836),(1123,3644),(1123,4106),(1123,4737),(1123,6145),(1124,271),(1124,1328),(1124,1523),(1124,2343),(1124,3737),(1124,4034),(1124,4662),(1124,4988),(1124,6062),(1124,6069),(1124,9823),(1125,532),(1125,554),(1125,577),(1125,596),(1125,634),(1125,837),(1125,1803),(1125,3089),(1125,4344),(1125,4481),(1125,4741),(1125,4742),(1125,4744),(1125,4745),(1125,4746),(1125,9457),(1125,10229),(1125,12990),(1125,18021),(1125,33457),(1125,34094),(1125,41591),(1164,321),(1164,936),(1164,1419),(1164,1629),(1164,1635),(1164,1768),(1164,1941),(1164,2173),(1164,2201),(1164,2341),(1164,5600),(1164,14677),(1164,159753),(1165,213),(1165,936),(1165,1025),(1165,1647),(1165,2011),(1165,2471),(1165,2560),(1165,2569),(1165,2623),(1165,3089),(1165,3737),(1165,4308),(1165,4831),(1165,4832),(1165,4833),(1165,4835),(1213,110),(1213,131),(1213,237),(1213,242),(1213,725),(1213,848),(1213,851),(1213,931),(1213,1308),(1213,1605),(1213,1849),(1213,1913),(1213,2547),(1213,3152),(1213,3246),(1213,3342),(1213,3799),(1213,3843),(1213,3864),(1213,4214),(1213,4951),(1213,4952),(1213,4953),(1213,6054),(1213,10180),(1213,10329),(1213,13001),(1213,155624),(1245,918),(1245,1307),(1245,1655),(1245,1797),(1245,2382),(1245,2652),(1245,11508),(1245,14905),(1245,17997),(1245,33360),(1246,276),(1246,396),(1246,1721),(1246,2038),(1246,2416),(1246,2792),(1246,2968),(1246,3393),(1246,3586),(1246,4487),(1246,4610),(1246,4613),(1246,5167),(1246,5378),(1246,5379),(1246,5380),(1246,6066),(1246,6067),(1246,10163),(1246,155464),(1248,1442),(1248,6259),(1248,8087),(1248,10714),(1250,2870),(1250,3684),(1250,3737),(1250,4084),(1250,5280),(1250,5452),(1250,5454),(1250,9717),(1251,1956),(1251,1964),(1251,3737),(1251,161246),(1251,170007),(1251,188727),(1255,1261),(1255,1880),(1255,3930),(1255,4393),(1255,5600),(1255,6304),(1255,6305),(1255,6617),(1255,6618),(1255,18035),(1257,456),(1257,953),(1257,1156),(1257,1189),(1257,1605),(1257,2301),(1257,2784),(1257,5444),(1257,5458),(1257,6098),(1257,9457),(1257,10707),(1257,12670),(1257,15479),(1257,33479),(1259,572),(1259,596),(1259,818),(1259,977),(1259,1326),(1259,1328),(1259,1523),(1259,1936),(1259,2483),(1259,3182),(1259,5321),(1259,6054),(1259,6844),(1259,9673),(1259,9957),(1259,10508),(1259,11937),(1259,12105),(1259,13130),(1259,14534),(1259,14893),(1259,18051),(1259,34094),(1259,46954),(1259,167310),(1262,1992),(1262,2132),(1262,9673),(1262,9799),(1262,10818),(1262,10855),(1262,34079),(1262,41589),(1262,155251),(1262,188994),(1262,215325),(1265,1155),(1265,6054),(1265,6733),(1265,10226),(1265,10873),(1265,13151),(1265,15101),(1265,166287),(1265,170344),(1265,170345),(1265,170350),(1265,170351),(1265,170356),(1265,170362),(1265,204383),(1266,6149),(1266,12670),(1268,65),(1268,254),(1268,2793),(1268,4630),(1268,5347),(1268,5348),(1268,179430),(1271,3597),(1271,5538),(1271,5539),(1271,6092),(1271,8637),(1271,14704),(1271,171603),(1271,190999),(1272,83),(1272,258),(1272,1670),(1272,1826),(1272,2725),(1272,3638),(1272,4040),(1272,4627),(1272,5442),(1273,242),(1273,380),(1273,736),(1273,779),(1273,853),(1273,1308),(1273,1852),(1273,6362),(1273,9673),(1273,9717),(1273,9824),(1273,12653),(1282,390),(1282,10183),(1359,818),(1359,5636),(1359,6259),(1359,174075),(1359,174076),(1359,174085),(1359,174089),(1359,187056),(1359,217076),(1360,437),(1360,2038),(1360,158558),(1360,187056),(1365,531),(1365,828),(1365,970),(1365,987),(1365,1452),(1365,1605),(1365,6059),(1365,6325),(1365,10183),(1365,11263),(1365,160910),(1366,240),(1366,276),(1366,396),(1366,700),(1366,1721),(1366,2038),(1366,2416),(1366,2792),(1366,4097),(1366,4487),(1366,4613),(1366,4663),(1366,4902),(1366,5378),(1366,5383),(1366,6067),(1368,378),(1368,422),(1368,769),(1368,796),(1368,798),(1368,1008),(1368,1375),(1368,1419),(1368,2535),(1368,2801),(1368,2956),(1368,2957),(1368,3246),(1368,3737),(1368,3787),(1368,4668),(1368,5034),(1368,5144),(1368,5385),(1368,5386),(1368,5387),(1368,6110),(1368,6112),(1368,6149),(1368,10685),(1369,279),(1369,422),(1369,1375),(1369,1563),(1369,1968),(1369,2019),(1369,2434),(1369,2956),(1369,2957),(1369,3713),(1369,4276),(1369,4595),(1369,5774),(1369,6025),(1369,6086),(1369,6091),(1369,9748),(1369,13065),(1369,33705),(1369,197602),(1370,271),(1370,1375),(1370,2111),(1370,2434),(1370,2808),(1370,3055),(1370,3434),(1370,3538),(1370,3541),(1370,4269),(1370,4276),(1370,5389),(1370,10328),(1370,10511),(1370,161048),(1370,168622),(1372,526),(1372,736),(1372,917),(1372,1465),(1372,2831),(1372,3070),(1372,3379),(1372,5417),(1372,5419),(1372,5420),(1372,5422),(1372,6212),(1372,33617),(1372,158455),(1378,237),(1378,242),(1378,460),(1378,463),(1378,571),(1378,572),(1378,826),(1378,1252),(1378,1664),(1378,2426),(1378,3201),(1378,3456),(1378,4697),(1378,7089),(1378,10180),(1378,12420),(1381,879),(1381,1604),(1381,2011),(1381,2038),(1381,3262),(1381,3352),(1381,3737),(1381,3755),(1381,4978),(1381,5566),(1381,15149),(1381,208358),(1382,380),(1382,5500),(1382,10183),(1382,15128),(1382,15478),(1382,18013),(1382,157791),(1382,170569),(1382,175894),(1382,176485),(1382,176486),(1382,176488),(1382,187056),(1389,736),(1389,3303),(1389,8806),(1389,9098),(1389,155552),(1391,534),(1391,572),(1391,966),(1391,2426),(1391,3230),(1391,7312),(1391,10683),(1391,13130),(1391,158718),(1391,209987),(1402,582),(1402,641),(1402,960),(1402,992),(1402,2346),(1402,2981),(1402,3640),(1402,4636),(1402,4671),(1402,5565),(1402,10332),(1402,10631),(1408,911),(1408,1454),(1408,1969),(1408,3799),(1408,5470),(1408,12988),(1412,459),(1412,572),(1412,738),(1412,2249),(1412,2874),(1412,3201),(1412,3297),(1412,4115),(1412,4316),(1412,4434),(1412,178649),(1415,242),(1415,612),(1415,818),(1415,1421),(1415,1822),(1415,2334),(1415,2441),(1415,3298),(1415,4328),(1415,4958),(1415,4959),(1415,5638),(1415,6149),(1415,8508),(1415,9713),(1415,10183),(1415,10200),(1415,10594),(1415,14964),(1417,514),(1417,836),(1417,964),(1417,2095),(1417,2710),(1417,3205),(1417,5882),(1417,6092),(1417,7376),(1417,9673),(1417,9720),(1417,13084),(1417,18028),(1417,18129),(1417,207003),(1422,1568),(1422,1680),(1422,6149),(1422,9713),(1422,10391),(1422,11199),(1422,11578),(1422,14617),(1422,177235),(1422,177258),(1422,177259),(1424,447),(1424,1003),(1424,1014),(1424,1992),(1424,2754),(1424,3607),(1424,5485),(1424,9826),(1424,10183),(1424,33874),(1427,90),(1427,293),(1427,549),(1427,1415),(1427,1523),(1427,1817),(1427,1866),(1427,2483),(1427,3568),(1427,5558),(1427,5560),(1427,5561),(1427,5562),(1427,5600),(1427,6152),(1427,6257),(1427,6272),(1427,34079),(1427,158194),(1428,417),(1428,591),(1429,378),(1429,1563),(1429,1566),(1429,2231),(1429,2334),(1429,2355),(1429,3230),(1429,4232),(1429,5490),(1429,6054),(1429,179430),(1430,279),(1430,1329),(1430,1419),(1430,1849),(1430,4277),(1430,5037),(1430,7548),(1430,11068),(1430,163656),(1430,187554),(1435,222),(1435,237),(1435,279),(1435,570),(1435,1556),(1435,1565),(1435,2468),(1435,9457),(1435,10180),(1435,14534),(1435,18130),(1435,156195),(1435,171119),(1439,393),(1439,494),(1439,1319),(1439,2052),(1439,2122),(1439,3434),(1439,3998),(1439,5499),(1439,5600),(1439,9920),(1439,10508),(1439,14643),(1439,197602),(1440,390),(1440,456),(1440,579),(1440,596),(1440,1157),(1440,1415),(1440,1664),(1440,1950),(1440,2337),(1440,3090),(1440,3256),(1440,3451),(1440,4029),(1440,4481),(1440,5500),(1440,5501),(1440,5502),(1440,6259),(1440,8440),(1440,10103),(1440,10707),(1440,18130),(1440,33451),(1440,34094),(1443,933),(1443,1228),(1443,14751),(1443,18035),(1443,187056),(1452,83),(1452,849),(1452,8872),(1452,9663),(1452,9715),(1452,9717),(1452,163420),(1452,163455),(1452,179102),(1452,202526),(1487,4252),(1487,5572),(1487,9665),(1487,9715),(1487,11627),(1487,12208),(1487,15001),(1487,156174),(1487,174406),(1487,174413),(1487,179431),(1491,2343),(1491,7376),(1491,9673),(1491,9823),(1491,18267),(1491,169456),(1491,176857),(1491,188989),(1491,209157),(1491,233055),(1493,4654),(1493,5496),(1493,13015),(1494,351),(1494,478),(1494,779),(1494,1400),(1494,1721),(1494,1813),(1494,2908),(1494,2983),(1494,3152),(1494,3720),(1494,3998),(1494,4812),(1494,4933),(1494,5511),(1494,5513),(1494,5514),(1494,5515),(1494,5809),(1494,7879),(1495,2868),(1495,6917),(1495,10466),(1495,10491),(1495,14656),(1495,14989),(1495,208681),(1495,222337),(1495,222340),(1497,853),(1497,1721),(1497,1852),(1497,6362),(1497,10278),(1497,12193),(1497,14512),(1499,233),(1499,4379),(1499,10278),(1523,407),(1523,1228),(1523,1402),(1523,1930),(1523,2487),(1523,2613),(1523,3089),(1523,6750),(1523,6751),(1523,7404),(1523,7606),(1535,470),(1535,478),(1535,591),(1535,2106),(1537,242),(1537,4056),(1537,9937),(1537,10909),(1538,387),(1538,444),(1538,782),(1538,1562),(1538,1749),(1538,1812),(1538,2708),(1538,6149),(1538,12670),(1538,13112),(1538,14536),(1538,15009),(1538,163656),(1542,10532),(1542,33471),(1542,167499),(1542,167506),(1542,167507),(1542,167510),(1542,167516),(1542,167519),(1542,179431),(1542,232700),(1544,212),(1544,2779),(1544,10180),(1544,10768),(1544,158718),(1546,1412),(1546,1782),(1546,2201),(1546,3363),(1546,5528),(1546,5529),(1546,5535),(1546,6270),(1546,10183),(1546,10791),(1546,14751),(1546,18035),(1547,542),(1547,1415),(1547,3133),(1547,5451),(1547,5532),(1547,9457),(1547,155582),(1547,157499),(1548,18005),(1548,175492),(1548,175494),(1548,175497),(1548,175499),(1548,175506),(1548,175510),(1548,175514),(1548,179430),(1550,572),(1550,4543),(1550,7312),(1550,9673),(1550,10183),(1550,10226),(1550,10776),(1550,18035),(1550,40895),(1551,314),(1551,6155),(1551,6954),(1551,10937),(1551,187675),(1551,187676),(1555,90),(1555,107),(1555,567),(1555,1253),(1555,9457),(1555,9935),(1555,9986),(1555,12105),(1555,14534),(1555,14602),(1555,14751),(1555,33648),(1555,155939),(1562,212),(1562,936),(1562,1465),(1562,1852),(1562,2867),(1562,3737),(1562,4630),(1562,5313),(1562,5385),(1562,6152),(1562,10349),(1562,10562),(1562,12377),(1562,15017),(1562,187710),(1562,188957),(1562,188959),(1562,189421),(1562,193546),(1562,202703),(1562,206687),(1562,206705),(1562,206706),(1571,279),(1571,521),(1571,720),(1571,1562),(1571,1812),(1571,1930),(1571,2157),(1571,3376),(1571,3543),(1571,3612),(1571,5572),(1571,8440),(1571,9663),(1571,9937),(1571,10950),(1571,14601),(1571,14819),(1571,15156),(1571,15483),(1571,33352),(1571,33553),(1571,165340),(1571,218122),(1571,219404),(1571,226846),(1572,258),(1572,444),(1572,483),(1572,642),(1572,703),(1572,720),(1572,1321),(1572,1552),(1572,3799),(1572,5572),(1572,6149),(1572,9663),(1572,9758),(1572,10950),(1572,14512),(1572,14601),(1572,14819),(1572,15483),(1572,18525),(1572,177309),(1572,187844),(1572,188329),(1572,192707),(1572,219404),(1572,226838),(1573,502),(1573,720),(1573,736),(1573,818),(1573,822),(1573,4709),(1573,5572),(1573,8015),(1573,9663),(1573,10794),(1573,10808),(1573,10950),(1573,11720),(1573,13015),(1573,14601),(1573,14765),(1573,14819),(1573,15246),(1573,33553),(1573,156788),(1573,158770),(1573,195741),(1573,207771),(1574,520),(1574,158375),(1574,165675),(1574,165676),(1574,165686),(1576,1568),(1576,1852),(1576,4565),(1576,10410),(1576,12377),(1576,41645),(1577,779),(1577,1852),(1577,4565),(1577,10084),(1577,10410),(1577,11738),(1577,12377),(1577,41645),(1578,396),(1578,931),(1578,2320),(1578,2340),(1578,2792),(1578,5565),(1578,5572),(1578,5573),(1578,6075),(1578,11925),(1578,14687),(1578,155464),(1579,1465),(1579,2642),(1579,2831),(1579,4113),(1579,5331),(1579,5566),(1579,5774),(1579,10148),(1579,10864),(1579,15222),(1579,179298),(1579,179300),(1579,235679),(1581,65),(1581,212),(1581,886),(1581,1441),(1581,1655),(1581,5854),(1581,6581),(1581,9799),(1581,12670),(1581,171366),(1581,187056),(1581,207317),(1584,578),(1584,5288),(1584,6270),(1584,41591),(1585,65),(1585,290),(1585,818),(1585,974),(1585,1252),(1585,1415),(1585,5570),(1585,5571),(1585,33965),(1585,156115),(1585,184559),(1585,207317),(1586,567),(1586,596),(1586,703),(1586,787),(1586,931),(1586,1533),(1586,2340),(1586,2669),(1586,2872),(1586,3030),(1586,3344),(1586,3598),(1586,5585),(1586,6149),(1586,9826),(1586,10092),(1586,11363),(1586,13028),(1586,15160),(1587,380),(1587,791),(1587,2029),(1587,4129),(1587,10041),(1587,10183),(1588,2920),(1588,6075),(1588,6270),(1588,10809),(1588,11672),(1588,40905),(1588,179431),(1590,766),(1590,187056),(1591,1465),(1591,1625),(1591,1956),(1591,2606),(1591,3061),(1591,3510),(1591,4555),(1591,4932),(1591,5809),(1591,156702),(1591,187056),(1591,192519),(1593,2598),(1593,4062),(1593,4225),(1593,4630),(1593,5146),(1593,5566),(1593,5647),(1593,5648),(1593,12616),(1593,15101),(1593,15252),(1593,41180),(1593,179431),(1593,209387),(1597,591),(1597,822),(1597,977),(1597,2606),(1597,3454),(1597,3800),(1597,4604),(1597,5599),(1597,5600),(1597,5601),(1597,5602),(1597,5604),(1597,5605),(1597,11612),(1597,13027),(1598,378),(1598,516),(1598,570),(1598,1415),(1598,5600),(1598,6149),(1598,9748),(1598,10909),(1598,11333),(1598,13073),(1598,15162),(1598,41381),(1599,572),(1599,703),(1599,931),(1599,3923),(1599,4108),(1599,4183),(1599,6562),(1599,9823),(1599,10183),(1599,11001),(1599,15325),(1599,18047),(1599,18330),(1599,162271),(1599,181324),(1599,197526),(1599,202692),(1613,852),(1613,215404),(1613,233950),(1619,75),(1619,534),(1619,612),(1619,1336),(1619,1666),(1619,1930),(1619,5098),(1619,5626),(1619,7638),(1619,10594),(1619,12371),(1619,13017),(1619,13142),(1619,15009),(1619,18034),(1619,33626),(1619,168713),(1620,782),(1620,1308),(1620,2051),(1620,2111),(1620,2139),(1620,2698),(1620,2708),(1620,2908),(1620,3720),(1620,3997),(1620,5440),(1620,6086),(1620,13129),(1620,14819),(1620,15127),(1620,41645),(1620,215141),(1621,5570),(1621,5626),(1621,5628),(1621,5642),(1621,7597),(1621,11411),(1621,11860),(1621,33626),(1621,160478),(1621,160483),(1621,160486),(1621,160488),(1621,160497),(1621,160500),(1624,387),(1624,1022),(1624,1421),(1624,2251),(1624,3725),(1624,4896),(1624,210608),(1635,402),(1635,741),(1635,2038),(1635,4565),(1635,6017),(1635,6089),(1635,10685),(1635,11628),(1635,188959),(1636,2038),(1636,2870),(1636,4896),(1636,4957),(1636,5810),(1636,188750),(1637,258),(1637,822),(1637,992),(1637,2776),(1637,3306),(1637,157251),(1639,1422),(1639,2799),(1639,6104),(1639,10617),(1639,33461),(1639,228194),(1640,3060),(1640,5600),(1640,5666),(1640,6149),(1640,6201),(1640,9844),(1640,12425),(1640,12670),(1640,157912),(1640,170154),(1640,203113),(1642,1332),(1642,2547),(1642,2812),(1642,3713),(1642,6104),(1642,10333),(1645,529),(1645,570),(1645,787),(1645,1417),(1645,1936),(1645,2013),(1645,3446),(1645,6148),(1645,7281),(1645,9826),(1645,9937),(1645,10909),(1645,11038),(1645,33519),(1645,41385),(1645,191314),(1645,204173),(1645,214780),(1646,577),(1646,818),(1646,1739),(1646,2394),(1646,2913),(1646,4508),(1646,5565),(1646,5600),(1646,6270),(1646,6984),(1646,6985),(1646,6986),(1646,6987),(1646,7920),(1646,41385),(1646,181858),(1646,185722),(1648,931),(1648,1743),(1648,2842),(1648,4379),(1648,5540),(1648,5671),(1648,5672),(1648,5674),(1648,5678),(1648,5679),(1648,5680),(1648,6162),(1648,9682),(1648,10875),(1648,12392),(1648,220265),(1649,2964),(1649,3737),(1649,4116),(1649,4379),(1649,5540),(1649,5684),(1649,6155),(1649,10875),(1649,14544),(1649,14999),(1649,161891),(1649,163186),(1651,911),(1651,1328),(1651,2038),(1651,3136),(1651,6038),(1651,11014),(1651,155845),(1656,387),(1656,470),(1656,494),(1656,534),(1656,1701),(1656,5809),(1656,9725),(1656,15160),(1656,179585),(1667,970),(1667,3028),(1667,4260),(1667,4970),(1667,5698),(1667,10349),(1667,10794),(1667,157160),(1669,339),(1669,2106),(1669,2808),(1669,155460),(1669,155723),(1677,577),(1677,634),(1677,727),(1677,963),(1677,1228),(1677,1416),(1677,1741),(1677,2495),(1677,2635),(1677,2776),(1677,4746),(1677,5565),(1677,5626),(1677,5707),(1677,5708),(1677,5711),(1677,5716),(1677,5718),(1683,1261),(1683,2618),(1683,3036),(1683,3134),(1683,4456),(1683,5705),(1683,6150),(1685,1852),(1685,4565),(1685,5385),(1685,14626),(1685,14759),(1685,156810),(1685,157963),(1687,1612),(1687,2821),(1687,3714),(1687,4392),(1687,4565),(1687,6083),(1687,157972),(1687,157974),(1687,158018),(1688,291),(1688,2551),(1688,3714),(1688,4565),(1688,5726),(1688,6092),(1688,14759),(1690,472),(1690,572),(1690,587),(1690,1295),(1690,1411),(1690,5689),(1690,5891),(1690,8087),(1690,10292),(1690,11221),(1690,13006),(1690,155955),(1690,156149),(1690,157958),(1690,157959),(1690,198438),(1690,198441),(1691,3530),(1691,3540),(1691,5502),(1691,6779),(1691,12105),(1691,13006),(1691,155678),(1691,193698),(1696,625),(1696,627),(1696,657),(1696,798),(1696,801),(1696,2150),(1696,2669),(1696,3598),(1696,4426),(1696,6259),(1696,7312),(1696,9663),(1696,9826),(1696,10022),(1696,10371),(1696,10714),(1696,10950),(1696,13006),(1696,13092),(1696,13125),(1696,14687),(1696,14707),(1696,14805),(1696,14819),(1696,14831),(1696,17987),(1696,18320),(1696,34117),(1696,157560),(1696,162810),(1696,165288),(1696,167043),(1696,176691),(1696,188186),(1696,191327),(1696,206642),(1696,212406),(1698,156096),(1698,157890),(1698,163128),(1698,187677),(1701,378),(1701,502),(1701,720),(1701,822),(1701,1420),(1701,1568),(1701,1666),(1701,3930),(1701,4245),(1701,10685),(1701,10950),(1701,11207),(1701,14570),(1701,14601),(1701,14707),(1701,14819),(1701,15234),(1701,18034),(1701,33482),(1701,156805),(1701,195295),(1705,4458),(1705,4565),(1705,14759),(1710,796),(1710,2800),(1710,4668),(1710,5430),(1710,10714),(1710,11268),(1710,13001),(1717,417),(1717,736),(1717,818),(1717,1936),(1717,2887),(1717,3088),(1717,3134),(1717,3692),(1717,3720),(1717,5744),(1717,6078),(1717,10614),(1717,11869),(1717,155697),(1722,3776),(1722,174363),(1722,174369),(1722,174371),(1722,174375),(1722,174378),(1722,174379),(1722,174389),(1724,242),(1724,1809),(1724,8828),(1724,9715),(1724,9717),(1724,10562),(1724,10718),(1724,10834),(1724,12555),(1724,160977),(1724,162365),(1724,179100),(1724,180547),(1724,200918),(1724,202816),(1725,100),(1725,542),(1725,699),(1725,797),(1725,2124),(1725,2356),(1725,3306),(1725,3691),(1725,4344),(1725,9823),(1725,9932),(1725,10131),(1725,10449),(1725,18087),(1725,33699),(1725,158375),(1725,159278),(1725,160367),(1725,165100),(1725,165212),(1725,165214),(1726,539),(1726,6163),(1726,8613),(1726,8828),(1726,9715),(1726,9717),(1726,12555),(1726,173776),(1726,179430),(1726,180547),(1726,208630),(1726,209756),(1729,8847),(1729,9390),(1729,13130),(1729,14778),(1729,15192),(1729,192913),(1729,207411),(1734,5153),(1734,157894),(1734,163306),(1770,393),(1770,1721),(1770,2946),(1770,3538),(1770,4355),(1770,14985),(1771,242),(1771,279),(1771,1956),(1771,2652),(1771,8828),(1771,9715),(1771,9717),(1771,11064),(1771,15060),(1771,41523),(1771,173775),(1771,179430),(1771,180547),(1771,209714),(1777,840),(1777,4743),(1777,5174),(1777,5597),(1777,5939),(1777,6086),(1777,6091),(1777,11139),(1777,11208),(1779,592),(1779,14737),(1779,156052),(1779,156338),(1781,2210),(1781,2212),(1781,3693),(1781,4627),(1781,5769),(1781,6078),(1781,6256),(1781,6711),(1781,18330),(1781,33577),(1781,156810),(1781,164090),(1788,246),(1788,733),(1788,1691),(1788,6027),(1788,207010),(1792,572),(1792,733),(1792,779),(1792,1650),(1792,6593),(1792,9673),(1792,10624),(1792,12396),(1792,15016),(1792,187844),(1792,207673),(1792,207716),(1792,208513),(1792,208514),(1792,208515),(1808,237),(1808,1025),(1808,2398),(1808,33973),(1808,154937),(1808,174262),(1808,174272),(1808,174274),(1808,174280),(1808,174281),(1808,174283),(1808,174286),(1808,207928),(1808,208289),(1809,128),(1809,10183),(1809,171366),(1813,516),(1813,531),(1813,1523),(1813,1552),(1813,2483),(1813,3036),(1813,3182),(1813,3298),(1813,3734),(1813,4084),(1813,5809),(1813,5810),(1813,7340),(1813,10114),(1813,10138),(1813,11001),(1813,14794),(1813,33519),(1813,162706),(1813,162813),(1813,168346),(1813,185459),(1813,211062),(1813,226791),(1817,949),(1817,5679),(1817,6259),(1819,1253),(1819,2038),(1819,156578),(1824,563),(1824,1453),(1824,1668),(1824,2336),(1824,9799),(1830,2106),(1830,6110),(1830,6163),(1831,237),(1831,970),(1831,4056),(1831,5568),(1831,5828),(1831,9457),(1831,12392),(1831,12670),(1831,33479),(1831,212873),(1832,290),(1832,2024),(1832,4636),(1832,14765),(1832,179430),(1832,179431),(1833,237),(1833,572),(1833,740),(1833,4344),(1833,9766),(1833,10181),(1833,12532),(1833,155482),(1833,156091),(1833,165770),(1833,165787),(1833,165798),(1833,165803),(1833,199856),(1844,212),(1844,613),(1844,1418),(1844,1437),(1844,1448),(1844,1568),(1844,1936),(1844,2483),(1844,9727),(1844,10051),(1844,14669),(1844,14789),(1844,15009),(1844,156031),(1844,159468),(1844,168346),(1844,169356),(1844,227432),(1850,837),(1850,3485),(1850,5970),(1852,321),(1852,708),(1852,905),(1852,1701),(1852,2733),(1852,2736),(1852,5597),(1852,10084),(1852,11399),(1852,11612),(1852,18029),(1852,18030),(1852,18031),(1858,2535),(1858,4375),(1858,9951),(1858,10542),(1858,10607),(1858,14544),(1858,179431),(1858,188178),(1865,658),(1865,1316),(1865,1860),(1865,1938),(1865,2569),(1865,3180),(1865,3625),(1865,3799),(1865,4235),(1865,5938),(1865,12988),(1865,13065),(1865,14643),(1865,157186),(1865,179430),(1865,209714),(1874,2881),(1874,2885),(1874,3644),(1874,4106),(1874,5856),(1874,10685),(1874,160910),(1878,167799),(1878,167805),(1878,167808),(1878,167809),(1878,167812),(1878,167818),(1878,167822),(1878,167830),(1878,167833),(1880,1008),(1880,1981),(1880,4278),(1880,7059),(1880,40847),(1880,193008),(1883,187),(1883,242),(1883,378),(1883,441),(1883,529),(1883,789),(1883,796),(1883,966),(1883,2392),(1883,2881),(1883,2885),(1883,3036),(1883,5565),(1883,5835),(1883,5860),(1883,5861),(1883,5863),(1883,5864),(1883,5865),(1883,6149),(1883,6165),(1883,208455),(1885,1439),(1885,2063),(1885,3436),(1885,5698),(1885,9963),(1885,14735),(1887,54612),(1887,159431),(1887,170339),(1887,173903),(1887,180052),(1887,180059),(1887,180061),(1887,187056),(1891,526),(1891,803),(1891,1423),(1891,2902),(1891,3373),(1891,3388),(1891,9831),(1891,10016),(1891,10527),(1891,10842),(1891,11196),(1891,160134),(1891,161176),(1891,178710),(1891,210346),(1891,232452),(1891,232453),(1891,232454),(1892,526),(1892,1155),(1892,2280),(1892,2902),(1892,5144),(1892,9831),(1892,10013),(1892,10014),(1892,10015),(1892,10527),(1892,161176),(1893,530),(1893,1399),(1893,2011),(1893,2063),(1893,4270),(1893,4488),(1893,6128),(1893,161176),(1894,1399),(1894,5340),(1894,6092),(1894,10013),(1894,10527),(1894,11491),(1894,13027),(1894,14819),(1894,14922),(1894,18069),(1894,161176),(1894,163239),(1894,163242),(1894,163248),(1894,163252),(1894,163255),(1894,198710),(1895,797),(1895,10013),(1895,10629),(1895,11491),(1895,158449),(1895,160840),(1895,160946),(1895,161176),(1895,163272),(1895,163277),(1895,163295),(1900,279),(1900,1601),(1900,2149),(1900,2231),(1900,3391),(1900,4436),(1900,4668),(1900,5616),(1900,6782),(1900,18026),(1901,1599),(1901,5600),(1901,5812),(1903,1453),(1903,1595),(1903,4563),(1904,233),(1904,549),(1904,1156),(1904,1411),(1904,1956),(1904,4342),(1907,458),(1907,911),(1907,966),(1907,1969),(1907,2323),(1907,2988),(1907,3077),(1907,3434),(1907,5890),(1907,5891),(1907,6262),(1907,10776),(1907,14751),(1907,15097),(1907,34094),(1909,5906),(1909,9673),(1909,11857),(1909,14781),(1909,15106),(1909,180077),(1911,616),(1911,1964),(1911,1975),(1911,5475),(1911,5894),(1911,5895),(1911,5939),(1911,6091),(1911,10364),(1913,380),(1913,856),(1913,1567),(1913,2336),(1913,2564),(1913,3737),(1913,5565),(1913,5896),(1913,5897),(1913,6089),(1913,9840),(1913,10909),(1913,41599),(1913,206662),(1913,208666),(1921,1022),(1921,5904),(1924,83),(1924,736),(1924,849),(1924,853),(1924,3312),(1924,4270),(1924,9715),(1924,9717),(1924,15009),(1924,15246),(1924,34154),(1924,156230),(1924,163420),(1924,163455),(1924,179102),(1924,179430),(1924,193544),(1927,387),(1927,582),(1927,1299),(1927,1402),(1927,1419),(1927,1718),(1927,2766),(1927,2800),(1927,3695),(1927,4375),(1927,4456),(1927,8570),(1927,8828),(1927,9715),(1927,12393),(1927,13005),(1927,13073),(1927,14760),(1927,15162),(1927,18034),(1927,18047),(1927,46951),(1927,157344),(1927,162365),(1927,163207),(1927,179100),(1927,179102),(1927,184987),(1927,222797),(1930,1872),(1930,7002),(1930,8803),(1930,8828),(1930,156855),(1930,158124),(1930,158456),(1930,161184),(1930,163455),(1930,163561),(1930,171556),(1930,179431),(1931,699),(1931,963),(1931,1974),(1931,5600),(1933,2341),(1933,3358),(1933,5911),(1933,33465),(1933,166591),(1933,210530),(1934,497),(1934,2038),(1934,3089),(1934,4326),(1934,4333),(1934,5914),(1934,6034),(1934,10818),(1934,190531),(1934,190532),(1946,282),(1946,2157),(1946,3088),(1946,3490),(1946,4563),(1946,4565),(1946,5380),(1947,697),(1947,798),(1947,1016),(1947,2971),(1947,5927),(1948,351),(1948,720),(1948,782),(1948,2483),(1948,2708),(1948,4680),(1948,5572),(1948,8181),(1948,9748),(1948,10950),(1948,14735),(1948,14964),(1948,15156),(1948,15483),(1948,18520),(1948,159546),(1948,163516),(1948,166093),(1948,177127),(1948,179430),(1948,185686),(1948,198962),(1948,226710),(1949,387),(1949,582),(1949,627),(1949,736),(1949,918),(1949,1583),(1949,3152),(1949,4123),(1949,4399),(1949,4923),(1949,4942),(1949,4950),(1949,6149),(1949,9826),(1949,10714),(1949,12193),(1950,383),(1950,6075),(1950,14570),(1951,531),(1951,2831),(1951,179431),(1954,1453),(1954,2362),(1954,2583),(1954,4379),(1954,187844),(1955,2804),(1955,5565),(1955,11612),(1955,158023),(1955,163075),(1955,170383),(1955,203624),(1955,207673),(1955,207928),(1955,208666),(1956,1333),(1956,3306),(1956,3593),(1956,5930),(1956,6054),(1956,9826),(1956,12392),(1956,18034),(1956,212412),(1956,215020),(1956,225061),(1957,828),(1957,1157),(1957,2320),(1957,2801),(1957,5927),(1957,9937),(1957,155501),(1957,212643),(1958,213),(1958,515),(1958,2123),(1958,5600),(1958,13097),(1958,170652),(1958,217324),(1961,9755),(1961,33465),(1966,347),(1966,1160),(1966,1200),(1966,1241),(1966,2857),(1966,3072),(1966,5127),(1966,10180),(1966,10198),(1966,14704),(1969,534),(1969,2492),(1969,9748),(1969,12392),(1969,15363),(1969,155445),(1969,163671),(1970,255),(1970,428),(1970,907),(1970,6095),(1970,9714),(1970,10541),(1970,172972),(1970,172980),(1970,172992),(1970,172998),(1975,9714),(1975,9736),(1975,10541),(1979,657),(1979,720),(1979,1671),(1979,2546),(1979,3376),(1979,3800),(1979,4375),(1979,5774),(1979,6506),(1979,8828),(1979,9663),(1979,9715),(1979,9717),(1979,12405),(1979,13027),(1979,14601),(1979,14760),(1979,15271),(1979,33456),(1979,160117),(1979,162365),(1979,175975),(1979,179102),(1979,179431),(1979,189115),(1979,202541),(1979,222915),(1979,227591),(1979,227595),(1985,740),(1985,4529),(1985,5944),(1985,6083),(1985,6135),(1985,10163),(1985,10326),(1985,33617),(1988,321),(1988,917),(1988,1605),(1988,1647),(1988,1812),(1988,2300),(1988,3051),(1988,3848),(1988,3929),(1988,6054),(1988,6150),(1988,6203),(1988,7021),(1988,9826),(1988,10183),(1988,13149),(1989,279),(1989,369),(1989,383),(1989,725),(1989,828),(1989,1010),(1989,1759),(1989,3752),(1989,4232),(1989,5310),(1989,9957),(1995,1454),(1995,1529),(1995,5295),(1995,5959),(1995,5960),(1995,5961),(1995,6956),(1995,41586),(1995,41645),(1995,184134),(1996,483),(1996,1454),(1996,1456),(1996,3510),(1996,5127),(1996,5962),(1996,5964),(1996,6956),(1996,12354),(1996,41586),(1996,41645),(1996,184134),(1997,380),(1997,963),(1997,2960),(1997,3713),(1997,4809),(1997,5744),(1997,9920),(1997,41585),(1997,41586),(1999,965),(1999,1495),(1999,1679),(1999,2317),(1999,5982),(1999,9457),(1999,10183),(2001,242),(2001,494),(2001,2334),(2001,13142),(2008,964),(2008,2280),(2008,3994),(2009,570),(2009,922),(2009,2137),(2009,2566),(2009,5248),(2009,5984),(2009,12392),(2009,33358),(2009,209983),(2011,393),(2011,970),(2011,1228),(2011,1525),(2011,2137),(2011,2630),(2011,4470),(2011,4514),(2011,6091),(2011,161919),(2011,173919),(2011,187056),(2013,1731),(2013,1808),(2013,2629),(2013,3737),(2013,4222),(2013,4653),(2013,10183),(2013,14781),(2013,158558),(2018,582),(2018,1459),(2018,2038),(2018,2381),(2018,5989),(2018,5990),(2018,13027),(2018,155539),(2018,165086),(2018,196700),(2018,196701),(2022,3452),(2022,6018),(2022,8680),(2022,9468),(2022,9821),(2022,10911),(2022,12547),(2022,14512),(2022,15120),(2022,161757),(2022,161762),(2022,161779),(2022,162632),(2023,643),(2023,2673),(2023,3525),(2024,526),(2024,531),(2024,697),(2024,779),(2024,1402),(2024,1465),(2024,2983),(2024,3074),(2024,4653),(2024,5600),(2024,5992),(2024,6731),(2024,9672),(2024,10292),(2024,10364),(2026,1812),(2026,1930),(2026,4668),(2026,14903),(2026,18233),(2026,159710),(2034,796),(2034,1601),(2034,2149),(2034,2231),(2034,12670),(2034,33426),(2034,164253),(2034,183637),(2034,206318),(2043,2800),(2043,4668),(2043,6149),(2043,11268),(2044,520),(2044,1731),(2044,2301),(2044,2964),(2044,3667),(2044,12436),(2044,15021),(2044,40847),(2044,47023),(2044,191100),(2044,192966),(2048,236),(2048,310),(2048,312),(2048,520),(2048,818),(2048,1701),(2048,2964),(2048,3703),(2048,4565),(2048,6149),(2048,9826),(2048,14544),(2048,209714),(2048,220903),(2054,1233),(2054,1310),(2054,1635),(2054,4344),(2054,4488),(2054,5289),(2054,6027),(2054,158558),(2055,2673),(2055,5701),(2055,6174),(2056,477),(2056,586),(2056,5290),(2056,6054),(2056,6178),(2057,515),(2057,572),(2057,701),(2057,1664),(2057,1808),(2057,2983),(2057,6180),(2057,7412),(2057,197602),(2059,483),(2059,1454),(2059,6956),(2059,41586),(2059,184134),(2062,90),(2062,380),(2062,996),(2062,1261),(2062,1650),(2062,2161),(2062,2246),(2062,2405),(2062,2872),(2062,2982),(2062,3640),(2062,3910),(2062,3914),(2062,6074),(2062,6148),(2062,6808),(2062,18035),(2062,18293),(2062,189359),(2067,839),(2067,1612),(2067,3801),(2067,9951),(2067,11440),(2067,12405),(2067,14626),(2067,157444),(2067,160515),(2067,191586),(2069,800),(2069,3149),(2069,6719),(2069,13142),(2069,33780),(2069,160488),(2074,5498),(2074,6230),(2074,6231),(2074,10183),(2080,417),(2080,1852),(2080,2792),(2080,6092),(2080,8828),(2080,9715),(2080,179430),(2080,179431),(2084,293),(2084,642),(2084,11014),(2084,186757),(2085,779),(2085,898),(2085,6219),(2085,14988),(2085,237849),(2085,237850),(2088,4668),(2088,5906),(2088,6149),(2088,6220),(2088,9937),(2088,10978),(2088,12366),(2100,378),(2100,1402),(2105,3687),(2105,6139),(2105,10683),(2105,13130),(2105,33910),(2105,44447),(2105,155722),(2105,156777),(2105,160140),(2105,167310),(2105,178649),(2105,208445),(2105,215404),(2105,226226),(2110,772),(2110,2708),(2110,3452),(2110,4668),(2110,6297),(2110,162461),(2110,187729),(2112,242),(2112,2671),(2112,10594),(2112,15009),(2114,3994),(2114,4565),(2114,9951),(2114,12413),(2114,14760),(2114,41645),(2116,416),(2116,1196),(2116,6309),(2116,15160),(2118,417),(2118,703),(2118,1366),(2118,10326),(2118,11314),(2118,11925),(2118,13092),(2118,14536),(2118,33518),(2118,157325),(2118,162262),(2118,163335),(2118,167145),(2118,167149),(2118,167159),(2118,167164),(2118,208611),(2118,228495),(2119,6315),(2119,6316),(2119,9844),(2122,2708),(2123,222),(2123,8440),(2123,179430),(2123,179431),(2133,3366),(2133,13046),(2133,168663),(2133,168669),(2133,168672),(2133,168673),(2133,168676),(2133,168678),(2133,168679),(2133,168683),(2135,2964),(2135,5455),(2140,90),(2140,549),(2140,14964),(2142,417),(2142,586),(2142,772),(2142,1812),(2142,3450),(2142,6149),(2142,9786),(2142,9826),(2142,9844),(2142,10183),(2142,10978),(2142,11363),(2142,11719),(2142,11730),(2142,13063),(2142,14512),(2142,14819),(2142,156022),(2142,161306),(2142,182069),(2142,226376),(2148,1416),(2148,3017),(2148,4344),(2148,10391),(2155,378),(2155,642),(2155,5629),(2155,34094),(2157,4379),(2157,15246),(2157,168603),(2163,387),(2163,974),(2163,1336),(2163,1927),(2163,1930),(2163,2441),(2163,3306),(2163,3875),(2163,6876),(2163,9743),(2163,9758),(2163,9826),(2163,9937),(2163,10250),(2163,10738),(2163,11259),(2163,15381),(2163,15483),(2163,18034),(2163,18253),(2163,156165),(2176,387),(2176,1155),(2176,2143),(2176,9937),(2176,12565),(2176,13014),(2176,13063),(2185,177341),(2196,380),(2196,455),(2196,494),(2196,965),(2196,970),(2196,1328),(2196,1647),(2196,1909),(2196,3739),(2196,4432),(2196,4902),(2196,5498),(2196,5948),(2196,6410),(2196,11483),(2196,171070),(2196,189421),(2207,3045),(2207,167863),(2207,175600),(2207,232411),(2211,220),(2211,2606),(2211,3691),(2211,9833),(2211,10180),(2211,34215),(2251,596),(2251,1326),(2251,1664),(2251,2132),(2251,4320),(2251,14512),(2251,207767),(2252,212),(2252,237),(2252,255),(2252,293),(2252,494),(2252,572),(2252,931),(2252,1449),(2252,1568),(2252,2708),(2252,2808),(2252,2913),(2252,6019),(2252,6472),(2252,9826),(2252,10707),(2252,13014),(2252,13142),(2252,14735),(2252,173502),(2253,220),(2253,236),(2253,258),(2253,441),(2253,836),(2253,1157),(2253,1956),(2253,3063),(2253,4812),(2253,6054),(2253,9758),(2253,10202),(2253,10786),(2253,11109),(2253,11121),(2253,11122),(2253,11123),(2253,11124),(2253,14819),(2255,586),(2255,1862),(2255,2038),(2255,3183),(2255,3190),(2255,5451),(2255,6799),(2255,10183),(2255,10768),(2255,12392),(2266,90),(2266,558),(2266,1416),(2266,1552),(2266,1605),(2266,1900),(2266,2341),(2266,5159),(2266,187056),(2268,392),(2268,1461),(2268,1706),(2268,2596),(2268,6464),(2268,6678),(2268,13014),(2268,18165),(2268,223438),(2270,616),(2270,818),(2270,1605),(2270,3071),(2270,3258),(2270,3412),(2270,4152),(2270,4372),(2270,6998),(2270,9920),(2270,10048),(2270,10842),(2270,170771),(2275,236),(2275,703),(2275,818),(2275,910),(2275,1402),(2275,2340),(2275,2483),(2275,4595),(2275,5340),(2275,6078),(2275,9665),(2275,9826),(2275,10085),(2275,10410),(2275,12365),(2275,15300),(2275,177185),(2275,227890),(2277,803),(2277,3249),(2277,6089),(2277,9685),(2277,14544),(2280,1480),(2280,14522),(2280,161307),(2280,170710),(2280,170711),(2280,170713),(2280,170715),(2280,170718),(2280,170722),(2280,170726),(2280,170728),(2280,170729),(2280,170730),(2280,170731),(2280,170737),(2280,187056),(2287,542),(2287,898),(2287,1691),(2287,1721),(2287,1974),(2287,2394),(2287,4344),(2287,4507),(2287,10726),(2287,12670),(2288,494),(2288,699),(2288,1003),(2288,1014),(2288,1332),(2288,2251),(2288,3691),(2288,4262),(2288,4320),(2288,5091),(2288,6025),(2288,7879),(2288,8764),(2288,9468),(2288,9606),(2288,10181),(2288,10201),(2288,13072),(2289,1014),(2289,1465),(2289,1806),(2289,1872),(2289,2038),(2290,835),(2290,1799),(2290,2315),(2290,2444),(2292,1361),(2292,3090),(2292,179430),(2293,572),(2293,4325),(2293,8631),(2293,41175),(2293,157690),(2293,162296),(2293,168033),(2293,171329),(2293,171343),(2293,171346),(2293,179430),(2294,886),(2294,168033),(2294,168039),(2294,168040),(2294,168042),(2294,168049),(2294,168051),(2294,168054),(2294,168063),(2294,168069),(2295,10183),(2295,179430),(2295,179431),(2300,6075),(2300,6496),(2300,13005),(2300,176746),(2300,177208),(2300,177216),(2300,177218),(2300,177219),(2300,177224),(2300,177227),(2300,177228),(2300,177230),(2300,177231),(2300,177232),(2309,3096),(2309,3205),(2309,3878),(2309,4414),(2309,5914),(2310,509),(2310,2037),(2310,2251),(2310,3932),(2310,4615),(2310,5035),(2310,5895),(2310,7368),(2310,7411),(2310,7412),(2310,9920),(2310,10541),(2310,14643),(2310,14704),(2310,161919),(2310,196544),(2312,855),(2312,1299),(2312,1465),(2312,1605),(2312,1701),(2312,2038),(2312,2343),(2312,3205),(2312,3289),(2312,4152),(2312,4158),(2312,5069),(2312,5153),(2312,5515),(2312,6170),(2312,6333),(2312,9748),(2312,9920),(2312,18035),(2312,41645),(2312,161257),(2320,258),(2320,1336),(2320,1562),(2320,3800),(2320,4245),(2320,4460),(2320,5422),(2320,9758),(2320,10084),(2320,10185),(2320,10617),(2320,10950),(2320,13015),(2320,14601),(2320,14819),(2320,18420),(2320,161998),(2320,185266),(2320,185692),(2320,187844),(2320,188955),(2320,220935),(2355,2246),(2355,2754),(2355,2982),(2355,3321),(2355,3800),(2355,5597),(2355,6027),(2355,6381),(2355,6511),(2355,13001),(2355,18035),(2359,211),(2359,279),(2359,417),(2359,701),(2359,1279),(2359,4404),(2359,6137),(2359,6514),(2359,10594),(2359,11612),(2359,13005),(2359,40895),(2359,161288),(2370,242),(2370,591),(2370,701),(2370,2106),(2370,9937),(2395,271),(2395,1200),(2395,1396),(2395,2070),(2395,2280),(2395,2343),(2395,2673),(2395,3035),(2395,5276),(2395,6088),(2395,6716),(2428,2974),(2428,5565),(2428,6917),(2447,2974),(2447,3036),(2447,3570),(2447,3648),(2447,5950),(2447,186962),(2447,186965),(2447,187056),(2453,417),(2453,1365),(2453,2231),(2453,12670),(2453,14570),(2454,818),(2454,855),(2454,1155),(2454,2043),(2454,3714),(2454,4391),(2454,4820),(2454,5144),(2454,6150),(2454,6464),(2454,166930),(2454,170362),(2486,818),(2486,5457),(2486,12554),(2486,170362),(2486,188178),(2486,223438),(2493,157186),(2493,160350),(2493,160358),(2493,160359),(2493,160362),(2493,160364),(2501,90),(2501,107),(2501,782),(2501,818),(2501,1308),(2501,1453),(2501,1589),(2501,3022),(2501,3045),(2501,4663),(2501,10685),(2501,10950),(2501,14967),(2501,15156),(2501,15483),(2501,33507),(2501,159433),(2501,164713),(2501,174617),(2501,185702),(2501,187023),(2501,187844),(2501,188955),(2502,220),(2502,782),(2502,818),(2502,1453),(2502,1589),(2502,2251),(2502,9663),(2502,9937),(2502,10562),(2502,10950),(2502,11134),(2502,14819),(2502,14967),(2502,15483),(2502,18067),(2502,18520),(2502,18522),(2502,33779),(2502,164148),(2502,186450),(2502,188955),(2503,90),(2503,417),(2503,744),(2503,782),(2503,818),(2503,1295),(2503,3246),(2503,3851),(2503,3864),(2503,4087),(2503,6086),(2503,6110),(2503,6710),(2503,9663),(2503,10410),(2503,10950),(2503,11134),(2503,14735),(2503,14819),(2503,14967),(2503,18269),(2503,164148),(2503,185702),(2503,187844),(2503,226521),(2503,226522),(2539,213),(2539,456),(2539,641),(2539,970),(2539,1157),(2539,1650),(2539,1716),(2539,2173),(2539,2356),(2539,2568),(2539,2783),(2539,3200),(2539,3595),(2539,4034),(2539,5083),(2539,5565),(2539,5616),(2539,5625),(2539,6069),(2539,6277),(2539,9457),(2539,10707),(2539,14638),(2539,163127),(2539,170652),(2567,2336),(2567,3203),(2567,5565),(2567,9094),(2567,10168),(2567,10352),(2567,33483),(2567,221446),(2567,229078),(2575,246),(2575,470),(2575,1421),(2575,1969),(2575,2407),(2575,3450),(2575,4289),(2575,8570),(2575,10103),(2575,10183),(2575,11061),(2575,15058),(2575,33501),(2575,33624),(2577,2350),(2577,2682),(2577,2964),(2577,3973),(2577,4565),(2604,422),(2604,447),(2604,1010),(2604,1228),(2604,2564),(2604,2957),(2604,18034),(2604,33343),(2604,188991),(2604,208611),(2604,208992),(2610,1361),(2619,1338),(2619,5938),(2621,741),(2621,2038),(2621,2735),(2621,187056),(2636,1653),(2636,9748),(2636,159358),(2637,818),(2637,1415),(2637,1566),(2637,2669),(2637,3298),(2637,3450),(2637,4862),(2637,4949),(2637,6622),(2637,8232),(2637,9955),(2637,10170),(2637,10904),(2637,11612),(2637,12193),(2637,14742),(2637,15198),(2637,208397),(2637,230413),(2637,238137),(2637,238138),(2639,242),(2639,5914),(2639,6255),(2639,10183),(2639,10818),(2642,242),(2642,6592),(2642,9799),(2642,10909),(2642,12547),(2642,196407),(2649,380),(2649,1421),(2649,3883),(2649,5732),(2649,173303),(2652,236),(2652,570),(2652,965),(2652,1003),(2652,1445),(2652,1879),(2652,2250),(2652,2251),(2652,2337),(2652,2887),(2652,3303),(2652,4426),(2652,5157),(2652,5483),(2652,5502),(2652,6255),(2652,7002),(2652,9740),(2652,9758),(2652,10226),(2652,10809),(2652,12544),(2652,13006),(2652,13125),(2652,14576),(2652,14624),(2652,14669),(2652,15068),(2652,15108),(2652,15111),(2652,15219),(2652,15365),(2652,41329),(2652,156661),(2652,159595),(2652,167942),(2652,175522),(2652,184988),(2652,211669),(2652,212404),(2655,1328),(2655,3358),(2655,10112),(2655,10224),(2655,11169),(2655,162846),(2661,339),(2661,849),(2661,2534),(2661,2988),(2661,10084),(2661,15097),(2661,155461),(2661,155488),(2661,163455),(2662,213),(2662,3335),(2662,6259),(2662,9955),(2662,14751),(2662,161270),(2666,634),(2666,2116),(2666,2887),(2666,2964),(2666,4565),(2666,4630),(2666,10937),(2666,12965),(2666,33465),(2666,178657),(2666,185199),(2666,207268),(2666,214730),(2667,616),(2667,3392),(2667,3754),(2667,5147),(2667,5729),(2667,5774),(2667,6686),(2667,8087),(2667,10984),(2667,12105),(2667,44451),(2667,163053),(2667,196288),(2669,293),(2669,911),(2669,1860),(2669,1889),(2669,2483),(2669,3180),(2669,3799),(2669,4414),(2669,6611),(2669,9826),(2669,13149),(2669,33760),(2669,41599),(2669,47972),(2669,168683),(2669,170335),(2669,184418),(2669,185722),(2669,214789),(2675,1715),(2675,4237),(2675,4932),(2675,6150),(2675,9951),(2675,10235),(2675,11004),(2675,14909),(2675,18255),(2675,167642),(2675,192962),(2675,223213),(2675,223471),(2675,228280),(2675,228753),(2675,229652),(2687,160130),(2698,494),(2698,1850),(2698,2587),(2698,3848),(2698,5905),(2698,6038),(2698,6150),(2698,6603),(2698,10084),(2698,18165),(2698,18330),(2698,179431),(2698,210450),(2749,242),(2749,293),(2749,378),(2749,549),(2749,570),(2749,642),(2749,657),(2749,703),(2749,822),(2749,1366),(2749,1563),(2749,1591),(2749,2013),(2749,2340),(2749,2808),(2749,3023),(2749,4697),(2749,4728),(2749,5572),(2749,6149),(2749,9727),(2749,9748),(2749,10561),(2749,10685),(2749,10688),(2749,10877),(2749,10909),(2749,11325),(2749,13006),(2749,13073),(2749,14512),(2749,14778),(2749,14819),(2749,14903),(2749,15009),(2749,15167),(2749,34079),(2749,40879),(2749,156022),(2749,162502),(2749,163656),(2749,166512),(2749,211703),(2752,5906),(2752,6183),(2755,1157),(2755,182633),(2755,182638),(2755,182649),(2755,182651),(2755,182656),(2755,182657),(2756,270),(2756,658),(2756,2772),(2756,3243),(2756,3312),(2756,4862),(2756,6255),(2756,10503),(2756,14785),(2756,155334),(2756,162351),(2756,185477),(2756,233020),(2757,3184),(2757,5809),(2757,5914),(2757,6722),(2770,572),(2770,8508),(2770,13088),(2770,34145),(2770,155939),(2770,158507),(2770,170813),(2770,170821),(2770,170822),(2770,170827),(2771,5565),(2771,10183),(2771,175329),(2771,175331),(2771,175336),(2771,175339),(2771,175340),(2771,175343),(2771,175345),(2771,175357),(2771,187056),(2779,3363),(2779,10183),(2786,90),(2786,5918),(2786,10183),(2786,10594),(2786,33702),(2786,47021),(2786,47079),(2786,155845),(2787,3762),(2787,4565),(2787,4803),(2787,4862),(2787,10349),(2787,14773),(2787,14774),(2787,14775),(2789,378),(2789,4565),(2789,5144),(2789,12405),(2789,221654),(2832,3694),(2832,4897),(2832,13124),(2832,15234),(2832,18130),(2832,156507),(2841,90),(2841,549),(2841,1014),(2841,1453),(2841,2425),(2841,2504),(2841,2564),(2841,4025),(2841,4079),(2841,6701),(2841,8729),(2841,10791),(2841,10941),(2841,13065),(2841,33625),(2841,155790),(2841,156091),(2841,184167),(2841,188725),(2895,186),(2895,732),(2895,931),(2895,1224),(2895,1556),(2895,3033),(2895,3065),(2895,3134),(2895,3446),(2895,10183),(2895,18072),(2898,641),(2898,828),(2898,3568),(2898,6054),(2898,10226),(2898,10818),(2898,13001),(2898,13028),(2898,15162),(2898,159317),(2898,159318),(2898,167982),(2898,228768),(2900,1157),(2900,3801),(2900,9882),(2900,10364),(2900,13149),(2900,14626),(2907,2643),(2907,3133),(2907,4553),(2907,6464),(2907,10483),(2907,12564),(2907,162810),(2907,166631),(2907,207697),(2925,15160),(2925,18060),(2925,190722),(2959,1605),(2959,2856),(2959,3582),(2959,3583),(2959,6038),(2959,6192),(2959,6281),(2959,6704),(2959,10093),(2959,13027),(2959,14765),(2976,890),(2976,1566),(2976,1691),(2976,2136),(2976,2571),(2976,3060),(2976,5736),(2976,6027),(2976,6090),(2976,6275),(2976,6706),(2976,6713),(2976,8663),(2976,12965),(2976,158375),(2976,160910),(2976,165317),(2976,208992),(2977,392),(2977,934),(2977,1208),(2977,1605),(2977,2386),(2977,2755),(2977,2964),(2977,3344),(2977,3703),(2977,4663),(2977,5376),(2977,5923),(2977,10818),(2977,18035),(2989,409),(2989,2043),(2989,2857),(2989,4459),(2989,4478),(2989,4809),(2989,7639),(2989,9902),(2989,10183),(2989,10787),(2989,11221),(2989,18450),(2989,158130),(2989,211504),(2989,211505),(3021,236),(3021,242),(3021,612),(3021,657),(3021,922),(3021,1157),(3021,1252),(3021,2872),(3021,3255),(3021,3358),(3021,3664),(3021,5280),(3021,5918),(3021,6103),(3021,6381),(3021,11221),(3028,848),(3028,4344),(3028,156033),(3033,237),(3033,2793),(3033,3737),(3033,5565),(3033,10180),(3033,10818),(3033,208390),(3034,1706),(3034,3098),(3034,3487),(3034,3582),(3034,6737),(3034,10124),(3034,10125),(3034,11578),(3034,11931),(3034,12416),(3034,14760),(3034,198102),(3040,616),(3040,1552),(3040,1721),(3040,3800),(3040,3905),(3040,3911),(3040,5369),(3040,11221),(3040,186450),(3049,630),(3049,6732),(3049,155790),(3049,208152),(3050,167625),(3050,187056),(3059,279),(3059,2487),(3059,3010),(3059,5314),(3059,6038),(3059,13027),(3059,14546),(3059,41022),(3059,154802),(3059,171366),(3059,188618),(3059,192032),(3059,223595),(3060,2504),(3060,154802),(3062,276),(3062,4344),(3062,6415),(3062,14530),(3062,15142),(3062,33926),(3062,41316),(3062,156028),(3062,163533),(3062,164623),(3062,165168),(3062,165171),(3062,165172),(3062,165177),(3062,165184),(3062,165185),(3062,165186),(3062,165190),(3062,165193),(3062,165194),(3078,416),(3078,11184),(3078,12193),(3080,110),(3080,1691),(3080,4344),(3080,4345),(3080,6415),(3080,7024),(3080,10325),(3080,15479),(3080,33493),(3080,41613),(3082,1382),(3082,1546),(3082,3338),(3082,5386),(3082,5571),(3082,7025),(3082,9253),(3082,33618),(3082,33619),(3082,33620),(3083,417),(3083,521),(3083,1399),(3083,2944),(3083,5744),(3083,6083),(3083,11663),(3083,11937),(3083,206515),(3083,219903),(3089,1556),(3089,3851),(3089,7658),(3089,9656),(3089,9748),(3089,15225),(3089,185927),(3089,208505),(3093,255),(3093,572),(3093,33649),(3093,161693),(3093,161694),(3093,161705),(3116,1879),(3131,657),(3131,1857),(3131,2356),(3131,2987),(3131,3430),(3131,3799),(3131,3882),(3131,4452),(3131,4931),(3131,6092),(3131,10084),(3131,10726),(3132,502),(3132,591),(3132,782),(3132,2334),(3132,2348),(3132,3979),(3132,4049),(3132,4654),(3132,7375),(3132,9758),(3132,10085),(3132,10325),(3132,10950),(3132,11134),(3132,14967),(3132,15483),(3132,18107),(3132,18420),(3132,33705),(3132,160364),(3132,185702),(3132,187376),(3170,5774),(3170,10683),(3170,12392),(3170,18211),(3172,378),(3175,3998),(3175,4100),(3175,5330),(3175,6917),(3175,11061),(3175,14985),(3175,157788),(3175,177997),(3175,177998),(3175,177999),(3179,521),(3179,585),(3179,612),(3179,1670),(3179,2136),(3179,2700),(3179,10988),(3179,14570),(3179,156788),(3179,161919),(3179,167043),(3291,903),(3291,2109),(3291,2339),(3291,2571),(3291,6083),(3291,6086),(3291,7059),(3472,212),(3472,549),(3472,612),(3472,1406),(3472,2173),(3472,3014),(3472,5416),(3472,5898),(3472,6147),(3482,90),(3482,254),(3482,1956),(3482,2652),(3482,4655),(3482,5375),(3482,5552),(3482,5918),(3482,9904),(3482,10663),(3482,11064),(3482,14789),(3482,156031),(3489,1812),(3489,1992),(3489,6779),(3489,6780),(3489,10714),(3489,156181),(3509,387),(3509,703),(3509,818),(3509,1566),(3509,1568),(3509,2150),(3509,2588),(3509,2866),(3509,2964),(3509,4394),(3509,4565),(3509,4967),(3509,12190),(3509,14964),(3509,18420),(3509,180440),(3509,188950),(3509,202550),(3509,202551),(3509,202553),(3509,207268),(3512,949),(3512,2314),(3512,3376),(3512,11219),(3512,13008),(3536,339),(3536,1956),(3536,6790),(3536,10364),(3558,818),(3558,1252),(3558,1525),(3558,5565),(3558,6846),(3580,417),(3580,456),(3580,2483),(3580,3065),(3580,3720),(3580,4740),(3580,6086),(3580,6149),(3580,9824),(3580,9826),(3580,10410),(3580,12670),(3580,184402),(3580,199226),(3580,202098),(3587,291),(3587,2343),(3587,6894),(3587,7942),(3594,236),(3594,818),(3594,922),(3594,1523),(3594,6373),(3594,12565),(3594,15127),(3594,18035),(3594,191494),(3595,800),(3595,1452),(3595,1584),(3595,1812),(3595,4725),(3595,9937),(3595,18525),(3595,33626),(3597,1328),(3597,1936),(3597,5420),(3597,6149),(3597,6270),(3597,9665),(3597,9713),(3597,9748),(3597,9826),(3597,10225),(3597,12339),(3597,13130),(3597,15127),(3600,271),(3600,2041),(3600,2135),(3600,3345),(3600,3616),(3600,4728),(3600,5420),(3600,6876),(3600,9748),(3600,9826),(3600,10776),(3600,10793),(3600,11221),(3600,12339),(3600,14527),(3600,14692),(3600,15127),(3604,2280),(3604,2642),(3604,3071),(3604,3912),(3604,6211),(3604,9758),(3604,10700),(3604,14760),(3604,195446),(3635,437),(3635,5565),(3635,5918),(3635,13097),(3638,131),(3638,271),(3638,936),(3638,1578),(3638,1605),(3638,1650),(3638,1918),(3638,1946),(3638,2182),(3638,2784),(3638,3739),(3638,3914),(3638,164657),(3682,242),(3682,572),(3682,2334),(3682,10594),(3682,14964),(3682,155490),(3683,1956),(3683,3737),(3683,8083),(3683,161244),(3683,179430),(3683,179431),(3766,242),(3766,582),(3766,2269),(3766,2682),(3766,3342),(3766,4516),(3766,4617),(3766,6148),(3766,6946),(3766,9937),(3766,155436),(3766,195402),(3877,1647),(3877,1872),(3877,2375),(3877,2613),(3877,2671),(3877,3258),(3877,3447),(3877,3739),(3877,4129),(3877,4549),(3877,4788),(3877,12392),(3877,187056),(3902,578),(3902,1254),(3902,3836),(3902,4170),(3902,5212),(3902,5286),(3902,5288),(3902,5565),(3902,6027),(3902,6553),(3902,7980),(3933,367),(3933,392),(3933,1332),(3933,2103),(3933,2968),(3933,4062),(3933,4344),(3933,6038),(3933,7578),(3933,10121),(3933,10336),(3933,10594),(3933,13027),(3933,13092),(3933,18093),(3933,159947),(3933,177895),(3933,181046),(3933,189093),(3933,207592),(3981,515),(3981,1475),(3981,4769),(3981,168750),(3981,187056),(3989,90),(3989,254),(3989,487),(3989,592),(3989,1014),(3989,1160),(3989,1242),(3989,1366),(3989,1627),(3989,2314),(3989,2355),(3989,2535),(3989,2580),(3989,2966),(3989,3263),(3989,3837),(3989,4596),(3989,5373),(3989,6086),(3989,164889),(3989,210610),(3989,218032),(4011,3065),(4011,3891),(4011,4062),(4011,5941),(4011,6022),(4011,6155),(4011,7925),(4011,9712),(4011,9887),(4011,10809),(4011,162846),(4012,258),(4012,835),(4012,1956),(4012,2315),(4012,2606),(4012,3902),(4012,10144),(4012,10183),(4012,157251),(4032,10226),(4032,158259),(4032,170116),(4032,170118),(4032,170122),(4032,170124),(4032,170125),(4032,170130),(4032,170135),(4032,170141),(4032,170142),(4032,170143),(4105,233),(4105,1794),(4105,6297),(4107,7005),(4107,10183),(4107,163116),(4108,1926),(4108,3792),(4108,3796),(4108,6019),(4133,1228),(4133,1601),(4133,1803),(4133,2149),(4133,3391),(4133,6974),(4147,18712),(4147,174984),(4147,174985),(4147,174994),(4147,175001),(4147,175005),(4147,175007),(4147,175008),(4147,175011),(4147,175016),(4147,175017),(4148,596),(4148,931),(4148,1326),(4148,3658),(4148,5809),(4148,6981),(4170,279),(4170,572),(4170,1155),(4170,1547),(4170,2286),(4170,3848),(4170,3973),(4170,4752),(4170,5301),(4170,5616),(4170,5923),(4170,6019),(4170,10084),(4170,10183),(4170,15009),(4174,1453),(4174,4924),(4174,9937),(4232,3335),(4232,10292),(4232,10714),(4232,12339),(4232,157380),(4232,157384),(4232,160612),(4232,212435),(4233,6812),(4233,10089),(4233,12339),(4234,2546),(4234,2573),(4234,2793),(4234,8440),(4234,12193),(4234,12339),(4234,13124),(4234,14676),(4244,965),(4244,1599),(4244,1660),(4244,2417),(4244,3321),(4244,3923),(4244,206736),(4248,572),(4248,2626),(4248,33468),(4251,2038),(4251,3203),(4251,4034),(4251,7021),(4251,14636),(4251,158512),(4256,12416),(4257,3358),(4257,4862),(4257,7023),(4258,9663),(4258,9755),(4258,11931),(4258,179430),(4258,179431),(4327,779),(4327,5248),(4327,33626),(4327,33705),(4347,818),(4347,1156),(4347,1486),(4347,1578),(4347,1605),(4347,1956),(4347,3096),(4347,5477),(4347,6139),(4347,10818),(4347,11436),(4347,13088),(4348,1338),(4348,10350),(4348,10360),(4348,11707),(4348,15060),(4348,156498),(4348,156501),(4348,160279),(4348,165301),(4349,441),(4349,782),(4349,949),(4349,1653),(4349,1812),(4349,3713),(4349,5174),(4349,5340),(4349,6149),(4349,6780),(4349,13015),(4349,18525),(4349,173259),(4349,206544),(4379,2374),(4379,3262),(4379,5904),(4379,13072),(4380,931),(4380,1157),(4380,1342),(4421,493),(4421,539),(4421,720),(4421,3376),(4421,3588),(4421,4411),(4421,6091),(4421,6092),(4421,10850),(4421,11219),(4421,11718),(4421,13065),(4421,15248),(4421,159315),(4421,161247),(4421,162365),(4421,185454),(4421,191110),(4421,225707),(4421,225710),(4442,380),(4442,2132),(4442,179430),(4464,643),(4464,2355),(4464,3525),(4464,5571),(4474,242),(4474,334),(4474,1594),(4474,1595),(4474,3614),(4474,4769),(4474,15097),(4476,380),(4476,680),(4476,818),(4476,2504),(4476,5973),(4477,242),(4477,949),(4477,2142),(4477,7005),(4512,627),(4512,3494),(4512,3607),(4512,4277),(4512,5614),(4512,5900),(4512,6007),(4512,9910),(4512,13001),(4512,18035),(4512,18036),(4513,813),(4513,1442),(4513,3133),(4513,5809),(4513,9880),(4513,18712),(4513,156783),(4513,157812),(4513,161285),(4515,736),(4515,949),(4515,1242),(4515,2586),(4515,2887),(4515,2903),(4515,2954),(4515,2964),(4515,3541),(4515,4101),(4515,6091),(4515,6162),(4515,7158),(4517,392),(4517,441),(4517,514),(4517,2389),(4517,4090),(4517,6088),(4517,7153),(4517,7534),(4517,7537),(4517,13129),(4517,41406),(4517,161207),(4517,182677),(4517,191599),(4518,4235),(4518,6165),(4518,10202),(4518,18396),(4518,41022),(4523,351),(4523,2011),(4523,3205),(4523,4344),(4523,7376),(4523,7939),(4523,10336),(4523,170362),(4523,177901),(4523,193521),(4547,1437),(4547,2321),(4547,3305),(4547,8430),(4547,10594),(4550,10183),(4551,3605),(4551,4129),(4551,4741),(4551,5718),(4551,8045),(4551,10572),(4551,10712),(4551,163949),(4553,1382),(4553,4142),(4553,173957),(4553,173959),(4553,173960),(4553,173966),(4553,173971),(4553,173974),(4553,173976),(4553,173977),(4553,173978),(4553,173983),(4553,173986),(4553,173989),(4553,173990),(4566,627),(4566,1946),(4566,2686),(4566,3692),(4566,4687),(4566,7335),(4566,7336),(4566,7337),(4566,7340),(4584,420),(4584,818),(4584,964),(4584,2755),(4584,7564),(4584,10911),(4584,11109),(4584,15060),(4584,156507),(4584,156510),(4584,156512),(4597,642),(4597,960),(4597,974),(4597,4898),(4597,9276),(4597,10051),(4599,242),(4599,1499),(4599,1854),(4599,2143),(4599,2863),(4599,7024),(4599,10235),(4614,591),(4614,949),(4614,1815),(4614,2106),(4614,9830),(4614,155723),(4638,5331),(4638,5638),(4638,6149),(4638,9104),(4638,9826),(4638,10410),(4638,12371),(4638,167268),(4638,167284),(4638,207819),(4657,1415),(4657,1495),(4657,3230),(4657,5657),(4657,5809),(4657,6038),(4657,6054),(4657,9826),(4657,193459),(4657,209560),(4657,209619),(4688,2187),(4688,4108),(4688,4344),(4688,6027),(4688,10428),(4688,13160),(4688,18020),(4688,165431),(4688,165458),(4688,165461),(4688,187056),(4688,208992),(4723,236),(4723,380),(4723,470),(4723,530),(4723,539),(4723,888),(4723,949),(4723,1157),(4723,1197),(4723,1453),(4723,1501),(4723,1583),(4723,1930),(4723,1936),(4723,2187),(4723,2227),(4723,3541),(4723,4379),(4723,4654),(4723,5965),(4723,6078),(4723,6083),(4723,6212),(4723,7375),(4723,9732),(4723,9826),(4723,9887),(4723,9903),(4723,10131),(4723,10143),(4723,10150),(4723,10410),(4723,10437),(4723,10937),(4723,11112),(4723,11719),(4723,12332),(4723,12670),(4723,13015),(4723,14779),(4723,34117),(4723,34161),(4723,40847),(4723,156282),(4723,156761),(4723,157222),(4723,157499),(4723,158111),(4723,158538),(4723,161891),(4723,182058),(4723,186219),(4723,186760),(4723,191655),(4723,208179),(4723,208731),(4723,209525),(4723,214655),(4723,216942),(4723,216966),(4806,1415),(4806,2796),(4806,3455),(4806,12193),(4806,13027),(4806,14534),(4816,2428),(4816,2708),(4816,3045),(4816,3096),(4816,4950),(4816,6293),(4816,9849),(4816,10391),(4816,14798),(4816,156151),(4816,156152),(4816,156153),(4816,156154),(4816,156155),(4816,156156),(4816,156157),(4816,156158),(4824,1812),(4824,2106),(4824,2708),(4836,1930),(4836,1941),(4836,2149),(4836,2235),(4836,2708),(4836,3045),(4836,3152),(4836,3391),(4836,6502),(4836,9826),(4858,9714),(4858,9951),(4858,10685),(4858,14909),(4858,15250),(4858,161290),(4858,161891),(4858,162502),(4858,162511),(4858,162512),(4858,162515),(4911,417),(4911,796),(4911,2187),(4911,2394),(4911,3261),(4911,3607),(4911,4690),(4911,5422),(4911,7477),(4911,8233),(4911,10183),(4911,12670),(4911,18035),(4912,4688),(4912,5565),(4912,18107),(4912,34038),(4922,2913),(4922,3588),(4922,3739),(4922,4262),(4922,9935),(4922,11612),(4929,378),(4929,934),(4929,1502),(4929,2122),(4929,2493),(4929,4129),(4929,9656),(4929,33407),(4929,155859),(4929,157136),(4929,169962),(4935,334),(4935,616),(4935,2217),(4935,3098),(4935,3151),(4935,5133),(4935,7315),(4935,7397),(4935,15001),(4935,210024),(4942,579),(4942,1483),(4942,1485),(4942,1701),(4942,3836),(4942,5398),(4942,6149),(4942,6186),(4942,8338),(4942,11289),(4942,191222),(4944,1936),(4944,2340),(4944,2923),(4944,4585),(4944,6683),(4944,10937),(4944,13092),(4944,15160),(4944,33610),(4944,33650),(4944,33651),(4951,497),(4951,5923),(4951,6270),(4951,8224),(4951,9758),(4951,11870),(4951,53994),(4951,53995),(4951,156115),(4951,165301),(4951,179431),(4951,188237),(4951,214594),(4951,218182),(4953,2249),(4953,3297),(4953,6262),(4953,7321),(4953,34053),(4958,271),(4958,2504),(4958,5571),(4958,7322),(4958,7323),(4959,179431),(4960,242),(4960,5756),(4960,13028),(4964,567),(4964,2864),(4964,3501),(4964,3725),(4964,4313),(4964,4954),(4964,11494),(4964,33678),(4964,33679),(4964,179431),(4965,803),(4965,9951),(4967,128),(4967,3901),(4967,10093),(4967,161207),(4970,1453),(4970,11857),(4970,14781),(4970,14782),(4970,14783),(4970,14784),(4970,33505),(4970,41329),(4982,240),(4982,577),(4982,2149),(4982,3391),(4982,3679),(4982,3734),(4982,6974),(4982,8015),(4982,11733),(4982,11734),(4982,13142),(4982,14536),(4982,15167),(4982,18035),(4982,163081),(4982,179430),(4982,193305),(4982,206701),(4995,445),(4995,572),(4995,2727),(4995,5593),(4995,5626),(4995,14964),(4995,18321),(4995,158968),(4997,642),(4997,2375),(4997,5340),(4997,7344),(4997,9826),(4997,12670),(4997,14819),(4997,14964),(5038,107),(5038,3190),(5038,10818),(5072,2429),(5072,15127),(5072,207937),(5072,220085),(5072,220086),(5072,220087),(5123,248),(5123,697),(5123,699),(5123,714),(5123,953),(5123,1452),(5123,1808),(5123,2038),(5123,2089),(5123,2251),(5123,2318),(5123,2409),(5123,2570),(5123,3536),(5123,3691),(5123,4173),(5123,4572),(5123,5091),(5123,5608),(5123,6027),(5123,6029),(5123,6056),(5123,6170),(5123,6272),(5123,6712),(5123,6783),(5123,7879),(5123,9986),(5123,10103),(5123,13072),(5123,14534),(5123,187056),(5123,207592),(5125,139),(5125,321),(5125,591),(5125,697),(5125,796),(5125,949),(5125,963),(5125,1242),(5125,1930),(5125,2051),(5125,2300),(5125,2614),(5125,2944),(5125,3047),(5125,4098),(5125,4245),(5125,4460),(5125,4549),(5125,6078),(5125,6083),(5125,6086),(5125,6381),(5125,7097),(5125,13006),(5125,14624),(5125,14638),(5125,18420),(5126,240),(5126,2393),(5126,2470),(5126,4130),(5126,5707),(5126,7368),(5126,9951),(5137,212),(5137,486),(5137,736),(5137,1373),(5137,4850),(5137,14544),(5172,1432),(5172,1556),(5172,1566),(5172,1812),(5172,2298),(5172,4402),(5172,4627),(5172,4932),(5172,6255),(5172,6394),(5172,7393),(5172,7394),(5172,9882),(5172,10183),(5172,14626),(5172,18035),(5174,1704),(5175,179431),(5176,1582),(5176,1701),(5176,2019),(5176,3543),(5176,3593),(5176,3737),(5176,4776),(5176,5339),(5176,5692),(5176,9823),(5176,10726),(5176,12371),(5176,14536),(5176,18035),(5176,157902),(5176,193305),(5176,193552),(5176,206686),(5176,206687),(5176,206688),(5176,206690),(5178,582),(5178,960),(5178,1010),(5178,1252),(5178,1786),(5178,6054),(5178,11612),(5236,703),(5236,3090),(5236,4056),(5236,7281),(5236,9727),(5236,9986),(5236,12670),(5236,14676),(5236,33648),(5236,160488),(5236,189421),(5236,207317),(5255,1991),(5255,5801),(5255,6150),(5255,9989),(5255,9995),(5255,33678),(5255,34154),(5255,41312),(5255,41314),(5255,48711),(5255,207317),(5279,964),(5279,10594),(5279,154976),(5353,393),(5353,470),(5353,612),(5353,736),(5353,917),(5353,1327),(5353,3979),(5353,4853),(5353,5299),(5353,6091),(5353,7202),(5353,7492),(5393,604),(5393,995),(5393,1994),(5393,2374),(5393,3071),(5393,3205),(5393,4174),(5393,5921),(5393,6333),(5393,7376),(5393,7430),(5393,7432),(5393,46958),(5393,174420),(5393,187056),(5491,818),(5491,4458),(5491,4565),(5491,6015),(5491,9878),(5491,14909),(5491,159314),(5491,159955),(5491,208997),(5491,213987),(5494,1400),(5494,1701),(5494,1938),(5494,12554),(5503,520),(5503,797),(5503,1568),(5503,3262),(5503,3437),(5503,3440),(5503,3442),(5503,3713),(5503,9714),(5503,10085),(5503,10562),(5503,10663),(5503,10685),(5503,10718),(5503,10988),(5503,11207),(5503,13005),(5503,14601),(5503,14903),(5503,18118),(5503,173976),(5503,180172),(5503,187844),(5503,226376),(5503,226499),(5503,227824),(5503,227825),(5516,2409),(5516,2430),(5516,3700),(5516,179431),(5528,2060),(5528,2318),(5528,2913),(5528,4344),(5528,5955),(5528,5984),(5528,6027),(5528,6271),(5528,10103),(5528,12974),(5528,179359),(5528,207883),(5550,679),(5550,4565),(5550,6149),(5550,9663),(5550,12190),(5550,33699),(5550,184213),(5551,1432),(5551,3801),(5551,14626),(5551,172971),(5559,730),(5559,1488),(5559,2382),(5559,2778),(5559,2779),(5559,3203),(5559,3616),(5559,3800),(5559,4247),(5559,6148),(5559,179430),(5689,566),(5689,2580),(5689,4663),(5689,9743),(5689,10792),(5689,11823),(5689,13130),(5689,155746),(5689,157524),(5689,179578),(5708,968),(5708,1279),(5708,1605),(5708,1944),(5708,4183),(5708,4470),(5708,4741),(5708,4746),(5708,5716),(5708,6027),(5708,10183),(5708,34094),(5708,41591),(5722,637),(5722,3490),(5722,4344),(5723,578),(5723,637),(5723,1208),(5723,1254),(5723,2038),(5723,4126),(5723,4173),(5723,4528),(5723,4663),(5723,4729),(5723,5129),(5723,6027),(5723,6031),(5723,6056),(5723,14743),(5723,41590),(5723,41591),(5759,171993),(5759,210012),(5769,5626),(5769,18015),(5769,222842),(5780,2106),(5780,156026),(5820,840),(5820,33705),(5822,534),(5822,577),(5822,1667),(5822,2095),(5822,4243),(5822,7533),(5822,10601),(5822,12420),(5822,12670),(5852,9844),(5852,15090),(5854,663),(5854,1930),(5854,3864),(5854,161506),(5854,180824),(5876,494),(5876,1299),(5876,1545),(5876,1721),(5876,2679),(5876,3002),(5876,3036),(5876,3986),(5876,5385),(5876,6150),(5876,6157),(5876,8636),(5876,10292),(5876,11100),(5876,11221),(5876,18047),(5876,18171),(5900,6397),(5902,1199),(5902,1956),(5902,11102),(5902,157788),(5915,255),(5915,970),(5915,1890),(5915,2630),(5915,2796),(5915,3593),(5915,5565),(5915,9672),(5915,9772),(5915,9880),(5915,189092),(5925,818),(5925,895),(5925,1223),(5925,1480),(5925,1505),(5925,1563),(5925,1879),(5925,1956),(5925,1968),(5925,2147),(5925,2652),(5925,4276),(5925,5034),(5925,5136),(5925,6089),(5925,9672),(5925,9774),(5925,10685),(5925,11105),(5925,11246),(5925,11267),(5925,14735),(5925,155815),(5925,160175),(5955,6044),(5955,9826),(5955,13151),(5955,177996),(5955,187327),(5955,187328),(5955,187329),(5966,966),(5966,2676),(5966,3582),(5966,3817),(5966,4999),(5966,6192),(5966,9398),(5966,9799),(5966,10267),(5966,10503),(5966,11510),(5966,12670),(5966,15478),(5966,33940),(5966,165301),(5966,167861),(5966,169276),(5966,173497),(5966,175357),(5966,188645),(5966,190084),(5966,226219),(5971,378),(5971,1563),(5971,10183),(5994,1022),(5994,34004),(5994,184559),(5994,207317),(5994,231932),(5994,231933),(6007,791),(6016,585),(6016,660),(6016,5918),(6016,9728),(6016,10183),(6016,159343),(6020,10058),(6020,12090),(6020,13160),(6020,15059),(6020,171582),(6020,171636),(6020,171639),(6020,171646),(6020,194236),(6023,906),(6023,1208),(6023,1408),(6023,3344),(6023,3737),(6023,4549),(6038,212),(6038,957),(6038,2280),(6038,9748),(6038,9826),(6038,11715),(6038,179431),(6038,228690),(6068,191088),(6068,191089),(6071,160488),(6073,1930),(6073,13132),(6106,393),(6106,407),(6106,736),(6106,1008),(6106,1014),(6106,2020),(6106,5299),(6106,5861),(6106,6760),(6106,7605),(6106,7606),(6114,596),(6114,2158),(6114,3133),(6114,4197),(6114,9714),(6114,155301),(6114,156112),(6114,160292),(6114,169618),(6114,169620),(6114,169621),(6114,169626),(6114,225470),(6114,231407),(6116,637),(6116,1740),(6116,3490),(6171,3684),(6217,1366),(6217,10563),(6217,10968),(6217,15365),(6217,33841),(6217,157890),(6217,179416),(6217,190370),(6278,12554),(6278,34152),(6278,173893),(6278,173901),(6278,173903),(6278,173905),(6278,173911),(6278,173912),(6278,173913),(6278,173914),(6282,1010),(6282,4344),(6282,9767),(6415,1321),(6415,2952),(6415,3570),(6415,5939),(6415,8651),(6415,10084),(6415,10131),(6415,11088),(6415,13065),(6415,33564),(6415,159859),(6415,168818),(6415,168835),(6415,168839),(6435,616),(6435,2343),(6435,5147),(6435,9673),(6435,10541),(6435,190821),(6439,2282),(6439,2673),(6439,3394),(6439,4932),(6439,7639),(6440,572),(6440,596),(6440,818),(6440,1495),(6440,1533),(6440,1930),(6440,6178),(6440,10349),(6440,12193),(6440,40879),(6466,9826),(6466,10776),(6466,13130),(6466,161794),(6477,637),(6477,3490),(6477,4746),(6477,4902),(6477,5310),(6477,5774),(6477,6027),(6477,6029),(6477,6054),(6477,6706),(6477,10986),(6477,11477),(6477,33475),(6477,167625),(6477,179431),(6478,4344),(6478,164657),(6478,164658),(6478,164663),(6479,83),(6479,4190),(6479,4458),(6479,4565),(6479,5144),(6479,6511),(6479,6997),(6479,188957),(6479,188973),(6488,1415),(6488,9744),(6488,158120),(6488,158124),(6488,158126),(6488,158129),(6488,158130),(6488,195026),(6488,217961),(6488,221272),(6488,223059),(6488,232791),(6519,798),(6519,4932),(6519,7984),(6519,10250),(6519,160058),(6520,3966),(6520,10466),(6520,10982),(6520,177128),(6520,177129),(6521,6078),(6521,9937),(6537,222),(6537,1660),(6537,4183),(6538,521),(6538,567),(6538,591),(6538,720),(6538,973),(6538,1705),(6538,2106),(6538,2336),(6538,2732),(6538,2808),(6538,4531),(6538,7158),(6538,7597),(6552,13130),(6552,155619),(6552,178253),(6552,178256),(6552,178259),(6552,178261),(6552,178265),(6552,178269),(6552,178271),(6557,725),(6557,918),(6557,1010),(6557,1156),(6557,1605),(6557,2381),(6557,3581),(6557,3582),(6557,3584),(6557,5923),(6557,6027),(6557,9799),(6557,11157),(6557,12193),(6557,13027),(6557,187056),(6575,532),(6575,578),(6575,637),(6575,898),(6575,2178),(6575,2636),(6575,3490),(6575,4562),(6575,4746),(6575,5288),(6575,6027),(6575,6031),(6575,13027),(6575,34094),(6575,179430),(6615,2101),(6615,3568),(6615,3737),(6615,6203),(6615,6262),(6615,6300),(6615,33630),(6623,720),(6623,949),(6623,3312),(6623,3450),(6623,10663),(6623,13008),(6623,187056),(6639,572),(6639,1459),(6639,1605),(6639,2148),(6639,3344),(6639,3452),(6639,3737),(6639,3799),(6639,6038),(6639,7728),(6639,10508),(6639,12974),(6639,13005),(6639,34094),(6639,211269),(6687,478),(6687,2587),(6687,5891),(6687,6112),(6687,6149),(6687,9935),(6687,10794),(6687,11221),(6687,13001),(6687,13008),(6687,14964),(6687,15127),(6687,174638),(6687,186450),(6687,191915),(6795,4414),(6795,6095),(6795,9951),(6795,10891),(6795,12405),(6795,14626),(6877,7784),(6877,9799),(6877,170682),(6877,214633),(6877,215200),(6933,985),(6933,1578),(6933,1880),(6933,1947),(6933,3737),(6933,4399),(6933,4959),(6933,5426),(6933,5504),(6933,6054),(6933,6149),(6933,6262),(6933,9714),(6933,13001),(6933,13008),(6947,1328),(6947,5774),(6947,11004),(6947,164092),(6947,164663),(6947,170179),(6947,206706),(6947,220979),(6947,233027),(6947,233324),(6950,1261),(6950,1402),(6950,3664),(6950,6092),(6950,8803),(6950,15149),(6950,17995),(6950,158025),(6957,2201),(6957,2389),(6961,818),(6961,6739),(6961,13027),(6961,156731),(6961,156760),(6961,187056),(6963,242),(6963,520),(6963,1599),(6963,2136),(6963,5600),(6963,5905),(6963,6340),(6963,6564),(6963,7832),(6964,965),(6964,2336),(6964,187056),(6968,321),(6968,323),(6968,1228),(6972,440),(6972,1956),(6972,2752),(6972,5657),(6972,6731),(6972,7856),(6972,9656),(6972,179430),(6972,221178),(6972,229066),(6972,229067),(6973,494),(6973,703),(6973,1327),(6973,1627),(6973,1849),(6973,5340),(6973,5939),(6973,5947),(6973,6149),(6973,9665),(6973,10941),(6973,161982),(6977,1556),(6977,2149),(6977,2708),(6977,5616),(6977,9937),(6978,780),(6978,1788),(6978,2343),(6978,10092),(7006,236),(7006,9826),(7191,720),(7191,1299),(7191,1418),(7191,1721),(7191,2249),(7191,4210),(7191,4630),(7191,6152),(7191,6898),(7191,9713),(7191,9951),(7191,10084),(7191,10349),(7191,10617),(7191,10685),(7191,11100),(7191,161791),(7191,162365),(7191,163053),(7191,179430),(7214,577),(7214,5833),(7214,6075),(7214,6270),(7214,6278),(7214,6496),(7214,7920),(7214,10508),(7214,193547),(7220,473),(7220,1375),(7220,1568),(7220,6212),(7220,7375),(7220,8828),(7220,13116),(7220,14546),(7220,14687),(7220,18187),(7220,33595),(7278,1721),(7278,2011),(7278,3028),(7278,4380),(7278,5458),(7278,6092),(7278,171603),(7278,179430),(7278,179431),(7299,836),(7299,1755),(7299,2137),(7299,2535),(7299,3236),(7299,4565),(7299,5737),(7299,9503),(7299,163049),(7301,738),(7301,970),(7301,1447),(7301,2095),(7301,4232),(7301,5301),(7301,6464),(7303,612),(7303,6083),(7303,10325),(7303,13097),(7303,14514),(7303,14768),(7303,173277),(7303,187791),(7303,188755),(7303,220314),(7304,6483),(7304,12425),(7304,14576),(7304,14698),(7304,15344),(7304,154890),(7304,158927),(7304,163569),(7304,167536),(7304,168531),(7304,168534),(7304,168539),(7305,7912),(7305,9743),(7305,10349),(7305,11116),(7305,12617),(7305,155372),(7305,199076),(7326,738),(7326,1412),(7326,1525),(7326,2201),(7326,3089),(7326,3725),(7326,5808),(7326,5825),(7326,6281),(7326,13130),(7326,173186),(7341,236),(7341,255),(7341,293),(7341,657),(7341,2483),(7341,2884),(7341,5086),(7341,6270),(7341,8181),(7341,8508),(7341,9663),(7341,9826),(7341,10266),(7341,10508),(7341,11181),(7341,11221),(7341,15085),(7341,161320),(7341,171411),(7341,187056),(7345,380),(7345,1635),(7345,2355),(7345,3419),(7345,3535),(7345,5175),(7345,5905),(7345,6669),(7345,10590),(7345,10594),(7345,15127),(7345,33457),(7347,100),(7347,796),(7347,983),(7347,1601),(7347,1809),(7347,2149),(7347,2231),(7347,7097),(7347,15218),(7347,163081),(7350,409),(7350,486),(7350,879),(7350,1157),(7350,2875),(7350,3230),(7350,3513),(7350,3737),(7350,4896),(7350,5973),(7350,6564),(7350,12547),(7350,15300),(7350,161194),(7350,172971),(7350,215787),(7350,226580),(7364,168297),(7364,168302),(7443,2479),(7443,6089),(7443,10685),(7443,185521),(7443,185522),(7445,380),(7445,2102),(7445,4549),(7445,7158),(7445,164181),(7446,886),(7446,8201),(7446,10787),(7446,162262),(7446,167475),(7446,167477),(7446,167486),(7446,167492),(7446,179431),(7446,184816),(7446,224875),(7450,1299),(7450,4270),(7450,4565),(7450,9882),(7450,9951),(7450,10336),(7450,10364),(7451,999),(7451,1865),(7451,2106),(7451,2808),(7451,3530),(7451,10364),(7451,10456),(7451,217142),(7451,234505),(7451,234506),(7453,211),(7453,392),(7453,630),(7453,803),(7453,818),(7453,3713),(7453,3801),(7453,4270),(7453,9831),(7453,9951),(7453,10121),(7453,10349),(7453,11546),(7453,14544),(7453,14909),(7453,177144),(7453,177145),(7453,177146),(7453,178640),(7453,192962),(7453,221652),(7453,221653),(7453,221654),(7453,221655),(7453,221656),(7459,830),(7459,963),(7459,2552),(7459,18035),(7459,179431),(7459,187056),(7461,258),(7461,321),(7461,514),(7461,840),(7461,949),(7461,1242),(7461,1925),(7461,1926),(7461,2134),(7461,2136),(7461,2249),(7461,3088),(7461,3852),(7461,4460),(7461,5641),(7461,6007),(7461,41180),(7484,414),(7484,1262),(7484,2101),(7484,2522),(7484,3208),(7484,3713),(7484,5774),(7484,7946),(7484,10468),(7484,158279),(7485,417),(7485,1589),(7485,2944),(7485,5514),(7485,5885),(7485,9897),(7485,12355),(7485,18525),(7501,680),(7501,798),(7501,7694),(7501,10594),(7501,11578),(7504,818),(7504,7947),(7504,15060),(7504,187056),(7504,192050),(7504,207883),(7504,234297),(7509,2628),(7509,4129),(7509,4471),(7509,6194),(7509,7925),(7509,7926),(7509,187056),(7510,237),(7510,1156),(7510,1157),(7510,1228),(7510,1412),(7510,2393),(7510,2726),(7510,5809),(7512,549),(7512,592),(7512,840),(7512,1395),(7512,1705),(7512,2964),(7512,4005),(7512,4565),(7512,6092),(7512,6241),(7512,6567),(7512,10123),(7512,11514),(7512,12400),(7512,18420),(7512,33483),(7512,162988),(7512,164124),(7515,242),(7515,33648),(7516,376),(7516,1419),(7516,1589),(7516,1812),(7516,2708),(7516,3088),(7516,4277),(7516,6149),(7516,10123),(7516,10950),(7516,13142),(7516,14964),(7516,189421),(7518,990),(7518,1240),(7518,1950),(7518,2105),(7518,2522),(7518,2847),(7518,2922),(7518,3700),(7518,5774),(7518,6362),(7518,7125),(7518,7948),(7518,7949),(7518,18165),(7547,1010),(7547,2669),(7547,2864),(7547,4552),(7547,6946),(7547,15162),(7547,187056),(7548,212),(7548,572),(7548,3737),(7548,5933),(7548,6034),(7548,6657),(7548,15149),(7548,33457),(7552,818),(7552,1333),(7552,1621),(7552,3607),(7552,9714),(7552,10532),(7552,14549),(7552,33740),(7552,156052),(7552,157296),(7552,160510),(7552,211295),(7552,227863),(7552,227864),(7553,4956),(7553,40950),(7553,167915),(7553,167921),(7553,167923),(7553,167925),(7553,167930),(7553,167939),(7553,167942),(7735,407),(7735,1482),(7735,1517),(7735,1755),(7735,2323),(7735,2470),(7735,3061),(7735,4613),(7735,5782),(7735,5879),(7735,6040),(7735,6269),(7735,6274),(7735,7920),(7735,7923),(7735,222173),(7737,402),(7737,1852),(7737,4458),(7737,4565),(7737,10410),(7737,11738),(7737,12377),(7737,41645),(7859,248),(7859,1595),(7859,3797),(7859,7928),(7859,10183),(7863,3344),(7863,3810),(7863,5561),(7863,10499),(7863,14743),(7863,33484),(7863,191815),(7870,957),(7870,966),(7870,5692),(7870,166947),(7870,198141),(7873,173924),(7873,173925),(7873,173933),(7874,531),(7874,2636),(7874,5947),(7874,10183),(7913,2387),(7913,5246),(7913,7947),(7913,12105),(7913,33648),(7942,494),(7942,1605),(7942,2687),(7942,4613),(7942,6432),(7942,6921),(7942,7248),(7942,13027),(7942,13149),(7944,242),(7944,2793),(7944,3754),(7944,4528),(7944,4740),(7944,5282),(7944,5288),(7944,5333),(7944,5699),(7944,6027),(7944,6029),(7944,6034),(7944,6706),(7973,515),(7973,928),(7973,1156),(7973,1605),(7973,2203),(7973,2389),(7973,3258),(7973,6199),(7973,6319),(7973,7951),(7973,13027),(7973,15090),(7973,161288),(7973,187056),(7978,494),(7978,8250),(7978,9714),(7978,11004),(7978,12564),(7979,1228),(7979,3541),(7979,6650),(7979,7158),(7979,7955),(7979,7956),(7979,12392),(7979,13001),(7979,208349),(7980,570),(7980,1228),(7980,2620),(7980,3352),(7980,6155),(7980,6381),(7980,10714),(7980,13092),(7980,14576),(7980,18425),(7980,172291),(7980,184988),(7980,223438),(8007,720),(8007,1327),(8007,1589),(8007,1662),(8007,2533),(8007,7973),(8007,10084),(8007,10685),(8007,11117),(8007,11872),(8007,12371),(8007,18543),(8007,162365),(8007,168839),(8007,219404),(8007,221092),(8007,225707),(8007,226426),(8009,242),(8009,388),(8009,1400),(8009,1938),(8009,3963),(8009,4978),(8011,233),(8011,242),(8011,388),(8011,1629),(8011,46958),(8012,395),(8012,416),(8012,818),(8012,8438),(8012,9826),(8012,9935),(8012,10391),(8012,10594),(8012,11061),(8012,11578),(8012,12094),(8012,12396),(8012,13142),(8012,14536),(8012,14819),(8012,14964),(8012,33879),(8012,159608),(8046,242),(8046,791),(8046,1930),(8046,1936),(8046,3045),(8046,4663),(8046,10768),(8046,11578),(8051,367),(8051,1155),(8051,4480),(8053,2296),(8053,5616),(8053,6044),(8053,18034),(8054,291),(8054,4978),(8054,172971),(8054,179430),(8054,179431),(8055,74),(8055,1327),(8055,11038),(8055,11412),(8055,13130),(8055,33861),(8055,156777),(8055,157799),(8055,166276),(8055,229299),(8060,572),(8060,931),(8060,1808),(8060,1946),(8060,3595),(8060,4183),(8060,4481),(8060,6054),(8060,13027),(8060,15155),(8060,160246),(8065,395),(8065,1317),(8065,1992),(8065,2463),(8065,2566),(8065,3616),(8065,5490),(8065,5948),(8065,5984),(8065,6054),(8065,7996),(8068,75),(8068,139),(8068,502),(8068,534),(8068,797),(8068,953),(8068,2483),(8068,2708),(8068,3458),(8068,9748),(8068,10044),(8068,10950),(8068,14575),(8068,14601),(8068,14687),(8068,14707),(8068,18026),(8068,41372),(8068,154889),(8068,187844),(8068,226790),(8069,9835),(8069,10158),(8069,11239),(8069,165580),(8069,191144),(8077,378),(8077,803),(8077,1612),(8077,1826),(8077,2883),(8077,3388),(8077,3801),(8077,4083),(8077,4565),(8077,9663),(8077,9951),(8077,11436),(8077,12405),(8077,13194),(8077,158895),(8077,160879),(8077,163045),(8077,178652),(8077,189414),(8077,193149),(8077,226177),(8078,803),(8078,3070),(8078,4565),(8078,9663),(8078,9951),(8078,10085),(8078,11579),(8078,11628),(8078,14760),(8078,18082),(8078,18086),(8078,155336),(8078,158256),(8078,158993),(8078,163270),(8078,163561),(8078,197239),(8078,226177),(8078,226178),(8078,226179),(8078,226180),(8080,10714),(8090,236),(8090,1812),(8090,1930),(8090,3880),(8090,4426),(8090,5340),(8090,6149),(8090,6259),(8090,6435),(8090,6614),(8090,9826),(8090,10714),(8090,11615),(8090,13006),(8090,14819),(8090,180340),(8095,5049),(8095,6165),(8095,6715),(8095,194576),(8141,242),(8141,582),(8141,7464),(8141,10714),(8141,33457),(8193,240),(8193,380),(8193,2347),(8193,6270),(8193,6376),(8193,10183),(8193,13130),(8193,165137),(8193,171556),(8193,179430),(8195,90),(8195,254),(8195,2001),(8195,10038),(8195,13068),(8195,14678),(8195,14819),(8195,157168),(8195,157238),(8195,159669),(8195,159679),(8195,159684),(8195,159685),(8195,159688),(8197,824),(8197,3392),(8197,7323),(8198,321),(8198,736),(8198,1808),(8198,4119),(8198,7983),(8202,779),(8202,4565),(8202,9887),(8202,10244),(8202,10950),(8202,11134),(8202,11829),(8202,12190),(8202,14687),(8202,15246),(8202,18522),(8202,187056),(8202,188955),(8202,208314),(8202,226039),(8202,226146),(8204,1155),(8204,10235),(8204,14768),(8204,156282),(8204,160980),(8204,180724),(8204,189094),(8204,195269),(8204,223448),(8224,445),(8224,2727),(8224,6381),(8224,6443),(8224,11168),(8224,155418),(8224,155790),(8247,704),(8247,818),(8247,1452),(8247,1721),(8247,3713),(8247,3822),(8247,4769),(8247,4820),(8247,4986),(8247,6170),(8265,389),(8265,931),(8265,1332),(8265,1649),(8265,2251),(8265,2335),(8265,4461),(8265,5568),(8265,5893),(8265,6324),(8265,9645),(8265,13117),(8265,34014),(8265,158558),(8265,206150),(8271,1930),(8271,6517),(8272,494),(8272,894),(8272,970),(8272,1155),(8272,1992),(8272,2074),(8272,3746),(8272,5153),(8272,5301),(8272,5600),(8272,5903),(8272,5923),(8272,6192),(8272,7094),(8272,7368),(8272,10183),(8272,11925),(8272,13028),(8272,14534),(8272,18035),(8272,156195),(8272,170652),(8272,187056),(8273,772),(8273,1156),(8273,2874),(8273,3405),(8273,8070),(8273,13027),(8285,1308),(8285,1621),(8285,2546),(8285,4456),(8285,11825),(8285,12415),(8291,1014),(8291,1647),(8291,12670),(8291,167043),(8292,380),(8292,642),(8292,1679),(8292,8018),(8292,9748),(8292,9826),(8292,14819),(8292,18021),(8292,179431),(8292,179468),(8293,818),(8293,1156),(8293,2386),(8293,5923),(8293,205850),(8293,234626),(8321,167221),(8321,167227),(8321,167234),(8321,167235),(8321,167236),(8321,167238),(8326,10541),(8326,11707),(8326,14783),(8326,159188),(8326,159197),(8326,159201),(8326,159212),(8328,240),(8328,271),(8328,542),(8328,898),(8328,1974),(8328,3074),(8328,3188),(8328,4159),(8328,4345),(8328,6278),(8328,10551),(8329,321),(8329,1523),(8329,2249),(8329,2733),(8329,3684),(8329,3974),(8329,4197),(8329,4606),(8329,5034),(8329,6623),(8329,8001),(8329,163053),(8337,4565),(8337,11479),(8337,14909),(8337,15211),(8337,174244),(8338,1721),(8338,1741),(8338,2884),(8338,3077),(8338,3679),(8338,8047),(8338,8862),(8338,34161),(8338,188959),(8346,279),(8346,970),(8346,1200),(8346,1463),(8346,1599),(8346,1946),(8346,2374),(8346,2797),(8346,3453),(8346,4532),(8346,4604),(8346,4677),(8346,6188),(8346,8011),(8346,13027),(8346,18035),(8346,160910),(8355,2219),(8355,3450),(8355,6255),(8355,10787),(8355,12616),(8355,17985),(8355,179431),(8355,209714),(8357,9820),(8357,10902),(8357,33465),(8357,161217),(8357,161218),(8357,161219),(8357,161220),(8357,161221),(8357,187056),(8358,911),(8358,1252),(8358,5605),(8358,9957),(8358,12617),(8358,155746),(8358,157524),(8358,170319),(8359,8057),(8359,187056),(8363,1412),(8363,6270),(8363,6517),(8363,162914),(8367,392),(8367,2868),(8367,2951),(8367,4147),(8367,4615),(8373,1160),(8373,1670),(8373,4630),(8373,8264),(8373,9854),(8373,10607),(8373,11117),(8373,14544),(8373,156395),(8373,179431),(8374,1679),(8374,1680),(8374,7375),(8374,8045),(8374,11005),(8374,11018),(8374,15321),(8374,159633),(8374,179431),(8386,1337),(8386,1667),(8386,2463),(8386,4523),(8386,8224),(8386,11870),(8386,13160),(8386,15000),(8386,34117),(8386,54610),(8386,160450),(8386,162836),(8386,163968),(8386,166734),(8386,168179),(8386,169064),(8386,171235),(8386,171236),(8386,171238),(8386,171241),(8386,171244),(8386,171247),(8386,171251),(8386,171252),(8386,171401),(8390,725),(8390,2038),(8390,2398),(8390,4663),(8390,5091),(8390,5600),(8390,5608),(8390,6192),(8390,6664),(8390,7066),(8390,14534),(8390,15160),(8390,15300),(8390,224876),(8408,1196),(8408,6255),(8408,10478),(8408,12377),(8408,18086),(8408,41667),(8408,157351),(8408,186565),(8409,1522),(8409,1679),(8409,8015),(8409,13056),(8413,1826),(8413,2483),(8413,3030),(8413,3298),(8413,3385),(8413,3801),(8413,4380),(8413,6255),(8413,6262),(8413,8468),(8413,9820),(8413,10114),(8413,10135),(8413,11001),(8413,14601),(8413,14819),(8413,14888),(8413,18031),(8413,187844),(8413,188989),(8413,191586),(8413,223504),(8413,227489),(8416,90),(8416,131),(8416,782),(8416,1755),(8416,8077),(8427,810),(8427,1930),(8427,2792),(8427,4289),(8427,5362),(8427,7188),(8427,187056),(8435,186846),(8435,234551),(8452,402),(8452,2964),(8452,9826),(8452,11628),(8452,18069),(8452,162988),(8452,187046),(8452,196376),(8456,526),(8456,779),(8456,1353),(8456,1721),(8456,4613),(8456,5400),(8456,6075),(8456,6270),(8456,8508),(8456,9748),(8456,11221),(8456,12612),(8456,14819),(8456,156801),(8456,174244),(8457,378),(8457,931),(8457,960),(8457,966),(8457,970),(8457,1721),(8457,3088),(8457,4556),(8457,5801),(8457,6270),(8457,7101),(8457,8039),(8457,10508),(8457,12974),(8457,33648),(8457,166287),(8457,179430),(8457,190116),(8457,193547),(8461,380),(8461,1422),(8461,6259),(8461,6876),(8461,9826),(8461,9937),(8461,10226),(8461,13006),(8461,15162),(8461,18035),(8467,1420),(8467,2669),(8467,5303),(8467,6241),(8467,8126),(8467,9864),(8467,11333),(8467,14819),(8467,15009),(8467,18326),(8467,159574),(8467,160962),(8467,167310),(8467,167584),(8467,167591),(8467,167598),(8467,167608),(8467,167615),(8467,167617),(8467,167619),(8467,215404),(8469,572),(8469,2483),(8469,3616),(8469,157632),(8469,158507),(8469,160450),(8469,171400),(8469,208983),(8469,208992),(8469,209506),(8469,236316),(8470,494),(8470,520),(8470,1786),(8470,1930),(8470,2690),(8470,7188),(8470,11612),(8487,10028),(8487,10988),(8487,163671),(8487,171636),(8488,7699),(8488,9799),(8488,13043),(8489,279),(8489,396),(8489,2792),(8489,5565),(8489,12562),(8536,83),(8536,849),(8536,9663),(8536,9715),(8536,9717),(8536,11254),(8536,15009),(8536,163455),(8536,175644),(8536,175655),(8536,175656),(8536,179102),(8536,179431),(8545,970),(8545,3769),(8545,9957),(8545,10183),(8545,10229),(8545,13001),(8545,158471),(8584,7376),(8584,8099),(8584,9935),(8584,10084),(8584,10322),(8584,13159),(8584,155291),(8584,179431),(8584,207928),(8587,2143),(8587,5276),(8587,6464),(8587,11326),(8587,11436),(8587,13084),(8587,14767),(8587,18136),(8587,18153),(8592,417),(8592,853),(8592,3149),(8592,5340),(8592,11825),(8592,33699),(8617,6894),(8617,9714),(8617,10954),(8617,12339),(8617,18514),(8617,33451),(8617,167604),(8617,181602),(8617,181604),(8617,181611),(8618,237),(8618,1412),(8618,2470),(8618,2866),(8618,6278),(8618,8095),(8618,8103),(8618,9682),(8618,10181),(8618,12105),(8618,185413),(8618,193547),(8618,208289),(8619,182662),(8619,182664),(8619,182671),(8619,182677),(8619,182681),(8643,1944),(8643,9712),(8643,10809),(8643,13153),(8643,41277),(8643,41511),(8643,49950),(8643,161207),(8643,172670),(8643,172683),(8643,172684),(8643,172694),(8643,172695),(8643,172699),(8645,3352),(8645,5096),(8645,6711),(8645,14798),(8645,187291),(8649,242),(8649,732),(8649,1546),(8649,1759),(8649,1803),(8649,3298),(8649,3737),(8649,3752),(8649,6795),(8649,7464),(8649,10508),(8649,11612),(8649,14819),(8649,14828),(8649,14964),(8649,33625),(8649,167043),(8649,206662),(8656,840),(8656,1432),(8656,3337),(8656,4040),(8656,4803),(8656,5096),(8656,6941),(8656,10222),(8656,14626),(8656,187056),(8656,199076),(8665,339),(8665,2111),(8665,4607),(8665,6790),(8665,155652),(8665,187056),(8669,894),(8669,1252),(8669,1279),(8669,1605),(8669,1803),(8669,3551),(8669,5490),(8669,5999),(8669,6247),(8669,6270),(8669,6437),(8669,7358),(8669,8029),(8669,10183),(8669,10791),(8669,15106),(8669,166287),(8675,445),(8675,572),(8675,1328),(8675,1721),(8675,3412),(8675,9715),(8675,10183),(8675,13027),(8675,14536),(8675,156166),(8675,187056),(8675,188947),(8675,194943),(8676,720),(8676,1227),(8676,1422),(8676,1666),(8676,1938),(8676,1964),(8676,2580),(8676,3342),(8676,3345),(8676,3468),(8676,6956),(8676,9823),(8676,10503),(8676,13142),(8676,14785),(8676,15160),(8676,41185),(8676,163758),(8676,194943),(8681,90),(8681,1930),(8681,6019),(8681,10084),(8681,13059),(8681,182045),(8681,197430),(8681,212801),(8688,585),(8688,2339),(8688,2792),(8688,3045),(8688,4487),(8688,9937),(8688,15090),(8688,15155),(8698,83),(8698,3133),(8698,4197),(8698,5458),(8698,160130),(8698,191409),(8698,191439),(8698,206581),(8698,232533),(8699,917),(8699,4411),(8699,6198),(8699,8531),(8699,18298),(8699,41390),(8699,165288),(8699,167241),(8699,167250),(8699,167254),(8699,179430),(8699,179431),(8699,185281),(8741,818),(8741,907),(8741,1956),(8741,3994),(8741,4278),(8741,4405),(8741,4595),(8741,7156),(8741,8083),(8741,9897),(8741,10349),(8741,10787),(8741,11106),(8741,11139),(8741,11400),(8741,11823),(8741,13065),(8741,14643),(8741,14955),(8741,160325),(8741,169123),(8741,232587),(8744,380),(8744,1010),(8744,1419),(8744,1562),(8744,4063),(8744,6149),(8744,9937),(8780,3725),(8780,7638),(8810,1653),(8810,1789),(8810,3203),(8810,3713),(8810,4458),(8810,4565),(8810,5011),(8810,5385),(8810,5650),(8810,5657),(8810,5890),(8810,8440),(8810,9276),(8810,9663),(8810,10183),(8810,10590),(8810,10689),(8810,12365),(8810,14819),(8810,15162),(8810,17937),(8810,158269),(8810,164899),(8810,172841),(8810,175994),(8810,192213),(8810,205624),(8810,234290),(8814,3822),(8814,41645),(8814,162482),(8814,162484),(8814,162487),(8814,162491),(8818,549),(8818,165707),(8818,165713),(8818,165716),(8818,165718),(8818,165725),(8818,165727),(8818,165728),(8831,779),(8831,4379),(8831,10568),(8831,175629),(8834,242),(8834,591),(8834,720),(8834,782),(8834,1328),(8834,1523),(8834,1749),(8834,1812),(8834,2340),(8834,2564),(8834,3713),(8834,4934),(8834,6078),(8834,6086),(8834,6318),(8834,9665),(8834,9826),(8834,9937),(8834,10410),(8834,13006),(8834,187844),(8834,192097),(8834,194581),(8834,226689),(8835,171162),(8835,171165),(8835,171169),(8835,171176),(8836,1603),(8836,1812),(8836,9951),(8836,18525),(8836,179431),(8838,782),(8838,1465),(8838,1646),(8838,1812),(8838,3432),(8838,3635),(8838,5202),(8838,10656),(8838,18525),(8838,194135),(8839,3335),(8839,6054),(8839,6152),(8839,6155),(8839,9713),(8839,15017),(8839,162846),(8839,189449),(8839,193545),(8839,202322),(8839,206813),(8839,206834),(8840,2343),(8840,4152),(8840,4798),(8840,4978),(8840,5331),(8840,5774),(8840,6092),(8840,8087),(8840,9104),(8840,9748),(8840,10466),(8840,14643),(8840,161257),(8840,222855),(8841,90),(8841,1952),(8841,2132),(8841,2173),(8841,2356),(8841,2470),(8841,3925),(8841,4034),(8841,7920),(8841,8746),(8841,8747),(8841,10508),(8841,10873),(8841,190116),(8841,193547),(8842,5565),(8842,6075),(8843,793),(8843,2726),(8843,4563),(8843,10714),(8843,18130),(8843,18525),(8847,378),(8847,1563),(8847,2881),(8847,2885),(8847,5894),(8847,5939),(8847,6025),(8847,11875),(8847,13006),(8847,13065),(8847,33740),(8848,1326),(8848,1552),(8848,1874),(8848,1953),(8848,2863),(8848,3345),(8848,3688),(8848,4183),(8848,4891),(8848,6025),(8848,7033),(8848,9672),(8848,11259),(8848,33456),(8848,33553),(8848,163865),(8848,167467),(8848,181659),(8848,191845),(8848,226410),(8848,226411),(8849,242),(8849,1332),(8849,1486),(8849,4320),(8849,7476),(8849,9639),(8850,242),(8850,1815),(8850,2336),(8850,3363),(8850,9715),(8850,9717),(8850,155494),(8850,189115),(8850,190034),(8854,849),(8854,12670),(8854,13065),(8854,162365),(8859,419),(8859,1453),(8859,2415),(8859,3796),(8859,6054),(8859,8224),(8859,11461),(8859,11931),(8859,13130),(8859,14964),(8859,15237),(8859,33648),(8859,33885),(8859,179431),(8859,208349),(8869,158188),(8869,158189),(8869,158190),(8869,158192),(8869,158194),(8869,158199),(8869,158203),(8869,158204),(8869,158206),(8869,162515),(8869,195026),(8869,223059),(8870,839),(8870,2964),(8870,14626),(8870,156810),(8870,188351),(8871,65),(8871,1441),(8871,1605),(8871,1991),(8871,5331),(8871,9963),(8872,2571),(8872,5540),(8872,10582),(8872,187056),(8874,1005),(8874,1459),(8874,1605),(8874,2038),(8874,5091),(8874,5756),(8874,7879),(8874,13027),(8875,3419),(8875,5774),(8875,8232),(8875,9937),(8879,75),(8879,797),(8879,1502),(8879,1936),(8879,1960),(8879,3591),(8879,6816),(8879,14819),(8879,15127),(8879,18072),(8879,189392),(8879,198141),(8883,782),(8883,792),(8883,836),(8883,1522),(8883,1956),(8883,2052),(8883,3637),(8883,4690),(8883,10183),(8883,14536),(8883,15272),(8883,193305),(8885,536),(8885,537),(8885,539),(8885,589),(8885,3030),(8885,5907),(8909,782),(8909,1872),(8909,2908),(8909,3045),(8909,9748),(8913,1909),(8913,2551),(8913,3739),(8913,6350),(8913,9872),(8913,18127),(8913,157488),(8913,157490),(8913,157492),(8913,157495),(8913,157496),(8913,157499),(8913,162181),(8913,162846),(8913,171247),(8913,173099),(8913,187056),(8913,187844),(8913,192865),(8914,2988),(8914,15097),(8914,158101),(8914,158108),(8914,158111),(8916,1402),(8916,1701),(8916,2346),(8916,3126),(8916,3640),(8916,4967),(8916,6091),(8916,7376),(8916,13065),(8916,161248),(8916,225061),(8920,271),(8920,2248),(8920,8133),(8920,195032),(8922,1583),(8922,4528),(8922,5301),(8922,5923),(8922,179430),(8942,279),(8942,6054),(8942,10349),(8942,14767),(8942,18035),(8942,187056),(8942,189092),(8942,209525),(8944,887),(8944,1599),(8944,10183),(8944,15160),(8952,934),(8952,1415),(8952,3202),(8952,4373),(8952,9890),(8952,207059),(8953,392),(8953,1436),(8953,2283),(8953,5202),(8953,7025),(8953,9350),(8953,10028),(8953,10591),(8953,207928),(8953,236176),(8960,334),(8960,567),(8960,2038),(8960,3691),(8960,4663),(8960,5608),(8960,5920),(8960,7464),(8960,8872),(8960,9715),(8960,11794),(8960,179431),(8961,416),(8961,529),(8961,701),(8961,1568),(8961,1666),(8961,1941),(8961,7963),(8961,10089),(8961,10950),(8961,12371),(8961,12648),(8961,13142),(8961,14819),(8961,14967),(8961,15271),(8961,15483),(8961,18026),(8961,18067),(8961,155799),(8961,156117),(8961,156805),(8961,167316),(8961,179093),(8961,219404),(8961,226380),(8961,226381),(8963,339),(8963,1860),(8963,2139),(8963,2534),(8963,3312),(8963,4123),(8963,4410),(8963,4933),(8963,6791),(8963,162365),(8963,198423),(8963,217133),(8963,221092),(8963,226740),(8963,226741),(8963,226742),(8966,815),(8966,3133),(8966,3691),(8966,4978),(8966,14782),(8966,33513),(8966,179431),(8966,187056),(8966,212760),(8966,223438),(8966,231407),(8967,490),(8967,494),(8967,794),(8967,1155),(8967,1670),(8967,2285),(8967,3352),(8967,5404),(8967,6155),(8967,6712),(8967,10183),(8967,10706),(8967,12405),(8967,12616),(8967,159431),(8967,212412),(8967,215020),(8968,3030),(8968,3298),(8968,5707),(8968,14602),(8968,155808),(8968,157154),(8970,242),(8970,9935),(8970,209222),(8975,3149),(8975,4183),(8975,6091),(8975,6223),(8975,15087),(8976,242),(8976,367),(8976,3658),(8976,8044),(8976,9799),(8976,9935),(8976,10556),(8976,12670),(8978,726),(8978,1666),(8978,2375),(8978,2885),(8978,3373),(8978,3543),(8978,3737),(8978,5343),(8978,5632),(8978,9714),(8978,9758),(8978,10349),(8978,10950),(8978,11734),(8978,14707),(8978,14755),(8978,14819),(8978,18107),(8978,156650),(8978,161998),(8978,173845),(8978,178929),(8981,388),(8981,494),(8981,641),(8981,1872),(8981,2299),(8981,3344),(8981,3799),(8981,5905),(8981,9736),(8981,10183),(8981,33756),(8981,187056),(8982,188),(8982,2857),(8982,5656),(8982,5657),(8982,6211),(8982,8847),(8982,10726),(8982,18165),(8984,6021),(8984,6282),(8984,10850),(8984,34038),(8987,1261),(8987,1621),(8987,1680),(8987,2492),(8987,5809),(8987,7188),(8987,8158),(8987,15009),(8987,233153),(8988,447),(8988,8159),(8988,33564),(8988,187056),(8998,1599),(8998,6038),(8998,10594),(8998,15160),(8998,15479),(8998,187056),(8999,378),(8999,520),(8999,570),(8999,818),(8999,922),(8999,1157),(8999,1596),(8999,1936),(8999,2783),(8999,3344),(8999,4480),(8999,5625),(8999,7169),(8999,9748),(8999,9758),(8999,9849),(8999,14819),(8999,15210),(8999,34094),(8999,163072),(8999,168750),(8999,187844),(8999,208591),(8999,226778),(9003,1449),(9003,3182),(9003,6152),(9003,8377),(9003,9748),(9003,10327),(9003,15001),(9003,17996),(9003,155619),(9003,161208),(9003,191564),(9007,732),(9007,818),(9007,1022),(9007,1486),(9007,2301),(9007,9799),(9007,162846),(9007,186710),(9008,470),(9008,918),(9008,3664),(9008,4434),(9008,6357),(9008,8231),(9008,11208),(9008,12193),(9008,209799),(9008,211141),(9008,219681),(9009,818),(9009,4237),(9009,9714),(9009,10508),(9009,15160),(9009,33632),(9009,162846),(9009,168346),(9012,3444),(9012,4424),(9012,5452),(9012,5699),(9012,5956),(9012,6241),(9012,200234),(9013,7340),(9013,168333),(9013,168338),(9013,168342),(9013,168346),(9013,168347),(9013,168350),(9013,168359),(9016,679),(9016,818),(9016,1826),(9016,1860),(9016,1872),(9016,1969),(9016,4418),(9016,6956),(9016,9736),(9016,9882),(9016,9951),(9016,10336),(9016,10594),(9016,11088),(9016,13194),(9016,156316),(9016,196483),(9021,65),(9021,1441),(9021,1526),(9021,1991),(9021,2343),(9021,4290),(9021,4896),(9021,5153),(9021,9663),(9021,12200),(9021,207317),(9022,1252),(9022,1419),(9022,1556),(9022,1583),(9022,3009),(9022,3152),(9022,3258),(9022,3737),(9022,4373),(9022,4812),(9022,4902),(9022,4932),(9022,4942),(9022,5514),(9022,6270),(9022,9826),(9022,14751),(9022,155884),(9022,189421),(9023,3714),(9023,6089),(9023,8241),(9023,9823),(9023,9902),(9023,10336),(9023,156234),(9023,158264),(9023,158265),(9023,158266),(9026,1605),(9026,1610),(9026,1655),(9026,3864),(9026,4214),(9026,5493),(9026,8250),(9026,208433),(9027,572),(9027,958),(9027,1342),(9027,1605),(9027,2727),(9027,8616),(9027,13027),(9027,170827),(9027,187056),(9029,585),(9029,612),(9029,1253),(9029,1907),(9029,9799),(9029,9823),(9029,13027),(9029,14570),(9030,1156),(9030,1741),(9030,2480),(9030,2481),(9030,3737),(9030,4484),(9030,5783),(9030,5923),(9030,8047),(9030,9714),(9032,1338),(9032,3703),(9032,5569),(9032,9797),(9032,9798),(9032,11336),(9032,11475),(9032,158189),(9032,161287),(9032,161298),(9032,161868),(9032,161944),(9032,161958),(9034,331),(9034,2570),(9034,4044),(9034,6162),(9034,18035),(9035,1415),(9035,1852),(9035,5404),(9035,8271),(9035,9951),(9035,14819),(9035,157634),(9035,157645),(9035,157661),(9035,179430),(9035,179431),(9035,191564),(9036,1963),(9036,3203),(9036,10349),(9036,155821),(9036,158063),(9042,6201),(9042,9786),(9042,14819),(9042,33782),(9042,156125),(9043,65),(9043,207317),(9045,716),(9045,717),(9045,1631),(9045,1739),(9045,1799),(9045,2652),(9045,11064),(9045,13005),(9045,33674),(9045,161207),(9045,206662),(9053,271),(9053,779),(9053,780),(9053,782),(9053,1721),(9053,2041),(9053,3436),(9053,5801),(9053,5970),(9053,7984),(9053,10278),(9053,12380),(9053,14601),(9053,14819),(9053,41645),(9053,178507),(9059,549),(9059,2849),(9059,2974),(9059,4238),(9059,9649),(9059,10842),(9059,11221),(9059,15001),(9059,175360),(9067,2535),(9067,4565),(9067,5484),(9067,18034),(9067,160129),(9067,187056),(9072,1009),(9072,2393),(9072,2587),(9072,5290),(9072,15009),(9074,2281),(9074,3864),(9074,6163),(9074,8015),(9074,15090),(9074,33780),(9075,930),(9075,1199),(9075,1956),(9075,3246),(9087,833),(9087,840),(9087,1605),(9087,33476),(9087,211505),(9089,2672),(9089,4543),(9089,7629),(9089,155294),(9089,171760),(9089,187056),(9092,931),(9092,1813),(9092,3098),(9092,5921),(9092,6187),(9092,33673),(9092,41406),(9092,46951),(9092,177998),(9093,187),(9093,572),(9093,1797),(9093,3930),(9093,6092),(9093,9748),(9093,9812),(9093,9826),(9093,10685),(9093,13065),(9093,14643),(9093,14765),(9093,14819),(9093,14905),(9093,14906),(9093,158217),(9093,162365),(9093,208067),(9095,964),(9095,1299),(9095,10124),(9095,156033),(9095,191009),(9095,207928),(9096,1279),(9096,3126),(9096,3664),(9096,5968),(9096,10163),(9096,10787),(9096,13005),(9096,13072),(9096,180443),(9096,180550),(9099,2952),(9099,4595),(9099,10988),(9099,11138),(9100,616),(9100,1252),(9100,1525),(9100,2343),(9100,4252),(9100,5147),(9100,5248),(9100,13130),(9100,167560),(9100,170356),(9100,177872),(9100,191655),(9100,208787),(9100,237016),(9104,74),(9104,417),(9104,572),(9104,818),(9104,5340),(9104,6092),(9104,6149),(9104,6417),(9104,14964),(9104,186447),(9208,720),(9208,1261),(9208,1316),(9208,1353),(9208,1666),(9208,1825),(9208,3203),(9208,5572),(9208,8122),(9208,9052),(9208,10085),(9208,12371),(9208,13008),(9208,14601),(9208,15263),(9208,18034),(9208,162365),(9208,208547),(9208,209476),(9208,214472),(9208,215861),(9208,219869),(9257,2434),(9257,3543),(9257,5422),(9257,6110),(9257,12670),(9260,8430),(9260,9714),(9260,10051),(9260,33905),(9266,658),(9266,1524),(9266,1668),(9266,6075),(9266,8438),(9266,155791),(9266,156322),(9268,236),(9268,502),(9268,797),(9268,1562),(9268,2052),(9268,2547),(9268,2708),(9268,3581),(9268,4009),(9268,6163),(9268,9758),(9268,10085),(9268,10202),(9268,10410),(9268,11207),(9268,12371),(9268,13008),(9268,14601),(9268,14819),(9268,15246),(9268,156334),(9268,176802),(9268,191600),(9268,228607),(9268,228610),(9271,310),(9271,803),(9271,3249),(9271,4286),(9271,4563),(9271,8440),(9271,9819),(9271,177258),(9273,409),(9273,1551),(9273,2526),(9273,5155),(9275,417),(9275,2248),(9275,2571),(9275,3836),(9275,8442),(9275,179431),(9276,579),(9276,6270),(9276,9951),(9276,10508),(9276,13130),(9276,14964),(9276,15250),(9276,161891),(9276,206364),(9276,231149),(9276,233296),(9276,236892),(9277,520),(9277,622),(9277,643),(9277,1522),(9277,3202),(9277,6220),(9277,14819),(9277,167411),(9277,167418),(9277,167424),(9277,167428),(9277,167431),(9277,214548),(9277,232222),(9279,65),(9279,1441),(9279,1991),(9279,4290),(9279,6300),(9279,207317),(9279,210190),(9279,210191),(9280,90),(9280,254),(9280,2547),(9280,2560),(9280,8445),(9281,417),(9281,703),(9281,796),(9281,8447),(9281,9937),(9281,208590),(9281,236294),(9282,567),(9282,572),(9282,642),(9282,1328),(9282,1419),(9282,1546),(9282,2016),(9282,3713),(9282,5638),(9282,6149),(9282,8233),(9282,9826),(9282,14541),(9282,200460),(9285,293),(9285,572),(9285,4411),(9285,5098),(9285,6935),(9285,6946),(9285,7312),(9285,10058),(9285,11475),(9285,11488),(9285,11870),(9285,12398),(9285,33472),(9285,33501),(9285,54169),(9285,159141),(9285,166287),(9285,167737),(9285,167739),(9285,167749),(9285,167768),(9285,183728),(9285,206298),(9286,1829),(9286,3737),(9286,4327),(9288,6211),(9288,9920),(9288,10541),(9288,12554),(9289,1956),(9289,4299),(9289,5300),(9289,8908),(9289,11139),(9289,13065),(9290,3185),(9290,3612),(9290,12670),(9290,159534),(9291,378),(9291,579),(9291,1563),(9291,1936),(9291,5418),(9291,6075),(9292,716),(9292,2967),(9292,5918),(9292,6168),(9294,879),(9294,5086),(9294,6257),(9294,6564),(9294,13005),(9294,163543),(9297,1299),(9297,1328),(9297,4290),(9297,10103),(9297,10226),(9297,10364),(9297,208349),(9302,416),(9302,2136),(9302,3658),(9302,8476),(9302,12193),(9303,378),(9303,5424),(9303,9937),(9303,10391),(9303,10768),(9303,13142),(9303,156121),(9303,187056),(9304,402),(9304,2281),(9304,11628),(9304,12572),(9304,33496),(9306,1299),(9306,1706),(9306,2041),(9306,2766),(9306,6017),(9306,9410),(9306,9714),(9306,225523),(9310,840),(9310,2248),(9310,4344),(9310,6027),(9310,8490),(9310,8492),(9310,208385),(9311,792),(9311,3355),(9311,4803),(9311,8721),(9311,10794),(9312,779),(9312,1299),(9312,2041),(9312,10292),(9312,10821),(9312,12380),(9312,14819),(9312,41645),(9312,188955),(9313,254),(9313,1400),(9313,2546),(9313,14577),(9315,220),(9315,1872),(9315,3800),(9315,4725),(9327,2064),(9327,4539),(9327,179431),(9331,441),(9331,470),(9331,502),(9331,591),(9331,720),(9331,818),(9331,840),(9331,1589),(9331,1812),(9331,2148),(9331,2149),(9331,2532),(9331,3045),(9331,3070),(9331,3074),(9331,3547),(9331,5265),(9331,6091),(9331,7336),(9331,10175),(9331,10410),(9331,10950),(9331,11106),(9331,14819),(9331,155723),(9331,226620),(9334,1160),(9334,1530),(9335,779),(9335,1601),(9335,1930),(9335,3088),(9335,4725),(9336,1482),(9336,2999),(9336,4358),(9336,40957),(9339,802),(9339,1022),(9339,1786),(9339,2301),(9339,3737),(9339,4379),(9339,8506),(9339,10103),(9339,11390),(9339,11612),(9339,13027),(9339,15162),(9339,34004),(9339,156282),(9339,162225),(9339,175536),(9341,5178),(9341,187033),(9341,189411),(9342,387),(9342,470),(9342,1701),(9342,2284),(9342,9725),(9342,9748),(9344,1525),(9344,2201),(9348,1475),(9348,1718),(9348,2340),(9348,6017),(9348,6245),(9348,9016),(9348,9951),(9348,10562),(9348,11181),(9348,11190),(9348,12670),(9348,163481),(9348,163561),(9348,234319),(9348,235513),(9350,2805),(9350,3800),(9350,4245),(9350,4702),(9350,8624),(9350,10051),(9350,10594),(9350,10794),(9350,159212),(9350,229053),(9352,90),(9352,220),(9352,567),(9352,572),(9352,2483),(9352,4414),(9352,7868),(9352,9935),(9352,10031),(9352,10776),(9352,13130),(9352,179431),(9353,745),(9353,6075),(9353,6783),(9353,8944),(9353,8945),(9353,10594),(9355,1395),(9355,1965),(9355,4565),(9355,8516),(9355,9663),(9355,194713),(9355,205624),(9357,739),(9357,922),(9357,1332),(9357,1545),(9357,2060),(9357,2483),(9357,4728),(9357,5732),(9357,6025),(9357,6844),(9357,8517),(9357,9937),(9357,167310),(9357,170344),(9357,178649),(9357,231641),(9358,1546),(9358,10170),(9358,11612),(9360,5968),(9360,10787),(9360,158233),(9360,158235),(9360,158241),(9360,158244),(9360,217120),(9360,223059),(9361,7879),(9361,8519),(9361,10322),(9361,160279),(9361,208123),(9362,1197),(9362,1415),(9362,2025),(9362,9743),(9362,10471),(9362,14991),(9362,18255),(9362,158064),(9362,158070),(9362,158071),(9362,158072),(9362,158144),(9366,1568),(9366,2148),(9366,10391),(9366,11578),(9366,11719),(9366,167715),(9366,177554),(9366,177555),(9366,177565),(9366,177571),(9367,5616),(9367,33649),(9367,162740),(9367,187891),(9367,206558),(9372,1706),(9372,3721),(9372,7151),(9372,15178),(9372,157748),(9372,161956),(9374,931),(9374,3258),(9374,4978),(9374,9823),(9374,14752),(9374,15111),(9378,414),(9378,2341),(9378,2483),(9378,4295),(9378,6095),(9378,6152),(9378,6154),(9378,6464),(9378,9748),(9378,10909),(9378,10911),(9378,11221),(9378,14742),(9378,14819),(9378,14999),(9378,18029),(9378,33618),(9378,156075),(9378,188478),(9381,339),(9381,1009),(9381,1328),(9381,2964),(9381,3070),(9381,3246),(9381,4556),(9381,4565),(9381,4690),(9381,6212),(9381,10629),(9381,10721),(9381,12190),(9381,173162),(9383,627),(9383,4005),(9383,14760),(9383,160130),(9383,198781),(9384,167715),(9384,167724),(9384,167726),(9387,1394),(9387,1522),(9387,4798),(9387,14665),(9387,234213),(9388,494),(9388,592),(9388,818),(9388,919),(9388,2251),(9388,3170),(9388,3664),(9388,3703),(9388,3721),(9388,3983),(9388,6078),(9388,6083),(9388,6357),(9388,9468),(9388,10123),(9388,10163),(9388,10183),(9388,10594),(9388,11011),(9388,11514),(9388,11732),(9388,12094),(9388,15086),(9388,33720),(9388,33740),(9388,159350),(9388,171439),(9388,188950),(9388,209121),(9388,219605),(9388,219681),(9388,219731),(9389,90),(9389,907),(9389,1284),(9389,1449),(9389,2693),(9389,2964),(9389,3258),(9389,4399),(9389,4565),(9389,5306),(9389,6149),(9389,8570),(9389,10336),(9389,10941),(9389,10987),(9389,12999),(9389,14604),(9389,14760),(9389,169816),(9389,188950),(9390,1485),(9390,3658),(9390,6075),(9390,178372),(9392,1852),(9392,1963),(9392,1964),(9392,3762),(9392,6399),(9392,8624),(9392,8695),(9392,8796),(9392,9713),(9392,11322),(9392,50009),(9396,242),(9396,3185),(9396,5657),(9396,156849),(9396,179430),(9398,167193),(9398,167195),(9398,167198),(9398,167200),(9398,167210),(9398,167212),(9398,167215),(9400,641),(9400,2492),(9400,4813),(9400,12670),(9408,658),(9408,1477),(9408,1524),(9408,1669),(9408,1671),(9408,2581),(9408,5378),(9408,5614),(9408,11800),(9414,212),(9414,258),(9414,380),(9414,720),(9414,818),(9414,974),(9414,2571),(9414,6034),(9414,10325),(9414,10685),(9414,33705),(9416,378),(9416,1384),(9416,2019),(9416,3543),(9416,4434),(9416,5638),(9422,3836),(9422,5212),(9422,6145),(9422,8097),(9422,10909),(9422,49960),(9424,236),(9424,572),(9424,2041),(9424,3030),(9424,3713),(9424,6149),(9424,6255),(9424,6270),(9424,6318),(9424,9678),(9424,9826),(9424,10508),(9424,12105),(9424,12400),(9424,13130),(9424,14837),(9424,207069),(9425,1826),(9425,4565),(9425,10158),(9425,163561),(9427,1252),(9427,4378),(9427,164852),(9427,164861),(9427,164865),(9428,3446),(9428,5561),(9428,6564),(9428,10041),(9428,11732),(9428,155294),(9429,1759),(9429,2334),(9429,2382),(9429,2779),(9429,6664),(9429,10254),(9430,1941),(9430,11733),(9430,14964),(9430,168807),(9430,168811),(9430,168812),(9430,171366),(9433,1003),(9433,2522),(9433,3593),(9433,3800),(9433,4522),(9433,4811),(9433,9937),(9433,10349),(9433,10468),(9433,223059),(9434,3045),(9434,6275),(9434,161213),(9437,521),(9437,3877),(9437,5340),(9437,5922),(9437,156091),(9440,833),(9440,840),(9440,2946),(9440,3692),(9440,6375),(9440,34094),(9441,15160),(9441,15161),(9441,15163),(9441,15164),(9441,15165),(9441,15166),(9443,240),(9443,388),(9443,835),(9443,1627),(9443,2070),(9443,2606),(9443,3044),(9443,3734),(9444,3462),(9444,4344),(9444,158620),(9444,158627),(9444,158628),(9444,158629),(9447,2206),(9447,4900),(9447,4931),(9447,4932),(9447,8082),(9447,11477),(9447,11478),(9447,15162),(9447,157972),(9447,206052),(9448,5413),(9448,10123),(9448,11732),(9448,18512),(9448,34053),(9448,159514),(9448,161992),(9448,161994),(9448,161996),(9448,161998),(9448,161999),(9449,604),(9449,6215),(9449,10909),(9449,33873),(9449,161868),(9449,179867),(9451,931),(9451,1326),(9451,2016),(9451,2598),(9451,2669),(9451,3687),(9451,3692),(9451,3734),(9451,6078),(9451,6270),(9451,6324),(9451,8201),(9451,8508),(9451,9986),(9451,10183),(9451,10508),(9451,11011),(9451,14782),(9451,15134),(9451,178452),(9452,3045),(9452,6078),(9452,6085),(9452,41156),(9452,165347),(9452,169086),(9452,207009),(9454,254),(9454,516),(9454,2831),(9454,2967),(9454,3071),(9454,3205),(9454,9920),(9454,13014),(9454,173003),(9454,196905),(9454,208244),(9454,232987),(9454,233065),(9454,233134),(9454,234073),(9454,236376),(9454,236377),(9455,242),(9455,314),(9455,2987),(9455,6149),(9455,8559),(9455,41383),(9457,4953),(9457,33696),(9457,155508),(9457,196917),(9459,458),(9459,460),(9459,4344),(9459,6027),(9459,6447),(9459,6579),(9459,11700),(9459,13088),(9464,378),(9464,395),(9464,5887),(9466,8527),(9466,10183),(9466,12193),(9466,155816),(9466,184989),(9469,378),(9469,494),(9469,1849),(9469,2538),(9469,3398),(9469,3446),(9469,3616),(9469,6496),(9469,10183),(9470,780),(9470,2343),(9470,10391),(9470,11032),(9470,13142),(9470,33699),(9470,236316),(9471,642),(9471,1308),(9471,4289),(9472,240),(9472,271),(9472,974),(9472,1010),(9472,2283),(9472,2920),(9472,3429),(9472,4183),(9472,6075),(9472,6269),(9472,7864),(9472,8679),(9472,9673),(9472,11014),(9472,11672),(9472,12988),(9472,179430),(9472,179431),(9473,237),(9473,471),(9473,2482),(9473,2870),(9473,6154),(9473,6778),(9473,8102),(9473,8421),(9473,8636),(9473,8778),(9473,9663),(9473,9887),(9473,10033),(9473,10138),(9473,10988),(9473,11214),(9473,11217),(9473,11317),(9473,11324),(9473,11325),(9473,161919),(9473,203175),(9476,496),(9476,10466),(9476,12380),(9476,12965),(9476,13006),(9476,13028),(9476,13068),(9476,14765),(9476,18249),(9476,34067),(9476,179430),(9481,856),(9481,5340),(9481,6259),(9486,470),(9486,1701),(9486,2011),(9486,2051),(9486,2505),(9486,3739),(9486,4289),(9486,4308),(9486,6110),(9486,11931),(9486,14601),(9486,33705),(9486,33707),(9486,179431),(9487,1442),(9487,1721),(9487,3126),(9487,3338),(9487,4295),(9487,8790),(9487,9963),(9487,11539),(9487,179431),(9488,470),(9488,1706),(9488,2041),(9488,3271),(9488,4391),(9488,6110),(9488,9823),(9488,14760),(9489,9799),(9489,182195),(9489,187056),(9490,919),(9490,6129),(9490,10776),(9490,14964),(9490,187056),(9493,168196),(9493,168200),(9493,168202),(9493,168210),(9493,168211),(9493,168213),(9493,168216),(9493,168219),(9493,168220),(9493,168222),(9495,3335),(9495,11363),(9495,18021),(9502,478),(9502,779),(9502,780),(9502,1310),(9502,1585),(9502,1946),(9502,1998),(9502,2660),(9502,3930),(9502,4809),(9502,6362),(9502,8531),(9502,9362),(9502,11500),(9502,14955),(9502,15036),(9502,15149),(9502,33401),(9502,40850),(9502,156075),(9502,179430),(9502,185319),(9502,193046),(9504,642),(9504,1438),(9504,1998),(9504,2918),(9504,6129),(9504,11836),(9504,13001),(9504,34117),(9504,179867),(9504,201885),(9504,207268),(9509,534),(9509,591),(9509,1930),(9509,2913),(9509,3036),(9509,3088),(9509,10668),(9509,15156),(9509,33457),(9509,156816),(9509,181117),(9509,182733),(9513,212),(9513,977),(9513,2281),(9513,2613),(9513,4391),(9513,177998),(9513,195032),(9515,1547),(9515,1599),(9515,9227),(9515,10183),(9515,156104),(9515,227532),(9516,577),(9516,2231),(9516,2394),(9516,6110),(9516,6147),(9516,12670),(9517,1196),(9517,4378),(9517,10180),(9517,10183),(9517,12392),(9517,13072),(9517,155939),(9526,279),(9526,727),(9526,1004),(9526,3740),(9526,4305),(9526,9248),(9526,9249),(9526,10229),(9531,83),(9531,849),(9531,3222),(9531,3394),(9531,3861),(9531,9663),(9531,9715),(9531,9717),(9531,12361),(9531,163455),(9531,179102),(9532,4133),(9532,10812),(9532,13092),(9532,34079),(9532,199686),(9533,6259),(9533,10714),(9533,18525),(9535,242),(9535,6220),(9535,13027),(9535,15106),(9541,1873),(9541,5600),(9541,13056),(9543,1241),(9543,1965),(9543,12653),(9543,12654),(9543,12655),(9543,41645),(9544,4776),(9544,6259),(9544,7923),(9544,8015),(9544,13005),(9544,13153),(9544,15127),(9544,178649),(9548,578),(9548,837),(9548,2570),(9548,5540),(9548,9826),(9548,155790),(9549,2106),(9549,3203),(9549,3801),(9549,6078),(9549,6165),(9549,8044),(9549,14626),(9549,156836),(9549,221295),(9550,779),(9550,1400),(9550,6086),(9550,11196),(9550,46950),(9552,2626),(9552,3649),(9552,3684),(9552,5569),(9552,5950),(9552,9712),(9552,9754),(9552,10093),(9552,10112),(9552,10138),(9552,11627),(9552,14659),(9552,15001),(9552,18402),(9552,179564),(9552,179567),(9552,198435),(9555,516),(9555,1156),(9555,3246),(9555,5657),(9555,6267),(9555,9672),(9555,10183),(9555,10230),(9555,10349),(9555,157906),(9555,158217),(9555,193459),(9555,193760),(9555,209560),(9555,209619),(9555,210108),(9557,237),(9557,7984),(9557,11095),(9557,191682),(9562,1992),(9562,4379),(9562,8056),(9562,8701),(9562,9032),(9562,9532),(9562,10466),(9562,189151),(9563,579),(9563,1482),(9563,4613),(9563,5621),(9563,6075),(9563,155802),(9566,6075),(9566,157904),(9566,178355),(9566,178364),(9566,178368),(9566,178369),(9566,178370),(9566,178372),(9566,178378),(9566,178379),(9567,4595),(9567,7587),(9567,8570),(9570,1373),(9570,1826),(9570,4078),(9570,4380),(9571,1228),(9571,1556),(9571,6270),(9571,10267),(9571,10683),(9571,13088),(9571,13130),(9571,15060),(9571,234367),(9573,1922),(9573,2860),(9573,5340),(9573,6149),(9573,8440),(9573,9937),(9573,185221),(9573,185222),(9574,1334),(9574,1436),(9574,3092),(9574,6348),(9574,8044),(9574,10125),(9574,13027),(9576,1326),(9576,9673),(9576,9713),(9576,12090),(9576,160410),(9576,160413),(9576,160420),(9576,160422),(9576,160423),(9576,160424),(9576,207583),(9576,207716),(9582,1326),(9582,1338),(9582,1936),(9582,2486),(9582,6256),(9582,8508),(9582,9468),(9582,9713),(9582,12541),(9582,13027),(9582,208764),(9583,2908),(9583,4541),(9583,6038),(9583,10707),(9583,10965),(9583,156195),(9583,187056),(9587,894),(9587,10707),(9587,10721),(9587,33513),(9587,174566),(9587,174570),(9587,174571),(9587,174584),(9587,187056),(9588,3094),(9588,3713),(9591,3490),(9591,4344),(9591,5716),(9591,6027),(9591,41591),(9593,2343),(9593,9732),(9593,11931),(9593,15252),(9593,15284),(9593,48711),(9593,160612),(9593,161849),(9593,161868),(9594,2143),(9594,3436),(9594,6211),(9594,9748),(9594,12354),(9594,15016),(9594,160488),(9598,3020),(9598,4931),(9598,5608),(9598,8082),(9598,11115),(9598,11477),(9598,18013),(9598,33671),(9598,158019),(9598,206052),(9600,228342),(9600,228343),(9600,228344),(9600,228345),(9603,1525),(9603,6270),(9603,6664),(9603,7208),(9603,10199),(9603,11933),(9603,187056),(9607,83),(9607,380),(9607,9920),(9607,12616),(9607,41645),(9607,187056),(9607,194215),(9610,1400),(9610,1938),(9610,2343),(9610,3389),(9610,3568),(9610,6333),(9610,9920),(9610,14665),(9610,234213),(9613,1328),(9613,2884),(9613,5832),(9613,6162),(9613,6259),(9614,936),(9614,1872),(9614,2702),(9614,6075),(9614,6128),(9615,830),(9615,1926),(9615,3296),(9615,3796),(9615,6996),(9615,8574),(9615,10931),(9615,33885),(9615,159953),(9616,483),(9616,588),(9616,716),(9616,3271),(9616,5340),(9616,7412),(9616,10063),(9616,10093),(9616,12565),(9616,14819),(9616,157008),(9616,172762),(9616,172772),(9616,172792),(9616,204017),(9618,1563),(9618,1601),(9618,12670),(9619,720),(9619,1415),(9619,1919),(9619,2227),(9619,2669),(9619,2859),(9619,3347),(9619,3623),(9619,4663),(9619,5096),(9619,6281),(9619,7051),(9619,10084),(9619,14601),(9619,14760),(9619,158272),(9619,163398),(9619,164658),(9619,188351),(9619,208580),(9619,211215),(9619,215861),(9619,220844),(9620,530),(9620,5721),(9620,14760),(9620,33626),(9621,236),(9621,922),(9621,1252),(9621,1605),(9621,3739),(9621,3800),(9621,4663),(9621,13072),(9623,1417),(9623,1936),(9623,3012),(9623,5153),(9623,11038),(9623,33519),(9624,1721),(9624,3355),(9624,5175),(9624,6129),(9624,9880),(9624,161318),(9625,4289),(9625,6162),(9625,8015),(9625,14676),(9625,180668),(9626,1299),(9626,1400),(9626,2011),(9626,6556),(9626,8828),(9626,9717),(9626,234213),(9631,417),(9631,1562),(9631,6125),(9631,6139),(9631,6149),(9631,7188),(9631,9826),(9631,9937),(9631,10410),(9631,14677),(9631,209140),(9637,1735),(9637,3392),(9637,10793),(9637,223067),(9641,65),(9641,1889),(9641,4498),(9641,5905),(9641,7269),(9641,9823),(9641,33694),(9644,2150),(9644,6149),(9644,11931),(9644,12670),(9645,2799),(9645,3203),(9645,4078),(9647,65),(9647,7271),(9647,10267),(9647,33966),(9647,161174),(9647,162846),(9647,179431),(9647,207317),(9654,110),(9654,387),(9654,477),(9654,720),(9654,1201),(9654,1262),(9654,1321),(9654,1552),(9654,2157),(9654,3713),(9654,8430),(9654,9714),(9654,9728),(9654,9748),(9654,9826),(9654,10051),(9654,10476),(9654,10604),(9654,12391),(9654,12670),(9654,14601),(9654,15234),(9654,15300),(9654,15483),(9654,158584),(9654,159510),(9654,159511),(9654,177958),(9655,1253),(9655,1608),(9655,6075),(9655,6271),(9655,7375),(9655,10325),(9655,13042),(9655,13130),(9655,155722),(9655,156928),(9655,167808),(9655,168481),(9655,191222),(9656,65),(9656,2467),(9656,3321),(9656,5707),(9656,6259),(9656,10714),(9656,13112),(9656,33965),(9656,186466),(9659,473),(9659,1009),(9659,3450),(9659,4458),(9659,4565),(9659,5144),(9659,6239),(9659,6951),(9659,9104),(9659,9276),(9659,14735),(9659,14736),(9659,18114),(9659,205624),(9662,254),(9662,1930),(9662,5202),(9662,6951),(9662,8633),(9662,10391),(9662,15162),(9662,33473),(9662,33474),(9662,154802),(9662,172972),(9664,2504),(9664,168615),(9665,6091),(9665,12425),(9665,14643),(9665,160201),(9665,166464),(9665,179585),(9667,919),(9667,1279),(9667,2800),(9667,3298),(9667,4005),(9667,4379),(9667,6091),(9667,9673),(9667,11268),(9667,13065),(9667,15106),(9667,33977),(9667,160153),(9667,160497),(9667,182223),(9667,199686),(9667,216079),(9667,218121),(9671,242),(9671,549),(9671,612),(9671,736),(9671,1463),(9671,1552),(9671,3185),(9671,3593),(9671,4728),(9671,5159),(9671,5641),(9671,8723),(9671,14828),(9671,193760),(9671,208662),(9672,627),(9672,2122),(9672,7658),(9672,10818),(9672,217324),(9675,387),(9675,2702),(9675,3089),(9675,6563),(9675,8070),(9675,10776),(9675,13028),(9676,445),(9676,5446),(9676,12670),(9676,217324),(9678,494),(9678,1155),(9678,2870),(9678,167707),(9679,380),(9679,703),(9679,830),(9679,915),(9679,1936),(9679,5301),(9679,9714),(9679,10051),(9679,10085),(9679,10291),(9679,10950),(9679,11148),(9679,14601),(9679,14819),(9679,15100),(9679,15483),(9679,41158),(9679,156117),(9679,161636),(9679,162842),(9679,226581),(9679,227900),(9682,236),(9682,2157),(9682,4959),(9682,6614),(9682,9714),(9683,725),(9683,8653),(9683,9986),(9683,14751),(9683,40895),(9685,494),(9685,8917),(9685,10183),(9685,13072),(9686,242),(9686,456),(9686,612),(9686,642),(9686,931),(9686,1523),(9686,2679),(9686,2861),(9686,3487),(9686,9706),(9686,10909),(9686,14828),(9686,14893),(9686,156174),(9686,157913),(9689,1741),(9689,2055),(9689,2793),(9691,271),(9691,441),(9691,591),(9691,974),(9691,977),(9691,1666),(9691,2350),(9691,2708),(9691,3045),(9691,3979),(9691,9823),(9691,10084),(9691,10950),(9691,11148),(9691,12355),(9691,18107),(9691,33456),(9691,167861),(9691,178929),(9693,318),(9693,458),(9693,526),(9693,2618),(9693,2964),(9693,4565),(9693,4630),(9693,4995),(9693,5885),(9693,6150),(9693,10349),(9693,17985),(9693,41589),(9697,663),(9697,3684),(9697,4769),(9697,5457),(9697,6154),(9697,8181),(9697,9188),(9697,179430),(9700,701),(9700,7936),(9700,8658),(9701,570),(9701,1328),(9701,1360),(9701,3581),(9701,4781),(9701,6060),(9701,6148),(9701,7335),(9701,9673),(9701,10768),(9701,14643),(9701,14678),(9701,15184),(9701,187056),(9701,190938),(9701,196626),(9701,202506),(9702,2400),(9702,2679),(9702,9890),(9702,10211),(9702,10700),(9702,10726),(9702,10766),(9702,12425),(9702,14964),(9702,164253),(9702,183637),(9702,193309),(9702,206318),(9702,206319),(9703,1405),(9703,2280),(9703,5049),(9703,8659),(9703,14704),(9703,194576),(9705,293),(9705,2157),(9705,13015),(9705,14819),(9705,156121),(9705,159384),(9705,159399),(9705,159401),(9705,179430),(9707,4170),(9707,162954),(9709,392),(9709,1155),(9709,1412),(9709,5215),(9709,5248),(9709,9008),(9709,9833),(9709,10180),(9709,13088),(9709,156928),(9709,158718),(9713,1361),(9713,2136),(9713,7271),(9713,8616),(9713,10582),(9715,1556),(9715,2285),(9715,2300),(9715,2982),(9715,3739),(9715,4328),(9715,6203),(9715,6270),(9715,11297),(9715,15162),(9715,41171),(9716,90),(9716,110),(9716,596),(9716,642),(9716,725),(9716,733),(9716,822),(9716,978),(9716,1326),(9716,1407),(9716,1442),(9716,1459),(9716,1605),(9716,1946),(9716,3282),(9716,3335),(9716,3525),(9716,4320),(9716,4344),(9716,4412),(9716,4543),(9716,4992),(9716,5159),(9716,6921),(9716,8778),(9716,10041),(9716,10183),(9716,10235),(9716,10325),(9716,10329),(9716,11436),(9716,11510),(9716,11612),(9716,12372),(9716,12414),(9716,12990),(9716,13097),(9716,14512),(9716,15160),(9716,33556),(9716,33965),(9716,34117),(9716,40950),(9716,156112),(9716,156237),(9716,159876),(9716,160322),(9716,161287),(9716,162846),(9716,165301),(9716,172418),(9716,174116),(9716,178883),(9716,180193),(9716,187844),(9716,188667),(9716,190161),(9716,197362),(9716,199232),(9716,208764),(9718,5922),(9718,6157),(9718,9848),(9718,15086),(9718,15160),(9718,33726),(9718,159953),(9718,161630),(9718,161635),(9718,161636),(9718,161643),(9718,161647),(9718,161652),(9718,179430),(9718,179431),(9725,1890),(9725,5767),(9725,10292),(9725,12339),(9725,193575),(9725,207969),(9726,1649),(9726,1811),(9726,5334),(9726,5990),(9726,6563),(9726,7755),(9728,1889),(9728,5767),(9728,9826),(9728,10714),(9728,12339),(9728,13088),(9728,163621),(9728,163651),(9728,163652),(9729,572),(9729,736),(9729,917),(9729,1228),(9729,1491),(9729,2864),(9729,34094),(9729,217311),(9730,1889),(9730,6506),(9730,10326),(9730,10714),(9730,179422),(9730,206977),(9731,2546),(9731,2800),(9731,10714),(9731,11612),(9731,13130),(9731,14676),(9737,416),(9737,703),(9737,772),(9737,822),(9737,1666),(9737,3688),(9737,4009),(9737,9844),(9737,11730),(9737,12371),(9737,14601),(9737,14707),(9737,14967),(9737,15483),(9737,18026),(9737,166856),(9737,167114),(9737,167115),(9737,167119),(9737,167124),(9737,167128),(9737,219404),(9737,226376),(9741,494),(9741,4619),(9741,5451),(9741,5809),(9741,8872),(9741,9715),(9741,9937),(9741,163455),(9746,188),(9746,478),(9746,1262),(9746,1529),(9746,4558),(9746,4559),(9746,4561),(9746,5722),(9754,974),(9754,1576),(9754,1936),(9754,2157),(9754,2350),(9754,155555),(9754,155584),(9759,974),(9759,1880),(9759,6103),(9759,6110),(9759,6149),(9759,179431),(9762,246),(9762,1605),(9762,1691),(9762,2672),(9762,8734),(9762,187056),(9763,1946),(9763,6075),(9763,8338),(9763,10456),(9763,18132),(9763,18133),(9766,271),(9766,1563),(9766,3396),(9766,6075),(9766,14819),(9766,155791),(9767,420),(9767,520),(9767,579),(9767,1439),(9767,1480),(9767,1605),(9767,10424),(9767,14602),(9767,15478),(9767,41379),(9767,158427),(9767,160960),(9767,162296),(9767,191260),(9767,215485),(9770,736),(9770,2598),(9770,3051),(9770,10183),(9772,378),(9772,417),(9772,736),(9772,833),(9772,1562),(9772,1954),(9772,7188),(9772,8986),(9772,10237),(9772,10410),(9772,12371),(9772,15089),(9772,41249),(9772,174019),(9772,188955),(9772,200808),(9772,207901),(9772,226150),(9776,279),(9776,577),(9776,840),(9776,2946),(9776,6085),(9778,815),(9778,1605),(9778,3096),(9778,7597),(9778,10855),(9778,40850),(9779,65),(9779,5248),(9779,9634),(9779,10683),(9779,10809),(9779,13088),(9779,223438),(9781,970),(9781,5091),(9781,10183),(9781,14751),(9781,14964),(9781,18021),(9782,1224),(9782,3740),(9782,4305),(9782,10183),(9783,428),(9783,2800),(9783,9937),(9783,11221),(9783,11612),(9787,390),(9787,3836),(9787,10183),(9787,187056),(9792,502),(9792,1508),(9792,4580),(9792,33694),(9792,155627),(9793,1508),(9793,1852),(9793,6093),(9793,10349),(9794,1361),(9794,1599),(9794,1985),(9794,5653),(9794,8631),(9794,8632),(9798,417),(9798,521),(9798,720),(9798,769),(9798,1284),(9798,1666),(9798,1936),(9798,2051),(9798,2980),(9798,3376),(9798,3635),(9798,6078),(9798,9778),(9798,9937),(9798,10092),(9798,10391),(9798,10410),(9798,10909),(9798,14536),(9798,18419),(9798,18420),(9798,158938),(9798,227411),(9799,542),(9799,830),(9799,1568),(9799,8574),(9799,12670),(9799,33885),(9799,159953),(9799,179430),(9799,179431),(9800,237),(9800,740),(9800,1013),(9800,1417),(9800,6148),(9800,9104),(9800,9766),(9800,10909),(9800,41589),(9800,186782),(9800,207968),(9801,212),(9801,725),(9801,3434),(9801,5347),(9801,5348),(9801,156702),(9801,187056),(9802,582),(9802,1812),(9802,3293),(9802,3859),(9802,18233),(9802,18525),(9804,270),(9804,331),(9804,1852),(9804,4237),(9804,4565),(9804,34161),(9806,1308),(9806,1328),(9806,1701),(9806,2041),(9806,4391),(9806,4769),(9806,6110),(9806,7335),(9806,9715),(9809,1872),(9809,4313),(9809,5653),(9809,8622),(9809,15237),(9813,894),(9813,1441),(9813,1635),(9813,5600),(9813,8635),(9813,8636),(9813,10183),(9813,10707),(9813,33841),(9813,187056),(9816,4118),(9816,4344),(9816,10551),(9819,1156),(9819,5923),(9819,8097),(9819,9824),(9819,10163),(9819,185263),(9821,2494),(9821,10683),(9821,158558),(9821,170783),(9821,170786),(9821,170801),(9822,690),(9822,3737),(9823,779),(9823,1002),(9823,12380),(9823,14643),(9823,14955),(9823,41645),(9823,188955),(9824,420),(9824,1562),(9824,3465),(9824,4613),(9824,4924),(9824,6100),(9824,6737),(9824,8642),(9824,9715),(9824,9717),(9824,10183),(9824,10267),(9824,11931),(9824,15084),(9824,41376),(9824,155490),(9824,157677),(9824,160130),(9824,178857),(9824,189115),(9824,192389),(9824,200646),(9824,211711),(9824,211712),(9825,269),(9825,798),(9825,1889),(9825,3185),(9825,4204),(9825,4477),(9825,5543),(9825,9927),(9825,11181),(9825,11581),(9825,14760),(9825,158169),(9825,158172),(9825,158175),(9825,158176),(9825,158182),(9825,162533),(9825,188054),(9825,195325),(9825,223059),(9826,1308),(9826,1321),(9826,3149),(9826,3284),(9826,3625),(9826,3720),(9826,4933),(9826,8643),(9826,9717),(9826,10787),(9826,203423),(9826,212009),(9829,3800),(9829,4245),(9829,4460),(9829,4811),(9829,5597),(9833,246),(9833,1523),(9833,2096),(9833,2564),(9833,3259),(9833,3977),(9833,4344),(9833,9714),(9833,10045),(9833,12999),(9833,15219),(9833,156525),(9833,157676),(9833,158375),(9833,163110),(9833,164899),(9833,164917),(9833,164920),(9833,210184),(9836,270),(9836,1357),(9836,2172),(9836,3028),(9836,4345),(9836,9673),(9836,9986),(9836,10794),(9836,11500),(9836,12990),(9836,14728),(9836,18035),(9836,179431),(9837,488),(9837,1160),(9837,1949),(9837,2226),(9837,4152),(9837,6088),(9837,157894),(9837,183814),(9837,186939),(9837,187056),(9839,212),(9839,591),(9839,1961),(9839,2038),(9839,2960),(9839,5946),(9839,8780),(9839,8781),(9842,248),(9842,271),(9842,725),(9842,1310),(9842,154781),(9849,9951),(9849,10539),(9849,10988),(9849,11860),(9869,441),(9869,782),(9869,1522),(9869,14552),(9869,155723),(9870,1668),(9870,2864),(9870,3258),(9877,3616),(9877,9826),(9877,9955),(9877,12339),(9877,15127),(9877,34079),(9879,1936),(9879,3688),(9879,4378),(9879,6149),(9879,33483),(9880,5515),(9880,5987),(9880,6270),(9880,7376),(9880,9920),(9880,13130),(9880,15402),(9880,171556),(9880,223438),(9882,187),(9882,789),(9882,7336),(9882,18525),(9884,949),(9884,1812),(9884,2148),(9884,2733),(9884,9748),(9884,14601),(9884,41019),(9884,206544),(9889,2064),(9889,3258),(9889,3363),(9889,4539),(9889,8663),(9889,8664),(9889,8665),(9889,9974),(9889,156092),(9889,214664),(9889,230616),(9889,236373),(9889,236374),(9890,803),(9890,3451),(9890,4375),(9893,6270),(9893,8783),(9893,10791),(9893,11798),(9893,13130),(9893,155722),(9894,378),(9894,549),(9894,1005),(9894,10123),(9894,208575),(9895,840),(9895,2946),(9895,3485),(9896,585),(9896,795),(9896,8666),(9896,33626),(9896,167043),(9899,1332),(9899,3063),(9899,3836),(9899,6027),(9899,6946),(9899,11065),(9899,33879),(9899,165241),(9899,179430),(9899,187056),(9900,282),(9900,2401),(9900,14647),(9900,54169),(9900,167772),(9902,314),(9902,4959),(9902,5313),(9903,334),(9903,1228),(9903,3864),(9903,5565),(9906,3126),(9906,3650),(9906,6380),(9906,8790),(9906,10103),(9907,4402),(9907,4932),(9907,5543),(9907,8791),(9907,18035),(9912,2658),(9912,5303),(9912,7393),(9912,10183),(9912,14735),(9912,34000),(9912,155781),(9912,188072),(9913,428),(9913,1328),(9913,1566),(9913,1721),(9913,1930),(9913,2411),(9913,2849),(9913,3136),(9913,3392),(9913,8508),(9913,10909),(9913,11221),(9913,14819),(9913,46951),(9913,155619),(9913,156174),(9916,186),(9916,8796),(9916,8798),(9916,10183),(9918,6496),(9918,6984),(9918,193547),(9919,242),(9919,622),(9919,736),(9919,2726),(9919,5920),(9919,14534),(9920,1418),(9920,3133),(9920,4399),(9920,4565),(9920,5202),(9920,13005),(9920,14819),(9920,157202),(9920,180436),(9920,180439),(9920,180440),(9920,180441),(9920,180443),(9920,180445),(9920,180447),(9920,180464),(9920,180465),(9920,180466),(9920,180467),(9922,279),(9922,3804),(9922,4461),(9922,6092),(9922,12332),(9923,801),(9923,1812),(9923,6110),(9923,184989),(9928,1436),(9928,4480),(9928,14544),(9928,193305),(9930,3012),(9930,3701),(9930,10909),(9930,33519),(9932,378),(9932,1321),(9932,2726),(9932,13142),(9942,1480),(9942,6075),(9942,15246),(9942,167875),(9942,167876),(9942,167877),(9942,167882),(9942,167884),(9942,167888),(9942,167889),(9942,167890),(9942,191222),(9944,934),(9944,1992),(9944,3045),(9944,8681),(9945,818),(9945,1508),(9945,8508),(9945,9259),(9945,9748),(9945,10093),(9945,14765),(9945,15084),(9945,34051),(9945,41380),(9945,41511),(9945,161935),(9945,166720),(9945,178159),(9945,224795),(9946,186),(9946,572),(9946,613),(9946,1499),(9946,2483),(9946,2870),(9946,3030),(9946,3036),(9946,5545),(9946,6150),(9946,8440),(9946,8685),(9946,8686),(9946,8778),(9946,9937),(9946,10093),(9946,11612),(9946,13008),(9946,14512),(9946,14601),(9946,14765),(9946,14819),(9946,14999),(9946,172382),(9946,181375),(9946,187844),(9946,199978),(9947,779),(9947,9717),(9947,12367),(9947,15285),(9950,3012),(9950,4171),(9950,7629),(9950,13142),(9952,1327),(9952,14819),(9952,174311),(9952,174316),(9952,174319),(9952,174323),(9952,174324),(9952,174325),(9952,174327),(9954,2343),(9954,3230),(9954,3616),(9954,4769),(9954,13130),(9955,271),(9955,2070),(9955,6075),(9955,9823),(9955,157168),(9957,1480),(9957,4735),(9957,6075),(9957,7074),(9957,34051),(9957,34052),(9957,34053),(9962,236),(9962,572),(9962,931),(9962,1566),(9962,1936),(9962,2251),(9962,2483),(9962,2669),(9962,6038),(9962,6150),(9962,14964),(9962,34094),(9962,157598),(9963,563),(9963,3737),(9963,4379),(9963,4549),(9963,9844),(9969,65),(9969,1700),(9969,10226),(9969,207317),(9975,2598),(9975,3977),(9975,9903),(9975,10787),(9975,15149),(9975,18035),(9975,157984),(9975,158022),(9975,158023),(9978,392),(9978,3272),(9978,3650),(9978,4391),(9978,213102),(9978,223438),(9981,494),(9981,2200),(9981,6075),(9981,8864),(9981,223149),(9982,1357),(9982,1415),(9982,1826),(9982,2479),(9982,9951),(9982,12392),(9982,14909),(9982,18165),(9982,179431),(9982,209714),(9986,1701),(9986,3875),(9986,3986),(9986,4931),(9986,5698),(9986,6054),(9986,6202),(9986,6464),(9986,9713),(9986,10084),(9986,10349),(9986,11477),(9986,11539),(9986,18035),(9986,33621),(9986,33623),(9986,206052),(9988,74),(9988,271),(9988,549),(9988,567),(9988,4552),(9988,8971),(9989,1576),(9989,2101),(9989,2157),(9989,3230),(9989,3523),(9989,4566),(9989,6104),(9989,6129),(9989,7508),(9989,9937),(9989,49960),(9989,157238),(9989,160246),(9989,171854),(9991,378),(9991,6075),(9991,8864),(9991,223149),(9992,1158),(9992,4391),(9992,6956),(9992,10941),(9992,18035),(9992,170362),(10003,220),(10003,2139),(10003,5138),(10003,6168),(10003,186946),(10008,616),(10008,10183),(10008,10541),(10008,11707),(10008,18035),(10012,1155),(10012,4197),(10012,4375),(10012,4769),(10012,12564),(10013,4379),(10013,161213),(10014,237),(10014,246),(10014,657),(10014,2913),(10014,3030),(10014,3358),(10014,4375),(10014,6152),(10014,6270),(10014,8508),(10014,9712),(10014,10170),(10014,10985),(10014,158713),(10014,166287),(10014,170383),(10014,179878),(10014,225209),(10016,166686),(10016,166691),(10016,166694),(10016,166695),(10016,166696),(10016,166697),(10016,166701),(10017,255),(10017,293),(10017,572),(10017,627),(10017,798),(10017,830),(10017,1227),(10017,1366),(10017,1859),(10017,2483),(10017,5484),(10017,6149),(10017,8574),(10017,9666),(10017,9748),(10017,9826),(10017,9844),(10017,9951),(10017,10183),(10017,10726),(10017,14735),(10017,14819),(10017,15483),(10017,34117),(10017,162846),(10017,167043),(10017,194988),(10017,197591),(10017,198141),(10017,216994),(10017,227860),(10022,8696),(10022,10103),(10022,10372),(10022,14760),(10022,18035),(10022,33564),(10022,175421),(10022,228666),(10024,970),(10024,1156),(10024,3012),(10024,4037),(10024,6780),(10024,7443),(10025,4367),(10025,4671),(10025,5091),(10025,9799),(10025,15237),(10025,33648),(10025,155624),(10025,157904),(10025,170587),(10025,188404),(10027,779),(10027,2708),(10027,10714),(10028,242),(10028,246),(10028,898),(10028,1566),(10028,1691),(10028,1936),(10028,2539),(10028,3658),(10028,4697),(10028,10508),(10028,12094),(10028,15246),(10028,33934),(10028,156801),(10028,189920),(10028,208498),(10029,549),(10029,612),(10029,2150),(10029,2483),(10029,6259),(10029,8070),(10029,9713),(10029,9826),(10029,10183),(10029,10776),(10029,11221),(10029,13027),(10029,14570),(10029,14819),(10029,34079),(10029,207819),(10030,572),(10030,2269),(10030,2483),(10030,2864),(10030,3582),(10030,5756),(10030,9673),(10030,10541),(10030,13027),(10030,33780),(10030,156866),(10030,179431),(10034,428),(10034,1936),(10034,10508),(10034,12392),(10034,15363),(10040,1336),(10040,2562),(10040,3799),(10040,8697),(10040,18525),(10045,90),(10045,258),(10045,1950),(10045,4565),(10045,6955),(10045,10726),(10045,11199),(10047,222),(10047,254),(10047,570),(10047,4063),(10047,5565),(10047,8698),(10047,8700),(10047,190532),(10047,190855),(10047,198225),(10048,310),(10048,4410),(10048,179430),(10050,4326),(10050,4333),(10050,6270),(10050,13072),(10052,3725),(10052,3769),(10052,9312),(10052,9844),(10052,10787),(10052,11612),(10052,13005),(10052,166104),(10052,210530),(10053,2604),(10053,4959),(10053,15127),(10053,198141),(10053,199600),(10054,848),(10054,970),(10054,1155),(10054,2143),(10054,4289),(10054,14544),(10060,936),(10060,2013),(10060,3658),(10060,4344),(10060,4562),(10060,14964),(10061,378),(10061,840),(10061,3521),(10061,4565),(10061,5034),(10061,12670),(10061,217083),(10065,3649),(10065,9398),(10065,9714),(10065,9848),(10065,9853),(10065,14819),(10065,162413),(10065,172266),(10065,172272),(10065,172274),(10065,172280),(10066,579),(10066,3612),(10066,9714),(10066,9826),(10066,9937),(10066,10771),(10066,13130),(10066,155939),(10066,166701),(10066,203476),(10067,494),(10067,970),(10067,1022),(10067,1157),(10067,4375),(10067,5133),(10067,5600),(10067,10909),(10067,15162),(10067,18035),(10067,41538),(10068,459),(10068,549),(10068,2316),(10068,5628),(10068,5916),(10068,6373),(10069,282),(10069,2157),(10069,4563),(10069,5380),(10069,5878),(10070,1299),(10070,5319),(10070,179431),(10071,380),(10071,931),(10071,3725),(10071,5833),(10071,8721),(10072,2655),(10072,3030),(10072,3363),(10072,18029),(10072,33457),(10072,41329),(10072,161207),(10072,170383),(10072,179878),(10072,190007),(10072,203360),(10072,225209),(10073,248),(10073,2913),(10073,3453),(10073,3583),(10073,13027),(10074,5956),(10074,6669),(10074,8181),(10074,179430),(10075,715),(10075,12564),(10075,187056),(10075,212760),(10075,223059),(10075,223438),(10077,3737),(10077,4379),(10077,9840),(10077,12616),(10090,572),(10090,949),(10090,966),(10090,2483),(10090,6149),(10090,9755),(10090,10563),(10090,10950),(10090,11800),(10090,14601),(10090,14964),(10092,9826),(10092,10714),(10092,12105),(10092,189868),(10096,242),(10096,1003),(10096,4222),(10096,4896),(10096,8711),(10096,163069),(10096,178329),(10105,1442),(10105,1690),(10105,1956),(10105,2652),(10105,3930),(10105,8975),(10105,10089),(10105,11064),(10105,13065),(10115,650),(10115,1482),(10115,1525),(10115,4613),(10115,6075),(10115,13130),(10115,187056),(10117,797),(10117,2619),(10117,2792),(10117,4906),(10117,10291),(10117,10950),(10117,15483),(10117,18021),(10117,18179),(10117,18522),(10117,157584),(10117,178539),(10117,180172),(10117,188933),(10117,204904),(10117,219404),(10131,779),(10131,3030),(10131,6152),(10131,6270),(10131,6506),(10131,9663),(10131,10738),(10131,33457),(10131,170383),(10131,225209),(10132,2142),(10132,3740),(10132,3836),(10132,3851),(10132,4305),(10132,10183),(10133,848),(10133,1568),(10133,2251),(10133,4183),(10133,6129),(10133,6133),(10133,9016),(10133,10410),(10133,11134),(10133,11469),(10133,156334),(10133,162988),(10133,186189),(10133,189449),(10133,193305),(10133,193554),(10133,206690),(10133,207108),(10133,207110),(10135,1605),(10135,2236),(10135,2334),(10135,8730),(10135,9748),(10135,160488),(10135,174244),(10136,345),(10136,2438),(10136,4391),(10136,4558),(10136,15001),(10136,156075),(10136,156091),(10136,161279),(10136,217083),(10137,380),(10137,818),(10137,977),(10137,2161),(10137,2393),(10137,6783),(10137,7714),(10137,9963),(10137,10064),(10137,13142),(10138,8613),(10138,8828),(10138,9715),(10138,9717),(10138,9748),(10138,179430),(10138,180547),(10139,237),(10139,582),(10139,1013),(10139,1919),(10139,5565),(10139,6078),(10139,6083),(10139,6085),(10139,10180),(10139,11011),(10139,15134),(10139,166625),(10139,226553),(10140,818),(10140,2343),(10140,10842),(10140,13084),(10140,166930),(10140,170362),(10140,182768),(10140,182772),(10140,207372),(10147,65),(10147,603),(10147,1441),(10147,2081),(10147,8430),(10147,33719),(10147,33873),(10147,33965),(10147,207317),(10152,390),(10152,2393),(10152,6054),(10152,10855),(10153,270),(10153,1603),(10153,1826),(10153,2340),(10153,3576),(10153,9951),(10153,11268),(10153,162350),(10153,162351),(10154,242),(10154,1459),(10154,1812),(10154,6220),(10154,10391),(10156,488),(10156,1405),(10156,4344),(10156,4428),(10156,6027),(10156,194576),(10159,414),(10159,800),(10159,801),(10159,1721),(10159,5968),(10159,6956),(10159,10787),(10160,745),(10160,1009),(10160,1299),(10160,2884),(10160,3030),(10160,6152),(10160,6506),(10160,10629),(10160,13006),(10160,13149),(10160,17985),(10160,170383),(10160,207884),(10160,220348),(10160,225209),(10162,3864),(10162,4214),(10162,4258),(10162,5331),(10162,8739),(10162,10183),(10162,14985),(10163,1566),(10163,2552),(10163,2887),(10163,4003),(10163,4563),(10163,11372),(10163,160097),(10167,836),(10167,1568),(10167,3859),(10167,8627),(10179,526),(10179,3386),(10179,4237),(10179,196377),(10183,6019),(10183,187056),(10184,14534),(10184,159753),(10184,179431),(10185,1003),(10185,4452),(10185,4459),(10185,5152),(10185,8636),(10185,10292),(10185,10333),(10185,10738),(10185,11181),(10185,11221),(10185,14819),(10185,177489),(10185,212412),(10186,1228),(10186,2696),(10186,4044),(10186,4344),(10186,5288),(10186,5540),(10186,5544),(10187,840),(10187,2946),(10187,11999),(10188,5248),(10188,12392),(10188,14714),(10188,187056),(10188,206298),(10189,919),(10189,10776),(10189,54169),(10189,169517),(10189,169522),(10189,169532),(10189,169534),(10189,169540),(10189,169548),(10189,169557),(10191,334),(10191,1318),(10191,1395),(10191,2041),(10191,3752),(10191,3799),(10191,4613),(10191,5331),(10191,5774),(10191,5895),(10191,6054),(10191,6253),(10191,8044),(10191,9109),(10191,12554),(10191,14643),(10191,18543),(10191,172784),(10191,192913),(10192,189111),(10192,209714),(10193,1562),(10193,3616),(10193,4290),(10193,5462),(10193,10336),(10193,10685),(10193,33794),(10193,158162),(10193,179431),(10193,187065),(10193,209386),(10193,209387),(10193,224516),(10195,1508),(10195,5149),(10195,5539),(10195,8828),(10195,9366),(10195,9715),(10195,9717),(10195,11436),(10195,179101),(10195,179430),(10195,180547),(10195,209714),(10195,209818),(10195,232926),(10195,232932),(10196,657),(10196,1445),(10196,2770),(10196,3071),(10196,4152),(10196,4237),(10196,5331),(10196,5638),(10196,9714),(10196,10563),(10196,13002),(10196,13152),(10196,13153),(10196,13154),(10196,13155),(10196,13156),(10197,10937),(10197,165735),(10197,165736),(10197,165746),(10197,165748),(10197,165749),(10197,165752),(10197,165761),(10197,165763),(10197,165764),(10197,165765),(10197,179431),(10197,208992),(10198,818),(10198,3392),(10198,5091),(10198,7376),(10198,10336),(10198,155180),(10198,178902),(10198,179411),(10198,179431),(10198,181329),(10198,192995),(10198,197935),(10199,1797),(10199,2137),(10199,2161),(10199,3446),(10199,9812),(10199,167982),(10199,189098),(10199,215184),(10199,230873),(10200,1603),(10200,1612),(10200,1954),(10200,2227),(10200,4210),(10200,6086),(10200,9714),(10200,9738),(10200,9951),(10200,10150),(10200,10891),(10200,11117),(10200,11479),(10200,14755),(10200,15271),(10200,156388),(10200,156661),(10200,160515),(10200,161287),(10200,209517),(10200,219965),(10200,226763),(10201,5413),(10201,167608),(10202,187084),(10202,187710),(10202,189449),(10202,202322),(10202,206809),(10202,206810),(10202,206811),(10202,206812),(10204,90),(10204,212),(10204,242),(10204,385),(10204,582),(10204,1847),(10204,3497),(10204,5973),(10207,544),(10207,1596),(10207,3180),(10207,3452),(10207,5344),(10208,6300),(10208,12998),(10212,1442),(10212,1792),(10212,1918),(10212,1964),(10212,2483),(10212,3713),(10212,4268),(10212,6092),(10212,9826),(10212,10349),(10212,10794),(10212,11663),(10212,13065),(10212,14819),(10212,14895),(10212,41410),(10212,156104),(10212,180480),(10212,187056),(10212,193167),(10212,238134),(10212,238135),(10214,1009),(10214,2546),(10214,5895),(10215,848),(10215,1004),(10215,2486),(10215,3817),(10215,3983),(10215,4379),(10215,8034),(10215,11434),(10215,175629),(10217,1329),(10217,3032),(10217,5331),(10217,5859),(10217,10183),(10217,10909),(10217,166287),(10217,188974),(10218,10183),(10218,10668),(10218,12396),(10218,33719),(10218,33876),(10218,33879),(10218,33880),(10218,33887),(10218,183133),(10218,207716),(10219,736),(10219,907),(10219,4183),(10219,5420),(10219,6091),(10219,6324),(10219,11038),(10219,164724),(10219,181089),(10220,395),(10220,3703),(10220,5887),(10220,6433),(10220,7496),(10223,380),(10223,1322),(10223,3800),(10223,5332),(10223,6054),(10223,9937),(10223,33672),(10225,952),(10225,1227),(10225,2546),(10225,12339),(10225,179422),(10226,1583),(10226,6255),(10226,10292),(10226,10349),(10226,13127),(10226,14687),(10226,14805),(10226,14903),(10226,15460),(10226,157064),(10226,224663),(10229,818),(10229,4333),(10229,5922),(10229,6034),(10229,6270),(10229,10163),(10229,10683),(10229,10703),(10229,13130),(10229,165086),(10238,1156),(10238,1192),(10238,3737),(10246,255),(10246,293),(10246,572),(10246,1196),(10246,2389),(10246,2483),(10246,6593),(10246,10250),(10246,10873),(10246,11254),(10246,12011),(10246,12425),(10246,13130),(10246,14794),(10246,15075),(10246,156391),(10246,161266),(10246,161267),(10246,179431),(10246,180340),(10246,206850),(10246,208445),(10253,3891),(10253,10586),(10253,34128),(10253,46950),(10253,158540),(10269,5948),(10269,6027),(10269,18118),(10269,156455),(10269,185413),(10269,187056),(10279,1448),(10279,3010),(10279,11053),(10279,11590),(10279,13088),(10279,157912),(10279,161307),(10280,3405),(10280,10541),(10280,156092),(10280,156093),(10281,1889),(10281,2546),(10281,5086),(10281,6259),(10281,12339),(10281,13130),(10281,15106),(10281,179422),(10283,242),(10283,1422),(10283,2546),(10283,6259),(10283,6270),(10283,6304),(10283,8764),(10283,10714),(10283,13130),(10283,179422),(10285,255),(10285,293),(10285,828),(10285,1890),(10285,2483),(10285,6259),(10285,9663),(10285,9826),(10285,10183),(10285,10714),(10285,10738),(10285,12339),(10285,14676),(10285,14819),(10285,158190),(10285,179422),(10285,183953),(10288,1950),(10288,4553),(10288,8201),(10288,10123),(10288,10292),(10288,11181),(10288,11931),(10288,12377),(10288,206850),(10306,520),(10306,3684),(10306,4769),(10306,14999),(10306,15001),(10307,716),(10307,2618),(10307,5950),(10307,6150),(10307,6159),(10307,8778),(10312,428),(10312,11612),(10312,13005),(10312,173339),(10313,422),(10313,8651),(10313,10902),(10313,10945),(10313,11494),(10313,11659),(10313,11660),(10314,4656),(10314,5135),(10314,5605),(10314,9789),(10314,10049),(10314,10275),(10314,11870),(10314,13130),(10314,15216),(10314,15402),(10314,33873),(10314,33910),(10314,165100),(10314,166229),(10314,166233),(10314,166235),(10314,166241),(10314,166244),(10314,166250),(10314,166252),(10314,166256),(10315,2527),(10315,3352),(10315,4402),(10315,9748),(10315,11330),(10315,11331),(10315,11332),(10316,2494),(10316,6078),(10316,12389),(10316,187306),(10316,187307),(10316,187308),(10316,187309),(10317,3228),(10317,15184),(10317,18075),(10317,18266),(10317,238222),(10320,745),(10320,818),(10320,2565),(10320,3030),(10320,5153),(10320,9663),(10320,9714),(10320,10629),(10320,10842),(10320,11289),(10320,11857),(10320,177185),(10320,177201),(10327,521),(10327,1680),(10327,2686),(10327,7682),(10327,10909),(10329,690),(10329,2521),(10329,3379),(10329,33461),(10330,641),(10330,1155),(10330,2281),(10330,3582),(10330,3741),(10330,5133),(10330,6170),(10330,6270),(10330,10707),(10330,13027),(10330,15106),(10330,33721),(10330,41591),(10330,155722),(10330,163069),(10330,198929),(10331,1155),(10331,1227),(10331,1419),(10331,1420),(10331,1872),(10331,2602),(10331,6095),(10331,7246),(10331,12377),(10331,18029),(10331,155561),(10333,579),(10333,1482),(10333,1608),(10333,1660),(10333,15106),(10333,34094),(10333,187056),(10336,2095),(10336,4289),(10336,5572),(10336,9717),(10336,158567),(10339,818),(10339,1316),(10339,1422),(10339,1523),(10339,2580),(10339,4327),(10339,4676),(10339,7240),(10339,9748),(10350,1721),(10350,3203),(10350,12405),(10350,41645),(10350,161176),(10350,209073),(10353,2870),(10353,4319),(10353,4379),(10353,4820),(10353,10466),(10353,13027),(10353,41406),(10357,1552),(10357,2859),(10357,3347),(10357,7051),(10357,12670),(10358,445),(10358,2038),(10358,3200),(10358,5593),(10358,12392),(10358,170827),(10358,178329),(10358,179430),(10358,179431),(10362,2038),(10362,10226),(10364,1956),(10364,2041),(10364,2532),(10364,8805),(10364,14638),(10366,3222),(10366,4286),(10366,40850),(10366,41414),(10368,131),(10368,612),(10368,936),(10368,1704),(10368,1956),(10368,2143),(10368,4129),(10368,8077),(10368,10183),(10375,7464),(10375,10714),(10375,11612),(10375,15090),(10375,200784),(10377,378),(10377,531),(10377,3301),(10377,4438),(10377,6148),(10377,10909),(10377,160497),(10383,2337),(10383,5600),(10383,8685),(10383,33841),(10384,577),(10384,1472),(10384,2964),(10384,3412),(10384,5100),(10384,222423),(10385,1156),(10385,1332),(10385,1453),(10385,2600),(10385,6103),(10385,13056),(10385,155816),(10385,187056),(10386,2106),(10386,6054),(10386,10891),(10386,167310),(10386,205726),(10386,208611),(10386,215404),(10388,378),(10388,3398),(10388,4702),(10388,4746),(10388,5340),(10388,5600),(10388,6203),(10388,9748),(10388,41158),(10388,156121),(10388,157892),(10388,166571),(10388,195648),(10388,200574),(10388,207268),(10388,208992),(10390,1480),(10390,1482),(10390,3658),(10390,3754),(10390,4613),(10390,6075),(10391,1156),(10391,1646),(10391,2870),(10391,3099),(10391,4788),(10393,579),(10393,4112),(10393,6075),(10393,8338),(10393,9789),(10393,155791),(10395,596),(10395,2499),(10395,4197),(10395,12564),(10397,1625),(10397,1857),(10397,1899),(10397,1952),(10397,4337),(10397,7464),(10397,41523),(10398,378),(10398,544),(10398,2082),(10398,2411),(10398,5424),(10398,208983),(10398,217324),(10400,378),(10400,2792),(10400,4487),(10400,5402),(10400,5565),(10402,1357),(10402,2269),(10402,3473),(10402,6095),(10402,6739),(10402,6876),(10402,33625),(10410,1474),(10410,3720),(10410,6346),(10410,13142),(10413,1563),(10413,1721),(10413,2434),(10413,4917),(10414,1483),(10414,6075),(10414,6483),(10414,41132),(10414,41401),(10414,156115),(10414,191222),(10416,3767),(10416,4862),(10416,6935),(10416,8580),(10416,9951),(10416,168550),(10425,5334),(10425,9897),(10425,14658),(10425,14819),(10425,15344),(10425,33456),(10425,155881),(10425,156390),(10425,163806),(10425,163810),(10425,163815),(10425,163824),(10425,163828),(10425,163833),(10425,163834),(10425,163841),(10425,188134),(10426,5369),(10426,6490),(10426,9727),(10426,14964),(10428,293),(10428,2157),(10428,2483),(10428,2812),(10428,4563),(10428,6104),(10428,9835),(10428,9864),(10428,11615),(10428,12190),(10428,13130),(10428,14512),(10428,41249),(10428,155555),(10428,160840),(10431,1812),(10431,9748),(10431,18525),(10436,213),(10436,242),(10436,4320),(10436,9886),(10436,10909),(10436,207928),(10437,65),(10437,2964),(10437,4344),(10437,6162),(10437,33966),(10437,161174),(10437,180975),(10437,207317),(10439,616),(10439,3335),(10439,33795),(10439,180193),(10439,180194),(10445,1338),(10445,4327),(10445,5301),(10445,8095),(10445,10818),(10445,13072),(10448,930),(10448,1551),(10448,2041),(10461,4720),(10461,5593),(10461,9844),(10461,159938),(10468,7464),(10468,9547),(10468,9844),(10468,13027),(10468,164605),(10468,187056),(10471,378),(10471,1522),(10471,2987),(10471,7858),(10471,9748),(10471,9777),(10471,10685),(10471,12670),(10471,33426),(10471,164253),(10471,206318),(10472,725),(10472,1605),(10472,2038),(10472,3805),(10472,5756),(10472,9673),(10476,897),(10476,898),(10476,1009),(10476,1599),(10476,2231),(10476,3658),(10476,4344),(10476,4562),(10476,10183),(10477,271),(10477,795),(10477,3658),(10477,5614),(10477,6363),(10478,1808),(10478,2702),(10478,5756),(10478,6075),(10478,7439),(10480,10183),(10480,10322),(10480,14819),(10480,168622),(10480,168637),(10480,168638),(10480,168641),(10480,168643),(10480,168654),(10480,168657),(10480,168658),(10480,168659),(10481,212),(10481,378),(10481,3398),(10481,5424),(10481,6491),(10481,8841),(10481,8905),(10481,15162),(10481,158369),(10483,830),(10483,4565),(10483,5144),(10483,9774),(10483,9775),(10483,9777),(10483,9778),(10483,9779),(10483,9844),(10483,14819),(10488,855),(10488,911),(10488,2580),(10488,2799),(10488,3347),(10488,4700),(10488,4880),(10488,5600),(10488,6362),(10488,10818),(10488,11477),(10488,12988),(10488,187056),(10488,189585),(10488,208874),(10490,1360),(10490,2784),(10490,5496),(10490,7293),(10490,7490),(10490,7717),(10490,10707),(10490,155624),(10490,156322),(10490,209734),(10496,2766),(10496,5155),(10496,10563),(10496,176256),(10496,176262),(10496,176266),(10501,1321),(10501,2673),(10501,9725),(10514,1432),(10514,1508),(10514,1865),(10514,1944),(10514,3288),(10514,4939),(10514,6013),(10514,6016),(10514,9937),(10514,156767),(10514,156810),(10521,3582),(10521,6054),(10521,6167),(10521,9823),(10521,13027),(10521,156195),(10523,279),(10523,833),(10523,840),(10523,6375),(10523,8570),(10523,15087),(10527,409),(10527,931),(10527,1691),(10527,1899),(10527,2043),(10527,2172),(10527,2509),(10527,2552),(10527,3028),(10527,3347),(10527,3645),(10527,3800),(10527,7639),(10527,9663),(10527,15097),(10527,156395),(10527,179431),(10528,703),(10528,770),(10528,1909),(10528,4252),(10528,5638),(10528,9104),(10528,9401),(10528,9826),(10528,10028),(10528,11855),(10528,33514),(10530,1463),(10530,3591),(10530,3691),(10530,4090),(10530,4344),(10530,4542),(10530,7376),(10530,9840),(10530,10322),(10530,10336),(10530,160977),(10530,165086),(10530,173808),(10530,173811),(10530,173815),(10530,173823),(10530,173824),(10530,173825),(10530,180217),(10530,185343),(10530,207941),(10530,208426),(10530,225547),(10530,230456),(10530,234183),(10530,234184),(10530,234185),(10533,818),(10533,2871),(10533,10223),(10533,13149),(10533,15060),(10533,34094),(10534,2082),(10534,2913),(10534,3180),(10534,10349),(10534,10683),(10534,18068),(10534,46962),(10534,167836),(10534,167837),(10534,167843),(10534,167861),(10534,167863),(10534,167868),(10534,168683),(10534,208992),(10535,1815),(10535,11931),(10535,15267),(10537,458),(10537,496),(10537,572),(10537,578),(10537,2483),(10537,3298),(10537,3593),(10537,3800),(10537,4344),(10537,4436),(10537,4523),(10537,4572),(10537,5498),(10537,5565),(10537,7464),(10537,8903),(10537,9844),(10537,10229),(10537,14964),(10537,41591),(10537,187844),(10537,226981),(10545,90),(10545,818),(10545,934),(10545,1523),(10545,1691),(10545,1938),(10545,2422),(10545,2544),(10545,2638),(10545,4344),(10545,5090),(10545,9995),(10545,11001),(10545,13014),(10545,158787),(10545,160213),(10545,160274),(10545,177894),(10545,213097),(10549,456),(10549,497),(10549,509),(10549,1872),(10549,3071),(10549,41410),(10550,1465),(10550,4986),(10550,5440),(10550,33705),(10555,1357),(10555,1701),(10555,3045),(10555,4923),(10555,7879),(10555,10336),(10555,15097),(10555,187056),(10557,187),(10557,458),(10557,494),(10557,789),(10557,931),(10557,941),(10557,1463),(10557,1536),(10557,3131),(10557,5471),(10557,5600),(10557,6150),(10557,6713),(10557,10428),(10559,242),(10559,456),(10559,703),(10559,1480),(10559,2135),(10559,2733),(10559,2964),(10559,3667),(10559,4776),(10559,5340),(10559,5905),(10559,9682),(10559,9826),(10559,9853),(10559,10084),(10559,10235),(10559,10685),(10559,14536),(10559,14601),(10559,187844),(10559,200725),(10559,218024),(10559,226626),(10559,227771),(10560,242),(10560,271),(10560,733),(10560,1691),(10560,2283),(10560,3658),(10560,4118),(10560,6027),(10560,8081),(10560,10551),(10560,207010),(10563,237),(10563,1691),(10563,2301),(10563,2679),(10563,2683),(10563,4480),(10563,5265),(10563,6281),(10563,6351),(10563,9758),(10563,188843),(10563,229299),(10564,387),(10564,1009),(10564,1545),(10564,2493),(10564,3725),(10564,5808),(10564,6223),(10564,6335),(10564,8650),(10564,173186),(10564,208476),(10567,843),(10567,1423),(10567,3077),(10567,4803),(10567,10336),(10567,10506),(10567,10789),(10567,12616),(10567,161186),(10567,166958),(10567,178645),(10567,181033),(10567,183414),(10569,974),(10569,1946),(10569,2273),(10569,2492),(10569,4183),(10569,4733),(10569,4735),(10569,8586),(10569,10183),(10569,15363),(10569,160488),(10571,815),(10571,1605),(10571,3200),(10571,4663),(10571,5490),(10571,5785),(10571,6054),(10571,6170),(10571,6707),(10571,12105),(10571,13160),(10571,14534),(10577,3133),(10577,3633),(10577,4197),(10577,11221),(10577,225470),(10577,231407),(10585,1419),(10585,1421),(10585,3392),(10585,4290),(10585,6844),(10585,9826),(10585,11221),(10585,12339),(10585,14601),(10585,15127),(10585,33630),(10585,156075),(10585,187065),(10585,201120),(10586,409),(10586,2043),(10586,3450),(10586,9672),(10586,9895),(10586,158130),(10586,158215),(10586,158217),(10586,158219),(10588,977),(10588,1155),(10588,3925),(10588,4630),(10588,6669),(10588,15101),(10589,3345),(10589,6168),(10589,6328),(10590,422),(10590,2534),(10590,2957),(10590,6092),(10590,9052),(10590,9672),(10590,11139),(10590,13065),(10590,14601),(10590,14643),(10590,33403),(10590,34079),(10590,167234),(10591,2727),(10591,5593),(10591,6270),(10591,6275),(10591,6946),(10591,222174),(10592,577),(10592,1956),(10592,1968),(10592,4595),(10592,6091),(10592,10685),(10592,10859),(10592,11038),(10592,13065),(10592,14519),(10592,160910),(10603,409),(10603,582),(10603,690),(10603,2043),(10603,5650),(10603,10787),(10610,703),(10610,1456),(10610,2650),(10610,4391),(10610,6211),(10610,6333),(10610,6710),(10611,928),(10611,1998),(10611,10226),(10611,11061),(10611,41153),(10611,160488),(10615,2336),(10615,4344),(10615,9141),(10615,15090),(10615,18026),(10622,736),(10622,779),(10622,1650),(10622,2231),(10623,642),(10623,1384),(10623,2051),(10623,2492),(10623,9727),(10623,15363),(10623,33672),(10623,160488),(10625,5248),(10625,6270),(10625,11860),(10625,12392),(10625,13130),(10625,15402),(10625,18453),(10625,155722),(10625,189964),(10625,190141),(10628,1322),(10628,5090),(10628,5657),(10628,160488),(10628,208662),(10629,917),(10629,6149),(10629,6691),(10629,9826),(10629,18026),(10632,414),(10632,1812),(10632,4728),(10632,7202),(10632,9720),(10632,10024),(10632,10089),(10632,10833),(10632,14805),(10632,15218),(10632,17987),(10632,18543),(10632,162380),(10632,164148),(10632,226499),(10632,238136),(10634,897),(10634,970),(10634,4562),(10634,8438),(10637,529),(10637,579),(10637,1482),(10637,1483),(10637,3060),(10637,3847),(10637,4106),(10637,6075),(10637,6270),(10637,6984),(10637,7856),(10637,9672),(10637,155791),(10637,160910),(10637,222721),(10641,1605),(10641,2038),(10641,2203),(10641,3737),(10641,3836),(10641,5091),(10641,9673),(10641,14534),(10641,156455),(10641,187056),(10641,222114),(10642,3616),(10642,178226),(10642,178229),(10642,187056),(10642,206298),(10642,207844),(10643,233),(10643,1299),(10643,3243),(10643,7671),(10643,14828),(10643,161791),(10646,5887),(10646,6433),(10646,8070),(10646,155939),(10647,161868),(10647,166625),(10647,170365),(10647,170375),(10647,170378),(10647,170380),(10647,170383),(10647,170389),(10647,170390),(10647,187056),(10655,393),(10655,4097),(10655,4302),(10655,6092),(10655,14643),(10655,160201),(10655,166464),(10655,179585),(10656,90),(10656,1463),(10656,1552),(10656,1761),(10656,1936),(10656,1937),(10656,15009),(10656,156037),(10656,173919),(10658,1339),(10658,8012),(10658,9739),(10658,11500),(10658,14909),(10658,175629),(10661,242),(10661,536),(10661,539),(10661,928),(10661,2336),(10661,3037),(10661,3038),(10661,3039),(10661,3188),(10661,5907),(10661,6785),(10661,8932),(10663,6075),(10663,171556),(10663,171559),(10663,171561),(10663,171563),(10663,171567),(10663,171570),(10664,3684),(10664,4035),(10664,156174),(10664,156788),(10664,159287),(10664,160194),(10664,160195),(10664,163053),(10673,3720),(10673,4373),(10673,5628),(10673,5636),(10673,6118),(10673,10909),(10673,15137),(10673,33626),(10673,179018),(10674,2156),(10674,4344),(10674,4613),(10674,5600),(10674,5719),(10674,7376),(10674,12554),(10674,157904),(10676,1004),(10676,1382),(10676,1420),(10676,1805),(10676,2546),(10676,3335),(10676,11612),(10676,13005),(10676,34079),(10676,159433),(10676,207031),(10678,378),(10678,1594),(10678,3848),(10678,10685),(10678,10909),(10681,9799),(10683,570),(10683,1156),(10683,1808),(10683,2337),(10683,5923),(10683,6281),(10683,6844),(10683,7879),(10683,10183),(10683,14534),(10683,34094),(10683,155294),(10683,156455),(10684,2952),(10684,3203),(10684,4595),(10684,6049),(10684,11107),(10684,11110),(10684,11117),(10684,11124),(10685,520),(10685,1812),(10685,2250),(10685,3877),(10685,4633),(10685,5340),(10685,9937),(10685,10714),(10685,12663),(10685,15106),(10685,18525),(10685,157154),(10691,725),(10691,931),(10691,970),(10691,2038),(10691,2630),(10691,3691),(10691,5091),(10691,9986),(10691,10791),(10691,14534),(10691,156455),(10696,2276),(10696,2751),(10696,8290),(10696,162262),(10705,497),(10705,1701),(10705,4152),(10705,6091),(10705,10181),(10705,155453),(10705,161257),(10705,186686),(10707,3321),(10707,5136),(10707,10183),(10707,33652),(10707,54467),(10708,271),(10708,3836),(10708,4590),(10708,10103),(10708,156052),(10710,931),(10710,1436),(10710,10226),(10710,12392),(10710,13025),(10710,15162),(10710,155624),(10710,159496),(10712,577),(10712,1157),(10712,4003),(10712,10180),(10715,470),(10715,1339),(10715,3208),(10715,4391),(10715,166329),(10715,209220),(10718,1595),(10718,2231),(10718,10726),(10718,181146),(10719,65),(10719,603),(10719,1991),(10719,6230),(10719,9840),(10719,34154),(10719,207317),(10724,334),(10724,3203),(10724,3773),(10724,3864),(10724,6093),(10724,9937),(10727,616),(10727,936),(10727,1415),(10727,2122),(10727,4079),(10727,13001),(10727,13153),(10727,177894),(10731,236),(10731,380),(10731,4009),(10731,4508),(10731,5301),(10731,5340),(10731,7255),(10731,10909),(10731,13142),(10733,1556),(10733,3776),(10733,8862),(10733,155466),(10733,163127),(10734,378),(10734,818),(10734,2041),(10734,2161),(10734,3859),(10734,5565),(10734,5643),(10734,7118),(10734,9772),(10734,9777),(10734,11587),(10734,18128),(10734,186727),(10734,208992),(10735,212),(10735,392),(10735,5600),(10735,6083),(10735,10809),(10735,15300),(10735,34061),(10735,155722),(10735,187056),(10739,2833),(10739,3485),(10739,5625),(10739,5999),(10739,202401),(10740,4549),(10740,5484),(10740,9713),(10740,9736),(10740,10183),(10740,13027),(10741,612),(10741,2944),(10741,3914),(10741,5809),(10741,6078),(10741,160910),(10743,159607),(10743,159608),(10743,159620),(10743,159627),(10743,159631),(10744,585),(10744,4367),(10744,4671),(10748,1577),(10748,1585),(10748,2819),(10748,4344),(10748,4358),(10748,4630),(10748,7155),(10748,7665),(10748,8072),(10748,9118),(10748,11061),(10748,12974),(10748,41665),(10748,155939),(10748,179431),(10748,195900),(10756,352),(10756,2343),(10756,2918),(10756,3358),(10756,14724),(10756,162846),(10756,179430),(10758,828),(10758,8650),(10758,187056),(10760,3616),(10760,9840),(10760,10058),(10760,12105),(10760,169341),(10760,206298),(10760,221039),(10761,388),(10761,2038),(10761,2336),(10761,2864),(10761,3584),(10761,3691),(10761,10556),(10761,178329),(10762,4959),(10762,6956),(10764,627),(10764,1568),(10764,4289),(10764,156095),(10765,90),(10765,2273),(10771,258),(10771,2051),(10771,2072),(10771,2820),(10771,4289),(10771,6350),(10773,1956),(10773,4129),(10773,4344),(10773,6034),(10773,8979),(10773,194610),(10774,417),(10774,572),(10774,596),(10774,2136),(10774,2458),(10774,2483),(10774,3720),(10774,7271),(10774,9826),(10774,10177),(10774,12193),(10774,14522),(10774,41153),(10774,191509),(10774,202429),(10774,203286),(10774,203287),(10774,203289),(10774,203291),(10776,2382),(10776,2642),(10776,2778),(10776,3487),(10776,3704),(10776,3836),(10776,4015),(10776,5340),(10776,5801),(10776,6946),(10776,8183),(10776,9714),(10776,9986),(10776,10181),(10776,14735),(10776,14773),(10776,33491),(10776,33780),(10776,41267),(10776,155806),(10776,158375),(10776,165314),(10776,165317),(10776,165319),(10776,165324),(10776,165334),(10776,165580),(10776,210234),(10781,1583),(10781,3152),(10781,4013),(10781,4426),(10781,4728),(10781,6259),(10781,9675),(10781,9826),(10781,10292),(10781,10714),(10781,11221),(10781,11545),(10781,11547),(10781,12339),(10781,12394),(10781,13006),(10781,14624),(10781,14676),(10781,14819),(10781,14895),(10781,157513),(10781,166862),(10782,1803),(10782,4406),(10782,4596),(10782,5947),(10782,6148),(10782,6174),(10782,8681),(10782,8713),(10782,229211),(10783,902),(10783,3586),(10783,3694),(10783,4258),(10783,7832),(10783,11061),(10783,187056),(10786,392),(10786,2868),(10786,4147),(10786,222340),(10796,851),(10800,2535),(10800,2964),(10800,6778),(10800,12392),(10800,12554),(10800,34161),(10802,246),(10802,293),(10802,1663),(10802,2874),(10802,3182),(10802,4378),(10802,7017),(10803,293),(10803,1373),(10803,2483),(10803,3469),(10803,3822),(10803,4458),(10803,4565),(10803,4585),(10803,10685),(10803,10718),(10803,14544),(10803,157263),(10803,162988),(10803,178712),(10803,208085),(10806,237),(10806,1013),(10806,1862),(10806,158718),(10808,2735),(10808,5774),(10808,10468),(10808,18165),(10808,216921),(10822,456),(10822,572),(10822,596),(10822,2483),(10822,3692),(10822,5153),(10822,9673),(10822,9826),(10822,10984),(10822,13130),(10822,33458),(10822,33841),(10822,156037),(10833,206718),(10844,2658),(10844,3600),(10844,6149),(10844,10183),(10844,10226),(10844,187554),(10858,840),(10858,2946),(10858,4240),(10858,5565),(10858,6086),(10858,6165),(10861,2281),(10861,3737),(10861,7375),(10861,8045),(10865,658),(10865,2768),(10865,10336),(10865,14785),(10865,33696),(10866,1981),(10866,6054),(10866,6844),(10866,11794),(10866,155497),(10866,155498),(10866,215191),(10871,697),(10871,10714),(10871,13008),(10873,2793),(10873,3633),(10873,179860),(10876,2884),(10876,4319),(10876,4653),(10876,6212),(10876,13097),(10877,417),(10877,3692),(10877,4918),(10877,6149),(10878,293),(10878,2539),(10878,3230),(10878,10123),(10878,157626),(10878,179431),(10885,233),(10885,236),(10885,1003),(10885,2676),(10885,3030),(10885,3093),(10885,5280),(10885,6025),(10885,9714),(10885,9748),(10885,10666),(10885,13027),(10885,13063),(10885,13153),(10885,34079),(10885,162846),(10885,164162),(10885,167200),(10885,173125),(10885,207078),(10890,248),(10890,1595),(10890,4595),(10890,11138),(10894,2467),(10894,7568),(10894,9826),(10894,9957),(10894,209027),(10895,131),(10895,2251),(10895,2343),(10895,2710),(10895,3244),(10895,3473),(10895,4896),(10895,5202),(10895,5560),(10895,6300),(10895,10336),(10895,10499),(10895,33674),(10895,33675),(10895,33676),(10895,33677),(10895,187065),(10913,240),(10913,2908),(10913,6054),(10913,13132),(10913,155023),(10914,957),(10914,2673),(10914,2752),(10914,5692),(10914,9209),(10914,12392),(10923,470),(10923,591),(10923,1373),(10923,4779),(10923,213102),(10925,293),(10925,2452),(10925,2483),(10925,4470),(10925,6129),(10925,10183),(10925,10327),(10925,11181),(10925,12377),(10925,41603),(10925,155619),(10925,157234),(10925,157444),(10925,157892),(10925,157893),(10925,207492),(10925,207891),(10925,234040),(10929,5812),(10929,7717),(10929,9748),(10929,33740),(10929,198780),(10930,1571),(10930,1660),(10930,4029),(10930,6645),(10930,9937),(10930,10329),(10930,155294),(10934,894),(10934,1958),(10934,3730),(10934,10818),(10934,15160),(10934,187056),(10935,680),(10935,797),(10935,1411),(10935,1502),(10935,1691),(10935,2356),(10935,5948),(10935,9031),(10944,1664),(10944,9937),(10944,187056),(10947,1412),(10947,4344),(10947,6027),(10947,6270),(10947,7358),(10947,8635),(10947,10623),(10947,13130),(10947,41203),(10947,163110),(10947,178444),(10947,188237),(10950,2468),(10950,170148),(10950,170152),(10950,170154),(10950,170161),(10950,170166),(10950,170167),(10950,170173),(10950,170174),(10950,170179),(10950,178364),(10950,187056),(10955,220),(10955,255),(10955,885),(10955,2706),(10955,2708),(10955,4967),(10955,5332),(10955,6060),(10955,6706),(10955,8045),(10955,8508),(10955,187056),(10956,970),(10956,2143),(10956,6230),(10956,10221),(10956,10756),(10956,13091),(10956,187056),(10970,776),(10970,5956),(10970,9253),(10970,10897),(10970,12396),(10970,154802),(10972,222),(10972,2574),(10972,2800),(10972,6192),(10972,10294),(10972,11335),(10972,11488),(10972,15156),(10972,33553),(10972,41180),(10972,161315),(10972,169411),(10972,189102),(10972,189400),(10972,215163),(10981,3090),(10981,6733),(10981,9046),(10981,10183),(10981,12392),(10981,13001),(10982,1994),(10982,3301),(10982,4174),(10982,5340),(10982,11728),(10984,3698),(10984,3836),(10984,5927),(10984,9748),(10984,10714),(10984,160404),(10985,378),(10985,851),(10985,1284),(10985,3090),(10985,6270),(10985,12670),(10985,179431),(10987,1583),(10987,2483),(10987,3335),(10987,5034),(10987,6158),(10987,6259),(10987,6406),(10987,9826),(10987,10685),(10987,12339),(10987,13005),(10987,13140),(10987,34079),(10987,156075),(10987,179565),(10987,199526),(10987,217324),(10987,232795),(10991,1262),(10991,2802),(10991,6054),(10991,10988),(10991,11336),(10991,11451),(10991,12392),(10991,14955),(10991,41645),(10991,201952),(10991,210024),(10992,1721),(10992,6088),(10992,8841),(10992,12097),(10992,209714),(10994,351),(10994,378),(10994,1465),(10994,1872),(10994,2468),(10994,5424),(10994,10235),(10994,208795),(10994,237901),(10996,2161),(10996,2639),(10996,2646),(10996,6054),(10996,18035),(10998,459),(10998,1157),(10998,4481),(10998,5809),(10998,9937),(10998,10909),(10998,34094),(10998,190370),(10999,1930),(10999,3568),(10999,5600),(10999,5905),(10999,11107),(11001,642),(11001,1384),(11001,4668),(11001,7477),(11001,9727),(11001,15090),(11001,15321),(11004,596),(11004,642),(11004,818),(11004,1992),(11004,3616),(11004,6149),(11004,8508),(11004,9468),(11004,10776),(11004,13028),(11004,13160),(11004,14964),(11004,15162),(11007,4498),(11007,183126),(11007,183133),(11007,183141),(11011,18035),(11011,175668),(11011,175670),(11011,175676),(11011,175681),(11011,175683),(11011,175685),(11013,236),(11013,1443),(11013,2699),(11013,6373),(11013,10909),(11013,11612),(11013,11677),(11013,33451),(11013,34030),(11013,155271),(11013,157800),(11013,158254),(11013,158713),(11013,212796),(11015,520),(11015,818),(11015,1299),(11015,2598),(11015,7694),(11015,9649),(11015,10877),(11015,161276),(11015,181246),(11015,225947),(11022,4927),(11022,5340),(11022,11730),(11022,155799),(11023,1332),(11023,10041),(11023,10049),(11023,11696),(11023,11925),(11023,34130),(11023,41352),(11023,41355),(11023,156196),(11023,158020),(11023,175233),(11023,176780),(11023,178444),(11023,178448),(11023,178452),(11023,178471),(11023,178474),(11023,178475),(11023,178482),(11023,187056),(11024,703),(11024,1299),(11024,6101),(11024,10988),(11024,15162),(11025,1608),(11025,5699),(11025,5800),(11025,6876),(11025,13160),(11025,155722),(11025,187056),(11026,1328),(11026,1523),(11026,2626),(11026,9714),(11026,10093),(11026,10842),(11026,11083),(11026,14999),(11026,41586),(11026,161261),(11026,161935),(11026,179567),(11026,179568),(11027,572),(11027,596),(11027,718),(11027,818),(11027,1523),(11027,2483),(11027,9714),(11027,9826),(11027,9937),(11027,10410),(11027,207268),(11033,108),(11033,444),(11033,549),(11033,1552),(11033,1879),(11033,2864),(11033,2887),(11033,3030),(11033,3182),(11033,6025),(11033,6054),(11033,6093),(11033,9181),(11033,9826),(11033,10333),(11033,14819),(11033,15106),(11033,15271),(11033,33513),(11033,33720),(11033,34094),(11033,155440),(11033,158203),(11033,169815),(11033,188960),(11033,193282),(11033,227035),(11036,493),(11036,1261),(11036,1647),(11036,1721),(11036,2038),(11036,2689),(11036,6069),(11036,7879),(11036,14708),(11036,15224),(11036,68648),(11042,494),(11042,1773),(11042,1873),(11042,1992),(11042,3737),(11042,10163),(11042,10594),(11042,13160),(11042,40895),(11042,41589),(11042,155294),(11042,225061),(11051,186),(11051,2052),(11051,2974),(11051,3035),(11051,3571),(11051,4115),(11051,4690),(11051,41511),(11051,161216),(11051,162706),(11051,162708),(11056,1452),(11056,2642),(11056,3358),(11056,18035),(11056,18130),(11058,222),(11058,402),(11058,697),(11058,3030),(11058,13005),(11062,417),(11062,1568),(11062,1601),(11062,1919),(11062,2231),(11062,2946),(11062,4654),(11062,5340),(11062,6149),(11062,14964),(11065,572),(11065,931),(11065,5490),(11065,6270),(11065,7548),(11065,8635),(11065,9713),(11065,14964),(11065,160910),(11066,2273),(11066,2336),(11066,3836),(11066,6779),(11066,7769),(11066,8642),(11066,9094),(11072,1419),(11072,1582),(11072,5744),(11072,8009),(11072,10267),(11072,10511),(11072,11931),(11072,18465),(11072,34139),(11072,155291),(11072,160583),(11072,160586),(11072,160588),(11072,160589),(11072,160595),(11072,160597),(11072,160602),(11072,160605),(11072,160607),(11072,160612),(11072,162078),(11072,236316),(11086,387),(11086,769),(11086,3246),(11086,7059),(11086,12396),(11086,13028),(11090,1566),(11090,6021),(11090,9844),(11090,14760),(11090,15090),(11090,175884),(11090,179430),(11090,210689),(11091,1009),(11091,1412),(11091,1525),(11091,1566),(11091,1803),(11091,4183),(11091,8650),(11091,13028),(11091,14751),(11091,166113),(11091,187056),(11093,582),(11093,2356),(11093,6095),(11093,68642),(11093,178656),(11096,6095),(11096,7942),(11096,9937),(11096,13056),(11109,392),(11109,2784),(11109,5424),(11109,6149),(11109,10226),(11109,10721),(11109,11322),(11109,17986),(11109,41246),(11109,170273),(11109,173490),(11109,208611),(11113,4344),(11113,4375),(11113,4485),(11113,10786),(11113,11411),(11113,11707),(11113,14514),(11113,18015),(11113,155697),(11113,165278),(11113,165279),(11113,165282),(11113,165288),(11113,165290),(11113,165299),(11113,165301),(11128,168110),(11128,168115),(11129,572),(11129,1361),(11129,3015),(11129,3925),(11129,5625),(11129,8508),(11129,14534),(11129,14964),(11129,15237),(11129,15479),(11129,155939),(11130,2505),(11130,4263),(11130,6038),(11130,13072),(11132,2570),(11132,3975),(11132,6270),(11132,8508),(11132,9823),(11132,187056),(11132,216919),(11137,1308),(11137,2024),(11137,3071),(11137,3616),(11137,3933),(11137,9799),(11137,12105),(11137,13072),(11137,187056),(11137,206298),(11141,1208),(11141,2570),(11141,3012),(11141,9823),(11141,13072),(11141,172471),(11152,5566),(11152,8183),(11152,9236),(11152,162715),(11153,279),(11153,5493),(11153,14724),(11153,33694),(11153,179431),(11156,7024),(11156,187056),(11162,110),(11162,497),(11162,2606),(11162,3799),(11162,5151),(11162,8271),(11162,10594),(11162,11707),(11162,13072),(11162,33460),(11162,208244),(11165,233),(11165,1956),(11165,3365),(11165,13065),(11165,188727),(11170,579),(11170,1228),(11170,1482),(11170,3616),(11170,6075),(11172,3490),(11172,4528),(11172,9799),(11172,191428),(11172,207592),(11176,2479),(11176,4344),(11176,4456),(11176,6300),(11176,10232),(11176,12396),(11176,154986),(11176,155351),(11176,155352),(11176,155353),(11176,155354),(11176,155355),(11176,155356),(11176,155358),(11176,155361),(11176,162262),(11176,179430),(11184,460),(11184,572),(11184,738),(11184,1447),(11184,1992),(11184,3664),(11184,4434),(11184,5565),(11184,6038),(11184,6050),(11184,10180),(11184,11011),(11184,12105),(11184,15027),(11184,161266),(11184,189475),(11184,195999),(11186,6151),(11186,6300),(11186,180691),(11186,187065),(11190,1571),(11190,5301),(11190,46952),(11190,46953),(11190,46954),(11191,10183),(11191,169276),(11191,169280),(11191,169283),(11194,2820),(11194,4560),(11194,5967),(11194,6075),(11194,7330),(11194,8624),(11194,10084),(11194,10794),(11194,209455),(11199,1599),(11199,7312),(11199,11475),(11199,14736),(11199,168132),(11199,168135),(11199,168141),(11199,176793),(11199,178517),(11202,1402),(11202,1956),(11202,4299),(11202,5565),(11202,6165),(11202,9156),(11202,11110),(11202,11117),(11202,11139),(11202,40850),(11202,213798),(11208,2038),(11208,4908),(11208,11200),(11208,34038),(11212,1009),(11212,160488),(11212,196581),(11217,2041),(11217,3544),(11217,9767),(11217,10714),(11217,217324),(11219,1415),(11219,3713),(11219,4183),(11219,4908),(11219,9826),(11219,9937),(11219,189421),(11228,444),(11228,586),(11228,720),(11228,1261),(11228,1701),(11228,1749),(11228,4776),(11228,5369),(11228,10349),(11228,10617),(11228,14512),(11228,14601),(11228,14755),(11228,15162),(11228,18029),(11228,173272),(11228,189102),(11228,207317),(11228,207528),(11228,219404),(11229,378),(11229,5034),(11229,6669),(11229,10183),(11229,11546),(11232,1808),(11232,2038),(11232,4379),(11232,5091),(11232,6162),(11232,7879),(11232,11860),(11237,1585),(11237,1963),(11237,2052),(11237,3664),(11237,6722),(11237,10787),(11237,223059),(11240,212),(11240,237),(11240,1900),(11240,3679),(11240,6731),(11240,10183),(11240,10199),(11240,12425),(11247,931),(11247,995),(11247,3640),(11247,5921),(11247,6270),(11247,6275),(11247,13014),(11247,13130),(11247,18118),(11247,155791),(11247,188237),(11247,196691),(11247,221039),(11249,1009),(11249,6300),(11249,8368),(11249,9826),(11249,10603),(11249,41230),(11249,180691),(11249,184989),(11249,187065),(11253,2096),(11253,7005),(11253,9403),(11253,9715),(11253,11196),(11253,14819),(11253,18096),(11253,18149),(11253,33933),(11253,155030),(11253,157789),(11253,163074),(11253,174203),(11253,174209),(11253,174222),(11253,226774),(11257,5091),(11257,5832),(11257,8032),(11258,798),(11258,2217),(11258,2227),(11258,4898),(11258,8207),(11258,160488),(11260,242),(11260,1316),(11260,1472),(11260,1605),(11260,4627),(11260,6054),(11260,8468),(11260,9844),(11260,9882),(11260,9951),(11260,10349),(11260,13194),(11260,179431),(11282,380),(11282,587),(11282,1820),(11282,7312),(11282,8224),(11282,10776),(11282,11148),(11282,11492),(11282,15214),(11282,54169),(11282,157748),(11282,162914),(11282,167541),(11282,167631),(11282,167642),(11282,167656),(11282,167663),(11282,167664),(11283,936),(11283,2341),(11283,2470),(11283,6333),(11283,10103),(11283,33479),(11284,1453),(11284,3030),(11284,9820),(11284,11268),(11284,11469),(11284,14751),(11284,15127),(11284,170383),(11284,179431),(11284,187056),(11284,224625),(11284,225209),(11284,225210),(11287,1480),(11287,1956),(11287,6075),(11287,159201),(11287,163097),(11287,168316),(11287,187056),(11287,207883),(11298,4924),(11298,12564),(11298,155818),(11302,2020),(11302,2339),(11302,3090),(11306,242),(11306,3262),(11306,6731),(11306,9937),(11306,10326),(11306,11612),(11306,13004),(11306,13005),(11306,158025),(11306,177127),(11306,207390),(11308,236),(11308,258),(11308,549),(11308,570),(11308,572),(11308,612),(11308,818),(11308,949),(11308,1721),(11308,2483),(11308,8201),(11313,579),(11313,1356),(11313,3605),(11313,9376),(11313,9815),(11313,11108),(11313,11411),(11313,12372),(11313,14768),(11313,18253),(11313,156104),(11313,157955),(11313,160246),(11313,165142),(11313,165531),(11313,167715),(11313,170587),(11313,170592),(11313,170595),(11313,170602),(11313,170603),(11313,170607),(11313,170610),(11313,170611),(11313,170615),(11313,170620),(11313,170622),(11313,170624),(11321,4459),(11321,9368),(11321,14743),(11321,33768),(11321,33773),(11321,33774),(11322,1388),(11322,2430),(11322,4276),(11322,9774),(11322,9777),(11322,155443),(11323,5888),(11323,6129),(11323,15155),(11324,818),(11324,2041),(11324,2215),(11324,5340),(11324,10323),(11324,11207),(11324,11208),(11324,208611),(11336,732),(11336,798),(11336,818),(11336,2858),(11336,9937),(11336,10024),(11336,10170),(11336,10183),(11336,10629),(11336,13005),(11336,13063),(11336,14676),(11336,14742),(11336,15002),(11336,33505),(11336,41410),(11336,187844),(11342,616),(11342,1227),(11342,2343),(11342,4379),(11342,4995),(11342,10541),(11342,157667),(11342,177900),(11351,494),(11351,3151),(11351,4402),(11351,4932),(11351,4978),(11351,5457),(11351,5905),(11353,887),(11353,2793),(11353,10732),(11353,12396),(11353,33490),(11353,185482),(11354,572),(11354,2251),(11354,3616),(11354,3739),(11354,6054),(11354,9872),(11354,10226),(11354,10776),(11354,18047),(11354,33457),(11354,40879),(11354,187844),(11354,208344),(11357,798),(11357,1435),(11357,1546),(11357,3335),(11357,3874),(11357,4728),(11357,9663),(11357,9826),(11357,10714),(11357,11040),(11357,11221),(11357,13140),(11357,156075),(11357,179565),(11357,207399),(11358,585),(11358,798),(11358,1526),(11358,14819),(11358,15218),(11358,162380),(11359,1990),(11359,6186),(11359,6300),(11359,33465),(11359,187065),(11361,798),(11361,3875),(11361,9215),(11361,9663),(11361,10059),(11361,11040),(11361,12339),(11361,14751),(11361,15106),(11361,15127),(11361,156143),(11361,156392),(11361,156525),(11361,162538),(11361,164218),(11361,179565),(11362,1014),(11362,1808),(11362,2695),(11362,13006),(11362,220265),(11363,380),(11363,444),(11363,1595),(11363,2038),(11363,3582),(11363,5628),(11363,10183),(11363,13027),(11370,1465),(11370,2011),(11370,3720),(11370,3997),(11370,4152),(11370,9920),(11370,14577),(11370,217324),(11371,3356),(11371,155331),(11371,159408),(11371,159410),(11371,159413),(11371,159419),(11371,159422),(11371,159425),(11371,159431),(11371,159433),(11371,159434),(11374,2571),(11374,3586),(11374,3972),(11374,3974),(11374,4656),(11374,7271),(11375,897),(11375,2708),(11377,2574),(11377,179430),(11382,1808),(11382,2276),(11382,6220),(11382,10818),(11386,108),(11386,237),(11386,1562),(11386,2038),(11386,7005),(11386,10180),(11386,10199),(11386,10791),(11386,13065),(11386,165259),(11395,65),(11395,1441),(11395,1991),(11395,5011),(11395,5570),(11395,207317),(11397,240),(11397,2283),(11397,5091),(11397,6270),(11397,6275),(11397,9755),(11397,9986),(11397,10791),(11397,166229),(11397,167310),(11397,179430),(11397,179431),(11398,478),(11398,3292),(11398,4289),(11398,5514),(11398,15053),(11400,2914),(11400,158217),(11400,174149),(11404,3796),(11404,5833),(11404,10183),(11404,10508),(11411,83),(11411,849),(11411,1262),(11411,3312),(11411,4595),(11411,9181),(11411,9663),(11411,9715),(11411,10124),(11411,11428),(11411,34125),(11411,156080),(11411,160381),(11411,163396),(11411,163398),(11411,163403),(11411,163455),(11411,179102),(11412,441),(11412,1453),(11412,1562),(11412,3713),(11412,10123),(11412,10508),(11412,10685),(11412,14768),(11412,41414),(11412,166625),(11412,176802),(11412,188907),(11412,212801),(11412,228081),(11426,1668),(11426,2539),(11426,3365),(11426,33702),(11426,158372),(11426,191110),(11431,1480),(11431,3419),(11431,5625),(11431,6075),(11431,10508),(11431,155725),(11431,155726),(11439,212),(11439,591),(11439,1327),(11439,9365),(11439,10818),(11442,1155),(11442,6139),(11442,10714),(11442,179565),(11446,970),(11446,1156),(11446,2422),(11446,2544),(11446,10183),(11446,12663),(11446,190116),(11451,830),(11451,6067),(11451,33885),(11451,161630),(11451,187056),(11452,255),(11452,293),(11452,572),(11452,3616),(11452,10081),(11452,155556),(11452,171183),(11452,171184),(11452,171192),(11452,171197),(11452,171198),(11452,171199),(11452,215404),(11453,437),(11453,587),(11453,630),(11453,1295),(11453,1667),(11453,2699),(11453,3248),(11453,34112),(11453,41327),(11453,41328),(11456,2250),(11456,2393),(11456,3851),(11456,4130),(11456,4923),(11456,6669),(11456,9826),(11456,15160),(11456,155816),(11456,208349),(11456,217324),(11457,494),(11457,6095),(11457,10163),(11457,14964),(11457,15160),(11457,155816),(11457,156052),(11458,1803),(11458,2134),(11458,3398),(11458,5424),(11458,8508),(11458,9302),(11458,10183),(11458,14964),(11458,34038),(11459,1701),(11459,1797),(11459,2422),(11459,4769),(11459,6270),(11459,10364),(11459,163455),(11459,213104),(11460,1562),(11460,2250),(11460,2708),(11460,3800),(11467,774),(11467,887),(11467,1157),(11467,1907),(11467,2587),(11467,5809),(11468,851),(11468,1284),(11468,1601),(11468,3017),(11468,6691),(11468,207268),(11469,392),(11469,577),(11469,1456),(11469,3098),(11469,4379),(11469,4820),(11469,10466),(11469,13068),(11469,13084),(11469,41406),(11469,184258),(11469,189151),(11470,1471),(11470,1826),(11470,2964),(11470,3385),(11470,9882),(11470,10089),(11470,14676),(11470,14760),(11470,41337),(11478,736),(11478,2908),(11478,4735),(11478,10329),(11478,10669),(11478,15219),(11478,155793),(11478,157632),(11478,161837),(11478,171083),(11478,171095),(11478,171100),(11495,657),(11495,1475),(11495,2051),(11495,3616),(11499,1925),(11499,2251),(11499,3692),(11499,4240),(11499,9376),(11499,12193),(11499,13028),(11507,293),(11507,445),(11507,2147),(11507,2483),(11507,3581),(11507,6149),(11507,9732),(11507,9826),(11507,10226),(11507,12670),(11507,156391),(11507,158436),(11507,158988),(11507,178649),(11507,207716),(11509,798),(11509,1721),(11509,2673),(11509,3230),(11509,222782),(11516,270),(11516,1889),(11516,2646),(11516,2673),(11516,3478),(11516,3905),(11516,4474),(11516,5698),(11516,8044),(11516,8721),(11516,9970),(11516,33634),(11516,33635),(11517,380),(11517,1552),(11517,14512),(11517,155735),(11517,156120),(11519,339),(11519,387),(11519,1956),(11519,2770),(11519,3365),(11519,8201),(11519,12670),(11519,236316),(11529,242),(11529,1459),(11529,2075),(11529,2751),(11529,7024),(11531,616),(11531,4697),(11531,5774),(11531,8087),(11531,10629),(11535,554),(11535,1395),(11535,4565),(11535,5970),(11535,6075),(11535,6234),(11535,34000),(11535,155720),(11535,155742),(11536,4956),(11536,5876),(11536,8241),(11536,13072),(11536,15160),(11543,6075),(11543,167550),(11543,167554),(11543,167555),(11543,167556),(11543,167560),(11543,167562),(11543,167564),(11543,167570),(11543,167574),(11543,167575),(11543,167576),(11543,167580),(11543,167581),(11543,236294),(11544,1156),(11544,1603),(11544,1668),(11544,2393),(11544,2766),(11544,4862),(11544,4939),(11544,10336),(11544,15162),(11544,168490),(11545,3551),(11545,3568),(11545,4326),(11545,4333),(11545,6521),(11545,10183),(11546,282),(11546,10391),(11546,40957),(11546,186450),(11546,208260),(11551,3599),(11551,6476),(11551,7136),(11551,13065),(11551,156337),(11551,180691),(11551,187065),(11560,818),(11560,3581),(11560,5331),(11560,6148),(11560,9673),(11560,9826),(11560,10909),(11560,11032),(11560,11038),(11560,15108),(11560,162271),(11560,188114),(11560,199274),(11560,200883),(11561,572),(11561,2020),(11561,2964),(11561,4565),(11561,6086),(11561,6318),(11561,8201),(11561,10183),(11561,14544),(11561,189433),(11561,200802),(11561,236316),(11564,279),(11564,293),(11564,703),(11564,2176),(11564,2483),(11564,4470),(11564,6270),(11564,7002),(11564,7920),(11564,9826),(11564,10183),(11564,10508),(11564,10726),(11564,10768),(11564,12365),(11564,14857),(11564,173919),(11564,206850),(11565,1568),(11565,2341),(11565,2812),(11565,4602),(11565,4654),(11565,8663),(11565,10103),(11565,18118),(11565,18525),(11565,160364),(11576,271),(11576,378),(11576,387),(11576,3713),(11576,3923),(11576,6310),(11576,6956),(11576,9253),(11576,10594),(11576,15483),(11576,18034),(11576,40870),(11576,179507),(11576,230809),(11576,232607),(11577,798),(11577,4995),(11577,5672),(11577,6144),(11577,10176),(11577,10292),(11577,10688),(11577,163180),(11577,170314),(11577,218009),(11577,221091),(11577,226499),(11583,159857),(11583,159858),(11583,159859),(11583,159862),(11583,159865),(11583,159868),(11583,159869),(11583,159871),(11583,159872),(11583,159876),(11586,2626),(11586,4793),(11586,5810),(11586,9712),(11586,10093),(11586,14999),(11586,161261),(11586,179566),(11588,1326),(11588,1453),(11588,2340),(11588,3030),(11588,3667),(11588,9228),(11588,9826),(11588,9937),(11588,10937),(11588,11612),(11588,13005),(11588,13073),(11588,33720),(11588,162342),(11588,193490),(11592,3451),(11592,4556),(11592,6170),(11592,7717),(11592,9826),(11592,10183),(11592,168196),(11596,657),(11596,1930),(11596,3030),(11596,3521),(11596,4142),(11596,6152),(11596,6562),(11596,6732),(11596,9820),(11596,10232),(11596,11612),(11596,12396),(11596,47020),(11596,156282),(11596,160612),(11596,161184),(11596,166329),(11596,170383),(11596,179878),(11596,212435),(11596,225209),(11596,232999),(11598,917),(11598,1004),(11598,2136),(11598,2571),(11598,2954),(11598,7271),(11598,8201),(11598,10582),(11600,5939),(11600,15087),(11601,1328),(11601,1523),(11601,2340),(11601,2968),(11601,3358),(11601,3363),(11601,6100),(11601,9681),(11601,9826),(11601,9937),(11601,10941),(11601,14742),(11601,157234),(11601,162846),(11601,180523),(11601,184987),(11601,227655),(11615,378),(11615,736),(11615,1556),(11615,1992),(11615,2122),(11615,2501),(11615,4434),(11615,9826),(11615,12193),(11615,174420),(11615,197521),(11615,208647),(11618,818),(11618,2754),(11618,3098),(11618,3358),(11618,4142),(11618,4479),(11618,5374),(11618,5918),(11618,9714),(11618,10224),(11618,33587),(11618,154901),(11618,155811),(11618,156075),(11618,167104),(11618,169816),(11618,172801),(11618,172808),(11618,172812),(11618,172815),(11618,172816),(11618,172822),(11619,212),(11619,1449),(11619,1571),(11619,3799),(11619,4456),(11619,5490),(11619,9345),(11620,5049),(11620,6917),(11620,9144),(11622,1533),(11622,1815),(11622,2321),(11622,4917),(11624,571),(11624,2376),(11624,2700),(11624,3201),(11624,6444),(11624,9344),(11624,10180),(11624,188242),(11624,236316),(11631,641),(11631,1200),(11631,4344),(11631,5600),(11631,9457),(11631,10707),(11631,179431),(11631,187056),(11632,212),(11632,4107),(11632,4320),(11632,5212),(11632,155697),(11632,187056),(11635,171134),(11635,171143),(11635,171150),(11637,1926),(11637,2554),(11637,7312),(11637,10103),(11637,156322),(11637,199093),(11638,577),(11638,931),(11638,3453),(11638,199093),(11638,208764),(11644,2380),(11644,2708),(11644,2946),(11644,3767),(11644,4881),(11644,6078),(11644,6151),(11648,1156),(11648,6664),(11648,9457),(11648,10103),(11648,10508),(11648,13043),(11648,15160),(11648,41316),(11648,196320),(11648,223635),(11648,223636),(11658,41586),(11658,158534),(11658,158538),(11658,158540),(11658,158547),(11658,158553),(11661,65),(11661,2504),(11661,6062),(11661,10229),(11661,12990),(11661,207317),(11665,246),(11665,470),(11665,949),(11665,2052),(11665,3800),(11665,4721),(11665,10988),(11665,33649),(11667,407),(11667,779),(11667,1562),(11667,5362),(11667,7188),(11667,10076),(11667,15053),(11667,41645),(11676,897),(11676,1326),(11676,3016),(11676,6203),(11676,8207),(11676,9740),(11676,9748),(11676,9854),(11676,11314),(11676,12425),(11676,15009),(11676,15291),(11676,18034),(11676,41180),(11676,155419),(11676,160362),(11676,163975),(11676,167043),(11676,167541),(11676,167982),(11676,168736),(11676,168750),(11676,168763),(11676,179430),(11678,486),(11678,7021),(11678,8624),(11678,9356),(11678,160177),(11678,209504),(11679,521),(11679,720),(11679,840),(11679,1402),(11679,6285),(11679,9358),(11679,9610),(11679,33705),(11679,160992),(11679,181549),(11679,227206),(11683,4392),(11683,4565),(11683,5385),(11683,12377),(11683,186565),(11687,964),(11687,4379),(11687,5347),(11687,41406),(11687,177998),(11688,1291),(11688,1421),(11688,2280),(11688,3998),(11688,4152),(11688,9360),(11688,207745),(11690,779),(11690,5565),(11690,6075),(11690,9362),(11690,9917),(11690,12354),(11692,305),(11692,585),(11692,1010),(11692,2334),(11692,2964),(11692,6220),(11692,18069),(11697,75),(11697,797),(11697,3739),(11697,3754),(11697,4277),(11697,9503),(11697,10909),(11697,13132),(11697,14574),(11697,33600),(11697,155291),(11699,796),(11699,10291),(11699,33699),(11699,156117),(11699,161982),(11699,226376),(11702,279),(11702,478),(11702,1376),(11702,1589),(11702,1788),(11702,2231),(11702,2708),(11702,3739),(11702,8997),(11702,9748),(11702,10562),(11702,10718),(11702,13116),(11702,15211),(11702,18026),(11702,18107),(11702,159932),(11702,169590),(11702,177964),(11702,235220),(11770,779),(11770,1485),(11770,5400),(11770,9390),(11770,11139),(11770,13042),(11775,387),(11775,782),(11775,1326),(11775,2699),(11775,2708),(11775,5728),(11775,6148),(11775,8201),(11775,10909),(11775,10911),(11775,15160),(11778,422),(11778,904),(11778,2956),(11778,8508),(11778,10685),(11778,225061),(11778,228755),(11778,228756),(11780,388),(11780,5565),(11780,160279),(11780,208070),(11780,220446),(11798,65),(11798,379),(11798,392),(11798,2016),(11798,10183),(11798,10726),(11798,12425),(11798,13088),(11798,14751),(11798,14819),(11798,14964),(11798,156052),(11798,160910),(11798,162710),(11802,1826),(11802,2552),(11802,9882),(11802,179430),(11804,2564),(11804,3667),(11804,3769),(11804,5439),(11804,6152),(11804,6203),(11804,8506),(11804,11441),(11804,11627),(11804,34079),(11804,160178),(11804,172717),(11804,172812),(11804,172900),(11804,172927),(11804,172929),(11812,1253),(11812,6038),(11812,179430),(11812,179431),(11817,345),(11817,960),(11817,4958),(11817,6201),(11817,18109),(11817,160133),(11817,160134),(11818,2051),(11818,5898),(11818,13065),(11818,13142),(11818,15087),(11820,171452),(11820,171453),(11820,171459),(11820,171461),(11820,171468),(11820,171469),(11820,171473),(11823,1488),(11823,1605),(11823,2848),(11823,5657),(11823,9415),(11826,514),(11826,572),(11826,2483),(11826,6259),(11826,9826),(11826,10051),(11826,10594),(11826,13142),(11826,14819),(11826,15009),(11826,18115),(11826,33688),(11826,159339),(11826,201927),(11826,201930),(11827,391),(11827,444),(11827,5540),(11827,10471),(11827,11487),(11827,11494),(11827,161919),(11831,701),(11831,1860),(11831,2831),(11831,3441),(11831,6165),(11831,9395),(11831,155756),(11831,163120),(11835,697),(11835,1522),(11835,9748),(11835,9826),(11835,10726),(11835,11522),(11835,11612),(11835,14687),(11835,15108),(11835,160488),(11835,160543),(11835,172353),(11836,270),(11836,658),(11836,3412),(11836,4237),(11836,41337),(11836,204222),(11843,642),(11843,1384),(11843,2408),(11843,5439),(11843,8775),(11858,422),(11858,1004),(11858,5920),(11858,8066),(11858,9479),(11858,13065),(11858,156052),(11858,187056),(11858,193547),(11863,550),(11863,582),(11863,5340),(11863,9826),(11866,642),(11866,4237),(11866,4718),(11866,10617),(11866,12617),(11866,15354),(11866,18034),(11870,776),(11870,887),(11870,3796),(11870,6145),(11870,9468),(11870,170487),(11870,171067),(11873,1010),(11873,1356),(11873,2276),(11873,2348),(11873,6075),(11876,924),(11876,1605),(11876,1649),(11876,2673),(11876,4849),(11887,4344),(11887,6027),(11887,6270),(11887,10683),(11887,13130),(11887,33910),(11887,179431),(11888,2393),(11888,4010),(11888,9880),(11888,155821),(11889,818),(11889,1605),(11889,2038),(11889,4193),(11889,4995),(11889,5903),(11889,7094),(11889,9673),(11889,10818),(11889,154785),(11889,163132),(11891,1465),(11891,2143),(11891,4769),(11891,8872),(11891,11931),(11891,156075),(11891,217324),(11892,703),(11892,1328),(11892,1812),(11892,1849),(11892,2620),(11892,5801),(11892,6140),(11892,6258),(11892,6270),(11892,9104),(11892,9826),(11892,34143),(11892,160313),(11901,75),(11901,1333),(11901,9503),(11904,212),(11904,2921),(11904,3684),(11904,9401),(11904,9826),(11904,179430),(11908,2411),(11908,3184),(11908,3230),(11908,3598),(11908,4150),(11908,10714),(11917,8636),(11917,10714),(11917,18058),(11917,234356),(11917,234766),(11917,234767),(11918,2095),(11918,6270),(11918,9312),(11918,9715),(11918,9741),(11918,179431),(11932,4944),(11932,6300),(11932,9707),(11932,10603),(11932,180691),(11932,187065),(11932,190349),(11934,236),(11934,242),(11934,417),(11934,736),(11934,1436),(11934,1568),(11934,4290),(11934,4812),(11934,5306),(11934,5340),(11934,6129),(11934,6133),(11934,8508),(11934,10594),(11934,203525),(11934,203528),(11935,720),(11935,1432),(11935,1556),(11935,1612),(11935,4214),(11935,8086),(11935,10410),(11935,10685),(11935,14626),(11935,18034),(11935,196557),(11935,226594),(11935,226595),(11954,1826),(11954,3133),(11954,3243),(11954,4803),(11954,9951),(11954,155585),(11956,90),(11956,977),(11959,3090),(11959,3586),(11959,4325),(11959,4656),(11959,5699),(11959,8201),(11959,34117),(11959,168049),(11959,186803),(11967,417),(11967,798),(11967,1559),(11967,2752),(11967,5672),(11967,9503),(11967,10226),(11968,269),(11968,2150),(11968,2580),(11968,3180),(11968,3800),(11968,9504),(11969,4948),(11969,5074),(11969,6145),(11969,6165),(11971,497),(11971,1338),(11971,1605),(11971,3927),(11971,4320),(11971,13027),(11971,34038),(11973,840),(11973,1815),(11973,4170),(11973,9342),(11973,156661),(11975,1417),(11975,2852),(11975,3012),(11975,8097),(11975,10909),(11975,33519),(11977,2702),(11977,3508),(11977,6075),(11977,15228),(11977,177993),(11978,269),(11978,4410),(11979,2011),(11979,2570),(11979,2908),(11979,3133),(11979,3760),(11979,4197),(11979,6027),(11979,10985),(11979,155532),(11979,231407),(11980,290),(11980,3648),(11980,9511),(11983,1562),(11983,1605),(11983,9937),(11983,33705),(12079,10183),(12079,187514),(12079,187517),(12079,187518),(12079,187522),(12079,187523),(12079,187524),(12079,187525),(12079,187527),(12079,187536),(12079,187537),(12079,187544),(12079,187547),(12079,187551),(12085,10726),(12085,160488),(12085,187056),(12088,378),(12088,679),(12088,2587),(12088,2964),(12088,4565),(12088,10685),(12088,208085),(12090,110),(12090,254),(12090,378),(12090,657),(12090,1295),(12090,2587),(12090,2676),(12090,3098),(12090,3455),(12090,3899),(12090,6038),(12090,6149),(12090,6876),(12093,236),(12093,572),(12093,1192),(12093,1353),(12093,2334),(12093,2483),(12093,10685),(12093,12987),(12093,13059),(12093,14819),(12093,193295),(12094,2820),(12094,3444),(12094,4424),(12094,5452),(12094,5956),(12094,6241),(12094,9517),(12094,200234),(12096,642),(12096,5340),(12096,5439),(12096,15127),(12096,159548),(12096,159550),(12096,217324),(12100,233),(12100,1956),(12100,4305),(12100,4405),(12100,4595),(12100,4950),(12100,9524),(12100,9525),(12103,1227),(12103,1384),(12103,9937),(12103,15106),(12103,15127),(12106,75),(12106,9748),(12106,9930),(12106,10950),(12106,13132),(12107,9181),(12107,10125),(12107,18035),(12107,160450),(12107,179431),(12107,191881),(12109,635),(12109,1465),(12109,2150),(12109,4610),(12109,5718),(12109,6731),(12109,6814),(12109,9672),(12109,158558),(12113,321),(12113,769),(12113,818),(12113,3737),(12113,6292),(12113,9145),(12113,9846),(12113,9849),(12117,378),(12117,690),(12117,3664),(12117,6245),(12117,9826),(12117,11268),(12120,9951),(12120,11931),(12120,177392),(12120,177398),(12120,177406),(12123,1812),(12123,2528),(12123,3288),(12123,6107),(12123,10410),(12123,179430),(12133,1412),(12133,4970),(12133,5707),(12133,6062),(12133,7714),(12133,8631),(12133,14647),(12133,179430),(12133,179431),(12138,585),(12138,1375),(12138,3607),(12138,5694),(12138,159449),(12138,179431),(12142,703),(12142,1299),(12142,1992),(12142,2041),(12142,2598),(12142,3762),(12142,4862),(12142,9853),(12142,9854),(12142,9855),(12142,9856),(12142,12377),(12142,41645),(12142,221387),(12144,746),(12144,936),(12144,1720),(12144,3521),(12144,6854),(12144,12616),(12149,290),(12149,798),(12149,936),(12149,1228),(12149,1556),(12149,1566),(12149,2919),(12149,2968),(12149,3598),(12149,6255),(12149,9826),(12149,10260),(12149,10629),(12149,10714),(12149,10886),(12149,15001),(12149,18525),(12149,44449),(12149,161264),(12149,174203),(12149,187844),(12149,238140),(12150,242),(12150,567),(12150,572),(12150,703),(12150,918),(12150,2483),(12150,3879),(12150,6149),(12150,9826),(12150,9937),(12150,10714),(12150,207268),(12153,1568),(12153,1812),(12153,11860),(12153,165282),(12153,167316),(12153,201554),(12154,1009),(12154,1253),(12154,1338),(12154,8508),(12154,9549),(12154,215320),(12155,818),(12155,855),(12155,2011),(12155,2486),(12155,12552),(12155,170362),(12155,209714),(12158,3133),(12158,3630),(12159,439),(12159,634),(12159,1449),(12159,4116),(12159,5918),(12159,6154),(12159,6155),(12159,210530),(12160,75),(12160,395),(12160,798),(12160,1559),(12160,4391),(12160,5074),(12160,6165),(12160,9550),(12162,1589),(12162,1653),(12162,1797),(12162,4595),(12162,5939),(12162,7336),(12162,9937),(12162,10481),(12162,15087),(12162,18034),(12162,167342),(12162,173841),(12162,187056),(12162,187288),(12163,1545),(12163,1786),(12163,3734),(12163,5600),(12163,5970),(12163,6075),(12163,6593),(12163,10155),(12163,10232),(12163,11246),(12163,11431),(12163,11436),(12177,6075),(12177,6483),(12177,8616),(12177,10267),(12177,10540),(12177,14636),(12177,180824),(12177,192394),(12177,195730),(12177,196271),(12177,208470),(12177,208471),(12177,208473),(12182,6029),(12182,13130),(12182,162914),(12182,223438),(12182,234886),(12183,3202),(12183,3398),(12183,10183),(12184,392),(12184,1156),(12184,2011),(12184,4152),(12184,190285),(12192,293),(12192,7645),(12192,9139),(12192,11259),(12192,11494),(12192,18249),(12192,156544),(12192,221193),(12193,65),(12193,9799),(12193,10041),(12193,207317),(12201,9826),(12201,14819),(12201,164881),(12201,180668),(12207,494),(12207,779),(12207,797),(12207,5572),(12207,6054),(12207,12965),(12211,1014),(12211,3095),(12211,3861),(12211,4959),(12211,4978),(12212,886),(12212,6270),(12212,9663),(12212,10714),(12212,12339),(12212,179430),(12220,2038),(12220,2726),(12220,2800),(12220,13027),(12220,14534),(12220,15160),(12227,818),(12227,1321),(12227,1454),(12227,1909),(12227,2526),(12227,6054),(12227,9880),(12227,10950),(12227,15162),(12227,162726),(12227,180808),(12227,189390),(12227,189391),(12227,189392),(12228,279),(12228,1228),(12228,5436),(12228,12420),(12244,312),(12244,3929),(12244,4458),(12244,4565),(12244,6054),(12244,6091),(12244,10028),(12244,18036),(12244,156949),(12244,178655),(12245,2303),(12245,6009),(12245,8095),(12245,8264),(12245,163392),(12245,209117),(12246,4719),(12246,5146),(12247,380),(12247,1872),(12247,5521),(12257,828),(12257,1326),(12257,3152),(12257,3725),(12257,3739),(12257,4129),(12257,6746),(12257,7151),(12271,242),(12271,567),(12271,572),(12271,1326),(12271,2483),(12271,2679),(12271,2861),(12271,4434),(12271,5321),(12271,5565),(12271,6782),(12271,8508),(12271,9673),(12271,10183),(12271,10229),(12271,14893),(12271,14964),(12271,33458),(12271,156037),(12271,163991),(12271,196288),(12271,201973),(12277,840),(12277,848),(12277,1474),(12277,1568),(12277,2051),(12277,9104),(12277,179431),(12279,282),(12279,2051),(12279,2434),(12279,3650),(12279,10364),(12281,236),(12281,567),(12281,1328),(12281,1421),(12281,1889),(12281,1897),(12281,5301),(12281,8508),(12281,9673),(12281,9713),(12281,9864),(12281,10624),(12281,14964),(12281,33458),(12281,157813),(12281,201870),(12281,201871),(12289,158145),(12289,158468),(12289,158470),(12289,158471),(12289,158474),(12289,158477),(12289,158478),(12289,158480),(12289,158482),(12289,158487),(12289,158488),(12289,158489),(12312,1189),(12312,3436),(12312,5600),(12312,9576),(12312,155816),(12312,192828),(12312,212330),(12400,886),(12400,887),(12400,5824),(12400,6075),(12400,10188),(12400,155236),(12400,162257),(12400,162258),(12400,162262),(12400,162269),(12400,162271),(12400,162272),(12400,162275),(12400,162278),(12403,1668),(12403,2676),(12403,6309),(12403,9826),(12404,242),(12404,818),(12404,6165),(12404,163110),(12404,214548),(12405,100),(12405,958),(12405,1332),(12405,3301),(12405,4325),(12405,13014),(12405,179431),(12410,74),(12410,2652),(12410,191726),(12410,206662),(12412,577),(12412,1956),(12412,1958),(12412,5331),(12412,13065),(12412,15182),(12429,456),(12429,1357),(12429,1792),(12429,5905),(12429,5938),(12429,7376),(12429,210024),(12437,378),(12437,1449),(12437,2831),(12437,3098),(12437,3133),(12437,6091),(12437,12564),(12437,14643),(12437,14906),(12437,34137),(12437,231407),(12479,1157),(12479,3836),(12479,10818),(12479,34094),(12484,3133),(12484,4550),(12484,5374),(12484,11546),(12484,157096),(12484,162645),(12484,166720),(12484,167159),(12484,168869),(12484,176572),(12484,176573),(12484,176585),(12484,176592),(12484,188957),(12486,3028),(12486,9558),(12486,157160),(12498,10183),(12498,170630),(12498,170633),(12498,170646),(12498,170647),(12498,170648),(12498,170652),(12506,736),(12506,1228),(12506,3230),(12506,3644),(12506,4106),(12508,2570),(12508,3836),(12508,3921),(12508,5540),(12508,5625),(12509,2679),(12509,3836),(12509,5625),(12509,7464),(12509,10183),(12509,13072),(12535,2456),(12535,2567),(12535,2708),(12535,4079),(12535,11931),(12535,155440),(12555,996),(12555,2613),(12555,3063),(12555,3530),(12555,9594),(12555,9736),(12555,11064),(12569,1326),(12569,3202),(12569,9727),(12569,10183),(12569,12094),(12569,163919),(12569,163925),(12569,179431),(12569,189361),(12569,209222),(12573,1992),(12573,10123),(12573,10904),(12573,179430),(12573,208992),(12586,828),(12586,966),(12586,10183),(12586,13042),(12586,14659),(12586,177973),(12586,187844),(12589,797),(12589,2998),(12589,3289),(12589,6257),(12589,9951),(12589,10084),(12589,12101),(12589,14544),(12589,14643),(12589,18069),(12589,18096),(12589,33353),(12596,271),(12596,822),(12596,4545),(12596,5440),(12602,1585),(12602,3962),(12602,4065),(12602,4188),(12602,4198),(12602,6932),(12602,9887),(12610,5198),(12610,6681),(12610,14675),(12610,188326),(12612,1465),(12612,2249),(12612,2326),(12612,3879),(12612,9826),(12618,1326),(12618,6083),(12618,12617),(12618,34079),(12618,175421),(12618,188127),(12618,208397),(12620,2389),(12620,2483),(12620,3616),(12620,4328),(12620,5828),(12620,7984),(12620,8508),(12620,9639),(12620,9890),(12620,10058),(12620,13149),(12620,14818),(12620,156401),(12620,157632),(12620,187327),(12621,2176),(12621,4344),(12621,6034),(12621,6270),(12621,9310),(12621,10508),(12621,208095),(12634,612),(12634,642),(12634,818),(12634,934),(12634,1668),(12634,1936),(12634,3182),(12634,3342),(12634,5739),(12634,6147),(12634,8430),(12634,8627),(12634,9758),(12634,13078),(12634,15156),(12634,33456),(12634,34145),(12634,155552),(12634,184302),(12634,226435),(12637,242),(12637,1416),(12637,3018),(12637,13072),(12657,577),(12657,898),(12657,2334),(12657,3800),(12657,4630),(12657,5165),(12658,2383),(12658,2566),(12658,2571),(12658,5756),(12658,7169),(12690,1415),(12690,14574),(12703,570),(12703,1546),(12703,1595),(12703,10937),(12703,12420),(12703,14735),(12704,3593),(12704,7041),(12704,9767),(12704,10229),(12704,10685),(12704,187056),(12763,1342),(12763,1691),(12763,4344),(12763,187056),(12770,642),(12770,5090),(12770,5948),(12770,6095),(12770,6464),(12770,10183),(12770,10594),(12771,10329),(12771,13072),(12771,15160),(12771,156322),(12771,220204),(12779,596),(12779,2041),(12779,2580),(12779,157524),(12783,392),(12783,596),(12783,4235),(12783,5305),(12783,5809),(12797,3737),(12797,9622),(12797,156181),(12797,186382),(12819,1994),(12819,2692),(12819,3691),(12819,7312),(12819,14798),(12819,15263),(12819,15265),(12819,15266),(12837,187056),(12838,254),(12838,4048),(12838,5340),(12838,6373),(12838,10183),(12838,14534),(12838,33841),(12838,154937),(12877,3927),(12877,5301),(12877,9748),(12877,10886),(12877,10887),(12901,833),(12901,4691),(12901,10183),(12901,15268),(12901,33636),(12901,33637),(12901,33638),(12920,643),(12920,2673),(12920,3291),(12920,6075),(12920,9672),(12920,10235),(12920,15300),(13001,3417),(13001,3801),(13001,4769),(13001,9831),(13001,9951),(13006,3528),(13006,9685),(13006,15167),(13007,789),(13007,2598),(13007,2606),(13007,2620),(13007,3901),(13007,4434),(13007,5950),(13007,6150),(13007,8778),(13007,11465),(13007,14989),(13007,18396),(13007,34152),(13007,156165),(13007,156166),(13007,156167),(13007,161205),(13007,179430),(13025,12377),(13025,163053),(13027,310),(13027,521),(13027,1308),(13027,1562),(13027,1576),(13027,1812),(13027,2314),(13027,7375),(13027,18525),(13051,782),(13051,41645),(13051,179430),(13053,1939),(13053,9963),(13053,18165),(13053,158378),(13053,179431),(13053,213873),(13053,230873),(13053,232802),(13056,10525),(13056,18525),(13056,174947),(13056,174953),(13056,174954),(13056,174959),(13056,174960),(13056,174968),(13056,187056),(13064,6075),(13064,193817),(13066,10183),(13067,1326),(13067,8508),(13067,9673),(13067,10163),(13067,10226),(13067,13028),(13067,13130),(13067,40895),(13067,187844),(13067,207583),(13074,6075),(13075,10183),(13075,10707),(13075,187056),(13079,9937),(13090,236),(13090,641),(13090,1156),(13090,1490),(13090,1508),(13090,4298),(13090,5683),(13090,11727),(13090,187056),(13092,3837),(13092,186402),(13132,531),(13132,1415),(13132,2389),(13132,10183),(13132,12392),(13150,467),(13150,2102),(13150,6149),(13154,1794),(13154,12670),(13154,18098),(13155,209649),(13156,1556),(13156,10594),(13156,159909),(13158,409),(13158,8636),(13158,9887),(13158,11221),(13158,14544),(13158,161919),(13159,5987),(13159,10505),(13159,10707),(13159,13088),(13159,13130),(13159,18255),(13159,187536),(13159,208703),(13160,2913),(13160,9799),(13160,13095),(13160,13153),(13160,14540),(13160,14742),(13160,223267),(13166,2564),(13166,8631),(13166,9956),(13173,10183),(13173,163226),(13173,171366),(13173,187643),(13173,187651),(13173,187652),(13173,187657),(13173,187660),(13183,849),(13183,1308),(13183,1583),(13183,4948),(13183,9717),(13183,10410),(13183,18139),(13183,34161),(13183,157938),(13183,158456),(13183,173995),(13183,174008),(13183,174016),(13183,174019),(13183,208289),(13184,782),(13184,1293),(13184,1419),(13184,1635),(13184,2708),(13184,3432),(13184,3434),(13184,3688),(13184,4488),(13184,5824),(13184,9714),(13184,9826),(13184,10085),(13184,10391),(13184,10950),(13184,12391),(13184,14601),(13184,14967),(13184,15127),(13184,41644),(13184,187844),(13184,195295),(13184,226409),(13187,65),(13187,207317),(13191,2708),(13191,169086),(13193,186),(13193,237),(13193,1862),(13193,10183),(13193,10683),(13193,34333),(13197,1568),(13197,10391),(13197,11578),(13197,33421),(13198,10183),(13198,14602),(13198,162296),(13198,168855),(13198,168856),(13198,168857),(13198,168859),(13198,168861),(13198,168866),(13198,168867),(13198,168868),(13198,168869),(13198,168874),(13198,168879),(13201,10726),(13201,14512),(13201,41352),(13223,570),(13223,1543),(13223,1900),(13223,10093),(13223,10726),(13223,10938),(13223,13130),(13223,13142),(13223,18021),(13223,33476),(13223,33885),(13223,198536),(13250,520),(13250,1326),(13250,5756),(13250,9748),(13260,6075),(13260,6496),(13260,169054),(13260,169055),(13260,169057),(13260,169058),(13260,169062),(13260,169064),(13260,169068),(13260,169071),(13260,169075),(13279,2016),(13279,2539),(13279,10226),(13279,10275),(13279,11325),(13279,13149),(13279,14778),(13279,166148),(13279,167377),(13279,188609),(13282,4565),(13282,9666),(13282,11799),(13335,949),(13335,179430),(13335,179431),(13342,572),(13342,818),(13342,2483),(13342,6054),(13342,6270),(13342,6490),(13342,7984),(13342,9783),(13342,10508),(13342,10683),(13342,10776),(13342,11254),(13342,11485),(13342,11870),(13342,33898),(13342,54169),(13342,155247),(13342,155722),(13342,160840),(13342,168152),(13342,173186),(13342,187056),(13342,208591),(13342,227616),(13362,444),(13362,3541),(13362,4404),(13362,10772),(13363,490),(13363,1328),(13363,1421),(13363,1992),(13363,2800),(13363,3036),(13363,3667),(13363,3754),(13363,4978),(13363,9682),(13363,10349),(13363,10506),(13363,10937),(13363,10983),(13363,11001),(13363,14765),(13363,156810),(13363,159955),(13370,11800),(13370,33534),(13374,6075),(13374,10671),(13374,10809),(13374,11870),(13374,13130),(13389,9748),(13389,9826),(13389,11422),(13389,11719),(13403,108),(13403,237),(13403,572),(13403,10229),(13403,17975),(13403,33973),(13403,165601),(13403,165606),(13403,165607),(13403,165608),(13403,165612),(13403,165614),(13403,165615),(13403,165621),(13405,9672),(13405,179431),(13408,572),(13408,1721),(13408,6027),(13408,169302),(13408,169305),(13408,169309),(13408,169311),(13408,169325),(13408,169326),(13408,179431),(13411,542),(13411,12670),(13435,4410),(13435,5565),(13448,588),(13448,716),(13448,818),(13448,1715),(13448,5950),(13448,5960),(13448,8056),(13448,9675),(13448,9676),(13448,10410),(13448,14780),(13448,161207),(13448,234169),(13460,4565),(13460,6898),(13460,9685),(13460,9725),(13460,14675),(13475,1612),(13475,3822),(13475,4040),(13475,4300),(13475,4379),(13475,4380),(13475,5100),(13475,9675),(13475,9684),(13475,9685),(13475,9686),(13475,12388),(13475,12405),(13475,155212),(13475,156282),(13475,161176),(13475,161184),(13476,6562),(13476,9799),(13476,10556),(13476,162262),(13490,3741),(13491,156321),(13496,798),(13496,2673),(13496,9503),(13496,9910),(13496,222784),(13497,171258),(13497,171260),(13497,171261),(13497,171263),(13497,171268),(13497,171273),(13501,1566),(13501,1599),(13501,10597),(13503,3508),(13503,4809),(13503,6984),(13508,6107),(13508,6134),(13508,10183),(13510,966),(13510,1157),(13510,1889),(13510,1890),(13510,4083),(13510,4426),(13510,5774),(13510,9748),(13510,10349),(13510,13073),(13510,14819),(13510,33494),(13510,181858),(13510,237378),(13515,222),(13515,1406),(13515,1552),(13515,3298),(13515,7464),(13515,8440),(13515,9712),(13515,10326),(13515,11004),(13515,14784),(13515,15001),(13515,15106),(13515,46951),(13515,155817),(13515,156022),(13515,156075),(13515,163914),(13516,194165),(13518,1269),(13518,4673),(13518,6134),(13518,10183),(13518,18330),(13523,572),(13523,931),(13523,2389),(13523,2483),(13523,5890),(13523,6054),(13523,6270),(13523,7312),(13523,9713),(13523,9840),(13523,10250),(13523,11254),(13523,11546),(13523,11870),(13523,156478),(13523,202420),(13523,202423),(13536,9826),(13536,180668),(13538,212),(13538,548),(13538,570),(13538,572),(13538,2754),(13538,4580),(13538,6093),(13538,8087),(13538,8508),(13538,9748),(13538,9826),(13538,10563),(13538,10726),(13538,13063),(13538,14767),(13538,14819),(13538,165798),(13539,830),(13539,3551),(13539,10738),(13551,549),(13551,657),(13551,918),(13551,10183),(13551,187056),(13576,3490),(13576,6027),(13576,6029),(13576,179430),(13576,179431),(13596,248),(13596,572),(13596,1010),(13596,4394),(13596,6054),(13596,6060),(13596,6593),(13596,6946),(13596,9468),(13596,13027),(13596,14595),(13596,179431),(13600,1001),(13600,1919),(13600,4414),(13600,4458),(13600,4565),(13600,9228),(13600,163190),(13600,185269),(13649,4344),(13649,6027),(13649,13088),(13649,13130),(13649,163963),(13649,172466),(13673,65),(13673,207317),(13680,579),(13680,1338),(13680,1483),(13680,6075),(13680,163405),(13680,208185),(13680,228676),(13685,380),(13685,642),(13685,1437),(13685,2568),(13685,2669),(13685,10183),(13685,10323),(13685,13097),(13685,14604),(13685,15274),(13685,187710),(13685,187717),(13688,9736),(13688,9738),(13688,9739),(13700,4932),(13700,5543),(13700,18165),(13751,577),(13751,11145),(13751,11146),(13776,10738),(13776,158938),(13776,160619),(13776,160627),(13776,169152),(13776,208611),(13778,3090),(13778,5561),(13785,1245),(13785,2589),(13785,6879),(13785,10183),(13785,11800),(13785,158225),(13785,158228),(13805,5096),(13805,14819),(13805,156240),(13805,179431),(13809,212),(13809,5606),(13809,10594),(13809,10726),(13809,14536),(13811,843),(13811,4950),(13811,9937),(13811,10150),(13811,10641),(13811,10652),(13811,10655),(13811,10657),(13811,10664),(13811,157984),(13811,169816),(13811,191494),(13811,191509),(13812,6898),(13812,9714),(13812,13424),(13812,163053),(13812,188957),(13816,165636),(13816,165641),(13816,165643),(13816,165646),(13816,165647),(13816,165660),(13816,186370),(13820,387),(13820,2150),(13820,2964),(13820,4470),(13820,4934),(13820,6027),(13820,6149),(13820,6158),(13820,8900),(13820,9738),(13820,9887),(13820,9951),(13820,10183),(13820,10410),(13820,13006),(13820,14760),(13820,14819),(13820,15127),(13820,34117),(13820,164861),(13827,5349),(13827,6075),(13836,1612),(13836,3290),(13836,3822),(13836,5086),(13836,9951),(13836,162365),(13836,179431),(13836,188989),(13836,229053),(13849,1336),(13849,1562),(13849,3051),(13853,4428),(13853,10148),(13853,159955),(13853,178645),(13853,183414),(13853,191348),(13853,192918),(13856,3298),(13856,9715),(13856,10183),(13888,2041),(13888,10792),(13888,11823),(13888,13130),(13888,155746),(13888,157524),(13908,179430),(13908,179431),(13909,1316),(13909,4268),(13909,4948),(13909,10563),(13909,156234),(13919,236),(13919,494),(13919,3307),(13919,10183),(13919,33465),(13920,5565),(13920,6054),(13920,6075),(13922,818),(13922,1956),(13922,1968),(13922,2398),(13922,10374),(13922,11107),(13922,13065),(13922,207883),(13922,228523),(13922,229851),(13938,779),(13938,4733),(13938,5641),(13938,6027),(13948,949),(13948,9755),(13948,180415),(13948,197638),(13950,633),(13950,738),(13950,3019),(13950,3508),(13950,5918),(13950,8430),(13950,11190),(13950,14735),(13950,14857),(13950,54169),(13950,156825),(13950,158304),(13950,159631),(13950,163994),(13950,167925),(13950,169151),(13950,169152),(13950,169161),(13950,169171),(13950,169175),(13963,1228),(13963,6027),(13967,1014),(13967,1531),(13967,10818),(13967,15199),(13972,9749),(13972,15160),(13972,187056),(13973,3688),(13973,5903),(13973,5906),(13982,534),(13982,6876),(13982,9826),(13982,33709),(13983,8201),(13983,10183),(13983,11931),(13990,10683),(13990,10776),(13990,13088),(13991,738),(13991,3616),(13991,5490),(13991,5569),(13991,33648),(13991,157632),(13991,170209),(13994,1326),(13994,4663),(13994,11935),(13994,14512),(13996,5990),(13996,6563),(13996,9023),(14012,2673),(14014,396),(14014,6075),(14014,10183),(14022,305),(14022,490),(14022,1437),(14022,1556),(14022,1566),(14022,1815),(14022,1891),(14022,5879),(14022,6293),(14022,9738),(14022,10183),(14022,11732),(14022,12532),(14022,13028),(14022,14766),(14022,15211),(14022,161187),(14022,161188),(14022,163173),(14022,167507),(14022,169152),(14022,184011),(14022,184014),(14022,184017),(14022,236316),(14024,6027),(14024,7393),(14024,10228),(14024,10229),(14024,13130),(14024,163764),(14024,172291),(14024,207739),(14024,218182),(14033,3298),(14033,9844),(14033,34079),(14033,161240),(14034,4480),(14034,6168),(14034,9727),(14034,189093),(14043,387),(14043,703),(14043,818),(14043,1566),(14043,1930),(14043,3713),(14043,8508),(14043,9826),(14043,10084),(14043,10685),(14043,12396),(14043,13130),(14043,14601),(14043,18420),(14043,187844),(14047,5565),(14048,934),(14048,2869),(14048,2983),(14048,3026),(14048,8406),(14048,9890),(14048,10183),(14048,10232),(14048,18028),(14048,33787),(14054,236),(14054,894),(14054,1415),(14054,10235),(14054,165100),(14057,10183),(14112,255),(14112,596),(14112,818),(14112,1326),(14112,2571),(14112,3405),(14112,4697),(14112,5565),(14112,5906),(14112,9672),(14112,10183),(14112,166770),(14113,9715),(14113,9963),(14114,898),(14114,1346),(14114,1691),(14114,1974),(14114,4344),(14120,8029),(14137,1480),(14137,6075),(14139,1435),(14139,2135),(14139,2483),(14139,3667),(14139,9720),(14139,9887),(14139,9935),(14139,10183),(14139,14760),(14139,33618),(14139,157171),(14139,158071),(14139,158591),(14139,180340),(14139,193490),(14144,271),(14144,1158),(14144,5569),(14144,5767),(14144,6437),(14144,9823),(14144,10786),(14160,965),(14160,1291),(14160,9903),(14160,10336),(14160,175715),(14160,179431),(14160,221536),(14161,2163),(14161,5096),(14161,10150),(14161,10617),(14161,12332),(14161,14796),(14161,163398),(14161,208090),(14161,230910),(14161,232318),(14161,232339),(14164,3436),(14164,9715),(14164,9748),(14164,12554),(14164,179431),(14165,242),(14165,5626),(14165,10235),(14165,10540),(14165,167986),(14165,188266),(14175,10336),(14175,18165),(14175,209714),(14181,6118),(14181,179018),(14181,193889),(14191,5248),(14191,5938),(14191,13130),(14191,187056),(14195,2671),(14195,9782),(14195,9783),(14195,9785),(14195,9786),(14195,10183),(14199,7942),(14199,10216),(14202,478),(14202,7728),(14202,8781),(14202,17995),(14202,187325),(14220,2571),(14220,2597),(14256,10183),(14256,33775),(14271,5970),(14271,6075),(14271,9859),(14271,213826),(14271,229287),(14275,520),(14275,1483),(14275,2394),(14275,2398),(14275,3616),(14275,6075),(14275,6496),(14275,8635),(14275,10183),(14275,33905),(14275,33910),(14278,994),(14278,2564),(14278,6075),(14278,7912),(14283,2096),(14283,4721),(14284,1432),(14284,4040),(14284,6394),(14284,7422),(14284,9882),(14284,14626),(14284,33786),(14292,2070),(14292,6075),(14292,6483),(14292,169213),(14292,169214),(14292,169215),(14292,169220),(14292,179430),(14292,179431),(14293,2348),(14293,10183),(14293,10499),(14295,10183),(14299,187056),(14306,736),(14306,818),(14306,8841),(14306,15162),(14306,179431),(14306,209064),(14306,230873),(14317,1156),(14317,3513),(14317,9902),(14317,18161),(14317,157972),(14317,187056),(14325,579),(14325,3616),(14325,5565),(14325,6075),(14325,9797),(14337,1448),(14337,2101),(14337,3394),(14337,4379),(14337,5455),(14337,6009),(14337,10183),(14337,14779),(14337,162356),(14351,542),(14351,577),(14351,6075),(14351,8635),(14353,4565),(14358,271),(14358,10073),(14358,10104),(14358,10106),(14358,161155),(14358,187056),(14359,739),(14359,5202),(14359,6563),(14359,9989),(14359,10756),(14359,12990),(14359,14576),(14359,18453),(14359,18454),(14359,18455),(14359,208992),(14369,554),(14369,567),(14369,890),(14369,1262),(14369,3282),(14369,3522),(14369,3800),(14369,5905),(14369,6075),(14369,9864),(14369,9880),(14369,10556),(14369,11485),(14369,11830),(14369,162328),(14392,782),(14392,1402),(14392,3996),(14392,5301),(14392,187251),(14395,596),(14395,34094),(14405,3445),(14405,158401),(14405,158402),(14405,158418),(14405,179431),(14411,3071),(14411,7994),(14425,6732),(14425,171691),(14425,171692),(14425,171695),(14425,171698),(14425,171703),(14425,171704),(14429,6270),(14429,10266),(14429,163933),(14435,798),(14435,4781),(14435,6262),(14435,6350),(14435,9714),(14435,10089),(14435,11221),(14435,179430),(14435,209714),(14438,494),(14438,657),(14438,2733),(14438,5950),(14438,5999),(14438,6038),(14438,6150),(14438,10060),(14438,10061),(14438,10062),(14438,11612),(14442,603),(14442,818),(14442,2343),(14442,2710),(14442,3071),(14442,3205),(14442,11017),(14442,170362),(14442,189099),(14442,189111),(14442,198780),(14442,208705),(14442,231403),(14444,380),(14444,1009),(14444,1526),(14444,3725),(14444,9663),(14444,9963),(14444,10267),(14444,13149),(14444,179430),(14451,1191),(14451,10327),(14451,12377),(14451,161178),(14462,2944),(14462,2952),(14462,4707),(14462,8651),(14462,10410),(14462,33482),(14462,33483),(14462,46955),(14474,572),(14474,596),(14474,894),(14474,1326),(14474,2334),(14474,2483),(14474,3201),(14474,6044),(14474,7984),(14474,8616),(14474,9673),(14474,10768),(14474,14794),(14474,14964),(14474,40952),(14474,208433),(14517,855),(14517,1566),(14517,2486),(14536,1360),(14536,1415),(14536,3681),(14536,3704),(14536,4459),(14536,9673),(14536,11004),(14536,33585),(14536,163919),(14536,188606),(14536,188607),(14536,188608),(14538,3389),(14538,9791),(14557,3616),(14557,14964),(14557,171400),(14557,171401),(14557,171411),(14557,171416),(14560,41180),(14560,179431),(14574,1628),(14574,1631),(14574,1956),(14574,2451),(14574,2652),(14574,3207),(14578,236),(14578,572),(14578,738),(14578,3616),(14578,6149),(14578,8039),(14578,8508),(14578,9673),(14578,9748),(14578,9864),(14578,10183),(14578,12105),(14578,13130),(14578,14964),(14578,33740),(14578,187844),(14578,207819),(14582,428),(14582,14643),(14582,15240),(14582,159909),(14582,188759),(14585,1438),(14585,9673),(14585,10183),(14585,11677),(14585,165288),(14608,8029),(14608,10183),(14623,3271),(14623,10988),(14623,12393),(14623,33725),(14623,176253),(14623,188178),(14623,188179),(14623,207560),(14624,1158),(14624,10183),(14624,10329),(14624,156479),(14629,187056),(14635,494),(14635,1480),(14635,1483),(14635,6075),(14635,7393),(14635,9825),(14655,179431),(14662,572),(14662,10183),(14662,18253),(14662,163047),(14662,187056),(14662,208974),(14662,208975),(14709,579),(14709,1415),(14709,1556),(14709,2920),(14709,6075),(14709,8508),(14709,8635),(14709,33352),(14709,155169),(14709,191222),(14729,380),(14729,9910),(14729,222784),(14736,4663),(14736,5608),(14736,6075),(14736,6496),(14736,8635),(14736,14534),(14736,187056),(14757,10183),(14758,738),(14758,1253),(14758,9789),(14758,10183),(14758,14534),(14758,187056),(14778,818),(14778,1543),(14778,3230),(14778,4959),(14778,6054),(14778,9713),(14778,9872),(14778,10183),(14778,10915),(14778,10937),(14778,34079),(14778,157499),(14778,160846),(14778,187844),(14778,208542),(14778,217405),(14811,941),(14811,1566),(14811,4344),(14811,7329),(14811,10707),(14811,11687),(14811,11701),(14811,11703),(14811,11704),(14811,11705),(14811,11706),(14811,11707),(14811,11709),(14811,164460),(14823,9937),(14836,1566),(14836,4484),(14836,10668),(14836,33465),(14836,33466),(14836,33467),(14836,33468),(14836,179430),(14836,179431),(14844,110),(14844,220),(14844,840),(14844,1568),(14844,3530),(14844,9799),(14844,9935),(14844,170682),(14844,206298),(14844,208633),(14844,218182),(14846,4812),(14849,236),(14849,314),(14849,732),(14849,6155),(14854,779),(14854,780),(14854,1556),(14854,1812),(14854,2564),(14854,5901),(14854,6110),(14854,10176),(14854,14964),(14854,15300),(14854,159803),(14869,949),(14869,1328),(14869,1562),(14869,1576),(14869,3467),(14869,6086),(14869,8570),(14869,9748),(14869,9826),(14869,10563),(14869,14601),(14869,14760),(14869,155551),(14869,156075),(14869,191574),(14873,1261),(14873,4344),(14873,4809),(14873,5331),(14873,5650),(14873,9663),(14873,10468),(14873,10787),(14873,13014),(14873,18155),(14873,44450),(14873,44451),(14873,44452),(14873,44453),(14902,279),(14902,1705),(14902,4344),(14914,5565),(14976,5923),(14976,10183),(14976,39833),(15005,818),(15005,1241),(15005,2011),(15005,10345),(15013,596),(15013,879),(15013,3644),(15013,7464),(15013,15160),(15017,6593),(15017,9713),(15017,12392),(15028,3667),(15028,3800),(15028,14751),(15028,158389),(15037,567),(15037,802),(15037,1013),(15037,2135),(15037,2920),(15037,3452),(15037,3616),(15037,3687),(15037,4044),(15037,4328),(15037,5801),(15037,6270),(15037,8508),(15037,9713),(15037,13043),(15037,14602),(15037,18001),(15037,33922),(15037,155791),(15037,164500),(15037,164615),(15037,167982),(15037,171556),(15037,187056),(15037,197083),(15037,197084),(15037,197088),(15049,1329),(15049,6149),(15049,9826),(15049,15127),(15049,167316),(15067,75),(15067,1419),(15070,6075),(15074,195732),(15092,293),(15092,549),(15092,643),(15092,2860),(15092,3688),(15092,5157),(15092,7671),(15092,9663),(15092,10217),(15092,10726),(15092,10950),(15092,11512),(15092,11732),(15092,12545),(15092,13040),(15092,14967),(15092,157959),(15092,160868),(15092,179431),(15092,187844),(15092,214655),(15092,226738),(15121,836),(15121,1201),(15121,1956),(15121,4344),(15121,6383),(15121,7954),(15121,10181),(15121,11020),(15121,160175),(15121,165468),(15121,165470),(15121,165485),(15121,165492),(15121,165493),(15121,165495),(15121,189422),(15121,214548),(15122,9817),(15122,14791),(15122,171757),(15122,171758),(15158,7939),(15158,12434),(15158,156075),(15158,162333),(15158,162334),(15186,10183),(15189,2393),(15189,8841),(15189,12341),(15189,13014),(15189,158394),(15189,158395),(15189,158415),(15189,179431),(15198,6075),(15198,6483),(15208,572),(15208,3754),(15208,9886),(15237,4344),(15237,5565),(15237,12396),(15237,163110),(15239,417),(15239,1919),(15239,2095),(15239,4426),(15239,9794),(15239,11427),(15239,15000),(15239,15059),(15239,155861),(15239,157669),(15239,157675),(15239,157676),(15239,157677),(15239,157681),(15239,157686),(15239,157688),(15250,8029),(15250,18035),(15250,33694),(15250,156195),(15256,613),(15256,10183),(15256,14534),(15256,187056),(15256,199856),(15268,779),(15268,9748),(15268,10076),(15268,41645),(15301,2652),(15301,9706),(15301,9714),(15301,190326),(15373,1890),(15373,2333),(15373,8202),(15373,9713),(15373,9907),(15373,161155),(15373,179431),(15389,213),(15389,242),(15389,10183),(15389,191790),(15389,206298),(15394,293),(15394,395),(15394,585),(15394,2483),(15394,3515),(15394,4227),(15394,4373),(15394,8653),(15394,9672),(15394,10530),(15394,10594),(15394,14570),(15394,18420),(15394,155841),(15394,214810),(15487,6075),(15511,380),(15511,1562),(15511,6401),(15511,10103),(15511,12988),(15511,13084),(15511,40950),(15511,179430),(15511,179431),(15512,9951),(15512,10891),(15512,179431),(15556,33768),(15556,209022),(15581,6075),(15582,12564),(15582,13130),(15624,811),(15624,814),(15624,3584),(15624,11327),(15624,13027),(15624,41354),(15639,196171),(15639,196172),(15644,10183),(15647,2606),(15647,10181),(15647,10183),(15647,10198),(15647,10768),(15647,154937),(15647,178316),(15648,456),(15648,5756),(15648,9457),(15648,10132),(15648,14768),(15648,219849),(15655,3905),(15655,4144),(15655,4809),(15655,8082),(15655,10468),(15655,15199),(15655,187056),(15660,3598),(15660,5565),(15660,9740),(15660,10909),(15660,12545),(15660,15061),(15660,168196),(15660,185927),(15670,15009),(15673,237),(15673,824),(15673,10325),(15699,4781),(15699,5657),(15699,6564),(15699,7942),(15699,10183),(15708,237),(15708,1862),(15708,11001),(15708,156166),(15765,156306),(15765,164409),(15765,164414),(15765,164431),(15765,164443),(15765,164866),(15800,1740),(15800,9818),(15800,10073),(15800,10568),(15800,161176),(15800,208663),(15800,220266),(15875,1421),(15875,6231),(15875,10093),(15875,180800),(15875,180803),(15875,188934),(15875,207317),(15875,207592),(15875,210018),(15875,222195),(15875,234849),(15907,704),(15907,1872),(15907,2043),(15907,3644),(15907,6733),(15907,9963),(15907,10084),(15907,10624),(15907,11336),(15907,11337),(15907,11338),(15927,13005),(15927,14636),(15927,14744),(15927,188719),(15927,207876),(15927,231027),(15976,237),(15992,567),(15992,703),(15992,733),(15992,3030),(15992,3616),(15992,8438),(15992,8508),(15992,9309),(15992,9937),(15992,14964),(15992,156478),(15992,158763),(15992,201885),(16005,6054),(16005,6091),(16005,7312),(16005,10183),(16005,13065),(16028,236),(16028,2884),(16028,3030),(16028,3762),(16028,6152),(16028,9937),(16052,4344),(16052,164447),(16052,164460),(16052,164468),(16052,164476),(16072,6091),(16072,14643),(16072,160201),(16072,166464),(16072,179585),(16072,185728),(16148,703),(16148,1936),(16148,10183),(16155,642),(16155,10291),(16155,13142),(16155,159339),(16155,209053),(16161,641),(16161,3010),(16161,4313),(16161,5419),(16161,5572),(16161,6669),(16161,9094),(16161,9727),(16161,11925),(16161,12371),(16161,12670),(16161,155794),(16161,156121),(16161,162219),(16161,162224),(16161,162225),(16161,162236),(16161,234469),(16172,1946),(16172,2081),(16172,3914),(16172,9673),(16172,9970),(16172,18293),(16172,209102),(16205,1890),(16205,5569),(16205,15001),(16205,156810),(16232,1480),(16232,6075),(16241,7904),(16241,10249),(16241,161255),(16241,161256),(16281,1299),(16281,3335),(16281,5404),(16281,7172),(16281,7325),(16281,9706),(16281,9717),(16281,10292),(16281,11321),(16281,12377),(16281,157351),(16288,1889),(16288,9706),(16288,9748),(16288,9826),(16288,10154),(16288,10292),(16288,11546),(16288,12377),(16288,163173),(16288,214544),(16290,4424),(16290,5452),(16290,5956),(16290,6241),(16290,10267),(16290,179431),(16290,209714),(16320,779),(16320,1475),(16320,4565),(16320,9831),(16320,10718),(16320,10988),(16320,13194),(16320,14698),(16320,14895),(16320,14896),(16320,162370),(16320,162380),(16320,178902),(16323,14964),(16323,18001),(16323,160765),(16337,9366),(16337,10292),(16337,12339),(16337,12394),(16337,193575),(16340,90),(16340,3338),(16351,434),(16351,5733),(16353,9663),(16358,6625),(16358,10041),(16358,10183),(16358,146946),(16358,155294),(16358,204904),(16363,1411),(16363,1457),(16363,2901),(16363,4344),(16363,5744),(16363,13424),(16363,33613),(16363,155273),(16363,156187),(16363,158375),(16363,163440),(16363,165340),(16363,165347),(16388,9673),(16388,10183),(16388,12392),(16388,188993),(16388,208725),(16406,9376),(16406,156072),(16406,192099),(16428,160815),(16433,1228),(16433,2570),(16433,3713),(16433,4048),(16433,10183),(16441,9725),(16441,18165),(16448,5900),(16448,10183),(16448,10260),(16448,11524),(16448,11800),(16448,14529),(16448,157409),(16448,160510),(16448,160511),(16448,160512),(16448,160515),(16448,160517),(16448,160518),(16448,160522),(16448,160528),(16448,160529),(16448,160530),(16508,917),(16508,1691),(16508,5779),(16508,6054),(16508,6305),(16508,6513),(16508,9791),(16508,9963),(16508,9988),(16523,170173),(16523,170667),(16523,170669),(16523,170677),(16523,170678),(16523,170682),(16523,170688),(16523,170703),(16523,207597),(16538,383),(16538,910),(16538,179431),(16558,470),(16564,1199),(16564,1956),(16577,9715),(16608,2125),(16608,5657),(16608,6259),(16608,9503),(16608,9622),(16608,10726),(16608,10950),(16608,13125),(16608,14707),(16608,14819),(16608,161231),(16608,162388),(16608,170314),(16608,170335),(16608,187355),(16608,209619),(16608,238128),(16614,10267),(16614,11509),(16614,155582),(16614,163963),(16614,163964),(16614,163968),(16614,163969),(16614,163972),(16614,163975),(16614,163976),(16614,163982),(16614,163984),(16614,163985),(16614,163991),(16614,163994),(16614,163997),(16614,163998),(16614,164000),(16614,179431),(16614,206298),(16614,208289),(16617,1812),(16617,2041),(16617,10714),(16617,14676),(16619,447),(16619,894),(16619,1252),(16619,9872),(16619,10041),(16619,33720),(16619,159138),(16619,172291),(16620,4344),(16620,34079),(16620,164245),(16620,164246),(16620,164253),(16620,164255),(16620,164263),(16633,4379),(16633,10965),(16633,210184),(16642,128),(16642,520),(16642,1157),(16642,1556),(16642,4511),(16642,4932),(16642,6038),(16642,9673),(16642,12987),(16642,14514),(16642,154846),(16642,178977),(16642,188987),(16642,190061),(16651,818),(16651,5565),(16690,10336),(16727,958),(16727,10183),(16727,187056),(16769,727),(16769,5248),(16769,5565),(16769,164717),(16769,164724),(16769,164730),(16769,164731),(16769,164734),(16769,164736),(16769,164738),(16769,164742),(16769,164745),(16781,9888),(16781,10181),(16857,10183),(16858,837),(16858,886),(16858,4345),(16858,9732),(16858,15160),(16858,18298),(16858,33731),(16858,156028),(16858,156507),(16858,157959),(16858,160840),(16858,165399),(16858,165402),(16858,165407),(16858,165419),(16858,165420),(16858,165423),(16866,3243),(16866,4862),(16866,9831),(16866,9951),(16866,10158),(16866,13194),(16866,179431),(16869,90),(16869,1008),(16869,1388),(16869,1430),(16869,1560),(16869,1666),(16869,1956),(16869,2433),(16869,2606),(16869,2652),(16869,3260),(16869,4426),(16869,5470),(16869,6538),(16869,9851),(16869,10144),(16869,10292),(16869,11105),(16869,11249),(16869,13519),(16869,14819),(16869,163656),(16871,394),(16871,3640),(16871,10292),(16871,10541),(16871,11268),(16871,14742),(16871,156075),(16871,166539),(16871,172417),(16871,172418),(16871,233065),(16888,293),(16888,331),(16888,2135),(16888,10337),(16888,192789),(16911,818),(16911,1155),(16911,9725),(16911,9831),(16911,10128),(16911,12400),(16911,12401),(16911,12403),(16911,12404),(16911,12405),(16911,12406),(16911,12407),(16911,12408),(16988,577),(16988,1578),(16988,1691),(16988,10043),(16991,642),(16991,10048),(16991,41180),(16991,157690),(16995,417),(16995,441),(16995,703),(16995,736),(16995,782),(16995,918),(16995,1705),(16995,4222),(16995,5514),(16995,6078),(16995,6085),(16995,6086),(16995,9826),(16995,9950),(16995,10851),(16995,12193),(16996,6270),(16996,6733),(16996,8635),(16996,167808),(16996,198929),(16996,223202),(17043,3185),(17047,212),(17047,591),(17047,188178),(17047,213102),(17047,214596),(17113,293),(17113,708),(17113,2412),(17113,5698),(17113,10183),(17113,11363),(17113,33841),(17113,40895),(17113,156388),(17113,156389),(17113,156390),(17113,156391),(17113,156392),(17113,187056),(17127,4513),(17127,9673),(17127,13072),(17127,184935),(17130,246),(17130,515),(17130,572),(17130,1005),(17130,1566),(17130,2032),(17130,2389),(17130,2669),(17130,3687),(17130,5091),(17130,6054),(17130,6270),(17130,7312),(17130,11511),(17130,11612),(17130,12990),(17130,13130),(17130,14659),(17130,15161),(17130,15291),(17130,15300),(17130,33455),(17130,33922),(17130,33928),(17130,173186),(17130,181109),(17130,184355),(17130,187056),(17130,189092),(17130,191428),(17134,6149),(17134,8233),(17134,15076),(17134,18035),(17134,210347),(17139,3683),(17170,4620),(17170,13028),(17170,14964),(17170,167198),(17182,570),(17182,1419),(17182,2801),(17182,204959),(17186,6075),(17264,383),(17264,2673),(17264,3875),(17264,4613),(17264,6075),(17264,10084),(17264,10349),(17264,155746),(17264,180230),(17277,1405),(17277,5049),(17287,4344),(17287,12377),(17332,918),(17332,3536),(17332,4344),(17332,4721),(17332,12670),(17334,958),(17334,7934),(17334,9799),(17339,1419),(17339,2052),(17339,2652),(17339,3450),(17339,9052),(17339,10786),(17339,11221),(17339,11400),(17339,14643),(17339,15182),(17339,15184),(17339,15186),(17339,223009),(17345,186),(17345,494),(17345,2495),(17345,2854),(17345,3065),(17345,10060),(17345,10063),(17403,187056),(17431,305),(17431,310),(17431,402),(17431,1533),(17431,2964),(17431,4565),(17431,9882),(17431,11628),(17431,12185),(17436,572),(17436,9914),(17436,12396),(17436,14964),(17436,156277),(17436,159753),(17436,166109),(17436,208289),(17436,208344),(17436,235424),(17577,187820),(17577,187821),(17577,187824),(17577,187826),(17577,187828),(17577,187844),(17577,191316),(17578,483),(17578,1316),(17578,1454),(17578,3423),(17578,6956),(17578,10733),(17578,11121),(17578,12193),(17578,209714),(17578,210313),(17610,1530),(17610,2831),(17610,4428),(17610,7540),(17610,10406),(17610,159955),(17610,178645),(17610,179431),(17610,183414),(17610,192918),(17622,14552),(17622,176516),(17622,186355),(17622,187056),(17654,100),(17654,542),(17654,2766),(17654,3644),(17654,4339),(17654,4565),(17654,6017),(17654,6086),(17654,8201),(17654,9951),(17654,10650),(17654,11800),(17654,12026),(17654,12425),(17654,158276),(17654,160910),(17654,195139),(17654,229740),(17654,231277),(17654,233016),(17663,818),(17663,1155),(17663,1329),(17663,5331),(17663,9673),(17663,10873),(17663,11162),(17663,12392),(17663,13014),(17663,15126),(17663,161155),(17663,214484),(17707,65),(17707,378),(17707,3434),(17707,14964),(17707,163119),(17709,10244),(17709,190760),(17711,4414),(17711,6513),(17711,10267),(17711,11687),(17711,15067),(17711,167043),(17711,196726),(17734,10183),(17734,187056),(17768,2389),(17768,5049),(17768,6089),(17768,10449),(17768,14906),(17768,158375),(17768,197643),(17795,833),(17795,840),(17795,3635),(17795,15017),(17795,169028),(17795,169046),(17813,395),(17813,572),(17813,585),(17813,818),(17813,2016),(17813,2251),(17813,5091),(17813,9673),(17813,10941),(17813,13028),(17813,34079),(17813,208223),(17820,4344),(17820,5987),(17820,10131),(17820,163976),(17820,165870),(17820,165871),(17820,165872),(17820,165875),(17834,2343),(17834,4896),(17834,161155),(17834,208705),(17908,787),(17908,3321),(17908,15162),(17917,3430),(17917,4344),(17917,8250),(17917,13014),(17926,10183),(17926,10228),(17926,10229),(17926,12670),(17979,65),(17979,818),(17979,8250),(17979,10594),(17979,33965),(17979,33966),(17979,161174),(17979,162846),(17979,170457),(17979,180975),(17979,207317),(17994,3598),(17994,9712),(17994,9815),(17994,10111),(17994,10112),(17994,10114),(18041,3616),(18041,9937),(18041,18453),(18041,189868),(18041,222173),(18045,1329),(18045,1442),(18045,1562),(18045,2070),(18045,3623),(18045,6259),(18045,9866),(18045,9887),(18045,9937),(18045,10794),(18045,11221),(18045,15106),(18045,18249),(18045,18409),(18045,157758),(18065,179431),(18074,4344),(18079,612),(18079,3202),(18079,4698),(18079,6149),(18079,9104),(18079,10594),(18079,11454),(18079,159607),(18079,168152),(18079,180250),(18079,207538),(18126,848),(18126,3490),(18126,4344),(18126,6335),(18126,10809),(18126,11870),(18126,13130),(18126,155808),(18126,189388),(18147,65),(18162,4862),(18162,12616),(18162,177280),(18162,179431),(18191,242),(18191,366),(18191,549),(18191,572),(18191,663),(18191,1449),(18191,9826),(18191,10360),(18191,12425),(18191,14819),(18191,163949),(18191,220448),(18206,1523),(18206,3979),(18206,6844),(18206,10183),(18206,10878),(18206,178649),(18238,293),(18238,8087),(18238,10123),(18238,15136),(18238,174878),(18239,305),(18239,1388),(18239,3133),(18239,12564),(18239,231407),(18240,1907),(18240,2428),(18240,3014),(18240,9799),(18240,9880),(18240,11960),(18240,14522),(18240,33740),(18240,33775),(18240,156760),(18240,179431),(18240,187056),(18240,215200),(18254,736),(18254,3460),(18276,3905),(18276,13130),(18276,216921),(18276,223438),(18292,10183),(18320,4833),(18320,5565),(18320,9920),(18320,15060),(18320,194470),(18320,204071),(18320,207928),(18320,220649),(18357,2526),(18357,4344),(18357,4507),(18357,10468),(18357,11514),(18357,179430),(18357,179431),(18360,2598),(18360,5648),(18360,179431),(18360,194476),(18360,209642),(18405,570),(18405,3189),(18405,9748),(18405,9826),(18405,10041),(18405,11827),(18405,18035),(18475,10267),(18480,237),(18480,10232),(18480,11800),(18480,12396),(18480,158718),(18480,179431),(18487,1562),(18487,14512),(18487,155735),(18487,177489),(18487,177493),(18487,177501),(18487,177502),(18487,179430),(18501,4565),(18501,9678),(18501,10176),(18501,12662),(18501,162988),(18501,171989),(18501,192210),(18516,1739),(18516,2652),(18516,3038),(18530,9937),(18533,378),(18533,1533),(18550,2157),(18550,4654),(18550,10391),(18550,10717),(18550,10718),(18550,208592),(18570,15178),(18570,40841),(18570,40842),(18570,40844),(18570,41000),(18570,41002),(18602,10183),(18602,187056),(18615,1003),(18615,5565),(18615,12096),(18615,12564),(18615,201294),(18615,207673),(18616,798),(18616,1621),(18616,9786),(18616,10292),(18616,10714),(18616,11187),(18616,18034),(18616,18320),(18616,34079),(18616,160868),(18616,164162),(18616,169658),(18616,187844),(18632,10183),(18681,9767),(18681,10714),(18681,41249),(18681,164092),(18712,11400),(18712,161244),(18713,242),(18713,2601),(18713,13142),(18734,10183),(18785,3508),(18785,4809),(18785,8070),(18785,11461),(18785,11462),(18785,11464),(18785,11465),(18785,11467),(18785,11469),(18785,14570),(18785,179431),(18785,188960),(18808,167043),(18823,2033),(18823,2035),(18823,2036),(18823,8985),(18823,10863),(18823,11624),(18823,33696),(18823,161170),(18823,161171),(18823,161172),(18823,162861),(18823,162862),(18823,209714),(18828,534),(18828,591),(18828,1812),(18828,13008),(18841,1299),(18841,1852),(18841,4062),(18841,4862),(18841,156810),(18869,6149),(18869,9748),(18869,10183),(18869,10561),(18869,10562),(18885,240),(18885,1701),(18885,6054),(18885,6956),(18885,9713),(18885,9748),(18885,9823),(18885,10842),(18885,14751),(18885,15017),(18885,187710),(18885,193545),(18885,193546),(18885,193551),(18885,193552),(18885,206691),(18885,206694),(18885,206695),(18885,206696),(18886,2532),(18886,2957),(18886,4410),(18886,10168),(18886,18543),(18886,33702),(18892,718),(18892,931),(18892,3030),(18892,3734),(18892,4044),(18892,6270),(18892,7289),(18892,9748),(18892,10266),(18892,10877),(18892,13043),(18892,15479),(18892,18001),(18892,18020),(18892,18512),(18892,33507),(18892,33922),(18892,34130),(18892,162875),(18892,170418),(18892,171556),(18892,188947),(18892,196645),(18892,197077),(18892,197092),(18892,197094),(18892,197106),(18892,197107),(18900,9826),(18900,33722),(18900,154846),(18923,237),(18923,740),(18923,818),(18923,11130),(18923,46959),(18923,154937),(18923,158718),(18925,5950),(18925,6075),(18925,179430),(18947,1025),(18947,4344),(18947,5288),(18947,8030),(18947,155762),(18975,131),(18975,494),(18975,3244),(18975,9673),(18975,10873),(18975,14536),(18975,197084),(18975,207840),(18975,216919),(19153,10183),(19187,10183),(19204,612),(19204,1706),(19204,6154),(19204,10292),(19204,10326),(19204,10327),(19204,11221),(19204,12377),(19204,14819),(19204,15032),(19204,33505),(19204,157512),(19204,162846),(19204,164092),(19204,189921),(19204,208580),(19204,210162),(19204,210163),(19204,215305),(19255,10131),(19255,168468),(19255,168469),(19255,168471),(19255,168472),(19255,168477),(19255,168479),(19255,168481),(19255,168482),(19255,168483),(19255,168485),(19255,168486),(19255,168490),(19255,168491),(19265,699),(19265,708),(19265,965),(19265,2487),(19265,5950),(19265,6038),(19265,8778),(19265,9622),(19265,10483),(19265,11001),(19265,13043),(19265,14512),(19265,14669),(19265,172240),(19316,9833),(19316,158718),(19316,187056),(19344,3183),(19344,5657),(19344,7375),(19344,9713),(19344,9941),(19344,10508),(19344,10768),(19344,158718),(19344,187056),(19366,554),(19366,637),(19366,1328),(19366,1415),(19366,2101),(19366,4048),(19366,6027),(19366,6054),(19366,6133),(19366,10232),(19366,10410),(19366,15175),(19366,18001),(19366,162710),(19366,187056),(19366,200907),(19366,208223),(19366,208461),(19366,208462),(19366,208463),(19405,65),(19405,8102),(19405,9713),(19405,10988),(19405,13088),(19405,210295),(19405,224534),(19457,417),(19457,1552),(19457,12347),(19457,15009),(19556,572),(19556,2201),(19556,2389),(19556,7312),(19556,9639),(19556,179431),(19585,156904),(19585,179431),(19644,378),(19644,2041),(19644,10586),(19803,6149),(19803,6270),(19803,11199),(19840,2389),(19840,2920),(19840,3687),(19840,6270),(19840,8046),(19840,9713),(19840,11524),(19840,13130),(19840,15402),(19840,223438),(19840,233617),(19844,10199),(19848,3688),(19848,6593),(19848,7089),(19848,156854),(19898,4565),(19898,9831),(19898,10349),(19898,10364),(19899,2041),(19899,2587),(19899,5828),(19899,6611),(19899,8728),(19899,9767),(19899,18480),(19899,179430),(19899,179431),(19899,215533),(19899,215534),(19901,293),(19901,813),(19901,828),(19901,1706),(19901,2217),(19901,2725),(19901,3133),(19901,4565),(19901,9767),(19901,9855),(19901,10327),(19901,11181),(19901,14760),(19901,17995),(19901,233706),(19904,6669),(19904,9714),(19905,179431),(19908,521),(19908,1156),(19908,4458),(19908,7312),(19908,8636),(19908,9755),(19908,10349),(19908,12377),(19908,14819),(19908,50009),(19908,155582),(19908,167068),(19908,167081),(19908,167085),(19908,167095),(19908,167103),(19908,167104),(19908,179430),(19908,186565),(19908,235354),(19912,830),(19912,3737),(19912,4812),(19912,6315),(19912,9844),(19912,10170),(19912,10292),(19912,10629),(19913,248),(19913,572),(19913,931),(19913,1721),(19913,2301),(19913,2861),(19913,4434),(19913,5923),(19913,8508),(19913,9673),(19913,9713),(19913,10855),(19913,12670),(19913,13088),(19913,180509),(19913,201689),(19913,201696),(19933,9825),(19933,10683),(19933,44451),(19933,189092),(19933,209386),(19933,209387),(19933,217084),(19959,402),(19959,4565),(19994,3302),(19994,6270),(19994,7098),(19994,8087),(19994,10292),(19994,11798),(19994,15001),(19994,161173),(19994,166625),(19994,179431),(19994,187056),(19995,1463),(19995,2964),(19995,3386),(19995,3388),(19995,3679),(19995,3801),(19995,9685),(19995,9840),(19995,9882),(19995,9951),(19995,10148),(19995,10158),(19995,10987),(19995,11399),(19995,13065),(19995,14643),(19995,14720),(19995,165431),(19995,193554),(19995,206690),(19995,209714),(19997,389),(19997,1326),(19997,2801),(19997,5739),(19997,6662),(19997,9826),(19997,10326),(19997,10424),(19997,13073),(19997,15290),(19997,155440),(19997,167942),(19997,175316),(19997,195402),(19997,234197),(20009,255),(20009,726),(20009,3489),(20009,3878),(20009,6201),(20009,10267),(20009,11173),(20009,11501),(20009,160192),(20009,171715),(20009,171729),(20024,258),(20024,572),(20024,931),(20024,1326),(20024,1523),(20024,1956),(20024,2983),(20024,9840),(20024,11501),(20024,14765),(20055,1930),(20055,4087),(20055,9826),(20055,14604),(20055,14782),(20055,15009),(20055,157892),(20055,176182),(20055,187844),(20065,10183),(20083,12422),(20083,12424),(20083,12426),(20083,12427),(20083,12428),(20156,1328),(20156,2334),(20156,2589),(20156,10183),(20156,156455),(20178,255),(20178,496),(20178,704),(20178,2251),(20178,2483),(20178,4951),(20178,6270),(20178,10183),(20178,10508),(20178,11724),(20178,12105),(20322,10183),(20322,187901),(20322,187903),(20337,1850),(20337,3692),(20337,9825),(20337,15160),(20352,4130),(20352,6783),(20352,7393),(20352,9823),(20352,10261),(20352,10551),(20352,12663),(20352,13014),(20352,15300),(20352,156928),(20352,157499),(20352,160097),(20352,161155),(20352,179095),(20352,179431),(20352,190999),(20352,194404),(20352,209714),(20352,219832),(20352,235459),(20391,6015),(20391,162726),(20455,282),(20455,1299),(20455,5019),(20455,5698),(20455,6104),(20455,10842),(20455,11615),(20455,41645),(20455,160189),(20455,178853),(20455,191219),(20455,210024),(20468,928),(20468,197361),(20483,15363),(20504,3096),(20504,4458),(20504,4565),(20504,6150),(20504,33768),(20526,310),(20526,1308),(20526,4286),(20526,4565),(20526,6104),(20526,9758),(20526,12965),(20526,14735),(20526,185351),(20526,236778),(20533,75),(20533,279),(20533,849),(20533,6154),(20533,15518),(20533,34079),(20533,163188),(20533,175261),(20616,271),(20616,732),(20616,1326),(20616,1523),(20616,2069),(20616,6270),(20616,9016),(20616,10456),(20616,11612),(20616,11827),(20616,15058),(20616,156316),(20662,4147),(20662,4393),(20662,10466),(20662,11525),(20662,18101),(20662,41406),(20662,161257),(20662,186686),(20694,9963),(20697,5970),(20697,6075),(20737,3199),(20737,158386),(20737,158387),(20761,6075),(20763,6669),(20763,155794),(20763,207691),(20764,4563),(20764,4565),(20764,4690),(20764,6104),(20764,9957),(20764,10489),(20764,10508),(20766,4458),(20766,4565),(20766,4954),(20766,179431),(20770,1862),(20770,2920),(20770,10180),(20770,10183),(20770,10768),(20770,34215),(20770,187056),(20794,9826),(20794,10183),(20794,14964),(20794,33780),(20829,3485),(20829,10163),(20829,12648),(20829,33731),(20856,9951),(20856,10267),(20856,179431),(20856,179435),(20856,209220),(20857,237),(20943,9799),(20943,9840),(20943,13384),(20943,14534),(20943,165301),(20981,1523),(20981,3030),(20981,5585),(20981,6158),(20981,10308),(20981,173386),(20981,220084),(21014,3903),(21014,8508),(21014,10183),(21074,2692),(21074,10183),(21074,156053),(21074,161304),(21074,187056),(21208,745),(21208,1635),(21208,13014),(21208,155591),(21208,166490),(21208,179430),(21208,179431),(21301,10601),(21309,572),(21309,6149),(21309,9713),(21309,9826),(21311,409),(21334,1155),(21334,6069),(21334,161837),(21338,1568),(21338,1812),(21338,6951),(21338,8015),(21338,14736),(21345,1327),(21345,1583),(21345,4853),(21345,10535),(21345,14546),(21345,170007),(21345,179431),(21345,188727),(21349,1566),(21355,246),(21355,316),(21355,1563),(21355,1909),(21355,2325),(21355,2752),(21355,3800),(21355,9849),(21355,9890),(21355,9897),(21355,13092),(21355,156795),(21355,156796),(21413,2486),(21413,4986),(21413,5923),(21413,6270),(21413,10141),(21413,10624),(21413,13130),(21413,158470),(21413,164296),(21461,6165),(21461,10267),(21461,10540),(21461,14636),(21494,10965),(21512,779),(21512,4458),(21512,6075),(21512,9748),(21512,10183),(21512,11221),(21512,14819),(21512,18034),(21512,18543),(21525,897),(21525,898),(21525,34136),(21525,187056),(21612,236),(21612,3303),(21612,4112),(21612,5571),(21612,6346),(21612,9826),(21612,10391),(21612,13092),(21612,14512),(21612,14819),(21612,14831),(21612,41410),(21612,214548),(21641,392),(21641,5858),(21641,6075),(21641,11343),(21641,13042),(21641,166096),(21641,187264),(21641,187265),(21641,192345),(21724,897),(21724,898),(21755,3202),(21755,203139),(21972,622),(21972,952),(21972,1483),(21972,6075),(21972,6496),(21972,6733),(21972,6783),(21972,13130),(22013,178870),(22013,186353),(22051,170173),(22051,181318),(22051,181319),(22051,192134),(22074,279),(22074,592),(22074,2110),(22074,5636),(22074,6050),(22074,6126),(22074,10594),(22074,14737),(22074,188950),(22102,3593),(22102,10049),(22256,795),(22256,2070),(22256,6075),(22256,10456),(22267,393),(22267,9713),(22267,14745),(22267,14748),(22301,2504),(22301,3520),(22301,10397),(22301,10398),(22301,10399),(22301,10400),(22327,818),(22327,10683),(22327,179431),(22345,1009),(22345,6257),(22345,155644),(22345,234456),(22479,6083),(22479,11016),(22479,15134),(22479,164884),(22530,3133),(22530,3628),(22538,170335),(22538,175297),(22538,175301),(22538,175309),(22538,175314),(22538,175316),(22538,175321),(22538,175322),(22538,179430),(22556,10183),(22597,237),(22597,1253),(22597,3230),(22597,4037),(22597,9799),(22597,9833),(22597,10198),(22597,10199),(22600,1972),(22600,3882),(22600,10291),(22649,131),(22649,428),(22649,3452),(22649,3776),(22649,10093),(22649,10685),(22649,11612),(22649,12392),(22649,156764),(22649,158547),(22649,185034),(22649,185037),(22649,233360),(22787,3800),(22787,9717),(22787,13092),(22787,160128),(22794,3694),(22794,10637),(22794,156810),(22796,183886),(22798,6075),(22798,11282),(22798,179431),(22798,187056),(22803,331),(22803,352),(22803,3605),(22803,5011),(22803,14601),(22803,15108),(22803,33518),(22803,33519),(22803,193551),(22804,179430),(22805,2784),(22805,10851),(22805,187056),(22820,1731),(22820,3548),(22820,10183),(22820,12399),(22820,179430),(22820,179431),(22821,1680),(22821,3020),(22821,6054),(22821,9663),(22821,9748),(22821,14985),(22824,1155),(22824,2564),(22824,3363),(22824,5340),(22824,9665),(22824,9738),(22824,9880),(22824,10941),(22824,11612),(22824,12553),(22824,14781),(22824,157154),(22824,160517),(22824,172280),(22824,172712),(22824,172715),(22824,172717),(22824,172718),(22824,172727),(22824,172732),(22824,179431),(22825,1706),(22825,1849),(22825,2849),(22825,2858),(22825,3664),(22825,4394),(22825,4956),(22825,6149),(22825,6318),(22825,6844),(22825,9826),(22825,9951),(22825,9989),(22825,10410),(22825,10594),(22825,14760),(22825,14819),(22825,33466),(22825,156104),(22825,163190),(22832,441),(22832,782),(22832,3075),(22832,9748),(22832,10278),(22832,191750),(22881,579),(22881,2393),(22881,2470),(22881,3551),(22881,6075),(22881,155791),(22881,179431),(22894,290),(22894,10738),(22894,11001),(22894,12332),(22894,15001),(22894,18034),(22894,233004),(22897,3687),(22897,5982),(22897,187056),(22907,10051),(22908,4951),(22908,6054),(22908,14751),(22913,396),(22913,6075),(22913,9713),(22913,10587),(22947,4702),(22947,12094),(22947,12095),(22947,15291),(22947,33471),(22947,33472),(22947,179431),(22949,907),(22949,11663),(22949,12392),(22949,14522),(22949,161155),(22949,179431),(22949,226510),(22954,1485),(22954,3644),(22954,4106),(22954,5856),(22954,6075),(22954,6081),(22954,7912),(22954,8570),(22954,12425),(22954,12987),(22954,33648),(22954,179431),(22970,3623),(22970,11422),(22970,13209),(22970,182022),(22970,182026),(22970,182036),(22970,182038),(22970,206298),(22971,818),(22971,6092),(22971,9673),(22971,33564),(22972,41177),(22972,41178),(22972,41179),(23048,293),(23048,2864),(23048,4379),(23048,5455),(23048,11792),(23048,11830),(23048,11832),(23048,11833),(23048,159558),(23049,966),(23049,1200),(23049,10423),(23049,10424),(23049,10425),(23049,11612),(23069,1562),(23069,5608),(23069,10084),(23069,15162),(23069,157987),(23069,191591),(23168,818),(23168,975),(23168,1546),(23168,1680),(23168,1700),(23168,1929),(23168,2231),(23168,2778),(23168,2779),(23168,3607),(23168,8054),(23168,8627),(23168,9713),(23168,9775),(23168,10847),(23168,11148),(23168,12392),(23168,155726),(23169,242),(23169,494),(23169,172291),(23169,191100),(23169,206298),(23169,207844),(23169,209493),(23172,179431),(23330,549),(23330,960),(23330,33600),(23330,172504),(23330,187253),(23367,586),(23367,4344),(23367,10686),(23367,13130),(23367,18001),(23398,10986),(23398,10987),(23398,10988),(23398,179430),(23398,179431),(23398,187056),(23479,1480),(23479,6075),(23479,162739),(23483,853),(23483,1308),(23483,5451),(23483,9715),(23483,9826),(23483,10267),(23483,10391),(23483,13130),(23483,14819),(23483,158651),(23483,185434),(23483,186846),(23483,206298),(23483,234368),(23531,10183),(23531,10738),(23531,13043),(23531,33451),(23570,10183),(23570,10325),(23629,1411),(23629,2486),(23629,2884),(23629,3026),(23629,10685),(23629,14544),(23629,14819),(23629,18128),(23629,18677),(23629,170344),(23629,189400),(23631,2173),(23631,3014),(23631,3544),(23631,6083),(23631,6712),(23631,12404),(23631,12639),(23655,10183),(23685,33465),(23685,175884),(23685,175887),(23685,179430),(23706,4513),(23706,10483),(23706,179430),(23706,185438),(23706,185440),(23730,1299),(23730,1852),(23730,1879),(23730,6149),(23730,8636),(23730,9794),(23730,10183),(23730,10292),(23730,11181),(23730,11221),(23730,12377),(23730,14512),(23730,14895),(23730,15167),(23730,18082),(23730,41267),(23730,41412),(23730,158927),(23730,195331),(23730,232085),(23742,242),(23742,975),(23742,5600),(23742,6149),(23742,11199),(23742,11459),(23742,11460),(23742,13027),(23742,15090),(23742,179431),(23759,1405),(23759,5049),(23759,14704),(23759,14819),(23759,14905),(23759,158778),(23759,161240),(23827,10224),(23827,14742),(23827,33711),(23827,161261),(23827,163053),(23963,635),(23963,1224),(23963,1442),(23963,10349),(23963,12377),(23963,13073),(23963,14882),(23963,160025),(23963,178636),(23963,186565),(23963,190149),(23988,3335),(23988,9253),(23988,179431),(24021,3133),(24021,3687),(24021,4197),(24021,4978),(24021,12564),(24021,231407),(24055,171993),(24066,1415),(24066,1556),(24066,3202),(24066,4373),(24066,10183),(24066,10325),(24066,11524),(24066,11860),(24066,12414),(24066,155751),(24066,169977),(24066,184426),(24066,191583),(24066,194022),(24066,221945),(24066,231630),(24066,236055),(24100,818),(24100,3133),(24100,4197),(24100,10183),(24100,231407),(24113,2301),(24113,3457),(24113,9713),(24113,190816),(24126,12654),(24126,157667),(24150,428),(24150,1366),(24150,2483),(24150,2726),(24150,3096),(24150,3335),(24150,3875),(24150,4959),(24150,6255),(24150,9791),(24150,10022),(24150,10448),(24150,11612),(24150,11855),(24150,11856),(24150,11857),(24150,11858),(24150,13112),(24150,14819),(24150,173293),(24150,179431),(24150,179565),(24150,232819),(24226,1680),(24226,6148),(24226,10498),(24226,33457),(24226,33519),(24226,155873),(24227,6149),(24227,181508),(24227,193309),(24227,208008),(24264,409),(24264,3070),(24264,4414),(24264,160137),(24264,209893),(24266,802),(24266,1261),(24266,2673),(24266,2752),(24266,5657),(24266,155343),(24266,155344),(24266,155346),(24266,155347),(24266,155349),(24356,736),(24356,4344),(24356,6029),(24356,10183),(24363,2796),(24363,6054),(24418,3133),(24418,3986),(24418,11155),(24418,11156),(24418,12392),(24418,162344),(24418,223438),(24420,520),(24420,572),(24420,818),(24420,2483),(24420,2913),(24420,2964),(24420,3667),(24420,4379),(24420,6038),(24420,9673),(24420,9840),(24420,9935),(24420,10703),(24420,14534),(24420,176056),(24420,201484),(24428,242),(24428,5539),(24428,8828),(24428,9715),(24428,9717),(24428,14909),(24428,155030),(24428,179430),(24428,179431),(24428,180547),(24438,4009),(24438,10267),(24438,179431),(24469,246),(24469,456),(24469,567),(24469,572),(24469,596),(24469,1721),(24469,2483),(24469,5923),(24469,6054),(24469,8508),(24469,10183),(24469,10873),(24469,13121),(24469,13130),(24469,14604),(24469,14819),(24469,33632),(24469,155881),(24469,156478),(24469,163242),(24469,180340),(24469,187056),(24469,202371),(24621,187056),(24662,1691),(24662,4344),(24662,11128),(24662,11477),(24662,11500),(24662,12396),(24662,12990),(24662,208586),(24662,208916),(24663,10183),(24684,704),(24684,965),(24684,2796),(24684,10683),(24684,14720),(24684,14751),(24684,18035),(24684,187056),(24684,193548),(24684,206688),(24684,206715),(24684,206720),(24746,10183),(24747,6075),(24748,7464),(24748,12440),(24748,14574),(24748,15158),(24803,1918),(24803,3096),(24803,6808),(24803,10851),(24803,41607),(24803,187056),(24803,222186),(24869,6152),(24869,15300),(24869,200969),(24913,2041),(24913,8508),(24913,9826),(24913,11870),(24913,12339),(24913,154681),(24913,186463),(24913,206850),(24913,219991),(24913,221023),(24940,4522),(24940,10333),(24940,235606),(24961,4232),(24961,155462),(24961,158375),(24961,165317),(24961,177912),(24973,1160),(24977,6075),(25066,378),(25066,516),(25066,529),(25066,796),(25066,2394),(25066,9706),(25066,9707),(25066,9826),(25066,10700),(25066,11719),(25066,160322),(25166,3301),(25166,3879),(25166,5340),(25166,9714),(25166,9826),(25166,34079),(25166,207819),(25166,208344),(25189,572),(25189,1992),(25189,13027),(25189,187056),(25189,208709),(25195,444),(25195,1010),(25195,1209),(25195,1459),(25195,3800),(25195,5319),(25195,5543),(25195,7578),(25195,13027),(25195,14983),(25195,14984),(25195,14985),(25195,14987),(25196,444),(25196,727),(25196,736),(25196,953),(25196,1010),(25196,4048),(25196,7464),(25196,10183),(25196,10229),(25196,10937),(25196,14733),(25196,33457),(25196,33719),(25196,33720),(25196,227808),(25208,187056),(25209,4344),(25209,10991),(25209,18105),(25212,10738),(25212,234124),(25248,6075),(25248,10183),(25312,187056),(25350,236),(25350,12993),(25353,977),(25353,9887),(25353,15284),(25376,570),(25376,1328),(25376,1731),(25376,1849),(25376,1930),(25376,2983),(25376,3879),(25376,5340),(25376,6149),(25376,9104),(25376,9826),(25376,10481),(25376,10596),(25376,15108),(25376,185237),(25379,2217),(25379,156096),(25379,180550),(25379,187056),(25379,192942),(25379,198518),(25388,394),(25388,539),(25388,2905),(25388,3593),(25388,41586),(25461,10183),(25636,726),(25636,9696),(25636,10123),(25636,10183),(25636,14964),(25636,157908),(25636,164877),(25636,187056),(25643,612),(25643,2778),(25643,5774),(25643,9872),(25643,15191),(25643,186779),(25678,4405),(25678,6092),(25678,10278),(25704,3658),(25704,18035),(25704,156052),(25704,187056),(25704,209366),(25719,212),(25719,2334),(25719,3713),(25719,4373),(25719,9468),(25719,9673),(25719,9727),(25719,10329),(25719,10594),(25719,11454),(25719,11612),(25719,11677),(25719,12094),(25719,13027),(25719,15232),(25719,159608),(25719,193305),(25763,818),(25763,2964),(25763,4458),(25763,6091),(25763,7325),(25763,14735),(25763,159245),(25763,194713),(25763,196367),(25769,966),(25769,1333),(25769,4884),(25769,10349),(25769,11131),(25769,14673),(25769,14782),(25769,188957),(25769,188973),(25784,2956),(25784,10183),(25793,740),(25793,2073),(25793,4528),(25793,8650),(25793,9903),(25793,10873),(25793,12544),(25793,14735),(25941,2801),(25941,33476),(25968,242),(25968,572),(25968,2884),(25968,9859),(25968,10183),(25968,15106),(25968,160929),(25968,187056),(25968,199214),(25975,1523),(25975,2249),(25975,9986),(25975,11223),(25983,4720),(25983,6158),(25983,10183),(25983,10864),(25983,14773),(25983,161270),(25983,210012),(26022,10540),(26039,3859),(26039,9748),(26039,10291),(26171,10235),(26171,13005),(26171,18115),(26171,33364),(26171,33476),(26171,179431),(26171,204267),(26268,185525),(26268,208117),(26306,1897),(26306,2070),(26306,6075),(26306,204967),(26320,6579),(26320,10183),(26320,187249),(26320,187250),(26352,1812),(26352,2151),(26352,14819),(26352,14964),(26352,155790),(26352,222423),(26367,6894),(26367,179431),(26371,237),(26371,1862),(26371,6731),(26371,10198),(26371,10683),(26371,34333),(26371,158718),(26371,178329),(26388,1533),(26388,1909),(26388,4776),(26388,7172),(26388,10349),(26388,13015),(26388,15017),(26388,15156),(26388,18034),(26388,157902),(26388,179430),(26388,206219),(26388,206687),(26388,206690),(26388,206704),(26389,90),(26389,591),(26389,1568),(26389,1653),(26389,1667),(26389,1704),(26389,2095),(26389,4087),(26389,4653),(26389,6083),(26389,6112),(26389,9758),(26389,9844),(26389,10726),(26390,255),(26390,293),(26390,331),(26390,395),(26390,417),(26390,494),(26390,549),(26390,642),(26390,703),(26390,796),(26390,1157),(26390,1317),(26390,1333),(26390,1568),(26390,1930),(26390,2231),(26390,4948),(26390,4959),(26390,5504),(26390,6149),(26390,7410),(26390,8636),(26390,9748),(26390,9758),(26390,9826),(26390,10085),(26390,10093),(26390,10688),(26390,10856),(26390,10950),(26390,10954),(26390,11113),(26390,11199),(26390,11221),(26390,11258),(26390,11314),(26390,11325),(26390,11430),(26390,11436),(26390,11522),(26390,11612),(26390,11719),(26390,11734),(26390,13132),(26390,14512),(26390,14765),(26390,14819),(26390,14829),(26390,14967),(26390,15167),(26390,15300),(26390,15321),(26390,18320),(26390,18396),(26390,33720),(26390,41523),(26390,155799),(26390,156022),(26390,156091),(26390,156158),(26390,156788),(26390,159753),(26390,161534),(26390,166477),(26390,166492),(26428,186),(26428,490),(26428,1160),(26428,1605),(26428,6091),(26428,6158),(26428,6165),(26428,9682),(26428,9725),(26428,14704),(26428,40850),(26428,155651),(26428,161164),(26428,161166),(26428,161167),(26428,161168),(26428,165259),(26428,179367),(26428,190532),(26428,193554),(26428,206709),(26428,206713),(26428,206715),(26428,206716),(26466,270),(26466,1196),(26466,1646),(26466,2849),(26466,3342),(26466,3598),(26466,3799),(26466,4078),(26466,9826),(26466,10854),(26466,11040),(26466,11221),(26466,14527),(26466,14698),(26466,14768),(26466,46952),(26466,157758),(26466,167861),(26466,190890),(26518,187056),(26602,966),(26602,1480),(26602,6075),(26602,7984),(26602,8508),(26602,9673),(26602,9840),(26602,10499),(26602,13088),(26602,187844),(26618,1415),(26618,1812),(26618,4129),(26618,9826),(26618,10183),(26618,10714),(26665,567),(26665,2150),(26665,5600),(26665,7312),(26665,10183),(26665,10909),(26672,530),(26672,616),(26672,7376),(26672,14643),(26672,18034),(26672,180631),(26672,210414),(26673,6075),(26688,293),(26688,3687),(26688,10714),(26688,11221),(26688,12339),(26688,15127),(26688,41667),(26688,194236),(26688,225938),(26710,17985),(26710,160946),(26710,162225),(26710,184499),(26710,187056),(26748,798),(26748,6625),(26748,168713),(26748,193282),(26815,3734),(26815,10540),(26815,12094),(26815,14636),(26815,197297),(26837,246),(26837,898),(26837,155449),(26837,181208),(26837,181210),(26837,181211),(26837,181217),(26837,187056),(26843,131),(26843,539),(26843,836),(26843,1956),(26843,5272),(26843,8077),(26843,9672),(26843,11031),(26899,2479),(26899,6733),(26899,9627),(26899,9789),(26899,10180),(26899,10183),(26899,10683),(26899,15135),(26916,9937),(26963,14665),(26963,14785),(26963,18029),(26963,33696),(26963,187056),(27004,10183),(27004,10594),(27022,616),(27022,657),(27022,1994),(27022,2098),(27022,2343),(27022,3096),(27022,3098),(27022,4237),(27022,4488),(27022,4613),(27022,8504),(27022,9673),(27022,10364),(27022,10821),(27022,12554),(27022,179430),(27022,193201),(27022,222347),(27023,10183),(27023,179430),(27029,428),(27029,440),(27029,745),(27029,1690),(27029,10482),(27029,11322),(27029,11612),(27029,159845),(27029,160800),(27029,165470),(27029,172399),(27029,198780),(27191,291),(27191,41585),(27205,1014),(27205,1566),(27205,1930),(27205,2116),(27205,2117),(27205,10051),(27205,11436),(27205,160137),(27322,572),(27322,1594),(27322,10183),(27322,12532),(27329,2011),(27329,3434),(27329,4278),(27342,591),(27342,782),(27360,9728),(27360,210313),(27374,6152),(27374,8029),(27380,407),(27380,13065),(27380,14825),(27380,191316),(27404,10183),(27420,12339),(27451,395),(27451,572),(27451,3616),(27451,6496),(27451,10391),(27451,14964),(27455,10183),(27455,11316),(27455,11485),(27549,818),(27549,4379),(27549,9663),(27549,164218),(27549,181213),(27549,192215),(27549,192913),(27549,197014),(27549,208009),(27549,234213),(27551,12554),(27551,14665),(27573,801),(27573,163758),(27576,441),(27576,470),(27576,591),(27576,1930),(27576,2106),(27576,2111),(27576,3637),(27576,4776),(27576,9748),(27576,10562),(27576,10950),(27576,11134),(27576,11322),(27576,12366),(27576,13015),(27576,14819),(27576,190654),(27576,190981),(27576,208314),(27578,331),(27578,779),(27578,1589),(27578,2041),(27578,3070),(27578,3450),(27578,10084),(27578,10685),(27578,14765),(27578,14964),(27578,40884),(27578,159753),(27578,179431),(27579,549),(27579,1192),(27579,9937),(27579,10093),(27579,212412),(27581,2398),(27581,167529),(27581,167531),(27581,167536),(27581,167538),(27581,167541),(27581,167542),(27581,179430),(27581,179431),(27582,351),(27582,520),(27582,549),(27582,779),(27582,782),(27582,822),(27582,1227),(27582,1422),(27582,2708),(27582,3713),(27582,4276),(27582,9665),(27582,9767),(27582,9844),(27585,697),(27585,2754),(27585,4290),(27585,6038),(27585,9872),(27585,10937),(27585,12544),(27585,15334),(27585,40952),(27585,40953),(27586,515),(27586,1228),(27586,2416),(27586,5274),(27586,6027),(27586,8126),(27586,10183),(27586,10712),(27586,10809),(27586,11666),(27586,11700),(27586,14600),(27586,15166),(27586,156777),(27586,156823),(27586,159944),(27586,164039),(27586,164044),(27586,164046),(27586,164057),(27586,164060),(27586,164061),(27586,180201),(27586,187056),(27588,10183),(27686,162843),(27723,237),(27723,246),(27723,703),(27723,718),(27723,966),(27723,1524),(27723,8201),(27723,8508),(27723,8613),(27723,9713),(27723,9748),(27723,9826),(27723,10181),(27723,10183),(27723,10738),(27723,11931),(27723,13088),(27723,15127),(27723,171636),(27759,4063),(27759,6917),(27759,33683),(27845,1010),(27845,7464),(27845,10183),(27845,15111),(27936,156052),(27936,172942),(27936,186800),(27983,428),(27983,4129),(27983,10103),(27983,14648),(27983,18027),(27995,10183),(27995,10768),(28005,496),(28005,1664),(28005,187056),(28029,596),(28029,6447),(28029,208992),(28053,1328),(28053,2843),(28053,6593),(28053,6625),(28053,15234),(28053,34029),(28053,34094),(28089,10183),(28089,10814),(28089,13065),(28089,15087),(28121,9748),(28121,12532),(28121,13043),(28165,233),(28165,586),(28165,9663),(28165,9715),(28165,10292),(28165,11931),(28165,34117),(28178,907),(28178,1797),(28178,2526),(28178,6054),(28178,9713),(28178,10235),(28178,15162),(28178,163098),(28178,192555),(28178,206863),(28211,4227),(28211,10768),(28211,33396),(28211,187989),(28211,187996),(28211,187999),(28260,10726),(28260,12377),(28353,572),(28353,8508),(28353,9713),(28353,199050),(28355,516),(28355,703),(28355,2438),(28355,6152),(28355,9826),(28355,11857),(28355,14751),(28355,14819),(28355,15017),(28355,33592),(28355,33593),(28355,33594),(28355,33595),(28355,157902),(28355,202703),(28355,206690),(28355,206813),(28580,1333),(28580,2677),(28580,6662),(28580,6782),(28580,7464),(28580,13028),(28580,33457),(28580,156318),(28580,161043),(28580,171567),(28580,195402),(28580,201456),(28665,4344),(28665,179431),(28666,155700),(28666,155702),(28902,818),(28902,1252),(28902,1566),(28902,1930),(28902,4942),(28902,9937),(28902,10714),(28902,155440),(29015,9715),(29064,3036),(29064,9937),(29064,10867),(29064,10870),(29076,293),(29076,10175),(29076,15274),(29078,6075),(29122,10882),(29122,10883),(29146,1706),(29146,2161),(29146,5981),(29146,6257),(29193,811),(29193,2246),(29193,3338),(29193,10183),(29262,1161),(29262,18034),(29262,210184),(29371,9833),(29371,10183),(29371,34215),(29371,158718),(29371,187056),(29406,387),(29406,572),(29406,1010),(29406,2669),(29406,3306),(29406,9824),(29406,10163),(29406,10183),(29406,14819),(29406,18047),(29406,18053),(29406,40879),(29406,156165),(29406,165508),(29406,182414),(29426,12377),(29427,321),(29427,1865),(29427,9665),(29427,15085),(29427,179431),(29427,188957),(29461,5923),(29461,10235),(29461,208693),(29514,977),(29514,1003),(29514,3030),(29514,3298),(29514,3363),(29514,5332),(29514,7464),(29514,9706),(29514,12377),(29514,13153),(29514,14819),(29514,214544),(29595,279),(29595,592),(29595,2081),(29595,4108),(29595,5890),(29595,6071),(29595,10905),(29595,10906),(29595,10907),(29595,12094),(29595,14737),(29595,188950),(29595,196332),(29697,10060),(29697,10637),(29715,534),(29715,1968),(29715,4616),(29715,14748),(29715,163188),(29912,3571),(29912,5049),(29917,1419),(29917,2834),(29917,3301),(29917,5369),(29917,8126),(29917,8438),(29917,11268),(29917,14673),(29917,15271),(29917,164478),(29917,185959),(29917,188950),(29917,188973),(29917,201243),(29920,172164),(29963,5933),(29963,10183),(29963,179431),(29963,187056),(29996,536),(29996,1160),(29996,3684),(29996,6917),(30082,10183),(30128,293),(30128,818),(30128,6593),(30128,9569),(30128,10123),(30128,179430),(30139,187056),(30246,187056),(30309,10183),(30309,187056),(30315,612),(30315,1415),(30315,4063),(30315,10183),(30315,13092),(30315,14792),(30315,34079),(30315,158130),(30315,195026),(30379,4565),(30497,1420),(30497,1556),(30497,4580),(30497,10292),(30497,11487),(30497,11541),(30497,11542),(30497,11545),(30497,11546),(30497,11547),(30497,12339),(30497,12394),(30497,18035),(30497,33874),(30497,230137),(30497,233450),(30596,441),(30596,779),(30596,1938),(30596,8636),(30596,11579),(30596,11762),(30596,12354),(30596,14686),(30596,14687),(30596,14690),(30596,14692),(30596,14696),(30596,14698),(30596,14819),(30867,6027),(30890,966),(30890,1749),(30890,1956),(30890,2135),(30890,9273),(30890,10183),(30890,11935),(30890,158071),(30890,217880),(30890,221756),(30943,1930),(30943,5202),(30943,9824),(30973,2618),(30973,2974),(30973,3034),(30973,3036),(30973,5950),(30973,9649),(30973,18126),(30979,1646),(30979,10183),(31007,549),(31007,570),(31007,6593),(31007,10183),(31007,10809),(31007,11492),(31064,570),(31064,572),(31064,822),(31064,1002),(31064,3487),(31064,3720),(31064,9748),(31064,10183),(31064,14782),(31117,1009),(31117,1480),(31117,2878),(31117,6104),(31117,6257),(31117,9678),(31117,10842),(31117,234456),(31163,1862),(31163,2692),(31163,10198),(31174,392),(31174,497),(31174,1930),(31174,9826),(31174,13084),(31246,4344),(31535,1436),(31535,3338),(31535,3692),(31582,10183),(31640,642),(31640,1419),(31640,1721),(31640,9673),(31640,9826),(31640,10051),(31640,14604),(31640,33461),(31640,207268),(31668,108),(31668,1956),(31867,4565),(31867,11738),(31867,11739),(31867,179430),(31908,782),(31908,4129),(31908,11038),(31908,163116),(31908,208647),(31909,6968),(31909,9714),(31909,14909),(31915,1299),(31915,1852),(31915,9794),(31915,10322),(31915,33480),(31915,223059),(32222,941),(32222,958),(32222,1253),(32222,1463),(32222,3616),(32222,10540),(32222,14636),(32222,179472),(32275,183528),(32395,187056),(32456,9673),(32456,9748),(32456,11953),(32456,206039),(32456,207716),(32579,10183),(32579,187056),(32657,1299),(32657,2036),(32657,9649),(32657,44365),(32657,68838),(32657,223438),(32823,179430),(32856,2382),(32856,2587),(32856,2778),(32856,5091),(32856,9457),(32856,9988),(32856,160404),(32856,171366),(32856,179430),(32856,179431),(33155,803),(33155,1365),(33155,3385),(33155,3801),(33155,9673),(33155,9755),(33155,9831),(33155,9882),(33155,9951),(33155,14735),(33155,33611),(33155,155551),(33155,205740),(33155,212435),(33155,222915),(33155,233129),(33155,233155),(33157,5565),(33157,220265),(33157,221549),(33196,720),(33196,966),(33196,1872),(33196,2581),(33196,6941),(33196,10235),(33196,10586),(33196,10617),(33196,11732),(33196,14708),(33196,33479),(33196,156924),(33196,173325),(33196,181012),(33196,189411),(33217,818),(33217,10683),(33217,11336),(33217,11687),(33217,13035),(33217,15402),(33217,179431),(33217,209220),(33217,210351),(33217,224637),(33430,10183),(33468,741),(33468,1706),(33468,1852),(33468,2588),(33468,2687),(33468,3262),(33468,3688),(33468,6593),(33468,9844),(33468,10124),(33468,10183),(33468,10292),(33468,10478),(33468,10770),(33468,11034),(33468,11181),(33468,11581),(33468,13063),(33468,14819),(33468,33498),(33468,157789),(33468,157959),(33511,4048),(33511,4344),(33511,5565),(33511,13130),(33511,164148),(33511,164162),(33511,164167),(33511,187056),(33511,208611),(33511,232260),(33542,242),(33542,779),(33542,1545),(33542,2987),(33542,4640),(33542,10726),(33542,13027),(33542,33461),(33542,161307),(33542,179431),(33644,577),(33644,965),(33644,3266),(33644,6876),(33644,11322),(33667,10144),(33667,13065),(33676,255),(33676,293),(33676,534),(33676,549),(33676,2483),(33676,6270),(33676,10081),(33676,10183),(33676,12398),(33676,13130),(33676,206850),(33676,208445),(33693,171993),(33870,4328),(33870,4528),(33870,5331),(33870,6044),(33870,10551),(33909,179431),(34016,2246),(34016,9799),(34016,13043),(34016,15320),(34016,40854),(34016,167576),(34016,169152),(34016,179431),(34069,3388),(34069,3801),(34069,3972),(34069,9831),(34069,9937),(34069,158022),(34069,193149),(34069,210367),(34086,9951),(34086,10539),(34086,12541),(34086,177349),(34099,156321),(34101,577),(34101,6325),(34106,2693),(34106,5728),(34106,6095),(34106,9673),(34106,9713),(34106,10483),(34106,11677),(34106,11678),(34106,182625),(34106,191786),(34152,577),(34152,1228),(34152,3017),(34152,6979),(34152,10041),(34152,10183),(34152,10508),(34152,10616),(34152,11093),(34314,2080),(34314,3800),(34314,10950),(34314,198541),(34314,207317),(34314,208637),(34335,1930),(34335,9826),(34335,9937),(34341,6075),(34417,10183),(34563,10188),(34563,13027),(34563,179431),(34584,818),(34584,855),(34584,1994),(34584,2035),(34584,2343),(34584,2673),(34584,3096),(34584,3205),(34584,10624),(34584,10873),(34584,11477),(34584,155410),(34584,155851),(34584,170362),(34584,189099),(34584,190083),(34584,207372),(34592,7856),(34592,11001),(34647,549),(34647,3298),(34647,3688),(34647,6155),(34647,9887),(34647,11483),(34647,12420),(34647,33841),(34647,168179),(34647,184392),(34647,208805),(34647,224663),(34647,237851),(34653,237),(34653,818),(34653,11258),(34653,13095),(34653,41355),(34653,172291),(34653,208992),(34697,2483),(34697,3182),(34723,168598),(34723,170444),(34723,170450),(34723,170452),(34723,170457),(34723,170461),(34723,170465),(34723,170466),(34723,170468),(34769,853),(34769,6262),(34769,9715),(34806,5091),(34806,5098),(34806,9799),(34806,10556),(34806,13005),(34806,13149),(34806,14768),(34806,159150),(34806,176227),(34806,179431),(34813,11612),(34813,175056),(34813,175069),(34813,175075),(34851,414),(34851,1297),(34851,1794),(34851,4323),(34851,4862),(34851,9663),(34851,9951),(34851,10158),(34851,10787),(34851,13065),(34851,192913),(34941,10183),(35019,2341),(35019,2486),(35019,10103),(35019,179430),(35019,179431),(35019,187056),(35032,4344),(35032,12988),(35056,248),(35056,417),(35056,444),(35056,996),(35056,1157),(35056,1419),(35056,1422),(35056,1749),(35056,1937),(35056,1946),(35056,2405),(35056,2587),(35056,6083),(35056,6593),(35056,7281),(35056,9727),(35056,9844),(35056,10261),(35056,10325),(35056,11734),(35056,179430),(35056,179431),(35073,1299),(35073,1815),(35073,4079),(35073,8721),(35073,10022),(35073,10121),(35073,11034),(35073,11100),(35073,12616),(35073,14512),(35073,33696),(35073,155582),(35073,156768),(35073,161271),(35073,223155),(35169,10468),(35169,18165),(35169,179430),(35169,179431),(35169,179867),(35169,184952),(35169,234341),(35199,271),(35199,10073),(35199,11836),(35199,185438),(35219,703),(35219,10183),(35219,13008),(35219,33457),(35219,156091),(35689,10183),(35690,1155),(35690,1605),(35690,5600),(35690,14714),(35690,187056),(35691,3344),(35691,3929),(35691,4461),(35691,9649),(35691,10163),(35691,10183),(35691,179430),(35696,6075),(35696,6496),(35696,9767),(35696,11746),(35696,12090),(35696,12091),(35791,4458),(35791,4565),(35791,10327),(35791,11131),(35791,11738),(35791,12102),(35791,12377),(35791,41645),(35791,179431),(35791,209714),(36047,187056),(36095,233),(36095,549),(36095,612),(36095,818),(36095,3298),(36095,4434),(36095,5340),(36095,9826),(36095,11242),(36095,15271),(36095,156104),(36095,160059),(36095,168857),(36095,190007),(36095,207268),(36095,231642),(36095,236896),(36351,236),(36351,2231),(36351,11436),(36351,164296),(36351,181324),(36355,630),(36355,1196),(36355,3546),(36355,13088),(36419,2564),(36419,3030),(36419,3739),(36419,4958),(36419,12544),(36419,41375),(36419,41376),(36419,41377),(36419,41379),(36419,41380),(36419,187056),(36549,10183),(36557,131),(36557,383),(36557,585),(36557,949),(36557,3515),(36557,10594),(36557,10609),(36557,13006),(36557,156095),(36557,206125),(36584,441),(36584,2340),(36584,9937),(36584,10410),(36586,1908),(36586,2766),(36586,3133),(36586,3625),(36586,9715),(36586,10045),(36586,10525),(36586,11795),(36586,14819),(36586,18508),(36586,40884),(36586,162177),(36586,162533),(36586,175211),(36586,175227),(36586,175233),(36586,175241),(36586,175245),(36586,175247),(36593,1568),(36593,11931),(36593,208208),(36597,187056),(36643,6731),(36643,10364),(36643,10590),(36643,41185),(36643,41188),(36643,156095),(36647,236),(36647,1701),(36647,3133),(36647,4197),(36647,5572),(36647,6152),(36647,9259),(36647,9715),(36647,9823),(36647,10044),(36647,10842),(36647,13116),(36647,14687),(36647,14731),(36647,14760),(36647,14819),(36647,14935),(36647,40884),(36647,156650),(36647,162301),(36647,168859),(36647,175023),(36647,175036),(36647,175041),(36647,175042),(36647,175048),(36647,175049),(36647,175050),(36647,187710),(36647,202322),(36647,202703),(36647,206695),(36647,206813),(36647,231407),(36648,1812),(36648,3633),(36648,5572),(36648,9259),(36648,9715),(36648,9717),(36648,14731),(36648,14735),(36648,14926),(36648,40884),(36648,162085),(36648,163074),(36648,166720),(36648,174871),(36648,174878),(36657,1852),(36657,8828),(36657,9715),(36657,9717),(36657,10761),(36658,1852),(36658,8828),(36658,9715),(36658,9717),(36658,10761),(36668,1852),(36668,8828),(36668,9717),(36668,10761),(36668,161271),(36668,161893),(36668,179430),(36669,3290),(36669,156095),(36669,208633),(36669,234365),(36670,282),(36670,470),(36670,3345),(36670,6731),(36670,10261),(36670,10503),(36670,155334),(36670,156095),(36691,1326),(36691,2298),(36691,9957),(36691,10267),(36691,12279),(36696,2139),(36696,4040),(36696,9882),(36696,12405),(36696,15162),(36739,4344),(36811,179431),(36819,1454),(36819,1969),(36819,2343),(36819,4379),(36819,4388),(36819,4392),(36819,10028),(36819,10166),(36819,10183),(36819,10842),(36819,11117),(36819,11728),(36955,470),(36955,949),(36955,1196),(36955,1419),(36955,1930),(36955,2284),(36955,3546),(36955,4289),(36955,161520),(36955,167444),(36955,167451),(36955,167455),(36955,167461),(36955,167466),(36955,167467),(36955,217421),(36970,270),(36970,658),(36970,1357),(36970,4676),(36970,179431),(37028,855),(37028,2199),(37028,4344),(37056,131),(37056,3344),(37056,9799),(37056,34061),(37056,164698),(37056,168551),(37056,193614),(37056,207372),(37080,8018),(37080,9838),(37080,10707),(37137,521),(37137,840),(37137,11931),(37137,192099),(37165,2147),(37165,3979),(37165,4565),(37165,10328),(37165,207063),(37165,207064),(37206,13014),(37206,158688),(37232,4662),(37232,10183),(37232,33499),(37232,33500),(37232,47019),(37232,47020),(37233,1812),(37233,3703),(37233,6335),(37233,10909),(37233,162813),(37233,208043),(37414,798),(37414,853),(37495,13015),(37495,191479),(37498,4530),(37498,181385),(37498,195410),(37532,10183),(37686,1228),(37686,1328),(37686,9951),(37686,10663),(37686,13132),(37686,17994),(37686,179431),(37694,187056),(37707,1718),(37707,6017),(37707,158256),(37707,163561),(37707,168219),(37710,90),(37710,612),(37710,3864),(37710,4654),(37710,9840),(37718,888),(37718,9304),(37724,470),(37724,4289),(37724,9740),(37724,15127),(37724,15478),(37724,156095),(37724,156345),(37724,156395),(37724,159932),(37724,163841),(37724,185071),(37724,185077),(37735,2251),(37735,6270),(37735,10873),(37735,11870),(37735,189868),(37799,2157),(37799,12361),(37799,162749),(37799,170209),(37799,171063),(37799,171065),(37799,171067),(37799,171068),(37799,171070),(37799,220076),(37799,220831),(37821,782),(37834,470),(37834,822),(37834,1420),(37834,2101),(37834,3203),(37834,3713),(37834,4289),(37834,6399),(37834,9778),(37834,15483),(37834,33352),(37834,33353),(37834,179431),(37842,9193),(37842,14629),(37842,15210),(37842,155167),(37903,74),(37903,516),(37903,1499),(37903,2903),(37903,10103),(37903,10886),(37903,194430),(37903,209940),(37903,213856),(37903,231063),(37931,179430),(37931,179431),(37950,380),(37950,818),(37950,3180),(37950,162846),(37950,206298),(37958,351),(37958,6092),(37958,8985),(37958,14667),(37958,18096),(37985,187056),(38007,10183),(38033,627),(38033,6054),(38033,13130),(38033,14805),(38033,15021),(38033,15022),(38033,156661),(38050,612),(38050,733),(38050,2656),(38050,2944),(38050,2964),(38050,4427),(38050,4812),(38050,5091),(38050,6001),(38050,6038),(38050,6083),(38050,6511),(38050,10855),(38050,14967),(38050,18073),(38050,18074),(38050,18075),(38050,156866),(38055,83),(38055,248),(38055,378),(38055,1308),(38055,1357),(38055,1419),(38055,1718),(38055,1919),(38055,2095),(38055,2217),(38055,2598),(38055,4127),(38055,8803),(38055,11477),(38055,12193),(38055,179431),(38055,219826),(38073,255),(38073,572),(38073,582),(38073,828),(38073,918),(38073,1010),(38073,2483),(38073,3800),(38073,10556),(38073,13028),(38073,14512),(38073,33451),(38073,155761),(38073,162511),(38073,174420),(38073,185332),(38073,187056),(38073,195162),(38073,210112),(38093,187056),(38117,818),(38117,9673),(38117,9767),(38117,10541),(38117,13130),(38117,15402),(38117,15403),(38117,188237),(38117,221039),(38117,223438),(38167,7348),(38167,11322),(38167,14636),(38167,15160),(38167,192096),(38223,470),(38223,1328),(38223,2341),(38223,5585),(38223,158071),(38223,187056),(38303,1155),(38303,6038),(38303,10624),(38303,179431),(38317,11477),(38317,14760),(38317,15147),(38317,15148),(38317,15149),(38317,15150),(38317,15151),(38317,179431),(38319,1930),(38319,2052),(38319,2389),(38319,3071),(38319,7376),(38319,9748),(38319,10166),(38319,10466),(38319,12554),(38319,13027),(38319,13084),(38319,234213),(38321,3133),(38321,3571),(38321,4458),(38321,4565),(38321,9259),(38321,13087),(38321,13140),(38321,15002),(38322,1568),(38322,1812),(38322,9663),(38322,10267),(38322,18118),(38322,18525),(38322,160364),(38322,179431),(38356,305),(38356,1612),(38356,2052),(38356,3088),(38356,10158),(38356,10244),(38356,10607),(38356,10891),(38356,15246),(38356,15247),(38356,15248),(38356,179431),(38357,13281),(38357,13384),(38357,13424),(38358,2626),(38358,4373),(38358,10114),(38358,10864),(38358,11800),(38358,18072),(38358,161270),(38358,163053),(38358,163055),(38363,591),(38363,3617),(38363,5939),(38363,6083),(38363,179431),(38365,2064),(38365,6954),(38365,7600),(38365,11428),(38365,11715),(38415,4344),(38415,187056),(38428,5565),(38428,7926),(38428,10614),(38448,567),(38448,5938),(38448,155049),(38448,186829),(38448,186830),(38541,9866),(38541,14819),(38541,41640),(38541,41642),(38541,41643),(38541,41644),(38543,502),(38543,1701),(38543,1721),(38543,3098),(38543,10141),(38543,12965),(38543,13084),(38543,14656),(38570,179431),(38665,178867),(38665,180234),(38665,190296),(38665,222787),(38717,6075),(38717,10183),(38745,736),(38745,3691),(38745,7376),(38745,154794),(38745,209714),(38757,1562),(38757,2343),(38757,2673),(38757,3205),(38757,4344),(38757,7376),(38757,10336),(38757,33787),(38757,155658),(38757,162219),(38757,163545),(38757,179411),(38757,179431),(38757,215258),(38757,234183),(38778,2161),(38778,2415),(38778,9678),(38778,9719),(38778,179430),(38778,179431),(38780,10022),(38780,14546),(38780,17987),(38810,255),(38810,293),(38810,1562),(38810,2340),(38810,10041),(38810,12420),(38810,33841),(38810,33998),(38810,41329),(38810,156433),(38810,162804),(38810,170362),(38810,172658),(38810,181531),(38810,218190),(38810,232441),(38843,1156),(38843,10707),(38843,12335),(38843,15300),(38843,179431),(38843,187056),(38940,1293),(38940,2041),(38940,3070),(38940,10183),(38940,10787),(38970,1664),(38985,1560),(38985,1926),(38985,6342),(38985,15009),(38985,33344),(38985,166974),(38985,168723),(38985,174468),(38985,181321),(38985,181322),(38985,181323),(38985,181324),(38985,181325),(39013,5905),(39013,6148),(39013,14657),(39013,14658),(39013,14659),(39013,179430),(39013,179431),(39013,187056),(39037,10183),(39053,171993),(39055,179431),(39141,10183),(39180,15162),(39183,242),(39183,164002),(39183,164003),(39209,10322),(39209,163674),(39209,208155),(39210,2706),(39210,10183),(39210,182100),(39210,182108),(39210,187056),(39254,494),(39254,1721),(39254,6075),(39254,14544),(39254,166802),(39254,180574),(39254,202314),(39269,4470),(39269,10183),(39269,10683),(39269,10809),(39269,161545),(39303,9950),(39303,160313),(39451,428),(39451,977),(39451,4604),(39451,5569),(39451,9963),(39451,10425),(39451,179431),(39486,643),(39486,2284),(39486,5565),(39513,1768),(39513,177163),(39513,177178),(39513,177180),(39513,177181),(39513,179431),(39513,208289),(39514,591),(39514,4948),(39514,11325),(39514,12355),(39514,18115),(39514,18117),(39514,165909),(39538,83),(39538,2766),(39538,4884),(39538,6564),(39538,6898),(39538,9744),(39538,13004),(39538,14674),(39538,14675),(39538,14760),(39538,17995),(39691,13006),(39691,179430),(39691,179431),(39691,209714),(39780,3065),(39780,5657),(39780,10911),(39780,11411),(39780,187056),(39780,207928),(39781,9833),(39781,10768),(39781,12997),(39781,14735),(39781,41379),(39781,159143),(39781,159150),(39781,159156),(39781,159161),(39781,187056),(39781,230314),(39800,10123),(39800,10183),(39806,5565),(39806,6165),(39806,7376),(39806,8029),(39806,9672),(39833,393),(39845,10183),(39851,6782),(39851,155936),(39851,196911),(39895,393),(39895,2398),(39895,3392),(39895,5919),(39895,9706),(39895,207447),(39895,207545),(39939,567),(39939,2135),(39939,2993),(39939,3306),(39939,8233),(39939,9702),(39939,10776),(39939,11485),(39939,11734),(39939,179430),(39939,179431),(39939,226825),(40001,5629),(40001,10325),(40001,180828),(40160,5404),(40160,10617),(40160,189411),(40160,199076),(40247,236),(40247,242),(40247,1326),(40247,10163),(40247,10183),(40247,10226),(40247,33632),(40247,187056),(40264,3133),(40264,6270),(40264,10266),(40264,11931),(40264,12416),(40264,13130),(40264,179431),(40428,10183),(40494,291),(40494,180181),(40652,1965),(40652,15184),(40652,191431),(40652,193682),(40769,4048),(40769,9840),(40769,10183),(40769,171993),(40805,258),(40805,779),(40805,782),(40805,2016),(40805,2334),(40805,4613),(40805,4728),(40805,8508),(40805,9639),(40805,9715),(40805,9748),(40805,11060),(40805,14819),(40805,15482),(40805,15483),(40805,15484),(40807,437),(40807,494),(40807,2726),(40807,10163),(40807,11268),(40807,12392),(40807,13005),(40807,14781),(40807,163699),(40807,172345),(40807,220363),(40807,222812),(40914,3088),(40914,7376),(40914,12367),(40914,13065),(40914,161506),(40920,10183),(40932,11663),(40932,155490),(40932,187056),(40932,209940),(40963,10183),(41009,9937),(41110,596),(41110,1946),(41110,2609),(41110,3230),(41110,4029),(41110,10637),(41110,18293),(41110,165282),(41144,5950),(41144,10183),(41154,4379),(41154,5455),(41154,9951),(41154,174915),(41154,185668),(41154,208756),(41210,567),(41210,641),(41210,1009),(41210,1946),(41210,2269),(41210,2700),(41210,9736),(41210,10556),(41210,10721),(41210,159150),(41216,3905),(41233,4344),(41233,179431),(41233,209714),(41402,3133),(41402,9668),(41402,9714),(41402,10624),(41402,11336),(41402,15208),(41402,15209),(41402,155730),(41402,208289),(41436,10112),(41436,10224),(41436,161261),(41436,163053),(41436,179431),(41439,5385),(41439,14819),(41439,18054),(41439,18056),(41439,18057),(41439,18058),(41439,209714),(41446,798),(41446,3096),(41446,4728),(41446,8087),(41446,10084),(41446,10818),(41446,11040),(41446,11612),(41446,13092),(41469,10183),(41479,10183),(41479,179431),(41508,810),(41508,1244),(41508,1631),(41508,1956),(41513,305),(41513,2343),(41513,9717),(41513,10336),(41513,10842),(41513,15072),(41513,15073),(41513,15074),(41513,15075),(41513,15076),(41513,179431),(41515,2406),(41515,6878),(41515,10468),(41515,209714),(41515,221037),(41630,494),(41630,1760),(41630,9139),(41630,9713),(41630,9988),(41630,10556),(41630,10827),(41630,11316),(41630,12392),(41630,172454),(41630,178329),(41630,179431),(41630,219779),(41630,226774),(41630,231225),(41730,258),(41730,657),(41730,1812),(41730,6898),(41730,10183),(41730,14913),(41730,157775),(41730,166974),(41730,192705),(41730,192706),(41730,192707),(41730,192708),(41730,192709),(41733,3306),(41733,8631),(41733,11546),(41733,15210),(41733,15211),(41733,15212),(41733,15213),(41733,15215),(41823,4344),(41830,212),(41830,6553),(42033,4458),(42033,4565),(42033,206850),(42057,212),(42057,958),(42057,9826),(42057,10132),(42057,162846),(42057,187056),(42151,9826),(42151,10123),(42151,33421),(42188,634),(42188,818),(42188,1647),(42188,3446),(42188,4565),(42188,6271),(42188,11628),(42188,181324),(42222,9713),(42222,10965),(42297,4344),(42297,12670),(42297,163070),(42297,191205),(42345,904),(42345,4781),(42345,164742),(42345,167215),(42345,206311),(42497,1566),(42497,13059),(42586,470),(42586,6464),(42618,978),(42618,3447),(42618,6562),(42618,10703),(42618,155513),(42618,158375),(42618,165317),(42684,2534),(42684,3760),(42684,4375),(42684,9660),(42684,9951),(42684,11183),(42684,12670),(42684,15156),(42684,15219),(42684,179431),(42807,2492),(42807,177695),(42807,177703),(42819,818),(42819,7992),(42888,128),(42888,1480),(42888,10456),(42888,179430),(42889,11254),(42889,18068),(42889,155722),(42889,156777),(42889,163053),(42889,170827),(42889,208445),(43074,5248),(43074,15040),(43074,161184),(43074,162846),(43090,75),(43090,801),(43090,1318),(43090,12965),(43090,155573),(43266,1209),(43266,11004),(43266,164742),(43306,3203),(43306,3800),(43306,162846),(43347,255),(43347,293),(43347,3344),(43347,9673),(43347,10425),(43347,11530),(43347,11678),(43434,1419),(43434,7336),(43434,11162),(43434,13015),(43434,18232),(43434,18233),(43434,18263),(43539,2620),(43539,3022),(43539,41379),(43539,154879),(43539,154881),(43539,154882),(43539,154884),(43546,4344),(43546,7665),(43546,8181),(43546,9799),(43593,3342),(43593,9732),(43593,10503),(43593,158045),(43593,158054),(43593,158072),(43593,209714),(43595,10229),(43595,194846),(43653,10183),(43743,10183),(43839,1691),(43839,167411),(43839,225156),(43867,1930),(43867,2505),(43867,3289),(43867,4152),(43867,5515),(43867,9920),(43867,10325),(43867,13084),(43867,177035),(43867,204060),(43867,235228),(43867,236891),(43884,502),(43884,4100),(43884,4268),(43884,4278),(43884,10563),(43884,11115),(43884,14546),(43884,14636),(43884,156234),(43884,186009),(43884,188270),(43884,204183),(43884,208764),(43884,232235),(43884,238130),(43884,238196),(43884,238197),(43884,238198),(43884,238206),(43923,236),(43923,894),(43923,10183),(43923,10683),(43923,11870),(43923,13130),(43923,156851),(43923,187056),(43923,223438),(43931,634),(43931,10714),(43931,12339),(43931,13130),(43931,209714),(43933,1299),(43933,1949),(43933,2135),(43933,4565),(43933,4884),(43933,5774),(43933,9660),(43933,9951),(43933,14909),(43933,15222),(43933,15223),(43933,15225),(43933,15226),(43935,703),(43935,3133),(43935,6152),(43935,12377),(43935,12564),(43935,219990),(43942,293),(43942,417),(43942,1332),(43942,1706),(43942,5641),(43942,6270),(43942,10183),(43942,12105),(43942,14737),(43942,179867),(43942,187056),(43947,570),(43947,6930),(43947,9748),(43947,13028),(43947,14829),(43947,157392),(43947,157398),(43947,184352),(43949,367),(43949,818),(43949,10048),(43949,10226),(43949,10235),(43949,156925),(43949,165100),(43949,165301),(43949,170325),(43949,223438),(43959,271),(43959,818),(43959,2988),(43959,5349),(43959,5565),(43959,6075),(43959,179431),(44009,931),(44009,1918),(44009,2105),(44009,3739),(44009,3743),(44009,9957),(44009,10048),(44009,15230),(44040,2147),(44040,173316),(44048,163228),(44092,779),(44092,9725),(44092,184656),(44113,378),(44113,657),(44113,2887),(44113,3182),(44113,4459),(44113,5500),(44113,9758),(44113,11363),(44113,15232),(44113,15233),(44113,15234),(44113,15235),(44115,1262),(44115,2300),(44115,4414),(44115,5303),(44115,6511),(44115,8122),(44115,8624),(44115,9672),(44115,10084),(44115,10349),(44115,10685),(44115,10984),(44115,18029),(44115,159880),(44115,175428),(44115,187844),(44115,201712),(44115,201713),(44115,201715),(44115,212412),(44147,212),(44147,456),(44147,642),(44147,703),(44147,782),(44147,2708),(44147,4142),(44147,4488),(44147,9714),(44147,9748),(44147,9826),(44147,13142),(44147,14536),(44147,14893),(44147,18420),(44214,246),(44214,271),(44214,572),(44214,733),(44214,1523),(44214,2340),(44214,6255),(44214,9937),(44214,10551),(44214,14512),(44214,34265),(44214,41329),(44214,41410),(44214,173646),(44214,187256),(44214,191564),(44264,1872),(44264,2123),(44264,5901),(44264,7464),(44264,10085),(44413,612),(44413,10809),(44413,13005),(44413,187056),(44413,211572),(44490,237),(44490,10183),(44490,170179),(44562,12394),(44562,162810),(44562,164193),(44564,596),(44564,1326),(44564,1328),(44564,5340),(44564,6054),(44564,9104),(44564,9673),(44564,9713),(44564,10459),(44564,11509),(44564,12392),(44594,818),(44594,3344),(44594,4954),(44594,5502),(44594,13005),(44594,13149),(44594,168013),(44594,168491),(44594,220194),(44594,232716),(44634,10183),(44638,497),(44638,1938),(44638,2041),(44638,4456),(44638,5147),(44638,5149),(44638,13153),(44638,14527),(44638,15192),(44638,187056),(44638,199814),(44638,204312),(44639,417),(44639,592),(44639,593),(44639,974),(44639,3515),(44639,4373),(44639,5636),(44639,6118),(44639,6123),(44639,6126),(44639,6711),(44639,10594),(44639,14737),(44639,165193),(44639,177493),(44639,188950),(44718,10183),(44754,242),(44754,992),(44754,3030),(44754,3581),(44754,5340),(44754,6149),(44754,6256),(44754,10508),(44754,11221),(44754,12105),(44754,14534),(44754,18035),(44770,10183),(44826,295),(44826,1507),(44826,2793),(44826,2849),(44826,4290),(44826,5202),(44826,9673),(44826,13014),(44826,14544),(44826,14545),(44826,18028),(44826,33490),(44826,41372),(44826,156149),(44826,209714),(44833,1721),(44833,4410),(44833,11265),(44833,12354),(44833,13042),(44833,14760),(44833,14946),(44833,160855),(44833,160856),(44833,160860),(44833,160861),(44833,160865),(44833,160866),(44833,160868),(44833,160873),(44833,160875),(44833,160876),(44833,160879),(44833,160880),(44833,160881),(44833,160884),(44833,160885),(44833,160887),(44833,179430),(44833,227328),(44833,227329),(44835,936),(44835,1443),(44835,13046),(44835,13047),(44835,13056),(44835,13090),(44835,179431),(44865,779),(44865,780),(44865,5565),(44865,185466),(44896,798),(44896,1197),(44896,2551),(44896,12764),(44896,14569),(44896,14570),(44896,14571),(44896,14585),(44896,14586),(44896,14587),(44896,14588),(44912,849),(44912,4375),(44912,9715),(44912,9951),(44912,15250),(44912,15252),(44912,15254),(44912,163455),(44912,202540),(44912,209714),(44943,83),(44943,1701),(44943,4405),(44943,4630),(44943,4948),(44943,5385),(44943,5404),(44943,6968),(44943,9951),(44943,10141),(44943,10349),(44943,11400),(44943,12670),(44943,14643),(44943,15017),(44943,187710),(44943,188114),(44943,193552),(44943,193907),(44943,206705),(44944,293),(44944,493),(44944,570),(44944,9673),(44944,11925),(44944,33372),(44945,570),(44945,1523),(44945,2251),(44945,8438),(44945,10183),(44945,10809),(44945,10873),(44945,11615),(44945,12392),(44945,15227),(44945,18046),(44945,179431),(44945,184712),(44945,219849),(44945,220506),(44945,222793),(44990,10183),(45054,5509),(45054,10093),(45054,10183),(45054,18396),(45054,41589),(45054,41610),(45054,41611),(45132,258),(45132,1419),(45132,2231),(45132,4328),(45132,5451),(45132,8508),(45132,9715),(45132,10123),(45132,10292),(45132,11221),(45132,12352),(45132,12353),(45132,12997),(45132,14819),(45132,15090),(45132,172141),(45132,179431),(45138,11578),(45145,572),(45145,2334),(45145,2483),(45145,4048),(45145,4528),(45145,5288),(45145,5614),(45145,6027),(45145,6432),(45145,9468),(45145,10183),(45153,1156),(45153,5975),(45153,6156),(45153,10183),(45153,10541),(45153,10707),(45153,11705),(45153,12335),(45153,15300),(45153,34100),(45153,187056),(45243,1381),(45243,6710),(45243,11199),(45243,11461),(45243,179431),(45269,1025),(45269,2135),(45269,2471),(45269,4305),(45269,4833),(45269,6001),(45269,6038),(45269,9920),(45269,10201),(45272,236),(45272,567),(45272,596),(45272,727),(45272,1010),(45272,1326),(45272,1556),(45272,2560),(45272,4048),(45272,4344),(45272,4580),(45272,6782),(45272,6951),(45272,9673),(45272,10229),(45272,187056),(45317,6075),(45317,154123),(45317,166309),(45317,174093),(45317,174099),(45317,174107),(45317,174109),(45317,174110),(45317,174116),(45317,174117),(45317,179431),(45324,5565),(45324,179431),(45610,3058),(45610,179431),(45612,258),(45612,1284),(45612,2486),(45612,2532),(45612,3301),(45612,4379),(45612,5340),(45612,9887),(45612,13065),(45612,14605),(45649,9778),(45649,179431),(45650,9866),(45650,156168),(45650,161552),(45658,567),(45658,1859),(45658,4552),(45658,9639),(45658,10183),(45658,10332),(45658,10721),(45658,11739),(45767,4379),(45767,5455),(45767,10060),(45791,494),(45791,10937),(45791,11612),(45791,15295),(45791,18035),(45791,40895),(45791,176797),(45881,818),(45881,3450),(45881,5967),(45881,15060),(45881,160279),(45881,187056),(45881,193102),(45958,2356),(45958,12423),(45958,13159),(45958,33479),(46138,173959),(46138,179430),(46138,179431),(46138,186781),(46138,186782),(46138,186783),(46138,186784),(46146,414),(46146,1262),(46146,3593),(46146,4414),(46146,5774),(46146,9679),(46146,9721),(46146,9902),(46146,10410),(46146,11173),(46146,11800),(46146,163053),(46146,179430),(46195,1161),(46195,2551),(46195,2646),(46195,4344),(46195,7453),(46195,12649),(46195,18165),(46195,179431),(46195,236475),(46195,236476),(46256,155921),(46256,155924),(46256,155926),(46261,1299),(46261,9714),(46261,13031),(46261,14558),(46261,154777),(46261,155733),(46261,155734),(46332,345),(46332,813),(46332,1279),(46332,1562),(46332,2227),(46332,2392),(46332,4556),(46332,4653),(46332,5890),(46332,6057),(46332,6150),(46332,9672),(46332,11001),(46332,13015),(46415,4344),(46420,627),(46420,6270),(46420,9693),(46420,9748),(46420,10266),(46420,10685),(46420,13130),(46435,549),(46435,4344),(46435,5565),(46435,10904),(46435,11333),(46435,33719),(46435,40831),(46435,40832),(46435,40837),(46435,40838),(46435,40984),(46503,2467),(46503,4677),(46503,5707),(46503,10061),(46528,782),(46528,1415),(46528,5774),(46528,9748),(46528,9758),(46528,11058),(46528,11541),(46529,1308),(46529,9951),(46529,18068),(46529,188178),(46529,211359),(46529,212760),(46529,223438),(46529,234694),(46705,246),(46705,428),(46705,894),(46705,1517),(46705,3450),(46705,6038),(46705,9276),(46705,9673),(46705,10041),(46705,10103),(46727,6363),(46727,9825),(46727,11454),(46727,11722),(46729,10183),(46738,378),(46738,539),(46738,570),(46738,789),(46738,1550),(46738,2297),(46738,5153),(46738,5950),(46738,6783),(46738,8181),(46738,14546),(46738,14547),(46738,14548),(46738,15016),(46738,41351),(46829,236),(46829,931),(46829,1329),(46829,10183),(46829,11475),(46838,3623),(46838,12394),(46838,14559),(46838,14560),(46838,14561),(46849,630),(46849,2041),(46849,3664),(46849,5159),(46849,18090),(46889,11322),(46889,14534),(46889,15160),(46889,158967),(46989,10183),(46989,187056),(47088,10183),(47088,187056),(47327,4479),(47327,41019),(47327,159631),(47327,163055),(47327,172345),(47327,172353),(47327,172354),(47327,172357),(47327,172364),(47327,172365),(47452,1523),(47452,9673),(47452,159278),(47452,207716),(47502,3914),(47502,11322),(47502,14558),(47502,154855),(47502,187844),(47534,2792),(47534,4076),(47534,10048),(47534,10081),(47534,10183),(47534,10199),(47534,10623),(47534,14557),(47534,154842),(47534,156330),(47534,156331),(47534,156332),(47534,209476),(47607,1156),(47607,10556),(47607,10707),(47607,41214),(47607,187056),(47686,10183),(47692,9937),(47692,14676),(47816,6075),(47889,10183),(47890,487),(47890,818),(47890,1160),(47890,1949),(47890,2598),(47890,2904),(47890,9826),(47890,10183),(47890,10541),(47890,192125),(47890,223344),(47933,12026),(47933,14909),(47964,258),(47964,591),(47964,2139),(47964,10685),(47964,18074),(47964,186447),(47964,186450),(48034,579),(48034,1655),(48034,3390),(48034,10556),(48034,14886),(48034,34145),(48034,40842),(48034,47018),(48034,155939),(48034,166120),(48034,166121),(48034,166123),(48034,166124),(48034,166125),(48034,166126),(48034,166129),(48034,166132),(48034,166139),(48035,6150),(48035,10183),(48035,11001),(48035,18070),(48035,161534),(48138,444),(48138,612),(48138,732),(48138,1749),(48138,3071),(48138,11435),(48138,11612),(48138,155751),(48171,716),(48171,8608),(48171,11612),(48171,17986),(48171,159940),(48171,170577),(48171,172232),(48171,172240),(48171,172242),(48171,172246),(48171,172248),(48171,172251),(48217,254),(48217,2041),(48217,5420),(48217,9673),(48217,9748),(48217,9826),(48217,13129),(48217,207928),(48231,818),(48231,2833),(48231,2842),(48231,5565),(48231,9888),(48231,10181),(48231,11333),(48231,11513),(48231,185722),(48289,966),(48289,3037),(48289,4289),(48289,4924),(48289,41307),(48289,41308),(48289,41309),(48309,378),(48309,1563),(48309,9748),(48309,10224),(48309,11263),(48340,1964),(48340,4237),(48340,4414),(48572,186),(48572,1013),(48572,1499),(48572,4108),(48572,5950),(48572,5997),(48572,10199),(48572,11479),(48572,164810),(48572,179430),(48572,179431),(48620,6075),(48620,18396),(48620,34124),(48620,34125),(48620,34126),(48988,1157),(48988,5779),(48988,6038),(48988,6089),(48988,9713),(49010,293),(49010,549),(49010,1366),(49010,1667),(49010,3508),(49010,4565),(49010,7002),(49010,11221),(49010,14546),(49010,14707),(49010,14819),(49010,14898),(49010,14899),(49010,14900),(49010,14901),(49010,18077),(49010,18078),(49010,18081),(49010,18082),(49010,18083),(49010,18085),(49010,18086),(49010,18087),(49010,18088),(49013,830),(49013,9663),(49013,10267),(49013,11500),(49013,12392),(49013,179431),(49017,3133),(49017,3633),(49017,4197),(49017,14643),(49017,213097),(49017,214410),(49017,225470),(49017,231407),(49017,232534),(49018,2723),(49018,10114),(49018,14651),(49018,179430),(49020,966),(49020,1209),(49020,6054),(49020,6733),(49020,10809),(49020,11254),(49021,10084),(49022,242),(49022,567),(49022,818),(49022,1328),(49022,1332),(49022,1421),(49022,2535),(49022,9713),(49022,9986),(49022,10909),(49022,12392),(49022,13027),(49022,13149),(49022,14534),(49022,33648),(49022,160765),(49022,170682),(49022,187844),(49022,202635),(49022,208502),(49022,208503),(49022,208504),(49026,849),(49026,853),(49026,949),(49026,1308),(49026,1437),(49026,3051),(49026,3562),(49026,6969),(49026,7002),(49026,9665),(49026,9715),(49026,9990),(49026,10044),(49026,13015),(49026,14796),(49026,18933),(49026,156082),(49026,156395),(49026,173272),(49026,179093),(49026,230775),(49040,782),(49040,1994),(49040,5729),(49040,11767),(49040,15219),(49040,18067),(49040,18254),(49040,181620),(49040,181623),(49040,181628),(49040,181632),(49040,181635),(49040,181637),(49040,181641),(49040,181644),(49040,181648),(49040,181650),(49040,181651),(49047,4040),(49047,6203),(49047,9882),(49047,14626),(49047,191586),(49049,279),(49049,417),(49049,853),(49049,934),(49049,1761),(49049,3703),(49049,4458),(49049,4565),(49049,5822),(49049,6149),(49049,9685),(49049,9717),(49049,10292),(49049,10349),(49049,12371),(49049,13142),(49049,14687),(49049,14742),(49049,14819),(49049,15009),(49049,15108),(49049,18026),(49049,18712),(49049,162988),(49049,162993),(49049,162994),(49049,185434),(49049,203165),(49049,236590),(49051,483),(49051,603),(49051,604),(49051,606),(49051,609),(49051,611),(49051,1262),(49051,177912),(49051,189092),(49051,189093),(49051,189094),(49051,189098),(49051,189099),(49051,189102),(49051,189103),(49051,189108),(49051,189114),(49051,189115),(49051,189119),(49051,191739),(49081,3356),(49081,6075),(49081,6483),(49081,7813),(49081,234587),(49365,1415),(49365,5202),(49365,9826),(49365,14805),(49365,162846),(49365,228244),(49444,779),(49444,3929),(49444,7379),(49444,8531),(49444,10364),(49444,187056),(49471,521),(49471,992),(49471,165461),(49478,579),(49478,2035),(49478,163607),(49478,208662),(49517,470),(49517,2106),(49517,5265),(49517,11134),(49517,14617),(49517,14618),(49519,4428),(49519,5600),(49519,5905),(49519,10506),(49519,14704),(49519,15300),(49519,18035),(49519,159955),(49519,179430),(49519,179431),(49520,931),(49520,3817),(49520,4896),(49520,6223),(49520,14521),(49520,14522),(49520,33721),(49521,83),(49521,849),(49521,9715),(49521,9717),(49521,10761),(49521,14909),(49521,161184),(49521,163455),(49521,229266),(49524,1321),(49524,4668),(49524,9104),(49524,9748),(49524,10327),(49524,162846),(49524,207199),(49526,242),(49526,11719),(49526,41663),(49526,179431),(49526,181356),(49526,207761),(49526,223183),(49527,9758),(49527,14512),(49527,15219),(49527,40903),(49527,157210),(49527,169271),(49527,209140),(49529,818),(49529,839),(49529,1456),(49529,3801),(49529,7376),(49529,9951),(49529,10028),(49529,10539),(49529,10685),(49529,161511),(49529,163252),(49529,179102),(49529,190320),(49529,195446),(49529,207928),(49529,209714),(49530,974),(49530,2964),(49530,3667),(49530,4565),(49530,4776),(49530,4978),(49530,10562),(49530,14514),(49530,41616),(49530,220487),(49538,591),(49538,1852),(49538,1960),(49538,8828),(49538,9715),(49538,9717),(49538,10761),(49538,12995),(49538,18139),(49538,181558),(49538,208731),(49538,208992),(49730,1442),(49730,2486),(49730,3205),(49730,10700),(49730,12564),(49730,179430),(49730,179431),(49730,187056),(49730,192993),(49787,1422),(49787,3735),(49787,14785),(49787,15097),(49787,15098),(49948,3537),(49948,190719),(49950,931),(49950,1253),(49950,1523),(49950,8039),(49950,9673),(49950,9826),(49950,10519),(49950,12105),(49950,12670),(49950,14784),(49950,14819),(49950,156478),(49950,160077),(49950,171670),(49953,5769),(49953,154896),(49953,209714),(49963,10183),(49963,187056),(50014,787),(50014,818),(50014,2804),(50014,6984),(50014,12425),(50014,13028),(50014,13097),(50014,13098),(50014,13099),(50014,176219),(50014,204173),(50014,208992),(50014,209334),(50035,187056),(50037,2412),(50037,9937),(50037,10770),(50037,15381),(50037,33515),(50037,179430),(50135,9862),(50135,15097),(50135,18165),(50135,231121),(50135,234364),(50321,5202),(50321,9951),(50321,10084),(50321,10539),(50321,12553),(50321,14909),(50321,15101),(50321,179431),(50348,934),(50348,5638),(50348,8881),(50348,11168),(50357,305),(50357,1432),(50357,4884),(50357,5731),(50357,7422),(50357,9366),(50357,9951),(50357,11800),(50357,14626),(50357,15250),(50357,163053),(50359,6285),(50359,8631),(50359,9921),(50359,9923),(50359,179430),(50359,209220),(50456,782),(50456,1430),(50456,3688),(50456,4289),(50456,4613),(50456,6731),(50456,7312),(50456,7345),(50456,10809),(50456,13132),(50456,179431),(50497,918),(50497,2626),(50497,3350),(50497,10093),(50497,10224),(50497,12193),(50497,13153),(50497,14905),(50497,15300),(50497,163186),(50497,172391),(50497,234779),(50538,9937),(50538,10024),(50538,190513),(50544,3739),(50544,9713),(50544,11612),(50544,179430),(50544,179431),(50546,966),(50546,1907),(50546,1936),(50546,4585),(50546,6038),(50546,9673),(50546,9767),(50546,9963),(50601,736),(50601,2297),(50601,12626),(50601,191831),(50620,3133),(50620,9840),(50620,9990),(50620,160184),(50620,185616),(50620,185628),(50620,185629),(50620,185632),(50620,185633),(50620,185644),(50620,185645),(50620,185648),(50620,185653),(50620,185655),(50620,185668),(50620,231407),(50646,815),(50646,1599),(50646,5809),(50646,9094),(50646,9798),(50646,14532),(50646,14534),(50647,458),(50647,2412),(50647,10031),(50647,13100),(50647,179430),(50647,179431),(50698,2249),(50698,3026),(50698,4924),(50698,9853),(50698,10224),(50698,10323),(50698,15040),(50698,15043),(50698,18129),(50698,160174),(50698,163053),(50725,1412),(50725,2251),(50725,3752),(50725,5923),(50725,8438),(50725,8508),(50725,9713),(50725,9758),(50725,12392),(50780,6300),(50780,187056),(50837,739),(50837,6158),(50837,157321),(50837,210012),(50839,592),(50839,4608),(50839,5636),(50839,33471),(50839,165193),(50839,177493),(50839,187243),(50839,209493),(50839,221004),(50848,293),(50848,33501),(50848,33502),(50875,1009),(50875,1157),(50875,5950),(50875,6150),(50875,10183),(50875,15302),(50875,187056),(51052,65),(51052,1991),(51052,179431),(51052,187056),(51052,207317),(51130,9937),(51130,195402),(51162,3905),(51162,4809),(51162,179430),(51162,179431),(51384,10183),(51497,1161),(51497,1812),(51497,6089),(51497,9777),(51497,9844),(51497,10051),(51497,10291),(51497,10562),(51497,10594),(51497,10718),(51497,11148),(51497,12414),(51497,33885),(51497,156395),(51497,159953),(51497,179431),(51540,5514),(51540,5812),(51540,6021),(51540,10201),(51540,41158),(51540,179431),(51588,641),(51588,828),(51588,2098),(51588,6054),(51588,6270),(51588,10266),(51588,15201),(51820,10183),(51828,818),(51828,3485),(51828,8438),(51828,9673),(51828,10556),(51828,10818),(51828,13028),(51828,15160),(51828,178329),(51828,187056),(51828,217405),(51995,1499),(51995,4636),(51995,10706),(51995,11001),(52015,255),(52015,1329),(52015,3133),(52032,2526),(52032,15162),(52032,33671),(52032,187056),(52067,612),(52067,1326),(52067,2864),(52067,6054),(52067,8181),(52067,15111),(52067,15112),(52067,179431),(52449,1517),(52449,10508),(52449,10873),(52449,210605),(52451,9791),(52451,12995),(52451,14577),(52451,207941),(52451,209714),(52462,10183),(52520,3133),(52520,5600),(52520,9410),(52520,9668),(52520,12564),(52520,156395),(52520,176729),(52520,180084),(52520,231407),(53113,10041),(53113,10163),(53113,163599),(53182,18712),(53182,162861),(53182,179431),(53182,182677),(53182,188955),(53182,190999),(53182,195862),(53182,209714),(53256,572),(53256,154937),(53256,156810),(53502,3133),(53502,12377),(53502,157141),(53502,220112),(53862,6270),(53862,10266),(53953,10292),(53953,12339),(53953,14768),(53953,33597),(53953,33598),(54054,801),(54054,818),(54054,9840),(54054,15124),(54054,168333),(54054,187056),(54138,1612),(54138,6054),(54138,9663),(54138,9685),(54138,9882),(54138,9951),(54138,156395),(54138,161176),(54138,179569),(54138,209714),(54518,554),(54518,1329),(54518,2032),(54518,3412),(54518,6157),(54518,6383),(54518,10423),(54518,179430),(54518,179431),(54518,192829),(54580,514),(54580,1010),(54580,3799),(54580,8029),(54580,9713),(54580,186804),(54580,186805),(54702,1562),(54702,6259),(54702,8303),(54702,10714),(54702,12339),(54702,17937),(54702,17947),(54702,17953),(54702,201713),(54897,2783),(54897,3036),(54897,3200),(54897,3929),(54897,4636),(54897,4959),(54897,7477),(55123,10183),(55180,4620),(55180,10183),(55180,12192),(55180,14818),(55180,171070),(55301,9663),(55301,10986),(55301,11095),(55301,234363),(55306,494),(55306,1196),(55306,8627),(55306,10041),(55306,10183),(55306,14831),(55306,15363),(55306,184503),(55306,224563),(55306,224564),(55347,237),(55347,936),(55347,1328),(55347,1862),(55347,1872),(55347,10163),(55347,208390),(55420,4627),(55420,10614),(55420,10756),(55420,13194),(55420,13495),(55420,41608),(55420,41609),(55420,162429),(55465,65),(55465,958),(55465,4552),(55465,5570),(55465,8224),(55465,9663),(55465,11724),(55465,14964),(55465,14988),(55465,209714),(55465,220197),(55561,10183),(55561,187056),(55604,6281),(55604,10590),(55604,156706),(55604,193506),(55604,193507),(55616,3633),(55616,10183),(55720,387),(55720,2105),(55720,2356),(55720,9276),(55720,12423),(55720,33608),(55720,33609),(55721,271),(55721,931),(55721,1721),(55721,3431),(55721,3584),(55721,5248),(55721,10050),(55721,10329),(55721,10707),(55721,10955),(55721,11316),(55721,12392),(55721,39833),(55721,40879),(55721,155049),(55721,155939),(55721,172454),(55721,174960),(55721,175321),(55721,193719),(55721,208847),(55779,10170),(55779,14540),(55779,14541),(55779,14542),(55779,179431),(55779,209714),(55787,3199),(55787,14613),(55787,34134),(55831,10183),(56288,470),(56288,3650),(56288,4289),(56288,11134),(56292,1721),(56292,9663),(56292,10364),(56292,14601),(56292,17992),(56292,156395),(56292,156767),(56491,526),(56491,840),(56491,1562),(56491,3800),(56601,1480),(56601,6075),(56601,9672),(56601,10235),(56666,236),(56666,963),(56666,2342),(56666,4743),(56666,9673),(56666,41385),(56715,4379),(56715,9714),(56715,12026),(56715,12554),(56715,33396),(56715,186760),(56715,227887),(56930,1262),(56930,5721),(56930,34139),(56930,211062),(57022,10183),(57089,616),(57089,1994),(57089,4174),(57089,9663),(57089,10159),(57089,10947),(57089,179430),(57089,179431),(57119,12532),(57119,13027),(57119,14514),(57119,15188),(57120,1321),(57120,1897),(57120,2322),(57120,3352),(57120,3591),(57120,10235),(57120,10322),(57120,10807),(57120,34135),(57120,187056),(57157,931),(57157,10123),(57157,13028),(57157,15160),(57157,33457),(57157,232763),(57158,603),(57158,604),(57158,606),(57158,611),(57158,12554),(57158,177912),(57158,234213),(57165,1449),(57165,2033),(57165,2035),(57165,2036),(57165,8985),(57165,161170),(57165,161172),(57165,162861),(57165,162862),(57165,166457),(57165,209714),(57201,1556),(57201,2673),(57201,5385),(57201,5901),(57201,9104),(57201,9503),(57201,10685),(57201,10909),(57201,13008),(57201,178867),(57201,179419),(57201,222787),(57201,228232),(57212,2504),(57212,2673),(57212,11332),(57212,13129),(57212,18029),(57212,33457),(57212,156234),(57212,157960),(57212,157961),(57214,2016),(57214,6270),(57214,8181),(57214,8508),(57214,11870),(57214,13130),(57214,15162),(57214,33910),(57214,160517),(57214,171134),(57214,182145),(57214,182147),(57214,182148),(57214,182163),(57294,1930),(57294,9716),(57294,10123),(57294,10712),(57294,11318),(57294,33457),(57294,33731),(57294,162993),(57294,165347),(57431,2604),(57431,179431),(57612,630),(57612,4676),(57612,155529),(57612,156395),(57612,209714),(57612,211142),(57612,211143),(57800,183413),(57800,183414),(57800,183415),(57800,183418),(57800,183421),(57800,183422),(57800,183425),(57800,193193),(57800,193194),(57800,193196),(57825,958),(57825,10540),(57825,165212),(57825,177907),(57825,187056),(57876,163053),(57876,177163),(58151,813),(58151,3133),(58151,3301),(58151,9714),(58151,10532),(58224,444),(58224,1946),(58224,2172),(58224,3028),(58224,5982),(58224,9736),(58224,12971),(58224,14866),(58224,41310),(58224,41311),(58224,179430),(58224,179431),(58233,1529),(58233,1918),(58233,2569),(58233,3914),(58233,4289),(58233,9663),(58233,9678),(58233,15267),(58233,15268),(58233,15269),(58233,15270),(58233,179430),(58233,191600),(58428,139),(58428,321),(58428,4552),(58428,6152),(58428,13161),(58428,157337),(58428,157344),(58428,157409),(58428,201748),(58428,210012),(58431,818),(58431,4565),(58431,9390),(58431,10360),(58431,12377),(58431,156501),(58431,157286),(58431,210085),(58431,222512),(58431,222513),(58492,3485),(58492,10267),(58492,179431),(58574,1752),(58574,10028),(58574,18023),(58595,2011),(58595,2343),(58595,3205),(58595,4978),(58595,5774),(58595,9758),(58595,15184),(58595,161302),(58595,169341),(58595,169343),(58595,173003),(58595,181976),(58595,199814),(58680,4513),(58680,9673),(58680,168346),(58680,187056),(58882,3177),(58882,179431),(59108,1418),(59108,4543),(59108,12547),(59108,15275),(59108,18525),(59108,33632),(59108,156640),(59108,158750),(59108,159325),(59108,159330),(59108,159333),(59108,159334),(59108,159339),(59108,159341),(59108,159343),(59108,159346),(59108,159350),(59436,90),(59436,437),(59436,703),(59436,818),(59436,888),(59436,3691),(59436,4379),(59436,5152),(59436,5609),(59436,6162),(59436,12438),(59436,155797),(59440,974),(59440,4613),(59440,9849),(59440,9917),(59440,10508),(59440,14666),(59440,18543),(59440,33457),(59440,33610),(59440,33611),(59678,542),(59678,2407),(59678,3713),(59678,5404),(59678,5500),(59678,5638),(59678,8224),(59678,9008),(59678,9775),(59678,9844),(59678,9951),(59678,11514),(59678,14536),(59678,40870),(59678,190530),(59728,579),(59728,963),(59728,3739),(59728,6075),(59728,6157),(59728,6269),(59728,8338),(59728,9672),(59728,9791),(59728,10235),(59728,155236),(59859,853),(59859,1308),(59859,8828),(59859,9715),(59859,179430),(59859,213104),(59860,660),(59860,10325),(59860,11200),(59860,14712),(59860,14733),(59860,34061),(59861,1517),(59861,3616),(59861,10508),(59861,10738),(59861,14549),(59861,14737),(59861,14738),(59861,15156),(59861,167608),(59861,187282),(59917,10601),(59961,591),(59961,14819),(59961,41668),(59961,176802),(59961,176806),(59961,176809),(59962,128),(59962,6054),(59962,13043),(59962,182178),(59962,182185),(59962,182195),(59962,182196),(59962,182198),(59962,182204),(59965,591),(59965,822),(59965,1701),(59965,1721),(59965,1930),(59965,3562),(59965,4613),(59965,6435),(59965,6614),(59965,8508),(59965,10562),(59965,11612),(59965,13008),(59965,13130),(59967,236),(59967,782),(59967,1803),(59967,2964),(59967,4379),(59967,4565),(59967,4948),(59967,5202),(59967,9826),(59967,10291),(59967,10614),(59967,13129),(59967,14819),(59967,15009),(59967,18179),(59967,177964),(59967,207268),(59968,1155),(59968,1156),(59968,7629),(59968,9031),(59968,179431),(60243,1625),(60243,6069),(60243,10594),(60243,13097),(60243,15160),(60243,18009),(60243,155209),(60243,158101),(60243,171848),(60243,178656),(60304,616),(60304,4252),(60304,10028),(60304,10842),(60304,11173),(60304,14687),(60304,14819),(60304,40931),(60304,156075),(60304,177894),(60304,177900),(60304,177901),(60304,179431),(60304,190022),(60304,192655),(60304,209714),(60307,818),(60307,13035),(60308,240),(60308,818),(60308,1480),(60308,4298),(60308,6075),(60308,9104),(60308,41153),(60308,41604),(60308,158470),(60308,159431),(60308,204841),(60309,8570),(60309,9682),(60309,10410),(60309,10909),(60309,11038),(60309,12390),(60309,14519),(60309,15126),(60309,15137),(60309,15138),(60400,2646),(60420,6674),(60420,159945),(60420,159946),(60420,159947),(60420,159948),(60421,566),(60421,9833),(60421,10180),(60421,187056),(60463,6270),(60463,187056),(60599,9665),(60599,184116),(61012,11322),(61012,12446),(61012,41645),(61012,157690),(61012,177872),(61012,177875),(61012,177877),(61012,179430),(61012,209714),(61038,246),(61038,520),(61038,187056),(61337,745),(61337,8201),(61337,11612),(61337,210018),(61752,10183),(61752,10226),(61752,33451),(61752,155761),(61752,207583),(61791,2051),(61791,2172),(61791,4392),(61791,4565),(61791,12393),(61791,14759),(61791,15149),(61791,158025),(61791,158101),(61891,497),(61891,2142),(61891,5933),(61891,14531),(61891,33501),(61891,179431),(61891,190532),(62008,12532),(62008,14768),(62008,165547),(62008,188950),(62008,189141),(62116,154794),(62116,154796),(62116,154797),(62116,160279),(62177,388),(62177,526),(62177,3930),(62177,4152),(62177,4393),(62177,4896),(62177,10468),(62177,14753),(62177,15161),(62177,41538),(62177,53995),(62177,162715),(62177,179430),(62177,181181),(62177,187056),(62177,189098),(62177,209714),(62204,4428),(62204,159955),(62204,178645),(62204,183414),(62204,192918),(62206,3330),(62206,4414),(62206,5983),(62206,9791),(62206,10267),(62206,179430),(62211,1299),(62211,5984),(62211,6186),(62211,10336),(62211,12392),(62211,13160),(62211,163303),(62211,179430),(62213,616),(62213,2883),(62213,3133),(62213,10541),(62213,11860),(62213,15375),(62213,33505),(62213,41410),(62213,155733),(62213,160269),(62213,160274),(62213,160279),(62213,162846),(62213,190941),(62213,193263),(62214,367),(62214,10121),(62214,12999),(62214,13038),(62214,15162),(62214,157164),(62214,158395),(62215,11327),(62215,14755),(62215,14756),(62215,14757),(62402,204725),(62402,207928),(62630,3998),(62630,13068),(62630,15078),(62677,4344),(62677,10183),(62677,187056),(62728,828),(62728,2187),(62728,2987),(62728,3030),(62728,6157),(62728,9748),(62728,10726),(62728,11343),(62728,14819),(62728,15079),(62764,2013),(62764,3205),(62764,4252),(62764,7325),(62764,9990),(62764,10842),(62764,15206),(62764,15320),(62764,46951),(62764,169339),(62764,169341),(62764,169343),(62764,169350),(62764,169356),(62764,169358),(62764,169362),(62764,169366),(62764,169367),(62764,169378),(62764,179431),(62835,542),(62835,6464),(62835,12367),(62835,15155),(62837,630),(62837,5202),(62837,11060),(62837,13088),(62837,41605),(62838,613),(62838,1675),(62838,42923),(62838,43591),(62838,48711),(62838,68820),(62838,171366),(62838,179431),(63006,7090),(63006,33067),(63006,33088),(63020,1900),(63020,10183),(63020,187056),(63020,207901),(63020,208396),(63287,570),(63287,726),(63287,10183),(63492,818),(63492,3090),(63492,4620),(63492,9094),(63492,10364),(63492,11112),(63492,156478),(63492,162271),(63492,202429),(63492,224876),(64328,4344),(64328,12998),(64328,14544),(64328,156706),(64328,156708),(64328,179431),(64639,531),(64639,570),(64639,1010),(64639,1157),(64639,3875),(64639,7149),(64639,9897),(64639,14903),(64678,490),(64678,1310),(64678,2679),(64678,5918),(64678,6054),(64678,11870),(64678,13130),(64678,15157),(64678,15158),(64682,818),(64682,1326),(64682,1523),(64682,3929),(64682,209714),(64685,818),(64685,1646),(64685,2849),(64685,8783),(64685,10201),(64685,11336),(64685,14512),(64685,40934),(64685,40936),(64685,172291),(64685,214463),(64686,233),(64686,236),(64686,1462),(64686,9672),(64686,18098),(64686,155198),(64686,155242),(64686,183528),(64686,209714),(64688,3230),(64688,6270),(64688,9755),(64688,9964),(64688,10988),(64688,11199),(64688,167316),(64688,167541),(64688,179431),(64689,383),(64689,395),(64689,642),(64689,818),(64689,2708),(64689,3681),(64689,9826),(64689,11221),(64689,11503),(64689,11578),(64689,13142),(64689,15009),(64690,5956),(64690,8636),(64690,10183),(64690,11148),(64690,14687),(64690,14819),(64690,15483),(64690,47021),(64690,154892),(64690,159700),(64690,167352),(64690,181324),(64690,226754),(64690,234367),(64720,4917),(64720,10150),(64720,10309),(64720,12332),(64807,494),(64807,6075),(64807,9823),(64807,172971),(64807,218099),(65055,2988),(65055,3134),(65055,11719),(65055,15097),(65055,179430),(65057,1668),(65057,4604),(65057,5600),(65057,11501),(65057,34145),(65057,155879),(65057,155881),(65057,155882),(65057,155884),(65057,155888),(65057,155891),(65057,155892),(65057,155894),(65057,155896),(65057,177259),(65086,212),(65086,1328),(65086,9714),(65086,9748),(65086,10909),(65086,13094),(65086,15032),(65086,155730),(65086,155881),(65086,162846),(65086,188989),(65203,4344),(65203,10229),(65203,156764),(65203,162487),(65203,193649),(65203,215678),(65448,378),(65448,209476),(65749,733),(65749,2683),(65749,4344),(65749,9673),(65754,570),(65754,736),(65754,818),(65754,917),(65754,2157),(65754,2652),(65754,4470),(65754,5340),(65754,9714),(65754,10371),(65754,10714),(65754,10941),(65754,12361),(65754,155555),(65754,156386),(65754,197952),(65754,207691),(65759,3028),(65759,4344),(65759,179430),(65759,209714),(66025,10183),(66125,1228),(66125,2526),(66125,5657),(66125,9872),(66125,11112),(66125,15162),(66125,34079),(66125,159103),(66125,185722),(66125,193760),(66125,212609),(66195,8181),(66195,33341),(66195,33342),(66195,33343),(66195,33454),(66767,190341),(66942,9673),(66942,9715),(66942,10183),(66942,10267),(67373,181363),(67660,5999),(67660,9673),(67660,14534),(67660,159753),(67660,179431),(67660,182293),(67660,182295),(67660,199688),(67675,6029),(67675,11634),(67675,179431),(67911,7344),(67911,12396),(67913,549),(67913,1936),(67913,3391),(67913,15202),(67913,15203),(68179,9831),(68179,9951),(68179,10084),(68179,10685),(68179,13194),(68179,14626),(68179,231097),(68179,234778),(68202,187056),(68412,10183),(68684,6270),(68684,9826),(68684,12339),(68684,12416),(68718,801),(68718,1701),(68718,3136),(68718,3679),(68718,6054),(68718,9713),(68718,9748),(68718,9823),(68718,10084),(68718,10950),(68718,12425),(68718,15017),(68718,33780),(68718,160324),(68718,163129),(68718,179430),(68718,187376),(68718,188772),(68718,202703),(68718,206687),(68718,207928),(68721,949),(68721,5597),(68721,6335),(68721,8613),(68721,8828),(68721,9715),(68721,9717),(68721,12555),(68721,173776),(68721,179430),(68721,180547),(68721,188721),(68721,209714),(68721,209748),(68721,209822),(68721,209823),(68722,447),(68722,459),(68722,4518),(68722,13017),(68722,33457),(68722,159028),(68722,159314),(68722,162766),(68722,173179),(68722,177882),(68724,4565),(68724,156039),(68724,179823),(68726,4565),(68726,10891),(68726,11100),(68726,12332),(68726,156395),(68726,179431),(68726,209714),(68727,1453),(68727,14789),(68727,156835),(68727,159343),(68727,179431),(68728,291),(68728,616),(68728,2343),(68728,3929),(68728,4662),(68728,44451),(68728,172365),(68728,177912),(68728,209714),(68734,591),(68734,1157),(68734,1937),(68734,2020),(68734,2430),(68734,2519),(68734,2562),(68734,5565),(68734,15292),(68734,34061),(68734,159306),(68734,159514),(68734,161996),(68734,165340),(68734,185677),(68734,185684),(68734,185686),(68734,185692),(68734,185699),(68734,185702),(68734,208289),(68735,282),(68735,603),(68735,606),(68735,2343),(68735,3713),(68735,9717),(68735,10821),(68735,14946),(68735,41645),(68735,177912),(68735,189113),(68735,211674),(68735,228295),(68735,234213),(68737,2343),(68737,4238),(68737,177895),(68737,177900),(68737,177901),(68737,223438),(68737,234213),(68812,586),(68812,1946),(68812,2708),(68812,4580),(68812,5638),(68812,6259),(68812,9672),(68812,9890),(68812,11260),(68812,14831),(68812,33421),(68812,33702),(68812,157481),(68812,168179),(68812,177964),(68812,190636),(68812,238192),(68818,642),(68818,4781),(68818,44042),(68818,44413),(68818,47972),(68818,130989),(68924,818),(68924,1228),(68924,4543),(68924,10041),(68924,10183),(69640,236),(69640,6625),(69640,33768),(69640,187056),(69668,15235),(69668,186694),(69668,186695),(69848,6091),(69848,6092),(69848,10141),(69848,215184),(70006,255),(70006,4392),(70006,5091),(70006,5572),(70006,6075),(70006,11772),(70006,155646),(70006,156159),(70006,156160),(70006,156162),(70160,3298),(70160,4565),(70160,11322),(70160,18101),(70160,18106),(70160,18109),(70160,18249),(70160,53995),(70160,164092),(70160,179751),(70160,179776),(70160,179778),(70160,179780),(70160,179781),(70160,179803),(70160,223438),(70435,3070),(70435,4289),(70435,10084),(70435,14967),(70435,157194),(70436,351),(70436,1936),(70436,2404),(70436,6165),(70436,7172),(70436,10714),(70436,15145),(70436,155317),(70436,158935),(70436,158938),(70436,158940),(70436,158950),(70436,158951),(70436,158952),(70478,293),(70478,10768),(70478,190370),(70670,13095),(70670,14789),(70670,15478),(70670,158927),(70687,2964),(70687,3183),(70687,4379),(70687,187056),(70868,13149),(70868,14724),(70868,33476),(70868,40916),(70868,40917),(70875,1729),(70875,1900),(70875,5888),(70875,10637),(70875,18339),(70875,18378),(70875,33577),(70875,33580),(70875,33582),(70875,33585),(70875,33586),(70875,33587),(70981,803),(70981,4565),(70981,9951),(70981,15285),(70981,163402),(70981,168835),(70981,179430),(70981,181895),(70981,181900),(70981,181905),(70981,181908),(70981,233300),(70981,236312),(71157,187056),(71469,14909),(71469,34061),(71469,186450),(71469,221871),(71469,221872),(71547,966),(71547,9826),(71552,1157),(71552,9663),(71552,18187),(71552,33451),(71552,161158),(71552,161213),(71552,179173),(71552,179178),(71552,179431),(71676,345),(71676,3023),(71676,4062),(71676,6951),(71676,8828),(71676,9715),(71676,14735),(71676,14999),(71676,15002),(71676,236185),(71679,1852),(71679,4565),(71679,9663),(71679,10410),(71679,12369),(71679,12377),(71679,41645),(71679,186450),(71679,188955),(71679,188957),(71679,188959),(71679,188973),(71679,197990),(71688,592),(71688,2569),(71688,10596),(71688,33844),(71688,33845),(71688,33846),(71688,33847),(71688,33848),(71688,33850),(71688,33852),(71688,33856),(71688,33857),(71688,33858),(71688,33860),(71688,187056),(71688,208289),(71805,2041),(71805,3799),(71805,12988),(71805,41599),(71805,207750),(71805,207928),(71859,14632),(71859,14819),(71859,17987),(71859,17989),(71859,17990),(71859,17992),(71859,17993),(71859,187056),(71864,6348),(71864,188086),(71864,193191),(71864,193192),(71866,6271),(71866,187056),(71880,179431),(72086,9748),(72086,9777),(72086,9937),(72105,6054),(72105,9673),(72105,158162),(72105,187065),(72105,187084),(72113,1439),(72113,1880),(72113,1939),(72113,6060),(72113,10123),(72113,13028),(72113,40882),(72113,41153),(72113,41154),(72113,41155),(72113,41156),(72190,4565),(72190,12332),(72190,12377),(72190,160381),(72190,180635),(72190,186565),(72197,9823),(72197,10121),(72197,12988),(72197,179430),(72197,179431),(72207,572),(72207,582),(72207,1946),(72207,3609),(72207,3713),(72207,4891),(72207,6167),(72207,9673),(72207,11268),(72207,13027),(72207,14983),(72207,18293),(72207,160588),(72207,178863),(72207,189093),(72207,198673),(72213,5905),(72213,6150),(72331,840),(72331,3133),(72331,163671),(72331,179585),(72331,207928),(72331,209409),(72331,209714),(72358,9468),(72358,11204),(72359,179431),(72359,187056),(72387,180366),(72431,1956),(72431,2533),(72431,15089),(72545,10364),(72545,40894),(72545,156091),(72545,179431),(72545,209714),(72559,321),(72559,782),(72559,1328),(72559,1576),(72559,2534),(72559,3467),(72559,8570),(72559,10084),(72559,10410),(72559,14601),(72559,14643),(72559,18420),(72559,191574),(72570,732),(72570,1453),(72570,9672),(72570,11469),(72570,13063),(72570,191100),(72571,616),(72571,1156),(72571,9663),(72571,9675),(72571,10224),(72571,163053),(72710,818),(72710,1583),(72710,4565),(72710,14900),(72710,14909),(72710,179431),(72710,212760),(72710,220392),(72913,502),(72913,526),(72913,2217),(72913,5331),(72913,5638),(72913,6054),(72913,10176),(72913,13065),(72913,14638),(72914,3429),(72914,18236),(72914,68649),(72914,68650),(72976,840),(72976,6001),(72976,10141),(72976,155294),(72976,159103),(72976,179585),(72976,185718),(72976,185722),(72976,185723),(72976,185728),(72976,185730),(72976,185733),(72976,185736),(72976,185740),(72976,185742),(72976,209409),(73191,10551),(73247,964),(73247,2964),(73247,3713),(73247,4663),(73247,9503),(73247,14544),(73532,12987),(73532,33699),(73532,34013),(73532,34014),(73567,900),(73567,1419),(73567,1556),(73567,5011),(73567,6259),(73567,10427),(73567,10594),(73567,10968),(73567,11363),(73567,15167),(73567,155794),(73567,207268),(73567,208518),(73567,220628),(73567,237851),(73873,1307),(73873,4729),(73873,13097),(73935,3133),(73935,9673),(73935,187056),(73937,720),(73937,818),(73937,2676),(73937,3800),(73937,18006),(73937,18007),(73937,179431),(73981,490),(73981,14636),(73981,167696),(74465,2172),(74510,9716),(74534,612),(74534,818),(74534,14636),(74534,159753),(74534,172971),(74534,182239),(74534,182250),(74534,182256),(74643,887),(74643,6966),(74643,10732),(74643,12396),(74643,15162),(74643,41390),(74643,154800),(74643,154802),(74643,154806),(74643,158225),(74643,162262),(74643,164641),(74643,188647),(74725,612),(74725,1157),(74725,2708),(74725,4884),(74725,5774),(74725,6158),(74725,10093),(74725,13112),(74725,14707),(74725,157775),(74725,160588),(74725,162380),(74725,162745),(74725,177964),(74725,206440),(74725,209568),(74725,210012),(74777,13149),(74777,206086),(74777,219989),(75033,5565),(75033,5856),(75174,567),(75174,1533),(75174,1994),(75174,3593),(75174,5774),(75174,9743),(75174,9880),(75174,10349),(75174,12617),(75174,13073),(75174,15265),(75174,34079),(75174,155235),(75174,155372),(75174,158130),(75174,158176),(75174,168679),(75174,168869),(75174,179430),(75174,188933),(75174,188952),(75174,212430),(75531,1646),(75531,165340),(75612,1612),(75612,4565),(75612,9882),(75612,11930),(75612,156395),(75612,186497),(75638,9853),(75638,14742),(75638,161198),(75656,90),(75656,974),(75656,1328),(75656,1812),(75656,1953),(75656,2343),(75656,2411),(75656,5340),(75656,10051),(75656,10410),(75656,10594),(75656,10685),(75656,14512),(75656,14570),(75656,14601),(75674,339),(75674,3588),(75674,10503),(75674,11115),(75674,11219),(75674,13132),(75674,15038),(75674,158372),(75674,161516),(75674,161520),(75674,161521),(75674,161530),(75674,161534),(75674,161536),(75674,161538),(75674,179431),(75780,818),(75780,1589),(75780,5340),(75780,6149),(75780,180124),(75861,894),(75861,5565),(75861,14964),(75900,818),(75900,5565),(75900,6165),(75900,9073),(75986,1523),(75986,2135),(75986,2483),(75986,3344),(75986,9673),(75986,9840),(75986,10968),(75986,34094),(75986,187056),(76025,445),(76025,1155),(76025,5906),(76025,14512),(76025,14886),(76025,166770),(76163,3800),(76163,9791),(76163,12617),(76163,14819),(76163,33678),(76163,159753),(76163,162085),(76163,162487),(76163,179305),(76163,179321),(76170,233),(76170,1462),(76170,1852),(76170,2504),(76170,8828),(76170,9715),(76170,9717),(76170,10761),(76170,179431),(76203,1294),(76203,1930),(76203,2831),(76203,3136),(76203,4225),(76203,15189),(76203,155794),(76203,190477),(76203,197643),(76203,207928),(76203,209069),(76203,209070),(76285,351),(76285,2034),(76285,14667),(76285,180548),(76285,180909),(76285,180912),(76285,209714),(76285,221835),(76285,221836),(76285,223438),(76338,8828),(76338,9715),(76338,9717),(76338,171783),(76338,179101),(76338,179430),(76338,179431),(76338,180547),(76338,209714),(76338,209818),(76341,2964),(76341,3713),(76341,4458),(76341,4565),(76341,5657),(76341,10084),(76341,10349),(76341,10562),(76341,155499),(76341,190954),(76341,212516),(76349,779),(76349,1938),(76349,2020),(76349,11221),(76349,12371),(76349,14687),(76349,14707),(76349,18543),(76487,588),(76487,2626),(76487,34079),(76487,161261),(76487,163053),(76489,179431),(76492,616),(76492,2343),(76492,2904),(76492,3133),(76492,3633),(76492,4062),(76492,5891),(76492,6737),(76492,11155),(76492,12377),(76492,160130),(76492,179431),(76492,179860),(76492,181068),(76492,231407),(76493,190066),(76494,818),(76494,2393),(76494,10721),(76494,17986),(76494,160945),(76494,161534),(76494,163699),(76494,180702),(76494,180706),(76494,180715),(76617,9663),(76617,10292),(76617,11545),(76617,12339),(76617,12394),(76617,179430),(76617,179431),(76640,798),(76640,1415),(76640,1562),(76640,1563),(76640,1812),(76640,2286),(76640,10685),(76640,15483),(76640,155499),(76640,156650),(76640,168713),(76649,1394),(76649,1395),(76649,1527),(76649,2859),(76649,3035),(76649,3691),(76649,5096),(76649,6917),(76649,10617),(76649,14906),(76649,41642),(76649,155212),(76649,163398),(76649,180473),(76649,209714),(76726,2350),(76726,5086),(76726,6054),(76726,9957),(76726,10216),(76726,10683),(76726,12105),(76726,13130),(76726,33637),(76726,163053),(76726,179430),(76726,207691),(76726,224279),(76757,306),(76757,9882),(76757,187056),(76757,209714),(76757,212760),(76758,173251),(76758,173254),(76996,10183),(76996,187056),(77016,12670),(77016,188112),(77016,188114),(77016,188124),(77016,188127),(77016,188133),(77016,188134),(77174,2723),(77174,10121),(77174,10541),(77174,10623),(77174,162846),(77174,175387),(77174,179430),(77174,181755),(77174,181820),(77174,181822),(77174,181834),(77174,215191),(77459,1299),(77459,10987),(77459,209714),(77459,231318),(77495,107),(77495,1936),(77495,9433),(77495,10241),(77495,10333),(77495,33347),(77495,212887),(77495,230052),(77866,11429),(77866,15009),(77866,41180),(77866,190165),(77875,456),(77875,494),(77875,4511),(77875,10456),(77875,13042),(77875,14648),(77875,186513),(77877,818),(77877,1157),(77877,164715),(77877,182207),(77877,182210),(77877,182216),(77877,182223),(77930,246),(77930,1196),(77930,3688),(77930,164865),(77930,165492),(77931,10244),(77931,10336),(77931,15072),(77948,1930),(77948,5265),(77948,6086),(77949,236),(77949,392),(77949,1517),(77949,5340),(77949,6152),(77949,9826),(77949,10103),(77949,10224),(77949,10508),(77949,10818),(77949,13073),(77949,155881),(77949,159608),(77949,162342),(77949,162846),(77949,165468),(77950,240),(77950,830),(77950,1566),(77950,3428),(77950,3720),(77950,4455),(77950,6525),(77950,9713),(77950,33637),(77950,167986),(77951,12616),(77951,209714),(77953,6078),(77953,6083),(77953,6085),(77953,181654),(77953,181655),(77953,181656),(77953,181657),(77953,181659),(77953,181668),(77953,181682),(77987,3432),(77987,11258),(77987,155649),(77987,207268),(77987,209074),(77987,212412),(77987,220468),(78149,214956),(78307,378),(78307,2231),(78307,14768),(78307,173186),(78307,187056),(78307,197525),(78373,1415),(78373,1556),(78381,798),(78381,3133),(78381,6783),(78381,13028),(78381,157132),(78381,162846),(78381,207046),(78383,428),(78383,7098),(78383,9748),(78383,9833),(78383,10123),(78383,11612),(78394,10506),(78394,12616),(78394,156395),(78394,158247),(78394,209714),(78394,214549),(78698,4676),(78698,9880),(78698,179430),(78698,179431),(78698,191652),(78698,216921),(79120,237),(79120,1025),(79120,2864),(79120,10183),(79120,10198),(79316,163053),(79694,1706),(79694,6152),(79694,9853),(79694,10224),(79694,10941),(79694,13073),(79694,162846),(79777,789),(79777,1156),(79777,1661),(79777,7973),(79777,14819),(79777,15053),(79777,187056),(79940,1946),(79940,1994),(79940,6490),(79940,11614),(79940,199156),(79940,199157),(80035,279),(80035,5097),(80035,5502),(80035,6038),(80035,6054),(80035,9951),(80035,14632),(80035,14909),(80035,34079),(80035,155888),(80035,176419),(80035,176425),(80215,6186),(80215,187056),(80215,202838),(80215,210383),(80271,10683),(80271,10707),(80271,11870),(80271,13130),(80271,165317),(80271,178945),(80271,187056),(80274,818),(80274,3010),(80274,4238),(80274,5561),(80274,9685),(80274,9882),(80274,10568),(80274,14909),(80274,171803),(80274,207444),(80274,223438),(80278,3434),(80278,6941),(80278,14724),(80278,181012),(80278,188351),(80278,188354),(80278,188356),(80278,188374),(80278,209493),(80304,534),(80304,10291),(80304,18026),(80304,41612),(80304,179430),(80304,179431),(80321,3645),(80321,209714),(80585,4344),(80585,8900),(80585,13130),(80585,165100),(80585,165102),(81005,179411),(81005,189099),(81188,1566),(81188,1991),(81188,3030),(81188,9923),(81188,33597),(81188,41581),(81188,41584),(81188,179431),(81220,10183),(81390,321),(81390,388),(81390,1930),(81390,2483),(81390,3593),(81390,4560),(81390,5827),(81390,8624),(81390,13006),(81796,840),(81796,2095),(81796,2689),(81796,2964),(81796,9882),(81796,15234),(81796,15271),(81796,156039),(81796,190004),(81796,190005),(81836,588),(81836,156063),(81836,156934),(82505,10707),(82505,12090),(82505,14819),(82505,157499),(82505,226774),(82507,793),(82507,904),(82507,1468),(82507,9775),(82507,9826),(82507,11464),(82507,14546),(82507,14755),(82507,15292),(82507,15365),(82507,33407),(82507,34079),(82507,155619),(82507,158111),(82507,160329),(82507,172992),(82507,182022),(82507,185767),(82525,4129),(82525,34061),(82525,156173),(82525,156805),(82525,167536),(82525,168869),(82525,182022),(82525,186219),(82525,186233),(82525,186234),(82525,186239),(82525,186243),(82525,186251),(82525,186265),(82525,186268),(82525,186281),(82532,8631),(82532,9866),(82532,40850),(82532,54016),(82532,54169),(82532,170624),(82532,171993),(82533,3616),(82533,5248),(82533,206298),(82631,9672),(82650,12392),(82650,177804),(82650,179431),(82654,4458),(82654,4565),(82654,12377),(82654,186565),(82654,212760),(82654,223438),(82675,1930),(82675,5733),(82675,11148),(82675,11464),(82675,14819),(82675,18525),(82675,155888),(82675,161994),(82675,163758),(82675,182045),(82675,185815),(82675,185817),(82675,185818),(82679,3335),(82679,9713),(82679,161552),(82679,180193),(82679,188987),(82682,12670),(82682,13142),(82684,1669),(82684,5349),(82684,6075),(82684,172772),(82684,184569),(82687,1436),(82687,7312),(82687,33720),(82687,157499),(82687,187056),(82690,825),(82690,3977),(82690,6733),(82690,10039),(82690,10547),(82690,11124),(82690,155023),(82690,158023),(82690,162936),(82690,179430),(82690,179431),(82690,185859),(82690,185861),(82690,185863),(82690,185867),(82690,185868),(82690,185876),(82690,185880),(82693,246),(82693,276),(82693,795),(82693,818),(82693,894),(82693,3344),(82693,6054),(82693,10226),(82693,41329),(82693,155816),(82693,162970),(82693,189447),(82693,189881),(82695,254),(82695,642),(82695,1411),(82695,1919),(82695,3412),(82695,4344),(82695,5638),(82695,6092),(82695,11196),(82695,13027),(82695,13072),(82695,13092),(82695,15232),(82695,15234),(82695,186951),(82696,188098),(82696,188099),(82700,4565),(82702,494),(82702,1157),(82702,2858),(82702,5895),(82702,9663),(82702,10084),(82702,12554),(82702,157499),(82702,175421),(82702,192913),(82702,209714),(82703,494),(82703,1160),(82703,2051),(82703,2393),(82703,4379),(82703,5202),(82703,5561),(82703,6054),(82703,9825),(82703,10103),(82703,11477),(82703,11478),(82703,15162),(82703,157303),(82703,157894),(82703,176056),(82703,179431),(82703,190100),(82703,193213),(82703,195506),(82703,199093),(82703,208757),(82703,228041),(82990,2101),(82990,3350),(82990,6435),(82990,7942),(82990,14558),(82990,18056),(82990,163053),(82990,171081),(82990,177185),(82990,177201),(82990,177398),(82990,179430),(82990,183896),(82990,185927),(83542,402),(83542,2964),(83542,4565),(83542,159753),(83542,179431),(83542,184584),(83542,187056),(83542,214548),(83588,378),(83588,187056),(83666,41393),(83666,157303),(83666,159869),(83666,169962),(83666,169964),(83666,169965),(83666,169967),(83666,169970),(83666,169977),(83666,169978),(83666,169981),(83666,169990),(83666,169991),(83666,169993),(83666,169995),(83666,174316),(83666,179431),(83686,180404),(83686,180405),(83686,180412),(83686,180413),(83770,818),(83770,1227),(83770,2398),(83770,2483),(83770,3739),(83770,4528),(83770,6054),(83770,7312),(83770,10776),(83770,10794),(83770,11732),(83770,13028),(83770,13094),(83770,15291),(83770,18049),(83770,34030),(83770,159431),(83770,163182),(83770,167043),(83770,168442),(83770,168447),(83860,2393),(83860,3616),(84174,3584),(84174,3688),(84174,5248),(84174,9824),(84174,11494),(84174,13027),(84174,155049),(84174,160246),(84174,187056),(84174,221475),(84174,233618),(84174,236373),(84175,973),(84175,2215),(84175,2486),(84175,3528),(84175,5769),(84175,8029),(84175,9750),(84175,9970),(84175,14527),(84175,33648),(84175,160069),(84175,160071),(84175,160073),(84175,160075),(84175,166958),(84175,166959),(84175,166964),(84175,166971),(84175,166973),(84175,166974),(84175,166979),(84175,166980),(84175,166989),(84175,166992),(84175,166993),(84175,166995),(84178,9713),(84178,156630),(84178,187056),(84184,5625),(84184,10556),(84184,15160),(84184,178329),(84200,9964),(84200,12392),(84200,155761),(84200,204950),(84200,220192),(84204,1299),(84204,14985),(84204,40879),(84204,185650),(84318,2070),(84318,6075),(84318,6496),(84318,176746),(84329,6054),(84329,14544),(84329,163484),(84329,190075),(84332,4379),(84355,1156),(84355,1328),(84355,9840),(84355,11826),(84355,14534),(84355,171993),(84355,187056),(84892,367),(84892,1328),(84892,2398),(84892,5091),(84892,10519),(84892,10683),(84892,18068),(84892,33910),(84892,157303),(84892,158199),(84892,158968),(84892,160500),(84892,163037),(84892,180861),(84892,223438),(85350,1850),(85350,2783),(85350,5768),(85350,9825),(85350,10303),(85350,10683),(85350,15025),(85350,15160),(85350,18035),(85350,184439),(85350,212643),(85446,186730),(85446,186736),(85446,186743),(85446,186746),(85446,186747),(86304,9715),(86331,254),(86331,293),(86331,572),(86331,738),(86331,9673),(86331,9835),(86331,9840),(86331,11510),(86331,12420),(86331,13059),(86331,15136),(86331,33494),(86331,33513),(86331,33998),(86331,156433),(86331,189933),(86331,189934),(86331,190370),(86549,8029),(86549,9840),(86549,10198),(86812,736),(86812,10183),(86812,158672),(86812,159028),(86825,10092),(86829,6382),(86829,6706),(86829,10228),(86829,14512),(86829,159944),(86829,193419),(86829,208992),(86834,3036),(86834,9649),(86834,195790),(86834,209714),(86837,428),(86837,2176),(86837,4995),(86837,5600),(86837,6027),(86837,9673),(86837,18115),(86837,40895),(86837,156151),(86837,157769),(86837,181331),(86837,227023),(86838,236),(86838,567),(86838,572),(86838,888),(86838,1449),(86838,1721),(86838,1930),(86838,8508),(86838,9826),(86838,11454),(86838,12670),(86838,13142),(86838,14601),(86838,15009),(86838,186892),(86838,201858),(87093,1157),(87093,2679),(87093,3012),(87101,83),(87101,310),(87101,679),(87101,1373),(87101,2964),(87101,4379),(87101,4565),(87101,9663),(87101,161151),(87101,179431),(87101,209714),(87421,4565),(87421,9748),(87421,9951),(87421,13194),(87421,156395),(87428,181514),(87428,181518),(87428,181523),(87428,181531),(87499,3271),(87499,9826),(87499,156388),(87499,221911),(87499,221912),(87499,221913),(87502,718),(87502,3800),(87502,11314),(87502,11461),(87502,12617),(87502,41308),(87502,41596),(87502,158436),(87502,185950),(87502,185952),(87502,185953),(87502,185954),(87502,185957),(87502,185959),(87502,185969),(87502,185974),(87567,2393),(87567,6038),(87567,15160),(87567,178131),(87729,254),(87729,2020),(87729,5565),(87729,8570),(87729,9682),(87818,9253),(87818,159753),(87818,179431),(87818,187056),(87818,215404),(87825,515),(87825,1480),(87825,1484),(87825,1686),(87825,4995),(87825,6075),(87825,8732),(87825,11333),(87825,186903),(87825,186906),(87825,186908),(87825,200574),(87825,229043),(87825,229046),(87825,229049),(87825,229050),(87826,41525),(87826,163223),(87826,178440),(87826,185979),(87826,185983),(87827,270),(87827,2580),(87827,4096),(87827,4809),(87827,6150),(87827,12971),(87827,18068),(87827,158022),(87827,163000),(87827,163014),(87943,187056),(88005,1423),(88005,7312),(88005,10150),(88005,187056),(88036,10893),(88036,179431),(88751,3347),(88751,10506),(88751,12616),(88751,166958),(88751,209714),(88794,5565),(88794,6165),(88794,34023),(89325,179430),(89492,1157),(89492,10103),(89492,10235),(89492,179431),(89540,293),(89540,155071),(89540,156393),(89708,44443),(89708,168277),(89708,174871),(89708,185002),(89708,187354),(89708,187355),(89708,187356),(89708,187357),(89750,3983),(89750,8496),(89750,162126),(89750,187056),(89861,131),(89861,8250),(89861,14712),(90369,10163),(90369,13130),(90369,193400),(90369,215787),(90369,223438),(90414,187056),(91070,1009),(91070,1253),(91070,6054),(91070,9457),(91070,12670),(91070,13043),(91070,13149),(91070,187056),(91076,10965),(91076,156273),(91076,163110),(91122,5608),(91122,187056),(91314,9663),(91314,9951),(91314,10607),(91314,10891),(91314,14544),(91314,156395),(91314,166594),(91586,3358),(91586,9712),(91586,15001),(91586,18035),(91586,162846),(91586,206571),(92182,6152),(92182,9714),(92182,9937),(92182,173360),(92182,173361),(92182,173362),(92182,173367),(92182,173368),(92182,187056),(92591,17989),(92591,160321),(92591,160322),(92591,160511),(92591,163072),(92591,179010),(92591,179011),(92591,179012),(92591,179014),(92591,179017),(92591,179018),(92591,179021),(92591,179022),(92591,179431),(93456,4289),(93456,7397),(93456,13072),(93456,15300),(93456,179431),(93456,184783),(93456,190999),(93456,209714),(93856,1618),(93856,1738),(93856,3275),(93856,5159),(93856,7321),(93856,9743),(93856,11371),(93856,163086),(94329,9730),(94329,14873),(94329,156640),(94329,156641),(94329,156642),(94329,156645),(94329,156648),(94329,156788),(94348,185994),(94352,3199),(94352,6027),(94352,192528),(94352,194156),(94352,208965),(94352,220670),(96238,9799),(96399,179431),(96721,5378),(96721,6075),(96721,6363),(96721,10284),(96721,159953),(96721,185722),(96724,818),(96724,3563),(96724,165282),(96724,186004),(96724,186009),(96724,207928),(97020,679),(97020,2964),(97020,4565),(97020,6149),(97020,9714),(97020,14819),(97020,18021),(97367,417),(97367,494),(97367,3473),(97367,10260),(97367,14735),(97367,15363),(97370,255),(97370,388),(97370,3130),(97370,9951),(97370,212412),(97430,1318),(97430,1411),(97430,9016),(97430,14819),(97430,15036),(97430,166735),(97430,179431),(97430,185795),(97430,209094),(97614,9104),(97614,9826),(97614,10562),(97614,10718),(97614,14536),(97614,18035),(97614,156064),(97614,159707),(97614,193305),(97614,193546),(97614,206687),(97614,206701),(97614,206718),(97614,207112),(97630,441),(97630,591),(97630,612),(97630,949),(97630,1563),(97630,1874),(97630,3037),(97630,4580),(97630,5939),(97630,7021),(97630,9554),(97630,10958),(97630,11219),(97630,11314),(97630,11322),(97630,12371),(97630,14748),(97630,14819),(97630,15022),(97630,15149),(97630,15162),(97630,15218),(97630,34156),(97630,162365),(97630,177163),(97630,181129),(97630,181155),(97630,187056),(97630,188507),(97630,188512),(97630,188519),(97630,190893),(97630,209493),(97630,212757),(97630,214463),(97630,214465),(97630,214466),(98357,1919),(98357,5340),(98357,6078),(98357,8440),(98357,9748),(98357,10476),(98357,155790),(98369,155851),(98549,235135),(98566,779),(98566,949),(98566,1701),(98566,2766),(98566,4580),(98566,6362),(98566,7002),(98566,9715),(98566,9717),(98566,10278),(98566,14512),(98566,41412),(98566,161184),(98566,198781),(98566,209714),(98568,3623),(98568,4379),(98568,9720),(98568,13209),(98568,44451),(98568,191004),(98568,208757),(99826,9716),(99861,8828),(99861,9663),(99861,9715),(99861,9717),(99861,10629),(99861,155030),(99861,179431),(99861,180547),(99861,209714),(100042,6054),(100042,9663),(100042,167043),(100042,167541),(100241,634),(100241,2011),(100241,2095),(100241,2486),(100241,3071),(100241,6152),(100241,6737),(100241,10842),(100241,11408),(100241,14955),(100241,15001),(100241,33783),(100241,156395),(100241,209714),(100275,14895),(100275,179878),(100275,222850),(100402,521),(100402,2964),(100402,5539),(100402,8828),(100402,9715),(100402,9717),(100402,173775),(100402,179430),(100402,179431),(100402,180547),(100402,209714),(100402,209817),(100975,242),(100975,428),(100975,572),(100975,1326),(100975,2483),(100975,9840),(100975,10183),(100975,10226),(100975,13130),(100975,178649),(100975,194998),(101173,1399),(101173,1402),(101173,5563),(101173,9823),(101173,10614),(101173,14708),(101173,14767),(101173,14831),(101173,157331),(101173,157332),(101173,157333),(101267,187056),(101299,271),(101299,818),(101299,1310),(101299,1328),(101299,1382),(101299,2136),(101299,2903),(101299,2964),(101299,4565),(101299,5740),(101299,6186),(101299,8570),(101299,8862),(101299,9663),(101299,9826),(101299,10349),(101299,10410),(101299,11196),(101299,11221),(101299,11322),(101299,12380),(101299,14601),(101299,15017),(101299,156395),(101299,171956),(101299,223438),(102362,9748),(102362,14512),(102362,155755),(102362,167352),(102382,1523),(102382,8828),(102382,9663),(102382,9717),(102382,13040),(102382,33977),(102382,41594),(102382,163455),(102651,3205),(102651,3289),(102651,7430),(102651,177895),(102651,179411),(102651,186846),(102651,186847),(102651,186849),(102651,209714),(102899,8828),(102899,9715),(102899,9717),(102899,179430),(102899,179431),(102899,180547),(102899,209714),(103328,5641),(103328,33507),(103328,34112),(103328,155678),(103328,156546),(103328,181016),(103328,184152),(103328,184157),(103620,549),(103620,2863),(103620,9714),(103620,9826),(103620,10292),(103620,10714),(103620,14808),(103620,165288),(103620,210012),(103663,494),(103663,509),(103663,2251),(103663,2337),(103663,4590),(103663,5905),(103663,7946),(103663,10103),(103663,10508),(103663,10873),(103663,14576),(103663,15160),(103663,33688),(103731,1261),(103731,1585),(103731,5521),(103731,10718),(103731,158244),(103903,3525),(104755,616),(104755,162806),(104755,181374),(104755,181375),(105864,1720),(105864,9713),(105864,12026),(105864,12616),(105864,13073),(105864,14527),(105864,18330),(105864,187864),(105864,189092),(106646,417),(106646,572),(106646,738),(106646,974),(106646,3923),(106646,5565),(106646,5636),(106646,5809),(106646,6974),(106646,10631),(106646,14964),(106646,179018),(106747,534),(106747,833),(106747,3312),(106747,3544),(106747,12405),(106845,3974),(106845,10410),(106845,12377),(106845,186565),(107315,888),(107811,567),(107811,1421),(107811,166611),(107846,378),(107846,789),(107846,3799),(107846,10092),(107846,10568),(107846,10685),(107846,14536),(107846,156786),(107846,214596),(107985,10150),(107985,12332),(107985,33452),(107985,172514),(108346,14794),(108346,160780),(109091,496),(109091,10909),(109091,13037),(109091,18230),(109091,183185),(109410,1480),(109410,5565),(109410,6075),(109410,186654),(109414,570),(109414,1299),(109414,4210),(109414,6054),(109414,6562),(109414,8201),(109414,8508),(109414,9712),(109414,10123),(109414,10150),(109414,12332),(109414,14964),(109414,15001),(109414,160612),(109414,207716),(109417,4344),(109417,209714),(109421,4373),(109421,9665),(109421,9826),(109421,14964),(109421,190380),(109421,220082),(109424,3799),(109424,4245),(109424,4265),(109424,5420),(109424,11221),(109424,12987),(109424,12988),(109424,13015),(109424,15248),(109424,155238),(109424,158022),(109424,167843),(109424,195737),(109424,195739),(109424,195741),(109428,9714),(109428,15001),(109428,157466),(109428,179431),(109443,917),(109443,41390),(109443,158584),(109443,167241),(109443,167254),(109443,179430),(109443,185281),(109443,206075),(109445,2011),(109445,4344),(109445,7376),(109445,10085),(109445,10115),(109445,10336),(109445,10385),(109445,10541),(109445,10794),(109445,11173),(109445,155801),(109445,179430),(109445,187056),(109445,209714),(109451,1436),(109451,10637),(109451,14760),(109491,393),(109491,531),(109491,2343),(109491,3760),(109491,33783),(109491,165299),(109491,219800),(109491,223438),(109513,4009),(109513,161974),(109513,179431),(109729,572),(109729,596),(109729,931),(109729,2483),(109729,3182),(109729,6318),(109729,9468),(109729,12396),(109729,13073),(109729,155262),(109729,156279),(109729,157154),(109729,166329),(109729,207899),(109729,226106),(109729,229299),(109729,233082),(110415,494),(110415,714),(110415,1411),(110415,1442),(110415,1501),(110415,3450),(110415,4458),(110415,4565),(110415,4655),(110415,9717),(110415,9862),(110415,9897),(110415,10721),(110415,13008),(110415,14819),(110415,18712),(110415,33720),(110415,162845),(110415,178993),(110415,189102),(110415,192311),(110415,208085),(110415,213921),(110415,213987),(110683,192473),(111190,4663),(111190,187056),(111794,3979),(111794,5565),(111794,10328),(111794,11800),(112430,11162),(112456,390),(112456,3446),(112456,6075),(112456,10235),(112456,179430),(112949,818),(112949,1415),(112949,33476),(112949,33479),(112949,212643),(113947,977),(113947,2389),(113947,2398),(113947,2564),(113947,3687),(113947,11486),(113947,11704),(113947,14755),(113947,156070),(113947,157008),(113947,162804),(113947,167739),(113947,170592),(113947,171715),(113947,172391),(113947,178977),(113947,184161),(113947,184163),(113947,184167),(113947,186055),(113947,186060),(113947,186062),(113947,186064),(113947,186070),(113947,186071),(113947,186076),(113947,186080),(113947,186103),(113947,186107),(113947,186110),(113947,186112),(114150,271),(114150,1253),(114150,3616),(114150,5248),(114150,6027),(114150,10079),(114150,10556),(114150,33928),(114150,155939),(114150,167768),(114150,177972),(114150,186117),(114150,186120),(114150,186125),(114150,186136),(114150,186147),(114150,206298),(114150,209838),(115210,9253),(115210,10049),(115210,10089),(115210,10123),(115210,68646),(115210,176691),(115210,191045),(116149,392),(116149,477),(116149,818),(116149,10468),(116149,11500),(116149,167625),(116149,170173),(116613,6731),(116613,10988),(116711,2486),(116711,159075),(116741,3489),(116741,14549),(116741,174420),(116741,176125),(116741,183126),(116741,194287),(116741,194288),(116745,486),(116745,1003),(116745,4620),(116745,5746),(116745,5779),(116745,13094),(116745,15097),(116745,18326),(116745,33355),(116745,173276),(116745,182195),(116745,188841),(116977,1545),(116977,1721),(116977,3977),(116977,10159),(116977,10637),(117251,840),(117251,10410),(117251,41249),(117251,192099),(117263,833),(117263,41249),(117263,158774),(118340,8828),(118340,9831),(118340,9882),(118340,12405),(118340,13014),(118340,175428),(118340,179430),(118340,179431),(118340,180547),(118452,572),(118452,9789),(118452,209005),(118612,732),(118612,14541),(118612,223221),(118957,793),(118957,1545),(118957,2988),(118957,3094),(118957,3528),(118957,5657),(118957,6941),(118957,10292),(118957,15097),(118957,173272),(118957,209714),(119283,191604),(119283,209672),(119450,3077),(119450,4090),(119450,4458),(119450,4565),(119450,5774),(119450,9663),(119450,9720),(119450,14759),(119450,14760),(119450,15149),(119450,158025),(119450,158130),(119450,188959),(119450,209714),(120467,612),(120467,5918),(120467,11159),(120467,12371),(120467,14604),(120467,172772),(120467,181046),(120467,188688),(120467,207257),(121676,187056),(121826,4048),(121826,6029),(121826,18115),(121986,6054),(121986,9957),(121986,12999),(121986,161944),(121986,234042),(122081,293),(122081,572),(122081,1196),(122081,2231),(122081,2483),(122081,5248),(122081,8508),(122081,11130),(122081,14964),(122081,158054),(122081,206298),(122906,212),(122906,494),(122906,4379),(122917,417),(122917,603),(122917,604),(122917,606),(122917,609),(122917,611),(122917,12554),(122917,14643),(122917,167982),(122917,188270),(122917,234213),(123553,290),(123553,3133),(123553,12564),(123553,157667),(123553,186420),(123553,186423),(123553,186425),(123553,223438),(123678,417),(123678,6091),(123678,7348),(124459,2343),(124459,14570),(124606,10726),(124606,33928),(124606,172732),(124606,177927),(124606,207583),(125052,378),(125052,1508),(125052,6212),(125052,10726),(125052,14604),(125123,9180),(125123,9673),(125123,9713),(125490,4958),(125490,6562),(125490,8201),(125490,40847),(125490,158276),(125490,178657),(125490,188957),(125490,191564),(126319,2161),(126319,4048),(126319,6054),(126319,10360),(126319,10468),(127493,1749),(127493,9727),(127493,18525),(127560,447),(127560,907),(127560,1956),(127560,4399),(127560,6683),(127560,9672),(127560,9682),(127560,9748),(127560,11436),(127560,13006),(127585,1228),(127585,1852),(127585,4379),(127585,8828),(127585,9717),(127585,10761),(127585,14527),(127585,161271),(127585,179430),(127585,206736),(127867,2486),(127867,9717),(127867,10594),(127867,15252),(127867,187056),(127918,536),(127918,6092),(127918,9846),(127918,191182),(129139,572),(129139,738),(129139,893),(129139,2466),(129139,2487),(129139,4553),(129139,8181),(129139,10809),(129139,11316),(129139,13088),(129139,13118),(129139,14714),(129139,15300),(129139,15319),(129139,33910),(129139,156777),(129139,159574),(129139,160961),(129139,161958),(129139,168135),(129139,171818),(129139,187056),(129139,197757),(129139,197758),(129139,208445),(129139,210608),(129670,680),(129670,1415),(129670,2689),(129670,4995),(129670,7312),(129670,11314),(129670,158606),(129670,163798),(129670,191008),(129670,192786),(129670,199947),(130150,12414),(130150,199350),(131631,836),(131631,4458),(131631,4565),(131631,6091),(131631,9663),(131631,11322),(131631,18101),(131631,18249),(131631,162484),(131631,162845),(131631,165299),(131631,207569),(131631,223438),(131634,2020),(131634,2660),(131634,4565),(131634,157376),(131634,209714),(131634,223438),(132232,185408),(132316,10540),(132316,155651),(132344,612),(132344,822),(132344,922),(132344,1200),(132344,1566),(132344,8011),(132344,9713),(132344,10818),(132344,13028),(132344,14714),(132344,15016),(132363,833),(132363,1307),(132363,5565),(132363,163116),(133694,1415),(133694,3072),(133694,10332),(133694,17947),(133694,194531),(133694,206044),(133805,321),(133805,818),(133805,3720),(133805,5086),(133805,6270),(133805,9714),(133805,9748),(133805,9826),(133805,9864),(133805,10266),(133805,13130),(133805,14601),(133805,14819),(133805,14989),(133805,33740),(133805,187056),(133931,2639),(133931,2646),(133931,202540),(134371,173299),(134374,416),(134374,11454),(134374,14536),(134374,155547),(134374,161320),(134374,179431),(134411,494),(134411,9672),(134597,3070),(134597,8508),(134597,9663),(134597,10292),(134597,10685),(134597,10714),(134597,11040),(134597,11060),(135397,1299),(135397,1718),(135397,1720),(135397,1766),(135397,2041),(135397,9663),(135397,9937),(135397,10617),(135397,10685),(135397,12616),(135397,155582),(135397,158130),(135397,158340),(135397,178010),(135397,209714),(135397,223059),(136400,1568),(136400,4654),(136400,9717),(136400,10594),(136400,10718),(136400,15363),(136400,156805),(136795,1680),(136795,1812),(136795,167541),(136797,9666),(136797,10494),(136797,11058),(136797,33885),(136797,41645),(136797,179431),(136797,209714),(136835,625),(136835,1562),(136835,9740),(136835,10714),(136835,11221),(136835,12414),(136835,13112),(136835,14903),(136835,15127),(136835,202703),(136835,207159),(137093,585),(137093,3230),(137093,8070),(137093,14570),(137093,172971),(137094,212),(137094,417),(137094,591),(137094,949),(137094,1589),(137094,1653),(137094,2051),(137094,2139),(137094,9826),(137094,10410),(137094,18420),(137094,33705),(137094,155723),(137094,188114),(137094,199364),(137094,202296),(137106,494),(137106,5376),(137106,6054),(137106,9977),(137106,10324),(137106,10542),(137106,13072),(137106,163455),(137106,179431),(137106,204035),(137106,210090),(137106,230775),(137113,563),(137113,1521),(137113,2062),(137113,4565),(137113,6091),(137113,9951),(137113,11109),(137113,13065),(137113,14909),(137113,204318),(137321,818),(137347,15363),(138103,591),(138103,6163),(138103,9663),(138103,11107),(138103,11612),(138103,14643),(138103,157424),(138103,188944),(138697,445),(138697,572),(138697,5906),(138697,10556),(138697,18314),(138697,33432),(138697,33451),(138832,534),(138832,6149),(138832,10726),(138832,13037),(138832,14964),(138832,18035),(138843,1156),(138843,2626),(138843,5713),(138843,9672),(138843,13127),(138843,15043),(138843,162846),(138843,188989),(138843,228897),(138843,228936),(139038,12416),(139038,163053),(139038,179431),(139715,6270),(139715,10183),(139715,12377),(139715,14687),(139948,933),(139948,6711),(139948,10715),(139948,18021),(139948,187056),(139998,1459),(139998,14534),(139998,33490),(139998,204262),(140300,478),(140300,779),(140300,780),(140300,5331),(140300,8531),(140300,9663),(140300,11477),(140300,11500),(140300,12554),(140300,15036),(140300,184656),(140300,187056),(140823,5565),(140823,10336),(140823,13028),(140823,179429),(142061,849),(142061,2964),(142061,9537),(142061,10486),(142061,18712),(142061,162988),(142061,163455),(142132,187056),(144336,10175),(144336,186281),(144340,2307),(144340,208744),(145220,4344),(145220,12998),(146198,10051),(146198,10085),(146198,11719),(146203,163053),(146216,90),(146216,212),(146216,591),(146216,2139),(146216,14555),(146216,166571),(146216,182185),(146233,904),(146233,1930),(146233,2158),(146233,7002),(146233,11004),(146233,166625),(146238,395),(146238,585),(146238,5305),(146238,11719),(146238,163682),(146239,9714),(146239,159141),(146269,187056),(146304,196499),(146631,13068),(146631,14909),(146631,162365),(146631,211710),(146882,254),(146882,2071),(146882,167861),(146882,187056),(147441,488),(147441,3036),(147441,157894),(147441,209714),(147441,211105),(147773,367),(147773,966),(147773,3797),(147773,4433),(147773,6054),(147773,6669),(147773,6876),(147773,8438),(147773,10226),(147773,13088),(147773,13130),(147773,14913),(147773,168135),(150202,33467),(150202,162846),(150202,210608),(150211,177972),(150211,207819),(150211,220667),(150540,1566),(150540,6513),(150540,7942),(150540,10336),(150540,18035),(150540,18253),(150540,161155),(150540,163227),(150540,179431),(150540,209714),(150540,211269),(150689,995),(150689,2343),(150689,3071),(150689,3205),(150689,4152),(150689,9920),(150689,13014),(150689,158438),(150689,173003),(150689,186847),(152532,515),(152532,740),(152532,5565),(152532,9672),(152532,9766),(152532,14964),(152532,208289),(152599,242),(152599,417),(152599,1156),(152599,2343),(152599,2356),(152599,2483),(152599,3030),(152599,3799),(152599,6898),(152599,9673),(152599,9826),(152599,10594),(152599,10685),(152599,13005),(152599,13059),(152599,21747),(152599,40895),(152601,310),(152601,6104),(152601,9673),(152601,9957),(152601,12375),(152601,34265),(152601,40847),(152601,223540),(152601,224279),(152737,236),(152737,1803),(152737,3739),(152737,10041),(152737,10181),(152737,156230),(152737,170633),(152737,197707),(152737,197708),(152742,5918),(152742,198318),(152742,201385),(152742,220933),(152742,221810),(152747,3342),(152747,41599),(152747,168683),(152747,175316),(152747,175668),(152747,176052),(152747,206529),(152747,206530),(152747,212412),(152760,1956),(152760,2652),(152760,156031),(152760,160224),(153158,13042),(153397,470),(153397,6091),(153397,156095),(153518,2041),(153518,2646),(153518,4931),(153518,11477),(153518,41645),(153518,199263),(153518,209714),(153795,380),(153795,1803),(153795,164181),(156022,417),(156022,782),(156022,1562),(156022,1812),(156022,2708),(156022,2808),(156022,3016),(156022,4426),(156022,7002),(156022,9740),(156022,9748),(156022,9937),(156022,10291),(156022,10292),(156022,13142),(156022,14819),(156022,15048),(156022,15248),(156022,15271),(156022,18420),(156022,162380),(156022,163810),(156022,167104),(156022,167164),(156022,175056),(156022,188955),(156022,209525),(157058,9755),(157058,224636),(157185,14903),(157293,240),(157293,271),(157293,1691),(157293,4344),(157293,8029),(157336,83),(157336,310),(157336,494),(157336,641),(157336,1432),(157336,1963),(157336,3417),(157336,3801),(157336,4337),(157336,4380),(157336,4565),(157336,4776),(157336,8056),(157336,9831),(157336,9882),(157336,10084),(157336,10235),(157336,13127),(157336,14544),(157336,14626),(157336,14760),(157336,15300),(157336,33479),(157336,154846),(157336,156039),(157336,156395),(157336,160331),(157336,162630),(157336,189098),(157336,208757),(157336,214349),(157350,818),(157350,4565),(157350,14751),(157350,162988),(157350,180492),(157350,211389),(157350,223438),(157353,310),(157353,1576),(157353,2651),(157353,2812),(157353,3222),(157353,6506),(157353,9673),(157353,9678),(157353,13015),(157353,14760),(157353,193013),(157353,198423),(157353,199320),(157353,205852),(157353,205853),(157353,205854),(157354,796),(157354,9672),(157354,12425),(157354,15061),(157354,197702),(157386,7464),(157386,10683),(157386,13130),(157386,33910),(157386,223438),(157544,2626),(157544,8685),(157544,159940),(157547,3298),(157547,6152),(157547,46951),(157547,161198),(157547,162846),(157841,13008),(157841,214527),(157847,516),(157847,549),(157847,1010),(157847,1411),(157847,1585),(157847,2217),(157847,2337),(157847,3450),(157847,4552),(157847,6149),(157847,6563),(157847,7410),(157847,9276),(157847,9720),(157847,9826),(157847,10399),(157847,11333),(157847,11696),(157847,13130),(157847,15518),(157847,33457),(157847,156121),(157847,159841),(157847,168867),(157847,184369),(157847,233034),(157847,233035),(157847,233036),(157847,233037),(157847,233038),(157849,321),(157849,789),(157849,2051),(157849,2356),(157849,13006),(157849,18420),(157849,159457),(157909,1930),(158011,1353),(158011,1420),(158011,1930),(158011,9826),(158011,9937),(158011,10714),(158011,11108),(158011,14688),(158011,14819),(158011,15000),(158011,15156),(158011,176182),(158015,4565),(158015,7246),(158015,14903),(158015,221957),(158015,221958),(158015,221960),(158852,1436),(158852,12332),(158852,40850),(158852,156395),(158852,173276),(158852,214714),(158852,214715),(159037,187056),(159824,272),(159824,612),(159824,616),(159824,1576),(159824,2343),(159824,2904),(159824,3633),(159824,4062),(159824,4555),(159824,5891),(159824,6038),(159824,6737),(159824,11155),(159824,12377),(159824,14633),(159824,160130),(159824,224472),(160588,582),(160588,1156),(160588,14512),(160588,34143),(160588,157291),(160588,197222),(161795,9673),(161795,14638),(161795,47024),(161795,156104),(161795,196433),(162903,736),(162903,5565),(162903,11615),(162903,33646),(162903,208647),(164457,378),(164457,380),(164457,2231),(164457,5301),(164457,9748),(164457,11494),(164457,13063),(164457,15108),(164457,18035),(164457,166816),(164457,195621),(164457,207268),(164457,207935),(164457,238189),(164457,238190),(164558,6029),(165864,616),(165864,10776),(165864,161173),(165864,191325),(165864,208048),(166424,3822),(166424,4375),(166424,5086),(166424,7939),(166424,8828),(166424,9715),(166424,9717),(166424,155030),(166424,160117),(166424,191564),(166424,205731),(166624,1357),(166624,5202),(166624,15025),(166624,157303),(166624,161570),(166624,162944),(166624,187056),(166624,195012),(166624,200216),(166624,209417),(167073,128),(167073,818),(167073,1007),(167073,1950),(167073,3799),(167073,5890),(167073,6038),(167073,11935),(167073,12390),(167073,14985),(167073,41523),(167073,189092),(167073,196521),(167073,206160),(167073,208611),(168027,167342),(168027,191959),(168027,191960),(168259,830),(168259,3428),(168259,9748),(168259,9937),(168259,33885),(168259,40870),(168259,205399),(168530,4668),(168530,15090),(168530,164677),(168530,179431),(168530,179450),(168672,10453),(168672,11454),(168672,11578),(168672,18525),(168705,3133),(168705,9259),(168705,41645),(168705,179882),(169917,818),(169917,9826),(169917,10391),(169917,11168),(169917,14512),(169917,33457),(169917,167580),(169917,199073),(169917,207847),(170687,818),(170687,10121),(170687,15300),(170687,167982),(170687,179431),(171274,818),(171274,1228),(171274,11168),(171274,11492),(171274,12670),(171274,208992),(171424,6460),(171424,10292),(171424,10787),(171424,14687),(171424,14895),(171424,18266),(172385,2646),(172385,9663),(172385,10787),(172385,33928),(172385,166103),(172385,198270),(172391,209714),(172391,221034),(172533,10556),(172533,14522),(172533,14534),(172533,171993),(173224,167043),(174311,5570),(174311,10332),(174311,179368),(175291,9937),(175291,210012),(175541,4344),(175541,158375),(175541,187056),(175541,206042),(175541,207089),(175541,207317),(175555,207317),(175574,65),(175574,4543),(175574,6089),(175574,179431),(175574,209714),(176074,1157),(176074,3026),(176074,3974),(176074,11799),(176077,1233),(176077,1523),(176124,1480),(177572,380),(177572,1701),(177572,2276),(177572,9748),(177572,12392),(177572,12446),(177572,14544),(177572,33353),(177572,41509),(177572,179430),(177572,198423),(177572,209714),(177572,213104),(177572,215235),(177677,212),(177677,470),(177677,1201),(177677,3289),(177677,9663),(177677,10364),(177677,10410),(177677,160852),(177677,233055),(178862,445),(178862,4434),(178862,5565),(178862,6025),(178862,7344),(178862,15479),(178862,187056),(179144,567),(179144,588),(179144,716),(179144,818),(179144,1421),(179144,2334),(179144,2483),(179144,2679),(179144,3258),(179144,8508),(179144,9673),(179144,14765),(179144,14893),(179144,14964),(180383,2343),(180383,187056),(181283,818),(181283,2111),(181283,2808),(181283,9826),(181283,10714),(181283,162365),(181283,166109),(181283,191543),(181283,208611),(181330,9716),(181330,168346),(181330,173918),(181330,179431),(181533,1406),(181533,2598),(181533,5647),(181533,9682),(181533,209642),(182291,718),(182291,10079),(182291,33426),(182291,33586),(182291,158718),(182291,172391),(182291,196374),(182291,208340),(182291,209241),(182291,209242),(184315,3070),(184315,14643),(184315,162861),(184315,187301),(184315,192913),(184315,209482),(184345,3358),(184346,10375),(184346,15001),(184346,156174),(184346,161261),(184374,163127),(186935,10175),(186935,14687),(187017,6270),(187017,11199),(187017,167541),(187017,179430),(187017,179431),(188161,75),(188161,154846),(188161,155573),(188161,215404),(188166,9748),(188166,13017),(188166,160977),(188166,164186),(188166,207268),(188166,209856),(188166,210012),(188207,2035),(188207,8985),(188207,162861),(188207,180548),(188207,221954),(188207,221955),(188927,9663),(188927,9743),(188927,158449),(188927,161176),(190847,839),(190847,10568),(190847,12377),(190859,1589),(190859,5565),(190859,5939),(190859,11219),(190859,33564),(192102,4948),(192102,41249),(192102,156117),(192132,6270),(192132,13042),(192132,13130),(192132,14669),(192132,156777),(192132,187056),(192134,9825),(192134,10594),(192134,14536),(192134,162225),(192136,378),(192136,3644),(192136,4106),(192136,5565),(192136,5856),(192136,6165),(192141,612),(192141,2020),(192141,4776),(192141,5721),(192141,9610),(192141,10349),(192141,11196),(192141,13129),(192141,14638),(192141,18035),(192141,34061),(192141,185815),(192141,197619),(192210,2231),(192210,6149),(192210,15127),(192210,156117),(192210,199029),(193603,3358),(193603,12339),(193610,1326),(193610,9748),(193610,11511),(193610,15184),(193610,167310),(193610,183602),(193610,213488),(193610,215404),(193610,231641),(193613,5540),(193613,11240),(193722,7089),(193722,158713),(193756,6091),(193756,10349),(193756,11219),(193756,162365),(193756,181325),(193893,417),(193893,642),(193893,1930),(193893,2334),(193893,3230),(193893,5340),(193893,6149),(193893,8508),(193893,9826),(193893,11578),(193893,12670),(193893,170682),(193893,185071),(193893,187844),(194662,8764),(194662,9715),(194662,11440),(194662,14512),(194662,14531),(194662,156028),(194662,207716),(195589,567),(195589,1009),(195589,8508),(195589,18035),(195589,157632),(195589,171400),(195589,183896),(195589,193674),(196867,4344),(196867,13014),(196867,155643),(198062,5483),(198062,8631),(198062,14886),(198062,185863),(198184,310),(198184,803),(198184,14544),(198184,40847),(198184,187019),(198185,1480),(198185,6075),(198185,179431),(198663,818),(198663,2158),(198663,4458),(198663,4565),(198663,10685),(198663,11469),(198663,15261),(198663,18029),(198663,162988),(198663,204967),(198663,223438),(199373,1419),(199373,10685),(199373,10714),(199373,10958),(199373,33688),(199933,33452),(199933,173299),(200505,6075),(200505,179431),(201088,949),(201088,1576),(201088,2095),(201088,2157),(201088,2812),(201088,3635),(201088,4776),(201088,6104),(201088,6847),(201088,7321),(201088,9937),(201088,10085),(201088,10410),(201088,10562),(201088,10718),(201088,10950),(201088,12361),(201088,13015),(201088,15076),(201088,18522),(201088,155555),(201088,158111),(201088,161520),(201088,183817),(201088,209853),(201088,218122),(201088,218124),(201088,218130),(201088,218132),(201132,5565),(201132,14728),(202575,2343),(202575,209714),(202604,2626),(203801,470),(203801,2106),(203801,9714),(203801,10988),(203801,167316),(203801,190654),(203801,197822),(203833,1956),(203833,3096),(203833,11064),(203833,11508),(204082,818),(204082,2231),(204082,8440),(204082,11004),(204082,11199),(204082,11341),(204082,14736),(204082,14964),(204082,15095),(204082,15300),(204082,207726),(204922,1453),(204922,2726),(204922,2879),(204922,11612),(204922,187844),(205126,9738),(205126,9739),(205126,9831),(205126,9951),(205220,456),(205220,521),(205220,736),(205220,2393),(205220,3446),(205220,5153),(205220,6150),(205220,11112),(205220,14765),(205220,14985),(205220,185722),(205220,193017),(205321,387),(205321,720),(205321,966),(205321,2213),(205321,2215),(205321,10563),(205321,11221),(205321,12394),(205321,14527),(205321,14601),(205321,15017),(205321,15097),(205321,156321),(205321,173272),(205584,1160),(205584,1449),(205584,1721),(205584,2035),(205584,2906),(205584,6091),(205584,9727),(205584,10084),(205584,18034),(205584,161172),(205584,163338),(205584,185638),(205584,227686),(205587,494),(205587,934),(205587,10909),(205588,818),(205588,187056),(205596,237),(205596,392),(205596,1956),(205596,2303),(205596,5565),(205596,208394),(205596,208395),(205775,236),(205775,270),(205775,658),(205775,1899),(205775,2580),(205775,3799),(205775,4676),(205775,9672),(205775,9743),(205775,10349),(205775,33829),(205775,34079),(205775,41393),(205775,179578),(205775,185722),(205775,187318),(205775,188266),(205775,207928),(205775,208048),(205775,219785),(205775,223211),(205775,223212),(206197,616),(206197,187056),(206213,1852),(206213,4458),(206213,12377),(206284,5950),(206296,4183),(206296,4344),(206296,6038),(206296,15160),(206563,983),(206563,8029),(206563,9950),(206647,470),(206647,818),(206647,4289),(206647,9663),(206647,14555),(206647,156095),(206647,158431),(207769,5498),(207769,6086),(207769,10410),(207769,10481),(207769,10561),(207769,11494),(207769,13028),(207769,18034),(207769,160025),(207769,197710),(207769,197711),(207769,233167),(207769,237224),(207769,237225),(208134,179431),(208763,1299),(208763,2795),(208763,14765),(208763,15001),(208763,40931),(208763,156810),(208763,177895),(208763,209714),(209112,849),(209112,7002),(209112,9715),(209112,9717),(209112,9748),(209112,163455),(209112,195242),(209112,195243),(209112,229266),(209263,4501),(209263,4543),(209263,8508),(209263,9840),(209263,10707),(209263,13043),(209263,14534),(209263,15160),(209263,18053),(209263,187056),(209263,209022),(209274,745),(209274,1960),(209274,2606),(209274,11508),(209274,21747),(209403,271),(209403,8201),(209403,11146),(209403,161194),(209403,167982),(209403,215292),(209451,5565),(209451,10181),(210577,818),(210577,5809),(210577,10941),(210577,11513),(210577,156091),(210577,169962),(210577,191199),(210577,199073),(210577,207431),(210577,222665),(210860,818),(210860,5918),(210860,11061),(210860,155795),(210860,159534),(211086,486),(211086,4096),(211086,5864),(211086,6150),(211086,6194),(211086,9736),(211086,10706),(211086,10902),(211086,11001),(211086,13014),(211086,14636),(211086,14989),(211086,160309),(211086,176546),(211086,213490),(211086,213492),(211672,3487),(211672,179430),(211672,179431),(211672,189481),(211672,190999),(211672,209714),(211954,1338),(211954,155480),(214756,5098),(214756,9663),(214756,15214),(214756,18074),(214756,158162),(214756,179430),(214756,187065),(214756,193682),(215211,1202),(215211,3071),(215881,187056),(215918,1803),(215918,15300),(215918,165402),(215924,187056),(216015,818),(216015,9785),(216015,9888),(216015,12547),(216015,158713),(216015,187056),(216282,2213),(216282,12105),(216282,163053),(216282,199076),(217708,2673),(217708,3373),(217708,207942),(218043,3800),(218043,6548),(218043,9714),(218043,175103),(218778,818),(218778,3489),(218778,4671),(218778,4896),(218778,15068),(218778,15101),(218778,206741),(220488,12354),(220488,184188),(220488,187056),(222649,378),(222649,5565),(222649,12193),(222649,15271),(222649,18009),(222649,197822),(222899,179431),(222935,587),(222935,818),(222935,825),(222935,10163),(222935,13130),(222935,165086),(222935,193400),(222935,210429),(222935,223438),(222936,128),(222936,1668),(222936,3376),(222936,162365),(222936,179431),(222936,212542),(223485,657),(223485,801),(223485,1366),(223485,2284),(223485,2673),(223485,3623),(223485,9454),(223485,9503),(223485,9897),(223485,10048),(223485,10201),(223485,10322),(223485,10950),(223485,11112),(223485,13132),(223485,14540),(223485,14819),(223485,14985),(223485,15111),(223485,15290),(223485,157471),(223485,158145),(223485,160840),(223485,187844),(223485,222133),(223702,1545),(223702,8508),(223702,9956),(223702,10637),(223702,11500),(223702,18049),(223702,155707),(223702,161919),(223702,168867),(223702,228646),(224141,616),(224141,995),(224141,3071),(224141,3205),(224141,4344),(224141,7376),(224141,10449),(224141,10541),(224141,158375),(224141,166472),(224141,179431),(224141,192993),(224569,4276),(224569,7851),(224569,10955),(225235,567),(225235,596),(225235,1261),(225235,1890),(225235,2065),(225235,2139),(225235,4183),(225235,4707),(225235,5600),(225235,6054),(225235,7464),(225235,10873),(225235,161266),(225235,180487),(225235,192940),(225235,223083),(225235,223084),(225565,3230),(225565,6054),(225565,13043),(225565,14534),(225565,179431),(225565,206298),(225574,3800),(225574,10410),(225574,12617),(225574,15156),(225574,155238),(225574,162914),(225574,184297),(225886,6038),(225886,11615),(225886,14534),(225886,18035),(225886,183728),(226354,290),(226354,2618),(226354,5331),(226354,5950),(226354,15224),(226354,207317),(226458,9712),(226857,188237),(227156,4565),(227156,12999),(227156,223438),(227159,378),(227159,1930),(227159,9663),(227159,15483),(227159,166770),(227159,183728),(227306,1956),(227306,1968),(227306,5565),(227306,6075),(227306,6091),(227306,10456),(227306,187056),(227306,208820),(227348,6152),(227348,15001),(227348,163053),(227707,212),(227707,818),(227707,2849),(227707,4414),(227707,6152),(227707,10028),(227719,4379),(227719,5455),(227719,13130),(227719,163053),(227735,630),(227735,2269),(227735,15058),(227783,990),(227783,209714),(227973,11825),(227973,18035),(227973,209714),(227973,210469),(227973,221015),(227975,74),(227975,237),(227975,324),(227975,793),(227975,2483),(227975,9935),(227975,232235),(228066,212),(228066,4005),(228066,6737),(228066,174413),(228066,198102),(228066,198781),(228066,207928),(228150,1956),(228150,2652),(228150,6091),(228150,11064),(228150,11102),(228150,11117),(228161,6054),(228161,9831),(228161,9882),(228161,9951),(228161,14909),(228161,197194),(228161,235972),(228161,235974),(228165,270),(228165,658),(228165,3412),(228165,4237),(228165,10267),(228165,190852),(228165,204222),(228165,209220),(228194,254),(228194,818),(228194,958),(228194,1946),(228194,18035),(228203,387),(228203,1415),(228203,8338),(228203,169071),(228203,187056),(228203,187901),(228205,818),(228205,9082),(228205,155291),(228205,158591),(228205,190078),(228205,191100),(228205,206298),(228326,128),(228326,6155),(228326,209789),(228326,209790),(228550,6270),(228550,9826),(228550,12339),(228550,13130),(228967,591),(228967,6285),(228967,158538),(228967,191600),(228967,195323),(228970,4414),(228970,5565),(228970,5827),(228970,9672),(228970,197528),(230266,128),(230266,9673),(230266,11018),(230266,33493),(230266,187056),(230266,207928),(231576,2606),(231576,10183),(231576,12399),(231576,18035),(231576,158988),(231617,248),(231617,699),(231617,2398),(231617,5340),(231617,34051),(231617,173066),(232672,409),(232672,4513),(232672,14534),(232672,14724),(232672,18035),(232679,579),(232679,6075),(232679,8635),(234212,703),(234212,3358),(234212,5340),(234212,8685),(234212,9712),(234212,9844),(234212,10414),(234212,10561),(234212,15001),(234212,163186),(234212,177648),(234212,184402),(235260,5565),(235260,6506),(235271,1326),(235271,1523),(235271,2251),(235271,7412),(235271,10131),(235271,11501),(235271,14794),(235271,15319),(235271,159346),(235271,162706),(235271,206263),(235271,207665),(236751,818),(236751,6150),(236751,185722),(238603,9951),(238603,163053),(238615,2251),(238615,4978),(238615,6564),(238615,10124),(238615,10163),(238615,13005),(238615,33721),(238615,34079),(238615,34143),(238615,187008),(238615,189748),(238615,196682),(238615,205852),(238615,218102),(238615,218105),(238615,227385),(238636,992),(238636,1376),(238636,1589),(238636,3544),(238636,4565),(238636,6259),(238636,9663),(238636,9748),(238636,9826),(238636,10349),(238636,14735),(238636,14819),(238636,15068),(238636,15069),(238636,33632),(238636,34079),(238636,50009),(238636,187028),(239563,2604),(239563,6054),(239563,10226),(239563,15160),(239563,174085),(239566,5565),(239566,199321),(239571,161272),(239573,1295),(239573,170749),(239678,818),(239678,3739),(239678,10041),(239678,10201),(239678,14647),(239678,18035),(239678,159103),(239678,172291),(240832,310),(240832,1475),(240832,2051),(240832,2235),(240832,5086),(240832,9685),(240832,14964),(240832,33637),(240832,34009),(240832,156395),(240832,157959),(240832,234944),(240832,234945),(240832,234946),(241239,417),(241239,592),(241239,1442),(241239,2355),(241239,2356),(241239,7337),(241239,9276),(241239,10590),(241239,10909),(241239,14512),(241239,166631),(241239,168948),(241239,189102),(241239,208289),(241239,235729),(241239,238182),(241239,238183),(241251,255),(241251,293),(241251,572),(241251,596),(241251,1326),(241251,1523),(241251,1936),(241251,3289),(241251,3979),(241251,4513),(241251,4959),(241251,6255),(241251,6270),(241251,6844),(241251,9740),(241251,10048),(241251,10226),(241251,11510),(241251,12670),(241251,12974),(241251,13063),(241251,14819),(241251,18049),(241251,34094),(241251,34156),(241251,41019),(241251,41525),(241251,155532),(241251,157499),(241251,157799),(241251,158024),(241251,162085),(241251,172382),(241251,186055),(241251,188294),(241251,207767),(241251,215938),(241254,11578),(241254,15108),(241254,18115),(241254,184402),(241254,197430),(241257,5340),(241257,11469),(241259,818),(241259,1507),(241259,2011),(241259,9663),(241259,12552),(241259,177895),(241259,203699),(241259,209714),(241554,2708),(241554,9748),(241554,9826),(241554,10562),(241554,11578),(241766,1157),(241766,13142),(241766,175593),(241771,2276),(241771,3836),(241771,4048),(241771,187056),(242083,2276),(242083,6262),(242083,10232),(242083,13130),(242083,183732),(242095,2157),(242095,4769),(242095,7312),(242095,10183),(242095,33637),(242095,188987),(242095,207011),(242166,128),(242166,539),(242166,1721),(242166,1930),(242166,2534),(242166,3203),(242166,9812),(242166,10085),(242166,10364),(242166,10410),(242166,10563),(242166,14601),(242166,18543),(242166,155333),(242166,162365),(242166,186447),(242166,201164),(242166,208456),(242166,208457),(242512,4959),(242512,8181),(242512,10111),(242512,10112),(242512,13130),(242512,160887),(242512,162846),(242512,176561),(242512,185408),(242575,74),(242575,163127),(242582,917),(242582,1353),(242582,3586),(242582,9740),(242582,14903),(242582,15483),(242582,158584),(242582,167925),(242582,211062),(242582,215774),(243938,4379),(243938,9663),(243938,11830),(243938,179431),(243940,321),(243940,1706),(243940,6155),(243940,9853),(243940,14819),(243940,34079),(243940,156075),(243940,169816),(243940,178646),(244114,642),(244114,3261),(244114,10176),(244114,11723),(244267,10183),(244267,185237),(244267,207979),(244316,2522),(244316,3593),(244316,5774),(244316,9880),(244316,10349),(244316,10468),(244403,494),(244403,18001),(244403,207525),(244534,18035),(244534,171993),(244534,207317),(244772,242),(244772,596),(244772,718),(244772,1155),(244772,1326),(244772,3183),(244772,4951),(244772,7956),(244772,9824),(244772,10201),(244772,10707),(244772,10768),(244772,11524),(244772,41355),(244772,157499),(244772,158718),(244772,158968),(244772,186722),(244772,193049),(244772,219781),(244772,219786),(244772,219787),(244776,187056),(244776,206545),(244776,208719),(244776,208720),(244783,187056),(244786,1416),(244786,1523),(244786,1640),(244786,2176),(244786,14512),(244786,14819),(244786,33896),(244786,156823),(244786,170418),(244786,176095),(244786,206298),(244786,207739),(245700,437),(245703,494),(245703,720),(245703,1812),(245703,2669),(245703,3713),(245703,170865),(245703,173177),(245703,226471),(245846,5657),(245846,156948),(245846,157906),(245846,164044),(245846,166490),(245846,187056),(245846,193760),(245846,197430),(245916,5565),(246403,1329),(246403,1523),(246403,7240),(246403,9758),(246403,11112),(246403,170383),(246403,198015),(246403,235261),(246449,1964),(246449,11116),(246449,173258),(246449,204090),(246449,214963),(246449,232116),(246449,233447),(246449,233452),(246655,1852),(246655,4769),(246655,8828),(246655,9715),(246655,9717),(246655,10761),(246655,12332),(246655,155030),(246655,176217),(246655,179430),(246655,208289),(248774,10183),(248774,187056),(249164,732),(249164,4048),(249164,10809),(249164,13063),(249164,13130),(249164,184318),(249164,193400),(249164,223438),(250066,380),(250066,642),(250066,974),(250124,1228),(250124,10809),(250124,14669),(250124,18712),(250124,156777),(250124,187056),(250184,321),(250184,9706),(250184,9937),(250546,9675),(250546,9707),(250546,10603),(250546,15285),(250546,33630),(250546,161261),(250546,180691),(250546,187065),(250902,5451),(250902,5565),(250902,184924),(250902,232429),(250902,232430),(251321,10902),(251321,187056),(251321,212913),(251471,1740),(251471,9818),(251471,10073),(251471,10324),(251979,5565),(251979,5950),(251979,9840),(252360,41645),(252512,4604),(252512,6038),(252512,174109),(252512,175297),(252512,176793),(252512,180415),(252512,226343),(252512,226344),(252512,234555),(252680,1157),(252680,4602),(252680,10103),(252680,10707),(252680,11093),(252680,15025),(252680,166123),(252680,179431),(253235,2971),(253235,10226),(253235,10910),(253235,172971),(253235,193049),(253261,187056),(253290,187056),(253306,3358),(253306,4604),(253306,6156),(253306,9790),(253306,9866),(253306,10092),(253306,11422),(253306,14811),(253306,41180),(253306,157398),(253306,172427),(253306,208772),(253331,10655),(253331,33476),(253412,1262),(253412,3373),(253412,5827),(253412,8624),(253412,10794),(253412,34079),(253412,156783),(253412,159212),(253412,185722),(253412,192779),(253412,209714),(253450,782),(253450,5511),(253450,15036),(253450,184656),(253450,228988),(253626,3203),(253626,3301),(253626,11930),(253626,185454),(253626,212912),(253626,226645),(254024,161982),(254128,387),(254128,3521),(254128,188351),(254128,189411),(254128,209714),(254128,213895),(254128,213896),(254128,222529),(254470,6027),(254470,9663),(254470,10229),(254470,10556),(254470,33928),(254470,155939),(254470,179431),(254470,186120),(254470,186136),(254470,186147),(254470,187056),(254470,209838),(254472,158091),(254473,779),(254473,1815),(254473,2394),(254473,6955),(254473,8233),(254473,9714),(254473,11199),(254473,13142),(254473,33396),(254904,591),(254904,18115),(254904,33705),(255266,13043),(255266,15160),(255266,18049),(255266,170827),(255266,198001),(255343,1524),(255343,9826),(255343,13112),(255343,194879),(255343,208645),(256040,4152),(256040,6091),(256040,10540),(256040,216931),(256040,216932),(256274,90),(256274,1454),(256274,4194),(256274,14760),(256274,18064),(256274,41586),(256274,162085),(256274,162177),(256274,163053),(256274,206646),(256274,206647),(256274,206648),(256274,206649),(256274,206650),(256274,206651),(256591,3182),(256591,3202),(256591,9016),(256591,9758),(256591,9823),(256591,10453),(256917,1847),(256917,5657),(256917,11007),(256917,154846),(256917,173265),(256917,213295),(256917,213299),(256917,228523),(256924,2570),(256924,176793),(256961,6490),(256961,14570),(256961,41180),(256962,907),(256962,1956),(256962,10706),(257087,6158),(257088,1568),(257088,4654),(257088,12189),(257088,18525),(257088,209714),(257091,378),(257091,4613),(257091,15124),(257091,163072),(257211,174420),(257211,187056),(257344,282),(257344,5801),(257344,192962),(257344,209714),(257344,220855),(257445,818),(257445,2343),(257445,2486),(257445,12564),(257445,18035),(257445,163226),(257445,186948),(257445,209714),(258489,409),(258489,5650),(258489,7347),(258489,10787),(258489,158130),(258509,10986),(258509,10987),(258509,11477),(258509,179430),(258509,179431),(259693,212),(259693,392),(259693,1228),(259693,13153),(259693,14768),(259693,15001),(259693,15043),(259693,161261),(259693,228935),(259693,228936),(259694,242),(259694,818),(259694,2864),(259694,9457),(259943,2692),(259943,181962),(260346,9748),(260346,9826),(260346,10562),(260346,10718),(260346,15124),(260346,15300),(260346,180172),(260778,18425),(260947,1523),(260947,1897),(260947,10183),(261023,1680),(261023,9672),(261023,10291),(262500,818),(262500,2020),(262500,4565),(262500,9663),(262500,162988),(262500,206298),(262500,209714),(262500,211389),(262504,818),(262504,2020),(262504,4565),(262504,9663),(262504,162988),(262504,206298),(262504,223438),(262543,310),(262543,2217),(262543,2964),(262543,4565),(262543,14544),(262543,15174),(262543,18034),(262543,229069),(264644,818),(264644,1337),(264644,1533),(264644,1930),(264644,2883),(264644,9229),(264644,10685),(264644,11612),(264644,15162),(264644,15381),(264644,157499),(264644,221604),(264644,221605),(264656,246),(264656,818),(264656,9748),(264656,10322),(264656,14819),(264656,155573),(264656,193225),(264656,208170),(264656,208171),(264656,208172),(264656,208173),(264656,208174),(264660,246),(264660,310),(264660,1448),(264660,1533),(264660,1576),(264660,2887),(264660,6054),(264660,9758),(264660,10124),(264660,14544),(264660,14755),(264660,159433),(264660,161219),(264660,181324),(264660,186523),(264660,212737),(264660,214820),(264660,227497),(264660,233005),(264999,3230),(264999,3688),(264999,7312),(264999,155857),(264999,199040),(265208,395),(265208,3088),(265208,9714),(266034,9826),(266034,9937),(266034,14720),(266034,166582),(266034,207240),(266102,1691),(266102,4051),(266102,5565),(266102,18009),(266102,158455),(266102,185308),(266396,782),(266396,2708),(266647,334),(266647,2343),(266647,3205),(266647,4332),(266647,5938),(266647,12988),(266647,170362),(266856,1157),(266856,5565),(266856,8012),(266856,14641),(266856,190947),(266856,196751),(266856,209063),(266856,229893),(267860,212),(267860,949),(267860,158774),(267935,212),(267935,392),(267935,818),(267935,2011),(267935,12663),(267935,13014),(267935,14895),(267935,189099),(267935,227364),(268171,33476),(268238,14636),(268238,163514),(268917,2679),(268917,33624),(268920,1556),(268920,1563),(268920,8015),(268920,10175),(268920,10562),(268920,15090),(268920,169264),(268920,187056),(269057,1415),(269057,2570),(269057,4344),(269057,5614),(269057,13130),(269057,208992),(269057,235573),(269057,235574),(270303,3713),(270303,6152),(270303,9713),(270303,10629),(270303,10873),(270303,206298),(270303,209141),(270487,736),(270487,977),(270487,1336),(270487,1930),(270487,5049),(270487,9732),(270487,12396),(270487,15060),(270938,1794),(270938,11399),(270938,14955),(270946,3028),(270946,3645),(270946,209714),(271110,393),(271110,6091),(271110,8828),(271110,9663),(271110,9715),(271110,9717),(271110,156395),(271110,179430),(271110,179431),(271110,180547),(271110,209714),(271185,3616),(271185,10851),(271185,193282),(271331,13042),(271718,567),(271718,2864),(271969,10085),(271969,232766),(272693,6270),(272693,13130),(272693,15402),(272693,33910),(272693,155722),(272693,179431),(272693,222174),(272693,223438),(272878,3541),(272878,6091),(272878,9672),(272878,10084),(272878,10085),(272878,15162),(272878,172291),(273248,801),(273248,1016),(273248,1262),(273248,2398),(273248,7150),(273248,33600),(273248,156783),(273248,187321),(273481,534),(273481,591),(273481,919),(273481,1556),(273481,1812),(273481,9826),(273481,11719),(273481,13042),(273481,14964),(273481,18525),(273481,160194),(273481,164881),(273481,189102),(273481,191209),(273481,198423),(273481,208397),(273481,217064),(273895,2075),(273895,5835),(273895,8570),(273895,11243),(273895,163116),(273895,186576),(273895,187056),(273895,204836),(273899,173510),(274167,230024),(274479,1382),(274479,1436),(274479,2660),(274479,5565),(274479,9672),(274479,233558),(274758,196315),(274854,242),(274854,616),(274854,8862),(274854,177900),(276907,5565),(276907,9672),(276907,13142),(276907,15016),(277216,380),(277216,740),(277216,796),(277216,897),(277216,898),(277216,1157),(277216,2016),(277216,2231),(277216,2334),(277216,2930),(277216,4108),(277216,4562),(277216,4741),(277216,5626),(277216,6093),(277216,6564),(277216,7312),(277216,9672),(277216,9932),(277216,10726),(277216,10776),(277216,11148),(277216,11612),(277216,12425),(277216,12670),(277216,13142),(277216,156158),(277216,157499),(277216,158111),(277216,160497),(277216,163764),(277216,169213),(277216,169590),(277216,178036),(277216,178929),(277216,179431),(277216,187903),(277216,195162),(277216,208289),(277216,217467),(277216,217469),(277216,217474),(277216,217475),(277216,217482),(277685,6104),(277685,6733),(277685,9748),(277685,11615),(277685,13130),(277685,14819),(277685,18046),(277685,33740),(277685,34079),(277685,34094),(277685,41411),(277685,159472),(277685,162846),(277685,162914),(277685,163053),(277685,210112),(277685,220831),(277685,222333),(278927,818),(278927,1585),(278927,1994),(278927,2857),(278927,4809),(278927,5650),(278927,8775),(278927,9714),(278927,10468),(278927,10787),(278927,11477),(278927,13014),(278927,18165),(278927,167625),(280092,9663),(280381,156580),(280391,10336),(280391,34152),(280391,202647),(280871,2303),(280871,5565),(280871,228041),(280871,230112),(280871,230113),(281189,187056),(281230,187056),(281957,494),(281957,570),(281957,818),(281957,1262),(281957,1442),(281957,2522),(281957,3593),(281957,9454),(281957,9748),(281957,9826),(281957,10322),(281957,10349),(281957,10468),(281957,10794),(281957,14819),(281957,157164),(281957,158175),(281957,159138),(281957,185722),(281957,194976),(283384,14676),(283445,3358),(283445,9663),(283445,15016),(283671,8723),(283671,10787),(283708,657),(283708,1517),(283708,1562),(283708,2217),(283708,2673),(283708,9897),(283708,10103),(283708,10508),(283708,10873),(283708,11004),(283708,154842),(283708,156866),(283708,169449),(283708,189092),(283708,208611),(283708,213473),(283708,229053),(284293,456),(284293,1992),(284293,40895),(284296,3485),(284296,4434),(284296,12193),(284296,162262),(284296,165547),(284536,395),(284536,1419),(284536,1992),(284536,9849),(284536,155841),(284536,166631),(285743,3473),(285743,4344),(285743,9663),(285743,14999),(285743,177875),(285783,1228),(285783,1418),(285783,9672),(285783,156770),(285783,159334),(285783,161306),(285923,2804),(285923,12339),(285923,12377),(285923,15127),(286217,818),(286217,839),(286217,1432),(286217,1533),(286217,4003),(286217,9743),(286217,9831),(286217,9882),(286217,10160),(286217,10349),(286217,14626),(286217,156810),(286217,168603),(286217,179431),(286217,196367),(286565,6054),(286565,6270),(286565,13130),(286565,160243),(286565,223438),(287424,4458),(287424,4565),(287424,12377),(287524,10352),(287524,13005),(287524,13073),(287903,657),(287903,1442),(287903,1991),(287903,3373),(287903,5570),(287903,10794),(287903,11183),(287903,14755),(287903,14796),(287903,15001),(287903,15147),(287903,18035),(287903,156783),(287903,187844),(287903,207317),(287903,215571),(287903,215572),(287948,396),(287948,9663),(287948,9937),(287948,33885),(287948,191845),(287948,210313),(288927,187056),(288980,3799),(288980,6089),(288980,14906),(289180,187056),(290370,1442),(290370,1852),(290370,4458),(290370,4565),(290370,5404),(290370,221904),(290391,9748),(290391,9826),(290555,2393),(290555,12564),(290595,616),(290595,2343),(290595,3205),(290595,169341),(290595,211392),(290751,1812),(290751,156948),(290825,1329),(290825,2652),(290825,9663),(290825,15285),(290825,229863),(290864,779),(290864,780),(290864,10714),(291270,572),(291270,894),(291270,181324),(291362,7312),(291362,9716),(291362,9799),(291362,9935),(291805,212),(291805,478),(291805,2343),(291805,2908),(291805,7002),(291805,9663),(291805,9748),(291805,10051),(291805,10562),(291805,228519),(291805,236458),(291870,1158),(291870,4412),(291870,7312),(291870,13027),(291870,18115),(291870,33656),(291870,156883),(291870,170827),(292481,1480),(292481,9887),(292481,10103),(292481,156099),(292483,572),(292483,4543),(292483,6054),(292483,6270),(292483,9673),(292483,10683),(292483,180764),(293644,209714),(293646,6015),(293646,6460),(293646,9672),(293646,10349),(293646,187056),(293646,209339),(293660,2095),(293660,3070),(293660,8828),(293660,9715),(293660,9717),(293660,11687),(293660,179430),(293660,179431),(293660,223060),(293670,572),(293670,1415),(293670,2626),(293670,5340),(293670,5600),(293670,6149),(293670,9712),(293670,9826),(293670,10093),(293670,10541),(293670,10586),(293670,11326),(293670,12377),(293670,15001),(293670,18255),(293670,41557),(293670,162846),(293670,175681),(293670,233024),(293670,233025),(293863,582),(293863,4978),(293863,9673),(293863,15070),(294086,237),(294086,158718),(294254,818),(294254,836),(294254,2158),(294254,4458),(294254,4565),(294254,4884),(294254,10562),(294254,10685),(294254,12377),(294254,14527),(294254,14673),(294254,18034),(294254,41412),(294254,162344),(294254,188950),(294254,188957),(294254,204967),(294254,213987),(294254,219843),(294272,5650),(294272,9714),(294272,12554),(294272,13014),(294272,208289),(294272,209220),(295914,5565),(295964,212),(295964,1650),(295964,1946),(295964,2992),(295964,3658),(295964,3914),(295964,11436),(295964,14964),(295964,18179),(295964,18293),(295964,223064),(296096,392),(296096,818),(296096,894),(296096,1415),(296096,2564),(296096,10241),(296096,155209),(296096,158558),(296096,169152),(296096,187056),(296096,191100),(296096,207443),(296096,207819),(296098,470),(296098,591),(296098,2106),(296098,2111),(296098,3203),(296098,10909),(296098,14638),(296099,4944),(296099,5522),(296099,5543),(296099,6876),(296099,7312),(296099,9663),(296099,10041),(296099,14724),(296099,155582),(296099,156165),(296099,156768),(296099,158340),(296099,195687),(296099,220448),(296099,228417),(297596,591),(297596,4948),(297596,11134),(297596,13015),(297621,187056),(297761,849),(297761,1296),(297761,2095),(297761,3269),(297761,3289),(297761,9715),(297761,194404),(297761,229266),(298312,897),(298312,904),(298312,1155),(298312,4932),(298312,9229),(298312,9826),(298312,10103),(298312,10183),(298312,13127),(298312,14768),(298312,14819),(298312,160841),(298312,163053),(298312,172664),(298312,200283),(298584,6876),(298584,9714),(298584,9720),(298584,9786),(298584,9826),(298584,10292),(298584,10776),(298584,11221),(298584,13130),(298584,13209),(298584,14673),(298584,15162),(298584,162521),(298584,188957),(299145,9748),(299145,9826),(299145,188114),(299245,2125),(299245,6270),(299245,10614),(299245,33407),(299245,163053),(299245,221828),(299552,1419),(299552,10590),(299552,41249),(299552,187056),(299552,209994),(299553,1889),(299553,2988),(299687,818),(299687,4565),(299687,9951),(299687,14909),(299687,207569),(299687,215299),(299687,223438),(300671,818),(300671,1376),(300671,3070),(300671,5272),(300671,5565),(300671,9672),(300671,11115),(300671,14601),(300671,34061),(300671,34079),(300671,209493),(300671,214596),(300671,235476),(300673,3547),(300673,9672),(300673,10349),(300673,11107),(300673,168683),(300673,180100),(300673,208611),(300673,209714),(300706,199073),(300706,208508),(301351,186117),(301365,14818),(301748,622),(301748,15160),(301748,34214),(301748,163096),(301748,208450),(302156,591),(302156,10937),(302156,15234),(302156,46955),(302579,10322),(302579,12425),(302579,18035),(302579,187056),(302688,10267),(302688,13027),(302699,470),(302699,591),(302699,11134),(302699,161213),(302699,173367),(302699,207697),(303858,258),(303858,1589),(303858,2571),(303858,3051),(303858,6149),(303858,7188),(303858,14512),(303858,177493),(303858,181320),(303858,187056),(303858,214499),(304357,2652),(304357,9672),(304357,14893),(304357,159534),(304410,1643),(304410,6027),(304410,10683),(304410,10809),(304410,12990),(304410,18035),(304410,188953),(306667,2673),(306667,10809),(306745,586),(306745,6090),(306745,9833),(306745,10163),(307081,6075),(308529,779),(308529,18111),(308529,156159),(308529,161184),(308529,210531),(308531,380),(308531,6362),(308531,9663),(308531,9717),(308531,10278),(308531,189359),(308639,387),(308639,898),(308639,2463),(308639,5800),(308639,10683),(308639,13130),(308639,14964),(308639,33910),(309425,5950),(309503,187056),(309809,490),(309809,3469),(309809,3800),(309809,4414),(309809,4565),(309809,9736),(309809,9825),(309809,10226),(309809,10707),(309809,10873),(309809,10938),(309809,12663),(309809,14532),(309809,15101),(309809,170647),(309809,180787),(309809,209714),(309919,2801),(309919,3296),(309919,3687),(309919,6270),(309919,7281),(309919,8508),(309919,9826),(309919,10541),(309919,11221),(309919,13130),(309919,18087),(309919,179430),(310131,616),(310131,41393),(310131,207941),(310569,983),(310569,1161),(310569,10499),(310569,10707),(310569,12436),(310569,14514),(310569,17997),(310569,187056),(312221,240),(312221,6075),(312221,15285),(312221,17977),(312221,186779),(312221,209476),(312791,293),(312791,572),(312791,1879),(312791,2177),(312791,2483),(312791,3016),(312791,6095),(312791,6435),(312791,6614),(312791,9826),(312791,10768),(312791,11040),(312791,12339),(312791,14557),(312791,14819),(312791,14903),(312791,15069),(312791,18046),(312791,18049),(312791,18314),(312791,41180),(312791,157676),(312791,158436),(312791,191007),(312791,207844),(312791,222108),(312793,11931),(312793,12377),(313922,379),(313922,2671),(313922,6027),(313922,9665),(313922,9826),(313922,9937),(313922,10292),(313922,10798),(313922,11105),(313922,12341),(313922,15155),(313922,157470),(313922,157532),(313922,159949),(313922,173919),(313922,180179),(313922,210012),(313922,212424),(313922,221615),(313922,226907),(313922,226930),(313922,226931),(314365,516),(314365,917),(314365,934),(314365,1196),(314365,1680),(314365,2337),(314365,6148),(314365,9665),(314365,10093),(314365,10909),(314365,18396),(314365,157008),(314365,161207),(314365,161304),(314365,195240),(314365,204357),(314365,207317),(314385,254),(314385,612),(314385,1228),(314385,9872),(314385,9935),(314385,156455),(314385,166113),(314385,187056),(315011,1299),(315011,7671),(315011,11100),(315011,14796),(315011,161791),(315011,235525),(315664,2199),(315664,5565),(315664,235768),(316002,2864),(316002,9799),(316002,223162),(316152,2831),(316152,179585),(316727,4565),(316727,9663),(316727,221958),(318846,974),(318846,4373),(318846,5565),(318846,5636),(318846,6118),(318846,9672),(318846,11321),(318846,11687),(318846,18040),(318846,165193),(318846,179867),(318846,188072),(318850,1160),(318850,2974),(318850,5708),(318850,5950),(318850,189092),(318850,192002),(319069,187056),(319888,240),(319888,2070),(319888,3476),(319888,5565),(319888,6075),(319888,9672),(319888,14905),(319888,159558),(319888,234095),(320146,4563),(320146,12999),(321258,236),(321258,392),(321258,657),(321258,1655),(321258,1879),(321258,2341),(321258,2546),(321258,5202),(321258,9826),(321258,12545),(321258,14819),(321258,33630),(321258,158567),(321258,171964),(321258,176706),(321258,204298),(321697,5565),(321697,6104),(321697,15300),(321697,157935),(321697,161160),(321697,185722),(321741,579),(321741,4526),(321741,5565),(321741,167882),(321741,174818),(321741,197102),(321741,201189),(321741,208788),(321741,234946),(322194,339),(322194,187056),(323270,9706),(323675,6149),(323675,9663),(323675,15090),(323675,164677),(323675,179450),(323675,217452),(323676,4021),(323676,156121),(323676,179431),(323676,209788),(323677,2070),(323677,5565),(323677,6075),(323677,6165),(323677,11064),(323677,12425),(323677,12532),(323677,187901),(323967,9649),(323967,187056),(324322,187056),(324352,10683),(324668,782),(324668,1453),(324668,187844),(325133,567),(325133,3616),(325133,8508),(325133,9663),(325133,10058),(325133,10226),(325133,18035),(325133,157632),(325133,193674),(325373,1415),(325373,4663),(325373,10468),(325373,34154),(325789,1568),(325789,5565),(325789,14964),(325789,18026),(327833,779),(327833,3432),(327833,6019),(327833,10514),(327833,11723),(327833,213132),(328111,2551),(328111,3208),(328111,11500),(328111,15162),(328111,18165),(328111,33347),(328111,41412),(328111,158225),(328111,168346),(328111,204052),(328111,229051),(328387,818),(328387,1576),(328387,11615),(328387,12361),(328387,13130),(328387,14512),(328387,18249),(328387,186846),(328387,201871),(328387,212562),(328387,223438),(328387,229980),(328387,235098),(328425,703),(328425,6844),(328425,9989),(328425,10624),(328425,12565),(329440,233),(329440,5774),(329833,6241),(329833,9663),(329833,15479),(329833,167193),(329833,167200),(329833,173242),(330770,428),(330770,658),(330770,966),(330770,5202),(330770,10721),(330770,11221),(330770,187056),(331190,1562),(331190,9672),(331190,9826),(331190,10183),(331190,14768),(331190,14964),(331190,18179),(331190,155936),(331190,170219),(331190,185722),(331592,1328),(331592,1475),(331592,1576),(331592,3338),(331592,6086),(331592,9678),(331592,10085),(331592,14782),(331592,15017),(331592,18419),(331745,271),(331745,5526),(331745,10073),(331745,187056),(332285,726),(332285,1706),(332285,2136),(332285,10410),(332285,12553),(332285,13059),(332285,13149),(332285,232580),(332285,232581),(332285,232582),(332411,9748),(332411,9826),(332411,11734),(332411,14819),(332411,156024),(332411,189368),(332411,226268),(332567,534),(332567,966),(332567,1524),(332567,2041),(332567,10349),(332567,14712),(332567,15097),(332567,15098),(332567,18029),(332567,158130),(332567,223059),(332567,228752),(333348,4498),(333348,10235),(333348,18035),(333348,187056),(333348,207317),(333355,6091),(333355,161176),(333355,210894),(333371,1930),(333371,2321),(333371,2340),(333371,9866),(333371,10833),(333371,12332),(333371,13063),(333371,15381),(334074,613),(334074,657),(334074,797),(334074,949),(334074,4123),(334074,4709),(334074,9276),(334074,10124),(334074,10562),(334074,13014),(334074,34079),(334074,159841),(334074,175023),(334074,215163),(334527,11578),(334527,188259),(334527,192143),(334527,199093),(334527,210295),(334527,221004),(334527,236534),(334531,579),(334531,5565),(334531,6075),(334531,169071),(335244,187056),(335778,186),(335778,2974),(335778,3033),(335778,3571),(335778,3575),(335778,5049),(335778,6150),(335778,6506),(335778,10877),(335778,11704),(335778,14989),(335778,156081),(335866,10349),(335866,13129),(335866,156104),(335866,220885),(336004,585),(336004,642),(336004,8038),(336004,10051),(339408,2831),(339984,2618),(339984,5950),(339984,180443),(339984,187056),(339984,207819),(340611,818),(340611,2315),(340611,2494),(340611,208611),(340816,1003),(340816,3262),(340816,3537),(340816,13005),(340816,13063),(340816,14755),(340816,173325),(340816,188960),(340816,207317),(342502,2808),(342502,159700),(342502,167377),(342502,169123),(342502,195908),(342521,2708),(342521,3688),(342521,12532),(342521,13142),(342521,15483),(342521,156143),(342521,167541),(342521,208009),(342521,227198),(342521,227201),(343409,187056),(343795,11612),(343795,14765),(345003,1568),(345003,4924),(345003,12193),(345911,236),(345911,3762),(345911,9866),(345911,156866),(345911,161812),(345911,162846),(347126,5950),(347969,155573),(351819,572),(351819,9215),(351819,9755),(351819,11931),(351819,33626),(352978,380),(352978,417),(352978,9748),(352978,181635),(354624,10558),(355629,5967),(356483,2210),(356483,6678),(356987,230912),(357837,246),(357837,271),(357837,612),(357837,1196),(357837,207010),(358451,187056),(360188,1299),(360188,9970),(360188,207583),(360339,2041),(360339,3800),(360339,10349),(360339,13042),(360339,14541),(360339,34051),(361159,3134),(361159,11219),(361159,12377),(361159,14819),(361159,207419),(361159,207891),(361159,209618),(361475,237),(364083,40865),(364083,160335),(365222,5565),(367961,5331),(367961,13031),(367961,14643),(367961,15149),(367961,18136),(370464,1499),(370464,9672),(370464,11431),(370662,2210),(370662,10073),(370980,717),(370980,5565),(374461,1650),(374461,6054),(375290,2227),(375290,6091),(375290,9672),(375290,15087),(375950,11612),(375950,13005),(376659,567),(376659,1010),(376659,8508),(376659,15160),(376659,18035),(376659,163173),(376659,193674),(378200,622),(378200,5564),(378200,9639),(378200,10050),(378200,12392),(380733,6075),(380733,14955),(381902,207411),(385383,586),(385383,779),(385383,5923),(385383,6075),(385383,9826),(385383,9917),(385383,15108),(385383,17977),(385383,33610),(385383,205851),(385636,445),(385636,572),(385636,9673),(385636,13130),(385636,34079),(385736,3405),(385736,11732),(385736,156117),(385736,233047),(385736,233048),(386826,3880),(394047,1568),(394047,15162),(394047,206207),(394047,233292),(394047,234360),(394047,234361),(394047,234362),(395766,11162),(402515,321),(402515,8087),(402515,13073),(402515,208293),(402515,229675),(402515,229676),(407887,10586),(407887,229851),(407887,231846),(407887,231847),(407887,231848),(407887,231849),(417859,4414),(417859,6187),(433715,10060),(433715,15049),(459488,6027),(459488,225822),(459488,233443),(459488,235277),(459488,235690),(459488,235691);
/*!40000 ALTER TABLE `movie_keywords` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `movie_languages`
--
DROP TABLE IF EXISTS `movie_languages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `movie_languages` (
`movie_id` int(10) DEFAULT NULL,
`language_id` int(10) DEFAULT NULL,
`language_role_id` int(10) DEFAULT NULL,
KEY `fk_ml_movie` (`movie_id`),
KEY `fk_ml_lang` (`language_id`),
KEY `fk_ml_role` (`language_role_id`),
CONSTRAINT `fk_ml_lang` FOREIGN KEY (`language_id`) REFERENCES `language` (`language_id`),
CONSTRAINT `fk_ml_movie` FOREIGN KEY (`movie_id`) REFERENCES `movie` (`movie_id`),
CONSTRAINT `fk_ml_role` FOREIGN KEY (`language_role_id`) REFERENCES `language_role` (`role_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `movie_languages`
--
LOCK TABLES `movie_languages` WRITE;
/*!40000 ALTER TABLE `movie_languages` DISABLE KEYS */;
INSERT INTO `movie_languages` VALUES (5,24574,2),(11,24574,2),(12,24574,2),(13,24574,2),(14,24574,2),(16,24574,2),(18,24574,2),(20,24574,2),(22,24574,2),(24,24574,2),(25,24574,2),(28,24574,2),(33,24574,2),(35,24574,2),(38,24574,2),(58,24574,2),(59,24574,2),(62,24574,2),(65,24574,2),(66,24574,2),(68,24574,2),(69,24574,2),(70,24574,2),(71,24574,2),(73,24574,2),(74,24574,2),(75,24574,2),(76,24574,2),(77,24574,2),(78,24574,2),(80,24574,2),(83,24574,2),(85,24574,2),(87,24574,2),(89,24574,2),(90,24574,2),(95,24574,2),(96,24574,2),(98,24574,2),(100,24574,2),(103,24574,2),(104,24574,2),(105,24574,2),(106,24574,2),(107,24574,2),(111,24574,2),(114,24574,2),(115,24574,2),(116,24574,2),(117,24574,2),(118,24574,2),(120,24574,2),(121,24574,2),(122,24574,2),(134,24574,2),(137,24574,2),(141,24574,2),(142,24574,2),(152,24574,2),(153,24574,2),(154,24574,2),(155,24574,2),(157,24574,2),(161,24574,2),(162,24574,2),(163,24574,2),(165,24574,2),(167,24574,2),(168,24574,2),(169,24574,2),(170,24574,2),(172,24574,2),(173,24574,2),(174,24574,2),(176,24574,2),(177,24574,2),(179,24574,2),(180,24574,2),(182,24574,2),(184,24574,2),(186,24574,2),(187,24574,2),(189,24574,2),(193,24574,2),(196,24574,2),(197,24574,2),(199,24574,2),(200,24574,2),(201,24574,2),(203,24574,2),(205,24574,2),(207,24574,2),(214,24574,2),(215,24574,2),(217,24574,2),(218,24574,2),(223,24574,2),(226,24574,2),(227,24574,2),(231,24574,2),(235,24574,2),(238,24574,2),(239,24574,2),(240,24574,2),(242,24574,2),(243,24574,2),(245,24574,2),(248,24574,2),(251,24574,2),(252,24574,2),(253,24574,2),(254,24574,2),(257,24574,2),(261,24574,2),(268,24574,2),(272,24574,2),(274,24574,2),(277,24574,2),(278,24574,2),(279,24574,2),(280,24574,2),(284,24574,2),(285,24574,2),(288,24574,2),(289,24574,2),(291,24574,2),(292,24574,2),(296,24574,2),(297,24574,2),(298,24574,2),(302,24574,2),(306,24574,2),(309,24574,2),(310,24574,2),(311,24574,2),(314,24574,2),(319,24574,2),(320,24574,2),(321,24574,2),(322,24574,2),(326,24574,2),(327,24574,2),(329,24574,2),(330,24574,2),(331,24574,2),(332,24574,2),(334,24574,2),(335,24574,2),(345,24574,2),(348,24574,2),(350,24574,2),(364,24574,2),(377,24574,2),(380,24574,2),(387,24574,2),(388,24574,2),(389,24574,2),(392,24574,2),(393,24574,2),(395,24574,2),(398,24574,2),(400,24574,2),(401,24574,2),(403,24574,2),(404,24574,2),(408,24574,2),(409,24574,2),(411,24574,2),(414,24574,2),(415,24574,2),(421,24574,2),(423,24574,2),(424,24574,2),(425,24574,2),(431,24574,2),(433,24574,2),(435,24574,2),(436,24574,2),(440,24574,2),(451,24574,2),(453,24574,2),(454,24574,2),(455,24574,2),(462,24574,2),(464,24574,2),(468,24574,2),(470,24574,2),(473,24574,2),(479,24574,2),(480,24574,2),(489,24574,2),(492,24574,2),(496,24574,2),(497,24574,2),(500,24574,2),(503,24574,2),(504,24574,2),(507,24574,2),(508,24574,2),(509,24574,2),(510,24574,2),(512,24574,2),(522,24574,2),(524,24574,2),(525,24574,2),(526,24574,2),(533,24574,2),(534,24574,2),(535,24574,2),(539,24574,2),(540,24574,2),(544,24574,2),(546,24574,2),(547,24574,2),(549,24574,2),(550,24574,2),(557,24574,2),(558,24574,2),(559,24574,2),(562,24574,2),(563,24574,2),(568,24574,2),(573,24574,2),(576,24574,2),(577,24574,2),(578,24574,2),(579,24574,2),(580,24574,2),(581,24574,2),(584,24574,2),(585,24574,2),(586,24574,2),(587,24574,2),(588,24574,2),(590,24574,2),(591,24574,2),(592,24574,2),(594,24574,2),(595,24574,2),(597,24574,2),(601,24574,2),(602,24574,2),(603,24574,2),(604,24574,2),(605,24574,2),(606,24574,2),(607,24574,2),(608,24574,2),(609,24574,2),(612,24574,2),(616,24574,2),(617,24574,2),(619,24574,2),(621,24574,2),(622,24574,2),(627,24574,2),(628,24574,2),(629,24574,2),(630,24574,2),(634,24574,2),(639,24574,2),(640,24574,2),(641,24574,2),(642,24574,2),(644,24574,2),(646,24574,2),(650,24574,2),(652,24574,2),(654,24574,2),(657,24574,2),(658,24574,2),(660,24574,2),(663,24574,2),(664,24574,2),(667,24574,2),(668,24574,2),(671,24574,2),(672,24574,2),(673,24574,2),(674,24574,2),(675,24574,2),(676,24574,2),(679,24574,2),(680,24574,2),(681,24574,2),(682,24574,2),(686,24574,2),(687,24574,2),(688,24574,2),(691,24574,2),(692,24574,2),(693,24574,2),(694,24574,2),(698,24574,2),(699,24574,2),(700,24574,2),(702,24574,2),(703,24574,2),(704,24574,2),(707,24574,2),(708,24574,2),(709,24574,2),(710,24574,2),(711,24574,2),(712,24574,2),(713,24574,2),(714,24574,2),(744,24574,2),(745,24574,2),(746,24574,2),(747,24574,2),(752,24574,2),(754,24574,2),(755,24574,2),(756,24574,2),(762,24574,2),(764,24574,2),(765,24574,2),(766,24574,2),(767,24574,2),(768,24574,2),(769,24574,2),(770,24574,2),(771,24574,2),(772,24574,2),(773,24574,2),(782,24574,2),(783,24574,2),(786,24574,2),(787,24574,2),(788,24574,2),(790,24574,2),(792,24574,2),(794,24574,2),(795,24574,2),(796,24574,2),(801,24574,2),(802,24574,2),(805,24574,2),(807,24574,2),(808,24574,2),(809,24574,2),(811,24574,2),(812,24574,2),(813,24574,2),(816,24574,2),(817,24574,2),(818,24574,2),(819,24574,2),(820,24574,2),(821,24574,2),(824,24574,2),(826,24574,2),(834,24574,2),(837,24574,2),(838,24574,2),(840,24574,2),(841,24574,2),(846,24574,2),(848,24574,2),(849,24574,2),(850,24574,2),(853,24574,2),(854,24574,2),(855,24574,2),(857,24574,2),(859,24574,2),(860,24574,2),(861,24574,2),(862,24574,2),(863,24574,2),(864,24574,2),(865,24574,2),(866,24574,2),(869,24574,2),(872,24574,2),(873,24574,2),(874,24574,2),(879,24574,2),(881,24574,2),(887,24574,2),(888,24574,2),(889,24574,2),(907,24574,2),(913,24574,2),(920,24574,2),(921,24574,2),(924,24574,2),(925,24574,2),(926,24574,2),(927,24574,2),(928,24574,2),(935,24574,2),(943,24574,2),(944,24574,2),(947,24574,2),(948,24574,2),(950,24574,2),(951,24574,2),(953,24574,2),(954,24574,2),(955,24574,2),(956,24574,2),(957,24574,2),(978,24574,2),(985,24574,2),(987,24574,2),(990,24574,2),(1018,24574,2),(1024,24574,2),(1051,24574,2),(1073,24574,2),(1088,24574,2),(1090,24574,2),(1091,24574,2),(1103,24574,2),(1116,24574,2),(1123,24574,2),(1124,24574,2),(1125,24574,2),(1164,24574,2),(1165,24574,2),(1213,24574,2),(1245,24574,2),(1246,24574,2),(1248,24574,2),(1250,24574,2),(1251,24574,2),(1257,24574,2),(1259,24574,2),(1262,24574,2),(1265,24574,2),(1266,24574,2),(1268,24574,2),(1271,24574,2),(1272,24574,2),(1273,24574,2),(1282,24574,2),(1359,24574,2),(1360,24574,2),(1365,24574,2),(1366,24574,2),(1368,24574,2),(1369,24574,2),(1370,24574,2),(1372,24574,2),(1378,24574,2),(1381,24574,2),(1382,24574,2),(1389,24574,2),(1402,24574,2),(1408,24574,2),(1412,24574,2),(1415,24574,2),(1422,24574,2),(1424,24574,2),(1427,24574,2),(1428,24574,2),(1429,24574,2),(1430,24574,2),(1435,24574,2),(1439,24574,2),(1440,24574,2),(1443,24574,2),(1452,24574,2),(1487,24574,2),(1491,24574,2),(1493,24574,2),(1495,24574,2),(1497,24574,2),(1499,24574,2),(1523,24574,2),(1535,24574,2),(1537,24574,2),(1538,24574,2),(1542,24574,2),(1544,24574,2),(1546,24574,2),(1547,24574,2),(1548,24574,2),(1550,24574,2),(1551,24574,2),(1555,24574,2),(1562,24574,2),(1571,24574,2),(1572,24574,2),(1573,24574,2),(1574,24574,2),(1576,24574,2),(1577,24574,2),(1578,24574,2),(1579,24574,2),(1581,24574,2),(1584,24574,2),(1585,24574,2),(1586,24574,2),(1587,24574,2),(1588,24574,2),(1591,24574,2),(1593,24574,2),(1597,24574,2),(1598,24574,2),(1599,24574,2),(1613,24574,2),(1619,24574,2),(1620,24574,2),(1621,24574,2),(1624,24574,2),(1635,24574,2),(1636,24574,2),(1637,24574,2),(1639,24574,2),(1640,24574,2),(1642,24574,2),(1645,24574,2),(1646,24574,2),(1648,24574,2),(1649,24574,2),(1656,24574,2),(1667,24574,2),(1669,24574,2),(1677,24574,2),(1683,24574,2),(1685,24574,2),(1687,24574,2),(1688,24574,2),(1690,24574,2),(1691,24574,2),(1696,24574,2),(1701,24574,2),(1705,24574,2),(1710,24574,2),(1717,24574,2),(1722,24574,2),(1724,24574,2),(1725,24574,2),(1726,24574,2),(1729,24574,2),(1734,24574,2),(1735,24574,2),(1770,24574,2),(1771,24574,2),(1777,24574,2),(1779,24574,2),(1781,24574,2),(1788,24574,2),(1792,24574,2),(1808,24574,2),(1809,24574,2),(1813,24574,2),(1817,24574,2),(1819,24574,2),(1824,24574,2),(1830,24574,2),(1831,24574,2),(1832,24574,2),(1833,24574,2),(1844,24574,2),(1850,24574,2),(1852,24574,2),(1858,24574,2),(1865,24574,2),(1874,24574,2),(1878,24574,2),(1880,24574,2),(1883,24574,2),(1885,24574,2),(1887,24574,2),(1891,24574,2),(1892,24574,2),(1893,24574,2),(1894,24574,2),(1895,24574,2),(1900,24574,2),(1901,24574,2),(1903,24574,2),(1904,24574,2),(1907,24574,2),(1909,24574,2),(1911,24574,2),(1921,24574,2),(1924,24574,2),(1927,24574,2),(1930,24574,2),(1931,24574,2),(1933,24574,2),(1934,24574,2),(1946,24574,2),(1947,24574,2),(1948,24574,2),(1949,24574,2),(1950,24574,2),(1951,24574,2),(1954,24574,2),(1955,24574,2),(1956,24574,2),(1957,24574,2),(1961,24574,2),(1966,24574,2),(1969,24574,2),(1970,24574,2),(1975,24574,2),(1979,24574,2),(1985,24574,2),(1988,24574,2),(1989,24574,2),(1995,24574,2),(1996,24574,2),(1997,24574,2),(1999,24574,2),(2001,24574,2),(2008,24574,2),(2011,24574,2),(2018,24574,2),(2022,24574,2),(2023,24574,2),(2024,24574,2),(2026,24574,2),(2034,24574,2),(2043,24574,2),(2044,24574,2),(2048,24574,2),(2054,24574,2),(2055,24574,2),(2056,24574,2),(2057,24574,2),(2059,24574,2),(2062,24574,2),(2067,24574,2),(2069,24574,2),(2074,24574,2),(2080,24574,2),(2084,24574,2),(2085,24574,2),(2088,24574,2),(2100,24574,2),(2105,24574,2),(2112,24574,2),(2114,24574,2),(2116,24574,2),(2118,24574,2),(2119,24574,2),(2122,24574,2),(2123,24574,2),(2133,24574,2),(2135,24574,2),(2140,24574,2),(2142,24574,2),(2148,24574,2),(2155,24574,2),(2157,24574,2),(2162,24574,2),(2163,24574,2),(2176,24574,2),(2185,24574,2),(2196,24574,2),(2207,24574,2),(2251,24574,2),(2252,24574,2),(2253,24574,2),(2255,24574,2),(2266,24574,2),(2268,24574,2),(2270,24574,2),(2275,24574,2),(2277,24574,2),(2280,24574,2),(2287,24574,2),(2288,24574,2),(2289,24574,2),(2290,24574,2),(2292,24574,2),(2293,24574,2),(2294,24574,2),(2295,24574,2),(2300,24574,2),(2309,24574,2),(2310,24574,2),(2312,24574,2),(2320,24574,2),(2355,24574,2),(2359,24574,2),(2370,24574,2),(2428,24574,2),(2447,24574,2),(2453,24574,2),(2454,24574,2),(2486,24574,2),(2493,24574,2),(2501,24574,2),(2502,24574,2),(2503,24574,2),(2539,24574,2),(2567,24574,2),(2575,24574,2),(2577,24574,2),(2604,24574,2),(2610,24574,2),(2619,24574,2),(2621,24574,2),(2636,24574,2),(2637,24574,2),(2639,24574,2),(2642,24574,2),(2649,24574,2),(2652,24574,2),(2655,24574,2),(2661,24574,2),(2662,24574,2),(2666,24574,2),(2667,24574,2),(2669,24574,2),(2675,24574,2),(2687,24574,2),(2698,24574,2),(2749,24574,2),(2752,24574,2),(2755,24574,2),(2756,24574,2),(2757,24574,2),(2770,24574,2),(2771,24574,2),(2779,24574,2),(2787,24574,2),(2789,24574,2),(2830,24574,2),(2832,24574,2),(2895,24574,2),(2898,24574,2),(2900,24574,2),(2907,24574,2),(2925,24574,2),(2959,24574,2),(2976,24574,2),(2977,24574,2),(2989,24574,2),(3021,24574,2),(3028,24574,2),(3033,24574,2),(3034,24574,2),(3049,24574,2),(3050,24574,2),(3059,24574,2),(3062,24574,2),(3078,24574,2),(3080,24574,2),(3082,24574,2),(3083,24574,2),(3089,24574,2),(3093,24574,2),(3116,24574,2),(3131,24574,2),(3132,24574,2),(3170,24574,2),(3172,24574,2),(3175,24574,2),(3179,24574,2),(3291,24574,2),(3472,24574,2),(3482,24574,2),(3489,24574,2),(3509,24574,2),(3512,24574,2),(3536,24574,2),(3558,24574,2),(3580,24574,2),(3587,24574,2),(3594,24574,2),(3595,24574,2),(3597,24574,2),(3600,24574,2),(3604,24574,2),(3635,24574,2),(3638,24574,2),(3682,24574,2),(3683,24574,2),(3766,24574,2),(3877,24574,2),(3902,24574,2),(3933,24574,2),(3981,24574,2),(3989,24574,2),(4011,24574,2),(4012,24574,2),(4032,24574,2),(4105,24574,2),(4107,24574,2),(4108,24574,2),(4133,24574,2),(4147,24574,2),(4148,24574,2),(4170,24574,2),(4174,24574,2),(4232,24574,2),(4233,24574,2),(4234,24574,2),(4244,24574,2),(4248,24574,2),(4256,24574,2),(4257,24574,2),(4258,24574,2),(4327,24574,2),(4347,24574,2),(4348,24574,2),(4349,24574,2),(4379,24574,2),(4380,24574,2),(4421,24574,2),(4442,24574,2),(4464,24574,2),(4474,24574,2),(4476,24574,2),(4477,24574,2),(4512,24574,2),(4513,24574,2),(4515,24574,2),(4517,24574,2),(4518,24574,2),(4523,24574,2),(4547,24574,2),(4550,24574,2),(4551,24574,2),(4553,24574,2),(4566,24574,2),(4584,24574,2),(4597,24574,2),(4599,24574,2),(4614,24574,2),(4638,24574,2),(4657,24574,2),(4688,24574,2),(4723,24574,2),(4806,24574,2),(4816,24574,2),(4824,24574,2),(4836,24574,2),(4858,24574,2),(4911,24574,2),(4912,24574,2),(4922,24574,2),(4929,24574,2),(4942,24574,2),(4944,24574,2),(4951,24574,2),(4953,24574,2),(4958,24574,2),(4959,24574,2),(4960,24574,2),(4964,24574,2),(4965,24574,2),(4967,24574,2),(4970,24574,2),(4982,24574,2),(4995,24574,2),(4997,24574,2),(5038,24574,2),(5072,24574,2),(5123,24574,2),(5125,24574,2),(5126,24574,2),(5137,24574,2),(5172,24574,2),(5174,24574,2),(5175,24574,2),(5176,24574,2),(5178,24574,2),(5236,24574,2),(5255,24574,2),(5279,24574,2),(5353,24574,2),(5393,24574,2),(5491,24574,2),(5494,24574,2),(5503,24574,2),(5516,24574,2),(5550,24574,2),(5551,24574,2),(5559,24574,2),(5689,24574,2),(5708,24574,2),(5722,24574,2),(5723,24574,2),(5759,24574,2),(5769,24574,2),(5780,24574,2),(5820,24574,2),(5822,24574,2),(5852,24574,2),(5854,24574,2),(5876,24574,2),(5902,24574,2),(5915,24574,2),(5925,24574,2),(5955,24574,2),(5966,24574,2),(5971,24574,2),(5994,24574,2),(6016,24574,2),(6020,24574,2),(6023,24574,2),(6038,24574,2),(6068,24574,2),(6071,24574,2),(6073,24574,2),(6106,24574,2),(6114,24574,2),(6116,24574,2),(6171,24574,2),(6217,24574,2),(6278,24574,2),(6282,24574,2),(6415,24574,2),(6435,24574,2),(6439,24574,2),(6440,24574,2),(6466,24574,2),(6477,24574,2),(6478,24574,2),(6479,24574,2),(6488,24574,2),(6519,24574,2),(6520,24574,2),(6521,24574,2),(6538,24574,2),(6552,24574,2),(6557,24574,2),(6575,24574,2),(6615,24574,2),(6623,24574,2),(6639,24574,2),(6687,24574,2),(6795,24574,2),(6877,24574,2),(6933,24574,2),(6947,24574,2),(6950,24574,2),(6957,24574,2),(6961,24574,2),(6963,24574,2),(6964,24574,2),(6968,24574,2),(6972,24574,2),(6973,24574,2),(6977,24574,2),(6978,24574,2),(7006,24574,2),(7191,24574,2),(7214,24574,2),(7220,24574,2),(7278,24574,2),(7288,24574,2),(7299,24574,2),(7301,24574,2),(7303,24574,2),(7304,24574,2),(7305,24574,2),(7326,24574,2),(7341,24574,2),(7345,24574,2),(7350,24574,2),(7364,24574,2),(7443,24574,2),(7445,24574,2),(7446,24574,2),(7450,24574,2),(7451,24574,2),(7453,24574,2),(7459,24574,2),(7461,24574,2),(7484,24574,2),(7485,24574,2),(7501,24574,2),(7510,24574,2),(7512,24574,2),(7515,24574,2),(7516,24574,2),(7518,24574,2),(7547,24574,2),(7548,24574,2),(7552,24574,2),(7553,24574,2),(7737,24574,2),(7859,24574,2),(7863,24574,2),(7870,24574,2),(7873,24574,2),(7874,24574,2),(7942,24574,2),(7944,24574,2),(7978,24574,2),(7979,24574,2),(7980,24574,2),(8007,24574,2),(8009,24574,2),(8011,24574,2),(8012,24574,2),(8046,24574,2),(8051,24574,2),(8053,24574,2),(8054,24574,2),(8055,24574,2),(8060,24574,2),(8065,24574,2),(8068,24574,2),(8069,24574,2),(8077,24574,2),(8078,24574,2),(8080,24574,2),(8090,24574,2),(8095,24574,2),(8141,24574,2),(8193,24574,2),(8195,24574,2),(8197,24574,2),(8198,24574,2),(8202,24574,2),(8204,24574,2),(8224,24574,2),(8271,24574,2),(8272,24574,2),(8273,24574,2),(8285,24574,2),(8291,24574,2),(8292,24574,2),(8293,24574,2),(8321,24574,2),(8326,24574,2),(8328,24574,2),(8337,24574,2),(8338,24574,2),(8346,24574,2),(8355,24574,2),(8357,24574,2),(8358,24574,2),(8359,24574,2),(8363,24574,2),(8367,24574,2),(8373,24574,2),(8374,24574,2),(8386,24574,2),(8390,24574,2),(8408,24574,2),(8409,24574,2),(8413,24574,2),(8416,24574,2),(8427,24574,2),(8435,24574,2),(8452,24574,2),(8456,24574,2),(8457,24574,2),(8461,24574,2),(8467,24574,2),(8469,24574,2),(8470,24574,2),(8487,24574,2),(8488,24574,2),(8489,24574,2),(8536,24574,2),(8545,24574,2),(8584,24574,2),(8587,24574,2),(8592,24574,2),(8617,24574,2),(8618,24574,2),(8619,24574,2),(8643,24574,2),(8645,24574,2),(8649,24574,2),(8656,24574,2),(8665,24574,2),(8669,24574,2),(8675,24574,2),(8676,24574,2),(8681,24574,2),(8688,24574,2),(8698,24574,2),(8699,24574,2),(8741,24574,2),(8744,24574,2),(8780,24574,2),(8810,24574,2),(8814,24574,2),(8818,24574,2),(8831,24574,2),(8834,24574,2),(8835,24574,2),(8836,24574,2),(8838,24574,2),(8839,24574,2),(8840,24574,2),(8842,24574,2),(8843,24574,2),(8847,24574,2),(8848,24574,2),(8849,24574,2),(8850,24574,2),(8854,24574,2),(8859,24574,2),(8869,24574,2),(8870,24574,2),(8871,24574,2),(8872,24574,2),(8874,24574,2),(8875,24574,2),(8879,24574,2),(8885,24574,2),(8909,24574,2),(8913,24574,2),(8914,24574,2),(8916,24574,2),(8920,24574,2),(8922,24574,2),(8942,24574,2),(8944,24574,2),(8952,24574,2),(8953,24574,2),(8960,24574,2),(8961,24574,2),(8963,24574,2),(8966,24574,2),(8967,24574,2),(8968,24574,2),(8970,24574,2),(8975,24574,2),(8976,24574,2),(8978,24574,2),(8981,24574,2),(8982,24574,2),(8984,24574,2),(8987,24574,2),(8988,24574,2),(8998,24574,2),(8999,24574,2),(9003,24574,2),(9007,24574,2),(9008,24574,2),(9009,24574,2),(9012,24574,2),(9013,24574,2),(9016,24574,2),(9021,24574,2),(9022,24574,2),(9023,24574,2),(9026,24574,2),(9027,24574,2),(9029,24574,2),(9030,24574,2),(9032,24574,2),(9034,24574,2),(9035,24574,2),(9036,24574,2),(9042,24574,2),(9043,24574,2),(9045,24574,2),(9053,24574,2),(9059,24574,2),(9067,24574,2),(9072,24574,2),(9074,24574,2),(9075,24574,2),(9087,24574,2),(9089,24574,2),(9092,24574,2),(9093,24574,2),(9095,24574,2),(9096,24574,2),(9099,24574,2),(9100,24574,2),(9104,24574,2),(9208,24574,2),(9257,24574,2),(9260,24574,2),(9266,24574,2),(9268,24574,2),(9271,24574,2),(9273,24574,2),(9275,24574,2),(9276,24574,2),(9277,24574,2),(9279,24574,2),(9280,24574,2),(9281,24574,2),(9282,24574,2),(9285,24574,2),(9286,24574,2),(9288,24574,2),(9289,24574,2),(9290,24574,2),(9291,24574,2),(9292,24574,2),(9294,24574,2),(9297,24574,2),(9303,24574,2),(9304,24574,2),(9306,24574,2),(9310,24574,2),(9311,24574,2),(9312,24574,2),(9313,24574,2),(9315,24574,2),(9327,24574,2),(9331,24574,2),(9334,24574,2),(9335,24574,2),(9336,24574,2),(9339,24574,2),(9341,24574,2),(9342,24574,2),(9344,24574,2),(9348,24574,2),(9350,24574,2),(9352,24574,2),(9353,24574,2),(9355,24574,2),(9357,24574,2),(9358,24574,2),(9360,24574,2),(9361,24574,2),(9362,24574,2),(9366,24574,2),(9372,24574,2),(9374,24574,2),(9378,24574,2),(9381,24574,2),(9383,24574,2),(9384,24574,2),(9387,24574,2),(9388,24574,2),(9389,24574,2),(9390,24574,2),(9392,24574,2),(9396,24574,2),(9398,24574,2),(9400,24574,2),(9408,24574,2),(9414,24574,2),(9416,24574,2),(9422,24574,2),(9424,24574,2),(9425,24574,2),(9427,24574,2),(9428,24574,2),(9429,24574,2),(9430,24574,2),(9433,24574,2),(9434,24574,2),(9437,24574,2),(9440,24574,2),(9441,24574,2),(9443,24574,2),(9444,24574,2),(9447,24574,2),(9448,24574,2),(9449,24574,2),(9451,24574,2),(9452,24574,2),(9454,24574,2),(9455,24574,2),(9457,24574,2),(9459,24574,2),(9464,24574,2),(9466,24574,2),(9469,24574,2),(9471,24574,2),(9472,24574,2),(9473,24574,2),(9476,24574,2),(9481,24574,2),(9486,24574,2),(9487,24574,2),(9488,24574,2),(9489,24574,2),(9490,24574,2),(9493,24574,2),(9495,24574,2),(9502,24574,2),(9504,24574,2),(9509,24574,2),(9513,24574,2),(9515,24574,2),(9516,24574,2),(9517,24574,2),(9526,24574,2),(9531,24574,2),(9532,24574,2),(9533,24574,2),(9535,24574,2),(9541,24574,2),(9543,24574,2),(9544,24574,2),(9548,24574,2),(9549,24574,2),(9552,24574,2),(9555,24574,2),(9557,24574,2),(9562,24574,2),(9563,24574,2),(9566,24574,2),(9567,24574,2),(9570,24574,2),(9571,24574,2),(9573,24574,2),(9574,24574,2),(9576,24574,2),(9582,24574,2),(9583,24574,2),(9587,24574,2),(9588,24574,2),(9591,24574,2),(9593,24574,2),(9594,24574,2),(9598,24574,2),(9600,24574,2),(9603,24574,2),(9607,24574,2),(9610,24574,2),(9613,24574,2),(9614,24574,2),(9615,24574,2),(9616,24574,2),(9618,24574,2),(9619,24574,2),(9620,24574,2),(9621,24574,2),(9623,24574,2),(9624,24574,2),(9625,24574,2),(9626,24574,2),(9631,24574,2),(9637,24574,2),(9641,24574,2),(9644,24574,2),(9645,24574,2),(9647,24574,2),(9654,24574,2),(9655,24574,2),(9656,24574,2),(9659,24574,2),(9664,24574,2),(9665,24574,2),(9667,24574,2),(9671,24574,2),(9672,24574,2),(9675,24574,2),(9676,24574,2),(9678,24574,2),(9679,24574,2),(9682,24574,2),(9683,24574,2),(9685,24574,2),(9686,24574,2),(9689,24574,2),(9691,24574,2),(9693,24574,2),(9697,24574,2),(9700,24574,2),(9701,24574,2),(9702,24574,2),(9703,24574,2),(9705,24574,2),(9707,24574,2),(9709,24574,2),(9713,24574,2),(9715,24574,2),(9716,24574,2),(9718,24574,2),(9725,24574,2),(9726,24574,2),(9728,24574,2),(9729,24574,2),(9730,24574,2),(9731,24574,2),(9737,24574,2),(9741,24574,2),(9746,24574,2),(9754,24574,2),(9759,24574,2),(9760,24574,2),(9762,24574,2),(9763,24574,2),(9766,24574,2),(9767,24574,2),(9770,24574,2),(9772,24574,2),(9776,24574,2),(9778,24574,2),(9779,24574,2),(9781,24574,2),(9782,24574,2),(9783,24574,2),(9787,24574,2),(9792,24574,2),(9793,24574,2),(9794,24574,2),(9798,24574,2),(9799,24574,2),(9800,24574,2),(9801,24574,2),(9802,24574,2),(9804,24574,2),(9806,24574,2),(9809,24574,2),(9813,24574,2),(9816,24574,2),(9819,24574,2),(9821,24574,2),(9822,24574,2),(9823,24574,2),(9824,24574,2),(9825,24574,2),(9826,24574,2),(9829,24574,2),(9833,24574,2),(9836,24574,2),(9837,24574,2),(9839,24574,2),(9842,24574,2),(9849,24574,2),(9869,24574,2),(9870,24574,2),(9877,24574,2),(9879,24574,2),(9880,24574,2),(9882,24574,2),(9884,24574,2),(9889,24574,2),(9890,24574,2),(9893,24574,2),(9894,24574,2),(9895,24574,2),(9896,24574,2),(9899,24574,2),(9900,24574,2),(9902,24574,2),(9903,24574,2),(9906,24574,2),(9907,24574,2),(9912,24574,2),(9913,24574,2),(9916,24574,2),(9918,24574,2),(9919,24574,2),(9920,24574,2),(9922,24574,2),(9923,24574,2),(9928,24574,2),(9930,24574,2),(9932,24574,2),(9942,24574,2),(9944,24574,2),(9945,24574,2),(9946,24574,2),(9947,24574,2),(9950,24574,2),(9952,24574,2),(9954,24574,2),(9955,24574,2),(9957,24574,2),(9962,24574,2),(9963,24574,2),(9969,24574,2),(9975,24574,2),(9978,24574,2),(9981,24574,2),(9982,24574,2),(9986,24574,2),(9988,24574,2),(9989,24574,2),(9991,24574,2),(9992,24574,2),(10003,24574,2),(10008,24574,2),(10012,24574,2),(10013,24574,2),(10014,24574,2),(10016,24574,2),(10017,24574,2),(10022,24574,2),(10024,24574,2),(10025,24574,2),(10027,24574,2),(10028,24574,2),(10029,24574,2),(10030,24574,2),(10034,24574,2),(10040,24574,2),(10047,24574,2),(10048,24574,2),(10050,24574,2),(10052,24574,2),(10053,24574,2),(10054,24574,2),(10060,24574,2),(10061,24574,2),(10065,24574,2),(10066,24574,2),(10067,24574,2),(10068,24574,2),(10069,24574,2),(10070,24574,2),(10071,24574,2),(10072,24574,2),(10073,24574,2),(10074,24574,2),(10075,24574,2),(10077,24574,2),(10090,24574,2),(10092,24574,2),(10096,24574,2),(10105,24574,2),(10115,24574,2),(10117,24574,2),(10131,24574,2),(10132,24574,2),(10133,24574,2),(10135,24574,2),(10136,24574,2),(10137,24574,2),(10138,24574,2),(10139,24574,2),(10140,24574,2),(10147,24574,2),(10152,24574,2),(10153,24574,2),(10154,24574,2),(10156,24574,2),(10159,24574,2),(10160,24574,2),(10162,24574,2),(10163,24574,2),(10167,24574,2),(10179,24574,2),(10183,24574,2),(10184,24574,2),(10185,24574,2),(10186,24574,2),(10187,24574,2),(10188,24574,2),(10189,24574,2),(10191,24574,2),(10192,24574,2),(10193,24574,2),(10195,24574,2),(10196,24574,2),(10197,24574,2),(10198,24574,2),(10199,24574,2),(10200,24574,2),(10201,24574,2),(10202,24574,2),(10204,24574,2),(10207,24574,2),(10208,24574,2),(10212,24574,2),(10214,24574,2),(10215,24574,2),(10217,24574,2),(10218,24574,2),(10219,24574,2),(10220,24574,2),(10223,24574,2),(10225,24574,2),(10226,24574,2),(10229,24574,2),(10246,24574,2),(10253,24574,2),(10269,24574,2),(10279,24574,2),(10280,24574,2),(10281,24574,2),(10283,24574,2),(10285,24574,2),(10288,24574,2),(10306,24574,2),(10307,24574,2),(10312,24574,2),(10313,24574,2),(10314,24574,2),(10315,24574,2),(10316,24574,2),(10317,24574,2),(10320,24574,2),(10327,24574,2),(10329,24574,2),(10330,24574,2),(10331,24574,2),(10333,24574,2),(10336,24574,2),(10339,24574,2),(10350,24574,2),(10357,24574,2),(10358,24574,2),(10362,24574,2),(10364,24574,2),(10366,24574,2),(10368,24574,2),(10375,24574,2),(10377,24574,2),(10383,24574,2),(10384,24574,2),(10386,24574,2),(10388,24574,2),(10390,24574,2),(10391,24574,2),(10393,24574,2),(10395,24574,2),(10397,24574,2),(10398,24574,2),(10400,24574,2),(10402,24574,2),(10410,24574,2),(10413,24574,2),(10414,24574,2),(10416,24574,2),(10425,24574,2),(10426,24574,2),(10428,24574,2),(10431,24574,2),(10436,24574,2),(10437,24574,2),(10439,24574,2),(10445,24574,2),(10448,24574,2),(10461,24574,2),(10468,24574,2),(10471,24574,2),(10472,24574,2),(10476,24574,2),(10477,24574,2),(10478,24574,2),(10480,24574,2),(10481,24574,2),(10483,24574,2),(10488,24574,2),(10490,24574,2),(10496,24574,2),(10501,24574,2),(10514,24574,2),(10521,24574,2),(10523,24574,2),(10527,24574,2),(10528,24574,2),(10530,24574,2),(10533,24574,2),(10534,24574,2),(10535,24574,2),(10537,24574,2),(10545,24574,2),(10549,24574,2),(10550,24574,2),(10555,24574,2),(10557,24574,2),(10559,24574,2),(10560,24574,2),(10563,24574,2),(10564,24574,2),(10567,24574,2),(10569,24574,2),(10571,24574,2),(10577,24574,2),(10585,24574,2),(10586,24574,2),(10588,24574,2),(10589,24574,2),(10590,24574,2),(10591,24574,2),(10592,24574,2),(10603,24574,2),(10610,24574,2),(10611,24574,2),(10615,24574,2),(10622,24574,2),(10623,24574,2),(10625,24574,2),(10628,24574,2),(10629,24574,2),(10632,24574,2),(10634,24574,2),(10637,24574,2),(10641,24574,2),(10642,24574,2),(10646,24574,2),(10647,24574,2),(10655,24574,2),(10658,24574,2),(10661,24574,2),(10663,24574,2),(10673,24574,2),(10674,24574,2),(10676,24574,2),(10678,24574,2),(10681,24574,2),(10683,24574,2),(10684,24574,2),(10685,24574,2),(10691,24574,2),(10696,24574,2),(10705,24574,2),(10707,24574,2),(10708,24574,2),(10710,24574,2),(10712,24574,2),(10715,24574,2),(10718,24574,2),(10719,24574,2),(10724,24574,2),(10727,24574,2),(10731,24574,2),(10733,24574,2),(10734,24574,2),(10735,24574,2),(10739,24574,2),(10740,24574,2),(10741,24574,2),(10743,24574,2),(10744,24574,2),(10748,24574,2),(10756,24574,2),(10758,24574,2),(10760,24574,2),(10761,24574,2),(10762,24574,2),(10764,24574,2),(10765,24574,2),(10771,24574,2),(10773,24574,2),(10774,24574,2),(10776,24574,2),(10781,24574,2),(10782,24574,2),(10783,24574,2),(10786,24574,2),(10796,24574,2),(10802,24574,2),(10803,24574,2),(10806,24574,2),(10808,24574,2),(10822,24574,2),(10833,24574,2),(10844,24574,2),(10858,24574,2),(10861,24574,2),(10865,24574,2),(10866,24574,2),(10871,24574,2),(10873,24574,2),(10876,24574,2),(10878,24574,2),(10885,24574,2),(10890,24574,2),(10894,24574,2),(10895,24574,2),(10913,24574,2),(10914,24574,2),(10923,24574,2),(10925,24574,2),(10929,24574,2),(10934,24574,2),(10935,24574,2),(10944,24574,2),(10947,24574,2),(10950,24574,2),(10955,24574,2),(10956,24574,2),(10972,24574,2),(10981,24574,2),(10982,24574,2),(10984,24574,2),(10985,24574,2),(10987,24574,2),(10991,24574,2),(10992,24574,2),(10994,24574,2),(10996,24574,2),(10998,24574,2),(10999,24574,2),(11001,24574,2),(11004,24574,2),(11007,24574,2),(11011,24574,2),(11013,24574,2),(11015,24574,2),(11022,24574,2),(11023,24574,2),(11024,24574,2),(11025,24574,2),(11026,24574,2),(11027,24574,2),(11033,24574,2),(11036,24574,2),(11042,24574,2),(11051,24574,2),(11056,24574,2),(11058,24574,2),(11062,24574,2),(11065,24574,2),(11066,24574,2),(11072,24574,2),(11086,24574,2),(11090,24574,2),(11091,24574,2),(11093,24574,2),(11096,24574,2),(11109,24574,2),(11113,24574,2),(11128,24574,2),(11129,24574,2),(11130,24574,2),(11132,24574,2),(11137,24574,2),(11141,24574,2),(11152,24574,2),(11153,24574,2),(11156,24574,2),(11162,24574,2),(11165,24574,2),(11170,24574,2),(11172,24574,2),(11176,24574,2),(11184,24574,2),(11186,24574,2),(11191,24574,2),(11194,24574,2),(11199,24574,2),(11202,24574,2),(11208,24574,2),(11212,24574,2),(11217,24574,2),(11219,24574,2),(11228,24574,2),(11229,24574,2),(11232,24574,2),(11237,24574,2),(11240,24574,2),(11247,24574,2),(11249,24574,2),(11253,24574,2),(11257,24574,2),(11258,24574,2),(11260,24574,2),(11282,24574,2),(11283,24574,2),(11284,24574,2),(11287,24574,2),(11298,24574,2),(11302,24574,2),(11306,24574,2),(11308,24574,2),(11313,24574,2),(11321,24574,2),(11322,24574,2),(11323,24574,2),(11324,24574,2),(11336,24574,2),(11342,24574,2),(11351,24574,2),(11353,24574,2),(11354,24574,2),(11357,24574,2),(11358,24574,2),(11359,24574,2),(11361,24574,2),(11362,24574,2),(11363,24574,2),(11370,24574,2),(11371,24574,2),(11374,24574,2),(11375,24574,2),(11377,24574,2),(11382,24574,2),(11386,24574,2),(11395,24574,2),(11397,24574,2),(11398,24574,2),(11400,24574,2),(11404,24574,2),(11411,24574,2),(11412,24574,2),(11426,24574,2),(11431,24574,2),(11439,24574,2),(11442,24574,2),(11446,24574,2),(11451,24574,2),(11452,24574,2),(11453,24574,2),(11456,24574,2),(11457,24574,2),(11458,24574,2),(11459,24574,2),(11460,24574,2),(11467,24574,2),(11468,24574,2),(11469,24574,2),(11470,24574,2),(11478,24574,2),(11495,24574,2),(11499,24574,2),(11507,24574,2),(11509,24574,2),(11516,24574,2),(11517,24574,2),(11519,24574,2),(11529,24574,2),(11531,24574,2),(11535,24574,2),(11536,24574,2),(11543,24574,2),(11544,24574,2),(11545,24574,2),(11546,24574,2),(11551,24574,2),(11560,24574,2),(11561,24574,2),(11564,24574,2),(11565,24574,2),(11576,24574,2),(11577,24574,2),(11583,24574,2),(11586,24574,2),(11588,24574,2),(11592,24574,2),(11596,24574,2),(11598,24574,2),(11600,24574,2),(11601,24574,2),(11615,24574,2),(11618,24574,2),(11619,24574,2),(11620,24574,2),(11622,24574,2),(11624,24574,2),(11631,24574,2),(11632,24574,2),(11635,24574,2),(11637,24574,2),(11638,24574,2),(11644,24574,2),(11648,24574,2),(11661,24574,2),(11665,24574,2),(11667,24574,2),(11676,24574,2),(11678,24574,2),(11679,24574,2),(11683,24574,2),(11688,24574,2),(11690,24574,2),(11692,24574,2),(11697,24574,2),(11699,24574,2),(11702,24574,2),(11775,24574,2),(11778,24574,2),(11780,24574,2),(11798,24574,2),(11802,24574,2),(11804,24574,2),(11812,24574,2),(11817,24574,2),(11818,24574,2),(11820,24574,2),(11823,24574,2),(11826,24574,2),(11827,24574,2),(11831,24574,2),(11835,24574,2),(11836,24574,2),(11843,24574,2),(11858,24574,2),(11863,24574,2),(11866,24574,2),(11870,24574,2),(11873,24574,2),(11887,24574,2),(11888,24574,2),(11889,24574,2),(11891,24574,2),(11892,24574,2),(11901,24574,2),(11904,24574,2),(11908,24574,2),(11917,24574,2),(11918,24574,2),(11932,24574,2),(11934,24574,2),(11935,24574,2),(11954,24574,2),(11959,24574,2),(11967,24574,2),(11968,24574,2),(11969,24574,2),(11971,24574,2),(11973,24574,2),(11975,24574,2),(11977,24574,2),(11978,24574,2),(11979,24574,2),(11980,24574,2),(11983,24574,2),(12079,24574,2),(12085,24574,2),(12088,24574,2),(12090,24574,2),(12093,24574,2),(12094,24574,2),(12096,24574,2),(12100,24574,2),(12103,24574,2),(12106,24574,2),(12107,24574,2),(12109,24574,2),(12113,24574,2),(12117,24574,2),(12120,24574,2),(12123,24574,2),(12133,24574,2),(12138,24574,2),(12142,24574,2),(12144,24574,2),(12149,24574,2),(12150,24574,2),(12153,24574,2),(12154,24574,2),(12155,24574,2),(12158,24574,2),(12159,24574,2),(12160,24574,2),(12162,24574,2),(12163,24574,2),(12177,24574,2),(12182,24574,2),(12183,24574,2),(12184,24574,2),(12192,24574,2),(12193,24574,2),(12201,24574,2),(12211,24574,2),(12212,24574,2),(12220,24574,2),(12227,24574,2),(12228,24574,2),(12244,24574,2),(12245,24574,2),(12247,24574,2),(12257,24574,2),(12271,24574,2),(12277,24574,2),(12279,24574,2),(12281,24574,2),(12312,24574,2),(12400,24574,2),(12403,24574,2),(12404,24574,2),(12405,24574,2),(12410,24574,2),(12412,24574,2),(12437,24574,2),(12454,24574,2),(12479,24574,2),(12484,24574,2),(12486,24574,2),(12498,24574,2),(12506,24574,2),(12508,24574,2),(12509,24574,2),(12535,24574,2),(12569,24574,2),(12573,24574,2),(12586,24574,2),(12589,24574,2),(12596,24574,2),(12610,24574,2),(12612,24574,2),(12618,24574,2),(12620,24574,2),(12621,24574,2),(12634,24574,2),(12637,24574,2),(12657,24574,2),(12658,24574,2),(12690,24574,2),(12703,24574,2),(12704,24574,2),(12763,24574,2),(12770,24574,2),(12771,24574,2),(12779,24574,2),(12783,24574,2),(12797,24574,2),(12819,24574,2),(12837,24574,2),(12877,24574,2),(12901,24574,2),(12920,24574,2),(13001,24574,2),(13006,24574,2),(13007,24574,2),(13025,24574,2),(13027,24574,2),(13051,24574,2),(13053,24574,2),(13056,24574,2),(13064,24574,2),(13067,24574,2),(13072,24574,2),(13074,24574,2),(13075,24574,2),(13079,24574,2),(13090,24574,2),(13092,24574,2),(13121,24574,2),(13132,24574,2),(13150,24574,2),(13154,24574,2),(13155,24574,2),(13156,24574,2),(13158,24574,2),(13159,24574,2),(13160,24574,2),(13166,24574,2),(13173,24574,2),(13183,24574,2),(13184,24574,2),(13187,24574,2),(13191,24574,2),(13193,24574,2),(13197,24574,2),(13198,24574,2),(13201,24574,2),(13223,24574,2),(13250,24574,2),(13260,24574,2),(13279,24574,2),(13282,24574,2),(13335,24574,2),(13342,24574,2),(13362,24574,2),(13363,24574,2),(13370,24574,2),(13374,24574,2),(13389,24574,2),(13403,24574,2),(13405,24574,2),(13408,24574,2),(13411,24574,2),(13429,24574,2),(13435,24574,2),(13448,24574,2),(13460,24574,2),(13475,24574,2),(13476,24574,2),(13483,24574,2),(13490,24574,2),(13491,24574,2),(13496,24574,2),(13497,24574,2),(13498,24574,2),(13501,24574,2),(13503,24574,2),(13508,24574,2),(13510,24574,2),(13515,24574,2),(13516,24574,2),(13518,24574,2),(13523,24574,2),(13536,24574,2),(13537,24574,2),(13538,24574,2),(13539,24574,2),(13551,24574,2),(13569,24574,2),(13576,24574,2),(13579,24574,2),(13596,24574,2),(13600,24574,2),(13649,24574,2),(13673,24574,2),(13680,24574,2),(13682,24574,2),(13685,24574,2),(13689,24574,2),(13700,24574,2),(13751,24574,2),(13768,24574,2),(13776,24574,2),(13778,24574,2),(13785,24574,2),(13788,24574,2),(13805,24574,2),(13809,24574,2),(13811,24574,2),(13812,24574,2),(13816,24574,2),(13820,24574,2),(13824,24574,2),(13827,24574,2),(13836,24574,2),(13849,24574,2),(13853,24574,2),(13856,24574,2),(13888,24574,2),(13889,24574,2),(13908,24574,2),(13909,24574,2),(13919,24574,2),(13920,24574,2),(13922,24574,2),(13937,24574,2),(13938,24574,2),(13948,24574,2),(13950,24574,2),(13960,24574,2),(13963,24574,2),(13967,24574,2),(13972,24574,2),(13973,24574,2),(13982,24574,2),(13983,24574,2),(13990,24574,2),(13991,24574,2),(13994,24574,2),(13996,24574,2),(14012,24574,2),(14014,24574,2),(14022,24574,2),(14024,24574,2),(14033,24574,2),(14034,24574,2),(14043,24574,2),(14047,24574,2),(14048,24574,2),(14054,24574,2),(14057,24574,2),(14112,24574,2),(14113,24574,2),(14114,24574,2),(14120,24574,2),(14137,24574,2),(14144,24574,2),(14156,24574,2),(14160,24574,2),(14161,24574,2),(14164,24574,2),(14165,24574,2),(14175,24574,2),(14177,24574,2),(14181,24574,2),(14191,24574,2),(14195,24574,2),(14199,24574,2),(14202,24574,2),(14220,24574,2),(14256,24574,2),(14271,24574,2),(14275,24574,2),(14278,24574,2),(14283,24574,2),(14290,24574,2),(14292,24574,2),(14293,24574,2),(14295,24574,2),(14299,24574,2),(14306,24574,2),(14317,24574,2),(14324,24574,2),(14325,24574,2),(14337,24574,2),(14351,24574,2),(14353,24574,2),(14358,24574,2),(14359,24574,2),(14369,24574,2),(14395,24574,2),(14396,24574,2),(14405,24574,2),(14411,24574,2),(14425,24574,2),(14429,24574,2),(14434,24574,2),(14435,24574,2),(14438,24574,2),(14442,24574,2),(14444,24574,2),(14462,24574,2),(14474,24574,2),(14517,24574,2),(14536,24574,2),(14544,24574,2),(14557,24574,2),(14560,24574,2),(14574,24574,2),(14576,24574,2),(14577,24574,2),(14578,24574,2),(14582,24574,2),(14585,24574,2),(14608,24574,2),(14623,24574,2),(14624,24574,2),(14629,24574,2),(14631,24574,2),(14635,24574,2),(14652,24574,2),(14655,24574,2),(14662,24574,2),(14709,24574,2),(14729,24574,2),(14736,24574,2),(14745,24574,2),(14757,24574,2),(14758,24574,2),(14778,24574,2),(14799,24574,2),(14811,24574,2),(14823,24574,2),(14834,24574,2),(14836,24574,2),(14844,24574,2),(14846,24574,2),(14849,24574,2),(14854,24574,2),(14869,24574,2),(14873,24574,2),(14877,24574,2),(14902,24574,2),(14914,24574,2),(14976,24574,2),(15005,24574,2),(15013,24574,2),(15017,24574,2),(15028,24574,2),(15037,24574,2),(15045,24574,2),(15049,24574,2),(15059,24574,2),(15070,24574,2),(15074,24574,2),(15092,24574,2),(15121,24574,2),(15122,24574,2),(15158,24574,2),(15173,24574,2),(15186,24574,2),(15189,24574,2),(15198,24574,2),(15208,24574,2),(15237,24574,2),(15239,24574,2),(15250,24574,2),(15256,24574,2),(15268,24574,2),(15301,24574,2),(15365,24574,2),(15373,24574,2),(15389,24574,2),(15394,24574,2),(15487,24574,2),(15489,24574,2),(15512,24574,2),(15544,24574,2),(15556,24574,2),(15568,24574,2),(15581,24574,2),(15582,24574,2),(15624,24574,2),(15639,24574,2),(15644,24574,2),(15647,24574,2),(15648,24574,2),(15655,24574,2),(15660,24574,2),(15670,24574,2),(15673,24574,2),(15699,24574,2),(15708,24574,2),(15745,24574,2),(15765,24574,2),(15797,24574,2),(15800,24574,2),(15875,24574,2),(15907,24574,2),(15927,24574,2),(15983,24574,2),(15992,24574,2),(16005,24574,2),(16028,24574,2),(16052,24574,2),(16072,24574,2),(16096,24574,2),(16110,24574,2),(16112,24574,2),(16148,24574,2),(16155,24574,2),(16158,24574,2),(16161,24574,2),(16162,24574,2),(16172,24574,2),(16186,24574,2),(16205,24574,2),(16222,24574,2),(16232,24574,2),(16241,24574,2),(16281,24574,2),(16288,24574,2),(16290,24574,2),(16300,24574,2),(16320,24574,2),(16323,24574,2),(16337,24574,2),(16340,24574,2),(16351,24574,2),(16358,24574,2),(16363,24574,2),(16388,24574,2),(16406,24574,2),(16428,24574,2),(16433,24574,2),(16441,24574,2),(16448,24574,2),(16471,24574,2),(16508,24574,2),(16523,24574,2),(16538,24574,2),(16558,24574,2),(16564,24574,2),(16577,24574,2),(16608,24574,2),(16614,24574,2),(16617,24574,2),(16619,24574,2),(16620,24574,2),(16633,24574,2),(16642,24574,2),(16643,24574,2),(16651,24574,2),(16690,24574,2),(16727,24574,2),(16769,24574,2),(16781,24574,2),(16784,24574,2),(16857,24574,2),(16858,24574,2),(16866,24574,2),(16869,24574,2),(16871,24574,2),(16888,24574,2),(16899,24574,2),(16988,24574,2),(16991,24574,2),(16995,24574,2),(16996,24574,2),(17043,24574,2),(17044,24574,2),(17047,24574,2),(17113,24574,2),(17127,24574,2),(17130,24574,2),(17134,24574,2),(17139,24574,2),(17170,24574,2),(17182,24574,2),(17186,24574,2),(17187,24574,2),(17202,24574,2),(17264,24574,2),(17277,24574,2),(17287,24574,2),(17332,24574,2),(17334,24574,2),(17339,24574,2),(17345,24574,2),(17379,24574,2),(17403,24574,2),(17431,24574,2),(17436,24574,2),(17577,24574,2),(17578,24574,2),(17610,24574,2),(17622,24574,2),(17644,24574,2),(17654,24574,2),(17663,24574,2),(17707,24574,2),(17708,24574,2),(17709,24574,2),(17710,24574,2),(17734,24574,2),(17768,24574,2),(17795,24574,2),(17813,24574,2),(17820,24574,2),(17834,24574,2),(17880,24574,2),(17908,24574,2),(17917,24574,2),(17926,24574,2),(17979,24574,2),(17995,24574,2),(18041,24574,2),(18045,24574,2),(18065,24574,2),(18074,24574,2),(18126,24574,2),(18147,24574,2),(18162,24574,2),(18191,24574,2),(18206,24574,2),(18238,24574,2),(18239,24574,2),(18240,24574,2),(18254,24574,2),(18276,24574,2),(18292,24574,2),(18320,24574,2),(18357,24574,2),(18360,24574,2),(18405,24574,2),(18442,24574,2),(18475,24574,2),(18480,24574,2),(18487,24574,2),(18501,24574,2),(18516,24574,2),(18530,24574,2),(18533,24574,2),(18550,24574,2),(18570,24574,2),(18602,24574,2),(18615,24574,2),(18616,24574,2),(18681,24574,2),(18701,24574,2),(18712,24574,2),(18713,24574,2),(18734,24574,2),(18736,24574,2),(18777,24574,2),(18785,24574,2),(18808,24574,2),(18823,24574,2),(18828,24574,2),(18840,24574,2),(18841,24574,2),(18869,24574,2),(18885,24574,2),(18886,24574,2),(18892,24574,2),(18900,24574,2),(18923,24574,2),(18925,24574,2),(18937,24574,2),(18947,24574,2),(18975,24574,2),(19052,24574,2),(19084,24574,2),(19150,24574,2),(19153,24574,2),(19204,24574,2),(19255,24574,2),(19265,24574,2),(19316,24574,2),(19344,24574,2),(19366,24574,2),(19405,24574,2),(19419,24574,2),(19457,24574,2),(19489,24574,2),(19495,24574,2),(19556,24574,2),(19585,24574,2),(19615,24574,2),(19724,24574,2),(19803,24574,2),(19840,24574,2),(19844,24574,2),(19848,24574,2),(19898,24574,2),(19899,24574,2),(19901,24574,2),(19904,24574,2),(19905,24574,2),(19908,24574,2),(19912,24574,2),(19913,24574,2),(19933,24574,2),(19959,24574,2),(19994,24574,2),(19995,24574,2),(19997,24574,2),(20009,24574,2),(20024,24574,2),(20055,24574,2),(20065,24574,2),(20083,24574,2),(20156,24574,2),(20178,24574,2),(20309,24574,2),(20322,24574,2),(20337,24574,2),(20352,24574,2),(20391,24574,2),(20406,24574,2),(20455,24574,2),(20468,24574,2),(20483,24574,2),(20504,24574,2),(20520,24574,2),(20526,24574,2),(20533,24574,2),(20542,24574,2),(20616,24574,2),(20653,24574,2),(20662,24574,2),(20694,24574,2),(20697,24574,2),(20737,24574,2),(20761,24574,2),(20763,24574,2),(20764,24574,2),(20766,24574,2),(20770,24574,2),(20794,24574,2),(20829,24574,2),(20856,24574,2),(20857,24574,2),(20862,24574,2),(20943,24574,2),(20981,24574,2),(21014,24574,2),(21208,24574,2),(21283,24574,2),(21301,24574,2),(21309,24574,2),(21311,24574,2),(21338,24574,2),(21345,24574,2),(21349,24574,2),(21355,24574,2),(21413,24574,2),(21512,24574,2),(21525,24574,2),(21610,24574,2),(21612,24574,2),(21641,24574,2),(21724,24574,2),(21755,24574,2),(21801,24574,2),(21972,24574,2),(22007,24574,2),(22013,24574,2),(22051,24574,2),(22074,24574,2),(22102,24574,2),(22215,24574,2),(22256,24574,2),(22267,24574,2),(22301,24574,2),(22314,24574,2),(22327,24574,2),(22345,24574,2),(22479,24574,2),(22488,24574,2),(22530,24574,2),(22538,24574,2),(22556,24574,2),(22597,24574,2),(22600,24574,2),(22617,24574,2),(22649,24574,2),(22787,24574,2),(22794,24574,2),(22796,24574,2),(22798,24574,2),(22803,24574,2),(22804,24574,2),(22805,24574,2),(22820,24574,2),(22821,24574,2),(22824,24574,2),(22825,24574,2),(22832,24574,2),(22881,24574,2),(22894,24574,2),(22897,24574,2),(22907,24574,2),(22908,24574,2),(22913,24574,2),(22947,24574,2),(22949,24574,2),(22954,24574,2),(22970,24574,2),(22971,24574,2),(22972,24574,2),(23048,24574,2),(23049,24574,2),(23069,24574,2),(23082,24574,2),(23168,24574,2),(23169,24574,2),(23172,24574,2),(23330,24574,2),(23367,24574,2),(23398,24574,2),(23479,24574,2),(23483,24574,2),(23531,24574,2),(23570,24574,2),(23618,24574,2),(23629,24574,2),(23631,24574,2),(23655,24574,2),(23685,24574,2),(23706,24574,2),(23730,24574,2),(23742,24574,2),(23759,24574,2),(23827,24574,2),(23963,24574,2),(23988,24574,2),(24021,24574,2),(24034,24574,2),(24066,24574,2),(24071,24574,2),(24100,24574,2),(24113,24574,2),(24126,24574,2),(24137,24574,2),(24150,24574,2),(24206,24574,2),(24226,24574,2),(24227,24574,2),(24264,24574,2),(24266,24574,2),(24356,24574,2),(24363,24574,2),(24418,24574,2),(24420,24574,2),(24428,24574,2),(24432,24574,2),(24438,24574,2),(24469,24574,2),(24575,24574,2),(24621,24574,2),(24662,24574,2),(24663,24574,2),(24664,24574,2),(24684,24574,2),(24746,24574,2),(24747,24574,2),(24748,24574,2),(24803,24574,2),(24869,24574,2),(24913,24574,2),(24940,24574,2),(24961,24574,2),(24973,24574,2),(24977,24574,2),(24985,24574,2),(25066,24574,2),(25113,24574,2),(25132,24574,2),(25166,24574,2),(25186,24574,2),(25189,24574,2),(25195,24574,2),(25196,24574,2),(25208,24574,2),(25209,24574,2),(25212,24574,2),(25248,24574,2),(25312,24574,2),(25350,24574,2),(25353,24574,2),(25379,24574,2),(25388,24574,2),(25461,24574,2),(25462,24574,2),(25520,24574,2),(25636,24574,2),(25643,24574,2),(25678,24574,2),(25704,24574,2),(25719,24574,2),(25763,24574,2),(25769,24574,2),(25784,24574,2),(25786,24574,2),(25793,24574,2),(25941,24574,2),(25968,24574,2),(25975,24574,2),(25983,24574,2),(26022,24574,2),(26039,24574,2),(26171,24574,2),(26268,24574,2),(26306,24574,2),(26320,24574,2),(26352,24574,2),(26367,24574,2),(26371,24574,2),(26388,24574,2),(26389,24574,2),(26390,24574,2),(26428,24574,2),(26466,24574,2),(26486,24574,2),(26518,24574,2),(26602,24574,2),(26618,24574,2),(26665,24574,2),(26672,24574,2),(26673,24574,2),(26688,24574,2),(26710,24574,2),(26748,24574,2),(26791,24574,2),(26837,24574,2),(26843,24574,2),(26899,24574,2),(26916,24574,2),(26963,24574,2),(27004,24574,2),(27022,24574,2),(27023,24574,2),(27029,24574,2),(27191,24574,2),(27205,24574,2),(27322,24574,2),(27342,24574,2),(27360,24574,2),(27374,24574,2),(27380,24574,2),(27404,24574,2),(27420,24574,2),(27451,24574,2),(27455,24574,2),(27549,24574,2),(27551,24574,2),(27569,24574,2),(27573,24574,2),(27576,24574,2),(27578,24574,2),(27579,24574,2),(27581,24574,2),(27582,24574,2),(27585,24574,2),(27586,24574,2),(27686,24574,2),(27723,24574,2),(27759,24574,2),(27845,24574,2),(27983,24574,2),(27995,24574,2),(28005,24574,2),(28029,24574,2),(28053,24574,2),(28089,24574,2),(28121,24574,2),(28165,24574,2),(28178,24574,2),(28211,24574,2),(28260,24574,2),(28353,24574,2),(28355,24574,2),(28580,24574,2),(28665,24574,2),(28666,24574,2),(28902,24574,2),(28932,24574,2),(29015,24574,2),(29064,24574,2),(29076,24574,2),(29078,24574,2),(29122,24574,2),(29146,24574,2),(29193,24574,2),(29339,24574,2),(29371,24574,2),(29406,24574,2),(29426,24574,2),(29427,24574,2),(29461,24574,2),(29463,24574,2),(29514,24574,2),(29595,24574,2),(29697,24574,2),(29715,24574,2),(29731,24574,2),(29912,24574,2),(29917,24574,2),(29920,24574,2),(29963,24574,2),(29996,24574,2),(30082,24574,2),(30128,24574,2),(30139,24574,2),(30141,24574,2),(30246,24574,2),(30309,24574,2),(30315,24574,2),(30379,24574,2),(30497,24574,2),(30596,24574,2),(30867,24574,2),(30890,24574,2),(30943,24574,2),(30973,24574,2),(30979,24574,2),(31005,24574,2),(31007,24574,2),(31064,24574,2),(31117,24574,2),(31163,24574,2),(31166,24574,2),(31174,24574,2),(31246,24574,2),(31306,24574,2),(31535,24574,2),(31582,24574,2),(31640,24574,2),(31668,24574,2),(31867,24574,2),(31908,24574,2),(31909,24574,2),(31915,24574,2),(31932,24574,2),(32222,24574,2),(32235,24574,2),(32274,24574,2),(32275,24574,2),(32316,24574,2),(32395,24574,2),(32456,24574,2),(32579,24574,2),(32657,24574,2),(32823,24574,2),(32856,24574,2),(33155,24574,2),(33157,24574,2),(33196,24574,2),(33217,24574,2),(33430,24574,2),(33468,24574,2),(33511,24574,2),(33542,24574,2),(33644,24574,2),(33667,24574,2),(33676,24574,2),(33693,24574,2),(33870,24574,2),(33909,24574,2),(34016,24574,2),(34043,24574,2),(34086,24574,2),(34099,24574,2),(34101,24574,2),(34106,24574,2),(34152,24574,2),(34314,24574,2),(34335,24574,2),(34341,24574,2),(34417,24574,2),(34549,24574,2),(34563,24574,2),(34584,24574,2),(34592,24574,2),(34647,24574,2),(34653,24574,2),(34697,24574,2),(34723,24574,2),(34769,24574,2),(34806,24574,2),(34813,24574,2),(34851,24574,2),(34941,24574,2),(35019,24574,2),(35032,24574,2),(35056,24574,2),(35073,24574,2),(35169,24574,2),(35199,24574,2),(35219,24574,2),(35688,24574,2),(35689,24574,2),(35690,24574,2),(35691,24574,2),(35696,24574,2),(35791,24574,2),(35944,24574,2),(36046,24574,2),(36047,24574,2),(36334,24574,2),(36351,24574,2),(36355,24574,2),(36419,24574,2),(36549,24574,2),(36557,24574,2),(36586,24574,2),(36593,24574,2),(36597,24574,2),(36643,24574,2),(36647,24574,2),(36648,24574,2),(36657,24574,2),(36658,24574,2),(36668,24574,2),(36669,24574,2),(36670,24574,2),(36691,24574,2),(36739,24574,2),(36811,24574,2),(36819,24574,2),(36825,24574,2),(36955,24574,2),(37003,24574,2),(37028,24574,2),(37056,24574,2),(37080,24574,2),(37137,24574,2),(37165,24574,2),(37206,24574,2),(37233,24574,2),(37414,24574,2),(37495,24574,2),(37498,24574,2),(37686,24574,2),(37707,24574,2),(37710,24574,2),(37718,24574,2),(37724,24574,2),(37735,24574,2),(37737,24574,2),(37786,24574,2),(37799,24574,2),(37821,24574,2),(37834,24574,2),(37931,24574,2),(37950,24574,2),(37958,24574,2),(37985,24574,2),(38031,24574,2),(38033,24574,2),(38050,24574,2),(38055,24574,2),(38073,24574,2),(38093,24574,2),(38117,24574,2),(38153,24574,2),(38167,24574,2),(38223,24574,2),(38303,24574,2),(38317,24574,2),(38319,24574,2),(38321,24574,2),(38322,24574,2),(38356,24574,2),(38357,24574,2),(38358,24574,2),(38363,24574,2),(38365,24574,2),(38428,24574,2),(38448,24574,2),(38541,24574,2),(38543,24574,2),(38570,24574,2),(38579,24574,2),(38665,24574,2),(38717,24574,2),(38745,24574,2),(38757,24574,2),(38778,24574,2),(38780,24574,2),(38843,24574,2),(38940,24574,2),(38970,24574,2),(38985,24574,2),(39013,24574,2),(39053,24574,2),(39055,24574,2),(39141,24574,2),(39183,24574,2),(39209,24574,2),(39210,24574,2),(39254,24574,2),(39269,24574,2),(39303,24574,2),(39349,24574,2),(39437,24574,2),(39451,24574,2),(39486,24574,2),(39513,24574,2),(39514,24574,2),(39538,24574,2),(39541,24574,2),(39563,24574,2),(39691,24574,2),(39780,24574,2),(39781,24574,2),(39800,24574,2),(39806,24574,2),(39833,24574,2),(39845,24574,2),(39851,24574,2),(39895,24574,2),(39939,24574,2),(40001,24574,2),(40160,24574,2),(40247,24574,2),(40264,24574,2),(40428,24574,2),(40494,24574,2),(40505,24574,2),(40658,24574,2),(40688,24574,2),(40769,24574,2),(40805,24574,2),(40807,24574,2),(40862,24574,2),(40880,24574,2),(40914,24574,2),(40920,24574,2),(40932,24574,2),(40963,24574,2),(41009,24574,2),(41110,24574,2),(41144,24574,2),(41154,24574,2),(41210,24574,2),(41216,24574,2),(41233,24574,2),(41283,24574,2),(41382,24574,2),(41402,24574,2),(41436,24574,2),(41439,24574,2),(41446,24574,2),(41469,24574,2),(41479,24574,2),(41488,24574,2),(41508,24574,2),(41513,24574,2),(41515,24574,2),(41630,24574,2),(41730,24574,2),(41733,24574,2),(41823,24574,2),(41830,24574,2),(42033,24574,2),(42057,24574,2),(42151,24574,2),(42188,24574,2),(42222,24574,2),(42297,24574,2),(42345,24574,2),(42497,24574,2),(42586,24574,2),(42618,24574,2),(42684,24574,2),(42807,24574,2),(42819,24574,2),(42888,24574,2),(42889,24574,2),(43074,24574,2),(43090,24574,2),(43213,24574,2),(43266,24574,2),(43306,24574,2),(43347,24574,2),(43418,24574,2),(43434,24574,2),(43539,24574,2),(43546,24574,2),(43593,24574,2),(43595,24574,2),(43610,24574,2),(43630,24574,2),(43839,24574,2),(43867,24574,2),(43884,24574,2),(43923,24574,2),(43931,24574,2),(43933,24574,2),(43935,24574,2),(43942,24574,2),(43947,24574,2),(43949,24574,2),(43959,24574,2),(44009,24574,2),(44040,24574,2),(44048,24574,2),(44092,24574,2),(44113,24574,2),(44115,24574,2),(44147,24574,2),(44214,24574,2),(44260,24574,2),(44264,24574,2),(44490,24574,2),(44562,24574,2),(44564,24574,2),(44594,24574,2),(44603,24574,2),(44634,24574,2),(44638,24574,2),(44639,24574,2),(44718,24574,2),(44754,24574,2),(44770,24574,2),(44826,24574,2),(44833,24574,2),(44835,24574,2),(44853,24574,2),(44857,24574,2),(44896,24574,2),(44912,24574,2),(44943,24574,2),(44944,24574,2),(44945,24574,2),(44990,24574,2),(45054,24574,2),(45132,24574,2),(45138,24574,2),(45145,24574,2),(45153,24574,2),(45226,24574,2),(45243,24574,2),(45269,24574,2),(45272,24574,2),(45317,24574,2),(45324,24574,2),(45610,24574,2),(45612,24574,2),(45649,24574,2),(45650,24574,2),(45658,24574,2),(45767,24574,2),(45791,24574,2),(45881,24574,2),(46138,24574,2),(46195,24574,2),(46256,24574,2),(46261,24574,2),(46415,24574,2),(46420,24574,2),(46435,24574,2),(46503,24574,2),(46528,24574,2),(46529,24574,2),(46705,24574,2),(46727,24574,2),(46729,24574,2),(46738,24574,2),(46829,24574,2),(46838,24574,2),(46849,24574,2),(46889,24574,2),(46989,24574,2),(47088,24574,2),(47327,24574,2),(47452,24574,2),(47502,24574,2),(47534,24574,2),(47607,24574,2),(47686,24574,2),(47692,24574,2),(47816,24574,2),(47889,24574,2),(47890,24574,2),(47933,24574,2),(47941,24574,2),(47964,24574,2),(48138,24574,2),(48171,24574,2),(48231,24574,2),(48289,24574,2),(48309,24574,2),(48340,24574,2),(48572,24574,2),(48620,24574,2),(48988,24574,2),(49010,24574,2),(49013,24574,2),(49017,24574,2),(49018,24574,2),(49020,24574,2),(49021,24574,2),(49022,24574,2),(49026,24574,2),(49040,24574,2),(49047,24574,2),(49049,24574,2),(49051,24574,2),(49081,24574,2),(49365,24574,2),(49444,24574,2),(49471,24574,2),(49478,24574,2),(49517,24574,2),(49519,24574,2),(49520,24574,2),(49521,24574,2),(49524,24574,2),(49526,24574,2),(49527,24574,2),(49529,24574,2),(49530,24574,2),(49538,24574,2),(49730,24574,2),(49787,24574,2),(49852,24574,2),(49948,24574,2),(49950,24574,2),(49951,24574,2),(49953,24574,2),(49963,24574,2),(50014,24574,2),(50035,24574,2),(50037,24574,2),(50321,24574,2),(50348,24574,2),(50357,24574,2),(50359,24574,2),(50456,24574,2),(50497,24574,2),(50544,24574,2),(50546,24574,2),(50601,24574,2),(50620,24574,2),(50646,24574,2),(50647,24574,2),(50698,24574,2),(50725,24574,2),(50780,24574,2),(50837,24574,2),(50839,24574,2),(50875,24574,2),(50942,24574,2),(51052,24574,2),(51130,24574,2),(51162,24574,2),(51497,24574,2),(51540,24574,2),(51588,24574,2),(51820,24574,2),(51828,24574,2),(51942,24574,2),(51955,24574,2),(51995,24574,2),(52010,24574,2),(52015,24574,2),(52032,24574,2),(52067,24574,2),(52449,24574,2),(52451,24574,2),(52520,24574,2),(53113,24574,2),(53182,24574,2),(53256,24574,2),(53457,24574,2),(53502,24574,2),(53862,24574,2),(53953,24574,2),(54054,24574,2),(54138,24574,2),(54518,24574,2),(54702,24574,2),(54897,24574,2),(55123,24574,2),(55180,24574,2),(55301,24574,2),(55306,24574,2),(55347,24574,2),(55420,24574,2),(55465,24574,2),(55561,24574,2),(55567,24574,2),(55604,24574,2),(55616,24574,2),(55720,24574,2),(55721,24574,2),(55779,24574,2),(55787,24574,2),(55831,24574,2),(56288,24574,2),(56292,24574,2),(56491,24574,2),(56601,24574,2),(56715,24574,2),(56930,24574,2),(57022,24574,2),(57089,24574,2),(57119,24574,2),(57120,24574,2),(57157,24574,2),(57158,24574,2),(57165,24574,2),(57201,24574,2),(57212,24574,2),(57214,24574,2),(57294,24574,2),(57431,24574,2),(57612,24574,2),(57800,24574,2),(57825,24574,2),(57876,24574,2),(58048,24574,2),(58151,24574,2),(58224,24574,2),(58233,24574,2),(58428,24574,2),(58431,24574,2),(58492,24574,2),(58574,24574,2),(58595,24574,2),(58626,24574,2),(58680,24574,2),(58882,24574,2),(59108,24574,2),(59436,24574,2),(59440,24574,2),(59457,24574,2),(59678,24574,2),(59728,24574,2),(59859,24574,2),(59860,24574,2),(59861,24574,2),(59917,24574,2),(59930,24574,2),(59961,24574,2),(59962,24574,2),(59965,24574,2),(59967,24574,2),(59968,24574,2),(59981,24574,2),(60304,24574,2),(60307,24574,2),(60308,24574,2),(60309,24574,2),(60400,24574,2),(60420,24574,2),(60421,24574,2),(60422,24574,2),(60599,24574,2),(61012,24574,2),(61038,24574,2),(61337,24574,2),(61752,24574,2),(61791,24574,2),(61891,24574,2),(62008,24574,2),(62177,24574,2),(62206,24574,2),(62211,24574,2),(62213,24574,2),(62214,24574,2),(62215,24574,2),(62255,24574,2),(62402,24574,2),(62630,24574,2),(62676,24574,2),(62677,24574,2),(62728,24574,2),(62764,24574,2),(62835,24574,2),(62837,24574,2),(62838,24574,2),(63006,24574,2),(63020,24574,2),(63287,24574,2),(63492,24574,2),(63574,24574,2),(64328,24574,2),(64499,24574,2),(64639,24574,2),(64678,24574,2),(64682,24574,2),(64685,24574,2),(64686,24574,2),(64688,24574,2),(64689,24574,2),(64690,24574,2),(64720,24574,2),(64807,24574,2),(64973,24574,2),(65055,24574,2),(65057,24574,2),(65086,24574,2),(65203,24574,2),(65448,24574,2),(65754,24574,2),(65759,24574,2),(66025,24574,2),(66125,24574,2),(66195,24574,2),(66767,24574,2),(66942,24574,2),(67660,24574,2),(67675,24574,2),(67911,24574,2),(67913,24574,2),(68179,24574,2),(68202,24574,2),(68412,24574,2),(68684,24574,2),(68718,24574,2),(68721,24574,2),(68722,24574,2),(68724,24574,2),(68726,24574,2),(68727,24574,2),(68728,24574,2),(68734,24574,2),(68735,24574,2),(68737,24574,2),(68812,24574,2),(68818,24574,2),(68924,24574,2),(69270,24574,2),(69640,24574,2),(69668,24574,2),(69848,24574,2),(70006,24574,2),(70074,24574,2),(70160,24574,2),(70435,24574,2),(70436,24574,2),(70670,24574,2),(70868,24574,2),(70981,24574,2),(71469,24574,2),(71547,24574,2),(71552,24574,2),(71676,24574,2),(71679,24574,2),(71688,24574,2),(71805,24574,2),(71859,24574,2),(71864,24574,2),(71866,24574,2),(71880,24574,2),(72086,24574,2),(72105,24574,2),(72113,24574,2),(72190,24574,2),(72197,24574,2),(72207,24574,2),(72213,24574,2),(72331,24574,2),(72358,24574,2),(72359,24574,2),(72387,24574,2),(72431,24574,2),(72545,24574,2),(72559,24574,2),(72570,24574,2),(72571,24574,2),(72710,24574,2),(72913,24574,2),(72914,24574,2),(72976,24574,2),(73191,24574,2),(73247,24574,2),(73511,24574,2),(73567,24574,2),(73873,24574,2),(73935,24574,2),(73937,24574,2),(73981,24574,2),(74084,24574,2),(74457,24574,2),(74465,24574,2),(74510,24574,2),(74534,24574,2),(74536,24574,2),(74725,24574,2),(74777,24574,2),(75033,24574,2),(75174,24574,2),(75531,24574,2),(75612,24574,2),(75638,24574,2),(75656,24574,2),(75674,24574,2),(75780,24574,2),(75861,24574,2),(75900,24574,2),(75986,24574,2),(76025,24574,2),(76163,24574,2),(76170,24574,2),(76203,24574,2),(76285,24574,2),(76338,24574,2),(76341,24574,2),(76349,24574,2),(76487,24574,2),(76489,24574,2),(76492,24574,2),(76493,24574,2),(76494,24574,2),(76617,24574,2),(76640,24574,2),(76649,24574,2),(76706,24574,2),(76726,24574,2),(76757,24574,2),(76758,24574,2),(76996,24574,2),(77016,24574,2),(77156,24574,2),(77174,24574,2),(77866,24574,2),(77875,24574,2),(77877,24574,2),(77883,24574,2),(77930,24574,2),(77931,24574,2),(77934,24574,2),(77948,24574,2),(77949,24574,2),(77950,24574,2),(77951,24574,2),(77953,24574,2),(77987,24574,2),(78149,24574,2),(78307,24574,2),(78373,24574,2),(78381,24574,2),(78383,24574,2),(78394,24574,2),(78698,24574,2),(78814,24574,2),(79120,24574,2),(79316,24574,2),(79587,24574,2),(79694,24574,2),(79698,24574,2),(79777,24574,2),(79940,24574,2),(80035,24574,2),(80215,24574,2),(80271,24574,2),(80274,24574,2),(80278,24574,2),(80304,24574,2),(80321,24574,2),(80468,24574,2),(80585,24574,2),(81005,24574,2),(81188,24574,2),(81220,24574,2),(81390,24574,2),(81796,24574,2),(81836,24574,2),(82505,24574,2),(82507,24574,2),(82525,24574,2),(82532,24574,2),(82533,24574,2),(82631,24574,2),(82650,24574,2),(82654,24574,2),(82675,24574,2),(82679,24574,2),(82682,24574,2),(82684,24574,2),(82687,24574,2),(82690,24574,2),(82693,24574,2),(82695,24574,2),(82696,24574,2),(82700,24574,2),(82702,24574,2),(82703,24574,2),(82990,24574,2),(83542,24574,2),(83588,24574,2),(83666,24574,2),(83686,24574,2),(83770,24574,2),(83860,24574,2),(84174,24574,2),(84175,24574,2),(84178,24574,2),(84184,24574,2),(84188,24574,2),(84200,24574,2),(84204,24574,2),(84318,24574,2),(84329,24574,2),(84332,24574,2),(84355,24574,2),(84892,24574,2),(85350,24574,2),(85446,24574,2),(85860,24574,2),(86304,24574,2),(86549,24574,2),(86812,24574,2),(86825,24574,2),(86829,24574,2),(86834,24574,2),(86838,24574,2),(87093,24574,2),(87101,24574,2),(87421,24574,2),(87428,24574,2),(87499,24574,2),(87502,24574,2),(87567,24574,2),(87729,24574,2),(87818,24574,2),(87825,24574,2),(87826,24574,2),(87827,24574,2),(87943,24574,2),(88005,24574,2),(88036,24574,2),(88042,24574,2),(88641,24574,2),(88751,24574,2),(88794,24574,2),(89325,24574,2),(89492,24574,2),(89708,24574,2),(89750,24574,2),(89857,24574,2),(89861,24574,2),(90369,24574,2),(90414,24574,2),(91070,24574,2),(91076,24574,2),(91122,24574,2),(91314,24574,2),(91586,24574,2),(91721,24574,2),(92182,24574,2),(92591,24574,2),(92635,24574,2),(93456,24574,2),(93856,24574,2),(94348,24574,2),(94352,24574,2),(95755,24574,2),(96238,24574,2),(96399,24574,2),(96534,24574,2),(96721,24574,2),(96724,24574,2),(97020,24574,2),(97367,24574,2),(97370,24574,2),(97430,24574,2),(97614,24574,2),(97630,24574,2),(98357,24574,2),(98369,24574,2),(98549,24574,2),(98557,24574,2),(98566,24574,2),(98568,24574,2),(99826,24574,2),(99861,24574,2),(100042,24574,2),(100241,24574,2),(100275,24574,2),(100402,24574,2),(100975,24574,2),(101173,24574,2),(101179,24574,2),(101267,24574,2),(101299,24574,2),(102362,24574,2),(102382,24574,2),(102651,24574,2),(102899,24574,2),(103370,24574,2),(103620,24574,2),(103663,24574,2),(103731,24574,2),(103903,24574,2),(104755,24574,2),(104896,24574,2),(105864,24574,2),(106646,24574,2),(106747,24574,2),(106845,24574,2),(107315,24574,2),(107811,24574,2),(107846,24574,2),(107985,24574,2),(108346,24574,2),(109091,24574,2),(109414,24574,2),(109417,24574,2),(109418,24574,2),(109421,24574,2),(109424,24574,2),(109428,24574,2),(109431,24574,2),(109443,24574,2),(109445,24574,2),(109451,24574,2),(109491,24574,2),(109513,24574,2),(109729,24574,2),(110415,24574,2),(110683,24574,2),(111190,24574,2),(111794,24574,2),(112456,24574,2),(112937,24574,2),(112949,24574,2),(113406,24574,2),(113464,24574,2),(113947,24574,2),(114150,24574,2),(114635,24574,2),(115210,24574,2),(115872,24574,2),(116149,24574,2),(116584,24574,2),(116613,24574,2),(116711,24574,2),(116741,24574,2),(116745,24574,2),(116977,24574,2),(117251,24574,2),(117263,24574,2),(117942,24574,2),(118340,24574,2),(118452,24574,2),(118612,24574,2),(118957,24574,2),(119283,24574,2),(119450,24574,2),(119458,24574,2),(120467,24574,2),(121676,24574,2),(121826,24574,2),(121986,24574,2),(122081,24574,2),(122906,24574,2),(122917,24574,2),(123553,24574,2),(123678,24574,2),(124459,24574,2),(124606,24574,2),(125052,24574,2),(125123,24574,2),(125490,24574,2),(125537,24574,2),(126186,24574,2),(126509,24574,2),(127493,24574,2),(127560,24574,2),(127585,24574,2),(127867,24574,2),(127918,24574,2),(129139,24574,2),(129670,24574,2),(130150,24574,2),(131631,24574,2),(131634,24574,2),(132232,24574,2),(132344,24574,2),(132363,24574,2),(133575,24574,2),(133694,24574,2),(133805,24574,2),(133931,24574,2),(134371,24574,2),(134374,24574,2),(134411,24574,2),(134597,24574,2),(135397,24574,2),(135595,24574,2),(136400,24574,2),(136795,24574,2),(136797,24574,2),(136835,24574,2),(137093,24574,2),(137094,24574,2),(137106,24574,2),(137113,24574,2),(137321,24574,2),(137347,24574,2),(138103,24574,2),(138697,24574,2),(138832,24574,2),(138843,24574,2),(139038,24574,2),(139715,24574,2),(139948,24574,2),(139998,24574,2),(140300,24574,2),(140823,24574,2),(142061,24574,2),(142132,24574,2),(144336,24574,2),(144340,24574,2),(145220,24574,2),(146198,24574,2),(146203,24574,2),(146216,24574,2),(146227,24574,2),(146233,24574,2),(146238,24574,2),(146239,24574,2),(146269,24574,2),(146304,24574,2),(146631,24574,2),(147441,24574,2),(147773,24574,2),(150202,24574,2),(150540,24574,2),(150689,24574,2),(152532,24574,2),(152599,24574,2),(152601,24574,2),(152737,24574,2),(152742,24574,2),(152747,24574,2),(152760,24574,2),(153158,24574,2),(153397,24574,2),(153518,24574,2),(153795,24574,2),(156022,24574,2),(157058,24574,2),(157185,24574,2),(157336,24574,2),(157350,24574,2),(157353,24574,2),(157354,24574,2),(157386,24574,2),(157422,24574,2),(157544,24574,2),(157547,24574,2),(157841,24574,2),(157847,24574,2),(157849,24574,2),(157909,24574,2),(158011,24574,2),(158015,24574,2),(158150,24574,2),(158752,24574,2),(158852,24574,2),(158895,24574,2),(159014,24574,2),(159770,24574,2),(159824,24574,2),(160588,24574,2),(161795,24574,2),(162396,24574,2),(162903,24574,2),(164457,24574,2),(164558,24574,2),(165864,24574,2),(166424,24574,2),(166624,24574,2),(167073,24574,2),(168027,24574,2),(168259,24574,2),(168530,24574,2),(168672,24574,2),(168705,24574,2),(169917,24574,2),(170480,24574,2),(170687,24574,2),(171274,24574,2),(171424,24574,2),(171759,24574,2),(172385,24574,2),(172391,24574,2),(172533,24574,2),(173224,24574,2),(173931,24574,2),(174311,24574,2),(174362,24574,2),(174751,24574,2),(175291,24574,2),(175528,24574,2),(175541,24574,2),(175555,24574,2),(175574,24574,2),(176077,24574,2),(176124,24574,2),(177572,24574,2),(177677,24574,2),(178862,24574,2),(180296,24574,2),(180383,24574,2),(181283,24574,2),(181330,24574,2),(181533,24574,2),(181940,24574,2),(182873,24574,2),(183894,24574,2),(184098,24574,2),(184315,24574,2),(184341,24574,2),(184345,24574,2),(184346,24574,2),(185465,24574,2),(185567,24574,2),(187017,24574,2),(188161,24574,2),(188166,24574,2),(188207,24574,2),(188652,24574,2),(188927,24574,2),(190847,24574,2),(190859,24574,2),(190955,24574,2),(191229,24574,2),(191714,24574,2),(192102,24574,2),(192132,24574,2),(192134,24574,2),(192136,24574,2),(192141,24574,2),(192210,24574,2),(193603,24574,2),(193610,24574,2),(193613,24574,2),(193756,24574,2),(193893,24574,2),(194662,24574,2),(195589,24574,2),(196867,24574,2),(198062,24574,2),(198184,24574,2),(198185,24574,2),(198277,24574,2),(198370,24574,2),(198663,24574,2),(199373,24574,2),(199933,24574,2),(200505,24574,2),(201088,24574,2),(201132,24574,2),(202575,24574,2),(202604,24574,2),(203801,24574,2),(203833,24574,2),(204082,24574,2),(204922,24574,2),(205126,24574,2),(205220,24574,2),(205321,24574,2),(205584,24574,2),(205587,24574,2),(205588,24574,2),(205596,24574,2),(205775,24574,2),(206197,24574,2),(206213,24574,2),(206284,24574,2),(206296,24574,2),(206563,24574,2),(206647,24574,2),(207769,24574,2),(208134,24574,2),(208763,24574,2),(208869,24574,2),(209112,24574,2),(209263,24574,2),(209403,24574,2),(209451,24574,2),(210577,24574,2),(210860,24574,2),(211557,24574,2),(211672,24574,2),(211954,24574,2),(214756,24574,2),(215211,24574,2),(215881,24574,2),(215918,24574,2),(216015,24574,2),(216282,24574,2),(217708,24574,2),(218043,24574,2),(218500,24574,2),(218778,24574,2),(222649,24574,2),(222899,24574,2),(222935,24574,2),(222936,24574,2),(223485,24574,2),(223702,24574,2),(224141,24574,2),(224569,24574,2),(225565,24574,2),(225574,24574,2),(225886,24574,2),(226354,24574,2),(226458,24574,2),(226486,24574,2),(226857,24574,2),(227156,24574,2),(227159,24574,2),(227306,24574,2),(227348,24574,2),(227707,24574,2),(227719,24574,2),(227735,24574,2),(227783,24574,2),(227973,24574,2),(228066,24574,2),(228150,24574,2),(228161,24574,2),(228165,24574,2),(228194,24574,2),(228203,24574,2),(228205,24574,2),(228326,24574,2),(228550,24574,2),(228967,24574,2),(228970,24574,2),(230266,24574,2),(231576,24574,2),(231617,24574,2),(232672,24574,2),(232679,24574,2),(234212,24574,2),(235260,24574,2),(235271,24574,2),(236751,24574,2),(238603,24574,2),(238615,24574,2),(238636,24574,2),(239563,24574,2),(239566,24574,2),(239571,24574,2),(239573,24574,2),(239678,24574,2),(239897,24574,2),(240832,24574,2),(241239,24574,2),(241251,24574,2),(241254,24574,2),(241257,24574,2),(241259,24574,2),(241554,24574,2),(241766,24574,2),(241771,24574,2),(242083,24574,2),(242095,24574,2),(242166,24574,2),(242512,24574,2),(242582,24574,2),(243938,24574,2),(243940,24574,2),(244267,24574,2),(244316,24574,2),(244403,24574,2),(244534,24574,2),(244772,24574,2),(244776,24574,2),(244783,24574,2),(244786,24574,2),(245700,24574,2),(245703,24574,2),(245846,24574,2),(245916,24574,2),(246403,24574,2),(246449,24574,2),(246655,24574,2),(248402,24574,2),(248774,24574,2),(249164,24574,2),(250066,24574,2),(250124,24574,2),(250184,24574,2),(250546,24574,2),(250902,24574,2),(251321,24574,2),(251471,24574,2),(251979,24574,2),(252360,24574,2),(252512,24574,2),(252680,24574,2),(253235,24574,2),(253253,24574,2),(253261,24574,2),(253290,24574,2),(253306,24574,2),(253331,24574,2),(253412,24574,2),(253626,24574,2),(254024,24574,2),(254128,24574,2),(254470,24574,2),(254472,24574,2),(254473,24574,2),(254904,24574,2),(255266,24574,2),(255343,24574,2),(256092,24574,2),(256274,24574,2),(256591,24574,2),(256687,24574,2),(256740,24574,2),(256917,24574,2),(256924,24574,2),(256961,24574,2),(256962,24574,2),(257087,24574,2),(257088,24574,2),(257091,24574,2),(257211,24574,2),(257344,24574,2),(257445,24574,2),(257932,24574,2),(258489,24574,2),(258509,24574,2),(259693,24574,2),(259694,24574,2),(260346,24574,2),(260947,24574,2),(261023,24574,2),(262500,24574,2),(262504,24574,2),(262543,24574,2),(264644,24574,2),(264656,24574,2),(264660,24574,2),(264999,24574,2),(265208,24574,2),(266102,24574,2),(266396,24574,2),(266647,24574,2),(266856,24574,2),(266857,24574,2),(267860,24574,2),(267935,24574,2),(268238,24574,2),(268917,24574,2),(268920,24574,2),(269057,24574,2),(270303,24574,2),(270487,24574,2),(270554,24574,2),(270938,24574,2),(270946,24574,2),(271110,24574,2),(271185,24574,2),(271331,24574,2),(271718,24574,2),(271969,24574,2),(272693,24574,2),(272878,24574,2),(273248,24574,2),(273481,24574,2),(273895,24574,2),(273899,24574,2),(274167,24574,2),(274479,24574,2),(274758,24574,2),(274854,24574,2),(276907,24574,2),(277216,24574,2),(277685,24574,2),(278316,24574,2),(278348,24574,2),(278927,24574,2),(280092,24574,2),(280381,24574,2),(280391,24574,2),(281730,24574,2),(281957,24574,2),(282128,24574,2),(283384,24574,2),(283445,24574,2),(283671,24574,2),(283686,24574,2),(284293,24574,2),(284296,24574,2),(284536,24574,2),(285783,24574,2),(285923,24574,2),(286217,24574,2),(286565,24574,2),(286939,24574,2),(287424,24574,2),(287524,24574,2),(287625,24574,2),(287903,24574,2),(287948,24574,2),(288927,24574,2),(288980,24574,2),(289180,24574,2),(290391,24574,2),(290555,24574,2),(290595,24574,2),(290751,24574,2),(290825,24574,2),(291081,24574,2),(291270,24574,2),(291362,24574,2),(291805,24574,2),(291870,24574,2),(292481,24574,2),(292483,24574,2),(292539,24574,2),(293646,24574,2),(293660,24574,2),(293863,24574,2),(294086,24574,2),(294254,24574,2),(294272,24574,2),(294512,24574,2),(294550,24574,2),(294600,24574,2),(295886,24574,2),(295964,24574,2),(296096,24574,2),(296098,24574,2),(296099,24574,2),(296943,24574,2),(297100,24574,2),(297596,24574,2),(297621,24574,2),(297761,24574,2),(298312,24574,2),(298584,24574,2),(299145,24574,2),(299245,24574,2),(299552,24574,2),(299553,24574,2),(299687,24574,2),(300168,24574,2),(300671,24574,2),(300673,24574,2),(300706,24574,2),(301325,24574,2),(301351,24574,2),(301365,24574,2),(301748,24574,2),(302156,24574,2),(302579,24574,2),(302688,24574,2),(302699,24574,2),(303858,24574,2),(304357,24574,2),(306667,24574,2),(306745,24574,2),(307081,24574,2),(308529,24574,2),(308531,24574,2),(308639,24574,2),(309425,24574,2),(309503,24574,2),(309809,24574,2),(309919,24574,2),(310131,24574,2),(310706,24574,2),(312221,24574,2),(312791,24574,2),(312793,24574,2),(313922,24574,2),(314365,24574,2),(314385,24574,2),(315011,24574,2),(315664,24574,2),(316002,24574,2),(316152,24574,2),(316727,24574,2),(317930,24574,2),(318040,24574,2),(318846,24574,2),(318850,24574,2),(319069,24574,2),(319888,24574,2),(319910,24574,2),(320146,24574,2),(321258,24574,2),(321697,24574,2),(321741,24574,2),(322194,24574,2),(322443,24574,2),(322745,24574,2),(323271,24574,2),(323675,24574,2),(323676,24574,2),(323677,24574,2),(323967,24574,2),(324322,24574,2),(324352,24574,2),(324668,24574,2),(325123,24574,2),(325133,24574,2),(325173,24574,2),(325373,24574,2),(325789,24574,2),(326284,24574,2),(326576,24574,2),(327833,24574,2),(328111,24574,2),(328387,24574,2),(328425,24574,2),(329440,24574,2),(329540,24574,2),(329833,24574,2),(331190,24574,2),(331592,24574,2),(331745,24574,2),(332285,24574,2),(332411,24574,2),(332567,24574,2),(333348,24574,2),(333355,24574,2),(333371,24574,2),(334074,24574,2),(334527,24574,2),(334531,24574,2),(335244,24574,2),(335778,24574,2),(335866,24574,2),(335874,24574,2),(336004,24574,2),(339408,24574,2),(339984,24574,2),(340611,24574,2),(340816,24574,2),(342502,24574,2),(342521,24574,2),(343409,24574,2),(343795,24574,2),(345003,24574,2),(345911,24574,2),(347126,24574,2),(347548,24574,2),(347755,24574,2),(347764,24574,2),(347969,24574,2),(351043,24574,2),(351819,24574,2),(352978,24574,2),(354110,24574,2),(354624,24574,2),(356216,24574,2),(356483,24574,2),(356841,24574,2),(356987,24574,2),(357837,24574,2),(360188,24574,2),(360339,24574,2),(361159,24574,2),(361398,24574,2),(361475,24574,2),(362105,24574,2),(362765,24574,2),(364083,24574,2),(365052,24574,2),(365222,24574,2),(367551,24574,2),(370464,24574,2),(370662,24574,2),(373314,24574,2),(374461,24574,2),(376004,24574,2),(376010,24574,2),(376659,24574,2),(378200,24574,2),(378237,24574,2),(379532,24574,2),(380733,24574,2),(385383,24574,2),(385636,24574,2),(385736,24574,2),(386826,24574,2),(389425,24574,2),(394047,24574,2),(396152,24574,2),(402515,24574,2),(407887,24574,2),(408429,24574,2),(417859,24574,2),(426067,24574,2),(426469,24574,2),(433715,24574,2),(18,24575,2),(180,24575,2),(464,24575,2),(597,24575,2),(854,24575,2),(1907,24575,2),(4517,24575,2),(5780,24575,2),(6968,24575,2),(9557,24575,2),(10238,24575,2),(12093,24575,2),(13491,24575,2),(14729,24575,2),(19913,24575,2),(29920,24575,2),(56292,24575,2),(74725,24575,2),(80278,24575,2),(127493,24575,2),(177677,24575,2),(217708,24575,2),(18,24576,2),(76,24576,2),(78,24576,2),(85,24576,2),(89,24576,2),(104,24576,2),(115,24576,2),(182,24576,2),(217,24576,2),(242,24576,2),(252,24576,2),(279,24576,2),(289,24576,2),(292,24576,2),(309,24576,2),(334,24576,2),(338,24576,2),(342,24576,2),(387,24576,2),(409,24576,2),(411,24576,2),(421,24576,2),(423,24576,2),(424,24576,2),(431,24576,2),(479,24576,2),(562,24576,2),(576,24576,2),(582,24576,2),(597,24576,2),(612,24576,2),(613,24576,2),(668,24576,2),(681,24576,2),(700,24576,2),(703,24576,2),(708,24576,2),(714,24576,2),(811,24576,2),(817,24576,2),(818,24576,2),(853,24576,2),(857,24576,2),(864,24576,2),(905,24576,2),(956,24576,2),(1165,24576,2),(1248,24576,2),(1452,24576,2),(1523,24576,2),(1535,24576,2),(1555,24576,2),(1572,24576,2),(1590,24576,2),(1591,24576,2),(1648,24576,2),(1698,24576,2),(1710,24576,2),(1722,24576,2),(1809,24576,2),(1813,24576,2),(1830,24576,2),(1985,24576,2),(2008,24576,2),(2011,24576,2),(2057,24576,2),(2123,24576,2),(2211,24576,2),(2253,24576,2),(2501,24576,2),(2502,24576,2),(2649,24576,2),(2841,24576,2),(3034,24576,2),(3040,24576,2),(3089,24576,2),(3093,24576,2),(3175,24576,2),(3482,24576,2),(3536,24576,2),(4327,24576,2),(4442,24576,2),(4597,24576,2),(4614,24576,2),(4942,24576,2),(4959,24576,2),(5137,24576,2),(5780,24576,2),(5902,24576,2),(5925,24576,2),(6068,24576,2),(6968,24576,2),(7451,24576,2),(7735,24576,2),(8055,24576,2),(8293,24576,2),(8357,24576,2),(8698,24576,2),(8883,24576,2),(8885,24576,2),(9026,24576,2),(9045,24576,2),(9075,24576,2),(9281,24576,2),(9289,24576,2),(9315,24576,2),(9352,24576,2),(9472,24576,2),(9552,24576,2),(9587,24576,2),(9672,24576,2),(9705,24576,2),(9707,24576,2),(9801,24576,2),(9804,24576,2),(9829,24576,2),(9839,24576,2),(9870,24576,2),(9988,24576,2),(10027,24576,2),(10048,24576,2),(10092,24576,2),(10105,24576,2),(10204,24576,2),(10219,24576,2),(10357,24576,2),(10477,24576,2),(10534,24576,2),(10592,24576,2),(10625,24576,2),(10741,24576,2),(10764,24576,2),(10774,24576,2),(10873,24576,2),(10934,24576,2),(10935,24576,2),(10992,24576,2),(11022,24576,2),(11072,24576,2),(11137,24576,2),(11212,24576,2),(11247,24576,2),(11324,24576,2),(11519,24576,2),(11535,24576,2),(11622,24576,2),(11632,24576,2),(11661,24576,2),(11817,24576,2),(12090,24576,2),(12412,24576,2),(12602,24576,2),(12703,24576,2),(13159,24576,2),(13403,24576,2),(13448,24576,2),(13569,24576,2),(13996,24576,2),(14283,24576,2),(14582,24576,2),(14652,24576,2),(14844,24576,2),(15301,24576,2),(15544,24576,2),(15648,24576,2),(16110,24576,2),(16351,24576,2),(16558,24576,2),(16564,24576,2),(16869,24576,2),(17139,24576,2),(17994,24576,2),(18254,24576,2),(18480,24576,2),(19898,24576,2),(20406,24576,2),(20455,24576,2),(21345,24576,2),(21765,24576,2),(22301,24576,2),(22530,24576,2),(23629,24576,2),(24100,24576,2),(24662,24576,2),(25428,24576,2),(26389,24576,2),(27191,24576,2),(27374,24576,2),(27588,24576,2),(29920,24576,2),(30979,24576,2),(31175,24576,2),(31668,24576,2),(34069,24576,2),(34697,24576,2),(34723,24576,2),(36334,24576,2),(36658,24576,2),(36669,24576,2),(36955,24576,2),(37834,24576,2),(37903,24576,2),(38985,24576,2),(39209,24576,2),(39895,24576,2),(41488,24576,2),(41508,24576,2),(42222,24576,2),(42586,24576,2),(42819,24576,2),(43434,24576,2),(46435,24576,2),(48138,24576,2),(48289,24576,2),(49538,24576,2),(50135,24576,2),(50456,24576,2),(51384,24576,2),(52462,24576,2),(53256,24576,2),(53457,24576,2),(54580,24576,2),(58233,24576,2),(59436,24576,2),(60422,24576,2),(62206,24576,2),(68718,24576,2),(71866,24576,2),(72431,24576,2),(77934,24576,2),(84188,24576,2),(90369,24576,2),(94348,24576,2),(96721,24576,2),(98568,24576,2),(107846,24576,2),(145220,24576,2),(152760,24576,2),(157544,24576,2),(171759,24576,2),(173931,24576,2),(176124,24576,2),(177677,24576,2),(202575,24576,2),(203801,24576,2),(203833,24576,2),(205126,24576,2),(206647,24576,2),(225574,24576,2),(227975,24576,2),(242575,24576,2),(271110,24576,2),(287903,24576,2),(290825,24576,2),(296098,24576,2),(304357,24576,2),(312793,24576,2),(315011,24576,2),(316152,24576,2),(319888,24576,2),(347764,24576,2),(389425,24576,2),(19,24577,2),(62204,24577,2),(24,24578,2),(78,24578,2),(104,24578,2),(114,24578,2),(128,24578,2),(129,24578,2),(149,24578,2),(153,24578,2),(327,24578,2),(346,24578,2),(435,24578,2),(616,24578,2),(667,24578,2),(676,24578,2),(746,24578,2),(818,24578,2),(826,24578,2),(844,24578,2),(920,24578,2),(1164,24578,2),(1251,24578,2),(1904,24578,2),(1970,24578,2),(1975,24578,2),(1979,24578,2),(2057,24578,2),(2110,24578,2),(4105,24578,2),(4327,24578,2),(4550,24578,2),(4935,24578,2),(5174,24578,2),(5550,24578,2),(6477,24578,2),(6972,24578,2),(8329,24578,2),(8338,24578,2),(8675,24578,2),(8814,24578,2),(8859,24578,2),(8953,24578,2),(8960,24578,2),(9008,24578,2),(9315,24578,2),(9339,24578,2),(9352,24578,2),(9366,24578,2),(9486,24578,2),(9615,24578,2),(9870,24578,2),(9947,24578,2),(9955,24578,2),(10219,24578,2),(10428,24578,2),(10431,24578,2),(10643,24578,2),(10885,24578,2),(11165,24578,2),(11519,24578,2),(11535,24578,2),(11667,24578,2),(12100,24578,2),(12429,24578,2),(13154,24578,2),(13405,24578,2),(13435,24578,2),(13483,24578,2),(13889,24578,2),(13922,24578,2),(14164,24578,2),(20083,24578,2),(21345,24578,2),(21755,24578,2),(22970,24578,2),(27205,24578,2),(28165,24578,2),(28178,24578,2),(34647,24578,2),(35791,24578,2),(36095,24578,2),(43434,24578,2),(44865,24578,2),(46435,24578,2),(49013,24578,2),(50359,24578,2),(61984,24578,2),(64686,24578,2),(76758,24578,2),(87827,24578,2),(110415,24578,2),(152532,24578,2),(179144,24578,2),(192577,24578,2),(193722,24578,2),(227306,24578,2),(293670,24578,2),(315011,24578,2),(24,24579,2),(28,24579,2),(75,24579,2),(76,24579,2),(80,24579,2),(137,24579,2),(163,24579,2),(179,24579,2),(194,24579,2),(197,24579,2),(205,24579,2),(223,24579,2),(231,24579,2),(252,24579,2),(268,24579,2),(289,24579,2),(298,24579,2),(302,24579,2),(311,24579,2),(321,24579,2),(332,24579,2),(334,24579,2),(350,24579,2),(387,24579,2),(392,24579,2),(421,24579,2),(435,24579,2),(462,24579,2),(492,24579,2),(497,24579,2),(507,24579,2),(508,24579,2),(559,24579,2),(591,24579,2),(594,24579,2),(597,24579,2),(605,24579,2),(612,24579,2),(622,24579,2),(628,24579,2),(629,24579,2),(640,24579,2),(646,24579,2),(660,24579,2),(674,24579,2),(676,24579,2),(680,24579,2),(708,24579,2),(762,24579,2),(772,24579,2),(796,24579,2),(810,24579,2),(818,24579,2),(824,24579,2),(834,24579,2),(840,24579,2),(857,24579,2),(864,24579,2),(874,24579,2),(953,24579,2),(954,24579,2),(979,24579,2),(1051,24579,2),(1164,24579,2),(1165,24579,2),(1259,24579,2),(1360,24579,2),(1452,24579,2),(1493,24579,2),(1523,24579,2),(1535,24579,2),(1551,24579,2),(1555,24579,2),(1571,24579,2),(1619,24579,2),(1648,24579,2),(1651,24579,2),(1667,24579,2),(1771,24579,2),(1813,24579,2),(1830,24579,2),(1831,24579,2),(1887,24579,2),(1907,24579,2),(1933,24579,2),(1947,24579,2),(1958,24579,2),(1988,24579,2),(1997,24579,2),(2011,24579,2),(2013,24579,2),(2069,24579,2),(2110,24579,2),(2140,24579,2),(2251,24579,2),(2266,24579,2),(2268,24579,2),(2359,24579,2),(2370,24579,2),(2395,24579,2),(2501,24579,2),(2503,24579,2),(2786,24579,2),(2841,24579,2),(3175,24579,2),(3472,24579,2),(3536,24579,2),(3981,24579,2),(3989,24579,2),(4108,24579,2),(4347,24579,2),(4442,24579,2),(4518,24579,2),(4951,24579,2),(4959,24579,2),(5174,24579,2),(5491,24579,2),(5528,24579,2),(5925,24579,2),(6477,24579,2),(6520,24579,2),(6687,24579,2),(6950,24579,2),(6964,24579,2),(6968,24579,2),(7303,24579,2),(7364,24579,2),(7445,24579,2),(7973,24579,2),(8054,24579,2),(8195,24579,2),(8198,24579,2),(8247,24579,2),(8265,24579,2),(8285,24579,2),(8291,24579,2),(8416,24579,2),(8619,24579,2),(8645,24579,2),(8681,24579,2),(8841,24579,2),(8859,24579,2),(8874,24579,2),(8944,24579,2),(8968,24579,2),(8999,24579,2),(9035,24579,2),(9045,24579,2),(9257,24579,2),(9280,24579,2),(9289,24579,2),(9302,24579,2),(9315,24579,2),(9335,24579,2),(9352,24579,2),(9361,24579,2),(9389,24579,2),(9433,24579,2),(9443,24579,2),(9444,24579,2),(9486,24579,2),(9532,24579,2),(9552,24579,2),(9562,24579,2),(9587,24579,2),(9662,24579,2),(9664,24579,2),(9678,24579,2),(9726,24579,2),(9806,24579,2),(9912,24579,2),(9922,24579,2),(10045,24579,2),(10096,24579,2),(10117,24579,2),(10138,24579,2),(10156,24579,2),(10183,24579,2),(10185,24579,2),(10186,24579,2),(10197,24579,2),(10198,24579,2),(10204,24579,2),(10226,24579,2),(10329,24579,2),(10353,24579,2),(10383,24579,2),(10388,24579,2),(10426,24579,2),(10472,24579,2),(10528,24579,2),(10534,24579,2),(10590,24579,2),(10656,24579,2),(10678,24579,2),(10705,24579,2),(10707,24579,2),(10761,24579,2),(10764,24579,2),(10800,24579,2),(10865,24579,2),(10930,24579,2),(10934,24579,2),(10935,24579,2),(10970,24579,2),(10992,24579,2),(11042,24579,2),(11065,24579,2),(11066,24579,2),(11156,24579,2),(11191,24579,2),(11212,24579,2),(11232,24579,2),(11363,24579,2),(11371,24579,2),(11411,24579,2),(11516,24579,2),(11535,24579,2),(11545,24579,2),(11551,24579,2),(11586,24579,2),(11622,24579,2),(11632,24579,2),(11638,24579,2),(11661,24579,2),(11683,24579,2),(11687,24579,2),(11775,24579,2),(11778,24579,2),(11870,24579,2),(11876,24579,2),(11956,24579,2),(12090,24579,2),(12103,24579,2),(12154,24579,2),(12211,24579,2),(12271,24579,2),(12405,24579,2),(12454,24579,2),(12479,24579,2),(12838,24579,2),(13159,24579,2),(13448,24579,2),(13508,24579,2),(13537,24579,2),(13768,24579,2),(13849,24579,2),(13950,24579,2),(13996,24579,2),(14024,24579,2),(14048,24579,2),(14161,24579,2),(14202,24579,2),(14283,24579,2),(14652,24579,2),(14757,24579,2),(14834,24579,2),(14844,24579,2),(14869,24579,2),(15049,24579,2),(15121,24579,2),(15237,24579,2),(15301,24579,2),(15875,24579,2),(16172,24579,2),(16351,24579,2),(16406,24579,2),(16727,24579,2),(16869,24579,2),(17139,24579,2),(17182,24579,2),(17379,24579,2),(17813,24579,2),(18254,24579,2),(18681,24579,2),(18840,24579,2),(18885,24579,2),(19913,24579,2),(19959,24579,2),(20024,24579,2),(20761,24579,2),(21208,24579,2),(21494,24579,2),(21610,24579,2),(21755,24579,2),(22215,24579,2),(22301,24579,2),(22327,24579,2),(22597,24579,2),(22617,24579,2),(22897,24579,2),(23398,24579,2),(23963,24579,2),(24363,24579,2),(24803,24579,2),(24985,24579,2),(25353,24579,2),(25520,24579,2),(26389,24579,2),(26843,24579,2),(27004,24579,2),(27205,24579,2),(27588,24579,2),(27936,24579,2),(29715,24579,2),(29917,24579,2),(29963,24579,2),(31203,24579,2),(34043,24579,2),(34069,24579,2),(34723,24579,2),(35073,24579,2),(36047,24579,2),(36557,24579,2),(36670,24579,2),(36955,24579,2),(36970,24579,2),(37710,24579,2),(37842,24579,2),(38448,24579,2),(38940,24579,2),(38970,24579,2),(38985,24579,2),(39141,24579,2),(39180,24579,2),(39780,24579,2),(39851,24579,2),(40160,24579,2),(40185,24579,2),(40652,24579,2),(41248,24579,2),(41479,24579,2),(41488,24579,2),(42222,24579,2),(42497,24579,2),(42889,24579,2),(43434,24579,2),(43546,24579,2),(44214,24579,2),(44603,24579,2),(44718,24579,2),(45324,24579,2),(46332,24579,2),(46415,24579,2),(46435,24579,2),(46529,24579,2),(46738,24579,2),(47692,24579,2),(48034,24579,2),(48217,24579,2),(49013,24579,2),(49081,24579,2),(49517,24579,2),(49538,24579,2),(50456,24579,2),(50538,24579,2),(50848,24579,2),(53457,24579,2),(55347,24579,2),(55903,24579,2),(56292,24579,2),(56715,24579,2),(59436,24579,2),(60400,24579,2),(60421,24579,2),(60422,24579,2),(62116,24579,2),(64559,24579,2),(68718,24579,2),(68727,24579,2),(71157,24579,2),(72431,24579,2),(73532,24579,2),(73873,24579,2),(74643,24579,2),(75656,24579,2),(76349,24579,2),(77459,24579,2),(77949,24579,2),(81188,24579,2),(82507,24579,2),(83686,24579,2),(83770,24579,2),(84188,24579,2),(86331,24579,2),(86837,24579,2),(87093,24579,2),(87827,24579,2),(88036,24579,2),(90369,24579,2),(96721,24579,2),(96724,24579,2),(98549,24579,2),(102362,24579,2),(103328,24579,2),(106646,24579,2),(109421,24579,2),(109513,24579,2),(110415,24579,2),(115872,24579,2),(120467,24579,2),(121826,24579,2),(126141,24579,2),(126319,24579,2),(132344,24579,2),(133698,24579,2),(146216,24579,2),(146631,24579,2),(146882,24579,2),(152760,24579,2),(184374,24579,2),(192141,24579,2),(202575,24579,2),(205126,24579,2),(205588,24579,2),(206647,24579,2),(215211,24579,2),(228194,24579,2),(240832,24579,2),(250349,24579,2),(251321,24579,2),(254024,24579,2),(266034,24579,2),(266856,24579,2),(268171,24579,2),(280391,24579,2),(281957,24579,2),(283708,24579,2),(285783,24579,2),(290825,24579,2),(295964,24579,2),(304410,24579,2),(314385,24579,2),(324322,24579,2),(330770,24579,2),(361475,24579,2),(375950,24579,2),(25,24580,2),(55,24580,2),(66,24580,2),(85,24580,2),(103,24580,2),(106,24580,2),(111,24580,2),(115,24580,2),(170,24580,2),(219,24580,2),(240,24580,2),(248,24580,2),(280,24580,2),(298,24580,2),(314,24580,2),(327,24580,2),(329,24580,2),(331,24580,2),(332,24580,2),(348,24580,2),(391,24580,2),(393,24580,2),(435,24580,2),(436,24580,2),(479,24580,2),(503,24580,2),(509,24580,2),(542,24580,2),(549,24580,2),(576,24580,2),(584,24580,2),(591,24580,2),(594,24580,2),(607,24580,2),(622,24580,2),(629,24580,2),(642,24580,2),(658,24580,2),(680,24580,2),(700,24580,2),(709,24580,2),(710,24580,2),(745,24580,2),(755,24580,2),(787,24580,2),(820,24580,2),(824,24580,2),(840,24580,2),(874,24580,2),(927,24580,2),(951,24580,2),(953,24580,2),(1018,24580,2),(1164,24580,2),(1246,24580,2),(1359,24580,2),(1391,24580,2),(1417,24580,2),(1428,24580,2),(1493,24580,2),(1538,24580,2),(1551,24580,2),(1555,24580,2),(1573,24580,2),(1636,24580,2),(1640,24580,2),(1642,24580,2),(1646,24580,2),(1656,24580,2),(1683,24580,2),(1696,24580,2),(1724,24580,2),(1813,24580,2),(1830,24580,2),(1858,24580,2),(1865,24580,2),(1880,24580,2),(1900,24580,2),(1913,24580,2),(1927,24580,2),(1948,24580,2),(1969,24580,2),(2034,24580,2),(2057,24580,2),(2059,24580,2),(2069,24580,2),(2176,24580,2),(2266,24580,2),(2359,24580,2),(2370,24580,2),(2503,24580,2),(2539,24580,2),(2575,24580,2),(2604,24580,2),(3089,24580,2),(3472,24580,2),(4170,24580,2),(4517,24580,2),(4967,24580,2),(5038,24580,2),(6073,24580,2),(6106,24580,2),(6477,24580,2),(6488,24580,2),(6537,24580,2),(6615,24580,2),(6687,24580,2),(6957,24580,2),(6977,24580,2),(7451,24580,2),(7461,24580,2),(7873,24580,2),(8007,24580,2),(8053,24580,2),(8271,24580,2),(8292,24580,2),(8329,24580,2),(8357,24580,2),(8373,24580,2),(8374,24580,2),(8409,24580,2),(8470,24580,2),(8584,24580,2),(8818,24580,2),(8961,24580,2),(8978,24580,2),(9007,24580,2),(9027,24580,2),(9030,24580,2),(9089,24580,2),(9257,24580,2),(9280,24580,2),(9310,24580,2),(9353,24580,2),(9367,24580,2),(9471,24580,2),(9509,24580,2),(9531,24580,2),(9557,24580,2),(9573,24580,2),(9603,24580,2),(9645,24580,2),(9691,24580,2),(9730,24580,2),(9763,24580,2),(9779,24580,2),(9787,24580,2),(9793,24580,2),(9804,24580,2),(9809,24580,2),(9819,24580,2),(9882,24580,2),(9884,24580,2),(9957,24580,2),(10027,24580,2),(10048,24580,2),(10052,24580,2),(10054,24580,2),(10090,24580,2),(10193,24580,2),(10212,24580,2),(10217,24580,2),(10357,24580,2),(10477,24580,2),(10480,24580,2),(10523,24580,2),(10550,24580,2),(10603,24580,2),(10664,24580,2),(10691,24580,2),(10733,24580,2),(10741,24580,2),(10764,24580,2),(10865,24580,2),(10878,24580,2),(10934,24580,2),(11023,24580,2),(11321,24580,2),(11499,24580,2),(11545,24580,2),(11551,24580,2),(11560,24580,2),(11586,24580,2),(11600,24580,2),(11615,24580,2),(11683,24580,2),(11699,24580,2),(11831,24580,2),(11858,24580,2),(11873,24580,2),(11954,24580,2),(11969,24580,2),(12103,24580,2),(12133,24580,2),(12586,24580,2),(12657,24580,2),(12690,24580,2),(12771,24580,2),(12797,24580,2),(13007,24580,2),(13051,24580,2),(13090,24580,2),(13173,24580,2),(13187,24580,2),(13389,24580,2),(13435,24580,2),(13495,24580,2),(13673,24580,2),(13685,24580,2),(13982,24580,2),(14120,24580,2),(14139,24580,2),(14283,24580,2),(14358,24580,2),(14536,24580,2),(14544,24580,2),(14624,24580,2),(14736,24580,2),(14844,24580,2),(14854,24580,2),(15644,24580,2),(16052,24580,2),(16558,24580,2),(16781,24580,2),(16866,24580,2),(16871,24580,2),(17182,24580,2),(17339,24580,2),(17431,24580,2),(17708,24580,2),(18079,24580,2),(18206,24580,2),(18602,24580,2),(18840,24580,2),(19150,24580,2),(19457,24580,2),(19489,24580,2),(19994,24580,2),(19995,24580,2),(20391,24580,2),(20406,24580,2),(20764,24580,2),(21355,24580,2),(22345,24580,2),(22821,24580,2),(23479,24580,2),(23631,24580,2),(23706,24580,2),(23742,24580,2),(24438,24580,2),(25196,24580,2),(25376,24580,2),(25461,24580,2),(25763,24580,2),(26748,24580,2),(26843,24580,2),(27551,24580,2),(27578,24580,2),(28089,24580,2),(29715,24580,2),(29920,24580,2),(32579,24580,2),(33676,24580,2),(34653,24580,2),(34851,24580,2),(35791,24580,2),(36669,24580,2),(36670,24580,2),(37056,24580,2),(37710,24580,2),(37737,24580,2),(37834,24580,2),(38985,24580,2),(39209,24580,2),(40264,24580,2),(41733,24580,2),(43434,24580,2),(43546,24580,2),(43867,24580,2),(43933,24580,2),(44040,24580,2),(44413,24580,2),(45958,24580,2),(49538,24580,2),(50456,24580,2),(51497,24580,2),(54580,24580,2),(55720,24580,2),(57825,24580,2),(59436,24580,2),(59961,24580,2),(62206,24580,2),(62835,24580,2),(63287,24580,2),(65749,24580,2),(68818,24580,2),(70435,24580,2),(71864,24580,2),(77016,24580,2),(77495,24580,2),(77948,24580,2),(78705,24580,2),(80278,24580,2),(80304,24580,2),(80321,24580,2),(85350,24580,2),(86549,24580,2),(87567,24580,2),(89540,24580,2),(96399,24580,2),(97367,24580,2),(102362,24580,2),(106747,24580,2),(119657,24580,2),(129670,24580,2),(134411,24580,2),(136400,24580,2),(136795,24580,2),(153158,24580,2),(179144,24580,2),(184341,24580,2),(184374,24580,2),(185465,24580,2),(186935,24580,2),(190955,24580,2),(191229,24580,2),(201088,24580,2),(206647,24580,2),(211954,24580,2),(215924,24580,2),(217708,24580,2),(240832,24580,2),(241239,24580,2),(242575,24580,2),(255343,24580,2),(258755,24580,2),(266396,24580,2),(268920,24580,2),(273248,24580,2),(273481,24580,2),(274479,24580,2),(283708,24580,2),(285923,24580,2),(293646,24580,2),(293670,24580,2),(301325,24580,2),(325789,24580,2),(355629,24580,2),(364083,24580,2),(370980,24580,2),(417859,24580,2),(25,24581,2),(85,24581,2),(231,24581,2),(409,24581,2),(435,24581,2),(612,24581,2),(691,24581,2),(708,24581,2),(947,24581,2),(1164,24581,2),(1495,24581,2),(1535,24581,2),(1726,24581,2),(1734,24581,2),(1777,24581,2),(1830,24581,2),(1883,24581,2),(1979,24581,2),(2266,24581,2),(2503,24581,2),(3989,24581,2),(4349,24581,2),(4614,24581,2),(5125,24581,2),(6415,24581,2),(6538,24581,2),(7364,24581,2),(7973,24581,2),(8681,24581,2),(8885,24581,2),(8975,24581,2),(9008,24581,2),(9315,24581,2),(9552,24581,2),(9829,24581,2),(9882,24581,2),(11535,24581,2),(11818,24581,2),(12113,24581,2),(12162,24581,2),(12454,24581,2),(13007,24581,2),(13491,24581,2),(17264,24581,2),(22972,24581,2),(24424,24581,2),(36670,24581,2),(36955,24581,2),(37495,24581,2),(37786,24581,2),(43434,24581,2),(45610,24581,2),(46332,24581,2),(46738,24581,2),(48138,24581,2),(50456,24581,2),(56292,24581,2),(71157,24581,2),(82675,24581,2),(97630,24581,2),(107846,24581,2),(121676,24581,2),(159037,24581,2),(283708,24581,2),(297596,24581,2),(300671,24581,2),(375290,24581,2),(25,24582,2),(197,24582,2),(238,24582,2),(240,24582,2),(242,24582,2),(279,24582,2),(591,24582,2),(615,24582,2),(622,24582,2),(745,24582,2),(754,24582,2),(762,24582,2),(794,24582,2),(874,24582,2),(1116,24582,2),(1408,24582,2),(1495,24582,2),(1698,24582,2),(1887,24582,2),(2057,24582,2),(2059,24582,2),(2757,24582,2),(3131,24582,2),(5174,24582,2),(5902,24582,2),(6114,24582,2),(8055,24582,2),(8413,24582,2),(8416,24582,2),(9552,24582,2),(9945,24582,2),(9946,24582,2),(10047,24582,2),(10156,24582,2),(10162,24582,2),(10410,24582,2),(10545,24582,2),(11011,24582,2),(11545,24582,2),(11622,24582,2),(11661,24582,2),(11969,24582,2),(13448,24582,2),(14161,24582,2),(22215,24582,2),(37903,24582,2),(38543,24582,2),(41488,24582,2),(48171,24582,2),(87567,24582,2),(152599,24582,2),(266856,24582,2),(28,24583,2),(9839,24583,2),(28,24584,2),(792,24584,2),(796,24584,2),(1369,24584,2),(5516,24584,2),(8198,24584,2),(8982,24584,2),(9920,24584,2),(10590,24584,2),(10625,24584,2),(10685,24584,2),(11778,24584,2),(15301,24584,2),(17708,24584,2),(19898,24584,2),(25784,24584,2),(86838,24584,2),(58,24585,2),(657,24585,2),(947,24585,2),(1266,24585,2),(1830,24585,2),(2252,24585,2),(2977,24585,2),(9490,24585,2),(10204,24585,2),(11186,24585,2),(11818,24585,2),(12162,24585,2),(16351,24585,2),(43935,24585,2),(48138,24585,2),(82675,24585,2),(223485,24585,2),(256917,24585,2),(58,24586,2),(89,24586,2),(612,24586,2),(699,24586,2),(1648,24586,2),(1722,24586,2),(2749,24586,2),(6114,24586,2),(8055,24586,2),(8346,24586,2),(9552,24586,2),(9779,24586,2),(11631,24586,2),(12779,24586,2),(24973,24586,2),(31175,24586,2),(37958,24586,2),(38810,24586,2),(132344,24586,2),(256917,24586,2),(58,24587,2),(79,24587,2),(146,24587,2),(155,24587,2),(163,24587,2),(182,24587,2),(231,24587,2),(272,24587,2),(393,24587,2),(558,24587,2),(658,24587,2),(714,24587,2),(746,24587,2),(844,24587,2),(944,24587,2),(956,24587,2),(1494,24587,2),(1550,24587,2),(1640,24587,2),(1729,24587,2),(1735,24587,2),(1813,24587,2),(1979,24587,2),(1996,24587,2),(2008,24587,2),(2085,24587,2),(2140,24587,2),(2266,24587,2),(3131,24587,2),(4108,24587,2),(5174,24587,2),(5175,24587,2),(6038,24587,2),(6687,24587,2),(7446,24587,2),(7450,24587,2),(8416,24587,2),(8584,24587,2),(8982,24587,2),(9007,24587,2),(9437,24587,2),(9455,24587,2),(9471,24587,2),(9550,24587,2),(9689,24587,2),(9746,24587,2),(10077,24587,2),(10183,24587,2),(10200,24587,2),(10330,24587,2),(10431,24587,2),(10622,24587,2),(10674,24587,2),(11770,24587,2),(12246,24587,2),(12289,24587,2),(13405,24587,2),(13448,24587,2),(13700,24587,2),(14161,24587,2),(14202,24587,2),(14283,24587,2),(14392,24587,2),(14538,24587,2),(16320,24587,2),(16353,24587,2),(18840,24587,2),(19316,24587,2),(20083,24587,2),(20520,24587,2),(21345,24587,2),(26389,24587,2),(30596,24587,2),(33106,24587,2),(33870,24587,2),(39538,24587,2),(40805,24587,2),(44092,24587,2),(44555,24587,2),(44865,24587,2),(45380,24587,2),(45958,24587,2),(49478,24587,2),(49526,24587,2),(58233,24587,2),(58882,24587,2),(72387,24587,2),(76349,24587,2),(76758,24587,2),(87827,24587,2),(135595,24587,2),(173931,24587,2),(179144,24587,2),(201088,24587,2),(220488,24587,2),(240832,24587,2),(244114,24587,2),(253450,24587,2),(257932,24587,2),(259943,24587,2),(286217,24587,2),(290864,24587,2),(291805,24587,2),(300168,24587,2),(358451,24587,2),(365222,24587,2),(381902,24587,2),(62,24588,2),(69,24588,2),(95,24588,2),(107,24588,2),(157,24588,2),(182,24588,2),(194,24588,2),(217,24588,2),(423,24588,2),(558,24588,2),(593,24588,2),(594,24588,2),(597,24588,2),(612,24588,2),(613,24588,2),(657,24588,2),(667,24588,2),(700,24588,2),(708,24588,2),(710,24588,2),(746,24588,2),(768,24588,2),(853,24588,2),(864,24588,2),(907,24588,2),(1164,24588,2),(1248,24588,2),(1360,24588,2),(1370,24588,2),(1487,24588,2),(1493,24588,2),(1620,24588,2),(1636,24588,2),(1669,24588,2),(1830,24588,2),(1880,24588,2),(1975,24588,2),(2001,24588,2),(2034,24588,2),(2043,24588,2),(2084,24588,2),(2110,24588,2),(2252,24588,2),(2268,24588,2),(2359,24588,2),(2370,24588,2),(2502,24588,2),(2503,24588,2),(2749,24588,2),(3040,24588,2),(3536,24588,2),(4170,24588,2),(4551,24588,2),(4614,24588,2),(4824,24588,2),(4858,24588,2),(4959,24588,2),(5072,24588,2),(5925,24588,2),(6538,24588,2),(6623,24588,2),(6687,24588,2),(7191,24588,2),(7304,24588,2),(7451,24588,2),(7553,24588,2),(7979,24588,2),(8054,24588,2),(8195,24588,2),(8285,24588,2),(8328,24588,2),(8358,24588,2),(8427,24588,2),(8741,24588,2),(9381,24588,2),(9433,24588,2),(9444,24588,2),(9544,24588,2),(9549,24588,2),(9726,24588,2),(9772,24588,2),(9912,24588,2),(10003,24588,2),(10048,24588,2),(10066,24588,2),(10138,24588,2),(10220,24588,2),(10368,24588,2),(10385,24588,2),(10428,24588,2),(10557,24588,2),(10623,24588,2),(10683,24588,2),(10724,24588,2),(10744,24588,2),(10761,24588,2),(10833,24588,2),(10890,24588,2),(10935,24588,2),(11152,24588,2),(11190,24588,2),(11237,24588,2),(11336,24588,2),(11411,24588,2),(11460,24588,2),(11535,24588,2),(11665,24588,2),(11778,24588,2),(11973,24588,2),(12093,24588,2),(12154,24588,2),(13051,24588,2),(13056,24588,2),(13389,24588,2),(13435,24588,2),(13809,24588,2),(13994,24588,2),(14161,24588,2),(14181,24588,2),(14324,24588,2),(14745,24588,2),(14811,24588,2),(16353,24588,2),(16558,24588,2),(16911,24588,2),(17711,24588,2),(18254,24588,2),(18840,24588,2),(19187,24588,2),(20406,24588,2),(22314,24588,2),(22597,24588,2),(22787,24588,2),(23048,24588,2),(24438,24588,2),(27576,24588,2),(31306,24588,2),(33157,24588,2),(34106,24588,2),(34723,24588,2),(34851,24588,2),(36643,24588,2),(36647,24588,2),(36696,24588,2),(37710,24588,2),(37931,24588,2),(38570,24588,2),(39037,24588,2),(39514,24588,2),(40160,24588,2),(41110,24588,2),(42222,24588,2),(43434,24588,2),(47964,24588,2),(48171,24588,2),(48289,24588,2),(49040,24588,2),(49517,24588,2),(49538,24588,2),(52520,24588,2),(56292,24588,2),(58233,24588,2),(70670,24588,2),(72387,24588,2),(75674,24588,2),(78149,24588,2),(110402,24588,2),(146216,24588,2),(152760,24588,2),(164372,24588,2),(173931,24588,2),(192210,24588,2),(203801,24588,2),(205588,24588,2),(208763,24588,2),(217708,24588,2),(222936,24588,2),(224569,24588,2),(225235,24588,2),(256917,24588,2),(257932,24588,2),(271110,24588,2),(296098,24588,2),(367961,24588,2),(376659,24588,2),(70,24589,2),(1116,24589,2),(3131,24589,2),(4107,24589,2),(10162,24589,2),(67913,24589,2),(78,24590,2),(393,24590,2),(682,24590,2),(714,24590,2),(844,24590,2),(944,24590,2),(956,24590,2),(1359,24590,2),(1402,24590,2),(1422,24590,2),(1535,24590,2),(2649,24590,2),(3766,24590,2),(4327,24590,2),(5175,24590,2),(6978,24590,2),(8872,24590,2),(9455,24590,2),(9470,24590,2),(10204,24590,2),(10431,24590,2),(10622,24590,2),(10771,24590,2),(11702,24590,2),(11770,24590,2),(12207,24590,2),(13688,24590,2),(13807,24590,2),(14411,24590,2),(16995,24590,2),(20083,24590,2),(29917,24590,2),(30596,24590,2),(33542,24590,2),(36669,24590,2),(39538,24590,2),(39851,24590,2),(44865,24590,2),(45958,24590,2),(55779,24590,2),(58233,24590,2),(244114,24590,2),(244339,24590,2),(257932,24590,2),(277519,24590,2),(290864,24590,2),(358451,24590,2),(365222,24590,2),(78,24591,2),(253,24591,2),(403,24591,2),(613,24591,2),(629,24591,2),(768,24591,2),(834,24591,2),(848,24591,2),(1574,24591,2),(2122,24591,2),(3033,24591,2),(4012,24591,2),(5072,24591,2),(5353,24591,2),(5971,24591,2),(8427,24591,2),(9027,24591,2),(9794,24591,2),(11370,24591,2),(11551,24591,2),(11827,24591,2),(12535,24591,2),(13508,24591,2),(13537,24591,2),(14284,24591,2),(14757,24591,2),(15544,24591,2),(16871,24591,2),(17622,24591,2),(18320,24591,2),(21494,24591,2),(24664,24591,2),(34043,24591,2),(38153,24591,2),(38543,24591,2),(41508,24591,2),(43434,24591,2),(48171,24591,2),(49517,24591,2),(57825,24591,2),(64559,24591,2),(115872,24591,2),(85,24592,2),(115,24592,2),(424,24592,2),(496,24592,2),(612,24592,2),(615,24592,2),(1593,24592,2),(2122,24592,2),(4012,24592,2),(4967,24592,2),(6538,24592,2),(8885,24592,2),(8944,24592,2),(9075,24592,2),(9837,24592,2),(10220,24592,2),(10661,24592,2),(12573,24592,2),(13007,24592,2),(13788,24592,2),(14811,24592,2),(14844,24592,2),(15976,24592,2),(20156,24592,2),(21014,24592,2),(24424,24592,2),(31005,24592,2),(35056,24592,2),(41508,24592,2),(76493,24592,2),(127918,24592,2),(235260,24592,2),(319069,24592,2),(85,24593,2),(87,24594,2),(114,24595,2),(137,24595,2),(161,24595,2),(163,24595,2),(203,24595,2),(238,24595,2),(240,24595,2),(242,24595,2),(279,24595,2),(289,24595,2),(311,24595,2),(319,24595,2),(321,24595,2),(327,24595,2),(380,24595,2),(391,24595,2),(395,24595,2),(409,24595,2),(421,24595,2),(429,24595,2),(464,24595,2),(534,24595,2),(562,24595,2),(597,24595,2),(612,24595,2),(691,24595,2),(698,24595,2),(699,24595,2),(769,24595,2),(794,24595,2),(841,24595,2),(920,24595,2),(924,24595,2),(956,24595,2),(1213,24595,2),(1495,24595,2),(1555,24595,2),(1571,24595,2),(1593,24595,2),(1656,24595,2),(1722,24595,2),(1813,24595,2),(1901,24595,2),(1985,24595,2),(2148,24595,2),(2501,24595,2),(2502,24595,2),(2619,24595,2),(2621,24595,2),(3080,24595,2),(3089,24595,2),(3116,24595,2),(4442,24595,2),(4959,24595,2),(5178,24595,2),(5971,24595,2),(7870,24595,2),(8416,24595,2),(8617,24595,2),(8698,24595,2),(8874,24595,2),(9032,24595,2),(9045,24595,2),(9292,24595,2),(9315,24595,2),(9335,24595,2),(9352,24595,2),(9366,24595,2),(9428,24595,2),(9531,24595,2),(9645,24595,2),(9654,24595,2),(9656,24595,2),(9833,24595,2),(9849,24595,2),(9877,24595,2),(9928,24595,2),(9946,24595,2),(9981,24595,2),(9991,24595,2),(10136,24595,2),(10197,24595,2),(10212,24595,2),(10226,24595,2),(10279,24595,2),(10307,24595,2),(10364,24595,2),(10368,24595,2),(10410,24595,2),(10428,24595,2),(10436,24595,2),(10527,24595,2),(10764,24595,2),(10877,24595,2),(10934,24595,2),(10985,24595,2),(11257,24595,2),(11411,24595,2),(11495,24595,2),(11624,24595,2),(11683,24595,2),(11870,24595,2),(11876,24595,2),(12090,24595,2),(12103,24595,2),(12220,24595,2),(12412,24595,2),(12779,24595,2),(13448,24595,2),(13501,24595,2),(14161,24595,2),(14283,24595,2),(14317,24595,2),(14411,24595,2),(14652,24595,2),(14844,24595,2),(15121,24595,2),(15237,24595,2),(15992,24595,2),(16281,24595,2),(16642,24595,2),(16869,24595,2),(17264,24595,2),(18041,24595,2),(18239,24595,2),(18736,24595,2),(18975,24595,2),(19204,24595,2),(19489,24595,2),(20065,24595,2),(20360,24595,2),(21612,24595,2),(22215,24595,2),(22314,24595,2),(22617,24595,2),(22821,24595,2),(23531,24595,2),(24438,24595,2),(25793,24595,2),(27023,24595,2),(27551,24595,2),(27579,24595,2),(27845,24595,2),(28260,24595,2),(29064,24595,2),(29461,24595,2),(36658,24595,2),(36669,24595,2),(37056,24595,2),(37498,24595,2),(37710,24595,2),(37903,24595,2),(38167,24595,2),(38970,24595,2),(39210,24595,2),(40494,24595,2),(40794,24595,2),(41110,24595,2),(41488,24595,2),(44214,24595,2),(46435,24595,2),(48171,24595,2),(49013,24595,2),(50456,24595,2),(51497,24595,2),(53457,24595,2),(57825,24595,2),(79587,24595,2),(81390,24595,2),(81836,24595,2),(87093,24595,2),(88751,24595,2),(96721,24595,2),(133698,24595,2),(179144,24595,2),(190955,24595,2),(201088,24595,2),(202604,24595,2),(203801,24595,2),(206647,24595,2),(227306,24595,2),(228203,24595,2),(241766,24595,2),(256924,24595,2),(266856,24595,2),(301351,24595,2),(315011,24595,2),(373314,24595,2),(163,24596,2),(2501,24596,2),(5900,24596,2),(5902,24596,2),(9075,24596,2),(9691,24596,2),(11453,24596,2),(16564,24596,2),(17139,24596,2),(19933,24596,2),(168,24597,2),(4327,24597,2),(18254,24597,2),(179,24598,2),(421,24598,2),(508,24598,2),(535,24598,2),(598,24598,2),(622,24598,2),(666,24598,2),(953,24598,2),(1621,24598,2),(1639,24598,2),(1724,24598,2),(2395,24598,2),(2447,24598,2),(2675,24598,2),(4379,24598,2),(7305,24598,2),(7347,24598,2),(7979,24598,2),(8095,24598,2),(8619,24598,2),(9339,24598,2),(9513,24598,2),(9662,24598,2),(9809,24598,2),(9893,24598,2),(9900,24598,2),(9916,24598,2),(10092,24598,2),(10096,24598,2),(10135,24598,2),(10159,24598,2),(10307,24598,2),(10426,24598,2),(10658,24598,2),(10878,24598,2),(10985,24598,2),(11023,24598,2),(11431,24598,2),(11453,24598,2),(11638,24598,2),(11770,24598,2),(12142,24598,2),(14161,24598,2),(14629,24598,2),(15122,24598,2),(19489,24598,2),(23082,24598,2),(29262,24598,2),(38167,24598,2),(38321,24598,2),(42109,24598,2),(46195,24598,2),(51497,24598,2),(57876,24598,2),(65055,24598,2),(66942,24598,2),(82507,24598,2),(112949,24598,2),(164558,24598,2),(168705,24598,2),(172385,24598,2),(192210,24598,2),(206563,24598,2),(227975,24598,2),(310569,24598,2),(340816,24598,2),(343795,24598,2),(385383,24598,2),(197,24599,2),(12211,24599,2),(14869,24599,2),(23759,24599,2),(47692,24599,2),(70981,24599,2),(231,24600,2),(1640,24600,2),(1726,24600,2),(2011,24600,2),(9008,24600,2),(11093,24600,2),(13007,24600,2),(13898,24600,2),(21334,24600,2),(60243,24600,2),(60421,24600,2),(68734,24600,2),(231,24601,2),(272,24601,2),(1726,24601,2),(1988,24601,2),(2252,24601,2),(6538,24601,2),(7979,24601,2),(10183,24601,2),(10557,24601,2),(11678,24601,2),(26022,24601,2),(37495,24601,2),(56666,24601,2),(107846,24601,2),(357441,24601,2),(243,24602,2),(309,24602,2),(714,24602,2),(1555,24602,2),(5915,24602,2),(8883,24602,2),(10534,24602,2),(11137,24602,2),(16016,24602,2),(38543,24602,2),(48035,24602,2),(49852,24602,2),(70670,24602,2),(103663,24602,2),(326,24603,2),(682,24603,2),(826,24603,2),(953,24603,2),(1439,24603,2),(1907,24603,2),(1997,24603,2),(6068,24603,2),(8982,24603,2),(9334,24603,2),(9531,24603,2),(9801,24603,2),(10527,24603,2),(10992,24603,2),(11411,24603,2),(11770,24603,2),(12289,24603,2),(13184,24603,2),(16353,24603,2),(17707,24603,2),(17708,24603,2),(20662,24603,2),(27329,24603,2),(38321,24603,2),(39691,24603,2),(44833,24603,2),(45243,24603,2),(46528,24603,2),(50359,24603,2),(77987,24603,2),(80278,24603,2),(80321,24603,2),(80585,24603,2),(91586,24603,2),(159824,24603,2),(192141,24603,2),(280092,24603,2),(308529,24603,2),(327833,24603,2),(365222,24603,2),(332,24604,2),(1091,24604,2),(1771,24604,2),(1911,24604,2),(5780,24604,2),(6007,24604,2),(9526,24604,2),(14451,24604,2),(15017,24604,2),(46146,24604,2),(70670,24604,2),(71805,24604,2),(319888,24604,2),(388,24605,2),(586,24605,2),(8681,24605,2),(102362,24605,2),(403,24606,2),(424,24606,2),(622,24606,2),(795,24606,2),(1691,24606,2),(2610,24606,2),(2779,24606,2),(4170,24606,2),(5902,24606,2),(8953,24606,2),(8968,24606,2),(9390,24606,2),(9515,24606,2),(9682,24606,2),(9809,24606,2),(9923,24606,2),(9950,24606,2),(10075,24606,2),(10878,24606,2),(10890,24606,2),(10934,24606,2),(10935,24606,2),(11022,24606,2),(11152,24606,2),(11431,24606,2),(11453,24606,2),(11638,24606,2),(11683,24606,2),(12555,24606,2),(13827,24606,2),(13849,24606,2),(18045,24606,2),(18616,24606,2),(19933,24606,2),(20542,24606,2),(22074,24606,2),(24663,24606,2),(25353,24606,2),(37903,24606,2),(39053,24606,2),(41508,24606,2),(42819,24606,2),(49787,24606,2),(53953,24606,2),(54702,24606,2),(55787,24606,2),(66125,24606,2),(67911,24606,2),(103663,24606,2),(109513,24606,2),(133698,24606,2),(152599,24606,2),(209274,24606,2),(421,24607,2),(2268,24607,2),(36669,24607,2),(88751,24607,2),(217708,24607,2),(421,24608,2),(455,24609,2),(11817,24609,2),(42057,24609,2),(57825,24609,2),(480,24610,2),(783,24610,2),(840,24610,2),(4251,24610,2),(7504,24610,2),(7509,24610,2),(7913,24610,2),(9027,24610,2),(10204,24610,2),(11282,24610,2),(12405,24610,2),(14161,24610,2),(14164,24610,2),(14165,24610,2),(14395,24610,2),(15927,24610,2),(16727,24610,2),(17334,24610,2),(20296,24610,2),(20360,24610,2),(20653,24610,2),(21461,24610,2),(26022,24610,2),(26379,24610,2),(26815,24610,2),(32740,24610,2),(37737,24610,2),(38428,24610,2),(46415,24610,2),(56666,24610,2),(57825,24610,2),(58051,24610,2),(63006,24610,2),(73981,24610,2),(74084,24610,2),(74534,24610,2),(87827,24610,2),(132316,24610,2),(147767,24610,2),(157293,24610,2),(185008,24610,2),(191714,24610,2),(198185,24610,2),(211086,24610,2),(228194,24610,2),(256040,24610,2),(281730,24610,2),(375290,24610,2),(496,24611,2),(19495,24611,2),(594,24612,2),(6114,24612,2),(136795,24612,2),(606,24613,2),(1523,24613,2),(1591,24613,2),(1817,24613,2),(1985,24613,2),(9822,24613,2),(10625,24613,2),(287625,24613,2),(657,24614,2),(1572,24614,2),(2009,24614,2),(4836,24614,2),(6114,24614,2),(16290,24614,2),(19495,24614,2),(36586,24614,2),(38448,24614,2),(137347,24614,2),(271110,24614,2),(297596,24614,2),(344466,24614,2),(670,24615,2),(1255,24615,2),(1640,24615,2),(1948,24615,2),(2034,24615,2),(3989,24615,2),(4550,24615,2),(6950,24615,2),(7873,24615,2),(9384,24615,2),(9457,24615,2),(10022,24615,2),(10048,24615,2),(10201,24615,2),(10253,24615,2),(10623,24615,2),(11535,24615,2),(11658,24615,2),(15067,24615,2),(17182,24615,2),(19644,24615,2),(27576,24615,2),(33196,24615,2),(36669,24615,2),(70829,24615,2),(110415,24615,2),(117263,24615,2),(228967,24615,2),(240832,24615,2),(293670,24615,2),(407887,24615,2),(708,24616,2),(746,24616,2),(857,24616,2),(954,24616,2),(956,24616,2),(2749,24616,2),(3179,24616,2),(4032,24616,2),(4379,24616,2),(6963,24616,2),(7451,24616,2),(7501,24616,2),(7874,24616,2),(8007,24616,2),(8688,24616,2),(9013,24616,2),(9042,24616,2),(9624,24616,2),(10136,24616,2),(10934,24616,2),(11247,24616,2),(11702,24616,2),(12479,24616,2),(12555,24616,2),(14043,24616,2),(15028,24616,2),(15173,24616,2),(16353,24616,2),(16727,24616,2),(16871,24616,2),(17134,24616,2),(18480,24616,2),(21755,24616,2),(25353,24616,2),(28260,24616,2),(36586,24616,2),(41479,24616,2),(50357,24616,2),(708,24617,2),(12271,24617,2),(713,24618,2),(1088,24618,2),(782,24619,2),(36648,24619,2),(855,24620,2),(3472,24620,2),(109424,24620,2),(868,24621,2),(1123,24621,2),(1372,24621,2),(17654,24621,2),(22600,24621,2),(59961,24621,2),(192136,24621,2),(868,24622,2),(1874,24622,2),(17654,24622,2),(192136,24622,2),(868,24623,2),(1123,24623,2),(17654,24623,2),(29697,24623,2),(920,24624,2),(7863,24624,2),(11072,24624,2),(11302,24624,2),(11561,24624,2),(12573,24624,2),(41508,24624,2),(53457,24624,2),(1555,24625,2),(1620,24626,2),(6623,24626,2),(8978,24626,2),(29920,24626,2),(79777,24626,2),(116613,24626,2),(1735,24627,2),(1830,24628,2),(2252,24628,2),(4614,24628,2),(9654,24628,2),(22949,24628,2),(24438,24628,2),(38357,24628,2),(44040,24628,2),(314385,24628,2),(1907,24629,2),(6623,24629,2),(10024,24629,2),(79777,24629,2),(1913,24630,2),(1999,24631,2),(5353,24631,2),(8007,24631,2),(9029,24631,2),(2841,24632,2),(4476,24633,2),(5137,24634,2),(9746,24634,2),(11817,24634,2),(14161,24634,2),(6623,24635,2),(79777,24635,2),(7979,24636,2),(14757,24636,2),(9311,24637,2),(9675,24638,2),(11648,24638,2),(16351,24638,2),(23963,24638,2),(9839,24639,2),(9839,24640,2),(10201,24641,2),(21208,24641,2),(11818,24642,2),(12100,24643,2),(12246,24644,2),(30979,24644,2),(16651,24645,2),(16727,24646,2),(17654,24647,2),(17654,24648,2),(37232,24649,2),(43266,24650,2),(48171,24650,2),(45958,24651,2),(50601,24652,2),(82507,24653,2),(87827,24654,2),(256040,24654,2),(260778,24654,2),(280871,24654,2),(94329,24655,2),(123678,24655,2),(256040,24656,2),(375290,24656,2),(256040,24657,2),(295914,24658,2),(324322,24659,2),(385636,24660,2),(19995,24574,1),(285,24574,1),(206647,24574,1),(49026,24574,1),(49529,24574,1),(559,24574,1),(38757,24574,1),(99861,24574,1),(767,24574,1),(209112,24574,1),(1452,24574,1),(10764,24574,1),(58,24574,1),(57201,24574,1),(49521,24574,1),(2454,24574,1),(24428,24574,1),(1865,24574,1),(41154,24574,1),(122917,24574,1),(1930,24574,1),(20662,24574,1),(57158,24574,1),(2268,24574,1),(254,24574,1),(597,24574,1),(271110,24574,1),(44833,24574,1),(135397,24574,1),(37724,24574,1),(558,24574,1),(68721,24574,1),(12155,24574,1),(36668,24574,1),(62211,24574,1),(8373,24574,1),(91314,24574,1),(68728,24574,1),(102382,24574,1),(20526,24574,1),(49013,24574,1),(44912,24574,1),(10193,24574,1),(534,24574,1),(168259,24574,1),(72190,24574,1),(127585,24574,1),(54138,24574,1),(81005,24574,1),(64682,24574,1),(9543,24574,1),(68726,24574,1),(38356,24574,1),(217,24574,1),(105864,24574,1),(62177,24574,1),(188927,24574,1),(10681,24574,1),(5174,24574,1),(14161,24574,1),(17979,24574,1),(76757,24574,1),(258489,24574,1),(411,24574,1),(246655,24574,1),(155,24574,1),(14160,24574,1),(15512,24574,1),(1726,24574,1),(44826,24574,1),(8487,24574,1),(1735,24574,1),(297761,24574,1),(2698,24574,1),(137113,24574,1),(9804,24574,1),(14869,24574,1),(150540,24574,1),(278927,24574,1),(10138,24574,1),(58595,24574,1),(102651,24574,1),(119450,24574,1),(79698,24574,1),(64686,24574,1),(100402,24574,1),(10192,24574,1),(158852,24574,1),(177572,24574,1),(82690,24574,1),(5255,24574,1),(47933,24574,1),(10191,24574,1),(296,24574,1),(118340,24574,1),(157336,24574,1),(27205,24574,1),(49051,24574,1),(9799,24574,1),(4922,24574,1),(49538,24574,1),(131634,24574,1),(27022,24574,1),(503,24574,1),(241259,24574,1),(810,24574,1),(68735,24574,1),(87101,24574,1),(10140,24574,1),(676,24574,1),(1858,24574,1),(1966,24574,1),(675,24574,1),(674,24574,1),(8960,24574,1),(6479,24574,1),(118,24574,1),(2062,24574,1),(272,24574,1),(10527,24574,1),(18360,24574,1),(2080,24574,1),(605,24574,1),(109445,24574,1),(604,24574,1),(76338,24574,1),(76341,24574,1),(13448,24574,1),(10195,24574,1),(13053,24574,1),(19585,24574,1),(57165,24574,1),(62213,24574,1),(177677,24574,1),(7978,24574,1),(5559,24574,1),(49444,24574,1),(10196,24574,1),(956,24574,1),(117251,24574,1),(50321,24574,1),(11619,24574,1),(266647,24574,1),(82703,24574,1),(652,24574,1),(80321,24574,1),(36669,24574,1),(43074,24574,1),(95,24574,1),(608,24574,1),(2310,24574,1),(140300,24574,1),(56292,24574,1),(81188,24574,1),(7552,24574,1),(616,24574,1),(147441,24574,1),(13475,24574,1),(557,24574,1),(82702,24574,1),(205584,24574,1),(10048,24574,1),(13183,24574,1),(944,24574,1),(1927,24574,1),(72559,24574,1),(7364,24574,1),(2114,24574,1),(1771,24574,1),(36643,24574,1),(8619,24574,1),(50620,24574,1),(65759,24574,1),(1724,24574,1),(267935,24574,1),(281957,24574,1),(77950,24574,1),(44896,24574,1),(270946,24574,1),(2503,24574,1),(9502,24574,1),(102899,24574,1),(101299,24574,1),(228161,24574,1),(74,24574,1),(8961,24574,1),(417859,24574,1),(27576,24574,1),(86834,24574,1),(17578,24574,1),(673,24574,1),(6972,24574,1),(82700,24574,1),(10567,24574,1),(181533,24574,1),(38055,24574,1),(671,24574,1),(49524,24574,1),(22,24574,1),(131631,24574,1),(591,24574,1),(172385,24574,1),(36658,24574,1),(51497,24574,1),(58574,24574,1),(18823,24574,1),(861,24574,1),(1911,24574,1),(49040,24574,1),(415,24574,1),(8871,24574,1),(435,24574,1),(955,24574,1),(2133,24574,1),(1979,24574,1),(87827,24574,1),(1250,24574,1),(324668,24574,1),(9471,24574,1),(70981,24574,1),(10996,24574,1),(68724,24574,1),(2789,24574,1),(97020,24574,1),(7459,24574,1),(42888,24574,1),(37834,24574,1),(75612,24574,1),(1895,24574,1),(1894,24574,1),(585,24574,1),(76170,24574,1),(1893,24574,1),(49519,24574,1),(12100,24574,1),(290595,24574,1),(98566,24574,1),(49047,24574,1),(9619,24574,1),(308531,24574,1),(166424,24574,1),(1593,24574,1),(254128,24574,1),(714,24574,1),(2024,24574,1),(163,24574,1),(787,24574,1),(262500,24574,1),(2567,24574,1),(38745,24574,1),(40805,24574,1),(53182,24574,1),(41513,24574,1),(13700,24574,1),(262504,24574,1),(39254,24574,1),(77931,24574,1),(1639,24574,1),(80274,24574,1),(1571,24574,1),(120,24574,1),(10204,24574,1),(8489,24574,1),(10588,24574,1),(2048,24574,1),(1495,24574,1),(10137,24574,1),(10198,24574,1),(286217,24574,1),(1635,24574,1),(24113,24574,1),(9679,24574,1),(98,24574,1),(180,24574,1),(672,24574,1),(36557,24574,1),(869,24574,1),(280,24574,1),(11322,24574,1),(4982,24574,1),(36955,24574,1),(18487,24574,1),(39451,24574,1),(27581,24574,1),(9268,24574,1),(68718,24574,1),(10545,24574,1),(11688,24574,1),(76163,24574,1),(2059,24574,1),(2486,24574,1),(16523,24574,1),(116711,24574,1),(37710,24574,1),(9946,24574,1),(1372,24574,1),(106646,24574,1),(414,24574,1),(563,24574,1),(83542,24574,1),(41216,24574,1),(314,24574,1),(184315,24574,1),(9016,24574,1),(18162,24574,1),(138103,24574,1),(257088,24574,1),(10214,24574,1),(205775,24574,1),(11692,24574,1),(22972,24574,1),(227973,24574,1),(29193,24574,1),(1734,24574,1),(3131,24574,1),(9408,24574,1),(9890,24574,1),(855,24574,1),(77953,24574,1),(18,24574,1),(37786,24574,1),(10501,24574,1),(57800,24574,1),(150689,24574,1),(7980,24574,1),(12,24574,1),(122,24574,1),(121,24574,1),(68737,24574,1),(1995,24574,1),(157353,24574,1),(331,24574,1),(61791,24574,1),(8204,24574,1),(47964,24574,1),(10733,24574,1),(9806,24574,1),(1408,24574,1),(32657,24574,1),(607,24574,1),(863,24574,1),(44048,24574,1),(5175,24574,1),(2655,24574,1),(22794,24574,1),(8355,24574,1),(116745,24574,1),(4327,24574,1),(1422,24574,1),(10674,24574,1),(7446,24574,1),(65754,24574,1),(1572,24574,1),(10528,24574,1),(271969,24574,1),(10865,24574,1),(258509,24574,1),(2253,24574,1),(10661,24574,1),(257344,24574,1),(644,24574,1),(10756,24574,1),(686,24574,1),(9383,24574,1),(179,24574,1),(76285,24574,1),(1996,24574,1),(291805,24574,1),(10003,24574,1),(1535,24574,1),(2067,24574,1),(46195,24574,1),(2277,24574,1),(10357,24574,1),(4477,24574,1),(8665,24574,1),(9387,24574,1),(921,24574,1),(49852,24574,1),(4464,24574,1),(664,24574,1),(8358,24574,1),(9836,24574,1),(2502,24574,1),(9772,24574,1),(161,24574,1),(52451,24574,1),(76492,24574,1),(4523,24574,1),(59961,24574,1),(10481,24574,1),(59108,24574,1),(1581,24574,1),(9798,24574,1),(22897,24574,1),(298,24574,1),(7484,24574,1),(157350,24574,1),(853,24574,1),(10159,24574,1),(9593,24574,1),(1904,24574,1),(9615,24574,1),(51052,24574,1),(297,24574,1),(9884,24574,1),(16858,24574,1),(62764,24574,1),(22538,24574,1),(9341,24574,1),(12107,24574,1),(9637,24574,1),(49049,24574,1),(9339,24574,1),(16281,24574,1),(39691,24574,1),(8247,24574,1),(11253,24574,1),(1949,24574,1),(8452,24574,1),(310,24574,1),(27578,24574,1),(954,24574,1),(70160,24574,1),(45243,24574,1),(364,24574,1),(7518,24574,1),(11544,24574,1),(9986,24574,1),(8656,24574,1),(146216,24574,1),(9291,24574,1),(55301,24574,1),(109418,24574,1),(11665,24574,1),(6964,24574,1),(11324,24574,1),(12193,24574,1),(9928,24574,1),(754,24574,1),(10202,24574,1),(4147,24574,1),(50546,24574,1),(1701,24574,1),(13027,24574,1),(2289,24574,1),(20504,24574,1),(9574,24574,1),(11618,24574,1),(2300,24574,1),(12096,24574,1),(10200,24574,1),(8834,24574,1),(228150,24574,1),(6068,24574,1),(41515,24574,1),(9023,24574,1),(38317,24574,1),(2157,24574,1),(14462,24574,1),(161795,24574,1),(159824,24574,1),(49948,24574,1),(2135,24574,1),(9822,24574,1),(9705,24574,1),(1656,24574,1),(12159,24574,1),(9678,24574,1),(4442,24574,1),(75,24574,1),(9433,24574,1),(19959,24574,1),(11973,24574,1),(11228,24574,1),(77951,24574,1),(5491,24574,1),(10715,24574,1),(10197,24574,1),(9562,24574,1),(9922,24574,1),(9447,24574,1),(274854,24574,1),(8870,24574,1),(9992,24574,1),(36970,24574,1),(10077,24574,1),(76649,24574,1),(453,24574,1),(8587,24574,1),(72545,24574,1),(109451,24574,1),(9533,24574,1),(2023,24574,1),(71880,24574,1),(584,24574,1),(309809,24574,1),(4858,24574,1),(17711,24574,1),(328111,24574,1),(8698,24574,1),(93456,24574,1),(602,24574,1),(330,24574,1),(953,24574,1),(9693,24574,1),(36657,24574,1),(8909,24574,1),(9802,24574,1),(950,24574,1),(1824,24574,1),(2976,24574,1),(11026,24574,1),(332,24574,1),(75656,24574,1),(38365,24574,1),(594,24574,1),(15189,24574,1),(11678,24574,1),(6538,24574,1),(10555,24574,1),(1125,24574,1),(4551,24574,1),(612,24574,1),(9567,24574,1),(37821,24574,1),(203801,24574,1),(2539,24574,1),(9297,24574,1),(3172,24574,1),(6520,24574,1),(1439,24574,1),(37958,24574,1),(2026,24574,1),(7450,24574,1),(11375,24574,1),(9425,24574,1),(25769,24574,1),(23685,24574,1),(11866,24574,1),(9741,24574,1),(211672,24574,1),(23629,24574,1),(8688,24574,1),(10153,24574,1),(153518,24574,1),(8676,24574,1),(20829,24574,1),(4349,24574,1),(9718,24574,1),(10808,24574,1),(197,24574,1),(25,24574,1),(35,24574,1),(11086,24574,1),(10477,24574,1),(1997,24574,1),(6947,24574,1),(3050,24574,1),(2675,24574,1),(809,24574,1),(920,24574,1),(4806,24574,1),(7451,24574,1),(228165,24574,1),(3595,24574,1),(16869,24574,1),(879,24574,1),(1573,24574,1),(9257,24574,1),(1903,24574,1),(9697,24574,1),(395,24574,1),(23398,24574,1),(10590,24574,1),(117263,24574,1),(200,24574,1),(44943,24574,1),(587,24574,1),(10395,24574,1),(57212,24574,1),(152760,24574,1),(2756,24574,1),(33909,24574,1),(49017,24574,1),(9882,24574,1),(2270,24574,1),(978,24574,1),(44564,24574,1),(3132,24574,1),(8814,24574,1),(8427,24574,1),(52520,24574,1),(80585,24574,1),(10592,24574,1),(49021,24574,1),(11535,24574,1),(10550,24574,1),(11258,24574,1),(12610,24574,1),(59981,24574,1),(201088,24574,1),(5137,24574,1),(3093,24574,1),(107846,24574,1),(188207,24574,1),(4614,24574,1),(24021,24574,1),(11371,24574,1),(20352,24574,1),(11517,24574,1),(214756,24574,1),(26428,24574,1),(9824,24574,1),(48988,24574,1),(9008,24574,1),(300673,24574,1),(12113,24574,1),(38778,24574,1),(72331,24574,1),(1844,24574,1),(846,24574,1),(9703,24574,1),(857,24574,1),(136797,24574,1),(3981,24574,1),(425,24574,1),(6171,24574,1),(72976,24574,1),(603,24574,1),(568,24574,1),(9021,24574,1),(82695,24574,1),(9489,24574,1),(12133,24574,1),(9342,24574,1),(41733,24574,1),(227306,24574,1),(5551,24574,1),(9350,24574,1),(9208,24574,1),(4244,24574,1),(1852,24574,1),(11820,24574,1),(76493,24574,1),(345,24574,1),(196867,24574,1),(256591,24574,1),(59962,24574,1),(36648,24574,1),(1880,24574,1),(9440,24574,1),(71679,24574,1),(10483,24574,1),(11412,24574,1),(11983,24574,1),(6795,24574,1),(550,24574,1),(11170,24574,1),(9292,24574,1),(10783,24574,1),(100241,24574,1),(257,24574,1),(9947,24574,1),(189,24574,1),(12618,24574,1),(253412,24574,1),(1427,24574,1),(818,24574,1),(16577,24574,1),(329,24574,1),(12160,24574,1),(9331,24574,1),(9072,24574,1),(3536,24574,1),(9087,24574,1),(12177,24574,1),(12138,24574,1),(273248,24574,1),(9955,24574,1),(50359,24574,1),(1271,24574,1),(693,24574,1),(14306,24574,1),(497,24574,1),(11199,24574,1),(9982,24574,1),(210577,24574,1),(2501,24574,1),(710,24574,1),(2275,24574,1),(37165,24574,1),(9837,24574,1),(10708,24574,1),(136400,24574,1),(10992,24574,1),(9654,24574,1),(2642,24574,1),(8916,24574,1),(19899,24574,1),(2119,24574,1),(9641,24574,1),(294254,24574,1),(38167,24574,1),(5994,24574,1),(39514,24574,1),(9563,24574,1),(547,24574,1),(1538,24574,1),(9334,24574,1),(11128,24574,1),(75780,24574,1),(8914,24574,1),(13576,24574,1),(39538,24574,1),(10628,24574,1),(14836,24574,1),(8645,24574,1),(9509,24574,1),(10067,24574,1),(9384,24574,1),(9279,24574,1),(1487,24574,1),(9422,24574,1),(77174,24574,1),(4824,24574,1),(9620,24574,1),(9302,24574,1),(10199,24574,1),(10771,24574,1),(3512,24574,1),(137094,24574,1),(274479,24574,1),(267860,24574,1),(8078,24574,1),(7485,24574,1),(170687,24574,1),(6435,24574,1),(137106,24574,1),(10040,24574,1),(6278,24574,1),(82682,24574,1),(17610,24574,1),(22954,24574,1),(16995,24574,1),(16558,24574,1),(9849,24574,1),(5820,24574,1),(16866,24574,1),(201,24574,1),(11775,24574,1),(87825,24574,1),(12201,24574,1),(11015,24574,1),(9932,24574,1),(13389,24574,1),(8838,24574,1),(17332,24574,1),(4958,24574,1),(786,24574,1),(9513,24574,1),(11679,24574,1),(38321,24574,1),(14411,24574,1),(8413,24574,1),(10052,24574,1),(9676,24574,1),(9664,24574,1),(2100,24574,1),(10384,24574,1),(137321,24574,1),(123553,24574,1),(11260,24574,1),(9009,24574,1),(11374,24574,1),(2309,24574,1),(8285,24574,1),(210860,24574,1),(2312,24574,1),(9839,24574,1),(13922,24574,1),(293660,24574,1),(9713,24574,1),(190859,24574,1),(257445,24574,1),(9007,24574,1),(889,24574,1),(1370,24574,1),(4942,24574,1),(347969,24574,1),(24438,24574,1),(116741,24574,1),(35791,24574,1),(72431,24574,1),(1813,24574,1),(87428,24574,1),(8840,24574,1),(10589,24574,1),(71676,24574,1),(1722,24574,1),(10022,24574,1),(11358,24574,1),(13,24574,1),(6477,24574,1),(1597,24574,1),(10530,24574,1),(1924,24574,1),(9327,24574,1),(8488,24574,1),(10603,24574,1),(8273,24574,1),(109424,24574,1),(35056,24574,1),(8839,24574,1),(156022,24574,1),(7303,24574,1),(8963,24574,1),(1402,24574,1),(9315,24574,1),(8984,24574,1),(795,24574,1),(24,24574,1),(11353,24574,1),(393,24574,1),(9618,24574,1),(9374,24574,1),(8584,24574,1),(2320,24574,1),(58224,24574,1),(1729,24574,1),(175574,24574,1),(8077,24574,1),(8818,24574,1),(8195,24574,1),(10586,24574,1),(116149,24574,1),(80035,24574,1),(10632,24574,1),(12117,24574,1),(1792,24574,1),(13260,24574,1),(72197,24574,1),(3580,24574,1),(12123,24574,1),(9566,24574,1),(9833,24574,1),(4517,24574,1),(8202,24574,1),(16072,24574,1),(34314,24574,1),(19724,24574,1),(145220,24574,1),(14623,24574,1),(42297,24574,1),(802,24574,1),(10375,24574,1),(36586,24574,1),(11321,24574,1),(70074,24574,1),(242,24574,1),(9621,24574,1),(1819,24574,1),(8536,24574,1),(8046,24574,1),(1717,24574,1),(479,24574,1),(9444,24574,1),(824,24574,1),(11456,24574,1),(261023,24574,1),(3683,24574,1),(22803,24574,1),(285923,24574,1),(39437,24574,1),(1950,24574,1),(640,24574,1),(97630,24574,1),(9767,24574,1),(11631,24574,1),(32856,24574,1),(6519,24574,1),(8741,24574,1),(49520,24574,1),(1850,24574,1),(524,24574,1),(26389,24574,1),(11817,24574,1),(2123,24574,1),(9907,24574,1),(9969,24574,1),(18239,24574,1),(808,24574,1),(38050,24574,1),(8367,24574,1),(9390,24574,1),(72105,24574,1),(2898,24574,1),(10312,24574,1),(109443,24574,1),(2022,24574,1),(37686,24574,1),(462,24574,1),(9919,24574,1),(187017,24574,1),(628,24574,1),(10201,24574,1),(302699,24574,1),(9441,24574,1),(274167,24574,1),(224141,24574,1),(388,24574,1),(2112,24574,1),(10329,24574,1),(74465,24574,1),(13811,24574,1),(6877,24574,1),(10320,24574,1),(50646,24574,1),(8920,24574,1),(13673,24574,1),(60308,24574,1),(6950,24574,1),(225574,24574,1),(13836,24574,1),(752,24574,1),(6038,24574,1),(9975,24574,1),(11451,24574,1),(12103,24574,1),(60304,24574,1),(2251,24574,1),(46529,24574,1),(231,24574,1),(300671,24574,1),(228326,24574,1),(9754,24574,1),(66,24574,1),(4421,24574,1),(2649,24574,1),(588,24574,1),(10393,24574,1),(71552,24574,1),(9631,24574,1),(216282,24574,1),(306,24574,1),(928,24574,1),(205587,24574,1),(6623,24574,1),(1577,24574,1),(9801,24574,1),(2116,24574,1),(9624,24574,1),(14199,24574,1),(1907,24574,1),(4599,24574,1),(22832,24574,1),(10390,24574,1),(9879,24574,1),(38579,24574,1),(44603,24574,1),(11892,24574,1),(9691,24574,1),(1248,24574,1),(12220,24574,1),(72710,24574,1),(10782,24574,1),(9573,24574,1),(4959,24574,1),(10061,24574,1),(10386,24574,1),(421,24574,1),(316152,24574,1),(11615,24574,1),(13498,24574,1),(241554,24574,1),(2252,24574,1),(11968,24574,1),(38319,24574,1),(69668,24574,1),(9770,24574,1),(11212,24574,1),(10533,24574,1),(38363,24574,1),(9923,24574,1),(11863,24574,1),(18501,24574,1),(109491,24574,1),(9275,24574,1),(329833,24574,1),(12634,24574,1),(10416,24574,1),(47327,24574,1),(15268,24574,1),(10796,24574,1),(9548,24574,1),(18947,24574,1),(1900,24574,1),(89,24574,1),(96724,24574,1),(198184,24574,1),(9481,24574,1),(4547,24574,1),(6415,24574,1),(181283,24574,1),(9896,24574,1),(167,24574,1),(11232,24574,1),(1636,24574,1),(2148,24574,1),(5176,24574,1),(260346,24574,1),(1389,24574,1),(9894,24574,1),(8592,24574,1),(913,24574,1),(11091,24574,1),(1368,24574,1),(5393,24574,1),(9095,24574,1),(8874,24574,1),(11467,24574,1),(320,24574,1),(199,24574,1),(20533,24574,1),(10684,24574,1),(1624,24574,1),(325789,24574,1),(113464,24574,1),(888,24574,1),(82675,24574,1),(4256,24574,1),(1493,24574,1),(88751,24574,1),(11130,24574,1),(9944,24574,1),(10731,24574,1),(7350,24574,1),(9869,24574,1),(4379,24574,1),(146233,24574,1),(2034,24574,1),(926,24574,1),(4248,24574,1),(64328,24574,1),(36647,24574,1),(7214,24574,1),(1537,24574,1),(9360,24574,1),(6282,24574,1),(508,24574,1),(9487,24574,1),(768,24574,1),(2636,24574,1),(10478,24574,1),(27983,24574,1),(9981,24574,1),(7453,24574,1),(15045,24574,1),(7737,24574,1),(232672,24574,1),(17379,24574,1),(8987,24574,1),(11359,24574,1),(82525,24574,1),(9759,24574,1),(9486,24574,1),(9906,24574,1),(841,24574,1),(4688,24574,1),(4148,24574,1),(2207,24574,1),(9381,24574,1),(9625,24574,1),(9304,24574,1),(20856,24574,1),(5955,24574,1),(9899,24574,1),(9826,24574,1),(21355,24574,1),(10858,24574,1),(11439,24574,1),(9457,24574,1),(12412,24574,1),(13184,24574,1),(2185,24574,1),(6639,24574,1),(38153,24574,1),(58233,24574,1),(116977,24574,1),(68734,24574,1),(5503,24574,1),(27573,24574,1),(819,24574,1),(1369,24574,1),(9623,24574,1),(10895,24574,1),(10935,24574,1),(834,24574,1),(228066,24574,1),(711,24574,1),(10468,24574,1),(10027,24574,1),(11812,24574,1),(37233,24574,1),(37950,24574,1),(27582,24574,1),(64688,24574,1),(509,24574,1),(7443,24574,1),(5966,24574,1),(11066,24574,1),(136795,24574,1),(8095,24574,1),(87826,24574,1),(11560,24574,1),(25189,24574,1),(2637,24574,1),(18480,24574,1),(709,24574,1),(49730,24574,1),(2749,24574,1),(9607,24574,1),(1830,24574,1),(54054,24574,1),(228967,24574,1),(46528,24574,1),(65,24574,1),(9476,24574,1),(10610,24574,1),(745,24574,1),(49527,24574,1),(73937,24574,1),(1885,24574,1),(168672,24574,1),(18240,24574,1),(10398,24574,1),(165,24574,1),(240832,24574,1),(216015,24574,1),(12279,24574,1),(1645,24574,1),(11007,24574,1),(193756,24574,1),(11287,24574,1),(259693,24574,1),(37799,24574,1),(10184,24574,1),(4257,24574,1),(4234,24574,1),(196,24574,1),(257091,24574,1),(6114,24574,1),(24803,24574,1),(109410,24574,1),(1213,24574,1),(100042,24574,1),(9036,24574,1),(257211,24574,1),(323675,24574,1),(9361,24574,1),(1677,24574,1),(187,24574,1),(7461,24574,1),(16538,24574,1),(9889,24574,1),(820,24574,1),(11565,24574,1),(6073,24574,1),(16996,24574,1),(193610,24574,1),(19912,24574,1),(296098,24574,1),(8007,24574,1),(32823,24574,1),(4380,24574,1),(11551,24574,1),(10336,24574,1),(11362,24574,1),(50348,24574,1),(48138,24574,1),(1124,24574,1),(227159,24574,1),(68179,24574,1),(1579,24574,1),(708,24574,1),(34851,24574,1),(9930,24574,1),(1586,24574,1),(2044,24574,1),(9913,24574,1),(71864,24574,1),(10761,24574,1),(209451,24574,1),(11975,24574,1),(4970,24574,1),(11831,24574,1),(9096,24574,1),(440,24574,1),(11011,24574,1),(10641,24574,1),(11172,24574,1),(39513,24574,1),(82687,24574,1),(41446,24574,1),(8224,24574,1),(10537,24574,1),(225886,24574,1),(10385,24574,1),(55779,24574,1),(10154,24574,1),(10647,24574,1),(11431,24574,1),(8457,24574,1),(188161,24574,1),(8850,24574,1),(64685,24574,1),(38357,24574,1),(10060,24574,1),(11398,24574,1),(1833,24574,1),(10391,24574,1),(8970,24574,1),(9306,24574,1),(11370,24574,1),(12184,24574,1),(1921,24574,1),(1683,24574,1),(203,24574,1),(11858,24574,1),(62835,24574,1),(18937,24574,1),(13536,24574,1),(15556,24574,1),(10718,24574,1),(11062,24574,1),(10802,24574,1),(1887,24574,1),(6071,24574,1),(10461,24574,1),(80278,24574,1),(12704,24574,1),(10315,24574,1),(16643,24574,1),(2687,24574,1),(11025,24574,1),(8849,24574,1),(78698,24574,1),(30943,24574,1),(9544,24574,1),(24418,24574,1),(7288,24574,1),(14655,24574,1),(24575,24574,1),(10366,24574,1),(19898,24574,1),(4965,24574,1),(15074,24574,1),(56715,24574,1),(1272,24574,1),(72358,24574,1),(20542,24574,1),(266396,24574,1),(9978,24574,1),(8271,24574,1),(10428,24574,1),(5353,24574,1),(11934,24574,1),(19495,24574,1),(26486,24574,1),(9495,24574,1),(24420,24574,1),(1257,24574,1),(62214,24574,1),(16320,24574,1),(8842,24574,1),(9531,24574,1),(64807,24574,1),(11529,24574,1),(20943,24574,1),(9099,24574,1),(9488,24574,1),(193,24574,1),(55787,24574,1),(10400,24574,1),(1957,24574,1),(10833,24574,1),(256961,24574,1),(5852,24574,1),(12312,24574,1),(622,24574,1),(11306,24574,1),(12508,24574,1),(25793,24574,1),(10534,24574,1),(1091,24574,1),(87421,24574,1),(10871,24574,1),(13503,24574,1),(13600,24574,1),(68722,24574,1),(14324,24574,1),(14325,24574,1),(299687,24574,1),(312221,24574,1),(23168,24574,1),(76494,24574,1),(4944,24574,1),(10488,24574,1),(96721,24574,1),(334,24574,1),(23742,24574,1),(259694,24574,1),(62837,24574,1),(8966,24574,1),(8470,24574,1),(11001,24574,1),(138832,24574,1),(2163,24574,1),(36670,24574,1),(23048,24574,1),(227735,24574,1),(2155,24574,1),(8409,24574,1),(222936,24574,1),(31908,24574,1),(10219,24574,1),(48171,24574,1),(782,24574,1),(11802,24574,1),(9776,24574,1),(18785,24574,1),(817,24574,1),(268,24574,1),(45054,24574,1),(943,24574,1),(22881,24574,1),(10054,24574,1),(51540,24574,1),(44264,24574,1),(350,24574,1),(152,24574,1),(109431,24574,1),(1598,24574,1),(8065,24574,1),(271718,24574,1),(11638,24574,1),(409,24574,1),(2118,24574,1),(11459,24574,1),(10806,24574,1),(9348,24574,1),(377,24574,1),(8843,24574,1),(9313,24574,1),(39486,24574,1),(1273,24574,1),(13920,24574,1),(50544,24574,1),(325133,24574,1),(140823,24574,1),(1883,24574,1),(89492,24574,1),(22949,24574,1),(12437,24574,1),(2959,24574,1),(9957,24574,1),(11648,24574,1),(9366,24574,1),(1576,24574,1),(609,24574,1),(5516,24574,1),(13051,24574,1),(49530,24574,1),(34806,24574,1),(49022,24574,1),(11469,24574,1),(23479,24574,1),(11667,24574,1),(423,24574,1),(2447,24574,1),(10066,24574,1),(2288,24574,1),(88794,24574,1),(13515,24574,1),(11979,24574,1),(169,24574,1),(8090,24574,1),(11622,24574,1),(3604,24574,1),(9541,24574,1),(94348,24574,1),(8197,24574,1),(336004,24574,1),(35019,24574,1),(10410,24574,1),(8836,24574,1),(14442,24574,1),(321741,24574,1),(59965,24574,1),(14175,24574,1),(11004,24574,1),(11918,24574,1),(98357,24574,1),(10012,24574,1),(49526,24574,1),(268920,24574,1),(9093,24574,1),(119283,24574,1),(11823,24574,1),(35169,24574,1),(118957,24574,1),(849,24574,1),(4515,24574,1),(18886,24574,1),(6575,24574,1),(6440,24574,1),(13496,24574,1),(18320,24574,1),(22787,24574,1),(8967,24574,1),(37498,24574,1),(144336,24574,1),(9616,24574,1),(13056,24574,1),(14113,24574,1),(285783,24574,1),(49478,24574,1),(9726,24574,1),(20763,24574,1),(9702,24574,1),(9311,24574,1),(9280,24574,1),(26843,24574,1),(11876,24574,1),(22267,24574,1),(310706,24574,1),(198663,24574,1),(239573,24574,1),(10436,24574,1),(1381,24574,1),(2162,24574,1),(127493,24574,1),(228205,24574,1),(2900,24574,1),(21311,24574,1),(77875,24574,1),(192136,24574,1),(18254,24574,1),(881,24574,1),(10877,24574,1),(9600,24574,1),(202575,24574,1),(71469,24574,1),(85446,24574,1),(326,24574,1),(10685,24574,1),(7220,24574,1),(9763,24574,1),(72387,24574,1),(12596,24574,1),(1892,24574,1),(13460,24574,1),(8055,24574,1),(50647,24574,1),(10719,24574,1),(9294,24574,1),(11888,24574,1),(9647,24574,1),(9353,24574,1),(55721,24574,1),(109414,24574,1),(10307,24574,1),(11978,24574,1),(22907,24574,1),(87567,24574,1),(38322,24574,1),(45612,24574,1),(7305,24574,1),(3594,24574,1),(157841,24574,1),(11519,24574,1),(12920,24574,1),(59,24574,1),(9335,24574,1),(12106,24574,1),(11141,24574,1),(8649,24574,1),(31867,24574,1),(3587,24574,1),(124459,24574,1),(24662,24574,1),(32274,24574,1),(182,24574,1),(5494,24574,1),(28,24574,1),(38073,24574,1),(2054,24574,1),(302156,24574,1),(606,24574,1),(87502,24574,1),(698,24574,1),(120467,24574,1),(11313,24574,1),(6488,24574,1),(10559,24574,1),(296099,24574,1),(8012,24574,1),(1574,24574,1),(9032,24574,1),(2770,24574,1),(862,24574,1),(1637,24574,1),(72570,24574,1),(27569,24574,1),(10637,24574,1),(1669,24574,1),(132363,24574,1),(9472,24574,1),(2907,24574,1),(9273,24574,1),(9880,24574,1),(2925,24574,1),(807,24574,1),(17654,24574,1),(11836,24574,1),(322,24574,1),(70,24574,1),(9535,24574,1),(11036,24574,1),(6557,24574,1),(18126,24574,1),(10333,24574,1),(4476,24574,1),(22947,24574,1),(2755,24574,1),(82654,24574,1),(59967,24574,1),(16300,24574,1),(9598,24574,1),(82696,24574,1),(9870,24574,1),(8292,24574,1),(8780,24574,1),(9715,24574,1),(10521,24574,1),(10762,24574,1),(10096,24574,1),(59436,24574,1),(227783,24574,1),(4133,24574,1),(10207,24574,1),(172,24574,1),(21972,24574,1),(36593,24574,1),(707,24574,1),(533,24574,1),(6023,24574,1),(6439,24574,1),(4347,24574,1),(37056,24574,1),(4105,24574,1),(76489,24574,1),(3933,24574,1),(9918,24574,1),(273481,24574,1),(307081,24574,1),(16871,24574,1),(293863,24574,1),(13156,24574,1),(41233,24574,1),(9266,24574,1),(1262,24574,1),(4513,24574,1),(22970,24574,1),(7278,24574,1),(9013,24574,1),(865,24574,1),(10776,24574,1),(50456,24574,1),(9823,24574,1),(59861,24574,1),(133805,24574,1),(12763,24574,1),(9766,24574,1),(14034,24574,1),(12244,24574,1),(109421,24574,1),(11137,24574,1),(51162,24574,1),(10152,24574,1),(9452,24574,1),(239566,24574,1),(53113,24574,1),(9271,24574,1),(4474,24574,1),(184346,24574,1),(48340,24574,1),(14846,24574,1),(72207,24574,1),(16232,24574,1),(43539,24574,1),(9920,24574,1),(8978,24574,1),(11702,24574,1),(18550,24574,1),(8869,24574,1),(43347,24574,1),(3489,24574,1),(9701,24574,1),(2122,24574,1),(37707,24574,1),(10658,24574,1),(13150,24574,1),(9042,24574,1),(17813,24574,1),(11208,24574,1),(58151,24574,1),(11400,24574,1),(10350,24574,1),(28902,24574,1),(14164,24574,1),(76640,24574,1),(11058,24574,1),(14844,24574,1),(57089,24574,1),(1947,24574,1),(8054,24574,1),(46829,24574,1),(146238,24574,1),(9989,24574,1),(9665,24574,1),(311,24574,1),(102362,24574,1),(11162,24574,1),(6016,24574,1),(17186,24574,1),(13967,24574,1),(9053,24574,1),(4512,24574,1),(265208,24574,1),(45610,24574,1),(1874,24574,1),(271331,24574,1),(215211,24574,1),(10955,24574,1),(223702,24574,1),(254470,24574,1),(69,24574,1),(4967,24574,1),(9449,24574,1),(11499,24574,1),(4912,24574,1),(12771,24574,1),(323676,24574,1),(12506,24574,1),(24071,24574,1),(11249,24574,1),(9667,24574,1),(812,24574,1),(277216,24574,1),(87,24574,1),(14444,24574,1),(2043,24574,1),(315664,24574,1),(1428,24574,1),(562,24574,1),(15373,24574,1),(318846,24574,1),(26320,24574,1),(14292,24574,1),(924,24574,1),(2018,24574,1),(9428,24574,1),(2832,24574,1),(137093,24574,1),(699,24574,1),(9778,24574,1),(8831,24574,1),(9398,24574,1),(112949,24574,1),(10439,24574,1),(3638,24574,1),(23483,24574,1),(62206,24574,1),(10577,24574,1),(218778,24574,1),(4348,24574,1),(78,24574,1),(11780,24574,1),(192102,24574,1),(2001,24574,1),(10383,24574,1),(10025,24574,1),(15198,24574,1),(23172,24574,1),(17834,24574,1),(10016,24574,1),(10317,24574,1),(58431,24574,1),(9746,24574,1),(13092,24574,1),(59859,24574,1),(254473,24574,1),(700,24574,1),(4964,24574,1),(10024,24574,1),(13490,24574,1),(15927,24574,1),(1259,24574,1),(5125,24574,1),(174,24574,1),(9583,24574,1),(9437,24574,1),(525,24574,1),(10188,24574,1),(63574,24574,1),(245,24574,1),(9825,24574,1),(186,24574,1),(9549,24574,1),(61891,24574,1),(34584,24574,1),(2666,24574,1),(12783,24574,1),(13155,24574,1),(42807,24574,1),(28355,24574,1),(8080,24574,1),(5126,24574,1),(56288,24574,1),(303858,24574,1),(1613,24574,1),(31582,24574,1),(16617,24574,1),(8944,24574,1),(41488,24574,1),(37028,24574,1),(14560,24574,1),(10330,24574,1),(6957,24574,1),(1934,24574,1),(169917,24574,1),(951,24574,1),(10189,24574,1),(9454,24574,1),(2055,24574,1),(1551,24574,1),(5902,24574,1),(11460,24574,1),(9358,24574,1),(134,24574,1),(22894,24574,1),(134374,24574,1),(1901,24574,1),(15028,24574,1),(11509,24574,1),(7445,24574,1),(17047,24574,1),(62838,24574,1),(2057,24574,1),(70436,24574,1),(16784,24574,1),(8011,24574,1),(31640,24574,1),(9092,24574,1),(2779,24574,1),(316002,24574,1),(36355,24574,1),(238615,24574,1),(1985,24574,1),(615,24574,1),(788,24574,1),(380,24574,1),(13223,24574,1),(10523,24574,1),(8681,24574,1),(239571,24574,1),(619,24574,1),(424,24574,1),(50014,24574,1),(162903,24574,1),(11024,24574,1),(6466,24574,1),(254024,24574,1),(12589,24574,1),(7191,24574,1),(1497,24574,1),(117,24574,1),(6977,24574,1),(168530,24574,1),(634,24574,1),(392,24574,1),(10327,24574,1),(88042,24574,1),(41630,24574,1),(11969,24574,1),(2085,24574,1),(794,24574,1),(9286,24574,1),(77877,24574,1),(1265,24574,1),(866,24574,1),(175555,24574,1),(75174,24574,1),(11096,24574,1),(8699,24574,1),(769,24574,1),(10923,24574,1),(11283,24574,1),(111,24574,1),(11676,24574,1),(746,24574,1),(77866,24574,1),(9416,24574,1),(7345,24574,1),(14317,24574,1),(20694,24574,1),(12277,24574,1),(9779,24574,1),(2140,24574,1),(12620,24574,1),(14177,24574,1),(198185,24574,1),(227156,24574,1),(10735,24574,1),(11351,24574,1),(10030,24574,1),(10623,24574,1),(590,24574,1),(9655,24574,1),(1268,24574,1),(11237,24574,1),(190955,24574,1),(5123,24574,1),(4518,24574,1),(11932,24574,1),(11165,24574,1),(6116,24574,1),(57431,24574,1),(21724,24574,1),(278,24574,1),(9290,24574,1),(11543,24574,1),(284536,24574,1),(152737,24574,1),(13374,24574,1),(8976,24574,1),(319888,24574,1),(9469,24574,1),(1909,24574,1),(22971,24574,1),(34813,24574,1),(46261,24574,1),(10431,24574,1),(8051,24574,1),(9352,24574,1),(10167,24574,1),(18147,24574,1),(17170,24574,1),(18975,24574,1),(15487,24574,1),(22825,24574,1),(11152,24574,1),(1831,24574,1),(43931,24574,1),(10591,24574,1),(10861,24574,1),(12770,24574,1),(276907,24574,1),(10074,24574,1),(65055,24574,1),(10397,24574,1),(200505,24574,1),(11954,24574,1),(60309,24574,1),(9787,24574,1),(293646,24574,1),(6978,24574,1),(59440,24574,1),(1770,24574,1),(10655,24574,1),(8988,24574,1),(15992,24574,1),(17707,24574,1),(77883,24574,1),(40001,24574,1),(64639,24574,1),(9903,24574,1),(21338,24574,1),(20766,24574,1),(24264,24574,1),(19803,24574,1),(20309,24574,1),(9912,24574,1),(9067,24574,1),(27360,24574,1),(8338,24574,1),(168705,24574,1),(72113,24574,1),(9729,24574,1),(94352,24574,1),(22256,24574,1),(12404,24574,1),(152742,24574,1),(11699,24574,1),(49953,24574,1),(39845,24574,1),(109091,24574,1),(38543,24574,1),(33157,24574,1),(242166,24574,1),(859,24574,1),(83770,24574,1),(168,24574,1),(1246,24574,1),(4233,24574,1),(174751,24574,1),(184098,24574,1),(2069,24574,1),(1788,24574,1),(11635,24574,1),(177,24574,1),(3600,24574,1),(2621,24574,1),(10358,24574,1),(10480,24574,1),(10313,24574,1),(18828,24574,1),(3558,24574,1),(13476,24574,1),(10208,24574,1),(24961,24574,1),(20697,24574,1),(20761,24574,1),(70868,24574,1),(43593,24574,1),(6478,24574,1),(40688,24574,1),(26672,24574,1),(45881,24574,1),(41283,24574,1),(19908,24574,1),(10663,24574,1),(1891,24574,1),(9737,24574,1),(37137,24574,1),(9532,24574,1),(10316,24574,1),(2787,24574,1),(12658,24574,1),(152601,24574,1),(10866,24574,1),(227707,24574,1),(21349,24574,1),(19150,24574,1),(70435,24574,1),(580,24574,1),(9819,24574,1),(13579,24574,1),(20024,24574,1),(2453,24574,1),(6973,24574,1),(354110,24574,1),(22215,24574,1),(11632,24574,1),(3021,24574,1),(957,24574,1),(256917,24574,1),(251,24574,1),(544,24574,1),(11395,24574,1),(14635,24574,1),(13680,24574,1),(688,24574,1),(11090,24574,1),(783,24574,1),(228194,24574,1),(1642,24574,1),(10950,24574,1),(235260,24574,1),(277,24574,1),(8999,24574,1),(11323,24574,1),(10445,24574,1),(11453,24574,1),(146239,24574,1),(205588,24574,1),(10878,24574,1),(82650,24574,1),(10279,24574,1),(2294,24574,1),(2176,24574,1),(270487,24574,1),(19366,24574,1),(204082,24574,1),(24100,24574,1),(1599,24574,1),(5550,24574,1),(30379,24574,1),(42586,24574,1),(17709,24574,1),(287948,24574,1),(7548,24574,1),(109513,24574,1),(12085,24574,1),(204922,24574,1),(38985,24574,1),(44113,24574,1),(164457,24574,1),(4566,24574,1),(17795,24574,1),(1073,24574,1),(81836,24574,1),(10724,24574,1),(9473,24574,1),(2196,24574,1),(1499,24574,1),(20857,24574,1),(82693,24574,1),(1646,24574,1),(44944,24574,1),(4108,24574,1),(8456,24574,1),(7341,24574,1),(19255,24574,1),(10187,24574,1),(31005,24574,1),(49517,24574,1),(44857,24574,1),(50780,24574,1),(16363,24574,1),(1946,24574,1),(85,24574,1),(772,24574,1),(840,24574,1),(9682,24574,1),(96,24574,1),(10678,24574,1),(274,24574,1),(8872,24574,1),(16290,24574,1),(579,24574,1),(14405,24574,1),(138843,24574,1),(11637,24574,1),(226486,24574,1),(1584,24574,1),(9312,24574,1),(12153,24574,1),(65057,24574,1),(8326,24574,1),(35690,24574,1),(76203,24574,1),(13497,24574,1),(35688,24574,1),(162,24574,1),(296096,24574,1),(103370,24574,1),(1051,24574,1),(376659,24574,1),(10073,24574,1),(16690,24574,1),(273895,24574,1),(14873,24574,1),(8968,24574,1),(9963,24574,1),(15655,24574,1),(21208,24574,1),(272878,24574,1),(9760,24574,1),(314365,24574,1),(13279,24574,1),(1975,24574,1),(33644,24574,1),(1649,24574,1),(9895,24574,1),(9570,24574,1),(27579,24574,1),(16052,24574,1),(40264,24574,1),(1164,24574,1),(239678,24574,1),(14359,24574,1),(3989,24574,1),(76617,24574,1),(1710,24574,1),(4258,24574,1),(20391,24574,1),(10139,24574,1),(335778,24574,1),(9645,24574,1),(55465,24574,1),(617,24574,1),(19904,24574,1),(48289,24574,1),(243,24574,1),(6933,24574,1),(17182,24574,1),(8848,24574,1),(38,24574,1),(38303,24574,1),(1266,24574,1),(107985,24574,1),(14043,24574,1),(19901,24574,1),(34016,24574,1),(59860,24574,1),(10069,24574,1),(9588,24574,1),(12819,24574,1),(9954,24574,1),(10115,24574,1),(25132,24574,1),(577,24574,1),(328387,24574,1),(12690,24574,1),(9945,24574,1),(539,24574,1),(13596,24574,1),(226857,24574,1),(13159,24574,1),(47941,24574,1),(526,24574,1),(22796,24574,1),(2355,24574,1),(5915,24574,1),(9842,24574,1),(61012,24574,1),(755,24574,1),(13682,24574,1),(9089,24574,1),(18357,24574,1),(7979,24574,1),(470,24574,1),(15644,24574,1),(9582,24574,1),(10642,24574,1),(22074,24574,1),(2428,24574,1),(290751,24574,1),(13805,24574,1),(4597,24574,1),(9414,24574,1),(63492,24574,1),(81796,24574,1),(10710,24574,1),(15092,24574,1),(11382,24574,1),(15005,24574,1),(8198,24574,1),(6963,24574,1),(15070,24574,1),(12797,24574,1),(17134,24574,1),(41402,24574,1),(18885,24574,1),(4953,24574,1),(10773,24574,1),(146198,24574,1),(2639,24574,1),(10563,24574,1),(295964,24574,1),(5971,24574,1),(9716,24574,1),(11835,24574,1),(26171,24574,1),(31117,24574,1),(9074,24574,1),(14396,24574,1),(15673,24574,1),(42618,24574,1),(171274,24574,1),(24432,24574,1),(109417,24574,1),(13948,24574,1),(106747,24574,1),(10929,24574,1),(14220,24574,1),(46435,24574,1),(256962,24574,1),(48231,24574,1),(3509,24574,1),(82684,24574,1),(12142,24574,1),(23367,24574,1),(10740,24574,1),(241239,24574,1),(14582,24574,1),(14914,24574,1),(3902,24574,1),(77948,24574,1),(21755,24574,1),(4960,24574,1),(40932,24574,1),(16608,24574,1),(334531,24574,1),(32316,24574,1),(7299,24574,1),(19457,24574,1),(112937,24574,1),(314385,24574,1),(29078,24574,1),(46503,24574,1),(10448,24574,1),(43935,24574,1),(11458,24574,1),(44638,24574,1),(241257,24574,1),(14538,24574,1),(13250,24574,1),(133931,24574,1),(239897,24574,1),(184341,24574,1),(334074,24574,1),(199373,24574,1),(14202,24574,1),(581,24574,1),(52449,24574,1),(12150,24574,1),(11247,24574,1),(4232,24574,1),(9378,24574,1),(694,24574,1),(105,24574,1),(11377,24574,1),(26367,24574,1),(385383,24574,1),(41210,24574,1),(12090,24574,1),(62630,24574,1),(16110,24574,1),(29427,24574,1),(2669,24574,1),(203833,24574,1),(13523,24574,1),(25195,24574,1),(17277,24574,1),(50725,24574,1),(82631,24574,1),(73191,24574,1),(22479,24574,1),(340611,24574,1),(10065,24574,1),(2757,24574,1),(11683,24574,1),(1878,24574,1),(23082,24574,1),(195589,24574,1),(854,24574,1),(2280,24574,1),(496,24574,1),(8835,24574,1),(157,24574,1),(8643,24574,1),(10402,24574,1),(218043,24574,1),(9043,24574,1),(21301,24574,1),(10147,24574,1),(816,24574,1),(302688,24574,1),(60307,24574,1),(106,24574,1),(279,24574,1),(8617,24574,1),(10625,24574,1),(10934,24574,1),(5279,24574,1),(10013,24574,1),(194662,24574,1),(160588,24574,1),(9829,24574,1),(10028,24574,1),(10535,24574,1),(790,24574,1),(43959,24574,1),(10364,24574,1),(16991,24574,1),(9610,24574,1),(1578,24574,1),(25643,24574,1),(11904,24574,1),(28665,24574,1),(44115,24574,1),(10569,24574,1),(10560,24574,1),(333348,24574,1),(20483,24574,1),(11457,24574,1),(321697,24574,1),(19840,24574,1),(22327,24574,1),(38665,24574,1),(2575,24574,1),(11644,24574,1),(146227,24574,1),(68924,24574,1),(253235,24574,1),(22102,24574,1),(18701,24574,1),(10068,24574,1),(848,24574,1),(36811,24574,1),(522,24574,1),(130150,24574,1),(13809,24574,1),(27380,24574,1),(10549,24574,1),(33870,24574,1),(245703,24574,1),(10739,24574,1),(127560,24574,1),(396152,24574,1),(10017,24574,1),(11468,24574,1),(193613,24574,1),(17436,24574,1),(43434,24574,1),(31166,24574,1),(69848,24574,1),(8408,24574,1),(332411,24574,1),(9626,24574,1),(75638,24574,1),(8363,24574,1),(15670,24574,1),(290555,24574,1),(8328,24574,1),(10982,24574,1),(205,24574,1),(1620,24574,1),(175541,24574,1),(241254,24574,1),(31932,24574,1),(1933,24574,1),(679,24574,1),(11113,24574,1),(3597,24574,1),(193893,24574,1),(9675,24574,1),(9988,24574,1),(948,24574,1),(21765,24574,1),(146304,24574,1),(7516,24574,1),(41439,24574,1),(2752,24574,1),(9429,24574,1),(38117,24574,1),(9792,24574,1),(13778,24574,1),(228203,24574,1),(41382,24574,1),(13960,24574,1),(114150,24574,1),(26602,24574,1),(10223,24574,1),(16028,24574,1),(15639,24574,1),(16112,24574,1),(26390,24574,1),(27759,24574,1),(109428,24574,1),(23049,24574,1),(9310,24574,1),(11411,24574,1),(16988,24574,1),(7304,24574,1),(24747,24574,1),(58048,24574,1),(1491,24574,1),(2989,24574,1),(10629,24574,1),(255343,24574,1),(4723,24574,1),(25763,24574,1),(79694,24574,1),(4032,24574,1),(18615,24574,1),(10673,24574,1),(4584,24574,1),(2977,24574,1),(10760,24574,1),(11093,24574,1),(207,24574,1),(8467,24574,1),(639,24574,1),(24226,24574,1),(9285,24574,1),(14709,24574,1),(74643,24574,1),(13788,24574,1),(83666,24574,1),(10781,24574,1),(318850,24574,1),(13908,24574,1),(39180,24574,1),(16161,24574,1),(49950,24574,1),(10956,24574,1),(9594,24574,1),(4638,24574,1),(13972,24574,1),(5038,24574,1),(10571,24574,1),(10994,24574,1),(19994,24574,1),(25166,24574,1),(30890,24574,1),(23169,24574,1),(17403,24574,1),(12120,24574,1),(9800,24574,1),(1090,24574,1),(18475,24574,1),(40160,24574,1),(18074,24574,1),(9689,24574,1),(9781,24574,1),(8009,24574,1),(3877,24574,1),(8854,24574,1),(152599,24574,1),(18840,24574,1),(68727,24574,1),(12657,24574,1),(12410,24574,1),(34647,24574,1),(73935,24574,1),(28178,24574,1),(185567,24574,1),(264656,24574,1),(35696,24574,1),(16351,24574,1),(38717,24574,1),(18777,24574,1),(9035,24574,1),(90,24574,1),(771,24574,1),(9576,24574,1),(744,24574,1),(14,24574,1),(45269,24574,1),(9493,24574,1),(22556,24574,1),(873,24574,1),(205596,24574,1),(10765,24574,1),(16769,24574,1),(33217,24574,1),(132232,24574,1),(11153,24574,1),(208134,24574,1),(1165,24574,1),(4011,24574,1),(17202,24574,1),(9587,24574,1),(65086,24574,1),(10053,24574,1),(11870,24574,1),(11778,24574,1),(586,24574,1),(18736,24574,1),(134411,24574,1),(287903,24574,1),(9276,24574,1),(15765,24574,1),(2142,24574,1),(11397,24574,1),(77016,24574,1),(11478,24574,1),(266856,24574,1),(13411,24574,1),(10564,24574,1),(947,24574,1),(24150,24574,1),(228970,24574,1),(18405,24574,1),(6961,24574,1),(11442,24574,1),(2493,24574,1),(14047,24574,1),(64690,24574,1),(11132,24574,1),(17127,24574,1),(1562,24574,1),(232679,24574,1),(17880,24574,1),(14736,24574,1),(9434,24574,1),(23706,24574,1),(11531,24574,1),(9100,24574,1),(116,24574,1),(38843,24574,1),(1245,24574,1),(4995,24574,1),(10413,24574,1),(14012,24574,1),(9793,24574,1),(12212,24574,1),(13768,24574,1),(8975,24574,1),(342521,24574,1),(45272,24574,1),(9424,24574,1),(97367,24574,1),(254904,24574,1),(18681,24574,1),(12162,24574,1),(11495,24574,1),(64689,24574,1),(157849,24574,1),(13166,24574,1),(15511,24574,1),(37003,24574,1),(12211,24574,1),(13816,24574,1),(51828,24574,1),(22798,24574,1),(7501,24574,1),(10743,24574,1),(37718,24574,1),(15237,24574,1),(9686,24574,1),(17644,24574,1),(97430,24574,1),(12257,24574,1),(13539,24574,1),(68,24574,1),(14024,24574,1),(115,24574,1),(7874,24574,1),(4911,24574,1),(1988,24574,1),(16222,24574,1),(9557,24574,1),(9026,24574,1),(57943,24574,1),(18276,24574,1),(8321,24574,1),(72359,24574,1),(10186,24574,1),(25704,24574,1),(133694,24574,1),(19265,24574,1),(36047,24574,1),(8053,24574,1),(2290,24574,1),(5236,24574,1),(6552,24574,1),(1018,24574,1),(10075,24574,1),(38031,24574,1),(42188,24574,1),(112430,24574,1),(6687,24574,1),(13853,24574,1),(31306,24574,1),(8461,24574,1),(331592,24574,1),(47692,24574,1),(400,24574,1),(9104,24574,1),(23759,24574,1),(24206,24574,1),(10185,24574,1),(75033,24574,1),(74536,24574,1),(31668,24574,1),(13501,24574,1),(15208,24574,1),(172391,24574,1),(262543,24574,1),(9288,24574,1),(40880,24574,1),(137,24574,1),(264999,24574,1),(454,24574,1),(288980,24574,1),(33,24574,1),(12405,24574,1),(10998,24574,1),(114,24574,1),(9396,24574,1),(319910,24574,1),(2604,24574,1),(864,24574,1),(14435,24574,1),(1931,24574,1),(691,24574,1),(9877,24574,1),(62008,24574,1),(12227,24574,1),(13824,24574,1),(71688,24574,1),(15173,24574,1),(8291,24574,1),(13950,24574,1),(12158,24574,1),(11586,24574,1),(10008,24574,1),(2830,24574,1),(12403,24574,1),(34563,24574,1),(14557,24574,1),(10368,24574,1),(10280,24574,1),(12637,24574,1),(34152,24574,1),(14434,24574,1),(11470,24574,1),(10741,24574,1),(24940,24574,1),(82679,24574,1),(1440,24574,1),(18041,24574,1),(28029,24574,1),(1123,24574,1),(14033,24574,1),(87729,24574,1),(16899,24574,1),(41317,24574,1),(245700,24574,1),(16005,24574,1),(44754,24574,1),(23988,24574,1),(43949,24574,1),(142,24574,1),(9603,24574,1),(10712,24574,1),(243938,24574,1),(10876,24574,1),(86838,24574,1),(25208,24574,1),(97370,24574,1),(801,24574,1),(70829,24574,1),(54518,24574,1),(44214,24574,1),(240,24574,1),(9816,24574,1),(10131,24574,1),(339984,24574,1),(8859,24574,1),(11967,24574,1),(239563,24574,1),(222899,24574,1),(4951,24574,1),(10985,24574,1),(9644,24574,1),(332567,24574,1),(1954,24574,1),(15489,24574,1),(15250,24574,1),(22345,24574,1),(9448,24574,1),(38223,24574,1),(11186,24574,1),(136835,24574,1),(5876,24574,1),(264660,24574,1),(492,24574,1),(25462,24574,1),(238603,24574,1),(10691,24574,1),(1251,24574,1),(5172,24574,1),(58680,24574,1),(264644,24574,1),(14577,24574,1),(11592,24574,1),(16406,24574,1),(19052,24574,1),(3682,24574,1),(9683,24574,1),(2084,24574,1),(107811,24574,1),(13074,24574,1),(144340,24574,1),(48217,24574,1),(28211,24574,1),(47502,24574,1),(9950,24574,1),(84892,24574,1),(24227,24574,1),(9672,24574,1),(44853,24574,1),(157544,24574,1),(59678,24574,1),(79777,24574,1),(158011,24574,1),(17043,24574,1),(8952,24574,1),(13435,24574,1),(17187,24574,1),(319,24574,1),(59457,24574,1),(9504,24574,1),(37414,24574,1),(6217,24574,1),(26688,24574,1),(43867,24574,1),(6615,24574,1),(14574,24574,1),(16,24574,1),(39780,24574,1),(21612,24574,1),(36691,24574,1),(23631,24574,1),(45324,24574,1),(12144,24574,1),(56601,24574,1),(9552,24574,1),(578,24574,1),(2105,24574,1),(10136,24574,1),(67660,24574,1),(10611,24574,1),(154,24574,1),(3049,24574,1),(860,24574,1),(9281,24574,1),(75674,24574,1),(9762,24574,1),(3179,24574,1),(184,24574,1),(13335,24574,1),(76726,24574,1),(10269,24574,1),(36819,24574,1),(17130,24574,1),(57214,24574,1),(11202,24574,1),(9357,24574,1),(13812,24574,1),(9030,24574,1),(19084,24574,1),(8386,24574,1),(10437,24574,1),(1360,24574,1),(101267,24574,1),(222935,24574,1),(10220,24574,1),(284296,24574,1),(31915,24574,1),(11601,24574,1),(205220,24574,1),(11354,24574,1),(16241,24574,1),(14191,24574,1),(286565,24574,1),(26710,24574,1),(129670,24574,1),(9059,24574,1),(34549,24574,1),(57157,24574,1),(1948,24574,1),(28353,24574,1),(46889,24574,1),(38093,24574,1),(14976,24574,1),(11027,24574,1),(3635,24574,1),(6020,24574,1),(122906,24574,1),(60599,24574,1),(227719,24574,1),(14299,24574,1),(19419,24574,1),(12088,24574,1),(14799,24574,1),(9466,24574,1),(7510,24574,1),(31246,24574,1),(61752,24574,1),(10944,24574,1),(10362,24574,1),(14778,24574,1),(45226,24574,1),(10212,24574,1),(8669,24574,1),(16857,24574,1),(86825,24574,1),(8060,24574,1),(15907,24574,1),(38448,24574,1),(9260,24574,1),(61337,24574,1),(13079,24574,1),(89325,24574,1),(4170,24574,1),(12479,24574,1),(10133,24574,1),(50601,24574,1),(26466,24574,1),(345003,24574,1),(236751,24574,1),(107,24574,1),(8913,24574,1),(18530,24574,1),(927,24574,1),(11,24574,1),(291870,24574,1),(907,24574,1),(11887,24574,1),(45317,24574,1),(12094,24574,1),(10377,24574,1),(249164,24574,1),(256092,24574,1),(9942,24574,1),(10748,24574,1),(1817,24574,1),(10229,24574,1),(687,24574,1),(796,24574,1),(22804,24574,1),(10156,24574,1),(12837,24574,1),(17708,24574,1),(13937,24574,1),(28932,24574,1),(31909,24574,1),(167073,24574,1),(3175,24574,1),(14369,24574,1),(16888,24574,1),(121826,24574,1),(10646,24574,1),(12149,24574,1),(304357,24574,1),(11184,24574,1),(766,24574,1),(20009,24574,1),(1587,24574,1),(30973,24574,1),(11109,24574,1),(9027,24574,1),(63020,24574,1),(86829,24574,1),(11065,24574,1),(13888,24574,1),(42345,24574,1),(13994,24574,1),(1590,24574,1),(62728,24574,1),(11917,24574,1),(80271,24574,1),(4657,24574,1),(24137,24574,1),(190847,24574,1),(11056,24574,1),(62,24574,1),(601,24574,1),(13067,24574,1),(25379,24574,1),(88641,24574,1),(14877,24574,1),(96399,24574,1),(489,24574,1),(373314,24574,1),(214,24574,1),(10890,24574,1),(1588,24574,1),(316727,24574,1),(10314,24574,1),(663,24574,1),(11804,24574,1),(16781,24574,1),(11873,24574,1),(9289,24574,1),(10414,24574,1),(1970,24574,1),(9614,24574,1),(8922,24574,1),(1648,24574,1),(17917,24574,1),(74534,24574,1),(19405,24574,1),(9355,24574,1),(10999,24574,1),(321258,24574,1),(44040,24574,1),(10426,24574,1),(280092,24574,1),(13938,24574,1),(10163,24574,1),(12182,24574,1),(1832,24574,1),(9034,24574,1),(15301,24574,1),(10135,24574,1),(26352,24574,1),(20616,24574,1),(9794,24574,1),(15037,24574,1),(227,24574,1),(294272,24574,1),(11336,24574,1),(283445,24574,1),(88036,24574,1),(10984,24574,1),(22824,24574,1),(9526,24574,1),(39349,24574,1),(15983,24574,1),(14544,24574,1),(11545,24574,1),(42684,24574,1),(268238,24574,1),(8359,24574,1),(15648,24574,1),(41823,24574,1),(11891,24574,1),(9362,24574,1),(9902,24574,1),(14729,24574,1),(9455,24574,1),(103731,24574,1),(10090,24574,1),(164558,24574,1),(19905,24574,1),(17710,24574,1),(75900,24574,1),(9515,24574,1),(27322,24574,1),(328425,24574,1),(14120,24574,1),(10050,24574,1),(1542,24574,1),(10490,24574,1),(87093,24574,1),(10029,24574,1),(9893,24574,1),(11507,24574,1),(37931,24574,1),(3472,24574,1),(87818,24574,1),(13160,24574,1),(88005,24574,1),(52067,24574,1),(73,24574,1),(134597,24574,1),(24034,24574,1),(14283,24574,1),(404,24574,1),(13201,24574,1),(209403,24574,1),(7942,24574,1),(73247,24574,1),(253331,24574,1),(34043,24574,1),(9952,24574,1),(256924,24574,1),(82532,24574,1),(134371,24574,1),(2088,24574,1),(10388,24574,1),(1640,24574,1),(25520,24574,1),(27342,24574,1),(13689,24574,1),(67911,24574,1),(24664,24574,1),(329440,24574,1),(47890,24574,1),(252512,24574,1),(55720,24574,1),(9613,24574,1),(29076,24574,1),(29339,24574,1),(68812,24574,1),(14195,24574,1),(73567,24574,1),(41479,24574,1),(15394,24574,1),(10071,24574,1),(1989,24574,1),(91076,24574,1),(12779,24574,1),(13191,24574,1),(12703,24574,1),(222649,24574,1),(115872,24574,1),(101173,24574,1),(25350,24574,1),(10034,24574,1),(20178,24574,1),(5072,24574,1),(18191,24574,1),(31007,24574,1),(11546,24574,1),(41894,24574,1),(268171,24574,1),(78149,24574,1),(24663,24574,1),(39037,24574,1),(22805,24574,1),(39055,24574,1),(245846,24574,1),(25186,24574,1),(15017,24574,1),(12245,24574,1),(49787,24574,1),(16358,24574,1),(7006,24574,1),(66767,24574,1),(17622,24574,1),(283671,24574,1),(18516,24574,1),(42057,24574,1),(17577,24574,1),(14608,24574,1),(34417,24574,1),(78383,24574,1),(43090,24574,1),(16614,24574,1),(9700,24574,1),(10471,24574,1),(250066,24574,1),(667,24574,1),(208869,24574,1),(10306,24574,1),(106845,24574,1),(11576,24574,1),(11827,24574,1),(22820,24574,1),(31174,24574,1),(244316,24574,1),(37737,24574,1),(66125,24574,1),(348,24574,1),(30497,24574,1),(27586,24574,1),(14811,24574,1),(660,24574,1),(68684,24574,1),(9400,24574,1),(16162,24574,1),(10585,24574,1),(2359,24574,1),(238636,24574,1),(10472,24574,1),(11282,24574,1),(6521,24574,1),(14181,24574,1),(1621,24574,1),(9656,24574,1),(16428,24574,1),(10705,24574,1),(8272,24574,1),(24621,24574,1),(1619,24574,1),(9685,24574,1),(14425,24574,1),(14624,24574,1),(10179,24574,1),(15568,24574,1),(14057,24574,1),(12621,24574,1),(1808,24574,1),(67675,24574,1),(29514,24574,1),(12454,24574,1),(39806,24574,1),(15699,24574,1),(17926,24574,1),(291081,24574,1),(25968,24574,1),(9671,24574,1),(52010,24574,1),(11588,24574,1),(43418,24574,1),(13483,24574,1),(333355,24574,1),(327833,24574,1),(1547,24574,1),(25196,24574,1),(16323,24574,1),(175528,24574,1),(8069,24574,1),(71805,24574,1),(9451,24574,1),(16727,24574,1),(272693,24574,1),(10696,24574,1),(150202,24574,1),(29963,24574,1),(26022,24574,1),(152747,24574,1),(62676,24574,1),(20360,24574,1),(1116,24574,1),(11620,24574,1),(14353,24574,1),(680,24574,1),(11176,24574,1),(242582,24574,1),(11217,24574,1),(15121,24574,1),(2619,24574,1),(773,24574,1),(235,24574,1),(170,24574,1),(14114,24574,1),(10734,24574,1),(37964,24574,1),(28121,24574,1),(40807,24574,1),(10885,24574,1),(225565,24574,1),(16471,24574,1),(385736,24574,1),(11971,24574,1),(668,24574,1),(11596,24574,1),(14429,24574,1),(13751,24574,1),(9490,24574,1),(14536,24574,1),(1359,24574,1),(9962,24574,1),(22821,24574,1),(42819,24574,1),(209263,24574,1),(37735,24574,1),(59930,24574,1),(10873,24574,1),(51588,24574,1),(23570,24574,1),(19489,24574,1),(14629,24574,1),(8293,24574,1),(291270,24574,1),(44009,24574,1),(13154,24574,1),(26618,24574,1),(43923,24574,1),(46138,24574,1),(45791,24574,1),(26306,24574,1),(110683,24574,1),(26963,24574,1),(198277,24574,1),(7870,24574,1),(13072,24574,1),(153397,24574,1),(30141,24574,1),(17044,24574,1),(10288,24574,1),(12183,24574,1),(44147,24574,1),(12192,24574,1),(36597,24574,1),(13197,24574,1),(10913,24574,1),(251321,24574,1),(10425,24574,1),(256687,24574,1),(1544,24574,1),(374461,24574,1),(302,24574,1),(182873,24574,1),(21512,24574,1),(389425,24574,1),(403,24574,1),(29461,24574,1),(9388,24574,1),(1691,24574,1),(24684,24574,1),(2610,24574,1),(11308,24574,1),(11022,24574,1),(34341,24574,1),(15365,24574,1),(36046,24574,1),(12569,24574,1),(24356,24574,1),(2577,24574,1),(103903,24574,1),(73873,24574,1),(312113,24574,1),(45650,24574,1),(301365,24574,1),(25941,24574,1),(29064,24574,1),(7326,24574,1),(326284,24574,1),(681,24574,1),(238,24574,1),(535,24574,1),(19913,24574,1),(713,24574,1),(77930,24574,1),(10727,24574,1),(253,24574,1),(17908,24574,1),(8390,24574,1),(57119,24574,1),(3291,24574,1),(398,24574,1),(8068,24574,1),(10803,24574,1),(682,24574,1),(10117,24574,1),(9392,24574,1),(24977,24574,1),(79316,24574,1),(2074,24574,1),(1696,24574,1),(308639,24574,1),(22314,24574,1),(2662,24574,1),(77156,24574,1),(12573,24574,1),(44718,24574,1),(11342,24574,1),(241771,24574,1),(34653,24574,1),(11051,24574,1),(14578,24574,1),(57825,24574,1),(9555,24574,1),(15581,24574,1),(13006,24574,1),(16651,24574,1),(12400,24574,1),(39053,24574,1),(104896,24574,1),(14112,24574,1),(12271,24574,1),(71859,24574,1),(226354,24574,1),(48620,24574,1),(33676,24574,1),(37080,24574,1),(25388,24574,1),(39210,24574,1),(30128,24574,1),(31535,24574,1),(44835,24574,1),(192134,24574,1),(1956,24574,1),(24985,24574,1),(306745,24574,1),(47088,24574,1),(27004,24574,1),(15013,24574,1),(8374,24574,1),(78381,24574,1),(294512,24574,1),(8879,24574,1),(13001,24574,1),(9571,24574,1),(13649,24574,1),(325373,24574,1),(334527,24574,1),(13919,24574,1),(14576,24574,1),(82505,24574,1),(41009,24574,1),(250546,24574,1),(38415,24574,1),(650,24574,1),(16620,24574,1),(25113,24574,1),(11033,24574,1),(34723,24574,1),(9430,24574,1),(8998,24574,1),(10514,24574,1),(10496,24574,1),(76025,24574,1),(4836,24574,1),(14631,24574,1),(87499,24574,1),(18923,24574,1),(26665,24574,1),(28089,24574,1),(62255,24574,1),(5708,24574,1),(218,24574,1),(21641,24574,1),(10925,24574,1),(2293,24574,1),(621,24574,1),(792,24574,1),(1777,24574,1),(642,24574,1),(433,24574,1),(16619,24574,1),(1725,24574,1),(11977,24574,1),(20322,24574,1),(16158,24574,1),(629,24574,1),(10160,24574,1),(11452,24574,1),(12163,24574,1),(32275,24574,1),(13785,24574,1),(1103,24574,1),(36739,24574,1),(14144,24574,1),(13370,24574,1),(11191,24574,1),(10215,24574,1),(25066,24574,1),(1523,24574,1),(11361,24574,1),(92591,24574,1),(57612,24574,1),(12509,24574,1),(15256,24574,1),(83686,24574,1),(80304,24574,1),(28053,24574,1),(67913,24574,1),(13991,24574,1),(1443,24574,1),(8545,24574,1),(19556,24574,1),(231576,24574,1),(16172,24574,1),(13403,24574,1),(15797,24574,1),(347764,24574,1),(13537,24574,1),(20794,24574,1),(31064,24574,1),(576,24574,1),(13990,24574,1),(11583,24574,1),(18602,24574,1),(27549,24574,1),(59728,24574,1),(32395,24574,1),(58882,24574,1),(7547,24574,1),(35944,24574,1),(42222,24574,1),(13827,24574,1),(44260,24574,1),(9282,24574,1),(38940,24574,1),(35689,24574,1),(97614,24574,1),(37206,24574,1),(58626,24574,1),(183894,24574,1),(837,24574,1),(244783,24574,1),(168027,24574,1),(3482,24574,1),(135595,24574,1),(89861,24574,1),(455,24574,1),(57022,24574,1),(14351,24574,1),(147767,24574,1),(55567,24574,1),(9277,24574,1),(9443,24574,1),(16186,24574,1),(7863,24574,1),(138697,24574,1),(11901,24574,1),(1548,24574,1),(11889,24574,1),(33155,24574,1),(321,24574,1),(4997,24574,1),(925,24574,1),(27451,24574,1),(253253,24574,1),(51995,24574,1),(13173,24574,1),(22908,24574,1),(70670,24574,1),(84204,24574,1),(25248,24574,1),(230266,24574,1),(16633,24574,1),(91586,24574,1),(215,24574,1),(333371,24574,1),(9012,24574,1),(345911,24574,1),(72571,24574,1),(242512,24574,1),(10072,24574,1),(82990,24574,1),(29912,24574,1),(11843,24574,1),(11284,24574,1),(504,24574,1),(173,24574,1),(227348,24574,1),(1955,24574,1),(152532,24574,1),(243940,24574,1),(77,24574,1),(157547,24574,1),(2295,24574,1),(71,24574,1),(147773,24574,1),(16096,24574,1),(24266,24574,1),(16508,24574,1),(2895,24574,1),(15660,24574,1),(59968,24574,1),(323677,24574,1),(19848,24574,1),(256274,24574,1),(235271,24574,1),(45153,24574,1),(284293,24574,1),(24973,24574,1),(21610,24574,1),(10283,24574,1),(8346,24574,1),(122081,24574,1),(10987,24574,1),(747,24574,1),(14745,24574,1),(26748,24574,1),(11357,24574,1),(24913,24574,1),(13776,24574,1),(14854,24574,1),(50357,24574,1),(13090,24574,1),(192141,24574,1),(16441,24574,1),(29996,24574,1),(351819,24574,1),(14834,24574,1),(22649,24574,1),(378200,24574,1),(20455,24574,1),(13193,24574,1),(10786,24574,1),(12484,24574,1),(17339,24574,1),(11959,24574,1),(9900,24574,1),(14662,24574,1),(15745,24574,1),(17431,24574,1),(21014,24574,1),(78394,24574,1),(10217,24574,1),(13996,24574,1),(3028,24574,1),(1024,24574,1),(343795,24574,1),(45658,24574,1),(16148,24574,1),(4553,24574,1),(36351,24574,1),(245916,24574,1),(27585,24574,1),(1415,24574,1),(313922,24574,1),(14474,24574,1),(199933,24574,1),(13685,24574,1),(8744,24574,1),(8847,24574,1),(39269,24574,1),(46838,24574,1),(51384,24574,1),(56930,24574,1),(41730,24574,1),(18442,24574,1),(298312,24574,1),(11600,24574,1),(57876,24574,1),(13849,24574,1),(14849,24574,1),(12486,24574,1),(19615,24574,1),(244403,24574,1),(292481,24574,1),(340816,24574,1),(78814,24574,1),(297596,24574,1),(299552,24574,1),(11935,24574,1),(113406,24574,1),(447027,24574,1),(290825,24574,1),(361159,24574,1),(12498,24574,1),(77949,24574,1),(1690,24574,1),(8435,24574,1),(64720,24574,1),(49365,24574,1),(11404,24574,1),(300706,24574,1),(16337,24574,1),(11577,24574,1),(77987,24574,1),(68202,24574,1),(8981,24574,1),(10914,24574,1),(166624,24574,1),(10822,24574,1),(10844,24574,1),(9336,24574,1),(5689,24574,1),(712,24574,1),(13342,24574,1),(10339,24574,1),(1429,24574,1),(9303,24574,1),(641,24574,1),(27686,24574,1),(6106,24574,1),(252680,24574,1),(141,24574,1),(66607,24574,1),(12079,24574,1),(39800,24574,1),(9991,24574,1),(68818,24574,1),(36419,24574,1),(281730,24574,1),(510,24574,1),(362105,24574,1),(10970,24574,1),(17663,24574,1),(270938,24574,1),(116613,24574,1),(11826,24574,1),(1088,24574,1),(26379,24574,1),(10947,24574,1),(47452,24574,1),(11386,24574,1),(10246,24574,1),(29426,24574,1),(10331,24574,1),(153,24574,1),(703,24574,1),(27191,24574,1),(1365,24574,1),(287424,24574,1),(451,24574,1),(165864,24574,1),(987,24574,1),(241251,24574,1),(40494,24574,1),(39781,24574,1),(8337,24574,1),(5925,24574,1),(8357,24574,1),(146203,24574,1),(85350,24574,1),(512,24574,1),(13408,24574,1),(47816,24574,1),(10744,24574,1),(11536,24574,1),(9782,24574,1),(18713,24574,1),(184345,24574,1),(1809,24574,1),(2370,24574,1),(9809,24574,1),(5,24574,1),(11013,24574,1),(19153,24574,1),(10132,24574,1),(16448,24574,1),(15122,24574,1),(8141,24574,1),(1546,24574,1),(48572,24574,1),(14517,24574,1),(89708,24574,1),(27551,24574,1),(64678,24574,1),(309503,24574,1),(14293,24574,1),(15059,24574,1),(103328,24574,1),(157847,24574,1),(25719,24574,1),(48309,24574,1),(27723,24574,1),(20468,24574,1),(242575,24574,1),(44945,24574,1),(29122,24574,1),(125123,24574,1),(111190,24574,1),(133575,24574,1),(52015,24574,1),(34941,24574,1),(60422,24574,1),(81390,24574,1),(10981,24574,1),(14902,24574,1),(121676,24574,1),(22301,24574,1),(20065,24574,1),(257087,24574,1),(46420,24574,1),(114635,24574,1),(158150,24574,1),(251979,24574,1),(874,24574,1),(10774,24574,1),(770,24574,1),(266102,24574,1),(29715,24574,1),(25209,24574,1),(37495,24574,1),(34769,24574,1),(35032,24574,1),(5178,24574,1),(8618,24574,1),(3116,24574,1),(9427,24574,1),(813,24574,1),(352978,24574,1),(10634,24574,1),(9516,24574,1),(16288,24574,1),(23330,24574,1),(18900,24574,1),(27029,24574,1),(26268,24574,1),(573,24574,1),(310131,24574,1),(40505,24574,1),(11363,24574,1),(3033,24574,1),(22007,24574,1),(765,24574,1),(10615,24574,1),(205321,24574,1),(38007,24574,1),(14256,24574,1),(540,24574,1),(370464,24574,1),(20055,24574,1),(224569,24574,1),(395766,24574,1),(39303,24574,1),(142061,24574,1),(370662,24574,1),(252360,24574,1),(256740,24574,1),(299145,24574,1),(241766,24574,1),(12535,24574,1),(50839,24574,1),(86549,24574,1),(13973,24574,1),(244786,24574,1),(11129,24574,1),(75861,24574,1),(13551,24574,1),(850,24574,1),(12586,24574,1),(11564,24574,1),(301748,24574,1),(108346,24574,1),(805,24574,1),(11697,24574,1),(22051,24574,1),(55347,24574,1),(10070,24574,1),(8469,24574,1),(658,24574,1),(125490,24574,1),(1585,24574,1),(627,24574,1),(23618,24574,1),(41436,24574,1),(10162,24574,1),(1430,24574,1),(10014,24574,1),(11257,24574,1),(158015,24574,1),(82507,24574,1),(20337,24574,1),(261,24574,1),(1685,24574,1),(20737,24574,1),(10225,24574,1),(826,24574,1),(34086,24574,1),(5854,24574,1),(284,24574,1),(10285,24574,1),(5780,24574,1),(292,24574,1),(223485,24574,1),(29463,24574,1),(18065,24574,1),(22013,24574,1),(821,24574,1),(53862,24574,1),(3089,24574,1),(30139,24574,1),(132344,24574,1),(15582,24574,1),(15158,24574,1),(44634,24574,1),(30309,24574,1),(7509,24574,1),(10557,24574,1),(23531,24574,1),(28005,24574,1),(40247,24574,1),(252,24574,1),(24126,24574,1),(13982,24574,1),(16642,24574,1),(17734,24574,1),(18892,24574,1),(549,24574,1),(121986,24574,1),(10683,24574,1),(17995,24574,1),(246403,24574,1),(35691,24574,1),(49010,24574,1),(11229,24574,1),(22488,24574,1),(24469,24574,1),(82533,24574,1),(50942,24574,1),(84174,24574,1),(34099,24574,1),(79940,24574,1),(281230,24574,1),(38033,24574,1),(100975,24574,1),(38541,24574,1),(39563,24574,1),(234212,24574,1),(27404,24574,1),(170480,24574,1),(71866,24574,1),(192210,24574,1),(180296,24574,1),(157058,24574,1),(70006,24574,1),(26039,24574,1),(79587,24574,1),(176077,24574,1),(260947,24574,1),(342502,24574,1),(191229,24574,1),(43213,24574,1),(44594,24574,1),(248,24574,1),(325173,24574,1),(55831,24574,1),(351043,24574,1),(43942,24574,1),(66942,24574,1),(356483,24574,1),(10476,24574,1),(239,24574,1),(10281,24574,1),(630,24574,1),(3034,24574,1),(13025,24574,1),(21461,24574,1),(55306,24574,1),(17264,24574,1),(346081,24574,1),(16016,24574,1),(15875,24574,1),(43306,24574,1),(11072,24574,1),(9730,24574,1),(26371,24574,1),(14137,24574,1),(291,24574,1),(8875,24574,1),(872,24574,1),(72914,24574,1),(139038,24574,1),(126509,24574,1),(9591,24574,1),(10676,24574,1),(1687,24574,1),(24748,24574,1),(181330,24574,1),(468,24574,1),(401,24574,1),(76,24574,1),(25636,24574,1),(19316,24574,1),(21074,24574,1),(84329,24574,1),(20,24574,1),(157386,24574,1),(13007,24574,1),(13518,24574,1),(116584,24574,1),(46849,24574,1),(40428,24574,1),(17334,24574,1),(20764,24574,1),(45132,24574,1),(76706,24574,1),(332285,24574,1),(49471,24574,1),(13569,24574,1),(7512,24574,1),(356216,24574,1),(11798,24574,1),(146631,24574,1),(43546,24574,1),(61038,24574,1),(78373,24574,1),(17820,24574,1),(74457,24574,1),(283384,24574,1),(19933,24574,1),(756,24574,1),(433715,24574,1),(9728,24574,1),(9731,24574,1),(9916,24574,1),(309425,24574,1),(14156,24574,1),(43610,24574,1),(360339,24574,1),(31163,24574,1),(297621,24574,1),(16205,24574,1),(887,24574,1),(9517,24574,1),(6007,24574,1),(364083,24574,1),(69640,24574,1),(371085,24574,1),(347548,24574,1),(657,24574,1),(28165,24574,1),(11561,24574,1),(270303,24574,1),(11624,24574,1),(595,24574,1),(8810,24574,1),(226,24574,1),(92182,24574,1),(72213,24574,1),(990,24574,1),(55604,24574,1),(20862,24574,1),(2771,24574,1),(80,24574,1),(11023,24574,1),(33667,24574,1),(39013,24574,1),(11194,24574,1),(43839,24574,1),(1382,24574,1),(44639,24574,1),(301351,24574,1),(4816,24574,1),(7873,24574,1),(331190,24574,1),(15186,24574,1),(17994,24574,1),(1378,24574,1),(48382,24574,1),(12901,24574,1),(250124,24574,1),(14284,24574,1),(57120,24574,1),(12228,24574,1),(22617,24574,1),(55561,24574,1),(42889,24574,1),(24363,24574,1),(13121,24574,1),(24746,24574,1),(325140,24574,1),(12109,24574,1),(27023,24574,1),(22913,24574,1),(273899,24574,1),(20653,24574,1),(67373,24574,1),(171759,24574,1),(206296,24574,1),(35219,24574,1),(28260,24574,1),(7515,24574,1),(13075,24574,1),(335866,24574,1),(13510,24574,1),(215881,24574,1),(18238,24574,1),(22600,24574,1),(12612,24574,1),(50698,24574,1),(115210,24574,1),(34335,24574,1),(459488,24574,1),(11302,24574,1),(119458,24574,1),(20406,24574,1),(3766,24574,1),(18616,24574,1),(18808,24574,1),(95755,24574,1),(198062,24574,1),(188652,24574,1),(174311,24574,1),(153795,24574,1),(17768,24574,1),(13516,24574,1),(98549,24574,1),(312793,24574,1),(309919,24574,1),(299553,24574,1),(21309,24574,1),(32235,24574,1),(329540,24574,1),(26388,24574,1),(49020,24574,1),(14048,24574,1),(356987,24574,1),(295886,24574,1),(38358,24574,1),(33511,24574,1),(702,24574,1),(935,24574,1),(84175,24574,1),(1705,24574,1),(62677,24574,1),(50875,24574,1),(58492,24574,1),(44562,24574,1),(37232,24574,1),(4929,24574,1),(36334,24574,1),(9783,24574,1),(386826,24574,1),(205126,24574,1),(98557,24574,1),(10894,24574,1),(246449,24574,1),(1688,24574,1),(1999,24574,1),(43947,24574,1),(24066,24574,1),(9709,24574,1),(25312,24574,1),(34106,24574,1),(11426,24574,1),(13909,24574,1),(206284,24574,1),(27455,24574,1),(66468,24574,1),(283686,24574,1),(592,24574,1),(25428,24574,1),(298584,24574,1),(10758,24574,1),(11690,24574,1),(3083,24574,1),(9344,24574,1),(10707,24574,1),(15647,24574,1),(308529,24574,1),(4174,24574,1),(20156,24574,1),(9464,24574,1),(49018,24574,1),(13820,24574,1),(127918,24574,1),(17113,24574,1),(129139,24574,1),(507,24574,1),(4012,24574,1),(14054,24574,1),(323271,24574,1),(10972,24574,1),(13066,24574,1),(66025,24574,1),(11908,24574,1),(3082,24574,1),(39541,24574,1),(1961,24574,1),(51820,24574,1),(291362,24574,1),(30082,24574,1),(72913,24574,1),(23963,24574,1),(29406,24574,1),(361505,24574,1),(104755,24574,1),(253306,24574,1),(29595,24574,1),(46729,24574,1),(294600,24574,1),(137347,24574,1),(290370,24574,1),(426469,24574,1),(356841,24574,1),(347755,24574,1),(408,24574,1),(39209,24574,1),(48463,24574,1),(394047,24574,1),(312791,24574,1),(280381,24574,1),(2661,24574,1),(100,24574,1),(218500,24574,1),(27845,24574,1),(52790,24574,1),(100275,24574,1),(42033,24574,1),(19187,24574,1),(46415,24574,1),(38570,24574,1),(27588,24574,1),(223,24574,1),(9725,24574,1),(28580,24574,1),(23730,24574,1),(84197,24574,1),(46256,24574,1),(19997,24574,1),(43266,24574,1),(278316,24574,1),(1412,24574,1),(176,24574,1),(39939,24574,1),(357834,24574,1),(14295,24574,1),(11219,24574,1),(20770,24574,1),(176124,24574,1),(500,24574,1),(60400,24574,1),(98369,24574,1),(114065,24574,1),(89750,24574,1),(49951,24574,1),(355629,24574,1),(16433,24574,1),(15544,24574,1),(43884,24574,1),(107315,24574,1),(137955,24574,1),(13064,24574,1),(59917,24574,1),(157422,24574,1),(310933,24574,1),(7553,24574,1),(12877,24574,1),(39895,24574,1),(102840,24574,1),(55616,24574,1),(29697,24574,1),(50037,24574,1),(53502,24574,1),(202604,24574,1),(289,24574,1),(27374,24574,1),(811,24574,1),(1366,24574,1),(244776,24574,1),(5769,24574,1),(277685,24574,1),(103,24574,1),(11298,24574,1),(646,24574,1),(93856,24574,1),(9003,24574,1),(347126,24574,1),(10092,24574,1),(46705,24574,1),(546,24574,1),(76487,24574,1),(5722,24574,1),(39833,24574,1),(1781,24574,1),(18712,24574,1),(7944,24574,1),(171424,24574,1),(361475,24574,1),(113947,24574,1),(18570,24574,1),(83860,24574,1),(41469,24574,1),(244772,24574,1),(50837,24574,1),(248774,24574,1),(10183,24574,1),(159014,24574,1),(32456,24574,1),(49963,24574,1),(13508,24574,1),(22597,24574,1),(9707,24574,1),(37532,24574,1),(26791,24574,1),(8675,24574,1),(13132,24574,1),(47686,24574,1),(46989,24574,1),(192132,24574,1),(13198,24574,1),(244267,24574,1),(21413,24574,1),(13362,24574,1),(39183,24574,1),(62402,24574,1),(206412,24574,1),(201132,24574,1),(251471,24574,1),(112456,24574,1),(20296,24574,1),(25983,24574,1),(66195,24574,1),(16155,24574,1),(46727,24574,1),(55180,24574,1),(29015,24574,1),(91122,24574,1),(18206,24574,1),(320146,24574,1),(13856,24574,1),(219716,24574,1),(43630,24574,1),(56491,24574,1),(99826,24574,1),(357441,24574,1),(19344,24574,1),(242083,24574,1),(18869,24574,1),(26673,24574,1),(41830,24574,1),(37694,24574,1),(63287,24574,1),(335874,24574,1),(34592,24574,1),(92635,24574,1),(21283,24574,1),(272724,24574,1),(84178,24574,1),(101179,24574,1),(52462,24574,1),(269057,24574,1),(287524,24574,1),(206213,24574,1),(248402,24574,1),(29146,24574,1),(207769,24574,1),(271185,24574,1),(29731,24574,1),(654,24574,1),(91070,24574,1),(323270,24574,1),(2652,24574,1),(9813,24574,1),(157354,24574,1),(127867,24574,1),(3170,24574,1),(14014,24574,1),(15708,24574,1),(215918,24574,1),(84200,24574,1),(84184,24574,1),(45767,24574,1),(14823,24574,1),(367551,24574,1),(343409,24574,1),(57294,24574,1),(11446,24574,1),(47889,24574,1),(25461,24574,1),(279759,24574,1),(78705,24574,1),(25212,24574,1),(26899,24574,1),(146269,24574,1),(292483,24574,1),(10105,24574,1),(211557,24574,1),(838,24574,1),(40862,24574,1),(13158,24574,1),(84332,24574,1),(74510,24574,1),(74725,24574,1),(58428,24574,1),(36584,24574,1),(13429,24574,1),(9022,24574,1),(22530,24574,1),(288,24574,1),(14275,24574,1),(2287,24574,1),(18734,24574,1),(206197,24574,1),(26837,24574,1),(7859,24574,1),(302579,24574,1),(51955,24574,1),(376004,24574,1),(158752,24574,1),(40658,24574,1),(296943,24574,1),(118612,24574,1),(138976,24574,1),(323967,24574,1),(3080,24574,1),(2667,24574,1),(9459,24574,1),(11598,24574,1),(26916,24574,1),(181940,24574,1),(125263,24574,1),(263503,24574,1),(331493,24574,1),(278348,24574,1),(704,24574,1),(70875,24574,1),(75986,24574,1),(14438,24574,1),(23069,24574,1),(83,24574,1),(89857,24574,1),(30315,24574,1),(14358,24574,1),(2056,24574,1),(41144,24574,1),(35199,24574,1),(14271,24574,1),(16653,24574,1),(84401,24574,1),(23655,24574,1),(36825,24574,1),(33430,24574,1),(12281,24574,1),(125052,24574,1),(96238,24574,1),(30246,24574,1),(7301,24574,1),(172533,24574,1),(180383,24574,1),(84318,24574,1),(45145,24574,1),(13983,24574,1),(45649,24574,1),(19844,24574,1),(21801,24574,1),(43933,24574,1),(73511,24574,1),(43653,24574,1),(139715,24574,1),(30867,24574,1),(81220,24574,1),(253626,24574,1),(294550,24574,1),(90369,24574,1),(117942,24574,1),(380097,24574,1),(322194,24574,1),(98568,24574,1),(119657,24574,1),(380733,24574,1),(285743,24574,1),(362765,24574,1),(379532,24574,1),(253261,24574,1),(297100,24574,1),(15239,24574,1),(94072,24574,1),(4107,24574,1),(325579,24574,1),(15624,24574,1),(17287,24574,1),(198370,24574,1),(3062,24574,1),(328307,24574,1),(15389,24574,1),(308467,24574,1),(8193,24574,1),(188166,24574,1),(23827,24574,1),(1282,24574,1),(762,24574,1),(281189,24574,1),(1435,24574,1),(47546,24574,1),(189711,24574,1),(18045,24574,1),(11240,24574,1),(43743,24574,1),(157909,24574,1),(3059,24574,1),(15800,24574,1),(65203,24574,1),(764,24574,1),(103620,24574,1),(319069,24574,1),(14278,24574,1),(25678,24574,1),(79161,24574,1),(371690,24574,1),(389,24574,1),(52032,24574,1),(3078,24574,1),(21525,24574,1),(55123,24574,1),(11980,24574,1),(1550,24574,1),(162396,24574,1),(26518,24574,1),(8942,24574,1),(68412,24574,1),(87943,24574,1),(73981,24574,1),(91721,24574,1),(118452,24574,1),(47534,24574,1),(40914,24574,1),(365052,24574,1),(13282,24574,1),(250184,24574,1),(426067,24574,1),(324352,24574,1),(318040,24574,1),(27420,24574,1),(80468,24574,1),(84188,24574,1),(2255,24574,1),(50035,24574,1),(300327,24574,1),(14290,24574,1),(29371,24574,1),(44490,24574,1),(32222,24574,1),(378237,24574,1),(431,24574,1),(51942,24574,1),(1424,24574,1),(60420,24574,1),(325123,24574,1),(142132,24574,1),(20520,24574,1),(109729,24574,1),(78307,24574,1),(12247,24574,1),(29917,24574,1),(70687,24574,1),(60463,24574,1),(46252,24574,1),(24869,24574,1),(77934,24574,1),(34697,24574,1),(320435,24574,1),(150211,24574,1),(306667,24574,1),(274758,24574,1),(3060,24574,1),(40963,24574,1),(173224,24574,1),(18533,24574,1),(376010,24574,1),(139948,24574,1),(77332,24574,1),(70478,24574,1),(35073,24574,1),(9659,24574,1),(10218,24574,1),(43595,24574,1),(194588,24574,1),(54897,24574,1),(83588,24574,1),(40920,24574,1),(287815,24574,1),(54702,24574,1),(176074,24574,1),(69270,24574,1),(5759,24574,1),(126141,24574,1),(14758,24574,1),(13363,24574,1),(37985,24574,1),(25786,24574,1),(36549,24574,1),(361398,24574,1),(289180,24574,1),(288927,24574,1),(79120,24574,1),(27995,24574,1),(253290,24574,1),(55420,24574,1),(5822,24574,1),(408429,24574,1),(39141,24574,1),(5723,24574,1),(28666,24574,1),(30979,24574,1),(50497,24574,1),(354624,24574,1),(13187,24574,1),(335244,24574,1),(178862,24574,1),(331745,24574,1),(1779,24574,1),(282128,24574,1),(86812,24574,1),(38786,24574,1),(84355,24574,1),(18632,24574,1),(339408,24574,1),(266857,24574,1),(18925,24574,1),(299245,24574,1),(985,24574,1),(34101,24574,1),(9821,24574,1),(65448,24574,1),(18841,24574,1),(272726,24574,1),(175291,24574,1),(80215,24574,1),(13538,24574,1),(51130,24574,1),(270554,24574,1),(72086,24574,1),(268917,24574,1),(64973,24574,1),(473,24574,1),(111794,24574,1),(360188,24574,1),(9372,24574,1),(85860,24574,1),(244534,24574,1),(33468,24574,1),(294086,24574,1),(139998,24574,1),(74777,24574,1),(16388,24574,1),(159770,24574,1),(47607,24574,1),(193603,24574,1),(84659,24574,1),(322745,24574,1),(20981,24574,1),(174362,24574,1),(242095,24574,1),(250902,24574,1),(158895,24574,1),(222250,24574,1),(18292,24574,1),(125537,24574,1),(326576,24574,1),(228550,24574,1),(13963,24574,1),(290391,24574,1),(44770,24574,1),(69382,24574,1),(40769,24574,1),(220490,24574,1),(42151,24574,1),(2292,24574,1),(42497,24574,1),(33693,24574,1),(14585,24574,1),(185465,24574,1),(38780,24574,1),(14022,24574,1),(366967,24574,1),(255266,24574,1),(17345,24574,1),(226458,24574,1),(24055,24574,1),(287625,24574,1),(44990,24574,1),(86304,24574,1),(692,24574,1),(39851,24574,1),(157185,24574,1),(182291,24574,1),(286939,24574,1),(124606,24574,1),(14337,24574,1),(67238,24574,1),(72766,24574,1),(231617,24574,1),(126186,24574,1),(25975,24574,1),(13491,24575,1),(12093,24575,1),(29920,24575,1),(464,24575,1),(10238,24575,1),(53953,24576,1),(75531,24576,1),(50135,24576,1),(6968,24576,1),(37903,24576,1),(19,24576,1),(613,24576,1),(387,24576,1),(7735,24576,1),(2211,24576,1),(1591,24576,1),(338,24576,1),(71547,24576,1),(31175,24576,1),(34069,24576,1),(342,24576,1),(1698,24576,1),(254472,24576,1),(322443,24576,1),(582,24576,1),(12602,24576,1),(104,24576,1),(301325,24576,1),(96534,24576,1),(292539,24576,1),(905,24576,1),(53256,24576,1),(62204,24577,1),(315011,24578,1),(12429,24578,1),(192577,24578,1),(4935,24578,1),(128,24578,1),(8953,24578,1),(129,24578,1),(327,24578,1),(61984,24578,1),(13889,24578,1),(149,24578,1),(193722,24578,1),(10991,24578,1),(10643,24578,1),(346,24578,1),(36095,24578,1),(2395,24579,1),(330770,24579,1),(2841,24579,1),(10047,24579,1),(27936,24579,1),(280391,24579,1),(194,24579,1),(77459,24579,1),(31203,24579,1),(11516,24579,1),(133698,24579,1),(48034,24579,1),(25353,24579,1),(11156,24579,1),(11661,24579,1),(21494,24579,1),(14652,24579,1),(10353,24579,1),(9389,24579,1),(10800,24579,1),(8265,24579,1),(2110,24579,1),(10045,24579,1),(53457,24579,1),(2013,24579,1),(37842,24579,1),(9045,24579,1),(2266,24579,1),(126319,24579,1),(304410,24579,1),(64559,24579,1),(86837,24579,1),(250349,24579,1),(41248,24579,1),(71157,24579,1),(15049,24579,1),(1958,24579,1),(49081,24579,1),(283708,24579,1),(55903,24579,1),(2011,24579,1),(11687,24579,1),(46738,24579,1),(10930,24579,1),(1555,24579,1),(5528,24579,1),(73532,24579,1),(979,24579,1),(11042,24579,1),(46332,24579,1),(40185,24579,1),(50848,24579,1),(62116,24579,1),(1667,24579,1),(8841,24579,1),(10226,24579,1),(50538,24579,1),(9662,24579,1),(10656,24579,1),(12838,24579,1),(1651,24579,1),(266034,24579,1),(86331,24579,1),(146882,24579,1),(324322,24579,1),(375950,24579,1),(11956,24579,1),(2786,24579,1),(40652,24579,1),(90414,24579,1),(293644,24580,1),(45958,24580,1),(1969,24580,1),(13495,24580,1),(153158,24580,1),(1417,24580,1),(12154,24580,1),(1913,24580,1),(184374,24580,1),(219,24580,1),(10664,24580,1),(211954,24580,1),(1391,24580,1),(77495,24580,1),(65749,24580,1),(6537,24580,1),(54580,24580,1),(25376,24580,1),(89540,24580,1),(436,24580,1),(317930,24580,1),(14139,24580,1),(8329,24580,1),(55,24580,1),(542,24580,1),(32579,24580,1),(18079,24580,1),(44413,24580,1),(215924,24580,1),(186935,24580,1),(258755,24580,1),(9367,24580,1),(159037,24581,1),(7973,24581,1),(25784,24584,1),(11818,24585,1),(38810,24586,1),(76758,24587,1),(300168,24587,1),(381902,24587,1),(1494,24587,1),(79,24587,1),(14392,24587,1),(12289,24587,1),(44865,24587,1),(257932,24587,1),(2008,24587,1),(76349,24587,1),(13405,24587,1),(244114,24587,1),(146,24587,1),(253450,24587,1),(20083,24587,1),(44092,24587,1),(9550,24587,1),(844,24587,1),(44555,24587,1),(21345,24587,1),(173931,24587,1),(358451,24587,1),(220488,24587,1),(259943,24587,1),(33106,24587,1),(45380,24587,1),(593,24588,1),(16911,24588,1),(367961,24588,1),(208763,24588,1),(36696,24588,1),(12246,24588,1),(11190,24588,1),(110402,24588,1),(164372,24588,1),(3040,24588,1),(225235,24588,1),(365222,24590,1),(290864,24590,1),(30596,24590,1),(9470,24590,1),(13688,24590,1),(244339,24590,1),(11770,24590,1),(33542,24590,1),(277519,24590,1),(10622,24590,1),(13807,24590,1),(12207,24590,1),(41508,24591,1),(8885,24592,1),(15976,24592,1),(24424,24592,1),(16340,24595,1),(370980,24595,1),(179144,24595,1),(45138,24595,1),(41110,24595,1),(40794,24595,1),(38970,24595,1),(335,24595,1),(429,24595,1),(8416,24595,1),(64499,24595,1),(19204,24595,1),(76996,24595,1),(391,24595,1),(9075,24596,1),(16564,24596,1),(17139,24596,1),(5900,24596,1),(206563,24598,1),(7347,24598,1),(227975,24598,1),(29262,24598,1),(598,24598,1),(666,24598,1),(310569,24598,1),(402515,24598,1),(42109,24598,1),(60421,24600,1),(60243,24600,1),(21334,24600,1),(13898,24600,1),(1951,24602,1),(62215,24602,1),(8883,24602,1),(103663,24602,1),(309,24602,1),(9029,24602,1),(48035,24602,1),(16353,24603,1),(27329,24603,1),(8982,24603,1),(14451,24604,1),(209274,24606,1),(217708,24607,1),(7504,24610,1),(14395,24610,1),(58051,24610,1),(32740,24610,1),(132316,24610,1),(185008,24610,1),(14165,24610,1),(4251,24610,1),(7913,24610,1),(63006,24610,1),(38428,24610,1),(375290,24610,1),(157293,24610,1),(191714,24610,1),(74084,24610,1),(480,24610,1),(26815,24610,1),(56666,24610,1),(211086,24610,1),(2009,24614,1),(344466,24614,1),(110415,24615,1),(10253,24615,1),(33196,24615,1),(407887,24615,1),(11658,24615,1),(1255,24615,1),(15067,24615,1),(293670,24615,1),(19644,24615,1),(4550,24615,1),(670,24615,1),(357837,24616,1),(12555,24616,1),(868,24621,1),(14757,24636,1),(280871,24654,1),(260778,24654,1),(94329,24655,1),(123678,24655,1),(256040,24657,1),(295914,24658,1),(385636,24660,1),(46146,24701,1);
/*!40000 ALTER TABLE `movie_languages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `person`
--
DROP TABLE IF EXISTS `person`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `person` (
`person_id` int(10) NOT NULL,
`person_name` varchar(500) DEFAULT NULL,
PRIMARY KEY (`person_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `person`
--
LOCK TABLES `person` WRITE;
/*!40000 ALTER TABLE `person` DISABLE KEYS */;
INSERT INTO `person` VALUES (1,'George Lucas'),(2,'Mark Hamill'),(3,'Harrison Ford'),(4,'Carrie Fisher'),(5,'Peter Cushing'),(6,'Anthony Daniels'),(7,'Andrew Stanton'),(8,'Lee Unkrich'),(9,'Graham Walters'),(10,'Bob Peterson'),(11,'David Reynolds'),(12,'Alexander Gould'),(13,'Albert Brooks'),(14,'Ellen DeGeneres'),(18,'Brad Garrett'),(19,'Allison Janney'),(20,'Elizabeth Perkins'),(22,'Barry Humphries'),(23,'Bill Hunter'),(24,'Robert Zemeckis'),(26,'Winston Groom'),(27,'Eric Roth'),(28,'Wendy Finerman'),(29,'Steve Tisch'),(30,'Steve Starkey'),(31,'Tom Hanks'),(32,'Robin Wright'),(33,'Gary Sinise'),(34,'Mykelti Williamson'),(35,'Sally Field'),(36,'Don Burgess'),(37,'Alan Silvestri'),(38,'Arthur Schmidt'),(39,'Sam Mendes'),(40,'Orson Welles'),(42,'Lars von Trier'),(47,'Bju00f6rk'),(48,'Sean Bean'),(49,'Maria Bello'),(50,'Catherine Deneuve'),(51,'Richard Elfyn'),(52,'David Morse'),(53,'Peter Stormare'),(54,'Maurice Roeves'),(56,'Sophie Stuckey'),(59,'Luc Besson'),(60,'Patrice Ledoux'),(61,'Robert Mark Kamen'),(62,'Bruce Willis'),(63,'Milla Jovovich'),(64,'Gary Oldman'),(65,'Ian Holm'),(66,'Chris Tucker'),(67,'Erich Pommer'),(68,'Fritz Lang'),(69,'Gottfried Huppertz'),(70,'Karl Freund'),(71,'Gu00fcnther Rittau'),(73,'Alfred Abel'),(74,'Gustav Fru00f6hlich'),(75,'Brigitte Helm'),(77,'Rudolf Klein-Rogge'),(78,'Fritz Rasp'),(79,'Theodor Loos'),(80,'Erwin Biswanger'),(81,'Heinrich George'),(82,'Olaf Storm'),(83,'Hanns Leo Reich'),(85,'Johnny Depp'),(90,'Isabel Coixet'),(93,'Esther Garcu00eda'),(96,'Gordon McLennan'),(97,'Nanci Kincaid'),(98,'Sarah Polley'),(99,'Amanda Plummer'),(100,'Scott Speedman'),(101,'Leonor Watling'),(102,'Deborah Harry'),(103,'Mark Ruffalo'),(104,'Jean-Claude Larrieu'),(105,'Lisa Robison'),(106,'Alfonso Vilallonga'),(108,'Peter Jackson'),(109,'Elijah Wood'),(110,'Viggo Mortensen'),(112,'Cate Blanchett'),(113,'Christopher Lee'),(114,'Orlando Bloom'),(116,'Keira Knightley'),(117,'Howard Shore'),(118,'Geoffrey Rush'),(120,'Dariusz Wolski'),(122,'Klaus Badelt'),(123,'Barrie M. Osborne'),(126,'Fran Walsh'),(128,'Philippa Boyens'),(129,'J.R.R. Tolkien'),(130,'Kenny Baker'),(131,'Jake Gyllenhaal'),(132,'Scott MacDonald'),(133,'Peter Sarsgaard'),(134,'Jamie Foxx'),(135,'Bobby Cohen'),(136,'Sam Mercer'),(138,'Quentin Tarantino'),(139,'Uma Thurman'),(140,'Lucy Liu'),(141,'David Carradine'),(142,'William Broyles Jr.'),(147,'Michael Madsen'),(148,'Anthony Swofford'),(149,'Robert Richardson'),(150,'RZA'),(151,'Roger Deakins'),(152,'Jim Morrison'),(153,'Thomas Newman'),(154,'Walter Murch'),(155,'Lucas Black'),(156,'Sally Menke'),(157,'Thea von Harbou'),(160,'Eytan Fox'),(162,'Gal Uchovsky'),(169,'Hanns Zischler'),(172,'Michael Winterbottom'),(173,'Andrew Eaton'),(176,'Kieran O\'Brien'),(177,'Margo Stilley'),(179,'Marcel Zyskind'),(185,'Katsuhiro u014ctomo'),(190,'Clint Eastwood'),(192,'Morgan Freeman'),(193,'Gene Hackman'),(194,'Richard Harris'),(195,'Lennie Niehaus'),(197,'David Silverman'),(198,'Dan Castellaneta'),(199,'Julie Kavner'),(200,'Nancy Cartwright'),(201,'Michel Gondry'),(202,'Charlie Kaufman'),(204,'Kate Winslet'),(205,'Kirsten Dunst'),(206,'Jim Carrey'),(207,'Tom Wilkinson'),(208,'Ryan Whitney'),(209,'Jane Adams'),(210,'Amir Ali Said'),(211,'Debbon Ayer'),(212,'David Cross'),(213,'Gerry Robert Byrne'),(214,'Brian Price'),(216,'Josh Flitter'),(217,'Paul Litowsky'),(220,'Lola Daehler'),(221,'Lauren Adler'),(222,'Pierre Bismuth'),(223,'Alejandro Gonzu00e1lez Iu00f1u00e1rritu'),(224,'David Cronenberg'),(225,'Ashton Holmes'),(226,'Heidi Hayes'),(227,'William Hurt'),(228,'Ed Harris'),(229,'Peter MacNeill'),(230,'Stephen McHattie'),(231,'Greg Bryk'),(232,'Kyle Schmid'),(233,'Sumela Kay'),(234,'Gerry Quigley'),(235,'Deborah Drakeford'),(236,'Bill MacDonald'),(237,'Aidan Devine'),(239,'Jon Vitti'),(240,'Stanley Kubrick'),(241,'Arthur C. Clarke'),(243,'Geoffrey Unsworth'),(244,'Ray Lovejoy'),(245,'Keir Dullea'),(246,'Gary Lockwood'),(247,'William Sylvester'),(248,'Daniel Richter'),(249,'Leonard Rossiter'),(250,'Margaret Tyzack'),(251,'Robert Beatty'),(252,'Sean Sullivan'),(253,'Douglas Rain'),(254,'H.L. Bird'),(255,'Winston Ryder'),(257,'Victor Lyndon'),(258,'Gael Garcu00eda Bernal'),(259,'Vanessa Bauche'),(260,'Marco Pu00e9rez'),(261,'Goya Toledo'),(262,'Alvaro Guerrero'),(263,'Emilio Echevarru00eda'),(264,'Jorge Salinas'),(265,'Rodrigo Murray'),(266,'Humberto Busto'),(267,'Gerardo Campbell'),(268,'Rosa Maru00eda Bianchi'),(269,'Dunia Saldu00edvar'),(270,'Adriana Barraza'),(271,'Josu00e9 Sefami'),(272,'Lourdes Echevarru00eda'),(273,'Guillermo Arriaga'),(275,'Rodrigo Prieto'),(276,'Luis Carballar'),(277,'Fernando Pu00e9rez Unda'),(278,'Gustavo Santaolalla'),(279,'Antonio Vega'),(280,'Terry Gilliam'),(282,'Charles Roven'),(283,'Robert Cavallo'),(284,'Gary Levinsohn'),(286,'Lloyd Phillips'),(287,'Brad Pitt'),(288,'Jon Seda'),(289,'Madeleine Stowe'),(290,'Christopher Plummer'),(291,'Frank Gorshin'),(293,'Roger Pratt'),(294,'Mick Audsley'),(296,'Robin Clarke'),(297,'Jay Meagher'),(298,'Chris Bender'),(305,'Josh Olson'),(306,'John Wagner'),(307,'Peter Suschitzky'),(309,'Pedro Almodu00f3var'),(310,'Ronald Sanders'),(312,'Jon Brion'),(313,'Ellen Kuras'),(321,'Anthony Bregman'),(322,'Steve Golin'),(323,'Curtis Hanson'),(324,'Scott Silver'),(325,'Eminem'),(326,'Kim Basinger'),(327,'Mekhi Phifer'),(328,'Brittany Murphy'),(329,'Carol Fenelon'),(330,'Jay Rabinowitz'),(331,'Craig Kitson'),(333,'Evan Jones'),(334,'Omar Benson Miller'),(335,'Michael Shannon'),(336,'Xzibit'),(339,'Brian Grazer'),(340,'Jimmy Iovine'),(341,'De\'Angelo Wilson'),(342,'Eugene Byrd'),(343,'Taryn Manning'),(344,'Larry Hudson'),(346,'Mike Bell'),(347,'Tom Rooker'),(348,'William Goldman'),(349,'Scott Glenn'),(350,'Laura Linney'),(351,'Judy Davis'),(352,'Dennis Haysbert'),(355,'David Baldacci'),(356,'Jack Green'),(366,'James Mangold'),(368,'Reese Witherspoon'),(369,'Henry Bumstead'),(370,'Jack G. Taylor Jr.'),(371,'Bill Coe'),(372,'Tom Stoppard'),(373,'Doug Jackson'),(374,'Charles McKeown'),(375,'Bub Asman'),(376,'Arnon Milchan'),(377,'Patrick Cassavetti'),(378,'Jonathan Pryce'),(379,'Donald Harris'),(380,'Robert De Niro'),(381,'Katherine Helmond'),(382,'Bob Hoskins'),(383,'Michael Palin'),(384,'Joel Cox'),(385,'Ian Richardson'),(386,'Peter Vaughan'),(387,'Kim Greist'),(388,'Jim Broadbent'),(389,'Alison Eastwood'),(390,'Irene Lamb'),(391,'Norman Garwood'),(393,'Rodney Glenn'),(394,'Bob Doyle'),(400,'Geraldine Chaplin'),(403,'Javier Aguirresarobe'),(404,'Melora Hardin'),(405,'Alberto Iglesias'),(407,'Gill Dennis'),(408,'James Keach'),(409,'Cathy Konrad'),(410,'John Carter Cash'),(413,'Josu00e9 Salcedo'),(414,'Alan C. Blomquist'),(417,'Ginnifer Goodwin'),(418,'Robert Patrick'),(419,'Tyler Hilton'),(420,'Johnathan Rice'),(421,'Shooter Jennings'),(422,'Waylon Payne'),(423,'Phyllis Huffman'),(424,'Dallas Roberts'),(425,'Dan John Miller'),(426,'Larry Bagby'),(427,'Sandra Ellis Lafferty'),(428,'Dan Beene'),(429,'Lucas Till'),(430,'Hailey Anne Nelson'),(431,'Victoria Hester'),(432,'Phedon Papamichael'),(433,'Michael McCusker'),(434,'Lisa Beach'),(436,'Sarah Katzman'),(437,'David J. Bomba'),(448,'Hilary Swank'),(449,'Jay Baruchel'),(450,'Mike Colter'),(451,'Lucia Rijker'),(452,'Margo Martindale'),(453,'Riki Lindhome'),(454,'Michael Peu00f1a'),(455,'Paul Haggis'),(457,'Albert S. Ruddy'),(459,'David Potaux-Razel'),(460,'Tom Stern'),(461,'Deborah Hopper'),(462,'Greg Brenman'),(463,'Jonathan Finn'),(464,'Charles Brand'),(465,'Tessa Ross'),(466,'David M. Thompson'),(467,'Natascha Wharton'),(468,'Stephen Daldry'),(469,'Stephen Warbeck'),(470,'Lee Hall'),(471,'Maria Djurkovic'),(472,'Mark Holding'),(473,'Brian Tufano'),(474,'Jina Jay'),(476,'John Wilson'),(477,'Julie Walters'),(478,'Jamie Bell'),(479,'Jamie Draven'),(480,'Gary Lewis'),(481,'Jean Heywood'),(482,'Stuart Wells'),(483,'Nicola Blackwell'),(486,'Wallace Wolodarsky'),(487,'Janine Birkett'),(488,'Steven Spielberg'),(489,'Kathleen Kennedy'),(490,'Colin Wilson'),(491,'John Williams'),(492,'Janusz Kamiu0144ski'),(493,'Michael Kahn'),(494,'Terri Taylor'),(495,'Debra Zane'),(496,'Rick Carter'),(497,'Doug J. Meerdink'),(498,'Joanna Johnston'),(499,'Cari Finken'),(500,'Tom Cruise'),(501,'Dakota Fanning'),(502,'Miranda Otto'),(503,'Justin Chatwin'),(504,'Tim Robbins'),(505,'Camillia Sanes'),(506,'John Scurti'),(507,'Josh Friedman'),(508,'David Koepp'),(510,'Tim Burton'),(511,'Larry J. Franco'),(512,'Laurie Parker'),(513,'Jonathan Gems'),(514,'Jack Nicholson'),(515,'Glenn Close'),(516,'Annette Bening'),(517,'Pierce Brosnan'),(518,'Danny DeVito'),(519,'Martin Short'),(520,'Sarah Jessica Parker'),(521,'Michael J. Fox'),(522,'Rod Steiger'),(523,'Tom Jones'),(524,'Natalie Portman'),(525,'Christopher Nolan'),(526,'Lukas Haas'),(527,'Jonathan Nolan'),(528,'Sylvia Sidney'),(529,'Guy Pearce'),(530,'Carrie-Anne Moss'),(531,'Danny Elfman'),(532,'Joe Pantoliano'),(533,'Victor Herbert'),(534,'Mark Boone Junior'),(535,'Russ Fega'),(536,'Jorja Fox'),(537,'Stephen Tobolowsky'),(538,'Harriet Sansom Harris'),(539,'Thomas Lennon'),(540,'Callum Keith Rennie'),(541,'Chris Lebenzon'),(542,'Kimberly Campbell'),(543,'Marianne Muellerleile'),(544,'Larry Holden'),(545,'Matthew Barry'),(546,'Jeanne McCarthy'),(547,'Victoria Thomas'),(548,'Wynn Thomas'),(550,'Jennifer Todd'),(551,'Suzanne Todd'),(552,'Elaine Dysinger'),(553,'John Dexter'),(554,'Aaron Ryder'),(555,'Nancy Haigh'),(556,'Emma Thomas'),(557,'Colleen Atwood'),(558,'David Julyan'),(559,'Wally Pfister'),(560,'Patti Podesta'),(561,'John Papsidera'),(562,'Richard LeGrand Jr.'),(563,'Dody Dorn'),(564,'Richard Linklater'),(566,'Anne Walker-McBay'),(568,'Kim Krizan'),(569,'Ethan Hawke'),(571,'Andrea Eckert'),(572,'Hanno Pu00f6schl'),(573,'Karl Bruckschwaiger'),(574,'Tex Rubinowitz'),(576,'Lee Daniel'),(577,'Fred Frith'),(578,'Ridley Scott'),(580,'Sandra Adair'),(581,'Michael Deeley'),(582,'Sheri Galloway'),(583,'Hampton Fancher'),(584,'Philip K. Dick'),(585,'Rutger Hauer'),(586,'Sean Young'),(587,'Edward James Olmos'),(588,'M. Emmet Walsh'),(589,'Daryl Hannah'),(590,'William Sanderson'),(591,'Brion James'),(592,'Joe Turkel'),(593,'Joanna Cassidy'),(594,'Jordan Cronenweth'),(595,'Vangelis'),(596,'Lawrence G. Paull'),(597,'Jane Feinberg'),(598,'Mike Fenton'),(599,'Marci Liroff'),(600,'Marsha Nakashima'),(601,'David L. Snyder'),(602,'Linda DeScenna'),(603,'Leslie McCarthy-Frankenheimer'),(605,'Michael Kaplan'),(606,'Charles Knode'),(607,'Zhang Yimou'),(608,'Hayao Miyazaki'),(613,'Sumi Shimamoto'),(622,'Yu014dji Matsuda'),(627,'Rick Dempsey'),(628,'Isao Takahata'),(630,'Mark Henley'),(631,'Ned Lott'),(636,'Joe Hisaishi'),(638,'Michael Mann'),(639,'Pieter Jan Brugge'),(640,'Chris Kentis'),(642,'Laura Lau'),(643,'Gong Li'),(644,'Blanchard Ryan'),(646,'Daniel Travis'),(647,'Dion Beebe'),(648,'Philip Kaufman'),(649,'Vernon Dobtcheff'),(650,'Karen Allen'),(651,'Louise Lemoine Torru00e8s'),(652,'Paul Freeman'),(653,'Ronald Lacey'),(654,'Rodolphe Pauly'),(655,'John Rhys-Davies'),(656,'Denholm Elliott'),(657,'Mariane Plasteig'),(658,'Alfred Molina'),(659,'Wolf Kahler'),(660,'Anthony Higgins'),(661,'Vic Tablian'),(662,'Don Fellows'),(663,'William Hootkins'),(664,'Frank Marshall'),(665,'Howard G. Kazanjian'),(666,'Douglas Slocombe'),(668,'Mary Selway'),(669,'Norman Reynolds'),(670,'Ben Burtt'),(671,'Richard L. Anderson'),(672,'Oskar Roehler'),(673,'Bernd Eichinger'),(674,'Oliver Berben'),(677,'Moritz Bleibtreu'),(678,'Martina Gedeck'),(679,'Franka Potente'),(680,'Corinna Harfouch'),(681,'Nina Hoss'),(682,'Uwe Ochsenknecht'),(683,'Jasmin Tabatabai'),(684,'Tom Schilling'),(686,'Willard Huyck'),(687,'Gloria Katz'),(689,'Kate Capshaw'),(690,'Jonathan Ke Quan'),(691,'Amrish Puri'),(692,'Jennifer Ulrich'),(693,'Roshan Seth'),(694,'Philip Stone'),(695,'Roy Chiao'),(696,'David Yip'),(697,'Michael Gwisdek'),(699,'Chua Kah Joo'),(701,'Rex Ngui'),(702,'Philip Tan'),(703,'Peter R. Adam'),(707,'Dan Aykroyd'),(710,'An Dorthe Braker'),(711,'Robert Watts'),(715,'Elliot Scott'),(716,'Emile Ardolino'),(719,'John Morris'),(720,'Jeff Jur'),(721,'Peter C. Frank'),(722,'Jennifer Grey'),(723,'Patrick Swayze'),(724,'Cynthia Rhodes'),(726,'Jack Weston'),(728,'Kelly Bishop'),(734,'Paula Trueman'),(735,'Arthur F. Repola'),(736,'Menno Meyjes'),(737,'Jeffrey Boam'),(738,'Sean Connery'),(739,'Alison Doody'),(740,'Julian Glover'),(741,'River Phoenix'),(742,'Michael Byrne'),(743,'Kevork Malikyan'),(744,'Robert Eddison'),(745,'Richard Young'),(746,'Alexei Sayle'),(747,'Alex Hyde-White'),(748,'Paul Maxwell'),(749,'Isla Blair'),(750,'Maggie Cartier'),(751,'Valorie Massalas'),(752,'Judy Taylor'),(762,'Ali Suliman'),(765,'Hiam Abbass'),(766,'Ashraf Barhom'),(769,'Martin Brest'),(770,'Jerry Bruckheimer'),(771,'Don Simpson'),(772,'Danilo Bach'),(774,'Daniel Petrie, Jr.'),(776,'Eddie Murphy'),(777,'Judge Reinhold'),(778,'John Ashton'),(779,'Lisa Eilbacher'),(780,'Ronny Cox'),(781,'Paul Reiser'),(782,'Steven Berkoff'),(783,'Jonathan Banks'),(785,'James Russo'),(786,'Stephen Elliott'),(787,'Gilbert R. Hill'),(788,'Art Kimbro'),(789,'Joel Bailey'),(790,'Michael Champion'),(792,'Bruce Surtees'),(794,'Angelo P. Graham'),(795,'James J. Murakami'),(796,'John M. Dwyer'),(798,'Tom Bronson'),(799,'Harold Faltermeyer'),(800,'Arthur Coburn'),(814,'Tony Kaye'),(816,'John Morrissey'),(818,'David McKenna'),(819,'Edward Norton'),(820,'Edward Furlong'),(821,'Beverly D\'Angelo'),(822,'Avery Brooks'),(823,'Jennifer Lien'),(824,'Ethan Suplee'),(825,'Stacy Keach'),(826,'Fairuza Balk'),(827,'Elliott Gould'),(828,'Guy Torry'),(829,'William Russ'),(830,'Joe Cortese'),(831,'Jason Bose Smith'),(832,'Antonio David Lyons'),(833,'Alex Sol'),(848,'Hans Werner Meyer'),(851,'Anne Dudley'),(852,'Gerald B. Greenberg'),(853,'Alan Heim'),(854,'James Stewart'),(855,'Lee Remick'),(856,'Ben Gazzara'),(857,'Arthur O\'Connell'),(859,'Valerie McCaffrey'),(860,'Eve Arden'),(862,'George C. Scott'),(863,'Orson Bean'),(865,'Michael Bay'),(869,'Gale Anne Hurd'),(870,'Sam Leavitt'),(873,'Robert Roy Pool'),(874,'Boris Leven'),(876,'Jonathan Hensleigh'),(877,'Richard Carruth'),(879,'Billy Bob Thornton'),(880,'Ben Affleck'),(881,'Irving Rosenberg'),(882,'Liv Tyler'),(883,'Will Patton'),(884,'Steve Buscemi'),(886,'William Fichtner'),(887,'Owen Wilson'),(892,'John Schwartzman'),(893,'Tony Scott'),(894,'Trevor Rabin'),(896,'Michael White'),(897,'Bonnie Timmermann'),(898,'Mark Goldblatt'),(899,'Glen Scantlebury'),(900,'Christopher Boyes'),(902,'Milton Welsh'),(903,'Lawrence A. Hubbs'),(904,'Jeffrey L. Kimball'),(905,'Bruton Jones'),(906,'Rick Simpson'),(907,'Magali Guidasci'),(908,'Michael Tronick'),(909,'Billy Weber'),(910,'Steve Grumette'),(911,'Robert D. Wachs'),(912,'Larry Ferguson'),(913,'Warren Skaaren'),(915,'David Giler'),(920,'Ju00fcrgen Prochnow'),(921,'Brigitte Nielsen'),(922,'Allen Garfield'),(923,'Dean Stockwell'),(925,'Paul Guilfoyle'),(926,'Ola Ray'),(928,'Rebecca Ferratti'),(929,'David Franzoni'),(930,'Branko Lustig'),(931,'Douglas Wick'),(932,'John Logan'),(933,'William Nicholson'),(934,'Russell Crowe'),(935,'Connie Nielsen'),(936,'Oliver Reed'),(937,'Derek Jacobi'),(938,'Djimon Hounsou'),(939,'David Schofield'),(940,'John Shrapnel'),(941,'Tomas Arana'),(942,'Ralf Moeller'),(943,'John Mathieson'),(944,'Arthur Max'),(945,'Crispian Sallis'),(946,'Janty Yates'),(947,'Hans Zimmer'),(948,'Lisa Gerrard'),(949,'Louis DiGiaimo'),(950,'Pietro Scalia'),(951,'Colin Coull'),(952,'Agustu00edn Almodu00f3var'),(955,'Penu00e9lope Cruz'),(956,'Guy Ritchie'),(957,'Matthew Vaughn'),(959,'David A. Hughes'),(960,'John Murphy'),(966,'Tim Maurice-Jones'),(967,'Iain Andrews'),(968,'Eve Mavrakis'),(970,'Celestia Fox'),(971,'Niven Howie'),(973,'Jason Flemyng'),(974,'Dexter Fletcher'),(975,'Nick Moran'),(976,'Jason Statham'),(978,'Steven Mackintosh'),(979,'Miguel Rejas'),(980,'Vinnie Jones'),(981,'Josu00e9 Antonio Bermu00fadez'),(982,'Sting'),(984,'Nicholas Rowe'),(985,'Nick Marcq'),(986,'Charles Forbes'),(987,'Lenny McLean'),(988,'Peter McNicholl'),(989,'P.H. Moriarty'),(990,'Frank Harper'),(991,'Steve Sweeney'),(992,'Huggy Leaver'),(993,'Tony McMahon'),(994,'Stephen Marcus'),(995,'Vas Blackwood'),(996,'Eric Serra'),(997,'Thierry Arbogast'),(998,'Sylvie Landra'),(999,'Todd M. Thaler'),(1000,'Dan Weil'),(1002,'Franu00e7oise Benou00eet-Fresco'),(1003,'Jean Reno'),(1004,'Danny Aiello'),(1005,'Peter Appel'),(1007,'Don Creech'),(1010,'Michael Badalucco'),(1011,'Susanne Bier'),(1012,'Anders Thomas Jensen'),(1015,'Sisse Graum Ju00f8rgensen'),(1016,'Jonas Frederiksen'),(1017,'Sonja Richter'),(1018,'Nikolaj Lie Kaas'),(1019,'Mads Mikkelsen'),(1029,'Per Streit'),(1030,'Pernille Bech Christensen'),(1032,'Martin Scorsese'),(1035,'Paul Schrader'),(1036,'Cybill Shepherd'),(1037,'Harvey Keitel'),(1038,'Jodie Foster'),(1039,'Peter Boyle'),(1040,'Leonard Harris'),(1041,'Diahnne Abbott'),(1042,'Frank Adu'),(1043,'Gino Ardito'),(1044,'Michael Chapman'),(1045,'Bernard Herrmann'),(1046,'Juliet Taylor'),(1047,'Tom Rolf'),(1048,'Melvin Shapiro'),(1049,'Charles Rosen'),(1050,'Herbert F. Mulligan'),(1051,'Ruth Morley'),(1052,'Rick Alexander'),(1053,'Gordon Davidson'),(1054,'James Fritch'),(1056,'Sam Gemette'),(1057,'David M. Horton'),(1058,'Bob Gale'),(1059,'Neil Canton'),(1060,'Dean Cundey'),(1061,'Harry Keramidas'),(1062,'Christopher Lloyd'),(1063,'Lea Thompson'),(1064,'Crispin Glover'),(1065,'Thomas F. Wilson'),(1066,'Claudia Wells'),(1067,'Marc McClure'),(1068,'Wendie Jo Sperber'),(1069,'George DiCenzo'),(1070,'Frances Lee McCain'),(1071,'Tom Tykwer'),(1072,'James Tolkan'),(1073,'Stefan Arndt'),(1074,'Harry Waters, Jr.'),(1075,'Johnny Klimek'),(1076,'Reinhold Heil'),(1077,'Frank Griebe'),(1078,'Mathilde Bonnefoy'),(1079,'Alexander Manasse'),(1080,'Monika Jacobs'),(1081,'Herbert Knaup'),(1082,'Nina Petri'),(1083,'Armin Rohde'),(1084,'Joachim Kru00f3l'),(1086,'Heino Ferch'),(1087,'Lars Rudolph'),(1088,'Ludger Pistor'),(1090,'John McTiernan'),(1091,'Joel Silver'),(1092,'Jim Thomas'),(1093,'Lawrence Gordon'),(1094,'John Thomas'),(1095,'Donald McAlpine'),(1096,'John Vallone'),(1097,'Jackie Burch'),(1098,'Mark Helfrich'),(1099,'John F. Link'),(1100,'Arnold Schwarzenegger'),(1101,'Carl Weathers'),(1102,'Elpidia Carrillo'),(1103,'Bill Duke'),(1104,'Jesse Ventura'),(1105,'Sonny Landham'),(1106,'Richard Chaves'),(1107,'R. G. Armstrong'),(1108,'Shane Black'),(1109,'Kevin Peter Hall'),(1112,'Hugo Luczyc-Wyhowski'),(1113,'Lucinda Syson'),(1114,'Jon Harris'),(1115,'Stephen Graham'),(1116,'Alan Ford'),(1117,'Dennis Farina'),(1118,'Rade Serbedzija'),(1119,'Robbie Gee'),(1120,'Lennie James'),(1121,'Benicio del Toro'),(1122,'Mike Reid'),(1123,'Andy Beckwith'),(1124,'William Beck'),(1125,'Ewen Bremner'),(1128,'Agnieszka Holland'),(1129,'Slawomir Idziak'),(1134,'Marin Karmitz'),(1135,'Zbigniew Preisner'),(1137,'Juliette Binoche'),(1145,'Zbigniew Zamachowski'),(1146,'Julie Delpy'),(1150,'Brian De Palma'),(1151,'Martin Bregman'),(1152,'Oliver Stone'),(1153,'John A. Alonzo'),(1154,'Giorgio Moroder'),(1155,'Ferdinando Scarfiotti'),(1156,'Alixe Gordin'),(1157,'David Ray'),(1158,'Al Pacino'),(1159,'Steven Bauer'),(1160,'Michelle Pfeiffer'),(1161,'Mary Elizabeth Mastrantonio'),(1162,'Robert Loggia'),(1163,'Miriam Colu00f3n'),(1164,'F. Murray Abraham'),(1165,'Paul Shenar'),(1166,'Harris Yulin'),(1167,'u00c1ngel Salazar'),(1168,'Arnaldo Santana'),(1169,'Pepe Serna'),(1170,'Michael P. Moran'),(1171,'Al Israel'),(1172,'Dennis Holahan'),(1173,'Mark Margolis'),(1174,'Peter Aalbu00e6k Jensen'),(1175,'Morten Su00f8borg'),(1176,'Lone Scherfig'),(1178,'Ju00f8rgen Johansson'),(1187,'Saul Stein'),(1201,'Garry Marshall'),(1202,'Steven Reuther'),(1203,'J. F. Lawton'),(1204,'Julia Roberts'),(1205,'Richard Gere'),(1206,'Jason Alexander'),(1208,'Ralph Bellamy'),(1209,'Elinor Donahue'),(1210,'Hu00e9ctor Elizondo'),(1211,'Larry Miller'),(1212,'Laura San Giacomo'),(1213,'James Newton Howard'),(1214,'Charles Minsky'),(1215,'Raja Gosnell'),(1217,'Priscilla Nedd-Friendly'),(1219,'Amy Yasbeck'),(1220,'Judith Baldwin'),(1221,'Dianne Crittenden'),(1222,'Albert Brenner'),(1223,'Joel Coen'),(1224,'Ethan Coen'),(1225,'Carter Burwell'),(1226,'Rick Heinrichs'),(1227,'John S. Lyons'),(1228,'Tricia Cooke'),(1229,'Jeff Bridges'),(1230,'John Goodman'),(1231,'Julianne Moore'),(1232,'David Huddleston'),(1233,'Philip Seymour Hoffman'),(1234,'Tara Reid'),(1235,'Philip Moon'),(1236,'Mark Pellegrino'),(1237,'Flea'),(1238,'Torsten Voges'),(1239,'Jimmie Dale Gilmore'),(1240,'Jack Kehler'),(1241,'John Turturro'),(1242,'James G. Hoosier'),(1243,'Woody Allen'),(1244,'Jonathan Rhys Meyers'),(1245,'Scarlett Johansson'),(1246,'Emily Mortimer'),(1247,'Matthew Goode'),(1248,'Brian Cox'),(1249,'Penelope Wilton'),(1250,'Alexander Armstrong'),(1251,'Remi Adefarasin'),(1252,'Alisa Lepselter'),(1253,'Jim Clay'),(1254,'Art Linson'),(1255,'David Mamet'),(1256,'Oscar Fraley'),(1257,'Eliot Ness'),(1258,'Stephen H. Burum'),(1259,'Ennio Morricone'),(1260,'William A. Elliott'),(1261,'Hal Gausman'),(1262,'Mali Finn'),(1263,'Lynn Stalmaster'),(1264,'Bill Pankow'),(1265,'Letty Aronson'),(1266,'Nicky Kentish Barnes'),(1268,'Stephen Tenenbaum'),(1269,'Kevin Costner'),(1270,'Charles Martin Smith'),(1271,'Andy Garcu00eda'),(1272,'Richard Bradford'),(1273,'Jack Kehoe'),(1274,'Brad Sullivan'),(1275,'Billy Drago'),(1276,'Patricia Clarkson'),(1277,'Vito D\'Ambrosio'),(1278,'Steven Goldstein'),(1279,'Peter Aylward'),(1280,'Don Harvey'),(1281,'Freddie Highmore'),(1282,'David Kelly'),(1283,'Helena Bonham Carter'),(1284,'Noah Taylor'),(1285,'AnnaSophia Robb'),(1286,'Julia Winter'),(1290,'Jordan Fry'),(1291,'Philip Wiegratz'),(1292,'James Fox'),(1293,'Franziska Troegner'),(1294,'Missi Pyle'),(1295,'Deep Roy'),(1296,'Bruce Berman'),(1297,'Richard D. Zanuck'),(1298,'Brad Grey'),(1299,'Roald Dahl'),(1300,'John August'),(1301,'Philippe Rousselot'),(1302,'Susie Figgis'),(1303,'Alex McDowell'),(1304,'Gabriella Pescucci'),(1305,'Bill Abbott'),(1307,'Bob Weinstein'),(1309,'Mark Ordesky'),(1310,'Saul Zaentz'),(1311,'Michael Lynne'),(1313,'Andrew Lesnie'),(1314,'Grant Major'),(1315,'John Gilbert'),(1316,'Joe Bleakley'),(1317,'Philip Ivey'),(1318,'Rob Outterside'),(1319,'Mark Robins'),(1320,'Alan Lee'),(1321,'John Howe'),(1322,'Ngila Dickson'),(1323,'Richard Taylor'),(1324,'Victoria Burrows'),(1325,'John Hubbard'),(1326,'Liz Mullane'),(1327,'Ian McKellen'),(1328,'Sean Astin'),(1329,'Billy Boyd'),(1330,'Dominic Monaghan'),(1331,'Hugo Weaving'),(1332,'Craig Parker'),(1333,'Andy Serkis'),(1334,'Feng Li'),(1335,'Wang Bin'),(1336,'Jet Li'),(1337,'Tony Leung Chiu-Wai'),(1338,'Maggie Cheung'),(1339,'Zhang Ziyi'),(1340,'Chen Dao-Ming'),(1341,'Donnie Yen'),(1342,'Liu Zhong Yuan'),(1343,'Zheng Tia Yong'),(1344,'Yan Qin'),(1345,'Chang Xiao Yang'),(1348,'Philip Lee'),(1349,'Shoufang Dou'),(1350,'Iru00e8ne Jacob'),(1351,'William Kong'),(1352,'Jean-Louis Trintignant'),(1353,'Zhang Weiping'),(1355,'Zhenyan Zhang'),(1356,'Jean-Pierre Lorit'),(1357,'Christopher Doyle'),(1358,'Tingxiao Huo'),(1360,'Dun Tan'),(1361,'Angie Lam'),(1362,'Vincent Lee'),(1363,'Ru Zhai'),(1364,'Zhenzhou Yi'),(1365,'Lawrence Makoare'),(1366,'Sala Baker'),(1367,'Alan Howard'),(1369,'Bernard Hill'),(1370,'Brad Dourif'),(1371,'David Wenham'),(1372,'Karl Urban'),(1373,'Dan Hennah'),(1374,'Elizabeth Fraser'),(1376,'Michael Horton'),(1377,'Jabez Olssen'),(1381,'John Noble'),(1382,'Paul Norell'),(1383,'Thomas Robins'),(1390,'Jamie Selkirk'),(1400,'Wojciech Kilar'),(1417,'Toshio Suzuki'),(1418,'Albert Maysles'),(1428,'Mick Jagger'),(1429,'Charlie Watts'),(1430,'Keith Richards'),(1459,'Tina Turner'),(1461,'George Clooney'),(1462,'Tim Blake Nelson'),(1465,'Chris Thomas King'),(1466,'Charles Durning'),(1467,'Del Pentecost'),(1468,'J.R. Horne'),(1469,'Brian Reddy'),(1470,'Wayne Duvall'),(1471,'Ed Gale'),(1472,'Ray McKinnon'),(1473,'Daniel von Bargen'),(1474,'Mia Tate'),(1475,'Musetta Vander'),(1476,'Christy Taylor'),(1478,'Millford Fortenberry'),(1479,'Frank Collison'),(1480,'Quinn Gasaway'),(1481,'Lee Weaver'),(1482,'John Cameron'),(1483,'T Bone Burnett'),(1484,'Ellen Chenoweth'),(1487,'Bob Dylan'),(1490,'Joan Baez'),(1496,'Tod Browning'),(1497,'Irving Thalberg'),(1503,'Willis Goldbeck'),(1505,'Edgar Allan Woolf'),(1509,'Roscoe Ates'),(1518,'Frances O\'Connor'),(1524,'Harold Ramis'),(1525,'Trevor Albert'),(1526,'Danny Rubin'),(1527,'John Bailey'),(1528,'George Fenton'),(1529,'David Nichols'),(1530,'Howard Feuer'),(1531,'Pembroke J. Herring'),(1532,'Bill Murray'),(1533,'Andie MacDowell'),(1534,'Chris Elliott'),(1535,'Brian Doyle-Murray'),(1536,'Marita Geraghty'),(1537,'Angela Paton'),(1538,'Rick Ducommun'),(1539,'Rick Overton'),(1540,'Robin Duke'),(1542,'Willie Garson'),(1544,'Bram Stoker'),(1546,'John L. Balderston'),(1551,'Philip Glass'),(1559,'Birgitte Hald'),(1560,'Morten Kaufmann'),(1562,'Iben Hjejle'),(1570,'Anthony Dod Mantle'),(1573,'Hans Mu00f8ller'),(1576,'Peter Darling'),(1577,'Richard Kelly'),(1578,'Holmes Osborne'),(1579,'Maggie Gyllenhaal'),(1580,'Daveigh Chase'),(1581,'Mary McDonnell'),(1582,'James Duval'),(1583,'Arthur Taxier'),(1584,'Mark Hoffman'),(1585,'Patience Cleveland'),(1586,'Adam Fields'),(1587,'Sean McKittrick'),(1588,'Nancy Juvonen'),(1589,'Michael Andrews'),(1590,'Steven Poster'),(1591,'Sam Bauer'),(1592,'Eric Strand'),(1593,'Joseph Middleton'),(1594,'Michelle Morris'),(1596,'Jennifer Barak'),(1597,'Michael Payne'),(1598,'David St. James'),(1599,'Jazzie Mahannah'),(1602,'Fele Martu00ednez'),(1603,'Daniel Gimu00e9nez Cacho'),(1607,'Juan Fernu00e1ndez'),(1610,'Javier Cu00e1mara'),(1614,'Ang Lee'),(1615,'Du Lu Wang'),(1617,'James Schamus'),(1618,'Kuo Jung Tsai'),(1619,'Chow Yun-fat'),(1620,'Michelle Yeoh'),(1622,'Chang Chen'),(1623,'Sihung Lung'),(1624,'Cheng Pei-Pei'),(1625,'Fa Zeng Li'),(1626,'Xian Gao'),(1627,'Yan Hai'),(1628,'De Ming Wang'),(1629,'Li Li'),(1632,'Robby Mu00fcller'),(1633,'Peter Pau'),(1634,'Anders Refn'),(1635,'Tim Squyres'),(1636,'Timmy Yip'),(1638,'Eugene Gearty'),(1639,'Emily Watson'),(1640,'Stellan Skarsgu00e5rd'),(1641,'Katrin Cartlidge'),(1642,'Jean-Marc Barr'),(1643,'Adrian Rawlins'),(1645,'Sandra Voe'),(1646,'Udo Kier'),(1650,'Franu00e7ois Truffaut'),(1653,'Jean-Pierre Lu00e9aud'),(1654,'Claire Maurier'),(1655,'Albert Ru00e9my'),(1657,'Henri Decau00eb'),(1663,'Marie-Josu00e8phe Yoyotte'),(1665,'Eddie Marsan'),(1666,'Julie Christie'),(1668,'Emmanuel Idowu'),(1670,'Daniel Mays'),(1677,'Izo Hashimoto'),(1678,'Mitsuo Iwata'),(1679,'Nozomu Sasaki'),(1680,'Mami Koyama'),(1681,'Tesshou Genda'),(1682,'Hiroshi Ohtake'),(1683,'Ku014dichi Kitamura'),(1684,'Yuriko Fuchizaki'),(1685,'Masaaki u014ckura'),(1686,'Takeshi Kusao'),(1687,'Kazuhiro Kamifuji'),(1688,'Tatsuhiko Nakamura'),(1689,'Fukue Itu00f4'),(1690,'Haruyo Kanesaku'),(1691,'Shunzo Kato'),(1692,'Yutaka Maseba'),(1694,'Hiroe Tsukamoto'),(1695,'Shoji Yamashiro'),(1696,'Katsuji Misawa'),(1697,'Takeshi Seyama'),(1698,'Kazuo Ebisawa'),(1699,'Yuji Ikehata'),(1700,'Koji Ono'),(1701,'Keiji Muraki'),(1702,'Hiruhiko Ono'),(1704,'Gore Verbinski'),(1705,'Ted Elliott'),(1706,'Terry Rossio'),(1707,'Stuart Beattie'),(1708,'Jay Wolpert'),(1709,'Jack Davenport'),(1710,'Lee Arenberg'),(1711,'Mackenzie Crook'),(1712,'Damian O\'Hare'),(1713,'Giles New'),(1714,'Angus Barnett'),(1715,'David Bailie'),(1716,'Michael Berry Jr.'),(1717,'Isaac C. Singleton Jr.'),(1718,'Brian Morris'),(1719,'Jennifer Alessi'),(1720,'Ronna Kress'),(1721,'Stephen E. Rivkin'),(1722,'Craig Wood'),(1723,'Walter Hill'),(1724,'Roger Spottiswoode'),(1725,'Larry Gross'),(1726,'Steven E. de Souza'),(1728,'Ric Waite'),(1729,'James Horner'),(1730,'Judith Holstra'),(1731,'Freeman A. Davies'),(1732,'Mark Warner'),(1733,'Nick Nolte'),(1734,'Annette O\'Toole'),(1735,'Frank McRae'),(1736,'James Remar'),(1737,'David Patrick Kelly'),(1739,'James Keane'),(1743,'Denise Crosby'),(1744,'Robert Wise'),(1745,'Gene Roddenberry'),(1746,'Alan Dean Foster'),(1747,'Harold Livingston'),(1748,'William Shatner'),(1749,'Leonard Nimoy'),(1750,'DeForest Kelley'),(1751,'James Doohan'),(1752,'George Takei'),(1753,'Nichelle Nichols'),(1754,'Walter Koenig'),(1755,'Majel Barrett'),(1756,'Stephen Collins'),(1757,'Persis Khambatta'),(1758,'Eugen Schu00fcfftan'),(1759,'Grace Lee Whitney'),(1760,'Jerry Goldsmith'),(1761,'Alexander Courage'),(1762,'Richard H. Kline'),(1763,'Leon Harris'),(1765,'Harold Michelson'),(1767,'Todd C. Ramsay'),(1768,'Marvin Paige'),(1769,'Sofia Coppola'),(1770,'Akiko Takeshita'),(1771,'Giovanni Ribisi'),(1772,'Anna Faris'),(1773,'Kazuyoshi Minamimagoe'),(1774,'Kazuko Shibata'),(1775,'Take'),(1776,'Francis Ford Coppola'),(1777,'Ross Katz'),(1779,'Kevin Shields'),(1781,'Lance Acord'),(1782,'Sarah Flack'),(1783,'K.K. Barrett'),(1784,'Anne Ross'),(1785,'Fumihiro Hayashi'),(1786,'Hiroko Kawasaki'),(1787,'Daikon'),(1788,'Nicholas Meyer'),(1790,'Robert Sallin'),(1791,'Harve Bennett'),(1792,'Jack B. Sowards'),(1793,'Ricardo Montalban'),(1794,'Bibi Besch'),(1795,'Merritt Butrick'),(1796,'Kirstie Alley'),(1797,'John Newton'),(1798,'Gayne Rescher'),(1799,'Michael Minor'),(1800,'Charles Graffeo'),(1801,'Robert Fletcher'),(1802,'Joseph R. Jennings'),(1803,'Mary V. Buck'),(1804,'William Paul Dornisch'),(1805,'Diana Ossana'),(1806,'Annie Proulx'),(1807,'Larry McMurtry'),(1808,'Geraldine Peroni'),(1809,'Dylan Tichenor'),(1810,'Heath Ledger'),(1811,'Randy Quaid'),(1812,'Michelle Williams'),(1813,'Anne Hathaway'),(1814,'Larry Reese'),(1815,'Valerie Planche'),(1816,'Marty Antonini'),(1817,'Linda Cardellini'),(1818,'Paul Winfield'),(1819,'Robin Curtis'),(1820,'Mark Lenard'),(1821,'Michael Elphick'),(1822,'Charles Correll'),(1823,'John E. Chilberg II'),(1824,'Tom Pedigo'),(1825,'Robert F. Shugrue'),(1826,'Mary Ann Barton'),(1827,'Elza Bergeron'),(1828,'Stuart Jensen'),(1829,'Carl Steven'),(1830,'Vadia Potenza'),(1831,'Stephen Manley'),(1832,'Joe W. Davis'),(1833,'Jamie Sives'),(1834,'Shirley Henderson'),(1836,'Julia Davis'),(1837,'Susan Vidler'),(1840,'Gordon Brown'),(1844,'Til Schweiger'),(1846,'Andru00e9 Hennicke'),(1851,'Alexander Berner'),(1852,'Jan Josef Liefers'),(1856,'Ralph Herforth'),(1859,'Christiane Paul'),(1870,'Gernot Roll'),(1871,'Ueli Christen'),(1872,'Torsten Breuer'),(1874,'Katja Riemann'),(1884,'Steven Soderbergh'),(1885,'George Clayton Johnson'),(1886,'Ted Griffin'),(1887,'Jack Golden Russell'),(1888,'Jerry Weintraub'),(1889,'David Holmes'),(1890,'Philip Messina'),(1891,'Stephen Mirrione'),(1892,'Matt Damon'),(1893,'Casey Affleck'),(1894,'Scott Caan'),(1895,'Carl Reiner'),(1896,'Don Cheadle'),(1897,'Bernie Mac'),(1898,'Eddie Jemison'),(1899,'Denise Di Novi'),(1900,'Shaobo Qin'),(1901,'Caroline Thompson'),(1902,'Dianne Wiest'),(1903,'Alan Arkin'),(1904,'Anthony Michael Hall'),(1905,'Vincent Price'),(1906,'Scott L. Schwartz'),(1907,'Kathy Baker'),(1908,'Robert Oliveri'),(1909,'Conchata Ferrell'),(1910,'Caroline Aaron'),(1911,'Dick Anthony Williams'),(1912,'O-Lan Jones'),(1913,'Susan Blommaert'),(1914,'Linda Perri'),(1915,'John Davidson'),(1916,'Biff Yeager'),(1917,'Colleen Halsey'),(1918,'Richard Halsey'),(1919,'Stefan Czapsky'),(1920,'Winona Ryder'),(1921,'George Nolfi'),(1922,'Catherine Zeta-Jones'),(1923,'Robbie Coltrane'),(1924,'Jeroen Krabbu00e9'),(1925,'Vincent Cassel'),(1926,'Eddie Izzard'),(1927,'Blake Edwards'),(1929,'Richard Shepherd'),(1930,'Truman Capote'),(1932,'Audrey Hepburn'),(1933,'George Peppard'),(1934,'Patricia Neal'),(1936,'Martin Balsam'),(1937,'Mickey Rooney'),(1938,'Henry Mancini'),(1939,'Philip H. Lathrop'),(1940,'Franz Planer'),(1943,'John McGiver'),(1946,'Beverly Powers'),(1947,'Stanley Adams'),(1951,'Elisabeth Shue'),(1952,'Jeffrey Weissman'),(1953,'Casey Siemaszko'),(1954,'Billy Zane'),(1955,'Darlene Vogel'),(1956,'Cherry Jones'),(1957,'Sophie Marceau'),(1966,'Jacques Bufnoir'),(1977,'Richard Bohringer'),(1978,'Iain Softley'),(1979,'Kevin Spacey'),(1980,'Mary McCormack'),(1981,'Alfre Woodard'),(1982,'Ajay Naidu'),(1983,'Vincent Laresca'),(1984,'Kimberly Scott'),(1985,'Saul Williams'),(1986,'Peter Gerety'),(1987,'Melanee Murray'),(1988,'Tracey Vilar'),(1989,'Celia Weston'),(1990,'Brian Howe'),(1991,'Tess McCarthy'),(1992,'Natasha Dorfhuber'),(1993,'Lloyd Levin'),(1994,'Robert F. Colesberry'),(1995,'Susan G. Pollock'),(1997,'Charles Leavitt'),(1998,'Gene Brewer'),(1999,'Ed Shearmur'),(2005,'Arthur Edeson'),(2007,'Lew Ayres'),(2009,'John Wray'),(2015,'William Bakewell'),(2019,'Steve Meerson'),(2020,'Peter Krikes'),(2021,'Jane Wyatt'),(2022,'Catherine Hicks'),(2024,'Joe Aubel'),(2025,'Nilo Rodis-Jamero'),(2026,'Peter Landsdown Smith'),(2027,'Leonard Rosenman'),(2031,'Amanda Mackey'),(2032,'Jack T. Collis'),(2033,'Peter E. Berger'),(2034,'Danny Boyle'),(2035,'Andrew Macdonald'),(2036,'Alex Garland'),(2037,'Cillian Murphy'),(2038,'Naomie Harris'),(2039,'Brendan Gleeson'),(2040,'Christopher Eccleston'),(2041,'Dr. Dre'),(2042,'Stephen Hopkins'),(2043,'John Davis'),(2044,'Peter Levy'),(2045,'Ferne Cassel'),(2046,'Bert Lovitt'),(2047,'Danny Glover'),(2048,'Gary Busey'),(2049,'Rubu00e9n Blades'),(2050,'Noah Huntley'),(2051,'Maru00eda Conchita Alonso'),(2052,'Christopher Dunne'),(2053,'Bill Paxton'),(2054,'Emma Hitching'),(2055,'Robert Davi'),(2056,'Alexander Delamere'),(2057,'Kim McGarrity'),(2058,'Megan Burns'),(2059,'Adam Baldwin'),(2060,'Alex Palmer'),(2061,'Bindu De Stoppani'),(2062,'Kent McCord'),(2063,'Jukka Hiltunen'),(2064,'Morton Downey, Jr.'),(2065,'David Schneider'),(2066,'Toby Sedgwick'),(2067,'Calvin Lockhart'),(2069,'Corey Rand'),(2070,'Chris Gill'),(2071,'Mark Tildesley'),(2072,'Lilyan Chauvin'),(2073,'Gail Stevens'),(2074,'Michael Mark Edmondson'),(2075,'David Loughery'),(2076,'David Warner'),(2077,'Laurence Luckinbill'),(2078,'Charles Cooper'),(2079,'Cynthia Gouw'),(2080,'Todd Bryant'),(2081,'George Murdock'),(2082,'Andrew Laszlo'),(2083,'Herman F. Zimmerman'),(2084,'Bill Shepard'),(2087,'Richard Fleischer'),(2088,'Jules Verne'),(2089,'Earl Felton'),(2090,'Kirk Douglas'),(2091,'James Mason'),(2092,'Paul Lukas'),(2093,'Steven-Charles Jaffe'),(2094,'Peter Lorre'),(2095,'Ralph Winter'),(2096,'Robert J. Wilke'),(2097,'Ted de Corsia'),(2098,'Carleton Young'),(2099,'J. M. Kerrigan'),(2100,'Lawrence Konner'),(2101,'Percy Helton'),(2102,'Ted Cooper'),(2103,'Mark Rosenthal'),(2104,'Denny Martin Flinn'),(2106,'Walt Disney'),(2107,'Paul J. Smith'),(2108,'Elmo Williams'),(2109,'Kim Cattrall'),(2110,'Harper Goff'),(2111,'Rosanna DeSoto'),(2112,'Brock Peters'),(2113,'C.O. Slyfield'),(2114,'G.R. Danner'),(2115,'Kurtwood Smith'),(2116,'Hiro Narita'),(2117,'Robert O. Cook'),(2118,'Mickey S. Michaels'),(2119,'Dodie Shepard'),(2120,'Cliff Eidelman'),(2121,'Mary Jo Slater'),(2122,'William Hoy'),(2123,'Ronald Roose'),(2124,'Iman'),(2127,'James Wan'),(2128,'Leigh Whannell'),(2130,'Cary Elwes'),(2131,'Ken Leung'),(2133,'Dina Meyer'),(2134,'Mike Butters'),(2135,'Paul Gutrecht'),(2136,'Michael Emerson'),(2137,'Benito Martinez'),(2138,'Shawnee Smith'),(2139,'Makenzie Vega Norfolk'),(2140,'Monica Potter'),(2141,'Ned Bellamy'),(2142,'Alexandra Bokyun Chun'),(2143,'Avner Garbi'),(2144,'Tobin Bell'),(2145,'Mark Burg'),(2146,'Gregg Hoffman'),(2147,'Oren Koules'),(2148,'Charlie Clouser'),(2149,'David A. Armstrong'),(2150,'Kevin Greutert'),(2151,'Amy Lippens'),(2152,'Alan Ball'),(2154,'Scott Bakula'),(2155,'Thora Birch'),(2157,'Robin Williams'),(2158,'Robert Garland'),(2160,'Carlo Varini'),(2161,'Debra Hill'),(2162,'Lynda Obst'),(2163,'Richard LaGravenese'),(2165,'Rosanna Arquette'),(2166,'Sergio Castellitto'),(2167,'Mercedes Ruehl'),(2168,'Jean Bouise'),(2169,'Michael Jeter'),(2171,'Griffin Dunne'),(2174,'Kimberly Beck'),(2176,'Tommy Lee Jones'),(2177,'Lloyd Bridges'),(2178,'Forest Whitaker'),(2179,'Suzy Amis'),(2182,'Pen Densham'),(2184,'Richard Barton Lewis'),(2185,'John Watson'),(2186,'Nathalie Cheron'),(2190,'Gu00e9rard Viard'),(2192,'Lambert Wilson'),(2197,'Daniel Russo'),(2199,'Scott Frank'),(2200,'Jon Cohen'),(2201,'Max von Sydow'),(2202,'Steve Harris'),(2203,'Neal McDonough'),(2205,'Jessica Capshaw'),(2206,'Samantha Morton'),(2207,'Lois Smith'),(2208,'Kathryn Morris'),(2209,'Jan de Bont'),(2210,'Bonnie Curtis'),(2211,'Gerald R. Molen'),(2212,'Walter F. Parkes'),(2213,'Matthew Ferraro'),(2214,'Paul Haslinger'),(2215,'Denise Chamian'),(2216,'Gary Rydstrom'),(2217,'Joseph Kanon'),(2219,'Tobey Maguire'),(2220,'Tony Curran'),(2221,'Leland Orser'),(2222,'Beau Bridges'),(2223,'Fred Savage'),(2224,'Christian Slater'),(2225,'Todd Holland'),(2226,'Sydney Pollack'),(2227,'Nicole Kidman'),(2228,'Sean Penn'),(2229,'Catherine Keener'),(2230,'Pam Grier'),(2231,'Samuel L. Jackson'),(2232,'Michael Keaton'),(2233,'Bridget Fonda'),(2234,'Michael Bowen'),(2235,'Elmore Leonard'),(2236,'Tim Bevan'),(2238,'Eric Fellner'),(2239,'Anthony Minghella'),(2240,'Darius Khondji'),(2241,'William Steinkamp'),(2242,'Ellen Lewis'),(2243,'Jon Hutman'),(2244,'Jesper Christensen'),(2245,'Yvan Attal'),(2246,'Earl Cameron'),(2247,'George Harris'),(2248,'Michael Wright'),(2249,'Clyde Kusatsu'),(2250,'Eric Keenleyside'),(2251,'Hugo Speer'),(2252,'Maz Jobrani'),(2253,'Yusuf Gatewood'),(2254,'Curtiss Cook'),(2255,'Byron Utley'),(2256,'Robert Clohessy'),(2257,'Terry Serpico'),(2258,'Stuart McQuarrie'),(2260,'Steven Zaillian'),(2261,'Martin Stellman'),(2264,'Patrick Magee'),(2265,'Adrienne Corri'),(2266,'Stephi Lineburg'),(2267,'Michael Bates'),(2268,'Warren Clarke'),(2274,'Miriam Karlin'),(2275,'Caitlin Clarke'),(2276,'Sheila Raynor'),(2277,'Loyd Catlett'),(2278,'Aubrey Morris'),(2279,'Godfrey Quigley'),(2280,'Clive Francis'),(2282,'Ben Kingsley'),(2283,'Stanley Tucci'),(2284,'Wendy Carlos'),(2285,'Rachel Elkind'),(2286,'John Alcott'),(2287,'Bill Butler'),(2288,'James Liggat'),(2289,'John Barry'),(2291,'Paul McGuigan'),(2293,'Frank Miller'),(2294,'Robert Rodriguez'),(2295,'Mickey Rourke'),(2296,'Clive Owen'),(2299,'Josh Hartnett'),(2302,'Adam Fogerty'),(2303,'Wim Wenders'),(2305,'Peter Handke'),(2306,'Richard Reitinger'),(2310,'Bruno Ganz'),(2311,'Otto Sander'),(2313,'Curt Bois'),(2314,'Peter Falk'),(2315,'Hans Martin Stier'),(2319,'Maria de Medeiros'),(2320,'Julian Richings'),(2321,'Jessica Amlee'),(2322,'Kenya Jo Kennedy'),(2323,'Camille Martinez'),(2324,'Heidi Levitt'),(2325,'Monika Mikkelsen'),(2326,'Shelley Bolton'),(2327,'Katia Stano'),(2328,'Manuel Corrales'),(2329,'Viorel Ghiocel'),(2330,'Patrick Ghislain'),(2331,'Albert Manera'),(2335,'Michael Weber'),(2339,'Julia Hummer'),(2340,'Barbara Auer'),(2341,'Richy Mu00fcller'),(2343,'Katharina Schu00fcttler'),(2344,'Gu00fcnther Maria Halmer'),(2349,'Bernd Tauber'),(2350,'Helene Weigel'),(2352,'Jean-Jacques Annaud'),(2355,'Andrew Birkin'),(2356,'Gu00e9rard Brach'),(2357,'Howard Franklin'),(2358,'Alain Godard'),(2359,'Jake Eberts'),(2360,'Thomas Schu00fchly'),(2361,'Tonino Delli Colli'),(2362,'Jane Seitz'),(2366,'Dante Ferretti'),(2368,'Elya Baskin'),(2369,'Michael Lonsdale'),(2372,'Ron Perlman'),(2374,'Dwight Weist'),(2380,'David Carson'),(2381,'Rick Berman'),(2383,'Peter Lauritson'),(2384,'Bernard Williams'),(2385,'Ronald D. Moore'),(2386,'Brannon Braga'),(2387,'Patrick Stewart'),(2388,'Jonathan Frakes'),(2390,'LeVar Burton'),(2391,'Michael Dorn'),(2392,'Gates McFadden'),(2393,'Marina Sirtis'),(2394,'Alan Ruck'),(2395,'Whoopi Goldberg'),(2396,'Sandy Veneziano'),(2397,'Robert Blackman'),(2398,'Dennis McCarthy'),(2399,'Junie Lowry-Johnson'),(2400,'Ron Surma'),(2401,'Jean-Marc Deschamps'),(2402,'Claudie Ossard'),(2404,'Arne Meerkamp van Embden'),(2405,'Audrey Tautou'),(2406,'Mathieu Kassovitz'),(2407,'Rufus'),(2408,'Jamel Debbouze'),(2409,'Lorella Cravotta'),(2410,'Serge Merlin'),(2411,'Clotilde Mollet'),(2412,'Isabelle Nanty'),(2413,'Dominique Pinon'),(2414,'Artus de Penguern'),(2415,'Yolande Moreau'),(2416,'Urbain Cancelier'),(2417,'Maurice Bu00e9nichou'),(2419,'Jean-Pierre Jeunet'),(2420,'Guillaume Laurant'),(2421,'Helmut Breuer'),(2422,'Yann Tiersen'),(2423,'Bruno Delbonnel'),(2424,'Pierre-Jacques Bu00e9nichou'),(2425,'Hervu00e9 Schneid'),(2429,'Aladar Laszlo'),(2435,'Herbert Marshall'),(2437,'Edward Everett Horton'),(2438,'C. Aubrey Smith'),(2440,'Bill Nighy'),(2441,'Tom Hollander'),(2443,'Bruce Hendricks'),(2444,'Mike Stenson'),(2445,'Eric McLeod'),(2446,'Chad Oman'),(2447,'Peter Kohn'),(2448,'Pat Sandston'),(2449,'Kevin McNally'),(2450,'Lauren Maher'),(2451,'Alex Norton'),(2452,'Vanessa Branch'),(2453,'Mary Steenburgen'),(2454,'Matt Clark'),(2455,'Christopher Wynne'),(2456,'Sean Sullivan'),(2457,'Mike Watson'),(2458,'Foster'),(2459,'Freddie'),(2460,'Randall Wallace'),(2461,'Mel Gibson'),(2462,'Catherine McCormack'),(2463,'Patrick McGoohan'),(2464,'Angus Macfadyen'),(2465,'James Robinson'),(2467,'James Cosmo'),(2468,'Sean McGinley'),(2469,'Gerda Stevenson'),(2470,'Mhairi Calvey'),(2471,'Jeanne Marine'),(2472,'Sean Lawlor'),(2473,'Sandy Nelson'),(2474,'Alan Tall'),(2475,'Andrew Weir'),(2476,'Peter Hanly'),(2477,'Stephen Billington'),(2478,'Tommy Flanagan'),(2479,'Rupert Vansittart'),(2480,'Tam White'),(2481,'Ian Bannen'),(2482,'David O\'Hara'),(2483,'John Toll'),(2484,'Steven Rosenblum'),(2485,'Patsy Pollock'),(2486,'Thomas E. Sanders'),(2487,'Bruce Davey'),(2488,'Alan Ladd, Jr.'),(2492,'Jack Benny'),(2493,'Robert Stack'),(2495,'Lionel Atwill'),(2502,'Charles Halton'),(2504,'Marty Hornstein'),(2505,'James Cromwell'),(2506,'Alice Krige'),(2507,'Matthew F. Leonetti'),(2508,'Ron Wilkinson'),(2511,'Anastasia Emmons'),(2512,'John W. Wheeler'),(2514,'Michael Piller'),(2516,'Anthony Zerbe'),(2517,'Donna Murphy'),(2518,'Gregg Henry'),(2519,'Sanja Milkovic Hays'),(2522,'Ludwig van Beethoven'),(2523,'Stuart Baird'),(2524,'Tom Hardy'),(2525,'Shannon Cochran'),(2527,'Cherie Baker'),(2528,'Donald B. Woodruff'),(2529,'Ronald R. Reiss'),(2530,'Bob Ringwood'),(2532,'Cathy Sandrich'),(2533,'Dallas Puett'),(2535,'Vivica A. Fox'),(2536,'Michael Parks'),(2537,'Sonny Chiba'),(2538,'Chiaki Kuriyama'),(2539,'Julie Dreyfus'),(2541,'Jun Kunimura'),(2542,'Kazuki Kitamura'),(2544,'Akaji Maro'),(2545,'Lawrence Bender'),(2547,'Bruce Boxleitner'),(2548,'Cindy Morgan'),(2549,'Barnard Hughes'),(2550,'Dan Shor'),(2551,'Marcia Lucas'),(2552,'E. Lee Perry'),(2553,'Jonathan T. Taplin'),(2554,'Mardik Martin'),(2555,'David Proval'),(2556,'Amy Robinson'),(2557,'Richard Romanus'),(2558,'Cesare Danova'),(2560,'Georges Arnaud'),(2561,'Victor Argo'),(2563,'George Memmoli'),(2564,'Lenny Scaletta'),(2567,'Peter van Eyck'),(2575,'Jean Bell'),(2576,'William Tubbs'),(2583,'Kent L. Wakeford'),(2585,'Eric Clapton'),(2588,'Sidney Levin'),(2589,'Terry George'),(2590,'Keir Pearson'),(2591,'Izidore Codron'),(2593,'Rupert Gregson-Williams'),(2596,'Robert Fraisse'),(2597,'Naomi Geraghty'),(2598,'Sophie Okonedo'),(2599,'Ofentse Modiselle'),(2600,'Mathabo Pieterson'),(2601,'Neil McCarthy'),(2602,'Desmond Dube'),(2603,'Hakeem Kae-Kazim'),(2606,'Tony Kgoroge'),(2607,'Fana Mokoena'),(2608,'Lebo Mashile'),(2609,'Leleti Khumalo'),(2612,'Mosa Kaiser'),(2613,'Lennox Mathabathe'),(2614,'Mothusi Magano'),(2617,'Cara Seymour'),(2618,'Mduduzi Mabaso'),(2619,'Simo Mogwaza'),(2620,'Harriet Lenabe'),(2621,'A. Kitman Ho'),(2622,'Martin Russell'),(2623,'Moonyeenn Lee'),(2624,'Richard Pagano'),(2625,'Johnny Breedt'),(2626,'Tony Burrough'),(2627,'Ade'),(2628,'Kiefer Sutherland'),(2629,'Alun Armstrong'),(2630,'Nastassja Kinski'),(2632,'Chris Rock'),(2633,'John Goldsmith'),(2635,'Shaheen Baig'),(2636,'Alfred Hitchcock'),(2637,'Ernest Lehman'),(2638,'Cary Grant'),(2639,'Eva Marie Saint'),(2641,'Martin Landau'),(2642,'Leo G. Carroll'),(2644,'Philip Ober'),(2647,'Robert Ellenstein'),(2649,'Philip Coolidge'),(2651,'Edward Binns'),(2653,'Herbert Coleman'),(2654,'Robert Burks'),(2655,'George Tomasini'),(2656,'Leonard Murphy'),(2657,'Robert F. Boyle'),(2658,'Van Allen James'),(2662,'Frank Capra'),(2663,'Jack Warner'),(2665,'Julius J. Epstein'),(2666,'Philip G. Epstein'),(2669,'Raymond Massey'),(2672,'Jack Carson'),(2673,'John Ridgely'),(2675,'Darren Lynn Bousman'),(2676,'Kim Roberts'),(2677,'Bahar Soomekh'),(2678,'Stephanie Gorin'),(2679,'David Hackl'),(2680,'Donnie Wahlberg'),(2681,'Erik Knudsen'),(2682,'Franky G'),(2683,'Glenn Plummer'),(2684,'Emmanuelle Vaugier'),(2685,'Beverley Mitchell'),(2686,'Tim Burd'),(2687,'Lyriq Bent'),(2688,'Mark Gingras'),(2689,'Jeff Nathanson'),(2690,'Peter Weir'),(2691,'Tom Schulman'),(2692,'Robert Sean Leonard'),(2693,'Gale Hansen'),(2694,'Josh Charles'),(2695,'Dylan Kussman'),(2696,'Allelon Ruggiero'),(2697,'James Waterston'),(2698,'Norman Lloyd'),(2699,'Carla Belver'),(2700,'Leon Pownall'),(2701,'George Martin'),(2702,'John Seale'),(2704,'Maurice Jarre'),(2705,'William M. Anderson'),(2706,'Steven Haft'),(2707,'Paul Junger Witt'),(2708,'Tony Thomas'),(2709,'Wendy Stites'),(2710,'James Cameron'),(2711,'William Wisher Jr.'),(2712,'Michael Biehn'),(2713,'Linda Hamilton'),(2714,'Lance Henriksen'),(2715,'Bess Motta'),(2716,'Earl Boen'),(2717,'Rick Rossovich'),(2719,'Brian Thompson'),(2720,'Derek Gibson'),(2721,'John Daly'),(2722,'Brad Fiedel'),(2723,'Adam Greenberg'),(2724,'Stanzi Stokes'),(2744,'Carmen Maura'),(2746,'Elia Kazan'),(2749,'James Dean'),(2750,'Julie Harris'),(2753,'Burl Ives'),(2755,'Albert Dekker'),(2757,'Nick Dennis'),(2759,'Lola Dueu00f1as'),(2760,'Ted D. McCord'),(2761,'Owen Marks'),(2763,'James Basevi'),(2765,'Nicholas Ray'),(2766,'David Weisbart'),(2769,'Natalie Wood'),(2770,'Sal Mineo'),(2771,'Jim Backus'),(2772,'Ann Doran'),(2773,'William H. Ziegler'),(2774,'Ernest Haller'),(2777,'Rochelle Hudson'),(2778,'Dennis Hopper'),(2782,'Ian Wolfe'),(2783,'Frank Mazzola'),(2784,'Robert Foulk'),(2790,'Marietta Canty'),(2794,'Robert Baberske'),(2798,'Walter Ruttmann'),(2800,'Marc Perrier'),(2829,'Andrzej Seweryn'),(2831,'Jerzy Trela'),(2836,'Kimberly Peirce'),(2837,'Andy Bienen'),(2838,'Chlou00eb Sevigny'),(2839,'Brendan Sexton III'),(2841,'Alison Folland'),(2842,'Jeannetta Arnette'),(2843,'Rob Campbell'),(2844,'Matt McGrath'),(2845,'Cheyenne Rushing'),(2846,'Robert Prentiss'),(2847,'Josh Ridgway'),(2848,'Craig Erickson'),(2849,'Stephanie Sechrist'),(2850,'Jerry Haynes'),(2851,'Lou Perryman'),(2852,'Lisa Renee Wilson'),(2853,'Jackson D. Kane'),(2854,'Joseph Gibson'),(2855,'Michael Tripp'),(2856,'Shana McClendon'),(2857,'Libby Villari'),(2858,'Paige Carl Griggs'),(2859,'Gail Cronauer'),(2860,'John Hart'),(2861,'Eva Kolodner'),(2862,'Christine Vachon'),(2863,'Nathan Larson'),(2864,'Jim Denault'),(2865,'Tracy Granger'),(2866,'Lee Percy'),(2867,'Michael Shaw'),(2868,'S.E. Hinton'),(2869,'Kathleen Rowell'),(2870,'Gray Frederickson'),(2871,'Fred Roos'),(2872,'Carmine Coppola'),(2873,'Anne Goursaud'),(2874,'Janet Hirshenson'),(2875,'Dean Tavoularis'),(2876,'Matt Dillon'),(2877,'Ralph Macchio'),(2878,'C. Thomas Howell'),(2879,'Rob Lowe'),(2880,'Emilio Estevez'),(2881,'Glenn Withrow'),(2882,'Diane Lane'),(2883,'Leif Garrett'),(2884,'Darren Dalton'),(2885,'Michelle Meyrink'),(2886,'Gailard Sartain'),(2887,'Tom Waits'),(2888,'Will Smith'),(2889,'Richard Beggs'),(2890,'Jeffrey Sharp'),(2896,'Marlene Dietrich'),(2917,'James Whale'),(2925,'Ernest Thesiger'),(2926,'Elsa Lanchester'),(2927,'Gavin Gordon'),(2930,'E.E. Clive'),(2931,'Lucien Prival'),(2934,'Mary Gordon'),(2941,'Norman Ainsley'),(2945,'Stephen Gaghan'),(2946,'Jennifer Fox'),(2947,'Georgia Kacandes'),(2948,'Michael Nozik'),(2949,'Alexandre Desplat'),(2950,'Robert Elswit'),(2951,'Estelle Crottaz'),(2952,'Avy Kaufman'),(2953,'Lora Kennedy'),(2954,'Jeffrey Wright'),(2955,'Chris Cooper'),(2956,'Amanda Peet'),(2957,'Alexander Siddig'),(2958,'Diana Scarwid'),(2959,'Kayvan Novak'),(2960,'Amr Waked'),(2962,'Robert Foxworth'),(2963,'Nicolas Cage'),(2964,'Nicky Henson'),(2965,'Nicholas Art'),(2966,'Steven Hinkle'),(2967,'Daisy Tormu00e9'),(2968,'Richard Lintern'),(2969,'Chris Penn'),(2970,'Jocelyn Quivrin'),(2971,'Mazhar Munir'),(2972,'Shahid Ahmed'),(2973,'Bikram Singh Bhamra'),(2974,'Roger Yuan'),(2975,'Laurence Fishburne'),(2977,'Jamey Sheridan'),(2978,'Max Minghella'),(2979,'Michael Higgins'),(2980,'Nadim Sawalha'),(2981,'Akbar Kurtha'),(2982,'Sonnell Dadral'),(2983,'Mark Strong'),(2984,'Badria Timimi'),(2985,'Robert Baer'),(2986,'Doug Claybourne'),(2987,'Stewart Copeland'),(2988,'Barry Malkin'),(2989,'Richard Price'),(2993,'Martin Ransohoff'),(2995,'Stuart H. Pappu00e9'),(2997,'Scott Rudin'),(2999,'John Jay Moore'),(3001,'Conrad Veidt'),(3006,'Toni Kalem'),(3007,'Hans Heinrich von Twardowski'),(3008,'Alan Rosenberg'),(3009,'Jim Youngs'),(3010,'Tony Ganios'),(3011,'Linda Manz'),(3013,'Erland van Lidth'),(3014,'Val Avery'),(3015,'Dolph Sweet'),(3019,'Olympia Dukakis'),(3026,'Rob Reiner'),(3027,'Stephen King'),(3028,'Bruce A. Evans'),(3029,'Raynold Gideon'),(3030,'Andrew Scheinman'),(3031,'Thomas Del Ruth'),(3032,'Robert Leighton'),(3033,'Wil Wheaton'),(3034,'Corey Feldman'),(3035,'Jerry O\'Connell'),(3036,'John Cusack'),(3037,'Richard Dreyfuss'),(3038,'Gary Riley'),(3039,'Bradley Gregg'),(3040,'Jason Oliver'),(3041,'Marshall Bell'),(3042,'Bruce Kirby'),(3043,'William Bronder'),(3044,'Scott Beach'),(3045,'P.J. Hogan'),(3048,'Peter Best'),(3049,'Martin McGrath'),(3050,'Jill Bilcock'),(3051,'Toni Collette'),(3052,'Rachel Griffiths'),(3056,'Jeremy Thomas'),(3061,'Ewan McGregor'),(3062,'Daniel Wyllie'),(3063,'Tilda Swinton'),(3064,'Peter Mullan'),(3065,'Jack McElhone'),(3068,'Matt Day'),(3069,'Therese Bradley'),(3070,'Chris Haywood'),(3071,'Ewan Stewart'),(3072,'Daniel Lapaine'),(3075,'Rory McCann'),(3076,'Ian Hanmore'),(3077,'Anne Marie Timoney'),(3078,'David Byrne'),(3079,'Giles Nuttgens'),(3080,'Colin Monie'),(3081,'Des Hamilton'),(3082,'Laurence Dorman'),(3083,'Mario Puzo'),(3084,'Marlon Brando'),(3085,'James Caan'),(3086,'Richard S. Castellano'),(3087,'Robert Duvall'),(3088,'Sterling Hayden'),(3090,'Richard Conte'),(3091,'Al Lettieri'),(3092,'Diane Keaton'),(3093,'Abe Vigoda'),(3094,'Talia Shire'),(3095,'Gianni Russo'),(3096,'John Cazale'),(3097,'Gordon Willis'),(3098,'Nino Rota'),(3099,'William Reynolds'),(3100,'Peter Zinner'),(3101,'Andrea Eastman'),(3102,'Howard Beals'),(3103,'Charles Grenzbach'),(3104,'Chris Newman'),(3105,'Richard Portman'),(3106,'John C. Hammell'),(3108,'Alison Barrett'),(3110,'Allison Anders'),(3111,'Alexandre Rockwell'),(3113,'Guillermo Navarro'),(3114,'Phil Parmet'),(3115,'Andrzej Sekula'),(3116,'Combustible Edison'),(3117,'Gary Frutkoff'),(3118,'Russell Gray'),(3119,'Lance Brown'),(3121,'Elena Maganini'),(3122,'Sammi Davis'),(3123,'Amanda de Cadenet'),(3124,'Valeria Golino'),(3125,'Madonna'),(3126,'Ione Skye'),(3127,'Lili Taylor'),(3128,'Alicia Witt'),(3129,'Tim Roth'),(3130,'Jennifer Beals'),(3131,'Antonio Banderas'),(3132,'Lana McKissack'),(3133,'Patricia Vonne'),(3134,'Tamlyn Tomita'),(3135,'Danny Verduzco'),(3136,'Salma Hayek'),(3137,'Paul Calderon'),(3138,'Kathy Griffin'),(3140,'Marc Lawrence'),(3141,'Marisa Tomei'),(3142,'John Marley'),(3143,'Rudy Bond'),(3144,'Al Martino'),(3145,'Simonetta Stefanelli'),(3146,'Billy Wilder'),(3147,'I. A. L. Diamond'),(3148,'Charles Lang'),(3149,'Marilyn Monroe'),(3150,'Tony Curtis'),(3151,'Jack Lemmon'),(3152,'George Raft'),(3155,'Pat Ou2019Brien'),(3156,'Joe E. Brown'),(3157,'Robert Thoeren'),(3158,'Michael Logan'),(3159,'Doane Harrison'),(3160,'Nehemiah Persoff'),(3161,'Joan Shawlee'),(3163,'George E. Stone'),(3168,'Barbara Drew'),(3170,'Mona Skager'),(3171,'Lee Strasberg'),(3172,'Michael V. Gazzo'),(3173,'G. D. Spradlin'),(3174,'Richard Bright'),(3175,'Richard Marks'),(3176,'Vic Ramos'),(3177,'Mark Berger'),(3178,'Nathan Boxer'),(3179,'George Brand'),(3180,'David Veloz'),(3181,'Richard Rutowski'),(3182,'Jane Hamsher'),(3183,'Don Murphy'),(3184,'Clayton Townsend'),(3186,'Trent Reznor'),(3188,'Victor Kempster'),(3189,'Brian Berdan'),(3190,'Hank Corwin'),(3191,'Risa Bramon Garcia'),(3192,'Billy Hopkins'),(3193,'Scott Martin Gershin'),(3196,'Juliette Lewis'),(3197,'Tom Sizemore'),(3198,'Rodney Dangerfield'),(3199,'Everett Quinton'),(3201,'Pruitt Taylor Vince'),(3202,'Edie McClurg'),(3203,'Russell Means'),(3204,'Lanny Flaherty'),(3205,'Richard Lineback'),(3206,'Kirk Baltz'),(3208,'Maria Pitillo'),(3209,'Josh Richman'),(3210,'Sean Stone'),(3211,'Dale Dye'),(3212,'Evan Handler'),(3214,'Steven Wright'),(3216,'Jim Carrane'),(3217,'Robert Swan'),(3218,'Louis Lombardi'),(3219,'Fred Fuchs'),(3220,'Nicholas Gage'),(3221,'Marina Gefter'),(3222,'Charles Mulvehill'),(3223,'Robert Downey Jr.'),(3224,'Stephen Frears'),(3225,'Nick Hornby'),(3226,'D.V. DeVincentis'),(3227,'Steve Pink'),(3228,'Scott Rosenberg'),(3229,'Arliss Howard'),(3230,'Todd Louiso'),(3232,'Lisa Bonet'),(3234,'Joan Cusack'),(3235,'Chris Rehmann'),(3236,'Ben Carr'),(3237,'Joelle Carter'),(3238,'Merian C. Cooper'),(3244,'Bruce Cabot'),(3247,'Noble Johnson'),(3248,'David O. Selznick'),(3249,'Max Steiner'),(3255,'Carroll Clark'),(3257,'Eddie Harman'),(3258,'Murray Spivack'),(3262,'James Flavin'),(3264,'Rudd Simmons'),(3265,'Eli Wallach'),(3266,'Joe Mantegna'),(3267,'George Hamilton'),(3268,'Raf Vallone'),(3269,'Franc D\'Ambrosio'),(3270,'Natasha Gregson Wagner'),(3271,'Shannon Stillo'),(3272,'Drake Bell'),(3273,'Laura Whyte'),(3274,'Lisa Fruchtman'),(3275,'Jane Jenkins'),(3276,'Roger Mussenden'),(3277,'Andy Aaron'),(3278,'Mark Adler'),(3279,'Francesca De Sapio'),(3280,'Oreste Baldini'),(3281,'Gastone Moschin'),(3282,'Sara Gilbert'),(3283,'Margaret Travolta'),(3284,'Bruce Springsteen'),(3285,'Seamus McGarvey'),(3286,'David Chapman'),(3287,'Thu00e9ru00e8se DePrez'),(3288,'Chris Weitz'),(3289,'Paul Weitz'),(3290,'Peter Hedges'),(3291,'Hugh Grant'),(3292,'Nicholas Hoult'),(3293,'Rachel Weisz'),(3294,'Sharon Small'),(3295,'Madison Cook'),(3296,'Jordan Cook'),(3297,'Nicholas Hutchison'),(3298,'Ryan Speechley'),(3299,'Joseph Speechley'),(3300,'Natalia Tena'),(3301,'Isabel Brook'),(3302,'Orlando Thor Newman'),(3303,'Russell Barr'),(3304,'Brad Epstein'),(3305,'Jane Rosenthal'),(3306,'Denise Stephenson'),(3307,'Peter Roy'),(3308,'Rosalind Knight'),(3309,'Augustus Prew'),(3310,'Nick Moore'),(3311,'Priscilla John'),(3314,'Badly Drawn Boy'),(3315,'Victoria Smurfit'),(3317,'Takeshi Kitano'),(3333,'Giuseppe Sillato'),(3334,'Lionel White'),(3335,'Jim Thompson'),(3336,'Coleen Gray'),(3338,'Jay C. Flippen'),(3339,'Elisha Cook Jr.'),(3340,'Marie Windsor'),(3342,'James Edwards'),(3345,'Tito Vuolo'),(3346,'Dorothy Adams'),(3347,'James Griffith'),(3349,'James B. Harris'),(3351,'Lucien Ballard'),(3353,'Daphne Du Maurier'),(3354,'Philip MacDonald'),(3355,'W. Donn Hayes'),(3356,'George Barnes'),(3357,'Jack Cosgrove'),(3358,'Lyle R. Wheeler'),(3359,'Laurence Olivier'),(3360,'Joan Fontaine'),(3361,'George Sanders'),(3362,'Judith Anderson'),(3363,'Nigel Bruce'),(3364,'Reginald Denny'),(3366,'Gladys Cooper'),(3367,'Florence Bates'),(3368,'Leonard Carey'),(3369,'Lumsden Hare'),(3370,'Edward Fielding'),(3371,'Forrester Harvey'),(3372,'Philip Winter'),(3373,'Arthur Johns'),(3374,'Jack Noyes'),(3375,'Walter Scharf'),(3376,'Hal Kanter'),(3377,'Harry Tugend'),(3380,'Bette Davis'),(3381,'Glenn Ford'),(3382,'Hope Lange'),(3383,'Thomas Mitchell'),(3384,'Peter Mann'),(3386,'Robert E. Sherwood'),(3387,'Joseph B. Platt'),(3388,'James L. Brooks'),(3389,'Michael J. Leeson'),(3390,'Warren Adler'),(3391,'Kathleen Turner'),(3392,'Michael Douglas'),(3393,'David Newman'),(3394,'Lynzee Klingman'),(3397,'Dejan u010cukiu0107'),(3398,'Kim Bodnia'),(3409,'Lasse Lunderskov'),(3413,'Victor Rendina'),(3414,'Tony Giorgio'),(3415,'Jerry Zucker'),(3416,'Demi Moore'),(3417,'Tony Goldwyn'),(3418,'Vincent Schiavelli'),(3419,'Vivian Bonnell'),(3420,'Armelia McQueen'),(3422,'Gail Boggs'),(3424,'Angelina Estrada'),(3425,'Augie Blunt'),(3427,'Lisa Weinstein'),(3428,'Howard W. Koch'),(3429,'Jane Musky'),(3430,'Clayton Collins'),(3431,'Bruce Joel Rubin'),(3432,'Rick Aviles'),(3433,'Phil Leeds'),(3434,'Alma Beltran'),(3442,'Mickey Shaughnessy'),(3448,'Jimmy Van Heusen'),(3449,'Frank P. Keller'),(3450,'Joseph Sistrom'),(3451,'Mel Stuart'),(3452,'Stan Margulies'),(3453,'David L. Wolper'),(3454,'Arthur Ibbetson'),(3455,'David Saxon'),(3456,'Helen Colvig'),(3457,'Logan Frazee'),(3458,'Pia Arnold'),(3459,'Renate Neuchl'),(3460,'Gene Wilder'),(3461,'Jack Albertson'),(3462,'Peter Ostrum'),(3463,'Roy Kinnear'),(3464,'Julie Dawn Cole'),(3467,'Leonard Stone'),(3468,'Denise Nickerson'),(3469,'Nora Denney'),(3470,'Paris Themmen'),(3471,'Ursula Reit'),(3473,'Diana Sowle'),(3474,'Aubrey Woods'),(3475,'David Battley'),(3476,'Peter Capell'),(3478,'Pat Coombs'),(3479,'Karsten Ullrich'),(3480,'Blanca Portillo'),(3481,'Yohana Cobo'),(3482,'Chus Lampreave'),(3483,'Antonio de la Torre'),(3489,'Naomi Watts'),(3490,'Adrien Brody'),(3491,'Thomas Kretschmann'),(3492,'Colin Hanks'),(3493,'Evan Parke'),(3494,'Lobo Chan'),(3495,'John Sumner'),(3496,'Craig Hall'),(3497,'Kyle Chandler'),(3498,'Bill Johnson'),(3499,'David Long'),(3500,'Mel Wesson'),(3501,'Daniel Hubbard'),(3502,'Terry Ryan'),(3503,'Brent Burge'),(3504,'David Farmer'),(3505,'Jan Blenkin'),(3506,'Carolynne Cunningham'),(3507,'Claude Jade'),(3515,'Martine Ferriu00e8re'),(3524,'Marcel Berbert'),(3525,'Denys Clerval'),(3526,'Agnu00e8s Guillemot'),(3527,'Claude Pignot'),(3528,'Renu00e9 Levert'),(3529,'Antoine Duhamel'),(3535,'Georges Delerue'),(3540,'Raoul Coutard'),(3541,'David Pittu'),(3542,'Barney Clark'),(3543,'Jamie Foreman'),(3544,'Harry Eden'),(3545,'Edward Hardwicke'),(3546,'Leanne Rowe'),(3547,'Ian McNeice'),(3548,'Timothy Bateson'),(3549,'Andy Linden'),(3550,'Teresa Churcher'),(3551,'Jake Curran'),(3552,'Turbo'),(3553,'Lewis Chase'),(3554,'Levi Hayes'),(3555,'Jeremy Swift'),(3556,'Roman Polanski'),(3557,'Charles Dickens'),(3558,'Ronald Harwood'),(3559,'Robert Benmussa'),(3560,'Alain Sarde'),(3561,'Pawel Edelman'),(3562,'Rachel Portman'),(3563,'Allan Starski'),(3564,'Hervu00e9 de Luze'),(3565,'Gillian Hanna'),(3566,'Chris Overton'),(3567,'Michael Heath'),(3568,'Patrick Godfrey'),(3569,'Nu00e9stor Almendros'),(3571,'Jacques Maumont'),(3593,'Daniel Mesguich'),(3610,'Madeleine Carroll'),(3616,'Leslie Bricusse'),(3617,'Gu00fcnter Meisner'),(3623,'Elena Anaya'),(3627,'Paz Vega'),(3629,'Sara Bilbatu00faa'),(3631,'Sonia Grande'),(3632,'Richard Brooks'),(3633,'Lawrence Weingarten'),(3634,'Tennessee Williams'),(3635,'Elizabeth Taylor'),(3636,'Paul Newman'),(3637,'William H. Daniels'),(3638,'James Poe'),(3639,'Madeleine Sherwood'),(3640,'Larry Gates'),(3641,'Vaughn Taylor'),(3642,'Charles Wolcott'),(3643,'Ferris Webster'),(3644,'Dean Smith'),(3645,'Lee LeBlanc'),(3646,'Wesley C. Miller'),(3647,'Helen Rose'),(3648,'Henry Grace'),(3649,'Robert Priestley'),(3653,'Josu00e9 Luis Torrijo'),(3656,'Affonso Beato'),(3657,'Bina Daigeler'),(3658,'Robert Greenhut'),(3659,'Fred Schuler'),(3661,'Thelma Schoonmaker'),(3662,'Cis Corman'),(3663,'Jerry Lewis'),(3664,'Sandra Bernhard'),(3665,'Shelley Hack'),(3672,'Peggy Ashcroft'),(3683,'Paco Delgado'),(3685,'Koko Maeda'),(3686,'Johanna Ray'),(3687,'Harry Cohen'),(3697,'Steve Daly'),(3700,'Dirk Jacob'),(3701,'Frank Behnke'),(3702,'Sebastian Schipper'),(3703,'Ute Lubosch'),(3704,'Julia Lindig'),(3705,'Andreas Petri'),(3706,'Klaus Mu00fcller'),(3707,'Utz Krause'),(3708,'Volkhart Buff'),(3709,'Maria Ku00f6pf'),(3710,'Jaimz Woolvett'),(3711,'Anna Levine'),(3712,'Saul Rubinek'),(3713,'Frances Fisher'),(3714,'David Mucci'),(3715,'Anthony James'),(3717,'Julian Ludwig'),(3718,'David Valdes'),(3719,'Adrian Gorton'),(3720,'Rick Roberts'),(3721,'Janice Blackie-Goodine'),(3722,'Hans Weingartner'),(3723,'Alycia Aumuller'),(3724,'Judy Henderson'),(3725,'Florian Reichmann'),(3726,'Florentina Welley'),(3727,'John Sloss'),(3728,'Diabolo'),(3729,'Denis Evrard'),(3730,'Albert Delpy'),(3731,'Marie Pillet'),(3732,'Baptiste Glaymann'),(3733,'Thierry Delettre'),(3735,'Dominik Castell'),(3736,'Bilge Jeschim'),(3737,'Harold Waiglein'),(3738,'Haymon Maria Buttinger'),(3739,'Kurti'),(3750,'Monika Bauert'),(3752,'Zelda Cleaver'),(3753,'Giancarlo Giannini'),(3754,'Mel Ferrer'),(3757,'Gottfried John'),(3769,'Michael Ballhaus'),(3771,'Rolf Zehetbauer'),(3776,'Jean-Luc Godard'),(3777,'Joseph E. Levine'),(3778,'Carlo Ponti'),(3779,'Georges de Beauregard'),(3780,'Alberto Moravia'),(3783,'Brigitte Bardot'),(3784,'Michel Piccoli'),(3785,'Jack Palance'),(3788,'Jorge Guerricaechevarru00eda'),(3791,'Ruth Rendell'),(3794,'Bob Kane'),(3795,'Sam Hamm'),(3796,'Michael Gough'),(3798,'Pat Hingle'),(3799,'Billy Dee Williams'),(3800,'Jerry Hall'),(3801,'Tracey Walter'),(3802,'Lee Wallace'),(3803,'Edwin Craig'),(3804,'Peter Guber'),(3805,'Jon Peters'),(3806,'Marion Dougherty'),(3807,'Anton Furst'),(3809,'Francesca Neri'),(3810,'Javier Bardem'),(3813,'Alex Angulo'),(3822,'u00c1ngela Molina'),(3829,'Jean-Paul Belmondo'),(3830,'Jean Seberg'),(3831,'Jean-Pierre Melville'),(3855,'Per Oscarsson'),(3868,'Waldemar Bergendahl'),(3872,'Daniel Bru00fchl'),(3893,'David S. Goyer'),(3894,'Christian Bale'),(3895,'Michael Caine'),(3896,'Liam Neeson'),(3897,'Katie Holmes'),(3898,'David Bretherton'),(3899,'Ken Watanabe'),(3900,'Linus Roache'),(3901,'Richard Brake'),(3902,'Sara Stewart'),(3904,'Lee Smith'),(3905,'William H. Macy'),(3907,'Harve Presnell'),(3908,'Tony Denman'),(3909,'Gary Houston'),(3910,'Frances McDormand'),(3911,'John Carroll Lynch'),(3912,'Sally Wingert'),(3922,'Joyce Nettles'),(3923,'Job Gosschalk'),(3924,'Jean-Paul Meurisse'),(3925,'Eric Kress'),(3926,'Albert Finney'),(3930,'Phoebe Nicholls'),(3932,'Julia Jentsch'),(3933,'Stipe Erceg'),(3934,'Burghart Klauu00dfner'),(3945,'Charles D. Hall'),(3950,'Len Wiseman'),(3952,'Kevin Grevioux'),(3953,'Gary Lucchesi'),(3954,'Richard S. Wright'),(3955,'Skip Williamson'),(3956,'Henry Winterstern'),(3957,'Terry McKay'),(3958,'James McQuaide'),(3959,'Robert Bernacchi'),(3960,'Tony Pierce-Roberts'),(3961,'Martin Hunter'),(3962,'Wendy Partridge'),(3963,'Claude Letessier'),(3964,'Patrick Tatopoulos'),(3965,'Deborah Aquila'),(3967,'Kate Beckinsale'),(3968,'Michael Sheen'),(3969,'Shane Brolly'),(3970,'Erwin Leder'),(3971,'Sophia Myles'),(3972,'Wentworth Miller'),(3973,'Mark Egerton'),(3974,'Milou0161 Forman'),(3975,'Peter Shaffer'),(3976,'Steven C. McGee'),(3977,'Joe Morton'),(3978,'S. Epatha Merkerson'),(3979,'Castulo Guerra'),(3980,'Danny Cooksey'),(3981,'Jenette Goldstein'),(3982,'Xander Berkeley'),(3983,'B.J. Rack'),(3984,'Stephanie Austin'),(3985,'Richard A. Harris'),(3986,'Mario Kassar'),(3987,'Conrad Buff IV'),(3988,'Joseph P. Lucky'),(3989,'Marlene Stewart'),(3990,'Ed French'),(3991,'Nicholas R. Allen'),(3992,'Gloria S. Borders'),(3993,'Dennis Muren'),(3995,'Jeff Dawn'),(3996,'Tom Johnson'),(3999,'Tom Hulce'),(4000,'Elizabeth Berridge'),(4001,'Simon Callow'),(4002,'Roy Dotrice'),(4003,'Christine Ebersole'),(4004,'Jeffrey Jones'),(4005,'Barbara Bryne'),(4006,'Michael Hausman'),(4007,'Bertil Ohlsson'),(4008,'Miroslav Ondu0159u00edu010dek'),(4009,'Michael Chandler'),(4011,'Nena Danevic'),(4012,'Spencer Treat Clark'),(4014,'Paul W.S. Anderson'),(4016,'Jeremy Bolt'),(4017,'Robert Kulzer'),(4018,'Steve Christian'),(4020,'Christian Sebaldt'),(4022,'Robyn Ray'),(4023,'Suzanne Smith'),(4024,'Steve Reevis'),(4025,'Steve Park'),(4026,'Ambrosia Kelley'),(4027,'Frank Darabont'),(4028,'Niki Marvin'),(4029,'Bob Gunton'),(4030,'Martin Klebba'),(4031,'Greg Ellis'),(4032,'Cheryl Carasik'),(4033,'Liz Dann'),(4034,'Penny Rose'),(4037,'Ron Shelton'),(4038,'Susan Sarandon'),(4039,'Trey Wilson'),(4040,'Robert Wuhl'),(4041,'William O\'Leary'),(4042,'David Neidorf'),(4052,'Thom Mount'),(4053,'Charles Hirschhorn'),(4054,'David V. Lester'),(4055,'Michael Convertino'),(4057,'Adam Weiss'),(4059,'David Lubin'),(4061,'Louise Frogley'),(4064,'Webster Whinery'),(4065,'Fred Zinnemann'),(4066,'Carl Foreman'),(4067,'John W. Cunningham'),(4068,'Gary Cooper'),(4069,'Katy Jurado'),(4070,'Grace Kelly'),(4071,'Otto Kruger'),(4072,'Lon Chaney Jr.'),(4073,'Harry Morgan'),(4074,'Ian MacDonald'),(4075,'Eve McVeagh'),(4076,'Morgan Farley'),(4077,'Harry Shannon'),(4078,'Lee Van Cleef'),(4080,'Sheb Wooley'),(4081,'Stanley Kramer'),(4082,'Dimitri Tiomkin'),(4083,'Floyd Crosby'),(4085,'Rudolph Sternad'),(4086,'Ben Hayne'),(4087,'Murray Waite'),(4088,'George C. Emick'),(4090,'Shirley MacLaine'),(4091,'Fred MacMurray'),(4092,'John Speak'),(4093,'Ray Walston'),(4094,'Jack Kruschen'),(4095,'David Lewis'),(4096,'Naomi Stevens'),(4097,'Hope Holiday'),(4098,'Edie Adams'),(4099,'Johnny Seven'),(4100,'Adolph Deutsch'),(4101,'Joseph LaShelle'),(4102,'Daniel Mandell'),(4103,'Alexandre Trauner'),(4104,'Edward G. Boyle'),(4105,'Harry Ray'),(4106,'Allen K. Wood'),(4107,'Milt Rice'),(4108,'Don Stott'),(4109,'Michael Curtiz'),(4110,'Humphrey Bogart'),(4111,'Ingrid Bergman'),(4112,'Paul Henreid'),(4113,'Claude Rains'),(4114,'Sydney Greenstreet'),(4116,'Madeleine Lebeau'),(4117,'Dooley Wilson'),(4118,'Joy Page'),(4119,'John Qualen'),(4120,'Leonid Kinskey'),(4121,'Marcel Dalio'),(4122,'Helmut Dantine'),(4123,'Hal B. Wallis'),(4125,'Carl Jules Weyl'),(4126,'George James Hopkins'),(4127,'Orry-Kelly'),(4128,'Perc Westmore'),(4129,'Francis J. Scheid'),(4130,'Harvey Parry'),(4131,'Murray Burnett'),(4132,'Joan Alison'),(4133,'Giuseppe Andrews'),(4134,'Keram Malicki-Su00e1nchez'),(4135,'Robert Redford'),(4138,'Craig Sheffer'),(4139,'Tom Skerritt'),(4140,'Mark Isham'),(4141,'Robert Estrin'),(4142,'Elisabeth Leustig'),(4146,'Patrick Markey'),(4147,'Walter P. Martishius'),(4148,'Gretchen Rau'),(4149,'Kathy O\'Rear'),(4150,'Bernie Pollack'),(4151,'Reese Spensley'),(4152,'Richard Stutsman'),(4154,'Brenda Blethyn'),(4156,'Stephen Shellen'),(4158,'Susan Traylor'),(4159,'Nicole Burdette'),(4160,'Helen Shaver'),(4162,'Audra Lindley'),(4165,'John Wayne'),(4166,'Isabelle Carru00e9'),(4167,'Harry W. Gerstad'),(4169,'Dave Chappelle'),(4171,'Stanley DeSantis'),(4172,'Mustafa Abuelhija'),(4173,'Anthony Hopkins'),(4174,'Claire Forlani'),(4175,'Jeffrey Tambor'),(4177,'Jake Weber'),(4178,'Ron Osborn'),(4179,'Jeff Reno'),(4180,'Kevin Wade'),(4181,'Bo Goldman'),(4182,'David J. Wally'),(4183,'Celia D. Costas'),(4184,'Ronald L. Schwary'),(4185,'Emmanuel Lubezki'),(4186,'Joe Hutshing'),(4187,'Robert Guerra'),(4188,'Leslie Bloom'),(4189,'Aude Bronson-Howard'),(4190,'David C. Robinson'),(4191,'Robert DeVine'),(4192,'David S. Howard'),(4193,'Lois Kelly-Miller'),(4194,'Jahnni St. John'),(4195,'Richard Clarke'),(4197,'Clay A. Griffith'),(4198,'Charles \'Honi\' Coles'),(4199,'Neal Jones'),(4201,'Wayne Knight'),(4203,'Garry Goodrow'),(4204,'Antone Pagan'),(4211,'D.A. Pauley'),(4219,'Andreas Schreitmu00fcller'),(4220,'Liane Jessen'),(4222,'Simone Bu00e4r'),(4231,'Julie Fong'),(4232,'Bob Yari'),(4233,'Cory Smith'),(4234,'Jeff Buchanan'),(4235,'Jamie Kirkpatrick'),(4236,'Lauri Faggioni'),(4237,'Erykah Badu'),(4238,'Common'),(4239,'Yasiin Bey'),(4240,'Bilal'),(4241,'Lil\' Cease'),(4242,'Cody ChestnuTT'),(4243,'James \'Kamal\' Gray'),(4244,'Lauryn Hill'),(4245,'Leonard \'Hub\' Hubbard'),(4246,'Wyclef Jean'),(4247,'Tiffany Limos'),(4248,'Dennis Gassner'),(4249,'Donna Isaacson'),(4250,'Michael Lerner'),(4251,'John Mahoney'),(4252,'Tony Shalhoub'),(4253,'Jon Polito'),(4254,'David Warrilow'),(4255,'Richard Portnow'),(4256,'Christopher Murney'),(4257,'I.M. Hobson'),(4273,'Charlotte Gainsbourg'),(4275,'Alain Chabat'),(4276,'Georges Bermann'),(4278,'Jean-Michel Bernard'),(4280,'Juliette Welfling'),(4286,'Emma de Caunes'),(4292,'Inigo Lezzi'),(4298,'Leigh Brackett'),(4301,'Angie Dickinson'),(4302,'Walter Brennan'),(4303,'Ward Bond'),(4304,'John Russell'),(4307,'Claude Akins'),(4308,'Russell Harlan'),(4312,'Marjorie Best'),(4313,'Gordon Bau'),(4316,'Harry Carey, Jr.'),(4317,'Jake Abraham'),(4318,'Victor McGuire'),(4319,'Stacy Peralta'),(4320,'Sam George'),(4322,'Jeff Clark'),(4323,'Darrick Doerner'),(4324,'Laird Hamilton'),(4325,'Dave Kalama'),(4326,'David H. Kalama Jr.'),(4327,'Brian L. Keaulana'),(4328,'Buzzy Kerbox'),(4329,'Titus Kinimaka'),(4330,'Gerry Lopez'),(4331,'Mickey Munoz'),(4332,'Greg Noll'),(4333,'Evan Slater'),(4334,'Kelly Slater'),(4335,'Darryl Virostko'),(4336,'Jane Kachmer'),(4337,'Agi Orsi'),(4338,'Peter Pilafian'),(4339,'Paul Crowder'),(4340,'Chris Norr'),(4341,'Ben Hecht'),(4343,'Louis Calhern'),(4347,'Frank Sinatra'),(4350,'Edith Head'),(4352,'Mel Berns'),(4353,'Peter Lawford'),(4355,'Cesar Romero'),(4357,'Harry Brown'),(4358,'Charles Lederer'),(4360,'Nelson Riddle'),(4363,'Carlos Blanco'),(4364,'Maru00eda Isabel Du00edaz'),(4365,'Neus Sanz'),(4366,'Leandro Rivera'),(4367,'Yolanda Ramos'),(4368,'Carlos Garcu00eda Cambero'),(4369,'Natalia Roig'),(4370,'Eli Iranzo'),(4371,'Fanny de Castro'),(4372,'Concha Galu00e1n'),(4373,'Magdalena Brotto'),(4374,'Pepa Aniorte'),(4375,'Isabel Ayu00facar'),(4376,'Josu00e9 Luis Alcaine'),(4378,'Luis San Narciso'),(4379,'Salvador Parra'),(4380,'Mara Matey'),(4384,'Joaquu00edn Manchado'),(4385,'Sergio Leone'),(4387,'Franu00e7ois Ozon'),(4388,'Emmanuu00e8le Bernheim'),(4390,'Ludivine Sagnier'),(4391,'Charles Dance'),(4392,'Jean-Marie Lamour'),(4393,'Marc Fayolle'),(4394,'Mireille Mossu00e9'),(4395,'Michel Fau'),(4396,'Jean-Claude Lecas'),(4397,'Emilie Gavois-Kahn'),(4398,'Erarde Forestali'),(4399,'Timothy Burrill'),(4400,'Christine De Jekel'),(4401,'Olivier Delbosc'),(4402,'Marc Missonnier'),(4403,'Philippe Rombi'),(4404,'Yorick Le Saux'),(4405,'Monica Coleman'),(4406,'Antoinette Boulat'),(4407,'Wouter Zoon'),(4415,'Federico Fellini'),(4429,'Jim Jarmusch'),(4430,'Sharon Stone'),(4431,'Jessica Lange'),(4432,'Frances Conroy'),(4433,'Alexis Dziena'),(4434,'Frederick Elmes'),(4437,'Lydia Marks'),(4438,'Manny Siverio'),(4441,'Pell James'),(4442,'Ryan Donowho'),(4443,'Christopher McDonald'),(4445,'Chris Bauer'),(4446,'Jon Kilik'),(4447,'Ann Ruark'),(4451,'Mark Webber'),(4452,'Lisa Marie'),(4453,'Thomas Vinterberg'),(4454,'Mogens Rukov'),(4455,'Ulrich Thomsen'),(4456,'Henning Moritzen'),(4457,'Thomas Bo Larsen'),(4458,'Paprika Steen'),(4459,'Birthe Neumann'),(4460,'Trine Dyrholm'),(4461,'Helle Dolleris'),(4462,'Therese Glahn'),(4463,'Klaus Bondam'),(4464,'Bjarne Henriksen'),(4465,'Gbatokai Dakinah'),(4467,'Lars Brygmann'),(4468,'Lene Laub Oksen'),(4469,'Linda Laursen'),(4470,'John Boas'),(4471,'Erna Boas'),(4474,'Lars Bo Jensen'),(4475,'Valdu00eds u00d3skarsdu00f3ttir'),(4476,'Marie Louise Hedegaard'),(4477,'Lene Seested'),(4478,'Eigil Jacobsen'),(4479,'Morten Holm'),(4480,'Kaj Rasmussen'),(4481,'Robert Strandgu00e5rd'),(4482,'Gry Worre Hallberg'),(4483,'Dustin Hoffman'),(4484,'Vince Locke'),(4485,'Steve Koren'),(4486,'Mark O\'Keefe'),(4489,'Steve Oedekerk'),(4491,'Jennifer Aniston'),(4492,'Philip Baker Hall'),(4493,'Catherine Bell'),(4494,'Lisa Ann Walter'),(4495,'Steve Carell'),(4496,'Nora Dunn'),(4498,'Paul Satterfield'),(4499,'Tom Shadyac'),(4500,'John Debney'),(4501,'Dean Semler'),(4502,'Scott Hill'),(4504,'Roger Birnbaum'),(4505,'Michael Bostick'),(4506,'James D. Brubaker'),(4507,'Gary Barber'),(4508,'Howard Koch'),(4509,'Casey Robinson'),(4510,'Harry Bugin'),(4512,'James Woods'),(4513,'Elizabeth McGovern'),(4514,'Tuesday Weld'),(4515,'Treat Williams'),(4516,'James Hayden'),(4517,'Joe Pesci'),(4518,'Larry Rapp'),(4520,'William Forsythe'),(4521,'Burt Young'),(4522,'Caroline Link'),(4524,'Niki Reiser'),(4525,'Jakob Claussen'),(4526,'Thomas Wu00f6bke'),(4528,'Patricia Rommel'),(4534,'Matthias Habich'),(4539,'Hubert Mulzer'),(4556,'Dieter Nobbe'),(4557,'Ulrike Putz'),(4558,'Thomas Martin'),(4562,'Risa Kes'),(4563,'Susann Bieling'),(4565,'Andreas Wu00f6lki'),(4566,'Alan Rickman'),(4568,'Jayne Eastwood'),(4569,'David Fox'),(4571,'Jackie Brown'),(4572,'James Allodi'),(4573,'Selina Cadell'),(4578,'Steve Cosens'),(4581,'Steve Coogan'),(4583,'Niv Fichman'),(4584,'Robert Jones'),(4585,'Henry Normal'),(4586,'Pitof'),(4587,'Halle Berry'),(4588,'Edward McDonnell'),(4589,'Benjamin Bratt'),(4590,'Russ Meyer'),(4593,'Haji'),(4596,'Stuart Lancaster'),(4600,'Joe Dante'),(4602,'Jon Tenney'),(4603,'Joey Travolta'),(4604,'Theresa Randle'),(4605,'Eugene Collier'),(4606,'Jimmy Ortega'),(4607,'Ousaun Elam'),(4608,'Ray Lykins'),(4609,'Tim Gilbert'),(4610,'John Landis'),(4611,'Mace Neufeld'),(4612,'Robert Rehme'),(4613,'Nile Rodgers'),(4614,'Mac Ahlberg'),(4615,'Dale Beldin'),(4616,'Michael Seymour'),(4618,'Steffi Ku00fchnert'),(4619,'Gabriela Maria Schmeide'),(4621,'Axel Prahl'),(4640,'Dejan Au0107imoviu0107'),(4654,'Jeremy Davies'),(4655,'Carlo Simi'),(4656,'Gabe Videla'),(4657,'Louis Craig'),(4658,'Danilo Bollettini'),(4659,'Giovanni Corridori'),(4660,'Jacques Godbout'),(4661,'Benito Stefanelli'),(4664,'Leonardo Benvenuti'),(4665,'Josh Cruze'),(4666,'Angela Lanza'),(4667,'Franco Arcalli'),(4668,'Franco Ferrini'),(4669,'Claudio Mancini'),(4670,'Nino Baragli'),(4671,'Zach Staenberg'),(4673,'Joy Todd'),(4674,'Sandro Battaglia'),(4675,'Antonio Scaramuzza'),(4676,'Carlo Tafani'),(4677,'Romano Mancini'),(4678,'Bruno Charier'),(4680,'Eve Meyer'),(4687,'Patricia Arquette'),(4688,'Michael Rapaport'),(4689,'Bronson Pinchot'),(4690,'Christopher Walken'),(4691,'James Gandolfini'),(4692,'Frank Adonis'),(4693,'Paul Bates'),(4694,'Lisa Cogswell'),(4695,'Don Edmonds'),(4696,'Spencer Franklin'),(4697,'Samuel Hadida'),(4698,'Gregory Manson'),(4699,'Steve Perry'),(4700,'James G. Robinson'),(4701,'James W. Skotchdopole'),(4702,'Bill Unger'),(4710,'Benjamu00edn Fernu00e1ndez'),(4712,'Thomas L. Roysden'),(4713,'Susan Becker'),(4714,'Greg Dillon'),(4715,'Samuel C. Crutcher'),(4716,'Virginia Cook-McGowan'),(4717,'Robert S. Henderson'),(4718,'Larry M. Shorts'),(4719,'Ahmir-Khalib Thompson'),(4720,'Kanye West'),(4721,'Jill Scott'),(4722,'Dennis Lehane'),(4723,'Brian Helgeland'),(4724,'Kevin Bacon'),(4726,'Marcia Gay Harden'),(4727,'Dianne Wager'),(4728,'Kevin Chapman'),(4729,'Tom Guiry'),(4730,'Emmy Rossum'),(4731,'Andrew Mackin'),(4732,'Adam Nelson'),(4733,'Robert Wahlberg'),(4734,'Jenny O\'Hara'),(4735,'John Doman'),(4736,'Cameron Bowen'),(4737,'Jason Kelly'),(4738,'Connor Paolo'),(4739,'T. Bruce Page'),(4740,'Miles Herter'),(4741,'Cayden Boyd'),(4742,'Tori Davis'),(4743,'Jonathan Togo'),(4745,'Judie Hoyt'),(4746,'Robert Lorenz'),(4750,'Scott Schutzman Tiler'),(4751,'Rusty Jacobs'),(4752,'Adrian Curran'),(4753,'Brian Bloom'),(4754,'Noah Moazezi'),(4755,'David R. Ellis'),(4756,'Matthew Broderick'),(4757,'Rupert Everett'),(4758,'Joely Fisher'),(4759,'David Kellogg'),(4760,'Deepa Mehta'),(4761,'Darlanne Fluegel'),(4762,'Paul Thomas Anderson'),(4764,'John C. Reilly'),(4765,'Jason Robards'),(4766,'Melora Walters'),(4767,'Michael De Luca'),(4768,'Lynn Harris'),(4769,'Daniel Lupi'),(4770,'JoAnne Sellar'),(4771,'Aimee Mann'),(4772,'Cassandra Kulukundis'),(4773,'Mike Monetti'),(4774,'Jim Brown'),(4776,'Michael Murphy'),(4777,'Emmanuel Johnson'),(4778,'Melinda Dillon'),(4779,'Jeremy Blackman'),(4780,'Wolfgang Becker'),(4781,'Bernd Lichtenberg'),(4782,'Michael Crichton'),(4783,'Sam Neill'),(4784,'Laura Dern'),(4785,'Jeff Goldblum'),(4786,'Richard Attenborough'),(4787,'Joseph Mazzello'),(4788,'Ariana Richards'),(4789,'Bob Peck'),(4790,'Martin Ferrero'),(4791,'Greg Burson'),(4792,'Katrin Sass'),(4793,'Chulpan Khamatova'),(4794,'Maria Simon'),(4795,'Florian Lukas'),(4796,'Alexander Beyer'),(4797,'Christine Schorn'),(4798,'Ju00fcrgen Holtz'),(4799,'Katja De Bock'),(4800,'Gena Rowlands'),(4804,'Manuela Stehr'),(4805,'Marcos Kantis'),(4807,'Martin Kukula'),(4808,'Giancarlo Esposito'),(4809,'Lothar Holler'),(4810,'Rosie Perez'),(4812,'Isaach De Bankolu00e9'),(4813,'Bu00e9atrice Dalle'),(4817,'Stu00e9phane Boucher'),(4818,'Roberto Benigni'),(4819,'Paolo Bonacelli'),(4843,'Kelley Cribben'),(4844,'Tom Karnowski'),(4849,'Anthony J. Ciccolini III'),(4853,'Jonathan Safran Foer'),(4854,'David Minkowski'),(4855,'Peter Saraf'),(4856,'Matthew Stillman'),(4857,'Marc Turtletaub'),(4865,'Paul Cantelon'),(4867,'Matthew Libatique'),(4868,'Andrew Marcus'),(4869,'Craig McKay'),(4875,'Martin Vackar'),(4885,'Emmanuelle Bu00e9art'),(4886,'Norman Reedus'),(4887,'Joe Grifasi'),(4888,'Lily Rabe'),(4889,'Kim Director'),(4890,'Brian Tarantina'),(4891,'Patrick Collins'),(4892,'Chuck Cooper'),(4893,'Clem Cheung'),(4898,'Robin O\'Hara'),(4899,'Scott Macaulay'),(4901,'Kathy Ciric'),(4906,'Sig De Miguel'),(4907,'Stephanie Carroll'),(4908,'Jennifer Dehghan'),(4909,'Chryss Hionis'),(4910,'Michael Clancy'),(4912,'Julia Lallas'),(4913,'Daisy Curbeon'),(4918,'Peter Thorwarth'),(4920,'Oliver Korittke'),(4922,'Ralf Richter'),(4924,'Martin Semmelrogge'),(4930,'Christian Becker'),(4935,'Pete Postlethwaite'),(4937,'Vince Vaughn'),(4938,'Vanessa Lee Chester'),(4939,'Tu00e9a Leoni'),(4940,'Trevor Morgan'),(4941,'Alessandro Nivola'),(4942,'John Diehl'),(4943,'Bruce A. Young'),(4944,'Taylor Nichols'),(4945,'Joe Johnston'),(4946,'Peter Buchman'),(4948,'Jim Taylor'),(4949,'Don Davis'),(4950,'Shelly Johnson'),(4951,'Robert Dalva'),(4952,'Nancy Foy'),(4953,'Ed Verreaux'),(4954,'Bino Cicogna'),(4955,'Dario Argento'),(4956,'Bernardo Bertolucci'),(4958,'Henry Fonda'),(4959,'Claudia Cardinale'),(4960,'Charles Bronson'),(4961,'Gabriele Ferzetti'),(4962,'Paolo Stoppa'),(4963,'Woody Strode'),(4965,'Jack Elam'),(4966,'Keenan Wynn'),(4967,'Colin Higgins'),(4968,'Frank Wolff'),(4969,'Lionel Stander'),(4970,'Ruth Gordon'),(4971,'Bud Cort'),(4974,'Charles Tyner'),(4975,'Ellen Geer'),(4976,'Eric Christmas'),(4981,'Edward Warschilka'),(4984,'Antonella Pompei'),(4985,'Eros Bacciucchi'),(4986,'Fulvio Morsella'),(4987,'Omar Epps'),(4989,'Masaya Kato'),(4990,'Susumu Terajima'),(4991,'Royale Watkins'),(4992,'Lombardo Boyar'),(4994,'Ryo Ishibashi'),(4995,'James Shigeta'),(4996,'Tatyana Ali'),(4998,'Katsumi Yanagijima'),(5000,'Norihiro Isoda'),(5004,'Omar Sharif'),(5006,'Madison Eginton'),(5007,'Jackie Sawiris'),(5008,'Leslie Lowe'),(5010,'Todd Field'),(5011,'Michael Doven'),(5012,'Sky du Mont'),(5013,'Arthur Schnitzler'),(5014,'Frederic Raphael'),(5015,'Brian W. Cook'),(5016,'Jan Harlan'),(5017,'Jocelyn Pook'),(5018,'Larry Smith'),(5019,'Nigel Galt'),(5020,'Leon Vitali'),(5021,'Leslie Tomkins'),(5022,'Roy Walker'),(5023,'Julienne Davis'),(5024,'Marie Richardson'),(5025,'Vinessa Shaw'),(5026,'Akira Kurosawa'),(5028,'Curt Siodmak'),(5030,'Edgar G. Ulmer'),(5045,'Dan O\'Bannon'),(5046,'Ronald Shusett'),(5047,'Veronica Cartwright'),(5048,'Harry Dean Stanton'),(5049,'John Hurt'),(5050,'Yaphet Kotto'),(5051,'Bolaji Badejo'),(5052,'Helen Horton'),(5053,'Gordon Carroll'),(5054,'Ivor Powell'),(5055,'Derek Vanlint'),(5056,'Terry Rawlings'),(5057,'Peter Weatherley'),(5058,'Roger Christian'),(5059,'Leslie Dilley'),(5060,'Ian Whittaker'),(5061,'John Mollo'),(5062,'Robert Hathaway'),(5063,'Joseph Ragno'),(5064,'Meryl Streep'),(5065,'David Frankel'),(5071,'Matthieu Poirot-Delpech'),(5077,'Valeria Bruni Tedeschi'),(5081,'Emily Blunt'),(5090,'Adrian Grenier'),(5117,'Birol u00dcnel'),(5119,'Catrin Striebeck'),(5123,'Demir Gu00f6kgu00f6l'),(5124,'Cem Akin'),(5125,'Fatih Akin'),(5126,'Stefan Schubert'),(5127,'Ralph Schwingel'),(5128,'Daniel Waters'),(5129,'Paul Reubens'),(5130,'Cristi Conaway'),(5131,'Diane Salinger'),(5132,'Bob Badami'),(5133,'Bo Welch'),(5135,'Rainer Klausmann'),(5139,'Robert Englund'),(5140,'Wes Craven'),(5141,'Heather Langenkamp'),(5143,'Barry Morrow'),(5144,'Ronald Bass'),(5145,'Jack Murdock'),(5146,'Michael D. Roberts'),(5147,'Ralph Seymour'),(5148,'Lucinda Jenney'),(5149,'Bonnie Hunt'),(5150,'Kim Robillard'),(5151,'Beth Grant'),(5152,'Dolan Dougherty'),(5153,'Marshall Dougherty'),(5154,'Patrick Dougherty'),(5156,'Peter Dougherty'),(5157,'Andrew Dougherty'),(5158,'Loretta Wendt Jolivette'),(5159,'Donald E. Jones'),(5160,'Bryon P. Caunar'),(5161,'Donna J. Dickson'),(5162,'Mark Johnson'),(5163,'David McGiffert'),(5164,'Gail Mutrux'),(5166,'Stu Linder'),(5167,'Ida Random'),(5168,'Gabriel Byrne'),(5169,'J.E. Freeman'),(5170,'Mike Starr'),(5174,'Barry Sonnenfeld'),(5175,'Michael R. Miller'),(5176,'Sam McMurray'),(5177,'Randall \'Tex\' Cobb'),(5181,'John Michael Hayes'),(5183,'Brigitte Auber'),(5187,'J. McMillan Johnson'),(5188,'Hal Pereira'),(5191,'Thomas Bahmann'),(5192,'Marco Kreuzpaintner'),(5193,'Matthew Caws'),(5194,'Daniel Gottschalk'),(5195,'Hansju00f6rg Weiu00dfbrich'),(5196,'Heike Lange'),(5197,'Anke Winckler'),(5198,'Jens Oberwetter'),(5199,'Benedict Hoermann'),(5200,'Florian Niederleithinger'),(5201,'Robert Stadlober'),(5202,'Kostja Ullmann'),(5203,'Alicja Bachleda-Curuu015b'),(5204,'Ju00fcrgen Tonkel'),(5205,'Tristano Casanova'),(5206,'Miriam Morgenstern'),(5207,'Marlon Kittel'),(5208,'Hanno Koffler'),(5209,'Joseph M\'Barek'),(5210,'Alexa Maria Surholt'),(5211,'Jeff Fischer'),(5212,'Michael Wiesner'),(5213,'Benjamin Vilzmann'),(5214,'Ludwig Blochberger'),(5215,'Nancy Steiner'),(5216,'Gus Van Sant'),(5227,'John J. Campbell'),(5228,'Herbert Gru00f6nemeyer'),(5229,'Klaus Wennemann'),(5230,'Hubertus Bengsch'),(5231,'Wolfgang Petersen'),(5232,'Martin May'),(5233,'Heinz Hoenig'),(5234,'Claude-Oliver Rudolph'),(5235,'Jan Fedder'),(5236,'Lothar G. Buchheim'),(5238,'Gu00fcnter Rohrbach'),(5239,'Michael Bittins'),(5240,'Klaus Doldinger'),(5241,'Jost Vacano'),(5242,'Hannes Nikel'),(5243,'Willy Schlenter'),(5244,'Gu00f6tz Weidner'),(5246,'Reginald Rose'),(5247,'John Fiedler'),(5248,'Lee J. Cobb'),(5249,'E.G. Marshall'),(5250,'Jack Klugman'),(5251,'Jack Warden'),(5252,'Joseph Sweeney'),(5254,'George Voskovec'),(5255,'Robert Webber'),(5257,'Billy Nelson'),(5258,'John Savoca'),(5259,'George Justin'),(5260,'Kenyon Hopkins'),(5261,'Boris Kaufman'),(5262,'Carl Lerner'),(5263,'Robert Markel'),(5264,'Herman Buchman'),(5265,'James A. Gleason'),(5266,'Ru00fcdiger Vogler'),(5267,'Ulrich Felsberg'),(5268,'Paulo Branco'),(5271,'Lisa Rinzler'),(5274,'Patrick Bauchau'),(5281,'Spike Lee'),(5282,'Russell Gewirtz'),(5283,'Karen Kehela Sherwood'),(5284,'Kim Roth'),(5285,'Daniel M. Rosenberg'),(5286,'Jonathan Filley'),(5287,'Terence Blanchard'),(5288,'A. R. Rahman'),(5289,'Barry Alexander Brown'),(5290,'Kim Coleman'),(5291,'Donna Berwick'),(5292,'Denzel Washington'),(5293,'Willem Dafoe'),(5294,'Chiwetel Ejiofor'),(5295,'Carlos Andru00e9s Gu00f3mez'),(5296,'James Ransone'),(5297,'Bernie Rachelle'),(5298,'Victor Colicchio'),(5299,'Cassandra Freeman'),(5300,'Peter Frechette'),(5301,'Waris Ahluwalia'),(5302,'Gerry Vichi'),(5303,'Rafael Osorio'),(5304,'Rodney Bear Jackson'),(5306,'Lasse Hallstru00f6m'),(5307,'Joanne Harris'),(5308,'Robert Nelson Jacobs'),(5309,'Judi Dench'),(5310,'Antonio Gil'),(5311,'Hu00e9lu00e8ne Cardona'),(5312,'Hugh O\'Conor'),(5313,'Lena Olin'),(5314,'Aurelien Parent Koenig'),(5315,'Victoire Thivisol'),(5316,'Harrison Pratt'),(5317,'Gaelan Connell'),(5318,'Elisabeth Commelin'),(5319,'Ron Cook'),(5320,'Leslie Caron'),(5322,'David Brown'),(5323,'Mark Cooper'),(5324,'Kit Golden'),(5325,'Leslie Holleran'),(5326,'Meryl Poster'),(5327,'Andrew Mondshein'),(5328,'Kerry Barden'),(5329,'David Gropman'),(5330,'Lucy Richardson'),(5331,'Stephanie McMillan'),(5332,'Renee Ehrlich Kalfus'),(5333,'Christine Beveridge'),(5334,'Sallie Jaye'),(5335,'Elizabeth Yianni-Georgiou'),(5336,'Patty York'),(5337,'Dan Korintus'),(5338,'Kyrsten Mate'),(5339,'David Boulton'),(5340,'David Carbonara'),(5341,'Richard Burton'),(5342,'Mike Nichols'),(5344,'Meg Ryan'),(5345,'Bennett Miller'),(5346,'Dan Futterman'),(5347,'Gerald Clarke'),(5348,'Allie Mickelson'),(5349,'Craig Archibald'),(5350,'Bronwen Coleman'),(5351,'Kate Shindle'),(5352,'David Wilson Barnes'),(5353,'Michael J. Burg'),(5354,'Kwesi Ameyaw'),(5355,'Andrew Farago'),(5356,'Caroline Baron'),(5357,'Michael Ohoven'),(5358,'William Vince'),(5359,'Mychael Danna'),(5360,'Adam Kimmel'),(5361,'Christopher Tellefsen'),(5362,'Heike Brandstatter'),(5363,'Coreen Mayrs'),(5364,'Kelci Stephenson'),(5365,'Clifton Collins Jr'),(5367,'Zach Braff'),(5368,'Kenneth Graymez'),(5369,'George C. Wolfe'),(5370,'Austin Lysy'),(5371,'Gary Gilbert'),(5372,'Ron Leibman'),(5373,'Trisha LaFache'),(5374,'Jim Parsons'),(5375,'Geoffrey Arend'),(5376,'Jean Smart'),(5377,'Ato Essandoh'),(5378,'Pamela Abdy'),(5379,'Dan Halsted'),(5380,'Richard Klubeck'),(5381,'Michael Shamberg'),(5382,'Stacey Sher'),(5384,'Method Man'),(5385,'Jackie Hoffman'),(5386,'William H. Brown'),(5387,'Lawrence Sher'),(5388,'Myron I. Kerstein'),(5389,'Judy Becker'),(5390,'Laura Ballinger'),(5391,'Heather Loeffler'),(5392,'Michael Wilkinson'),(5393,'Chad Fischer'),(5394,'Alexi Murdoch'),(5395,'Alex Burns'),(5396,'Tullio Pinelli'),(5397,'Ennio Flaiano'),(5398,'Dino De Laurentiis'),(5401,'Anthony Quinn'),(5403,'Richard Basehart'),(5411,'Sanaa Lathan'),(5412,'Raoul Bova'),(5414,'Colin Salmon'),(5415,'Joseph Rye'),(5416,'Agathe de La Boulaye'),(5417,'Carsten Norgaard'),(5418,'Hubert Koundu00e9'),(5419,'Sau00efd Taghmaoui'),(5421,'Sam Troughton'),(5425,'Christophe Rossignon'),(5426,'Gilles Sacuto'),(5430,'Harald Kloser'),(5431,'Pierre Au00efm'),(5432,'David Johnson'),(5436,'Gilles Conseil'),(5437,'Vincent Tulli'),(5438,'Richard Bridgland'),(5440,'Franu00e7ois Levantal'),(5441,'Edouard Montoute'),(5442,'Benou00eet Magimel'),(5443,'Vincent Lindon'),(5444,'Philippe Nahon'),(5445,'Zinedine Soualem'),(5446,'David Hand'),(5448,'Wilhelm Grimm'),(5449,'Ted Sears'),(5450,'Richard Creedon'),(5451,'Otto Englander'),(5452,'Dick Rickard'),(5453,'Earl Hurd'),(5454,'Merrill De Maris'),(5455,'Dorothy Ann Blank'),(5456,'Webb Smith'),(5457,'Roy Atwell'),(5458,'Stuart Buchanan'),(5460,'Adriana Caselotti'),(5461,'Eddie Collins'),(5462,'Pinto Colvig'),(5463,'Marion Darlington'),(5464,'Billy Gilbert'),(5465,'Otis Harlan'),(5466,'Frank Churchill'),(5467,'Leigh Harline'),(5468,'Max Morgan'),(5469,'Ralph Fiennes'),(5470,'Kristin Scott Thomas'),(5471,'Naveen Andrews'),(5472,'Colin Firth'),(5473,'Julian Wadham'),(5474,'Kevin Whately'),(5475,'Clive Merrison'),(5476,'Nino Castelnuovo'),(5477,'Hichem Rostom'),(5478,'Peter Ru00fchring'),(5479,'Geordie Johnson'),(5480,'Torri Higginson'),(5481,'Liisa Repo-Martell'),(5482,'Raymond Coulthard'),(5483,'Philip Whitchurch'),(5484,'Scott Greenstein'),(5485,'Paul Zaentz'),(5486,'Steve E. Andrews'),(5487,'Alessandro von Norman'),(5488,'Gabriel Yared'),(5489,'Michelle Guish'),(5490,'David Rubin'),(5491,'Stuart Craig'),(5492,'Aurelio Crugnola'),(5493,'Ann Roth'),(5495,'Michael Ondaatje'),(5498,'Adam Bousdoukos'),(5499,'Regula Grauwiller'),(5501,'Gary Fleder'),(5502,'Bill Nunn'),(5503,'Gabrielle Anwar'),(5504,'Michael Nicolosi'),(5505,'Cary Woods'),(5506,'Elliot Davis'),(5507,'Ronnie Yeskel'),(5508,'Nelson Coates'),(5511,'Nadja Uhl'),(5524,'Andrew Adamson'),(5525,'C. S. Lewis'),(5526,'Georgie Henley'),(5527,'Skandar Keynes'),(5528,'William Moseley'),(5529,'Anna Popplewell'),(5530,'James McAvoy'),(5531,'Kiran Shah'),(5532,'Judy McIntosh'),(5533,'Elizabeth Hawthorne'),(5534,'Patrick Kake'),(5535,'Rachael Henley'),(5536,'Mark Wells'),(5537,'Sophie Winkleman'),(5538,'Ray Winstone'),(5539,'Dawn French'),(5540,'Cameron Rhodes'),(5541,'Philip Steuer'),(5542,'Sim Evan-Jones'),(5543,'Douglas Gresham'),(5544,'Perry Moore'),(5545,'K.C. Hodenfield'),(5546,'Jim May'),(5547,'Roger Ford'),(5548,'Kerrie Brown'),(5549,'Isis Mussenden'),(5550,'Ann Peacock'),(5551,'Christopher Markus'),(5552,'Stephen McFeely'),(5553,'Harry Gregson-Williams'),(5555,'Sergio Donati'),(5556,'Giuseppe Ruzzolini'),(5563,'James Coburn'),(5566,'Franco Graziosi'),(5567,'Romolo Valli'),(5568,'Antoine Saint-John'),(5570,'David Warbeck'),(5572,'Joel Schumacher'),(5573,'Lee Batchler'),(5574,'Janet Scott Batchler'),(5575,'Akiva Goldsman'),(5576,'Val Kilmer'),(5577,'Chris O\'Donnell'),(5578,'Debi Mazar'),(5579,'Elizabeth Sanders'),(5580,'Peter Macgregor-Scott'),(5581,'Elliot Goldenthal'),(5582,'Stephen Goldblatt'),(5583,'Mark Stevens'),(5584,'Dennis Virkler'),(5585,'Barbara Ling'),(5586,'Yeardley Smith'),(5587,'Hank Azaria'),(5588,'Alicia Silverstone'),(5589,'John Glover'),(5590,'Elle Macpherson'),(5600,'Marc Hosemann'),(5601,'Sarah Trigger'),(5602,'David Lynch'),(5603,'John Roach'),(5604,'Mary Sweeney'),(5605,'Richard Farnsworth'),(5606,'Sissy Spacek'),(5607,'Jane Galloway Heitz'),(5608,'Joseph A. Carpenter'),(5609,'Donald Wiegert'),(5610,'Tracey Maloney'),(5611,'Dan Flannery'),(5612,'Ed Grennan'),(5613,'Jack Walsh'),(5614,'Gil Pearson'),(5615,'Barbara June Patterson'),(5616,'Everett McGill'),(5617,'James Cada'),(5618,'Barbara Kingsley'),(5619,'Jim Haun'),(5620,'Kevin Farley'),(5621,'John Farley'),(5622,'Leroy Swadley'),(5623,'Ralph Feldhacker'),(5624,'Pierre Edelman'),(5625,'Neal Edelstein'),(5626,'Michael Polaire'),(5628,'Angelo Badalamenti'),(5629,'Freddie Francis'),(5630,'Jane Alderman'),(5631,'Lynn Blumenthal'),(5632,'Jack Fisk'),(5633,'Barbara Haberecht'),(5634,'Patricia Norris'),(5635,'Walter Spencer'),(5637,'Patrick Su00fcskind'),(5642,'Albrecht Konrad'),(5644,'Alexandra Maria Lara'),(5646,'Justus von Dohnu00e1nyi'),(5649,'Christoph Maria Herbst'),(5655,'Wes Anderson'),(5656,'Noah Baumbach'),(5657,'Anjelica Huston'),(5658,'Michael Gambon'),(5659,'Seu Jorge'),(5661,'Matthew Gray Gubler'),(5662,'Antonio Monda'),(5663,'Isabella Blow'),(5664,'Barry Mendel'),(5665,'Dan Beers'),(5666,'Mark Mothersbaugh'),(5667,'Robert D. Yeoman'),(5668,'David Moritz'),(5669,'Douglas Aibel'),(5670,'Mark Friedberg'),(5671,'Milena Canonero'),(5672,'Stefano Maria Ortolani'),(5673,'Marco Trentini'),(5674,'Eugenio Ulissi'),(5675,'Anastasia Webb'),(5676,'Marcello Mastroianni'),(5677,'John Lordan'),(5687,'Eddra Gale'),(5689,'Grim Natwick'),(5690,'James Algar'),(5691,'Samuel Armstrong'),(5692,'Art Babbitt'),(5693,'Jack Campbell'),(5694,'Robert Forster'),(5695,'Sid Haig'),(5696,'Bruce Beresford'),(5697,'Alfred Uhry'),(5698,'Jessica Tandy'),(5699,'Patti LuPone'),(5700,'Esther Rolle'),(5701,'Joann Havrilla'),(5702,'William Hall Jr.'),(5703,'Clarice F. Geigerman'),(5704,'Muriel Moore'),(5705,'Sylvia Kaler'),(5706,'Robert Doudell'),(5707,'Lili Fini Zanuck'),(5708,'Peter James'),(5709,'Bruno Rubeo'),(5710,'Elizabeth McBride'),(5712,'Laura Perlman'),(5713,'Chris Wedge'),(5714,'Carlos Saldanha'),(5715,'Michael J. Wilson'),(5716,'Michael Berg'),(5717,'Peter Ackerman'),(5718,'John C. Donkin'),(5719,'Lori Forte'),(5720,'Christopher Meledandri'),(5721,'John Carnochan'),(5723,'John Leguizamo'),(5724,'Denis Leary'),(5725,'Goran Visnjic'),(5726,'Cedric the Entertainer'),(5727,'Diedrich Bader'),(5728,'James C. Katz'),(5732,'Henry Jones'),(5733,'Pierre Boileau'),(5736,'Samuel A. Taylor'),(5738,'Ellen Corby'),(5741,'Matt Groening'),(5749,'Annette Drees'),(5755,'Robert Seeliger'),(5761,'Michael Benthin'),(5764,'Jean-Pierre Zola'),(5776,'Jaki Brown'),(5777,'Robyn M. Mitchell'),(5779,'David Wasco'),(5790,'Pamela Tiffin'),(5795,'Leon Askin'),(5800,'Til Kiwe'),(5805,'Andru00e9 Previn'),(5806,'Daniel L. Fapp'),(5810,'Luciano Vincenzoni'),(5811,'Agenore Incrocci'),(5812,'Furio Scarpelli'),(5813,'Aldo Giuffru00e8'),(5814,'Luigi Pistilli'),(5815,'Rada Rassimov'),(5816,'John Bartha'),(5817,'Livio Lorenzon'),(5818,'Antonio Casale'),(5819,'Angelo Novi'),(5820,'Alberto Grimaldi'),(5821,'Eugenio Alabiso'),(5823,'Julie Andrews'),(5825,'David Tomlinson'),(5826,'Glynis Johns'),(5827,'Hermione Baddeley'),(5828,'Reta Shaw'),(5829,'Karen Dotrice'),(5830,'Matthew Garber'),(5831,'Arthur Treacher'),(5832,'Reginald Owen'),(5833,'Ed Wynn'),(5834,'Robert Stevenson'),(5835,'P.L. Travers'),(5836,'Bill Walsh'),(5837,'Don DaGradi'),(5838,'Richard M. Sherman'),(5839,'Robert B. Sherman'),(5840,'Edward Colman'),(5841,'Cotton Warburton'),(5842,'William H. Tuntke'),(5843,'Josu00e9 Terru00f3n'),(5844,'Detlev Buck'),(5847,'David Kross'),(5867,'Udo Kramer'),(5872,'Joshua Marston'),(5873,'Paul S. Mezey'),(5874,'Jaime Osorio Gu00f3mez'),(5875,'Becky Glupczynski'),(5876,'Gigia Jaramillo'),(5877,'Vincenzo Natali'),(5878,'Rodrigo Guerrero'),(5879,'Orlando Tobu00f3n'),(5880,'Andru00e9 Bijelic'),(5881,'Leonardo Heiblum'),(5882,'Jacobo Lieberman'),(5883,'Graeme Manson'),(5884,'Anne McCabe'),(5885,'Yann Blanc'),(5886,'Carrie Stewart'),(5887,'Catalina Sandino Moreno'),(5888,'Nicole de Boer'),(5889,'Nicky Guadagni'),(5890,'Virgina Ariza'),(5891,'Yenny Paola Vega'),(5892,'David Hewlett'),(5893,'Rodrigo Su00e1nchez Borhorquez'),(5894,'Andrew Miller'),(5895,'Charles Albert Patiu00f1o'),(5896,'Wilson Guerrero'),(5897,'Wayne Robson'),(5898,'Johanna Andrea Mora'),(5899,'Evangelina Morales'),(5900,'Maurice Dean Wint'),(5901,'Mehra Meh'),(5902,'Guilied Lopez'),(5903,'Victor Macias'),(5904,'Betty Orr'),(5905,'Hugo Ferro'),(5906,'Ana Maria Acosta'),(5907,'Mark Korven'),(5908,'Derek Rogers'),(5909,'John Sanders'),(5910,'Jasna Stefanovic'),(5911,'Elizabeth Avellan'),(5912,'Graeme Revell'),(5913,'Beth Sepko'),(5914,'Mary Vernieu'),(5915,'Jaime King'),(5916,'Rosario Dawson'),(5917,'Ernie Barbarash'),(5918,'Zachary Bennett'),(5919,'Stephanie Moore'),(5921,'Martin Roach'),(5922,'David Huband'),(5923,'Mike \'Nug\' Nahrgang'),(5924,'Richard McMillan'),(5925,'Joshua Peace'),(5927,'Tony Munch'),(5929,'Jon P. Goulding'),(5935,'Sean Hood'),(5936,'Lauren McLaughlin'),(5937,'Kari Matchett'),(5940,'Matthew Ferguson'),(5941,'Neil Crone'),(5942,'Barbara Gordon'),(5945,'Bruce Gray'),(5946,'Philip Akin'),(5949,'Diana Magnus'),(5950,'Seymour Cassel'),(5952,'Ted Hope'),(5953,'Spike Jonze'),(5956,'Peter Andrus'),(5957,'Gene Serdena'),(5958,'Hilary Duff'),(5960,'Mary Kay Place'),(5972,'John u00c1lex Toro'),(5973,'Patricia Rae'),(5987,'Per-Erik Svensson'),(5996,'Anna Asp'),(5999,'Kati Outinen'),(6007,'Maggie Roswell'),(6008,'Harry Shearer'),(6009,'Pamela Hayden'),(6011,'Michael Haneke'),(6012,'Daniel Auteuil'),(6015,'Bernard Le Coq'),(6016,'Walid Afkir'),(6019,'Nathalie Richard'),(6024,'Lou00efc Brabant'),(6027,'Christian Berger'),(6029,'Nadine Muse'),(6030,'Kris Portier de Bellair'),(6032,'Christoph Kanter'),(6033,'Lisy Christl'),(6034,'Chris Collins'),(6035,'Russi Taylor'),(6036,'Marcia Wallace'),(6037,'Colin Strause'),(6038,'Greg Strause'),(6039,'Shane Salerno'),(6040,'Wyck Godfrey'),(6041,'Brian Tyler'),(6042,'Daniel Pearl'),(6043,'Dan Zimmerman'),(6044,'Mindy Marin'),(6045,'Andrew Neskoromny'),(6046,'Roland Emmerich'),(6047,'Jeffrey Nachmanoff'),(6048,'Mark Gordon'),(6049,'Thomas Wanker'),(6050,'Ueli Steiger'),(6051,'David Brenner'),(6052,'April Webster'),(6053,'Paul Hotte'),(6055,'Victor J. Zolfo'),(6056,'Mike Reiss'),(6057,'Renu00e9e April'),(6060,'Neil Corbould'),(6061,'Emanuele Arnone'),(6062,'Bob Beher'),(6063,'Kristen Branan'),(6064,'Marcello Bezina'),(6065,'Dennis Quaid'),(6066,'Dash Mihok'),(6067,'Jay O. Sanders'),(6068,'Sela Ward'),(6069,'Austin Nichols'),(6070,'Arjay Smith'),(6071,'Sasha Roiz'),(6072,'Nassim Sharara'),(6073,'Carl Alacchi'),(6074,'Kenneth Welsh'),(6075,'Michel \'Gish\' Abou-Samah'),(6078,'Martin Steyer'),(6079,'Ivan Shvedoff'),(6086,'Devid Striesow'),(6087,'Claudia Geisler'),(6091,'August Diehl'),(6092,'Julia Krynke'),(6097,'Christian M. Goldbeck'),(6098,'Veit Heiduschka'),(6099,'Valerio De Paolis'),(6100,'Margaret Mu00e9nu00e9goz'),(6101,'Michael Katz'),(6102,'Lex Barker'),(6104,'Julian Sands'),(6105,'Richard Lewis'),(6106,'Steven Weber'),(6107,'Kim Adams'),(6108,'Emily Procter'),(6109,'Stuart Reynolds '),(6110,'Graham Beckel'),(6111,'Mike Figgis'),(6112,'John O\'Brien'),(6113,'Lila Cazu00e8s'),(6114,'Marc S. Fischer'),(6115,'Paige Simpson'),(6116,'Annie Stewart'),(6117,'Declan Quinn'),(6118,'John Smith'),(6119,'Carrie Frazier'),(6121,'Jens Albinus'),(6122,'Anne Louise Hassing'),(6135,'John Martinus'),(6140,'Hans Henrik Clemensen'),(6146,'Vibeke Windelu00f8v'),(6148,'Dag Alveberg'),(6151,'Marianne Slot'),(6156,'Molly Malene Stensgaard'),(6157,'Kristian Eidnes Andersen'),(6159,'Ron Howard'),(6160,'Sylvia Nasar'),(6161,'Jennifer Connelly'),(6162,'Paul Bettany'),(6163,'Adam Goldberg'),(6164,'Josh Lucas'),(6165,'Anthony Rapp'),(6166,'Jason Gray-Stanford'),(6167,'Judd Hirsch'),(6168,'Austin Pendleton'),(6169,'Vivien Cardone'),(6170,'Jillie Simon'),(6171,'Victor Steinbach'),(6172,'Tanya Clarke'),(6173,'Thomas F. Walsh'),(6174,'Jesse Doran'),(6175,'Kent Cassella'),(6176,'Patrick Blindauer'),(6177,'John Blaylock'),(6178,'Roy Thinnes'),(6179,'Anthony Easton'),(6180,'Cheryl Howard'),(6181,'Josh Pais'),(6182,'David B. Allen'),(6183,'Michael Esper'),(6184,'Todd Hallowell'),(6185,'Maureen Peyrot'),(6186,'Kathleen McGill'),(6187,'Aldric La\'Auli Porter'),(6188,'Louisa Velis'),(6189,'Daniel P. Hanley'),(6190,'Mike Hill'),(6191,'Leslie E. Rollins'),(6192,'Rita Ryack'),(6193,'Leonardo DiCaprio'),(6194,'Claire Danes'),(6195,'Harold Perrineau'),(6197,'Brian Dennehy'),(6198,'Vondie Curtis-Hall'),(6199,'Miriam Margolyes'),(6200,'Diane Venora'),(6201,'Baz Luhrmann'),(6202,'Gabriella Martinelli'),(6203,'Catherine Martin'),(6204,'Martin Brown'),(6205,'Tim Atack'),(6206,'Nellee Hooper'),(6207,'Doug Hardwick'),(6208,'Brigitte Broch'),(6209,'Kym Barrett'),(6210,'William Shakespeare'),(6211,'Craig Pearce'),(6212,'Zak Orth'),(6213,'Jamie Kennedy'),(6214,'Edwina Moore'),(6217,'Anupam Kher'),(6218,'Shaheen Khan'),(6220,'Gurinder Chadha'),(6221,'Guljit Bindra'),(6222,'Paul Mayeda Berges'),(6223,'Deepak Nayar'),(6224,'Russel Fischer'),(6225,'Simon Franks'),(6226,'Zygi Kamasa'),(6227,'Paul Ritchie'),(6228,'Barbara von Wrangell'),(6229,'Craig Pruess'),(6230,'Jong Lin'),(6231,'Justin Krish'),(6232,'Carrie Hilton'),(6233,'Liora Reich'),(6234,'Nick Ellis'),(6235,'Mark Scruton'),(6236,'Sara Neighbour'),(6237,'Ralph Holes'),(6238,'Juliet Stevenson'),(6239,'Ameet Chana'),(6240,'Mariska Hargitay'),(6258,'Peter Weck'),(6264,'Udo Samel'),(6266,'Steffen Groth'),(6268,'Sebastian Blomberg'),(6273,'Dani Levy'),(6278,'Devon Aoki'),(6279,'Alexis Bledel'),(6280,'Powers Boothe'),(6281,'Charlotte Ayanna'),(6282,'Lucie Bates'),(6283,'Michael Nyqvist'),(6284,'Kay Pollak'),(6285,'Frida Hallgren'),(6286,'Helen Sju00f6holm'),(6287,'Lennart Ju00e4hkel'),(6288,'Ingela Olsson'),(6289,'Verena Buratti'),(6290,'Ulla-Britt Norrman-Olsson'),(6291,'Per Morberg'),(6292,'Barbro Kollberg'),(6294,'Niklas Falk'),(6296,'Axelle Axell'),(6297,'Lasse Petterson'),(6298,'Ylva Lu00f6u00f6f'),(6301,'Mikael Rahm'),(6310,'David Brisbin'),(6318,'Yann Dedet'),(6320,'Anders Nyberg'),(6321,'Valente Rodriguez'),(6322,'Ola Olsson'),(6323,'Carin Pollak'),(6325,'Margaretha Pollak'),(6326,'Pat Skipper'),(6327,'Andru00e9 Sju00f6berg'),(6328,'Jack Gill'),(6329,'Irene Olga Lu00f3pez'),(6330,'Anders Birkeland'),(6331,'Gu00f6ran Lindstru00f6m'),(6332,'Gunnar Carlsson'),(6333,'Henrik Mu00f8ller-Su00f8rensen'),(6334,'Peter Possne'),(6335,'Stefan Nilsson'),(6336,'Harald Gunnar Paalgard'),(6337,'Thomas Tu00e4ng'),(6338,'Imor Hermann'),(6339,'Hedvig Andu00e9r'),(6340,'Susannah Grant'),(6341,'John Hardy'),(6342,'Gail Lyon'),(6344,'Carla Santos Shamberg'),(6345,'Edward Lachman'),(6346,'Anne V. Coates'),(6347,'Margery Simkin'),(6348,'Jeffrey Kurland'),(6349,'Alan J. Pakula'),(6352,'Jane Fonda'),(6354,'Charles Cioffi'),(6355,'Roy Scheider'),(6357,'Michael Small'),(6358,'George Jenkins'),(6360,'Dorothy Tristan'),(6361,'Nick Hamm'),(6365,'Desmond Harrington'),(6366,'Laurence Fox'),(6368,'Embeth Davidtz'),(6370,'Lisa Bryer'),(6371,'Pippa Cross'),(6372,'Suzanne Warren'),(6373,'Franu00e7ois Ivernel'),(6374,'Andrea Calderwood'),(6377,'Clint Mansell'),(6378,'Denis Crossan'),(6379,'Eve Stewart'),(6380,'Verity Hawkes'),(6381,'Andrew Grant'),(6382,'Tom Read'),(6383,'Aaron Eckhart'),(6384,'Keanu Reeves'),(6385,'William Richert'),(6386,'Rodney Harvey'),(6387,'Anthony Brand'),(6388,'Bill Stafford'),(6389,'Eric Alan Edwards'),(6390,'Curtiss Clayton'),(6391,'David Brisbin'),(6392,'Beatrix Aruna Pasztor'),(6393,'Gina Monaci'),(6394,'John Lurie'),(6395,'Eszter Balint'),(6396,'Richard Edson'),(6400,'Tom DiCillo'),(6401,'Rockets Redglare'),(6405,'Chiara Caselli'),(6406,'Melody London'),(6407,'Marley Shelton'),(6408,'Nick Stahl'),(6409,'Robert Salerno'),(6410,'Francine Maisler'),(6411,'Deborah Riley'),(6412,'Meg Everist'),(6413,'Danny Huston'),(6416,'Polly Walker'),(6422,'Michau0142 Lorenc'),(6431,'Darren Aronofsky'),(6432,'Sean Gullette'),(6433,'Eric Watson'),(6434,'Oren Sarch'),(6435,'Denise Fitzgerald'),(6436,'Matthew Maraffi'),(6437,'Ben Shenkman'),(6438,'Stephen Pearlman'),(6439,'Samia Shoaib'),(6440,'Kristyn Mae-Anne Lao'),(6441,'Espher Lao Nieves'),(6444,'Yohei Taneda'),(6446,'Christopher Allen Nelson'),(6449,'Warren Beatty'),(6450,'Faye Dunaway'),(6451,'Michael J. Pollard'),(6452,'Burnett Guffey'),(6453,'Dede Allen'),(6455,'Theadora Van Runkle'),(6461,'Estelle Parsons'),(6462,'Denver Pyle'),(6463,'Dub Taylor'),(6465,'Grace Zabriskie'),(6466,'Tom Troupe'),(6467,'Karen Murphy'),(6468,'Nick Wechsler'),(6473,'Kelly Lynch'),(6474,'James Le Gros'),(6476,'Cary Brokaw'),(6479,'Sharon Bialy'),(6480,'Eve Cauley'),(6482,'John Singleton'),(6483,'Ernest Tidyman'),(6485,'Busta Rhymes'),(6486,'Dan Hedaya'),(6487,'Richard Roundtree'),(6488,'Mark Roybal'),(6489,'David Arnold'),(6490,'Donald E. Thorin'),(6491,'John Bloom'),(6492,'Antonia Van Drimmelen'),(6493,'Ilene Starger'),(6494,'Patrizia von Brandenstein'),(6495,'Mira Nair'),(6496,'Sabrina Dhawan'),(6497,'Naseeruddin Shah'),(6498,'Lillete Dubey'),(6500,'Vijay Raaz'),(6501,'Tillotama Shome'),(6502,'Vasundhara Das'),(6503,'Parvin Dabas'),(6504,'Allyson C. Johnson'),(6505,'Sunil Chabra'),(6506,'Arjun Bhasin'),(6507,'Uma Da Cunha'),(6508,'Loveleen Tandan'),(6509,'Dilip Shankar'),(6510,'Jonathan Sehring'),(6511,'Caroline Kaplan'),(6512,'Shernaz Italia'),(6513,'Freny Khodaiji'),(6514,'Robyn Aronstam'),(6515,'Sameer Arya'),(6516,'Neha Dubey'),(6517,'Kemaya Kidwai'),(6518,'Ishaan Nair'),(6519,'Randeep Hooda'),(6520,'Soni Razdan'),(6535,'Antonio Dechent'),(6541,'Philip Bosco'),(6542,'Isaac Hayes'),(6547,'Pierre Boulanger'),(6550,'Anne Suarez'),(6553,'Isabelle Adjani'),(6554,'Guillaume Gallienne'),(6558,'Gordon Parks'),(6561,'Moses Gunn'),(6564,'Lawrence Pressman'),(6565,'Victor Arnold'),(6569,'J.J. Johnson'),(6571,'Hugh A. Robertson'),(6573,'William Sadler'),(6574,'Clancy Brown'),(6575,'Gil Bellows'),(6576,'Mark Rolston'),(6577,'James Whitmore'),(6578,'Renee Blaine'),(6579,'Brian Delate'),(6580,'Brian Libby'),(6581,'Richard Francis-Bruce'),(6583,'Julie Lichter'),(6584,'Terence Marsh'),(6585,'Perla Haney-Jardine'),(6586,'Barry Gifford'),(6587,'Diane Ladd'),(6588,'Isabella Rossellini'),(6589,'Monty Montgomery'),(6590,'Sigurju00f3n Sighvatsson'),(6591,'Chris Isaak'),(6593,'John Huston'),(6594,'Sam Spiegel'),(6600,'Peter Bull'),(6601,'John Woolf'),(6603,'Jack Cardiff'),(6604,'Ralph Kemplen'),(6608,'Cliff Richardson'),(6609,'Theodore Bikel'),(6610,'Walter Gotell'),(6612,'Richard Marner'),(6613,'Minnie Driver'),(6614,'Cole Hauser'),(6615,'John Mighton'),(6616,'Rachel Majorowski'),(6617,'Colleen McCauley'),(6618,'Matt Mercier'),(6619,'Ralph St. George'),(6620,'Rob Lynds'),(6621,'Dan Washington'),(6622,'Derrick Bridgeman'),(6623,'Vik Sahay'),(6624,'Jonathan Gordon'),(6625,'Su Armstrong'),(6626,'Jean-Yves Escoffier'),(6627,'Chris Moore'),(6628,'Missy Stewart'),(6629,'James McAteer'),(6630,'Jaro Dick'),(6635,'Wladyslaw Szpilman'),(6637,'Frank Finlay'),(6638,'Maureen Lipman'),(6639,'Emilia Fox'),(6640,'Ed Stoppard'),(6641,'Julia Rayner'),(6642,'Jessica Kate Meyer'),(6643,'Michal Zebrowski'),(6644,'Wanja Mues'),(6645,'Richard Ridings'),(6646,'Nomi Sharron'),(6647,'Detlev von Wangenheim'),(6648,'Ingmar Bergman'),(6657,'Bibi Andersson'),(6661,'Inga Landgru00e9'),(6668,'Christian Wagner'),(6677,'Kyle MacLachlan'),(6678,'Michael Ontkean'),(6679,'Richard Beymer'),(6681,'Sherilyn Fenn'),(6684,'Lara Flynn Boyle'),(6685,'Thomas Keneally'),(6687,'Tova Cypin'),(6688,'Anna B. Sheppard'),(6689,'Bruce Minkus'),(6690,'Jill Brooks'),(6691,'Krzysztof Kotowski'),(6692,'Caroline Goodall'),(6693,'Jonathan Sagall'),(6694,'Malgorzata Gebel'),(6695,'Shmuel Levy'),(6696,'Mark Ivanir'),(6697,'Bu00e9atrice Macola'),(6698,'Friedrich von Thun'),(6699,'Krzysztof Luft'),(6700,'Harry Nehring'),(6701,'Norbert Weisser'),(6702,'Adi Nitzan'),(6703,'Michael Schneider'),(6704,'Miri Fabian'),(6705,'Anna Mucha'),(6706,'Albert Misak'),(6708,'Aldona Grochal'),(6709,'Jacek Wu00f3jcicki'),(6710,'Beata Paluch'),(6711,'Piotr Polk'),(6712,'Ezra Dagan'),(6713,'Michael Kuhn'),(6714,'Mu00e4dchen Amick'),(6715,'Dana Ashbrook'),(6717,'James Marshall'),(6718,'Jack Nance'),(6719,'Ray Wise'),(6720,'Joan Chen'),(6721,'Piper Laurie'),(6725,'Russ Tamblyn'),(6726,'Sheryl Lee'),(6727,'Kimmy Robertson'),(6728,'David Newman'),(6729,'Robert Benton'),(6730,'Sacha Baron Cohen'),(6731,'Anthony Hines'),(6732,'Peter Baynham'),(6733,'Dan Mazer'),(6734,'Ken Davitian'),(6735,'Luenell'),(6736,'Pamela Anderson'),(6737,'Jay Roach'),(6738,'Monica Levinson'),(6739,'Erran Baron Cohen'),(6740,'Luke Geissbuhler'),(6741,'Anthony Hardwick'),(6742,'Craig Alpert'),(6743,'Jason Alper'),(6744,'David Maturana'),(6745,'Richard Henderson'),(6746,'Jon Klein'),(6748,'Joel Grey'),(6749,'Vladica Kostic'),(6750,'Vincent Paterson'),(6751,'Siobhan Fallon'),(6752,'Zeljko Ivanek'),(6753,'Reathel Bean'),(6754,'Mette Berggreen'),(6755,'Lars Michael Dinesen'),(6756,'Katrine Falkenberg'),(6757,'Michael Flessas'),(6758,'John Randolph Jones'),(6759,'Friu00f0rik u00deu00f3r Friu00f0riksson'),(6760,'Finn Gjerdrum'),(6761,'Mogens Glad'),(6762,'Anja Grafers'),(6763,'Torleif Hauge'),(6764,'Tero Kaukomaa'),(6765,'Poul Erik Lindeborg'),(6766,'Els Vandevorst'),(6767,'Larry Charles'),(6769,'Joseph Mascolo'),(6772,'Julius Harris'),(6774,'Joe Santos'),(6777,'Moe Howard'),(6778,'John Guillermin'),(6779,'Stirling Silliphant'),(6780,'Vonetta McGee'),(6783,'Spiros Focu00e1s'),(6784,'Jacques Herlin'),(6787,'Adolfo Lastretti'),(6791,'Irene Howard'),(6793,'John Stoll'),(6794,'Franu00e7ois Gu00e9digier'),(6795,'Karl Ju00falu00edusson'),(6796,'Peter Grant'),(6797,'Manon Rasmussen'),(6799,'Jeff Coopwood'),(6800,'David Tattersall'),(6801,'Michael Seirton'),(6802,'Karyn Wagner'),(6804,'Graham Greene'),(6805,'Dabbs Greer'),(6806,'Doug Hutchison'),(6807,'Sam Rockwell'),(6818,'Werner Herzog'),(6826,'Peter Zeitlinger'),(6827,'Joe Bini'),(6828,'Ken King'),(6830,'Carly Nahon'),(6831,'Claire Pakis'),(6832,'Melissa Leo'),(6835,'Walter Bernstein'),(6836,'Dan O\'Herlihy'),(6837,'Walter Matthau'),(6838,'Frank Overton'),(6839,'Fritz Weaver'),(6840,'Larry Hagman'),(6841,'William Hansen'),(6844,'Dom DeLuise'),(6847,'Gerald Hirschfeld'),(6848,'Ralph Rosenblum'),(6851,'Anna Hill Johnstone'),(6852,'Jack Fitzstephens'),(6854,'Mark Protosevich'),(6855,'Paul Gallico'),(6856,'Kurt Russell'),(6857,'Jacinda Barrett'),(6858,'Mike Vogel'),(6859,'Mu00eda Maestro'),(6860,'Jimmy Bennett'),(6861,'Andre Braugher'),(6862,'Freddy Rodru00edguez'),(6863,'Kevin Dillon'),(6864,'Kirk B.R. Woller'),(6865,'Sheila Allen'),(6866,'Todd Arnow'),(6867,'Chris Briggs'),(6868,'Kevin Burns'),(6869,'Mike Fleiss'),(6870,'Duncan Henderson'),(6871,'Barbara Huber'),(6873,'Kimberly Miller'),(6874,'Ben Waisbren'),(6875,'Peter Honess'),(6876,'Michelle Lewitt'),(6877,'William Sandell'),(6878,'Kevin Ishioka'),(6879,'Mike Mansbridge'),(6880,'Robert Gould'),(6881,'Erica Edell Phillips'),(6882,'Michael K. Bauer'),(6883,'Dick Bernstein'),(6884,'Patty Jenkins'),(6885,'Charlize Theron'),(6886,'Christina Ricci'),(6887,'Brad Wyman'),(6888,'Clark Peterson'),(6889,'Donald Kushner'),(6890,'Mark Damon'),(6891,'Andreas Grosch'),(6892,'Stewart Hall'),(6893,'Sammy Lee'),(6894,'Meagan Riley-Grant'),(6895,'Andreas Schmid'),(6896,'Brent Morris'),(6897,'David Alvarado'),(6898,'BT'),(6899,'Steven Bernstein'),(6900,'Jane Kurson'),(6901,'Edward T. McAvoy'),(6902,'Orvis Rigsby'),(6903,'Shawn R. McFall'),(6904,'Rhona Meyers'),(6905,'Bruce Dern'),(6906,'Lee Tergesen'),(6907,'Annie Corley'),(6908,'Marc Macaulay'),(6909,'Stephan Jones'),(6910,'T. Robert Pigott'),(6911,'John Godey'),(6912,'Ken Friedman'),(6913,'Ellen Barkin'),(6914,'Scott Wilson'),(6916,'Peter Jason'),(6918,'Ry Cooder'),(6919,'Donn Aron'),(6921,'Gene Rudolf'),(6922,'Christa Munro'),(6923,'Troy Sizemore'),(6924,'Dan Moore'),(6925,'Ernie Bishop'),(6929,'Tippi Hedren'),(6930,'Diane Baker'),(6931,'Martin Gabel'),(6933,'Alan Napier'),(6934,'George Milo'),(6935,'Hilton A. Green'),(6937,'Lawrence Tierney'),(6938,'Randy Brooks'),(6939,'Edward Bunker'),(6940,'Karyn Rachtman'),(6941,'Cameron Diaz'),(6942,'Eric Weinstein'),(6944,'Octavia Spencer'),(6945,'K. K. Dodds'),(6947,'Byrne Piven'),(6949,'John Malkovich'),(6950,'Kevin Carroll'),(6951,'W. Earl Brown'),(6952,'Charlie Sheen'),(6954,'Bill M. Ryusaki'),(6955,'Vincent Landay'),(6956,'Sandy Stern'),(6957,'Michael Stipe'),(6958,'Eric Zumbrunnen'),(6959,'Justine Baddeley'),(6961,'Casey Storm'),(6962,'Joseph A. Brennan'),(6963,'Ryan Arndt'),(6964,'John E. Gray'),(6965,'John Ziegler'),(6966,'Jason Barnett'),(6968,'Hugh Jackman'),(6969,'Geoff Bell'),(6970,'Christopher Fulford'),(6971,'Nigel Lindsay'),(6972,'Ian McShane'),(6973,'Fenella Woolgar'),(6974,'Doreen Mantle'),(6975,'Meera Syal'),(6976,'Robyn Kerr'),(6977,'Richard Stirling'),(6978,'Jim Dunk'),(6979,'Romola Garai'),(6980,'u00c9mile Gaudreault'),(6981,'Carolyn Backhouse'),(6982,'Sam Friend'),(6983,'Steve Galluccio'),(6984,'Suzy Kewer'),(6985,'Jody Halse'),(6986,'Daniel Louis'),(6987,'Denise Robert'),(6988,'Gareth Wiley'),(6989,'Adam Broughton'),(6990,'Helen Robin'),(6991,'FM Le Sieur'),(6992,'Serge Ladouceur'),(6993,'Charles H. Joffe'),(6994,'Jack Rollins'),(6995,'Richard Comeau'),(6996,'Patricia Kerrigan DiCerto'),(6997,'Lucie Robitaille'),(6998,'Nick Palmer'),(6999,'Philippa Hart'),(7000,'Guillaume Murray'),(7001,'Martin Williams'),(7002,'Luke Kirby'),(7003,'Ginette Reno'),(7004,'Paul Sorvino'),(7005,'Mary Walsh'),(7006,'Peter Miller'),(7007,'Claudia Ferri'),(7008,'Sophie Lorain'),(7009,'Tim Post'),(7010,'Tara Nicodemo'),(7011,'Pierrette Robitaille'),(7012,'Dino Tavarone'),(7013,'Mark Camacho'),(7014,'Michel Perron'),(7015,'Lou Vani'),(7016,'Diane Lavallu00e9e'),(7017,'Roger Michell'),(7018,'Richard Curtis'),(7019,'Duncan Kenworthy'),(7020,'Trevor Jones'),(7021,'Michael Coulter'),(7022,'Shuna Harwood'),(7023,'Dave Crownshaw'),(7024,'Nick Gillard'),(7025,'Richard McCabe'),(7026,'Rhys Ifans'),(7027,'James Dreyfus'),(7028,'Dylan Moran'),(7029,'Roger Frost'),(7030,'Henry Goodman'),(7031,'Julian Rhind-Tutt'),(7032,'Lorelei King'),(7034,'Tom Richmond'),(7035,'Kathryn Himoff'),(7036,'Eric Stoltz'),(7037,'Jean-Hugues Anglade'),(7038,'Tai Thai'),(7039,'Bruce Ramsay'),(7040,'Kario Salem'),(7041,'Salvator Xuereb'),(7042,'Gary Kemp'),(7043,'Martin Raymond'),(7044,'Eric Pascal Chaltiel'),(7045,'Craig Armstrong'),(7046,'Cecilia Peck'),(7049,'Jon Olive'),(7050,'Richard Conway'),(7051,'James Clarke'),(7052,'Adam Kirley'),(7053,'Gregor Fisher'),(7055,'Sienna Guillory'),(7056,'Emma Thompson'),(7058,'Kris Marshall'),(7059,'Heike Makatsch'),(7060,'Martin Freeman'),(7061,'Joanna Page'),(7062,'Andrew Lincoln'),(7063,'Nina Sosanya'),(7064,'Ken Kesey'),(7065,'Lawrence Hauben'),(7066,'Jack Nitzsche'),(7067,'Haskell Wexler'),(7068,'Sheldon Kahn'),(7069,'Pat Jackson'),(7070,'Alan Gibbs'),(7071,'Louise Fletcher'),(7072,'William Redfield'),(7073,'Michael Berryman'),(7074,'Peter Brocco'),(7075,'Dean R. Brooks'),(7076,'Alonzo Brown'),(7077,'Scatman Crothers'),(7078,'Mwako Cumbuka'),(7079,'William Duell'),(7080,'Josip Elic'),(7081,'Lan Fendors'),(7082,'Nathan George'),(7083,'Ken Kenny'),(7084,'Mel Lambert'),(7085,'Sydney Lassick'),(7086,'Kay Lee'),(7087,'Brad Bird'),(7088,'Sam Simon'),(7089,'Glenn Walker Harris Jr.'),(7090,'Kelsey Grammer'),(7107,'Daniel Olbrychski'),(7124,'Ray Milland'),(7127,'Edward Carrere'),(7128,'Oliver S. Garretson'),(7129,'Rudolph Grey'),(7130,'Scott Alexander'),(7131,'Larry Karaszewski'),(7132,'Vincent D\'Onofrio'),(7133,'Max Casella'),(7134,'Brent Hinkley'),(7136,'William James Myers'),(7137,'Juliet Landau'),(7138,'Clive Rosengren'),(7139,'Norman Alden'),(7140,'Leonard Termo'),(7141,'Danny Dayton'),(7142,'Ross Manarchy'),(7143,'Bill Cusack'),(7144,'Michael Flynn'),(7145,'Michael Lehmann'),(7146,'Tom Duffield'),(7147,'Okowita'),(7148,'Cricket Rowland'),(7161,'Eva Lu00f6bau'),(7163,'Nicholas Pileggi'),(7164,'Frank Vincent'),(7165,'Pasquale Cajano'),(7166,'Kevin Pollak'),(7167,'Don Rickles'),(7168,'Vinny Vella'),(7169,'Alan King'),(7170,'Barbara De Fina'),(7171,'John Belushi'),(7172,'James Brown'),(7173,'Cab Calloway'),(7174,'Ray Charles'),(7175,'Aretha Franklin'),(7176,'Steve Cropper'),(7177,'Donald Duck Dunn'),(7178,'Murphy Dunne'),(7179,'Willie Hall'),(7180,'John Candy'),(7181,'Robert K. Weiss'),(7182,'Elmer Bernstein'),(7183,'Stephen M. Katz'),(7184,'George Folsey Jr.'),(7185,'Michael Chinich'),(7186,'John J. Lloyd'),(7187,'Richard Donner'),(7188,'Edward Khmara'),(7189,'Michael Thomas'),(7190,'Tom Mankiewicz'),(7191,'David Webb Peoples'),(7192,'Leo McKern'),(7194,'Ken Hutchison'),(7195,'Giancarlo Prete'),(7196,'Loris Loddi'),(7197,'Alessandro Serra'),(7198,'Charles Borromel'),(7199,'Harvey Bernhard'),(7200,'Lauren Shuler Donner'),(7201,'Andrew Powell'),(7202,'Vittorio Storaro'),(7203,'Wolf Kroeger'),(7204,'Ken Court'),(7205,'Giovanni Natalucci'),(7206,'Nanu00e0 Cecchi'),(7207,'John Lee Hooker'),(7208,'Lou Marini'),(7209,'Matt Murphy'),(7210,'Kathleen Freeman'),(7211,'Deborah Nadoolman'),(7213,'Jonathan Mostow'),(7214,'John D. Brancato'),(7215,'Michael Ferris'),(7217,'Tedi Sarafian'),(7218,'Kristanna Loken'),(7219,'David Andrews'),(7220,'Mark Famiglietti'),(7221,'Moira Harris'),(7222,'Chopper Bernet'),(7223,'Christopher Lawford'),(7226,'Alana Curry'),(7227,'Hal Lieberman'),(7228,'Joel B. Michaels'),(7229,'Marco Beltrami'),(7230,'Nicolas De Toth'),(7231,'Neil Travis'),(7232,'Sarah Finn'),(7233,'Jeff Mann'),(7234,'Shepherd Frankel'),(7235,'Beat Frutiger'),(7236,'Andrew Menzies'),(7237,'Jay Hart'),(7238,'April Ferry'),(7239,'Peter Brown'),(7240,'Cary Weitz'),(7241,'Rena Owen'),(7242,'Temuera Morrison'),(7244,'Julian Arahanga'),(7245,'Taungaroa Emile'),(7248,'Cliff Curtis'),(7249,'Pete Smith'),(7250,'George Henare'),(7255,'Ian Mune'),(7256,'Lee Tamahori'),(7262,'Stuart Dryburgh'),(7265,'Debra East'),(7267,'Ray Beentjes'),(7268,'Max Perlich'),(7270,'Adrian Lyne'),(7275,'Patrick Chesnais'),(7276,'Anne Consigny'),(7277,'Georges Wilson'),(7278,'Lionel Abelanski'),(7279,'Cyril Couton'),(7283,'Olivier Claverie'),(7284,'Marie-Sohna Conde'),(7285,'Stu00e9phan Wojtowicz'),(7290,'Milu00e9na Poylo'),(7294,'Anne Klotz'),(7297,'Ann Dunsford'),(7299,'Robert Bloch'),(7300,'Joseph Stefano'),(7301,'Anthony Perkins'),(7302,'Janet Leigh'),(7303,'Vera Miles'),(7304,'John Gavin'),(7305,'John L. Russell'),(7306,'Robert Clatworthy'),(7307,'Joseph Hurley'),(7308,'Rita Riggs'),(7309,'William Russell'),(7310,'Waldon O. Watson'),(7311,'Clarence Champagne'),(7312,'Angela Robinson'),(7313,'Steve Box'),(7314,'Nick Park'),(7315,'Bob Baker'),(7316,'Mark Burton'),(7317,'Peter Sallis'),(7318,'Peter Kay'),(7319,'Nicholas Smith'),(7320,'Liz Smith'),(7321,'John Thomson'),(7324,'Pan Nalin'),(7331,'Eleanor Parker'),(7332,'Arnold Stang'),(7333,'Darren McGavin'),(7338,'Darrell Silvera'),(7348,'Carlos Carrera'),(7349,'Eu00e7a de Queiru00f3s'),(7350,'Vicente Leu00f1ero'),(7351,'Ana Claudia Talancu00f3n'),(7352,'Sancho Gracia'),(7353,'Angu00e9lica Aragu00f3n'),(7354,'Daniel Birman Ripstein'),(7355,'Alfredo Ripstein hijo'),(7356,'Josu00e9 Maru00eda Morales'),(7357,'Claudia Becker'),(7358,'Scot Evans'),(7359,'Atahualpa Lichy'),(7360,'Laura Imperiale'),(7361,'Rosino Serrano'),(7362,'Guillermo Granillo'),(7363,'u00d3scar Figueroa'),(7364,'Sandra Leu00f3n Becker'),(7365,'Carmen Gimu00e9nez Cacho'),(7366,'Ivonne Fuentes'),(7367,'Maru00eda Estela Fernu00e1ndez'),(7368,'Ernesto Gu00f3mez Cruz'),(7369,'Gastu00f3n Melo'),(7370,'Damiu00e1n Alcu00e1zar'),(7371,'Andru00e9s Montiel'),(7372,'Pedro Armendu00e1riz Jr.'),(7373,'Blanca Loaria'),(7374,'Juan Ignacio Aranda'),(7375,'Veru00f3nica Langer'),(7376,'Jorge Zu00e1rate'),(7377,'Lorenzo de Rodas'),(7378,'Roger Nevares'),(7381,'Sara Allgood'),(7395,'Bobby Farrelly'),(7396,'Peter Farrelly'),(7397,'Ed Decter'),(7398,'John J. Strauss'),(7399,'Ben Stiller'),(7400,'Lee Evans'),(7401,'Lin Shaye'),(7402,'Markie Post'),(7404,'Sarah Silverman'),(7405,'Frank Beddor'),(7406,'Michael Steinberg'),(7407,'Bradley Thomas'),(7408,'Charles B. Wessler'),(7409,'J.B. Rogers'),(7411,'Patrick Healy'),(7412,'Mark Charpentier'),(7413,'Mark Irwin'),(7414,'Christopher Greenbury'),(7415,'Rick Montgomery'),(7416,'Arlan Jay Vetter'),(7417,'Scott Jacobson'),(7418,'Mary Zophres'),(7419,'Brett Favre'),(7420,'Harvey Fierstein'),(7422,'Patrick Williams'),(7423,'Erika von Tagen'),(7424,'Oscar Goodman'),(7425,'Nobu Matsuhisa'),(7426,'Duncan Tucker'),(7427,'Felicity Huffman'),(7428,'Danny Burstein'),(7429,'Maurice Orozco'),(7430,'Elizabeth Peu00f1a'),(7431,'Kevin Zegers'),(7432,'Rene Bastian'),(7433,'Linda Moran'),(7434,'Lucy Cooper'),(7435,'David Mansfield'),(7436,'Stephen Kazmierski'),(7437,'Pam Wise'),(7438,'Eve Battaglia'),(7439,'Mark White'),(7440,'Lisa Scoppa'),(7441,'Danny Glicker'),(7442,'Elinyisia Mosha'),(7443,'Karen O\'Toole'),(7444,'Nick Mazzola'),(7446,'Emma Chambers'),(7447,'Alec Baldwin'),(7449,'Shinobu Hashimoto'),(7450,'Toshiru014d Mifune'),(7453,'Takashi Shimura'),(7454,'Minoru Chiaki'),(7455,'Kichijiru00f4 Ueda'),(7456,'Noriko Honma'),(7457,'Daisuke Katu00f4'),(7460,'Fumio Hayasaka'),(7463,'Grant Monohon'),(7465,'Carrie Preston'),(7466,'Paul Borghese'),(7467,'David Fincher'),(7468,'Chuck Palahniuk'),(7469,'Jim Uhls'),(7470,'Meat Loaf'),(7471,'Zach Grenier'),(7472,'Richmond Arquette'),(7473,'Rachel Singer'),(7474,'Ross Grayson Bell'),(7475,'Ceu00e1n Chaffin'),(7477,'John King'),(7478,'Michael Simpson'),(7479,'Jeff Cronenweth'),(7480,'James Haygood'),(7481,'Laray Mayfield'),(7482,'Julian Schnabel'),(7483,'Lech Majewski'),(7484,'John F. Bowe'),(7486,'Michael Wincott'),(7487,'David Bowie'),(7488,'Jean-Claude La Marre'),(7489,'Parker Posey'),(7490,'Randy Ostrow'),(7491,'John Cale'),(7492,'Ron Fortunato'),(7493,'Michael Berenbaum'),(7494,'Sheila Jaffe'),(7495,'Georgianne Walken'),(7496,'Dan Leigh'),(7497,'Holt McCallany'),(7498,'Eion Bailey'),(7499,'Jared Leto'),(7500,'Peter Iacangelo'),(7501,'Ronald Neame'),(7502,'Ernest Borgnine'),(7503,'Red Buttons'),(7505,'Roddy McDowall'),(7506,'Irwin Allen'),(7510,'Harold F. Kress'),(7511,'Jack Baur'),(7512,'William J. Creber'),(7516,'Ty Hillman'),(7517,'Kate Bosworth'),(7518,'Austin Schwarz'),(7519,'Dustin Schwarz'),(7520,'Jeanette Nolan'),(7521,'Steve Frye'),(7522,'Don Edwards'),(7523,'Jessalyn Gilsig'),(7525,'William \'Buddy\' Byrd'),(7526,'John Hogarty'),(7527,'Michel Lalonde'),(7528,'C.J. Byrnes'),(7529,'Allison Moorer'),(7530,'Rachel Pfeffer'),(7531,'Joseph P. Reidy'),(7532,'Karen Tenkhoff'),(7533,'Gwil Owen'),(7534,'Gretchen Rennell'),(7535,'Hilton Rosemarin'),(7536,'Judy L. Ruskin'),(7537,'Steve Boeddeker'),(7538,'Bill Bernstein'),(7539,'Liz Phair'),(7543,'Marina Massironi'),(7556,'Silvana Bosi'),(7560,'Luca Bigazzi'),(7569,'Harriet Andersson'),(7570,'Lauren Bacall'),(7571,'Blair Brown'),(7572,'Thom Hoffman'),(7574,'Cleo King'),(7576,'Bill Raymond'),(7577,'Shauna Shim'),(7586,'Simone Grau'),(7621,'Courtney Love'),(7622,'Hope Clarke'),(7623,'Sam Raimi'),(7624,'Stan Lee'),(7625,'Steve Ditko'),(7626,'Avi Arad'),(7627,'Laura Ziskin'),(7628,'Grant Curtis'),(7629,'Ivan Raimi'),(7630,'Alvin Sargent'),(7631,'Stella Stevens'),(7632,'Shelley Winters'),(7633,'Leslie Nielsen'),(7641,'Anne Revere'),(7642,'Barbara O\'Neil'),(7646,'Walter Wanger'),(7647,'Miklu00f3s Ru00f3zsa'),(7651,'John P. Austin'),(7652,'Travis Banton'),(7657,'Julian Nott'),(7658,'Danny Hambrook'),(7659,'Adrian Rhodes'),(7661,'Thornton Wilder'),(7663,'Teresa Wright'),(7664,'Joseph Cotten'),(7666,'Henry Travers'),(7667,'Patricia Collinge'),(7668,'Hume Cronyn'),(7670,'Roderick Thorp'),(7671,'Jeb Stuart'),(7672,'Reginald VelJohnson'),(7673,'Bonnie Bedelia'),(7674,'Alexander Godunov'),(7675,'Paul Gleason'),(7676,'William Atherton'),(7677,'De\'voreaux White'),(7678,'Hart Bochner'),(7679,'Dennis Hayden'),(7681,'Charles Gordon'),(7682,'Anthony Dawson'),(7684,'Thelma Ritter'),(7685,'Raymond Burr'),(7686,'Judith Evelyn'),(7687,'Sam Comer'),(7688,'Ray Moyer'),(7689,'Wally Westmore'),(7690,'C.O. Erickson'),(7693,'Franu00e7ois Berlu00e9and'),(7695,'Jean-Franu00e7ois Lepetit'),(7706,'Roxane Mesquida'),(7708,'Arsinu00e9e Khanjian'),(7712,'Bob Murawski'),(7713,'Beau Marks'),(7714,'Michael Kamen'),(7715,'Frank J. Urioste'),(7716,'Jackson De Govia'),(7717,'John R. Jensen'),(7718,'Philip Leonard'),(7719,'Marilyn Vance'),(7721,'Robert A. Heinlein'),(7722,'Edward Neumeier'),(7723,'Jon Davison'),(7724,'Frances Doel'),(7725,'Stacy Lumbrezer'),(7726,'Alan Marshall'),(7727,'Phil Tippett'),(7728,'Basil Poledouris'),(7730,'Caroline Ross'),(7731,'Elaine J. Huzzar'),(7732,'Allan Cameron'),(7733,'Bruce Robert Hill'),(7734,'Steven Wolff'),(7735,'Ellen Mirojnick'),(7741,'Simon Boswell'),(7742,'Kristoffer Joner'),(7746,'John Andreas Andersen'),(7748,'Cornell Woolrich'),(7749,'Arthur La Bern'),(7750,'Anthony Shaffer'),(7751,'William Hill'),(7752,'Ron Goodwin'),(7753,'Gilbert Taylor'),(7754,'John Jympson'),(7755,'Sally Nicholl'),(7756,'Syd Cain'),(7757,'Robert W. Laing'),(7763,'Ren Klyce'),(7764,'Richard Hymns'),(7765,'Walon Green'),(7766,'Roy N. Sickner'),(7767,'Sam Peckinpah'),(7768,'Phil Feldman'),(7769,'Jerry Fielding'),(7770,'Lou Lombardo'),(7771,'Al Greenway'),(7772,'William D. Faralla'),(7773,'Robert J. Miller'),(7774,'Bud Hulburd'),(7775,'Stephen Sommers'),(7778,'Patricia Carr'),(7779,'Sean Daniel'),(7780,'James Jacks'),(7781,'Kevin Jarre'),(7783,'Adrian Biddle'),(7784,'Bob Ducsay'),(7786,'Ros Hubbard'),(7787,'Giles Masters'),(7788,'Tony Reading'),(7789,'Cliff Robinson'),(7790,'Peter Russell'),(7791,'Peter Howitt'),(7793,'John Bloomfield'),(7794,'Joyce Maynard'),(7795,'Buck Henry'),(7796,'Illeana Douglas'),(7797,'Leslie Morgan'),(7798,'Sandy Isaac'),(7800,'Deirdre Bowen'),(7802,'Carol Lavoie'),(7803,'Christian Berkel'),(7804,'Oliver Stokowski'),(7805,'Wotan Wilke Mu00f6hring'),(7832,'Oliver Hirschbiegel'),(7837,'Hans Funck'),(7839,'Claudia Bobsin'),(7843,'Benjamin Herrmann'),(7844,'Michael Blake'),(7847,'Jim Wilson'),(7848,'Jeffrey Beecroft'),(7849,'Lisa Dean'),(7850,'Elsa Zamparelli'),(7852,'Jim Lovell'),(7853,'Rodney A. Grant'),(7854,'Al Reinert'),(7855,'Michael Corenblith'),(7856,'Bruce Alan Miller'),(7857,'Merideth Boswell'),(7858,'Larry Abbott'),(7859,'Matt Sweeney'),(7860,'Shoshana Abrass'),(7861,'Jeffrey Kluger'),(7862,'Floyd Red Crow Westerman'),(7863,'Tantoo Cardinal'),(7864,'Heather Burton'),(7865,'Michael Brandt'),(7866,'Robert Pastorelli'),(7867,'Charles Rocket'),(7868,'Maury Chaykin'),(7869,'Jimmy Herman'),(7870,'Steve Potter'),(7871,'Nathan Lee Chasing His Horse'),(7872,'Michael Spears'),(7873,'Jason R. Lone Hill'),(7874,'Tony Pierce'),(7875,'Doris Leader Charge'),(7878,'Darla K. Anderson'),(7879,'John Lasseter'),(7880,'Kori Rae'),(7881,'Jill Culton'),(7882,'Jeff Pidgeon'),(7883,'Ralph Eggleston'),(7884,'Daniel Gerson'),(7885,'Randy Newman'),(7886,'Jim Stewart'),(7887,'Thomas Porter'),(7888,'Harley Jessup'),(7889,'Bob Pauley'),(7890,'Tia W. Kratter'),(7891,'Dominique Louis'),(7892,'Glenn McQueen'),(7893,'Rich Quade'),(7894,'Jean-Claude Kalache'),(7896,'Rick Sayre'),(7897,'Eben Ostby'),(7898,'Sophie Vincelette'),(7899,'Galyn Susman'),(7901,'Katherine Sarafian'),(7902,'Ruth Lambert'),(7903,'Mary Hidalgo'),(7904,'Billy Crystal'),(7905,'Mary Gibbs'),(7906,'Jennifer Tilly'),(7907,'John Ratzenberger'),(7908,'Frank Oz'),(7909,'Steve Susskind'),(7910,'Samuel Lord Black'),(7911,'Joe Ranft'),(7912,'Marcia Gwendolyn Jones'),(7918,'Bud Luckey'),(7921,'Ken Mitchroney'),(7924,'Nathan Stanton'),(7925,'Geefwee Boedoe'),(7927,'Ricky Nierva'),(7929,'Angus MacLane'),(7930,'Jan Pinkava'),(7931,'Robert L. Baird'),(7932,'Rhett Reese'),(7933,'Jonathan Roberts'),(7940,'Jonas Rivera'),(7942,'Bryn Imagire'),(7943,'Glenn Kim'),(7944,'Laura Phillips'),(7945,'Paul Mica'),(7946,'Jamie Frye'),(7947,'Phaedra Craig'),(7948,'Yvonne Herbst'),(7949,'Robin Cooper'),(7950,'Mark Cordell Holmes'),(7951,'Jason Deamer'),(7952,'Randy Berrett'),(7953,'David Hong'),(7954,'Gary Schultz'),(7955,'Albert Lozano'),(7956,'Nathaniel McLaughlin'),(7957,'Bud Thon'),(7958,'Lawrence Marvit'),(7960,'Jerome Ranft'),(7961,'Norm DeCarlo'),(7962,'Lou Romano'),(7963,'Carter Goodrich'),(7964,'Kevin Hawkes'),(7965,'J. Otto Seibold'),(7966,'Nicolas Marlet'),(7967,'Peter DeSeve'),(7968,'Oscar Grillo'),(7969,'Lane Smith'),(7970,'Chris Ure'),(7971,'Jay Ward'),(7972,'Andrea Warren'),(7973,'Nick Vlahos'),(7975,'Patrick Lin'),(7978,'Shawn Brennan'),(7979,'Gregg Olsson'),(7980,'Derek Williams'),(7981,'Robert Anderson'),(7982,'Louis Gonzales'),(7984,'Mark Sanford'),(7988,'Jeremy Lasky'),(7995,'Billy Merritt'),(7996,'Brett Pulliam'),(7998,'Bret \'Brook\' Parker'),(7999,'Gini Cruz Santos'),(8001,'Trish Carney'),(8002,'Jon Childress Farmer'),(8003,'Ellen Moon Lee'),(8004,'Phat Phuong'),(8005,'Dan Sukiennik'),(8006,'Elizabeth Tobit'),(8007,'David Eisenmann'),(8008,'Jessica Hutchison'),(8009,'Sarah Jo Helton'),(8010,'Doug Sweetland'),(8011,'Scott Clark'),(8012,'Alan Barillaro'),(8013,'Andrew Gordon'),(8015,'Shawn Krause'),(8017,'Jeff Pratt'),(8018,'David DeVan'),(8019,'Stephen Gregory'),(8020,'John Kahrs'),(8021,'Bobby Podesta'),(8023,'Kyle Balda'),(8024,'Stephen Barnes'),(8025,'Michael Berenstein'),(8026,'Brett Coderre'),(8027,'Ricardo Curtis'),(8028,'Doug Dooley'),(8029,'Jimmy Hayward'),(8030,'Nancy Kato'),(8031,'Bobby Beck'),(8032,'Dylan Brown'),(8033,'Tim Crawfurd'),(8034,'Ike Feldman'),(8035,'Karen Kiser'),(8036,'Wendell Lee'),(8037,'Daniel Mason'),(8038,'Amy McNamara'),(8039,'James Ford Murphy'),(8040,'Victor Navone'),(8041,'Robert H. Russ'),(8042,'Andy Schmidt'),(8043,'Patty Kihm Stevenson'),(8044,'David Tart'),(8045,'Jon Mead'),(8046,'Dave Mullins'),(8047,'Peter Nash'),(8048,'Sanjay Patel'),(8049,'Roger Rose'),(8050,'Alan Sperling'),(8051,'Ross Stevenson'),(8052,'J. Warren Trezevant'),(8053,'Michael Venturini'),(8054,'Adam Wood'),(8055,'Tasha Wedeen'),(8056,'Kureha Yokoo'),(8057,'Ron Zorman'),(8058,'Paul Mendoza'),(8059,'Jenni Tsoi'),(8061,'Kathleen Relyea'),(8062,'Gabrielle Siegel'),(8063,'Ken Schretzmann'),(8064,'Robert Grahamjones'),(8065,'Torbin Xan Bullock'),(8066,'Katherine Ringgold'),(8067,'Dan Engstrom'),(8068,'Margaret Hou'),(8071,'Axel Geddes'),(8072,'Greg Snyder'),(8073,'Chris Vallance'),(8074,'Mark Yeager'),(8075,'Luis Alvarez y Alvarez'),(8076,'Jack Curtis Dubowsky'),(8078,'E.J. Holowicki'),(8079,'Hoon H. Kim'),(8080,'Renee Steen'),(8081,'Atsuko Yamagishi'),(8082,'Deirdre Warin'),(8083,'Eliot Smyrl'),(8084,'Brian Green'),(8085,'Christian Hoffman'),(8086,'Mark Adams'),(8087,'James Bancroft'),(8088,'Paul Aichele'),(8089,'Jason Bickerstaff'),(8090,'Andrew Schmidt'),(8091,'Bill Sheffler'),(8092,'Kim White'),(8093,'Christine Waggoner'),(8094,'Ethan Owen'),(8095,'Sue Maatouk-Kalache'),(8096,'Daniel McCoy'),(8097,'Ben Jordan'),(8098,'Anthony A. Apodaca'),(8099,'Byron Bashforth'),(8100,'David Batte'),(8101,'Gina Trbovich-Malewicz'),(8103,'Mark Nielsen'),(8104,'Janet Lucroy'),(8105,'Joyce Powell'),(8106,'Lauren Alpert'),(8107,'Scott Clifford'),(8109,'Tim Best'),(8110,'Chad Belteau'),(8112,'Bahram Hooshmand'),(8113,'Elizabeth Gonzales-Guerra'),(8115,'Steve May'),(8120,'Ken Li'),(8124,'Brad Andalman'),(8125,'Rob Cook'),(8126,'Bena Currin'),(8127,'Thomas Hahn'),(8128,'John Alex'),(8129,'Ronen Barzel'),(8130,'Tom Duff'),(8131,'Brad West'),(8132,'Ian Buono'),(8133,'Tom Deering'),(8134,'Perrin Cutting'),(8135,'Louis Rivera'),(8137,'Drew Rogge'),(8138,'Don Conway'),(8139,'David DiFrancesco'),(8140,'Beth Sullivan'),(8142,'Catherine Roehl'),(8147,'Tricia Andres'),(8148,'Arik Ehle'),(8150,'Erik Forman'),(8153,'Paul Cichocki'),(8154,'Andra Smith'),(8155,'John Hazelton'),(8156,'Courtney Bergin'),(8157,'Doc Kane'),(8158,'Michael Silvers'),(8159,'Shannon Mills'),(8160,'Dennie Thorpe'),(8161,'Derek Haas'),(8162,'Gary Scott Thompson'),(8163,'Jana Vance'),(8164,'Tony Eckert'),(8165,'Dee Selby'),(8166,'Juan Peralta'),(8167,'Paul Walker'),(8168,'Brian Magerkurth'),(8169,'Tyrese Gibson'),(8170,'Eva Mendes'),(8171,'Ludacris'),(8172,'Bruno Coon'),(8173,'Brenda Heins'),(8175,'Thom Barry'),(8177,'Michael Ealy'),(8178,'Jin Au-Yeung'),(8179,'Edward Finlay'),(8180,'Mo Gallini'),(8181,'Michael Fottrell'),(8182,'Heather Lieberman'),(8183,'Kathleen Quinlan'),(8184,'Mary Kate Schellhardt'),(8185,'Emily Ann Lloyd'),(8186,'Miko Hughes'),(8187,'Max Elliott Slade'),(8188,'Jean Speegle Howard'),(8189,'Tracy Reiner'),(8190,'Michele Little'),(8191,'Chris Ellis'),(8192,'Joe Spano'),(8193,'Florian Henckel von Donnersmarck'),(8194,'Hagen Bogdanski'),(8195,'Stu00e9phane Moucha'),(8196,'Ulrich Mu00fche'),(8197,'Sebastian Koch'),(8198,'Ulrich Tukur'),(8199,'Thomas Thieme'),(8200,'Hans-Uwe Bauer'),(8201,'Volkmar Kleinert'),(8202,'Matthias Brenner'),(8203,'Bastian Trost'),(8204,'Charly Hu00fcbner'),(8205,'Marie Gruber'),(8206,'Hinnerk Schu00f6nemann'),(8207,'Thomas Arnold'),(8208,'Max Wiedemann'),(8209,'Quirin Berg'),(8210,'Wes Bentley'),(8211,'Mena Suvari'),(8212,'Peter Gallagher'),(8213,'Sam Robards'),(8214,'Barry Del Sherman'),(8215,'Bruce Cohen'),(8216,'Dan Jinks'),(8217,'Conrad L. Hall'),(8219,'Tariq Anwar'),(8220,'Naomi Shohan'),(8221,'David Lazan'),(8222,'Julie Weiss'),(8223,'Jon Finch'),(8224,'Alec McCowen'),(8225,'Barry Foster'),(8226,'Billie Whitelaw'),(8227,'Anna Massey'),(8228,'Barbara Leigh-Hunt'),(8229,'Rod Taylor'),(8232,'Ethel Griffies'),(8233,'Charles McGraw'),(8236,'James H. Brown'),(8239,'Bernard Miles'),(8243,'Arthur Krams'),(8244,'Howard Joslin'),(8245,'Ted Mapes'),(8246,'Barry Levinson'),(8247,'Larry Beinhart'),(8251,'Hilary Henkin'),(8252,'William Holden'),(8253,'Robert Ryan'),(8254,'Edmond O\'Brien'),(8255,'Warren Oates'),(8256,'Anne Heche'),(8257,'Jaime Su00e1nchez'),(8258,'Ben Johnson'),(8259,'Emilio Fernu00e1ndez'),(8260,'Strother Martin'),(8261,'Willie Nelson'),(8262,'L.Q. Jones'),(8263,'Andrea Martin'),(8265,'John Michael Higgins'),(8266,'Suzie Plakson'),(8268,'Michael Belson'),(8269,'Suzanne Cryer'),(8270,'Jason Cottle'),(8271,'Mark Knopfler'),(8272,'Daniel Wallace'),(8273,'Mark Worthington'),(8274,'Robert Greenfield'),(8275,'Katterli Frauenfelder'),(8276,'Tim Holland'),(8277,'Arne Schmidt'),(8279,'Roy Barnes'),(8280,'Jean-Michel Ducourty'),(8281,'Robert Fechtman'),(8282,'Jack Johnson'),(8285,'Richard L. Johnson'),(8287,'Donna O\'Neal'),(8288,'Debra James'),(8289,'Billy Crudup'),(8291,'Alison Lohman'),(8293,'Marion Cotillard'),(8294,'Robert Guillaume'),(8295,'Matthew McGrory'),(8296,'Christophe Gans'),(8297,'Roger Avary'),(8299,'Andrew Mason'),(8300,'Kevin Reynolds'),(8301,'Akira Yamaoka'),(8303,'Don Carmody'),(8305,'David Nicksay'),(8306,'Douglas Milsome'),(8307,'Peter Boyle'),(8308,'John Graysmark'),(8309,'Kierston Wareing'),(8310,'Staffan Ahrenberg'),(8311,'Farah Khan'),(8312,'Tony DiTerlizzi'),(8313,'Jeremy Zimmermann'),(8315,'Carol Spier'),(8316,'Michael McShane'),(8317,'Su00e9bastien Prangu00e8re'),(8318,'Brian Blessed'),(8319,'Nick Brimble'),(8320,'Jeff Danna'),(8323,'Daniel Newman'),(8326,'Geraldine McEwan'),(8327,'Joseph Conrad'),(8328,'John Milius'),(8329,'Radha Mitchell'),(8330,'Tom Sternberg'),(8331,'John Ashley'),(8332,'Laurie Holden'),(8333,'Eddie Romero'),(8335,'Kim Coates'),(8336,'Tanya Allen'),(8337,'Terry Liebling'),(8338,'Jodelle Ferland'),(8339,'George R. Nelson'),(8340,'Fred C. Blau Jr.'),(8341,'Colleen Williams'),(8342,'Jack H. Young'),(8343,'Ron Gabriel'),(8344,'Leon Chooluck'),(8345,'Derek Ritschel'),(8346,'Jerry Ziesmer'),(8347,'Eve Crawford'),(8348,'Amanda Hiebert'),(8349,'Martin Sheen'),(8350,'Sam Bottoms'),(8351,'Frederic Forrest'),(8352,'Roberto Campanella'),(8354,'Albert Hall'),(8355,'Steve Lucescu'),(8356,'Marco Bianco'),(8357,'Shane Cardwell'),(8358,'Dean Copkov'),(8359,'Maxine Dumont'),(8360,'Tig Fong'),(8361,'Plato Fountidakis'),(8362,'Brian Jagersky'),(8363,'Ciara Jones'),(8365,'Dana Jones'),(8366,'Brian Kaulback'),(8368,'Kym Kristalie'),(8369,'Deb LeFaive'),(8370,'Pierre Henry'),(8371,'Simon Board'),(8372,'Lesley Krueger'),(8373,'Nicolas Boukhrief'),(8374,'Iain Smith'),(8375,'John A. Amicarella'),(8376,'Mark A. Mangini'),(8377,'Cliff Martinez'),(8378,'Ira Gilford'),(8379,'Ron Gress'),(8380,'Michael Lamont'),(8381,'Jim Morahan'),(8382,'Kevin Phipps'),(8383,'Maggie Gray'),(8384,'Anna Pinnock'),(8385,'Jean Paul Gaultier'),(8386,'Sarah Bradshaw'),(8387,'Crys Forsyth-Smith'),(8389,'Bernard Grenet'),(8390,'Barrie Melrose'),(8392,'Pascal Chaumeil'),(8395,'Luke Perry'),(8396,'Tom Lister Jr.'),(8397,'Charlie Creed-Miles'),(8398,'John Bluthal'),(8399,'Christopher Fairbank'),(8400,'Kim Chan'),(8401,'Mark Huffam'),(8402,'Michael Cunningham'),(8403,'David Hare'),(8404,'Dan Brown'),(8406,'John Calley'),(8408,'Salvatore Totino'),(8409,'Thierry Segur'),(8410,'Richard Roberts'),(8411,'Daniel Orlandi'),(8412,'Paul Gooch'),(8415,'Nigel Gostelow'),(8416,'Joseph Jayawardena'),(8418,'Suzie F. Wiesmann'),(8419,'William M. Connor'),(8422,'David Shire'),(8425,'Richard Chew'),(8426,'Jennifer Shull'),(8427,'Doug von Koss'),(8428,'Aggie Guerard Rodgers'),(8429,'Clark L. Paylow'),(8431,'Ted Moehnke'),(8432,'Buddy Joe Hooker'),(8434,'Cindy Williams'),(8435,'Stephen Dillane'),(8436,'Miranda Richardson'),(8437,'Teri Garr'),(8438,'Elizabeth MacRae'),(8439,'George Loftus'),(8440,'Charley Ramm'),(8441,'Sophie Wyburd'),(8442,'Lyndsey Marshal'),(8443,'Linda Bassett'),(8444,'Christian Coulson'),(8445,'Michael Culkin'),(8446,'Sam Kressner '),(8447,'Jeff Daniels'),(8448,'Robert Fox'),(8449,'Ian MacNeil'),(8450,'Daniel Swee'),(8452,'Andrei Tarkovsky'),(8453,'Stanisu0142aw Lem'),(8458,'Viacheslav Tarasov'),(8461,'Vyacheslav Ovchinnikov'),(8462,'Vadim Yusov'),(8463,'Lyudmila Feiginova'),(8465,'Nina Marcus'),(8466,'Mikhail Romadin'),(8467,'Nelli Fomina'),(8474,'Ju00fcri Ju00e4rvet'),(8475,'Anatoliy Solonitsyn'),(8476,'Vladislav Dvorzhetsky'),(8478,'Sos Sargsyan'),(8479,'Olga Barnet'),(8480,'Tamara Ogorodnikova'),(8482,'Robert Mulligan'),(8483,'Horton Foote'),(8484,'Aaron Stell'),(8485,'Harper Lee'),(8487,'Gregory Peck'),(8488,'Mary Badham'),(8489,'Phillip Alford'),(8490,'John Megna'),(8492,'Rosemary Murphy'),(8493,'Ruth White'),(8494,'Estelle Evans'),(8495,'Alice Ghostley'),(8496,'Paul Fix'),(8497,'Collin Wilcox Paxton'),(8498,'James Anderson'),(8499,'William Windom'),(8500,'John Ford'),(8502,'Darryl F. Zanuck'),(8503,'Alfred Newman'),(8504,'Gregg Toland'),(8506,'Richard Day'),(8507,'Mark-Lee Kirk'),(8508,'Thomas Little'),(8509,'Gwen Wakeling'),(8511,'Roger Heman Sr.'),(8515,'Jane Darwell'),(8516,'John Carradine'),(8517,'Charley Grapewin'),(8519,'Russell Simpson'),(8520,'O.Z. Whitehead'),(8523,'Russell Carpenter'),(8524,'Peter Lamont'),(8525,'Martin Laing'),(8526,'Michael Ford'),(8527,'Deborah Lynn Scott'),(8528,'Grant Hill'),(8529,'Jon Landau'),(8530,'Sharon Mann'),(8531,'Anna Roth'),(8532,'Lisa Dennis Kennedy'),(8533,'Giedra Rackauskas'),(8534,'Kathy Bates'),(8535,'Gloria Stuart'),(8536,'Victor Garber'),(8537,'Jonathan Hyde'),(8538,'Lewis Abernathy'),(8539,'Nicholas Cascone'),(8540,'Danny Nucci'),(8541,'Jason Barry'),(8543,'Lew Palter'),(8544,'Eric Braeden'),(8545,'Bernard Fox'),(8547,'Jonny Phillips'),(8548,'Edward Fletcher'),(8549,'Scott G. Anderson'),(8550,'Martin East'),(8551,'Gregory Cooke'),(8552,'Alexandrea Owens'),(8553,'Seth Adkins'),(8554,'Peter Benchley'),(8555,'Carl Gottlieb'),(8556,'Verna Fields'),(8557,'Fernando Meirelles'),(8558,'Joe Alves'),(8559,'Ku00e1tia Lund'),(8560,'Paulo Lins'),(8561,'Bru00e1ulio Mantovani'),(8562,'Andrea Barata Ribeiro'),(8563,'Mauricio Andrade Ramos'),(8564,'Elisa Tolomelli'),(8565,'Bel Berlinck'),(8566,'Marc Beauchamps'),(8568,'Daniel Filho'),(8569,'Hank Levine'),(8570,'Vincent Maraval'),(8571,'Donald Ranvaud'),(8572,'Juliette Renaud'),(8573,'Thomas J. Wright'),(8574,'Walter Salles'),(8575,'Ed Cortu00eas'),(8576,'Antonio Pinto'),(8577,'Cu00e9sar Charlone'),(8578,'Daniel Rezende'),(8579,'Tulu00e9 Peak'),(8581,'Bia Salgado'),(8582,'John R. Carter'),(8583,'Inu00eas Salgado'),(8584,'Anna Van Steen'),(8586,'Robert A. Mattey'),(8587,'Renu00e9 Bittencourt'),(8588,'Claudine Franco'),(8591,'Ted Grossman'),(8593,'Renato Batata'),(8594,'Francisco Bispo'),(8595,'Alexandre Rodrigues'),(8596,'Leandro Firmino'),(8597,'Phellipe Haagensen'),(8598,'Douglas Silva'),(8599,'Jonathan Haagensen'),(8600,'Matheus Nachtergaele'),(8601,'Jefechander Suplino'),(8602,'Alice Braga'),(8603,'Roberta Rodrigues'),(8604,'Luis Otu00e1vio'),(8605,'Darlan Cunha'),(8606,'Robert Shaw'),(8607,'Lorraine Gary'),(8608,'Murray Hamilton'),(8609,'Jeffrey Kramer'),(8610,'Susan Backlinie'),(8611,'Chris Rebello'),(8612,'Jay Mello'),(8613,'Lee Fierro'),(8614,'Jeffrey Voorhees'),(8615,'Craig Kingsbury'),(8616,'Robert Nevin'),(8617,'Charles Brackett'),(8619,'Franz Waxman'),(8620,'John F. Seitz'),(8621,'Arthur P. Schmidt'),(8622,'Hans Dreier'),(8623,'John Meehan'),(8626,'Gerd Oswald'),(8630,'Erich von Stroheim'),(8631,'Nancy Olson'),(8635,'Buster Keaton'),(8636,'Cecil B. DeMille'),(8638,'Anna Q. Nilsson'),(8643,'Michael Herr'),(8645,'Vivian Kubrick'),(8646,'Keith Pain'),(8648,'Barbara Drake'),(8649,'Keith Denny'),(8651,'Philip Kohler'),(8653,'Edward Tise'),(8654,'Matthew Modine'),(8655,'R. Lee Ermey'),(8656,'Dorian Harewood'),(8657,'Kevyn Major Howard'),(8658,'Ed O\'Ross'),(8659,'John Terry'),(8664,'Bruce Boa'),(8666,'Sal Lopez'),(8668,'Papillon Soo'),(8669,'Peter Edmund'),(8673,'Daniele Massaccesi'),(8674,'Martin Hume'),(8675,'Michael Blatchford'),(8676,'Dean Devlin'),(8677,'Karl Walter Lindenlaub'),(8678,'Oliver Scholl'),(8679,'William James Teegarden'),(8680,'Jim Erickson'),(8681,'Joseph A. Porro'),(8682,'Gino Acevedo'),(8683,'Victor Abbene'),(8684,'Dan Bradley'),(8685,'Andrew Niccol'),(8686,'Sacha Gervasi'),(8687,'Chi McBride'),(8688,'Diego Luna'),(8689,'Barry Shabaka Henley'),(8690,'Kumar Pallana'),(8691,'Zoe Saldana'),(8692,'Eddie Jones'),(8693,'Jude Ciccolella'),(8694,'Corey Reynolds'),(8695,'Guillermo Du00edaz'),(8696,'Rini Bell'),(8697,'Stephen Mendel'),(8699,'Michael Nouri'),(8700,'Sasha Spielberg'),(8701,'Laurie MacDonald'),(8702,'Jason Hoffs'),(8703,'Patricia Whitcher'),(8704,'Isabelle Guay'),(8705,'Brad Ricker'),(8706,'Anne Kuljian'),(8707,'Christine Wada'),(8708,'Richard C. Franklin'),(8714,'Sol Polito'),(8717,'Milo Anderson'),(8720,'Lee Katz'),(8722,'C.A. Riggs'),(8724,'Errol Flynn'),(8725,'Olivia de Havilland'),(8726,'Patric Knowles'),(8727,'Basil Rathbone'),(8728,'Eugene Pallette'),(8729,'Alan Hale'),(8730,'Melville Cooper'),(8733,'Manish Malhotra'),(8742,'Ingrid Thulin'),(8746,'Benedict Fitzgerald'),(8747,'Stephen McEveety'),(8748,'Enzo Sisti'),(8749,'Gingger Shankar'),(8750,'Caleb Deschanel'),(8751,'Steve Mirkovich'),(8752,'John Wright'),(8753,'Shaila Rubin'),(8754,'Francesco Frigeri'),(8755,'Carlo Gervasi'),(8756,'Maurizio Millenotti'),(8757,'Vito Colazzo'),(8758,'Rajeev Malhotra'),(8759,'Maurizio Argentieri'),(8760,'Kevin Crehan'),(8761,'Vincent Guisetti'),(8762,'Scott G.G. Haller'),(8763,'Dan Yale'),(8764,'Matt Temple'),(8765,'Renato Agostini'),(8766,'Tom Gleason'),(8767,'Jim Caviezel'),(8768,'Maia Morgenstern'),(8769,'Christo Jivkov'),(8770,'Francesco De Vito'),(8772,'Mattia Sbragia'),(8774,'Luca Lionello'),(8775,'Hristo Shopov'),(8776,'Claudia Gerini'),(8777,'Fabio Sartor'),(8778,'Rosalinda Celentano'),(8780,'Tony Kushner'),(8783,'Eric Bana'),(8784,'Daniel Craig'),(8785,'Ciaru00e1n Hinds'),(8786,'Ayelet Zurer'),(8787,'Gila Almagor'),(8789,'Mathieu Amalric'),(8790,'Meret Becker'),(8791,'Marie-Josu00e9e Croze'),(8792,'Lynn Cohen'),(8793,'Ami Weinberg'),(8794,'Tony Fanning'),(8795,'Anne Seibel'),(8796,'Ulrich Matthes'),(8797,'Juliane Ku00f6hler'),(8799,'Ulrich Noethen'),(8800,'Birgit Minichmayr'),(8801,'Rolf Kanies'),(8802,'Michael Mendl'),(8803,'Christine Rothe'),(8804,'Stephan Zacharias'),(8805,'Bernd Lepel'),(8806,'Nico Krebs'),(8807,'Lisa Geffcken-Reinhard'),(8808,'Joachim Fest'),(8809,'Traudl Junge'),(8810,'Melissa Mu00fcller'),(8811,'Ben Gervais'),(8814,'Frank E. Woods'),(8817,'Joseph Carl Breil'),(8819,'Billy Bitzer'),(8820,'Joseph Henabery'),(8821,'James Smith'),(8822,'Rose Smith'),(8826,'Clare West'),(8828,'Lillian Gish'),(8829,'Mae Marsh'),(8830,'Henry B. Walthall'),(8831,'Miriam Cooper'),(8832,'Mary Alden'),(8833,'Ralph Lewis'),(8834,'Josephine Crowell'),(8835,'Spottiswoode Aitken'),(8836,'Jennie Lee'),(8837,'George Siegmann'),(8838,'Elmer Clifton'),(8839,'George Beranger'),(8840,'Maxfield Stanley'),(8841,'Donald Crisp'),(8842,'Howard Gaye'),(8843,'Mick Jackson'),(8844,'Lawrence Kasdan'),(8845,'Allan Dennis Rich'),(8846,'Andrew Dunn'),(8847,'Donn Cambern'),(8848,'William Ladd Skinner'),(8849,'Susan Nininger'),(8850,'Helen Pollak'),(8851,'Whitney Houston'),(8852,'Michele Lamar Richards'),(8853,'Ralph Waite'),(8854,'Bill Cobbs'),(8855,'Christopher Birt'),(8856,'DeVaughn Nixon'),(8857,'Debbie Reynolds'),(8858,'Ivan Reitman'),(8859,'Bernie Brillstein'),(8860,'Michael C. Gross'),(8862,'Lu00e1szlu00f3 Kovu00e1cs'),(8864,'Karen Rea'),(8866,'John DeCuir Jr.'),(8867,'Marvin March'),(8868,'Theoni V. Aldredge'),(8869,'Suzy Benzinger'),(8870,'Leonard Engelman'),(8872,'Rick Moranis'),(8873,'Annie Potts'),(8874,'Ernie Hudson'),(8875,'David Margulies'),(8876,'Randal Kleiser'),(8877,'Bronte Woodard'),(8878,'Allan Carr'),(8879,'Robert Stigwood'),(8880,'Neil A. Machlis'),(8881,'John F. Burnett'),(8882,'Joel Thurm'),(8883,'Philip M. Jefferies'),(8884,'James L. Berkey'),(8885,'Albert Wolsky'),(8887,'Jerry Grandey'),(8888,'June Edgerton'),(8889,'Jerry Jost'),(8890,'Ken Speed'),(8891,'John Travolta'),(8892,'Olivia Newton-John'),(8893,'Stockard Channing'),(8894,'Jeff Conaway'),(8895,'Didi Conn'),(8896,'Barry Pearl'),(8897,'Michael Tucci'),(8898,'Kelly Ward'),(8899,'Jamie Donnelly'),(8900,'Dinah Manoff'),(8901,'Edd Byrnes'),(8902,'Sid Caesar'),(8903,'Dody Goodman'),(8904,'Susan Buckner'),(8905,'Ellen Travolta'),(8906,'Annette Charles'),(8907,'Dennis Stewart'),(8908,'Arturo Pu00e9rez-Reverte'),(8909,'John Brownjohn'),(8911,'Mark Allan'),(8912,'Antonio Cardenal'),(8913,'Michel Cheyko'),(8915,'Wolfgang Glattes'),(8917,'Adam Kempton'),(8918,'Iu00f1aki Nu00fau00f1ez'),(8919,'Alain Vannier'),(8920,'Suzanne Wiesenfeld'),(8921,'Philippe Turlure'),(8922,'Anthony Powell'),(8923,'Laura Stuart'),(8924,'Frank Langella'),(8925,'Emmanuelle Seigner'),(8926,'Barbara Jefford'),(8927,'Jack Taylor'),(8928,'Josu00e9 Lu00f3pez Rodero'),(8930,'John Cleese'),(8933,'John Du Prez'),(8934,'Alan Hume'),(8937,'John Wood'),(8938,'Hazel Pethig'),(8939,'Paul Engelen'),(8940,'Jonathan Benson'),(8941,'Jonathan Bates'),(8943,'George Gibbs'),(8944,'Jamie Lee Curtis'),(8945,'Kevin Kline'),(8946,'Maria Aitken'),(8949,'Peter Fonda'),(8950,'Terry Southern'),(8952,'Bert Schneider'),(8954,'Virgil Frye'),(8955,'Paul Lewis'),(8962,'Luke Askew'),(8963,'Karen Black'),(8965,'Roland Joffu00e9'),(8966,'Bruce Robinson'),(8967,'David Puttnam'),(8969,'Chris Menges'),(8970,'Jim Clark'),(8971,'Pat Golden'),(8973,'Steve Spence'),(8974,'Judy Moorcroft'),(8975,'Sam Waterston'),(8977,'Craig T. Nelson'),(8978,'Spalding Gray'),(8979,'Patrick Malahide'),(8984,'Bill Pullman'),(8985,'Margaret Colin'),(8986,'James Rebhorn'),(8987,'Lisa Jakub'),(8998,'Irvine Welsh'),(8999,'John Hodge'),(9000,'Christopher Figg'),(9001,'Masahiro Hirakubo'),(9002,'Andy Pryor'),(9003,'Kave Quinn'),(9004,'Tracey Gallacher'),(9005,'Fru00e9du00e9ric Pierrot'),(9006,'Rachael Fleming'),(9007,'Robert McCann'),(9008,'Lesley Stewart'),(9009,'David Gilchrist'),(9012,'Jonny Lee Miller'),(9013,'Kevin McKidd'),(9015,'Kelly Macdonald'),(9016,'Eileen Nicholas'),(9017,'Pauline Lynch'),(9018,'Anne Rice'),(9020,'David Geffen'),(9021,'Stephen Woolley'),(9022,'Redmond Morris'),(9023,'Joke van Wijk'),(9024,'Malcolm Middleton'),(9025,'James E. Tocci'),(9026,'Francesca Lo Schiavo'),(9027,'Sandy Powell'),(9028,'Sandrine Ageorges'),(9029,'Stephen Rea'),(9030,'Thandie Newton'),(9031,'Domiziana Giordano'),(9032,'Bryan Singer'),(9033,'Christopher McQuarrie'),(9034,'Michael McDonnell'),(9035,'Kenneth Kokin'),(9036,'Art Horan'),(9037,'Franu00e7ois Duplat'),(9038,'Hans Brockmann'),(9039,'John Ottman'),(9040,'Newton Thomas Sigel'),(9041,'Howard Cummings'),(9042,'Sara Andrews'),(9043,'Louise Mingenbach'),(9044,'Vicky Herman'),(9045,'Stephen Baldwin'),(9046,'Chazz Palminteri'),(9047,'Christine Estabrook'),(9048,'Clark Gregg'),(9049,'Victor Fleming'),(9051,'L. Frank Baum'),(9052,'Noel Langley'),(9053,'Florence Ryerson'),(9054,'Mervyn LeRoy'),(9055,'Arthur Freed'),(9056,'Harold Arlen'),(9057,'Harold Rosson'),(9058,'Blanche Sewell'),(9059,'Malcolm Brown'),(9060,'William A. Horning'),(9061,'Jack Martin Smith'),(9062,'Cedric Gibbons'),(9063,'Edwin B. Willis'),(9064,'Adrian'),(9066,'Judy Garland'),(9067,'Frank Morgan'),(9068,'Ray Bolger'),(9069,'Bert Lahr'),(9070,'Jack Haley'),(9071,'Billie Burke'),(9072,'Margaret Hamilton'),(9073,'Clara Blandick'),(9080,'Charles Rosher'),(9087,'George O\'Brien'),(9090,'Bodil Rosing'),(9091,'J. Farrell MacDonald'),(9093,'Jane Winton'),(9096,'Gino Corrado'),(9102,'Leonid Raab'),(9103,'Ernest Laszlo'),(9107,'Harold Lewis'),(9108,'Don Taylor'),(9110,'Richard Erdman'),(9111,'Peter Graves'),(9112,'Neville Brand'),(9119,'Gerard Soeteman'),(9123,'Roland de Groot'),(9126,'Edward Fox'),(9128,'Derek de Lint'),(9130,'Dolf de Vries'),(9134,'Rijk de Gooyer'),(9136,'H.R. Giger'),(9137,'Renu00e9e Zellweger'),(9138,'Gemma Jones'),(9139,'Celia Imrie'),(9140,'James Faulkner'),(9141,'Charmian May'),(9142,'Paul Brooke'),(9143,'Felicity Montagu'),(9144,'Sally Phillips'),(9145,'James Callis'),(9146,'Lisa Barbuscia'),(9148,'Brian Donovan'),(9149,'Peter McAleese'),(9150,'Debra Hayward'),(9151,'Liza Chasin'),(9152,'Patrick Doyle'),(9153,'Gemma Jackson'),(9154,'Martin Walsh'),(9155,'Helen Fielding'),(9156,'Andrew Davies'),(9157,'Jonathan Cavendish'),(9158,'Sharon Maguire'),(9159,'David Crozier'),(9160,'Michael Higham'),(9161,'Carmel Jackson'),(9162,'Lorna McGowan'),(9163,'Gerry Hambling'),(9165,'Michael Seresin'),(9168,'Alan Parker'),(9169,'Elliott Kastner'),(9172,'Elizabeth Whitcraft'),(9175,'Dann Florek'),(9178,'Kristi Zea'),(9179,'Robert J. Franco'),(9181,'Edward Zwick'),(9182,'Marshall Herskovitz'),(9183,'Paula Wagner'),(9184,'Scott Kroopf'),(9185,'Tom Engelman'),(9186,'Chad Lindberg'),(9187,'Victor Du Bois'),(9188,'Billy Connolly'),(9189,'Shichinosuke Nakamura'),(9190,'Koyuki'),(9191,'Timothy Spall'),(9192,'Togo Igawa'),(9193,'Shun Sugata'),(9194,'Shin Koyamada'),(9195,'Hiroyuki Sanada'),(9196,'Ted Field'),(9197,'Richard Solomon'),(9198,'Vincent Ward'),(9199,'Lilly Kilvert'),(9200,'John McNaughton'),(9201,'Steven Brown'),(9202,'Steven A. Jones'),(9203,'Rodney Liber'),(9204,'George S. Clinton'),(9205,'Denise Richards'),(9206,'Neve Campbell'),(9207,'Theresa Russell'),(9208,'Robert Wagner'),(9209,'Daphne Rubin-Vega'),(9210,'Jeff Perry'),(9211,'Eduardo Yu00e1u00f1ez'),(9212,'Jennifer Taylor'),(9213,'David Myers'),(9217,'Lalo Schifrin'),(9221,'Donald Pleasence'),(9222,'Don Pedro Colley'),(9224,'Marshall Efron'),(9236,'Giorgio Cantarini'),(9247,'Danilo Donati'),(9248,'Nora Ephron'),(9249,'Steve Nicolaides'),(9250,'Jeffrey Stott'),(9251,'Marc Shaiman'),(9252,'Thomas Richard Sharp'),(9254,'Sabrina Wright-Gilliar'),(9255,'Gloria Gresham'),(9256,'Mark A. Baker'),(9257,'Bruno Kirby'),(9258,'Steven Ford'),(9259,'Lisa Jane Persky'),(9260,'Michelle Nicastro'),(9261,'Frank Abagnale Jr.'),(9262,'Stan Redding'),(9263,'Barry Kemp'),(9264,'Sergio Mimica-Gezzan'),(9266,'Devorah Moos-Hankin'),(9267,'Anthony Romano'),(9268,'Michel Shane'),(9269,'Jeannine Oppewall'),(9270,'Sarah Knowles'),(9271,'Michele Laliberte'),(9273,'Amy Adams'),(9274,'James Brolin'),(9275,'Frank John Hughes'),(9276,'Steve Eastin'),(9277,'John Finn'),(9278,'Jennifer Garner'),(9279,'Nancy Lenehan'),(9280,'Ellen Pompeo'),(9281,'Elizabeth Banks'),(9282,'Guy Thauvette'),(9283,'Candice Azzara'),(9284,'Thomas Kopache'),(9285,'John Roselius'),(9286,'Louis Eppolito'),(9287,'Robert Blake'),(9289,'Michael Massee'),(9290,'Henry Rollins'),(9291,'Michael Shamus Wiles'),(9292,'Mink Stole'),(9295,'Gene Ross'),(9296,'Balthazar Getty'),(9298,'Guy Siner'),(9299,'Alexander Folk'),(9300,'Lucy Butler'),(9306,'Scott Coffey'),(9309,'Richard Pryor'),(9312,'Greg Travis'),(9313,'Lisa Boyle'),(9315,'Marilyn Manson'),(9320,'Cori Glazer'),(9333,'Debbie Zoller'),(9337,'Toni-Ann Walker'),(9339,'Lilly Wachowski'),(9340,'Lana Wachowski'),(9341,'Bill Pope'),(9342,'Shauna Wolifson'),(9343,'Owen Paterson'),(9344,'Hugh Bateup'),(9345,'Michelle McGahey'),(9346,'Lisa Brennan'),(9347,'Paul Hughen'),(9349,'Dane A. Davis'),(9351,'Zigmund Gron'),(9352,'Scott Andrew Ressler'),(9357,'Glenn Boswell'),(9358,'Pierre Guffroy'),(9360,'Suzanne Tenner'),(9361,'Michael LaViolette'),(9364,'Gloria Foster'),(9370,'Philip Sloan'),(9372,'Marcus Chong'),(9374,'Matt Doran'),(9376,'Belinda McClory'),(9378,'Anthony Ray Parker'),(9379,'Paul Wilkowsky'),(9380,'Paul Goddard'),(9382,'Susumu Tokunow'),(9383,'David Aston'),(9384,'Marc Aden'),(9402,'Brian Johnson'),(9408,'Frank Gaeta'),(9409,'John Ross'),(9410,'Derek Marcil'),(9417,'Javier Bennassar'),(9418,'David Melhase'),(9419,'Benjamin L. Cook'),(9420,'Jules Cook'),(9421,'Brian Dusting'),(9423,'Elmo Weber'),(9424,'Barney Burman'),(9425,'Bill Brown'),(9426,'Dean Hovey'),(9427,'Frederick Howard'),(9430,'Richard Adrian'),(9432,'Eric Allard'),(9434,'Mayumi Arakaki'),(9435,'Mary Erstad'),(9436,'Kenny Alexander'),(9437,'Hank Amos'),(9439,'Catherine Harper'),(9440,'Christopher Moriana'),(9441,'Ellen Heuer'),(9442,'Lucy Sustar'),(9443,'Helmut Bakaitis'),(9444,'Marilyn Graf'),(9445,'David Mann'),(9448,'Adrian Rayment'),(9450,'Neil Rayment'),(9452,'Daniel Bernhardt'),(9456,'Gary D\'Amico'),(9457,'Roy Jones Jr.'),(9459,'David Kilde'),(9462,'Randall Duk Kim'),(9464,'Harry Lennix'),(9466,'Matt McColm'),(9493,'Mark Peterson'),(9535,'Hubert Selby Jr.'),(9537,'Palmer West'),(9539,'Jonah Smith'),(9541,'Stefan Simchowitz'),(9543,'Beau Flynn'),(9544,'Ann Goulder'),(9545,'Anne McCarthy'),(9546,'James Chinlund'),(9547,'Judy Rhee'),(9549,'Ondine Karady'),(9550,'Carolyn Grifel'),(9551,'Laura Jean Shannon'),(9552,'Lori Keith Douglas'),(9553,'Douglas Wilkinson'),(9554,'Bruce Paul Barbour'),(9555,'Stephen Barden'),(9556,'David Barrett'),(9557,'Brian Emrich'),(9558,'Joey Box'),(9559,'Jophery C. Brown'),(9560,'Ellen Burstyn'),(9562,'Marlon Wayans'),(9565,'Louise Lasser'),(9566,'Robert Jauregui'),(9567,'Cole S. McKay'),(9568,'Jim Palmer'),(9569,'Rick Seaman'),(9572,'Mary Alice'),(9573,'Peter Deming'),(9575,'Jada Pinkett Smith'),(9576,'Gina Torres'),(9577,'George Roy Hill'),(9578,'John Foreman'),(9579,'Paul Monash'),(9580,'Burt Bacharach'),(9581,'Catherine Mansill'),(9582,'John C. Howard'),(9583,'Charlie Revai'),(9584,'Richard C. Meyer'),(9585,'Michael McLean'),(9586,'Chester L. Bayhi'),(9587,'Walter M. Scott'),(9588,'Maggie Fung'),(9589,'Lloyd Anderson'),(9591,'David Dockendorf'),(9592,'William Edmondson'),(9593,'Steve Courtley'),(9594,'Katharine Ross'),(9595,'Deb Asch'),(9596,'Jeff Corey'),(9597,'George Furth'),(9598,'Ray Anthony'),(9599,'Cloris Leachman'),(9600,'Ted Cassidy'),(9601,'Kenneth Mars'),(9602,'Donnelly Rhodes'),(9612,'Ed Solomon'),(9613,'Lowell Cunningham'),(9614,'Donald Peterman'),(9615,'Jim Miller'),(9616,'Mary E. Vogt'),(9617,'Katherine James'),(9618,'Sean Haworth'),(9619,'Skip Lievsay'),(9620,'Tom Chesney'),(9621,'Peter Chesney'),(9622,'Eric Brevig'),(9623,'Deborah Habberstad'),(9624,'Jeff Habberstad'),(9625,'Linda Fiorentino'),(9626,'Rip Torn'),(9628,'Mike Nussbaum'),(9629,'Jon Gries'),(9630,'Sergio Calderu00f3n'),(9631,'Carel Struycken'),(9632,'Fredric Lehne'),(9633,'Richard Hamilton'),(9634,'Kent Faulcon'),(9635,'Brian Aldiss'),(9636,'Ian Watson'),(9639,'Thomas Valentine'),(9640,'Haley Joel Osment'),(9641,'Jake Thomas'),(9642,'Jude Law'),(9644,'Barry Fanaro'),(9645,'Greg Gardiner'),(9646,'Richard Pearson'),(9647,'Steven Weisberg'),(9648,'Alec Hammond'),(9649,'Thomas P. Wilkins'),(9650,'Chad Waters'),(9651,'Craig Berkey'),(9652,'Jim Beinke'),(9654,'Charles Croughwell'),(9656,'Johnny Knoxville'),(9657,'Patrick Warburton'),(9658,'Colombe Jacobsen-Derstine'),(9659,'Peter Spellos'),(9663,'Shinji Hashimoto'),(9706,'Toshiyuki Morikawa'),(9711,'Maaya Sakamoto'),(9722,'Shu00f4go Suzuki'),(9747,'Jean-Claude Carriu00e8re'),(9766,'Macha Mu00e9ril'),(9768,'Francisco Rabal'),(9769,'Stanley Clarke'),(9770,'Roger Troutman'),(9771,'Charles Mills'),(9772,'Bruce Cannon'),(9773,'Bruce Bellamy'),(9774,'Kathryn Peters'),(9775,'Marietta Carter-Narcisse'),(9776,'Chantal Feghali'),(9777,'Cuba Gooding Jr.'),(9778,'Ice Cube'),(9779,'Morris Chestnut'),(9780,'Angela Bassett'),(9781,'Nia Long'),(9782,'Tyra Ferrell'),(9783,'Lexie Bigham'),(9784,'Desi Arnez Hines II'),(9785,'John Cothran, Jr.'),(9786,'Jessie Lawrence Ferguson'),(9787,'Tammy Hanson'),(9788,'Regina King'),(9789,'Robert Altman'),(9796,'Johnny Mandel'),(9797,'Danford B. Greene'),(9798,'Arthur Lonergan'),(9799,'Stuart A. Reiss'),(9800,'Norman A. Cook'),(9803,'Bernard Freericks'),(9805,'Sally Kellerman'),(9807,'Rene Auberjonois'),(9811,'Fred Williamson'),(9812,'Homer'),(9813,'David Benioff'),(9814,'Diana Rathbun'),(9815,'Winston Azzopardi'),(9816,'Paul Bond'),(9817,'Nigel Phelps'),(9818,'Julian Ashby'),(9819,'Jon Billington'),(9820,'Andy Nicholson'),(9821,'Marco Niro'),(9822,'Adam O\'Neill'),(9823,'Peter Young'),(9824,'Diane Kruger'),(9825,'Saffron Burrows'),(9827,'Rose Byrne'),(9828,'Garrett Hedlund'),(9829,'Jacob Smith'),(9831,'Vincent Regan'),(9832,'Tyler Mane'),(9837,'Gu00fcnther Krampf'),(9850,'Budd Schulberg'),(9851,'Leonard Bernstein'),(9852,'Gene Milford'),(9854,'Jim Shields'),(9855,'Terence Young'),(9856,'Ian Fleming'),(9857,'Karl Malden'),(9858,'Richard Maibaum'),(9859,'Johanna Harwood'),(9860,'Berkely Mather'),(9861,'Albert R. Broccoli'),(9862,'Pat Henning'),(9863,'Harry Saltzman'),(9864,'Monty Norman'),(9865,'Leif Erickson'),(9866,'James Westerfield'),(9867,'Ted Moore'),(9868,'Peter R. Hunt'),(9869,'Ken Adam'),(9871,'Ursula Andress'),(9872,'Joseph Wiseman'),(9873,'Jack Lord'),(9874,'Bernard Lee'),(9875,'Zena Marshall'),(9876,'John Kitzmiller'),(9877,'Eunice Gayson'),(9878,'Lois Maxwell'),(9879,'Peter Burton'),(9880,'Sam Shepard'),(9887,'Birgitta Bjerke'),(9890,'Jean-Paul Mugel'),(9891,'Douglas Axtell'),(9892,'Hunter Carson'),(9893,'Aurore Clu00e9ment'),(9894,'Bernhard Wicki'),(9896,'Daniela Bianchi'),(9898,'Lotte Lenya'),(9899,'Francis de Wolff'),(9900,'George Pastell'),(9901,'Nadja Regin'),(9902,'Aliza Gur'),(9903,'Lionel Bart'),(9904,'Weston Drury Jr.'),(9905,'Jocelyn Rickards'),(9906,'Desmond Llewelyn'),(9907,'Honor Blackman'),(9908,'Gert Fru00f6be'),(9909,'Shirley Eaton'),(9910,'Tania Mallet'),(9911,'Harold Sakata'),(9912,'Martin Benson'),(9913,'Cec Linder'),(9914,'Austin Willis'),(9915,'Guy Hamilton'),(9916,'Paul Dehn'),(9917,'Shirley Bassey'),(9918,'Peter Murton'),(9919,'Claudine Auger'),(9920,'Adolfo Celi'),(9921,'Luciana Paluzzi'),(9922,'Rik Van Nutter'),(9923,'Guy Doleman'),(9924,'Molly Peters'),(9925,'Martine Beswick'),(9926,'Roland Culver'),(9927,'Klaus Lu00f6witsch'),(9932,'Gu00fcnter Lamprecht'),(9937,'Helga Ballhaus'),(9943,'Barbara Baum'),(9950,'Jim Willis'),(9951,'Kevin McClory'),(9952,'Jack Whittingham'),(9953,'John Hopkins'),(9954,'Ernest Hosler'),(9955,'Anthony Mendleson'),(9956,'Chris Marker'),(9959,'Antoine Bonfanti'),(9964,'Melissa Mathison'),(9965,'Allen Daviau'),(9966,'Carol Littleton'),(9967,'James D. Bissell'),(9968,'Jackie Carr'),(9969,'Robert Sidell'),(9970,'Leslie Butcher'),(9971,'Charles L. Campbell'),(9972,'Dale L. Martin'),(9973,'Al Bailey'),(9974,'Glenn Randall Jr.'),(9975,'Richard E. Butler'),(9976,'Henry Thomas'),(9978,'Robert MacNaughton'),(9979,'Peter Coyote'),(9980,'K. C. Martel'),(9981,'Sean Frye'),(9982,'David M. O\'Dell'),(9983,'Richard Swingler'),(9984,'Frank Toth'),(9985,'Pat Welsh'),(9986,'Anne-Marie Martin'),(9987,'Ian Bryce'),(9988,'Glenn Salloum'),(9989,'Mark Mancina'),(9990,'Joseph C. Nemec III'),(9991,'Karen Blynder'),(9992,'R. Anthony Brown'),(9993,'Brad Goodman'),(9994,'Helen Hunt'),(9995,'Jami Gertz'),(9996,'Sean Whalen'),(9997,'Scott Thomson'),(9998,'Joey Slotnick'),(9999,'Wendle Josepher'),(10000,'Gregory Sporleder'),(10001,'William Wyler'),(10002,'Lew Wallace'),(10004,'Sam Zimbalist'),(10005,'Robert Surtees'),(10007,'Ralph E. Winters'),(10009,'Edward C. Carfagno'),(10010,'Hugh Hunt'),(10011,'Elizabeth Haffenden'),(10014,'Charles E. Parker'),(10015,'Edward Woehler'),(10017,'Charlton Heston'),(10018,'Jack Hawkins'),(10020,'Stephen Boyd'),(10021,'Hugh Griffith'),(10023,'Cathy O\'Donnell'),(10024,'Sam Jaffe'),(10025,'Frank Thring'),(10027,'Finlay Currie'),(10029,'Andru00e9 Morell'),(10030,'Marcos Bernstein'),(10031,'Jou00e3o Emanuel Carneiro'),(10032,'Arthur Cohn'),(10033,'Thomas Garvin'),(10034,'Jack Gajos'),(10035,'Paulo Carlos De Brito'),(10036,'Afonso Coaracy'),(10037,'Lillian Birnbaum'),(10038,'Walter Carvalho'),(10039,'Jaques Morelenbaum'),(10040,'Felipe Lacerda'),(10041,'Isabelle Rathery'),(10042,'Su00e9rgio Machado'),(10043,'Cassio Amarante'),(10044,'Carla Caffu00e9'),(10045,'Cristina Camargo'),(10046,'Antoine Garabedian'),(10048,'Mu00f4nica Costa'),(10049,'Marcelo Larrea'),(10050,'Jean-Claude Brisson'),(10051,'Tobe Hooper'),(10052,'Franu00e7ois Groult'),(10053,'Mark A. Van Der Willigen'),(10054,'Bruno Tarriu00e8re'),(10055,'Fernanda Montenegro'),(10056,'Michael Grais'),(10057,'Maru00edlia Pu00eara'),(10058,'Mark Victor'),(10059,'Vinu00edcius de Oliveira'),(10060,'Soia Lira'),(10061,'Othon Bastos'),(10062,'Otu00e1vio Augusto'),(10063,'Stela Freitas'),(10064,'James H. Spencer'),(10065,'Cheryal Kearney'),(10066,'Dorothy J. Pearl'),(10067,'Jeff Jarvis'),(10068,'Akiko Wakabayashi'),(10070,'Mie Hama'),(10071,'Tetsuru014d Tamba'),(10072,'Teru Shimada'),(10073,'Karin Dor'),(10074,'Charles Gray'),(10075,'Tsai Chin'),(10076,'Lewis Gilbert'),(10078,'Bobby Clark'),(10079,'Freddie Young'),(10080,'JoBeth Williams'),(10081,'Harry Pottle'),(10082,'David Ffolkes'),(10083,'Beatrice Straight'),(10084,'Dominique Dunne'),(10085,'Oliver Robins'),(10086,'Heather O\'Rourke'),(10087,'Michael McManus'),(10088,'Virginia Kiser'),(10089,'Martin Casella'),(10090,'Richard Lawson'),(10091,'Zelda Rubinstein'),(10099,'Park Chan-wook'),(10101,'Nobuaki Minegishi'),(10102,'Hwang Jo-yun'),(10103,'Lim Chun-hyeong'),(10104,'Lim Joon-hyung'),(10105,'Seung-yong Lim'),(10106,'Dong-ju Kim'),(10107,'Chung Chung-hoon'),(10108,'Kim Sang-beom'),(10109,'Seong-hie Ryu'),(10110,'Seoung-chul Lee'),(10112,'Yoo Ji-tae'),(10118,'Kenny Bates'),(10119,'Scott Gardenhour'),(10120,'Jennifer Klein'),(10121,'Selwyn Roberts'),(10122,'Barry H. Waldman'),(10123,'Roger Barton'),(10124,'Eliza Solesbury'),(10125,'Jennifer Williams'),(10126,'Mitzi Haralson'),(10127,'Jon Voight'),(10128,'William Lee Scott'),(10129,'Greg Zola'),(10130,'Catherine Kellner'),(10131,'Sara Rue'),(10132,'Colm Feore'),(10133,'John Fujioka'),(10134,'Mako'),(10135,'Jesse James'),(10136,'Reiley McClendon'),(10137,'Steve Rankin'),(10138,'Brian Haley'),(10151,'Samuel E. Beetley'),(10155,'Clem Portman'),(10157,'Russell A. Cully'),(10158,'Robert Mitchum'),(10160,'Rhonda Fleming'),(10161,'Richard Webb'),(10162,'Steve Brodie'),(10165,'Dickie Moore'),(10167,'George Lazenby'),(10168,'Diana Rigg'),(10169,'Telly Savalas'),(10170,'Ilse Steppat'),(10171,'Angela Scoular'),(10173,'George Baker'),(10174,'Bernard Horsfall'),(10177,'Stanley Sopel'),(10178,'Michael Reed'),(10179,'John Glen'),(10181,'Marjory Cornelius'),(10182,'Ving Rhames'),(10183,'Bert Davey'),(10185,'Bert Bates'),(10186,'John W. Holmes'),(10187,'Bill Kenney'),(10188,'Jack Maxsted'),(10189,'Donfeld'),(10190,'Jill St. John'),(10191,'Lana Wood'),(10192,'Jimmy Dean'),(10193,'Putter Smith'),(10194,'Bruce Glover'),(10195,'Normann Burton'),(10196,'Joseph Furst'),(10197,'Fred Hole'),(10198,'Emma Porteous'),(10199,'Peter Robb-King'),(10200,'Terry Ackland-Snow'),(10201,'Michael Clifford'),(10202,'Norman Baillie'),(10203,'Paul Weston'),(10204,'Elanor Bertram'),(10205,'Sigourney Weaver'),(10206,'Carrie Henn'),(10207,'William Hope'),(10208,'Al Matthews'),(10209,'Colette Hiller'),(10210,'Daniel Kash'),(10211,'Cynthia Dale Scott'),(10212,'Ricco Ross'),(10213,'Tip Tipping'),(10214,'George Martin'),(10215,'Paul McCartney'),(10218,'Raymond Poulton'),(10219,'John Shirley'),(10220,'Stephen Hendrickson'),(10221,'Julie Harris'),(10222,'Roger Moore'),(10223,'Jane Seymour'),(10224,'Clifton James'),(10225,'Geoffrey Holder'),(10226,'David Hedison'),(10227,'Gloria Hendry'),(10228,'Tommy Lane'),(10231,'Florian Hoffmeister'),(10243,'Carmen-Maja Antoni'),(10246,'Dirk Borchardt'),(10253,'Igor Luther'),(10254,'Mario Adorf'),(10255,'Angela Winkler'),(10268,'Charles Aznavour'),(10279,'Adolf Hitler'),(10293,'Carl Sagan'),(10295,'James V. Hart'),(10296,'Michael Goldenberg'),(10297,'Matthew McConaughey'),(10298,'Helen Prejean'),(10337,'Charles Orme'),(10339,'Oswald Morris'),(10340,'Maude Spector'),(10341,'Britt Ekland'),(10342,'Maud Adams'),(10343,'Hervu00e9 Villechaize'),(10344,'Richard Loo'),(10345,'Soon-Tek Oh'),(10356,'Marika Green'),(10360,'Robert Prosky'),(10361,'Raymond J. Barry'),(10362,'Roberta Maxwell'),(10364,'David Robbins'),(10365,'Richard Hoover'),(10366,'Ray Aranha'),(10367,'John Waters'),(10368,'Vincent Peranio'),(10369,'Divine'),(10370,'David Lochary'),(10371,'Mary Vivian Pearce'),(10372,'Danny Mills'),(10373,'Edith Massey'),(10374,'Channing Wilroy'),(10375,'Cookie Mueller'),(10376,'Susan Walsh'),(10377,'Linda Olgeirson'),(10378,'Robert James Waller'),(10379,'Victor Slezak'),(10380,'Jim Haynie'),(10381,'Sarah Kathryn Schmitt'),(10382,'Christopher Kroon'),(10383,'Phyllis Lyons'),(10385,'Jim Herzfeld'),(10386,'Debra Monk'),(10387,'Marc Hyman'),(10388,'Richard Lage'),(10389,'Michelle Benes'),(10390,'Amy Sayres'),(10391,'Larry Stuckey'),(10392,'Nancy Tenenbaum'),(10393,'Alan Baumgarten'),(10394,'Lee Haxall'),(10395,'Jon Poll'),(10396,'Rusty Smith'),(10397,'Carol Ramsey'),(10398,'Lenny Vullo'),(10399,'Teri Polo'),(10400,'Barbra Streisand'),(10401,'Blythe Danner'),(10402,'Alanna Ubach'),(10403,'Shelley Berman'),(10404,'Diane Johnson'),(10405,'Barbara Daly'),(10407,'Tom Smith'),(10408,'Douglas Twiddy'),(10409,'Shelley Duvall'),(10410,'Danny Lloyd'),(10411,'Barry Nelson'),(10412,'Anne Jackson'),(10413,'Raymond Carver'),(10414,'Frank Barhydt'),(10417,'David Levy'),(10418,'Walt Lloyd'),(10419,'Suzy Elmiger'),(10420,'Stephen Altman'),(10421,'Jerry Fleming'),(10422,'Susan Emshwiller'),(10423,'John Hay'),(10426,'Diana Pokorny'),(10427,'Anne Archer'),(10430,'Fred Ward'),(10431,'Jennifer Jason Leigh'),(10437,'Lily Tomlin'),(10438,'Jarrett Lennon'),(10439,'Marshall Brickman'),(10440,'Susan E. Morse'),(10441,'Mel Bourne'),(10442,'Robert Drumheller'),(10443,'Fern Buchner'),(10444,'Romaine Greene'),(10445,'Martin Danzig'),(10446,'Frederic B. Blankfein'),(10447,'Mariel Hemingway'),(10449,'Karen Ludwig'),(10450,'Michael O\'Donoghue'),(10458,'Barbara Bach'),(10459,'Curd Ju00fcrgens'),(10460,'Richard Kiel'),(10461,'Caroline Munro'),(10462,'Geoffrey Keen'),(10463,'Michael Billington'),(10464,'Olga Bisera'),(10465,'Edward de Souza'),(10466,'Christopher Wood'),(10467,'William P. Cartlidge'),(10468,'Marvin Hamlisch'),(10469,'Claude Renoir'),(10470,'Jean Tournier'),(10471,'Margot Capelier'),(10472,'Charles Bishop'),(10473,'Max Douy'),(10474,'Jacques Fonteray'),(10475,'Lois Chiles'),(10476,'Corinne Clu00e9ry'),(10477,'George Dzundza'),(10478,'Jeanne Tripplehorn'),(10479,'Toshiru00f4 Suga'),(10480,'Denis Arndt'),(10481,'Emily Bolton'),(10483,'Blanche Ravalec'),(10486,'Chelcie Ross'),(10488,'Benjamin Mouton'),(10489,'Jack McGee'),(10491,'Paul Verhoeven'),(10492,'Joe Eszterhas'),(10493,'Tom Pevsner'),(10494,'Bill Conti'),(10495,'John Grover'),(10496,'Debbie McWilliams'),(10497,'John Fenner'),(10498,'Vernon Dixon'),(10499,'Elizabeth Waller'),(10500,'Carole Bouquet'),(10501,'Chaim Topol'),(10502,'Lynn-Holly Johnson'),(10503,'Cassandra Harris'),(10504,'Jill Bennett'),(10505,'Michael Gothard'),(10506,'John Wyman'),(10507,'Jack Hedley'),(10508,'Louis Jourdan'),(10509,'Kristina Wayborn'),(10510,'Kabir Bedi'),(10511,'David Meyer'),(10512,'Tony Meyer'),(10513,'Robert Brown'),(10514,'Michaela Clavell'),(10515,'George MacDonald Fraser'),(10521,'Gordon Jennings'),(10526,'Natalie Talmadge'),(10527,'Ralph Bushman'),(10531,'Kitty Bradbury'),(10533,'Oscar Saul'),(10535,'Charles K. Feldman'),(10536,'Alex North'),(10537,'Harry Stradling Sr.'),(10538,'Vivien Leigh'),(10539,'Kim Hunter'),(10540,'Peg Hillias'),(10541,'Wright King'),(10542,'Richard Garrick'),(10543,'Ann Dere'),(10544,'Edna Thomas'),(10545,'Mickey Kuhn'),(10546,'Fred T. Gallo'),(10548,'Wendy Greene Bricmont'),(10549,'Justin Scoppa Jr.'),(10555,'Tony Roberts'),(10556,'Carol Kane'),(10557,'Paul Simon'),(10558,'Janet Margolin'),(10559,'Colleen Dewhurst'),(10560,'Donald Symington'),(10561,'Helen Ludlam'),(10562,'Mordecai Lawner'),(10563,'Joan Neuman'),(10564,'Jonathan Munk'),(10565,'Dick Cavett'),(10566,'Marshall McLuhan'),(10567,'Aline Brosh McKenna'),(10568,'Lauren Weisberger'),(10569,'Karen Rosenfelt'),(10570,'Joseph M. Caracciolo Jr.'),(10571,'John Bernard'),(10572,'Theodore Shapiro'),(10573,'Florian Ballhaus'),(10574,'Mark Livolsi'),(10575,'Jess Gonchor'),(10576,'Tom Warren'),(10577,'Patricia Field'),(10578,'John A. Machione'),(10579,'Judy Richter'),(10580,'Tracie Thoms'),(10581,'Rich Sommer'),(10582,'Daniel Sunjata'),(10583,'Gisele Bu00fcndchen'),(10584,'Heidi Klum'),(10586,'Richard Lester'),(10587,'Alun Owen'),(10588,'Walter Shenson'),(10589,'Denis O\'Dell'),(10590,'David V. Picker'),(10591,'Ray Simm'),(10592,'John Lennon'),(10593,'George Harrison'),(10594,'Ringo Starr'),(10595,'Wilfrid Brambell'),(10596,'Norman Rossington'),(10597,'John Junkin'),(10598,'Victor Spinetti'),(10599,'Anna Quayle'),(10600,'Deryck Guyler'),(10601,'Joseph L. Mankiewicz'),(10602,'Milton Krasner'),(10603,'Barbara McLean'),(10604,'George W. Davis'),(10605,'W.D. Flick'),(10607,'Celeste Holm'),(10609,'Hugh Marlowe'),(10612,'Peter Davies'),(10613,'Henry Richardson'),(10614,'Jack Stephens'),(10616,'Dietrich Lohmann'),(10627,'Eva Mattes'),(10628,'Mark Billerman'),(10629,'William Cruse'),(10630,'Dean Beville'),(10631,'John Frazier'),(10632,'M. James Arnett'),(10633,'Seth Arnett'),(10634,'Karen Blixen'),(10635,'Judith Thurman'),(10636,'Errol Trzebinski'),(10637,'Kurt Luedtke'),(10639,'David Watkin'),(10640,'Fredric Steinkamp'),(10641,'Stephen B. Grimes'),(10642,'Colin Grimes'),(10643,'Herbert Westbrook'),(10644,'Josie MacAvin'),(10645,'Mary Hillman'),(10646,'David Harris'),(10647,'Klaus Maria Brandauer'),(10648,'Michael Kitchen'),(10649,'Malick Bowens'),(10650,'Joseph Thiaka'),(10651,'Stephen Kinyanjui'),(10652,'Suzanna Hamilton'),(10653,'Rachel Kempson'),(10654,'Graham Crowden'),(10655,'Leslie Phillips'),(10656,'Mike Bugara'),(10657,'Shane Rimmer'),(10658,'Job Seda'),(10660,'Tanya Roberts'),(10661,'Grace Jones'),(10662,'Patrick Macnee'),(10663,'Fiona Fullerton'),(10664,'Willoughby Gray'),(10666,'Barbara Broccoli'),(10668,'Alec Mills'),(10669,'Timothy Dalton'),(10670,'Maryam d\'Abo'),(10671,'Joe Don Baker'),(10672,'Art Malik'),(10673,'Andreas Wisniewski'),(10674,'Thomas Wheatley'),(10675,'Caroline Bliss'),(10676,'Gladys Knight'),(10677,'Dennis Bosher'),(10678,'Jodie Lynn Tillen'),(10679,'Carey Lowell'),(10680,'Talisa Soto'),(10681,'Wayne Newton'),(10682,'Anthony Starke'),(10683,'Mike Rich'),(10684,'Jonathan King'),(10685,'Laurence Mark'),(10686,'Rhonda Tollefson'),(10687,'Dany Wolf'),(10688,'Harris Savides'),(10689,'Rob Brown'),(10690,'Anna Paquin'),(10691,'April Grace'),(10692,'Michael Pitt'),(10693,'Stephanie Berry'),(10694,'Glenn Fitzgerald'),(10695,'Izabella Scorupco'),(10696,'Famke Janssen'),(10697,'Alan Cumming'),(10698,'Tchu00e9ky Karyo'),(10699,'Samantha Bond'),(10700,'Serena Gordon'),(10701,'Simon Kunz'),(10702,'Martin Campbell'),(10703,'Michael France'),(10704,'Jeffrey Caine'),(10705,'Bruce Feirstein'),(10706,'Anthony Waye'),(10707,'Terry Jones'),(10709,'Phil Meheux'),(10710,'Andrew Ackland-Snow'),(10711,'Kathrin Brunner'),(10712,'Charles Dwight Lee'),(10713,'Eric Idle'),(10714,'Lindy Hemming'),(10715,'John Goldstone'),(10717,'Peter Biziou'),(10718,'Julian Doyle'),(10719,'Kenteas Brine'),(10721,'Kent Houston'),(10722,'Graham Chapman'),(10723,'Mike Newell'),(10724,'Richard Rodney Bennett'),(10725,'Jon Gregory'),(10726,'James Fleet'),(10727,'John Hannah'),(10728,'David Bower'),(10729,'Charlotte Coleman'),(10730,'Rowan Atkinson'),(10731,'Anna Chancellor'),(10732,'Terence Bayler'),(10733,'Carol Cleveland'),(10734,'Kenneth Colley'),(10736,'Timothy Walker'),(10739,'Bebe Neuwirth'),(10740,'Sue Baker'),(10741,'Gerry Bates'),(10742,'Teri Hatcher'),(10743,'Ricky Jay'),(10744,'Gu00f6tz Otto'),(10746,'Geoffrey Palmer'),(10747,'Julian Fellowes'),(10748,'Terence Rigby'),(10750,'Sheryl Crow'),(10751,'Michel Arcand'),(10752,'Dominique Fortin'),(10753,'Jonathan Lee'),(10754,'Stephen Scott'),(10755,'Tungia Baker'),(10756,'Kerry Walker'),(10757,'Jane Campion'),(10758,'Jan Chapman'),(10759,'Michael Nyman'),(10760,'Genevieve Lemon'),(10761,'Te Whatanui Skipwith'),(10762,'Veronika Jenet'),(10764,'Arnold Kopelson'),(10765,'Andrzej Bartkowiak'),(10766,'Paul Hirsch'),(10767,'Barbara Hershey'),(10768,'Rachel Ticotin'),(10770,'Lawrence Turman'),(10771,'Dave Grusin'),(10774,'Anne Bancroft'),(10775,'William Daniels'),(10776,'Elizabeth Wilson'),(10777,'Maria Grazia Cucinotta'),(10779,'David Calder'),(10780,'Serena Scott Thomas'),(10781,'Michael Apted'),(10782,'Neal Purvis'),(10783,'Robert Wade'),(10788,'Steven Lawrence'),(10789,'Simon Wakefield'),(10796,'Robert J. Schiffer'),(10804,'Margaret Dumont'),(10808,'Stephen Norrington'),(10809,'Robert Engelman'),(10810,'Peter Frankfurt'),(10814,'Wesley Snipes'),(10815,'Theo van de Sande'),(10816,'Paul Rubell'),(10817,'Rachel Abroms'),(10819,'Kirk M. Petruccelli'),(10820,'Barry Chusid'),(10822,'Stephen Dorff'),(10823,'Kris Kristofferson'),(10824,'N\'Bushe Wright'),(10825,'Donal Logue'),(10826,'Traci Lords'),(10827,'Kevin Patrick Walls'),(10828,'Guillermo del Toro'),(10829,'Patrick J. Palmer'),(10830,'Toby Emmerich'),(10832,'Gabriel Beristain'),(10833,'Peter Amundson'),(10836,'Elinor Rose Galbraith'),(10837,'James F. Truesdale'),(10839,'Leonor Varela'),(10841,'Karel Roden'),(10843,'Luke Goss'),(10845,'Marit Velle Kile'),(10846,'Daz Crawford'),(10847,'Santiago Segura'),(10849,'Marek Vau0161ut'),(10850,'Kevin Feige'),(10851,'Ramin Djawadi'),(10852,'Conrad Smart'),(10853,'Howard E. Smith'),(10855,'Chris Gorak'),(10857,'Eric Fraser'),(10858,'Tedd Kuchera'),(10859,'Ryan Reynolds'),(10860,'Jessica Biel'),(10862,'Dominic Purcell'),(10863,'Paul Anthony'),(10866,'Eric Bogosian'),(10867,'Steve Braun'),(10869,'Scott Heindl'),(10871,'Natasha Lyonne'),(10872,'Patton Oswalt'),(10874,'Ron Selmour'),(10875,'Franu00e7oise Yip'),(10876,'Callum McDougall'),(10878,'Andrew MacRitchie'),(10880,'Alan Tomkins'),(10881,'Toby Stephens'),(10882,'Rosamund Pike'),(10883,'Rick Yune'),(10884,'Will Yun Lee'),(10885,'Kenneth Tsang'),(10903,'Henning Molfenter'),(10905,'Charlie Woebcken'),(10907,'Stu00e9phane Foenkinos'),(10908,'Peter Francis'),(10912,'Eva Green'),(10916,'Caterina Murino'),(10917,'Simon Abkarian'),(10919,'Fred Lau'),(10920,'Tobias Menzies'),(10922,'Tyrone Power'),(10923,'Ju00fcrgen Tarrach'),(10924,'Henry Daniell'),(10925,'Torin Thatcher'),(10926,'Norma Varden'),(10930,'Irvin Kershner'),(10931,'Lorenzo Semple Jr.'),(10932,'Jack Schwartzman'),(10933,'Michael Dryhurst'),(10934,'Michel Legrand'),(10935,'Ian Crafford'),(10936,'Philip Harrison'),(10938,'Barbara Carrera'),(10939,'Bernie Casey'),(10942,'Pat Roach'),(10943,'Francis Lawrence'),(10947,'Kevin Brodbin'),(10949,'Michael Uslan'),(10950,'Erwin Stoff'),(10951,'Benjamin Melniker'),(10952,'Lorenzo di Bonaventura'),(10953,'Gilbert Adler'),(10954,'Michael Aguilar'),(10955,'Cherylanne Martin'),(10956,'Josh McLaglen'),(10957,'Wayne Wahrman'),(10958,'Douglas A. Mowat'),(10959,'Shia LaBeouf'),(10960,'Max Baker'),(10961,'Gavin Rossdale'),(10962,'Jesse Ramirez'),(10963,'Josu00e9 Zu00fau00f1iga'),(10964,'Laz Alonso'),(10965,'Chris Columbus'),(10966,'J.K. Rowling'),(10967,'Steve Kloves'),(10968,'David Heyman'),(10969,'Karen Lindsay-Stewart'),(10970,'Judianna Makovsky'),(10971,'Clare Le Vesconte'),(10972,'Martin Cantwell'),(10973,'Nigel Brackley'),(10974,'Jim Berney'),(10975,'Henry Allen'),(10976,'Greg Powell'),(10978,'Maggie Smith'),(10979,'Saunders Triplets'),(10980,'Daniel Radcliffe'),(10981,'Fiona Shaw'),(10982,'Harry Melling'),(10983,'Richard Griffiths'),(10984,'Derek Deadman'),(10985,'Ian Hart'),(10986,'Ben Borowiecki'),(10987,'Verne Troyer'),(10988,'Geraldine Somerville'),(10989,'Rupert Grint'),(10990,'Emma Watson'),(10991,'Bonnie Wright'),(10992,'Chris Rankin'),(10993,'Tom Felton'),(10994,'Tom DeSanto'),(10995,'David Hayter'),(10999,'Joel Simon'),(11000,'Bill Todman Jr.'),(11001,'Kevin Stitt'),(11002,'John Myhre'),(11004,'Tamara Deverell'),(11005,'James Edward Ferrell Jr.'),(11006,'James Marsden'),(11007,'Ray Park'),(11008,'Rebecca Romijn'),(11011,'Zak Penn'),(11012,'Michael Dougherty'),(11013,'Dan Harris'),(11014,'Ross Fanger'),(11017,'Elliot Graham'),(11018,'Guy Dyas'),(11021,'Elizabeth Wilcox'),(11022,'Aaron Stanford'),(11023,'Shawn Ashmore'),(11024,'Kelly Hu'),(11025,'Agnes Moorehead'),(11027,'Everett Sloane'),(11029,'Dorothy Comingore'),(11030,'William Alland'),(11031,'Philip Van Zandt'),(11033,'Paul Stewart'),(11036,'Van Nest Polglase'),(11037,'Lukas Moodysson'),(11040,'Gustaf Hammarsten'),(11045,'Ola Rapace'),(11046,'Olle Sarri'),(11053,'Lars Ju00f6nsson'),(11055,'David Rabe'),(11056,'David Rayfiel'),(11057,'Robert Towne'),(11058,'Lindsay Doran'),(11059,'Lyle Lovett'),(11060,'John Grisham'),(11061,'Richard Macdonald'),(11063,'Casey Hallenbeck'),(11064,'David Strathairn'),(11065,'Wilford Brimley'),(11066,'Hal Holbrook'),(11067,'Terry Kinney'),(11068,'Karina Lombard'),(11072,'Lesley Walker'),(11073,'Lara Harris'),(11074,'Kathy Najimy'),(11075,'Paul Lombardi'),(11076,'David Hyde Pierce'),(11077,'John de Lancie'),(11078,'Lisa Blades'),(11079,'Cindy Carr'),(11080,'Jim Cash'),(11081,'Jack Epps Jr.'),(11082,'Ehud Yonay'),(11083,'Robert R. Benton'),(11084,'Kelly McGillis'),(11085,'Anthony Edwards'),(11086,'Michael Ironside'),(11088,'Barry Tubb'),(11089,'Whip Hubley'),(11090,'Edgar Wright'),(11091,'Brett Ratner'),(11092,'Simon Kinberg'),(11095,'James M. Freitag'),(11098,'John Powell'),(11099,'Dante Spinotti'),(11100,'Julia Wong'),(11102,'Chad S. Frey'),(11106,'Lisa Tomczeszyn'),(11107,'Ben Foster'),(11108,'Simon Pegg'),(11109,'Nick Frost'),(11110,'Kate Ashfield'),(11111,'Lucy Davis'),(11112,'Nira Park'),(11113,'David M. Dunlap'),(11114,'Chris Dickens'),(11115,'Peter Serafinowicz'),(11116,'Nicola Cunningham'),(11117,'Steve Emerson'),(11128,'Arthur Kennedy'),(11130,'James Robertson Justice'),(11132,'Charles Tingwell'),(11135,'Joan Hickson'),(11147,'John Cassavetes'),(11148,'Joan Allen'),(11149,'Dominique Swain'),(11150,'Gina Gershon'),(11151,'Nick Cassavetes'),(11152,'Margaret Cho'),(11153,'James Denton'),(11154,'Matt Ross'),(11155,'Thomas Jane'),(11156,'David McCurley'),(11157,'Myles Jeffrey'),(11158,'Ernest Liu'),(11159,'Cheech Marin'),(11160,'Danny Trejo'),(11161,'Tom Savini'),(11162,'Brenda Hillhouse'),(11163,'John Saxon'),(11164,'Kelly Preston'),(11166,'William Ross'),(11167,'Mark Bartholomew'),(11170,'Tommy Noonan'),(11173,'Nick Dudman'),(11174,'Dennis Leonard'),(11175,'Jonathan Abbas-Klahr'),(11176,'Sean Baker'),(11177,'Martin Bayfield'),(11178,'Heather Bleasdale'),(11179,'Sean Biggerstaff'),(11180,'David Bradley'),(11181,'Kenneth Branagh'),(11182,'Veronica Clifford'),(11183,'Eleanor Columbus'),(11184,'Warwick Davis'),(11185,'Emily Dale'),(11186,'Rochelle Douglas'),(11193,'Popeck'),(11195,'Gu00e9rard Oury'),(11204,'Pierre Grunstein'),(11207,'David Thewlis'),(11212,'Josh Herdman'),(11213,'Pam Ferris'),(11218,'Alfonso Cuaru00f3n'),(11222,'Mark Radcliffe'),(11224,'Alan Gilmore'),(11225,'Gary Tomkins'),(11226,'Alexandra Walker'),(11227,'Jany Temime'),(11228,'Elizabeth Lewis'),(11229,'David Evans'),(11230,'Mark Bullimore'),(11232,'Ulf Brantu00e5s'),(11233,'Michal Leszczylowski'),(11263,'Peter Franzu00e9n'),(11266,'James McTeigue'),(11267,'Jessica Alan'),(11268,'Roberto Malerba'),(11269,'Dario Marianelli'),(11270,'Peter Walpole'),(11271,'Sammy Sheldon'),(11272,'Marco Bittner Rosser'),(11273,'Sarah Horton'),(11274,'Sebastian T. Krawinkel'),(11275,'Stephen Fry'),(11276,'Tim Pigott-Smith'),(11277,'Natasha Wightman'),(11278,'Rupert Graves'),(11279,'Roger Allam'),(11280,'Ben Miles'),(11281,'Sinu00e9ad Cusack'),(11282,'John Standing'),(11283,'Clive Ashborn'),(11284,'Emma Field-Rayner'),(11285,'Ian Burfield'),(11288,'Robert Pattinson'),(11289,'Mark Forstater'),(11290,'Stanislav Yanevski'),(11291,'Clu00e9mence Pou00e9sy'),(11292,'Terry Bedford'),(11293,'John Hackney'),(11294,'Roy Forge Smith'),(11295,'Fiona Weir'),(11296,'Alastair Bullock'),(11297,'Eithne Fennel'),(11298,'Amanda Knight'),(11299,'Adam Aldridge'),(11300,'Tim Alexander'),(11301,'Lucy Allen'),(11302,'Edward S. Feldman'),(11303,'Adam Schroeder'),(11306,'Ron Berkeley'),(11308,'Bunny Andrews'),(11310,'Larz Anderson'),(11312,'Pat Banta'),(11315,'Noah Emmerich'),(11317,'Natascha McElhone'),(11318,'Holland Taylor'),(11321,'Heidi Schanz'),(11327,'Peter Dasent'),(11334,'Elizabeth Moody'),(11335,'Ian Watkin'),(11336,'Brenda Kendall'),(11343,'David Yates'),(11344,'Nicholas Hooper'),(11345,'Mark Day'),(11348,'Lynda Armstrong'),(11349,'Hilary Haines'),(11350,'James Boyle'),(11351,'James Mather'),(11352,'Luke Emrose'),(11354,'Ben Cooke'),(11355,'Jason Isaacs'),(11356,'Imelda Staunton'),(11357,'Bruce Campbell'),(11358,'Maryline Monthieux'),(11359,'Robert Tapert'),(11365,'Mark Feuerstein'),(11366,'Lorenzo Lamas'),(11367,'Bradley Whitford'),(11368,'Monica Mcgowan Johnson'),(11369,'Herb Nanas'),(11370,'Elton John'),(11371,'Thomas E. Ackerman'),(11372,'Peter Teschner'),(11373,'Dina Lipton'),(11374,'Marc Dabe'),(11375,'Anne D. McCulley'),(11376,'Betsy Cox'),(11379,'Mark Peploe'),(11380,'Franco Giovale'),(11381,'Joyce Herlihy'),(11382,'Ryuichi Sakamoto'),(11383,'Gabriella Cristiani'),(11384,'Bill Rowe'),(11385,'Ivan Sharrock'),(11386,'James Acheson'),(11387,'Enzo Ungari'),(11388,'Bruno Cesari'),(11389,'John Lone'),(11390,'Peter O\'Toole'),(11392,'Dennis Dun'),(11394,'Ruocheng Ying'),(11395,'Victor Wong'),(11396,'Maggie Han'),(11397,'Ric Young'),(11398,'Cary-Hiroyuki Tagawa'),(11399,'Fumihiko Ikeda'),(11400,'Aisin-Gioro Puyi'),(11401,'John Woo'),(11402,'Mike Werb'),(11403,'Michael Colleary'),(11404,'Terence Chang'),(11405,'David Permut'),(11408,'Jeff Levine'),(11409,'Oliver Wood'),(11410,'Steven Kemper'),(11411,'Neil Spisak'),(11412,'Steve Arnold'),(11413,'Garrett Lewis'),(11419,'Robert Kurtzman'),(11420,'Gianni Nunnari'),(11421,'John Esposito'),(11422,'Cecilia Montiel'),(11423,'Mayne Berke'),(11424,'Felipe Fernu00e1ndez del Paso'),(11425,'Graciela Mazu00f3n'),(11426,'Ben Sharpsteen'),(11427,'William Roberts'),(11428,'Paul Satterfield'),(11429,'Hamilton Luske'),(11430,'Jim Handley'),(11431,'Ford Beebe'),(11432,'T. Hee'),(11434,'Wilfred Jackson'),(11435,'Howard Hawks'),(11436,'Anita Loos'),(11438,'Sol C. Siegel'),(11439,'Hoagy Carmichael'),(11441,'Lionel Newman'),(11443,'Hugh S. Fowler'),(11444,'Claude E. Carpenter'),(11447,'Albert Hughes'),(11448,'Allen Hughes'),(11449,'Alan Moore'),(11451,'Eddie Campbell'),(11452,'Terry Hayes'),(11453,'Rafael Yglesias'),(11454,'George Bowers'),(11455,'Dan Lebental'),(11456,'Martin Childs'),(11457,'Jindrich Kocu00ed'),(11458,'Joyce Gallie'),(11459,'Sally Osoba'),(11460,'Jill Quertier'),(11462,'Ellen Sandweiss'),(11463,'Richard DeManincor'),(11464,'Betsy Baker'),(11465,'Theresa Tilly'),(11467,'Gary Holt'),(11468,'Joseph LoDuca'),(11469,'Tim Philo'),(11470,'Edna Ruth Paul'),(11471,'Tom Sullivan'),(11472,'Irwin Winkler'),(11473,'Bruce S. Pustin'),(11474,'James Y. Kwei'),(11475,'Maher Ahmad'),(11476,'Richard Bruno'),(11477,'Ray Liotta'),(11478,'Lorraine Bracco'),(11479,'Chuck Low'),(11480,'Frank Sivero'),(11481,'Frank DiLeo'),(11482,'Tony Darrow'),(11483,'Catherine Scorsese'),(11484,'Suzanne Shepherd'),(11485,'Gina Mastrogiacomo'),(11486,'Michael Imperioli'),(11487,'Margaret Mitchell'),(11488,'Sidney Howard'),(11489,'William Cameron Menzies'),(11491,'Walter Plunkett'),(11492,'Clark Gable'),(11493,'Leslie Howard'),(11494,'Evelyn Keyes'),(11495,'Ann Rutherford'),(11496,'George Reeves'),(11497,'Fred Crane'),(11498,'Hattie McDaniel'),(11499,'Oscar Polk'),(11500,'Butterfly McQueen'),(11501,'Marcella Martin'),(11502,'Harry Davenport'),(11503,'Cammie King'),(11505,'John Hughes'),(11506,'Julio Macat'),(11507,'John Muto'),(11508,'Dan Webster'),(11509,'Jay Hurley'),(11510,'Macaulay Culkin'),(11511,'Daniel Stern'),(11512,'John Heard'),(11514,'Catherine O\'Hara'),(11515,'Angela Goethals'),(11516,'Devin Ratray'),(11517,'Gerry Bamman'),(11518,'Hillary Wolf'),(11519,'Larry Hankin'),(11521,'Kristin Minter'),(11522,'Jedidiah Cohen'),(11558,'Eugu00e8ne Louriu00e9'),(11572,'Carl Theodor Dreyer'),(11593,'Rudolph Matu00e9'),(11604,'Uli Hanisch'),(11606,'Matthias Lempert'),(11607,'Arno Wilms'),(11610,'Josef Bierbichler'),(11614,'M. Night Shyamalan'),(11616,'Olivia Williams'),(11617,'Mischa Barton'),(11618,'Greg Wood'),(11619,'Jeffrey Zubernis'),(11620,'Larry Fulton'),(11621,'Bruce Norris'),(11624,'H.G. Wells'),(11625,'Lisa Zeno Churgin'),(11626,'Gore Vidal'),(11627,'Jayne Brook'),(11628,'Loren Dean'),(11641,'Scott Spiegel'),(11643,'Alex De Benedetti'),(11646,'Irvin Shapiro'),(11648,'Kaye Davis'),(11649,'Cameron Crowe'),(11650,'Marcus D\'Arcy'),(11651,'Doug Mitchell'),(11652,'Lisa Stewart'),(11653,'Steven P. Saeta'),(11654,'Scott M. Martin'),(11655,'Marty P. Ewing'),(11656,'Nancy Wilson'),(11657,'Saar Klein'),(11658,'Gail Levin'),(11659,'David Bowe'),(11661,'Kate Hudson'),(11662,'Jason Lee'),(11663,'Patrick Fugit'),(11664,'Zooey Deschanel'),(11665,'Michael Angarano'),(11666,'John Fedevich'),(11667,'Mark Kozelek'),(11668,'Liz Stauber'),(11669,'Jimmy Fallon'),(11670,'Olivia Rosewood'),(11671,'Bijou Phillips'),(11672,'Alice Marie Crowe'),(11673,'J.J. Cohen'),(11674,'Gary Kohn'),(11675,'Ray Porter'),(11676,'Mark Pellington'),(11677,'Terry Chen'),(11678,'Rainn Wilson'),(11679,'Erin Foley'),(11680,'Pauley Perrette'),(11687,'Eric Abraham'),(11692,'Vladimu00edr Smutnu00fd'),(11694,'Doug Liman'),(11695,'Lucas Foster'),(11696,'Patrick Wachsberger'),(11697,'Erik Feig'),(11698,'Varina Bleil'),(11699,'Bojan Bazelli'),(11700,'Keith Neely'),(11701,'Angelina Jolie'),(11702,'Adam Brody'),(11703,'Kerry Washington'),(11704,'Rachael Huntley'),(11705,'Michelle Monaghan'),(11706,'Anne Fine'),(11707,'Randi Mayem Singer'),(11708,'Leslie Dixon'),(11709,'Marsha Garces Williams'),(11710,'Matthew Rushton'),(11711,'Paula DuPru00e9 Pesmen'),(11712,'Joan Bradshaw'),(11713,'W. Steven Graham'),(11714,'Marit Allen'),(11715,'Polly Holliday'),(11716,'Matthew Lawrence'),(11717,'Mara Wilson'),(11718,'Anne Haney'),(11719,'Scott Capurro'),(11720,'Jiu0159u00ed Menzel'),(11721,'Bohumil Hrabal'),(11725,'Jaromu00edr u0160ofr'),(11744,'Randy Bennett'),(11745,'Philip Duffin'),(11746,'Elizabeth Moore'),(11747,'Wendy Bell'),(11749,'Sarah Berry'),(11750,'Dan Hicks'),(11751,'Kassie DePaiva'),(11753,'Denise Bixler'),(11754,'Richard Domeier'),(11755,'John Peakes'),(11756,'Lou Hancock'),(11757,'Sonny Baskin'),(11758,'Ira Belgrade'),(11759,'Anthony Tremblay'),(11760,'Aram Allan'),(11761,'Michele Poulik'),(11762,'Ida Gearon'),(11763,'Marcus Gilbert'),(11764,'Ian Abercrombie'),(11765,'Richard Grove'),(11766,'Timothy Patrick Quill'),(11767,'Michael Earl Reid'),(11768,'Patricia Tallman'),(11769,'Ted Raimi'),(11770,'John Carpenter'),(11772,'Barry Bernardi'),(11773,'Charles B. Bloch'),(11774,'Pegi Brotman'),(11776,'Charles Bornstein'),(11777,'Tommy Lee Wallace'),(11779,'Craig Stearns'),(11780,'Stephen Loomis'),(11781,'Bill Whitten'),(11782,'Adrienne Barbeau'),(11783,'John Houseman'),(11784,'Tom Atkins'),(11785,'James Canning'),(11786,'Charles Cyphers'),(11787,'Nancy Kyes'),(11788,'Ty Mitchell'),(11789,'Fred C. Caruso'),(11790,'Richard A. Roth'),(11793,'Priscilla Pointer'),(11794,'Frances Bay'),(11799,'Gary M. Zuckerbrod'),(11800,'Charles Collum'),(11801,'Sandy Reynolds-Wasco'),(11802,'Betsy Heimann'),(11803,'Peter Greene'),(11804,'Duane Whitaker'),(11805,'Frank Whaley'),(11806,'Julia Sweeney'),(11807,'Laura Lovelace'),(11808,'Cooper Layne'),(11809,'Rupert Wainwright'),(11812,'Derek Dauchy'),(11813,'David Foster'),(11814,'Todd Garner'),(11815,'Dan Kolsrud'),(11818,'Michael Diner'),(11819,'Graeme Murray'),(11821,'Catherine Schroer'),(11822,'Rose Marie McSherry'),(11823,'Monique Prudhomme'),(11824,'Tom Welling'),(11825,'Maggie Grace'),(11826,'Selma Blair'),(11827,'DeRay Davis'),(11828,'Adrian Hough'),(11829,'Sara Botsford'),(11830,'Cole Heppell'),(11831,'Mary Black'),(11832,'Jonathon Young'),(11833,'R. Nelson Brown'),(11834,'David Seltzer'),(11836,'Carmen Dillon'),(11837,'Stuart Freeborn'),(11838,'Claude Hudson'),(11839,'Harvey Stephens'),(11840,'Patrick Troughton'),(11841,'Robert Rietti'),(11842,'Tommy Duggan'),(11843,'John Stride'),(11844,'Holly Palance'),(11845,'John Briley'),(11847,'Ronnie Taylor'),(11848,'Billy Williams'),(11849,'Rohini Hattangadi'),(11850,'Candice Bergen'),(11851,'Om Puri'),(11852,'Saeed Jaffrey'),(11853,'Alyque Padamsee'),(11854,'Ian Charleson'),(11855,'Geraldine James'),(11856,'Daniel Day-Lewis'),(11857,'John Gielgud'),(11859,'John Mills'),(11860,'Athol Fugard'),(11861,'Dalip Tahil'),(11862,'Michael Stanley-Evans'),(11863,'Sarah Michelle Gellar'),(11864,'Ryan Phillippe'),(11866,'Joshua Jackson'),(11867,'Eric Mabius'),(11868,'Sean Patrick Thomas'),(11870,'Christine Baranski'),(11871,'Alaina Reed Hall'),(11872,'Deborah Offner'),(11873,'Roger Kumble'),(11874,'Neal H. Moritz'),(11876,'Jeff Freeman'),(11877,'Jon Gary Steele'),(11878,'Tessa Posnansky'),(11879,'Choderlos de Laclos'),(11880,'Claire Simpson'),(11881,'Warren McLean'),(11882,'Bob Morones'),(11883,'Rodell Cruz'),(11884,'Kate Greenhouse'),(11885,'John C. McGinley'),(11886,'Francesco Quinn'),(11887,'Brad Silberling'),(11888,'Reggie Johnson'),(11889,'Mark Moses'),(11890,'Chris Pedersen'),(11891,'Ivan Kane'),(11892,'Paul Sanchez'),(11893,'J. Adam Glover'),(11894,'Corey Glover'),(11895,'Bob Orwig'),(11896,'Kevin Eshelman'),(11897,'James Terry McIlvain'),(11898,'Dana Stevens'),(11899,'Dawn Steel'),(11900,'Alan Glazer'),(11901,'Dennis Franz'),(11902,'Robin Bartlett'),(11903,'Joanna Merlin'),(11905,'Sven Nykvist'),(11909,'Lars-Owe Carlberg'),(11911,'Sarah Dampf'),(11913,'Rhonda Dotson'),(11915,'Nigel Gibbs'),(11916,'Liv Ullmann'),(11920,'Erich Ku00e4stner'),(11944,'Nessie Nesslauer'),(11947,'Stephanie Hilke'),(11951,'August Zirner'),(11953,'Benno Fu00fcrmann'),(11956,'Mitch Markowitz'),(11957,'Larry Brezner'),(11958,'Peter Sova'),(11959,'Tessa Davies'),(11960,'Tung Thanh Tran'),(11961,'Chintara Sukapatana'),(11983,'Alain Resnais'),(11989,'Michel Bouquet'),(11993,'Dalton Trumbo'),(11997,'Robert Swink'),(11998,'Eddie Albert'),(12006,'Alfredo Rizzo'),(12007,'Vladimir Nabokov'),(12008,'Bob Harris'),(12009,'Anthony Harvey'),(12011,'William Castle'),(12012,'Dona Holloway'),(12013,'Krzysztof Komeda'),(12015,'Sam O\'Steen'),(12016,'Bob Wyman'),(12017,'Richard Sylbert'),(12018,'Joel Schiller'),(12019,'Robert Nelson'),(12020,'Anthea Sylbert'),(12021,'Mia Farrow'),(12022,'Sidney Blackmer'),(12023,'Maurice Evans'),(12024,'Victoria Vetri'),(12025,'Patsy Kelly'),(12026,'Emmaline Henry'),(12027,'Marianne Gordon'),(12028,'John Moore'),(12031,'Peter Veverka'),(12032,'Glenn Williamson'),(12033,'Jonathan Sela'),(12035,'Patrick Lumb'),(12037,'Martin Kurel'),(12039,'Paki Smith'),(12040,'George L. Little'),(12041,'Julia Stiles'),(12042,'Seamus Davey-Fitzpatrick'),(12044,'Predrag Bjelac'),(12047,'Andrew Kevin Walker'),(12048,'Phyllis Carlyle'),(12050,'Anne Kopelson'),(12051,'Gary Wissner'),(12052,'Gwyneth Paltrow'),(12054,'Daniel Zacapa'),(12055,'John Cassini'),(12056,'Hawthorne James'),(12058,'Vicky Jenson'),(12061,'Roger S.H. Schulman'),(12062,'Jeffrey Katzenberg'),(12064,'Sharon Globerson'),(12065,'Penney Finkelman Cox'),(12066,'Sandra Rabins'),(12067,'Jane Hartwell'),(12068,'Rupert Holmes'),(12070,'James Hegedus'),(12071,'Guillaume Aretos'),(12072,'Douglas Rogers'),(12073,'Mike Myers'),(12074,'John Lithgow'),(12075,'Peter Dennis'),(12076,'Clive Pearse'),(12077,'Jim Cummings'),(12078,'Bobby Block'),(12079,'Kelly Asbury'),(12080,'Conrad Vernon'),(12081,'William Steig'),(12083,'Joe Stillman'),(12084,'J. David Stem'),(12085,'David N. Weiss'),(12087,'David Lipman'),(12090,'Leslee Feldman'),(12092,'Steve Pilcher'),(12094,'Jennifer Saunders'),(12095,'Cody Cameron'),(12097,'Christopher Knights'),(12098,'Chris Miller'),(12099,'Raman Hui'),(12100,'Jeffrey Price'),(12101,'Peter S. Seaman'),(12105,'Jon Zack'),(12106,'Aron Warner'),(12107,'John H. Williams'),(12110,'Amy Sedaris'),(12111,'Justin Timberlake'),(12112,'Douglas Trumbull'),(12113,'Deric Washburn'),(12114,'Michael Cimino'),(12115,'Steven Bochco'),(12116,'Michael Gruskoff'),(12118,'Peter Schickele'),(12119,'Charles F. Wheeler'),(12120,'Frank Lombardo'),(12121,'Cliff Potts'),(12122,'Ron Rifkin'),(12123,'Jesse Vint'),(12124,'Steven Brown'),(12125,'Mark Persons'),(12126,'Cheryl Sparks'),(12127,'Jim Marrs'),(12128,'Jim Garrison'),(12130,'Zachary Sklar'),(12131,'Derek R. Hill'),(12132,'Michael Rooker'),(12133,'Laurie Metcalf'),(12134,'Sally Kirkland'),(12136,'Ray LePere'),(12137,'Tom Howard'),(12139,'Lolita Davidovich'),(12140,'Abby Mann'),(12141,'Philip Langner'),(12142,'Ernest Gold'),(12143,'Frederic Knudtson'),(12144,'James Lister'),(12145,'Jean Louis'),(12146,'Jean L. Speak'),(12147,'Spencer Tracy'),(12149,'Richard Widmark'),(12150,'Maximilian Schell'),(12151,'Montgomery Clift'),(12152,'Werner Klemperer'),(12153,'Torben Meyer'),(12154,'Martin Brandt'),(12155,'Kenneth MacKenna'),(12156,'Alan Baxter'),(12157,'John Wengraf'),(12158,'Karl Swenson'),(12159,'Howard Caine'),(12183,'Mitsuhisa Ishikawa'),(12184,'Shigeru Watanabe'),(12201,'Fred Baron'),(12202,'Catherine Knapman'),(12203,'Christine King'),(12204,'Annie Beauchamp'),(12205,'Angus Strathie'),(12206,'Richard Roxburgh'),(12207,'Kylie Minogue'),(12208,'Ozzy Osbourne'),(12209,'Caroline O\'Connor'),(12210,'Jacek Koman'),(12211,'Garry McDonald'),(12212,'Matthew Whittet'),(12214,'Gillian Anderson'),(12217,'Jay Mohr'),(12218,'Tim Halligan'),(12219,'Jon Stewart'),(12223,'Joel McCrary'),(12224,'Alec Mapa'),(12226,'Michael B. Silver'),(12227,'Willard Carroll'),(12228,'Meg Liberman'),(12229,'Thomas L. Wilhite'),(12232,'Guy East'),(12233,'Paul Feldsher'),(12234,'Nigel Sinclair'),(12235,'Vilmos Zsigmond'),(12236,'Irene Forrest'),(12237,'Charles Daboub Jr.'),(12238,'David Lean'),(12240,'Pierre Boulle'),(12241,'Malcolm Arnold'),(12242,'Jack Hildyard'),(12243,'Donald M. Ashton'),(12246,'John Cox'),(12247,'John W. Mitchell'),(12248,'Alec Guinness'),(12249,'Sessue Hayakawa'),(12250,'James Donald'),(12251,'Geoffrey Horne'),(12252,'Peter Williams'),(12253,'Lorenzo Carcaterra'),(12255,'Peter Giuliano'),(12256,'Gerrit van der Meer'),(12257,'Tim Galvin'),(12258,'Beth A. Rubino'),(12259,'Vittorio Gassman'),(12260,'Ron Eldard'),(12261,'Jason Patric'),(12263,'Geoffrey Wigdor'),(12264,'Lu00e9on Barsacq'),(12270,'Michel Serrault'),(12277,'Edmund H. North'),(12279,'Leo Tover'),(12282,'Michael Rennie'),(12283,'Frances Bavier'),(12286,'H.V. Kaltenborn'),(12288,'Robert Evans'),(12291,'W. Stewart Campbell'),(12292,'Ruby R. Levitt'),(12296,'John Hillerman'),(12298,'Roy Jenson'),(12307,'George J. Folsey'),(12308,'Walter Pidgeon'),(12310,'Warren Stevens'),(12311,'Jack Kelly'),(12312,'Richard Anderson'),(12320,'Karl Vollbrecht'),(12342,'Franklin Coen'),(12344,'Clifford Stine'),(12346,'Alexander Golitzen'),(12349,'Julia Heron'),(12350,'Rosemary Odell'),(12351,'Jeff Morrow'),(12355,'Russell Johnson'),(12356,'Douglas Spencer'),(12358,'Zita Gu00f6ru00f6g'),(12359,'Brian Steele'),(12362,'Walter Reisch'),(12365,'Konstantin Irmen-Tschet'),(12366,'Scott McElroy'),(12367,'John Mann'),(12369,'Erich Kettelhut'),(12371,'Richard Cetrone'),(12372,'Mike Mukatis'),(12373,'Paul Hartmann'),(12374,'David Coatsworth'),(12382,'Simon Duggan'),(12383,'Chris August'),(12384,'Lin MacDonald'),(12388,'Luiz Carlos Barreto'),(12397,'Maria Ribeiro'),(12399,'Joffre Soares'),(12401,'Gary Kurtz'),(12402,'Jan D\'Alquen'),(12403,'Ron Eveslage'),(12404,'Dennis Lynton Clark'),(12405,'Douglas Freeman'),(12406,'Paul Le Mat'),(12407,'Candy Clark'),(12408,'Mackenzie Phillips'),(12409,'Wolfman Jack'),(12410,'Bo Hopkins'),(12411,'Manuel Padilla Jr.'),(12412,'Beau Gentry'),(12415,'Richard Matheson'),(12424,'Gene Dynarski'),(12426,'Charles Seel'),(12427,'Alexander Lockwood'),(12428,'Amy Douglass'),(12429,'Shirley O\'Hara'),(12430,'Lucille Benson'),(12431,'Carey Loftin'),(12432,'Julia Phillips'),(12433,'Michael Phillips'),(12435,'Shari Rhodes'),(12436,'Daniel A. Lomino'),(12437,'Phil Abramson'),(12438,'Bob Balaban'),(12439,'J. Patrick McNamara'),(12440,'Warren J. Kemmerling'),(12441,'Philip Dodds'),(12442,'Adrienne Campbell'),(12443,'Justin Dreyfuss'),(12444,'Merrill Connally'),(12445,'Sue Lyon'),(12446,'Peter Sellers'),(12447,'John Harrison'),(12448,'Diana Decker'),(12449,'Jerry Stovin'),(12450,'Gary Cockrell'),(12451,'Bill Greene'),(12452,'Shirley Douglas'),(12453,'Wong Kar-wai'),(12455,'Shigeru Umebayashi'),(12466,'Roy Cheung'),(12476,'Claude Hu00e9roux'),(12477,'Pierre David'),(12479,'Victor Solnicki'),(12480,'Angelo Stea'),(12481,'Delphine White'),(12482,'Sonja Smits'),(12483,'Peter Dvorsky'),(12485,'Jack Creley'),(12486,'Lynne Gorman'),(12487,'Julie Khaner'),(12488,'Reiner Schwarz'),(12489,'David Bolt'),(12490,'Lally Cadeau'),(12491,'Patricia Highsmith'),(12495,'Ted Haworth'),(12500,'Patricia Hitchcock'),(12506,'Frank Herbert'),(12507,'Raffaella De Laurentiis'),(12508,'Toto'),(12509,'Antony Gibbs'),(12510,'Anthony Masters'),(12511,'Giorgio Desideri'),(12512,'Jorge Sainz'),(12513,'Francesca Annis'),(12514,'Leonardo Cimino'),(12515,'Josu00e9 Ferrer'),(12516,'Linda Hunt'),(12517,'Freddie Jones'),(12518,'Richard Jordan'),(12519,'Virginia Madsen'),(12520,'Silvana Mangano'),(12521,'Kenneth McMillan'),(12522,'Siu00e2n Phillips'),(12523,'Rob Bowman'),(12524,'Chris Carter'),(12525,'Debra Grieco'),(12526,'Avram Butch Kaplan'),(12529,'Carlos Cuaru00f3n'),(12533,'Josu00e9 Antonio Garcu00eda'),(12536,'Jack Thompson'),(12538,'Nick Searcy'),(12539,'Lily Knight'),(12543,'Eileen Ryan'),(12545,'Joe Marinelli'),(12547,'Tracy Middendorf'),(12548,'Kenneth White'),(12549,'Brett Rickaby'),(12552,'James Carraway'),(12561,'Michael Toji'),(12562,'Anna MacKenzie'),(12568,'Barbara Munch'),(12572,'John W. Micheletos'),(12575,'Patrick Loungway'),(12579,'Phil Bray'),(12587,'Jonathan Fuh'),(12593,'Tora Chung'),(12598,'Dayton Nietert'),(12611,'Rick Stratton'),(12612,'Karen Bradley'),(12613,'Gretchen Davis'),(12614,'Stephan Dupuis'),(12615,'Laurel Van Dyke'),(12617,'Yvette Rivas'),(12619,'Erwin H. Kupitz'),(12624,'Niels Mueller'),(12627,'Frank Spotnitz'),(12629,'Mary Astadourian'),(12631,'Lata Ryan'),(12632,'Daniel Sackheim'),(12633,'Mark Snow'),(12634,'Ward Russell'),(12635,'Stephen Mark'),(12637,'Christopher Nowak'),(12638,'Gregory Bolton'),(12639,'Hugo Santiago'),(12640,'David Duchovny'),(12642,'John Neville'),(12643,'William B. Davis'),(12644,'Mitch Pileggi'),(12645,'Jeffrey DeMunn'),(12646,'Terry O\'Quinn'),(12647,'Armin Mueller-Stahl'),(12648,'Bob Dolman'),(12649,'Nigel Wooll'),(12651,'Tim Hutchinson'),(12653,'Kim Sinclair'),(12654,'Malcolm Stone'),(12656,'Joanne Whalley'),(12657,'Jean Marsh'),(12658,'Patricia Hayes'),(12659,'Billy Barty'),(12660,'Gavin O\'Herlihy'),(12662,'Phil Fondacaro'),(12667,'Kwan Pung-Leung'),(12668,'Yiu-Fai Lai'),(12670,'Takuya Kimura'),(12671,'Faye Wong'),(12672,'Carina Lau'),(12674,'Siu Ping-Lam'),(12675,'Bird McIntyre'),(12676,'Dong Jie'),(12677,'Matthew Robbins'),(12678,'Hal Barwood'),(12681,'Eric Rattray'),(12682,'Marc Sillam'),(12684,'Eric Heumann'),(12685,'Tony Lawson'),(12686,'Deborah Brown'),(12687,'Alan Cassie'),(12688,'Peter MacNicol'),(12689,'Ralph Richardson'),(12690,'John Hallam'),(12691,'Peter Eyre'),(12692,'Albert Salmi'),(12693,'Sydney Bromley'),(12694,'Chloe Salaman'),(12698,'Bob Clark'),(12699,'Jean Shepherd'),(12700,'Paul Zaza'),(12701,'Carl Zittrer'),(12702,'Reginald H. Morris'),(12703,'Stan Cole'),(12704,'Reuben Freed'),(12705,'Gavin Mitchell'),(12706,'Mark S. Freeborn'),(12707,'Mary E. McLeod'),(12708,'Peter Billingsley'),(12709,'Ian Petrella'),(12710,'Scott Schwartz'),(12711,'R.D. Robb'),(12712,'Tedde Moore'),(12713,'Yano Anaya'),(12714,'Zack Ward'),(12715,'Jeff Gillen'),(12716,'Leslie Carlson'),(12718,'Nou00ebl Coward'),(12720,'Robert Krasker'),(12726,'Trevor Howard'),(12727,'Stanley Holloway'),(12734,'Friedrich Du00fcrrenmatt'),(12737,'Artur Brauner'),(12741,'Hermann Haller'),(12748,'Michel Simon'),(12754,'Roland Pellegrino'),(12755,'Ju00f6rg Reichl'),(12756,'John D. Schofield'),(12757,'Alisa Tager'),(12758,'Nou00eblle Boisson'),(12759,'Humphrey Dixon'),(12760,'Gudrun Leyendecker'),(12761,'Eddy Joseph'),(12762,'Andreas Biegler'),(12763,'Joseph Fiennes'),(12764,'Gabriel Thomson'),(12765,'Alexander Schwan'),(12766,'Lenn Kudrjawizki'),(12767,'Gennadi Vengerov'),(12768,'Dan van Husen'),(12770,'Denis L. Stewart'),(12772,'Rick Barker'),(12773,'Graziella Galvani'),(12774,'Deborah Moore'),(12775,'Joe Fineman'),(12776,'Senta Berger'),(12777,'Lisa Van Cott'),(12778,'M.K. Gleason'),(12780,'Barbara Coston'),(12781,'David Crockett'),(12782,'Mark Bowden'),(12783,'Ken Nolan'),(12785,'Terry Needham'),(12786,'Simon West'),(12787,'Elli Griff'),(12788,'David Murphy'),(12790,'Charlie Hofheimer'),(12791,'Hugh Dancy'),(12792,'Brian Van Holt'),(12793,'Matthew Marsden'),(12795,'Nikolaj Coster-Waldau'),(12796,'Johnny Strong'),(12797,'Glenn Morshower'),(12798,'Enrique Murciano'),(12799,'Jeremy Piven'),(12800,'Carmine Giovinazzo'),(12801,'Razaaq Adoti'),(12802,'Treva Etienne'),(12803,'Jason Hildebrandt'),(12804,'Peter Yates'),(12805,'Stanford Sherman'),(12806,'Geoffrey Helman'),(12807,'Ted Mann'),(12808,'Ron Silverman'),(12810,'Norman Dorme'),(12811,'Ken Marshall'),(12812,'Lysette Anthony'),(12815,'Bernard Bresslaw'),(12816,'John Welsh'),(12817,'Graham McGrath'),(12818,'Tony Church'),(12819,'Bernard Archard'),(12820,'Belinda Mayne'),(12824,'Don Hahn'),(12825,'Roger Cain'),(12826,'Charles Fleischer'),(12827,'Stubby Kaye'),(12828,'Alan Tilvern'),(12829,'Richard LeParmentier'),(12830,'Lou Hirsch'),(12831,'Betsy Brantley'),(12832,'Robert Rodat'),(12833,'Edward Burns'),(12834,'Barry Pepper'),(12835,'Vin Diesel'),(12836,'Ted Danson'),(12838,'Joerg Stadler'),(12840,'John Badham'),(12841,'Lawrence Lasker'),(12842,'Leonard Goldberg'),(12843,'Richard Hashimoto'),(12844,'Harold Schneider'),(12845,'Arthur B. Rubinstein'),(12846,'William A. Fraker'),(12847,'Wallis Nicita'),(12848,'Jerry Wunderlich'),(12849,'Barry Francis Delaney'),(12850,'Dabney Coleman'),(12851,'Ally Sheedy'),(12852,'Barry Corbin'),(12853,'Juanin Clay'),(12854,'Kent Williams'),(12855,'Dennis Lipscomb'),(12856,'Joe Dorsey'),(12857,'Irving Metzman'),(12859,'Steven Lisberger'),(12863,'Ron W. Miller'),(12864,'Bruce Logan'),(12865,'Jeff Gourson'),(12869,'John B. Mansbridge'),(12870,'Al Roelofs'),(12871,'Roger M. Shook'),(12881,'Gary Goldman'),(12882,'Buzz Feitshans'),(12885,'Carlos Puente'),(12886,'Josu00e9 Rodru00edguez Granada'),(12887,'Mel Johnson Jr.'),(12888,'Roy Brocksmith'),(12889,'Ray Baker'),(12890,'Pete Docter'),(12891,'Joss Whedon'),(12892,'Joel Cohen'),(12893,'Alec Sokolow'),(12894,'Bonnie Arnold'),(12895,'Ed Catmull'),(12896,'Ralph Guggenheim'),(12897,'Steve Jobs'),(12898,'Tim Allen'),(12899,'Jim Varney'),(12900,'Wallace Shawn'),(12901,'Erik von Detten'),(12903,'Sarah Freeman'),(12905,'Ash Brannon'),(12906,'Rita Hsiao'),(12907,'Doug Chamberlin'),(12908,'Chris Webb'),(12909,'Karen Robert Jackson'),(12910,'Sarah McArthur'),(12911,'Helene Plotkin'),(12912,'Sharon Calahan'),(12913,'Edie Bleiman'),(12914,'David Ian Salter'),(12915,'William Cone'),(12916,'Jim Pearson'),(12920,'David S. Ward'),(12922,'Gary Foster'),(12923,'Jane Bartelme'),(12926,'Robert M. Reitano'),(12928,'Ross Malinger'),(12929,'Rosie O\'Donnell'),(12930,'Gaby Hoffmann'),(12931,'Rita Wilson'),(12932,'Barbara Garrick'),(12936,'Jim Abrahams'),(12939,'Ira Newborn'),(12940,'Michael Jablow'),(12942,'Fern Champion'),(12945,'Jeff Carson'),(12948,'Conrad E. Palmisano'),(12949,'Priscilla Presley'),(12950,'George Kennedy'),(12951,'O.J. Simpson'),(12952,'Christopher Hampton'),(12954,'Norma Heyman'),(12955,'Hank Moonjean'),(12957,'Nancy Marchand'),(12961,'Gu00e9rard James'),(12962,'Jon Turteltaub'),(12963,'Lynn Siefert'),(12964,'Michael Ritchie'),(12965,'Tommy Swerdlow'),(12966,'Michael Goldberg'),(12967,'Swoosie Kurtz'),(12969,'Mildred Natwick'),(12970,'Bruce Green'),(12971,'Chemin Sylvia Bernard'),(12972,'Leslie Swan'),(12973,'Stephen Marsh'),(12974,'Leon Robinson'),(12975,'Doug E. Doug'),(12976,'Rawle D. Lewis'),(12977,'Malik Yoba'),(12978,'Peter Outerbridge'),(12979,'Paul Coeur'),(12980,'Larry Gilman'),(12981,'Kristoffer Cooper'),(12982,'Peter Capaldi'),(12983,'Joe Sheridan'),(12984,'Valerie Gogan'),(12985,'Laura Benson'),(12986,'Joanna Pavlis'),(12987,'David Zucker'),(12988,'Paul Michael Glaser'),(12989,'Andrew Davis'),(12991,'Pat Proft'),(12992,'George Linder'),(12993,'Tim Zinnemann'),(12994,'Vassal Benford'),(12995,'Marc Forster'),(12996,'David Magee'),(12997,'Richard N. Gladstein'),(12998,'Nellie Bellflower'),(13000,'Roberto Schaefer'),(13002,'Allan Knee'),(13003,'Marvin J. McIntyre'),(13004,'Gus Rethwisch'),(13005,'Matt Chesse'),(13006,'Professor Tanaka'),(13007,'Mick Fleetwood'),(13008,'Trisha Edwards'),(13009,'Alexandra Byrne'),(13010,'Kate Maberly'),(13011,'Joe Prospero'),(13012,'Nick Roud'),(13013,'Luke Spill'),(13014,'Toby Jones'),(13015,'Phillip Noyce'),(13017,'Hawk Koch'),(13019,'Ira Levin'),(13021,'William Baldwin'),(13022,'Tom Berenger'),(13023,'Colleen Camp'),(13024,'Amanda Foreman'),(13026,'Nina Foch'),(13028,'Nicholas Pryor'),(13029,'Anne Betancourt'),(13030,'Frank Ceglia'),(13031,'Rocky Capella'),(13035,'Ellen Lent'),(13040,'Dana Gong'),(13050,'Tim Monich'),(13061,'David Rapaport'),(13063,'Maureen Whalen'),(13064,'Nina Henninger'),(13065,'Sarah Kliban'),(13072,'Scott Sandine'),(13075,'Carolyn Crimley'),(13079,'Gavin Hood'),(13081,'Peter Fudakowski'),(13082,'Paul Hepker'),(13083,'Mark Kilian'),(13084,'Lance Gewer'),(13085,'Megan Gill'),(13086,'Emilia Roux'),(13087,'Mark Walker'),(13088,'Nhlanhla Bhengu'),(13089,'Nadia Kruger'),(13090,'Pierre Vienings'),(13091,'Presley Chweneyagae'),(13092,'Jerry Mofokeng'),(13093,'Terry Pheto'),(13094,'Kenneth Nkosi'),(13095,'Zenzo Ngqobe'),(13097,'Zola'),(13098,'Rapulana Seiphemo'),(13100,'Nambitha Mpumlwana'),(13101,'Ian Roberts'),(13102,'Doug E. Williams'),(13103,'Percy Matsemela'),(13105,'Thembi Nyandeni'),(13106,'Owen Sejake'),(13108,'Israel Makoe'),(13109,'Sindi Khambule'),(13111,'Benny Moshe'),(13115,'Sean House'),(13138,'Benjamin Koldyke'),(13140,'Jerzy Zielinski'),(13145,'Terry Wolcott'),(13152,'Robin Mathews'),(13155,'Wes Clowers'),(13156,'Billy Scoles'),(13160,'John Buckley'),(13165,'Ezra Dweck'),(13166,'Dino Dimuro'),(13168,'Victoria Rose Sampson'),(13169,'Bob Bowman'),(13170,'Paul Flinchbaugh'),(13175,'Zane D. Bruce'),(13177,'Marc Fishman'),(13179,'Tony Lamberti'),(13184,'Erik Dehkhoda'),(13189,'Steve Bowen'),(13192,'Diane Macke'),(13194,'Curtis Lindersmith'),(13195,'Chris Edwards'),(13197,'Chris Taft'),(13204,'Troy Christian'),(13223,'Jim Passon'),(13224,'Andy Potvin'),(13225,'Liza Richardson'),(13226,'Steven M. Stern'),(13227,'Jay Cassidy'),(13228,'Lester Cohen'),(13229,'Kevin Kennedy'),(13230,'Frida Torresblanco'),(13233,'Jason Kliot'),(13234,'Joana Vicente'),(13235,'Alexander Payne'),(13236,'Jorge Vergara'),(13240,'Mark Wahlberg'),(13241,'Estella Warren'),(13242,'Paul Giamatti'),(13243,'Glenn Shadix'),(13245,'Joel Negron'),(13246,'Takio Yoshida'),(13247,'Yohji Yamamoto'),(13248,'Senji Horiuchi'),(13251,'Tatsuya Mihashi'),(13256,'Kanji Tsuda'),(13260,'Linda Harrison'),(13262,'Lou Wagner'),(13265,'Franklin J. Schaffner'),(13267,'Michael Wilson'),(13268,'Rod Serling'),(13269,'Arthur P. Jacobs'),(13270,'Leon Shamroy'),(13273,'Takefumi Yoshikawa'),(13275,'Tadanobu Asano'),(13283,'Akira Emoto'),(13284,'Stanley Donen'),(13286,'Adolph Green'),(13289,'Adrienne Fazan'),(13290,'Randall Duell'),(13292,'Warren Newcombe'),(13293,'Irving G. Ries'),(13294,'Gene Kelly'),(13295,'Donald O\'Connor'),(13296,'Jean Hagen'),(13297,'Millard Mitchell'),(13298,'Douglas Fowley'),(13299,'Rita Moreno'),(13300,'Alice Walker'),(13301,'Quincy Jones'),(13302,'Carole Isenberg'),(13304,'J. Michael Riva'),(13306,'Richard Alonzo'),(13307,'Margaret Avery'),(13308,'Akosua Busia'),(13309,'Oprah Winfrey'),(13310,'Willard E. Pugh'),(13311,'Desreta Jackson'),(13312,'Rae Dawn Chong'),(13313,'Adolph Caesar'),(13314,'Dana Ivey'),(13315,'Leonard Jackson'),(13316,'Bennet Guillory'),(13317,'Robert Bolt'),(13319,'William N. Graf'),(13320,'Robert Lennard'),(13321,'John Box'),(13322,'Buster Ambler'),(13323,'Bob Jones'),(13324,'Paul Scofield'),(13325,'Wendy Hiller'),(13326,'Susannah York'),(13327,'Nigel Davenport'),(13328,'Corin Redgrave'),(13329,'Colin Blakely'),(13330,'Cyril Luckham'),(13331,'Jack Gwillim'),(13332,'Thomas Heathcote'),(13333,'Vanessa Redgrave'),(13336,'W. Franke Harling'),(13338,'Lee Garmes'),(13347,'Armitage Trail'),(13348,'Howard Hughes'),(13356,'C. Henry Gordon'),(13359,'Tully Marshall'),(13361,'Edwin Maxwell'),(13362,'Alec Newman'),(13363,'Saskia Reeves'),(13364,'Julie Cox'),(13367,'John Harrison'),(13371,'Harry B. Miller III'),(13389,'Charlie Korsmo'),(13390,'Amber Scott'),(13391,'Dante Basco'),(13392,'Arthur Malet'),(13393,'Isaiah Robinson'),(13399,'Lloyd Bochner'),(13401,'Peter Mark Richman'),(13410,'Roy Arbogast'),(13420,'Ellen Greene'),(13422,'Raye Birk'),(13426,'Peter Segal'),(13429,'Robert LoCash'),(13432,'James R. Symons'),(13433,'Pamela Basker'),(13434,'Bruce Crone'),(13435,'Kathe Klopp'),(13436,'Stephen Abrums'),(13443,'Laura Albert'),(13445,'Tia Carrere'),(13446,'Eliza Dushku'),(13451,'Jane Morris'),(13457,'Thomas L. Fisher'),(13458,'Joel Kramer'),(13465,'Jerold Wells'),(13469,'Jon Bunker'),(13472,'Tim Curry'),(13473,'Barry Bostwick'),(13474,'Richard O\'Brien'),(13475,'Patricia Quinn'),(13483,'Gaye Brown'),(13488,'Graeme Clifford'),(13493,'Colin Chilvers'),(13494,'Wally Veevers'),(13499,'Hans de Weers'),(13506,'Willeke van Ammelrooy'),(13514,'Jan Decleir'),(13520,'Aaron Sorkin'),(13521,'William S. Gilmore'),(13522,'Steven Nevius'),(13524,'Christopher Guest'),(13525,'Matt Craven'),(13526,'Noah Wyle'),(13548,'James Spader'),(13549,'Deborah Kara Unger'),(13550,'Elias Koteas'),(13551,'Denise Cronenberg'),(13552,'Cheryl Swarts'),(13558,'Mitchell Lewis'),(13563,'Norman Jewison'),(13565,'Steve McQueen'),(13567,'Ann-Margret'),(13568,'Joan Blondell'),(13569,'MacKinlay Kantor'),(13570,'Samuel Goldwyn'),(13571,'Hugo Friedhofer'),(13572,'Perry Ferguson'),(13574,'Irene Sharaff'),(13575,'Richard DeWeese'),(13576,'Fredric March'),(13577,'Myrna Loy'),(13578,'Dana Andrews'),(13579,'Virginia Mayo'),(13580,'Harold Russell'),(13581,'Brian Levant'),(13582,'Tom S. Parker'),(13583,'Jim Jennewein'),(13584,'Kent Beyda'),(13585,'Nancy Nayor'),(13586,'Christopher Burian-Mohr'),(13587,'Nancy Patton'),(13588,'Rosemary Brandenburg'),(13589,'Rosanna Norton'),(13591,'Richard Moll'),(13592,'Irwin Keyes'),(13593,'Jonathan Winters'),(13594,'Joseph Barbera'),(13596,'David Kirschner'),(13602,'Joie Lee'),(13603,'Cinquu00e9 Lee'),(13604,'Iggy Pop'),(13605,'Joseph Rigano'),(13611,'Jack White'),(13614,'Deborah Kaplan'),(13615,'Harry Elfont'),(13617,'Taylor Mead'),(13619,'Bart Brown'),(13620,'William Hanna'),(13621,'Dennis E. Jones'),(13622,'Jamie Anderson'),(13626,'Jan Pascale'),(13628,'Robert Turturice'),(13633,'Mark Addy'),(13635,'Kristen Johnston'),(13636,'Jane Krakowski'),(13637,'Joan Collins'),(13638,'Thomas Gibson'),(13640,'Harvey Korman'),(13642,'Alex Meneses'),(13644,'Tony Longo'),(13645,'Danny Woodburn'),(13652,'Ronee Blakley'),(13656,'Amanda Wyss'),(13657,'Jsu Garcia'),(13660,'Joseph Whipp'),(13661,'Joe Unger'),(13662,'Mimi Craven'),(13663,'Robert Shaye'),(13664,'John Burrows'),(13665,'Stanley Dudelson'),(13667,'Joseph Wolf'),(13668,'Sara Risher'),(13669,'Charles Bernstein'),(13670,'Jacques Haitkin'),(13672,'Patrick McMahon'),(13673,'Rick Shaine'),(13674,'Annette Benson'),(13675,'Gregg Fonseca'),(13677,'Anne H. Ahrens'),(13678,'Dana Lyman'),(13687,'Jean-Claude Dreyfus'),(13688,'Karin Viard'),(13689,'Ticky Holgado'),(13695,'Silvie Laguna'),(13696,'Howard Vernon'),(13697,'Dominique Zardi'),(13716,'Carl Bernstein'),(13718,'Walter Coblenz'),(13721,'Robert L. Wolfe'),(13722,'Alan Shayne'),(13723,'George Gaines'),(13724,'Jane Alexander'),(13726,'Ned Beatty'),(13728,'John McMartin'),(13729,'Robert Walden'),(13731,'Nicolas Coster'),(13732,'Richard Herd'),(13733,'Frank Latimore'),(13737,'Yevgeni Sitokhin'),(13738,'Klaus Manchen'),(13741,'Peter Pauli'),(13745,'Ravi Shankar'),(13746,'Eberhard Kirchberg'),(13776,'John Frankenheimer'),(13782,'Fernando Carrere'),(13784,'Burt Lancaster'),(13786,'Whit Bissell'),(13787,'Crahan Denton'),(13791,'Edward Peil Sr.'),(13809,'Russell Metty'),(13810,'George Hively'),(13812,'Tilo Pru00fcckner'),(13817,'Michael Gerber'),(13819,'Walter Catlett'),(13820,'Barry Fitzgerald'),(13821,'Fritz Feld'),(13822,'Leona Roberts'),(13823,'George Irving'),(13833,'Elu00edas Querejeta'),(13838,'Jean Rabasse'),(13839,'Aline Bonetto'),(13848,'Charlie Chaplin'),(13855,'Al Ernest Garcia'),(13856,'Hank Mann'),(13864,'Cary Odell'),(13867,'Larry Jost'),(13874,'Marc Cavell'),(13875,'Robert Donner'),(13887,'Otto Hunte'),(13899,'G.W. Pabst'),(13900,'Frank Wedekind'),(13901,'Ladislaus Vajda'),(13902,'Seymour Nebenzal'),(13903,'Andrej Andrejew'),(13904,'Louise Brooks'),(13905,'Fritz Kortner'),(13906,'Francis Lederer'),(13907,'Carl Goetz'),(13908,'Krafft-Raschig'),(13909,'Alice Roberts'),(13918,'Elizabeth Hurley'),(13919,'Michael York'),(13920,'Mimi Rogers'),(13922,'Seth Green'),(13923,'Fabiana Udenio'),(13924,'Mindy Sterling'),(13925,'Paul Dillon'),(13927,'Kurt Wimmer'),(13928,'Beau St. Clair'),(13929,'Roger Paradiso'),(13930,'Bruce Moriarty'),(13931,'Tom Priestley Jr.'),(13932,'Patricia McCorkle'),(13933,'Dennis Bradford'),(13936,'Frankie Faison'),(13937,'Charles Keating'),(13938,'Michael Lombard'),(13939,'Ritchie Coster'),(13942,'Del Armstrong'),(13944,'Walter Goss'),(13950,'Gordon Pinsent'),(13963,'Una Merkel'),(13965,'Jessie Ralph'),(13969,'Russell Hicks'),(13973,'Christian Nyby'),(13977,'Charles D. Brown'),(13979,'Louis Jean Heydt'),(13980,'Vincente Minnelli'),(13986,'Jack Dawn'),(13992,'Mary Astor'),(13994,'Leon Ames'),(13997,'June Lockhart'),(14001,'Chill Wills'),(14002,'Boris Pasternak'),(14003,'Arvid Griffen'),(14004,'Norman Savage'),(14005,'Gil Parrondo'),(14006,'Dario Simoni'),(14007,'Phyllis Dalton'),(14009,'Eddie Fowlie'),(14010,'William Steinkamp'),(14011,'Tom Courtenay'),(14012,'Siobhu00e1n McKenna'),(14014,'Gu00e9rard Tichy'),(14015,'Noel Willman'),(14016,'Jack MacGowran'),(14017,'Mark Eden'),(14018,'Erik Chitty'),(14019,'Carter DeHaven'),(14020,'Roland Totheroh'),(14021,'Willard Nico'),(14022,'J. Russell Spencer'),(14027,'Paulette Goddard'),(14036,'Dawn Hoggatt'),(14039,'Cynthia Kay Charette'),(14040,'Dan Olexiewicz'),(14041,'Bob Kensinger'),(14042,'Deena Appel'),(14043,'Kylie Bell'),(14045,'Dorian Cheah'),(14046,'Danny Cangemi'),(14047,'Richard Ratliff'),(14048,'Thomas Love'),(14049,'Bud Davis'),(14050,'Jay Caputo'),(14054,'Philip D\'Antoni'),(14055,'Robert E. Relyea'),(14056,'Emile LaVigne'),(14059,'Sass Bedig'),(14060,'Robert Vaughn'),(14061,'Jacqueline Bisset'),(14062,'Don Gordon'),(14063,'Simon Oakland'),(14064,'Norman Fell'),(14065,'Georg Stanford Brown'),(14067,'Carl Reindel'),(14068,'Felice Orlandi'),(14086,'Sajid Khan'),(14089,'Dale Launer'),(14093,'Jonathan D. Krane'),(14094,'Harry Stradling Jr.'),(14096,'Nancy Klopper'),(14098,'Carl Biddiscombe'),(14099,'Tracy Tynan'),(14100,'Roy L. Downey'),(14101,'John Larroquette'),(14102,'George Coe'),(14103,'Mark Blum'),(14104,'Phil Hartman'),(14105,'Stephanie Faracy'),(14107,'Graham Stark'),(14108,'Joyce Van Patten'),(14109,'Georgann Johnson'),(14121,'Wolfgang Preiss'),(14132,'Nicolas Roeg'),(14138,'Pino Donaggio'),(14139,'Anthony B. Richmond'),(14141,'Miriam Brickman'),(14145,'Rodney Holland'),(14147,'Clelia Matania'),(14148,'Massimo Serato'),(14149,'Renato Scarpa'),(14151,'Leopoldo Trieste'),(14172,'Michael McCullers'),(14189,'Debra Neil-Fisher'),(14192,'Michu00e8le Burke'),(14193,'Keith Marbory'),(14194,'David D. Johnson'),(14196,'Agnu00e8s Godard'),(14197,'Clay Boss'),(14226,'Gia Carides'),(14228,'Auguste Le Breton'),(14229,'Renu00e9 Wheeler'),(14242,'Jean Servais'),(14250,'Peter George'),(14251,'Leon Minoff'),(14252,'Laurie Johnson'),(14253,'Slim Pickens'),(14255,'Maurice Richlin'),(14256,'Dick Crockett'),(14261,'David Niven'),(14268,'Massimo Dallamano'),(14276,'Gian Maria Volontu00e9'),(14277,'Klaus Kinski'),(14279,'Josef Egger'),(14283,'Louis Silvers'),(14306,'Googie Withers'),(14312,'Mitchell Ryan'),(14313,'Darlene Love'),(14314,'Traci Wolfe'),(14316,'Damon Hines'),(14317,'Ebonie Smith'),(14319,'Lycia Naff'),(14320,'Jack Thibeau'),(14322,'David Sanborn'),(14324,'Joss Ackland'),(14325,'Derrick O\'Connor'),(14326,'Patsy Kensit'),(14328,'Steve Kahan'),(14329,'Dean Norris'),(14330,'Juney Smith'),(14331,'Nestor Serrano'),(14332,'Philip Suriano'),(14333,'Grand L. Bush'),(14335,'Alexander B. Collett'),(14336,'Michael Klastorin'),(14337,'Jennie Lew Tugend'),(14339,'Robert Brown'),(14340,'Battle Davis'),(14341,'Greg Papalia'),(14342,'Richard C. Goddard'),(14343,'Rene Russo'),(14344,'Stuart Wilson'),(14346,'Channing Gibson'),(14348,'Lauri Gaffin'),(14349,'David F. Klassen'),(14350,'Richard F. Mays'),(14351,'Roque Bau00f1os'),(14352,'Ha Nguyen'),(14354,'Stefan Zweig'),(14355,'William Dozier'),(14356,'Daniele Amfitheatrof'),(14364,'Erskine Sanford'),(14365,'Otto Waldis'),(14367,'T.E. Lawrence'),(14368,'Robert A. Harris'),(14371,'Anthony Quayle'),(14372,'Donald Wolfit'),(14373,'Zia Mohyeddin'),(14376,'Greg Hayden'),(14377,'Juel Bestrop'),(14378,'Drew Boughton'),(14381,'Robin Beauchesne'),(14382,'George H. Anderson'),(14383,'Thomas Bartke'),(14385,'Charlie Brewer'),(14386,'Beyoncu00e9 Knowles'),(14390,'Diane Mizota'),(14391,'Carrie Ann Inaba'),(14392,'Kathryn Bigelow'),(14393,'Jay Cocks'),(14397,'Jackson Browne'),(14405,'Courteney Cox'),(14406,'Lisa Kudrow'),(14407,'Matt LeBlanc'),(14408,'Matthew Perry'),(14409,'David Schwimmer'),(14414,'Kareem Abdul-Jabbar'),(14415,'Julie Hagerty'),(14416,'Robert Hays'),(14418,'Lorna Patterson'),(14420,'Jim Farley'),(14421,'Frederick Vroom'),(14423,'Stephen Stucker'),(14427,'Frank Ashmore'),(14431,'Joseph F. Biroc'),(14432,'Patrick Kennedy'),(14433,'Ward Preston'),(14436,'Edwin Butterworth'),(14438,'Henry Bergman'),(14440,'Joan Phillips'),(14441,'Maurice Vaccarino'),(14442,'Mike Higelmire'),(14443,'Clancy T. Troutman'),(14444,'Robert Blalack'),(14445,'Leigh Walsh'),(14446,'Henry Blanke'),(14450,'Gladys George'),(14451,'Barton MacLane'),(14452,'Jerome Cowan'),(14453,'James Burke'),(14455,'John Hamilton'),(14456,'Robert Paynter'),(14457,'Malcolm Campbell'),(14458,'Robin Grantham'),(14459,'John Poyner'),(14460,'Martin Gutteridge'),(14461,'Roy Alon'),(14464,'Jenny Agutter'),(14465,'John Woodvine'),(14468,'Brian Glover'),(14469,'Rik Mayall'),(14470,'Sean Baker'),(14474,'Gaston Leroux'),(14478,'Charles Van Enger'),(14491,'Robert Lawrence'),(14492,'Eric Orbom'),(14493,'Bill Thomas'),(14495,'Larry Germain'),(14498,'Bud Westmore'),(14499,'Ronald Pierce'),(14500,'Jean Simmons'),(14501,'Peter Ustinov'),(14502,'John Ireland'),(14503,'Herbert Lom'),(14505,'Harold J. Stone'),(14508,'John Hoyt'),(14509,'Frederick Worlock'),(14518,'Ray Collins'),(14520,'John Sturges'),(14522,'Louis Morheim'),(14523,'Walter Mirisch'),(14526,'Daniel C. Striepeke'),(14528,'Yul Brynner'),(14536,'Victor J. Kemper'),(14538,'Don Phillips'),(14539,'Charles Bailey'),(14540,'Douglas Higgins'),(14541,'Chris Sarandon'),(14543,'William Bogert'),(14544,'Penelope Allen'),(14548,'Marcia Jean Kurtz'),(14552,'Gary Springer'),(14553,'Carmine Foresta'),(14563,'Adolphe Menjou'),(14566,'Alexander Mackendrick'),(14568,'James Hill'),(14569,'James Wong Howe'),(14573,'Martin Milner'),(14577,'Edith Atwater'),(14587,'Heinrich Harrer'),(14588,'Becky Johnston'),(14589,'Hoang Thanh At'),(14590,'Enrico Sabbatini'),(14591,'Jamyang Jamtsho Wangchuk'),(14592,'BD Wong'),(14593,'Ingeborga Dapkunaite'),(14594,'Lhakpa Tsamchoe'),(14595,'Duncan Fraser'),(14596,'Danny Denzongpa'),(14597,'Gaspar Nou00e9'),(14598,'Thomas Bangalter'),(14599,'Benou00eet Debie'),(14600,'Jacques Grant'),(14601,'Alain Juteau'),(14602,'Laure Culkovic'),(14605,'Marc Boucrot'),(14606,'Albert Dupontel'),(14608,'John Warnke'),(14609,'Kara Lindstrom'),(14610,'Jo Prestia'),(14611,'Stu00e9phane Drouot'),(14612,'Jean-Louis Costes'),(14613,'Mourad Khima'),(14623,'Michael Kranz'),(14632,'Dana Vu00e1vrovu00e1'),(14637,'Detlef Bothe'),(14639,'Mel Brooks'),(14640,'Thomas Meehan'),(14641,'Ronny Graham'),(14642,'Nick McLean'),(14646,'Lamar Trotti'),(14647,'Cyril J. Mockridge'),(14648,'Arthur C. Miller'),(14651,'Alfred Bruzlin'),(14652,'John Franco Jr.'),(14653,'Ken Diaz'),(14654,'Robert Latham Brown'),(14657,'Sandina Bailo-Lape'),(14660,'Peter Albiez'),(14662,'Craig Boyajian'),(14663,'Dick Warlock'),(14664,'Paul Hurst'),(14667,'Mike Washlake'),(14668,'Daphne Zuniga'),(14669,'George Wyner'),(14670,'Joan Rivers'),(14671,'Dick Van Patten'),(14672,'Michael Winslow'),(14673,'Lorene Yarnell Jansson'),(14674,'George Cukor'),(14676,'Donald Ogden Stewart'),(14677,'Waldo Salt'),(14678,'Joseph Ruttenberg'),(14679,'Frank Sullivan'),(14681,'Sydney Guilaroff'),(14687,'J.M. Barrie'),(14691,'Lionel Pape'),(14692,'Nick Castle'),(14693,'Malia Scotch Marmo'),(14694,'Gary Adelson'),(14695,'Craig Baumgarten'),(14696,'Dodi Fayed'),(14697,'Michael Hirshenson'),(14698,'Penelope Ann Miller'),(14699,'Pamela Reed'),(14700,'Richard Tyson'),(14701,'Carroll Baker'),(14702,'Cathy Moriarty'),(14703,'Joseph Cousins'),(14704,'Park Overall'),(14706,'Tom Kurlander'),(14707,'Alix Koromzay'),(14708,'Betty Lou Henson'),(14709,'Murray Salem'),(14710,'Herschel Weingrod'),(14711,'Timothy Harris'),(14712,'Randy Edelman'),(14713,'Ken Chase'),(14714,'Peggy Semtob'),(14715,'Gordon A. Webb'),(14716,'Kathy Durning'),(14717,'Tom McCarthy Jr.'),(14719,'William Aldridge'),(14720,'David Balcorta'),(14721,'Kevin Dunn'),(14722,'Arabella Field'),(14723,'Vicki Lewis'),(14724,'Richard Condon'),(14730,'Angela Lansbury'),(14731,'Henry Silva'),(14732,'James Gregory'),(14738,'Malcolm Danare'),(14739,'Lorry Goldman'),(14740,'Christian Aubert'),(14741,'Philippe Bergeron'),(14744,'Rudyard Kipling'),(14745,'Russell Lloyd'),(14746,'Boaty Boatwright'),(14748,'George Frost'),(14750,'Patricia McDermott'),(14753,'David Siegel'),(14754,'Doghmi Larbi'),(14755,'Jack May'),(14757,'David Bloch'),(14759,'Albert Moses'),(14761,'Oana Bogdan'),(14762,'Robert Woodruff'),(14763,'Katalin Elek'),(14764,'Christopher Assells'),(14765,'Per Hallberg'),(14766,'John S. Baker'),(14767,'Clay Pinney'),(14768,'Alessandra Carlino'),(14771,'R.A. Rondell'),(14773,'Don Siegel'),(14774,'Harry Julian Fink'),(14776,'Dean Riesner'),(14777,'Robert Daley'),(14779,'Dale Hennesy'),(14780,'Robert De Vestel'),(14782,'Andrew Robinson'),(14784,'Reni Santoni'),(14786,'John Mitchum'),(14792,'Josef Sommer'),(14793,'Herbert Cardwell'),(14794,'Charlotte Stewart'),(14795,'Allen Joseph'),(14796,'Jeanne Bates'),(14797,'Judith Roberts'),(14798,'Laurel Near'),(14799,'T. Max Graham'),(14800,'Jennifer Chambers Lynch'),(14801,'Hal Landon Jr.'),(14802,'Jean Lange'),(14812,'Jeanne Moreau'),(14815,'Michael Aldridge'),(14820,'Alan Webb'),(14821,'Fernando Rey'),(14822,'Josu00e9 Nieto'),(14823,'Andrew Faulds'),(14824,'Charles MacArthur'),(14825,'Jennings Lang'),(14826,'James W. Payne'),(14827,'Burton Miller'),(14828,'Robert Martin'),(14829,'Robert L. Hoyt'),(14830,'Vincent Gardenia'),(14831,'David Wayne'),(14832,'Herb Edelman'),(14833,'Harold Gould'),(14834,'Cliff Osmond'),(14835,'Dick O\'Neill'),(14836,'Jon Korkes'),(14837,'Carol Burnett'),(14838,'James Bridges'),(14839,'Mike Gray'),(14843,'James Crabe'),(14844,'David Rawlins'),(14845,'Sally Dennison'),(14847,'Scott Brady'),(14848,'James Hampton'),(14849,'Peter Donat'),(14850,'Daniel Valdez'),(14852,'James Karen'),(14854,'Donald Hotton'),(14855,'Frank Borzage'),(14863,'Lloyd Knechtel'),(14870,'Bonita Granville'),(14874,'Gene Reynolds'),(14875,'Robert Rossen'),(14876,'Sidney Carroll'),(14877,'Walter Tevis'),(14878,'Harry Horner'),(14879,'Gene Callahan'),(14880,'Dick Vorisek'),(14881,'Herbert Holcombe'),(14882,'Jackie Gleason'),(14883,'Myron McCormick'),(14884,'Michael Constantine'),(14885,'Gordon B. Clarke'),(14886,'Craig Bierko'),(14887,'Paddy Considine'),(14888,'Bruce McGill'),(14889,'Connor Price'),(14890,'Ariel Waller'),(14891,'Patrick Louis'),(14892,'Rosemarie DeWitt'),(14893,'Linda Kash'),(14895,'Barry Spikings'),(14897,'John Peverall'),(14901,'May Routh'),(14902,'Nicholas Campbell'),(14903,'Gene Pyrz'),(14905,'Chuck Shamata'),(14906,'Cliff Hollingsworth'),(14911,'Penny Marshall'),(14912,'Diane Kerbel'),(14913,'Peter Grundy'),(14914,'Dan Yarhi'),(14915,'Gordon Sim'),(14917,'Hazel Gordon'),(14919,'Burton J. LeBlanc'),(14923,'Laird McMurray'),(14924,'Mark O. Forker'),(14926,'Rob Bell'),(14929,'Edgar J. Scherick'),(14930,'John Addison'),(14931,'Richard Marden'),(14941,'David Zelag Goodman'),(14942,'Daniel Melnick'),(14944,'John Coquillon'),(14950,'Jim Norton'),(14955,'Peter Arne'),(14957,'Colin Welland'),(14960,'Bert Glennon'),(14961,'Otho Lovering'),(14962,'Dorothy Spencer'),(14964,'Frank Maher'),(14966,'Andy Devine'),(14968,'Donald Meek'),(14970,'Tom Tyler'),(14971,'James M. Cain'),(14973,'Bertram C. Granger'),(14975,'Porter Hall'),(14984,'Jessica Hecht'),(14987,'Peter Bonerz'),(14990,'Morgan Fairchild'),(14991,'Jay Leno'),(14994,'Paul Lazarus III'),(14995,'Alan Myerson'),(14999,'George A. Romero'),(15000,'Richard P. Rubinstein'),(15002,'Dean Parisot'),(15003,'David Howard'),(15004,'Charles Newirth'),(15005,'Don Zimmerman'),(15006,'James Nedza'),(15007,'Laura Harring'),(15008,'Ann Miller'),(15009,'Justin Theroux'),(15010,'Lori Heuring'),(15011,'Brent Briscoe'),(15012,'Katharine Towne'),(15013,'Chad Everett'),(15014,'Peter Jamison'),(15015,'Amy Stofsky'),(15016,'Ric McElvin'),(15017,'Bill Corso'),(15018,'J.J. George'),(15020,'Jim Reardon'),(15021,'William N. Greene III'),(15022,'Mat Beck'),(15023,'David S. Dranitzke'),(15024,'Andy Armstrong'),(15026,'James Armstrong'),(15028,'Daryl Mitchell'),(15029,'Enrico Colantoni'),(15030,'Robin Sachs'),(15031,'Patrick Breen'),(15032,'Jed Rees'),(15033,'Justin Long'),(15034,'Jeremy Howard'),(15035,'Kaitlin Cullum'),(15036,'Jonathan Feyer'),(15044,'Leila Kenzle'),(15045,'Michael Lembeck'),(15050,'Leah Remini'),(15056,'Michael Gornick'),(15057,'John Amplas'),(15070,'Ken Foree'),(15071,'Scott H. Reiniger'),(15072,'Gaylen Ross'),(15073,'David Crawford'),(15074,'David Early'),(15082,'Jeppe Kaas'),(15084,'Anders Villadsen'),(15086,'Nicolas Bro'),(15087,'Ali Kazim'),(15089,'Jim Booth'),(15090,'Alun Bollinger'),(15091,'Melanie Lynskey'),(15092,'Sarah Peirse'),(15093,'Simon O\'Connor'),(15094,'Diana Kent'),(15095,'Gilbert Goldie'),(15098,'June Foray'),(15099,'Paul Willson'),(15100,'Lauren Tom'),(15105,'Mike Hagerty'),(15109,'Lisa Roberts Gillan'),(15110,'Brooke Shields'),(15111,'Jean-Claude Van Damme'),(15112,'Tom Selleck'),(15115,'Stefan Ruzowitzky'),(15117,'Peter von Haller'),(15122,'Sophie Rois'),(15131,'Giuseppe Rotunno'),(15135,'Alain Delon'),(15140,'Terence Hill'),(15148,'Jon Amiel'),(15149,'Sarah Kernochan'),(15150,'Maggie Wilde'),(15152,'James Earl Jones'),(15153,'Wendell Wellman'),(15170,'Jiang Wu'),(15175,'William Friedkin'),(15176,'Robin Moore'),(15177,'Don Ellis'),(15178,'Jimmy Webb'),(15181,'Ben Kasazkow'),(15182,'Edward Garzero'),(15183,'Tony Lo Bianco'),(15184,'Marcel Bozzuffi'),(15185,'Fru00e9du00e9ric de Pasquale'),(15186,'Bill Hickman'),(15187,'Harold Gary'),(15188,'Arlene Farber'),(15191,'Tonino Guerra'),(15193,'Herbie Hancock'),(15194,'Carlo Di Palma'),(15196,'David Hemmings'),(15198,'John Castle'),(15199,'Veruschka von Lehndorff'),(15202,'Peter Bowles'),(15207,'L.M. Kit Carson'),(15208,'Keith Addis'),(15212,'Art Metrano'),(15213,'John P. Ryan'),(15217,'Zack Snyder'),(15218,'James Gunn'),(15219,'Marc Abraham'),(15220,'Eric Newman'),(15221,'Tyler Bates'),(15222,'Arvinder Grewal'),(15223,'Steve Shewchuk'),(15224,'Michael MacDonald'),(15225,'Darrell Hall'),(15226,'Scott Hecker'),(15227,'Sharon Smith Holley'),(15229,'John Stoneham Jr.'),(15230,'Nick Alachiotis'),(15232,'Ty Burrell'),(15234,'David Arquette'),(15244,'Ehren Kruger'),(15245,'Tom Gorai'),(15246,'Marc Samuelson'),(15247,'Peter Samuelson'),(15248,'Ted Tannebaum'),(15250,'Hope Davis'),(15251,'Robert Gossett'),(15252,'Mason Gamble'),(15253,'Stanley Anderson'),(15254,'Emir Kusturica'),(15268,'Branka Katiu0107'),(15274,'E.G. Daily'),(15276,'Angela Featherstone'),(15277,'Jon Favreau'),(15282,'Matt Battaglia'),(15286,'Christine Taylor'),(15287,'Niki Caro'),(15288,'Witi Ihimaera'),(15289,'John Barnett'),(15290,'Leon Narbey'),(15291,'David Coulson'),(15292,'Tim Sanders'),(15293,'Keisha Castle-Hughes'),(15294,'Rawiri Paratene'),(15295,'Vicky Haughton'),(15296,'Grant Roa'),(15297,'Mana Taumaunu'),(15298,'Rachel House'),(15299,'Tammy Davis'),(15300,'Mabel Wharekawa'),(15301,'Rawinia Clarke'),(15302,'Tahei Simpson'),(15303,'Frank Hu00fcbner'),(15304,'W. Peter Iliff'),(15305,'Rick King'),(15306,'Peter Abrams'),(15307,'Robert L. Levy'),(15308,'Sharon Boyle'),(15309,'Lori Petty'),(15310,'Anthony Kiedis'),(15312,'Bruce Geller'),(15314,'Jiru00ed Farkas'),(15315,'Ellen Segal'),(15316,'Ian Wingrove'),(15317,'Alexandra Altrocchi'),(15318,'Keith Campbell'),(15319,'Henry Czerny'),(15320,'Marcel Iureu0219'),(15321,'Ion Caramitru'),(15322,'Valentina Yakunina'),(15323,'Nathan Osgood'),(15325,'Tony Ciccone'),(15326,'Gregory Apps'),(15327,'Nathan Crowley'),(15328,'Kevin Kavanaugh'),(15329,'Lizzy Gardiner'),(15330,'Paul Pattison'),(15331,'Bryan Bowen'),(15332,'Mark P. Stoeckinger'),(15333,'R. Bruce Steinheimer'),(15334,'Larry Bafia'),(15335,'Brian Smrz'),(15336,'Dougray Scott'),(15337,'John Polson'),(15338,'William Mapother'),(15339,'Mathew Wilkinson'),(15340,'Nicholas Bell'),(15341,'Cristina Brogeras'),(15342,'Kee Chan'),(15343,'Kim Fleming'),(15344,'J.J. Abrams'),(15345,'Alex Kurtzman'),(15346,'Roberto Orci'),(15347,'Michael Giacchino'),(15348,'Daniel Mindel'),(15349,'Maryann Brandon'),(15350,'Mary Jo Markey'),(15351,'Scott Chambliss'),(15352,'Karen Manthey'),(15353,'Warren Hanneman'),(15354,'Stephen M. Davis'),(15355,'Daniel Acon'),(15356,'Daniel Sudick'),(15357,'Nina Fallon'),(15358,'Vic Armstrong'),(15359,'Wade Allen'),(15361,'Josef Rusnak'),(15362,'Daniel F. Galouye'),(15363,'Ravel Centeno-Rodriguez'),(15364,'Ute Emmerich'),(15365,'Kelly Van Horn'),(15366,'Marco Weber'),(15367,'Wedigo von Schultzendorff'),(15368,'Frank Bollinger'),(15370,'Gretchen Mol'),(15371,'Steven Schub'),(15372,'Jeremy Roberts'),(15373,'Rif Hutton'),(15374,'Leon Rippy'),(15375,'Janet MacLachlan'),(15376,'Brad William Henke'),(15377,'Burt Bulos'),(15378,'Carol Reed'),(15379,'Graham Greene'),(15387,'Wilfrid Hyde-White'),(15395,'Maurice Ronet'),(15406,'Bill Lancaster'),(15407,'Stuart Cohen'),(15408,'Wilbur Stark'),(15409,'Anita Dann'),(15410,'Henry Larrecq'),(15411,'T. K. Carter'),(15412,'David Clennon'),(15413,'Richard Dysart'),(15414,'Charles Hallahan'),(15415,'Peter Maloney'),(15416,'Richard Masur'),(15417,'Donald Moffat'),(15418,'Joel Polis'),(15419,'Thomas G. Waites'),(15423,'Paget Brewster'),(15424,'Michael Vartan'),(15425,'Neil Young'),(15426,'Laura Rosenthal'),(15427,'Bob Ziembicki'),(15428,'Ted Berner'),(15430,'Scott W. Farley'),(15431,'Neal Martz'),(15432,'Robert Hein'),(15433,'Magdaline Volaitis'),(15434,'Lou Carlucci'),(15435,'Randall Balsmeyer'),(15436,'Jon Farhat'),(15438,'Erik Stabenau'),(15439,'Gary Farmer'),(15440,'Jared Harris'),(15442,'Jimmie Ray Weeks'),(15443,'Mark Bringelson'),(15445,'Alan Howarth'),(15447,'Jim Lucas'),(15448,'Cloudia Rebar'),(15449,'Frank Doubleday'),(15450,'John Strobel'),(15453,'Debra Jo Rupp'),(15455,'Tate Donovan'),(15456,'Helen Baxendale'),(15480,'Sabine Timoteo'),(15481,'Marianne Basler'),(15487,'Erica Ulland'),(15488,'Ken Loach'),(15489,'Don Behrns'),(15490,'Paul Laverty'),(15491,'Rebecca O\'Brien'),(15492,'William L. Stevenson'),(15493,'Barry Ackroyd'),(15494,'Conrad Rothmann'),(15495,'Jonathan Morris'),(15496,'James Winburn'),(15497,'Pu00e1draic Delaney'),(15498,'Liam Cunningham'),(15499,'Gerard Kearney'),(15500,'P.J. Soles'),(15501,'William Ruane'),(15502,'Laurence Barry'),(15503,'Kyle Richards'),(15504,'Sabrina Barry'),(15505,'Brian Andrews'),(15506,'John Michael Graham'),(15507,'Kieran Aherne'),(15508,'Nancy Stephens'),(15509,'Orla Fitzgerald'),(15510,'Mickey Yablans'),(15511,'Brent Le Page'),(15512,'Fergus Clegg'),(15513,'Adam Hollander'),(15514,'Michael Higgins'),(15515,'Robert Phalen'),(15516,'Tony Moran'),(15517,'Will Sandin'),(15519,'David Kyle'),(15520,'Bill Lee'),(15521,'Ernest R. Dickerson'),(15522,'Robi Reed'),(15523,'Steve Rosse'),(15524,'Ruth E. Carter'),(15525,'Matiki Anoff'),(15526,'Larry M. Cherry'),(15527,'Tony Martinez'),(15528,'Steven Kirshoff'),(15529,'Eddie Smith'),(15530,'Andy Duppin'),(15531,'Ossie Davis'),(15532,'Ruby Dee'),(15533,'Olivier Martinez'),(15534,'Paul Benjamin'),(15535,'Robin Harris'),(15536,'Steve White'),(15537,'Leonard L. Thomas'),(15539,'Shawn Slovo'),(15540,'Robyn Slovo'),(15541,'Melinda Launspach'),(15542,'Reza Levy'),(15543,'Derek Luke'),(15544,'Bonnie Henna'),(15545,'Mncedisi Shabangu'),(15546,'Tumisho Masha'),(15547,'Sithembiso Khumalo'),(15549,'Michele Burgers'),(15550,'Mpho Lovinga'),(15551,'Jessica Anstey'),(15552,'Charlotte Savage'),(15553,'Nomhlu00e9 Nkyonyeni'),(15554,'Christopher Priest'),(15555,'Piper Perabo'),(15556,'Rebecca Hall'),(15557,'Bill Condon'),(15558,'Tom Eyen'),(15559,'Tobias A. Schliessler'),(15560,'Virginia Katz'),(15563,'Anika Noni Rose'),(15564,'Keith Robinson'),(15565,'Jennifer Hudson'),(15566,'Sharon Leal'),(15567,'Hinton Battle'),(15568,'Mariah I. Wilson'),(15569,'Yvette Cason'),(15571,'Henry Krieger'),(15572,'Tomas Voth'),(15573,'Sharen Davis'),(15576,'Matthew Macfadyen'),(15577,'Emily Barclay'),(15585,'Trevor Haysom'),(15588,'Jennifer Kernke'),(15589,'Kirsty Cameron'),(15593,'Violeta Pu00e9rez'),(15598,'Luis Callejo'),(15601,'Enrique Villu00e9n'),(15602,'Fernando Leu00f3n de Aranoa'),(15604,'Nacho Ruiz Capillas'),(15606,'Llorenu00e7 Miquel'),(15607,'Jaume Roures'),(15625,'Lawrence Dobkin'),(15650,'Michael Strong'),(15655,'Kim Darby'),(15659,'Marianna Hill'),(15661,'Clint Howard'),(15663,'Joseph Sargent'),(15666,'Victor Jory'),(15668,'Andrew Prine'),(15672,'Nadia Tass'),(15674,'Hallie Kate Eisenberg'),(15675,'Alison Elliott'),(15684,'Paul Schneider'),(15693,'John Crawford'),(15699,'William Campbell'),(15721,'Jon Lormer'),(15726,'Christine Langan'),(15727,'Tracey Seaward'),(15728,'Andy Harries'),(15729,'Cameron McCracken'),(15730,'Peter Morgan'),(15731,'Lucia Zucchetti'),(15732,'Alan MacDonald'),(15733,'Tina Jones'),(15734,'Consolata Boyle'),(15735,'Helen Mirren'),(15736,'Sylvia Syms'),(15737,'Helen McCrory'),(15738,'Paul Barrett'),(15739,'Alex Jennings'),(15740,'Tim McMullan'),(15746,'Barbara Babcock'),(15749,'Robert Hamner'),(15756,'Brad Weston'),(15757,'Ray Romano'),(15758,'Queen Latifah'),(15760,'Josh Peck'),(15761,'Grey Griffin'),(15762,'Tara Strong'),(15765,'John Colicos'),(15768,'Tim Nordquist'),(15769,'Yujin Ito'),(15770,'Ben Sanders'),(15772,'Richard Derr'),(15774,'Chris Buck'),(15775,'Kevin Lima'),(15776,'Edgar Rice Burroughs'),(15778,'Brian Pimental'),(15779,'Gregory Perler'),(15780,'Dan St. Pierre'),(15781,'Hal Baylor'),(15783,'Harlan Ellison'),(15788,'Nigel Hawthorne'),(15789,'Alex D. Linz'),(15795,'Harley Peyton'),(15799,'Lenny Von Dohlen'),(15800,'Don Amendolia'),(15801,'Jerry Stahl'),(15802,'Gregg Fienberg'),(15806,'Jonathan P. Shaw'),(15810,'Ron Clements'),(15811,'John Musker'),(15812,'Roger Allers'),(15813,'Alan Menken'),(15814,'Mark A. Hester'),(15815,'H. Lee Peterson'),(15817,'Bill Perkins'),(15818,'Alice Dewey'),(15821,'Dorse A. Lanpher'),(15824,'Chris Mulkey'),(15827,'Scott Weinger'),(15829,'Linda Larkin'),(15830,'Jonathan Freeman'),(15831,'Frank Welker'),(15832,'Gilbert Gottfried'),(15833,'Douglas Seale'),(15834,'Bruce Adler'),(15838,'Lea Salonga'),(15840,'Pasquale Buba'),(15841,'William Goldenberg'),(15842,'Dov Hoenig'),(15843,'Margie Stone McShirley'),(15845,'John Caglione Jr.'),(15846,'Vera Mitchell'),(15847,'Terry D. Frazee'),(15849,'Neil Krepela'),(15851,'Amy Brenneman'),(15852,'Ashley Judd'),(15853,'Wes Studi'),(15854,'Ted Levine'),(15857,'James Booth'),(15858,'Tim Hunter'),(15860,'Miguel Ferrer'),(15863,'Don S. Davis'),(15864,'Clarence Williams III'),(15865,'Ian Buchanan'),(15868,'Uli Edel'),(15875,'Mike Brewster'),(15877,'Brian Ackland-Snow'),(15878,'Anna Rackard'),(15880,'Nigel Heath'),(15883,'Angus Bickerton'),(15886,'Julia Louis-Dreyfus'),(15887,'Julia Ormond'),(15890,'James Foley'),(15892,'Dan Fogelman'),(15893,'Teresa Eckton'),(15894,'Tom Myers'),(15895,'David Munier'),(15896,'Jessica Giampietro McMackin'),(15897,'Larry the Cable Guy'),(15898,'Guido Quaroni'),(15899,'Jenifer Lewis'),(15900,'Paul Dooley'),(15901,'Jonathan Sanger'),(15902,'Michael Wallis'),(15903,'George Carlin'),(15905,'Robyn Lively'),(15906,'William Horberg'),(15907,'Alessandra Sampaolo'),(15908,'Elisabetta De Leonardis'),(15909,'Sam Conway'),(15910,'Dennis Lowe'),(15911,'Franco Maria Salamon'),(15913,'Claudio Pacifico'),(15915,'Sergio Rubini'),(15916,'Fiorello'),(15917,'Stefania Rocca'),(15918,'Ivano Marescotti'),(15919,'Anna Longhi'),(15920,'Alessandro Fabrizi'),(15924,'Edward K. Milkis'),(15942,'Celia Lovsky'),(15947,'Gilbert Ralston'),(15951,'Jerome Bixby'),(15953,'Keith Andes'),(15956,'David Soul'),(15969,'William O\'Connell'),(15983,'Beverly Washburn'),(15988,'Charles Dierkop'),(15992,'William Schallert'),(15993,'Michael Pataki'),(15998,'Joseph Ruskin'),(16016,'David Brian'),(16021,'Barbara Bouchet'),(16036,'Fred Freiberger'),(16052,'Jack Donner'),(16055,'Richard Hale'),(16060,'Brian Tochi'),(16074,'Michael Ansara'),(16089,'Jason Evers'),(16096,'France Nuyen'),(16097,'Jay Robinson'),(16103,'Keye Luke'),(16108,'Lee Meriwether'),(16119,'Charles Napier'),(16145,'Youki Kudoh'),(16146,'Saemi Nakamura'),(16151,'Tom Fahn'),(16154,'Michael Finnell'),(16155,'Noel Regney'),(16156,'John Hora'),(16157,'Tina Hirsch'),(16158,'Susan Arnold'),(16159,'Greg LaCava'),(16160,'Cheri Ruff'),(16161,'Kenneth Hall'),(16162,'Bob MacDonald Jr.'),(16163,'Mike H. McGaughy'),(16164,'Rudy Doucette'),(16165,'Jon Lovitz'),(16166,'Hoyt Axton'),(16167,'John Louie'),(16168,'Don Steele'),(16169,'Susan Burgess'),(16170,'Zach Galligan'),(16171,'Phoebe Cates'),(16172,'Donald Elson'),(16173,'Belinda Balaski'),(16175,'Glenn Daniels'),(16176,'John H. Anderson'),(16177,'Ron Bartlett'),(16178,'Rick Baker'),(16179,'Dennis Michelson'),(16180,'Robert Picardo'),(16181,'Haviland Morris'),(16182,'Jackie Joseph'),(16183,'Gedde Watanabe'),(16184,'Don Stanton'),(16185,'Dan Stanton'),(16186,'Shawn Nelson'),(16187,'Jeannot Szwarc'),(16188,'Howard Sackler'),(16189,'Michael C. Butler'),(16191,'Gene Johnson'),(16192,'Bill Jobe'),(16193,'Robert Jiras'),(16194,'Philip Leto'),(16195,'Stephen A. Hope'),(16196,'James Troutman'),(16197,'Ann Dusenberry'),(16198,'Mark Gruner'),(16199,'Barry Coe'),(16200,'Susan French'),(16201,'Donna Wilkes'),(16202,'Gary Dubin'),(16203,'John Dukakis'),(16204,'G. Thomas Dunlop'),(16205,'Michael De Guzman'),(16206,'John McPherson'),(16207,'Michael Brown'),(16208,'Christine Lee'),(16209,'Tony Lloyd'),(16210,'Colin C. Mouat'),(16211,'Dave Hubbard'),(16212,'Ray Baum'),(16213,'Lance Guest'),(16214,'Mario Van Peebles'),(16215,'Karen Young'),(16216,'Judith Barsi'),(16217,'Lynn Whitfield'),(16218,'Mitchell Anderson'),(16219,'Cedric Scott'),(16220,'Charles Bowleg'),(16222,'Mary Smith'),(16223,'Edna Billotto'),(16224,'Fritzi Jane Courtney'),(16233,'Volker Schu00e4fer'),(16234,'Csaba Stork'),(16236,'Susana Su00e1nchez'),(16240,'Stefano Dionisi'),(16252,'Jon Povill'),(16273,'Simon Chandler'),(16274,'Dominic Guard'),(16281,'Choi Yong-bae'),(16293,'Anthony Heald'),(16294,'Jonathan Demme'),(16296,'Ronald M. Bozman'),(16297,'Edward Saxon'),(16298,'Kenneth Utt'),(16300,'Tak Fujimoto'),(16302,'Bob Einstein'),(16303,'Cu00e9line Dion'),(16304,'Brian Koppelman'),(16305,'David Levien'),(16306,'Matt Absher'),(16307,'Maura Tierney'),(16309,'Marianne Koch'),(16310,'Wolfgang Lukschy'),(16311,'Josu00e9 Calvo'),(16312,'Sieghardt Rupp'),(16313,'Antonio Prieto'),(16314,'Margarita Lozano'),(16316,'Daniel Martu00edn'),(16317,'Bruno Carotenuto'),(16318,'Mario Brega'),(16319,'Vu00edctor Andru00e9s Catena'),(16320,'Jaime Comas Gil'),(16321,'Arrigo Colombo'),(16322,'Giorgio Papi'),(16324,'Federico G. Larraya'),(16325,'Roberto Cinquini'),(16326,'Alfonso Santacana'),(16327,'Timothy Hutton'),(16328,'Adam Brooks'),(16329,'Charles Okun'),(16331,'Owen Roizman'),(16333,'Gilbert Adair'),(16336,'Lucy Boulting'),(16337,'Juliette Mu00e9nager'),(16338,'Pierre Duboisberranger'),(16339,'Eric Viellerobe'),(16340,'Louise Stjernsward'),(16341,'Christophe Giraud'),(16343,'Mark Auguste'),(16344,'Daniel Laurie'),(16345,'Gru00e9goire Delage'),(16346,'Valerio Bonelli'),(16347,'Patrick Cauderlier'),(16354,'Lola Peploe'),(16356,'Steve Bendelack'),(16357,'Robin Driscoll'),(16358,'Simon McBurney'),(16359,'Hamish McColl'),(16360,'Peter Bennett-Jones'),(16361,'Baz Irvine'),(16362,'Tony Cranstoun'),(16363,'Nina Gold'),(16364,'Michael Carlin'),(16365,'Iru00e8ne Jordi'),(16366,'Fru00e9du00e9rique Arguello'),(16367,'Gerard Loret'),(16368,'Steven Price'),(16369,'Philippe Hubin'),(16370,'Jean-Christophe Magnaud'),(16371,'Scott Chambers'),(16372,'Ru00e9mi Canaple'),(16373,'Max Baldry'),(16376,'Larry David'),(16377,'Jerry Seinfeld'),(16378,'Mary Harron'),(16379,'Bret Easton Ellis'),(16390,'Donald W. Ernst'),(16391,'Julie Taymor'),(16392,'Hayden Herrera'),(16393,'Clancy Sigal'),(16394,'Diane Lake'),(16395,'Gregory Nava'),(16396,'Anna Thomas'),(16397,'Lindsay Flickinger'),(16398,'Sarah Green'),(16399,'Nancy Hardin'),(16400,'Jay Polstein'),(16401,'Roberto Sneider'),(16402,'Lizz Speed'),(16403,'Franu00e7oise Bonnot'),(16404,'Bernardo Trujillo'),(16405,'Hania Robledo'),(16406,'Patricia Reyes Spu00edndola'),(16407,'Roger Rees'),(16408,'Margarita Sanz'),(16409,'Omar Rodru00edguez'),(16417,'Paul Frees'),(16418,'Casey Kasem'),(16420,'Richard Boone'),(16425,'Oliver Stapleton'),(16426,'Russell J. Smith'),(16427,'Enrique Castillo'),(16428,'Darren E. Burrows'),(16429,'Jacob Vargas'),(16430,'Robert Knott'),(16431,'Sam Elliott'),(16433,'James Gammon'),(16437,'Kiko de la Rica'),(16447,'Milo Addica'),(16448,'Will Rokos'),(16449,'Monroe Kelly'),(16450,'Sean Combs'),(16451,'Coronji Calhoun'),(16452,'Taylor Simpson'),(16453,'Gabrielle Witcher'),(16454,'Amber Rules'),(16455,'Taylor LaGrange'),(16456,'Charles Cowan Jr.'),(16457,'Anthony Bean'),(16458,'Francine Segal'),(16459,'John McConnell'),(16460,'Marcus Lyle Brown'),(16463,'Howard Goodall'),(16464,'Francis Kenny'),(16465,'Chris Blunden'),(16466,'Peter S. Larkin'),(16467,'Kevin Constant'),(16469,'Hope Hanafin'),(16470,'Brian McManus'),(16471,'Emjay Olson'),(16472,'Matt Grimes'),(16474,'Walter Scott'),(16475,'Burt Reynolds'),(16476,'Larry Drake'),(16477,'Danny Goldring'),(16478,'Johnny Galecki'),(16479,'Andrew Lawrence'),(16480,'Peter Egan'),(16483,'Sylvester Stallone'),(16484,'Joey Lauren Adams'),(16485,'William Chartoff'),(16486,'Kevin King Templeton'),(16487,'Charles Winkler'),(16489,'Clark Mathis'),(16490,'Sean Albertson'),(16491,'Diane Heery'),(16492,'Franco-Giacomo Carbone'),(16493,'Michael Atwell'),(16494,'Jesse Rosenthal'),(16495,'Gretchen Patch'),(16496,'Diane Heller'),(16497,'Lisa Jaime'),(16498,'John Hartigan'),(16499,'Henrik Fett'),(16500,'Mark De Alessandro'),(16501,'Milo Ventimiglia'),(16502,'Geraldine Hughes'),(16503,'James Francis Kelly III'),(16504,'Tony Burton'),(16505,'A. J. Benza'),(16506,'Henry G. Sanders'),(16507,'Antonio Tarver'),(16508,'Pedro Lovell'),(16509,'Ana Gerena'),(16510,'Angela Boyd'),(16511,'Louis Giansante'),(16512,'Maureen Schilling'),(16513,'John G. Avildsen'),(16514,'Robert Chartoff'),(16515,'Scott Conrad'),(16516,'Caro Jones'),(16517,'William J. Cassidy'),(16518,'Ray Molyneaux'),(16519,'Michael Westmore'),(16520,'Joe Tuley'),(16521,'Harry W. Tetrick'),(16522,'Jimmy Nickerson'),(16523,'Burgess Meredith'),(16524,'Thayer David'),(16525,'Joe Spinell'),(16526,'Jimmy Gambina'),(16527,'Bill Baldwin'),(16528,'Al Silvani'),(16529,'Jodi Letizia'),(16530,'Diana Lewis'),(16531,'George O\'Hanlon'),(16532,'Larry Carroll'),(16533,'Stanford C. Allen'),(16534,'Janice Hampton'),(16538,'Jean Burt Reilly'),(16539,'Frank E. Warner'),(16542,'John Pleshette'),(16543,'Stu Nahan'),(16544,'Ted Kotcheff'),(16545,'David Morrell'),(16546,'Michael Kozoll'),(16547,'William Sackheim'),(16548,'Joan E. Chapman'),(16549,'Kimberley Richardson'),(16550,'Salli Bailey'),(16551,'Ilona Herman'),(16552,'Fred J. Brown'),(16553,'Will Harper'),(16554,'Richard Crenna'),(16555,'Bill McKinney'),(16556,'Jack Starrett'),(16557,'Michael Talbott'),(16558,'John McLiam'),(16559,'Alf Humphreys'),(16560,'David Caruso'),(16561,'David L. Crowley'),(16562,'Don MacKay'),(16563,'Charles A. Tamburro'),(16564,'David Petersen'),(16565,'Craig Huston'),(16566,'George P. Cosmatos'),(16567,'Larry Bock'),(16568,'Gib Jaffe'),(16569,'Frank E. Jimenez'),(16570,'Rhonda Young'),(16571,'Sig Tingloff'),(16572,'Kay Cole'),(16573,'Denise Horta'),(16574,'Jay King'),(16575,'Diamond Farnsworth'),(16576,'Simone Boisseree'),(16577,'Phil Chong'),(16578,'Julia Nickson'),(16580,'George Cheung'),(16581,'Andy Wood'),(16582,'William Ghent'),(16583,'Voyo Goric'),(16584,'Dana Lee'),(16585,'Baoan Coleman'),(16586,'Steve Williams'),(16587,'Don Collins'),(16588,'Christopher Grant'),(16589,'Peter MacDonald'),(16590,'Sheldon Lettich'),(16592,'John Stanier'),(16593,'O. Nicholas Brown'),(16594,'Andrew London'),(16595,'Pier Luigi Basile'),(16596,'Richard La Motte'),(16597,'Giannetto De Rossi'),(16598,'Donna Barrett Gilbert'),(16599,'Michael Dittrick'),(16600,'Rodger Pardee'),(16601,'William Mesa'),(16604,'Sasson Gabai'),(16605,'Doudi Shoua'),(16606,'Randy Raney'),(16607,'Alon Aboutboul'),(16608,'Mahmoud Assadollahi'),(16609,'Joseph Shiloach'),(16610,'Harold Diamond'),(16611,'Matti Seri'),(16612,'Shaby Ben-Aroya'),(16613,'Ron Foreman'),(16614,'J. Dennis Washington'),(16615,'Joe D. Mitchell'),(16618,'Freddie Hice'),(16619,'Mr. T'),(16620,'Hulk Hogan'),(16623,'Don Sherman'),(16627,'Carole K. Millar'),(16628,'Martin Compston'),(16639,'David B. Cohn'),(16641,'Howard Jensen'),(16643,'Gene LeBell'),(16644,'Dolph Lundgren'),(16646,'Al Bandiero'),(16650,'Robert A. Ferretti'),(16651,'Michael N. Knue'),(16652,'William J. Durrell Jr.'),(16653,'Sugar Blymyer'),(16654,'Michael S. Glick'),(16655,'Stu Bernstein'),(16658,'Joe Digaetano'),(16659,'Bobby Bass'),(16660,'Sage Stallone'),(16661,'Tommy Morrison'),(16662,'Richard Gant'),(16663,'Delia Sheppard'),(16666,'Kevin Connolly'),(16675,'Kant Pan'),(16680,'Yan Tax'),(16681,'Winnie Gallis'),(16682,'Leendert van Nimwegen'),(16683,'James Harrison'),(16684,'Stefan Henrix'),(16685,'Harry Wiesenhaan'),(16688,'Willem de Beukelaer'),(16692,'Viv Weatherall'),(16700,'Greg Wise'),(16701,'Emma Fielding'),(16702,'Sean Harris'),(16707,'Gerhard Meixner'),(16708,'Roman Paul'),(16710,'Daniele Drobny'),(16716,'Alister Mazzotti'),(16718,'Cosma Shiva Hagen'),(16720,'Bernd Stegemann'),(16728,'Gillian Gorfil'),(16729,'Graham King'),(16730,'Darrell James Roodt'),(16731,'Paula Weinstein'),(16732,'Eduardo Serra'),(16733,'Peter Wenham'),(16734,'Olivia Bloch-Lainu00e9'),(16735,'Sharon Martin'),(16736,'Lon Bender'),(16737,'Jim Weidman'),(16738,'Romulo Adriano Jr.'),(16739,'Jeffrey A. Okun'),(16740,'Francois Grobbelaar'),(16741,'Mick \'Stuntie\' Milligan'),(16742,'Kagiso Kuypers'),(16743,'Arnold Vosloo'),(16744,'Antony Coleman'),(16745,'Melville Shavelson'),(16746,'Benu Mabhena'),(16748,'George Duning'),(16749,'Anointing Lukola'),(16751,'Frank Bracht'),(16752,'David Harewood'),(16753,'John B. Goodman'),(16754,'Basil Wallace'),(16756,'Jimi Mistry'),(16757,'Sophia Loren'),(16758,'Marius Weyers'),(16760,'Ntare Guma Mbaho Mwine '),(16762,'Mimi Gibson'),(16763,'Paul Petersen'),(16766,'John Litel'),(16767,'Aki Kaurismu00e4ki'),(16769,'Timo Salminen'),(16782,'Monica Bleibtreu'),(16783,'Hannah Herzsprung'),(16784,'Sven Pippig'),(16785,'Peter Webber'),(16786,'Thomas Harris'),(16787,'Tarak Ben Ammar'),(16789,'Aaran Thomas'),(16790,'Gaspard Ulliel'),(16791,'Helena-Lia Tachovsku00e1'),(16792,'Richard Leaf'),(16793,'Michele Wade'),(16808,'Matthias Schweighu00f6fer'),(16811,'Alexander Scheer'),(16814,'Oliver Kalkofe'),(16815,'Bastian Pastewka'),(16828,'Chris Evans'),(16829,'Todd Robinson'),(16830,'Boaz Davidson'),(16831,'Holly Wiersma'),(16832,'Tony Hawk'),(16834,'Allen Coulter'),(16836,'Ari Handel'),(16837,'Mark Steven Johnson'),(16838,'Steven Paul'),(16839,'Matt Long'),(16840,'Raquel Alessi'),(16841,'Brett Cullen'),(16842,'Stephen J. Anderson'),(16845,'Nicole Sullivan'),(16846,'Harland Williams'),(16847,'Eli Roth'),(16848,'Rob Zombie'),(16849,'Erica Steinberg'),(16850,'Rose McGowan'),(16851,'Josh Brolin'),(16852,'Karen Leigh Hopkins'),(16853,'Jessie Nelson'),(16854,'Paul Brooks'),(16855,'Mandy Moore'),(16856,'Gabriel Macht'),(16857,'Tom Everett Scott'),(16858,'Lauren Graham'),(16859,'Tammy Blanchard'),(16860,'Miranda July'),(16861,'John Hawkes'),(16863,'Todd Haynes'),(16866,'Jennifer Lopez'),(16867,'Luis Tosar'),(16868,'Josu00e9 u00c1ngel Egido'),(16869,'Nieve de Medina'),(16870,'Celso Bugallo'),(16871,'Laura Domu00ednguez'),(16872,'Aida Folch'),(16873,'Serge Riaboukine'),(16874,'Pepo Oliva'),(16876,'Julio Esteban'),(16877,'Maiki Maru00edn'),(16887,'Carsten Richter'),(16888,'Ralph Nelson'),(16892,'Alfred Ybarra'),(16893,'Victor A. Gangelin'),(16896,'James Garner'),(16897,'Sidney Poitier'),(16899,'Kathleen Crawford'),(16901,'Eva Birthistle'),(16908,'David McKay'),(16919,'Olivier Dahan'),(16921,'Clotilde Courau'),(16922,'Jean-Paul Rouve'),(16927,'Gu00e9rard Depardieu'),(16928,'Alain Goldman'),(16929,'Christopher Gunning'),(16930,'Tetsuo Nagata'),(16932,'Olivier Carbone'),(16933,'Olivier Raoux'),(16934,'Michal Prikryl'),(16935,'Geena Davis'),(16936,'Stan Shaw'),(16937,'Rex Linn'),(16938,'Renny Harlin'),(16939,'Michael Tolkin'),(16940,'Jeremy Irons'),(16941,'Fernando Bovaira'),(16943,'Joost Siedhoff'),(16957,'Fenton Bailey'),(16958,'Randy Barbato'),(16959,'Jonathan Dayton'),(16960,'Valerie Faris'),(16961,'Michael Arndt'),(16962,'Jang Dong-gun'),(16970,'Ivana Baquero'),(16971,'Maribel Verdu00fa'),(16972,'Sergi Lu00f3pez'),(16977,'Nicolu00e1s Fernu00e1ndez Luna'),(16984,'Bernat Vilaplana'),(16985,'Eugenio Caballero'),(16986,'Lala Huete'),(16987,'Rocu00edo Redondo'),(16989,'Reyes Abades'),(16990,'Cu00e9sar Abades'),(16991,'u00d3scar Abades'),(16992,'Miguel u00c1ngel Polo'),(16993,'Carlos Zamorano'),(16994,'Roland N. Thai'),(16995,'Pilar Revuelta'),(16996,'Rau00fal Monge'),(16997,'Patricia Cuevas'),(16998,'Hu00e9ctor Gil'),(16999,'u00c1lvaro Augustu00edn'),(17000,'Elena Manrique'),(17001,'Bertha Navarro'),(17002,'Vu00edctor Albarru00e1n'),(17003,'Belu00e9n Atienza'),(17004,'Javier Navarrete'),(17005,'Doug Jones'),(17006,'Ariadna Gil'),(17007,'Roger Casamajor'),(17016,'Neil Jordan'),(17017,'Pat McCabe'),(17018,'Ruth Negga'),(17019,'Laurence Kinlan'),(17022,'Antonia Campbell-Hughes'),(17024,'Owen Roe'),(17026,'Ruth McCabe'),(17029,'Nelly Borgeaud'),(17039,'Nick Offerman'),(17040,'Matthew Carey'),(17041,'Robert Wu'),(17042,'Greg Harrison'),(17043,'Benjamin Brand'),(17044,'Jake Abraham'),(17045,'Danielle Renfrew'),(17046,'Gary Winick'),(17047,'Lew Baldwin'),(17048,'Nancy Schreiber'),(17049,'Kelly Wasserman'),(17050,'Shane Valentino'),(17051,'James Franco'),(17052,'Topher Grace'),(17060,'Wladimir Tarasjanz'),(17063,'Pierre-Yves Gayraud'),(17064,'Ben Whishaw'),(17066,'Enric Arquimbau'),(17067,'Karoline Herfurth'),(17068,'Jessica Schwarz'),(17069,'Sian Thomas'),(17070,'Paul Berrondo'),(17071,'Timothy Davies'),(17072,'Sam Douglas'),(17073,'Harris Gordon'),(17074,'Sara Forestier'),(17075,'Joanna Griffiths'),(17076,'Alvaro Roque'),(17077,'Franck Lefeuvre'),(17078,'Michael Smiley'),(17079,'Richard Felix'),(17080,'Martin Moszkowicz'),(17081,'Manuel Cuotemoc Malle'),(17083,'Julio Fernu00e1ndez'),(17084,'Waldemar Pokromski'),(17085,'Silvia Tollmann'),(17086,'Roland Winke'),(17087,'Michael Moore'),(17088,'Ana Lu00f3pez Mercado'),(17089,'Luis de la Madrid'),(17093,'Eduardo Noriega'),(17094,'Federico Luppi'),(17095,'Fernando Tielve'),(17096,'u00cdu00f1igo Garcu00e9s'),(17108,'Jonathan Caouette'),(17109,'Renee Leblanc'),(17110,'Adolph Davis'),(17111,'Rosemary Davis'),(17112,'David Sanin Paz'),(17113,'Stephen Winter'),(17114,'John Cameron Mitchell'),(17115,'Douglas Crise'),(17116,'Rika Nakanishi'),(17117,'Yoshihito Akatsuka'),(17118,'Mohamed Akhzam'),(17120,'Jung Woo-sung'),(17121,'Ahn Sung-Ki'),(17123,'Darren Boyd'),(17132,'Shiru00f4 Sagisu'),(17133,'Kim Hyung-ku'),(17137,'Sandy Saffeels'),(17140,'Abigail Breslin'),(17141,'Greg Kinnear'),(17142,'Paul Dano'),(17144,'David T. Friendly'),(17146,'Tim Suhrstedt'),(17147,'Pamela Martin'),(17148,'Kalina Ivanov'),(17149,'Alan E. Muraoka'),(17150,'Melissa M. Levander'),(17154,'Syed Alwi'),(17155,'Kay Siu Lim'),(17156,'Melissa Campbell'),(17157,'Keith Chin'),(17158,'Mano Maniam'),(17159,'Shanthini Venugopal'),(17160,'Deanna Yusoff'),(17161,'Ann Firbank'),(17162,'Ed Elbert'),(17163,'Yvonne Sciu00f2'),(17164,'Roger Bondelli'),(17165,'Luciana Arrighi'),(17166,'Jenny Beavan'),(17167,'Andy Tennant'),(17168,'Anna Leonowens'),(17169,'Robert Kraft'),(17171,'Tom Perrotta'),(17172,'Albert Berger'),(17173,'Ron Yerxa'),(17175,'Antonio Calvache'),(17176,'Leo Trombetta'),(17178,'Patrick Wilson'),(17179,'Gregg Edelman'),(17180,'Sadie Goldstein'),(17181,'Ty Simpkins'),(17183,'Jackie Earle Haley'),(17184,'Phyllis Somerville'),(17185,'Helen Carey'),(17186,'Mary B. McCann'),(17187,'Trini Alvarado'),(17188,'Marsha Dietlein'),(17190,'Erik Per Sullivan'),(17191,'Sarah Buxton'),(17192,'Chadwick Brown'),(17193,'Adam Mucci'),(17194,'Chance Kelly'),(17195,'Walker Ryan'),(17196,'Erica Berg'),(17198,'Megan Dodds'),(17199,'Corey Johnson'),(17200,'Bill Smitrovich'),(17202,'Thomas Lockyer'),(17203,'Gary Whelan'),(17207,'Les Weldon'),(17208,'Danny Lerner'),(17209,'Avi Lerner'),(17210,'George Furla'),(17211,'Randall Emmett'),(17212,'Normand Corbeil'),(17214,'Catherine Wolf'),(17215,'Ray Quinlan'),(17217,'Mike Topoozian'),(17218,'Stacey Beneville'),(17219,'Dana Belcastro'),(17220,'John Kasarda'),(17221,'Susan Bode'),(17222,'Martin Lasowitz'),(17223,'Liz Bonaventura'),(17224,'Chip Williams'),(17225,'Michelle Johnson'),(17227,'Melissa Economy'),(17229,'Jeffrey Eugenides'),(17230,'Julie Costanzo'),(17231,'Chris Hanley'),(17232,'Air'),(17233,'Melissa Kent'),(17234,'James Lyons'),(17235,'Megan Less'),(17236,'A.J. Cook'),(17238,'Leslie Hayman'),(17239,'Chelse Swain'),(17240,'Anthony DeSimone'),(17241,'Lee Kagan'),(17242,'Robert Schwartzman'),(17243,'Jonathan Tucker'),(17244,'Hayden Christensen'),(17245,'Ben McKenzie'),(17246,'Phil Morrison'),(17253,'Oliver Curtis'),(17254,'Robin Sales'),(17257,'Elina Lu00f6wensohn'),(17258,'Kerry Fox'),(17259,'Ashley Artus'),(17261,'Neran Persaud'),(17263,'Tim Kring'),(17265,'Hayden Panettiere'),(17268,'Ronny Yu'),(17270,'Allison Miller'),(17271,'Brandon Routh'),(17273,'Masi Oka'),(17276,'Gerard Butler'),(17278,'Nick Gomez'),(17279,'E. Elias Merhige'),(17281,'Mike Hodges'),(17282,'Takashi Miike'),(17283,'Rupert Evans'),(17284,'Larry Fong'),(17285,'Kurt Johnstad'),(17286,'Lena Headey'),(17287,'Dominic West'),(17288,'Michael Fassbender'),(17289,'Rodrigo Santoro'),(17290,'Andrew Tiernan'),(17291,'Andrew Pleavin'),(17292,'Tom Wisdom'),(17293,'Giovani Cimmino'),(17294,'Tyler Neitzel'),(17295,'Ning Hao'),(17299,'Jie Du'),(17302,'Noah Gray-Cabey'),(17303,'Ali Larter'),(17304,'Adrian Pasdar'),(17305,'Greg Grunberg'),(17306,'Zachary Quinto'),(17310,'Jeph Loeb'),(17311,'Bryan Fuller'),(17313,'Michael Green'),(17315,'Cale Boyter'),(17328,'Rufus Sewell'),(17329,'Neil Burger'),(17331,'Bian Zhihong'),(17333,'Wang Bin'),(17337,'Nathalie Cox'),(17338,'Vanilla Ice'),(17341,'Amaury Nolasco'),(17342,'Paul Adelstein'),(17343,'Robert Knepper'),(17345,'Rockmond Dunbar'),(17346,'Robin Tunney'),(17347,'Marshall Allman'),(17348,'Muse Watson'),(17350,'Kevin Macdonald'),(17351,'Larry Bryggman'),(17352,'Marianne Jean-Baptiste'),(17353,'Matthew Marsh'),(17354,'Todd Boyce'),(17355,'Michael Paul Chan'),(17356,'Garrick Hagon'),(17357,'Andrew Grainger'),(17358,'Kim Staunton'),(17359,'Frankie Chung Chi Hang'),(17373,'Ju00fcrgen Vogel'),(17378,'Yee Chung Man'),(17379,'Cheng Long'),(17380,'Jay Chou'),(17382,'Ni Dahong'),(17384,'Li Man'),(17385,'Qin Jun-Jie'),(17386,'Laurent Cantet'),(17387,'Robin Campillo'),(17388,'Louise Portal'),(17393,'Pierre Milon'),(17394,'Denis Sperdouklis'),(17395,'Yu Cao'),(17396,'Timothy Carhart'),(17397,'Callie Khouri'),(17398,'Mimi Polk Gitlin'),(17399,'Thom Noble'),(17400,'Norris Spencer'),(17401,'Stephen Root'),(17402,'Ron Livingston'),(17403,'Mike Judge'),(17411,'Elke Werner'),(17412,'Lauren Shiohama'),(17413,'Julio Oscar Mechoso'),(17414,'Jill Talley'),(17415,'Brenda Canela'),(17416,'Chuck Loring'),(17417,'Justin Shilton'),(17418,'Gordon Thomson'),(17419,'Bryan Cranston'),(17420,'Paula Newsome'),(17421,'Wallace Langham'),(17422,'Dany Laferriu00e8re'),(17424,'Carole Scotta'),(17426,'Simon Arnal'),(17427,'Claude La Haye'),(17428,'Nicolas Becker'),(17439,'Mike Mills'),(17440,'Walter Kirn'),(17441,'Lou Taylor Pucci'),(17442,'Kelli Garner'),(17443,'Chase Offerle'),(17444,'Corey Haim'),(17445,'Janice Fischer'),(17446,'James Jeremias'),(17447,'Terry Zwigoff'),(17448,'Daniel Clowes'),(17449,'Bob Stephenson'),(17450,'Anne Carey'),(17451,'Cathy Schulman'),(17452,'Tim DeLaughter'),(17453,'Joaquu00edn Baca-Asay'),(17454,'Haines Hall'),(17455,'Angus Wall'),(17456,'Walter Cahall'),(17457,'April Napier'),(17463,'Carole Franck'),(17475,'Sabrina Ouazani'),(17476,'Peter Wight'),(17477,'Harriet Walter'),(17478,'Trevor Martin'),(17479,'Matyelok Gibbs'),(17481,'Claudine Acs'),(17482,'Andru00e9 Oumansky'),(17483,'Michael Maloney'),(17484,'Dermot Crowley'),(17485,'Oliver Platt'),(17486,'Alison Pill'),(17487,'John Gallagher Jr.'),(17488,'Alice Drummond'),(17489,'Lillias White'),(17490,'Isiah Whitlock Jr.'),(17491,'Alexis Alexanian'),(17494,'Dennis Dugan'),(17495,'Martha Plimpton'),(17497,'Romain Duris'),(17498,'Niels Arestrup'),(17499,'Jonathan Zaccau00ef'),(17510,'Ol Parker'),(17520,'Cu00e9dric Klapisch'),(17521,'Kelly Reilly'),(17522,'Cu00e9cile de France'),(17523,'Cristina Brondo'),(17524,'Federico D\'Anna'),(17525,'Barnaby Metschurat'),(17526,'Christian Pagh'),(17527,'Martine Demaret'),(17528,'Javier Coromina'),(17529,'Jacno'),(17530,'Bruno Levy'),(17531,'Dominique Colin'),(17532,'Francine Sandberg'),(17533,'Pep Armengol'),(17534,'Emmanuelle Gaborit'),(17535,'Franu00e7ois Emmanuelli'),(17536,'Anne Schotte'),(17537,'Cyril Moisson'),(17540,'Yoshio Tsuchiya'),(17543,'Fabian Busch'),(17545,'Jan-Gregor Kremp'),(17547,'Susanne Bormann'),(17556,'Pierre Lhomme'),(17561,'Yesim Zolan'),(17570,'Tom Sternitzke'),(17577,'Pierre Clu00e9menti'),(17580,'John Vernon'),(17587,'Michele Valley'),(17597,'Juan Carlos Fresnadillo'),(17598,'Enrique Chediak'),(17599,'Bernard Bellew'),(17600,'Allon Reich'),(17603,'Enrique Lu00f3pez Lavigne'),(17604,'Jeremy Renner'),(17605,'Idris Elba'),(17606,'Imogen Poots'),(17607,'Mackintosh Muggleton'),(17608,'Rowan Joffe'),(17609,'Jesu00fas Olmo'),(17610,'Kristy Carlson'),(17611,'Andrea Kenyon'),(17612,'Tamara Notcutt'),(17613,'Nicolas Lepage'),(17618,'Frankie Pain'),(17625,'Au00efssa Djabri'),(17627,'Lucile Hadzihalilovic'),(17628,'Mary Elizabeth Winstead'),(17629,'Peter Menzies Jr.'),(17630,'Michael Tadross'),(17633,'Rob Marshall'),(17634,'Martin Richards'),(17635,'Ali Farrell'),(17636,'Andrew M. Stearn'),(17637,'Taye Diggs'),(17638,'Cliff Saunders'),(17639,'Chita Rivera'),(17640,'Susan Misner'),(17641,'Denise Faye'),(17642,'Deidre Goodwin'),(17643,'Mu00fda'),(17644,'Ekaterina Chtchelkanova'),(17645,'Jonathan Whittaker'),(17646,'Sean McCann'),(17647,'Michelle Rodriguez'),(17648,'James Purefoy'),(17649,'Alexander Witt'),(17651,'Nicholas Colasanto'),(17652,'Theresa Saldana'),(17653,'Mario Gallo'),(17655,'Farhad Safinia'),(17657,'Pietro Mascagni'),(17660,'Constance Collier'),(17665,'Arthur Laurents'),(17667,'David Buttolph'),(17668,'William V. Skall'),(17670,'Emile Kuri'),(17672,'Agnes Flanagan'),(17674,'Carla Hool'),(17675,'Mayes C. Rubeo'),(17676,'Roberto Bonelli'),(17677,'Naaman Marshall'),(17678,'Rudy Youngblood'),(17679,'Dalia Hernu00e1ndez'),(17680,'Jonathan Brewer'),(17681,'Morris Birdyellowhead'),(17682,'Carlos Emilio Bu00e1ez'),(17683,'Amilcar Ramu00edrez'),(17684,'Israel Contreras'),(17685,'Israel Ru00edos'),(17686,'Espiridion Acosta Cache'),(17687,'Mayra Serbulo'),(17688,'Raoul Max Trujillo'),(17689,'Gerardo Taracena'),(17690,'Rodolfo Palacios'),(17691,'Miffy Englefield'),(17692,'Emma Pritchard'),(17693,'Sarah Parish'),(17695,'Bill Macy'),(17696,'Kathryn Hahn'),(17697,'John Krasinski'),(17698,'Nancy Meyers'),(17699,'Bruce A. Block'),(17714,'Stefan Korte'),(17732,'Hanno Huth'),(17735,'Mike White'),(17736,'Adam Pascal'),(17737,'Lucas Papaelias'),(17738,'Chris Stack'),(17739,'Joey Gaydos Jr.'),(17740,'Lucas Babin'),(17741,'Jordan-Claire Green'),(17742,'Veronica Afflerbach'),(17743,'Miranda Cosgrove'),(17744,'Kevin Alexander Clark'),(17745,'Robert Tsai'),(17746,'Maryam Hassan'),(17747,'Angelo Massagli'),(17748,'Craig Wedren'),(17749,'Rogier Stoffers'),(17750,'Adam Scher'),(17751,'Scott Aversano'),(17752,'Donna Reed'),(17753,'Lionel Barrymore'),(17754,'Todd Karns'),(17755,'Beulah Bondi'),(17756,'Samuel S. Hinds'),(17758,'Georgie Nokes'),(17759,'Frank Faylen'),(17760,'Philip Van Doren Stern'),(17761,'Joseph Walker'),(17762,'William Hornbeck'),(17763,'Jack Okey'),(17764,'Charles S. Dutton'),(17765,'Fred Murphy'),(17766,'Jill Savitt'),(17767,'Geoff Zanelli'),(17768,'Darlene Cates'),(17769,'Laura Harrington'),(17770,'Kevin Tighe'),(17772,'Jesse Bradford'),(17773,'Gabrielle Union'),(17774,'Clare Kramer'),(17775,'Nicole Bilderback'),(17778,'Charlotte Bradley'),(17779,'Eamonn Owens'),(17782,'Colm Meaney'),(17785,'Christopher Wilkinson'),(17786,'Stephen J. Rivele'),(17787,'Phyllida Law'),(17788,'Ralph Riach'),(17789,'Bill Stewart'),(17790,'Viktoria Dihen'),(17791,'Ashley Rowe'),(17792,'Alex Mackie'),(17793,'Caroline Amies'),(17794,'Paul Ghirardani'),(17795,'Lu00f3ru00e1nt Ju00e1vor'),(17797,'Michael Taylor'),(17798,'Ernst Goldschmidt'),(17799,'Marina Grasic'),(17800,'Jan Korbelin'),(17801,'Alex Lewis'),(17802,'Ronaldo Vasconcellos'),(17803,'Bruce Webb'),(17804,'Susanne Liebetrau'),(17805,'Stefanie Zweig'),(17806,'Uwe Szielasko'),(17807,'Barbara Grupp'),(17808,'Magda Habernickel'),(17809,'Einar Marell'),(17810,'Mel Kutbay'),(17811,'Tschangis Chahrokh'),(17812,'Gregory Hoblit'),(17815,'Ann Biderman'),(17816,'David Rosenbloom'),(17817,'Merab Ninidze'),(17818,'Sidede Onyulo'),(17819,'Karoline Eckertz'),(17820,'Lea Kurka'),(17821,'Gerd Heinz'),(17822,'Hildegard Schmahl'),(17823,'Maritta Horwarth'),(17824,'Regine Zimmermann'),(17825,'Shawn Levy'),(17828,'Michael Barnathan'),(17829,'Claude Paru00e9'),(17830,'Bridget McGuire'),(17831,'Grant Van Der Slagt'),(17832,'Carla Gugino'),(17834,'Jake Cherry'),(17835,'Ricky Gervais'),(17836,'Kim Raver'),(17837,'Patrick Gallagher'),(17838,'Rami Malek'),(17839,'Pierfrancesco Favino'),(17840,'Charlie Murphy'),(17841,'Mizuo Peck'),(17845,'Michael Meredith'),(17847,'Samson Mucke'),(17849,'Nathan Amondson'),(17851,'Lia Roldan'),(17852,'William Budge'),(17854,'Alexis Scott'),(17856,'Edward McGurn'),(17857,'Shaun Toub'),(17858,'Jeris Poindexter'),(17859,'Wendell Pierce'),(17862,'Alex Steyermark'),(17863,'Linda Cohen'),(17865,'Nicole DeHuff'),(17866,'Jon Abrahams'),(17867,'Tom McCarthy'),(17868,'Phyllis George'),(17869,'Greg Glienna'),(17870,'Mary Ruth Clarke'),(17871,'John Hamburg'),(17873,'Karin Wiesel'),(17874,'Fred Dalton Thompson'),(17875,'Zully Montero'),(17877,'Alan Hicks'),(17879,'John D. MacDonald'),(17880,'Wesley Strick'),(17881,'Jason Schwartzman'),(17882,'Isabelle Huppert'),(17883,'David O. Russell'),(17884,'Jeff Baena'),(17886,'Robert K. Lambert'),(17896,'Guillaume de Tonquu00e9dec'),(17897,'Gilles Gaston-Dreyfus'),(17901,'Chantal Neuwirth'),(17908,'Dorothea Holt'),(17909,'Morris Rosen'),(17914,'James Potevin'),(17915,'Leo F. Forbstein'),(17916,'Charlsie Bryant'),(17917,'Lillo Brancato'),(17918,'Francis Capra'),(17920,'Kathrine Narducci'),(17921,'Clem Caserta'),(17923,'Frank Pietrangolare'),(17928,'Joe D\'Onofrio'),(17930,'Louis Vanaria'),(17933,'Paul Perri'),(17941,'Domenick Lombardozzi'),(17948,'Reynaldo Villalobos'),(17949,'Robert Q. Lovett'),(17950,'Chris Shriver'),(17951,'Debra Schutt'),(17960,'Joe Burns'),(17962,'Julie Herrin'),(17979,'Claudette Didul'),(17988,'Wendy Hedin'),(17990,'Todd Kasow'),(17991,'Kevin Lee'),(17992,'Tod A. Maitland'),(17993,'T.J. O\'Mara'),(17994,'Dan Sable'),(17995,'Lynn Sable'),(18015,'Andrea Corr'),(18018,'Sophie Balhetchet'),(18021,'Jane Lapotaire'),(18022,'Gina McKee'),(18023,'Robert Carlyle'),(18025,'Ben Miller'),(18030,'David Evans'),(18035,'Johanna Gastdorf'),(18041,'Oded Fehr'),(18044,'Boubker Ait El Caid'),(18045,'Said Tarchani'),(18046,'Mustapha Rachidi'),(18050,'Elle Fanning'),(18052,'Nathan Gamble'),(18053,'Jamie McBride'),(18054,'Rinko Kikuchi'),(18056,'Koji Yakusho'),(18057,'Yuko Murata'),(18059,'Shigemitsu Ogi'),(18060,'Wahiba Sahmi'),(18061,'Satoshi Nikaido'),(18065,'Jimmy Nail'),(18066,'Juliet Aubrey'),(18067,'Rachael Stirling'),(18069,'Brian Gibson'),(18070,'Nicky Katt'),(18071,'Geoffrey Lewis'),(18072,'Michael Herbig'),(18073,'Sarah Radclyffe'),(18077,'Oral Norrie Ottey'),(18082,'Timothy Olyphant'),(18084,'Craig DiBona'),(18087,'Petr Hlinomaz'),(18091,'Dave Lowry'),(18093,'Scott Rathner'),(18095,'Phillip V. Caruso'),(18112,'Marco Greco'),(18123,'Maggie Morgan'),(18125,'Marjorie McCown'),(18127,'Sheila Paige'),(18133,'Ellen Ryba'),(18134,'Jill Greenberg Sands'),(18135,'Ginger Sledge'),(18143,'Matthew J. Birch'),(18153,'Birthe Wolter'),(18154,'Katharina Wackernagel'),(18156,'Don Ameche'),(18160,'Kristin Holby'),(18165,'Aaron Russo'),(18167,'Irwin Russo'),(18168,'Sam Williams'),(18170,'Wolfgang Amadeus Mozart'),(18173,'George DeTitta Jr.'),(18174,'George DeTitta Sr.'),(18177,'Andru00e9 Dussollier'),(18179,'W.D. Richter'),(18181,'David Keith'),(18182,'Olga Kurylenko'),(18183,'Michael Offei'),(18184,'Xavier Gens'),(18185,'Skip Woods'),(18186,'Pierre-Ange Le Pogam'),(18187,'Adrian Askarieh'),(18188,'Daniel Alter'),(18189,'Mark Bomback'),(18190,'Justin Cooper'),(18191,'Amanda Donohoe'),(18192,'Jason Bernard'),(18193,'Christopher Mayer'),(18194,'Paul Guay'),(18195,'Stephen Mazur'),(18197,'Anna Karina'),(18204,'Peter Kassovitz'),(18208,'Annie Miller'),(18209,'Claude Miller'),(18214,'Gitt Magrini'),(18221,'Serge Rezvani'),(18222,'Anny Nelsen'),(18231,'Omar Diop'),(18236,'Donna Hanover'),(18242,'Rita Maiden'),(18248,'Mary-Louise Parker'),(18249,'Cicely Tyson'),(18250,'Jon Avnet'),(18251,'Fannie Flagg'),(18254,'Simon Wincer'),(18257,'Robbie Greenberg'),(18260,'August Schellenberg'),(18261,'Jayne Atkinson'),(18262,'Richard Riehle'),(18263,'Caspian Tredwell-Owen'),(18264,'Steve Jablonsky'),(18265,'Mauro Fiore'),(18266,'Peter Cook'),(18267,'Larry Gelbart'),(18268,'Peter Tolan'),(18269,'Brendan Fraser'),(18270,'Orlando Jones'),(18271,'Toby Huss'),(18272,'Gabriel Casseus'),(18273,'Miriam Shor'),(18274,'Michael Haley'),(18275,'Suzanne Herrington'),(18276,'Craig Herring'),(18277,'Sandra Bullock'),(18279,'Christine Firkins'),(18280,'Brian McCardie'),(18281,'Donald Petrie'),(18282,'Karina Arroyave'),(18283,'Dato Bakhtadze'),(18284,'Loretta Devine'),(18285,'Jennifer Esposito'),(18286,'Nona Gaye'),(18287,'Ken Garito'),(18288,'Terrence Howard'),(18289,'Yomi Perry'),(18290,'Ashlyn Sanchez'),(18291,'Larenz Tate'),(18292,'Beverly Todd'),(18293,'Kathleen York'),(18296,'Art Chudabala'),(18297,'Sean Cory Cooper'),(18298,'Tony Danza'),(18299,'Ime Etuk'),(18300,'Eddie J. Fernandez'),(18303,'Howard Fong'),(18304,'Billy Gallo'),(18305,'Glenn Taranto'),(18307,'Daniel Dae Kim'),(18308,'Steve Barron'),(18311,'Joe Roth'),(18313,'Michael Rispoli'),(18315,'Monica Keena'),(18316,'Ally Walker'),(18320,'Bronwen Hughes'),(18321,'Donna Zakowska'),(18322,'Donna Roth'),(18323,'Marc Lawrence'),(18324,'Steve Zahn'),(18325,'Jeremy Northam'),(18326,'Dennis Miller'),(18327,'Wendy Gazelle'),(18328,'Ken Howard'),(18330,'Rob Cowan'),(18331,'Nancy Travis'),(18337,'Giovanna Galletti'),(18339,'Veronica Lazar'),(18342,'Todd Graff'),(18344,'Paul Schiff'),(18345,'Brenda Fricker'),(18346,'Rae\'Ven Larrymore Kelly'),(18347,'Tonea Stewart'),(18349,'Michael G. Nathanson'),(18350,'Hunt Lowry'),(18351,'Erin Gruwell'),(18352,'Patrick Dempsey'),(18353,'April Lee Hernandez'),(18354,'Bridget Moynahan'),(18355,'Alex Winter'),(18356,'Stephen Herek'),(18357,'Peter Hewitt'),(18359,'Terry Camilleri'),(18360,'Tony Steedman'),(18361,'Rod Loomis'),(18362,'Yves Drouhet'),(18363,'Roland Thu00e9not'),(18364,'George Segal'),(18365,'Sandy Dennis'),(18373,'Ralph Gerling'),(18376,'Meta Rebner'),(18378,'Herbert Ross'),(18379,'Hal W. Polaire'),(18380,'Patrick Rand'),(18382,'Chris Matheson'),(18383,'Michael S. Murphey'),(18384,'Joel Soisson'),(18386,'Amy Stock-Poynton'),(18387,'David Finfer'),(18389,'Robert W. Cort'),(18391,'Lee Marvin'),(18456,'Johnston McCulley'),(18457,'Pam Dixon'),(18458,'Jon Danniells'),(18459,'Tomas Owen'),(18460,'Adriu00e1n Alonso Barona'),(18461,'Nick Chinlund'),(18462,'Alexa Benedetti'),(18463,'Rau00fal Mu00e9ndez'),(18464,'Brandon Wood'),(18465,'Mary Crosby'),(18466,'Giovanna Zacaru00edas'),(18467,'Alberto Reyes'),(18468,'Gustavo Su00e1nchez Parra'),(18469,'Carlos Cobos'),(18471,'Anthony Anderson'),(18472,'Kevin Corrigan'),(18473,'James Badge Dale'),(18475,'Kristen Dalton'),(18476,'Thomas B. Duffy'),(18477,'Richard Hughes'),(18478,'Rodrigo de la Serna'),(18492,'Josu00e9 Rivera'),(18494,'Eric Gautier'),(18495,'Walter Rippell'),(18496,'Carlos Conti'),(18499,'Mercedes Moru00e1n'),(18500,'Phil Joanou'),(18510,'Rodrigo Lopresti'),(18511,'Tim Grimes'),(18513,'Michelle Matland'),(18514,'Asia Argento'),(18516,'Nicole Vicius'),(18517,'Kim Gordon'),(18524,'Eric Steel'),(18525,'Luc Jacquet'),(18526,'Christophe Lioud'),(18527,'Emmanuel Priou'),(18529,'Sabine Emiliani'),(18530,'Laurent Chalet'),(18532,'Ju00e9ru00f4me Maison'),(18533,'Errol Morris'),(18546,'Hans Su00f6hnker'),(18557,'Elisabeth Margoni'),(18576,'Charles Lawton Jr.'),(18586,'Moroni Olsen'),(18589,'Lee Majors'),(18596,'Taylor Hackford'),(18597,'James L. White'),(18609,'Masaru Satu00f4'),(18616,'David Morrissey'),(18617,'Colby Parker Jr.'),(18626,'Andy Warhol'),(18627,'Paul Morrissey'),(18632,'Brigid Berlin'),(18635,'Ted Post'),(18636,'Mort Abrahams'),(18638,'L.B. Abbott'),(18639,'Art Cruickshank'),(18642,'Stephen Bass'),(18643,'James Franciscus'),(18644,'David Watson'),(18645,'Paul Richards'),(18646,'Thomas Gomez'),(18647,'Bradford Dillman'),(18648,'Natalie Trundy'),(18649,'John Randolph'),(18651,'Marion Rothman'),(18652,'Howard A. Anderson III'),(18655,'Dean Vernon'),(18656,'Theodore Soderberg'),(18657,'Laurel Holloman'),(18658,'Mia Kirshner'),(18662,'Erin Daniels'),(18663,'Tom Scott'),(18664,'Marjorie Fowler'),(18665,'Alan Jaggs'),(18666,'Don Murray'),(18668,'Joyce Haber'),(18669,'J. Lee Thompson'),(18672,'John C. Horger'),(18677,'Bobby Porter'),(18678,'Richard Eastham'),(18679,'Mark Tarlov'),(18683,'David Madsen'),(18686,'Holly Hunter'),(18687,'William McNamara'),(18688,'Harry Connick Jr.'),(18689,'Susan McNamara'),(18691,'Elie Samaha'),(18695,'Adam Kane'),(18697,'Shane Stanley'),(18702,'Mark Dacascos'),(18705,'Bruce Nelson'),(18706,'Meredith Salenger'),(18708,'Courtney Gains'),(18714,'Stefanie Bruhn'),(18715,'Susanne Hartmann'),(18735,'Rock Hudson'),(18737,'Mercedes McCambridge'),(18738,'George Stevens'),(18739,'Edna Ferber'),(18744,'William C. Mellor'),(18746,'Stevie Wonder'),(18747,'Samuel D. Pollard'),(18748,'Ted Glass'),(18749,'Russell Williams II'),(18750,'Annabella Sciorra'),(18755,'Tony Walton'),(18758,'Les Bowie'),(18760,'Bee Duffell'),(18766,'Jean-Pierre Aumont'),(18767,'Jean Champion'),(18769,'David Markham'),(18775,'Marc Boyle'),(18776,'John Irving'),(18782,'Michele Platt'),(18783,'Lila Yacoub'),(18784,'Karen Schulz Gropman'),(18786,'Brenda McNally'),(18787,'Peggy Schierholz'),(18788,'Ellie Winslow'),(18789,'Barbara A. Hall'),(18792,'Delroy Lindo'),(18793,'Kieran Culkin'),(18794,'Kate Nelligan'),(18795,'Heavy D'),(18796,'Travis Champagne'),(18797,'Connor Fox'),(18798,'Montgomery John'),(18799,'Robert Penn Warren'),(18800,'George Amy'),(18802,'Ronald Reagan'),(18803,'Van Heflin'),(18811,'Laurence Badie'),(18818,'Tu00f3mas Lemarquis'),(18823,'Dagur Ku00e1ri'),(18824,'Philippe Bober'),(18827,'Skuli Fr. Malmquist'),(18828,'Thor Sigurjonsson'),(18838,'Barbara Alberti'),(18839,'Amedeo Pagani'),(18841,'Bud Spencer'),(18844,'John Madden'),(18845,'Louis de Berniu00e8res'),(18846,'Kevin Loader'),(18847,'Irene Papas'),(18848,'Gerasimos Skiadaressis'),(18849,'Aspasia Kralli'),(18850,'Mihalis Giannatos'),(18851,'Dimitris Kaberidis'),(18852,'Pietro Sarubbi'),(18853,'Viki Maragaki'),(18854,'Martin Ritt'),(18855,'Ralph S. Singleton'),(18857,'James Sabat'),(18861,'Zero Mostel'),(18862,'James Ellroy'),(18863,'Eric Darnell'),(18864,'Tom McGrath'),(18865,'Louis Leterrier'),(18866,'Jack Kirby'),(18867,'Page Buckner'),(18868,'Jerome Robbins'),(18870,'Ned Glass'),(18871,'William Bramley'),(18872,'Tucker Smith'),(18873,'Art Marcum'),(18875,'Matt Holloway'),(18876,'Larry Lieber'),(18877,'Don Heck'),(18878,'Rob Cohen'),(18879,'Louis Venosta'),(18882,'Robert Primes'),(18885,'Richard Hudolin'),(18887,'Eduardo Castro'),(18889,'Mic Rodgers'),(18892,'Goldie Hawn'),(18894,'Harry Caesar'),(18895,'Alex Bruhanski'),(18897,'Jackie Chan'),(18898,'Rob Minkoff'),(18899,'Yuen Woo-ping'),(18900,'Christina Ann Wilson'),(18903,'Sandra Nettelbeck'),(18904,'Jens Meurer'),(18905,'Peter J. Lucas'),(18906,'Neil Dickson'),(18908,'Anthony Hope'),(18910,'Dick Clement'),(18914,'Gregory Sierra'),(18915,'Catherine Schell'),(18916,'Kevin J. O\'Connor'),(18917,'Erick Avari'),(18918,'Dwayne Johnson'),(18919,'Freddie Boath'),(18920,'Patricia Velu00e1squez'),(18921,'Ray Bushey III'),(18923,'Miles Millar'),(18924,'Alfred Gough'),(18925,'Scott Zuber'),(18926,'Casey Grant'),(18936,'Martin Butzke'),(18944,'Thomas Limpinsel'),(18946,'Tanja Schleiff'),(18952,'Eric Singer'),(18953,'Richard Suckle'),(18956,'Norman Golightly'),(18964,'Richard Mu00fcnch'),(18968,'Heinz Weiss'),(18972,'Danny Masterson'),(18973,'Mila Kunis'),(18974,'Laura Prepon'),(18975,'Wilmer Valderrama'),(18976,'Ashton Kutcher'),(18977,'Ed O\'Neill'),(18979,'Christina Applegate'),(18980,'Katey Sagal'),(18982,'Ted McGinley'),(18983,'Peter Thoms'),(18984,'J. Patrick Duffner'),(18986,'Anthony Pratt'),(18988,'Arden Gantly'),(18989,'Jonathan McKinstry'),(18991,'Kieran Horgan'),(18992,'Aidan Quinn'),(18993,'Stuart Graham'),(18995,'Michael Dwyer'),(18996,'Joe Simon'),(18997,'Bryce Dallas Howard'),(18998,'Rosemary Harris'),(18999,'J.K. Simmons'),(19000,'Wayne Kramer'),(19002,'James Whitaker'),(19003,'Heidi Ewing'),(19006,'Rachel Grady'),(19011,'George W. Bush'),(19012,'Davis Guggenheim'),(19013,'Al Gore'),(19014,'Scott Z. Burns'),(19015,'Laurie Lennard'),(19016,'Michael Brook'),(19018,'Dan Swietlik'),(19019,'Robert Riskin'),(19020,'Walter Huston'),(19023,'Stephen Mendillo'),(19024,'Javier Gutiu00e9rrez'),(19026,'Paul Hough'),(19034,'Evangeline Lilly'),(19044,'Tim Silano'),(19045,'Paul Sylbert'),(19046,'Daniel Loren May'),(19048,'Sakae Kimura'),(19049,'Masayuki Yui'),(19050,'Jean-Claude Forest'),(19051,'Martha De Laurentiis'),(19057,'Willy Holt'),(19058,'Catherine Leterrier'),(19062,'Michel Duchaussoy'),(19069,'Claude Chabrol'),(19070,'Corinne Jorry'),(19074,'Stanislas Carru00e9 de Malberg'),(19075,'Philippe Morier-Genoud'),(19080,'Arnaud Henriet'),(19081,'Luc Etienne'),(19097,'Doro Merande'),(19102,'Fred J. Koenekamp'),(19104,'Dann Cahn'),(19110,'Virginia Gregg'),(19111,'John Anderson'),(19112,'Pascal Caucheteux'),(19113,'Stu00e9phane Fontaine'),(19115,'Linh u0110an Phu1ea1m'),(19117,'Emmanuelle Devos'),(19118,'Anton Yakovlev'),(19119,'Mu00e9lanie Laurent'),(19123,'Susanne Lothar'),(19125,'Francis Haines'),(19127,'Wen Yann Shih'),(19129,'David M. Walsh'),(19131,'Marsha Mason'),(19136,'Sal Viscuso'),(19137,'Lou Ferrigno'),(19138,'Bill Bixby'),(19142,'Kenneth Johnson'),(19143,'Jason Priestley'),(19144,'Shannen Doherty'),(19146,'Ian Ziering'),(19148,'Brian Austin Green'),(19149,'Tori Spelling'),(19151,'James Eckhouse'),(19152,'Dylan Baker'),(19153,'Cliff Robertson'),(19154,'Daniel Gillies'),(19155,'Christopher Young'),(19156,'Kathy Driscoll'),(19157,'Leslie A. Pope'),(19158,'Katina Le Kerr'),(19159,'Thomas Haden Church'),(19161,'Sandrine Bonnaire'),(19162,'Jean-Pierre Cassel'),(19163,'Virginie Ledoyen'),(19165,'Dominique Frot'),(19167,'Matthieu Chabrol'),(19169,'Monique Fardoulis'),(19176,'Wilt Henderson'),(19178,'Dick Shawn'),(19183,'Cliff Gorman'),(19184,'Mark-Paul Gosselaar'),(19185,'Mario Lu00f3pez'),(19186,'Dustin Diamond'),(19187,'Tiffani Thiessen'),(19189,'Elizabeth Berkley'),(19190,'Dennis Haskins'),(19195,'Alex Frost'),(19197,'John Robinson'),(19198,'Elias McConnell'),(19207,'Timothy Bottoms'),(19208,'Matt Malloy'),(19210,'James Van Der Beek'),(19211,'Ian Somerhalder'),(19212,'Russell Sams'),(19216,'Jean Peters'),(19217,'Frank Silvera'),(19218,'Joseph Granby'),(19222,'Rachel True'),(19223,'Nathan Bexton'),(19225,'Christian Campbell'),(19227,'Brad Beyer'),(19228,'Jim Fall'),(19230,'Peter Schneider'),(19232,'Gitta Schweighu00f6fer'),(19236,'Michael Schorr'),(19239,'Judith Ivey'),(19240,'Andrew Neiderman'),(19241,'Jonathan Lemkin'),(19242,'Tony Gilroy'),(19244,'Michael Winner'),(19252,'Julie Hughes'),(19253,'Barry Moss'),(19254,'John Dapper'),(19257,'Janet Jones'),(19260,'Terrence Mann'),(19262,'Alyson Reed'),(19265,'Khandi Alexander'),(19266,'Larry Cohen'),(19271,'Anthony Russo'),(19272,'Joe Russo'),(19273,'Michael LeSieur'),(19274,'Seth Rogen'),(19275,'Amanda Detmer'),(19276,'Ralph Ting'),(19277,'Todd Stashwick'),(19278,'Bill Hader'),(19279,'Lance Armstrong'),(19280,'Suzanne Ford'),(19281,'Claudia Choi'),(19282,'Scott Stuber'),(19283,'Peter B. Ellis'),(19284,'Barry Robison'),(19285,'Karen Patch'),(19286,'Aaron Kaplan'),(19288,'Sean Perrone'),(19290,'Paul Cameron'),(19291,'Daniel T. Dorrance'),(19292,'Adam Sandler'),(19293,'Lusia Strus'),(19294,'George Wing'),(19295,'Matthew Justice'),(19299,'Eamonn Walker'),(19300,'Sammi Rotibi'),(19301,'Yevgeni Lazarev'),(19302,'Jason Mewes'),(19303,'Kevin Smith'),(19304,'John Schlesinger'),(19305,'Tom Ropelewski'),(19306,'Malcolm Stumpf'),(19307,'Suzanne Krull'),(19308,'Linne Radmin'),(19309,'Jan K. Bergstrom'),(19310,'Ruth Myers'),(19311,'Stephen Chbosky'),(19312,'Jonathan Larson'),(19313,'Allan S. Gordon'),(19314,'Geoffrey Hansen'),(19315,'Kevin McCollum'),(19316,'Jeffrey Seller'),(19317,'Tom Sherak'),(19318,'Doug McKean'),(19319,'Jamie Muhoberac'),(19320,'Tim Pierce'),(19321,'Mark Warren'),(19326,'John Paxton'),(19328,'Dick Powell'),(19331,'Donald Douglas'),(19333,'Dick Richards'),(19334,'Walter Thompson'),(19335,'Sylvia Miles'),(19338,'Sylvia Marriott'),(19346,'Niels Arden Oplev'),(19349,'Su00f8ren B. Ebbe'),(19352,'Jacob Groth'),(19353,'Peter Garde'),(19360,'Lu00e9a Drucker'),(19375,'Franu00e7ois Guillaume'),(19379,'Yannick Kergoat'),(19384,'Tony Todd'),(19392,'Jesse L. Martin'),(19393,'Wilson Jermaine Heredia'),(19394,'Idina Menzel'),(19400,'Roy Roberts'),(19415,'Jayne Meadows'),(19422,'Gabriel Katzka'),(19423,'Sidney Beckerman'),(19434,'Sharon Farrell'),(19435,'H.M. Wynant'),(19439,'Henry Gibson'),(19444,'Jack Knight'),(19447,'Pancho Cu00f3rdova'),(19448,'Enrique Lucero'),(19449,'Tony Mark'),(19450,'Bob Rafelson'),(19451,'Robert B. Parker'),(19452,'Steven Cohen'),(19453,'Tom Bower'),(19454,'Michael Laskin'),(19456,'Nia Peeples'),(19459,'Nelson Gidding'),(19460,'Saul Bass'),(19463,'Harry Andrews'),(19464,'Anastas N. Michos'),(19466,'Maria Nay'),(19467,'Adam Boome'),(19468,'Gerry Becker'),(19469,'Leslie Lyles'),(19470,'Greyson Erik Pendry'),(19471,'George Shapiro'),(19474,'Lamar Boren'),(19484,'Burr DeBenning'),(19485,'Tom Hallick'),(19487,'Jay Hernandez'),(19488,'Dorothy Lyman'),(19489,'Peter McRobbie'),(19490,'Wass Stevens'),(19491,'Stoney Westmoreland'),(19492,'Viola Davis'),(19493,'Lola Cook'),(19494,'Anthony Piccininni'),(19495,'Alexa Gerasimovich'),(19496,'Morgan Flynn'),(19497,'Armando Riesco'),(19498,'Jon Bernthal'),(19499,'Kevin Munroe'),(19500,'Thomas K. Gray'),(19501,'Galen Walker'),(19502,'Kevin Eastman'),(19503,'Peter Laird'),(19505,'Mitchell Whitfield'),(19506,'James Arnold Taylor'),(19507,'Mikey Kelley'),(19508,'Nolan North'),(19511,'Larry Pine'),(19513,'Wally Wingert'),(19517,'Ernst W. Kalinke'),(19534,'Gina Lollobrigida'),(19535,'John Rogers'),(19536,'Josh Duhamel'),(19537,'Megan Fox'),(19538,'Rachael Taylor'),(19540,'Peter Cullen'),(19541,'Mark Ryan'),(19545,'Jack Angel'),(19546,'Michael Bell'),(19547,'Gregg Berger'),(19548,'Susan Blu'),(19550,'Melvyn Douglas'),(19551,'Gregory Gaye'),(19552,'Rolfe Sedan'),(19567,'Terry Leonard'),(19574,'Robert Freitag'),(19576,'Richard Thomas'),(19578,'Alexis Arquette'),(19587,'Rumi Hiiragi'),(19588,'Miyu Irino'),(19589,'Mari Natsuki'),(19590,'Takashi Naito'),(19591,'Yasuko Sawaguchi'),(19592,'Tatsuya Gashu00fbin'),(19594,'Yumi Tamai'),(19595,'Yasuyoshi Tokuma'),(19596,'Atsushi Okui'),(19597,'Norobu Yoshida'),(19598,'Yu00f4ji Takeshige'),(19599,'Kaori Fujii'),(19600,'Naoya Furukawa'),(19601,'Makiko Futaki'),(19602,'Hideyoshi Hamatsu'),(19603,'Takeshi Imamura'),(19604,'Kuniyuki Ishii'),(19610,'Michael Crawford'),(19613,'Mike Marshall'),(19617,'Lon Satton'),(19619,'Thierry Potok'),(19638,'Jeroen Beker'),(19654,'Michael Chiklis'),(19655,'James D\'Arcy'),(19656,'Sebastian Gutierrez'),(19657,'Carsten H.W. Lorenz'),(19658,'Greg Shapiro'),(19659,'Nathan Barr'),(19660,'Lisa Bromwell'),(19661,'Robb Sullivan'),(19662,'Kelly Wagner'),(19663,'Austin Gorg'),(19664,'Samaire Armstrong'),(19665,'John Boorman'),(19666,'Alex Lasker'),(19675,'Enzo Rossi'),(19678,'Ron Davis'),(19679,'Mary Gail Artz'),(19680,'Barbara Cohen'),(19684,'Bille August'),(19685,'Bob Graham'),(19686,'James Gregory'),(19687,'Greg Latter'),(19688,'Shiloh Henderson'),(19689,'Paul Schnee'),(19690,'Jonathan Hely-Hutchinson'),(19691,'Tom Hannam'),(19692,'Diana Cilliers'),(19693,'Guy Travers'),(19694,'Ilann Girard'),(19695,'Andro Steinborn'),(19696,'Jean-Luc Van Damme'),(19697,'David Wicht'),(19704,'Nick Bartlett'),(19707,'Charles Band'),(19711,'Richard Band'),(19713,'C. Courtney Joyner'),(19717,'Keith Coulouris'),(19721,'Laila Nabulsi'),(19722,'Stephen Nemeth'),(19724,'Hunter S. Thompson'),(19725,'Tony Grisoni'),(19726,'Ray Cooper'),(19727,'Nicola Pecorini'),(19728,'Mark Harmon'),(19729,'Katharine Houghton'),(19731,'Zinedine Zidane'),(19736,'Barry Beckerman'),(19737,'Brad Savage'),(19739,'Al Freeman, Jr.'),(19740,'Kate Vernon'),(19741,'Alex Haley'),(19742,'Malcolm X'),(19743,'Arnold Perl'),(19745,'Thomas G. Smith'),(19746,'Peter Bernstein'),(19747,'John Nutt'),(19751,'Daniel Frishman'),(19752,'Guy Boyd'),(19753,'Debbie Lee Carrington'),(19754,'Tony Cox'),(19755,'Kevin Thompson'),(19756,'Margarita Fernu00e1ndez'),(19758,'Frank G. DeMarco'),(19759,'Brian A. Kates'),(19760,'Jay Brannan'),(19761,'Lindsay Beamish'),(19762,'PJ DeBoy'),(19763,'Raphael Barker'),(19764,'Paul Dawson'),(19765,'Peter Stickles'),(19766,'Sook-Yin Lee'),(19767,'Snoop Dogg'),(19769,'David Ayer'),(19770,'Callum Greene'),(19771,'Christine Raspillu00e8re'),(19772,'Paul Rassam'),(19773,'Vu00e9ronique Melery'),(19774,'Mary Nighy'),(19775,'James Lance'),(19776,'Jean-Christophe Bouvet'),(19777,'Florrie Betts'),(19781,'Lurene Tuttle'),(19783,'Marge Redmond'),(19789,'Marcel Ophu00fcls'),(19797,'Marlee Matlin'),(19800,'Richard Marquand'),(19801,'Rick McCallum'),(19802,'Jonathan Hales'),(19803,'Leonardo Sbaraglia'),(19807,'Albert Martinez Martin'),(19809,'Stephen Margolis'),(19817,'James Muu00f1oz'),(19824,'Andrea Ros'),(19826,'Joel Joan'),(19836,'Mara Collazo'),(19838,'Marg Helgenberger'),(19839,'David Paymer'),(19840,'Alejandro Amenu00e1bar'),(19841,'Mateo Gil'),(19842,'Josu00e9 Luis Cuerda'),(19850,'Catherine Hardwicke'),(19851,'Armand Schultz'),(19852,'Robin Swicord'),(19853,'Arthur Golden'),(19855,'Suzuka Ohgo'),(19856,'Navia Nguyen'),(19857,'Kaori Momoi'),(19858,'Zoe Weizenbaum'),(19859,'Samantha Futerman'),(19860,'Karl Yune'),(19861,'Elizabeth Sung'),(19862,'Lucy Fisher'),(19863,'Patrick M. Sullivan Jr.'),(19866,'Guillaume Canet'),(19867,'Staffan Kihlbom'),(19868,'Paterson Joseph'),(19869,'Peter Youngblood Hills'),(19870,'Jerry Swindall'),(19871,'Lars Arentz-Hansen'),(19872,'Andrew McAlpine'),(19873,'Magnus Lindgren'),(19874,'Daniel York'),(19875,'Daniel Caltagirone'),(19876,'Zelda Tinska'),(19882,'Lilja Loeffler'),(19888,'Gu00e9raldine Pailhas'),(19889,'Bob Dishy'),(19893,'Warren Lewis'),(19895,'Vinzenz Kiefer'),(19897,'Thomas Olu00e1h'),(19898,'Vladimir Kulich'),(19899,'Dennis Storhu00f8i'),(19900,'Daniel Southern'),(19901,'Clive Russell'),(19902,'Mischa Hausserman'),(19903,'Richard Bremmer'),(19904,'Emiliano Otegui'),(19905,'Emilio Ardura'),(19907,'Belu00e9n Rueda'),(19908,'Joan Dalmau'),(19909,'Josep Maria Pou'),(19911,'Anneke Kim Sarnau'),(19913,'Andreas Gu00fcnther'),(19919,'Heta Mantscheff'),(19923,'Hugh Bonneville'),(19931,'Caroline Benjo'),(19936,'Michu00e8le Moretti'),(19942,'Ronit Elkabetz'),(19948,'Daniel Iron'),(19949,'Simone Urdl'),(19950,'Jennifer Weiss'),(19952,'Luc Montpellier'),(19953,'David Wharnsby'),(19954,'Benno Tutter'),(19955,'Debra Hanson'),(19957,'Wendy Crewson'),(19958,'Alberta Watson'),(19961,'Nina Dobrev'),(19968,'Royal Dano'),(19969,'Pat O\'Connor'),(19970,'Kurt Voelker'),(19971,'Shay Cunliffe'),(19972,'Deborah Stoff'),(19973,'Wendy Wanderman'),(19974,'Greg Germann'),(19975,'Michael Rosenbaum'),(19976,'Robert Joy'),(19977,'Liam Aiken'),(19978,'Jason Kravits'),(19979,'June Carryl'),(19980,'Kelvin Han Yee'),(19981,'David Fine'),(19982,'Diane Amos'),(19986,'Christophe Beaucarne'),(19993,'Leo Davis'),(19995,'Marianne Faithfull'),(19996,'Kevin Bishop'),(19998,'Dorka Gryllus'),(20002,'Flip Webster'),(20005,'Moira Kelly'),(20006,'Christopher Reeve'),(20007,'Jerry Siegel'),(20008,'Joe Shuster'),(20009,'Ilya Salkind'),(20010,'Pierre Spengler'),(20011,'Margot Kidder'),(20014,'Sebastian Soukup'),(20019,'Lee Daniels'),(20021,'Wilfried Hochholdinger'),(20029,'Nicolas Mauvernay'),(20030,'Jacques Perrin'),(20032,'Luc Drion'),(20033,'Ebrahim Ghafori'),(20040,'Nigel Willoughby'),(20047,'Cara Buono'),(20048,'Paul Kersey'),(20049,'David Tennant'),(20051,'Alakina Mann'),(20052,'James Bentley'),(20053,'Eric Sykes'),(20054,'Elaine Cassidy'),(20055,'Renu00e9e Asherson'),(20056,'Keith Allen'),(20057,'Michelle Fairley'),(20058,'Alexander Vince'),(20059,'Gordon Reid'),(20060,'Ricardo Lu00f3pez'),(20061,'Marc Norman'),(20062,'David Parfitt'),(20063,'Donna Gigliotti'),(20064,'Julie Goldstein'),(20065,'Richard Greatrex'),(20066,'David Gamble'),(20069,'Steven Beard'),(20070,'Jim Carter'),(20071,'Sebastian Jungwirth'),(20072,'Craig Stecyk'),(20075,'Philippe Sarde'),(20076,'Michel Amathieu'),(20078,'Su00e9bastien Monteux-Halleur'),(20079,'Esther Walz'),(20082,'Michel Vuillermoz'),(20088,'Jolene Purdy'),(20089,'Jena Malone'),(20090,'David Moreland'),(20091,'Kristina Malota'),(20092,'Marina Malota'),(20093,'Scotty Leavenworth'),(20094,'Gary Lundy'),(20095,'Alex Greenwald'),(20099,'Tommy Rettig'),(20105,'Denys N. Coop'),(20107,'Simon Holland'),(20108,'Paul Rabiger'),(20109,'Robin Gregory'),(20110,'Don Sharpe'),(20111,'Terry Sharratt'),(20113,'Claude Dauphin'),(20115,'Amidou'),(20117,'Debra Berger'),(20121,'Leon Uris'),(20124,'Gene Tierney'),(20128,'Clive Revill'),(20132,'Jon Foster'),(20133,'Tod Williams'),(20135,'John Palmer'),(20140,'David Hildyard'),(20141,'Deborah Kerr'),(20144,'Mona Freeman'),(20153,'George Gershwin'),(20156,'Sammy Davis, Jr.'),(20158,'Diahann Carroll'),(20162,'Natasha Richardson'),(20164,'Robin Mullins'),(20169,'Graham Place'),(20170,'Linda Lowy'),(20172,'Susan Lyall'),(20173,'Don McKellar'),(20174,'Oscar Hsu'),(20175,'Robert A. Silverman'),(20176,'Kris Lemche'),(20177,'Kirsten Johnson'),(20178,'James Kirchner'),(20179,'Balu00e1zs Kou00f3s'),(20180,'Stephanie Belding'),(20181,'Andru00e1s Hu00e1mori'),(20182,'Robert Lantos'),(20183,'Mark Spragg'),(20184,'Virginia Korus Spragg'),(20185,'Becca Gardner'),(20186,'Damian Lewis'),(20187,'Camryn Manheim'),(20188,'Lynda Boyd'),(20189,'Amy Smart'),(20190,'Efren Ramirez'),(20191,'Jose Pablo Cantillo'),(20192,'Brian Taylor'),(20193,'Mark Neveldine'),(20194,'Fernando Hernandez'),(20195,'Lorne Brass'),(20196,'Boyd Banks'),(20204,'James Vanderbilt'),(20205,'Robert Graysmith'),(20206,'Mike Medavoy'),(20207,'Arnold Messer'),(20208,'Brad Fischer'),(20209,'Donald Graham Burt'),(20210,'Ed Setrakian'),(20211,'John Getz'),(20212,'Dermot Mulroney'),(20213,'Nicholas Kazan'),(20214,'Doug Kraner'),(20215,'Billy Campbell'),(20216,'Tessa Allen'),(20217,'Janet Carroll'),(20218,'Eric Bress'),(20219,'J. Mackye Gruber'),(20220,'Elden Henson'),(20221,'Nathaniel DeVeaux'),(20222,'A.J. Dix'),(20223,'J.C. Spink'),(20224,'Anthony Rhulen'),(20225,'Michael Suby'),(20226,'Kirk Moses'),(20227,'Felix Andrew'),(20228,'Goro Koyama'),(20229,'Andy Malcolm'),(20230,'Arvo Pu00e4rt'),(20231,'Enrique Iglesias'),(20232,'Bodil Kju00e6rhauge'),(20234,'Fanny Ardant'),(20235,'Firmine Richard'),(20236,'Robert Thomas'),(20237,'Beeban Kidron'),(20239,'Vincent Pu00e9rez'),(20240,'Zou00eb Wanamaker'),(20241,'Tony Haygarth'),(20243,'Roger Ashton-Griffiths'),(20244,'William Scott-Masson'),(20246,'Dave Hill'),(20247,'Charles Steel'),(20249,'Mark Verheiden'),(20250,'Adam Boyd'),(20251,'Mike Estes'),(20252,'Janelle Farber'),(20253,'Dani Kelly'),(20255,'Nicole Fischnaller'),(20258,'Thure Lindhardt'),(20259,'Jana Pallaske'),(20262,'Tino Mewes'),(20268,'Oliver Bokelberg'),(20273,'Arno Neubauer'),(20274,'Patrick Smith Kelly'),(20275,'Sarita Choudhury'),(20276,'Constance Towers'),(20277,'David Suchet'),(20278,'Jessie Kamm'),(20279,'Fiona O\'Shaughnessy'),(20280,'Patrick Carroll'),(20281,'Peter Williamson'),(20282,'John Kavanagh'),(20283,'Dwight Ewell'),(20284,'Gary Stretch'),(20285,'Fu00e9odor Atkine'),(20286,'Toby Kebbell'),(20287,'Laird Macintosh'),(20288,'Francisco Bosch'),(20289,'Neil Jackson'),(20290,'Garrett Lombard'),(20291,'Chris Aberdein'),(20292,'Jan Roelfs'),(20293,'Christopher Kyle'),(20294,'Laeta Kalogridis'),(20295,'Moritz Borman'),(20296,'Yann Hervu00e9'),(20297,'Thomas J. Nordberg'),(20298,'Gladys Joujou'),(20299,'Alex Marquez'),(20300,'Eileen Atkins'),(20301,'Justin Kirk'),(20304,'Jeremy Crutchley'),(20305,'Christopher Roberts'),(20307,'Joachim Ru00f8nning'),(20308,'Espen Sandberg'),(20309,'Dwight Yoakam'),(20310,'Takashi Shimizu'),(20316,'Takashige Ichise'),(20318,'Myra Lucretia Taylor'),(20327,'Taro Suwa'),(20329,'Takako Fuji'),(20330,'Yuriko Ishida'),(20331,'Yu016bko Tanaka'),(20332,'Kaoru Kobayashi'),(20333,'Masahiko Nishimura'),(20334,'Tsunehiko Kamiju00f4'),(20335,'Tetsu Watanabe'),(20336,'Mitsuru Satu00f4'),(20337,'Akira Nagoya'),(20338,'Akihiro Miwa'),(20339,'Mitsuko Mori'),(20340,'Hisaya Morishige'),(20354,'Amber Tamblyn'),(20355,'Stephen Susco'),(20357,'Doug Draizin'),(20359,'Kimberly A. Tillman'),(20361,'John Bennett Perry'),(20362,'Jill Clayburgh'),(20363,'Suzanne Snyder'),(20364,'George Brent'),(20366,'Fay Bainter'),(20368,'Henry O\'Neill'),(20369,'Spring Byington'),(20370,'Irving Pichel'),(20371,'Robert Buckner'),(20372,'Edison Chen'),(20373,'Arielle Kebbel'),(20374,'Teresa Palmer'),(20375,'Misako Uno'),(20376,'Sarah Roemer'),(20377,'Matthew Knight'),(20378,'Ohga Tanaka'),(20379,'Christopher Cousins'),(20380,'Paul Jarrett'),(20381,'Jenna Dewan'),(20382,'Jeff Betancourt'),(20383,'Iwao Saitu00f4'),(20384,'Tomoko Kotakemori'),(20385,'Tatsuo Ozeki'),(20386,'Jason Behr'),(20387,'Clea DuVall'),(20388,'KaDee Strickland'),(20389,'Rosa Blasi'),(20391,'Jane Wyman'),(20392,'Michael Wilding'),(20393,'Richard Todd'),(20400,'Tim Story'),(20401,'Don Payne'),(20402,'Julian McMahon'),(20403,'Beau Garrett'),(20404,'Vanessa Lachey'),(20405,'Brian Posehn'),(20406,'Larry Blanford'),(20412,'Michael Anderson'),(20420,'Dirk Sanders'),(20422,'John le Carru00e9'),(20423,'Simon Channing Williams'),(20424,'Odile Dicks-Mireaux'),(20425,'Donald Sumpter'),(20426,'Daniele Harford'),(20427,'Bernard Otieno Oduor'),(20428,'Damaris Itenyo Agweyu'),(20429,'Keith Pearson'),(20442,'Roschdy Zem'),(20456,'Mariane Pearl'),(20457,'John Orloff'),(20458,'Dede Gardner'),(20459,'Harry Escott'),(20460,'Molly Nyman'),(20461,'Peter Christelis'),(20462,'Wendy Brazington'),(20463,'Mark Digby'),(20464,'Christopher Stull'),(20465,'Charlotte Walter'),(20466,'Amy Bell'),(20467,'Harvesp Viraf Chiniwala'),(20468,'Azfar Ali'),(20469,'Jillian Armenante'),(20470,'Zachary Coffin'),(20471,'Demetri Goritsas'),(20472,'Norah Jones'),(20473,'Stu00e9phane Kooshmanian'),(20474,'Jean-Louis Piel'),(20475,'Jacky Pang Yee Wah'),(20476,'Wai-Chung Chan'),(20480,'Taylor Momsen'),(20483,'John Pearson-Denning'),(20487,'Neil Kopp'),(20488,'Nathanau00ebl Karmitz'),(20489,'Steve Joyner'),(20490,'Nina Proctor'),(20491,'Vanessa Ferlito'),(20492,'Jordan Ladd'),(20493,'Sydney Tamiia Poitier'),(20494,'Zou00eb Bell'),(20495,'Jeff Fahey'),(20496,'Jason Douglas'),(20497,'Fergie'),(20498,'Carlos Gallardo'),(20499,'Rebel Rodriguez'),(20503,'Scott Mosier'),(20504,'Carlo Rambaldi'),(20505,'Patrick Massett'),(20506,'John Zinman'),(20507,'Sonja Klaus'),(20508,'Iain Glen'),(20509,'Robert Phillips'),(20510,'Richard Johnson'),(20511,'Chris Barrie'),(20512,'Rachel Appleton'),(20513,'Jeremy H. Smith'),(20514,'Michael Levy'),(20515,'Jib Polhemus'),(20516,'Dean Georgaris'),(20519,'Simon Yam'),(20520,'Fabiano Martell'),(20522,'Robert Cavanah'),(20523,'Ronan Vibert'),(20524,'Jean-Marie Dreujou'),(20525,'Pierre Queffelean'),(20526,'Mau00ef Anh Le'),(20527,'Oanh Nguyen'),(20528,'Jaran \'See Tao\' Petcharoen'),(20529,'Stu00e9phanie Lagarde'),(20530,'Philippine Leroy-Beaulieu'),(20531,'Vincent Scarito'),(20532,'Moussa Maaskri'),(20533,'Heinrich Gotho'),(20534,'Margarete Lanner'),(20535,'Fritz Alberti'),(20536,'Aenne Willkomm'),(20537,'Graham Leader'),(20538,'Frank Reynolds'),(20539,'Belinda Monte'),(20540,'Randi Hiller'),(20541,'Josh Outerbridge'),(20542,'William Wise'),(20543,'Frank T. Wells'),(20544,'W. Clapham Murray'),(20545,'Justin Ashforth'),(20548,'Ruy Guerra'),(20561,'James Gray'),(20562,'Antoni Corone'),(20563,'Alex Veadov'),(20564,'Tony Musante'),(20566,'Katie Condidorio'),(20567,'Marc Butan'),(20568,'John Axelrad'),(20569,'Ford Wheeler'),(20570,'Catherine Davis'),(20580,'Joe Manganiello'),(20581,'Jack Betts'),(20582,'Michael Papajohn'),(20583,'Shan Omar Huey'),(20584,'Lucy Lawless'),(20585,'Karen O\'Hara'),(20586,'Stella Vaccaro'),(20588,'Vincenzo Amato'),(20593,'Guillaume Schiffman'),(20599,'John Van Druten'),(20600,'Daniel Taradash'),(20608,'Hannes Hubach'),(20615,'Adnan Maral'),(20623,'Wendy Makkena'),(20624,'Mary Wickes'),(20625,'Robert Miranda'),(20626,'Joseph Maher'),(20628,'Michael Durrell'),(20629,'George Miller'),(20638,'Han Sanping'),(20639,'Ernst Etchie Stroh'),(20640,'Chen Kaige'),(20641,'Dong-ming Shi'),(20642,'Buting Yang'),(20643,'Lorne Orleans'),(20644,'Aasif Mandvi'),(20645,'Mageina Tovah'),(20646,'Gabriele Muccino'),(20647,'Steve Conrad'),(20648,'Andrea Guerra'),(20649,'Hughes Winborne'),(20652,'Cecilia Cheung'),(20654,'Liu Ye'),(20655,'Hong Chen'),(20656,'Cheng Qian'),(20657,'Cristian Mungiu'),(20659,'Marjane Satrapi'),(20667,'Sami Bouajila'),(20672,'Antoine Chappey'),(20674,'Thomas Langmann'),(20675,'Dioucounda Koma'),(20676,'Philippe Beglia'),(20682,'Armand Amar'),(20683,'Patrick Blossier'),(20687,'Steve Barancik'),(20691,'Maxime Ru00e9millard'),(20692,'Jeff Beal'),(20693,'Juan Ruiz Anchu00eda'),(20694,'William S. Scharf'),(20696,'Jonathan Higgins'),(20698,'Laura Vasiliu'),(20699,'Anamaria Marinca'),(20700,'Dana Bunescu'),(20701,'Oleg Mutu'),(20709,'Vincent Paronnaud'),(20710,'Chiara Mastroianni'),(20711,'Xavier Rigault'),(20712,'Marc-Antoine Robert'),(20713,'Olivier Bernet'),(20718,'Claude Berri'),(20719,'Lu00e9onard Glowinski'),(20720,'Jim Lemley'),(20721,'Jean-Dominique Bauby'),(20722,'Olivier Bu00e9riot'),(20725,'Olatz Lu00f3pez Garmendia'),(20738,'Song Kang-ho'),(20739,'Adam Shankman'),(20740,'Pamela Falk'),(20741,'Michael Ellis'),(20742,'Jennifer Gibgot'),(20743,'Gigi Pritzker'),(20744,'Mervyn Warren'),(20745,'Pamela Withers'),(20746,'Justin Chambers'),(20747,'Joanna Gleason'),(20748,'Lou Myers'),(20749,'Charles Kimbrough'),(20750,'Judy Greer'),(20751,'Bridgette Wilson'),(20752,'Alex Rocco'),(20753,'Fred Willard'),(20754,'Philip Pavel'),(20755,'Natalia Jaroszyk'),(20756,'Susan Mosher'),(20757,'Chuck Pfarrer'),(20758,'Phil Dagort'),(20759,'Yancy Butler'),(20760,'Willie C. Carpenter'),(20761,'Sven-Ole Thorsen'),(20765,'Lenore Banks'),(20766,'Richard E. Grant'),(20767,'Samantha Mathis'),(20768,'Cherie Lunghi'),(20769,'Imogen Stubbs'),(20771,'Kate Hardie'),(20773,'Tim Sullivan'),(20774,'Janette Day'),(20775,'Simone Reynolds'),(20777,'Humphrey Bangham'),(20779,'Gary Sinyor'),(20782,'Jeffrey T. Barabe'),(20784,'Lloyd Segan'),(20786,'Randy Moore'),(20787,'Terry Dresbach'),(20788,'Artie Lange'),(20795,'Jean-Pierre Marielle'),(20799,'Philippe Laudenbach'),(20800,'Jean-Pierre Castaldi'),(20801,'John Fusco'),(20802,'Casey Silver'),(20803,'Zuleikha Robinson'),(20804,'Adam Alexi-Malle'),(20805,'Louise Lombard'),(20806,'Silas Carson'),(20807,'Harsh Nayyar'),(20808,'Adoni Maropis'),(20809,'Joshua Wolf Coleman'),(20810,'Joely Richardson'),(20811,'Lisa Brenner'),(20812,'Jay Arlen Jones'),(20813,'Joey D. Vieira'),(20814,'Gregory Smith'),(20815,'Skye McCole Bartusiak'),(20816,'Bryan Chafin'),(20817,'Peter Woodward'),(20818,'Allen Covert'),(20819,'Peter Dante'),(20820,'Sid Ganis'),(20821,'Jack Giarraputo'),(20822,'Teddy Castellucci'),(20823,'Peter Lyons Collister'),(20824,'Perry Andelin Blake'),(20825,'Stephen McCabe'),(20826,'Ellen Lutter'),(20827,'Hideo Oguni'),(20828,'Yoshio Inaba'),(20829,'Seiji Miyaguchi'),(20830,'Isao Kimura'),(20831,'Keiko Tsushima'),(20832,'Su00f4jiru00f4 Motoki'),(20835,'Maggie Renzi'),(20836,'Mason Daring'),(20838,'Carolyn Cartwright'),(20840,'Doug Richardson'),(20841,'Robert Crais'),(20842,'Arnold Rifkin'),(20844,'Giovanni Fiore Coltellacci'),(20845,'Olivier Gajan'),(20846,'Richard Byard'),(20847,'Michelle Horn'),(20848,'Rumer Willis'),(20850,'Eric Berger'),(20851,'Sabine Azu00e9ma'),(20853,'Andru00e9 Wilms'),(20863,'Werner Hinz'),(20875,'Leo Tolstoy'),(20879,'Kate Burton'),(20897,'Bruce Broughton'),(20899,'Peter Riegert'),(20904,'James Hong'),(20906,'Peter Michael Goetz'),(20907,'Antoine Fuqua'),(20908,'Jeffrey Silver'),(20914,'Kent Broadhurst'),(20921,'Monte Hellman'),(20924,'Garth Craven'),(20925,'John Dykstra'),(20953,'Harry Manfredini'),(20958,'Ray Mancini'),(20959,'Louis Gossett, Jr.'),(20967,'Dick Hyman'),(20968,'Philip Rosenberg'),(20972,'Julie Bovasso'),(20973,'Louis Guss'),(20974,'Anita Gillette'),(20977,'Carl Ellsworth'),(20982,'Marton Csokas'),(20993,'R.J. Stewart'),(20999,'Mark Williams'),(21002,'David Marconi'),(21003,'Stephen J. Eads'),(21004,'Denise Wingate'),(21005,'Darlene Hunt'),(21006,'Sydney Zarp'),(21007,'Jonah Hill'),(21008,'William Rose'),(21012,'Robert C. Jones'),(21014,'Robert Orr'),(21015,'Janet Yang'),(21017,'Ian Wilson'),(21021,'John Maclaren'),(21022,'James Patterson'),(21023,'Marc Moss'),(21024,'Joe Wizan'),(21026,'Eric Batut'),(21027,'Mika Boorem'),(21028,'Anton Yelchin'),(21029,'Billy Burke'),(21030,'Michael Moriarty'),(21031,'Alejandro Agresti'),(21032,'David Auburn'),(21035,'Doug Davison'),(21036,'Roy Lee'),(21039,'Alar Kivilo'),(21040,'Alejandro Brodersohn'),(21041,'Shohreh Aghdashloo'),(21042,'Ebon Moss-Bachrach'),(21043,'Dylan Walsh'),(21044,'Lynn Collins'),(21045,'Maggie Q'),(21047,'Jonathan Sadowski'),(21049,'Yancey Arias'),(21051,'Yorgo Constantine'),(21053,'John Dahl'),(21055,'Eric L. Beason'),(21058,'Colleen Rennison'),(21063,'Pamela Adlon'),(21064,'Jason Gould'),(21065,'Johnny Green'),(21066,'Patrick O\'Neill'),(21067,'Polly Platt'),(21068,'Richard Gibbs'),(21070,'Mark W. Mansbridge'),(21075,'William Davies'),(21079,'John Benson'),(21082,'Raynor Scheine'),(21083,'Andy Stahl'),(21084,'David Dwyer'),(21085,'Alex Proyas'),(21086,'Jeff Vintar'),(21087,'Isaac Asimov'),(21088,'Alan Tudyk'),(21089,'Bruce Greenwood'),(21090,'Adrian Ricard'),(21091,'Jerry Wasserman'),(21092,'Fiona Hogan'),(21101,'Patrick Sheane Duncan'),(21102,'Michael Nolin'),(21103,'Tim Chau'),(21104,'Glenne Headly'),(21105,'Jay Thomas'),(21107,'Nicholas John Renner'),(21108,'Joseph Anderson'),(21109,'Anthony Natale'),(21110,'Richard Leacock'),(21114,'Lauran Paine'),(21115,'Craig Storper'),(21116,'Robert May'),(21117,'Mary Jane Skalski'),(21118,'James Muro'),(21119,'Michael J. Duthie'),(21120,'Miklos Wright'),(21122,'Ramiro Belgardt'),(21123,'Jase Blankfort'),(21124,'Paula Garcu00e9s'),(21125,'Richard Kind'),(21126,'Fru00e9du00e9ric Auburtin'),(21127,'Bobby Cannavale'),(21128,'Raven Goodwin'),(21129,'Marla Sucharetza'),(21130,'Jayce Bartok'),(21131,'Joe Lo Truglio'),(21132,'Abraham Benrubi'),(21133,'Christopher Del Coro'),(21134,'John Slattery'),(21136,'Michael Cristofer'),(21138,'Kate Guinzburg'),(21139,'Carol Lees'),(21140,'Eric A. Sears'),(21141,'Todd Bozung'),(21142,'Gregory Itzin'),(21143,'Allison Mackie'),(21144,'Joan Pringle'),(21145,'Cordelia Richards'),(21146,'Robert F. Newmyer'),(21147,'Elizabeth Kling'),(21148,'Stephen Alesch'),(21149,'Dan Lieberstein'),(21150,'Mike Maggi'),(21151,'Maureen Stapleton'),(21152,'Nesbitt Blaisdell'),(21154,'Lee Wilkof'),(21155,'Jim Kouf'),(21156,'Oren Aviv'),(21157,'Charles Segars'),(21158,'Cormac Wibberley'),(21159,'Marianne Wibberley'),(21162,'Marthe Pineau'),(21163,'Gary Cole'),(21165,'Kim Dickens'),(21166,'James Haven'),(21171,'Gu00e9rard Jugnot'),(21175,'Michel Blanc'),(21178,'Chap Taylor'),(21179,'John Benjamin Hickey'),(21180,'Justin Bartha'),(21181,'Fabio Testi'),(21182,'David Dayan Fisher'),(21183,'Nicolas Winding Refn'),(21193,'Peter Andersson'),(21197,'Janeane Garofalo'),(21198,'Peter Sohn'),(21199,'Jake Steinfeld'),(21200,'Will Arnett'),(21201,'Darren T. Holmes'),(21202,'Micole Mercurio'),(21203,'Michael Frost Beckner'),(21204,'David Arata'),(21205,'Lowell Cannon'),(21206,'Graham Yost'),(21208,'Shana Lory'),(21210,'Aaron Pfau'),(21213,'Kavan Smith'),(21214,'Jill Teed'),(21215,'Elise Neal'),(21216,'Kim Delaney'),(21217,'Jonathan Lynn'),(21218,'Mitchell Kapner'),(21219,'Allan Kaufman'),(21220,'David Willis'),(21221,'Gary Gold'),(21222,'David Franco'),(21223,'Tom Lewis'),(21224,'Ryal Cosgrove'),(21244,'Glenn Farr'),(21245,'Greta Scacchi'),(21246,'Corbin Bernsen'),(21249,'Jedda Jones'),(21257,'Gitte Axen'),(21258,'Gary Paller'),(21259,'Michael Dudikoff'),(21264,'Garvin Cross'),(21265,'Dean Mckenzie'),(21266,'Stephen Trask'),(21267,'Tom McArdle'),(21268,'John Paino'),(21270,'Boo Jackson'),(21271,'Armen Minasian'),(21272,'Les Healey'),(21273,'Gu00e9rard Sterin'),(21275,'Dean Silvers'),(21276,'Stephen Endelman'),(21277,'Mary Tyler Moore'),(21278,'Alan Alda'),(21282,'William Hickey'),(21289,'Bruce Chun'),(21290,'Dave Foley'),(21291,'Conrad Pla'),(21292,'Alain Goulem'),(21293,'Alan Fawcett'),(21294,'Katie Griffin'),(21298,'Ryan Kennedy'),(21299,'David Pirner'),(21305,'Lloyd Bacon'),(21310,'John Rand'),(21315,'Eric Roberts'),(21316,'Nestor Carbonell'),(21317,'Daeg Faerch'),(21318,'Scout Taylor-Compton'),(21319,'Sheri Moon Zombie'),(21320,'Danielle Harris'),(21322,'Glenn Garland'),(21323,'Lori Mazuer'),(21339,'Jez Butterworth'),(21340,'Tom Butterworth'),(21341,'Steve Butterworth'),(21342,'Diana Phillips'),(21343,'Ben Chaplin'),(21344,'Kate Lynn Evans'),(21345,'Stephen Mangan'),(21347,'Jo McInnes'),(21348,'Eric Bernt'),(21349,'John Jarrell'),(21351,'Derek Brechin'),(21352,'Aaliyah'),(21353,'Isaiah Washington'),(21354,'Russell Wong'),(21355,'DMX'),(21356,'D.B. Woodside'),(21358,'Jon Kit Lee'),(21359,'Edoardo Ballerini'),(21360,'Matthew Harrison'),(21362,'Roy H. Wagner'),(21363,'Carol Lewis'),(21366,'Roma Maffia'),(21368,'Peter Strauss'),(21369,'Gloria Reuben'),(21370,'Roger Donaldson'),(21371,'Amy Holden Jones'),(21374,'Allison Cowitt'),(21377,'Peter Medak'),(21378,'Paul Webster'),(21379,'Stuart Wurtzel'),(21380,'Larry Joshua'),(21381,'Wallace Wood'),(21382,'Gene Canfield'),(21383,'William Duff-Griffin'),(21384,'Paul Butler'),(21385,'Tony Sirico'),(21390,'David Glasser'),(21393,'Norman Kent'),(21394,'Gerry Lively'),(21398,'Maxine Bahns'),(21399,'Ron Silver'),(21402,'Adam Wylie'),(21403,'Thomas Ian Nicholas'),(21404,'Kurt Voss'),(21405,'David Klein'),(21409,'Kristian Bernier'),(21411,'Ice-T'),(21412,'Amy Locane'),(21415,'Robby Henson'),(21416,'William Devane'),(21420,'Clark Hunter'),(21421,'Darryn Welch'),(21426,'Toby Moore'),(21429,'Sam Page'),(21430,'Natassia Malthe'),(21431,'David Gant'),(21437,'Andre Schneider'),(21457,'Elvis Presley'),(21458,'Joan Freeman'),(21460,'Pat Buttram'),(21462,'Raquel Welch'),(21465,'Nina R. Sadowsky'),(21467,'Richard Marvin'),(21469,'Steve Brooksbank'),(21470,'Marc Fisichella'),(21471,'Monique Dartonne'),(21472,'Shawn Woods'),(21474,'Leslie Stefanson'),(21475,'John Putch'),(21478,'Ashok Amritraj'),(21479,'Andrew Stevens'),(21484,'Todd Allen'),(21485,'Blake Clark'),(21490,'Peter Onorati'),(21505,'Robert Wisdom'),(21506,'George Sidney'),(21507,'Jack Cummings'),(21510,'William Demarest'),(21514,'Chris Boardman'),(21516,'Alex Thomson'),(21517,'Mary Colquhoun'),(21518,'Giorgio Postiglione'),(21519,'Kathryn Harrold'),(21520,'Sam Wanamaker'),(21521,'Steven Hill'),(21523,'Ed Lauter'),(21526,'Rod Lurie'),(21527,'David Scarpa'),(21528,'Eloise Crane Stammerjohn'),(21530,'Steve Burton'),(21532,'Samuel Ball'),(21533,'Jeremy Childs'),(21535,'George W. Scott'),(21544,'Richard C. Sarafian'),(21548,'Richard Edlund'),(21549,'Chad Lowe'),(21550,'Julie Bataille'),(21553,'Sue Johnston'),(21558,'Diane Dimeo'),(21559,'George Jenson'),(21560,'John P. Bruce'),(21561,'Tim Matheson'),(21567,'Rae Sanchini'),(21568,'Keith P. Cunningham'),(21582,'Mathieu Busson'),(21584,'Adam Herz'),(21585,'Craig Perry'),(21586,'Warren Zide'),(21587,'David Lawrence'),(21588,'Richard Crudo'),(21589,'Paul Peters'),(21591,'Amy Wells'),(21592,'Leesa Evans'),(21593,'Jason Biggs'),(21594,'Chris Klein'),(21595,'Alyson Hannigan'),(21596,'Shannon Elizabeth'),(21600,'Lukas Heller'),(21605,'Dirk Bogarde'),(21609,'Eric Pohlmann'),(21611,'Peter Rodgers Melnick'),(21615,'Charles William Breen'),(21617,'Rudy Dillon'),(21618,'Victoria Tennant'),(21619,'Marilu Henner'),(21620,'Susan Forristal'),(21624,'Judd Nelson'),(21625,'Molly Ringwald'),(21629,'Tzi Ma'),(21631,'Michael Chow'),(21633,'Kai Lennox'),(21634,'Ross LaManna'),(21635,'Jonathan Glickman'),(21636,'Arthur M. Sarkissian'),(21637,'Ira Hearshen'),(21639,'Nancy Green-Keyes'),(21640,'Robb Wilson King'),(21641,'Thomas Fichter'),(21642,'Lance Lombardo'),(21643,'Ned Tanen'),(21645,'John W. Corso'),(21647,'Gu00e9rard Krawczyk'),(21648,'Julien Schultheis'),(21650,'Swan Pham'),(21652,'Jean-Jacques Gernolle'),(21653,'Agnu00e8s Falque'),(21655,'Benou00eet Delhomme'),(21656,'Lisa Gunning'),(21657,'Vera Farmiga'),(21658,'Ryoko Hirosue'),(21659,'Michel Muller'),(21660,'Rafi Gavron'),(21662,'Ed Westwick'),(21663,'Yoshi Oida'),(21664,'Christian Sinniger'),(21665,'Alexandre Brik'),(21666,'Jean-Marc Montalto'),(21667,'Vu00e9ronique Balme'),(21668,'Fabio Zenoni'),(21672,'Donald E. Westlake'),(21673,'Ericson Core'),(21674,'Sandy Struth'),(21675,'Jack Conley'),(21676,'Sharon Horgan'),(21677,'Barnaby Thompson'),(21678,'Olivier Assayas'),(21679,'Vinette Robinson'),(21681,'Nobuhiro Suwa'),(21683,'Oliver Schmitz'),(21684,'Bong Joon-ho'),(21685,'Chul-hyun Baek'),(21687,'Park Hae-il'),(21688,'Bae Doona'),(21689,'Ko Ah-sung'),(21690,'Byungwoo Lee'),(21691,'John Jackson'),(21692,'Hironobu Sakaguchi'),(21693,'Motonori Sakakibara'),(21694,'Jack Fletcher'),(21695,'Ramin Mebdy'),(21696,'Jun Aida'),(21697,'Chris Lee'),(21698,'Joel Iwataki'),(21699,'Dirk Brossu00e9'),(21700,'Christopher S. Capp'),(21701,'Mauro Borrelli'),(21702,'Ming-Na Wen'),(21703,'Peri Gilpin'),(21705,'Simon Moore'),(21706,'Laura Bickford'),(21707,'Kristen Toscano Messina'),(21708,'Tomu00e1s Miliu00e1n'),(21709,'Russell G. Jones'),(21710,'Michael O\'Neill'),(21711,'Erika Christensen'),(21712,'Carl Franklin'),(21713,'David Collard'),(21714,'Jesse Beaton'),(21717,'Carole Kravetz'),(21718,'Gary Kosko'),(21721,'Dean Cain'),(21722,'John Billingsley'),(21723,'Robert Baker'),(21724,'Alex Carter'),(21725,'Keith Barish'),(21729,'Lisa Fischer'),(21730,'Joan Jett'),(21731,'Michael McKean'),(21735,'Billy L. Sullivan'),(21736,'Jason Miller'),(21739,'Martin Langer'),(21743,'Alexander Held'),(21746,'Johannes Suhm'),(21747,'William Arnold'),(21748,'Maximilian Bru00fcckner'),(21755,'Stuart Waks'),(21757,'J.C. Quinn'),(21767,'Tom Werner'),(21768,'Sylvain Chomet'),(21769,'Bruno Podalydu00e8s'),(21771,'Daniela Thomas'),(21772,'Jimmy Karoubi'),(21781,'Michael Luciano'),(21787,'Franklin Milton'),(21792,'George Gallo'),(21793,'Neil Roach'),(21794,'Seth Flaum'),(21795,'Virginia L. Randolph'),(21796,'Sally Thornton'),(21797,'Peg Cummings'),(21798,'Johnny Messner'),(21800,'Mike Cerrone'),(21801,'Lee Scott'),(21802,'Mongo Brownlee'),(21803,'Kate Forster'),(21804,'Jerod Mixon'),(21807,'Billy Ray'),(21808,'Matthew Chapman'),(21810,'Dominic Frontiere'),(21811,'Jack Hofstra'),(21812,'Wendy Kurtzman'),(21813,'James L. Schoppe'),(21815,'Cynthia McCormac'),(21816,'Jacqueline G. Arthur'),(21817,'Jane March'),(21818,'Lesley Ann Warren'),(21819,'Lewis Teague'),(21821,'Carl Kress'),(21824,'Stephen M. Chudej'),(21828,'Ekkehart Pollack'),(21830,'Miljen Kreka Kljakovic'),(21837,'Peter Rappenglu00fcck'),(21845,'Sarah Bird'),(21846,'Bernhard Henrich'),(21848,'Regina Taylor'),(21858,'Krista Allen'),(21859,'Maeve Quinlan'),(21862,'Charlene Tilton'),(21863,'Sebastian Junger'),(21864,'William D. Wittliff'),(21865,'Gail Katz'),(21866,'Chas. Butcher'),(21873,'F. Keogh Gleason'),(21874,'Alan Young'),(21876,'Yvette Mimieux'),(21877,'Sebastian Cabot'),(21878,'Doris Lloyd'),(21879,'Simon Wells'),(21881,'Laura Kirk'),(21882,'Josh Stamberg'),(21903,'Kwong Wing Chan'),(21905,'Danny Pang'),(21907,'Emi Wada'),(21908,'Aaron Kwok'),(21911,'Shu Qi'),(21914,'Alex Fong Chung-Sun'),(21931,'Chris Nahon'),(21932,'Steve Chasman'),(21933,'Happy Walters'),(21934,'Chino XL'),(21935,'Marco Cavu00e9'),(21936,'Franck Baldino'),(21937,'Gau00eblle Barenton'),(21938,'Hu00e9lu00e8ne Chu00e9ruy'),(21939,'Max Morel'),(21940,'Pierre Bechir'),(21941,'Annie Thiellement'),(21942,'Max Ryan'),(21944,'Burt Kwouk'),(21945,'Laurence Ashley'),(21946,'Cyril Raffaelli'),(21958,'Mark Rydell'),(21962,'John Frizzell'),(21963,'Robert Pearson'),(21964,'Yvonne Blake'),(21965,'Valentina Cervi'),(21968,'Ezra Swerdlow'),(21969,'Gayle Keller'),(21971,'Wing Lee'),(21978,'Louise Goodall'),(21981,'Harald Zwart'),(21983,'Allison Lyon Segan'),(21984,'Larry Dias'),(21985,'Mary Jo Smith'),(21986,'Reba McEntire'),(21992,'Pia Zadora'),(22000,'William Kennedy'),(22001,'Jim Haskins'),(22003,'Lois Planco'),(22006,'Markus Wollersheim'),(22007,'Brad Mirman'),(22008,'Victoria Paul'),(22009,'Michael Rizzo'),(22012,'David Worth'),(22013,'Shawn Paper'),(22014,'Tamara Gorski'),(22016,'Vladimir Kolev'),(22018,'Velizar Binev'),(22026,'Rick Rubin'),(22029,'David M. Haber'),(22038,'Carey Hayes'),(22039,'Chad Hayes'),(22040,'Keith Walley'),(22043,'Russ T. Alsobrook'),(22045,'Michelle Minch'),(22046,'Barbara Inglehart'),(22047,'Alex Heffes'),(22050,'Camilla More'),(22053,'Alan Blumenfeld'),(22054,'Ken Lesco'),(22055,'Billy DaMota'),(22056,'Marty Katz'),(22057,'Alan Caso'),(22058,'Denise Doyle'),(22059,'Emily Schweber'),(22060,'Barbara Dunphy'),(22061,'Helen Jarvis'),(22063,'James Frain'),(22065,'Ricki Maslar'),(22066,'Eric Larson'),(22067,'Ian Phillips'),(22070,'Chanida Trueblood'),(22072,'Lala Sloatman'),(22074,'Vanessa Evigan'),(22075,'Reggie Lee'),(22077,'Carla Fry'),(22078,'Mark W. Koch'),(22080,'David Lee'),(22081,'Vin Burnham'),(22082,'Lacey Chabert'),(22088,'Herman A. Blumenthal'),(22091,'Robert Sterling'),(22092,'Frankie Avalon'),(22093,'Regis Toomey'),(22095,'Saul David'),(22096,'William B. Murphy'),(22099,'Jean Del Val'),(22100,'Hugh Johnson'),(22101,'Drew Gitlin'),(22102,'Mike Cheda'),(22103,'David Gribble'),(22104,'Pamela Power'),(22105,'Jeremy Conway'),(22106,'Fredda Slavin'),(22107,'Deborah Everton'),(22108,'Skeet Ulrich'),(22109,'Peter Firth'),(22111,'Daniel Hugh Kelly'),(22113,'Judson Mills'),(22114,'Jordan Mott'),(22115,'Andrea Sperling'),(22116,'Jasmine Kosovic'),(22118,'Messy'),(22119,'M. David Mullen'),(22120,'Chris Anthony Miller'),(22121,'Sara Foster'),(22122,'Meagan Good'),(22123,'Jordana Brewster'),(22124,'Jill Ritchie'),(22125,'Jimmi Simpson'),(22126,'Jessica Cauffiel'),(22127,'Christina Kirk'),(22128,'Geoff Stults'),(22129,'Sam Montgomery'),(22130,'Lee Mayman'),(22131,'J. T. Walsh'),(22132,'M.C. Gainey'),(22133,'Jack Noseworthy'),(22134,'Ritch Brinkley'),(22135,'Holger Gross'),(22137,'Viveca Lindfors'),(22138,'Alexis Cruz'),(22139,'Carlos Lauchu'),(22140,'Kari Skogland'),(22141,'Ogden Gavanski'),(22143,'Denis Maloney'),(22144,'Jim Munro'),(22145,'Keith Brian Burns'),(22146,'Susan Parker'),(22147,'Johanne Hubert'),(22154,'Barrie Vince'),(22156,'Charmian Adams'),(22157,'Diane Dancklefsen'),(22159,'Martin Clunes'),(22161,'Ben Davis'),(22162,'Roger Dutoit'),(22163,'Florence Muller'),(22165,'Axel Kiener'),(22167,'Aicha Abadir'),(22171,'Bryan Pringle'),(22184,'Sebastian Rudolph'),(22214,'David Wain'),(22215,'Michael Showalter'),(22219,'Susie Farris'),(22221,'Jill Kliber'),(22223,'Marguerite Moreau'),(22224,'Michael Ian Black'),(22225,'A.D. Miles'),(22226,'Paul Rudd'),(22227,'Christopher Meloni'),(22233,'Jack Serino'),(22238,'Faras Rabadi'),(22239,'Travis Zariwny'),(22242,'Nancy Au'),(22248,'Heather McComb'),(22250,'Rance Howard'),(22251,'Royce D. Applegate'),(22252,'Leslie Easterbrook'),(22290,'Leelee Sobieski'),(22297,'Kyle Gass'),(22298,'Steve Lumley'),(22299,'John Damien Ryan'),(22300,'Simon Murton'),(22302,'Stuart Cornfeld'),(22303,'David Rennie'),(22306,'Kad Merad'),(22309,'Pierre Diot'),(22310,'Mar Sodupe'),(22312,'Venantino Venantini'),(22318,'Pascal Ridao'),(22319,'Yves Deschamps'),(22320,'Pierre Excoffier'),(22379,'Dieter Mann'),(22383,'Franco Nero'),(22384,'John Amos'),(22423,'Herb Freed'),(22427,'Daniel Yarussi'),(22429,'Randy Ser'),(22433,'Steven J. Wolfe'),(22434,'Betsy Russell'),(22461,'Vincent Gallo'),(22462,'Joaquim de Almeida'),(22483,'Sidney Wolinsky'),(22486,'Robin L. Miller'),(22494,'Arlene Golonka'),(22498,'Michael Schaefer'),(22504,'Martin Blankemeyer'),(22529,'Peter Wyngarde'),(22544,'Bryan England'),(22546,'Paul Bengston'),(22555,'Diana Barrows'),(22556,'Ruth Buzzi'),(22558,'Nils Gaup'),(22563,'Jurek Becker'),(22600,'Edmund Gwenn'),(22603,'Arthur Shields'),(22606,'Alec Craig'),(22612,'Lisa Kreuzer'),(22621,'Angela Alvarado'),(22623,'Arthur Brauss'),(22630,'Bela B.'),(22669,'Julien Temple'),(22675,'Damon Wayans'),(22676,'Ole Bornedal'),(22677,'Max Fu00e4rberbu00f6ck'),(22678,'Erica Fischer'),(22679,'Rona Munro'),(22680,'Jan A.P. Kaczmarek'),(22682,'Barbara Hennings'),(22683,'Katja Schmidt'),(22684,'Horst Allert'),(22685,'Gerhard Nemetz'),(22686,'Maria Schrader'),(22687,'Johanna Wokalek'),(22688,'Elisabeth Degen'),(22689,'Inge Keller'),(22690,'Kyra Mladeck'),(22703,'Diana Ku00f6rner'),(22705,'Jens Neuhaus'),(22706,'James Gorman'),(22767,'Alfonso Aru00e1u'),(22796,'Hans Meyer'),(22807,'Dean Craig'),(22808,'Laurence Malkin'),(22809,'Keeley Hawes'),(22810,'Andy Nyman'),(22811,'Daisy Donovan'),(22814,'Richard Wenk'),(22815,'John Thompson'),(22816,'Jim Van Wyck'),(22818,'Glen MacPherson'),(22819,'Vicki Graef'),(22820,'Jenna Stern'),(22821,'David Zayas'),(22945,'Carl Heinz Choynski'),(22967,'Share Stallings'),(22968,'Natalie Ward'),(22969,'Jane Asher'),(22970,'Peter Dinklage'),(23036,'Earth Wind & Fire'),(23076,'Robert Hardy'),(23119,'Peter Krause'),(23122,'Annika Kuhl'),(23162,'Raymond Devos'),(23171,'Ferdinand Schmidt-Modrow'),(23182,'Volker Bruch'),(23211,'Maile Flanagan'),(23213,'Harold Becker'),(23226,'G. Mac Brown'),(23227,'Steven Knight'),(23228,'Nathan Alexander'),(23229,'Carice van Houten'),(23285,'Jeffrey J. Dashnaw'),(23286,'Omar Doom'),(23287,'Andrew Jarecki'),(23289,'Marc Smerling'),(23319,'Karel Vacek'),(23331,'Ju00f6rgen Persson'),(23332,'Janus Billeskov Jansen'),(23338,'Walter E. Richarz'),(23340,'Rosel Zech'),(23346,'Armand Assante'),(23349,'Mary Goldberg'),(23351,'Art Anthony'),(23352,'Steve LaPorte'),(23355,'Cheryl Lynn Bruce'),(23358,'Michael Ende'),(23364,'Gianni Giovagnoni'),(23365,'Mario Michisanti'),(23376,'Edwin Erfmann'),(23378,'Barbara Sukowa'),(23382,'Emmanuel Benbihy'),(23383,'Leu00efla Bekhti'),(23384,'Seydou Boro'),(23385,'Martin Combes'),(23386,'Cyril Descours'),(23387,'Lionel Dray'),(23388,'Hippolyte Girardot'),(23390,'Sara Martins'),(23391,'Paul Putner'),(23392,'Joana Preiss'),(23393,'Barbet Schroeder'),(23394,'Li Xin'),(23395,'Pierre Adenot'),(23396,'Bettina von den Steinen'),(23397,'Luc Barnier'),(23398,'Stan Collet'),(23399,'Simon Jacquet'),(23400,'Isabel Meier'),(23401,'Alex Rodru00edguez'),(23402,'Hisako Suwa'),(23403,'Chris Bolzli'),(23404,'Gilles Caussade'),(23405,'Rafi Chaudry'),(23406,'Ara Katz'),(23407,'Frank Moss'),(23408,'Chad Troutwine'),(23414,'Ross Dempster'),(23415,'Karen L. Matthews'),(23419,'Philip Pullman'),(23420,'Bill Carraro'),(23421,'Deborah Forte'),(23422,'Henry Braham'),(23424,'Lucy Bevan'),(23425,'Chris Lowe'),(23426,'Nicola Buck'),(23427,'Angela Levin'),(23429,'Adam Godley'),(23430,'Timur Bekmambetov'),(23431,'Sergey Lukyanenko'),(23436,'Anatoly Maksimov'),(23437,'Yuriy Poteenko'),(23438,'Sergey Trofimov'),(23440,'Konstantin Khabenskiy'),(23441,'Mariya Poroshina'),(23442,'Vladimir Menshov'),(23443,'Galina Tyunina'),(23444,'Zhanna Friske'),(23446,'Neil Gaiman'),(23447,'Jane Goldman'),(23449,'Michael Dreyer'),(23451,'Ilan Eshkeri'),(23453,'Robert Cowper'),(23454,'Phil Harvey'),(23456,'Shaune Harrison'),(23457,'Barrie Gower'),(23458,'Charlie Cox'),(23459,'Sienna Miller'),(23461,'Maxime Alexandre'),(23462,'Eric Guichard'),(23464,'Denis Lenoir'),(23465,'Pascal Marti'),(23466,'David Quesemand'),(23467,'Pascal Rabaud'),(23468,'Christophe Paturange'),(23480,'Henri Attal'),(23485,'Marc Platt'),(23486,'Christophe Beck'),(23487,'Joel Ransom'),(23488,'Geoffrey Rowland'),(23489,'Bill Crutcher'),(23490,'Julia Dehoff'),(23491,'Roxana Alexandru '),(23492,'Vlad Vieru'),(23493,'Mike J. Regan'),(23495,'Jonathan Jackson'),(23496,'Amelia Warner'),(23498,'Alexander Ludwig'),(23504,'Kiersten Warren'),(23505,'Christophe Odent'),(23514,'Thilo Kleine'),(23532,'Jason Bateman'),(23533,'Zach Mills'),(23534,'Jonathan Potts'),(23539,'Zach Helm'),(23541,'Joseph Drake'),(23543,'Roman Osin'),(23544,'Sabrina Plisco'),(23545,'Robin D. Cook'),(23546,'Brandt Gordon'),(23547,'Clive Thomasson'),(23548,'Christopher Hargadon'),(23549,'Colin Penman'),(23550,'Valli O\'Reilly'),(23551,'Nikita Rae'),(23552,'Rolf Hochhuth'),(23580,'Sharon Howard-Field'),(23584,'Gabriele Wolff'),(23587,'Stephanie Leonidas'),(23590,'David LaChapelle'),(23591,'Christopher Toler'),(23592,'Tommy the Clown'),(23593,'Miss Prissy'),(23594,'Amy Marie Beauchamp'),(23595,'Jose Cancela'),(23596,'Dragon'),(23597,'Ceasare Willis'),(23598,'La Niu00f1a'),(23599,'Larry Berry'),(23600,'Marc Hawker'),(23601,'Ellen Jacobson'),(23602,'Morgan Susser'),(23603,'Michael Totten'),(23604,'Fernando Villena'),(23606,'Patrick Marber'),(23607,'Nick Hobbs'),(23608,'Colin Stinton'),(23609,'Charles Frazier'),(23611,'Didier Decoin'),(23612,'Marsha Garces Williams'),(23614,'Elemu00e9r Ragu00e1lyi'),(23616,'Wieslawa Starska'),(23617,'Maja Gawinska'),(23619,'Katalin Jakots'),(23620,'Cheri Minns'),(23621,'Hannah Taylor-Gordon'),(23622,'u00c9va Igu00f3'),(23623,'Istvu00e1n Bu00e1lint'),(23625,'Kathleen Gati'),(23626,'Liev Schreiber'),(23627,'Patricia Kalember'),(23628,'Eriq La Salle'),(23629,'Brian O\'Halloran'),(23630,'Jeff Anderson'),(23631,'Marilyn Ghigliotti'),(23632,'Lisa Spoonhauer'),(23633,'Walt Flanagan'),(23634,'Scott Schiaffo'),(23635,'Ed Hapstak'),(23636,'Pattijean Csik'),(23637,'John Henry Westhead'),(23645,'Paul Dixon'),(23646,'Jeremy London'),(23647,'Renu00e9e Humphrey'),(23648,'Priscilla Barnes'),(23649,'Lem Dobbs'),(23651,'Gavin Bocquet'),(23653,'Christine Sheaks'),(23654,'Robert Holtzman'),(23655,'Joanne Woollard'),(23658,'Jennifer Schwalbach Smith'),(23659,'Will Ferrell'),(23670,'Gru00e9gori Derangu00e8re'),(23671,'u00c9milie Dequenne'),(23677,'Joe Pytka'),(23678,'Michael Jordan'),(23679,'Billy West'),(23680,'Dee Bradley Baker'),(23681,'Brandon Hammond'),(23682,'Larry Bird'),(23684,'Bruce W. Smith'),(23694,'Hans Christian Blech'),(23696,'Hannes Messemer'),(23701,'Georges Staquet'),(23702,'Edward Richardson'),(23703,'Irving Buchman'),(23706,'Eve Gordon'),(23708,'Lou Jacobi'),(23709,'Joan Plowright'),(23712,'Tom Abrams'),(23717,'Barbara Ju00e4ger'),(23724,'Patrice Chu00e9reau'),(23728,'Ariel Zeitoun'),(23739,'James L. Venable'),(23740,'Trevor Fehrman'),(23750,'Johannes Silberschneider'),(23758,'Morgan Ward'),(23759,'Dan Davis'),(23764,'Erika Eleniak'),(23765,'Cornelia Funke'),(23766,'David Lindsay-Abaire'),(23768,'Ileen Maisel'),(23769,'John Beard'),(23770,'Dimitri Capuani'),(23771,'Andrea Faini'),(23772,'Rod McLean'),(23773,'Stuart Rose'),(23774,'Jo Grover'),(23775,'Eliza Bennett'),(23776,'Matt King'),(23779,'Jack Rapke'),(23780,'Robert Presley'),(23781,'Jeremiah O\'Driscoll'),(23782,'Doug Chiang'),(23783,'Heather Plott'),(23784,'Glenn Pulliam'),(23785,'Tegan Taylor'),(23786,'Nacoma Whobrey'),(23787,'Deborah La Mia Denaver'),(23788,'Matthew W. Mungle'),(23789,'Sebastian Rochu00e9'),(23790,'Dominic Keating'),(23791,'Chris Coppola'),(23797,'Marco Hofschneider'),(23799,'Uwe Boll'),(23800,'Jason Rappaport'),(23801,'Doug Taylor'),(23806,'Jessica de Rooij'),(23808,'Mathias Neumann'),(23809,'Paul Klassen'),(23810,'David M. Richardson'),(23811,'Maureen Webb'),(23812,'James Steuart'),(23814,'Sandy Walker'),(23815,'Toni Burroughs-Rutter'),(23816,'Carla Hetland'),(23817,'Sally Barnes'),(23818,'Jennifer Beebe'),(23819,'Beth Boxall'),(23821,'Bryan Greenberg'),(23824,'Anant Singh'),(23828,'Christa Schamberger'),(23831,'Darion Hing'),(23832,'Tania Brooke'),(23849,'Fred Du Preez'),(23858,'Harley Cokeliss'),(23860,'Fred Mollin'),(23861,'Michael Cowan'),(23862,'Gary Howsam'),(23863,'Jason Piette'),(23865,'Michael Bradsell'),(23867,'Hu00e9ctor Romero'),(23868,'Enrique Estu00e9vez'),(23870,'Susanna Puisto'),(23872,'Judy Lovell'),(23873,'Lisa Owen'),(23874,'Phillip Jarrett'),(23875,'Patricio Castillo'),(23877,'Angelina Pelu00e1ez'),(23880,'Steven Seagal'),(23882,'Amy Madigan'),(23888,'Sean Kennedy'),(23891,'Ryan Kelley'),(23897,'Ayanna Berkshire'),(23899,'Robert Blanche'),(23905,'Lynn Kressel'),(23906,'Bradford Johnson'),(23910,'Tom Adams'),(23913,'Walt Mulconery'),(23914,'Bud S. Smith'),(23915,'Pat Morita'),(23916,'Randee Heller'),(23918,'Ron Thomas'),(23919,'Rob Garrison'),(23920,'Chad McQueen'),(23922,'Chris Solimine'),(23926,'M. Scott Smith'),(23927,'Uwe Bu00fcnker'),(23930,'Vicky Phillips'),(23931,'Mira Sorvino'),(23958,'Jeremy Sisto'),(23959,'Debra Messing'),(23961,'Claudio Amendola'),(23964,'Gary Ross'),(23965,'Anne Spielberg'),(23966,'Santo Loquasto'),(23967,'Mary Ellen Trainor'),(23968,'Phil Alden Robinson'),(23969,'John Lindley'),(23970,'Denise Dowse'),(23972,'Leslie McDonald'),(23973,'Linda M. Bass'),(23975,'Lee Garlington'),(23978,'Vu00e9ronique Lange'),(23981,'Franck Schwarz'),(23982,'Chattoune'),(23985,'Georges Neri'),(24006,'Vincent Arnardi'),(24041,'Franu00e7ois Damiens'),(24045,'Joseph Gordon-Levitt'),(24046,'John Schuck'),(24047,'Courtney B. Vance'),(24048,'Jeffrey Nordling'),(24049,'David Weisberg'),(24050,'William Stuart'),(24051,'David Madden'),(24052,'Diane Nabatoff'),(24061,'Petra Hartung'),(24064,'Imke Bu00fcchel'),(24120,'Herman Weigel'),(24130,'Joey Weber'),(24137,'Willy DeVille'),(24164,'Andreas Olshausen'),(24173,'Mike Binder'),(24176,'Jack Binder'),(24177,'Michael Rotenberg'),(24178,'Malte Grunert'),(24179,'Lynwood Spinks'),(24184,'Christian Wintter'),(24186,'Steve Edwards'),(24187,'Jeremy Roush'),(24190,'Rolfe Kent'),(24192,'Dave Jordan'),(24198,'Anne Dudek'),(24199,'Jennifer Echols'),(24200,'Leonardo Nam'),(24202,'Hector Atreyu Ruiz'),(24203,'Rhea Perlman'),(24204,'Julie Lynn'),(24205,'Lori McCreary'),(24206,'Piers Ashworth'),(24208,'Nick Moorcroft'),(24213,'Ryan Wiik'),(24217,'Haris Zambarloukos'),(24219,'Claus Wehlisch'),(24227,'Jamie Roden'),(24232,'Hamish Doyne-Ditmas'),(24241,'Sara Stockbridge'),(24243,'Cathy Murphy'),(24247,'Patrick Poletti'),(24248,'Nigel Cole'),(24256,'John de Borman'),(24257,'Alan Strachan'),(24263,'Jo Littlejohn'),(24264,'Craig Ferguson'),(24265,'Bill Bailey'),(24272,'John Fortune'),(24278,'Bill Weston'),(24288,'Alessandro Preziosi'),(24291,'Annie Parisse'),(24292,'Jerry Adler'),(24293,'Doris Belack'),(24294,'Ben Younger'),(24297,'Jacques Saulnier'),(24305,'Julie White'),(24308,'Brian Goldner'),(24309,'Mark Vahradian'),(24310,'Mitchell Amundsen'),(24311,'Tom Muldoon'),(24313,'Frank Griffin'),(24315,'Fred Karlin'),(24316,'Charles Schulthies'),(24318,'Richard Benjamin'),(24319,'Norman Bartold'),(24320,'Alan Oppenheimer'),(24323,'Steve Franken'),(24324,'Michael T. Mikler'),(24325,'Terry Wilson'),(24328,'Lew Grade'),(24335,'Geoffrey Cheshire'),(24342,'David Prowse'),(24343,'Peter Mayhew'),(24357,'Alex Borstein'),(24358,'Lori Alan'),(24360,'Gregory Jbara'),(24362,'Kevin Michael Richardson'),(24363,'Frederick Stafford'),(24364,'Dany Robin'),(24365,'Michel Subor'),(24366,'Philippe Noiret'),(24367,'John Forsythe'),(24368,'Roscoe Lee Browne'),(24369,'Per-Axel Arosenius'),(24381,'Jean Yanne'),(24421,'Jean Rochefort'),(24422,'Bernard Fresson'),(24424,'Ilaria Occhini'),(24435,'Jack Wallace'),(24462,'Gisu00e8le Casadesus'),(24465,'Eric Elmosnino'),(24479,'Jean Saudray'),(24481,'Renu00e9 Fu00e9ret'),(24485,'Nicole Garcia'),(24487,'Christophe Malavoy'),(24496,'Simu00f3n Andreu'),(24502,'Jules Sitruk'),(24510,'David DeLeon'),(24516,'Daniel Baldwin'),(24521,'David Leisure'),(24524,'Krzysztof Pieczyu0144ski'),(24527,'Chris Ervin'),(24528,'Matthew R. Anderson'),(24529,'Chuck Borden'),(24530,'Renu00e9 Goscinny'),(24531,'Albert Uderzo'),(24534,'Georges Simenon'),(24535,'David Marshall Grant'),(24542,'Jean-Claude Adelin'),(24549,'Edmon Ryan'),(24550,'Sonja Kolthoff'),(24552,'Tina Hedstru00f6m'),(24554,'John van Dreelen'),(24556,'Donald Randolph'),(24557,'Wallace Worsley Jr.'),(24563,'Philippe Magnan'),(24564,'Stu00e9phane Algoud'),(24574,'Catherine Kelber'),(24590,'Dominique Sanda'),(24595,'Vincenzo Nicoli'),(24598,'Michael Attwell'),(24602,'Marina Berti'),(24604,'Corrado Gaipa'),(24605,'Pete Lee-Wilson'),(24607,'Selva Rasalingam'),(24613,'Jamie Glover'),(24618,'Paloma Baeza'),(24625,'Milton Johns'),(24627,'Oliver Cotton'),(24629,'Michel Galabru'),(24657,'Franco Zeffirelli'),(24665,'Armando Nannuzzi'),(24675,'Freddie Cooper'),(24680,'Gerry Humphreys'),(24681,'Simon Kaye'),(24697,'Maria Carta'),(24701,'Oliver Tobias'),(24709,'Roy Holder'),(24710,'Christopher Reich'),(24714,'Tony Vogel'),(24715,'Steve Gardner'),(24718,'Michael Haughey'),(24721,'Walther van den Ende'),(24722,'Cyril Shaps'),(24726,'John Tordoff'),(24737,'Oliver Smith'),(24743,'Simon MacCorkindale'),(24745,'Peter Harlowe'),(24757,'Sylvio Tabet'),(24761,'Martine Rapin'),(24769,'Isabelle Cagnat'),(24772,'Maud Rayer'),(24792,'James Lee Barrett'),(24793,'Loyal Griggs'),(24794,'Argyle Nelson Jr.'),(24795,'J. Frank O\'Neill'),(24797,'Vittorio Nino Novarese'),(24800,'Charles E. Wallace'),(24802,'Henry Wills'),(24803,'George Stevens Jr.'),(24804,'David S. Hall'),(24808,'Michael Anderson Jr.'),(24809,'Ina Balin'),(24810,'Pat Boone'),(24811,'Victor Buono'),(24812,'Joanna Dunham'),(24813,'David McCallum'),(24815,'Dorothy McGuire'),(24816,'Pierre Arditi'),(24819,'Gary Raymond'),(24820,'Joseph Schildkraut'),(24823,'Michu00e8le Abbu00e9-Vannier'),(24826,'John Abbott'),(24827,'Rodolfo Acosta'),(24832,'Daniel Pru00e9vost'),(24840,'Alexandre Dumas pu00e8re'),(24877,'Christian Bujeau'),(24880,'George Chakiris'),(24886,'Fru00e9du00e9ric Forestier'),(24887,'Alexandre Charlot'),(24888,'Olivier Dazat'),(24889,'Franck Magnier'),(24890,'Fru00e9du00e9ric Talgorn'),(24891,'Clovis Cornillac'),(24893,'Franck Dubosc'),(24895,'Josu00e9 Garcia'),(24896,'Stu00e9phane Rousseau'),(24898,'Nathan Jones'),(24899,'Mu00f3nica Cruz'),(24919,'Alberto Jimu00e9nez'),(24923,'Ginu00e9s Garcu00eda Millu00e1n'),(24937,'Bing Crosby'),(24942,'Tsilla Chelton'),(24953,'Ash R. Shah'),(24954,'Jay Ferguson'),(24956,'Gary B. Kibbe'),(24959,'Maya Shimoguchi'),(24960,'Kristan Andrews'),(24965,'Scott Wolf'),(24966,'Kristina Wagner'),(24967,'Alyssa Milano'),(24968,'Nils Allen Stewart'),(24969,'Henry Kingi'),(24976,'Ana Torrent'),(24977,'Karra Elejalde'),(24995,'Kim Sung-Bok'),(25001,'Lee Young-ae'),(25002,'Lee Byung-hun'),(25004,'Shin Ha-kyun'),(25009,'Raul Inglis'),(25012,'Mike Southon'),(25014,'Abra Edelman'),(25017,'John Dondertman'),(25018,'Michael Webb'),(25020,'Rita Ciccozzi'),(25021,'Lisa Love'),(25023,'Anne Ramsay'),(25024,'Lloyd Berry'),(25026,'Cristina Marcos'),(25046,'Marty Bowen'),(25054,'Tim Van Rellim'),(25058,'Stuart Levy'),(25060,'Jana Carboni'),(25061,'Maria-Teresa Barbasso'),(25063,'Alessandra Querzola'),(25066,'Stefano Maria Mioni'),(25068,'Cedric Proust'),(25072,'Oscar Isaac'),(25074,'Stanley Townsend'),(25078,'Eriq Ebouaney'),(25079,'Stefan Kalipha'),(25080,'Alessandro Giuggioli'),(25082,'Farida Ouchani'),(25083,'Sau00efd Amadis'),(25084,'Maria Giovanna Donzelli'),(25085,'Francesca Piliero'),(25086,'Serge Feuillard'),(25087,'Kais Nashif'),(25088,'Andy Lucas'),(25089,'Tomer Sisley'),(25090,'Jeffery Kissoon'),(25091,'Lucia Zotti'),(25092,'Monica Contini'),(25093,'Paola Sotgiu'),(25094,'Gabrielle Scharnitzky'),(25095,'Stewart Scudamore'),(25096,'Chiara Di Pede'),(25097,'Luciana Paolicelli'),(25098,'Damir Todorovic'),(25099,'Matt Patresi'),(25102,'Andrea Bruschi'),(25103,'Jean-Claude Deret'),(25104,'Angela Iurilli'),(25105,'Francesco Martoccia'),(25107,'Alessandro Piscitelli'),(25109,'Maria Antonietta DiMonte'),(25110,'Emilio Adrisani'),(25112,'Emilia Fortunato'),(25113,'Shelby Young'),(25129,'Don Johnson'),(25130,'Ben Barnes'),(25132,'Alicia Borrachero'),(25133,'Vincent Grass'),(25134,'Shane Rangi'),(25135,'Cornell John'),(25136,'Ken Stott'),(25137,'Pippa Hall'),(25138,'Scott Niemeyer'),(25139,'Norm Waitt'),(25140,'Sharon Seymour'),(25141,'Paul Seydor'),(25142,'Troy Takaki'),(25143,'David Kitay'),(25144,'Ty Panitz'),(25145,'Matt Champagne'),(25146,'Colin Ferguson'),(25147,'Tony Hale'),(25154,'Arletty'),(25155,'Jean-Louis Barrault'),(25166,'Dora Doll'),(25167,'Arthur Conan Doyle'),(25173,'Gale Sondergaard'),(25195,'Ron Cobb'),(25200,'John C. Wash'),(25201,'Bill Taylor'),(25206,'Cookie Knapp'),(25210,'Jeremy Leven'),(25211,'Robert John Lange'),(25212,'Ralf D. Bode'),(25213,'Kirsten Everberg'),(25214,'Stephen Singer'),(25215,'Jo Champa'),(25219,'Cu00e9sar Vea'),(25236,'Johnnie To'),(25240,'Cheng Siu-Keung'),(25245,'Jacky Cheung'),(25246,'Andy Lau'),(25251,'Lam Suet'),(25252,'Ruby Wong'),(25255,'Yuyi Beringola'),(25258,'Rossy de Palma'),(25272,'Alito Rodgers'),(25282,'Marthe Keller'),(25292,'John J. Kelly'),(25297,'Craig Campobasso'),(25298,'Tammi Sutton'),(25300,'Andi Brittan'),(25305,'Sabine Rohrman'),(25306,'Mel Harris'),(25308,'Vanessa Angel'),(25309,'Jim Storm'),(25310,'Dale Godboldo'),(25311,'John O\'Hurley'),(25315,'Henryk Sienkiewicz'),(25333,'Philippe Leroy'),(25336,'Bob Zmuda'),(25340,'Emmanuelle Bercot'),(25345,'Lou Doillon'),(25346,'Eva Darlan'),(25362,'John Van Tongeren'),(25365,'Richard Hicks'),(25376,'Joel Gretsch'),(25382,'Megalyn Echikunwoke'),(25383,'Samantha Ferris'),(25386,'Ian Tracey'),(25389,'Peter Bryant'),(25390,'Frank Cassini'),(25401,'Josefine Preuu00df'),(25405,'Joel Echallier'),(25409,'Elyas Mu2019Barek'),(25414,'Jody Thompson'),(25415,'Axel Schreiber'),(25432,'Winnie Bu00f6we'),(25438,'Ed Speleers'),(25440,'Richard Rifkin'),(25441,'Steve Speirs'),(25442,'Joss Stone'),(25445,'Matt Devere'),(25446,'Mu00e1tu00e9 Haumann'),(25448,'Caroline Chikezie'),(25451,'Spencer Wilding'),(25453,'Stefen Fangmeier'),(25454,'Christopher Paolini'),(25455,'Gil Netter'),(25456,'Chris Symes'),(25457,'Adam Goodman'),(25458,'Samir Hoon'),(25459,'Michael J. McAlister'),(25460,'Gu00e1bor Piroch'),(25472,'Lim Giong'),(25500,'Howard Gertler'),(25501,'Tim Perell'),(25502,'Pamela Hirsch'),(25503,'Mandy Patinkin'),(25504,'Andru00e9 the Giant'),(25515,'Paul Knight'),(25527,'Jason Connery'),(25530,'Bradley Lavelle'),(25532,'Philip Jackson'),(25539,'Shonda Rhimes'),(25540,'Sandra Oh'),(25541,'Katherine Heigl'),(25544,'James Pickens Jr.'),(25548,'Danny Lux'),(25549,'John Brace'),(25550,'Laurence Bennett'),(25551,'Cynthia Bergstrom'),(25579,'Chuck Hicks'),(25585,'Brooke Breton'),(25598,'Paul Greengrass'),(25600,'Patrick Crowley'),(25604,'Paul Sandberg'),(25606,'Robert Ludlum'),(25616,'Edgar Ramu00edrez'),(25618,'W. Blake Herron'),(25626,'Robert Ridgely'),(25627,'Hal Smith'),(25633,'Tom Priestley'),(25638,'Mark Lester'),(25641,'Yootha Joyce'),(25643,'Anthony Nicholls'),(25653,'You'),(25654,'Julianna Margulies'),(25655,'Zoe Telford'),(25656,'Terence Harvey'),(25657,'Justin Salinger'),(25658,'Chris Larkin'),(25659,'James Babson'),(25663,'Thomas Brodie-Sangster'),(25670,'Robert Russell'),(25675,'Bruce Byron'),(25677,'Joel Kirby'),(25678,'Richard Haas'),(25679,'Richard Katz'),(25680,'Laurence Kennedy'),(25682,'David O\'Kelly'),(25685,'Richard Rowlands'),(25686,'John Comer'),(25688,'Christopher Bowen'),(25689,'Liliana Komorowska'),(25702,'Rhona Mitra'),(25703,'Lake Bell'),(25711,'Kevin Cooney'),(25718,'Jan Kuu017eelka'),(25719,'Jeff Smith'),(25723,'Vladimir Kulhavy'),(25726,'Jan Unger'),(25729,'Nancy Bishop'),(25730,'Brian Caspe'),(25731,'Vitezslav Bouchner'),(25732,'Curtis Matthew'),(25735,'Christian Duguay'),(25743,'Philip von Alvensleben'),(25744,'Pierre Gill'),(25745,'Sylvain Lebel'),(25747,'Henk van Eeghen'),(25748,'Marek Dobrowolski'),(25749,'Milan Babik'),(25751,'Benjamin Robin'),(25753,'Leo Stransky'),(25755,'Anja Dihrberg'),(25757,'Sue Jones'),(25758,'Alex Wald'),(25787,'Ava Gardner'),(25795,'Vittorio Bonicelli'),(25801,'Guidarino Guidi'),(25806,'Alberto De Rossi'),(25808,'Aharon Ipalu00e9'),(25810,'Mariangela Melato'),(25815,'Josu00e9 Quaglio'),(25817,'Dina Doron'),(25830,'Debi Manwiller'),(25831,'Carlos Barbosa'),(25832,'Tim Beach'),(25834,'Leslie Hope'),(25836,'Sarah Clarke'),(25837,'Elisha Cuthbert'),(25848,'Rudolf Martin'),(25849,'Richard Burgi'),(25854,'Lucas Belvaux'),(25862,'Chris G. Willingham'),(25868,'Vicellous Reon Shannon'),(25869,'Reiko Aylesworth'),(25872,'Laura Harris'),(25873,'Jon Cassar'),(25877,'Roger Cross'),(25878,'Shawn Doyle'),(25879,'Geoff Pierson'),(25884,'Mary Lynn Rajskub'),(25906,'Tia Nolan'),(25907,'Shelbie Bruce'),(25908,'Sarah Steele'),(25909,'Ian Hyland'),(25910,'Victoria Luna'),(25911,'Cecilia Suu00e1rez'),(25912,'Ricardo Molina'),(25933,'Emily Deschanel'),(25934,'David Boreanaz'),(25939,'Jim Chory'),(25941,'Dermott Downs'),(25944,'Larry Poindexter'),(25946,'Bonita Friedericy'),(25950,'Jean-Paul Rappeneau'),(25972,'Melina Kanakaredes'),(25987,'Eddie Cahill'),(25988,'Vitali Baganov'),(25990,'Andy Comeau'),(26008,'Gordon Clapp'),(26009,'Gail O\'Grady'),(26026,'Victor Young'),(26042,'Jerry Stiller'),(26044,'Bill Erwin'),(26046,'Amy Stiller'),(26048,'Ben Browder'),(26054,'Claudia Black'),(26055,'Virginia Hey'),(26056,'Anthony Simcoe'),(26059,'David Franklin'),(26060,'Hugh Keays-Byrne'),(26061,'Matthew Newton'),(26064,'Joel Goldsmith'),(26067,'Rachel Luttrell'),(26069,'Paul McGillion'),(26075,'Alan Scarfe'),(26080,'Paul Weber'),(26086,'Michael Shanks'),(26087,'Amanda Tapping'),(26088,'Christopher Judge'),(26089,'Garry Chalk'),(26093,'Earl Pastko'),(26094,'Barry McGovern'),(26095,'John Patrick Shanley'),(26100,'Melvil Poupaud'),(26102,'Christian Sengewald'),(26121,'Nicholas Jones'),(26131,'George Innes'),(26140,'Shaun Davey'),(26141,'Derek Wallace'),(26142,'Millie Perkins'),(26143,'Irene O\'Brien'),(26144,'Lucinda Thomson'),(26145,'Laura Bowe'),(26146,'Maeve Paterson'),(26153,'William Kirschner'),(26155,'Edmund Purdom'),(26157,'Harold Pinter'),(26158,'Charles Wagenheim'),(26159,'Frances Goodrich'),(26160,'Albert Hackett'),(26161,'Lola Boorman'),(26172,'Charles Le Maire'),(26174,'Mary Wills'),(26175,'Ben Nye'),(26176,'Helen Turpin'),(26190,'Frank Cottrell Boyce'),(26191,'Stephen Hilton'),(26192,'Alwin H. Kuchler'),(26193,'Denis Schnegg'),(26194,'Michelle Day'),(26195,'Konnie Daniel'),(26196,'Lesley Smith'),(26197,'Nabil Elouahabi'),(26199,'Jonathan Ibbotson'),(26201,'Emil Marwa'),(26202,'Nina Fog'),(26203,'Bruno Lastra'),(26205,'James Bobin'),(26208,'Robert Katz'),(26209,'Matt Lucas'),(26233,'Hans Peter Hallwachs'),(26245,'Dieter Eppler'),(26257,'Leigh Lawson'),(26258,'Kenneth Cranham'),(26259,'Michael Feast'),(26264,'Kenneth Ross'),(26278,'Abi Jackson'),(26283,'Gerrit Graham'),(26284,'Giacomo Gonnella'),(26290,'Sybelle Silverphoenix'),(26291,'Martin Henderson'),(26292,'David Dorfman'),(26293,'Rachael Bella'),(26294,'Lindsay Frost'),(26295,'Sandra Thigpen'),(26349,'Gu00fcnter Strack'),(26358,'George O. Petrie'),(26367,'Bernard Nou00ebl'),(26371,'Jacques Sereys'),(26401,'Michu00e8le Garcia'),(26406,'Philippe Lopes-Curval'),(26456,'Lori Singer'),(26457,'Matthew Lillard'),(26458,'Kevin Williamson'),(26466,'Caroline Kava'),(26467,'Kyra Sedgwick'),(26468,'Rob Camilletti'),(26469,'Holly Marie Combs'),(26470,'Jerry Levine'),(26471,'Ron Kovic'),(26472,'Steve Guttenberg'),(26473,'Fisher Stevens'),(26475,'Brent Maddock'),(26479,'S. S. Wilson'),(26481,'Anand Tucker'),(26482,'Merry Clayton'),(26483,'Valerie Perrine'),(26485,'Jim Belushi'),(26491,'Vernon Wells'),(26495,'Jean Louisa Kelly'),(26498,'Ernst Jacobi'),(26502,'Howard Deutch'),(26510,'Eugene Levy'),(26511,'Bruce Jay Friedman'),(26512,'Carroll O\'Connor'),(26513,'Debra Winger'),(26516,'Ingeborg Schu00f6ner'),(26517,'Wolfgang Kieling'),(26557,'Ferdy Mayne'),(26586,'Hans Reiser'),(26589,'Walter Kohut'),(26600,'Rudolf Schu00fcndler'),(26602,'Traugott Buhre'),(26648,'Luis Llosa'),(26649,'Alexandra Seros'),(26651,'Mario Ernesto Su00e1nchez'),(26652,'Sergio Doru00e9 Jr.'),(26653,'Chase Randolph'),(26654,'Jeana Bell'),(26655,'Brittany Paige Bouck'),(26656,'Emilio Estefan'),(26657,'David Bamber'),(26659,'Anthony Andrews'),(26660,'Richard Kiley'),(26662,'Jennifer O\'Neill'),(26664,'Ben Vereen'),(26667,'Philip Sayer'),(26669,'Vincent Riotta'),(26678,'Bruce Winant'),(26679,'Damien Thomas'),(26680,'Scott Hoxby'),(26684,'Jane How'),(26685,'Jonathan Tafler'),(26706,'David Rintoul'),(26707,'Nicholas Ball'),(26713,'Chuck Russell'),(26714,'John R. Leonetti'),(26715,'Robert Klein'),(26716,'Heather Burns'),(26717,'David Haig'),(26718,'Dorian Missick'),(26719,'Veanne Cox'),(26720,'Janine LaManna'),(26721,'Iraida Polanco'),(26722,'Charlotte Maier'),(26723,'Katheryn Winnick'),(26724,'Eric Tsang'),(26731,'Arthur Wong'),(26738,'Bob Yerkes'),(26739,'Sylvia Chang'),(26753,'Robert Simper'),(26756,'Yasuaki Kurata'),(26760,'Tsui Hark'),(26767,'Ringo Lam'),(26770,'Abby Collins'),(26771,'Michael Baxter-Lax'),(26775,'Liu Chia-Liang'),(26778,'Ellen Chan'),(26780,'Deborah Grant'),(26782,'Mark Houghton'),(26783,'Conan Lee'),(26847,'Adam West'),(26849,'Daniel Myrick'),(26850,'Eduardo Su00e1nchez'),(26851,'Heather Donahue'),(26852,'Joshua Leonard'),(26853,'Michael C. Williams'),(26854,'Phil Davis'),(26855,'Wi Kuki Kaa'),(26856,'Tevaite Vernette'),(26857,'Philip Martin Brown'),(26858,'Malcolm Terris'),(26859,'Simon Adams'),(26860,'John Sessions'),(26861,'Andrew Wilde'),(26862,'Neil Morrissey'),(26863,'Richard Graham'),(26864,'Jon Gadsby'),(26865,'Brendan Conroy'),(26866,'Barry Dransfield'),(26867,'Steve Fletcher'),(26868,'Mary Kauila'),(26869,'Sharon Bower'),(26870,'Tavana'),(26871,'Louise Carrigan'),(26872,'Robert Cartwright'),(26873,'Jeanette Freeman'),(26874,'Victor Magnotta'),(26875,'Hideo Nakata'),(26882,'Kiyoshi Kurosawa'),(26890,'Jacques Marin'),(26919,'Jenny Powell'),(26930,'Amy Morton'),(26937,'Ulrich Beiger'),(26959,'Samuel Fuller'),(26972,'William Lawrence Mack'),(26973,'John White'),(26974,'Jessy Schram'),(26976,'H.F. Saint'),(26977,'Robert Collector'),(26978,'Dana Olsen'),(26980,'Bruce Bodner'),(26981,'Shirley Walker'),(26984,'Joe I. Tompkins'),(26985,'Lee Harman'),(26986,'Rick Sharp'),(26987,'Albert Delgado'),(26988,'Ken Pepiot'),(26989,'Gintar Repecka'),(26990,'Wayne Rose'),(26991,'A.J. Thrasher'),(26993,'Richard Epcar'),(26994,'Steven Barr'),(26995,'Gregory Paul Martin'),(26996,'Patricia Heaton'),(26997,'Jun Hee Lee'),(26998,'Suzy Nakamura'),(26999,'Chris Owen'),(27003,'Claudia Aros'),(27004,'Meghan Heffern'),(27005,'Don Michael Paul'),(27006,'Jere Henshaw'),(27007,'Ken Tamplin'),(27008,'Chelsea Field'),(27011,'Vanessa Williams'),(27012,'Robert Ginty'),(27016,'Lauren C. Mayhew'),(27030,'Tom Gallop'),(27031,'Tim Griffin'),(27032,'Dominic Watkins'),(27035,'Paul Dubov'),(27036,'Tony Siragusa'),(27037,'Levan Uchaneishvili'),(27038,'Julia Chasman'),(27039,'Aisha Coley'),(27040,'Nicholas Lundy'),(27041,'Sandra Hernandez'),(27051,'Robert E. Collins'),(27074,'Lu Wei'),(27084,'Nan Yu'),(27095,'Ilona Herzberg'),(27096,'Dave Phillips'),(27097,'Matt Luber'),(27098,'Gary Goetzman'),(27099,'Ian Baker'),(27100,'Douglas Smith'),(27102,'Wanda Sykes'),(27103,'Graham Phillips'),(27104,'Johnny Simmons'),(27105,'Ed Helms'),(27106,'Harley Jane Kozak'),(27107,'Mike Doyle'),(27110,'Malcolm Stewart'),(27111,'Kevin McNulty'),(27112,'Terence Kelly'),(27113,'Scott Hylands'),(27116,'Kevin Conway'),(27120,'Matt Hill'),(27121,'Stephen Dimopoulos'),(27122,'Matthew Walker'),(27123,'Chris Humphreys'),(27124,'Gerard Plunkett'),(27125,'Molly Parker'),(27127,'Brent Stait'),(27129,'Byron Lucas'),(27135,'Martin Evans'),(27136,'Katharine Isabelle'),(27138,'Doug Abrahams'),(27143,'John Tench'),(27144,'Shaina Tianne Unger'),(27148,'Rocky Lang'),(27151,'Jeff Kleeman'),(27153,'Frank Konigsberg'),(27154,'David Hennings'),(27156,'Christiaan Wagener'),(27157,'Eric Norlin'),(27160,'Jori Woodman'),(27161,'Charles Porlier'),(27163,'Ornella Muti'),(27164,'Frank Baker'),(27165,'John Hollis'),(27169,'Peter Halliday'),(27172,'Peter Guinness'),(27175,'Hassani Shapi'),(27176,'Karl Geary'),(27181,'Carlo Siliotto'),(27187,'Grazia De Rossi'),(27198,'Orso Maria Guerrini'),(27199,'Francesco Carnelutti'),(27204,'Robert McKee'),(27205,'Luigi Rocchetti'),(27208,'Omero Antonutti'),(27218,'Sandy Climan'),(27219,'Charles Evans Jr.'),(27220,'Luca Tranchino'),(27226,'Patrick Lussier'),(27237,'G. W. Bailey'),(27238,'Brian McNamara'),(27241,'Nina Axelrod'),(27260,'Laila Robins'),(27261,'Olivia Burnette'),(27264,'Susan Kellermann'),(27265,'Barrington Pheloung'),(27266,'David Smith'),(27267,'Rebecca Pidgeon'),(27268,'Samantha Shelton'),(27269,'Gina Doctor'),(27272,'Ennio Fantastichini'),(27274,'Giorgio Pasotti'),(27279,'Massimo Sarchielli'),(27282,'Maria Cristina Heller'),(27319,'Christoph Waltz'),(27321,'Philip Locke'),(27323,'Garry Cooper'),(27334,'Peter Jonfield'),(27342,'Bill Blunden'),(27393,'Dudley Sutton'),(27394,'Anita Zagaria'),(27396,'Su00f4nia Braga'),(27397,'Anton Lesser'),(27398,'Urbano Barberini'),(27399,'Paolo Calabresi'),(27401,'Bruno Bilotta'),(27406,'Florian Fitz'),(27408,'Mark Lewis'),(27416,'Robert Willox'),(27420,'Erol Sander'),(27422,'Bruce Payne'),(27425,'Constantine Gregory'),(27427,'Massimiliano Pazzaglia'),(27428,'Aaron Taylor-Johnson'),(27436,'Costa-Gavras'),(27443,'Gu00e9rard Buhr'),(27444,'James Orr'),(27445,'Jim Cruickshank'),(27447,'Sydney Walker'),(27448,'Rocky Carroll'),(27451,'Ghislain Barrois'),(27462,'Alberto San Juan'),(27467,'Geli Albaladejo'),(27486,'Pete Kozachik'),(27491,'Elaine Bromka'),(27492,'Garrett M. Brown'),(27493,'Jay Underwood'),(27504,'Chris Young'),(27513,'Danny Aiello III'),(27514,'Shecky Greene'),(27515,'Richard B. Shull'),(27516,'Bobby Di Cicco'),(27517,'Howard Morris'),(27518,'Lowell Ganz'),(27519,'Babaloo Mandel'),(27530,'Don Lake'),(27538,'Douglas Day Stewart'),(27541,'Alan Greisman'),(27543,'Waldemar Kalinowski'),(27544,'Tom Irwin'),(27545,'Bruce Altman'),(27546,'Lisa Malkiewicz'),(27547,'John A. Keel'),(27548,'Richard Hatem'),(27549,'Gary W. Goldstein'),(27550,'Bob Tracey'),(27551,'Tom Stoviak'),(27552,'David Eigenberg'),(27553,'Bill Laing'),(27554,'Alan Bates'),(27556,'Ira Deutchman'),(27561,'Amy Stewart'),(27562,'Jean Doumanian'),(27563,'Amy Irving'),(27564,'Eric Lloyd'),(27569,'Norman Hollyn'),(27570,'Anna Katarina'),(27571,'David Slade'),(27572,'Brian Nelson'),(27573,'Michael Caldwell'),(27574,'David Higgins'),(27575,'Richard Hutton'),(27576,'Jo Willems'),(27577,'Art Jones'),(27578,'Ellen Page'),(27579,'Odessa Rae'),(27580,'G.J. Echternkamp'),(27581,'Sandy King'),(27582,'Jim Lang'),(27583,'Edward A. Warschilka'),(27585,'Wilhelm von Homburg'),(27586,'Conrad Bergschneider'),(27588,'Michael Benyaer'),(27590,'Chris Spencer'),(27592,'Larry Thomas'),(27593,'Michaela Mann'),(27614,'Ru00e9gis Wargnier'),(27625,'Gesine Cukrowski'),(27627,'Waldemar Kobus'),(27631,'Nathaniel Parker'),(27632,'Ben Daniels'),(27635,'Dominic Rowan'),(27638,'Gina Bellman'),(27641,'Peter-Hugo Daly'),(27643,'Marco Leonardi'),(27647,'Angelo Infanti'),(27649,'Joseph Long'),(27650,'Emilio Doorgasingh'),(27652,'Paul Angelis'),(27654,'Said Amel'),(27655,'Peter Mair'),(27659,'Tim Woodward'),(27660,'Roger Hammond'),(27662,'Mohamen Mehdi Ouazanni'),(27672,'Younes Megri'),(27677,'David Beatty'),(27678,'Tom Fisher'),(27679,'Michael London'),(27680,'Steven Millhauser'),(27681,'Ron Emanuel'),(27682,'Yvonne Erickson'),(27683,'Scott Nunnally'),(27684,'Harris Mackenzie'),(27685,'Zachary Mott'),(27686,'Ann McDonough'),(27687,'Shane Callahan'),(27688,'Dan Callahan'),(27689,'Christin Frame'),(27690,'Rohn Thomas'),(27691,'Susan Nicholas'),(27692,'Tim Hartman'),(27694,'Jennifer Martin'),(27708,'Pete Handelman'),(27709,'Matt Miller'),(27710,'Josh Braun'),(27711,'Doug Korstanje'),(27712,'Betsy Zajko'),(27713,'Elizabeth Cazenave'),(27714,'Sam Nicotero'),(27726,'Don Knotts'),(27727,'Marissa Ribisi'),(27728,'Leslie H. Martinson'),(27729,'Howard Schwartz'),(27730,'Serge Krizman'),(27731,'Roy Meadows'),(27732,'Harry M. Leonard'),(27733,'Neil Hamilton'),(27734,'Stafford Repp'),(27735,'Andy Gould'),(27736,'Tom Towles'),(27737,'Bill Moseley'),(27738,'Chris Hardwick'),(27739,'Jennifer Jostyn'),(27740,'Walton Goggins'),(27741,'Robert Allen Mukes'),(27742,'Dennis Fimple'),(27743,'Alex Poppas'),(27745,'Robert C. Cooper'),(27749,'George Liddle'),(27750,'Liz Keogh'),(27752,'Bruce Spence'),(27753,'Colin Friels'),(27754,'Mitchell Butel'),(27755,'Melissa George'),(27756,'Robin Cowie'),(27757,'Gregg Hale'),(27758,'Tony Cora'),(27759,'Neal Fredericks'),(27762,'Ian McDiarmid'),(27763,'Casper Van Dien'),(27764,'Steven Waddington'),(27767,'Lawrence D. Cohen'),(27770,'Dennis Christopher'),(27771,'Tim Reid'),(27772,'John Ritter'),(27773,'Jonathan Brandis'),(27775,'Chelan Simmons'),(27786,'Ku00f4ji Suzuki'),(27797,'Kim Henkel'),(27798,'Marilyn Burns'),(27803,'Edwin Neal'),(27804,'Gunnar Hansen'),(27805,'Robert A. Burns'),(27810,'Joseph Scoren'),(27811,'Peter Weller'),(27812,'Monique Mercure'),(27814,'Mary Norton'),(27816,'Grainne Marmion'),(27818,'Nic Ede'),(27822,'David Ryall'),(27823,'Stanley Lebor'),(27836,'Leny Breederveld'),(27842,'Leslie Daniels'),(27846,'John Herzfeld'),(27855,'Shannyn Sossamon'),(27858,'Adam Trese'),(27860,'Barry Newman'),(27862,'Mary Gross'),(27863,'Rob Perez'),(27875,'Alex van Warmerdam'),(27879,'Vincent van Warmerdam'),(27880,'Henri Garcin'),(27881,'Olga Zuiderhoek'),(27882,'Annet Malherbe'),(27883,'Loes Luca'),(27885,'Marc van Warmerdam'),(27886,'Louis Begley'),(27887,'Susan Orlean'),(27888,'Rau00fal Juliu00e1'),(27889,'Stephan Elliott'),(27903,'David Freeman'),(27910,'Richard Bronskill'),(27916,'W. Somerset Maugham'),(27932,'Lilli Palmer'),(27952,'Volker Engel'),(27957,'Antonie Kamerling'),(27963,'Freddie Fields'),(27964,'Lauren Hutton'),(27968,'Alan Jay Lerner'),(27969,'Douglas Shearer'),(27970,'Chris Ambrose'),(27971,'Joey Krajcar'),(27972,'Josh Hutcherson'),(27973,'Cameron Carter'),(27974,'Daniel Tay'),(27975,'Mary Faktor'),(27976,'Harvey Pekar'),(27977,'Leos Carax'),(27978,'Denis Lavant'),(27980,'Edith Scob'),(27991,'Stuart Gordon'),(27992,'Brian Yuzna'),(27993,'Jeffrey Combs'),(27995,'Barbara Crampton'),(28001,'Zhao Fei'),(28002,'John Tormey'),(28003,'Kaili Vernoff'),(28004,'Brian Markinson'),(28005,'Maurice Sonnenberg'),(28006,'John Doumanian'),(28007,'Kevin Cahoon'),(28008,'Philip Levy'),(28009,'Vince Giordano'),(28010,'David Ogden Stiers'),(28011,'Howard Alden'),(28012,'Ted Sommer'),(28013,'Randy Sandke'),(28014,'Peter Ecklund'),(28015,'Joel Helleny'),(28016,'Chuck Wilson'),(28017,'Raymond Beckenstein'),(28018,'Lawrence Feldman'),(28019,'Ken Peplowski'),(28021,'Carole Bayeux'),(28022,'Kenneth Edelson'),(28023,'Brian McConnachie'),(28024,'Judy Gold'),(28025,'Herb Lovelle'),(28026,'Carmen'),(28027,'Patrick Horgan'),(28028,'Howard Erskine'),(28029,'Ira Wheeler'),(28030,'Tina Sloan'),(28031,'Ramsey Faragallah'),(28032,'Bob Dorian'),(28033,'Arthur J. Nascarella'),(28034,'Trude Klein'),(28035,'Irwin Corey'),(28036,'Michael Mulheren'),(28037,'Peter Linari'),(28039,'Bruce Brown'),(28040,'Dan Moran'),(28041,'Suzanne McCabe'),(28042,'Rory Culkin'),(28043,'Ted Sutton'),(28044,'Merritt Wever'),(28046,'Marion McCorry'),(28047,'Kevin Pires'),(28048,'Clifford David'),(28049,'Rhonda Overby'),(28097,'Franu00e7oise Collin'),(28098,'Rhiana Griffith'),(28099,'Lewis Fitz-Gerald'),(28100,'Simon Burke'),(28101,'Harry O\'Reilly'),(28107,'Wm. Barclay Malcolm'),(28109,'Alexa Davalos'),(28110,'Christina Cox'),(28114,'Oliver Stritzel'),(28137,'Claude Brulu00e9'),(28154,'David Blocker'),(28155,'Anthony Marinelli'),(28156,'J. Peter Robinson'),(28157,'Trevor Waite'),(28158,'Martin Hancock'),(28161,'Nicholas C. Smith'),(28162,'Jill M. Ohanneson'),(28163,'Lesley Beale'),(28164,'Charles Grodin'),(28168,'Timothy Stack'),(28186,'Agathe Natanson'),(28190,'Roger Van Hool'),(28235,'Sebastian Shaw'),(28238,'David Hasselhoff'),(28239,'David Twohy'),(28240,'David Eggby'),(28241,'Tim Simonec'),(28242,'Paul Rapovski'),(28246,'Lisa Langlois'),(28248,'Dwight Schultz'),(28249,'Peter Chung'),(28255,'Fabrice Luchini'),(28273,'Friederike Kempter'),(28281,'Jean-Pierre Bacri'),(28285,'Rick Giovinazzo'),(28343,'Karl Kranzkowski'),(28345,'Mark Zak'),(28361,'Anna Loos'),(28387,'Aleksandar Deniu0107'),(28399,'Michael Cooney'),(28401,'Stuart M. Besser'),(28402,'Dixie J. Capp'),(28410,'Jake Busey'),(28412,'Rebecca De Mornay'),(28413,'Carmen Argenziano'),(28414,'Matt Letscher'),(28415,'Bret Loehr'),(28416,'Frederick Coffin'),(28417,'Joe Hart'),(28418,'Michael Hirsch'),(28419,'Terence Bernie Hines'),(28420,'Lavinia Wilson'),(28422,'Alexander Hu00f6rbe'),(28432,'Max Mauff'),(28447,'Paul Fau00dfnacht'),(28462,'Dominique Bettenfeld'),(28463,'Jean-Pierre Darroussin'),(28472,'Adam Garcia'),(28477,'Jonathan Aris'),(28478,'Christian McKay'),(28482,'Peter Copley'),(28483,'Sara Dee'),(28485,'Steve Pemberton'),(28496,'Paula Turnbull'),(28497,'William Diver'),(28500,'David Gallart'),(28511,'Luis Zahera'),(28513,'Rachel Lascar'),(28514,'u00c0lex Brendemu00fchl'),(28586,'Frank Christian Marx'),(28605,'Markus Schleinzer'),(28632,'Ben Cosgrove'),(28633,'Richard Jenkins'),(28634,'Steve Sandvoss'),(28635,'John Jacobs'),(28636,'Andrew Laws'),(28637,'Andy Richter'),(28638,'David Koechner'),(28639,'Carmen Electra'),(28640,'Molly Shannon'),(28641,'Terence Stamp'),(28642,'Wang Hui-Ling'),(28657,'Matthew Fox'),(28660,'Emilie de Ravin'),(28672,'Kambuzia Partovi'),(28676,'Franu00e7oise Bertin'),(28683,'Michel Dubois'),(28685,'Pierre Gamet'),(28686,'Gu00e9rard Lamps'),(28687,'Laurent Ott'),(28690,'Gu00e9rard Moulu00e9vrier'),(28715,'Aaron Spelling'),(28741,'Michael Rymer'),(28743,'John Lynch'),(28744,'Jacqueline McKenzie'),(28745,'Deborra-Lee Furness'),(28749,'Lucy Russell'),(28767,'June Carter Cash'),(28768,'Farrah Fawcett'),(28778,'Shirley Knight'),(28779,'Lupe Ontiveros'),(28780,'Mark Andrus'),(28781,'Christian Clavier'),(28782,'Monica Bellucci'),(28793,'Marie Bunel'),(28840,'Gary Young'),(28841,'Michael Ellis'),(28846,'Alexander Skarsgu00e5rd'),(28847,'Rafe Spall'),(28848,'Sean Pertwee'),(28853,'Anton Rodgers'),(28857,'Ju00e9ru00f4me Kircher'),(28862,'Debra Echard'),(28863,'Renoly Santiago'),(28864,'Landry Allbright'),(28866,'Mitch Glazer'),(28869,'Mike Realba'),(28870,'Karl Pruner'),(28871,'Eugene Lipinski'),(28896,'Jack Wouterse'),(28897,'Julie T. Wallace'),(28898,'Michael Radford'),(28901,'Colin Vaines'),(28902,'Gregory Widen'),(28904,'Hugh Wilson'),(28907,'Ivana Trump'),(28921,'Sonja B. Zimmer'),(28925,'Joachim Gru00fcninger'),(28933,'Jean Stapleton'),(28947,'Christopher L. Stone'),(28950,'Lisa Eichhorn'),(28951,'Mehmet Yilmaz'),(28959,'Michael Antoniou'),(28970,'Mary Shelley'),(28974,'Damon Lindelof'),(28977,'Bryan Burk'),(29009,'Ken Kwapis'),(29010,'Kim Barker'),(29011,'Tim Rasmussen'),(29012,'Vince Di Meglio'),(29014,'Nick Osborne'),(29015,'Robert Simonds'),(29016,'David Thwaites'),(29017,'Kim Zubick'),(29018,'Dana Goldberg'),(29019,'Gae S. Buckley'),(29020,'Eric Christian Olsen'),(29021,'Roxanne Hart'),(29051,'L. Scott Caldwell'),(29054,'Michelle Arthur'),(29058,'Roger Bowles'),(29061,'Tiny Nicholls'),(29064,'Mike Lockey'),(29065,'Debra-Lee Davidson'),(29067,'Linda DeVetta'),(29068,'Ben Cross'),(29069,'Michael Jayston'),(29071,'Jeff Harding'),(29076,'Joshua Brody'),(29082,'Bruce Phillips'),(29085,'Michael Rumpf'),(29086,'Daryl Porter'),(29087,'Maree McDonald'),(29091,'Mia Sara'),(29092,'Bryan Brown'),(29094,'John Bach'),(29095,'Nicholas Hammond'),(29101,'Richu00e1rd Falk'),(29124,'Wolfgang Zilzer'),(29127,'John Loder'),(29129,'Georg John'),(29205,'Armand Leo'),(29206,'Garrett Grant'),(29207,'Daniel Silverberg'),(29208,'Erik Holmberg'),(29210,'Jody Levin'),(29211,'Jay Vinitsky'),(29213,'Joanna Moore'),(29214,'Anne Fletcher'),(29215,'Jamal Sims'),(29216,'Zachary Woodlee'),(29217,'Tony Gardner'),(29218,'Judi Cooper-Sealy'),(29219,'Dennis Davenport'),(29220,'Amanda Bynes'),(29221,'Brittany Snow'),(29222,'Zac Efron'),(29223,'Elijah Kelley'),(29224,'Nikki Blonsky'),(29225,'Taylor Parks'),(29226,'Julian Jarrold'),(29227,'Graham Broadbent'),(29228,'Robert Bernstein'),(29229,'Douglas Rae'),(29230,'Kevin Hood'),(29231,'Eigil Bryld'),(29233,'Veronica McAleer'),(29234,'Joe Anderson'),(29235,'Lucy Cohu'),(29236,'Anna Maxwell Martin'),(29237,'Leo Bill'),(29238,'Jessica Ashworth'),(29239,'Michael James Ford'),(29240,'Tom Vaughan-Lawlor'),(29258,'Bessie Love'),(29263,'Arthur Hoyt'),(29273,'Gilbert Roland'),(29274,'Leo White'),(29275,'Sidney Cutner'),(29276,'Howard Jackson'),(29280,'Joseph Kish'),(29283,'Richard Haydn'),(29285,'Jay Novello'),(29296,'Paul Beeson'),(29305,'Bill Nagy'),(29306,'John Paul'),(29307,'Michael Medwin'),(29312,'Christopher George'),(29313,'Dean Jagger'),(29333,'Roy Taylor'),(29341,'Harry Cohn'),(29342,'Noel Marshall'),(29345,'Stephen Goosson'),(29352,'Artie Butler'),(29363,'Robert Middleton'),(29364,'Billy Sands'),(29369,'Melanie Griffith'),(29372,'Jerry Marshall'),(29373,'Kyalo Mativo'),(29374,'Rick Glassey'),(29375,'Steve Miller'),(29376,'Terrence P. Minogue'),(29377,'Vincent Prentice'),(29378,'Daniel Pyne'),(29380,'Steven Ramirez'),(29382,'Carl Lumbly'),(29384,'Sheila McCarthy'),(29385,'James Staley'),(29400,'Jeff Kirschenbaum'),(29401,'Donna Langley'),(29402,'Henry Morrison'),(29403,'Andrew R. Tennenbaum'),(29404,'Andrew R. Tennenbaum'),(29405,'Christopher Rouse'),(29406,'Joey Ansah'),(29407,'Trevor Eve'),(29408,'Ute Lemper'),(29412,'Eric MacLennan'),(29418,'Simone Ireland'),(29419,'Vanessa Pereira'),(29426,'John Phillip Law'),(29427,'Terry-Thomas'),(29433,'Lucio Fulci'),(29436,'Peter Erskine'),(29444,'Marnie Mosiman'),(29445,'Ethan Phillips'),(29446,'Armin Shimerman'),(29447,'Bob Keen'),(29458,'Erik Gosselin'),(29459,'Patrick Bergin'),(29461,'Julian Casey'),(29462,'David Nerman'),(29463,'Michael Sinelnikoff'),(29466,'Russell Yuen'),(29468,'James Bradford'),(29470,'Martin Sims'),(29475,'Troy Clarke'),(29478,'Rachel Blakely'),(29483,'Adrian Hodges'),(29485,'Christopher Hall'),(29486,'Rob Lane'),(29493,'Tim Brooke-Taylor'),(29496,'Marc Behm'),(29508,'Barret Oliver'),(29509,'Noah Hathaway'),(29512,'Gerald McRaney'),(29522,'Ronald Colman'),(29524,'Rand Ravich'),(29525,'Andrew Lazar'),(29526,'Rob Harris'),(29527,'Tom Ward'),(29528,'Matthew Rhys'),(29529,'Larry Wilson'),(29533,'Robert Louis Stevenson'),(29536,'Hobart Bosworth'),(29538,'John Victor-Smith'),(29541,'Sybil Danning'),(29545,'Claire Bloom'),(29553,'Horst von Harbou'),(29579,'Charles Lane'),(29580,'Brandon Hurst'),(29600,'Holmes Herbert'),(29601,'Halliwell Hobbes'),(29605,'Mikael Hu00e5fstru00f6m'),(29606,'Matt Greenberg'),(29608,'Jake Myers'),(29609,'Stuart Kearns'),(29610,'Karl Derrick'),(29611,'Paul Corbould'),(29612,'Jasmine Jessica Anthony'),(29613,'Alexandra Silber'),(29614,'Emily Harvey'),(29615,'Noah Lee Margetts'),(29616,'William Armstrong'),(29617,'Paul Birchard'),(29618,'John Lee Mahin'),(29626,'William Tannen'),(29635,'George Robinson'),(29637,'Bernard Herzbrun'),(29643,'Craig Stevens'),(29648,'Dan Curtis'),(29651,'Trevor Williams'),(29654,'Dick Smith'),(29655,'Leo Genn'),(29663,'Wolf Mankowitz'),(29685,'Kurt Fuller'),(29686,'Stel Pavlou'),(29687,'Malcolm Kohll'),(29688,'Seaton McLean'),(29689,'David Pupkewitz'),(29691,'Headrillaz'),(29692,'Poon Hang-Sang'),(29693,'David Wu'),(29694,'Kate Carin'),(29695,'Anita Gupta'),(29696,'Duncan Wheeler'),(29697,'Nigel Whitmey'),(29698,'Paul Barber'),(29699,'Ricky Tomlinson'),(29700,'David Winters'),(29705,'Jerry Belson'),(29706,'Harvey Miller'),(29707,'Barry De Vorzon'),(29708,'Judith Weiner'),(29709,'Mark Blankfield'),(29710,'Bess Armstrong'),(29711,'Krista Errickson'),(29712,'Tim Thomerson'),(29713,'Michael McGuire'),(29714,'Neil Hunt'),(29715,'David Swift'),(29716,'Jack Finney'),(29717,'Dorothy Provine'),(29719,'Edward Andrews'),(29745,'Frank Ray Perilli'),(29747,'John Huneck'),(29754,'Jon Van Ness'),(29768,'Howard Kunin'),(29769,'David Copping'),(29771,'James Lapidus'),(29774,'Dan Lauria'),(29775,'Bobby Hosea'),(29783,'Fred Durst'),(29785,'Christopher Bram'),(29787,'Mark R. Harris'),(29788,'Richard Sherman'),(29789,'Jim Samson'),(29790,'Bruce Finlayson'),(29791,'Lynn Redgrave'),(29792,'David Dukes'),(29794,'Mark Kiely'),(29795,'Jack Plotnick'),(29796,'Rosalind Ayres'),(29797,'Matt McKenzie'),(29798,'Franz Schubert'),(29800,'Dorothy Jeakins'),(29801,'William Tuttle'),(29802,'Marty Feldman'),(29803,'Madeline Kahn'),(29810,'Bernhard Kaun'),(29814,'Mae Clarke'),(29824,'Dorissa Berninger'),(29830,'Mukhtar Mirzakeyev'),(29832,'Viktor Verzhbitskiy'),(29837,'Aleksei Maklakov'),(29838,'Aleksandr Samoylenko'),(29839,'Yuriy Kutsenko'),(29843,'Rimma Markova'),(29847,'Mariya Mironova'),(29848,'Anna Dubrovskaya'),(29856,'John Veitch'),(29857,'Tim Harvey'),(29858,'Desmond Crowe'),(29859,'Richard Briers'),(29861,'Jay Tavare'),(29862,'Jim Beaver'),(29867,'Martin Atkinson'),(29868,'Raymond Hughes'),(29869,'Alan Boyle'),(29872,'Ronald Leigh-Hunt'),(29875,'Andrew Braunsberg'),(29878,'Dmitry Chepovetsky'),(29884,'Brian Degas'),(29885,'Tudor Gates'),(29888,'Flavio Mogherini'),(29890,'Victor Canning'),(29895,'Alfio Contini'),(29900,'Jay Adams'),(29901,'Jack Bernstein'),(29903,'Peter Finch'),(29904,'Juliu00e1n Mateos'),(29909,'Nigel Green'),(29915,'Joe Dallesandro'),(29916,'Monique van Vooren'),(29922,'Marcus Nispel'),(29929,'Leo Corey Castellano'),(29930,'Ivana Miliu010deviu0107'),(29931,'Deborah Duke'),(29932,'Ann Mahoney'),(29933,'Deneen Tyler'),(29934,'Brett Rice'),(29940,'Gillian Hawser'),(29941,'Matthew Lessall'),(29942,'Lenka Stefankovicova'),(29943,'Jonathan A. Carlson'),(29945,'Monika Hilmerovu00e1'),(29950,'Robert Harron'),(29951,'F.A. Turner'),(29952,'Sam De Grasse'),(29953,'Vera Lewis'),(29954,'Lillian Langdon'),(29955,'Olga Grey'),(29956,'Erich von Ritzau'),(29957,'Margery Wilson'),(29958,'Ruth Handforth'),(29959,'Alfred Paget'),(29960,'Seena Owen'),(29961,'Carl Stockdale'),(29962,'King Vidor'),(29964,'Harry Behn'),(29965,'Joseph Farnham'),(29966,'Laurence Stallings'),(29967,'William Axt'),(29968,'Maurice Baron'),(29969,'David Mendoza'),(29970,'John Arnold'),(29971,'Hugh Wynn'),(29973,'Renu00e9e Adoru00e9e'),(29974,'Claire McDowell'),(29975,'Claire Adams'),(29976,'Robert Ober'),(29977,'Tom O\'Brien'),(29978,'Karl Dane'),(29979,'Kathleen Key'),(29980,'Rosita Marstini'),(29981,'Julanne Johnston'),(29984,'A. Arnold Gillespie'),(29986,'James Murray'),(29987,'Bert Roach'),(29993,'Bradford Ropes'),(29994,'Rian James'),(29995,'James Seymour'),(29996,'Whitney Bolton'),(29997,'Thomas Pratt'),(29998,'Frank Ware'),(29999,'Warner Baxter'),(30000,'Bebe Daniels'),(30001,'Ruby Keeler'),(30002,'Guy Kibbee'),(30003,'Ginger Rogers'),(30004,'Ned Sparks'),(30005,'Allen Jenkins'),(30006,'Edward Nugent'),(30007,'Robert McWade'),(30017,'Charles Middleton'),(30029,'Greg Finley'),(30032,'Dan Woren'),(30034,'Gilles Fortier'),(30035,'Terence Alexander'),(30037,'Michael Cochrane'),(30044,'Bo Svenson'),(30046,'Philip Bourneuf'),(30050,'Brian Avery'),(30051,'Willie Aames'),(30053,'David Michael Latt'),(30057,'Steven Parker'),(30059,'William Clevinger'),(30065,'Eva Lohse'),(30074,'Burt Brinckerhoff'),(30081,'Neill Gorton'),(30082,'Benedict Wong'),(30083,'Lindsay Duncan'),(30085,'Michael Wildman'),(30086,'Julian Bleach'),(30096,'Catherine Rabett'),(30103,'Robert Arthur'),(30106,'Hilyard M. Brown'),(30107,'Oliver Emert'),(30114,'Jane Randolph'),(30115,'Frank Ferguson'),(30117,'Bobby Barber'),(30119,'Alfie Bass'),(30123,'Lee Grant'),(30125,'Edward Mulhare'),(30126,'Flora Robson'),(30136,'Leyland Hodgson'),(30142,'George Pravda'),(30144,'Don Barclay'),(30148,'Van Ling'),(30149,'Mikael Salomon'),(30151,'Leo Burmester'),(30154,'Gene Havlick'),(30155,'Claudette Colbert'),(30156,'Walter Connolly'),(30157,'Roscoe Karns'),(30158,'Jameson Thomas'),(30159,'Blanche Friderici'),(30160,'Charles C. Wilson'),(30161,'Donnie Dunagan'),(30163,'Michael Mark'),(30165,'Mark Sandrich'),(30167,'Su00e1ndor Faragu00f3'),(30170,'Ku00e1roly Nu00f3ti'),(30174,'Pandro S. Berman'),(30176,'Irving Berlin'),(30177,'David Abel'),(30179,'William Hamilton'),(30181,'Fred Astaire'),(30183,'Erik Rhodes'),(30184,'Eric Blore'),(30185,'Helen Broderick'),(30192,'Ira H. Morgan'),(30194,'Tiny Sandford'),(30195,'Chester Conklin'),(30196,'Stanley Blystone'),(30197,'Richard Alexander'),(30198,'Cecil Reynolds'),(30199,'Mira McKinney'),(30200,'Murdock MacQuarrie'),(30201,'Wilfred Lucas'),(30202,'Edward LeSaint'),(30203,'Fred Malatesta'),(30204,'Sammy Stein'),(30205,'Juana Sutton'),(30206,'Ted Oliver'),(30207,'Lewis R. Foster'),(30208,'Sidney Buchman'),(30210,'Jean Arthur'),(30211,'Edward Arnold'),(30212,'Harry Carey'),(30214,'Ruth Donnelly'),(30215,'Grant Mitchell'),(30216,'Pierre Watkin'),(30217,'Dick Elliott'),(30218,'Billy Watson'),(30219,'Delmar Watson'),(30221,'Harry Watson'),(30222,'Garry Watson'),(30223,'Larry Simms'),(30224,'Emily Brontu00eb'),(30228,'Cecil Kellaway'),(30236,'Cliff Edwards'),(30240,'Frank Orth'),(30243,'Pat West'),(30245,'Tamara Odintsova'),(30246,'Valeri Viktorov'),(30247,'Varvara Avdyushko'),(30256,'John Leipold'),(30257,'Leo Shuken'),(30259,'Stuart Gilmore'),(30262,'Robert Greig'),(30263,'Dora Clement'),(30267,'Ray Heindorf'),(30268,'Heinz Roemheld'),(30279,'Minor Watson'),(30280,'Chester Clute'),(30288,'Joseph MacDonald'),(30290,'Victor Mature'),(30292,'Grant Withers'),(30293,'Arthur Rosson'),(30294,'Borden Chase'),(30295,'Charles Schnee'),(30296,'Joanne Dru'),(30297,'Noah Beery, Jr.'),(30298,'Chief Yowlachie'),(30299,'Hank Worden'),(30300,'Ray Hyke'),(30303,'Bruce Bennett'),(30308,'Margarito Luna'),(30313,'David Katznelson'),(30315,'Richard Armitage'),(30316,'Shaun Parkes'),(30319,'Tom Payne'),(30320,'Annette Badland'),(30323,'Tim Faraday'),(30328,'Martin Savage'),(30335,'Rosalie Clayton'),(30338,'Laura Schalker'),(30340,'Martin Harrison'),(30364,'Tracey Ullman'),(30365,'Michael Caton-Jones'),(30366,'Victoria Jackson'),(30367,'Alisan Porter'),(30368,'Jon Kasdan'),(30369,'Michelle Joyner'),(30371,'Christine Haupt'),(30383,'Michael Grillo'),(30384,'Jeffrey Lurie'),(30391,'Ben Nye Jr.'),(30394,'Marlene D. Williams'),(30397,'Valery Todorovsky'),(30404,'Elena Yakovleva'),(30416,'Peter Coe'),(30417,'George Zucco'),(30421,'Barry Warren'),(30422,'Jack Smight'),(30428,'Michael Sarrazin'),(30429,'Stan Collymore'),(30430,'Indira Varma'),(30431,'Heathcote Williams'),(30432,'Jan Chappell'),(30433,'Neil Maskell'),(30434,'Ellen Thomas'),(30435,'Flora Montgomery'),(30436,'Kata Dobu00f3'),(30437,'Iain Robertson'),(30438,'Charlie Simpson'),(30439,'Danielle Lydon'),(30440,'Christopher Brand'),(30441,'Charlotte Purton'),(30442,'Adam Allfrey'),(30443,'Mark Sangster'),(30444,'Tim Berrington'),(30445,'Vee Vimolmal'),(30446,'Simon Lenagan'),(30447,'Clair Tebbut'),(30448,'Aisling O\'Neill'),(30449,'Alexandra Staden'),(30450,'Peter Rnic'),(30451,'Martin Heathcote'),(30452,'Keith How'),(30454,'Robyn Cooper'),(30455,'Robert Dearle'),(30456,'Timo Gilbert'),(30457,'Leora Barish'),(30458,'Henry Bean'),(30459,'Gyula Pados'),(30460,'Istvu00e1n Kiru00e1ly'),(30461,'John Scott'),(30463,'Paul Inglis'),(30478,'J.B. White'),(30485,'CCH Pounder'),(30487,'Peter Crombie'),(30488,'Miguel Sandoval'),(30489,'Karen Austin'),(30491,'Frank S. Nugent'),(30495,'Victor McLaglen'),(30496,'Francis Ford'),(30501,'Sean McClory'),(30511,'Brandon De Wilde'),(30512,'Edgar Buchanan'),(30515,'Ray Spiker'),(30523,'Moss Hart'),(30527,'Charles Bickford'),(30530,'Irving Bacon'),(30537,'James Gleason'),(30551,'Jeffrey Hunter'),(30560,'Patrick Wayne'),(30562,'Kazuo Yamada'),(30570,'James Leo Herlihy'),(30571,'Jerome Hellman'),(30576,'Shane Briant'),(30577,'Madeline Smith'),(30578,'Adam Holender'),(30580,'Philip Smith'),(30585,'Brenda Vaccaro'),(30592,'Martin Starger'),(30598,'Myriam Vu00e9zina'),(30601,'Allan F. Nicholls'),(30605,'Paul Lohmann'),(30606,'Dennis M. Hill'),(30609,'Polly Shannon'),(30613,'Keith Carradine'),(30614,'Ryan Gosling'),(30615,'Robert DoQui'),(30617,'Jason Cavalier'),(30618,'Barbara Harris'),(30619,'David Hayward'),(30621,'Bert Remsen'),(30669,'Don Banks'),(30676,'Howard Goorney'),(30686,'J. Carrol Naish'),(30694,'Ross Bagdasarian, Jr.'),(30695,'Mary Kay Bergman'),(30696,'Janice Karman'),(30697,'Jim Meskimen'),(30705,'Michael Gwynn'),(30706,'Lionel Jeffries'),(30709,'John Stuart'),(30710,'J. J. Feild'),(30711,'Kenneth Lonergan'),(30712,'Maurizio Grimaldi'),(30713,'Michael Ovitz'),(30714,'Rick Yorn'),(30715,'Terrence Malick'),(30720,'Suzanne Flon'),(30723,'Sidney Sheldon'),(30724,'Laird Koenig'),(30737,'Bolek Polu00edvka'),(30743,'Milan Lasica'),(30769,'James Hayter'),(30778,'Tom Tryon'),(30829,'Mario Van Riel'),(30844,'John Lupton'),(30847,'Steven Geray'),(30848,'Rayford Barnes'),(30856,'Tom Fraser'),(30861,'Leslie Jordan'),(30864,'Hamilton Mitchell'),(30865,'Lou Cutell'),(30870,'Dave Payne'),(30871,'Ryeland Allison'),(30872,'Roger Neill'),(30874,'Donald Paul Pemrick'),(30876,'Dean E. Fronk'),(30881,'Justin Walker'),(30882,'Christine Lakin'),(30887,'Mario Francini'),(30904,'Samuel Z. Arkoff'),(30907,'Susumu Fujita'),(30918,'William D. Gordean'),(30922,'Sol Kaplan'),(30928,'Michael Callan'),(30934,'Ernst Schru00f6der'),(30936,'Karl John'),(30948,'Gerald Soucie'),(30963,'Luis Barboo'),(30979,'Norbert Schiller'),(30987,'George Mitchell'),(30994,'Saul Midwall'),(30998,'Marilyn Hanold'),(30999,'Nancy Marshall'),(31004,'Tone Loc'),(31005,'Noble Willingham'),(31006,'Troy Evans'),(31007,'John Capodice'),(31011,'Andrea Occhipinti'),(31017,'Felix Salten'),(31021,'Edward Plumb'),(31024,'Betty Thomas'),(31025,'Nat Mauldin'),(31026,'Larry Levin'),(31027,'Russell Boyd'),(31028,'Richard Schiff'),(31029,'Kristen Wilson'),(31031,'Kyla Pratt'),(31032,'Steven Gilborn'),(31033,'Oxide Pang Chun'),(31061,'William Makepeace Thackeray'),(31067,'Frank Tuttle'),(31069,'Dorothy Kingsley'),(31070,'Ryan O\'Neal'),(31071,'Marisa Berenson'),(31074,'Kinji Fukasaku'),(31082,'Ai Maeda'),(31093,'Yvette Kaplan'),(31094,'Van Toffler'),(31095,'John Andrews'),(31096,'Winnie Chaffee'),(31113,'Thomas Hedley Jr.'),(31114,'Lilia Skala'),(31115,'Kyle T. Heffner'),(31116,'Sunny Johnson'),(31117,'Philip Bruns'),(31118,'Don Brockett'),(31119,'Sylvain White'),(31120,'Robert Adetuyi'),(31121,'William Packer'),(31122,'Carl Clifford'),(31123,'Rob Hardy'),(31124,'Tim Boland'),(31125,'Sam Retzer'),(31126,'Scott Kevan'),(31127,'David Checel'),(31128,'Twinkie Byrd'),(31130,'Joseph Litsch'),(31131,'Keith G. Lewis'),(31132,'Columbus Short'),(31133,'Ne-Yo'),(31134,'Darrin Henson'),(31135,'Jermaine Williams'),(31136,'Chris Brown'),(31137,'Brian J. White'),(31138,'Valarie Pettiford'),(31139,'Allan Louis'),(31140,'Mary Stuart Masterson'),(31141,'Perry Howze'),(31142,'Randy Howze'),(31143,'Mike Lobell'),(31162,'Daran Norris'),(31164,'Adewale Akinnuoye-Agbaje'),(31166,'Henry Ian Cusick'),(31167,'Elizabeth Mitchell'),(31168,'Kiele Sanchez'),(31171,'Julie Bowen'),(31172,'Zack Grobler'),(31175,'John S. Bartley'),(31178,'David Preston'),(31180,'John Dunning'),(31185,'Teri Austin'),(31187,'Catherine Disher'),(31206,'Clay Campbell'),(31207,'Helen Hunt'),(31208,'Don Megowan'),(31209,'Ludwig Stu00f6ssel'),(31210,'Richard Bull'),(31211,'Clive Barker'),(31242,'Alison Lees-Taylor'),(31261,'Gary Conway'),(31266,'Claudia Bryar'),(31268,'Larry Fessenden'),(31270,'Rachael Horovitz'),(31282,'Richard Topol'),(31293,'Derek Holding'),(31294,'Mary Peach'),(31296,'Norman Wooland'),(31307,'Michael F. Blake'),(31309,'Hugh M. Hefner'),(31321,'Jorge Russek'),(31345,'Adolfo Cofiu00f1o'),(31353,'Sheldon Allman'),(31362,'Ian Bohen'),(31364,'Sarah Douglas'),(31365,'John Kassir'),(31366,'Jimmie Walker'),(31367,'Anthony Crivello'),(31368,'Deron McBee'),(31383,'Caroline Dhavernas'),(31384,'Jordi Mollu00e0'),(31387,'Yorick van Wageningen'),(31391,'Barbara Tarbuck'),(31402,'Manu Fullola'),(31422,'Ivan Massaguu00e9'),(31431,'Nigel Terry'),(31437,'Chris Wyatt'),(31440,'Kim Stanley'),(31444,'Maren Kroymann'),(31467,'William Ragsdale'),(31471,'Patrick Richwood'),(31493,'Alex Cox'),(31497,'John Cromwell'),(31498,'Paddy Chayefsky'),(31501,'Arthur J. Ornitz'),(31503,'Bert Freed'),(31504,'Joan Copeland'),(31506,'Gerald Hiken'),(31507,'Rose Abdoo'),(31508,'Reed Diamond'),(31510,'Helen Slayton-Hughes'),(31511,'Grant Heslov'),(31512,'Robert John Burke'),(31513,'Dianne Reeves'),(31514,'Peter Jacobson'),(31515,'Mark Cuban'),(31516,'Victor Hadida'),(31518,'Chris Salvaterra'),(31519,'Jeff Skoll'),(31520,'Todd Wagner'),(31528,'Wayne Pu00e9re'),(31531,'John DiMaggio'),(31532,'Josh Hopkins'),(31533,'Allan Kolman'),(31534,'Marcus Giamatti'),(31535,'Melissa McBride'),(31549,'Phil LaMarr'),(31556,'Sheryl Blum'),(31561,'Scott Shaw'),(31581,'Robin Ward'),(31621,'Jeff Burr'),(31625,'Benjamin Carr'),(31627,'Viorel Sergovici'),(31631,'Perry Bullington'),(31633,'Jaason Simmons'),(31639,'Claudiu Trandafir'),(31646,'Michael Browning'),(31647,'Garcelle Beauvais'),(31648,'Dragan Miu0107anoviu0107'),(31649,'Brooke Smith'),(31650,'DeVone Lawson Jr.'),(31651,'Wills Robbins'),(31654,'Chris Smith'),(31663,'Alexander Fehling'),(31702,'Hardie Albright'),(31703,'Stan Alexander'),(31704,'Peter Behn'),(31705,'Sam Edwards'),(31707,'Tim Davis'),(31708,'Michael Birnbaum'),(31709,'Michele Berk'),(31710,'David Hoberman'),(31711,'Troy Garity'),(31712,'William Converse-Roberts'),(31713,'Bru00edan F. O\'Byrne'),(31714,'Stacey Travis'),(31715,'Azura Skye'),(31716,'Peggy Miley'),(31717,'January Jones'),(31718,'Frank Middlemass'),(31719,'Arthur O\'Sullivan'),(31720,'Gay Hamilton'),(31721,'Marie Kean'),(31722,'Murray Melvin'),(31723,'Billy Boyle'),(31737,'Lucy Davenport'),(31739,'Oliver Chris'),(31779,'Donald O\'Brien'),(31780,'Cinzia Monreale'),(31837,'Dane Cook'),(31838,'Danielle Panabaker'),(31839,'Ruben Santiago-Hudson'),(31841,'Matt Schulze'),(31843,'Ranald MacDougall'),(31852,'Mino Roli'),(31856,'Brian J. Breheny'),(31857,'Michael Hamlyn'),(31858,'Sue Blainey'),(31859,'Dmitriy Martynov'),(31861,'Anna Slyusareva'),(31896,'Brett Halsey'),(31899,'Ilya Lagutenko'),(31903,'Henry Winkler'),(31906,'David Geddes'),(31908,'Tricia Cameron'),(31915,'Mark Intravartolo'),(31921,'Sophie Ward'),(31923,'Oliver Ford Davies'),(31924,'Geoffrey Beevers'),(31925,'Hugh Quarshie'),(31929,'Thomas Hardy'),(31931,'Malcolm Cooke'),(31937,'Frank Ernst'),(31951,'Pauline Melville'),(31960,'Zlatko Buriu0107'),(31961,'Damon Younger'),(31967,'Rowland Leigh'),(31969,'Lionel Banks'),(32017,'Didier Lavergne'),(32021,'Karl Michael Vogler'),(32029,'Bill Sage'),(32030,'Guinevere Turner'),(32031,'Stephen Bogaert'),(32032,'Monika Meier'),(32033,'Krista Sutton'),(32034,'Christian Halsey Solomon'),(32035,'Edward R. Pressman'),(32036,'Gideon Ponte'),(32037,'Jeanne Develle'),(32041,'William Russell'),(32048,'Enrico Medioli'),(32049,'Dieter Geissler'),(32058,'Helmut Berger'),(32067,'Mark Burns'),(32083,'Christopher Frank'),(32085,'Lu00e9o L. Fuchs'),(32092,'Michel Robin'),(32094,'Katia Tchenko'),(32097,'Walter Wottitz'),(32099,'Jean-Max Guu00e9rin'),(32106,'Rose Valland'),(32107,'Frank Davis'),(32108,'Albert Husson'),(32109,'Jules Bricken'),(32110,'Gabriel Rongier'),(32111,'Georges Bouban'),(32112,'Charles Millot'),(32119,'Howard Marion-Crawford'),(32121,'Manfred R. Ku00f6hler'),(32125,'Stanley Frazen'),(32130,'Ricardo Palacios'),(32134,'Charles Vidor'),(32138,'Jean Hersholt'),(32162,'Clu00e9ment Harari'),(32192,'Olaf Hytten'),(32193,'Tom Chatterton'),(32195,'Lal Chand Mehra'),(32197,'Michael P. Flannigan'),(32200,'Jeremy Stanbridge'),(32201,'Dominique Fauquet-Lemaitre'),(32202,'Leah Cairns'),(32203,'Stephen Moyer'),(32204,'Christopher Redman'),(32205,'Brendan Fletcher'),(32224,'Jason Lewis'),(32225,'Lindsay Crouse'),(32233,'Tommy Pallotta'),(32234,'Graham Reynolds'),(32235,'Shane F. Kelly'),(32236,'Bruce Curtis'),(32237,'Joaquin A. Morin'),(32238,'Mitch Baker'),(32239,'Steven Chester Prince'),(32240,'Natasha Valdez'),(32241,'Angela Rawna'),(32242,'Chamblee Ferguson'),(32243,'Melody Chase'),(32248,'Michelle Duncan'),(32257,'Marshall Leviten'),(32263,'Morgan Kennedy'),(32266,'Darren Evans'),(32277,'Geoff Murphy'),(32278,'Matt Reeves'),(32279,'Carol Winstead Wood'),(32280,'Gandhi Bob Arrollo'),(32281,'Margaret E. Elliott'),(32282,'Mary L. Mastro'),(32283,'Jef Simons'),(32284,'Ken Wensevic'),(32285,'Shelley Woodhouse'),(32286,'Patrick Kilpatrick'),(32287,'Scott Sowers'),(32288,'Afifi Alaouie'),(32289,'Andy Romano'),(32290,'Brenda Bakke'),(32291,'Sandra Taylor'),(32293,'Jean Bourgoin'),(32300,'Johnny Harris'),(32312,'Ugo Tognazzi'),(32328,'Bart Burns'),(32334,'Mohammed Afzal'),(32335,'Mushtaq Khan'),(32336,'Daud Khan'),(32337,'Telal Saeed'),(32338,'Tipu Taheer'),(32340,'Kamel Krifa'),(32344,'Lee Solomon'),(32347,'John Altman'),(32349,'Charles Wood'),(32350,'Franco Fumagalli'),(32352,'Desideria Corridoni'),(32353,'Maria Teresa Corridoni'),(32354,'Hayat Ouled Dahhou'),(32355,'Zoltan Elek'),(32357,'Nicholas Farrell'),(32358,'Ana Sofrenoviu0107'),(32360,'Joe Montana'),(32362,'Jon Bon Jovi'),(32363,'Will Estes'),(32364,'Bruno Cremer'),(32368,'Pierre Semmler'),(32375,'Mario Monicelli'),(32382,'Mario Garbuglia'),(32383,'Christopher Gore'),(32384,'Eddie Barth'),(32389,'Boyd Gaines'),(32390,'Albert Hague'),(32391,'Tresa Hughes'),(32393,'Paul McCrane'),(32394,'Anne Meara'),(32395,'Debbie Allen'),(32396,'Richard Belzer'),(32400,'Jeremy Ritzer'),(32403,'Geoffrey Kirkland'),(32427,'W.S. Van Dyke'),(32431,'Minna Gombell'),(32434,'William Henry'),(32450,'Peter Hinderthu00fcr'),(32451,'Martin Ruhe'),(32458,'Gabriel Mann'),(32462,'Karsten Bru00fcnig'),(32463,'Ru00e9mi Burah'),(32467,'Stephan Mallmann'),(32474,'Caroline Eselin Shaefer'),(32477,'Eric Bergren'),(32478,'Christopher De Vore'),(32479,'Bonnie Bartlett'),(32486,'Allen Payne'),(32487,'Robert L. Stevenson'),(32489,'Joseph A. Campayno'),(32490,'Alan D\'Angerio'),(32491,'J. Roy Helland'),(32492,'Francesca Paris'),(32494,'Robert Easton'),(32506,'Julien Hirsch'),(32511,'Marina Hands'),(32515,'Sava Lolov'),(32526,'Hellmut Lange'),(32532,'Brad Lewis'),(32535,'Jim Capobianco'),(32536,'Julius Callahan'),(32546,'Keith Kjornes'),(32554,'Wolfgang Bu00fcttner'),(32556,'Ronald Pickup'),(32559,'Scott Handy'),(32561,'Ceri Mears'),(32562,'Roberto Citran'),(32563,'Giovanni Capalbo'),(32569,'Kenneth Harper'),(32573,'Robert Robinson'),(32586,'Thomas Fritsch'),(32588,'Paul Rudnick'),(32590,'Victoria Spader'),(32591,'Joanne Schmidt'),(32592,'Ron Vawter'),(32593,'Steven Brill'),(32597,'Dylan McDermott'),(32598,'Daniel Franzese'),(32599,'Justin Hagan'),(32600,'John Stamos'),(32601,'James Harry'),(32602,'Jeremy Simmons'),(32603,'Teodoro Maniaci'),(32604,'Susan Shopmaker'),(32605,'Andrea Stanley'),(32606,'Susan Ogu'),(32607,'Jon Marcus'),(32608,'Brad Simpson'),(32640,'Bernt Amadeus Capra'),(32644,'Lizbeth Williamson'),(32646,'Monica Calhoun'),(32656,'Gary Lee Davis'),(32675,'Luigi Bonos'),(32676,'Vittorio Duse'),(32679,'Nello Pazzafini'),(32715,'Diana Ross'),(32717,'Johan Su00f6derqvist'),(32718,'Berry Gordy'),(32722,'Morten Hu00f8jbjerg'),(32733,'Harvey Kahn'),(32747,'Stephen Lang'),(32749,'Alex Diakun'),(32751,'Mark Acheson'),(32765,'Tony Richardson'),(32767,'John Byrum'),(32772,'Leon Ericksen'),(32774,'Beah Richards'),(32779,'Stu Phillips'),(32786,'John Davis Chandler'),(32790,'Ray Stark'),(32791,'Brian Keith'),(32793,'Susanna Kaysen'),(32794,'Lisa Loomer'),(32795,'Anna Hamilton Phelan'),(32796,'Kevin Tent'),(32797,'Arianne Phillips'),(32798,'Elisabeth Moss'),(32799,'Angela Bettis'),(32800,'Drucie McDaniel'),(32801,'Christina Myers'),(32802,'Travis Fine'),(32806,'Paul Carlin'),(32807,'John Surman'),(32808,'Alexander Morton'),(32810,'Brian Croucher'),(32813,'Dominique Othenin-Girard'),(32822,'Dominic Raacke'),(32823,'Gedeon Burkhard'),(32830,'Vu00edctor Israel'),(32840,'Christiane Rothe'),(32854,'Errol Trotman-Harewood'),(32865,'Andreas Schulz'),(32866,'Constantin von Jascheroff'),(32868,'Erik Canuel'),(32870,'Paul Ohl'),(32875,'Michel Corriveau'),(32877,'Jean-Franu00e7ois Bergeron'),(32879,'Jean Bu00e9cotte'),(32882,'Claudette B. Casavant'),(32883,'Johanne Gravel'),(32884,'Christine Larocque'),(32885,'Michel Cu00f4tu00e9'),(32887,'Christopher Heyerdahl'),(32888,'Nicolas Canuel'),(32890,'Su00e9bastien Huberdeau'),(32895,'Kevin James'),(32897,'Nicholas Turturro'),(32899,'Daryl Kass'),(32903,'Alan Au'),(32904,'David Swayze'),(32905,'Rachel Dratch'),(32907,'Nick Swardson'),(32948,'Bernard Bloch'),(32982,'Jane Austen'),(32983,'Douglas McGrath'),(32984,'Sarah Trevis'),(32985,'Michael Howells'),(32987,'Sam Riley'),(32990,'Sophie Thompson'),(32996,'Ray Rennahan'),(33004,'Preston Foster'),(33008,'Menahem Golan'),(33009,'Yoram Globus'),(33010,'David Gurfinkel'),(33016,'Terry Funk'),(33017,'Allan Graf'),(33025,'Howard C. Hickman'),(33032,'Phil Brown'),(33034,'Nell Craig'),(33036,'Roland Suso Richter'),(33040,'Nicolette Krebitz'),(33043,'Heinrich Schmieder'),(33045,'J. Michael Straczynski'),(33049,'Giacomo Baessato'),(33050,'Terry Howson'),(33051,'John B. Lowe'),(33052,'Luke Edwards'),(33053,'Chiara Zanni'),(33054,'Keith Gordon'),(33057,'Stevan Larner'),(33060,'Ramon Bieri'),(33064,'Henry Koster'),(33074,'Richard Ryen'),(33085,'George Bernard Shaw'),(33087,'Dimitri De Grunwald'),(33094,'Gary Sherman'),(33096,'Paul Maslansky'),(33103,'Peter Frampton'),(33104,'David Ladd'),(33108,'Clive Swift'),(33109,'James Cossins'),(33120,'Eva Kotthaus'),(33121,'Max Volkert Martens'),(33132,'Yoshiru00f4 Muraki'),(33142,'Gabriel Kosuth'),(33144,'Robert MacDonald'),(33147,'Viorel Ghenea'),(33153,'Pierrino Mascarino'),(33157,'Denis Mercier'),(33161,'Franu00e7ois Cluzet'),(33162,'Harry Belafonte'),(33163,'Claudia Schiffer'),(33174,'Archie Stout'),(33178,'George Chandler'),(33181,'Jimmy Smits'),(33182,'Jay Laga\'aia'),(33183,'David Bowers'),(33184,'Rohan Nichol'),(33185,'Jeremy Bulloch'),(33186,'Alan Ruscoe'),(33187,'Veronica Segura'),(33188,'Ron Falk'),(33189,'Daniel Logan'),(33190,'Pernilla August'),(33191,'Ayesha Dharker'),(33192,'Joel Edgerton'),(33193,'Trisha Biggar'),(33194,'Robin Gurland'),(33195,'Ian Gracie'),(33196,'Jake Lloyd'),(33197,'Ahmed Best'),(33198,'Andrew Secombe'),(33220,'Percy Herbert'),(33234,'Fernley Phillips'),(33235,'Logan Lerman'),(33236,'Alexander Ignon'),(33238,'Piotr Sobocinski'),(33239,'Brawley Nolte'),(33240,'Nancy Ticotin'),(33241,'Michael Gaston'),(33242,'Kevin Neil McCready'),(33243,'Allen Bernstein'),(33254,'Jim Gillespie'),(33255,'Lois Duncan'),(33256,'Stokely Chaffin'),(33257,'Catherine Adair'),(33259,'Jennifer Love Hewitt'),(33260,'Freddie Prinze Jr.'),(33261,'Vincent Korda'),(33262,'Stuart Greer'),(33269,'Dan Albright'),(33271,'Rasool J\'Han'),(33276,'Ernest Dryden'),(33277,'Isabel Jewell'),(33278,'H.B. Warner'),(33279,'Danny Cannon'),(33280,'Trey Callaway'),(33281,'William S. Beasley'),(33282,'Vernon Layton'),(33283,'Peck Prior'),(33284,'Daniel J. Lester'),(33285,'Brandy Norwood'),(33286,'Matthew Settle'),(33287,'Michael D. Weiss'),(33288,'Nancy Kirhoffer'),(33290,'Justin Caine Burnett'),(33293,'David Paetkau'),(33297,'Ben Easter'),(33299,'Don Shanks'),(33302,'Richard Bluck'),(33303,'Simon Bright'),(33305,'Nathan Meister'),(33306,'Peter Feeney'),(33308,'James Ashcroft'),(33309,'Mick Rose'),(33310,'Tandi Wright'),(33311,'Matthew Chamberlain'),(33312,'Erik Jendresen'),(33313,'Alex Raymond'),(33314,'Michael Allin'),(33315,'Richard Loncraine'),(33316,'David Nutter'),(33317,'David Leland'),(33319,'Howard Blake'),(33321,'Sam J. Jones'),(33322,'Melody Anderson'),(33323,'John Osborne'),(33336,'Gina Holden'),(33337,'Eric Johnson'),(33339,'Jody Racicot'),(33340,'John Walker'),(33341,'Rick Rosenthal'),(33343,'John Ralston'),(33348,'Adrian Holmes'),(33349,'Derick Martini'),(33350,'Carrie Genzel'),(33352,'Cory Monteith'),(33353,'Samuel Patrick Chu'),(33355,'Steve Bacic'),(33362,'Frank Shannon'),(33386,'Danny Arroyo'),(33394,'Maria Doyle Kennedy'),(33395,'Dearbhla Molloy'),(33397,'Sarah Bolger'),(33399,'Bronagh Gallagher'),(33403,'Mac McDonald'),(33404,'Ruby Wax'),(33409,'Mabel Rivera'),(33410,'Clara Segura'),(33411,'Tamar Novas'),(33412,'Alberto Amarilla'),(33430,'Jenny Wade'),(33431,'Eric Silver'),(33432,'Arija Bareikis'),(33433,'Scott Hicks'),(33434,'Carol Fuchs'),(33435,'Kerry Heysen'),(33436,'Sergio Aguero'),(33437,'Susan Cartsonis'),(33438,'Pip Karmel'),(33439,'Melissa Toth'),(33440,'Tracy Chevalier'),(33441,'Olivia Hetreed'),(33442,'Andy Paterson'),(33443,'Kate Evans'),(33444,'Ben van Os'),(33445,'Christina Schaffer'),(33446,'Cecile Heideman'),(33447,'Dien van Straalen'),(33448,'Judy Parfitt'),(33449,'Essie Davis'),(33450,'Joanna Scanlan'),(33451,'Gabrielle Reidy'),(33452,'Chris McHallem'),(33453,'Rollo Weeks'),(33454,'Damien Rice'),(33455,'Sue Chan'),(33456,'Molly Maginnis'),(33457,'Amy Aquino'),(33460,'Pierre Mignot'),(33462,'Franu00e7oise Dupertuis'),(33471,'Fosco Giachetti'),(33473,'Bruce Elliott'),(33479,'Henry Beckman'),(33485,'Ron Underwood'),(33486,'Irby Smith'),(33487,'Patricia Wettig'),(33488,'Helen Slater'),(33489,'Josh Mostel'),(33490,'Phill Lewis'),(33491,'Karla Tamburrelli'),(33492,'Robert Costanzo'),(33500,'Takayo Fischer'),(33501,'Mark Christopher Lawrence'),(33514,'Iris Yamashita'),(33515,'Kazunari Ninomiya'),(33516,'Tsuyoshi Ihara'),(33517,'Ryo Kase'),(33519,'Hiroshi Watanabe'),(33520,'Eijiro Ozaki'),(33521,'Lucas Elliot Eberl'),(33522,'Hiro Abe'),(33523,'Sonny Saito'),(33524,'Steve Santa Sekiyoshi'),(33525,'Kyle Eastwood'),(33526,'Michael Stevens'),(33527,'Adam Beach'),(33528,'Joseph Cross'),(33530,'Alessandro Mastrobuono'),(33531,'Brian Kimmet'),(33532,'Stark Sands'),(33533,'David Rasche'),(33541,'Mark Christopher'),(33542,'Harald Reinl'),(33544,'Walter Barnes'),(33560,'Ralph Ferraro'),(33574,'Robert V. Greene'),(33577,'Danny Nowak'),(33585,'Vince Murdocco'),(33589,'Bruce Scott'),(33611,'Jeff Rothberg'),(33612,'Alicia Keywan'),(33613,'Sheryl Lee Ralph'),(33614,'Barbara Hamilton'),(33618,'Thomas L. Callaway'),(33623,'Michael Saucedo'),(33624,'Tripp Vinson'),(33625,'Daniel B. Clancy'),(33644,'Paula Prentiss'),(33650,'Dolly Hall'),(33651,'Alexander Gruszynski'),(33653,'Sherry Stringfield'),(33654,'Breckin Meyer'),(33655,'Erika Alexander'),(33656,'Heather Matarazzo'),(33657,'Aemilia Robinson'),(33658,'Skipp Sudduth'),(33659,'John Hines'),(33660,'Barbara Radecki'),(33661,'Victor Sutherland'),(33662,'Coati Mundi'),(33663,'Donald Trump'),(33664,'Sophie Rousseau'),(33665,'Cindy Crawford'),(33666,'Georgina Grenville'),(33667,'Victor Browne'),(33668,'Noam Jenkins'),(33669,'Cameron Mathison'),(33670,'Jay Goede'),(33671,'Patrick Taylor'),(33673,'Jennifer M. Gentile'),(33676,'Kathleen Robertson'),(33678,'Maryse Alberti'),(33679,'Emily Woof'),(33680,'Ganiat Kasumu'),(33682,'Sandra Borgmann'),(33684,'Bono'),(33685,'Tatiana S. Riegel'),(33688,'Conrad Roberts'),(33689,'Charlayne Woodard'),(33702,'Ben Lewis'),(33705,'Edwin Stanley'),(33706,'Paul Butcher'),(33707,'David Stifel'),(33708,'Antonio Sabu00e0to'),(33711,'K.C. Fox'),(33712,'Carlos Carrasco'),(33713,'Jordan Lund'),(33721,'Paul N. Martin'),(33722,'Ray Danton'),(33741,'Rita Hayworth'),(33742,'Glenn Anders'),(33743,'Gus Schilling'),(33744,'Lou Merrill'),(33745,'Carl Frank'),(33746,'Evelyn Ellis'),(33775,'Jackie Moran'),(33793,'Jean-Claude Bercq'),(33807,'George Eastman'),(33820,'Franco Fantasia'),(33830,'Jacqueline Cambas'),(33832,'Greg Lewis'),(33834,'Ele Keats'),(33835,'Tim Hopper'),(33836,'Sean O\'Bryan'),(33841,'Leslie Stevens'),(33847,'Jean-Pierre Dorlu00e9ac'),(33850,'Erin Gray'),(33853,'Felix Silla'),(33885,'Bob Bender'),(33923,'Mel Blanc'),(33931,'Milan Chadima'),(33932,'Filipp Grammatikos'),(33933,'David Baxa'),(33934,'Derek Richardson'),(33935,'Eythor Gudjonsson'),(33936,'Barbara Nedeljakova'),(33937,'Jana Kaderabkova'),(33938,'Jan Vlasu00e1k'),(33939,'Lubomir Bukovy'),(33960,'Bud Thackery'),(34001,'Amanda Posey'),(34002,'Boo Hewerdine'),(34004,'Chris Seager'),(34005,'Karen Wakefield'),(34007,'Nik Powell'),(34008,'Emmett Vogan'),(34027,'Stefania Sandrelli'),(34047,'Nigel De Brulier'),(34050,'Allan Loeb'),(34051,'Sarah Dubrovsky'),(34053,'Ana Wagener'),(34060,'Lisa Coleman'),(34061,'Wendy Melvoin'),(34066,'Tawny Cypress'),(34070,'Nora Zehetner'),(34077,'Reggie Lanning'),(34086,'Johnny Arthur'),(34094,'Dale Van Sickel'),(34098,'Ernie Adams'),(34101,'Tom Steele'),(34110,'Oren Moverman'),(34111,'Marcus Carl Franklin'),(34119,'Lyle Talbot'),(34128,'Eric Wilton'),(34130,'John Doucette'),(34165,'Frank Ellis'),(34168,'Frank Hagney'),(34173,'Ben Oakland'),(34181,'Danny Mummert'),(34187,'Chuck Hamilton'),(34191,'Barry Markowitz'),(34192,'Stephen Mack'),(34193,'Linda Burton'),(34194,'Paul Edwards'),(34195,'Jayma Mays'),(34199,'Thomas Dekker'),(34200,'Sakina Jaffrey'),(34202,'Matt Lanter'),(34208,'Robert Middlemass'),(34209,'Olin Howland'),(34211,'Roy Gordon'),(34213,'Helen Jerome Eddy'),(34214,'Daisy'),(34218,'Jesse Alexander'),(34224,'Viola Lawrence'),(34225,'Robert Kalloch'),(34227,'Morris Stoloff'),(34228,'George Parrish'),(34238,'Harlan Briggs'),(34241,'Stanley Brown'),(34247,'Deirdre Quinn'),(34257,'Anthony Stewart Head'),(34259,'Jean-Yves Berteloot'),(34270,'Walter Soderling'),(34274,'Lisa Lackey'),(34277,'Thurston Hall'),(34279,'Will Wright'),(34286,'Chick Chandler'),(34287,'Bill Goodwin'),(34302,'Christoph Hagen Dittmann'),(34305,'Johannes Kobilke'),(34310,'Leo Arnaud'),(34315,'Adele Mara'),(34320,'Paul Harvey'),(34324,'Tom Kennedy'),(34333,'Arthur Loft'),(34336,'Laura Fattori'),(34337,'Randi Feinberg'),(34338,'Michael Jackman'),(34339,'Barbara Phillips Marco'),(34340,'Rick Schwartz'),(34344,'Walter Holscher'),(34353,'Nadja Bobyleva'),(34359,'Saul Chaplin'),(34362,'Fay Babcock'),(34367,'Jack Rice'),(34369,'Virginia Van Upp'),(34373,'Ryu00fbzu00f4 Kikushima'),(34374,'Kyu00f4ko Kagawa'),(34377,'Bokuzen Hidari'),(34380,'Asakazu Nakai'),(34395,'Kevin Chamberlin'),(34398,'Bill Fagerbakke'),(34402,'Edward Bernds'),(34403,'Alexander Steinert'),(34405,'Ludwig Donath'),(34407,'Rusty Schwimmer'),(34408,'Stana Katic'),(34412,'Herman N. Schoenbrun'),(34420,'Bobby Larson'),(34421,'George Tyne'),(34422,'Francis Pierlot'),(34423,'Ray Walker'),(34424,'Steve Benton'),(34427,'Vincent J. Farrar'),(34434,'Missy Peregrym'),(34437,'Adele Jergens'),(34447,'Douglas Wood'),(34448,'Dick Wessel'),(34449,'Ruth Terry'),(34453,'Kevin Bray'),(34457,'Ian Gomez'),(34467,'Wilbur Menefee'),(34469,'Mary Young'),(34472,'Jody Gilbert'),(34478,'Tony Anselmo'),(34481,'Matt Williams'),(34482,'Carmen Finestra'),(34483,'David McFadzean'),(34484,'Stephen A. Rotter'),(34485,'Lauren Holly'),(34486,'Ashley Johnson'),(34487,'Delta Burke'),(34488,'Diana Maria Riva'),(34489,'Eric Balfour'),(34490,'Sarah Paulson'),(34497,'Lloyd Corrigan'),(34502,'Kellan Lutz'),(34505,'Stanley Andrews'),(34508,'Edward Earle'),(34510,'William Monahan'),(34511,'Lisa Ellzey'),(34512,'Ivo Huu0161njak'),(34513,'John King'),(34515,'Velibor Topic'),(34517,'Trey Parker'),(34518,'Matt Stone'),(34519,'Kristen Miller'),(34520,'Masasa Moyo'),(34521,'Maurice LaMarche'),(34522,'Pam Brady'),(34523,'Anne Garefino'),(34524,'Frank C. Agnone II'),(34525,'Craig Abele'),(34526,'Fred Arbegast'),(34527,'Kiki Morris'),(34528,'Julie M. Anderson'),(34529,'Walter Anderson'),(34534,'Michael McDowell'),(34535,'Annie McEnroe'),(34536,'Maurice Page'),(34537,'Hugo Stanger'),(34538,'Rachel Mittelman'),(34540,'Peter Bucossi'),(34541,'David Shumbris'),(34542,'Mark Jacobson'),(34543,'Summer Phoenix'),(34544,'Joshua Harto'),(34545,'Rebecca Clarke'),(34546,'Mark Gatiss'),(34547,'Raj Ghatak'),(34548,'David Mark'),(34549,'Jack Pierce'),(34550,'Alan Stocks'),(34551,'Reece Shearsmith'),(34552,'J.J. Toba'),(34553,'Graham Hills'),(34554,'Graham Longhurst'),(34555,'Kelly Marshall'),(34584,'Jacques Franu00e7ois'),(34597,'Kevin McCarthy'),(34605,'Michel Peyrelon'),(34609,'Paul Bryar'),(34611,'Howard Zieff'),(34612,'Anna Chlumsky'),(34625,'Frank Wilcox'),(34652,'Danny Simon'),(34657,'Ray Barrett'),(34665,'Peter Robbins'),(34672,'David Elliot'),(34677,'Annie Cordy'),(34690,'Shigeru Ku00f4yama'),(34691,'John Spencer'),(34692,'Craig Bolotin'),(34693,'Stanley R. Jaffe'),(34694,'Julie Kirkham'),(34695,'Sherry Lansing'),(34696,'Yosuke Mizuno'),(34715,'James Nesbitt'),(34716,'Allan Gildea'),(34717,'Gerard Crossan'),(34718,'Mary Moulds'),(34719,'Carmel McCallion'),(34720,'Christopher Villiers'),(34721,'Larry Bishop'),(34735,'Loni Anderson'),(34737,'Pat Fraley'),(34740,'Edmund Goulding'),(34745,'Jimmy Durante'),(34746,'Zasu Pitts'),(34750,'Louise Carter'),(34759,'Sterling Holloway'),(34793,'Manuela Velasco'),(34837,'Jack Ingram'),(34839,'Kevin Gage'),(34840,'Miguel Pu00e9rez'),(34841,'Dan Ferro'),(34842,'Tony Amendola'),(34844,'Monet Mazur'),(34845,'Lola Glaudini'),(34846,'Jennifer Gimenez'),(34847,'Emma Roberts'),(34848,'Tracy Falco'),(34849,'Ted Demme'),(34851,'Bruce Porter'),(34854,'Jose Ludlow'),(34856,'Hillary Sherman'),(34857,'Joel Stillerman'),(34858,'Michael Z. Hanan'),(34859,'David Ensley'),(34870,'Susan Visser'),(34872,'Eric van der Donk'),(34876,'Rebecca van Unen'),(34882,'Mark Sourian'),(34883,'Jeremy Kramer'),(34884,'Barbara Kelly'),(34885,'Pippa Harris'),(34887,'Geoff Wallace'),(34891,'Mike Johnson'),(34892,'Pamela Pettler'),(34893,'Carlos Grangel'),(34894,'Allison Abbate'),(34895,'Jeffrey Auerbach'),(34896,'Jonathan Lucas'),(34897,'Nelson Lowry'),(34898,'Colin Batty'),(34899,'Harry Linden'),(34900,'Paul Whitehouse'),(34901,'Joanna Lumley'),(34902,'Jane Horrocks'),(34904,'Enn Reitel'),(34905,'Stephen Ballantyne'),(34915,'Kristin Booth'),(34917,'Lynne Griffin'),(34918,'Mark Rendall'),(34920,'Curt Geda'),(34933,'Steve Gerber'),(34934,'Bruce Timm'),(34947,'Kevin Conroy'),(34951,'Keith Partridge'),(34954,'Nitin Sawhney'),(34967,'Rick Benattar'),(34968,'Douglas Curtis'),(34970,'Susan Montford'),(34979,'Loren Lester'),(34982,'Jeff Bennett'),(34983,'Tress MacNeille'),(34985,'Cree Summer'),(35003,'Paul Crauchet'),(35005,'Jeremy Brock'),(35006,'Giles Foden'),(35007,'Christine Ruppert'),(35008,'Ros Borland'),(35009,'Andrew Wood'),(35010,'Justine Wright'),(35011,'Mags Horspool '),(35012,'Michael O\'Connor'),(35013,'David Oyelowo'),(35014,'Abby Mukiibi Nkaaga'),(35015,'Adam Kotz'),(35017,'David Ashton'),(35018,'Barbara Rafferty'),(35019,'Max Allan Collins'),(35020,'Richard Piers Rayner'),(35021,'David Self'),(35022,'David Darlow'),(35024,'Doug Spinuzza'),(35025,'Kurt Naebig'),(35026,'Duane Sharp'),(35027,'Ryan Simpkins'),(35028,'Zoe Kazan'),(35029,'David Harbour'),(35032,'Michael Donovan'),(35035,'Townsend Coleman'),(35040,'Paul Williams'),(35053,'u0110u01a1n Du01b0u01a1ng'),(35059,'Richard Horowitz'),(35060,'Keith Reamer'),(35063,'Sean Bury'),(35065,'Toby Robins'),(35068,'Vidya Balan'),(35070,'Akshay Kumar'),(35073,'Bruno Coulais'),(35077,'Didier Flamand'),(35080,'Alex Lamarque'),(35082,'Gabrielle Lazure'),(35083,'Augustin Legrand'),(35085,'Andru00e9 Penvern'),(35086,'Sajid Nadiadwala'),(35087,'Rupert Harvey'),(35088,'Barry Opper'),(35090,'Billy Green Bush'),(35091,'Scott Grimes'),(35093,'Francesca Smith'),(35095,'John Rubano'),(35109,'Miriam Flynn'),(35115,'Luigi Musini'),(35126,'Emita Frigato'),(35128,'Steffan Boje'),(35139,'Michael Bender'),(35140,'Catherine Mann'),(35141,'Susan Hoffman'),(35142,'Eric Sandys'),(35143,'Joel Diamond'),(35144,'Mayin Lo'),(35145,'Adrienne Stern'),(35146,'Susan Block'),(35147,'Lucio Seixas'),(35148,'Alex Alvarez'),(35149,'Jennifer Newman'),(35154,'Urie McCleary'),(35155,'John Gray'),(35157,'Jane Wiedlin'),(35159,'Laraine Newman'),(35163,'Laurice Elehwany'),(35164,'Hannah Gold'),(35165,'Paul Elliott'),(35166,'Pat Tagliaferro'),(35167,'Linda Allen'),(35168,'Lara Steinick'),(35172,'Robert Clotworthy'),(35176,'Jeffrey Ford'),(35178,'Scott Strauss'),(35179,'Adam Merims'),(35180,'Sidney Kimmel'),(35189,'Peter Breck'),(35192,'Burt Ward'),(35193,'Michael Chekhov'),(35194,'John Emery'),(35198,'Rachel Roberts'),(35208,'Coline Serreau'),(35209,'Jean-Jacques Bouhon'),(35219,'Corey Burton'),(35229,'Kristin Herrera'),(35230,'Deance Wyatt'),(35231,'Gabriel Chavarria'),(35232,'Pat Carroll'),(35233,'Will Morales'),(35235,'Giovonnie Samuels'),(35236,'Hunter Parrish'),(35237,'Vanetta Smith'),(35238,'Jaclyn Ngan'),(35239,'Sergio Montalvo'),(35241,'Nicholle Tom'),(35244,'Bruce Locke'),(35250,'I.S. Johar'),(35257,'Timothy West'),(35258,'Peter Whitman'),(35266,'Kevin Altieri'),(35267,'Boyd Kirkland'),(35287,'Gerry Conway'),(35314,'Vivien Merchant'),(35317,'Kate Mulgrew'),(35318,'Ken Annakin'),(35320,'Cornel Wilde'),(35321,'Rex Harrison'),(35322,'Alan Hale Jr.'),(35324,'Anne Alvaro'),(35332,'Susan Shipton'),(35341,'Geneviu00e8ve Bujold'),(35349,'Pat Musick'),(35350,'Marc Singer'),(35352,'Ana Leza'),(35359,'Jean Dell'),(35367,'Jeff Doucette'),(35370,'Eugene Roche'),(35382,'Matthias Brandt'),(35388,'Stephen Marks'),(35389,'Peter Morton'),(35390,'Bimbo Hart'),(35391,'Alastair MacIntosh'),(35403,'Eva Franzen'),(35438,'Jochen Kolenda'),(35452,'Corey Yuen Kwai'),(35453,'Pierre Morel'),(35454,'Nicolas Trembasiewicz'),(35455,'Hugues Tissandier'),(35468,'Amber Benson'),(35472,'Hilarie Burton'),(35475,'Sean S. Cunningham'),(35476,'Brittany Daniel'),(35483,'Harold Bronson'),(35485,'Richard Foos'),(35490,'Nicole Arbusto'),(35491,'Joy Dickson'),(35495,'Merrie Lawson'),(35496,'Dean Pitchford'),(35497,'Lewis J. Rachmil'),(35498,'Craig Zadan'),(35499,'Ron Hobbs'),(35500,'Mary Swanson'),(35505,'Sylvia Ashton'),(35506,'Marc Felperlaan'),(35508,'Michael Besman'),(35509,'Harry Gittes'),(35510,'Bill Badalato'),(35511,'James Glennon'),(35512,'Jane Ann Stewart'),(35513,'Teresa Visinare'),(35514,'Wendy Chuck'),(35515,'June Squibb'),(35516,'Howard Hesseman'),(35517,'Connie Ray'),(35518,'Harry Groener'),(35519,'Mark Venhuizen'),(35520,'Cheryl Hamada'),(35521,'Matt Winston'),(35527,'Jean-Franu00e7ois Balmer'),(35529,'Georges Corraface'),(35545,'Aimee Graham'),(35546,'Chris Palermo'),(35548,'Simon Rex'),(35549,'Coolio'),(35550,'Danny Strong'),(35551,'Julie Benz'),(35554,'Steven Anthony Lawrence'),(35566,'Mark Hanson'),(35579,'Debbie Rochon'),(35581,'Marianne Maddalena'),(35582,'Nicholas Mastandrea'),(35583,'Kathleen Detoro'),(35586,'Irina Demick'),(35594,'Abigail Murray'),(35595,'Scott Foley'),(35596,'Deon Richmond'),(35597,'Jenny McCarthy'),(35598,'Matt Keeslar'),(35608,'Alain Doutey'),(35630,'Timothy Healy'),(35652,'Mark Voges'),(35654,'Spencer Breslin'),(35656,'Susan Dalian'),(35658,'Juanita Moore'),(35664,'William M. Elvin'),(35665,'Bill Johnson'),(35666,'Christina Steinberg'),(35686,'Butch Patrick'),(35689,'Keenen Ivory Wayans'),(35690,'Shawn Wayans'),(35692,'Buddy Johnson'),(35693,'Phil Beauman'),(35694,'Jason Friedberg'),(35696,'Eric L. Gold'),(35699,'Louise Roper'),(35701,'Dave Sheridan'),(35705,'Regina Hall'),(35710,'Franco Columbu'),(35715,'Tom Platz'),(35734,'Aaron Seltzer'),(35735,'Nikhil Advani'),(35736,'Karan Johar'),(35738,'Anil Mehta'),(35739,'Sanjay Sankla'),(35740,'Sharmishta Roy'),(35741,'Alyson Fouse'),(35742,'Shah Rukh Khan'),(35743,'Jaya Bachchan'),(35744,'Greg Grabianski'),(35745,'Preity Zinta'),(35746,'Dave Polsky'),(35747,'Saif Ali Khan'),(35748,'Michael Anthony Snowden'),(35751,'Craig Wayans'),(35753,'Mark McGrath'),(35760,'Catherine Smith'),(35761,'Kamini Khanna'),(35764,'Valari Adams'),(35766,'Mary Jane Fort'),(35768,'James DeBello'),(35769,'Christopher Masterson'),(35770,'Yash Chopra'),(35771,'Aditya Chopra'),(35772,'Sanjeev Kohli'),(35773,'Ritesh Soni'),(35774,'Sudesh Mahan'),(35775,'Mandira Shukla'),(35776,'Rani Mukerji'),(35777,'Kirron Kher'),(35778,'Divya Dutta'),(35779,'Boman Irani'),(35780,'Amitabh Bachchan'),(35781,'Hema Malini'),(35782,'Manoj Bajpayee'),(35783,'Zohra Sehgal'),(35785,'Siddharth Anand'),(35786,'Salim Merchant'),(35791,'Rishi Kapoor'),(35792,'Jimmy Shergill'),(35793,'Abhishek Bachchan'),(35795,'Isha Koppikar'),(35796,'Craig Mazin'),(35797,'William Heslup'),(35799,'Marny Eng'),(35800,'Jianna Ballard'),(35801,'Kiyoshi Itu00f4'),(35806,'Shaquille O\'Neal'),(35810,'Juhi Chawla'),(35819,'Johnny Lever'),(35821,'Masood Akhtar'),(35824,'Alice Cooper'),(35826,'Siegfried Rauch'),(35835,'Vernon Harris'),(35838,'Michel Colombier'),(35847,'Donald Curtis'),(35848,'Art Baker'),(35849,'Wallace Ford'),(35863,'Andrew-Lee Potts'),(35865,'Hannah Spearritt'),(35878,'Suzy Falk'),(35881,'Jean Rougerie'),(35882,'Riton Liebman'),(35883,'Sylvie Joly'),(35893,'Camille Japy'),(35902,'Jenny Clu00e8ve'),(35918,'Jessica Forde'),(35933,'Nick Arthurs'),(35953,'Olivier Girard'),(35957,'Sim'),(35958,'Billy Kearns'),(35966,'Didier Bu00e9nureau'),(35973,'Vlokkie Gordon'),(35974,'Gavin Polone'),(35976,'Edward J. Pei'),(35977,'Gabriel Wrye'),(35979,'Juanette Van Der Merwe'),(35980,'Brooke Langton'),(35981,'Gideon Emery'),(36007,'Michaela Quast'),(36010,'Axel Milberg'),(36013,'Thomas Schmauser'),(36016,'Pasqualino De Santis'),(36021,'Gu00e9rard Landry'),(36028,'Michael Hinz'),(36038,'James A. Dennett'),(36040,'Ernest Harden Jr.'),(36041,'Lewis Smith'),(36043,'Kevin O\'Neill'),(36055,'Costas Mandylor'),(36058,'Bruce Weitz'),(36059,'Joanna Pacula'),(36060,'Price Carson'),(36064,'Andrea V. Rossotto'),(36067,'Brad Johnson'),(36068,'Bianca Lawson'),(36072,'Holly Weber'),(36074,'Kazuko Yoshiyuki'),(36081,'Shinji Komiya'),(36083,'Kevin Allen'),(36090,'Ricky Adams'),(36091,'Christian Stolte'),(36092,'Denise Hughes'),(36093,'Peggy Roeder'),(36095,'William Dick'),(36097,'Laurence Rupp'),(36105,'Matthias Weber'),(36108,'Nicole Schmied'),(36118,'Roy Stevens'),(36126,'Marie-Christine Lafosse'),(36131,'Carol Baum'),(36133,'Bryce Perrin'),(36134,'Kia Jam'),(36135,'Christopher Dempsey'),(36137,'Nectar Rose'),(36146,'Joseph Merhi'),(36147,'Charles T. Kanganis'),(36152,'Lawrence Hilton-Jacobs'),(36165,'Rene Ohashi'),(36169,'Cheryl Ladd'),(36171,'Brent Carver'),(36172,'Al Waxman'),(36173,'Lawrence Dane'),(36175,'Gebhard Henke'),(36176,'Peter Herrmann'),(36177,'Pierre Franckh'),(36187,'Bob Gosse'),(36188,'Larry Meistrich'),(36189,'Paul Schulze'),(36190,'Edie Falco'),(36205,'Helen Scott'),(36208,'Arthur Miller'),(36216,'Cynthia Watros'),(36218,'Andrew Divoff'),(36219,'Marsha Thomason'),(36221,'Sam Anderson'),(36224,'Michael Bonvillain'),(36277,'Juan Echanove'),(36324,'Martin Glade'),(36325,'Christian Nu00e4the'),(36332,'Bernhard Thu00fcr'),(36358,'Ruth Hausmeister'),(36401,'Jekaterina Oertel'),(36402,'Heike Merker'),(36406,'Uwe Dag Berlin'),(36409,'Michael Beck'),(36422,'Luke Wilson'),(36423,'Tom Green'),(36424,'LL Cool J'),(36425,'McG'),(36426,'Ryan Rowe'),(36427,'Jenno Topping'),(36428,'Michael St. Hilaire'),(36429,'Joseph G. Aulisi'),(36463,'Arndt Schwering-Sohnrey'),(36480,'Phyllis Davis'),(36540,'Ray Rivas'),(36541,'Bitch'),(36542,'Shanti Carson'),(36543,'Bradford Scobie'),(36544,'Reg Vermue'),(36545,'Adam Hardman'),(36546,'Alan Mandell'),(36547,'Jan Hilmer'),(36548,'Stephen Kent Jusick'),(36549,'Yolonda Ross'),(36550,'Jocelyn Samson'),(36551,'Daniela Sea'),(36552,'Rachael C. Smith'),(36553,'Derek Jackson'),(36554,'Mary Beth Peil'),(36556,'Tristan Taormino'),(36563,'Justin Bond'),(36579,'Rosilyn Heller'),(36582,'Carol Oditz'),(36584,'Cesar Ramos'),(36586,'Paulina Gaitau0301n'),(36588,'Joe Wright'),(36589,'Ian McEwan'),(36590,'Paul Tothill'),(36591,'Jacqueline Durran'),(36592,'Saoirse Ronan'),(36594,'Juno Temple'),(36602,'Peter Berg'),(36603,'Matthew Michael Carnahan'),(36605,'Susan Matheson'),(36615,'Simon Fields'),(36616,'David Bergstein'),(36618,'Tracee Stanley'),(36619,'Padraic McKinley'),(36623,'Marcia Calosio'),(36624,'Elisabetta Beraldo'),(36628,'Kate del Castillo'),(36631,'Randall Batinkoff'),(36633,'Irineo Alvarez'),(36634,'Julio Cedillo'),(36636,'Ronald Robert Hamilton'),(36637,'Brandon Smith'),(36638,'Maya Zapata'),(36652,'Deborah Moggach'),(36656,'Sarah Greenwood'),(36657,'Nick Gottschalk'),(36658,'Katie Spencer'),(36662,'Carey Mulligan'),(36663,'Claudie Blakley'),(36664,'Sylvester Morand'),(36665,'Simon Woods'),(36666,'Pip Torrens'),(36668,'Sinead Matthews'),(36669,'Rupert Friend'),(36672,'Tamzin Merchant'),(36693,'Richard Eyre'),(36694,'Maggie Lunn'),(36695,'Tim Hatley'),(36696,'Caroline Smith'),(36697,'Gu00e1bor Csupu00f3'),(36698,'Jeff Stockwell'),(36699,'Katherine Paterson'),(36712,'Werner Dissel'),(36740,'Birgit Missal'),(36746,'Matthias Freihof'),(36751,'Kai Ivo Baulitz'),(36797,'Robert Luketic'),(36798,'Anya Kochoff'),(36799,'Rosey'),(36800,'Susan Mina Eschelbach'),(36801,'Adam Scott'),(36802,'Elaine Stritch'),(36803,'Stephen Dunham'),(36804,'Peter Chelsom'),(36805,'Audrey Wells'),(36806,'Charles Ireland'),(36807,'Ross Clydesdale'),(36808,'Caroline Hanania'),(36809,'Sophie Carbonell'),(36810,'Tamara Hope'),(36811,'Nick Cannon'),(36812,'Sarah Lafleur'),(36813,'Onalee Ames'),(36814,'Diana Salvatore'),(36815,'Daphne Korol'),(36816,'David Sparrow'),(36821,'Nicholas Guest'),(36823,'John Blezard'),(36824,'Avishay Avivi'),(36859,'Philippe Rousselet'),(36861,'Andrea Willson'),(36862,'Marius Ruhland'),(36863,'Oliver Wnuk'),(36864,'Holger Speckhahn'),(36865,'Antonia Holfelder'),(36866,'Barbara Magdalena Ahren'),(36867,'Thomas Meinhardt'),(36900,'John Sharian'),(36901,'Martin McDougall'),(36903,'Stuart St. Paul'),(36908,'Walter Sittler'),(36913,'Luc Merenda'),(36924,'Anja Mu00fcller'),(36926,'Frances Sternhagen'),(36938,'Mimsy Farmer'),(36967,'Walter Lassally'),(36968,'Stefan Arnsten'),(36992,'Vicco von Bu00fclow '),(36999,'Ehud Bleiberg'),(37004,'Matthew Irving'),(37005,'Eric Jungmann'),(37006,'Justin Urich'),(37008,'Michael Bailey Smith'),(37010,'Tim Sitarz'),(37012,'Brad E. Wilhite'),(37013,' Ivan Vorlu00edu010dek'),(37014,'Lauren German'),(37015,'Vera Jordanova'),(37016,'Zuzana Geislerovu00e1'),(37017,'Milan Ku0148au017eko'),(37018,'Petr Vanu010dura'),(37019,'Roman Janecka'),(37020,'Davide Dominici'),(37021,'Mike Elliott'),(37022,'Marco Mehlitz'),(37023,'T.K. Kirkpatrick'),(37024,'Lisa Tong'),(37025,'Yasmine Abraham'),(37026,'Kate Norby'),(37027,'Lew Temple'),(37028,'Carolyn Purdy-Gordon'),(37034,'Rick Kavanian'),(37038,'Larry Groupu00e9'),(37040,'Maia Javan'),(37041,'Andrew McCarthy'),(37042,'Ann Magnuson'),(37043,'Taylor Negron'),(37045,'Nicollette Sheridan'),(37046,'Dania Ramirez'),(37048,'Max Lewis'),(37049,'Andrew Simpson'),(37050,'Emma Kennedy'),(37051,'Syreeta Kumar'),(37052,'Wendy Nottingham'),(37053,'Jill Baker'),(37054,'Alice Bird'),(37055,'Benedict Taylor'),(37056,'Stephen Kennedy'),(37057,'Derbhle Crotty'),(37058,'Anne-Marie Duff'),(37059,'Nicholas D\'Agosto'),(37066,'Bettina Redlich'),(37077,'Jan Sebastian Ballhaus'),(37078,'Philip LaZebnik'),(37086,'Sytze van der Laan'),(37088,'Nick Price'),(37089,'Cameron Monaghan'),(37093,'Langley Kirkwood'),(37102,'Christian Redl'),(37108,'Rudolf Waldemar Brem'),(37127,'Victor Hugo'),(37131,'Bourvil'),(37141,'Pierre Tabard'),(37149,'Luis Da Silva Jr.'),(37151,'Rafael Sardina'),(37153,'Zou00eb Kravitz'),(37154,'John Magaro'),(37156,'James Biberi'),(37157,'Lenny Venito'),(37158,'Carmen Ejogo'),(37159,'Roderick Taylor'),(37162,'Susan Downey'),(37168,'Hans Matheson'),(37187,'Jean-Claude Petit'),(37189,'Lu00e9opoldine Serre'),(37203,'Jason Beghe'),(37204,'David Warshofsky'),(37205,'David Vadim'),(37206,'Boyd Kestner'),(37207,'Angel David'),(37208,'Danielle Alexandra'),(37221,'Penn Jillette'),(37233,'Kareena Kapoor'),(37242,'A. Sreekar Prasad'),(37251,'Christopher Mitchum'),(37252,'Yvonne Zima'),(37254,'Al Ruscio'),(37260,'Abbie Cornish'),(37261,'Meghan O\'Hara'),(37262,'Rehya Young'),(37263,'Jennifer Latham'),(37264,'Christoph Vitt'),(37265,'Chris Seward'),(37267,'Geoffrey Richman'),(37270,'Emile Sherman'),(37272,'Andrew Mackie'),(37273,'Richard Payten'),(37276,'Iain Canning'),(37279,'Garry Phillips'),(37280,'Dany Cooper'),(37281,'Nikki Barrett'),(37283,'Laurie Faen'),(37284,'Richie Dehne'),(37289,'Tom Budge'),(37292,'Adrienne Pickering'),(37296,'Barbora Lukesovu00e1'),(37297,'Daniel Bobker'),(37298,'Carlo Poggioli'),(37299,'Jiu0159u00ed Sternwald'),(37301,'Frank Walsh'),(37317,'Brian Eno'),(37332,'David McCullough'),(37333,'Heidi Vogel'),(37334,'Paul Hellerman'),(37335,'Scott Lambert'),(37336,'Kimberly Blair'),(37360,'Henry Hathaway'),(37362,'Henry King'),(37366,'Linda Blair'),(37368,'Annie Ross'),(37371,'Gianlorenzo Battaglia'),(37403,'Stelio Savante'),(37404,'Big Guido'),(37405,'Margaret Anne Florence'),(37406,'Patricia Woodbridge'),(37411,'Sunnyi Melles'),(37419,'Ted Kurdyla'),(37421,'James Naughton'),(37422,'Jan Rubes'),(37426,'Jim Harrison'),(37427,'Susan Shilliday'),(37428,'Andrew Precht'),(37429,'Dorree Cooper'),(37430,'Gordon Tootoosis'),(37431,'John Novak'),(37432,'Robert Wisden'),(37434,'Howard Atherton'),(37436,'Alex Gartner'),(37438,'Rip Taylor'),(37440,'Angela Pleasence'),(37441,'Joyce Redman'),(37442,'Caroline Blakiston'),(37445,'Joyce Mackenzie'),(37446,'Van Johnson'),(37469,'Betsy Palmer'),(37470,'Adrienne King'),(37492,'Eriko Tamura'),(37512,'Sergio Mendizu00e1bal'),(37531,'Harry Riebauer'),(37543,'Paco Femenia'),(37555,'Rosa Ortiz'),(37577,'Bigas Luna'),(37592,'Ernest Troost'),(37600,'Wendy Schaal'),(37606,'Christian Charmetant'),(37618,'Andrew Dominik'),(37622,'Steve Niles'),(37623,'Tracy Dali'),(37624,'Jennifer Sommerfeld'),(37625,'Andrew Garfield'),(37626,'Patrice Leconte'),(37627,'Dany Boon'),(37630,'Shekhar Kapur'),(37631,'Michael Hirst'),(37632,'Eddie Redmayne'),(37636,'Annie Pu00e9rier'),(37640,'Vincent Montrobert'),(37645,'Alexia Barlier'),(37650,'Jean-Claude Bolle-Reddat'),(37682,'Thomas Zauner'),(37685,'Ismat Zaidi'),(37691,'Scooter Corkle'),(37696,'Colin Lawrence'),(37698,'Mackenzie Gray'),(37700,'Sam Easton'),(37710,'Peter Hyams'),(37712,'Dana Elcar'),(37713,'Taliesin Jaffe'),(37745,'Tony Kendall'),(37755,'Andrew Haddock'),(37756,'Alison Owen'),(37757,'David Hirschfelder'),(37758,'Eric Cantona'),(37759,'Kathy Burke'),(37760,'Kenny Doughty'),(37767,'Teri-Lin Robertson'),(37768,'Jean-Vincent Puzos'),(37769,'Tanit Phoenix'),(37777,'Hardy Kru00fcger'),(37789,'Francesco De Masi'),(37793,'Dietmar Schu00f6nherr'),(37794,'Sabine Sun'),(37796,'Emilio Carrer'),(37821,'Michael Conner Humphreys'),(37822,'Peter Dobson'),(37823,'Sonny Shroyer'),(37824,'Jed Gillin'),(37825,'Afemo Omilami'),(37827,'John William Galt'),(37828,'Nora Dunfee'),(37829,'Michael Mattison'),(37830,'Kitty K. Green'),(37831,'Marlena Smalls'),(37832,'Kevin Mangan'),(37850,'Fax Bahr'),(37852,'George Hickenlooper'),(37880,'Thomas Stanford'),(37884,'Walter Slezak'),(37891,'Simon Jones'),(37893,'Andrew MacLachlan'),(37894,'Mark Holmes'),(37917,'Kristen Stewart'),(37918,'Inu00e9s Sastre'),(37920,'Julie Depardieu'),(37925,'Conrad W. Hall'),(37926,'Judy Hofflund'),(37928,'Jeong Seo-gyeong'),(37929,'Choi Seung-hyun'),(37930,'Young-wuk Cho'),(37932,'F. Gary Gray'),(37933,'Peter Steinfeld'),(37934,'Andru00e9 Benjamin'),(37935,'Steven Tyler'),(37936,'Christina Milian'),(37937,'Gregory Alan Williams'),(37944,'Lee Mo-gae'),(37946,'Aitana Su00e1nchez-Giju00f3n'),(37947,'Lawrence Gilliard Jr.'),(37948,'Brad Anderson'),(37949,'Scott Kosar'),(37950,'Carlos Fernu00e1ndez'),(37951,'Antonia Nava'),(37952,'Xavi Gimu00e9nez'),(37975,'Philippe Guu00e9gan'),(37979,'Emily Holmes'),(37980,'Michael Teigen'),(37981,'Christopher Britton'),(37983,'Natalie Press'),(37995,'Bo Derek'),(38016,'Kim Jae-beom'),(38017,'Hwa-seong Jo'),(38018,'In-ho Oh'),(38020,'Michael Siegel'),(38021,'Denise Pizzini'),(38022,'Lauren E. Polizzi'),(38023,'Michael Patrick King'),(38024,'Cynthia Nixon'),(38025,'Kristin Davis'),(38026,'Chris Noth'),(38053,'Heinz Reincke'),(38068,'Carl Jaffe'),(38081,'Steve Samuels'),(38082,'Kerry Orent'),(38083,'James A. Holt'),(38084,'Sarah Edwards'),(38085,'Michael O\'Keefe'),(38086,'Robert Prescott'),(38100,'Gisela Fischer'),(38124,'Carl Lange'),(38127,'Erland Josephson'),(38131,'Sergey Bondarchuk'),(38159,'Geraldine Smith'),(38160,'Patti D\'Arbanville'),(38168,'Willy Kurant'),(38192,'Rachel Covey'),(38225,'Cher'),(38229,'Reniu00e9'),(38233,'Ernest Hemingway'),(38238,'Richard Allan'),(38242,'Frank McCarthy'),(38247,'Liam O\'Brien'),(38250,'James B. Clark'),(38268,'Laura Hillenbrand'),(38269,'Jane Sindell'),(38270,'Robin Bissell'),(38271,'Allison Thomas'),(38272,'Gary L. Stevens'),(38273,'Chris McCarron'),(38280,'Tang Wei'),(38299,'Antje Schmidt'),(38309,'Gast Waltzing'),(38331,'Edward Atterton'),(38333,'Ana Ortiz'),(38334,'Jennifer Coolidge'),(38335,'Steve Bartek'),(38337,'George Hearn'),(38338,'Ashley Carin'),(38339,'Paul Ronan'),(38340,'Donald Laventhall'),(38354,'Yvonne Gamy'),(38358,'Donald Houston'),(38362,'Peter Musgrave'),(38371,'Anna Thalbach'),(38389,'Didier Pain'),(38400,'Dominique Hennequin'),(38405,'John Corbett'),(38406,'Paris Hilton'),(38407,'Evan Sabara'),(38408,'Catherine Tayrien'),(38410,'Michael Stone'),(38411,'Steven J. Jordan'),(38412,'Tara Timpone'),(38413,'Suzette Sheets'),(38414,'Bill Hiney'),(38415,'Mario Iscovich'),(38416,'Ellen H. Schwartz'),(38418,'Jack Amiel'),(38419,'Michael Begler'),(38425,'Amber Valletta'),(38459,'Karl Markovics'),(38486,'Michael Brandner'),(38501,'Isabelle Sadoyan'),(38507,'Francis Veber'),(38516,'Denys Arcand'),(38521,'Guy Dufaux'),(38522,'Isabelle Dedieu'),(38523,'Franu00e7ois Su00e9guin'),(38524,'Lothaire Bluteau'),(38525,'Johanne-Marie Tremblay'),(38526,'Ru00e9my Girard'),(38528,'Gilles Pelletier'),(38529,'Yves Jacques'),(38551,'Richard Rionda Del Castro'),(38553,'Unax Mendu00eda'),(38556,'Andrew Hull'),(38559,'Christopher Lambert'),(38560,'Lou Diamond Phillips'),(38561,'Kelly Brook'),(38562,'Roberta Angelica'),(38563,'Neville Edwards'),(38564,'Tre Smith'),(38567,'Donald Burda'),(38568,'Tom Clancy'),(38570,'Ken Jenkins'),(38571,'John Beasley'),(38572,'Gavin Grazer'),(38576,'Al Corley'),(38577,'Eugene Musso'),(38578,'Bart Rosenblatt'),(38579,'Bruce Douglas Johnson'),(38581,'Rachael Leigh Cook'),(38582,'David Krumholtz'),(38583,'Ivan Sergei'),(38601,'Dirk Salomon'),(38605,'Christian Petersson'),(38608,'Dietrich Hollinderbu00e4umer'),(38609,'Thomas Sarbacher'),(38621,'Eleonore Weisgerber'),(38622,'Torsten Michaelis'),(38624,'Reiner Schu00f6ne'),(38651,'David Baxt'),(38655,'Hal Gaba'),(38656,'Jonathan Shteinman'),(38657,'Jay Sanders'),(38660,'Lee Cormie'),(38661,'Christian Byers'),(38664,'Sullivan Stapleton'),(38665,'Max Cullen'),(38666,'Tania Raymonde'),(38668,'Alexandra Gold Jourden'),(38670,'Camilla Belle'),(38672,'Johanna Day'),(38673,'Channing Tatum'),(38674,'Aisha Tyler'),(38685,'Victor Miller'),(38693,'Patrick J. Clifton'),(38694,'Beth Rigazio'),(38696,'Don Schain'),(38697,'Gordon Lonsdale'),(38699,'Natalie Hart'),(38700,'Jason La Padura'),(38701,'Mark Hofeling'),(38703,'Kay Panabaker'),(38709,'Tom Virtue'),(38710,'Connie Young'),(38720,'Nina Proll'),(38748,'Jacob Grimm'),(38761,'Stuart Whitman'),(38764,'Hugo Stiglitz'),(38773,'Max Riemelt'),(38774,'Ray Lawrence'),(38775,'Beatrix Christian'),(38776,'Catherine Jarman'),(38777,'Philippa Bateman'),(38778,'Garry Charny'),(38779,'Karl Sodersten'),(38780,'Paul Kelly'),(38781,'Andrew Plain'),(38782,'Leah Purcell'),(38783,'Stelios Yiakmis'),(38784,'Alice Garner'),(38785,'Simon Stone'),(38786,'Betty Lucas'),(38787,'Eva Lazzaro'),(38788,'Sean Rees-Wemyss'),(38789,'Tatea Reilly'),(38792,'Linda Woolverton'),(38794,'Kristin Gore'),(38802,'Joby Talbot'),(38803,'Roman Coppola'),(38804,'Lydia Dean Pilcher'),(38805,'Andrew Weisblum'),(38807,'Aradhana Seth'),(38809,'Camilla Rutherford'),(38832,'Thomas Gottschalk'),(38863,'Alice Taglioni'),(38876,'Roch Leibovici'),(38877,'Marianne Denicourt'),(38885,'Marie-Franu00e7oise Audollent'),(38886,'Tina Maskell'),(38887,'Peter Pedrero'),(38888,'Seth Gabel'),(38898,'Jean-Luc Bideau'),(38899,'Lu00e1szlu00f3 Szabu00f3'),(38914,'Christian Marquand'),(38915,'Serge Marquand'),(38919,'Tatiana Vialle'),(38937,'Ian La Frenais'),(38938,'Matthew Gross'),(38939,'Richard Baratta'),(38940,'Evan Rachel Wood'),(38941,'Jim Sturgess'),(38942,'Dana Fuchs'),(38943,'Martin Luther'),(38944,'T.V. Carpio'),(38945,'Spencer Liff'),(38946,'Lisa Hogg'),(38947,'Nicholas Lumley'),(38948,'Michael Ryan'),(38949,'Angela Mounsey'),(38950,'Craig Stevenson'),(38951,'Reg E. Cathey'),(38952,'Matthew Romero Moore'),(38953,'James DePaul'),(38955,'Karen Porter'),(38956,'Maarten Piersma'),(38957,'James Willcock'),(38999,'Stephen Murray'),(39001,'Rosalie Crutchley'),(39002,'Freda Jackson'),(39007,'Carlos Miranda'),(39012,'Peter Bogdanovich'),(39013,'Henry James'),(39015,'Eileen Brennan'),(39032,'Lauren Lloyd'),(39036,'Vladek Sheybal'),(39038,'Steve Saklad'),(39039,'Rex Trailer'),(39056,'John Pomeroy'),(39065,'Alan Badel'),(39066,'James Villiers'),(39104,'Abel Ferrara'),(39108,'Anthony Redman'),(39110,'Linda Spheeris'),(39111,'Margaret Mohr'),(39112,'Billy Wirth'),(39113,'Christine Elise'),(39117,'Meg Tilly'),(39118,'Bo Hyde'),(39119,'Kendall Morgan'),(39120,'Matthew Rhodes'),(39121,'Moby'),(39123,'Venus Kanani'),(39124,'Tracey A. Doyle'),(39125,'Will Sasso'),(39126,'Bai Ling'),(39127,'Lisa K. Wyatt'),(39165,'Enzo Fiermonte'),(39171,'Andrea Bogart'),(39173,'Jaime Bergman'),(39182,'Paulette Frantz'),(39185,'Kevin Eldon'),(39186,'Karl Johnson'),(39187,'Olivia Colman'),(39188,'Edward Woodward'),(39189,'Stephen Merchant'),(39192,'Edith Vesperini'),(39193,'Gu00e9rard Su00e9ty'),(39200,'Marcus Rowland'),(39201,'Dick Lunn'),(39202,'Liz Griffiths'),(39203,'Annie Hardinge'),(39213,'Keir O\'Donnell'),(39214,'Nick Jameson'),(39244,'Nina Companu00e9ez'),(39249,'Maria Dragus'),(39258,'Lee Dae-yeon'),(39296,'Simon Licht'),(39325,'Joachim Bernhard'),(39350,'Anu00e9mone'),(39353,'Kyle Labine'),(39386,'Aaron Stockard'),(39387,'Sean Bailey'),(39388,'Amy Ryan'),(39389,'Titus Welliver'),(39390,'Michael Kenneth Williams'),(39391,'Edi Gathegi'),(39430,'Don Hood'),(39454,'David Linde'),(39455,'Kimberly Mullen'),(39456,'Mark Mullen'),(39458,'Armando Hernu00e1ndez'),(39459,'Hayley Atwell'),(39464,'Tamara Taylor'),(39481,'Jordana Spiro'),(39514,'Ron Hansen'),(39515,'Jules Daly'),(39516,'Nick Cave'),(39517,'Warren Ellis'),(39518,'Brooklynn Proulx'),(39519,'Dustin Bollinger'),(39520,'Garret Dillahunt'),(39521,'Joel McNichol'),(39522,'James Defelice'),(39545,'Robert Taylor'),(39554,'Jennifer Jones'),(39556,'Dana Davis'),(39568,'Dey Young'),(39574,'Deborah Shelton'),(39586,'Christian Hoening'),(39594,'Mario Ventenilla'),(39595,'Richard Guay'),(39596,'Tricia Vessey'),(39597,'Damon Whitaker'),(39598,'Frank Minucci'),(39599,'Gene Ruffini'),(39601,'Howard Keel'),(39613,'Paolo Buonvino'),(39624,'Peter Gabriel'),(39651,'Jean-Pascal Beintus'),(39658,'Sally Hawkins'),(39659,'Burn Gorman'),(39660,'Tamer Hassan'),(39661,'Francis Magee'),(39662,'Dimitri Andreas'),(39664,'Nathalie Lunghi'),(39667,'J.J. Connolly'),(39668,'Steve Carter'),(39669,'Joanna Barrs'),(39670,'Stephanie Collie'),(39678,'Rab Affleck'),(39679,'Steve John Shepherd'),(39681,'Stephen Walters'),(39682,'Louis Emerick'),(39683,'Ivan Kaye'),(39690,'Marcel Marceau'),(39709,'Kate Reid'),(39725,'David Kajganich'),(39726,'Steve Richards'),(39727,'Ronald G. Smith'),(39728,'Jackson Bond'),(39729,'Eric Benjamin'),(39730,'Susan Floyd'),(39741,'Michael Hordern'),(39753,'Hugh O\'Brian'),(39757,'Fabian'),(39761,'Jerry Bresler'),(39771,'Michael Haynes'),(39774,'Bill Thurman'),(39776,'Camilla Carr'),(39780,'Frank Stallone'),(39781,'Sarah Maur Thorp'),(39782,'Paul L. Smith'),(39801,'Mischa Auer'),(39815,'Shirley Russell'),(39816,'Ed Begley'),(39817,'Milo Sperber'),(39819,'Wayne Wang'),(39821,'Yukie Kito'),(39822,'Rich Cowan'),(39823,'Yasushi Kotani'),(39824,'Taizo Son'),(39825,'Lee Joo-Ick'),(39827,'Lesley Barber'),(39828,'Deirdre Slevin'),(39829,'Henry O'),(39846,'Gerhard Haase-Hindenberg'),(39847,'Halina Reijn'),(39848,'Manfred-Anton Algrang'),(39849,'Werner Daehn'),(39850,'Andy Gu00e4tjen'),(39851,'Christopher Karl Hemeyer'),(39852,'Philipp von Schulthess'),(39908,'Ulrike Krumbiegel'),(39922,'Andrew Hauptman'),(39923,'Franu00e7ois Audouy'),(39952,'Maurice Denham'),(39955,'Eric Porter'),(39959,'Vlad Ivanov'),(39960,'Alexandru Potocean'),(39961,'Luminiu021ba Gheorghiu'),(39962,'Adi Carauleanu'),(39964,'Mihaela Poenaru'),(39965,'Dana Istrate'),(39966,'Constantin Fleancu'),(39968,'Michael J. Lewis'),(39973,'Caldecot Chubb'),(39976,'Patrick Flannery'),(39977,'Michael Michele'),(39982,'Annette Davey'),(39983,'Susan Graef'),(39985,'Remy K. Selma'),(39988,'Paula Schramm'),(39991,'Chuck Barris'),(39992,'Stephen Evans'),(39993,'Alex Wurman'),(39994,'Linda Tomassone'),(39995,'Michael Cera'),(39996,'Sidney Lumet'),(39999,'John Arthur Morrill'),(40000,'Susanne Benton'),(40008,'Ray McAnally'),(40009,'Matt Frewer'),(40035,'F. Scott Fitzgerald'),(40036,'Taraji P. Henson'),(40038,'Bianca Chiminello'),(40039,'Josh Stewart'),(40043,'Niall Buggy'),(40046,'Frank Gallacher'),(40052,'Gerry Fisher'),(40056,'Inger Stevens'),(40060,'Tina Holmes'),(40072,'Barbie Marie'),(40077,'Clay Van Sickle'),(40078,'Jason Griffiths'),(40092,'Twiggy'),(40103,'Joshua Elrod'),(40104,'Trish Seeney'),(40107,'Stephanie A. Marquardt'),(40109,'Tim O\'Shea'),(40120,'Brian \'Buzz\' Buzzelli'),(40138,'James Palumbo'),(40141,'Paul Hsu'),(40142,'Robert Fernandez'),(40148,'Luc Roeg'),(40150,'Stanley Myers'),(40154,'Michael O\'Sullivan'),(40155,'Richard Gates'),(40156,'Leonard Freeman'),(40163,'Patience Collier'),(40165,'Ave Ninchi'),(40168,'Susan Clark'),(40170,'E. Preston Ames'),(40174,'Lucille Ball'),(40176,'Art Carney'),(40178,'Phil Silvers'),(40183,'William H. Clothier'),(40185,'James Best'),(40199,'Anthony Mann'),(40203,'Russell Collins'),(40206,'Tony Randall'),(40207,'Clint Walker'),(40212,'Dave Willock'),(40220,'Kevin Brodie'),(40221,'Don Haggerty'),(40222,'Diana Wynne Jones'),(40223,'Joe Carnahan'),(40224,'Thomas Morris'),(40230,'Kevin Hooks'),(40240,'Mundell Lowe'),(40243,'Gil Junger'),(40246,'Arthur E. Arling'),(40248,'James Donahue'),(40249,'Guy Stodel'),(40250,'Paul Dinello'),(40253,'J. Michael Moncrief'),(40254,'Peter Barsocchini'),(40256,'D.J. Caruso'),(40258,'Kyle Secor'),(40259,'Malcolm-Jamal Warner'),(40268,'Dan Laustsen'),(40269,'Peter Devaney Flanagan'),(40273,'Caroline Case'),(40275,'Tim Guinee'),(40276,'Gary Dourdan'),(40277,'Stuart Blumberg'),(40279,'Jenna Elfman'),(40281,'Andreas Klein'),(40283,'Stephen W. Parsons'),(40287,'L. Levin'),(40288,'Marie-Claude Gosselin'),(40289,'Gary Ungar'),(40296,'Reinhild Blaschke'),(40305,'Stu00e9phane Freiss'),(40307,'John Maybury'),(40310,'Anne Lambton'),(40311,'Adrian Scarborough'),(40320,'Gilles Aird'),(40333,'Satoshi Kon'),(40336,'Masashi Ando'),(40345,'Don Bluth'),(40346,'Tony Geiss'),(40347,'Dan Molina'),(40349,'Erica Yohn'),(40351,'John P. Finnegan'),(40352,'Will Ryan'),(40365,'Hartmut Becker'),(40374,'Michael Costigan'),(40375,'James Whitaker'),(40376,'Lymari Nadal'),(40377,'Roger Guenveur Smith'),(40381,'Joyce Jameson'),(40383,'Nathan Kahane'),(40384,'Aaron Zigman'),(40385,'Marcia Bennett'),(40386,'Ted Ludzik'),(40389,'Bernadette Peters'),(40393,'Dean Jones'),(40403,'Dyan Cannon'),(40414,'Henrik Garnov'),(40416,'Christian Kitter'),(40417,'Stig Gu00fcnther'),(40429,'Jack Carter'),(40433,'Barry Sullivan'),(40437,'Stephen J. Roth'),(40438,'Gary Chang'),(40446,'Mel Goldberg'),(40447,'Leonard J. South'),(40449,'Mitsunori Isaki'),(40450,'Yo Oizumi'),(40451,'Akio Ohtsuka'),(40452,'Daijiro Harada'),(40453,'Haruko Kato'),(40454,'Tomohiko Ishii'),(40455,'Noboru Yoshida'),(40462,'Kristen Bell'),(40468,'Michael Penn'),(40470,'Daniel Iribarren'),(40471,'Mark Bridges'),(40477,'Chris O\'Dowd'),(40478,'Ricky Champ'),(40481,'Luis Guzmu00e1n'),(40482,'Hubertus Rath'),(40508,'James Cox'),(40511,'Michael Grady'),(40513,'Michael Paseornek'),(40519,'Max Linder'),(40529,'Alexander Knox'),(40541,'Andrea Di Stefano'),(40543,'John Ortiz'),(40545,'Xavier Grobet'),(40546,'Guillermo Rosas'),(40551,'Stephen Young'),(40560,'Peter Menne'),(40565,'Matthias Matschke'),(40588,'Katie Carr'),(40589,'Karen McCullah Lutz'),(40590,'Kirsten Smith'),(40591,'Seth Jaret'),(40592,'Jeffrey Chernov'),(40593,'Greg Silverman'),(40594,'Gilbert Wong'),(40600,'Irving Lippman'),(40603,'Brandon Baker'),(40605,'Wolfgang Herold'),(40606,'Chet Holmes'),(40607,'Peter Scheerer'),(40608,'Jonathan Shore'),(40609,'Dan Clarke'),(40610,'Michael Roesch'),(40613,'Henning Lohner'),(40614,'Roxanne Methot'),(40618,'Eileen Heckart'),(40620,'Kurt Kasznar'),(40623,'Hayden Rorke'),(40625,'Nancy Fox'),(40633,'Jamie Parker'),(40634,'Florian Panzner'),(40636,'Mark Phoenix'),(40638,'Guy Henry'),(40639,'Cosima Shaw'),(40640,'Megan Gay'),(40641,'Roderic Culver'),(40643,'Andy Rashleigh'),(40644,'Chad Stahelski'),(40645,'Antje Rau'),(40646,'Amelda Brown'),(40649,'Mark Longhurst'),(40651,'Charles Cork'),(40652,'John Ringham'),(40653,'Oliver Bradshaw'),(40656,'Juliet Howland'),(40658,'Raife Patrick Burchell'),(40660,'Malcolm Sinclair'),(40662,'Madeleine Rakic-Platt'),(40663,'Selina Giles'),(40664,'Carsten Hayes'),(40665,'Derek Hutchinson'),(40666,'Grant Burgin'),(40667,'Greg Donaldson'),(40670,'Paul Antony-Barber'),(40671,'Anna Farnworth'),(40672,'Mary Stockley'),(40673,'Simon Newby'),(40674,'David Merheb'),(40676,'Dulcie Smart'),(40677,'Ben Posener'),(40678,'Ian T. Dickinson'),(40680,'Julie Brown'),(40682,'Eamon Geoghegan'),(40683,'Matthew Bates'),(40684,'David Leitch'),(40685,'Matt Wilkinson'),(40686,'Martin McGlade'),(40687,'Richard Laing'),(40688,'Michael Simkins'),(40689,'William Tapley'),(40690,'Jan Bu00f6hme'),(40691,'Daniel Bohn'),(40692,'Michael Bornhu00fctter'),(40693,'Stuart Clark'),(40694,'Talila Craig'),(40695,'David Cronnelly'),(40696,'Nicolas de Pruyssenaere'),(40697,'Ivonne Dietzel'),(40698,'Oliver Fritsche'),(40699,'Michael Gast'),(40700,'Thorsten Gliewe'),(40701,'Eduart Geber'),(40702,'Sascha Girndt'),(40704,'Uwe Gu00f6sche'),(40705,'Wanja Gu00f6tz'),(40706,'Siegfried Gordes'),(40707,'Matthias Gu00fcnther'),(40708,'Alexander Hardt'),(40709,'Udo Harnach'),(40710,'Cyrille Hertel'),(40711,'Timo Honsa'),(40712,'Eunice Huthart'),(40713,'Rob Inch'),(40714,'Tomas Jester'),(40715,'Heiko Kiesow'),(40716,'Mathis Landwehr'),(40717,'Stefan Langel'),(40718,'Wolfgang Lindner'),(40719,'Udo Lu00fcttich'),(40720,'Mike Luft'),(40721,'Alexandra Nazahn'),(40722,'James O\'Donnell'),(40723,'Jason Oettle'),(40724,'Markus Papiernek'),(40725,'Thorsten Rapst'),(40726,'Swen Raschka'),(40727,'Katja Richter'),(40728,'Armin Sauer'),(40729,'Matthias Schendel'),(40730,'Babette Schimanek'),(40731,'Bernhard Schirmer'),(40732,'Karsten Schmidt'),(40733,'Rene Schobes'),(40734,'Katrin Schrake'),(40735,'Thierry Saelens'),(40736,'Andy Smart'),(40737,'Mark Southworth'),(40738,'Wolfgang Stegemann'),(40739,'Matthew Stirling'),(40740,'Rocky Taylor'),(40741,'Steve Thiede'),(40742,'Andreas Tietz'),(40743,'Ralf Tillmann'),(40744,'Vladimir Vilanov'),(40745,'Rainer Werner'),(40746,'Oliver Wiesner'),(40747,'Harvey Harrison'),(40748,'Barbara Berkery'),(40749,'Jean Bourne'),(40750,'Stephen Bream'),(40751,'Stephan O. Gessler'),(40752,'Cornelia Ott'),(40753,'Christian Schaefer'),(40754,'Roxy Konrad'),(40755,'Ulli Isfort'),(40756,'Uli Fischer'),(40757,'Peter Popken'),(40758,'Dermot Power'),(40759,'Axel Eichhorst'),(40760,'Simon-Julien Boucherie'),(40761,'Edgar Konkoll'),(40762,'Katja Fischer'),(40763,'Maren Hollje'),(40764,'Axel Kahnt'),(40765,'David Worley'),(40766,'Ju00f6rg Widmer'),(40769,'David Mackie'),(40771,'Gerd Breiter'),(40772,'David Stephenson'),(40773,'Gary Dodkin'),(40774,'Benjamin Dunker'),(40776,'Sarah Meyer'),(40777,'John Bowman'),(40778,'Albrecht Silberberger'),(40779,'Roland Patzelt'),(40780,'Stefan Fu00f6rster'),(40781,'Peter Kramer'),(40782,'Jens Makeldey'),(40783,'Gu00f6tz Schmidt zu Nedde'),(40784,'Ju00fcrgen Ruge'),(40785,'Stephan Schneider'),(40786,'Axel Scholz'),(40787,'Volker Vahl'),(40788,'Felix Weddige'),(40789,'Dietmar Haupt'),(40790,'Heiko Ju00f6rke'),(40791,'Daniel Alvermann'),(40792,'Helko Klu00fcnder'),(40793,'Brian \'Joker\' Mulvey'),(40794,'Christian Scheibe'),(40795,'Bronwyn Preston'),(40796,'David Appleby'),(40800,'Anna Isabell Logen'),(40801,'Dietke Brandt'),(40802,'Jeremy Woodhead'),(40803,'Petra Schaumann'),(40804,'Klaus Mielich'),(40805,'Alison Carter'),(40809,'Adam Cocker'),(40810,'Glenn Freemantle'),(40811,'Tom Sayers'),(40812,'Andrew Wilkinson'),(40813,'Gillian Dodders'),(40814,'Lee Herrick'),(40815,'Hugo Adams'),(40816,'Ben Barker'),(40817,'Adam Daniel'),(40818,'John Hayward'),(40819,'Richard Pryke'),(40820,'Robert Farr'),(40822,'Andi Derrick'),(40823,'Peter Burgis'),(40824,'Kevin Tayler'),(40825,'Benjamin Wallfisch'),(40826,'Hilary Skewes'),(40827,'Peter Clarke'),(40830,'Markus Bensch'),(40831,'Nina Hueskes'),(40832,'Mike Richardson'),(40833,'Friederike von Rauch'),(40834,'Aubrey Henderson'),(40835,'Paul D. Austerberry'),(40836,'Marcus Loges'),(40837,'Jane Holland'),(40838,'Damian Anderson'),(40839,'Brian Reitzell'),(40840,'Anja Wedell'),(40842,'Katharina Gapski'),(40846,'Neil Chaplin'),(40848,'Kristov Bru00e4ndli'),(40850,'Monika Klatt'),(40851,'Thomas Rucks'),(40852,'Matt Curtis'),(40853,'Jens Grulke'),(40854,'Natascha Gutschmidt'),(40855,'Nils Lange'),(40856,'Sandrine Loisy'),(40857,'Ian Mitchell'),(40858,'Sarah Penger'),(40859,'Glenn West'),(40860,'Sebastian Neitsch'),(40861,'Inga Meissner'),(40862,'Miki Emmrich'),(40863,'Joe Swanberg'),(40864,'Andrew Bujalski'),(40896,'Cecilio Paniagua'),(40900,'Mark Rylance'),(40923,'Virginia North'),(40938,'Romane Bohringer'),(40939,'Clu00e9ment Sibony'),(40942,'Barbara Windsor'),(40943,'Bernard Cribbins'),(40949,'Joan Sims'),(40951,'Angela Douglas'),(40952,'Sid James'),(40954,'Maria Schell'),(40958,'Peter Butterworth'),(40960,'Jon Pertwee'),(40964,'Brian Oulton'),(40966,'Elsie Randolph'),(40978,'Larisa Oleynik'),(40979,'Andrew Keegan'),(40980,'Susan May Pratt'),(40981,'Kyle Cease'),(40982,'Greg Jackson'),(41017,'Steven Pressfield'),(41018,'Chris Brigham'),(41019,'Wilbur Fitzgerald'),(41020,'E. Roger Mitchell'),(41021,'Martine Marignac'),(41030,'Patrick Modiano'),(41035,'Edouard Baer'),(41039,'Judd Apatow'),(41041,'Christopher Smith'),(41042,'Danny Dyer'),(41043,'Tim McInnerny'),(41044,'Babou Ceesay'),(41052,'Belinda Becker'),(41053,'Vincent Martin'),(41076,'Shauna Robertson'),(41077,'Joe Henry'),(41079,'Brent White'),(41080,'Allison Jones'),(41081,'Jefferson Sage'),(41082,'Chris L. Spellman'),(41084,'Debra McGuire'),(41087,'Leslie Mann'),(41088,'Jason Segel'),(41089,'Martin Starr'),(41090,'Maude Apatow'),(41091,'Kristen Wiig'),(41103,'Wolfgang Bauer'),(41114,'Wieslawa Chojkowska'),(41125,'Eric Allan Kramer'),(41129,'Dina Morrone'),(41139,'Tracy Keenan Wynn'),(41151,'Charles Rosher Jr.'),(41156,'Edward Stewart'),(41157,'William Aldrich'),(41188,'Margo Baxley'),(41205,'Gilles Tschudi'),(41214,'Forrest Tucker'),(41217,'Tom Bosley'),(41218,'Edward Albert'),(41224,'Jack O\'Halloran'),(41226,'Cyd Charisse'),(41227,'Anne Lockhart'),(41229,'Meg Foster'),(41230,'John Astin'),(41231,'John Ericson'),(41232,'Jessica Walter'),(41234,'Judy Geeson'),(41236,'Ron Moody'),(41243,'Paul Benedict'),(41245,'Laraine Day'),(41247,'Len Cariou'),(41249,'Tess Harper'),(41250,'Dick Sargent'),(41253,'David Knell'),(41255,'June Havoc'),(41256,'Art Hindle'),(41258,'Jennifer Salt'),(41262,'Don Calfa'),(41266,'Mark Lindsay Chapman'),(41269,'John Beck'),(41270,'Chuck Bowman'),(41274,'Stephen Macht'),(41275,'Blake Gibbons'),(41276,'Karl Alexander Seidel'),(41277,'Justus Kammerer'),(41279,'Gregory Walcott'),(41285,'Kirsten Sheridan'),(41286,'Ralph Kamp'),(41287,'Louise Goodsill'),(41288,'Miky Lee'),(41289,'Lionel Wigram'),(41292,'Keri Russell'),(41293,'Marian Seldes'),(41295,'Leon G. Thomas III'),(41296,'Aaron Staton'),(41297,'Alex O\'Loughlin'),(41298,'Jamia Simone Nash'),(41301,'Mark Orton'),(41308,'Bobby Coleman'),(41309,'Omar Metwally'),(41313,'Moa Khouas'),(41314,'Zineb Oukach'),(41316,'Igal Naor'),(41317,'Laila Mrabti'),(41318,'David Fabrizio'),(41319,'Seth Bass'),(41321,'Jonathan Tolins'),(41323,'Corey Sienega'),(41324,'Michael Dennison'),(41326,'David Kanter'),(41327,'Mark Martin'),(41328,'Edward Milstein'),(41329,'Keith Redmon'),(41330,'Paul Schwake'),(41331,'Michael Sugar'),(41332,'Marcus Viscidi'),(41334,'Tony Noble'),(41335,'Harry Pain'),(41336,'Jille Azis'),(41337,'Nezha Aouis'),(41338,'Walter von Huene'),(41341,'Andy Mackenzie'),(41345,'Ashley Eckstein'),(41350,'Ken Kercheval'),(41352,'Van Quattro'),(41355,'Dimitri Logothetis'),(41372,'Gabriel Torres'),(41376,'Neil Farrell'),(41377,'Martin Shafer'),(41378,'Kerry Conran'),(41379,'Omid Djalili'),(41380,'Peter Law'),(41381,'Sadie Frost'),(41382,'Marsha Oglesby'),(41383,'Aurelio De Laurentiis'),(41384,'Bill Haber'),(41385,'Hester Hargett'),(41386,'Robert Gordon'),(41387,'Eric Adkins'),(41388,'Sheila Trezise'),(41389,'Kevin Conran'),(41390,'Kirsten Conran'),(41397,'Bob Barbash'),(41406,'Stuart Margolin'),(41409,'Jacques Mapes'),(41413,'Kim Swados'),(41419,'Hugh Laurie'),(41420,'Lisa Edelstein'),(41421,'Jennifer Morrison'),(41429,'Ava Hughes'),(41432,'Candus Churchill'),(41434,'Alana Husband'),(41436,'Andrew Airlie'),(41444,'K.J. Johnson'),(41464,'Scott Mechlowicz'),(41465,'Robin Thomas'),(41504,'Alexis Thorpe'),(41505,'Faith Prince'),(41506,'Lauren Cohn'),(41508,'Jason Stuart'),(41516,'Maureen O\'Sullivan'),(41517,'Christian Clemenson'),(41524,'Martine Giordano'),(41525,'Babak Karimi'),(41526,'Patrick Timsit'),(41530,'Nick Love'),(41532,'James Richardson'),(41533,'Ivor Guest'),(41535,'Stuart Gazzard'),(41537,'Jamie Macdermott'),(41538,'Rupert Preston'),(41542,'Andrew Cox'),(41543,'Jennifer Harty'),(41547,'Georgina Chapman'),(41549,'Andrew Fleming'),(41550,'Andrew Bergman'),(41551,'Bill Gerber'),(41552,'James S. Levine'),(41553,'Mia Goldman'),(41554,'Heather Persons'),(41555,'Melissa Sagemiller'),(41556,'Omari Hardwick'),(41557,'Ever Carradine'),(41558,'Hedy Burress'),(41561,'Kenneth Choi'),(41565,'Nate Torrence'),(41587,'Armyan Bernstein'),(41588,'Zanne Devine'),(41590,'Lowell D. Blank'),(41591,'Stephen St. John'),(41592,'Andrew Max Cahn'),(41621,'Tony Krantz'),(41640,'Tovah Feldshuh'),(41645,'Clara Khoury'),(41654,'Lindsay Chag'),(41655,'Jeff Olan'),(41658,'Michael Bodnar'),(41659,'Vladimir Radian'),(41662,'Lindsay Sloane'),(41664,'Chang Tseng'),(41670,'Rebecca Miller'),(41671,'Nimru00f3d Antal'),(41674,'John Swihart'),(41675,'Barbara Fiorentino'),(41676,'Rebecca Mangieri'),(41677,'Wendy Weidman'),(41678,'Matteo De Cosmo'),(41680,'Jill Newell'),(41686,'Neil Patrick Harris'),(41687,'Patrick Muldoon'),(41688,'Seth Gilliam'),(41689,'Rue McClanahan'),(41690,'Blake Lindsley'),(41691,'Ungela Brockman'),(41694,'Roger Ebert'),(41697,'Sara Parriott'),(41698,'Josann McGibbon'),(41699,'Uschi Digard'),(41711,'Kitten Natividad'),(41712,'Peter Stone'),(41716,'Paul Bonifas'),(41719,'Biff Elliot'),(41730,'Carole Cook'),(41736,'Patricia Carr'),(41737,'Tony Plana'),(41739,'Robert Harper'),(41741,'Rita Zohar'),(41742,'Ravil Isyanov'),(41743,'Maggie Castle'),(41744,'Karen Kirschenbauer'),(41745,'Jim Grimshaw'),(41746,'Serge Houde'),(41748,'Vivian Blaine'),(41749,'Johnny Silver'),(41750,'Sheldon Leonard'),(41757,'Aki Aleong'),(41776,'Veit Stu00fcbner'),(41782,'Manu Bennett'),(41784,'Nathaniel Lees'),(41785,'Joel Tobeck'),(41793,'Serge Lalou'),(41798,'George Lopez'),(41819,'Sarah Wynter'),(41820,'Michelle Forbes'),(41828,'Peter Rogers'),(41840,'Archie Ludski'),(41844,'James Moran'),(41845,'Jason Newmark'),(41846,'Christian Henson'),(41847,'Ed Wild'),(41848,'John Frankish'),(41853,'Grazyna Kozlowska'),(41877,'Muriel Robin'),(41878,'Pascal Lu00e9gitimus'),(41883,'Max Thieriot'),(41884,'Jasper Polish'),(41885,'Logan Polish'),(41886,'Mark Polish'),(41887,'Michael Polish'),(41888,'Christopher Sheldon'),(41889,'Stuart Matthewman'),(41890,'Marisa Frantz'),(41891,'Karl Formander'),(41892,'Geyer Kosinski'),(41893,'Len Amato'),(41894,'Zhang Jingchu'),(41895,'Robert Benjamin'),(41896,'Jay Stern'),(41897,'Jonathan Sheldon'),(41898,'Kate J. Sullivan'),(41899,'Leon Dudevoir'),(41901,'Roselyn Su00e1nchez'),(41909,'Manuel Alberto Claro'),(41951,'Franu00e7oise Hardy'),(41958,'Robert Flemyng'),(41965,'Sylvester Groth'),(41978,'Samantha Phillips'),(41985,'Tamara Toumanova'),(41990,'Cheyne Collins'),(41998,'Gordon Jackson'),(42000,'Jane Carr'),(42003,'Gail Strickland'),(42006,'Ned Dowd'),(42007,'Vicki Christianson'),(42009,'Iazua Larios'),(42010,'Lorena Heranandez'),(42011,'Itandehui Gutierrez'),(42012,'Sayuri Gutierrez'),(42013,'Hiram Soto'),(42015,'Ariel Galvan'),(42016,'Bernardo Ruiz'),(42017,'Ricardo Diaz Mendoza'),(42018,'Richard Can'),(42019,'Carlos Ramos'),(42020,'Ammel Rodrigo Mendoza'),(42021,'Marco Antonio Argueta'),(42022,'Javier Escobar'),(42024,'Gerardo Albarru00e1n'),(42027,'Aldo Signoretti'),(42028,'Vittorio Sodano'),(42029,'Ted Rae'),(42030,'Keith VanderLaan'),(42032,'Ian Fox'),(42034,'Greg P. Russell'),(42035,'Sean McCormack'),(42036,'Kami Asgar'),(42037,'Rick Young'),(42039,'Joseph Martens'),(42060,'Sidney Franklin'),(42069,'Mucsi Zoltu00e1n'),(42083,'Roger Callard'),(42090,'Jimmy Williams'),(42092,'Benedikt Erlingsson'),(42095,'Casper Christensen'),(42099,'Meta Louise Foldager'),(42111,'Bryan Spicer'),(42113,'Zalman King'),(42114,'Patricia Louisianna Knop'),(42116,'Lester Berman'),(42119,'Gale Tattersall'),(42121,'Glenn Morgan'),(42123,'Assumpta Serna'),(42124,'Oleg Vidov'),(42129,'David Saunders'),(42130,'Marc Reshovsky'),(42133,'Nina Siemaszko'),(42136,'Bridgit Ryan'),(42137,'Lydie Denier'),(42138,'Victoria Mahoney'),(42139,'Kathy Hartsell'),(42140,'Brent David Fraser'),(42141,'Casey Sander'),(42145,'Anna Karin'),(42146,'Kai Wulff'),(42149,'Willi Bu00e4r'),(42157,'Ed Begley Jr.'),(42158,'Angela Lindvall'),(42159,'Indio Falconer Downey'),(42160,'Ariel Winter'),(42162,'John David Carson'),(42163,'Duane Carnahan'),(42165,'Martha Hackett'),(42168,'Nancy Fish'),(42171,'Jonathan Kaplan'),(42172,'Dan Stroncak'),(42174,'Kay Lenz'),(42175,'Richard Stanley'),(42177,'Steven Chivers'),(42178,'Derek Trigg'),(42186,'Laura Johnson'),(42191,'Kenny Johnson'),(42194,'Caitlin Dulany'),(42198,'Tricia O\'Neil'),(42199,'Daniel Greene'),(42200,'Lennie Loftin'),(42201,'Rio Alexander'),(42203,'Pat Ricotti'),(42204,'Shawn Howell'),(42206,'Matt McCoy'),(42209,'Jenny McShane'),(42216,'Charlotte Salt'),(42217,'Rik Young'),(42223,'Daniel Anderson'),(42226,'Regina Russell Banali'),(42230,'Wayne Scott Joness'),(42235,'Richard Burns'),(42250,'Nikki Fritz'),(42261,'Jerome Chen'),(42262,'Glen Ballard'),(42263,'Alex Bicknell'),(42264,'Jacqueline M. Lopez'),(42265,'Peter M. Tobyansen'),(42267,'Randy Thom'),(42268,'Debbie Denise'),(42269,'Ken Ralston'),(42270,'Sean Phillips'),(42271,'Kenn McDonald'),(42272,'Chris Juen'),(42273,'Skye Lyons'),(42274,'Nick Hurran'),(42275,'Theodore Bialek'),(42276,'Rupert Penry-Jones'),(42277,'Martin A. Kline'),(42278,'Sho Igarashi'),(42279,'Laura Fraser'),(42281,'Scott Herbertson'),(42283,'Carin-Anne Strohmaier'),(42284,'Sonje Fortag'),(42285,'Sharisse Baker-Bernard'),(42286,'Julene Renee'),(42287,'Leslie Zemeckis'),(42288,'Woody Schultz'),(42289,'Tyler Steelman'),(42290,'Shay Duffin'),(42291,'Jacquie Barnbrook'),(42292,'Fredrik Hiller'),(42296,'Gwen McGee'),(42297,'Brooke D\'Orsay'),(42304,'BC Smith'),(42305,'Manuel Teran'),(42306,'Tina Gerussi'),(42307,'Peta Wilson'),(42308,'Beau Starr'),(42316,'John Toles-Bey'),(42317,'Scott Lawrence'),(42324,'Annabelle Gurwitch'),(42335,'Kathleen Wilhoite'),(42356,'Chris van Allsburg'),(42357,'William Teitler'),(42358,'Steven J. Boyd'),(42359,'R. Orlando Duenas'),(42360,'Scot Boland'),(42362,'Eddie Deezen'),(42363,'Peter Scolari'),(42367,'Lisa M. Hansen'),(42368,'Paul Hertzberg'),(42373,'Grayson McCouch'),(42374,'Nicki Aycox'),(42376,'Zahn McClarnon'),(42377,'Alexondra Lee'),(42383,'Edmund Choi'),(42392,'Grant Thompson'),(42393,'Bille Brown'),(42432,'Sandra Nedeleff'),(42445,'Gotthard Lange'),(42469,'Veronika Varjasi'),(42504,'Yoram Barzilai'),(42515,'Cyia Batten'),(42518,'Peter Care'),(42530,'Tobe Sexton'),(42545,'Ron Jeremy'),(42547,'Jay Acovone'),(42557,'John Enos III'),(42558,'Charlotte Lewis'),(42566,'Adrian Dunbar'),(42568,'John Grillo'),(42570,'Don Henderson'),(42571,'Susan Lynch'),(42600,'Mark Lambert'),(42601,'Brid Brennan'),(42604,'John Simm'),(42617,'Antonia Bird'),(42626,'Trent Ford'),(42627,'James Wilby'),(42632,'Michael Barrett'),(42633,'Jim Page'),(42634,'Aaron Osborne'),(42635,'Erin Cochran'),(42636,'Jeannie Gunn'),(42637,'Christopher J. Kristoff'),(42641,'Claire Skinner'),(42642,'John Benfield'),(42643,'Patrick Field'),(42644,'Badi Uzzaman'),(42649,'Sofia Shinas'),(42657,'Bobbie Phillips'),(42663,'Robert Bathurst'),(42671,'Helgi Bju00f6rnsson'),(42686,'David Dwiggins'),(42687,'Athena Massey'),(42691,'Sam Menning'),(42694,'Tamara Tunie'),(42704,'Lynette Walden'),(42705,'Justine Waddell'),(42706,'Nicholas Lea'),(42707,'Jessica Steen'),(42708,'Rob LaBelle'),(42710,'Keegan Connor Tracy'),(42711,'Ty Olsson'),(42712,'Tony Giglio'),(42715,'Amber Smith'),(42718,'Elodie Frenck'),(42721,'Saxon Trainor'),(42722,'Michael T. Weiss'),(42724,'John Prosky'),(42731,'Anthony Guidera'),(42736,'David Womark'),(42740,'Christopher Atkins'),(42743,'Mari Morrow'),(42745,'Steve Antin'),(42746,'John Doe'),(42747,'Misha Collins'),(42763,'Ronn Schmidt'),(42799,'Son Byung-ho'),(42820,'Shashawnee Hall'),(42824,'Carl Ciarfalio'),(42841,'John Meillon'),(42842,'Herman Melville'),(42864,'Tilman Bu00fcttner'),(42879,'Florentine Lahme'),(42882,'Erika Anderson'),(42905,'Bill Kelly'),(42906,'Barry Josephson'),(42907,'Christopher Chase'),(42908,'Sunil Perkash'),(42909,'Mona May'),(42910,'Stephen Schwartz'),(42914,'Emma Rose Lima'),(42915,'Teala Dunn'),(42951,'Rita Branch'),(42952,'Michael Burke'),(42961,'Jacqueline Lovell'),(42967,'Arabella Holzbog'),(42970,'Carolyn Seymour'),(42993,'Martin Donovan'),(42994,'David Dobkin'),(42995,'Paul Hitchcock'),(42996,'Trevor Peacock'),(42998,'Elizabeth Berrington'),(43010,'Thomas Rosales, Jr.'),(43019,'Patrick Baladi'),(43024,'Vincent Franklin'),(43034,'Tom Goodman-Hill'),(43068,'Sherrie Rose'),(43084,'Rainer Su00f6hnlein'),(43085,'Chad Hammes'),(43086,'John McKenna'),(43087,'Dr. Volker Baas'),(43088,'Silke Zakarneh'),(43089,'Wilhelm Auer'),(43090,'Peter Widmann'),(43091,'Robert Moreland'),(43092,'Doug Langdale'),(43093,'Louise Goodsill'),(43094,'Ken Katsumoto'),(43095,'Tom Ortenberg'),(43096,'Stefan Beiten'),(43097,'Nikolaus Weil'),(43098,'Andre Sikojev'),(43099,'Deane Taylor'),(43100,'Ringo Waldenburger'),(43101,'David Dulac'),(43102,'Dino Athanassiou'),(43103,'Paul Buckley'),(43104,'Robyn Klein'),(43105,'Andy Carroll'),(43106,'Nick Amour'),(43107,'Phil Sawyer'),(43108,'Will Johnstone'),(43115,'Clement von Franckenstein'),(43120,'Andy Dick'),(43121,'Lisa Kaplan'),(43125,'Rob Paulsen'),(43131,'Gerard McSorley'),(43135,'Fiona Glascott'),(43138,'Ian McElhinney'),(43141,'Pete Travis'),(43143,'Arthur Lappin'),(43144,'Andrew Lowe'),(43145,'Brendan McCarthy'),(43147,'Ed Guiney'),(43150,'Clive Barrett'),(43153,'Julie Busher'),(43154,'Eimer Ni Mhaoldomhnaigh'),(43155,'Eileen Buggy'),(43159,'Niamh O\'Loan'),(43161,'Mary Alleguen'),(43169,'Christian Schmidt'),(43170,'Thomas Huber'),(43202,'Antje Traue'),(43229,'Mike Lee'),(43231,'Paul Blackthorne'),(43232,'Valerie Cruz'),(43241,'Attilio Dottesio'),(43243,'Raoul Bhaneja'),(43247,'Deborah Odell'),(43257,'Krista Bridges'),(43258,'Matt Gordon'),(43263,'Conrad Coates'),(43264,'Meredith Henderson'),(43265,'Corey Sevier'),(43279,'James Binkley'),(43286,'Laura Vandervoort'),(43292,'Steve Byers'),(43297,'Elizabeth Thai'),(43299,'John DeSantis'),(43311,'Yannick Bisson'),(43323,'Josu00e9 Luis Garcu00eda Pu00e9rez'),(43332,'Carles Cases'),(43364,'Dakin Matthews'),(43366,'Ann Dowd'),(43372,'Stacy Edwards'),(43373,'Aaron Himelstein'),(43382,'Sharon Harel'),(43383,'Jane Barclay'),(43384,'Hannah Leader'),(43385,'Sarah Hauldren'),(43387,'Joshua Astrachan'),(43388,'Jane Frazer'),(43393,'Robert Folk'),(43394,'Andrew Starke'),(43398,'Linda James'),(43416,'Vinay Pathak'),(43422,'James R. Bagdonas'),(43425,'Jim Flynn'),(43426,'Robin Dunne'),(43429,'Barry Flatman'),(43431,'Barclay Hope'),(43432,'Tane McClure'),(43436,'Mehdi Nebbou'),(43439,'Scott Ziehl'),(43441,'Alan Cody'),(43442,'Kerr Smith'),(43443,'Kristina Anapau'),(43449,'Tara Carroll'),(43451,'Iris Berben'),(43454,'Christian Kahrmann'),(43456,'Maxim Kovalevski'),(43458,'Brennan Elliott'),(43461,'Endre Hules'),(43464,'John Patrick Amedori'),(43468,'Guy Ferland'),(43470,'Linda Wang'),(43476,'Chloe Webb'),(43479,'David Conrad'),(43483,'Courtney Henggeler'),(43496,'Suzanne Roquette'),(43518,'Lawrence Kasanoff'),(43524,'Charles Robinson'),(43528,'Hilmar u00d6rn Hilmarsson'),(43529,'Jan Kiesser'),(43544,'James Greene'),(43547,'Nonso Anozie'),(43553,'Jerzy Skolimowski'),(43554,'Josef Altin'),(43555,'Mina E. Mina'),(43556,'Aleksander Mikic'),(43558,'Stephen Garrett'),(43559,'Jeff Abberley'),(43560,'Julia Blackman'),(43562,'Chun-yeong Lee'),(43563,'Tae-hun Lee'),(43570,'Cho Sang-kyung'),(43583,'Yvan Gauthier'),(43592,'Conrad Pope'),(43596,'Jacob Browne'),(43599,'Heidi Johanningmeier'),(43607,'Corey Mandell'),(43608,'J.D. Shapiro'),(43609,'Elia Cmiral'),(43610,'Robin Russell'),(43611,'Sabine Karsenti'),(43612,'Christian Tessier'),(43613,'Sylvain Landry'),(43615,'Erik Henry'),(43624,'Kenneth MacMillan'),(43625,'Mark Geraghty'),(43626,'Dora Bryan'),(43640,'Janusz Gosschalk'),(43641,'Marco Rooth'),(43643,'Frank Lammers'),(43646,'Tygo Gernandt'),(43652,'Takashi Yamazaki'),(43659,'Ku00f4zu00f4 Shibasaki'),(43661,'Takeshi Kaneshiro'),(43662,'Anne Suzuki'),(43673,'Tom Reeve'),(43674,'Michael Burks'),(43675,'Todd Moyer'),(43676,'Romain Schroeder'),(43677,'Joost van Starrenburg'),(43678,'Misch Bervard'),(43679,'Monique Durlacher'),(43680,'Bill Treacher'),(43709,'Frans van Gestel'),(43710,'San Fu Maltha'),(43716,'Anneke Blok'),(43738,'Michael Kind'),(43753,'Collin Bernsen'),(43772,'Tom Wood'),(43773,'Andreas Katsulas'),(43774,'Daniel Roebuck'),(43775,'Jane Lynch'),(43776,'Neil Flynn'),(43777,'Roy Huggins'),(43778,'Navi Rawat'),(43779,'Gabrielle Lopes Benites'),(43780,'Franu00e7ois Jerosme'),(43781,'Marc Jousset'),(43782,'Stu00e9phane Roche'),(43793,'Michael Pertwee'),(43798,'Peggy Mount'),(43800,'Charles Dennis'),(43805,'Pamela Stephenson'),(43824,'Madge Blake'),(43826,'Edward Clark'),(43836,'Edmund Cobb'),(43850,'Melvin Adams'),(43851,'Kenneth Anthony'),(43853,'Irma P. Hall'),(43858,'Ryan Hurst'),(43859,'Diane Delano'),(43863,'Igo Kantor'),(43867,'Duncan McLeod'),(43869,'Lavelle Roby'),(43891,'Lloyd Ahern II'),(43893,'Kimberly J. Brown'),(43894,'Hallee Hirsh'),(43899,'Brad Van Arragon'),(43901,'Shawn Williamson'),(43902,'Erik Palladino'),(43903,'Carly Pope'),(43922,'Michael Sloan'),(43923,'Jaye Gazeley'),(43925,'Adam Sliwinski'),(43927,'Dahlia Salem'),(43928,'Meghan Ory'),(43931,'Darren Moore'),(43933,'Adrien Dorval'),(43943,'Eddie Alfano'),(43945,'Alex Boling'),(43946,'Denise Boutte'),(43950,'Dena Dietrich'),(43961,'D.C. Douglas'),(43976,'Rosalind Cash'),(43978,'John Mahon'),(43982,'Michael Rauch'),(43986,'Rhetta Hughes'),(43992,'Bob Hannah'),(43993,'Christophe Barratier'),(43995,'Dominique Gentil'),(43996,'Jean-Baptiste Maunier'),(43997,'Maxence Perrin'),(43998,'Jean-Paul Bonnaire'),(43999,'Gru00e9gory Gatignol'),(44006,'Paul Jennings'),(44026,'Larry Estes'),(44029,'Fabienne Rawley'),(44033,'Barbara Alyn Woods'),(44036,'Michael Miner'),(44038,'Nancy Allen'),(44042,'Felton Perry'),(44043,'Jesse D. Goins'),(44049,'Belinda Bauer'),(44050,'Mario Machado'),(44051,'Leeza Gibbons'),(44054,'Roger Aaron Brown'),(44055,'Gabriel Damon'),(44056,'Fred Dekker'),(44057,'Steven Jacobs'),(44058,'Remy Ryan'),(44059,'Jodi Long'),(44060,'John Posey'),(44062,'S.D. Nemeth'),(44063,'Edith Ivey'),(44064,'Ken Kaufman'),(44065,'Howard Klausner'),(44079,'Charlotte Rampling'),(44087,'Russ Goozee'),(44100,'Kevin Jubinville'),(44101,'David Fraser'),(44103,'Richard Fitzpatrick'),(44104,'Milena Vukotic'),(44109,'Anne-Marie Deschott'),(44113,'Steve Hickner'),(44114,'Simon J. Smith'),(44115,'Spike Feresten'),(44116,'Barry Marder'),(44117,'Andy Robin'),(44118,'Cameron Stevning'),(44119,'Nick Fletcher'),(44120,'Jane Poole'),(44121,'David C. Lawson'),(44122,'David C. Lawson'),(44123,'Kevin Andrus'),(44125,'Chris Bancroft'),(44126,'Christophe Lautrette'),(44127,'Larry King'),(44138,'J. Miles Dale'),(44150,'Blu Mankuma'),(44151,'Andrea Roth'),(44153,'David Gardner'),(44155,'Hrant Alianak'),(44161,'Richard Paul'),(44169,'Jason Blicker'),(44176,'Dov Tiefenbach'),(44178,'Gregory Scott Cummins'),(44179,'Bruce Hunt'),(44183,'R. D. Reid'),(44185,'Judith Scott'),(44191,'Sugith Varughese'),(44205,'Jeremy Ratchford'),(44208,'Nigel Bennett'),(44217,'Charles Perrault'),(44222,'Antonio Sabu00e0to, Jr.'),(44233,'Mathilda May'),(44234,'Jean-Marie Winling'),(44236,'Tim Progosh'),(44237,'Matt Cooke'),(44238,'Lisa Howard'),(44240,'Roddy Piper'),(44243,'Maurice Godin'),(44246,'Kenner Ames'),(44248,'Ron Lea'),(44261,'John Rubinstein'),(44275,'Rosemary Dunsmore'),(44301,'Cliff DeYoung'),(44302,'David Keeley'),(44314,'Doris J. Heinze'),(44332,'Christian Blu00fcmel'),(44349,'Hans von Borsody'),(44358,'Fred Williams'),(44393,'Martin Brambach'),(44419,'Peter Cellier'),(44434,'Edwige Fenech'),(44439,'Vu00e9ronique Vendell'),(44446,'Benedict Freitag'),(44464,'Mike Maas'),(44482,'Robert Graf'),(44509,'Christian Barbier'),(44516,'Bernhard Schu00fctz'),(44547,'Arlo Guthrie'),(44560,'Hubert Saint-Macary'),(44578,'Lana Young'),(44589,'Princess Livingston'),(44633,'Christopher Ball'),(44634,'William Tyrer'),(44635,'Claire Cox'),(44637,'Anian Zollner'),(44645,'Brendan Donnison'),(44646,'Alessio Boni'),(44649,'Violante Placido'),(44650,'Toni Bertorelli'),(44651,'Ken Duken'),(44679,'David Wagner'),(44682,'Richard Poe'),(44686,'Henry Darrow'),(44687,'Katherine Woodville'),(44688,'Marc Gilpin'),(44695,'Anouska Hempel'),(44700,'Anthony Sharp'),(44705,'Rhonda Shear'),(44711,'Nicole Eggert'),(44712,'Jill Eikenberry'),(44715,'Zsa Zsa Gu00e1bor'),(44728,'Cameron Mitchell'),(44731,'Jonathan Ross'),(44735,'Jesse Eisenberg'),(44736,'Goran Kostiu0107'),(44737,'Lejla Hadzimuratovic'),(44738,'Kristina Krepela'),(44739,'Ljubomir Kerekeu0161'),(44740,'Richard Shepard'),(44741,'Paul Hanson'),(44757,'Pandora Peaks'),(44762,'Forrest J. Ackerman'),(44765,'William Lustig'),(44792,'Art LaFleur'),(44797,'Tim Van Patten'),(44810,'Cassandra Peterson'),(44813,'James B. Campbell'),(44816,'Ira Heiden'),(44818,'Mark Holton'),(44821,'Peter Looney'),(44822,'Starletta DuPois'),(44823,'Monte Landis'),(44824,'Chad Bannon'),(44825,'David Reynolds'),(44826,'Hunt Block'),(44827,'Gene Kirkwood'),(44830,'Deborah Rush'),(44831,'Carrie Snodgress'),(44838,'Richard Carter'),(44840,'Henry De Vere Stacpoole'),(44841,'Jeffrey Kleiser'),(44842,'Alan Hopgood'),(44843,'Gus Mercurio'),(44847,'David Anspaugh'),(44848,'Angelo Pizzo'),(44858,'Steve Reinhardt'),(44860,'Franco Citti'),(44878,'Nathan H. Juran'),(44883,'Guy Rolfe'),(44905,'Charis Michelsen'),(44916,'Stanley Tong'),(44917,'Anita Mui'),(44919,'Marc Akerstream'),(44921,'Morgan Lam'),(44922,'Bill Tung'),(44930,'Tony Rohr'),(44935,'Lynda Carter'),(44936,'Ginger Lynn Allen'),(44938,'Juli Ashton'),(44948,'Linda O\'Neil'),(44957,'Dardano Sacchetti'),(44958,'Massimo Lentini'),(44980,'Antonio Cantafora'),(44991,'Michael Barrie'),(44992,'Jim Mulholland'),(44993,'Marshall Harvey'),(44998,'Steve Forrest'),(45011,'Shanna McCullough'),(45041,'Judith Hoag'),(45049,'James Anthony Pearson'),(45050,'Craig Parkinson'),(45051,'Harry Treadaway'),(45052,'Anton Corbijn'),(45053,'Matt Greenhalgh'),(45054,'Orian Williams'),(45055,'Andrew Hulme'),(45056,'Ian Neil'),(45057,'Chris Roope'),(45058,'Julian Day'),(45081,'Hal Hopper'),(45090,'George Costello'),(45091,'Coleman Francis'),(45099,'Erica Gavin'),(45100,'Garth Pillsbury'),(45101,'Harrison Page'),(45109,'Dick Wormell'),(45110,'Dolly Read'),(45111,'Cynthia Myers'),(45112,'Marcia McBroom'),(45113,'John Lazar'),(45114,'Michael Blodgett'),(45115,'Edy Williams'),(45117,'John Carney'),(45118,'Martina Niland'),(45119,'David Collins'),(45120,'Tim Fleming'),(45121,'Tamara Conboy'),(45122,'Paul Mullen'),(45123,'Tiziana Corvisieri'),(45124,'Glen Hansard'),(45125,'Maureen Hughes'),(45126,'Robert Flanagan'),(45127,'Marku00e9ta Irglovu00e1'),(45129,'Alaistair Foley'),(45130,'Geoff Minogue'),(45131,'Bill Hodnett'),(45132,'Danuse Ktrestova'),(45164,'Henry Rowland'),(45207,'Tony Bonner'),(45210,'John Jarratt'),(45211,'Steve Bisley'),(45245,'Paula Jai Parker'),(45282,'Robert Hill'),(45289,'Wayne Maunder'),(45294,'Lars Canty'),(45297,'Summer Cummings'),(45308,'Ken Swofford'),(45329,'Chris Tashima'),(45337,'Sam Phillips'),(45343,'David A. Prior'),(45363,'Troy Donahue'),(45378,'Sandahl Bergman'),(45379,'Shannon Tweed'),(45381,'Melissa Brasselle'),(45386,'Mary Stein'),(45391,'Beth Broderick'),(45396,'Ross Partridge'),(45397,'Bill Brochtrup'),(45398,'Steve Zissis'),(45400,'Greta Gerwig'),(45404,'Elise Muller'),(45405,'Jay Duplass'),(45407,'Mark Duplass'),(45415,'William Katt'),(45416,'Kent Osborne'),(45418,'Darryl Stephens'),(45423,'Kris Swanberg'),(45426,'Nathan Adloff'),(45428,'April Telek'),(45429,'Alex Green'),(45437,'Andy Collins'),(45438,'David Barrass'),(45446,'Megan Follows'),(45447,'Jean-Paul Muel'),(45448,'Charles W. Gray'),(45449,'Bu00e9atrice Agenin'),(45453,'Eleanor Bron'),(45455,'Judy Cornwell'),(45459,'Mike Cahill'),(45461,'Henry Fielding'),(45463,'Angela Aames'),(45465,'Edith Evans'),(45466,'Joan Greenwood'),(45467,'Diane Cilento'),(45468,'George Devine'),(45471,'Camille Keaton'),(45481,'Vanity'),(45523,'Lila Kedrova'),(45524,'Hansju00f6rg Felmy'),(45525,'Mort Mills'),(45526,'Carolyn Conwell'),(45543,'Paul Attanasio'),(45546,'Federico Jusid'),(45566,'Roger Bart'),(45568,'Liliya Malkina'),(45570,'Susanna Bequer'),(45571,'Monika Malacova'),(45572,'Ruggero Deodato'),(45581,'Jim Gaines'),(45582,'Don Wilson'),(45584,'Andrew Miano'),(45585,'Ben Walker'),(45586,'Magda Szubanski'),(45587,'Jack Shepherd'),(45588,'Clare Higgins'),(45589,'Dakota Blue Richards'),(45603,'Joey Camen'),(45611,'Pat McCormick'),(45627,'Nelson McCormick'),(45648,'Emma Tillinger Koskoff'),(45663,'Steffen Scheumann'),(45670,'Bruno Nicolai'),(45694,'August Schmu00f6lzer'),(45702,'Paul Martin Smith'),(45734,'Christina Grou00dfe'),(45738,'Michael Simmonds'),(45745,'Lisa Muskat'),(45746,'Ariane Schluter'),(45747,'Jaap Spijkers'),(45749,'Thekla Reuten'),(45750,'Kees Prins'),(45754,'Fedja van Huu00eat'),(45761,'Ronald Schuurbiers'),(45762,'Erno Das'),(45774,'Vincent Tavier'),(45799,'Benny Andersson'),(45811,'Vijessna Ferkic'),(45812,'Simon Chuckster'),(45813,'Hubert Scales'),(45814,'Jerry Gross'),(45815,'Robert Maxwell'),(45817,'Lawrence Block'),(45818,'William Chang'),(45827,'Ashley Greene'),(45829,'Trevor Short'),(45830,'Danny Dimbort'),(45832,'Vance Owen'),(45835,'Patty Long'),(45836,'Richard L. Fox'),(45837,'Heather Grierson'),(45838,'George Parra'),(45840,'Laura Kachergus'),(45841,'Joanna Colbert'),(45842,'Janos Flu00f6sser'),(45843,'Laurent Baru00e8s'),(45845,'Carlo Rizzo'),(45846,'Antoine Vareille'),(45847,'Bouchra Fakhri'),(45848,'Christian Kaplan'),(45849,'Christian Erickson'),(45861,'Tom Jacobson'),(45862,'Michael A. Stevenson'),(45863,'Doris Roberts'),(45865,'Ellen Hamilton Latzen'),(45900,'Andreas Weidinger'),(45922,'Brendon Ryan Barrett'),(45924,'Ian James Corlett'),(45948,'Kai-Peter Malina'),(45953,'Michael Schenk'),(45963,'Bernie Abramson'),(45996,'Ryu00fbhei Kitamura'),(46000,'Sandor Stern'),(46008,'Carroll Timothy O\'Meara'),(46019,'Gabriele Binder'),(46021,'Ill-Young Kim'),(46028,'Mignon Remu00e9'),(46047,'Christiane Ru00fccker'),(46074,'Rachael Harris'),(46075,'Zaid Farid'),(46076,'Tom Dey'),(46077,'Jorge Saralegui'),(46080,'James Lassiter'),(46081,'Thomas Kloss'),(46082,'Geoff Hubbard'),(46083,'David Sandefur'),(46084,'Christopher Lawrence'),(46085,'Luis Mandoki'),(46086,'Gerald Di Pego'),(46087,'Jellybean Benu00edtez'),(46088,'Mark Canton'),(46090,'Leslie Weisberg'),(46091,'Benjamin Sacks'),(46098,'Cathleen Nesbitt'),(46099,'William Prince'),(46100,'John Lehne'),(46122,'Philip u00d8gaard'),(46128,'Amanda Ooms'),(46198,'Hans Paetsch'),(46216,'Niels-Bruno Schmidt'),(46245,'Grzegorz Artman'),(46266,'Max Richter'),(46283,'Berto'),(46284,'Gary Williamson'),(46287,'Gemma Waugh'),(46291,'Didier Lozahic'),(46292,'Fanny Aubrespin'),(46293,'Pascal Ralite'),(46295,'Marie-Castille Mention-Schaar'),(46296,'Pierre Kubel'),(46297,'Jay Russell'),(46299,'Dick King-Smith'),(46318,'Edward Tang'),(46319,'Fibe Ma'),(46321,'Barbie Tung'),(46323,'Raymond Chow'),(46324,'Nathan Wang'),(46326,'Peter Cheung'),(46330,'Stanley Ralph Ross'),(46346,'Rich Turner'),(46347,'Liz Glotzer'),(46348,'Denise M. Huth'),(46353,'Daniel Licht'),(46355,'Neil Grieve'),(46356,'Randi Richmond'),(46357,'Anna Garduno'),(46359,'Hunter M. Via'),(46360,'Gregory Melton'),(46361,'Giovanna Ottobre-Melton'),(46362,'Samuel Witwer'),(46364,'Shun Oguri'),(46393,'Roseanne Barr'),(46395,'Stephen Gevedon'),(46396,'Sharif Rashed'),(46397,'Peggy Gormley'),(46398,'Greg Johnson'),(46399,'Peter Newman'),(46418,'Mickey Knox'),(46423,'Olivia d\'Abo'),(46427,'Paul Stacey'),(46429,'Jeff Gibbs'),(46430,'Jim Czarnecki'),(46431,'Wolfram Tichy'),(46432,'George H. W. Bush'),(46433,'Dick Clark'),(46445,'Renu00e9 Wiegmans'),(46450,'Rudolf Lucieer'),(46456,'Ingeborg Elzevier'),(46457,'Khaldoun Elmecky'),(46458,'Margo Dames'),(46459,'Frans Vorstman'),(46460,'Peter Blok'),(46461,'Jacob Derwig'),(46462,'Maike Meijer'),(46463,'Carol van Herwijnen'),(46464,'Elizabeth Hoytink'),(46465,'Kees Hulst'),(46466,'Pieter Verhoeff'),(46467,'Jack Vecht'),(46468,'Ricky Koole'),(46469,'Bert Bunschoten'),(46470,'Cornelius Ryan'),(46475,'Patrice Melennec'),(46529,'Rick Moody'),(46530,'Adam Hann-Byrd'),(46587,'Jon Krakauer'),(46588,'Bill Pohlad'),(46589,'Mary Claire Hannan'),(46590,'Eddie Vedder'),(46591,'Kaki King'),(46592,'Domenic Silvestri'),(46593,'Emile Hirsch'),(46594,'Brian H. Dierker'),(46595,'Signe Egholm Olsen'),(46596,'Cheryl Francis Harrington'),(46610,'Robert Anderson'),(46611,'James Clavell'),(46612,'David Clarke'),(46619,'Jeb Rosebrook'),(46620,'Irving Ravetch'),(46621,'Harriet Frank Jr.'),(46624,'Atsuro Watabe'),(46772,'Marc Blucas'),(46773,'Parisa Fitz-Henley'),(46774,'Gwendoline Yeo'),(46780,'Samantha Eggar'),(46784,'John Toon'),(46785,'Johnetta Boone'),(46801,'Jacob Kogan'),(46802,'George Ratliff'),(46805,'Johnathan Dorfman'),(46806,'Temple Fennell'),(46807,'Dan O\'Meara'),(46809,'Jacob Craycroft'),(46810,'Roshelle Berliner'),(46811,'Jerzy Kromolowski'),(46812,'Mary Olson-Kromolowski'),(46813,'Michael Fitzgerald'),(46814,'Dale Dickey'),(46815,'Wendy Morrow Donaldson'),(46853,'Norma Aleandro'),(46856,'Maru00eda Botto'),(46861,'Fernando Pardo'),(46863,'Charlie Mole'),(46876,'Marik Vos-Lundh'),(46901,'Jan D\'Arcy'),(46903,'Genevieve Buechner'),(46906,'David Richmond-Peck'),(46919,'Thomas F. Duffy'),(46920,'Sam Lloyd'),(46921,'Michael Jace'),(46922,'Jeffrey Johnson'),(46927,'Josh Hammond'),(46928,'Beth Riesgraf'),(46929,'Ivonne Coll'),(46930,'Frank Novak'),(46942,'William Kerr'),(46943,'Kathleen Chopin'),(46944,'Michele Lee'),(46946,'Joseph Bologna'),(46948,'Kelly LeBrock'),(46952,'David Stiven'),(46966,'Alex Hajdu'),(46984,'Detlev Fichtner'),(46986,'Chris Evert'),(46987,'Gode Benedix'),(46992,'Adriana Altaras'),(46993,'Sam Spewack'),(46994,'Bella Spewack'),(46995,'Richard Newman'),(46996,'Bill Murdoch'),(47000,'Richard Vernon'),(47001,'Frank Mills'),(47005,'Alan Taylor'),(47050,'David Diamond'),(47051,'David Weissman'),(47052,'Tony Ludwig'),(47053,'Alan Riche'),(47054,'Howard Rosenman'),(47056,'Jake Milkovich'),(47057,'Ryan Milkovich'),(47058,'Lisa Thornhill'),(47059,'Gerardo Herrero'),(47077,'Roland Anderson'),(47085,'Ronald Guttman'),(47098,'Pete Townshend'),(47099,'Anish Savjani'),(47102,'Brian Pearson'),(47113,'Brian Moore'),(47114,'John F. Warren'),(47115,'Bud Hoffman'),(47137,'Milo O\'Shea'),(47139,'Paul Hardwick'),(47155,'Birgitte Federspiel'),(47156,'Susse Wold'),(47173,'Grete Berger'),(47175,'Per Christian Ellefsen'),(47176,'Sven Nordin'),(47177,'Ju00f8rgen Langhelle'),(47201,'Emily Young'),(47203,'Murray Gold'),(47204,'David Charap'),(47205,'Gary Davy'),(47207,'James Martin'),(47275,'Lajos Koltai'),(47277,'Jill Footlick'),(47279,'Robert Kessel'),(47281,'Mamie Gummer'),(47283,'Steven Rogers'),(47284,'Cecelia Ahern'),(47285,'Broderick Johnson'),(47286,'Andrew A. Kosove'),(47287,'Molly Smith'),(47288,'John H. Starke'),(47289,'Lisa Zupan'),(47290,'James Hollond'),(47291,'Donald A. Starr'),(47292,'Daniel J.B. Taylor'),(47293,'Terry Stacey'),(47294,'Cindy Evans'),(47296,'Jeffrey Dean Morgan'),(47297,'James Marsters'),(47298,'Nellie McKay'),(47333,'John Wells'),(47334,'Nutsa Kukhianidze'),(47335,'Ouassini Embarek'),(47336,'Marc Lavoine'),(47337,'Gu00e9rard Darmon'),(47339,'Patricia Kell'),(47363,'Joe Jarvis'),(47364,'Greg Coolidge'),(47365,'Walter Hamada'),(47368,'Barry Watson'),(47369,'Kathryn Stockwood'),(47373,'Robert Alan Aurthur'),(47383,'Noel Howlett'),(47396,'Henry Oscar'),(47398,'Megs Jenkins'),(47401,'Drewe Henley'),(47403,'Clive Morton'),(47404,'Sheila Reid'),(47415,'Michael Stringer'),(47416,'John Roberts'),(47439,'Helen Hayes'),(47452,'Lee Holdridge'),(47456,'Season Hubley'),(47458,'Zakes Mokae'),(47461,'Michael Preston'),(47463,'Santos Morales'),(47465,'Neil Hartley'),(47468,'Frances de la Tour'),(47478,'Gwen Watford'),(47486,'Anthony Smee'),(47493,'Simon Shepherd'),(47503,'Nancy Walker'),(47504,'Estelle Winwood'),(47505,'Richard Narita'),(47506,'Drew Goddard'),(47520,'Michael Culver'),(47525,'Andrew Bicknell'),(47533,'Paula Malcomson'),(47536,'Cheryl Campbell'),(47538,'Polly Adams'),(47545,'Frederick Treves'),(47547,'John Bennett'),(47589,'Jay Villiers'),(47615,'Tara Fitzgerald'),(47625,'Christina Cole'),(47627,'Janet McTeer'),(47628,'Julian Morris'),(47632,'Rob Brydon'),(47640,'Clark Johnson'),(47641,'Gerald Petievich'),(47642,'Cindy Mollo'),(47643,'Robert Pugh'),(47644,'Frances Barber'),(47646,'Catherine Tate'),(47647,'Christian Rubeck'),(47652,'Martin Kemp'),(47653,'Aidan McArdle'),(47654,'Paul McGann'),(47663,'Richard Cooper'),(47669,'Rowena King'),(47690,'Dino Galvani'),(47696,'Michael Pickwoad'),(47698,'Denis Lawson'),(47699,'Alison Steadman'),(47703,'Bryan Dick'),(47712,'Mark Heap'),(47714,'Martine McCutcheon'),(47720,'Ruth Wilson'),(47722,'George Cole'),(47723,'Ronni Ancona'),(47729,'Thelma Barlow'),(47730,'Jessica Hynes'),(47734,'Paul Nicholls'),(47744,'Pat Barlow'),(47754,'Rita Tushingham'),(47756,'Buck Houghton'),(47757,'Kelly Rowan'),(47759,'James T. Callahan'),(47769,'Ingrid Rogers'),(47770,'Joseph Siravo'),(47771,'Richard Foronjy'),(47772,'Jorge Porcel'),(47773,'Paul Mazursky'),(47774,'Vincent Pastore'),(47775,'Marc Anthony'),(47776,'Kristina Boden'),(47777,'Anne Kent'),(47778,'Brian McGrath'),(47779,'Pasquale Aleardi'),(47780,'Wladimir Klitschko'),(47784,'Paul Maximilian Schu00fcller'),(47796,'Pascal Bongard'),(47808,'Christopher Malcolm'),(47814,'Jean-Louis Monthieux'),(47815,'Madeline Fontaine'),(47816,'Michel Kharat'),(47817,'Jean Goudier'),(47818,'Jean-Paul Hurier'),(47819,'Marc Doisne'),(47820,'Benou00eet Poelvoorde'),(47821,'Vanessa Hessler'),(47822,'Bouli Lanners'),(47824,'Adriana Sklenau0159u00edkovu00e1'),(47825,'Ju00e9ru00f4me Le Banner'),(47826,'Alexandre Astier'),(47827,'Luca Bizzarri'),(47828,'Paolo Kessisoglu'),(47829,'Elie Semoun'),(47838,'Miroslav Tu00e1borsku00fd'),(47844,'Frank Waldman'),(47845,'Ron Clark'),(47846,'Ernest Day'),(47848,'Andru00e9 Maranne'),(47851,'Andrew Sachs'),(47858,'Diane Keen'),(47859,'Lee Horsley'),(47861,'Glyn Baker'),(47864,'Lesley Dunlop'),(47870,'Nick Evans'),(47874,'Richard Wilson'),(47876,'Dawn Archibald'),(47878,'Jeff Yagher'),(47879,'John Savage'),(47881,'Colby Chester'),(47882,'Cynthia Gibb'),(47883,'Will MacMillan'),(47884,'Valerie Wildman'),(47885,'Josu00e9 Carlos Ruiz'),(47886,'Jorge Luke'),(47888,'Rosario Zu00fau00f1iga'),(47889,'Rick Boyle'),(47891,'Brad H. Aronson'),(47892,'Kathryn Morrison'),(47893,'Gary Nelson'),(47896,'Alf Clausen'),(47915,'Darren Star'),(47926,'Marion Rosenberg'),(47927,'Christopher Franke'),(47931,'Tasha de Vasconcelos'),(47932,'David Hunt'),(47934,'Dylan Smith'),(47942,'Sarita Allison'),(47943,'Stephen Boxer'),(47944,'Anthony O\'Donnell'),(47953,'Sonya Walger'),(47954,'Michaela Bercu'),(47955,'Florina Kendrick'),(47969,'Nick Boraine'),(47970,'Lida Botha'),(47973,'Dan Robbertse'),(47974,'Bob Spiers'),(47976,'Kim Fuller'),(47977,'Jamie Curtis'),(47978,'Uri Fruchtmann'),(47979,'Mark L. Rosen'),(47981,'Clive Tickner'),(47982,'Andrea MacArthur'),(47983,'Victoria Beckham'),(47984,'Melanie Brown'),(47985,'Emma Bunton'),(47986,'Melanie Chisholm'),(47987,'Geri Halliwell'),(47988,'Devon Anderson'),(47989,'Michael Barrymore'),(47990,'Elvis Costello'),(47991,'Bob Geldof'),(48012,'Jason Gedrick'),(48069,'Michael Stearns'),(48070,'Stephen Semel'),(48071,'Lobo Sebastian'),(48081,'Wolfgang Bu00f6ck'),(48136,'Gary Carlos Cervantes'),(48137,'Glenn Gers'),(48138,'Petrea Burchard'),(48151,'Michael Pink'),(48162,'Karl-Heinz Teuber'),(48163,'Sirena Irwin'),(48224,'Hans Sommer'),(48309,'Paul Breuls'),(48310,'Catherine Vandeleene'),(48311,'Kees Van Oostrum'),(48312,'Noah Segan'),(48353,'Stefanie Franke'),(48367,'Babette Bru00f6seke'),(48372,'Anette Felber'),(48377,'Alessandro Bressanello'),(48392,'Udo Kroschwald'),(48393,'Victor Schefu00e9'),(48405,'Olivier Perrier'),(48415,'Edgar Allan Poe'),(48417,'Roger Lumont'),(48418,'Erick Desmarestz'),(48443,'Maysie Hoy'),(48457,'Rau00fal Du00e1valos'),(48462,'Mikey Holekamp'),(48463,'Reece Thompson'),(48464,'Joel Palmer'),(48465,'Andrew Robb'),(48498,'Mickey Liddell'),(48523,'Martin Tillman'),(48530,'Maurice Compte'),(48535,'Larry John Meyers'),(48548,'Lee Stanley'),(48550,'Jac Flanders'),(48567,'August Strindberg'),(48576,'Charles Berling'),(48577,'Mathilde Seigner'),(48583,'Anne Fontaine'),(48587,'Brian Brophy'),(48588,'Ton Schippers'),(48590,'Uwe Schott'),(48737,'Philipp Sonntag'),(48804,'DeWitt Bodeen'),(48805,'Alan Ormsby'),(48806,'Charles W. Fries'),(48807,'Jere Huggins'),(48808,'Ned Humphreys'),(48810,'Scott Paulin'),(48828,'Hilmar Eichhorn'),(48847,'Patrick Diemling'),(48859,'Kurt Grou00dfkurth'),(48883,'Neelesha BaVora'),(48885,'Gerhard Schmidt'),(48903,'Stefan Ju00fcrgens'),(48958,'Debra Paget'),(48960,'Mary Philips'),(48965,'Anthony Hickox'),(48971,'Roger Lanser'),(48980,'David McNally'),(49002,'Donald Faison'),(49018,'Jeanette Hain'),(49025,'Samuel Le Bihan'),(49055,'Nina Kunzendorf'),(49056,'Martin Wuttke'),(49067,'Sylvie Pialat'),(49069,'Luciano Tovoli'),(49103,'Sabine Schroth'),(49148,'Calista Flockhart'),(49187,'Reinhard Besser'),(49190,'Julien Civange'),(49191,'Alain Carsoux'),(49194,'Yann Jouannic'),(49201,'Philippe Brenninkmeyer'),(49204,'Susanne Wuest'),(49265,'Lindsay Lohan'),(49271,'Brian Geraghty'),(49275,'Spencer Garrett'),(49278,'Olivier Rabourdin'),(49279,'Lau00ebtitia Spigarelli'),(49281,'Chris Sivertson'),(49283,'Tom Gores'),(49284,'Frank Mancuso Jr.'),(49285,'Joel McNeely'),(49286,'Lawrence Jordan'),(49305,'Jessica Franz'),(49326,'Jonathan LaPaglia'),(49344,'Max Gottlieb'),(49345,'Mark Raggett'),(49346,'Debora Weston'),(49353,'Jack Dodson'),(49357,'Bill Mumy'),(49365,'Jan Pohl'),(49424,'Michael A. Goorjian'),(49425,'Annabeth Gish'),(49442,'Corinna Glaus'),(49485,'Dominique Chiout'),(49486,'John Keogh'),(49487,'Richard Sammel'),(49491,'Jeff Burrell'),(49551,'Aloma Wright'),(49555,'Petter Nu00e6ss'),(49556,'Axel Hellstenius'),(49557,'Ingvar Ambju00f8rnsen'),(49558,'Lars Lillo-Stenberg'),(49559,'Svein Kru00f8vel'),(49560,'Inge-Lise Langfeldt'),(49561,'Marit Pia Jacobsen'),(49562,'Per Christensen'),(49563,'Hilde Olausson'),(49564,'Ola Otnes'),(49605,'Ekachai Uekrongtham'),(49609,'Sorapong Chatree'),(49623,'Jared Padalecki'),(49624,'Jensen Ackles'),(49625,'Rainer Kaufmann'),(49670,'Zsolt Csutak'),(49681,'Paul Mason'),(49706,'Adam Rodru00edguez'),(49730,'Larry Brand'),(49734,'Fann Wong'),(49735,'Aidan Gillen'),(49756,'Evelyne Didi'),(49766,'Kirsten Block'),(49767,'Frederick Lau'),(49809,'Eddie Hamilton'),(49813,'Don Warrington'),(49815,'Silas Weir Mitchell'),(49818,'Jacqueline Obradors'),(49823,'Eleazar Lipsky'),(49824,'Kathryn Erbe'),(49825,'J.H. Wyman'),(49826,'John Baldecchi'),(49827,'Michael Cerveris'),(49828,'Christof Wahl'),(49829,'Charles Ladmiral'),(49831,'Ric Kidney'),(49832,'R. D. Call'),(49833,'Mo Gaffney'),(49834,'Bette Henritze'),(49835,'Tom Aldredge'),(49863,'Jean-Franu00e7ois Gallotte'),(49872,'Fabienne Octobre'),(49874,'Catherine Bruchon'),(49886,'Freddy Waff'),(49895,'Aldo Sambrell'),(49903,'Tim Hill'),(49904,'Will McRobb'),(49905,'Chris Viscardi'),(49906,'Ross Bagdasarian'),(49907,'Michele Imperato'),(49908,'Steve Waterman'),(49909,'Richard Holland'),(49910,'Ali Dee'),(49911,'Christopher Lennertz'),(49912,'Julianne Jordan'),(49913,'Alexandra Welker'),(49914,'Cameron Richardson'),(49915,'Jesse McCartney'),(49916,'Veronica Alicino'),(49917,'Tracy Tormu00e9'),(49918,'Charlie Tahan'),(49920,'Willow Smith'),(49921,'Darrell Foster'),(49922,'Joanna Numata'),(49925,'Francis Wargnier'),(49927,'Dominique Gaborieau'),(49929,'William Self'),(49930,'Michel Eric'),(49933,'Franu00e7ois-Xavier Decraene'),(49944,'Anne Ramsey'),(49946,'Jean-Philippe u00c9coffey'),(49947,'Gu00e9rard Watkins'),(49948,'Nicolas Le Riche'),(49958,'Rosemary Forsyth'),(49961,'Michelle Trachtenberg'),(49965,'Tim Dutton'),(49971,'Jennifer Ehle'),(50020,'Scott Patterson'),(50081,'Giulio Biccari'),(50094,'Ken Kirzinger'),(50095,'Jason Ritter'),(50101,'Patrick Cady'),(50110,'Stefan Ciupek'),(50117,'Peter Hermann'),(50118,'Marc Wu00e4chter'),(50139,'Charles Weinstock'),(50140,'Kramer Morgenthau'),(50143,'Donevan Gunia'),(50147,'Oswald Wolkenstein'),(50175,'Patrick Rapold'),(50185,'David C. Bunners'),(50216,'Tree Adams'),(50217,'Michael Kelly'),(50234,'Donna Mills'),(50237,'Alan Collis'),(50238,'Sam Strangis'),(50239,'Charles Fox'),(50254,'Rainer Will'),(50266,'Shemar Moore'),(50301,'Louis L\'Amour'),(50302,'James Edward Grant'),(50303,'Michael Pate'),(50306,'Lee Aaker'),(50308,'Frank McGrath'),(50310,'Chuck Roberson'),(50346,'Shiri Appleby'),(50347,'Rachel Nichols'),(50354,'Philip Schulz-Deyle'),(50355,'Dan Maag'),(50356,'Alexander Vitt'),(50362,'Thiago Martins'),(50398,'Devon Sawa'),(50400,'Christopher Hart'),(50401,'Katie Wright'),(50402,'Nicholas Sadler'),(50459,'Becki Cross Trujillo'),(50460,'Michael Mayer'),(50461,'Erin Stam'),(50462,'Catherine Marie Thomas'),(50463,'Malin u00c5kerman'),(50464,'Brian Kerwin'),(50465,'Michael Ziegfeld'),(50466,'David Castro'),(50516,'Philippe Carcassonne'),(50522,'Eric Albertson'),(50539,'Caroline Champetier'),(50559,'Natalia Lu00f3pez'),(50567,'Melvin Frank'),(50574,'Frank De Kova'),(50580,'Nellie Manley'),(50582,'Frederik Du Chau'),(50583,'Adam Rifkin'),(50586,'Alex Neuberger'),(50587,'Larry Vigus'),(50588,'Bates Wilder'),(50589,'Frank Ridley'),(50630,'Leo Pescarolo'),(50651,'Takao Okawara'),(50659,'Ku00f4ichi Ueda'),(50661,'Shogo Tomiyama'),(50706,'Elisa Bell'),(50715,'David Michael Frank'),(50719,'Rodman Flender'),(50720,'Terri Hughes'),(50721,'Ron Milbauer'),(50722,'Roland Rosenkranz'),(50723,'Christopher Baffa'),(50724,'Jeffrey Sudzin'),(50726,'Greg Cannom'),(50728,'Andrew Licht'),(50739,'Enzo G. Castellari'),(50744,'Olga Karlatos'),(50745,'Giovanni Cianfriglia'),(50748,'Leonardo Scavino'),(50752,'Enno Hesse'),(50767,'Craig Gillespie'),(50768,'Nancy Oliver'),(50769,'Sarah Aubrey'),(50770,'Bruce Toll'),(50771,'Kirston Leigh Mann'),(50772,'David Torn'),(50773,'Lauren Ash'),(50774,'Nancy Beatty'),(50775,'Doug Lennox'),(50776,'Joe Bostick'),(50777,'Liz Gordon'),(50784,'Tony Di Mitri'),(50785,'Gilberto Galimberti'),(50792,'Henning Peker'),(50807,'Michael Richards'),(50818,'Ernesto Gastaldi'),(50855,'Mark Rosenberg'),(50877,'Jill Hennessy'),(50880,'Robert Beltran'),(50893,'Rolf von Goth'),(50942,'Gregory Poirier'),(50950,'Virginie Besson-Silla'),(50952,'Alice Normington'),(50953,'Michele Clapton'),(50954,'Alexandre Azaria'),(50975,'Johnny Crawford'),(50983,'Gabriel Garcu00eda Mu00e1rquez'),(50984,'Scott Steindorff'),(50987,'Dylan Russell'),(50988,'Scott LaStaiti'),(50989,'Danny Greenspun'),(50990,'Robin Greenspun'),(50991,'Andrew Molasky'),(50992,'Chris Law'),(50993,'Michael Roban'),(50994,'Unax Ugalde'),(51006,'Marcela Mar'),(51021,'Patrick Melton'),(51023,'Marcus Dunstan'),(51026,'Daniel J. Heffner'),(51029,'Stacey Testro'),(51030,'Peter Block'),(51032,'Jason Constantine'),(51034,'Brett Sullivan'),(51035,'Alex Kavanagh'),(51036,'Louis Ferreira'),(51037,'Athena Karkanis'),(51038,'Simon Reynolds'),(51039,'Marty Adams'),(51040,'Sarain Boylan'),(51041,'Billy Otis'),(51042,'Niamh Wilson'),(51064,'Debbie Wiseman'),(51067,'Will Conroy'),(51068,'Jaume Martu00ed'),(51070,'Todd Dagres'),(51071,'Tania Reichert-Facilides'),(51072,'Kate Mara'),(51088,'Aviv Aldema'),(51099,'Valu00e9rie Zarrouk'),(51100,'Gad Elmaleh'),(51102,'Annelise Hesme'),(51104,'Claudine Baschet'),(51105,'Laurent Claret'),(51116,'Pierre Salvadori'),(51120,'Elliot Cowan'),(51173,'Armin Dahlen'),(51188,'Darrell Larson'),(51212,'Erik Aaes'),(51214,'Brad Renfro'),(51215,'Aeryk Egan'),(51216,'Robert Kuhn'),(51228,'Edward M. Abroms'),(51230,'Michael Fox'),(51296,'John Kamps'),(51297,'Jonah Bobo'),(51298,'Dax Shepard'),(51300,'Derek Mears'),(51301,'Douglas Tait'),(51302,'Joe Bucaro III'),(51303,'Jeff Wolfe'),(51310,'Henry Wilcoxon'),(51316,'Joe Cahill'),(51321,'Dawn Robinson'),(51323,'Richard Grandpierre'),(51325,'Ju00e9ru00e9mie Renier'),(51327,'Tom J. Astle'),(51328,'Matt Ember'),(51329,'Bradley Cooper'),(51330,'Terry Bradshaw'),(51331,'Tyrel Jackson Williams'),(51333,'Claudio Miranda'),(51344,'Franklin R. Levy'),(51345,'Reed Smoot'),(51346,'Don Jakoby'),(51348,'David Sheiner'),(51359,'Lela Rochon'),(51377,'David Janssen'),(51378,'Walter Hannemann'),(51379,'Eve Newman'),(51381,'Michael Weston'),(51382,'Chris Parnell'),(51383,'Tyler Labine'),(51384,'Missy Yager'),(51385,'Erica Huggins'),(51386,'David E. Russo'),(51389,'Joe Cobden'),(51390,'Emily Bergl'),(51391,'Frankie Muniz'),(51392,'Justin Berfield'),(51445,'Eric Valette'),(51446,'Andrew Klavan'),(51447,'Yasushi Akimoto'),(51448,'Lauren Weissman'),(51449,'Timothy M. Bourne'),(51450,'Martin Schuermann'),(51451,'Josef Lautenschlager'),(51452,'Andreas Thiesmeyer'),(51453,'Shinya Egawa'),(51455,'Johnny Lewis'),(51456,'Rhoda Griffis'),(51457,'Dawn Dininger'),(51458,'Sarah Jean Kubik'),(51459,'Raegan Lamb'),(51460,'Karen Beyer'),(51461,'Alana Locke'),(51462,'Dave Spector'),(51463,'Mary Lynn Owen'),(51464,'Roy McCrerey'),(51508,'JoeyStarr'),(51511,'Stu00e9phanie Gaurier'),(51514,'Christine Lucas Navarro'),(51517,'Jerry Houser'),(51521,'Robert Greenwald'),(51530,'Peter Woeste'),(51532,'John Christopher Jones'),(51533,'Fran Kranz'),(51534,'Lucky McKee'),(51536,'Agnes Bruckner'),(51537,'Lauren Birkell'),(51538,'Emma Campbell'),(51539,'Gordon Currie'),(51541,'Bryan Furst'),(51542,'Sean Furst'),(51543,'Jaye Barnes Luckett'),(51544,'Mare Winningham'),(51546,'Joe Seneca'),(51547,'James Avery'),(51549,'Jordan Charney'),(51550,'Dorothy Fielding'),(51551,'James Handy'),(51557,'Marcia Ross'),(51572,'Aaron Norris'),(51576,'Chuck Norris'),(51579,'Steven Williams'),(51580,'Janine Turner'),(51581,'Clarence Gilyard Jr.'),(51582,'Ned Vaughn'),(51583,'Mitchel Musso'),(51588,'Kevin Kiner'),(51600,'Clare Kilner'),(51609,'Gemmenne de la Peu00f1a'),(51610,'Judith McConnell'),(51611,'Chris Marrs'),(51612,'Todd Black'),(51613,'Jason Blumenthal'),(51627,'Tom Rickman'),(51636,'Jacky Ido'),(51637,'Antonio Prester'),(51641,'Loryn Locklin'),(51651,'Joachim Paul Assbu00f6ck'),(51656,'James Quattrochi'),(51662,'Ken Lerner'),(51663,'Sean Gunn'),(51666,'Patrick Coppola'),(51668,'Christopher Cibelli'),(51670,'Johnathon Schaech'),(51671,'Susie Porter'),(51675,'Finola Dwyer'),(51679,'John Ridley'),(51680,'Alice Hoffman'),(51681,'Alexandra Artrip'),(51682,'Wes Chatham'),(51683,'Jake McLaughlin'),(51684,'Mehcad Brooks'),(51686,'Mark Boal'),(51687,'Darlene Caamano'),(51688,'Laurence Becsey'),(51689,'Stan Wlodkowski'),(51690,'David Garrett'),(51691,'Emilio Diez Barroso'),(51692,'Jo Francis'),(51693,'Lisa Jensen'),(51697,'Edgar Burcksen'),(51699,'Tembi Locke'),(51700,'David Schmidt'),(51701,'Tom Finan'),(51702,'Brad Krevoy'),(51703,'Steven Stabler'),(51706,'Mary Fanaro'),(51707,'Roger Clinton, Jr.'),(51715,'Ib Melchior'),(51732,'Rodger Boyce'),(51733,'Ana Reeder'),(51734,'Kit Gwin'),(51735,'Zach Hopkins'),(51736,'Cormac McCarthy'),(51737,'David Diliberto'),(51742,'Marilda Donu00e0'),(51743,'Lucio Rosato'),(51750,'Joey Lawrence'),(51751,'Susan Walters'),(51754,'Freda Foh Shen'),(51755,'Ian Ogilvy'),(51758,'Terry Stokes'),(51762,'Douglas Fairbanks Jr.'),(51767,'Gene Fowler Jr.'),(51783,'James L. Carter'),(51791,'Mary Davenport'),(51792,'Rory Cochrane'),(51794,'Matt Venne'),(51795,'Tom Elkins'),(51797,'Nathan Fillion'),(51798,'Katee Sackhoff'),(51799,'Craig Fairbrass'),(51800,'Teryl Rothery'),(51801,'William MacDonald'),(51802,'Joshua Ballard'),(51803,'David Milchard'),(51804,'Michael Backes'),(51805,'Kevin Anderson'),(51812,'Nicol Williamson'),(51813,'Prunella Gee'),(51833,'Claude Faraldo'),(51840,'Francesca Romana Coluzzi'),(51841,'Mary Ellen Mark'),(51843,'Neil Koenigsberg'),(51851,'Jake Kasdan'),(51852,'Lewis Morton'),(51853,'Uta Briesewitz'),(51854,'Steve Welch'),(51856,'Jenna Fischer'),(51857,'Tim Meadows'),(51860,'Jewel'),(51861,'Ghostface Killah'),(51864,'Kasi Lemmons'),(51865,'Michael Genet'),(51866,'Rick Famuyiwa'),(51868,'Terilyn A. Shropshire'),(51869,'Gersha Phillips'),(51873,'Maggie Lawson'),(51878,'John Kani'),(51882,'Euan Lloyd'),(51892,'Erwin Gitt'),(51894,'Juan Antonio Bayona'),(51895,'Sergio G. Su00e1nchez'),(51896,'Mar Targarona'),(51897,'Fernando Velu00e1zquez'),(51898,'u00d3scar Faura'),(51899,'Elena Ruiz'),(51900,'Josep Rosell'),(51901,'Maria Reyes'),(51902,'Fernando Cayo'),(51903,'Roger Pru00edncep'),(51904,'Montserrat Carulla'),(51905,'Andru00e9s Gertru00fadix'),(51906,'u00c9dgar Vivar'),(51908,'Damian Shannon'),(51909,'Mark Swift'),(51914,'Tony Imi'),(51915,'Norman Buckley'),(51917,'Larry Clark'),(51918,'Harmony Korine'),(51919,'Kees Kasander'),(51922,'Carmen Cuba'),(51923,'John DeMeo'),(51930,'Wade Williams'),(51931,'Harrison Young'),(51935,'Patrick J. Adams'),(51936,'Lindy Booth'),(51937,'Jonathan Cherry'),(51938,'Shawn Lawrence'),(51939,'Robert Carli'),(51940,'Benjamin Wilkinson'),(51943,'u00d3scar Casas'),(51944,'Mike Epps'),(51954,'Marcia Shulman'),(51956,'Scott Mosenson'),(51957,'Roger L. Jackson'),(51962,'Bill Cosby'),(51963,'Michael Ou2019Hare'),(51965,'Kevin Sorbo'),(51966,'Ken Blakey'),(51971,'Nathalie Cerda'),(51974,'Brandon Boyce'),(51975,'Laura Ramsey'),(51976,'D.J. Cotrona'),(51977,'Rick Cramer'),(51979,'Scott Faye'),(51980,'Karen Lauder'),(51981,'Steve Mason'),(51982,'Amanda Harding'),(51983,'Amanda Koblin'),(51984,'Mimi Leder'),(51985,'Guy Riedel'),(51986,'Sherryl Clark'),(51987,'Martin Whist'),(51988,'Lizzy Caplan'),(51989,'Jessica Lucas'),(51990,'T.J. Miller'),(51991,'Michael Stahl-David'),(51992,'Odette Annable'),(51993,'Anjul Nigam'),(51994,'Margot Farley'),(51995,'Theo Rossi'),(51996,'Brian Klugman'),(51997,'Kelvin Yu'),(51998,'Liza Lapira'),(51999,'Lili Mirojnick'),(52000,'Todd Komarnicki'),(52001,'Jon Bokenkamp'),(52002,'Florencia Lozano'),(52003,'Kathleen Chalfant'),(52004,'Elaine Goldsmith-Thomas'),(52015,'Mari-Jo Winkler'),(52016,'Alix Friedberg'),(52018,'Britt Robertson'),(52019,'Marlene Lawston'),(52020,'Norbert Leo Butz'),(52021,'Frank Wood'),(52023,'Steve Railsback'),(52025,'Laurence Rosenthal'),(52026,'Vilko Filac'),(52028,'Chip Hormess'),(52030,'Catlin Adams'),(52031,'Mabel King'),(52032,'Richard Ward'),(52033,'Nancy Graham Tanen'),(52034,'Michael Slovis'),(52035,'Lewis Colick'),(52036,'Jan Fantl'),(52037,'Robert Ri\'chard'),(52038,'Thomas Carter'),(52042,'Richard Vane'),(52043,'Stuart Pankin'),(52044,'David Winning'),(52049,'Jay Chandrasekhar'),(52050,'Alice Greczyn'),(52051,'Steve Lemme'),(52052,'Jessica Simpson'),(52053,'Robert Ramsey'),(52054,'Matthew Stone'),(52055,'Geoffrey Simpson'),(52056,'Jeffrey Wolf'),(52057,'Obba Babatundu00e9'),(52058,'Michael Mulconery'),(52063,'Al Cliver'),(52080,'Eric Champnella'),(52081,'Albert J. Dunk'),(52087,'Carol Alt'),(52088,'Tom Meyer'),(52089,'Nicolas Clermont'),(52093,'Yves Langlois'),(52094,'Jerry Jameson'),(52096,'Arthur Hailey'),(52100,'William Frye'),(52112,'Steve Carr'),(52114,'Jon Lucas'),(52115,'Scott Moore'),(52116,'Wendy Raquel Robinson'),(52117,'Horatio Sanz'),(52119,'Megan Mullally'),(52139,'Seth MacFarlane'),(52140,'Charles B. Griffith'),(52141,'Robert Jayne'),(52142,'Susan Lee Hoffman'),(52144,'Lana Clarkson'),(52145,'Wayne Grace'),(52146,'Edward Blackoff'),(52154,'Stephen Sondheim'),(52159,'James D. Stern'),(52160,'John Goldwyn'),(52161,'Randall Poster'),(52162,'Jim Dunbar'),(52163,'John Dunn'),(52164,'Peter Swords King'),(52165,'Rick Findlater'),(52167,'Theo Maassen'),(52171,'Michael Schiffer'),(52188,'Drew Snyder'),(52192,'Alec Hirschfeld'),(52193,'R.J. Kizer'),(52194,'Tony Randel'),(52205,'Patrick Jordan'),(52218,'Perce Pearce'),(52226,'Katrin Schneider'),(52258,'Franco Fraticelli'),(52259,'Peter Safran'),(52260,'Shawn Maurer'),(52261,'Frank Helmer'),(52262,'Sean Maguire'),(52263,'Arjun Rampal'),(52267,'William Petersen'),(52271,'Brianna Brown'),(52272,'Megan Lusk'),(52274,'John Duerler'),(52283,'Paul Dobson'),(52288,'Jim Byrnes'),(52291,'Tegan Moss'),(52300,'Claudia Christian'),(52304,'Stephen Furst'),(52306,'Robert Rusler'),(52313,'Eileen Essell'),(52314,'Larry Doyle'),(52330,'Alexandra Kamp'),(52334,'Verona Pooth'),(52339,'Claude Foisy'),(52341,'Nadia Rona'),(52344,'Julien Rappeneau'),(52348,'Guy Lecluyse'),(52353,'Denis Rouden'),(52358,'Boaz Yakin'),(52360,'Ken Daurio'),(52361,'Cinco Paul'),(52365,'Cerina Vincent'),(52366,'Andrew Bryniarski'),(52369,'Kevin Ragsdale'),(52370,'Michael Turner'),(52371,'J.S. Cardone'),(52374,'Bruce Davison'),(52375,'Valentine Pelka'),(52377,'Scott Einbinder'),(52379,'Tim Jones'),(52394,'Lauren Lee Smith'),(52396,'Stefanie von Pfetten'),(52397,'Jim Boeven'),(52398,'Mikael Persbrandt'),(52399,'David Barrash'),(52400,'Dirk Martens'),(52401,'Matthew Harbour'),(52402,'Maria Pia Calzone'),(52403,'Emily Siewert'),(52404,'Mae Whitman'),(52405,'Michael Hoffman'),(52406,'Rachel Strouse'),(52407,'Sarah Strouse'),(52408,'Rick Duplissie'),(52409,'Jake La Botz'),(52410,'Don Strouse'),(52411,'Doug Liechty Caskey'),(52412,'Pam Angell'),(52413,'Jim Strouse'),(52414,'Cameron Bright'),(52415,'Michael Cudlitz'),(52416,'Idalis DeLeu00f3n'),(52417,'Piers Paul Read'),(52418,'David Kriegel'),(52419,'Josh Hamilton'),(52420,'John Newton'),(52421,'Christian J. Meoli'),(52422,'Michael DeLorenzo'),(52442,'Olivia Thirlby'),(52443,'Jason Reitman'),(52444,'Diablo Cody'),(52445,'Lianne Halfon'),(52446,'Mason Novick'),(52448,'Daniel Dubiecki'),(52449,'Eric Steelberg'),(52450,'Dana E. Glauberman'),(52451,'Kelli Konop'),(52452,'Peter Afterman'),(52453,'Margaret Yen'),(52454,'Mateo Messina'),(52455,'Kimya Dawson'),(52456,'Kara Lipson'),(52457,'Eileen Pedde'),(52458,'Daniel Clark'),(52462,'Betty Buckley'),(52463,'Stefan Gierasch'),(52467,'Cindy Daly'),(52469,'Anson Downes'),(52474,'Jason London'),(52475,'J. Smith-Cameron'),(52476,'Dylan Bruno'),(52477,'Zachery Ty Bryan'),(52478,'Rachel Blanchard'),(52479,'Eli Craig'),(52480,'Eddie Kaye Thomas'),(52481,'Clint Jordan'),(52482,'Kate Skinner'),(52483,'Rus Blackwell'),(52484,'Harold Surratt'),(52485,'David Lenthall'),(52486,'Kayla Campbell'),(52487,'Robert D. Raiford'),(52489,'Deborah Knox'),(52490,'Robert C. Treveiler'),(52491,'Gina Stewart'),(52492,'Claire Hurst'),(52493,'Albert E. Hayes'),(52494,'Colin Fickes'),(52495,'Eric Hill'),(52496,'Jennifer Nicole Parillo'),(52497,'Jessica Cowart'),(52498,'Tiffany LeShai McMinn'),(52499,'Steven Culbertson'),(52501,'Steven Frederick Cook'),(52502,'Chris Daniels'),(52503,'Hank Fields'),(52504,'Wofford Jones'),(52505,'Tara Killian'),(52506,'Mark Freiburger'),(52508,'Tobias Mehler'),(52512,'Laurie Murdoch'),(52514,'Malcolm Scott'),(52515,'Laura Karpman'),(52517,'Rafael Moreu'),(52529,'Elena Soarez'),(52530,'Adriano Goldman'),(52552,'Erwin Prib'),(52563,'Upton Sinclair'),(52564,'Dillon Freasier'),(52565,'Hope Elizabeth Reeves'),(52566,'Colleen Foy'),(52575,'Kelly Lin'),(52576,'Josu00e9 Padilha'),(52577,'Andru00e9 Batista'),(52578,'Luiz Eduardo Soares'),(52579,'Rodrigo Pimentel'),(52580,'Marcos Prado'),(52581,'Pedro Bromfman'),(52582,'Lula Carvalho'),(52583,'Wagner Moura'),(52584,'Caio Junqueira'),(52585,'Andru00e9 Ramiro'),(52586,'Milhem Cortaz'),(52597,'Neil Meron'),(52598,'Travis Knox'),(52599,'Justin Zackham'),(52600,'Bill Brzeski'),(52601,'Sean Hayes'),(52602,'Rob Morrow'),(52603,'Alfonso Freeman'),(52605,'Eva Longoria'),(52609,'Breck Eisner'),(52615,'Marilyn Joi'),(52622,'John F. Goff'),(52628,'Sofia Milos'),(52629,'Joseph Ruben'),(52637,'Carina N. Wiese'),(52639,'Tom Wlaschiha'),(52646,'Vincent Kartheiser'),(52647,'Shawn Hatosy'),(52650,'Frank Cassavetes'),(52654,'Chuck Pacheco'),(52671,'Bjoern Vosgerau'),(52680,'Barry Levy'),(52681,'Tania Landau'),(52682,'Luca Mosca'),(52684,'Hana Laslo'),(52685,'Makram Khoury'),(52691,'Anthony Stacchi'),(52693,'John B. Carls'),(52694,'Steve Bencich'),(52695,'Ron J. Friedman'),(52696,'Sam Harper'),(52697,'Georgia Engel'),(52698,'Nika Futterman'),(52699,'Danny Mann'),(52700,'Michelle Murdocca'),(52701,'Fergal Reilly'),(52702,'Jonathan Walker'),(52703,'Alan C. Peterson'),(52704,'Lane Garrison'),(52705,'Zak Santiago'),(52706,'Michael-Ann Connor'),(52707,'Stephen Hunter'),(52708,'Andy Davoli'),(52711,'Nicholas Pasco'),(52713,'Kenichi Yajima'),(52718,'Andrew Francis'),(52719,'John Liddle'),(52721,'Karoline Teska'),(52722,'Jacob Matschenz'),(52729,'Sebastian Edschmid'),(52733,'Judy Tossell'),(52739,'Bertrand Faivre'),(52759,'Fred Jackman Jr.'),(52760,'Alan Dale'),(52761,'Igor Jijikine'),(52762,'Pavel Lychnikoff'),(52763,'Aamir Khan'),(52771,'Tanay Chheda'),(52774,'Deepa Bhatia'),(52775,'Kristin Chenoweth'),(52776,'Dagmara Domiu0144czyk'),(52777,'Jack Kaeding'),(52778,'Gabriel Guedj'),(52779,'Ryan Murphy'),(52781,'Augusten Burroughs'),(52782,'Bonnie Weis'),(52783,'Rachel Bilson'),(52788,'Andre Lamal'),(52790,'Eric Reid'),(52791,'Harley Tannenbaum'),(52792,'Maya Rudolph'),(52793,'Anthony \'Citric\' Campos'),(52794,'David Herman'),(52795,'Sonny Castillo'),(52796,'Kevin McAfee'),(52797,'Robert Musgrave'),(52798,'Christopher Ryan'),(52799,'Heath Jones'),(52800,'Eli Muu00f1oz'),(52801,'Patrick Fischler'),(52802,'Ryan Ransdell'),(52803,'Etan Cohen'),(52804,'Elysa Koplovitz'),(52805,'Michael Nelson'),(52819,'Winston Stona'),(52829,'Adrian Robinson'),(52838,'Jeff Scheftel'),(52842,'Garth Jennings'),(52843,'Douglas Adams'),(52845,'Karey Kirkpatrick'),(52847,'Joy Bryant'),(52848,'Isla Fisher'),(52849,'Louis C.K.'),(52850,'Lina Esco'),(52851,'Paula Patton'),(52852,'Kat Dennings'),(52853,'Juliette Marquis'),(52854,'Sophie Monk'),(52855,'Christopher Michael Holley'),(52856,'Hunter Richards'),(52857,'Mike Falkow'),(52859,'Joe Drago'),(52860,'Judah Friedlander'),(52861,'Peter Anthony Tambakis'),(52863,'Carlo Alban'),(52865,'Garry Shandling'),(52866,'Avril Lavigne'),(52867,'Sami Kirkpatrick'),(52868,'Shane Baumel'),(52869,'Madison Davenport'),(52870,'Tim Johnson'),(52871,'Len Blum'),(52872,'Lorne Cameron'),(52873,'David Hoselton'),(52874,'Michael Fry'),(52875,'Oliver Klein'),(52878,'Lisa Banes'),(52879,'Jason T. Davis'),(52880,'Richard Lee Crow'),(52881,'Christine Renee Ward'),(52882,'Candyce Hinkle'),(52883,'Pat Corley'),(52884,'Wally Welch'),(52885,'Ritchie Montgomery'),(52886,'Jeffrey Donovan'),(52887,'Nancy Ellen Mills'),(52888,'Paul Ritter'),(52889,'Johnny Vegas'),(52890,'Richard Coyle'),(52891,'Tom Burke'),(52892,'Hugh Sachs'),(52893,'Trudi Jackson'),(52894,'Laurence Dunmore'),(52896,'Stephen Jeffreys'),(52897,'Russell Smith'),(52904,'Jean Claude Leuyer'),(52905,'Mike Leeder'),(52907,'John Paisley'),(52908,'Collin Chou'),(52909,'Masato Harada'),(52910,'Chris Chow'),(52924,'Rich Hutchman'),(52925,'Donna W. Scott'),(52929,'Angie Harmon'),(52930,'Carlos Jacott'),(52931,'Aaron Michael Drozin'),(52932,'Gloria Garayua'),(52933,'Timm Sharp'),(52934,'Nicholas Stoller'),(52935,'John Francis Daley'),(52936,'Kaitlin Doubleday'),(52937,'Rob Benedict'),(52938,'Vanessa Lengies'),(52939,'Max Kasch'),(52940,'Andy Milonakis'),(52941,'Rob McKittrick'),(52942,'Rob McKittrick'),(52943,'Art Monterastelli'),(52946,'Reynaldo Gallegos'),(52947,'Tim Kang'),(52952,'John Kemeny'),(52953,'Michael Hoenig'),(52956,'Jennifer Irwin'),(52957,'Ray Santiago'),(52960,'Nina Maag'),(52961,'Dennis Gansel'),(52962,'Ivana Milos'),(52963,'Heiko Maile'),(52964,'Cristina do Rego'),(52965,'Maximilian Vollmar'),(52966,'Tim Oliver Schultz'),(52967,'Amelie Kiefer'),(52968,'Russell Mulcahy'),(52969,'Lisa Ray'),(52970,'Sarala'),(52971,'John Abraham'),(52973,'Waheeda Rehman'),(52974,'Raghuvir Yadav'),(52975,'Rishma Malik'),(52980,'Anahid Nazarian'),(52981,'Mihai Malaimare Jr.'),(52982,'Osvaldo Golijov'),(52983,'Florin Kevorkian'),(52988,'Alan Oxman'),(52989,'John Penotti'),(52991,'Sam Hoffman'),(52992,'Courtney Potts'),(52993,'Bruna Papandrea'),(52994,'Tim Williams'),(52995,'Edward Herrmann'),(52996,'Heather Goldenhersh'),(52997,'Rob Corddry'),(53003,'Nessa Hyams'),(53004,'Laurence Dworet'),(53005,'Bruce Jarchow'),(53006,'Dennis Shryack'),(53008,'Mark Conte'),(53009,'Lois Freeman-Fox'),(53010,'John McIntire'),(53012,'Lyle Workman'),(53013,'Jeremy Sheffield'),(53014,'Jessica Bendinger'),(53015,'Nathalie Marciano'),(53016,'Michelle Chydzik Sowa'),(53017,'Blake Neely'),(53018,'Mary Finlay'),(53019,'Tom Burton'),(53020,'Barbara Herman-Skelding'),(53021,'Louise Page'),(53022,'Stefan Aust'),(53023,'David Gulpilil'),(53024,'James Pax'),(53025,'David Z. Weinstein'),(53026,'Les Gobruegge'),(53055,'Jeff Lima'),(53056,'Shareeka Epps'),(53057,'Nathan Corbett'),(53058,'Tyra Kwao-Vovo'),(53059,'Rosemary Ledee'),(53060,'Tristan Mack Wilds'),(53061,'Bryce Silver'),(53062,'Kaela C. Pabon'),(53063,'Erica Rivera'),(53064,'Stephanie Bast'),(53065,'Eleanor Hutchins'),(53066,'Sebastian Sozzi'),(53067,'Karen Chilton'),(53068,'Ryan Fleck'),(53069,'Anna Boden'),(53070,'Charles Corwin'),(53071,'Doug Dey'),(53072,'Hunter Gray'),(53073,'Lynette Howell'),(53074,'Rosanne Korenberg'),(53075,'Scott London'),(53076,'Clara Markowicz'),(53077,'Alex Orlovsky'),(53078,'Jamie Patricof'),(53079,'Jeremy Kipp Walker'),(53085,'John Cullum'),(53087,'William Allen Young'),(53088,'Jeff East'),(53097,'Antoine de Clermont-Tonnerre'),(53105,'Arjun Mathur'),(53107,'Asif Basra'),(53114,'Shane Vieau'),(53115,'Cynthia Ann Summers'),(53116,'Eric Lively'),(53117,'Dustin Milligan'),(53119,'Chris Gauthier'),(53120,'James DeMonaco'),(53122,'Fran Drescher'),(53137,'Mohammad Ahmed'),(53174,'Yuki Iwamoto'),(53175,'Mark Schwahn'),(53176,'John Gatins'),(53177,'Brian Robbins'),(53178,'Mike Tollin'),(53179,'Caitlin Scanlon'),(53180,'Sharla Sumpter'),(53181,'Sharone Meir'),(53182,'Nancy Nye'),(53183,'Debrae Little'),(53184,'Rick Gonzalez'),(53185,'Texas Battle'),(53188,'Fabrizio De Angelis'),(53196,'Sergio Salvati'),(53197,'Vincenzo Tomassi'),(53198,'James Carpinello'),(53199,'Mark Collie'),(53200,'Marcus Johns'),(53206,'Sau00efd Ben Sau00efd'),(53208,'Aviva'),(53209,'Aaron Fors'),(53210,'Heather Ashleigh'),(53211,'Cesar Flores'),(53212,'David Jacobson'),(53213,'Stavros Merjos'),(53214,'Adam Rosenfelt'),(53228,'Aton Soumache'),(53229,'Alexis Vonarb'),(53236,'Beth Hebert'),(53240,'Riz Ahmed'),(53246,'Jason Salkey'),(53247,'Chaka Forman'),(53248,'Tammy Trull'),(53249,'Michael Monks'),(53250,'Samantha Esteban'),(53251,'Tania Verafield'),(53252,'Noel Gugliemi'),(53253,'Adriana Millan'),(53254,'Geovanny Corvera'),(53255,'Cesar Garcia'),(53256,'Terry Crews'),(53257,'Emilio Rivera'),(53258,'David Banner'),(53259,'Michael Raymond-James'),(53260,'Adriane Lenox'),(53261,'Kim Richards'),(53262,'Neimus K. Williams'),(53263,'Ruby Wilson'),(53264,'Claude Phillips'),(53265,'Amy Lavere'),(53266,'Clare Grant'),(53267,'Craig Brewer'),(53276,'Galt Niederhoffer'),(53277,'Celine Rattray'),(53278,'Plummy Tucker'),(53279,'Evan Lurie'),(53280,'Tyler Posey'),(53281,'Di Quon'),(53283,'Jonathan Taylor Thomas'),(53285,'Earl Hindman'),(53289,'Danny B. Harvey'),(53290,'Donald M. Morgan'),(53291,'Richard Nord'),(53295,'Clive Cussler'),(53296,'Joshua Oppenheimer'),(53297,'Thomas Dean Donnelly'),(53298,'John C. Richards'),(53299,'Howard Baldwin'),(53300,'Karen Elise Baldwin'),(53302,'Elizabeth Lawrence'),(53303,'Tony Abatemarco'),(53304,'Peter Lord'),(53324,'David Nykl'),(53328,'Julia Sawalha'),(53329,'David Sproxton'),(53330,'Michael Rose'),(53331,'Tristan Oliver'),(53332,'Frank Passingham'),(53333,'John Hillcoat'),(53334,'Jim Sheridan'),(53335,'Rachel Avery'),(53336,'Brandon T. Jackson'),(53342,'Sylvain Coutandin'),(53344,'Fiona Trayler'),(53345,'Rich Wilkes'),(53346,'Kate Dowd'),(53347,'Michael Roof'),(53348,'Petr Ju00e1kl ml.'),(53351,'Janet Henfrey'),(53352,'Dominique Jackson'),(53353,'Albie Woodington'),(53354,'Igor Jadue-Lillo'),(53356,'Clive Dawson'),(53358,'Sarah Curtis'),(53359,'Joseph Infantolino'),(53360,'Alexa L. Fogel'),(53361,'Michael Parker'),(53362,'Harish Patel'),(53364,'India de Beaufort'),(53365,'Matthew Fenton'),(53366,'Simon Day'),(53367,'Ruth Sheen'),(53368,'Scott Porter'),(53372,'Nandita Das'),(53373,'Maia Sethna'),(53374,'Kitu Gidwani'),(53375,'Arif Zakaria'),(53376,'Eric Peterson'),(53377,'Kulbhushan Kharbanda'),(53379,'Pavan Malhotra'),(53380,'Sunil Mehra'),(53381,'Navtej Singh Johar'),(53382,'Bapsi Sidhwa'),(53383,'Anne Masson'),(53387,'Heywood Gould'),(53388,'Nevan Finegan'),(53389,'Tyrone Huggins'),(53391,'Victoria Pearman'),(53392,'Michael Cohl'),(53393,'Zane Weiner'),(53394,'Steve Bing'),(53395,'David Tedeschi'),(53396,'Ronnie Wood'),(53397,'Christina Aguilera'),(53399,'Buddy Guy'),(53400,'Tim Bagley'),(53401,'Johnny Williams'),(53402,'Richard Jeni'),(53403,'Orestes Matacena'),(53406,'Masahiro Yoshikawa'),(53431,'Nadine Labaki'),(53433,'Anne-Dominique Toussaint'),(53434,'Jihad Hojeily'),(53435,'Rodney El Haddad'),(53436,'Khaled Mouzannar'),(53438,'Laure Gardette'),(53439,'Pierre-Yves Lavouu00e9'),(53440,'Caroline Labaki'),(53441,'Aleksa Palladino'),(53442,'Yasmine Al Massri'),(53443,'Joanna Moukarzel'),(53444,'Gisu00e8le Aouad'),(53445,'Adel Karam'),(53446,'Sihame Haddad'),(53447,'Aziza Semaan'),(53449,'Fatmeh Safa'),(53450,'Dimitri Staneofski'),(53451,'Fadia Stella'),(53452,'Ismau00efl Antar'),(53454,'Damon Gupton'),(53455,'Kelly Masterson'),(53459,'Paul Parmar'),(53468,'Tom Swartwout'),(53469,'Tina Nigro'),(53471,'Belle Avery'),(53476,'Jeff G. Waxman'),(53478,'Carol Cuddy'),(53479,'Khaled Hosseini'),(53480,'Khalid Abdalla'),(53481,'Atossa Leoni'),(53482,'Zekeria Ebrahimi'),(53483,'Ahmad Khan Mahmoodzada'),(53485,'Rose McIver'),(53486,'Carolyn Dando'),(53490,'Michael O\'Hagan'),(53491,'Alice Sebold'),(53492,'Sam Huntington'),(53493,'Kal Penn'),(53494,'Tristan Lake Leabu'),(53500,'Steffi Sattler'),(53507,'Elina Salo'),(53515,'Beatie Edney'),(53517,'Nigel Havers'),(53519,'Lenny Henry'),(53521,'Chris Curling'),(53526,'Amanda McArthur'),(53527,'Jill Taylor'),(53530,'Sean Guest'),(53552,'John O\'Leary'),(53553,'Bruce McLaughlin'),(53558,'Brian Banks'),(53570,'Megan Cavanagh'),(53572,'Charles Malik Whitfield'),(53573,'Olek Krupa'),(53574,'Eric Thal'),(53577,'Maxwell McCabe-Lokos'),(53584,'Alan North'),(53585,'Sheila Gish'),(53587,'Peter Diamond'),(53588,'Billy Hartman'),(53589,'Phillip Brock'),(53591,'Steven Grives'),(53593,'Pete Antico'),(53596,'Martin Neufeld'),(53597,'Daniel Do'),(53599,'Andrew Morahan'),(53600,'Renee Props'),(53601,'Bobby Slayton'),(53602,'Linda Hart'),(53607,'Peter Salett'),(53614,'Melissa Parmenter'),(53615,'Cyril Morin'),(53616,'Rajesh Roshan'),(53634,'Jerry Gershwin'),(53636,'Shalimar Reodica'),(53637,'Devorah Herbert'),(53638,'Stephanie Allain'),(53639,'Scott Bomar'),(53640,'Amy Vincent'),(53641,'Billy Fox'),(53643,'Gigi Oeri'),(53645,'Julie Monroe'),(53646,'Missy Crider'),(53647,'Lainie Kazan'),(53648,'Eyde Belasco'),(53649,'Andrij Parekh'),(53650,'Anthony Mackie'),(53651,'Monique Gabriela Curnen'),(53652,'Collins Pennie'),(53661,'Pierre Haberer'),(53668,'David Willis'),(53669,'Hans Howes'),(53670,'Sydney McCallister'),(53671,'Rakeysh Omprakash Mehra'),(53672,'Soha Ali Khan'),(53673,'Alice Patten'),(53674,'Sharman Joshi'),(53675,'Kunal Kapoor'),(53676,'Atul Kulkarni'),(53677,'Ronnie Screwvala'),(53678,'David Reid'),(53679,'Binod Pradhan'),(53680,'Elaine Grainger'),(53681,'Samir Chanda'),(53683,'Leslie Jones'),(53684,'Robert Smigel'),(53685,'Barbara Tulliver'),(53687,'Roberto Silvi'),(53688,'Lily Cole'),(53708,'Ira Sachs'),(53710,'John Bingham'),(53711,'Jawal Nga'),(53712,'Dickon Hinchliffe'),(53713,'Affonso Gonu00e7alves'),(53714,'Rachel McAdams'),(53715,'Annabel Kershaw'),(53716,'Sheila Paterson'),(53718,'Erin Boyes'),(53719,'Elijah St. Germain'),(53720,'Timothy Webber'),(53735,'Cathleen Hoffmann'),(53755,'Elizabeth Reaser'),(53756,'Tom Lassally'),(53757,'Eric Kopeloff'),(53758,'Guymon Casady'),(53760,'Kevin Thompson'),(53761,'Christopher Gorham'),(53762,'Anne Cullimore Decker'),(53763,'Tito Larriva'),(53764,'Angel Aviles'),(53765,'Abraham Verduzco'),(53766,'Albert Michel Jr.'),(53767,'Roger Vadim'),(53768,'Anita Pallenberg'),(53769,'Catherine Chevallier'),(53770,'Marie Therese Chevallier'),(53771,'Victoria Mercanton'),(53778,'E.J. Callahan'),(53785,'Gaye Hirsch'),(53805,'Michele Mulroney'),(53806,'Kieran Mulroney'),(53807,'Armie Hammer'),(53810,'Robert Getchell'),(53811,'Stephen J. Lineweaver'),(53813,'Sandy Cochrane'),(53815,'Andrew Keir'),(53817,'Kenneth Haigh'),(53818,'Pamela Brown'),(53819,'Gru00e9goire Aslan'),(53820,'Michael C. Hall'),(53828,'Jennifer Carpenter'),(53840,'Michael D. O\'Shea'),(53841,'Brendan Galvin'),(53846,'Pheline Roggan'),(53862,'Kaley Cuoco'),(53863,'Simon Helberg'),(53865,'Cat Power'),(53866,'Peter S. Davis'),(53867,'William N. Panzer'),(53887,'Brandon Ratcliff'),(53888,'Miles Thompson'),(53889,'Carlie Westerman'),(53890,'Natasha Slayton'),(53891,'Najarra Townsend'),(53892,'Colette Kilroy'),(53893,'James Kayten'),(53894,'Gina Kwon'),(53895,'Holly Becker'),(53896,'Peter Carlton'),(53897,'Chuy Chu00e1vez'),(53898,'Andrew Dickler'),(53899,'Meg Morman'),(53900,'Aran Mann'),(53901,'John Wyatt'),(53902,'Bryan Venegas'),(53903,'Agathe de La Fontaine'),(53904,'Johan Leysen'),(53906,'Bruno Abraham-Kremer'),(53910,'Los Lobos'),(53916,'Ralph Brown'),(53917,'Danny Webb'),(53918,'Salli Richardson-Whitfield'),(53922,'Ed Quinn'),(53923,'Aunjanue Ellis'),(53924,'Kelly Rutherford'),(53925,'Jared Hess'),(53926,'Jon Heder'),(53927,'Aaron Ruell'),(53928,'Shondrella Avery'),(53929,'Haylie Duff'),(53930,'Tina Majorino'),(53931,'Sandy Martin'),(53932,'Trevor Snarr'),(53933,'Emily Dunn'),(53934,'Ellen Dubin'),(53935,'Dito Montiel'),(53936,'Melonie Diaz'),(53937,'Olga Merediz'),(53939,'Adam Scarimbolo'),(53941,'Sean Covel'),(53942,'Jeremy Coon'),(53950,'Fernando Sancho'),(53955,'Katarina Witt'),(53962,'u0110u1ed7 Thu1ecb Hu1ea3i Yu1ebfn'),(53963,'Robert Stanton'),(53966,'Peter Heller'),(53967,'Doug Mankoff'),(53969,'Luce Rains'),(53971,'Jenny Gabrielle'),(53972,'Robert Schenkkan'),(53973,'Gauri Khan'),(53975,'Deepika Padukone'),(53998,'Nora-Jane Noone'),(53999,'Eileen Walsh'),(54004,'Marlene Assmann'),(54014,'David Hayman'),(54023,'Yangzom Brauen'),(54024,'Nikolai Kinski'),(54025,'Karyn Kusama'),(54038,'D.A. Clarke-Smith'),(54039,'John Berendt'),(54040,'John Lee Hancock'),(54041,'Paul Hipp'),(54042,'Lady Chablis'),(54043,'Gary Anthony Williams'),(54044,'Patrika Darbo'),(54045,'Arnold Stiefel'),(54046,'Anita Zuckerman'),(54047,'Phil Hay'),(54048,'Matt Manfredi'),(54049,'Martha Griffin'),(54050,'Mark Waters'),(54051,'David Berenbaum'),(54052,'Holly Black'),(54110,'Frank Kruse'),(54121,'Bernhard Schlink'),(54122,'Gwen Verdon'),(54124,'Marceline Hugot'),(54126,'Rachel Miner'),(54131,'Andru00e9s Santana'),(54159,'Myra Carter'),(54160,'Gershon Ginsburg'),(54163,'Stacy Maes'),(54164,'Barry Peterson'),(54165,'Zou00e9 Fu00e9lix'),(54167,'Line Renaud'),(54168,'Anne Marivin'),(54169,'Patrick Bosso'),(54170,'Ju00e9ru00f4me Commandeur'),(54171,'Ju00e9ru00f4me Seydoux'),(54172,'Eric Hubert'),(54173,'Richard Pezet'),(54175,'Florence Sadaune'),(54176,'Nicolas Guy'),(54177,'Roman Dymny'),(54178,'Franck Desmoulins'),(54179,'Lucien Balibar'),(54180,'Isabelle Thu00e9venet'),(54181,'Bruno Morin'),(54182,'Taylor Cole'),(54193,'Sergio Di Zio'),(54200,'Aaron Berg'),(54203,'Tinsel Korey'),(54204,'Adrian Politowski'),(54205,'Nadia Khamlichi'),(54206,'Jeremy Burdek'),(54208,'Michael Wimer'),(54209,'Anne-Marie Philipe'),(54211,'Thomas Tull'),(54212,'William Fay'),(54227,'Marie Gillain'),(54232,'Chuck Robinson'),(54240,'Tamara Jenkins'),(54241,'Erica Westheimer'),(54242,'Jim Burke'),(54243,'Fred Westheimer'),(54244,'W. Mott Hupfel III'),(54246,'Peter Friedman'),(54247,'Aaron Yoo'),(54248,'Christopher B. Landon'),(54249,'Jackie Marcus Schaffer'),(54250,'Kwame Parker'),(54251,'Tom Pollock'),(54252,'E. Bennett Walsh'),(54267,'Kim H. Winther'),(54268,'Vince Gerardis'),(54269,'Ralph Vicinanza'),(54271,'Dean Zimmerman'),(54272,'Joel Hynek'),(54274,'Serge Hazanavicius'),(54275,'Claire Johnston'),(54288,'Yves Marmion'),(54291,'Gilles Lellouche'),(54292,'Julie Ferrier'),(54318,'Charles Gillibert'),(54323,'Matthew Gledhill'),(54324,'Valu00e9rie Bonneton'),(54325,'Alice de Lencquesaing'),(54348,'Kate McGregor-Stewart'),(54349,'Dennis Potter'),(54387,'Ru00e9my Julienne'),(54414,'Jacob Pitts'),(54415,'Josh Gad'),(54416,'Sam Golzari'),(54417,'Dana Brunetti'),(54418,'Ben Mezrich'),(54419,'Ryan Kavanaugh'),(54420,'David Sardy'),(54421,'Janet Jackson'),(54422,'Tupac Amaru Shakur'),(54423,'Joe Torry'),(54424,'Maya Angelou'),(54425,'Chu00e9 J. Avery'),(54426,'Lloyd Avery II'),(54427,'Kimberly Brooks'),(54428,'Rico Bueno'),(54429,'Maia Campbell'),(54430,'Michael Colyar'),(54431,'Kina Cosper'),(54432,'Dina D.'),(54433,'James Deeth'),(54434,'Norma Donaldson'),(54435,'Kelly Joe Dugan'),(54436,'Suliamen El Hadi'),(54437,'Omar Ben Hassan'),(54438,'Jalal Nuriddin'),(54439,'Daoud Spencer'),(54440,'Rene Elizondo'),(54441,'James Ivory'),(54442,'E.M. Forster'),(54443,'Ruth Prawer Jhabvala'),(54444,'Joseph Bennett'),(54445,'Adrian Ross Magenty'),(54446,'Jo Kendall'),(54447,'Samuel West'),(54448,'Ismail Merchant'),(54449,'Richard Robbins'),(54450,'Gavin MacLeod'),(54453,'Wilson Cruz'),(54455,'Devon Gummersall'),(54464,'Tomas Spencer'),(54470,'Lauren Ambrose'),(54472,'Martin McDonagh'),(54474,'Peter Czernin'),(54476,'Jordan Prentice'),(54477,'Ben Campbell'),(54478,'Kate Butler'),(54479,'Bailee Madison'),(54480,'Grace Brannigan'),(54481,'Emma Fenton'),(54482,'Lauren Clinton'),(54483,'Isabelle Rose Kircher'),(54484,'Patricia Aldersley'),(54485,'Latham Gaines'),(54486,'Carly Owen'),(54487,'Lauren Levine'),(54488,'David Paterson'),(54489,'Stephanie Corsalini'),(54490,'Robert Gillies'),(54491,'Barbara Darragh'),(54492,'James Gaylyn'),(54493,'Jen Wolfe'),(54494,'Ian Harcourt'),(54495,'Khleo Thomas'),(54496,'Jake M. Smith'),(54497,'Byron Cotton'),(54498,'Brenden Richard Jefferson'),(54499,'Briana Evigan'),(54500,'Will Kemp'),(54502,'Cassie Ventura'),(54503,'Adam G. Sevani'),(54504,'Danielle Polanco'),(54505,'Telisha Shaw'),(54506,'Black Thomas'),(54507,'Jon M. Chu'),(54508,'Toni Ann Johnson'),(54509,'Karen Barna'),(54510,'Duane Adler'),(54511,'Bob Hayward'),(54512,'Meredith Milton'),(54513,'Max Malkin'),(54514,'Buck Damon'),(54515,'Hi-Hat'),(54516,'Dave Scott'),(54519,'Carlos Lasarte'),(54520,'Pablo Rosso'),(54521,'David Vert'),(54522,'Vicente Gil'),(54523,'Martha Carbonell'),(54524,'Carlos Vicente'),(54525,'Jaume Balagueru00f3'),(54526,'Paco Plaza'),(54527,'Luis Berdejo'),(54528,'Alberto Marini'),(54529,'Gemma Fauria'),(54530,'Xavier Mas'),(54531,'Glu00f2ria Viguer'),(54532,'Ferran Terraza'),(54559,'Christian Alvart'),(54563,'J. Todd Anderson'),(54564,'George Buck Flower'),(54565,'Raymond St. Jacques'),(54566,'Josu00e9 Saramago'),(54572,'Nora Salhi'),(54584,'Jesse Dylan'),(54585,'Clayton Hartley'),(54586,'Molly Cheek'),(54587,'Amanda Swisten'),(54588,'Nikki Ziering'),(54590,'Steve Rash'),(54592,'Danny Saphire'),(54593,'Tad Hilgenbrink'),(54594,'Jason Earles'),(54595,'Angela Little'),(54597,'Joe Nussbaum'),(54601,'W.K. Border'),(54604,'James Harris III'),(54605,'Terry Lewis'),(54606,'Kim Hardin'),(54615,'Christy Chung'),(54620,'Branko u0110uriu0107'),(54627,'Zoltan Butuc'),(54634,'Chandra West'),(54635,'Tom Carey'),(54644,'Joel Zwick'),(54645,'Nia Vardalos'),(54646,'Christina Eleusiniotis'),(54647,'Marita Zouravlioff'),(54648,'Bess Meisler'),(54649,'Louis Mandylor'),(54650,'Gerry Mendicino'),(54651,'Joey Fatone'),(54652,'Fiona Reid'),(54653,'Alexander Janko'),(54654,'Chris Wilson'),(54679,'Rebecca Mader'),(54691,'Christopher Mintz-Plasse'),(54692,'Martha MacIsaac'),(54693,'Emma Stone'),(54694,'Clement Blake'),(54695,'Erica Vittina Phillips'),(54696,'Joe Nunez'),(54697,'Dave Franco'),(54698,'Marcella Lentz-Pope'),(54699,'Scott Gerbacia'),(54700,'Laura Seay'),(54701,'Roger Iwami'),(54702,'Clint Mabry'),(54703,'Mark Rogen'),(54704,'Charlie Hartsock'),(54705,'Donna Hardy'),(54706,'Charley Rossman'),(54708,'Carla Gallo'),(54709,'Ben Best'),(54710,'Jody Hill'),(54711,'Kevin Breznahan'),(54712,'Mousa Kraish'),(54713,'Nicholas Jasenovec'),(54714,'Keith Loneker'),(54715,'Matthew McKane'),(54716,'Lauren Miller'),(54717,'Rakefet Abergel'),(54718,'Brooke Dillman'),(54719,'Michael Naughton'),(54720,'Steve Bannos'),(54721,'Casey Margolis'),(54722,'Laura Marano'),(54723,'Matthew Bass'),(54724,'Aurora Snow'),(54725,'Jenna Haze'),(54726,'Ted Haigh'),(54727,'Michael Fennessey'),(54728,'Brian Huskey'),(54729,'Clark Duke'),(54730,'Stephen Borrello IV'),(54731,'Naathan Phan'),(54732,'Pamella D\'Pella'),(54733,'Greg Mottola'),(54734,'Evan Goldberg'),(54735,'Dara Weintraub'),(54738,'Jack Huston'),(54745,'Bu00e1rbara Pu00e9rez-Solero'),(54754,'Viva'),(54758,'Eric Schlosser'),(54760,'Phil Shirey'),(54761,'Kari Perkins'),(54765,'Hugo Perez'),(54772,'Andy Cohen'),(54773,'Steven Pearl'),(54774,'Sarah Platt'),(54776,'Paul Eads'),(54777,'Jennifer L. Smith'),(54779,'Robert Fyvolent'),(54780,'Mark Brinker'),(54781,'Allison Burnett'),(54782,'Mary Beth Hurt'),(54783,'Peter Lewis'),(54789,'Sean Patrick Flanery'),(54790,'David Della Rocco'),(54791,'David Ferry'),(54792,'Brian Mahoney'),(54793,'Carlo Rota'),(54795,'Troy Duffy'),(54796,'Chris Brinker'),(54797,'Robert N. Fried'),(54798,'Bill DeRonde'),(54799,'Redman'),(54800,'Anna Maria Horsford'),(54801,'Cypress Hill'),(54807,'Affif Ben Badra'),(54809,'Marco Khan'),(54810,'Reece Ritchie'),(54812,'Chevy Chase'),(54813,'Patrice Martinez'),(54814,'Philip Gordon'),(54815,'Steven Strait'),(54817,'Liane Balaban'),(54818,'Pascale Bussiu00e8res'),(54819,'Rachael Crawford'),(54822,'Dustin Lee Abraham'),(54823,'James Ellis'),(54824,'Shauna Garr'),(54826,'Traylor Howard'),(54827,'Dave Meyers'),(54830,'Sophia Bush'),(54834,'Zachary Knighton'),(54843,'Andrew Form'),(54844,'Bradley Fuller'),(54846,'James Hawkinson'),(54850,'Kyle Davis'),(54853,'Lori Cardille'),(54854,'Terry Alexander'),(54855,'Joseph Pilato'),(54856,'Jarlath Conroy'),(54857,'Anthony Dileo Jr.'),(54858,'Richard Liberty'),(54859,'Sherman Howard'),(54864,'Geno Silva'),(54865,'Jeff Kober'),(54868,'Christian Gudegast'),(54869,'Paul Scheuring'),(54870,'Bob Degus'),(54871,'Vincent Newman'),(54872,'Joey Nittolo'),(54873,'Tucker Tooley'),(54881,'Summer Glau'),(54882,'Morena Baccarin'),(54883,'Michael Buscemi'),(54887,'Elizabeth Bracco'),(54896,'Mark Kamine'),(54900,'Victoria Farrell'),(54901,'Andru00e9 Singer'),(54904,'David Ronn'),(54918,'Vincent Elbaz'),(54926,'Sean Bobbitt'),(54941,'Harriet Medin'),(54948,'Ursina Lardi'),(54962,'Kuen-Il Song'),(54963,'Lars Ginzel'),(54967,'Sam Weisman'),(54971,'Marc Rocco'),(54972,'Dan Gordon'),(54984,'Miriam Biderman'),(54996,'Graziella Moretto'),(54998,'Olivia Arau00fajo'),(55002,'Bju00f6rn Granath'),(55010,'Harildo Deda'),(55011,'Maria Menezes'),(55015,'Josu00e9 Dumont'),(55018,'Karim Au00efnouz'),(55019,'Toca Seabra'),(55037,'Jeremy Kemp'),(55042,'Fabian Preger'),(55043,'Louis Sachar'),(55044,'Louis Sachar'),(55046,'Etgar Keret'),(55049,'Bruria Albeck'),(55060,'Shibani Bathija'),(55061,'Kajol'),(55062,'Tabu'),(55063,'Lara Dutta'),(55066,'Sharat Saxena'),(55068,'Shruti Seth'),(55070,'Vrajesh Hirjee'),(55073,'Ravi K. Chandran'),(55075,'Jeff Wadlow'),(55077,'Chris Hauty'),(55078,'David Zelon'),(55079,'Lukas Ettlin'),(55080,'Debra Weinfeld'),(55081,'Jonathan Eusebio'),(55084,'Sean Faris'),(55085,'Amber Heard'),(55086,'Cam Gigandet'),(55089,'Evan Peters'),(55090,'Wyatt Smith'),(55091,'Neil Brown Jr.'),(55092,'Lauren Leech'),(55093,'Scott Baio'),(55097,'Nate Hartley'),(55098,'Kristofor Brown'),(55105,'Gero Camilo'),(55115,'Nathan West'),(55116,'Joe Chappelle'),(55117,'Matthew Bright'),(55119,'Alejandro Jodorowsky'),(55148,'Sean Maher'),(55152,'Campbell Scott'),(55153,'Fiona Loewi'),(55155,'Bernard Behrens'),(55157,'Jasen Fisher'),(55162,'Bennett Yellin'),(55163,'Aaron Meyerson'),(55164,'Gerald T. Olson'),(55165,'Todd Rundgren'),(55169,'Michl Britsch'),(55173,'Ray Nelson'),(55174,'Marcus Thomas'),(55175,'Mike Marcus'),(55177,'Marcelo Zarvos'),(55178,'Scott Chestnut'),(55179,'Maryam Decter'),(55180,'Linda Madden'),(55183,'Wilson Gonzalez Ochsenknecht'),(55188,'Valerie Buhagiar'),(55189,'Bruce McDonald'),(55191,'Colin Brunton'),(55192,'Verna Bloom'),(55194,'Mark Metcalf'),(55195,'James Widdoes'),(55196,'Mary Louise Weller'),(55197,'Martha Smith'),(55198,'James Daughton'),(55199,'Douglas Kenney'),(55200,'Chris Miller'),(55201,'Bruce Bonnheim'),(55202,'Joshua Daniel'),(55203,'Sarah Holcomb'),(55204,'Stacy Grooman'),(55205,'Stephen Bishop'),(55206,'DeWayne Jessie'),(55207,'Eliza Roberts'),(55208,'Lisa Baur'),(55209,'Aseneth Jurgenson'),(55210,'Katherine Denning'),(55211,'Raymone Robinson'),(55212,'Robert Elliott'),(55213,'Reginald Farmer'),(55214,'Jebidiah R. Dumas'),(55215,'Priscilla Lauris'),(55216,'Rick Eby'),(55217,'John Freeman'),(55218,'Sean McCartin'),(55219,'Helen Vick'),(55220,'Rick Greenough'),(55224,'Clifford C. Coleman'),(55226,'Katherine Wooten'),(55227,'William B. Kaplan'),(55228,'Earl Sampson'),(55229,'Bill Varney'),(55230,'Howard S. Wollman'),(55231,'Alan Holly'),(55232,'Steve Yaconelli'),(55236,'Norman Glasser'),(55237,'Tom Kessenich'),(55238,'Michael Milgrom'),(55239,'Don Newton'),(55240,'Richard Kamins'),(55241,'Henry Millar'),(55242,'Lynne Brooks'),(55243,'Marilyn Patricia Phillips'),(55244,'Saul Kahan'),(55245,'John R. Shannon'),(55246,'Christine M. Loss'),(55247,'Judith Belushi-Pisano'),(55249,'Jack Gosden'),(55250,'Dave Kahn'),(55252,'Tim Miller'),(55253,'Michelle Krusiec'),(55254,'Frederique van der Wal'),(55255,'Sofia Eng'),(55256,'Julie Ann Emery'),(55257,'Adam Arkin'),(55258,'Robinne Lee'),(55259,'Paul Rodru00edguez'),(55260,'Gregory Allen Howard'),(55261,'Karmin Murcelo'),(55262,'James Victor'),(55265,'Jonathan Silverman'),(55267,'Terry Kiser'),(55268,'Catherine Parks'),(55269,'Eloise DeJoria'),(55270,'Tom Wright'),(55271,'Steve James'),(55272,'Novella Nelson'),(55274,'Lisa Nicole Carson'),(55275,'Jernard Burks'),(55276,'David Fonteno'),(55277,'Courtney Thorne-Smith'),(55278,'Jackie Cooper'),(55279,'Leslie Newman'),(55299,'Mark Herman'),(55301,'Jim Cartwright'),(55303,'Ergun Cankaya'),(55313,'James Kearns'),(55314,'Kimberly Elise'),(55315,'Daniel E. Smith'),(55316,'Larissa Laskin'),(55317,'Heather Wahlquist'),(55319,'Dee Barton'),(55321,'Patricia Mock'),(55330,'Stu00e9phane Marsil'),(55341,'Kelly Scott'),(55345,'Emily Gilchrist'),(55360,'Jamie Laurenson'),(55364,'Steven Robertson'),(55373,'Andy Breckman'),(55374,'Kane Ritchotte'),(55378,'John Bourgeois'),(55387,'Andrea Sedlu00e1u010dkovu00e1'),(55388,'Jean-Michel Simonet'),(55391,'Jamie Moss'),(55392,'Martha Higareda'),(55393,'Angela Sun'),(55394,'Cle Shaheed Sloan'),(55395,'Jayceon Terrell Taylor'),(55398,'Ashley Jensen'),(55400,'Conal Murphy'),(55401,'Joe Williams'),(55402,'Edward Nogria'),(55411,'David Gyasi'),(55412,'Steve Toussaint'),(55418,'Paul Trijbits'),(55420,'William Arntz'),(55421,'Betsy Chasse'),(55422,'Elaine Hendrix'),(55425,'John Ross Bowie'),(55426,'Robert Bailey Jr.'),(55427,'David Bridges'),(55429,'Mark Vicente'),(55432,'Jamie Farr'),(55433,'Lari White'),(55434,'Leonid Citer'),(55435,'David Allen Brooks'),(55436,'Semion Sudarikov'),(55437,'Peter von Berg'),(55438,'Dmitri S. Boudrine'),(55439,'Patricia Rozema'),(55440,'Joseph Vitarelli'),(55441,'David Boyd'),(55443,'Ellen L. Brothers'),(55444,'Marisa Yeres'),(55456,'Earl Bellamy'),(55463,'Jessica Stroup'),(55464,'Kelly Blatz'),(55465,'Samuel Anderson'),(55466,'James Corden'),(55467,'Stephen Campbell Moore'),(55468,'Andrew Knott'),(55469,'Russell Tovey'),(55470,'Dominic Cooper'),(55471,'Samuel Barnett'),(55472,'Sacha Dhawan'),(55473,'Georgia Taylor'),(55474,'John Collee'),(55475,'Patrick O\'Brian'),(55476,'Nicholas Hytner'),(55477,'Alan Bennett'),(55479,'Pu00e1draig Cusack'),(55480,'Damian Jones'),(55481,'Miles Ketley'),(55482,'Charles Moore'),(55483,'Julia Stannard'),(55484,'Chris Coen'),(55485,'Hamish McAlpine'),(55486,'Hengameh Panahi'),(55487,'Christian Baute'),(55488,'Philippe Aigle'),(55489,'Carol Stiller'),(55490,'Douglas C. Steiner'),(55491,'Monika Willi'),(55493,'Brady Corbet'),(55494,'Devon Gearhart'),(55496,'Robert LuPone'),(55497,'Susanne C. Hanke'),(55499,'Scott Derrickson'),(55500,'Paul Harris Boardman'),(55520,'Nae Caranfil'),(55536,'Melissa McCarthy'),(55538,'Tim Russ'),(55541,'Eddie Cibrian'),(55546,'Liza Weil'),(55547,'Matt Czuchry'),(55554,'John Kapelos'),(55557,'Michael DeLuise'),(55567,'Alexandra Paul'),(55569,'Anne Openshaw'),(55571,'John Furey'),(55572,'Larissa Gomes'),(55575,'Leah Pinsent'),(55578,'Steve Nicolson'),(55581,'George Anton'),(55582,'James Francis Ginty'),(55583,'Lex Shrapnel'),(55584,'Ingvar Eggert Siguru00f0sson'),(55585,'Sam Spruell'),(55586,'Sam Redford'),(55587,'Peter Stebbings'),(55588,'Roman Podhora'),(55589,'Shaun Benson'),(55591,'Tygh Runyan'),(55593,'Shawn Mathieson'),(55594,'Christopher Routh'),(55595,'Lubomir Mykytiuk'),(55596,'Michael Gladis'),(55597,'Louis Nowra'),(55599,'Winship Cook'),(55600,'Steve Danton'),(55611,'Gustin Nash'),(55612,'Paul Sarossy'),(55613,'Luis Sequeira'),(55614,'Dylan Taylor'),(55615,'Megan Park'),(55617,'Marcy Goldman'),(55619,'Lisa Arturo'),(55623,'Michael Dean Jacobs'),(55624,'Dian Bachar'),(55625,'Robyn Lynne Raab'),(55626,'Andrew Kemler'),(55627,'David Dunn'),(55628,'Joseph Arsenault'),(55629,'Marcus Vaughn'),(55630,'Joseph Moore'),(55631,'Jeffery Bowman'),(55632,'John Marlo'),(55633,'Kenny Gioseffi'),(55634,'Paul Robb'),(55636,'Donald Sutherland'),(55637,'Brian Hooks'),(55638,'Kevin Hart'),(55642,'Derick V. Underschultz'),(55643,'Prunella Scales'),(55645,'Victoria Hamilton'),(55648,'Robert Kerman'),(55650,'Luca Barbareschi'),(55651,'Salvatore Basile'),(55653,'Carl Gabriel Yorke'),(55654,'Janet u00c5gren'),(55672,'Tony King'),(55673,'Troy Gentile'),(55680,'Manuel Ferrara'),(55682,'Mark Ashley'),(55688,'Annette Crosbie'),(55689,'Philip Glenister'),(55690,'Tim Firth'),(55694,'Herschel Burke Gilbert'),(55696,'Harvey Clermont'),(55709,'Darcy Donavan'),(55710,'Adam McKay'),(55714,'Scott Gurney'),(55725,'Randy Travis'),(55742,'Tanja Koop'),(55751,'Kristin Kreuk'),(55753,'Philip Eisner'),(55754,'Nick Gillott'),(55755,'Richard T. Jones'),(55757,'Enzo Tarascio'),(55758,'Yvonne Sanson'),(55759,'Giovanni Bertolucci'),(55772,'India Osborne'),(55773,'Nathaniel Mu00e9chaly'),(55774,'Michel Abramowicz'),(55775,'Katie Cassidy'),(55776,'Holly Valance'),(55779,'John Schneider'),(55788,'Keith Dallas'),(55789,'Tate Taylor'),(55808,'Michel Saint-Jean'),(55813,'Jacques Maillot'),(55818,'Mu00e9lanie Gautier'),(55824,'Murilo Benicio'),(55836,'Josu00e9 Wilker'),(55841,'Ron O\'Neal'),(55843,'James Coleman'),(55861,'Kirk Acevedo'),(55866,'Paul Gleeson'),(55868,'James Jones'),(55869,'Robert Michael Geisler'),(55870,'John Roberdeau'),(55871,'Sheila Davis Lawrence'),(55876,'James Gallanders'),(55877,'Andrew Gillies'),(55885,'Sofia Helin'),(55899,'Rhys Wakefield'),(55900,'Luke Ford'),(55901,'Gemma Ward'),(55903,'Nathin Butler'),(55908,'Harry Ditson'),(55909,'Eddie Tagoe'),(55911,'Billy J. Mitchell'),(55913,'Amanda Sandrelli'),(55921,'Jean-Louis Livi'),(55922,'Didier Bezace'),(55929,'William Ostrander'),(55931,'Stuart Charno'),(55934,'Taika Waititi'),(55936,'Jemaine Clement'),(55948,'Alan Smithee'),(55952,'Nancy Rae Stone'),(55954,'Rod Dean'),(55955,'Randy Bricker'),(55957,'Charlotte Chatton'),(55958,'Kim Myers'),(55959,'Mickey Cottrell'),(55960,'Louis Turenne'),(55961,'Courtland Mead'),(55962,'Louis Mustillo'),(55963,'Jody St. Michael'),(55965,'Wren T. Brown'),(55983,'Jim Henson'),(55984,'Kevin Bisch'),(55985,'Tracey Wadmore-Smith'),(55992,'Brian Hannant'),(55997,'Joi Lansing'),(55998,'Pieter Bourke'),(55999,'Paul Ardaji'),(56003,'Bruce McNall'),(56015,'Tom Heaton'),(56020,'Julie Baines'),(56021,'Danny Cohen'),(56024,'Jean Dujardin'),(56032,'Moshe Diamant'),(56040,'Cylk Cozart'),(56041,'Irene Mecchi'),(56042,'Ivan Bilancio'),(56043,'Niketa Calame'),(56044,'Amanda Brown'),(56045,'Matthew Davis'),(56052,'Ryne Douglas Pearson'),(56053,'Joseph Singer'),(56054,'Sherri Stoner'),(56055,'Deanna Oliver'),(56056,'Jeffrey A. Montgomery'),(56057,'Malachi Pearson'),(56058,'Charles Edward Pogue'),(56059,'Patrick Read Johnson'),(56060,'David Rotman'),(56071,'Steve Hardie'),(56072,'Andy Grieve'),(56073,'Steven Hathaway'),(56074,'Dan Mooney'),(56075,'Robert Chappell'),(56076,'Diane Weyermann'),(56077,'Martin Levin'),(56078,'Julia Sheehan'),(56079,'Julie Ahlberg'),(56080,'Javal Davis'),(56081,'Ken Davis'),(56082,'Tony Diaz'),(56083,'Tim Dugan'),(56084,'Lynndie England'),(56085,'Jefferey Frost'),(56086,'Megan Ambuhl Graner'),(56087,'Sabrina Harman'),(56088,'Janis Karpinski'),(56089,'Roman Krol'),(56090,'Brent Pack'),(56091,'Jeremy Sivits'),(56093,'George McIndoe'),(56094,'David Alper'),(56095,'Gary Hamilton'),(56096,'Christopher Mapp'),(56097,'Alki David'),(56098,'Michael Jibson'),(56099,'Don Gallagher'),(56100,'Alistair Petrie'),(56101,'Gerard Horan'),(56102,'Peter de Jersey'),(56103,'Hattie Morahan'),(56104,'Sharon Maughan'),(56105,'Renu00e9e Taylor'),(56106,'Charles Shyer'),(56107,'Elaine Pope'),(56108,'Bill Naughton'),(56109,'Michael Bregman'),(56112,'David Lee Smith'),(56113,'James Robinson'),(56117,'Martin Kove'),(56120,'Yuji Okumoto'),(56121,'Joey Miyashima'),(56124,'William Zabka'),(56125,'Andre Blay'),(56126,'Shep Gordon'),(56128,'Kristy Swanson'),(56136,'Declan McGrath'),(56137,'Scott Moutter'),(56146,'Gau00ebtan Brizzi'),(56147,'Paul Brizzi'),(56150,'Ellory Elkayem'),(56151,'Peter Winther'),(56152,'Kari Wuhrer'),(56153,'Scott Terra'),(56154,'Antony Hoffman'),(56156,'Bonnie Turner'),(56157,'Terry Turner'),(56158,'Lorne Michaels'),(56159,'Dana Carvey'),(56162,'Josh Randall'),(56163,'Sascha Rosemann'),(56164,'T.W. Leshner'),(56165,'Branden R. Morgan'),(56166,'Carl Bressler'),(56167,'Ryan McGee'),(56168,'Suzanna Urszuly'),(56169,'Debbie Jaffe'),(56170,'Daniel Kay'),(56171,'Christopher Eberts'),(56172,'Steve Markoff'),(56173,'Mike Marvin'),(56183,'Art Evans'),(56186,'Randy Feldman'),(56188,'Riley Kathryn Ellis'),(56189,'Mark Lipsky'),(56191,'Michael Butler'),(56192,'Fritz Manes'),(56194,'Paolo Sorrentino'),(56195,'Ole Christian Madsen'),(56196,'Lars Andersen'),(56198,'Ari Folman'),(56204,'Daniel LeConte'),(56205,'Atom Egoyan'),(56208,'Lucrecia Martel'),(56224,'Bob Larson'),(56226,'Florence Foresti'),(56228,'Marc Libert'),(56230,'Eric Bassoff'),(56231,'Vincent Tabaillon'),(56234,'Emmanuel Pru00e9vost'),(56235,'Stu00e9phane Lecomte'),(56238,'Jason Netter'),(56249,'Christian Forte'),(56250,'Mark Plummer'),(56251,'Kevin Heffernan'),(56252,'Erik Stolhanske'),(56253,'Paul Soter'),(56257,'Duncan Kennedy'),(56258,'Donna Powers'),(56260,'Wayne Powers'),(56262,'Aaron Abrams'),(56263,'Mary Lambert'),(56264,'Peter Stein'),(56265,'Dale Midkiff'),(56266,'Fred Gwynne'),(56267,'Brad Greenquist'),(56268,'Todd Alcott'),(56269,'Patty Wooton'),(56270,'Stan Webb'),(56271,'Elmore James'),(56281,'Joe Gayton'),(56282,'Jonathan Craven'),(56284,'Harry Hitner'),(56322,'Amy Poehler'),(56323,'Tina Fey'),(56324,'Daryn Okada'),(56325,'Jeff Richmond'),(56326,'Jill Sobel Messick'),(56327,'Louise Rosner-Meyer'),(56332,'Marysia Kay'),(56336,'Jim Davis'),(56337,'Brian Manis'),(56338,'Andrew R. Jones'),(56341,'Mahiro Maeda'),(56345,'Machine Head'),(56347,'Clayton Watson'),(56348,'John DeMita'),(56349,'Victor Salva'),(56350,'Tom Luse'),(56351,'Mario Ohoven'),(56352,'Bennett Salvay'),(56353,'Don E. FauntLeRoy'),(56354,'Ed Marx'),(56356,'Gina Philips'),(56357,'Jonathan Breck'),(56358,'Patricia Belcher'),(56359,'Lexi Alexander'),(56362,'Deborah Del Prete'),(56365,'Charlie Hunnam'),(56367,'Naomi Campbell'),(56369,'Antonio Campos'),(56373,'Jean-Stu00e9phane Sauvaire'),(56375,'Amat Escalante'),(56381,'James Toback'),(56383,'Kelly Reichardt'),(56385,'Grant Bowler'),(56387,'Tony C. Jannelli'),(56389,'Steven Pasquale'),(56410,'Franu00e7ois Roy'),(56411,'Glenn Ficarra'),(56412,'John Requa'),(56417,'Catherine George'),(56418,'Sean Curley'),(56419,'Eddie Alderson'),(56435,'Stephen T. Kay'),(56436,'Tory Mussett'),(56439,'J. Trevor Edmond'),(56441,'Sheila Tousey'),(56442,'Gene Barry'),(56446,'John Cena'),(56447,'Kelly Carlson'),(56448,'Jeff Chase'),(56449,'Jerome Ehlers'),(56450,'Firass Dirani'),(56451,'Michelle Gallagher'),(56452,'Alan B. McElroy'),(56453,'John Bonito'),(56455,'Moon Bloodgood'),(56456,'James Read'),(56457,'Aimee Garcia'),(56459,'Colin Patrick Lynch'),(56461,'Kevin J. Messick'),(56471,'Katy Murphy'),(56472,'Sophie Main'),(56473,'Mary Riggans'),(56474,'Shona Auerbach'),(56475,'Marnix Van Den Broeke'),(56476,'Andrea Gibb'),(56485,'Jacqueline Kim'),(56490,'Stephanie Sawyer'),(56491,'Denis O\'Neill'),(56496,'Mungo McKay'),(56501,'Michael Spierig'),(56502,'Peter Spierig'),(56504,'Steven Boyle'),(56506,'William Dear'),(56510,'Joshua Rudoy'),(56511,'Cheryl Edwards'),(56512,'Tarsem Singh'),(56513,'Catherine Sutherland'),(56515,'Julio Caro'),(56516,'Carolyn Manetti'),(56517,'Paul Laufer'),(56518,'Tom Foden'),(56519,'Robert Duffy'),(56523,'Laura Bell Bundy'),(56533,'Claudio Fu00e4h'),(56535,'Marcus Trumpp'),(56538,'Hailey Noelle Johnson'),(56539,'Nicole Holofcener'),(56540,'Rickie Lee Jones'),(56541,'Deb Talan'),(56542,'Addison Timlin'),(56543,'Sandra Bee'),(56546,'Mark Armstrong'),(56547,'Christopher Webster'),(56548,'Robin Vidgeon'),(56549,'Michael Buchanan'),(56550,'Richard Dimbleby'),(56551,'Ashley Laurence'),(56552,'Sean Chapman'),(56553,'Robert Hines'),(56554,'Anthony Allen'),(56555,'Leon Davis'),(56556,'Michael Cassidy'),(56557,'Kenneth Nelson'),(56558,'Gay Baynes'),(56559,'Nicholas Vince'),(56560,'Simon Bamford'),(56561,'Grace Kirby'),(56562,'Raul Newney'),(56563,'Lara Phillips'),(56567,'Dina Spybey-Waters'),(56569,'Ashley Kramer'),(56574,'Dave Buzzotta'),(56576,'Steve Hytner'),(56577,'Carl V. Dupru00e9'),(56578,'Jeff Tremaine'),(56579,'John Miller'),(56580,'Dimitry Elyashkevich'),(56581,'Liz Ewart'),(56582,'Mark Hansen'),(56583,'Kristine Young Gaffney'),(56584,'Bam Margera'),(56585,'Steve-O'),(56586,'Chris Pontius'),(56591,'Danny Leiner'),(56592,'Philip Stark'),(56593,'Robert M. Stevens'),(56594,'Kimberly Ray'),(56595,'Marisa Coughlan'),(56596,'Peter E. Lengyel'),(56597,'Richard Perello'),(56604,'Hendrik von Bu00fcltzingslu00f6wen'),(56611,'Rob Edwards'),(56612,'Roy Conli'),(56613,'Steven Olds'),(56614,'Ray Stevenson'),(56617,'Enoch Frost'),(56618,'Brian Murray'),(56622,'Scott Peden'),(56632,'James Seymour Brett'),(56639,'Kate Plantin'),(56642,'Alison Mitchell'),(56643,'Steve Rudnick'),(56644,'Brian Reilly'),(56645,'Richard Baker'),(56646,'Rick Messina'),(56647,'James Miller'),(56648,'William W. Wilson III'),(56649,'Jennifer Decker'),(56650,'Ray Fearon'),(56653,'Oliver Nommsen'),(56654,'Laura Morante'),(56657,'Zacaru00edas M. de la Riva'),(56658,'Daniel Studi'),(56659,'Jeff LeBeau'),(56660,'Lorna Cook'),(56661,'Jonathan Levine'),(56662,'Felipe Marino'),(56664,'Joe Neurauter'),(56665,'Chad Feehan'),(56666,'Keith Calder'),(56667,'Max Howard'),(56668,'Brian Udovich'),(56669,'Jacob Forman'),(56670,'Darren Genet'),(56671,'Mireille Soria'),(56673,'Josh Noyes'),(56674,'Mark Schulz'),(56675,'Anson Mount'),(56676,'Michael Welch'),(56677,'Whitney Able'),(56678,'Clare De Chenu'),(56679,'Edwin Hodge'),(56680,'Luke Grimes'),(56681,'Melissa Price'),(56682,'Adam Powell'),(56683,'Bryan Adams'),(56684,'Peyton Hayslip'),(56685,'Brooke Bloom'),(56686,'Robert Earl Keen'),(56687,'Fyvush Finkel'),(56689,'LaChanze'),(56690,'Mike Moyer'),(56691,'Saverio Guerra'),(56694,'Donna Mitchell'),(56695,'Michael Tucker'),(56696,'Isaac Mizrahi'),(56697,'Charley Beal'),(56710,'Oliver Parker'),(56712,'Oscar Wilde'),(56713,'Guy Bensley'),(56714,'Daisy von Scherler Mayer'),(56715,'Tracey Jackson'),(56716,'Cara Silverman'),(56717,'Tom Vaughan'),(56718,'Dana Fox'),(56719,'Willie Chan'),(56720,'Solon So'),(56728,'Tim Herlihy'),(56730,'Cole Sprouse'),(56731,'Jessica Alba'),(56732,'Fernanda Romero'),(56733,'Danny Mora'),(56734,'Chlou00eb Grace Moretz'),(56735,'David Moreau'),(56736,'Xavier Palud'),(56737,'Don Granger'),(56738,'Michelle Manning'),(56739,'Peter Chan'),(56740,'Darren Miller'),(56747,'Robert Little'),(56748,'David C. Williams'),(56749,'Don Thompson'),(56750,'Xantha Radley'),(56755,'Patricia Birch'),(56757,'Eva Amurri Martino'),(56758,'Andre Ware'),(56759,'David L. Bushell'),(56760,'Elizabeth Cantillon'),(56761,'Aram Nigoghossian'),(56763,'Kevin Barnett'),(56765,'Leslie Shatz'),(56766,'Rain Li'),(56778,'Stuart Townsend'),(56785,'Tegan West'),(56786,'Ross Emery'),(56787,'Brahim Chioua'),(56789,'Thomas Bezucha'),(56790,'Jennifer Ogden'),(56791,'Jonathan Brown'),(56804,'Lau Siu-Ming'),(56816,'Michelle Reis'),(56824,'Jaime Pressly'),(56825,'Sarah Carter'),(56826,'Adam Gross'),(56827,'Junkie XL'),(56828,'Christopher Cain'),(56829,'Julie Bergman Sender'),(56832,'Yiu-Tsou Cheung'),(56835,'Benou00eet Jaubert'),(56837,'Jean-Claude Grumberg'),(56839,'Andrei Boncea'),(56840,'Michu00e8le Ray-Gavras'),(56843,'Valerio Mastandrea'),(56848,'Gary Bullock'),(56853,'Phil Morris'),(56854,'Don Harper'),(56855,'Melissa Rosenberg'),(56856,'Stephenie Meyer'),(56857,'Peter Facinelli'),(56859,'Mark Bishop'),(56860,'Ethan Reiff'),(56861,'Tony Leung Ka-Fai'),(56867,'Mark McKinney'),(56870,'Ki-hop Chan'),(56871,'Blair Underwood'),(56881,'Shelley Long'),(56885,'Henning Bendtsen'),(56889,'Guy Moon'),(56890,'Malcolm McDowell'),(56891,'Rachel Talalay'),(56892,'Tom Astor'),(56895,'Amy Jo Johnson'),(56902,'John Witherspoon'),(56903,'Tracy Morgan'),(56905,'Jim Farmer'),(56906,'Frank Prinzi'),(56907,'Dana Congdon'),(56908,'Rick Alvarez'),(56909,'Karen Janszen'),(56910,'Susie Essman'),(56911,'Les Mayfield'),(56912,'Margaret Oberman'),(56913,'Stephen Carpenter'),(56914,'Peter Fandetti'),(56915,'Teun Hilte'),(56916,'Job ter Burg'),(56917,'James Herbert'),(56924,'Nestor Paiva'),(56930,'David Selby'),(56932,'Kevin McCormick'),(56933,'Donna Dixon'),(56934,'Wiley Wiggins'),(56943,'Woody Omens'),(56945,'Chris Radant'),(56946,'Stuart Kleinman'),(56947,'Peggy Rajski'),(56949,'Redd Foxx'),(56950,'Della Reese'),(56951,'Berlinda Tolbert'),(56953,'Gene Quintano'),(56955,'Taryn Davis'),(56956,'Michael Cohn'),(56957,'Tom Szollosi'),(56958,'Deborah Serra'),(56959,'A.E.W. Mason'),(56960,'Hossein Amini'),(56961,'Robert Jaffe'),(56962,'Rodolfo De Alexandre'),(56963,'Angelo Barra Moreira'),(56964,'Francisco Tsiren Tsere Rereme'),(56965,'Sally Robinson'),(56966,'Donna Dubrow'),(56967,'Andrew G. Vajna'),(56968,'John W. Stuart'),(56969,'Lynn Pleshette'),(56972,'Tony Lombardo'),(56973,'Peter Filardi'),(56976,'Victor Hammer'),(56977,'Roy Dupuis'),(56978,'Jennifer Rubin'),(56979,'Andrew Lauer'),(56981,'Franco Battista'),(56982,'Tom Berry'),(56985,'Frank Dux'),(56987,'Paul Mones'),(56988,'Robert Brinkmann'),(56989,'Christopher Roth'),(56994,'Bob Last'),(56995,'Joe Gareri'),(56996,'Christopher Godsick'),(56998,'Dwight H. Little'),(56999,'Michele Maples'),(57012,'Fares Fares'),(57018,'Louise Vesth'),(57020,'Aril Wretblad'),(57025,'Ron Mita'),(57026,'Jim McClain'),(57027,'Louis D\'Esposito'),(57028,'George Huang'),(57029,'Amanda Lewis'),(57030,'Gregor Jordan'),(57031,'Robert O\'Connor'),(57032,'Eric Weiss'),(57033,'Nora Maccoby'),(57034,'Rainer Grupe'),(57035,'Reinhard Klooss'),(57036,'Ariane Moody'),(57039,'Klaus Liebertz'),(57047,'Hendrik Hey'),(57048,'Casey La Scala'),(57049,'Brian Oliver'),(57050,'Amy E. Duddleston'),(57054,'Winston Chao'),(57055,'Mitchell Lichtenstein'),(57062,'I. Marlene King'),(57065,'Melissa Goddard'),(57069,'Gru00e9goire Hetzel'),(57070,'Patricia Casey'),(57073,'Ian MacNaughton'),(57074,'Tony Puryear'),(57076,'Stephen Joel Brown'),(57077,'Frank Capra III'),(57078,'Caroline Pham'),(57082,'John Stockwell'),(57083,'Lizzy Weiss'),(57084,'Louis G. Friedman'),(57085,'Kathy Jones'),(57086,'Buffy Shutt'),(57087,'Emma E. Hickox'),(57088,'Sanoe Lake'),(57089,'Chris Taloa'),(57090,'Brett Leonard'),(57091,'Rob Kobrin'),(57092,'B.J. Sears'),(57093,'Stephen Spinella'),(57096,'Maynard Eziashi'),(57097,'Bob Israel'),(57098,'Andrew G. La Marca'),(57106,'Alexander Dittner'),(57107,'Adam Resnick'),(57108,'Usher Raymond'),(57111,'Bill Scott'),(57112,'Tamara Smith'),(57113,'Dan Gilroy'),(57116,'David Johansen'),(57117,'Randy Kornfield'),(57119,'Sinbad'),(57120,'Mark Lombardo'),(57121,'Rie Rasmussen'),(57122,'William Kelley'),(57123,'Earl W. Wallace'),(57124,'David A. Stewart'),(57125,'Greg Marcks'),(57126,'Shane Hurlbut'),(57127,'Blake Heron'),(57130,'Todd Phillips'),(57132,'Daniel Goldberg'),(57133,'Paulo Costanzo'),(57134,'James Wong'),(57135,'Robert McLachlan'),(57136,'Ryan Merriman'),(57137,'Alexz Johnson'),(57138,'Tony Bill'),(57139,'Robert Crawford Jr.'),(57141,'Billy Byers'),(57142,'Andrew Marton'),(57143,'Mark Dymond'),(57144,'Clemency Burton-Hill'),(57145,'Ellie Chidzey'),(57146,'Tim Stern'),(57147,'Paul Hogan'),(57148,'Robert Kimmel'),(57150,'Brian Rudnick'),(57151,'Eric Abrams'),(57152,'Wolfgang Esenwein'),(57153,'Conrad Hool'),(57154,'Lance Hool'),(57155,'Boots Southerland'),(57156,'Perry Katz'),(57157,'Kathy Morgan'),(57158,'Igor Meglic'),(57159,'Jim Reeve'),(57160,'Steve Robbins'),(57161,'David Burr'),(57162,'Ted Chu'),(57164,'Terry Blythe'),(57166,'Linda Kozlowski'),(57167,'Jere Burns'),(57171,'Jesse Metcalfe'),(57172,'Ashanti'),(57173,'Jeff Lowell'),(57174,'Bob Cooper'),(57175,'Karen Lunder'),(57176,'Matt Friedman'),(57189,'Ryan Newman'),(57191,'Sam Lerner'),(57192,'Spencer Locke'),(57193,'Gil Kenan'),(57194,'Dan Harmon'),(57195,'Rob Schrab'),(57196,'Douglas Pipes'),(57199,'Mark Mylod'),(57201,'Mairi Bett'),(57203,'William Green'),(57206,'Sally Potter'),(57207,'Tony Jaa'),(57208,'Petchtai Wongkamlao'),(57209,'Bongkoj Khongmalai'),(57210,'Xing Jing'),(57212,'Piyaros Thongdee'),(57213,'Joe Wannapin'),(57214,'Prachya Pinkaew'),(57215,'Sukanya Vongsthapat'),(57216,'Howard Drossin'),(57217,'Nattawut Kittikhun'),(57218,'Stratos Gabrielidis'),(57219,'Joan Didion'),(57220,'John Gregory Dunne'),(57223,'Mary Hale'),(57225,'Lee R. Mayes'),(57241,'Tim Hampton'),(57244,'Sasha Harari'),(57245,'Kerry Kohansky'),(57247,'Peter Hu00f8eg'),(57248,'Ona Fletcher'),(57249,'Agga Olsen'),(57250,'Robin Shou'),(57251,'Linden Ashby'),(57252,'Trevor Goddard'),(57253,'Chris Casamassa'),(57254,'Franu00e7ois Petit'),(57255,'Keith Cooke'),(57256,'Ed Boon'),(57257,'John Tobias'),(57258,'Kevin Droney'),(57259,'Lauri Apelian'),(57260,'Alison Savitch'),(57261,'Renu00e9 Dupont'),(57263,'Nick Glennie-Smith'),(57264,'Dave Callaham'),(57270,'Robert Schwentke'),(57271,'Peter A. Dowling'),(57274,'Panna Rittikrai'),(57278,'Kate Beahan'),(57279,'Mehdi Sayah'),(57294,'Don MacPherson'),(57295,'Susan Ekins'),(57298,'Anne Parillaud'),(57301,'Vittorio Cecchi Gori'),(57304,'Kenji Kawai'),(57308,'Jack Brodsky'),(57309,'Joel Douglas'),(57314,'Wolfgang Reitherman'),(57317,'Louis Mellis'),(57318,'David Scinto'),(57326,'Augie Hess'),(57327,'David Sheffield'),(57328,'Barry W. Blaustein'),(57334,'Ken Anderson'),(57336,'Sheldon Turner'),(57340,'Steven Brand'),(57341,'William Osborne'),(57342,'Vince McMahon'),(57343,'Kevin Misher'),(57344,'Greg Parsons'),(57345,'Alessandro Gassman'),(57346,'Kate Nauta'),(57347,'Terry Miller'),(57348,'Fabrice Bismuth'),(57349,'Bubba Smith'),(57350,'Donovan Scott'),(57351,'George Gaynes'),(57352,'Andrew Rubin'),(57353,'David Graf'),(57354,'Debralee Scott'),(57356,'Bruce Mahler'),(57357,'Ted Ross'),(57358,'Brant von Hoffman'),(57359,'Neal Israel'),(57360,'Michael D. Margulies'),(57366,'Thomas Augsberger'),(57367,'Matthias Emcke'),(57370,'Frank Coraci'),(57374,'Diego Sieres'),(57377,'Randall Jahnson'),(57378,'John Eskow'),(57387,'Leo Fitzpatrick'),(57388,'Sarah Henderson'),(57389,'Justin Pierce'),(57392,'Michael Chambers'),(57393,'Patrick Panzarella'),(57394,'Lou Barlow'),(57395,'Natasha Henstridge'),(57396,'Dennis Feldman'),(57398,'David Streit'),(57399,'Lesley-Anne Down'),(57401,'John Long'),(57402,'Cathy Meils'),(57403,'Nial Iskhakov'),(57404,'Travis Wester'),(57405,'Jeff Schaffer'),(57406,'Alec Berg'),(57407,'David Mandel'),(57408,'Jerusha Hess'),(57409,'Ana de la Reguera'),(57410,'Hu00e9ctor Jimu00e9nez'),(57411,'Darius Rose'),(57412,'Moisu00e9s Arias'),(57413,'Carlos Maycotte'),(57414,'Richard Montoya'),(57415,'Cu00e9sar Barru00f3n'),(57416,'Rafael Montalvo'),(57417,'Julio Sandoval'),(57419,'Kristine Sutherland'),(57421,'Thomas Wilson Brown'),(57422,'Jared Rushton'),(57424,'Helen Buday'),(57426,'Debra Chiate'),(57427,'Pamela Koffler'),(57428,'Michael Landes'),(57429,'Jeffrey Reddick'),(57430,'Richard Brener'),(57431,'Matt Moore'),(57432,'Gary Capo'),(57433,'George Ogilvie'),(57434,'Amy Heckerling'),(57436,'Christopher Leitch'),(57437,'Hans Bauer'),(57439,'Allen Shapiro'),(57440,'Verna Harrah'),(57442,'Carole Little'),(57443,'Leonard Rabinowitz'),(57445,'Susan Ruskin'),(57446,'Mark Romanek'),(57447,'Christopher Crowe'),(57448,'Eric Schweig'),(57449,'Jodhi May'),(57450,'James Fenimore Cooper'),(57451,'Leslie Bibb'),(57452,'Faran Tahir'),(57453,'Finn Carter'),(57454,'Jonathan Jakubowicz'),(57456,'Joseph D. Pistone'),(57457,'Richard Woodley'),(57459,'Quentin Crisp'),(57461,'Simon Russell Beale'),(57464,'Alan Greenspan'),(57465,'Patrick McCormick'),(57470,'Jaime de Hoyos'),(57471,'Peter Marquardt'),(57473,'Eric Guthrie'),(57474,'Chris Knudson'),(57475,'u00c1lvaro Rodru00edguez'),(57478,'Cecilio Rodru00edguez'),(57479,'Mark Trujillo'),(57492,'Morgan Spurlock'),(57493,'Daryl Isaacs'),(57494,'Lisa Ganjhu'),(57495,'Stephen Siegel'),(57496,'Bridget Bennett'),(57498,'Eric Rowley'),(57499,'Mark Fenton'),(57500,'Alexandra Jamieson'),(57502,'John Banzhaf'),(57503,'David Satcher'),(57504,'Lisa Young'),(57505,'Kelly Brownell'),(57506,'Jacob Sullum'),(57507,'Tommy Thompson'),(57508,'William J. Klish'),(57509,'Joe Morley'),(57510,'Heather M. Winters'),(57511,'Scott Ambrozy'),(57512,'Stela Georgieva'),(57513,'Julie Bob Lombardi'),(57514,'Erica Leerhsen'),(57515,'Jeffrey Allard'),(57521,'Steve Beck'),(57522,'Robb White'),(57524,'Richard D\'Ovidio'),(57526,'Dan Cracchiolo'),(57527,'Omar Daher'),(57532,'Andrew W. Marlowe'),(57534,'Ron Vignone'),(57536,'William Blinn'),(57538,'Scot Armstrong'),(57546,'Jeff Maguire'),(57547,'Robert E. Howard'),(57549,'D. Constantine Conte'),(57550,'Duke Callaghan'),(57551,'Mario Cantone'),(57552,'Julie Halston'),(57553,'Lil\' Kim'),(57554,'Joan Lunden'),(57556,'Christopher Buckley'),(57557,'Christian Volckman'),(57558,'Mathieu Delaporte'),(57559,'Jean-Bernard Pouy'),(57560,'Michael Beugg'),(57561,'Alessandro Camon'),(57562,'Max Levchin'),(57563,'Elon Musk'),(57564,'David O. Sacks'),(57565,'John Schmidt'),(57566,'Peter Thiel'),(57567,'Mark Woolway'),(57569,'Lee Sheward'),(57570,'Bridget Johnson'),(57572,'Richard Sakai'),(57573,'Joe Penhall'),(57574,'Shauna Macdonald'),(57575,'Natalie Mendoza'),(57576,'Alex Reid'),(57577,'Saskia Mulder'),(57578,'MyAnna Buring'),(57579,'Don Roos'),(57581,'Neil Marshall'),(57583,'Christian Colson'),(57584,'Paul Smith'),(57585,'Sam McCurdy'),(57593,'Ernie Dingo'),(57594,'John Cornell'),(57595,'Brett Hogan'),(57596,'Jane Scott'),(57597,'Ron Dean'),(57598,'Daniel Faraldo'),(57599,'Seann William Scott'),(57600,'Robert Steadman'),(57601,'Joe Medjuck'),(57603,'Drake Sather'),(57604,'Joel Gallen'),(57605,'Lauren Zalaznick'),(57607,'Stephen Chow'),(57609,'Yuen Wah'),(57614,'Bill Borden'),(57615,'Po Chu Chui'),(57616,'David Hung'),(57617,'Jeffrey Lau'),(57618,'Wang Zhonglei'),(57619,'Hai Cheng Zhao'),(57620,'Raymond Wong Ying-Wah'),(57621,'Hang Yi'),(57622,'Xian Luo Zong'),(57624,'Ivan Goff'),(57625,'Ben Roberts'),(57628,'William Snape'),(57629,'Steve Huison'),(57630,'Peter Cattaneo'),(57631,'Simon Beaufoy'),(57632,'Uberto Pasolini'),(57633,'Rawson Marshall Thurber'),(57634,'Mary McLaglen'),(57635,'Rhoades Rader'),(57637,'James Hetfield'),(57638,'John Venzon'),(57639,'Tonino Valerii'),(57642,'Harvey Rosenstock'),(57646,'Henry Selick'),(57649,'Jeffery Deaver'),(57650,'Jeremy Iacone'),(57651,'Michael Klawitter'),(57652,'Louis A. Stroller'),(57653,'Carlos Ezquerra'),(57669,'Natalie Imbruglia'),(57670,'Don McEnery'),(57671,'Bob Shaw'),(57673,'Kevin Reher'),(57674,'Alexa PenaVega'),(57675,'Daryl Sabara'),(57676,'Katie Sagona'),(57677,'Miklu00f3s Lu00e1szlu00f3'),(57678,'Delia Ephron'),(57679,'Takashi Bufford'),(57680,'Dale Pollock'),(57682,'Julie Durk'),(57683,'Public Ennemy'),(57684,'Aaron Copland'),(57685,'Ray Allen'),(57686,'Hill Harper'),(57690,'Jim Breuer'),(57691,'Tamra Davis'),(57692,'Neal Brennan'),(57699,'Peter Hannan'),(57700,'Brandon Lee'),(57701,'Rochelle Davis'),(57702,'James O\'Barr'),(57703,'David J. Schow'),(57704,'Sherman L. Baldwin'),(57705,'Anne Rapp'),(57707,'Jeff Most'),(57708,'Robert L. Rosen'),(57709,'Toyomichi Kurita'),(57719,'Alison Bagnall'),(57740,'John David Allen'),(57741,'Mark Osborne'),(57742,'John Stevenson'),(57743,'Glenn Berger'),(57744,'Jonathan Aibel'),(57746,'Yong Duk Jhun'),(57747,'C.K. Horness'),(57748,'Byron Mann'),(57753,'Jerry Tokofsky'),(57754,'Stanley R. Zupnik'),(57755,'Woody Harrelson'),(57756,'Gene Simmons'),(57767,'A.J. Quinnell'),(57769,'Peter S. Elliot'),(57770,'Arlin Miller'),(57771,'Azucena Medina'),(57772,'Jonah Meyerson'),(57773,'Tyrin Turner'),(57775,'Tyger Williams'),(57776,'Kevin Moreton'),(57777,'Darin Scott'),(57778,'Quincy Jones III'),(57779,'Christopher Koefoed'),(57791,'Jim Schutze'),(57792,'Zachary Lang'),(57799,'Bill Young'),(57820,'Steve Faber'),(57821,'Bob Fisher'),(57822,'Andrew Panay'),(57823,'Marylouise Burke'),(57824,'Garrison Keillor'),(57829,'Anthony LaPaglia'),(57830,'Rachael Blake'),(57831,'Karen Mok'),(57832,'Daniel Lee'),(57835,'Andrew Bovell'),(57842,'Tony Cheung'),(57849,'Mandy Walker'),(57852,'Tom Gerhardt'),(57854,'Cheryl Hines'),(57855,'Joanna \'JoJo\' Levesque'),(57856,'Geoff Rodkey'),(57857,'Brian Witten'),(57858,'James Coblentz'),(57862,'Ted Tally'),(57864,'Andrew Z. Davis'),(57865,'u00c1lex de la Iglesia'),(57869,'Kevin West'),(57870,'Jason Bloom'),(57871,'Bradley Jenkel'),(57872,'Adam Leff'),(57873,'Mitchell Peck'),(57874,'Andrew Gross'),(57881,'Heidi von Palleske'),(57882,'Bari Wood'),(57884,'Norman Snider'),(57885,'Michael Wadleigh'),(57886,'Bob Maurice'),(57887,'Malcolm Hart'),(57888,'Don Lenzer'),(57891,'Joe Cocker'),(57892,'Ken Thorne'),(57893,'Raquel Castro'),(57894,'Olof Ku00e4llstru00f6m'),(57895,'Robert Harmon'),(57897,'Amelia Curtis'),(57898,'William Malone'),(57899,'Josephine Coyle'),(57900,'Limor Diamant'),(57901,'Rudy Cohen'),(57902,'Nicholas Pike'),(57905,'Lindsay Wagner'),(57906,'Andrew Dice Clay'),(57907,'Morris Day'),(57908,'Rex Weiner'),(57909,'James Cappe'),(57910,'David Arnott'),(57911,'Boris Blank'),(57912,'Song Dandan'),(57913,'Zhao Xiaoding'),(57914,'Long Cheng'),(57921,'Kitty Winn'),(57922,'William Peter Blatty'),(57924,'Norman Gay'),(57925,'Evan A. Lottman'),(57949,'Tom Wolfe'),(57950,'Douglas Stewart'),(57951,'Everlyn Sampi'),(57952,'Tianna Sansbury'),(57953,'Laura Monaghan'),(57954,'Doris Pilkington'),(57955,'Christine Olsen'),(57956,'David Elfick'),(57957,'Kathleen McLaughlin'),(57958,'John Winter'),(57962,'Mort Nathan'),(57963,'William Bigelow'),(57964,'Sabine de Mardt'),(57965,'Andrew Sugerman'),(57966,'John Axness'),(57970,'Alex Jones'),(57977,'Keith Salmon'),(57978,'Stuart Waks'),(57986,'Phoef Sutton'),(57987,'Peter Abrahams'),(57988,'Patrick Cirillo'),(57989,'Duncan Brantley'),(57990,'Rick Reilly'),(57991,'Wanda De Jesus'),(57992,'Tina Lifford'),(57993,'Michael Connelly'),(57995,'Matt Bushell'),(57996,'Nick Paonessa'),(57997,'Malcolm Goodwin'),(58000,'Sasha Jenson'),(58001,'Michelle Burke'),(58002,'David Klass'),(58003,'Joseph Bottoms'),(58004,'Gerry Day'),(58005,'Bharat Nalluri'),(58006,'Jodi Lyn O\'Keefe'),(58007,'Frank V. Phillips'),(58008,'G. Gregg McLaughlin'),(58010,'Robert Pucci'),(58011,'Rick Parks'),(58012,'David La Haye'),(58013,'Tracey Trench'),(58014,'Rossif Sutherland'),(58015,'Ricardo Mestres'),(58016,'Anna Friel'),(58019,'Ethan Embry'),(58028,'Jeremy Pikser'),(58032,'Jessica Campbell'),(58033,'Olivia Stewart'),(58034,'Gavin Scott'),(58035,'Trevor Brooker'),(58036,'Kirk Wong'),(58037,'Ben Ramsey'),(58038,'John M. Eckert'),(58039,'Bonnie Burroughs'),(58040,'Bruce Malmuth'),(58042,'Linda Hoffman'),(58045,'Molly Hagan'),(58047,'Charles Finch'),(58048,'Mark Amin'),(58057,'Guy Zerafa'),(58058,'Lochlyn Munro'),(58059,'Chris Koch'),(58060,'Pete Schwaba'),(58061,'Matt Tarses'),(58062,'Bill Wrubel'),(58063,'Judy Morris'),(58064,'Mark Lamprell'),(58065,'Nigel Westlake'),(58066,'Jay Friedkin'),(58067,'Margaret Sixel'),(58068,'Fionnula Flanagan'),(58069,'Rebecca Wells'),(58070,'Bonnie Bruckheimer'),(58071,'E.K. Gaylord II'),(58072,'John Pasquin'),(58074,'Madge Sinclair'),(58075,'Bill L. Norton'),(58079,'Sarah Badel'),(58084,'Harry J. Ufland'),(58085,'Mary Jane Ufland'),(58088,'Beth Jochem Besterveld'),(58090,'Greg Cruttwell'),(58092,'Susan Gauthier'),(58093,'Don McGuire'),(58094,'Gillian Armstrong'),(58095,'Louisa May Alcott'),(58096,'Nicholas Beauman'),(58097,'Michael Kalesniko'),(58100,'Ron Haddrick'),(58101,'John Hill'),(58102,'Stanley O\'Toole'),(58103,'Alexandra Rose'),(58104,'Peter Burgess'),(58112,'Richard Speight Jr.'),(58114,'Ali Hillis'),(58115,'Eric Dane'),(58119,'Austin O\'Brien'),(58120,'Sylvester Levay'),(58121,'Alicia Stevenson'),(58122,'Paul Aylett'),(58123,'Bolo Yeung'),(58124,'Arthur Kempel'),(58135,'Christopher Holmes'),(58136,'Christine Cavanaugh'),(58137,'Chris Noonan'),(58140,'Bill Miller'),(58141,'Donovan Leitch'),(58143,'Darryl Quarles'),(58144,'Don Rhymer'),(58145,'Jeff Kwatinetz'),(58147,'Jascha Washington'),(58150,'Stacey Dash'),(58151,'Elisa Donovan'),(58152,'Troy Kennedy Martin'),(58160,'Osamu Tezuka'),(58164,'Annabel Jankel'),(58165,'Rocky Morton'),(58166,'Parker Bennett'),(58167,'Terry Runte'),(58168,'Rachelle Lefevre'),(58169,'Vlasta Vru00e1na'),(58170,'Kathleen Fee'),(58178,'David Mirkin'),(58180,'Stanley Mann'),(58181,'Wilt Chamberlain'),(58183,'Michael I. Rachmil'),(58184,'Jane Curtin'),(58185,'Patrick McGrath'),(58186,'Catherine Bailey'),(58187,'Arthur Albert'),(58188,'Steve R. Moore'),(58189,'Justin Lin'),(58190,'Thomas M. Hammel'),(58191,'Chris Morgan'),(58192,'Stephen F. Windon'),(58193,'Kelly Matsumoto'),(58194,'Fred Raskin'),(58197,'Shad Moss'),(58198,'Chris Farley'),(58201,'John Bertolli'),(58203,'George Dawes Green'),(58204,'Ed Horowitz'),(58205,'Robin U. Russin'),(58206,'Julius R. Nasso'),(58207,'Jeffrey Robinov'),(58208,'Don Brochu'),(58209,'Rick Bota'),(58210,'Ernie Reyes, Jr.'),(58211,'Clive Exton'),(58212,'Christian Ferry'),(58213,'A. Michael Lieberman'),(58214,'Larry Pennell'),(58220,'Hugh Hudson'),(58221,'James Crawford'),(58224,'Jason Sudeikis'),(58225,'Zach Galifianakis'),(58226,'Robert Stone'),(58227,'Webster Stone'),(58228,'Kevin Fox'),(58234,'Gigi Levangie Grazer'),(58237,'Kelley Smith-Wait'),(58240,'A. Michael Baldwin'),(58245,'Don Coscarelli'),(58248,'Paul Pepperman'),(58249,'Fred Myrow'),(58251,'Elaine May'),(58252,'Roberto A. Quezada'),(58255,'Alexandre de La Patelliu00e8re'),(58256,'Roch Lener'),(58257,'Nicholas Dodd'),(58258,'Pascal Tosi'),(58260,'Martin Weisz'),(58266,'Ben Myron'),(58267,'Matthew Cassel'),(58271,'Neil Fanning'),(58272,'Scott Innes'),(58274,'Howard Klein'),(58275,'Michel Roy'),(58276,'Don Holley'),(58277,'Kathy Ireland'),(58278,'Mark Hanlon'),(58279,'Rebecca Weigold'),(58281,'Frank Noack'),(58283,'Albert Carreras'),(58288,'Tom Sherohman'),(58290,'Charlie Gartner'),(58291,'Dave Terman'),(58292,'Aaron Schneider'),(58293,'Alex McArthur'),(58294,'George Armitage'),(58295,'Tom Jankiewicz'),(58296,'Joe Strummer'),(58312,'Angie Everhart'),(58313,'Stephen Lovejoy'),(58314,'Paul Rosenberg'),(58315,'Matt Freeman'),(58316,'John Fortenberry'),(58317,'Chris Kattan'),(58318,'Jay Kamen'),(58319,'Jason Scott Lee'),(58320,'Gary Bryman'),(58321,'Eric Kripke'),(58324,'Jean-Franu00e7ois Richet'),(58325,'Robert Gantz'),(58326,'Caroline Wood'),(58327,'Jonathan Shestack'),(58328,'Randy Jon Morgan'),(58330,'James Hiroyuki Liao'),(58333,'Tom Kemp'),(58347,'Fausto Callegarini'),(58348,'Stefano Petronelli'),(58349,'Fabio Scarpa'),(58350,'Cristiano Bonora'),(58351,'Tiberio Greco'),(58352,'Jimmy Shubert'),(58353,'Tammi Cubilette'),(58354,'Mary Portser'),(58355,'Alexandra Fong'),(58356,'Kerry Bishu00e9'),(58357,'Dana Robin'),(58360,'Ed Check'),(58362,'Michael Hilkene'),(58363,'Odin Benitez'),(58366,'John P. Melfi'),(58367,'John Thomas'),(58368,'Robert Hoffman'),(58369,'Alexandra Breckenridge'),(58370,'Amanda Crew'),(58371,'Brandon Jay McLaren'),(58372,'Clifton MaCabe Murray'),(58373,'James Snyder'),(58374,'James Kirk'),(58375,'Andy Fickman'),(58376,'Ewan Leslie'),(58381,'Vince Vieluf'),(58388,'Stefan Broedner'),(58392,'Kristen Cloke'),(58393,'Crystal Lowe'),(58395,'Karin Konoval'),(58396,'Dean Friss'),(58397,'Robert Mann'),(58398,'Jessica Harmon'),(58399,'Leela Savasta'),(58400,'Kathleen Kole'),(58401,'Joanne Samuel'),(58402,'Cainan Wiebe'),(58403,'Glen Morgan'),(58405,'Roy Moore'),(58407,'James McCausland'),(58408,'Jordan Kerner'),(58412,'Courtney Taylor Burness'),(58414,'Dina Merrill'),(58416,'Bu00e9atrice Bonifassi'),(58417,'Lina Boudreau'),(58418,'Michu00e8le Caucheteux'),(58419,'Jean-Claude Donda'),(58420,'Mari-Lou Gauthier'),(58421,'Christopher Jenkins'),(58422,'Charles Linton'),(58423,'Richard Jaeckel'),(58424,'Lynn Kouf'),(58426,'Jihmi Kennedy'),(58427,'Scott Hazell'),(58428,'Philip Winchester'),(58429,'Karen Ford'),(58430,'Ruth Bradley'),(58431,'Abdul Salis'),(58432,'Gail Downey'),(58433,'David Ellison'),(58435,'Keith McErlean'),(58436,'Phil Sears'),(58437,'Blake T. Evans'),(58438,'Brian May'),(58439,'Cliff Hayes'),(58440,'Tony Paterson'),(58446,'Tom Bleecker'),(58448,'Penelope Spheeris'),(58453,'Peter Faiman'),(58454,'Ken Shadie'),(58461,'Michael Panes'),(58469,'Rex Pickett'),(58470,'Donald De Line'),(58471,'James Dyer'),(58472,'Wendy Japhet'),(58473,'James Otis'),(58474,'Anthony Russell'),(58475,'Angus MacInnes'),(58477,'Jonathan Loughran'),(58478,'Kevin Nealon'),(58479,'Robert Farrar'),(58493,'Tim Grimm'),(58494,'Tom McFadden'),(58495,'Morgan Paull'),(58497,'T.J. Cross'),(58498,'Dominic Sena'),(58499,'H.B. Halicki'),(58500,'Denice Shakarian Halicki'),(58501,'Stephen Greif'),(58502,'Natalie Dormer'),(58503,'Paddy Ward'),(58504,'Jeffrey Hatcher'),(58507,'Samm Levine'),(58508,'Joseph Gatt'),(58509,'Kel O\'Neill'),(58510,'John Burke'),(58511,'Brian George'),(58512,'Steve Tom'),(58513,'Patrick Cranshaw'),(58514,'Jim Sonzero'),(58515,'Ray Wright'),(58516,'Beetlejuice'),(58517,'Bonnie Morgan'),(58518,'Blair Hayes'),(58521,'Constance Shulman'),(58523,'Darryl Alan Reed'),(58528,'James Urbaniak'),(58529,'Marvin Chatinover'),(58530,'Mae Questel'),(58531,'Molly Regan'),(58532,'Joan Bud'),(58533,'Jessie Keosian'),(58534,'George Schindler'),(58535,'Paul Herman'),(58536,'Herschel Rosen'),(58537,'Lola Andru00e9'),(58539,'Stephanie Roth Haberle'),(58541,'Matt Servitto'),(58543,'Ivan Martin'),(58544,'Neal Huff'),(58545,'Roxanne Perry'),(58546,'Barbara Carroll'),(58547,'Niall Johnson'),(58549,'Bill Irwin'),(58550,'Gannon Forrester'),(58551,'Elizabeth Jagger'),(58552,'Burr Steers'),(58556,'Anatoli Davydov'),(58557,'Kerry Skalsky'),(58558,'James Douglas Haskins'),(58559,'Stephen Liska'),(58560,'John Harms'),(58561,'Edward J. Rosen'),(58562,'Christina Orchid'),(58563,'David Alan Grier'),(58565,'Carlos Leon'),(58570,'Joey Hazinsky'),(58575,'Juan Gabriel Yacuzzi'),(58576,'Mishal Husain'),(58577,'Rob Curling'),(58578,'Jon Chevalier'),(58579,'Rita Davies'),(58580,'Kim Fenton'),(58581,'Chris Gilbert'),(58582,'Phoebe Hawthorne'),(58584,'Atalanta White'),(58585,'Laurence Woodbridge'),(58586,'Maria McErlane'),(58587,'Phaldut Sharma'),(58588,'Timothy J. Sexton'),(58593,'Kou Shibasaki'),(58596,'Shinichi Tsutsumi'),(58604,'Nao Omori'),(58608,'Shinya Tsukamoto'),(58609,'Toru Tezuka'),(58611,'Kiyohiko Shibukawa'),(58613,'Suzuki Matsuo'),(58615,'Moro Morooka'),(58616,'Sakichi Satu00f4'),(58619,'Cindy Cheung'),(58620,'Joseph D. Reitman'),(58621,'John Boyd'),(58622,'Dick Rude'),(58623,'Sy Richardson'),(58628,'Sara Sugarman'),(58629,'Jennifer Balgobin'),(58632,'Frank Murray'),(58635,'Dominik Garcu00eda-Lorido'),(58636,'Lorena Feiju00f3o'),(58637,'William Marquez'),(58638,'Guillermo Cabrera Infante'),(58639,'D. Daniel Vujiu0107'),(58640,'Elle Peterson'),(58641,'Thomas Curtis'),(58643,'Linda Emond'),(58644,'Michael Seitzman'),(58645,'Clara Bingham'),(58646,'Damian Chapa'),(58647,'Jesse Borrego'),(58648,'Victor Rivers'),(58649,'Teddy Wilson'),(58650,'Raymond Cruz'),(58651,'Geoffrey Rivas'),(58652,'Ross Thomas'),(58653,'Jimmy Santiago Baca'),(58654,'Owen Teale'),(58655,'Harry Van Gorkum'),(58656,'Doug Lefler'),(58657,'Paul Winze'),(58660,'Dick Bush'),(58663,'Daniel Benzali'),(58665,'Shingo Tsurumi'),(58667,'Wayne Beach'),(58681,'Ella Joyce'),(58682,'Heidi Marnhout'),(58683,'Jason R. Savage'),(58684,'Ronnie Truss'),(58685,'Mark Wooding'),(58686,'Adam Janeiro'),(58687,'Scott J. Gill'),(58688,'Donald Milne'),(58689,'Neil LaBute'),(58690,'Tracy Kramer'),(58691,'Heather Locklear'),(58692,'Melinda McGraw'),(58693,'Dean Andrews'),(58695,'Chris Auty'),(58696,'Emma Hayter'),(58697,'Tanya Seghatchian'),(58698,'Helen Cross'),(58699,'Michael Wynne'),(58705,'Alain Jakubowicz'),(58706,'Daniel Loewenthal'),(58707,'Sunny Mabrey'),(58709,'Ben Ripley'),(58710,'Amy Steel'),(58711,'Kirsten Baker'),(58712,'Steve Miner'),(58713,'Ron Kurz'),(58715,'Susan E. Cunningham'),(58718,'Ray Murphy Jr.'),(58719,'Rebekah Rudd'),(58720,'Trudy Ship'),(58726,'Leslie Bohem'),(58727,'Jamie Renu00e9e Smith'),(58728,'Andrei Konchalovsky'),(58729,'Albert Magnoli'),(58730,'Hubert C. de la Bouillerie'),(58731,'Diva Gray'),(58733,'Jason Davis'),(58734,'Lorrie Bess Crumley'),(58735,'Luke Bigham'),(58736,'Austin Crim'),(58737,'Jack McBrayer'),(58738,'John D. King'),(58739,'Hank Harris'),(58741,'Phil Reeves'),(58742,'Marisa Petroro'),(58743,'Tait Smith'),(58744,'Michael Bacall'),(58745,'Anthony Abrams'),(58746,'Adam Larson Broder'),(58754,'Haley Bennett'),(58758,'Deobia Oparei'),(58768,'Jim Turner'),(58769,'Stephen Colbert'),(58771,'Katie Finneran'),(58772,'James Lipton'),(58776,'Nitin Ganatra'),(58778,'Nina Young'),(58780,'Padma Lakshmi'),(58781,'Paul Bhattacharjee'),(58783,'Ben Righton'),(58785,'Nila Aalia'),(58786,'Stephen Hudson'),(58787,'Giannina Facio'),(58788,'Lionel Briand'),(58789,'Marc Klein'),(58790,'Peter Mayle'),(58791,'Patrick Fabian'),(58792,'Jack Scalia'),(58793,'Sarah Ann Schultz'),(58794,'Todd Jensen'),(58796,'Patrick Treadway'),(58797,'Andy Cheng'),(58799,'Dana Kimmell'),(58800,'Sonja Bennett'),(58801,'Kristin Adams'),(58802,'Paul Kratka'),(58803,'Deborah Grover'),(58804,'Gabrielle Rose'),(58805,'David Hemblen'),(58806,'John Moraitis'),(58807,'Richard Brooker'),(58808,'Anne Gaybis'),(58809,'Martin Kitrosser'),(58810,'Carol Watson'),(58811,'Petru Popescu'),(58812,'Gerald Feil'),(58813,'Erich Anderson'),(58814,'Barbara Howard'),(58816,'Barney Cohen'),(58817,'Bruce Hidemi Sakow'),(58818,'Jou00e3o Fernandes'),(58819,'Anthony Barrile'),(58820,'Suzanne Bateman'),(58821,'Dominick Brascia'),(58822,'Danny Steinmann'),(58826,'Stephen L. Posey'),(58829,'Darrell Rooney'),(58833,'Peter Lonsdale'),(58837,'Mark Frost'),(58839,'Peter M. Lenkov'),(58840,'Robert Reneau'),(58846,'Thomas A. Bliss'),(58847,'Pablo Casacuberta'),(58848,'Hilary Shor'),(58849,'Tony Smith'),(58850,'John Tavener'),(58854,'Candace Bushnell'),(58855,'Bernard Telsey'),(58856,'Tenzin Thuthob Tsarong'),(58857,'Tencho Gyalpo'),(58858,'Tsewang Migyur Khangsar'),(58859,'Gyurme Tethong'),(58860,'Christopher Neame'),(58866,'Dana Wheeler-Nicholson'),(58868,'Troy Miller'),(58869,'Irving Azoff'),(58870,'Derek Evans'),(58871,'John Refoua'),(58872,'Julie Ashton'),(58873,'Dan Fogler'),(58881,'Philip Boyd'),(58893,'Susan Duerden'),(58897,'Sam Fell'),(58899,'Carly Schroeder'),(58900,'Gail Ann Lewis'),(58901,'Matthew Currie Holmes'),(58902,'Zahf Paroo'),(58903,'Pat Jenkinson'),(58904,'Joe Forte'),(58907,'Elias Toufexis'),(58908,'Carrie Fleming'),(58909,'Charisse Baker'),(58910,'Geoff Redknap'),(58911,'Krista Bell'),(58912,'Matthew Hastings'),(58913,'Beans El-Balawi'),(58920,'Jamie Edgell'),(58922,'Craig Rosenberg'),(58924,'Clifton Powell'),(58925,'Lester Speight'),(58926,'Katt Williams'),(58927,'Floyd Levine'),(58928,'Pat Crawford Brown'),(58929,'Jeanette Miller'),(58930,'Alexis Rhee'),(58941,'Brenda Ballard'),(58942,'Will Beinbrink'),(58943,'Chase Bloch'),(58944,'Chelsea Bloch'),(58945,'Chantille Boudousque'),(58946,'Robin Brenner'),(58947,'Paige Cannon'),(58948,'Nikki Christian'),(58949,'John Churchill'),(58950,'Greg Collins'),(58952,'Adam Campbell'),(58953,'Faune A. Chambers'),(58954,'Darrell Hammond'),(58955,'Kevin McDonald'),(58956,'George Alvarez'),(58957,'Crista Flanagan'),(58959,'Damaine Radcliff'),(58960,'De\'Shawn Washington'),(58961,'Mario'),(58962,'Drew Sidora'),(58963,'Josh Henderson'),(58964,'Tim Lacatena'),(58965,'Alyson Stoner'),(58966,'Deirdre Lovejoy'),(58967,'Jane Beard'),(58968,'Richard Pelzman'),(58969,'Carlyncia S. Peck'),(58970,'Juan Pablo Di Pace'),(58973,'Gary Brockette'),(58982,'Kuno Becker'),(58984,'Kate Tomlinson'),(58985,'Zachary Johnson'),(58986,'Kevin Knapman'),(58987,'Mike Jefferies'),(58988,'Adrian Butchart'),(59001,'Jimmy de Brabant'),(59002,'Michael Dounaev'),(59003,'Jeff Geoffray'),(59004,'Walter Josten'),(59008,'Robert Velo'),(59011,'Jade Yorker'),(59012,'David V. Thomas'),(59013,'Setu Taase'),(59014,'Mo McRae'),(59015,'James Earl'),(59016,'Trever O\'Brien'),(59017,'Jurnee Smollett'),(59018,'Michael J. Pagan'),(59019,'Jamal Mixon'),(59023,'Stewart Raffill'),(59024,'Vernon Vaughn'),(59025,'Elaine Robinson'),(59026,'Peyton Reed'),(59027,'Jeremy Garelick'),(59028,'Jay Lavender'),(59029,'Ali Rhodes'),(59030,'Maria Papas'),(59031,'Didier Bourdon'),(59032,'Isabelle Candelier'),(59033,'Igor Panich'),(59034,'Oleg Sosnovikov'),(59035,'Magali Woch'),(59037,'Patrick Payet'),(59038,'Fu00e9licitu00e9 Du Jeu'),(59039,'Mitchell Mullen'),(59040,'Judy Dickerson'),(59041,'Philippe Mu00e9ry'),(59042,'Dominique Laurent'),(59043,'Stewart Wright'),(59044,'Tom Stuart'),(59045,'Catherine Vinatier'),(59046,'Marine Casto'),(59047,'Gregg Chillin'),(59048,'Toney Tutini'),(59049,'Edita Brychta'),(59050,'Jean-Louis Darville'),(59051,'Jean Gilpin'),(59052,'Patrick Hillan'),(59053,'Frank Isles'),(59054,'Peter Lavin'),(59055,'Caitlin McKenna-Wilkinson'),(59056,'Paula J. Newman'),(59057,'Moira Quirk'),(59058,'Valeria Milenka Repnau'),(59059,'Darren Richardson'),(59060,'Jean-Michel Richaud'),(59061,'Samantha Robson'),(59062,'Ian Ruskin'),(59063,'Linda Sans'),(59064,'Bruno Stephane'),(59065,'Karen Strassman'),(59066,'Jean-Paul Vignon'),(59067,'Craig Robert Young'),(59068,'Declan Donnelly'),(59075,'Lee Oakes'),(59076,'Perry Benson'),(59077,'Jimmy Carr'),(59081,'David Threlfall'),(59082,'Andrew Greenough'),(59085,'Ian Porter'),(59090,'Nichole Hiltz'),(59091,'Luis Soto'),(59099,'Gillian Goodman'),(59113,'Nicholas St. John'),(59116,'Steve Le Marquand'),(59117,'Angus Sampson'),(59118,'Christopher James Baker'),(59119,'Ewen Leslie'),(59126,'Alister Grierson'),(59129,'u00d3scar Jaenada'),(59132,'Adriana Domu00ednguez'),(59145,'Danny McCarthy'),(59146,'Tobiasz Daszkiewicz'),(59151,'Chipo Chung'),(59153,'Robin Givens'),(59154,'Tamala Jones'),(59156,'Stephanie March'),(59157,'Nate Dogg'),(59158,'Angie Mattson'),(59159,'Elizabeth J. Carlisle'),(59160,'Kirk Penberthy'),(59161,'John Badila'),(59162,'Ed Wheeler'),(59163,'Jamil Shaw'),(59164,'Ali LeRoi'),(59165,'Lilli Lavine'),(59166,'Michael Guarino Jr.'),(59167,'Abdul Alshawish'),(59168,'Ann Talman'),(59169,'Crystal Bock'),(59170,'Stephen Bruce'),(59171,'Gary Gerbrandt'),(59172,'Kate Blumberg'),(59173,'Ron Payne'),(59174,'America Ferrera'),(59175,'Blake Lively'),(59176,'Jenna Boyd'),(59177,'Michael Rady'),(59178,'Maria Konstadarou'),(59179,'George Touliatos'),(59180,'Erica Hubbard'),(59181,'Emily Tennant'),(59182,'Jacqueline Ann Steuart'),(59183,'Sarah-Jane Redmond'),(59184,'Ernie Lively'),(59185,'Kendall Cross'),(59186,'Ann Brashares'),(59187,'Elizabeth Chandler'),(59190,'Miles Dougal'),(59191,'Nick Scotti'),(59192,'Emmanuelle Chriqui'),(59193,'David Quane'),(59194,'Rodger Barton'),(59195,'Kathryn Haggis'),(59196,'Joe Flaherty'),(59197,'Cody Jones'),(59198,'Matthew G. Taylor'),(59199,'Joan Heney'),(59201,'Lisa Emery'),(59202,'Guenia Lemos'),(59203,'Marcia Haufrecht'),(59204,'Nick Gregory'),(59205,'Ed Jewett'),(59206,'Becky Ann Baker'),(59207,'E.J. Carroll'),(59208,'Armistead Maupin'),(59209,'Terry Anderson'),(59210,'Patrick Stettner'),(59213,'Jeffrey Anderson-Gunter'),(59214,'Cas Anvar'),(59215,'Jordi Caballero'),(59216,'Tom Cavanagh'),(59217,'Shanna Collins'),(59218,'Katherine Cunningham-Eves'),(59219,'Kyle Gallner'),(59220,'Dan Gerrity'),(59221,'Michael Gregory'),(59222,'George Newbern'),(59223,'Bruce Nozick'),(59224,'Michelle Page'),(59225,'Sujata Day'),(59226,'David Clayton Rogers'),(59227,'Susan Santiago'),(59229,'Damien Dante Wayans'),(59231,'Joel David Moore'),(59232,'Jack Ong'),(59233,'Scoot McNairy'),(59237,'Margarita Levieva'),(59238,'Chris Marquette'),(59240,'Michelle Harrison'),(59241,'P. Lynn Johnson'),(59242,'Desiree Zurowski'),(59243,'Alex Ferris'),(59244,'Tania Saulnier'),(59247,'Maggie Ma'),(59251,'Victor Rasuk'),(59252,'Nikki Reed'),(59253,'Brian Zarate'),(59254,'Pablo Schreiber'),(59255,'Mitch Hedberg'),(59256,'Adam Herschman'),(59257,'Maria Thayer'),(59258,'Lewis Black'),(59259,'Mark Derwin'),(59260,'Ann Cusack'),(59261,'Hannah Marks'),(59262,'Robin Lord Taylor'),(59263,'Diora Baird'),(59264,'Joe Hursley'),(59265,'Adam Cooper'),(59266,'Bill Collage'),(59267,'Mark Perez'),(59269,'Elio Germano'),(59270,'Riccardo Scamarcio'),(59280,'Victor Pagan'),(59281,'Steven Randazzo'),(59283,'Dan Byrd'),(59284,'Desmond Askew'),(59285,'Ezra Buzzington'),(59286,'Laura Ortiz'),(59287,'Gregory Nicotero'),(59288,'Maisie Camilleri Preziosi'),(59290,'Gru00e9gory Levasseur'),(59291,'Alexandre Aja'),(59292,'Cu00e9cile Breccia'),(59293,'Archie Kao'),(59294,'Tyrell Kemlo'),(59295,'Lee Thompson Young'),(59296,'Daniella Alonso'),(59297,'Eric Edelstein'),(59298,'Joseph Beddelem'),(59299,'Ben Crowley'),(59300,'Marcello Thedford'),(59301,'Barbara Dodd'),(59302,'Victor Izay'),(59303,'Marc Mouchet'),(59304,'Kathleen Arc'),(59305,'Don Calame'),(59306,'Chris Conroy'),(59311,'Mark Hildreth'),(59312,'Alessandro Juliani'),(59315,'Olivia Wilde'),(59326,'Michael Ross'),(59327,'Erik Bergquist'),(59328,'John Pogue'),(59329,'Buzz Kilman'),(59330,'Ron Nyswaner'),(59331,'Douglas Cook'),(59332,'Mark Rosner'),(59335,'Ralf Schmitz'),(59350,'Chaim Girafi'),(59352,'Zitto Kazann'),(59353,'Peter Rader'),(59354,'Jeffrey A. Mueller'),(59356,'Scott Fuller'),(59357,'Teddy Newton'),(59358,'Eli Fucile'),(59359,'Maeve Andrews'),(59360,'Spencer Fox'),(59361,'Sarah Vowell'),(59362,'Andrew Jimenez'),(59363,'Stephen Schaffer'),(59364,'Julian Voloshin'),(59366,'Fabio Frizzi'),(59369,'Susan Tyrrell'),(59370,'David Insley'),(59371,'Benjamin Weill'),(59372,'Paul Cross'),(59373,'Mu00e9lanie Thierry'),(59374,'Radek Bruna'),(59396,'Matt Western'),(59397,'Keith Slote'),(59399,'Miguel Nino'),(59400,'Jay Whittaker'),(59401,'Amy Hill'),(59402,'Joseph Marcus'),(59403,'Nick Phalen'),(59404,'A.J. Balance'),(59405,'Jerry Minor'),(59406,'Mary Seibel'),(59407,'Susan Messing'),(59408,'Jim Zulevic'),(59409,'Bill McGough'),(59410,'Bob Odenkirk'),(59411,'Bert Matias'),(59412,'Michael Patrick Jann'),(59413,'Ben Garant'),(59415,'Jim Hogshire'),(59416,'Matt Berenson'),(59417,'Marcy Carsey'),(59418,'Betsy Danbury'),(59419,'Scott Lew'),(59420,'Caryn Mandabach'),(59421,'Paul Young'),(59422,'Dennis Thorlaksen'),(59423,'Ramsey Nickell'),(59424,'Alan Elliott'),(59425,'Mickie Paskal'),(59426,'Jennifer Rudnicke'),(59427,'Timothy Mann'),(59428,'Brian Ollman'),(59429,'Diana Stoughton'),(59430,'Susan Kaufmann'),(59442,'Peter Barton'),(59443,'Alex Nepomniaschy'),(59445,'Donna DeSeta'),(59446,'Benou00eet Charest'),(59447,'Didier Brunner'),(59448,'Viviane Vanfleteren'),(59449,'Paula Marshall'),(59450,'Katy Mixon'),(59451,'David Gallagher'),(59453,'Maria Cash'),(59454,'Jo Baker'),(59455,'Steve Uzzell'),(59456,'Ken Thomas'),(59457,'Rudy Costa'),(59458,'Myrna Cabello'),(59459,'Diane Quest'),(59460,'Quita Culpepper'),(59461,'Sharon Ploeger'),(59462,'Jamie Levels'),(59463,'Laura E. Johnston'),(59464,'Michelle Brew'),(59466,'Jamie Babbit'),(59467,'Tom Schatz'),(59468,'Abdi Nazemian'),(59469,'Carolyn Pfeiffer'),(59470,'Micah Schraft'),(59472,'Jeff Rona'),(59473,'Joan Sobel'),(59475,'John Frick'),(59476,'James Fowler'),(59477,'Aimee Kandl'),(59478,'Jocelyn Hayes'),(59479,'Camilla Toniolo'),(59502,'Shane Dax Taylor'),(59521,'Jaume Collet-Serra'),(59522,'Stuart Ford'),(59525,'Matt Barrelle'),(59528,'Flavio Martu00ednez Labiano'),(59529,'Joel Collins'),(59531,'Robyn Paiba'),(59533,'Lindsay Pugh'),(59538,'David Beckham'),(59541,'Jo Burn'),(59543,'Steffany Huckaby'),(59544,'Melanie Lewis'),(59545,'Yolanda Pecoraro'),(59562,'Scarlett Lacey'),(59563,'Jeff Canavan'),(59564,'Marie Cantin'),(59565,'Fritz Feick'),(59566,'Diane Hughes'),(59567,'Tricia Schneider'),(59568,'Fredro Starr'),(59569,'Vince Green'),(59570,'Garland Whitt'),(59571,'Elisabeth Oas'),(59572,'Artel Great'),(59573,'Cory Stewart'),(59574,'Jennifer Anglin'),(59575,'Dorothy Martin'),(59576,'Kim Tlusty'),(59577,'Felicia Fields'),(59578,'Ora Jones'),(59579,'Tab Baker'),(59580,'Kevin Reid'),(59581,'Andrew Rothenberg'),(59582,'Mekdes Bruk'),(59583,'Stephen Schiff'),(59588,'Taavo Soodor'),(59592,'Izabella Miko'),(59595,'Ian Brennan'),(59602,'Brendan Wall'),(59613,'Mike Chute'),(59616,'Patricia Tulasne'),(59618,'Anie Pascale'),(59620,'Gemma Arterton'),(59621,'Jordan Mechner'),(59623,'Mary Kane'),(59627,'Julie-Marie Parmentier'),(59633,'Tom Matthews'),(59634,'Eric Williams'),(59635,'Jerry Zaks'),(59636,'Scott McPherson'),(59637,'Rodman Philbrick'),(59638,'Diane Fleri'),(59641,'Ted Hartley'),(59642,'Sandra Hess'),(59643,'Lynn \'Red\' Williams'),(59644,'Joshua Wexler'),(59645,'Kel Mitchell'),(59646,'Kinka Usher'),(59647,'Bob Burden'),(59648,'Neil Cuthbert'),(59649,'Michael Pressman'),(59650,'David E. Kelley'),(59657,'Ross M. Dinerstein'),(59662,'Joanna Going'),(59665,'Angelo Milli'),(59667,'Steve Yedlin'),(59668,'Shannon Makhanian'),(59671,'Clayne Crawford'),(59673,'Jeff Daniel Phillips'),(59674,'Ben Bray'),(59675,'Mel Rodriguez'),(59679,'Michael Bronner'),(59680,'Clare Douglas'),(59681,'Kate Solomon'),(59682,'Joanna Foley'),(59683,'Dinah Collin'),(59684,'Romek Delmata'),(59685,'Gary Commock'),(59686,'Opal Alladin'),(59687,'Starla Benford'),(59688,'Trish Gates'),(59689,'Nancy McDoniel'),(59690,'David Alan Basche'),(59691,'Richard Bekins'),(59692,'Ray Charleson'),(59693,'Liza Colu00f3n-Zayas'),(59694,'Lorna Dallas'),(59695,'Denny Dillon'),(59696,'Trieste Kelly Dunn'),(59697,'Kate Jennings Grant'),(59698,'Tara Hugo'),(59700,'Robbie Brenner'),(59702,'Aleen Keshishian'),(59703,'Frank E. Flowers'),(59704,'Josef Steinberger'),(59706,'Heitor Pereira'),(59707,'Michael Bernard'),(59710,'Bobbie Read'),(59713,'Mpho Koaho'),(59715,'Peter O\'Meara'),(59716,'Martin Katz'),(59727,'Harlan Bosmajian'),(59728,'Malcolm Jamieson'),(59739,'Otto Sanchez'),(59743,'Jaime Tirelli'),(59745,'Jen Rudin'),(59747,'Steven Douglas Smith'),(59750,'Nikki DeLoach'),(59752,'Cengiz Bozkurt'),(59755,'Neil Hopkins'),(59759,'Michael Halphie'),(59767,'Warren Coleman'),(59769,'Matthew Ferro'),(59771,'Ed Jones'),(59772,'Philip Hearnshaw'),(59773,'Hael Kobayashi'),(59774,'Graham Burke'),(59776,'Michael Twigg'),(59777,'Mark Sexton'),(59779,'David Peers'),(59780,'Christian Gazal'),(59781,'Martin Wood'),(59782,'Jeffrey Garcia'),(59783,'Johnny A. Sanchez'),(59784,'Carlos Alazraqui'),(59785,'Fat Joe'),(59786,'Alyssa Shafer'),(59787,'Mark Klastorin'),(59788,'Michael Cornacchia'),(59789,'Pamela Gidley'),(59791,'Amy Lescoe'),(59792,'Philip A. Patterson'),(59793,'Norma Moriceau'),(59794,'Kate Trotter'),(59795,'John Gausden'),(59796,'Isabelle Horler'),(59797,'Iain Lee'),(59798,'Keelan Anthony'),(59799,'Kalyane Tea'),(59800,'Aidan Pickering'),(59801,'Norm Berketa'),(59802,'Fikile Nyandeni'),(59803,'Brenda Chapman'),(59806,'James R. Silke'),(59809,'R.J. Louis'),(59811,'Bear McCreary'),(59812,'Mark Vargo'),(59817,'Jaimie Alexander'),(59822,'Curtis Taylor'),(59825,'Mikey Post'),(59831,'Patricia Moyes'),(59832,'Hal E. Chester'),(59833,'Scott Budnick'),(59834,'JoAnn Perritano'),(59835,'Annette Savitch'),(59837,'Dan Schalk'),(59838,'Scott Meehan'),(59839,'Harvey Weinstein'),(59841,'Matt Walsh'),(59842,'Jon Glaser'),(59843,'Paul Scheer'),(59844,'Omar J. Dorsey'),(59845,'Marcella Lowery'),(59846,'Joanne Baron'),(59847,'Leonard Earl Howze'),(59853,'David Ball'),(59859,'Sophie Becher'),(59860,'Alice Eve'),(59865,'Laurence Bouvard'),(59871,'Hubert Taczanowski'),(59872,'John Pankow'),(59874,'Robert Downey Sr.'),(59882,'Paz de la Huerta'),(59883,'Evan Astrowsky'),(59885,'David Wittman'),(59892,'Byron Shah'),(59899,'Andrey Merzlikin'),(59906,'Donald Stewart'),(59911,'Daniele Luchetti'),(59918,'Rodney Rothman'),(59919,'Russell Brand'),(59920,'Toby Jaffe'),(59922,'Glenn S. Gainor'),(59923,'Marc Forby'),(59924,'Bruce Mellon'),(59926,'Jesse Moss'),(59929,'Checco Varese'),(59930,'Jason Ballantine'),(59932,'Lindsey Hayes Kroeger'),(59935,'Steven Hoban'),(59938,'Noah Segal'),(59939,'Mike Shields'),(59949,'Michael Peyser'),(59953,'James A. Lebovitz'),(59955,'Frank Tidy'),(59956,'Estelle Getty'),(59958,'Jamie Blanks'),(59959,'Silvio Horta'),(59960,'Brad Luff'),(59961,'Brian Leslie Parker'),(59963,'Gina Matthews'),(59967,'Rebecca Gayheart'),(59969,'James Chressanthis'),(59970,'Joseph Hartwick'),(59971,'Meg Cabot'),(59972,'Gina Wendkos'),(59973,'Debra Martin Chase'),(59975,'Michael D. Sellers'),(59978,'Lawrence Wright'),(59979,'Peter Schindler'),(59981,'Aaron Mazzolini'),(59982,'Emmanuel Kadosh'),(59983,'Simon Cozens'),(59984,'Marco Pontecorvo'),(59986,'David Griffiths'),(59987,'Peter Griffiths'),(60004,'Kestie Morassi'),(60005,'Nathan Phillips'),(60006,'Sean Moynihan'),(60007,'Sloane Klevin'),(60009,'William Goodrum'),(60010,'Gabriel Grunfeld'),(60011,'Keri Selig'),(60012,'Rob Hahn'),(60013,'Leslie J. Converse'),(60014,'Peter Rogness'),(60015,'Dylan Hartigan'),(60016,'Fallon Brooking'),(60017,'Faith Hill'),(60018,'Tom Riis Farrell'),(60019,'Lorri Bagley'),(60020,'Lisa Masters'),(60021,'Christopher Evan Welch'),(60022,'Colleen Dunn'),(60023,'Joe Viterelli'),(60024,'Liz Friedlander'),(60025,'Dianne Houston'),(60026,'Michelle Grace'),(60027,'Mark Kaufman'),(60029,'Swizz Beatz'),(60031,'Robert Ivison'),(60032,'Mathew Hart'),(60033,'Yaya DaCosta'),(60034,'Laura Benanti'),(60038,'Marcus T. Paulk'),(60042,'Alison Sealy-Smith'),(60045,'Eric Bross'),(60047,'Ram Bergman'),(60052,'Horacio Marquu00ednez'),(60057,'Ken Kirchner'),(60060,'Mackenzie Astin'),(60062,'Scott Subiono'),(60065,'Michael I. Levy'),(60068,'Deborah Lurie'),(60069,'Lynda Halligan'),(60070,'Jeremiah Samuels'),(60071,'Kallie Flynn Childress'),(60072,'Sara Paxton'),(60073,'Brie Larson'),(60074,'Jeff Garlin'),(60075,'Shane Hunter'),(60076,'Thad Luckinbill'),(60077,'Douglas Smith'),(60078,'Katija Pevec'),(60079,'Eileen April Boylan'),(60080,'Ryan Slattery'),(60081,'Brett Wagner'),(60082,'Lou Holtz Jr.'),(60083,'Marc Gurvitz'),(60084,'Guy McElwaine'),(60085,'Dick Pope'),(60086,'Blair Daily'),(60087,'Stefania Cella'),(60088,'Joshu de Cartier'),(60089,'David Alpay'),(60090,'Faith Daniels'),(60091,'Doug Murray'),(60092,'Chris Matthews'),(60093,'James Carville'),(60094,'Cathleen Crier'),(60095,'Karen Hines'),(60096,'Brandon Firla'),(60097,'Janet Zucker'),(60099,'Gideon Raff'),(60102,'Michael Wandmacher'),(60103,'Martina Radwan'),(60104,'Eden Wurmfeld'),(60106,'Beth Mickle'),(60107,'Kim Miscia'),(60109,'Beth Bowling'),(60110,'Erika Munro'),(60117,'Derek Cecil'),(60118,'John Bedford Lloyd'),(60119,'Paul Urcioli'),(60120,'Tina Benko'),(60121,'John Di Benedetto'),(60127,'Bria Roberts'),(60129,'Susan Stroman'),(60130,'Amy Herman'),(60131,'Leah Zappy'),(60132,'Tara Jayne Rubin'),(60133,'Glen Kelly'),(60134,'William Ivey Long'),(60135,'Ellen Christiansen'),(60136,'Gary Beach'),(60138,'Bryn Dowling'),(60139,'Meg Gillentine'),(60140,'Kevin Ligon'),(60141,'Ray Wills'),(60142,'Marilyn Sokol'),(60143,'Brad Oscar'),(60144,'Brent Barrett'),(60145,'Tory Ross'),(60148,'Barry Wernick'),(60149,'Nicholaus Goossen'),(60150,'Waddy Wachtel'),(60151,'Tom Costain'),(60154,'Catherine Stroud'),(60155,'Jeffrey Mossa'),(60156,'Claire Kaufman'),(60157,'Maya Lieberman'),(60158,'Shirley Jones'),(60159,'Chuck Church'),(60160,'Scott Halberstadt'),(60161,'Heidi Hawking'),(60162,'Shana Hiatt'),(60163,'John Kirk'),(60164,'Geno Kirkland'),(60165,'Joe Koons'),(60166,'Bryan Ling'),(60185,'William Wheeler'),(60186,'Erin Eggers'),(60187,'Anthony Katagas'),(60188,'Clifford Irving'),(60189,'Betsy Beers'),(60190,'Paul A. Levin'),(60191,'Joshua Maurer'),(60192,'Suzanne Patmore Gibbs'),(60193,'Mark Ricker'),(60194,'Carol Silverman'),(60195,'David Aaron Baker'),(60196,'John Carter'),(60197,'Judi Barton'),(60198,'Raul Julia Jr.'),(60199,'Okwui Okpokwasili'),(60200,'Bob Wiltfong'),(60201,'William Fowle'),(60202,'Antonie Knoppers'),(60203,'Carlton Wilborn'),(60204,'Steve Buck'),(60205,'John Rothman'),(60206,'Eric Yellin'),(60207,'Steve \'Spaz\' Williams'),(60208,'Mark Gibson'),(60212,'Matt Lopez'),(60217,'Clint Goldman'),(60219,'Scott Balcerek'),(60222,'Chris Farmer'),(60223,'Michael E. Goldman'),(60226,'Corbin Bronson'),(60230,'Jack De Sena'),(60232,'David Cowgill'),(60237,'John A. Davis'),(60238,'Keith Alcorn'),(60239,'Diana Choi'),(60241,'John Nickle'),(60243,'Rob Schmidt'),(60244,'Alex Johns'),(60245,'Scott Mednick'),(60246,'Steven Shareshian'),(60247,'Jon Price'),(60248,'Kim Saxon'),(60249,'Chris Consani'),(60250,'Barry E. Jackson'),(60251,'Zach Tyler'),(60252,'Cheri Oteri'),(60253,'Allison Mack'),(60254,'Creagen Dow'),(60255,'Jake T. Austin'),(60257,'S. Scott Bullock'),(60258,'Mark DeCarlo'),(60259,'Paul Greenberg'),(60260,'Brian J. Gilbert'),(60261,'Stan Winston'),(60263,'Mark Beam'),(60264,'Nicholisa Contis'),(60265,'Paul Marshall'),(60266,'Andrew Egiziano'),(60267,'Aaron Parry'),(60268,'Julia Pistor'),(60269,'Paul D. Calder'),(60270,'Philip A. Cruden'),(60272,'Cam Clarke'),(60274,'Tino Insana'),(60275,'Dom Irrera'),(60276,'Madeline Lovejoy'),(60277,'Earthquake'),(60278,'Maria Bamford'),(60279,'Fred Tatasciore'),(60280,'Billy Higgins'),(60281,'Jay Cohen'),(60282,'Sean Cossey'),(60283,'Tom Southwell'),(60284,'Marie-Sylvie Deveau'),(60285,'Mary-Lou Storey'),(60286,'Ralph Garman'),(60287,'Charles Carroll'),(60292,'Gary Hudson'),(60300,'Darrick Bachman'),(60316,'Caroline Levy'),(60322,'Allan Niblo'),(60335,'Nick Dent'),(60336,'Sophia Chowdhury'),(60348,'Dave Legeno'),(60349,'Ryan Gage'),(60355,'Murray Francis'),(60356,'Megumi Fukasawa'),(60357,'Charles Hannah'),(60358,'Satoru Iseki'),(60359,'Gary Hannam'),(60360,'Masaharu Inaba'),(60362,'Jeff Johnson'),(60363,'Roger Guise'),(60364,'Jackie Gilmore'),(60365,'Diana Rowan'),(60366,'Nancy Cavallaro'),(60368,'Iain Rea'),(60369,'Aaron Murphy'),(60370,'Tessa Mitchell'),(60371,'Tim Shadbolt'),(60372,'Annie Whittle'),(60373,'Antony Starr'),(60374,'Kate Sullivan'),(60375,'Jim Bowman'),(60376,'Alison Bruce'),(60377,'Phoebe Falconer'),(60378,'Charles Pierard'),(60379,'Barry Ryan'),(60380,'Bill Richardson'),(60381,'Tony Wilson'),(60382,'Wesley Dowdell'),(60383,'Todd Emerson'),(60385,'Fontaine Beauchamp Hebb'),(60386,'Maxine Barnett'),(60387,'Fahnlohnee R. Harris'),(60388,'Marion Zinser'),(60389,'Ann Dalrymple'),(60390,'Trula M. Marcus'),(60391,'Thomas Uskali'),(60392,'Tonya Staten'),(60393,'Forrest Landis'),(60394,'Jen Apgar'),(60395,'Jamie Lee Redmon'),(60396,'Ronald McCall'),(60397,'Jeryl Prescott'),(60398,'Christa Thorne'),(60401,'Phillip B. Goldfine'),(60403,'William B. Steakley'),(60404,'Geoffrey Hall'),(60408,'Adrian Curelea'),(60409,'Cristian Corvin'),(60411,'Andy Horvitch'),(60416,'Alex Ferns'),(60426,'Christopher Borrelli'),(60430,'Jeremy Reed'),(60432,'Jason Cerbone'),(60433,'Ben Cardinal'),(60438,'Michael Landon Jr.'),(60439,'Francine Rivers'),(60440,'Brian Bird'),(60443,'Robert Gros'),(60448,'Donald Hauer'),(60450,'Mark McKenzie'),(60451,'Brian Matthews'),(60453,'Eric Weiler'),(60456,'Robert Seaman'),(60457,'Mark J. Mullins'),(60458,'Liana Liberato'),(60459,'Soren Fulton'),(60460,'A.J. Buckley'),(60461,'Stewart Finlay-McLennan'),(60462,'Peter Wingfield'),(60463,'Thea Rose'),(60464,'Gabrielle Fitzpatrick'),(60465,'Molly Jepson'),(60466,'Nick Praggastis'),(60467,'Parker Hadley'),(60468,'Stefania Barr'),(60469,'Dee Macaluso'),(60471,'Marc D. Evans'),(60472,'Trevor Macy'),(60474,'Russell Simmons'),(60475,'Preston L. Holmes'),(60476,'Amy Kaufman'),(60478,'Warren Alan Young'),(60479,'Marie France'),(60483,'Kimora Lee'),(60486,'Darris Love'),(60488,'Wade Allain-Marcus'),(60490,'Paul Terrell Clayton'),(60496,'James Gartner'),(60497,'Chris Cleveland'),(60499,'Bettina Gilois'),(60500,'Andy Given'),(60501,'Craig Fincannon'),(60502,'Jason Hellmann'),(60503,'Lisa Mae Fincannon'),(60504,'Mark Fincannon'),(60506,'Alphonso McAuley'),(60507,'Al Shearer'),(60508,'Red West'),(60509,'Kip Weeks'),(60510,'Mitch Eakins'),(60513,'Pauline Chan'),(60514,'Wan Allen'),(60515,'Sue Jett'),(60517,'Rita Fung'),(60519,'T.C. Wang'),(60520,'Louis Sit'),(60521,'William Yeh'),(60522,'Charles Wang'),(60523,'Choo Sung Pong'),(60524,'Kwok-wing Chong'),(60525,'Chung Kim Wai'),(60526,'Sebastien Andrieu'),(60527,'Ida Martin'),(60528,'David Collier'),(60529,'Kieran O\'Rorke'),(60530,'Digger Mesch'),(60531,'Ryan Martin'),(60532,'Steven Calcote'),(60533,'Ricardo Mamood-Vega'),(60534,'Kristen Buckley'),(60536,'Clay Cullen'),(60537,'Jennifer Caputo'),(60538,'Jack Murphy'),(60539,'Diego Swing'),(60540,'Theodore Thomas'),(60541,'Abraham Boyd'),(60542,'Matthew Sturgess'),(60543,'Brian Regan'),(60554,'Christine Forsyth-Peters'),(60558,'Leah Daniels Butler'),(60560,'Macy Gray'),(60561,'Mo\'Nique'),(60567,'Marvina Vinique'),(60569,'John Panzarella'),(60573,'Angel Oquendo'),(60574,'Jack Krizmanich'),(60575,'Skip Chaisson'),(60576,'David Hadida'),(60577,'Peter Toumasis'),(60578,'Zach Schiff-Abrams'),(60579,'Chris Seagers'),(60580,'B. Akerlund'),(60581,'Riz Abbasi'),(60583,'Bogdan Moncea'),(60584,'Donald Munro'),(60591,'Floriela Grapini'),(60596,'John Alvarez'),(60598,'David Brin'),(60599,'Brentan Harron'),(60601,'Viv Leacock'),(60602,'Ron Bottitta'),(60603,'Mark Griffin'),(60604,'Aaron Au'),(60606,'Julian Christopher'),(60609,'Doron Bell'),(60612,'Sean Allan'),(60614,'Chad Riley'),(60621,'Jeff Franklin'),(60628,'Andrea Morricone'),(60629,'Sarah Sprawls'),(60631,'Alexandra Botoi Tudorache'),(60632,'Rebecca Wisocky'),(60633,'Kevin Sussman'),(60634,'Marty Belafsky'),(60635,'Marco Assante'),(60642,'Tom Petty'),(60649,'Will Sanderson'),(60650,'Michael Paru00e9'),(60652,'Darren Shahlavi'),(60653,'Esteban Cueto'),(60656,'T. J. Storm'),(60661,'Clemens E. Franek'),(60663,'Ricky Blitt'),(60664,'Toni Cobb Brock'),(60665,'Jo Edna Boldin'),(60672,'Zen Gesner'),(60673,'Steve Levy'),(60674,'Alcides Dias'),(60677,'Brad Leland'),(60678,'William Joyce'),(60693,'Andrew Pozza'),(60698,'Tracy Nelson'),(60699,'Chris Chesser'),(60700,'Margaret Whitton'),(60704,'Barr B. Potter'),(60705,'Thomas Ian Griffith'),(60706,'Jeff Gullo'),(60707,'Stu Zicherman'),(60708,'Raven Metzner'),(60710,'Sophie Addie'),(60711,'Brent O\'Connor'),(60712,'Bill Roe'),(60713,'Michael Hothorn'),(60714,'Peter Lando'),(60715,'Kirsten Prout'),(60716,'Bob Sapp'),(60717,'Chris Ackerman'),(60718,'Edson T. Ribeiro'),(60719,'Hiro Kanagawa'),(60720,'Laura Ward'),(60721,'Kurt Max Runte'),(60722,'Nathaniel Arcand'),(60723,'Kevan Ohtsji'),(60724,'Jana Mitsoula'),(60731,'Fred Warter'),(60734,'Harrison Fahn'),(60736,'Jeff Foxworthy'),(60739,'Kath Soucie'),(60741,'April Winchell'),(60765,'Adrian Roberts'),(60780,'T.J. Mancini'),(60781,'Bob DeBrino'),(60782,'Robert J. McCrea'),(60784,'Oliver Hengst'),(60785,'Johnny Sanchez'),(60786,'Ernst-August Schnieder'),(60787,'Wolfgang Schamburg'),(60788,'Frank Digiacomo'),(60789,'Roger Zamudio'),(60790,'Jonathan Tunick'),(60791,'George Zakk'),(60793,'Ron von Blomberg'),(60794,'Emily Beck'),(60795,'Richard DeDomenico'),(60796,'Jerry Grayson'),(60797,'Tony Ray Rossi'),(60798,'Nicholas A. Puccio'),(60799,'Salvatore Paul Piro'),(60800,'Frankie Perrone'),(60801,'Oscar A. Colon'),(60802,'Ben Lipitz'),(60804,'Jarno Laasala'),(60805,'Jukka Hilden'),(60827,'Jarno Leppu00e4lu00e4'),(60828,'Jukka Hilden'),(60830,'Hannu-Pekka Parviainen'),(60835,'Freddy Braidy'),(60836,'Elton Brand'),(60837,'Harry Knapp'),(60838,'Kami Naghdi'),(60839,'Adam W. Rosen'),(60840,'Steve Marlton'),(60841,'Nick N. Raslan'),(60843,'Annie Dunn'),(60844,'Arin \'Aoi\' Pinijvararak'),(60846,'Pat Healy'),(60847,'GQ'),(60848,'James Oliver'),(60849,'Brad Carr'),(60850,'Saichia Wongwiroj'),(60851,'Franu00e7ois Chau'),(60852,'Teerawat Mulvilai'),(60853,'Mr. Yuttana Muenwaja'),(60854,'Somkuan \'Kuan\' Siroon'),(60855,'Chorn Solyda'),(60856,'Kriangsak Ming-olo'),(60857,'Galen Yuen'),(60858,'Apichart Chusakul'),(60859,'Lek Chaiyan Chunsuttiwat'),(60862,'Linda Favila'),(60864,'David Lancaster'),(60865,'R. Paul Miller'),(60870,'Sharon Lomofsky'),(60871,'Adele Plauche'),(60872,'Leonard R. Spears'),(60874,'Dane Rhodes'),(60875,'David Jensen'),(60876,'Walter Breaux'),(60877,'Carol Sutton'),(60878,'Warren Kole'),(60879,'Bernard Johnson'),(60881,'Douglas M. Griffin'),(60884,'Earl Maddox'),(60887,'Leanne Cochran'),(60888,'Carol Kottenbrook'),(60889,'Roger Mincheff'),(60890,'Marc Silvestri'),(60891,'tomandandy'),(60892,'Anne Pritchard'),(60893,'Pierre Perrault'),(60894,'Josu00e9e Arsenault'),(60895,'Sylvie Desmarais'),(60896,'Manon Bougie'),(60897,'Gary Randall'),(60898,'Sebastian Stan'),(60899,'Chace Crawford'),(60900,'Taylor Kitsch'),(60901,'Toby Hemingway'),(60902,'Christian Baril'),(60903,'Basia Jasinski'),(60904,'Rob Burns'),(60905,'Steven Crowder'),(60906,'Robert Crooks'),(60907,'Larry Day'),(60908,'Vito DeFilippo'),(60909,'Jonathan Deveau'),(60910,'Frank Fontaine'),(60916,'Buck Holland'),(60917,'Branimir Babic'),(60918,'Cody Lightning'),(60922,'Josh Gordon'),(60923,'Will Speck'),(60924,'Jeff Cox'),(60925,'Tricia Peters'),(60926,'Craig Cox'),(60928,'Busy Philipps'),(60929,'Lara Breay'),(60930,'Jack Polick'),(60931,'John Altschuler'),(60932,'Dave Krinsky'),(60933,'Colin O\'Reilly'),(60934,'Patrick Esposito'),(60935,'Seth Yanklewitz'),(60937,'Seth Reed'),(60939,'Scott Hamilton'),(60940,'Greg Lindsay'),(60941,'Ben Wilson'),(60943,'Zachary Ferren'),(60944,'Steven M. Gagnon'),(60945,'Allegra Clegg'),(60946,'Jay Scully'),(60947,'Sandy S. Solowitz'),(60949,'Rob Schneider'),(60950,'David Spade'),(60951,'Craig Kilborn'),(60952,'Molly Sims'),(60953,'Erinn Bartlett'),(60954,'Bill Romanowski'),(60955,'Sean Salisbury'),(60956,'Matt Weinberg'),(60957,'Reggie Jackson'),(60958,'Joe Gnoffo'),(60959,'Jackie Sandler'),(60960,'Ray Nicholson'),(60961,'Jared Sandler'),(60966,'Robb Wells'),(61010,'LaTanya Richardson'),(61011,'Clarke Peters'),(61013,'Portia'),(61016,'Joe Forbrich'),(61046,'Susanne Bohnet'),(61047,'Stephen Break'),(61048,'Ricardo Del Ru00edo'),(61049,'Gerd Koechlin'),(61050,'Manfred D. Heid'),(61051,'Andrew Reimer'),(61052,'Amanda Scarano'),(61053,'Marcelo Del Rio'),(61054,'Carlos Gutiu00e9rrez'),(61055,'Enrique Echeverru00eda'),(61056,'Patrice Laure'),(61057,'Wiveca Bonerais'),(61058,'Portia Dawson'),(61059,'Roberto Sosa'),(61060,'Antonio Zavala'),(61061,'Ramon Alvarez'),(61062,'Luz Maria Molina'),(61063,'Carolyn Horwitz'),(61064,'Rachel Schwartz'),(61065,'Jorge Robles'),(61066,'Trio Los Rivera'),(61067,'Israel Tellez'),(61068,'Guillermo Ruiz'),(61069,'Miguel Arteta'),(61070,'Shelly Glasser'),(61071,'Matthew Greenfield'),(61072,'Tony Maxwell'),(61073,'James O\'Brien'),(61074,'Joey Waronker'),(61075,'Kirk D\'Amico'),(61076,'Daniel Bradford'),(61077,'Macie Vener'),(61079,'Annie O\'Donnell'),(61080,'Jon Shere'),(61081,'Alice Amter'),(61082,'Jean Rhodes'),(61083,'Lalo Guerrero'),(61084,'Michael Hyatt'),(61085,'Ken Rudulph'),(61086,'Enzo'),(61087,'Mennan Yapo'),(61088,'Kimberly C. Anderson'),(61089,'Gina Fortunato'),(61090,'Malcolm Petal'),(61091,'Jon Jashni'),(61092,'Torsten Lippstock'),(61094,'Raymond Pumilia'),(61095,'Lars Sylvest'),(61096,'Nick Hamson'),(61097,'Thomas T. Taylor'),(61098,'Shyann McClure'),(61099,'Irene Ziegler'),(61100,'Phillip DeVona'),(61102,'Laurel Whitsett'),(61103,'Kristin Ketterer'),(61105,'Floriana Tullio'),(61106,'David A. Shaffer'),(61107,'David B. Householter'),(61108,'Blythe Cappello'),(61109,'Chuck D.'),(61110,'Fred Armisen'),(61111,'Tara Subkoff'),(61113,'Jerry Lambert'),(61114,'Kate Walsh'),(61115,'John Ennis'),(61117,'Todd Farmer'),(61119,'Andrew Pfeffer'),(61121,'Lou Arkoff'),(61122,'William Sherak'),(61123,'Jason Shuman'),(61125,'J.R. Young'),(61126,'Tim Mirkovich'),(61128,'Mary Hyde-Kerr'),(61130,'Ken Watkins'),(61133,'Michael Daingerfield'),(61134,'Tatiana Maslany'),(61142,'Burton Elias'),(61143,'Mark Melnick'),(61150,'Charles Aidman'),(61151,'Jan Tu0159u00edska'),(61153,'Wings Hauser'),(61156,'John Schimmel'),(61159,'Billy Merasty'),(61161,'Ralph Alderman'),(61164,'Craig March'),(61167,'Frank C. Turner'),(61168,'Brenda McDonald'),(61173,'Chris Ord'),(61174,'Matt Corman'),(61175,'John Whitesell'),(61177,'Dan Hermansen'),(61178,'Alia Shawkat'),(61179,'Dylan Blue'),(61180,'Kelly Aldridge'),(61181,'Sabrina Aldridge'),(61182,'Gillian Vigman'),(61183,'Ryan Devlin'),(61184,'Su-chin Pak'),(61185,'Jackie Burroughs'),(61186,'Nicola Peltz'),(61187,'Daniel Bacon'),(61192,'Joel Plotch'),(61208,'Ira S. Rosenstein'),(61216,'Vyto Ruginis'),(61217,'Robert Romanus'),(61218,'Abby Brammell'),(61219,'Jillian Bach'),(61220,'Ina Barron'),(61232,'Tony Munafo'),(61233,'Larry Romano'),(61236,'Jerry Strivelli'),(61239,'Michael Petroni'),(61241,'Tony Lip'),(61255,'Jason Pielak'),(61256,'Trevor Wright'),(61257,'Slade Pearce'),(61259,'Dominic Scott Kay'),(61260,'Paul Rae'),(61263,'Skyler Gisondo'),(61264,'Dan Joffre'),(61265,'Irene Karas'),(61272,'Hans Lu00f6nnerheden'),(61277,'Denny Dugally'),(61290,'Matthew O\'Callaghan'),(61291,'Margret Rey'),(61292,'Mary Alice Drumm'),(61294,'Jon Shapiro'),(61295,'Bonne Radford'),(61296,'H. A. Rey'),(61297,'Ken Tsumura'),(61298,'Julie Rogers'),(61299,'David Bernardi'),(61300,'Yarrow Cheney'),(61301,'Timyra-Joi Beatty'),(61302,'Christopher Chen'),(61303,'Dick Van Dyke'),(61304,'Jessie Flower'),(61305,'Terrence Hardy Jr.'),(61306,'Kelsey Lansdowne'),(61307,'Michael Chinyamurindi'),(61308,'Michael Sorich'),(61318,'Lynn Falconer'),(61323,'Dan Ziskie'),(61329,'Declan Mulvey'),(61342,'Ben McIvor'),(61344,'Fiona Press'),(61350,'Heather Mitchell'),(61351,'Paul Livingston'),(61353,'Hilary Dugdale'),(61354,'Anthony Horowitz'),(61357,'Geoffrey Sax'),(61359,'Jessica Parker'),(61360,'Kevan Van Thompson'),(61361,'Ricky Eyres'),(61363,'Alex Pettyfer'),(61364,'Ashley Walters'),(61365,'Alex Barrett'),(61366,'Richard Huw'),(61367,'Richard James'),(61368,'Julian Bucknall'),(61369,'Martin Herdman'),(61370,'Morgan Walters'),(61371,'Todd Edwards'),(61372,'Tony Leech'),(61373,'Cory Edwards'),(61378,'Kristin Wilkinson'),(61379,'Preston Stutzman'),(61381,'Sue Bea Montgomery'),(61382,'Maurice Kanbar'),(61385,'John Mark Painter'),(61386,'David Lovegren'),(61396,'Mia Apatow'),(61397,'Jimmy Miller'),(61398,'Leo Benvenuti'),(61399,'Mike Ditka'),(61400,'Dylan McLaughlin'),(61401,'Jeremy Bergman'),(61402,'Elliott Cho'),(61403,'Erik Walker'),(61404,'Dallas McKinney'),(61405,'Francesco Liotti'),(61406,'Alessandro Ruggiero'),(61407,'Sammy Fine'),(61408,'Timmy Deters'),(61409,'Laura Kightlinger'),(61411,'Mark Dindal'),(61413,'Ron Anderson'),(61414,'Mark Kennedy'),(61415,'Sandra Tsing Loh'),(61416,'Peter Del Vecho'),(61417,'Randy Fullmer'),(61419,'Matthew Jon Beck'),(61420,'Ian Gooding'),(61421,'David Womersley'),(61422,'Dan Cooper'),(61423,'Mark Walton'),(61425,'Joe Whyte'),(61426,'Sean Elmore'),(61427,'Evan Dunn'),(61428,'Matthew Josten'),(61429,'Don Levin'),(61432,'Derek Freda'),(61437,'Trip Taylor'),(61440,'Lance Bangs'),(61441,'Rick Kosick'),(61442,'Seth Casriel'),(61443,'Matt Probst'),(61464,'Frank Sudol'),(61479,'Earl Hamner, Jr.'),(61480,'E.B. White'),(61481,'Paul Neesan'),(61482,'Edgar M. Bronfman'),(61483,'Tony Winley'),(61484,'Susan Littenberg'),(61485,'Lisa Thompson'),(61486,'Tom Nursey'),(61487,'Louis Corbett'),(61488,'Julian O\'Donnell'),(61489,'Robyn Arthur'),(61498,'Ryan Shore'),(61508,'Erick Kastel'),(61510,'Christopher Denham'),(61522,'David Baca'),(61523,'Artist W. Robinson'),(61524,'Gabriella Villarreal'),(61525,'Tricia Gray'),(61526,'Cameron Scher'),(61527,'Owain Yeoman'),(61528,'Tom Tate'),(61529,'Chris Moss'),(61530,'Bjorn Johnson'),(61531,'Collin Thornton'),(61532,'Pab Schwendimann'),(61534,'Jessica Williams'),(61535,'Steven Michael Quezada'),(61536,'Aaron Hendry'),(61538,'Doug Byggdin'),(61539,'Maya Mani'),(61540,'Douglas McFerran'),(61541,'Yee Jee Tso'),(61542,'Nate Dushku'),(61543,'Scott Bellis'),(61544,'David Lovgren'),(61545,'Rick Worthy'),(61546,'Ian Robison'),(61547,'Linda Ko'),(61548,'Ed Beechner'),(61550,'Jas Shelton'),(61553,'Vanick Moradian'),(61555,'Haley Ramm'),(61556,'Elizabeth Barondes'),(61563,'Jackson Hurst'),(61566,'Lawrence Varnado'),(61567,'Michael Crabtree'),(61568,'Edgar Arreola'),(61570,'Russell Towery'),(61571,'Barry Skolnick'),(61572,'Charlie Fletcher'),(61573,'Chris Baker'),(61574,'Andrew Day'),(61576,'Cynthia Pett-Dante'),(61577,'Georgia Masters'),(61578,'Adam Bohling'),(61579,'Alex Barber'),(61580,'Russell De Rozario'),(61581,'Jenny Lawrence-Smith'),(61582,'Tom Wales'),(61583,'Dayn Williams'),(61584,'John Forgeham'),(61585,'Martin Wimbush'),(61586,'David Cropman'),(61587,'Tim Perrin'),(61588,'Paul Mari'),(61589,'Nicholas Moss'),(61594,'Cu00e9line Garcia'),(61596,'Georges Bouchelagem'),(61597,'Ju00e9rome de Baecque'),(61598,'Patrice Garcia'),(61599,'Philippe Rouchier'),(61600,'Alain Pitrel'),(61601,'Nicolas Fructus'),(61604,'Penny Balfour'),(61605,'Ron Crawford'),(61606,'Jean Bejote Njamba'),(61607,'Adam LeFevre'),(61608,'Saul Jephcott'),(61609,'Doug Rand'),(61610,'Lee Delong'),(61611,'Eric Balliet'),(61612,'Oxmo Puccino'),(61613,'Robert William Bradford'),(61614,'Jerry Di Giacomo'),(61615,'Bienvenue Kindoki'),(61616,'Valu00e9ry Koko Kingue'),(61618,'Mathar Licka Gueye'),(61621,'Vincent Mendy'),(61622,'Aba Kou00efta'),(61623,'Tonio Descanvelle'),(61624,'Ann Robinson'),(61627,'Melinda Doring'),(61628,'Danny Ruhlmann'),(61630,'Alexandre de Franceschi'),(61632,'Dustin Nguyen'),(61637,'Ferdinand Hoang'),(61647,'Guy Oseary'),(61649,'Pras'),(61652,'Gary Ventimiglia'),(61653,'Ina Mayhew'),(61654,'Frank Fitzpatrick'),(61658,'Ja Rule'),(61659,'Chris Messina'),(61660,'Eugene Clark'),(61662,'Derwin Jordan'),(61671,'Conrad Dunn'),(61674,'Val Bettin'),(61677,'Burny Mattinson'),(61690,'George Mooradian'),(61696,'Marie Matiko'),(61697,'Sung Kang'),(61703,'Ron Yuan'),(61704,'Al Leong'),(61709,'Richard Lee-Sung'),(61747,'Bruce Morris'),(61772,'Faith Martin'),(61784,'Goran D. Kleut'),(61792,'Richard Huggett'),(61795,'James Melton'),(61799,'David Roach'),(61816,'Anna De Carlo'),(61818,'Marcel Batangtaris'),(61820,'William J. MacDonald'),(61821,'Robert S. Baker'),(61824,'Mick Garris'),(61825,'Jason Weil'),(61829,'Kelly Overton'),(61830,'Sylva Kelegian'),(61831,'Sammi Hanratty'),(61833,'Ewan Chung'),(61835,'Trieu Tran'),(61838,'Glenn R. Wilder'),(61843,'Pinar Toprak'),(61844,'Roee Sharon'),(61846,'Kes Bonnet'),(61847,'Ethan Maniquis'),(61848,'James Dodson'),(61850,'Irina Kotcheva'),(61851,'Lorenzo Senatore'),(61852,'Nicholas Gonzalez'),(61854,'Shane Edelman'),(61855,'Eyal Podell'),(61860,'Marianne Stanicheva'),(61861,'Vlado Mihailov'),(61865,'Denis O\'Brien'),(61872,'Jim Hunter'),(61873,'Michelle Vogler'),(61880,'Lucie Arnaz'),(61899,'John Sacchi'),(61901,'Scott Richter'),(61902,'Adam Head'),(61903,'Glenn Thomas Jacobs'),(61904,'Christina Vidal'),(61905,'Steven Vidler'),(61907,'Luke Pegler'),(61911,'Tiffany Lamb'),(61912,'Sam Cotton'),(61914,'Zoe Ventoura'),(61918,'Matthew Okine'),(61919,'Ben Nott'),(61920,'Brent Monahan'),(61921,'Courtney Solomon'),(61923,'Matthew Kuipers'),(61924,'Alessandro Fracassi'),(61925,'Nelson Leong'),(61926,'Julien Remillard'),(61927,'Christopher Milburn'),(61928,'Lawrence Steven Meyers'),(61929,'Francis Delia'),(61930,'Allan Zeman'),(61932,'Andru00e9 Rouleau'),(61934,'Caine Davidson'),(61935,'Humphrey Jaeger'),(61936,'Jane Petrie'),(61937,'Thom Fell'),(61938,'Zoe Thorne'),(61939,'Sam Alexander'),(61940,'Miquel Brown'),(61941,'Madalina Stan'),(61943,'Vlad Cruceru'),(61944,'Alin Rosca'),(61945,'Andrei Serban'),(61946,'Isabelle Almgren-Doru00e9'),(61947,'Susan Almgren'),(61948,'Howard Rosenstein'),(61950,'Tab Murphy'),(61955,'Igor Khait'),(61958,'Tim Mertens'),(61959,'Jeremy Suarez'),(61961,'Dave Thomas'),(61962,'D. B. Sweeney'),(61964,'Estelle Harris'),(61965,'Greg Proops'),(61968,'Patrick Pinney'),(61969,'Phil Proctor'),(61970,'Ben Gluck'),(61974,'Dave Metzger'),(61976,'Nick Kenway'),(61977,'Mary Locatell'),(61980,'Wendie Malick'),(61981,'Michael Clarke Duncan'),(61983,'Jason Marsden'),(61992,'Chris Conlee'),(61996,'Christien Tinsley'),(61997,'Karin Anna Cheung'),(62001,'Dee Wallace'),(62003,'James Morrison'),(62010,'Portia de Rossi'),(62011,'Andrew Rona'),(62013,'Lisa Romaniw'),(62014,'Barry Miller'),(62015,'Jerry Leichtling'),(62016,'Arlene Sarner'),(62017,'Paul R. Gurian'),(62018,'Mark Patton'),(62019,'Clu Gulager'),(62020,'Jack Sholder'),(62021,'David Chaskin'),(62022,'Stephen Diener'),(62023,'Christopher Tufty'),(62024,'Bob Brady'),(62025,'Arline Garson'),(62026,'Larry Sulkis'),(62027,'Anthrax'),(62028,'Reuben Cannon'),(62029,'Robin Michel Bush'),(62030,'Paul C. Warschilka'),(62031,'Liam Waite'),(62032,'Duane Davis'),(62033,'Doug McGrath'),(62034,'Rick Edelstein'),(62035,'Michael Krawic'),(62036,'Robert Carradine'),(62037,'Eileen Weisinger'),(62040,'Gary Rocklen'),(62042,'Carole Davis'),(62045,'Art Levinson'),(62046,'Joseph Farrell'),(62047,'Gary Trousdale'),(62048,'Kirk Wise'),(62049,'Howard Ashman'),(62053,'David Foster'),(62054,'Faith Ford'),(62055,'Alan Zweibel'),(62056,'Jonathan Bernstein'),(62057,'Mark Blackwell'),(62058,'James Greer'),(62059,'Amy B. Harris'),(62060,'Marjorie Shik'),(62061,'Ray Kluga'),(62062,'Hinju Kim'),(62063,'Chuck Potter'),(62064,'Chris Pine'),(62065,'Bree Turner'),(62066,'Faizon Love'),(62067,'Carlos Ponce'),(62068,'Tom Fletcher'),(62069,'Danny Jones'),(62070,'Harry Judd'),(62071,'Dougie Poynter'),(62072,'Jaqueline Fleming'),(62073,'Mikki Val'),(62074,'Ira Hawkins'),(62075,'J.C. Sealy'),(62076,'Marcus Hester'),(62077,'Ameer Baraka'),(62082,'Christopher Goodman'),(62085,'Frederick Iannone'),(62093,'Sean Blakemore'),(62097,'Kirsten Berman'),(62100,'Robert Harvey'),(62101,'Kevin Glikmann'),(62102,'Massive Attack'),(62103,'Fiona Riddick'),(62105,'Kerry Condon'),(62106,'Michael Jenn'),(62107,'Carole Ann Wilson'),(62108,'Mike Lambert'),(62109,'Jaclyn Tze Wey'),(62110,'Puthirith Chou'),(62111,'Tony Theng'),(62112,'Owen Lay'),(62113,'Franck Xie Cheng'),(62114,'Danielle Louise Harley'),(62115,'Michael Webber'),(62116,'Bille Woodruff'),(62117,'Nicole Brown'),(62119,'Andre Harrell'),(62120,'Anastasia Masaro'),(62121,'Steven Essam'),(62122,'Romeo Miller'),(62123,'David Moscow'),(62124,'Zachary Isaiah Williams'),(62125,'Missy Elliott'),(62126,'Anthony Sherwood'),(62127,'Lonette McKee'),(62128,'Maestro'),(62129,'Judi Embden'),(62131,'Scott Neil'),(62132,'Jull Weber'),(62133,'Sarah Francis'),(62134,'Kevin Duhaney'),(62135,'Brandi Ward'),(62136,'Fonzworth Bentley'),(62137,'Tracy Dawson'),(62139,'Cindy Cowan'),(62141,'Joanna Johnson'),(62142,'Laura Greenlee'),(62143,'Michael A. Helfant'),(62144,'Kathy Lucas'),(62146,'Rob Brownstein'),(62147,'Joey Zimmerman'),(62148,'Tyler Cole Malinger'),(62150,'Pancho Demmings'),(62151,'Russell B. McKenzie'),(62152,'Angelo Di Mascio Jr.'),(62153,'Steve Fitchpatrick'),(62154,'Brian Grandison'),(62155,'John Cappon'),(62156,'Linda Klein'),(62157,'Josh Stolberg'),(62158,'Steve Glenn'),(62159,'Mike Karz'),(62160,'Barry Katz'),(62161,'Brian Volk-Weiss'),(62162,'Tracey Edmonds'),(62163,'Tony Wohlgemuth'),(62164,'Trish Keating'),(62165,'Russell Hollander'),(62167,'Mackenzie Mowat'),(62168,'Sasha Pieterse'),(62169,'Caroline Ford'),(62171,'Ellia English'),(62172,'Benjamin Ayres'),(62173,'Agam Darshi'),(62185,'Philip Hedgecock'),(62204,'Brent Goldberg'),(62213,'Gian Paolo Varani'),(62215,'Andrea Clark'),(62216,'John Welbanks'),(62220,'Lauren Cohan'),(62221,'Daniel Percival'),(62230,'Shobu Kapoor'),(62231,'Rupert Frazer'),(62233,'Trevor Baxter'),(62238,'Jim Seibel'),(62241,'Jake Weiner'),(62242,'Christina Kuhnigk'),(62245,'Fred Ewanuick'),(62250,'Mike O\'Brien'),(62256,'Georgia Pritchett'),(62257,'Kate Rhodes James'),(62258,'Simon Scardifield'),(62259,'Len Collin'),(62260,'Jane Partridge'),(62262,'Ranjit Krishnamma'),(62263,'Mark Meadows'),(62264,'Ben Walden'),(62266,'Danny Babington'),(62267,'Paul Brown'),(62271,'Terence Michael'),(62273,'James Lawrence Spencer'),(62277,'Susan L. Bertram'),(62279,'Betty Berberian'),(62284,'Kristin Herold'),(62307,'Zach McGowan'),(62342,'Adam Mason'),(62354,'Erik Wilson'),(62365,'Katie Ford'),(62366,'Caryn Lucas'),(62369,'Olatunde Osunsanmi'),(62372,'Terry Robbins'),(62389,'Danny Jacobs'),(62397,'Gordon Buford'),(62400,'The Blacksmoke Organisation'),(62410,'Sammo Hung'),(62416,'Leonard Ho'),(62417,'Richard Ng'),(62421,'Lau Ga-Yung'),(62431,'Bastide Donny'),(62432,'Da Octopuss'),(62433,'Damien Roques'),(62434,'Fru00e9du00e9ric Thoraval'),(62435,'Gu00e9rard Marcireau'),(62436,'Alexandre Rossi'),(62438,'Vraciu Eduard Daniel'),(62439,'David Belle'),(62441,'Tony D\'Amario'),(62442,'Bibi Naceri'),(62443,'Dany Verissimo-Petit'),(62444,'Franu00e7ois Chattot'),(62445,'Nicolas Woirion'),(62446,'Patrick Olivier'),(62447,'Samir Guesmi'),(62448,'Ju00e9ru00f4me Gadner'),(62449,'Tarik Boucekhine'),(62450,'Gru00e9gory Jean'),(62451,'Warren Zavatta'),(62452,'Ludovic Berthillot'),(62453,'Azad'),(62454,'Dominique Dorol'),(62455,'Turan Bagci'),(62456,'Chamsi Charlesia'),(62457,'Gilles Gambino'),(62458,'Nicolas Wan Park'),(62460,'Jean Giraud'),(62466,'Mariano Carranco'),(62468,'Jean-Michel Lacor'),(62477,'Antonio Monroy'),(62480,'Sasisupa Sungvaribud'),(62481,'Michelle Purple'),(62483,'Dredg'),(62484,'Richard Hobbs'),(62485,'Suza Maybury'),(62486,'Ian Bliss'),(62487,'Michael Denkha'),(62488,'Rocky Helton'),(62489,'Clayton Adams'),(62490,'Maurice Morgan'),(62491,'Woody Naismith'),(62492,'Charles Ndibe'),(62493,'Michael McCabe'),(62494,'Sara Saliba'),(62495,'Jim Diamond'),(62498,'David Kennedy'),(62506,'Serban Celea'),(62511,'Michael Burns'),(62512,'R. Lee Fleming Jr.'),(62513,'Leanna Creel'),(62514,'Tommy O\'Haver'),(62515,'Richard Hull'),(62516,'Marc Jenny'),(62517,'Robin Standefer'),(62518,'Wayne Jacques'),(62520,'Sisqu00f3'),(62521,'Vitamin C'),(62522,'Christopher Jacot'),(62523,'Kylie Bax'),(62525,'Jeanie Calleja'),(62526,'Daniel Enright'),(62527,'Park Bench'),(62528,'Oldrich Mach'),(62529,'Christine Gozlan'),(62531,'Valu00e9rie Lemercier'),(62535,'Christian Hecq'),(62539,'Mike Thompson'),(62541,'Brandon Camp'),(62543,'Alan B. Curtiss'),(62544,'Janet L. Wattles'),(62545,'Arlene Kehela'),(62546,'Elizabeth Marx'),(62547,'Susanna Thompson'),(62548,'Casey Biggs'),(62549,'Peter Hansen'),(62550,'Marybeth Fisher'),(62551,'Heidi Swedberg'),(62552,'Jamie Sue Sherrill'),(62553,'Samantha Smith'),(62554,'Jake Wade Wall'),(62555,'Steve Feke'),(62556,'Fred Walton'),(62557,'Paddy Cullen'),(62558,'James Dooley'),(62559,'Ken Lemberger'),(62560,'Gerald Sullivan'),(62561,'Tessa Thompson'),(62562,'David Denman'),(62563,'Arthur Young'),(62564,'Madeline Carroll'),(62565,'John Bobek'),(62566,'Brad Surosky'),(62567,'Karina Logue'),(62568,'Rosine \'Ace\' Hatem'),(62569,'Escher Holloway'),(62570,'Molly Bryant'),(62571,'John Waugh'),(62572,'Owen Smith'),(62580,'Joe Kraemer'),(62583,'Raymond Stella'),(62584,'Ivo Cristante'),(62585,'John W. Hyde'),(62586,'Dorit Hurst'),(62587,'Jennifer L. Soulages'),(62589,'Ellie Cornell'),(62590,'Jack Riley'),(62595,'Mary Pat Gleason'),(62596,'Kane Hodder'),(62597,'Peter MacKenzie'),(62598,'Cary Granat'),(62602,'Irene Kane'),(62634,'Renata Adamidov'),(62635,'Terence Winter'),(62636,'Chris Lighty'),(62637,'Heather Parry'),(62638,'Sharon Seto'),(62639,'Stuart Parr'),(62640,'Paul Rosenberg'),(62641,'Gavin Friday'),(62642,'Maurice Seezer'),(62643,'Francine Jamison-Tanchuck'),(62644,'50 Cent'),(62645,'Tory Kittles'),(62646,'Marc John Jefferies'),(62647,'Sullivan Walker'),(62648,'Serena Reeder'),(62649,'Russell Hornsby'),(62650,'Joseph Pierre'),(62651,'Ryan Allen'),(62652,'Vanessa Madden'),(62653,'Zainab Musa'),(62654,'Brendan Jeffers'),(62655,'Anastasia Hill'),(62674,'Billy Parrott'),(62679,'Michael Murray'),(62686,'Ju00f6rg Westerkamp'),(62692,'Oliver Hudson'),(62700,'Lati Grobman'),(62702,'Tirsa Hackshaw'),(62703,'Tink'),(62705,'H. Scott Salinas'),(62706,'Casey O. Rohrs'),(62707,'Katterina Keith'),(62710,'Marco Sanchez'),(62711,'Darryl Quon'),(62712,'Andrew Jackson'),(62715,'Robert Miano'),(62716,'B.J. Harrison'),(62717,'Rekha Sharma'),(62718,'Kathy Lutz'),(62719,'Jay Anson'),(62720,'George Lutz'),(62721,'Andrew Douglas'),(62722,'Matthew Cohan'),(62723,'Stefan Sonnenfeld'),(62724,'Marco Rubeo'),(62725,'Lisa Fields'),(62726,'Steve Whitney'),(62728,'Isabel Conner'),(62729,'Brendan Donaldson'),(62730,'Annabel Armour'),(62731,'Rich Komenich'),(62732,'David Gee'),(62733,'Nancy Lollar'),(62734,'Josu00e9 Taitano'),(62735,'Dorian Kingi'),(62736,'Jenny Strubin'),(62737,'Lenore Thomas'),(62738,'Charles Belden'),(62739,'Herb Gains'),(62740,'Richard Mirisch'),(62741,'Erik Olsen'),(62742,'Brian Edmonds'),(62743,'Graham \'Grace\' Walker'),(62744,'Nicholas McCallum'),(62745,'Beverley Dunn'),(62746,'Graham Purcell'),(62747,'Chad Michael Murray'),(62748,'Dragicia Debert'),(62749,'Thomas Adamson'),(62750,'Murray Smith'),(62751,'Sam Harkess'),(62752,'Damon Herriman'),(62753,'Andy Anderson'),(62754,'Emma Lung'),(62755,'Don Tait'),(62756,'Lillie Hayward'),(62757,'Matthew Carroll'),(62758,'Todd Lieberman'),(62759,'Ned Bastille'),(62760,'Zena Grey'),(62761,'Shawn Pyfrom'),(62762,'Bess Wohl'),(62763,'Jarrad Paul'),(62764,'Jeanette Brox'),(62765,'Rhea Seehorn'),(62766,'Koji Kataoka'),(62768,'William Brent Bell'),(62770,'Matthew Peterman'),(62771,'David Manpearl'),(62772,'Adolfo Martu00ednez Pu00e9rez'),(62773,'Anna Mastro'),(62775,'Peter Schlessel'),(62776,'Alejandro Martu00ednez'),(62778,'Mark Bennett'),(62779,'Tommy Staub'),(62780,'Alan Hook'),(62781,'Kristin Bicksler'),(62782,'Douglas Hansen'),(62783,'Nicole Oppermann'),(62784,'Billy Slaughter'),(62785,'April Wood'),(62786,'Monica Monica'),(62787,'Rio Hackford'),(62788,'Billy Louviere'),(62789,'J. Richey Nash'),(62790,'Maria Kalinina'),(62791,'Lauren Lorbeck'),(62792,'Veronica Mosgrove'),(62793,'Rick Green'),(62795,'Adam Del Deo'),(62796,'Antony Rufus-Isaacs'),(62797,'John Gulager'),(62798,'Marc Joubert'),(62799,'Alex Keledjian'),(62800,'Michael Leahy'),(62801,'Adrienne Maloof'),(62802,'Andrew Jameson'),(62803,'Gavin Maloof'),(62804,'George Maloof'),(62805,'Colleen Maloof'),(62806,'Joe Maloof'),(62807,'Ben Ormand'),(62808,'Alix Taylor'),(62809,'Ron Cosmo Vecchiarelli'),(62810,'Larry Tanz'),(62811,'Stephen Edwards'),(62813,'Kirk M. Morri'),(62814,'Phil Maloof'),(62815,'Julia Bartholomew'),(62816,'Josh Zuckerman'),(62817,'Anthony \'Treach\' Criss'),(62818,'Chauntae Davies'),(62819,'Diane Ayala Goldner'),(62820,'Somah Haaland'),(62821,'Tyler Patrick Jones'),(62823,'Hannah Schick'),(62824,'Gary J. Tunnicliffe'),(62825,'Caroline Biggerstaff'),(62826,'Ed Hansen'),(62828,'Michael Shear'),(62829,'Gail Laskowski'),(62830,'Melina Root'),(62831,'Will Forte'),(62832,'Michael Ormsby'),(62833,'Charles Rahi Chun'),(62834,'Ryun Yu'),(62835,'Susanne Wright'),(62836,'Derek Waters'),(62837,'Chandler Hill'),(62838,'Anna Becker'),(62839,'Mark Winitsky'),(62840,'Brian Scolaro'),(62841,'Jack L. Murray'),(62842,'Eddie Griffin'),(62843,'Meera Simhan'),(62844,'Mauricio Sanchez'),(62845,'Beverly Polcyn'),(62846,'Charlie Dell'),(62847,'Dana Seltzer'),(62848,'Valery M. Ortiz'),(62849,'Tom Lenk'),(62850,'Scott Bridges'),(62851,'Tom Fitzpatrick'),(62852,'Susse Budde'),(62853,'Dawn Carter'),(62854,'Akiva Schaffer'),(62855,'Erin David'),(62856,'Seth Meyers'),(62857,'Susan Taylor Brouse'),(62858,'Lynne Carrow'),(62859,'Catherine Ircha'),(62860,'Tish Monaghan'),(62861,'Andy Samberg'),(62862,'Danny McBride'),(62863,'Jorma Taccone'),(62864,'Chester Tam'),(62865,'Brittany Tiplady'),(62866,'Brittney Irvin'),(62867,'Andrew Moxham'),(62868,'Terri O\'Neill'),(62869,'Alvin Sanders'),(62870,'Chris Eastman'),(62872,'Katja von Garnier'),(62873,'Lesley Dyer'),(62874,'Annette Curtis Klause'),(62875,'Anja Stadelmann'),(62876,'Andreea Tanasescu'),(62877,'Mihnea Vieru'),(62878,'Ioana Albaiu'),(62879,'Chris Geere'),(62880,'Tom Harper'),(62882,'Jack Wilson'),(62883,'Vitalie Ursu'),(62884,'Bogdan Voda'),(62885,'Rodica Mandache'),(62886,'Sandu Mihai Gruia'),(62887,'Helga Racz'),(62888,'Lia Bugnar'),(62889,'Mihai Calin'),(62890,'Sofia Vladu'),(62891,'David Finti'),(62892,'Anatole Taubman'),(62893,'Craig Wasson'),(62894,'Bruce Wagner'),(62896,'Chuck Weiss'),(62900,'Cynthia Chapman'),(62901,'Stephen Hegyes'),(62907,'Julian Clarke'),(62908,'Clinton Shorter'),(62909,'Paul Campbell'),(62910,'Sarah Lind'),(62911,'JR Bourne'),(62912,'Hrothgar Mathews'),(62914,'Amber Rothwell'),(62915,'Kyle Cassie'),(62916,'Brad Sihvon'),(62918,'Ben Ratner'),(62919,'Alex Zahara'),(62922,'James Liston'),(62923,'Ray Bradbury'),(62925,'Romana Cisarova'),(62926,'Steven Cantor'),(62927,'Guy J. Louthan'),(62928,'Rick Nathanson'),(62929,'William J. Immerman'),(62930,'Jessica Horu00e1thovu00e1'),(62931,'Sakina Msa'),(62932,'Jemima Rooper'),(62933,'Alvin Van Der Kuech'),(62934,'Andrew Blanchard'),(62935,'Nikita Lespinasse'),(62936,'Scott Bellefeville'),(62937,'Sai-Kit Yung'),(62938,'Ho Hon Chou'),(62939,'Antonin Hausknecht'),(62940,'Anezka Novak'),(62941,'John Hyams'),(62942,'Andrew O\'Connor'),(62946,'Jesse Armstrong'),(62948,'Sam Bain'),(62954,'Paul Englishby'),(62955,'Lizzie Francke'),(62957,'Sarah Crowe'),(62961,'Sarah Hadland'),(62963,'Karen Seacombe'),(62967,'Robin Weaver'),(62968,'Priyanga Burford'),(62972,'Tim Plester'),(62973,'Steve Edge'),(62982,'Ildiku00f3 Kemu00e9ny'),(62983,'Guy Collins'),(63000,'Bernard Kay'),(63003,'Ricci Harnett'),(63006,'Ram John Holder'),(63010,'Zsuzsa Mihalek'),(63029,'Sky Soleil'),(63046,'Kelly Jo Minter'),(63052,'Julian Gilbey'),(63056,'Neil Dunn'),(63059,'Will Gilbey'),(63064,'Ali Asad'),(63065,'Lawrence Mortorff'),(63071,'Terry Stone'),(63080,'Marvin Campbell'),(63099,'Michael Fimognari'),(63101,'Lisa Hamil'),(63103,'Amy J. Roberts'),(63107,'Corri English'),(63109,'Joshua Alba'),(63110,'Jay Jablonski'),(63111,'Ben Livingston'),(63120,'William Boyd'),(63122,'Fred Fougea'),(63124,'Farid Lahouassa'),(63127,'Steve Clark-Hall'),(63128,'Yann Malcor'),(63129,'Nicolas Ronchi'),(63131,'John Hill'),(63136,'Patrick Mofokeng'),(63141,'Ron Donachie'),(63144,'Sello Motloung'),(63150,'Adam Weis'),(63155,'Mackenzie Firgens'),(63169,'Cory Knauf'),(63190,'David Kirchner'),(63198,'Danny Draven'),(63208,'Tommy Chong'),(63210,'Jacob Witkin'),(63213,'Gina-Raye Carter'),(63214,'Sonny Carl Davis'),(63217,'Mae LaBorde'),(63220,'Kerri Kenney-Silver'),(63221,'Penny Adams'),(63223,'Peter Principato'),(63224,'John Landgraf'),(63225,'Sandi Yi-Trimble'),(63227,'Joe Kessler'),(63228,'Mary Ann Bozek'),(63229,'Sandi Yi-Trimble'),(63231,'Niecy Nash'),(63232,'Mary Birdsong'),(63234,'Wendi McLendon-Covey'),(63235,'Cedric Yarbrough'),(63236,'Alejandra Gutierrez'),(63238,'Brandon Molale'),(63239,'Kathryn Fiore'),(63240,'Dave Holmes'),(63263,'Beau Bauman'),(63264,'Bill Berry'),(63265,'Steven Butensky'),(63266,'Gene Klein'),(63268,'Dave Bartis'),(63270,'Romeo Tirone'),(63271,'Julia Lee Smith'),(63273,'Alysia Raycraft'),(63274,'Martina Buckley'),(63275,'Sandra McCoy'),(63277,'Paul James'),(63278,'Jesse Janzen'),(63279,'Anna Deavere Smith'),(63280,'Ethan Cohn'),(63281,'Erica Yates'),(63282,'Sabrina Gilbert'),(63283,'Ashleigh Pixley'),(63284,'Shauna Sauls'),(63285,'Ranel Johnson'),(63286,'Michael Kennedy'),(63287,'Jarvis W. George'),(63288,'Shannon Cusack'),(63289,'Steve Gaub'),(63291,'Ron Schmidt'),(63292,'Jeanette Scott'),(63293,'Jeff Knipp'),(63295,'Peter O\'Brien'),(63296,'J.C. MacKenzie'),(63303,'Peter Cornwell'),(63306,'James Watkins'),(63310,'Ben Seresin'),(63311,'Shaun Evans'),(63312,'Yvonne Strahovski'),(63313,'Victoria Thaine'),(63316,'Karen Beever'),(63333,'America Young'),(63342,'James Bulleit'),(63352,'Josh Goldsmith'),(63353,'Cathy Yuspa'),(63359,'Cathy Belton'),(63360,'Denis Conway'),(63362,'Ned Dennehy'),(63364,'Brian Gleeson'),(63365,'David Herlihy'),(63367,'Eanna MacLiam'),(63371,'John McDonnell'),(63372,'Christa Brittany Allen'),(63373,'Sean Marquette'),(63383,'Frank Campeau'),(63421,'Marc Streitenfeld'),(63422,'Philippe Le Sourd'),(63423,'Johnny Martin'),(63424,'David E. Ornston'),(63425,'Richard Salvatore'),(63426,'Tierre Turner'),(63427,'Kenneth Burgomaster'),(63436,'Jun Ji-hyun'),(63445,'Jeon Jae-hyeong'),(63459,'Aaron Griffith'),(63462,'Christopher Duddy'),(63465,'Marieh Delfino'),(63469,'Paul Hansen Kim'),(63470,'Jennifer Lyons'),(63474,'Charles Shaughnessy'),(63477,'Ryan Little'),(63478,'Geoffrey Panos'),(63479,'Lawrence Bagby'),(63480,'Sunny Chen'),(63481,'Brian Brough'),(63482,'Charles Chan'),(63484,'Fenton Quinn'),(63485,'J Bateman'),(63486,'Bart Hendrickson'),(63487,'Jennifer Buster'),(63489,'Adam Abel'),(63490,'Wynn Hougaard'),(63491,'Steven A. Lee'),(63492,'Corbin Allred'),(63493,'Alexander Polinsky'),(63494,'Kirby Heyborne'),(63495,'Michael Buster'),(63496,'Matt Whitaker'),(63498,'Ethan Vincent'),(63499,'Melinda Renee'),(63500,'Ruby Chase O\'Neil'),(63501,'Jeff Birk'),(63502,'Ben Gourley'),(63503,'Tane Williams'),(63504,'Randy Beard'),(63505,'Curt Dousett'),(63507,'M. Casey Reeves'),(63508,'Chris Clark'),(63509,'Christian Lee'),(63510,'Christian Malzl'),(63511,'Philip Malzl'),(63512,'Dawn Graham'),(63515,'Jon Klane'),(63516,'Jeff Sussman'),(63521,'Chris Peppe'),(63522,'Sofu00eda Vergara'),(63533,'Camille H. Patton'),(63534,'Aleksandra Marinkovich'),(63537,'Scotch Ellis Loring'),(63540,'Teddy Sears'),(63544,'Steven Culp'),(63546,'Shane Daly'),(63547,'Claudette Mink'),(63548,'Brandon Craggs'),(63550,'Tom McLoughlin'),(63557,'Erik Gerlund'),(63558,'Jason L. Wood'),(63559,'Mark Wareham'),(63561,'Trent Cameron'),(63562,'David Neale'),(63563,'Veena Sood'),(63564,'Nels Lennarson'),(63566,'Michael Adamthwaite'),(63568,'Patti Allan'),(63571,'Wilson Yip'),(63574,'Ka-Fai Cheung'),(63582,'Hui Siu-Hung'),(63584,'Francis Ng'),(63585,'Andy On'),(63601,'Frederic Evard'),(63608,'Jason Watkins'),(63611,'Nickolas Grace'),(63614,'Robert Shapiro'),(63640,'Christopher Lee Philips'),(63646,'Frank Thomas'),(63659,'John Coniglio'),(63661,'Jenny Mollen'),(63663,'Hayley McFarland'),(63671,'Carlyn Davis'),(63672,'Gail Goldberg'),(63673,'Brana Rosenfeld'),(63674,'Kate Lacey'),(63675,'Liz Tigelaar'),(63676,'Nikki SooHoo'),(63677,'Maddy Curley'),(63678,'Mio Dzakula'),(63679,'Svetlana Efremova'),(63680,'Tarah Paige'),(63681,'Julie Warner'),(63682,'Bart Conner'),(63683,'Tim Daggett'),(63684,'Elfi Schlegel'),(63685,'Harrison Wills'),(63686,'Brian Gattas'),(63693,'Taru00f4 Iwashiro'),(63707,'Kazuo Kitamura'),(63709,'Craig R. Baxley'),(63713,'Martha Coolidge'),(63715,'Susan Duff'),(63716,'John Quaintance'),(63720,'Mark Morgan'),(63721,'Michael Mendelsohn'),(63724,'Troy Rowland'),(63728,'Johnny E. Jensen'),(63729,'Jennie Muskett'),(63730,'Van Broughton Ramsey'),(63738,'Brandon Beemer'),(63752,'Anne Pedersen'),(63758,'Gitte Witt'),(63764,'Gustaf Skarsgu00e5rd'),(63767,'Reidar Su00f8rensen'),(63769,'Ane Dahl Torp'),(63772,'Rolfe Kanefsky'),(63775,'Frederico Lapenda'),(63781,'Alexander Tabrizi'),(63784,'Candice Elzinga'),(63788,'Allisa Swanson'),(63791,'Jay Brazeau'),(63792,'Woody Jeffreys'),(63797,'Alistair Abell'),(63798,'Dave Bonneywell'),(63813,'Rothaford Gray'),(63820,'Christian Ditter'),(63832,'Eva Stiebler'),(63835,'Lennard Bertzbach'),(63852,'Warren P. Sonoda'),(63858,'Laura de Carteret'),(63859,'Scott Gibson'),(63860,'John Bayliss'),(63864,'Amy Lalonde'),(63904,'Rockne S. O\'Bannon'),(63906,'Curt Sobel'),(63913,'Terence A. Clegg'),(63914,'Tuesday Knight'),(63915,'Ken Sagoes'),(63916,'Rodney Eastman'),(63917,'Lisa Wilcox'),(63918,'Andras Jones'),(63920,'Jim Wheat'),(63921,'Ken Wheat'),(63922,'John Easdale'),(63923,'Craig Safan'),(63924,'Steven Fierberg'),(63925,'Jack Tucker'),(63926,'Stephen Singular'),(63927,'Greg Strangis'),(63928,'Brian King'),(63929,'Shebnem Askin'),(63930,'Paul Federbush'),(63931,'Wendy Grean'),(63932,'Bert Kish'),(63935,'Alex Daniels'),(63941,'Marshall R. Teague'),(63942,'Julie Michaels'),(63943,'Rowdy Herrington'),(63945,'David Lee Henry'),(63946,'Tim Moore'),(63949,'Charles R. Meeker'),(63950,'Richard Tienken'),(63952,'Greg Brooker'),(63956,'Eric J. Goldstein'),(63958,'Manolo Blahnik'),(63959,'Garth Drabinsky'),(63960,'Clive Parsons'),(63964,'Miles Goodman'),(63972,'Jules O\'Loughlin'),(63976,'Marcus Miller'),(63977,'Hans Christian Andersen'),(63978,'Jodi Benson'),(63979,'Peter Nashel'),(63980,'Andy Keir'),(63981,'Robert Florio'),(63983,'Roger Nygard'),(63984,'Mike Macari'),(63985,'Jamie Anderson'),(63989,'Julie Yorn'),(63990,'Kate Williams'),(63991,'Robert Hoffman'),(63992,'Brett Kelly'),(63998,'Tammy Grimes'),(63999,'Jerry Leider'),(64000,'Wolfgang Ramml'),(64014,'Carlos Leal'),(64017,'Martin Rapold'),(64024,'Ron Spang'),(64026,'Robert Brener'),(64027,'Eban Schletter'),(64028,'Stephen Hauser'),(64029,'Andrew Wald'),(64030,'Kelly Makin'),(64031,'Adam Scheinman'),(64033,'Valorie Armstrong'),(64034,'Michael Ashton'),(64037,'Jon Turtle'),(64038,'Brent A. Schoenfeld'),(64045,'Kirk Jones'),(64046,'Alexandre Heylen'),(64047,'Richard Holmes'),(64048,'Glynis Murray'),(64049,'Gimel Everett'),(64050,'Dan Wyman'),(64052,'Steven A. Lane'),(64053,'Robert Pringle'),(64054,'Edward Simons'),(64055,'Clive Turner'),(64056,'Jenny Wright'),(64057,'Dean Cameron'),(64058,'Cassian Elwes'),(64059,'Irwin Yablans'),(64061,'Fred Schepisi'),(64064,'Aleisha Allen'),(64065,'Rudy Wurlitzer'),(64066,'Philip Bolden'),(64074,'Tim Clawson'),(64075,'Jay Roewe'),(64101,'John Charles'),(64102,'Christopher Adamson'),(64103,'Emily Booth'),(64114,'Edward Dmytryk'),(64118,'William A. Lyon'),(64119,'Robert Urich'),(64120,'John Matuszak'),(64126,'Don Miller'),(64127,'Bill Corless'),(64128,'Karen Glasser'),(64129,'Peter Locke'),(64130,'Baxter'),(64131,'Courtney Hunt'),(64132,'John Canoe'),(64133,'Jay Klaitz'),(64134,'Dylan Carusona'),(64135,'Charlie McDermott'),(64136,'Misty Upham'),(64139,'Joshua Michael Stern'),(64140,'Sanaa Hamri'),(64141,'David Gordon Green'),(64143,'Brian Scannell'),(64144,'Adam Crosby'),(64147,'Peter Macdissi'),(64148,'Chase Ellison'),(64149,'Peter Hastings'),(64150,'Cressida Cowell'),(64151,'Mike Mitchell'),(64152,'Robert Stevenhagen'),(64153,'Shaine Jones'),(64154,'Sasha Alexander'),(64155,'Franu00e7ois Bu00e9gaudeau'),(64156,'Trevor Morris'),(64157,'David N. Titcher'),(64158,'David Benullo'),(64159,'David Andrew Goldstein'),(64160,'Robert Fyfe'),(64163,'Kimble Rendall'),(64172,'Nicholas Sparks'),(64179,'Leslie Urdang'),(64180,'Steve Whitmire'),(64181,'Dave Goelz'),(64182,'Bill Barretta'),(64183,'Martin G. Baker'),(64184,'Jerry Juhl'),(64185,'Joey Mazzarino'),(64186,'Jamshied Sharifi'),(64188,'Damon Albarn'),(64189,'Ara Celi'),(64191,'Lawrence Guterman'),(64192,'Lance Khazei'),(64194,'Paweu0142 Pawlikowski'),(64195,'Joseph Zito'),(64196,'Joel Goodman'),(64198,'Thom Mathews'),(64199,'Jennifer Cooke'),(64200,'David Kagen'),(64201,'Renu00e9e Jones'),(64202,'Tom Fridley'),(64203,'C.J. Graham'),(64204,'Jon Kranhouse'),(64205,'Alexandre Arcady'),(64206,'Franu00e7ois-Eudes Chanfrault'),(64208,'Al Rundle'),(64209,'Sophie Vermersch'),(64210,'Mau00efwenn'),(64211,'Franck Khalfoun'),(64212,'Dan Duryea'),(64213,'Brett DelBuono'),(64221,'Dan Monahan'),(64222,'Mark Herrier'),(64223,'Wyatt Knight'),(64224,'Cyril O\'Reilly'),(64227,'Brandon Trost'),(64231,'Michael Barton'),(64233,'Jamison Jones'),(64236,'David Wells'),(64237,'Sascha Knopf'),(64242,'Tina D\'Marco'),(64252,'Christoph Silber'),(64295,'Alan Ritchson'),(64303,'Jennifer Miller'),(64306,'Barbara Mamabolo'),(64308,'Krysta Carter'),(64310,'Richard Alan Campbell'),(64311,'David C. Johnson'),(64314,'Diana Noris'),(64315,'Erik C. Andersen'),(64331,'Shim Hyung-Rae'),(64334,'Sascha Schneider'),(64335,'Timothy Alverson'),(64336,'James B. Kang'),(64337,'Woo-Taek Kim'),(64338,'Pamela B. Warner'),(64339,'Donald Elmblad'),(64340,'Niklas J. Palm'),(64341,'Amanda Brooks'),(64342,'Craig Robinson'),(64343,'John Ales'),(64344,'Billy Gardell'),(64345,'NiCole Robinson'),(64346,'Cody Arens'),(64347,'Jody Carlson'),(64348,'Dominic Oliver'),(64349,'Craig Anton'),(64350,'Patricia Lee'),(64351,'Eloy Casados'),(64352,'Alexa Sheehan'),(64371,'Vanna Bonta'),(64373,'Elyse Dinh'),(64378,'Curran Pang'),(64379,'Decha Srimantra'),(64399,'Iwona Sellers'),(64411,'Jennifer Higham'),(64413,'Zolee Ganxsta'),(64425,'Albert Yeung'),(64429,'Pik Kwan Lee'),(64435,'Jaycee Chan'),(64436,'Daniel Wu'),(64439,'Fan Bingbing'),(64443,'Teresa Cheng'),(64444,'Shannon Jeffries'),(64445,'Elisa Gabrielli'),(64446,'Sean Bishop'),(64447,'Mitch Carter'),(64449,'Holly Dorff'),(64450,'Hope Levy'),(64451,'Lynnanne Zager'),(64457,'Perry King'),(64468,'Martin Wiley'),(64470,'Katie Stuart'),(64471,'Chad Faust'),(64474,'Gil Hacohen'),(64481,'Gordon Wilding'),(64487,'John Chong'),(64488,'Stephen Lam'),(64489,'Lorraine Ho'),(64490,'Chi-Leung Kwong'),(64496,'Richie Ren'),(64506,'Chris Brancato'),(64507,'John Flock'),(64508,'Sidney J. Furie'),(64514,'Jim Codrington'),(64515,'Pablo Espinosa'),(64516,'Austin Farwell'),(64535,'Laurent Fleutot'),(64541,'Wladimir Yordanoff'),(64550,'Renu00e9e Le Calm'),(64568,'Martin Goeres'),(64574,'Gru00e9goire Vigneron'),(64575,'Laurent Tirard'),(64578,'Valu00e9rie Deseine'),(64585,'Dimitri Rafalsky'),(64592,'Christiane Bopp'),(64600,'Bill Marks'),(64606,'Michael V. Nicolo'),(64608,'Bob Sher'),(64609,'Greg Chown'),(64614,'Landy Cannon'),(64622,'Kate Kelton'),(64623,'Nenna Abuwa'),(64624,'Marium Carvell'),(64626,'Jack Rosenthal'),(64634,'Calexico'),(64635,'Thomas Hardmeier'),(64666,'Richard Schwadel'),(64670,'Philip Granger'),(64672,'Christine Lippa'),(64673,'Jennifer Clement'),(64674,'Mike Dopud'),(64680,'Tony Alcantar'),(64681,'Mark DiSalle'),(64683,'Paul Hertzog'),(64709,'Scott B. Smith'),(64710,'Reeve Carney'),(64711,'David Guterson'),(64712,'Tom McCamus'),(64713,'Camelia Frieberg'),(64714,'Russell Banks'),(64715,'Patrick Van Horn'),(64716,'Victor Simpkins'),(64719,'Lar Park Lincoln'),(64720,'Susan Jennifer Sullivan'),(64721,'Kevin Spirtas'),(64722,'John Carl Buechler'),(64723,'Iain Paterson'),(64724,'Barbara Sachs'),(64725,'Manuel Fidello'),(64726,'Daryl Haney'),(64727,'Maureen O\'Connell'),(64728,'Martin Jay Sadoff'),(64729,'Barry Zetlin'),(64730,'Todd Caldecott'),(64731,'Tiffany Paulsen'),(64733,'Jensen Daggett'),(64734,'Barbara Bingham'),(64735,'Rob Hedden'),(64736,'Randy Cheveldave'),(64741,'John D. LeMay'),(64742,'Kari Keegan'),(64743,'Adam Marcus'),(64744,'Debbie Hayn-Cass'),(64745,'Jay Huguely'),(64746,'Dean Lorey'),(64747,'Bill Dill'),(64748,'David Handman'),(64750,'Pascal Bonitzer'),(64751,'Mathieu Demy'),(64753,'Kesun Loder'),(64754,'Andrew Currie'),(64755,'Trent Carlson'),(64756,'Blake Corbet'),(64757,'Kevin Eastwood'),(64758,'Michael Shepard'),(64759,'Mary Anne Waterhouse'),(64760,'Ki Wight'),(64761,'Robert Chomiak'),(64762,'Dennis Heaton'),(64765,'Don MacDonald'),(64766,'Roger Mattiussi'),(64775,'Robert Vito'),(64785,'Mark L. Smith'),(64796,'Tom Holland'),(64797,'Mitchell Galin'),(64798,'Marc Laub'),(64805,'Billy Brown'),(64807,'Tom Lazarus'),(64808,'Rick Ramage'),(64809,'Billy Corgan'),(64810,'Patch Adams'),(64811,'Mike Farrell'),(64812,'Marvin Minoff'),(64813,'Jon Ronson'),(64814,'Peter Straughan'),(64815,'Robert Iscove'),(64817,'Beau Willimon'),(64820,'Kipley Wentz'),(64821,'Brian Taggert'),(64822,'Jerzy Kosinski'),(64825,'Harry Hamlin'),(64827,'Kate Kondell'),(64829,'Heather Hach'),(64830,'Andrew Gunn'),(64831,'John A. Russo'),(64833,'Russell Streiner'),(64839,'Pat Conroy'),(64841,'Andrew S. Karsch'),(64842,'James T. Roe III'),(64849,'Todd McFarlane'),(64855,'Todd Busch'),(64856,'Michael Jai White'),(64857,'Wendy Phillips'),(64861,'Vaughan N. Dean'),(64862,'Philip Sainton'),(64866,'Erdman Penner'),(64873,'Peter Carey'),(64876,'Sean Barton'),(64880,'Choi Min-sik'),(64881,'Johnny Kim'),(64883,'Kang Je-gyu'),(64886,'Lee Dong-jun'),(64887,'Park Gok-ji'),(64893,'Jerome Armstrong'),(64896,'Michael Wong'),(64897,'Barbara Tyson'),(64899,'Mike Anscombe'),(64901,'Gordon Chan'),(64903,'Chua Lam'),(64908,'Lisa Gay Hamilton'),(64909,'Jean-Marie Poiru00e9'),(64910,'Alain Terzian'),(64911,'Eric Levi'),(64912,'Felix Mendelssohn-Bartholdy'),(64913,'Marie-Anne Chazel'),(64914,'Emily Perkins'),(64915,'Janet Kidder'),(64917,'Pascale Hutton'),(64923,'Michele Conroy'),(64924,'Declan Baldwin'),(64928,'Art Garfunkel'),(64929,'Jack Gilford'),(64930,'Bob Newhart'),(64931,'Joseph Heller'),(64932,'Tammy Lauren'),(64934,'Donna Burkons'),(64935,'Joseph Newton Cohen'),(64948,'Catherine Cavadini'),(64949,'Phil Nibbelink'),(64951,'Neil Ross'),(64952,'Henrik Kristensen'),(64954,'Mikkel E.G. Nielsen'),(64986,'Clare-Hope Ashitey'),(64992,'Hou Hsiao-hsien'),(64999,'Megan Ward'),(65001,'Shawn Schepps'),(65002,'Dana Delany'),(65007,'Vanessa Paradis'),(65009,'Catherine Lascault'),(65010,'Tara Morice'),(65012,'John Ketcham'),(65013,'Rubin \'Hurricane\' Carter'),(65016,'David Aukin'),(65017,'Natalija Nogulich'),(65018,'Joseph Isgro'),(65019,'Lane Smith'),(65020,'Victoria Rowell'),(65030,'Joe Breen'),(65031,'Michael Legge'),(65032,'Ciaran Owens'),(65033,'Frank McCourt'),(65035,'Laura Jones'),(65036,'Tiffany Taubman'),(65038,'Heidi Kling'),(65043,'Samuel Goldwyn Jr.'),(65044,'Iva Davies'),(65045,'Christopher Gordon'),(65046,'Richard Tognetti'),(65048,'Manfred Lohmar'),(65054,'Rainer Bock'),(65070,'Igor Martinoviu0107'),(65104,'John Raffo'),(65106,'David Wimbury'),(65107,'Bob Krakower'),(65108,'Don Winslow'),(65109,'Kenneth Burke'),(65110,'Allen Lawrence'),(65111,'Mark Handel'),(65112,'Stan Erdreich'),(65113,'Brandon Hill'),(65114,'Heidi Jo Markel'),(65115,'Keith Samples'),(65116,'Larry Schapiro'),(65117,'Omar Veytia'),(65118,'Efrain Lomeli'),(65121,'Jarrod Bunch'),(65122,'Richard Bairos'),(65123,'Shirly Brener'),(65124,'Troy Brenna'),(65125,'Rebekah Chaney'),(65126,'Paul Diaz'),(65127,'Adamo P. Cultraro'),(65128,'Candace Elaine'),(65129,'Rob Fleming'),(65130,'Carrie Fleshman'),(65131,'Dax Garner'),(65132,'Don Curry'),(65133,'Marcus Raboy'),(65134,'DJ Pooh'),(65135,'Matt Alvarez'),(65136,'Suzanne Hines'),(65137,'Janet Graham'),(65139,'Alyssa Winter'),(65140,'Roger Burton'),(65141,'Laurence Mason'),(65142,'Darren Lee'),(65143,'Peter Y. Kim'),(65144,'Ethan Browne'),(65145,'Liza Walker'),(65146,'Bob Sessions'),(65147,'Blake Willett'),(65148,'Max Ligosh'),(65151,'Howard A. Rodman'),(65154,'Mary Montiforte'),(65164,'Master P'),(65165,'Dorit Sauer'),(65166,'Mark Joy'),(65167,'Scott Cooper'),(65171,'Tim Parati'),(65188,'Lee Anthony Smith'),(65189,'Gregory J. Bradley'),(65190,'Philip G. Atwell'),(65191,'Christopher Petzel'),(65192,'Joseph P. Genier'),(65193,'Thomas L. Carter'),(65194,'Colleen Bolton '),(65195,'Mathew St. Patrick'),(65196,'Nadine Velazquez'),(65197,'Mark Cheng'),(65198,'Kane Kosugi'),(65199,'Kennedy Montano'),(65200,'Steph Song'),(65201,'Annika Foo'),(65202,'Nicholas Elia'),(65209,'Brian Hartman'),(65213,'Kyle Dean Jackson'),(65217,'Annie Bloom'),(65224,'Adrienne Frantz'),(65225,'Justin Chon'),(65227,'Travis Schuldt'),(65234,'Michael Shaara'),(65235,'Kiana Tom'),(65236,'Bill Goldberg'),(65237,'John Fasano'),(65238,'Mike Benson'),(65239,'Susan Ward'),(65240,'Leila Arcieri'),(65242,'Jack Perez'),(65243,'Marc Bienstock'),(65245,'Andrew Feltenstein'),(65246,'John Nau'),(65248,'Marco Chimenz'),(65249,'Stefano Arnaldi'),(65250,'Alessio Vlad'),(65251,'John Mortimer'),(65261,'Angelica Lee'),(65272,'Scott Kramer'),(65277,'Zhang Fengyi'),(65284,'Alexis Smith'),(65288,'Edith Wharton'),(65292,'Buzz Feitshans IV'),(65294,'Don Austen'),(65297,'Meredith Braun'),(65298,'Brian Henson'),(65300,'Sarah Rose Karr'),(65301,'Phil Daniels'),(65303,'Mark Wingett'),(65309,'Omri Katz'),(65310,'Kenny Ortega'),(65313,'Howard Swindle'),(65314,'Giuseppe Tornatore'),(65316,'Robbie Fox'),(65317,'Jake Scott'),(65319,'Betsy Stahl'),(65326,'Michael Schweitzer'),(65327,'Daniel Chuba'),(65329,'Brian Eastman'),(65330,'Ted Hughes'),(65332,'Steven Wilzbach'),(65334,'Michael Des Barres'),(65344,'Esai Morales'),(65345,'Sandrine Holt'),(65346,'Eru Potaka-Dewes'),(65347,'Tim Rose Price'),(65357,'Li-Kong Hsu'),(65360,'Andrew Lloyd Webber'),(65362,'Holliston Coleman'),(65363,'Clifford Green'),(65364,'Cathy Cash Spellman'),(65365,'Vince McKewin'),(65366,'Ted Lewis'),(65377,'Bernie Goldmann'),(65378,'Paula Mazur'),(65390,'Scott Kalvert'),(65394,'David Phillips'),(65395,'James Madio'),(65396,'John Norville'),(65397,'Kimberly Russell'),(65398,'Denise Nicholas'),(65400,'Dalton James'),(65402,'Michael Muhlfriedel'),(65404,'Christopher Stone'),(65407,'Daniel H. Blatt'),(65409,'Fay Masterson'),(65410,'Dalisa Cohen'),(65420,'Louis Morneau'),(65421,'Elizabeth Rodriguez'),(65422,'Vivienne Sendaydiego'),(65423,'Mike Pniewski'),(65428,'Michael Haigney'),(65429,'Kunihiko Yuyama'),(65430,'Takeshi Shudo'),(65433,'William O\'Malley'),(65434,'Robert Harris'),(65441,'Sadayuki Murai'),(65445,'Samuel Roukin'),(65446,'Kate O\'Flynn'),(65448,'Sylvestra Le Touzel'),(65449,'Karina Fernandez'),(65451,'Oliver Maltman'),(65452,'Mike Leigh'),(65454,'Georgina Lowe'),(65455,'Gail Egan'),(65456,'James Clayton'),(65457,'Duncan Reid'),(65458,'Tim Fraser'),(65471,'Mimi Kuzyk'),(65475,'Brad Rowe'),(65482,'William Ryan'),(65503,'Lona Williams'),(65505,'Arthur Hill'),(65506,'Michael Spiller'),(65508,'James Olson'),(65513,'Gil Mellu00e9'),(65524,'Ioan Gruffudd'),(65528,'Cynthia Stevenson'),(65529,'Irene Bedard'),(65530,'Mike Gabriel'),(65531,'Eric Goldberg'),(65532,'Carl Binder'),(65533,'James Pentecost'),(65534,'Andreas Deja'),(65535,'Alice Evans'),(65536,'Dodie Smith'),(65543,'Lisa Andoh'),(65544,'Nathaniel Hawthorne'),(65545,'Tova Laiter'),(65546,'Charles Gieg Jr.'),(65547,'Felix Sutton'),(65548,'Rick Friedberg'),(65549,'Dick Chudnow'),(65550,'Jeffrey Konvitz'),(65553,'Bill Graham'),(65554,'Olivia Barash'),(65556,'Carl Orff'),(65558,'Lee Rich'),(65559,'Dylan Sellers'),(65561,'Kip Pardue'),(65562,'Andy Griffith'),(65563,'Jan Skrentny'),(65564,'Era'),(65568,'James Sikking'),(65572,'Fru00e9du00e9rique Bel'),(65592,'Karen Snow'),(65594,'John Michael McDonagh'),(65595,'Timothy White'),(65596,'Nelson Woss'),(65598,'Tony Jay'),(65599,'Bob Tzudiker'),(65600,'Noni White'),(65601,'Ellen Keneshea'),(65605,'Muhammad Ali'),(65606,'George Foreman'),(65607,'Don King'),(65610,'Paul Goldsmith'),(65613,'Jeffrey Kusama-Hinte'),(65614,'David Barron'),(65615,'Wych Kaosayananda'),(65616,'Vincent Patrick'),(65617,'Cy Coleman'),(65626,'John M. Taylor'),(65627,'Kris Isacsson'),(65628,'The Lady of Rage'),(65629,'Bibo Bergeron'),(65630,'Rob Letterman'),(65637,'Bernard Schwartz'),(65640,'Khary Payton'),(65641,'Brande Roderick'),(65642,'John Light'),(65643,'Nick Phillips'),(65644,'Kevin Kliesch'),(65673,'Bill Damaschke'),(65674,'Janet Healy'),(65677,'Don Mancini'),(65678,'John Lafia'),(65681,'Joe Renzetti'),(65682,'Roy E. Peterson'),(65683,'Alex Vincent'),(65685,'Paul B. Radin'),(65687,'John Henry Patterson'),(65690,'Keith Goldberg'),(65691,'Alissa Ferguson'),(65693,'Chris Pollack'),(65696,'Tony Ledard'),(65697,'Karl Malone'),(65698,'Gary Payton'),(65699,'Andrew Fiscella'),(65701,'Paul Zbyszewski'),(65702,'Kent Alterman'),(65703,'Lee Gottsegen'),(65704,'Andrew Lowery'),(65705,'Dr. Seuss'),(65706,'Gregg Taylor'),(65707,'Eveleen Bandy'),(65708,'Harold G. Moore'),(65709,'Stephen Zapotoczny'),(65710,'Michael T. Boyd'),(65711,'Gary Fettis'),(65715,'Robert Bagnell'),(65716,'Josh Daugherty'),(65717,'Jon Hamm'),(65719,'Erik MacArthur'),(65720,'Mark McCracken'),(65721,'Joseph L. Galloway'),(65722,'Danielle Lemmon Zapotoczny'),(65723,'John Katzenbach'),(65724,'Patricia Graf'),(65725,'Patrick Cassidy'),(65726,'Maury Sterling'),(65727,'Sam Jaeger'),(65728,'Scott Michael Campbell'),(65729,'Sebastian Tillinger'),(65730,'Rick Ravanello'),(65731,'Sam Worthington'),(65732,'Brad Hunt'),(65733,'Ru00faaidhru00ed Conroy'),(65734,'Luke Greenfield'),(65735,'Marc Sternberg'),(65736,'Traci Kirshbaum'),(65738,'Brian Kolodziej'),(65739,'Sung-Hi Lee'),(65740,'Donna Bullock'),(65741,'Brandon Iron'),(65742,'Ulysses Lee'),(65743,'Jacob Young'),(65744,'Harris Laskawy'),(65745,'Julie Osburn'),(65746,'Laird Stuart'),(65747,'Dane Garretson'),(65748,'Richard Fancy'),(65749,'Catherine McGoohan'),(65752,'Janis Rothbard Chaskin'),(65753,'Richard Saperstein'),(65754,'Beth Kushnick'),(65755,'Mindy Roffman'),(65756,'Melissa Errico'),(65757,'Daniel Henson'),(65758,'Stephen Joffe'),(65759,'Jack McCormack'),(65760,'Marin Hinkle'),(65761,'Richard Sali'),(65762,'Jordan Bridges'),(65763,'Jessica Meyer'),(65764,'Kirsten Bishop'),(65765,'Rocco Sisto'),(65769,'Bryce Johnson'),(65771,'Dean McDermott'),(65772,'Shaun Sipos'),(65779,'Doug Jung'),(65780,'Scott Bernstein'),(65782,'Eberhard Kayser'),(65797,'Catherine Dent'),(65800,'James Hutson'),(65802,'Chris Kelly'),(65808,'Fulvio Cecere'),(65811,'Brent Chapman'),(65812,'Michael N. Wong'),(65814,'Barry Brooker'),(65816,'David Hillary'),(65817,'Chris Fisher'),(65822,'Richard Middleton'),(65823,'Timothy Wayne Peternel'),(65824,'Thomas Betts'),(65826,'Frank Alvarez'),(65827,'Keith David'),(65829,'Wood Harris'),(65831,'Robert LaSardo'),(65834,'Anthony R. Stabley'),(65838,'Jeremy Sumpter'),(65839,'Rebecca Spikings'),(65840,'Tuomas Kantelinen'),(65844,'Nikos Kazantzakis'),(65845,'Helen Beadleston'),(65846,'Fran Lucci'),(65847,'Lisa Tornell'),(65848,'Ju00f6rn-Uwe Fahrenkrog-Petersen'),(65849,'Robert Frazen'),(65850,'Carolyn Saxon'),(65851,'John Clements'),(65855,'Ralph Zondag'),(65856,'Eric Leighton'),(65857,'Pam Marsden'),(65858,'Baker Bloodworth'),(65864,'Ian Aspinall'),(65865,'Damien O\'Donnell'),(65866,'Ayub Khan-Din'),(65867,'Deborah Mollison'),(65871,'Amanda Schull'),(65872,'Carol Heikkinen'),(65884,'Nicholas Wayman-Harris'),(65885,'Miles Anderson'),(65896,'Takis Emmanuel'),(65907,'Linda Kaye'),(65908,'Stevo Polyi'),(65913,'M. Blair Breard'),(65914,'Momita Sengupta'),(65915,'Doug Abel'),(65916,'Amy Beth Silver'),(65917,'Amanda Sanders'),(65918,'Dave Becky'),(65919,'Lance Crouther'),(65920,'J.B. Smoove'),(65921,'Mario Joyner'),(65922,'Cathy Trien'),(65923,'Dave Attell'),(65924,'Christopher Wynkoop'),(65925,'Rick Shapiro'),(65926,'Qiana Drew'),(65927,'Lorria Richards'),(65928,'J.D. Williams'),(65929,'Tara Jeffers'),(65930,'Cole Hawkins'),(65934,'Vincent Kok'),(65937,'Jussi Tegelman'),(65952,'Jude Poyer'),(65966,'Kent Cheng'),(65975,'Yuen Cheung-Yan'),(65993,'William Wu Wai-Lap'),(66005,'William Fung Kwun-Man'),(66022,'Pascal Arnold'),(66026,'Mimi Lempicka'),(66027,'Sergej Trifunoviu0107'),(66030,'Irina Deu010dermiu0107'),(66032,'Philippe Duquesne'),(66035,'Maurice Leblond'),(66039,'Damon Santostefano'),(66040,'Rodney Patrick Vaccaro'),(66042,'Billie Letts'),(66052,'Clarence Hui'),(66053,'Peter Kam'),(66054,'Raymond Lam'),(66055,'Richard Norton'),(66056,'Miki Lee'),(66057,'Damon \'Grease\' Blackman'),(66064,'Rosalind Wiseman'),(66069,'Daoud Heidami'),(66070,'Dave Matthews'),(66071,'Charlotte Rae'),(66072,'Michael Buffer'),(66073,'Ido Mosseri'),(66078,'Franu00e7ois Ruggieri'),(66085,'Carol Doyle'),(66086,'Mary Agnes Donoghue'),(66088,'Ronald F. Maxwell'),(66089,'Moctesuma Esparza'),(66094,'Annie Golden'),(66100,'Galt MacDermot'),(66101,'Michael Boatman'),(66106,'Catherine Ryan Hyde'),(66107,'John Murray'),(66108,'Paul Kurta'),(66116,'Mark Brown'),(66117,'Don D. Scott'),(66118,'Marshall Todd'),(66119,'Larry Kennar'),(66120,'Robert Teitel'),(66121,'George Tillman, Jr.'),(66122,'Alfred Cheung Kin-Ting'),(66125,'Bey Logan'),(66129,'George Faber'),(66130,'Charles Pattinson'),(66131,'Tracey Cherelle Jones'),(66133,'Dan Genetti'),(66137,'Ronna B. Wallace'),(66142,'Kenneth Wannberg'),(66143,'Cristiu00e1n de la Fuente'),(66145,'Darius McCrary'),(66147,'Arly Jover'),(66148,'Javier Grajeda'),(66152,'Takehiro Murata'),(66153,'Naomi Nishida'),(66154,'Mayu Suzuki'),(66155,'Hiroshi Abe'),(66156,'Hiroshi Kashiwabara'),(66157,'Takayuki Hattori'),(66158,'Katsuhiro Kato'),(66159,'Yoshiyuki Okuhara'),(66160,'Twink Caplan'),(66167,'William C. Carruth'),(66168,'Ruby Yang'),(66169,'Gu Chang-Wei'),(66174,'Wayne Allan Rice'),(66185,'Matthias Deyle'),(66189,'Stanley Weiser'),(66190,'Tony Bancroft'),(66191,'Barry Cook'),(66193,'Chris Sanders'),(66194,'Raymond Singer'),(66195,'Eugenia Bostwick-Singer'),(66199,'Stacey Nelkin'),(66200,'Michael Currie'),(66201,'Ralph Strait'),(66202,'Nigel Kneale'),(66203,'Moustapha Akkad'),(66204,'Millie Moore'),(66209,'Bob Osher'),(66210,'Luis Colina'),(66211,'Jason Filardi'),(66216,'James Mitchell'),(66218,'Jennifer Flackett'),(66219,'Mark Levin'),(66222,'James Fargo'),(66225,'Evan C. Kim'),(66226,'Buddy Van Horn'),(66228,'Karim Hussain'),(66233,'Ilona Elkin'),(66250,'James Larkin'),(66251,'Bruce Sharman'),(66252,'Bruno Campos'),(66257,'Owen Kline'),(66258,'Jim Burnstein'),(66259,'Britta Phillips'),(66260,'Dean Wareham'),(66261,'Tim Streeto'),(66262,'Reverge Anselmo'),(66263,'Miranda Bailey'),(66264,'Andrew Lauren'),(66265,'Jennifer Roth'),(66266,'Mike Mignola'),(66268,'Ladislav Beran'),(66269,'Biddy Hodson'),(66271,'Claude Agostini'),(66274,'Richard Tuggle'),(66280,'J. Campbell Bruce'),(66283,'Allen E. Smith'),(66284,'Edward J. McDonald'),(66288,'Roberts Blossom'),(66293,'Bruce M. Fischer'),(66294,'Frank Ronzio'),(66295,'Fred Stuthman'),(66296,'David Cryer'),(66297,'Madison Arnold'),(66298,'Blair Burrows'),(66299,'Bob Balhatchet'),(66300,'Matthew Locricchio'),(66301,'Don Michaelian'),(66302,'Ray K. Goman'),(66303,'Ed Vasgersian'),(66304,'Jason Ronard'),(66305,'Ron Vernan'),(66431,'Jodie Whittaker'),(66441,'Talulah Riley'),(66442,'Tamsin Egerton'),(66443,'Amara Karan'),(66444,'Antonia Bernath'),(66446,'Lucy Punch'),(66485,'Robert Bauer'),(66486,'Jeff Rose'),(66488,'Todd King'),(66489,'Andrew Hollander'),(66490,'Brigitte Mueller'),(66491,'Ramsey Avery'),(66492,'Michael Roiff'),(66493,'Sunday Boling'),(66494,'Ariyela Wald-Cohain'),(66495,'Jason Baldwin Stewart'),(66496,'Adrienne Shelly'),(66497,'Darby Stanchfield'),(66498,'Heidi Sulzman'),(66499,'Lauri Johnson'),(66500,'Sarah Hunley'),(66501,'Cindy Drummond'),(66502,'Nathan Dean'),(66503,'Caroline Fogarty'),(66504,'Jennifer Walsh'),(66505,'Hunter A. King'),(66506,'Mackenzie King'),(66507,'Donna Leslie'),(66510,'John Aboud'),(66511,'Michael Colton'),(66512,'Tom Brady'),(66513,'Jeffrey Harlacker'),(66514,'Adam Jay Epstein'),(66515,'Adam F. Goldberg'),(66517,'Andrew Jacobson'),(66518,'Marty Eli Schwartz'),(66519,'Alan Edward Bell'),(66521,'Douglas Cumming'),(66523,'George Back'),(66524,'Noureen DeWulf'),(66525,'Jesse Garcia'),(66526,'Jackie Long'),(66527,'Martin Spanjers'),(66528,'Finesse Mitchell'),(66529,'Chad Gomez Creasey'),(66530,'Dara Resnik Creasey'),(66531,'Clifford Werber'),(66532,'Mark Garner'),(66533,'Shawn McFall'),(66534,'Beverly Safier'),(66535,'Andrew White'),(66536,'Jack Carpenter'),(66537,'Crystal Hunt'),(66538,'Adam Hendershott'),(66539,'Libby Mintz'),(66540,'Arnie Pantoja'),(66541,'Dontu00e9 Bonner'),(66542,'Brian Patrick Clarke'),(66543,'Cree Ivey'),(66545,'Lisandra Vazquez'),(66546,'Chris Carberg'),(66547,'Kierstin Koppel'),(66548,'Paul Weiland'),(66549,'Adam Sztykiel'),(66551,'Rebecca Hale'),(66552,'John Bush'),(66554,'Kadeem Hardison'),(66555,'Whitney Cummings'),(66556,'Emily Nelson'),(66557,'Selma Stern'),(66558,'Christine Barger'),(66559,'Lilly McDowell'),(66560,'Craig Susser'),(66561,'Corinne Reilly'),(66563,'Fred Wolf'),(66564,'Harris Goldberg'),(66565,'Jay Leggett'),(66566,'Tom Nursall'),(66567,'Andrew Haas'),(66568,'Lynsey Jones'),(66569,'Denise Hudson'),(66571,'Mitch Rouse'),(66573,'Jarred Rumbold'),(66574,'Andrew Hampton'),(66575,'Carl Snell'),(66576,'Nadine Bernecker'),(66577,'Danielle Cormack'),(66578,'David Stott'),(66579,'Bonnie Somerville'),(66580,'Scott Adsit'),(66581,'Morgan Reese Fairhead'),(66582,'Mia Blake'),(66583,'Kate Harcourt'),(66584,'Liddy Holloway'),(66585,'Gregory Cruz'),(66586,'Mariah Carey'),(66587,'Max Beesley'),(66593,'Amy Hobby'),(66594,'Andrew Fierberg'),(66598,'Kate Lanier'),(66599,'Ross Klavan'),(66604,'Joe Charbanic'),(66605,'Todd Solondz'),(66606,'George Wendt'),(66613,'Leueen Willoughby'),(66623,'Hayley Marie Norman'),(66630,'Alexa Havins'),(66632,'Vincent Ngo'),(66633,'Vince Gilligan'),(66634,'David Mattey'),(66636,'Valerie Azlynn'),(66637,'Lily Mariye'),(66641,'Franco Di Giacomo'),(66645,'Cary Guffey'),(66646,'Atticus Shaffer'),(66650,'Rio Ahn'),(66652,'Adam Del Rio'),(66653,'Gregg Daniel'),(66654,'Kevin Donovan'),(66657,'Allan Havey'),(66658,'Jae Head'),(66659,'Ryan Radis'),(66660,'Mark Simich'),(66661,'Ron Fassler'),(66663,'Bryan Keith Ponton'),(66664,'Algerita Wynn Lewis'),(66666,'Samantha Cannon'),(66667,'Scott Michael Morgan'),(66668,'Steve DeCastro'),(66669,'Brandon Ford Green'),(66671,'Chris Mitchell'),(66675,'Luis Bacalov'),(66678,'Carson Aune'),(66680,'Rick Mali'),(66681,'Matt Bettinelli-Olpin'),(66683,'Rico Devereaux'),(66684,'Johnathan Hallgrey'),(66685,'Edward M. Kelahan'),(66686,'Dawn Ressy'),(66687,'Nicholas Rich'),(66688,'William Hawkins'),(66689,'Dawn Swiderski'),(66690,'Pierce Austin'),(66691,'Richard De Alba'),(66692,'Kathrine Gordon'),(66693,'Richard Redlefsen'),(66696,'Daren Hicks'),(66700,'Will Young'),(66701,'David Rose'),(66702,'Kathy Rose'),(66703,'Martin Sherman'),(66704,'Frank Hannah'),(66705,'Robert Gryphon'),(66706,'Joe Madden'),(66707,'Brett Morrison'),(66708,'Michael A. Pierce'),(66709,'Gary Goch'),(66710,'Harold Greenberg'),(66711,'Melvin Simon'),(66712,'Wesley Addy'),(66713,'Arthur Burghardt'),(66714,'Howard Gottfried'),(66715,'Elliot Lawrence'),(66716,'Pierre Hanin'),(66717,'Anthony Wong'),(66718,'Alan Mak'),(66719,'Felix Chong'),(66721,'Justin Haythe'),(66722,'Edward Bass'),(66723,'Daniel Grodnik'),(66724,'Michelle Krumm'),(66725,'Matt Landon'),(66726,'Michel Litvak'),(66727,'Gary Michael Walters'),(66728,'Jonathan Glazer'),(66729,'Lizie Gower'),(66730,'Xavier Marchand'),(66731,'Nick Morris'),(66732,'Sam Sneade'),(66733,'Benny Medina'),(66739,'Jonathan Liebesman'),(66740,'Jonathan Chibnall'),(66741,'Taylor Handley'),(66743,'Matt Bomer'),(66744,'Chaney Kley'),(66745,'Emma Caulfield'),(66746,'Grant Piro'),(66747,'Joe Harris'),(66748,'John Hegeman'),(66749,'John F. O\'Donohue'),(66750,'Colin Mochrie'),(66754,'Larry DeWaay'),(66755,'Rusty Lemorande'),(66756,'Ross Albert'),(66758,'Ray Harryhausen'),(66761,'Leon Lai'),(66762,'Charlie Yeung'),(66769,'Nansun Shi'),(66774,'Chun Tin-Nam'),(66776,'Liza Minnelli'),(66777,'Bob Fosse'),(66779,'Christopher Isherwood'),(66786,'Ronnie Barker'),(66787,'James Goldman'),(66791,'Anastasia Hille'),(66792,'Valentin Ganev'),(66800,'Morgan J. Freeman'),(66803,'Vanja Cernjul'),(66804,'Gregory Hines'),(66807,'Rupert Hitzig'),(66808,'Marshall M. Borden'),(66810,'Dennis Dolan'),(66811,'David Huffman'),(66812,'Craig Thomas'),(66813,'Robert Swenson'),(66821,'Jon Berg'),(66822,'Julie Wixson Darmody'),(66823,'Joseph Kahn'),(66824,'Matt Johnson'),(66825,'David Blackburn'),(66838,'Florence Thomassin'),(66840,'Alain Attal'),(66841,'Mathieu Chedid'),(66842,'Christophe Offenstein'),(66856,'Guillaume Ivernel'),(66857,'Arthur Qwak'),(66858,'Fru00e9du00e9ric Lenoir'),(66861,'Andrew Colton'),(66865,'Tilo Seiffert'),(66866,'Philippe Delarue'),(66869,'Soline Guyonneau'),(66872,'Amanda Lear'),(66876,'Charles Evans'),(66877,'Rena Riffel'),(66878,'William F. Nolan'),(66879,'Kresten Vestbjerg Andersen'),(66880,'Thorbju00f8rn Christoffersen'),(66881,'Finola Hughes'),(66896,'Raven-Symonu00e9'),(66897,'Christopher DeFaria'),(66898,'Rick Finney'),(66907,'Raju Patel'),(66910,'Tracy Brimm'),(66911,'Jody Patton'),(66912,'Eric Robison'),(66913,'Flora Martu00ednez'),(66918,'Alexander Jacobs'),(66921,'Heidi Santelli'),(66934,'Steve Adams'),(66941,'J.A.C. Redford'),(66942,'Holger Tappe'),(66943,'Oliver Huzly'),(66960,'Dennie Gordon'),(66961,'William Douglas-Home'),(66962,'Jenny Bicks'),(66963,'Alison Greenspan'),(66983,'Tom Kalin'),(66984,'Juan Miguel Azpiroz'),(66985,'John F. Lyons'),(66986,'John Franklin'),(66994,'David Gianopoulos'),(67010,'Branko Samarovski'),(67015,'Michael Gross'),(67028,'Hugh Fraser'),(67034,'Robert Dunn'),(67052,'Macarena Gu00f3mez'),(67054,'H.P. Lovecraft'),(67059,'Grant Swanby'),(67064,'Walter Kelley'),(67070,'Herman Osorio'),(67077,'Ku00f4ji Hoshino'),(67078,'Toshiaki Nakazawa'),(67094,'J.E. Beaucaire'),(67095,'Jessica Lanier'),(67096,'Sam Josepher'),(67097,'Lawrence Howard Levy'),(67098,'Diane Bradley'),(67099,'Crystal Field'),(67100,'Cindy Carver'),(67101,'Olivia Hayman'),(67102,'Laurine Towler'),(67103,'Fanda Nikic'),(67104,'Dana Tyler'),(67105,'Steve Kroft'),(67106,'Robert Sarkies'),(67107,'Bill O\'Brien'),(67109,'Graeme Tetley'),(67110,'Steven O\'Meagher'),(67111,'Tim White'),(67112,'Victoria Kelly'),(67113,'Greig Fraser'),(67114,'David Kolff'),(67115,'Ken Turner'),(67116,'Lesley Burkes-Harding'),(67117,'Rachael Bullock'),(67118,'Annie Collins'),(67119,'Matthew Sunderland'),(67120,'Lois Lawn'),(67121,'Simon Ferry'),(67122,'Paul Glover'),(67123,'William Kircher'),(67124,'Georgia Fabish'),(67125,'Fayth Rasmussen'),(67126,'Timothy Bartlett'),(67127,'Tony Bishop'),(67128,'Baxter Cannell'),(67129,'Murray Davidson'),(67130,'Dave Dudfield'),(67131,'Nick Duval-Smith'),(67132,'Natalie Ellis'),(67133,'Fatu Ioane'),(67134,'Richard Knowles'),(67135,'Thomas Lee-Batley'),(67145,'Abdelhafid Metalsi'),(67147,'Israel Aduramo'),(67153,'David Tristan Birkin'),(67157,'Jonathan Bross'),(67160,'Steve Adcock'),(67175,'Luisa De Santis'),(67179,'Richard Fire'),(67201,'Ian Differ'),(67202,'Grant Armstrong'),(67203,'Sam Stokes'),(67204,'Anna Lynch-Robinson'),(67205,'Terence Maynard'),(67206,'Andrew Howard'),(67209,'Faruk Pruti'),(67212,'Tom Wu'),(67233,'Jack Gilardi Jr.'),(67238,'Emil Topuzov'),(67240,'Carlos Silva Da Silva'),(67242,'Sonya Savova'),(67246,'George Zlatarev'),(67247,'Atanas Srebrev'),(67259,'Ching Siu-Tung'),(67265,'Lucio Godoy'),(67274,'Dolly Parton'),(67316,'Masayuki Ochiai'),(67317,'Luke Dawson'),(67318,'Megumi Okina'),(67324,'Fabio Zamarion'),(67330,'Hartmut Teschemacher'),(67345,'Fadi Abi Samra'),(67349,'Harry Keller'),(67350,'Eva Ruggiero'),(67351,'Brent Roam'),(67354,'Hank Nelken'),(67355,'Heather Rae'),(67356,'Reed Morano'),(67357,'Toby Yates'),(67358,'Jeff Buhler'),(67360,'Maya Forbes'),(67361,'Marius Balchunas'),(67362,'Eric Koskin'),(67364,'Scott Sturgeon'),(67365,'John Veague'),(67366,'Debra Goldfield'),(67367,'Rian Johnson'),(67369,'Don Brodie'),(67370,'Frankie Darro'),(67371,'Dickie Jones'),(67372,'Collodi'),(67373,'William Cottrell'),(67374,'Joseph Sabo'),(67375,'Aurelius Battaglia'),(67376,'Greg DePaul'),(67378,'Travis Tedford'),(67390,'Deborah Jelin Newmyer'),(67392,'Samuel E. Wright'),(67393,'Buddy Hackett'),(67395,'Temple Mathews'),(67397,'Danny Troob'),(67405,'Doug Wright'),(67406,'John Westermann'),(67422,'Peter Jordan'),(67428,'Seton I. Miller'),(67433,'Ross A. Maehl'),(67447,'Anthony Veiller'),(67450,'Alistair MacLean'),(67453,'Danso Gordon'),(67454,'Bo Ehrhardt'),(67465,'Alex Marshall'),(67481,'Philip Roth'),(67484,'Ashley Edward Miller'),(67485,'Zack Stentz'),(67487,'Jennifer Birchfield-Eick'),(67488,'Kerry David'),(67489,'Danny Gold'),(67490,'Tom Fox'),(67491,'Matt Clifford'),(67492,'Jules Brenner'),(67506,'Steven Katz'),(67507,'Dan Jones'),(67513,'Shirley Stoler'),(67519,'Ashlyn Gere'),(67520,'William S. Taylor'),(67521,'Kari Sylwan'),(67522,'Siv Lundgren'),(67524,'Leo Rossi'),(67532,'Mu00e9lanie Doutey'),(67533,'Caroline Eliacheff'),(67534,'Louise L. Lambrichs'),(67535,'Yvon Crenn'),(67538,'Jessica Bowman'),(67539,'Clay Tarver'),(67557,'Frances Mayes'),(67559,'Sandy Kroopf'),(67560,'Todd E. Miller'),(67561,'Joann Carelli'),(67567,'Christopher Cazenove'),(67569,'Steven M. Martin'),(67578,'Billy Dickson'),(67579,'Edward Edwards'),(67580,'Nick Damici'),(67581,'Heather Litteer'),(67582,'Susanna Moore'),(67583,'Stavros Kazantzidis'),(67584,'Effie Brown'),(67596,'Richard Brooks Burton'),(67599,'Vanessa Hudgens'),(67600,'Ashley Tisdale'),(67601,'Lucas Grabeel'),(67602,'Corbin Bleu'),(67603,'Barry Rosenbush'),(67619,'Guy Green'),(67628,'Joe Hale'),(67630,'Roy Edward Disney'),(67653,'Henry M. Lebo'),(67662,'Jaron Presant'),(67674,'Rudy De Luca'),(67675,'Michael Hertzberg'),(67676,'Kenneth More'),(67682,'Dorothy Aufiero'),(67683,'Michael Williams'),(67684,'Climax Golden Twins'),(67691,'Bob Thompson'),(67695,'Paul Rabjohns'),(67702,'Lina Todd'),(67704,'Hugh Dillon'),(67711,'French Stewart'),(67712,'Josh Strait'),(67713,'Kent Nolan'),(67717,'Michel Hazanavicius'),(67737,'Tuva Novotny'),(67747,'Uwe Mansshardt'),(67749,'Nohuhiko Sakotu'),(67750,'Liliana Cavani'),(67751,'Kristine Johnson'),(67752,'James Dearden'),(67753,'Mark L. Lester'),(67754,'Michael Berry'),(67755,'John Blumenthal'),(67758,'Michael Chabon'),(67759,'Basil Iwanyk'),(67760,'Oliver Sacks'),(67764,'Jerry Reed'),(67767,'Hal Needham'),(67773,'Steve Martin'),(67774,'Frank B. Gilbreth Jr.'),(67775,'Ernestine Gilbreth Carey'),(67776,'Craig Titley'),(67778,'Jonathan Lipnicki'),(67779,'E.B. White'),(67781,'Peter Kosminsky'),(67782,'Janet Fitch'),(67784,'Ross Bickell'),(67795,'Steven Shainberg'),(67796,'Erin Cressida Wilson'),(67800,'Douglas Preston'),(67801,'Lincoln Child'),(67802,'Rick Jaffa'),(67803,'Amanda Silver'),(67805,'Claudia Stedelin'),(67808,'Mel Efros'),(67809,'Fitch Cady'),(67810,'John Gilroy'),(67813,'Baltasar Kormu00e1kur'),(67817,'Alexander Pollock'),(67826,'Johann Sebastian Bach'),(67830,'Veronica Taylor'),(67832,'Rachael Lillis'),(67833,'Eric Stuart'),(67834,'Floyd Mutrux'),(67837,'Jacki Weaver'),(67838,'Marianne Hagan'),(67843,'Lloyd Adams'),(67844,'Lina Giornofelice'),(67846,'Nancy Richardson'),(67848,'Ashley Olsen'),(67849,'Mary-Kate Olsen'),(67850,'Riley Smith'),(67851,'Emily Fox'),(67852,'Robert Thorne'),(67853,'Roderick Davis'),(67854,'Remy Sweeney'),(67855,'Alexi Hawley'),(67865,'Kim Secrist'),(67877,'George Litto'),(67882,'Marne Maitland'),(67887,'Jan Sardi'),(67896,'Doug McHenry'),(67897,'Jeff Kanew'),(67905,'Dorothu00e9e Berryman'),(67906,'Dominique Michel'),(67907,'Pierre Aviat'),(67909,'Tom Savage'),(67910,'David Atkins'),(67913,'Henry Simmons'),(67914,'Ira Shuman'),(67915,'Vance Burberry'),(67931,'Daft Punk'),(67937,'Paul Greco'),(67955,'Fernando de Felipe'),(67964,'Gu00e9rard Pollicand'),(67966,'David Kendall'),(67975,'Jon Feltheimer'),(67976,'Sean O\'Keefe'),(67978,'Ona Grauer'),(67979,'Michael Eklund'),(67982,'Daniel S. Kletzky'),(67994,'Julie Ansell'),(67996,'Andre Dubus III'),(67997,'Shawn Lawrence Otto'),(67999,'Stewart Till'),(68000,'Colleen Haskell'),(68006,'Ari Schlossberg'),(68007,'Barney McAll'),(68016,'Kevin Kaska'),(68024,'Rim Turkhi'),(68030,'Kit-Wai Kai'),(68039,'David Loucka'),(68040,'Keith Mitchell'),(68046,'Anna Keaveney'),(68047,'Andrew Dickson'),(68056,'Michel Voletti'),(68074,'Makoto Ueda'),(68082,'Michael Sloane'),(68091,'Cleavon Little'),(68108,'Chris Gartin'),(68109,'Sheila Kelley'),(68112,'Satoshi Fukushima'),(68122,'Tim Daly'),(68124,'Nick Thiel'),(68127,'Bonnie Koehler'),(68128,'Frederick Loewe'),(68137,'Irwin Kostal'),(68166,'Iaia Forte'),(68170,'Tom Harting'),(68172,'Frank Zito'),(68179,'Maria Mason'),(68180,'Gary Grubbs'),(68185,'Eric Schaeffer'),(68186,'Dominic Chianese'),(68187,'Emily Hart'),(68188,'Amanda Kravat'),(68191,'Franu00e7ois Chauvaud'),(68208,'Jay Scherick'),(68210,'Ken Lipper'),(68211,'John Corso'),(68212,'Carroll Ballard'),(68215,'Reginald Hudlin'),(68216,'Brad Kaaya'),(68217,'Eric Gitter'),(68218,'Lisa Gitter'),(68219,'Russell Lee Fine'),(68220,'Kate Sanford'),(68223,'David Roberson'),(68224,'Liz May Brice'),(68225,'Beth Toussaint'),(68226,'Troy Neighbors'),(68227,'Steven Feinberg'),(68228,'David Venable'),(68229,'Terry Curtis Fox'),(68276,'Jolene Blalock'),(68277,'Christina Cabot'),(68278,'Peter Mensah'),(68281,'Justin Kerrigan'),(68283,'Emer McCourt'),(68284,'Lorraine Pilkington'),(68286,'Nicola Reynolds'),(68287,'Callum Blue'),(68293,'Dyan Sheldon'),(68294,'Gail Parent'),(68295,'Anita Brandt-Burgoyne'),(68301,'Will Sampson'),(68307,'Luke Mably'),(68308,'Katherine Fugate'),(68309,'Robin Schorr'),(68310,'Cami Winikoff'),(68317,'Lyse Lafontaine'),(68319,'Robert Harling'),(68320,'Mark Gill'),(68321,'Michael Carman'),(68330,'Ottaviano Dell\'Acqua'),(68333,'Gavin Finney'),(68334,'James Spring'),(68350,'Claudia Gladziejewski'),(68351,'Monika Lobkowicz'),(68352,'Carter Smith'),(68358,'Louis Febre'),(68378,'Jonathan Brett'),(68384,'Claire Rushbrook'),(68389,'Grace Loh'),(68390,'Marc Frydman'),(68391,'Phillip Goldfarb'),(68392,'Joe Klotz'),(68393,'Ron Rosen'),(68394,'Doug Dearth'),(68401,'Michael Hammer'),(68402,'Barry Navidi'),(68403,'James Simpson'),(68404,'Manfred Wilde'),(68406,'Salvo Randone'),(68411,'Su00f4 Yamamura'),(68412,'Toshio Masuda'),(68413,'Ladislas Farago'),(68414,'Larry Forrester'),(68415,'Gordon W. Prange'),(68416,'Shinya Inoue'),(68417,'James E. Newcom'),(68425,'Leo Marks'),(68430,'Tia Texada'),(68432,'Jamie Linden'),(68435,'Jeanne Allgood'),(68436,'Gregg London'),(68437,'Adam Schlesinger'),(68441,'Steve Gainer'),(68447,'Bo Greigh'),(68455,'Jerry Nelson'),(68456,'Richard Hunt'),(68457,'James Frawley'),(68458,'Jack Burns'),(68459,'Isidore Mankofsky'),(68463,'Barbara Ford'),(68488,'Bobby Rock'),(68493,'Marvin Worth'),(68494,'Justin Whalin'),(68495,'Perrey Reeves'),(68515,'Vladimir Garin'),(68517,'Konstantin Lavronenko'),(68518,'Nataliya Vdovina'),(68519,'Andrey Zvyagintsev'),(68520,'Vladimir Moiseyenko'),(68522,'Yelena Kovalyova'),(68523,'Dmitry Lesnevsky'),(68524,'Andrei Dergachyov'),(68525,'Mikhail Krichman'),(68526,'Vladimir Mogilevsky'),(68527,'William R. Moses'),(68528,'Adam Storke'),(68529,'Mark Levinson'),(68530,'Scott M. Rosenfelt'),(68531,'David McHugh'),(68534,'Brendan Mackey'),(68535,'Nicholas Aaron'),(68536,'Richard Hawking'),(68537,'Ollie Ryall'),(68538,'Joe Simpson'),(68539,'Simon Yates'),(68540,'Charles Furneaux'),(68541,'Robin Gutch'),(68542,'John Smithson'),(68543,'Mike Eley'),(68559,'Gary Daniels'),(68568,'Jan Guillou'),(68569,'Hans Gunnarsson'),(68573,'Walt Becker'),(68574,'Brad Copeland'),(68583,'Omar N. Bradley'),(68584,'Oliver Lu00fcer'),(68600,'Florian Tessloff'),(68602,'Tom Rosenberg'),(68603,'Richard Glover'),(68605,'Sarah Nettinga'),(68609,'Solange Knowles'),(68614,'Tod Scott Brody'),(68615,'Gregg Featherman'),(68634,'Tanja Reichert'),(68636,'Ryan Folsey'),(68642,'Mildred Dunnock'),(68643,'Jerry Mathers'),(68644,'Jack Trevor Story'),(68645,'Alma Macrorie'),(68651,'Robin Cook'),(68653,'Claire Du Brey'),(68672,'Wolfgang Bodison'),(68681,'Paul Koslo'),(68683,'John William Corrington'),(68684,'Joyce Hooper Corrington'),(68691,'Ori Marmur'),(68692,'Timothy J. Nicholas'),(68693,'Peter E. Strauss'),(68694,'John Claflin'),(68695,'Daniel Zelman'),(68696,'Jacobus Rose'),(68697,'Nerida Tyson-Chew'),(68699,'Mark McCorkle'),(68700,'Bob Schooley'),(68704,'Naoto Takenaka'),(68718,'Gordon Warnecke'),(68719,'Derrick Branche'),(68720,'Hanif Kureishi'),(68721,'Ludus Tonalis'),(68722,'Maurice Chevit'),(68740,'Patricia Cullen'),(68748,'Michael O\'Farrell'),(68750,'Robert Townsend'),(68751,'Marla Gibbs'),(68754,'Loretha C. Jones'),(68755,'Adam Bernardi'),(68758,'Kevin Bernhardt'),(68763,'Dean Winters'),(68768,'Anthony Adler'),(68769,'Julie Gonzalo'),(68770,'Mark Rosman'),(68771,'Leigh Dunlap'),(68772,'Keith Giglio'),(68773,'Ilyssa Goodman'),(68775,'Ron Hutchinson'),(68777,'Ilinca Nanoveanu'),(68794,'Toby Froud'),(68802,'Meir Teper'),(68810,'Amnon David'),(68812,'Ed Asner'),(68833,'Bill Corbett'),(68836,'Pat Kilbane'),(68837,'Austyn Myers'),(68841,'Skip Schoolnik'),(68842,'John Cho'),(68843,'Jon Hurwitz'),(68844,'Hayden Schlossberg'),(68845,'David Brewington'),(68846,'Luke Ryan'),(68847,'Christianna Brand'),(68848,'Lisa Zane'),(68849,'Shon Greenblatt'),(68850,'Lezlie Deane'),(68851,'Ricky Dean Logan'),(68863,'Dana Belben'),(68890,'Tatum O\'Neal'),(68896,'Liccy Dahl'),(68903,'Hwang Jung-min'),(68909,'Kyung-Pyo Hong'),(68912,'Gary Brandner'),(68913,'Terence H. Winkless'),(68914,'Jack Conrad'),(68926,'George \'Red\' Schwartz'),(68927,'Leib Lensky'),(68934,'Carlos Montalbu00e1n'),(68935,'Nati Abascal'),(68936,'Mickey Rose'),(68937,'Axel Anderson'),(68938,'Antonio Encarnacion'),(68939,'Jack Grossberg'),(68940,'Manolo Villamil'),(68941,'Andrew M. Costikyan'),(68942,'Ron Kalish'),(68994,'Ron Fricke'),(69000,'Ray Corbett'),(69003,'John Lounsbery'),(69010,'Brad Davis'),(69018,'Anne u00d8sterud'),(69026,'Harry Bellaver'),(69033,'Vivian Wu'),(69036,'Christian De Sica'),(69045,'Aristides McGarry'),(69049,'Eric Van Haren Noman'),(69054,'Brooke Adams'),(69055,'Jessica Harper'),(69056,'Stacey Pickren'),(69068,'Gianfranco Barra'),(69074,'Craig Johnson'),(69077,'Nathan Johnson'),(69085,'Dalparan'),(69093,'Greg Tillman'),(69098,'Catherine Oxenberg'),(69099,'Dan Ireland'),(69101,'Stanislas Syrewicz'),(69104,'James R. Webb'),(69119,'Garikayi Mutambirwa'),(69120,'Eric Nenninger'),(69121,'Frederick Hazlitt Brennan'),(69122,'Heather Graham'),(69124,'Abby Kohn'),(69125,'Marc Silverstein'),(69127,'Michael Irvin'),(69128,'Nelly'),(69129,'George P. Wilbur'),(69130,'Kathleen Kinmont'),(69133,'Joe Grant'),(69134,'Dick Huemer'),(69139,'Shem Bitterman'),(69140,'Ramsey Thomas'),(69141,'Robert Draper'),(69142,'Jerry Brady'),(69143,'Charles Tetoni'),(69144,'Scott Marshall Smith'),(69145,'Sylvie Bouchard'),(69154,'Robert Souza'),(69156,'Lou Pitt'),(69157,'Dick Beebe'),(69162,'Earl Mac Rauch'),(69163,'Pam Coats'),(69168,'Leonard Farlinger'),(69169,'Brad Smith'),(69170,'Jennifer Jonas'),(69171,'Bill Frisell'),(69172,'Glenn Berman'),(69188,'Franck Keu00efta'),(69189,'Esmeralda Ouertani'),(69190,'Rachel Regulier'),(69191,'Wei Huang'),(69194,'Cherif Bounau00efdja Rachedi'),(69196,'Louise Grinberg'),(69197,'Rabah Nait Oufella'),(69198,'Carl Nanor'),(69199,'Jean-Michel Simonet'),(69200,'Henriette Kasaruhanda'),(69201,'Laura Baquela'),(69209,'Mike Bender'),(69210,'Chyler Leigh'),(69211,'Simon Barry'),(69225,'Q\'orianka Kilcher'),(69226,'Trish Hofmann'),(69227,'Bill Mechanic'),(69228,'Rolf Mittweg'),(69229,'Mark Yoshikawa'),(69230,'Lars Ulrich'),(69231,'Kirk Hammett'),(69233,'Robert Trujillo'),(69237,'Joe Berlinger'),(69246,'Robert Richman'),(69249,'Eddie Byrne'),(69253,'John M. Jacobsen'),(69286,'Stefano Paradiso'),(69298,'Michael McGlone'),(69301,'Hal Scardino'),(69302,'Litefoot'),(69306,'Tom Nunan'),(69310,'Ricardo Daru00edn'),(69316,'Natasha Braier'),(69325,'Frank Heidbrink'),(69342,'Matty Simmons'),(69343,'Ralph Burns'),(69365,'Jeffrey M. Hoffman'),(69371,'Jean-Marc Vallu00e9e'),(69374,'Pierre Even'),(69388,'Kim Sun-min'),(69393,'John Patrick'),(69395,'Bug Hall'),(69399,'Alexandra Holden'),(69405,'Brian Krause'),(69412,'Xavier Capellas'),(69414,'John Linson'),(69415,'Ernie Sabella'),(69420,'Joyce Arrastia'),(69421,'Scott Severance'),(69422,'Jessamy Finet'),(69423,'Maureen Keiller'),(69448,'Michael Henry Brown'),(69450,'Steve Milne'),(69452,'Mark Foligno'),(69465,'Pauline McLynn'),(69471,'Olegar Fedoro'),(69482,'Victoria Davis'),(69483,'Christina Brucato'),(69484,'Siri Howard'),(69485,'Donna L. Bascom'),(69486,'Jill Wisoff'),(69487,'Randy Drummond'),(69489,'Jasmine Trinca'),(69494,'Don Stroud'),(69497,'Hanna Verboom'),(69498,'Mike Bigelow'),(69499,'Jason Ward'),(69500,'Lou Adler'),(69502,'James Lashly'),(69503,'Rebecca Tilney'),(69504,'Debra Mooney'),(69505,'Peter Hargitay'),(69506,'Jeff Cutter'),(69507,'Dee Jay Daniels'),(69508,'Kelly Vitz'),(69509,'Paul Hernandez'),(69510,'Ann Marie Sanderlin'),(69513,'Joan Harrison'),(69526,'Lisa Day'),(69532,'Irina Pantaeva'),(69561,'Hercules Bellville'),(69567,'David Shaber'),(69568,'David Holden'),(69574,'Lexa Doig'),(69575,'Chuck Campbell'),(69576,'Lisa Ryder'),(69579,'James Isaac'),(69585,'Noel Cunningham'),(69586,'Gary Wright'),(69593,'Michael J. Bassett'),(69597,'Drew Barrymore'),(69599,'Frank Capra, Jr.'),(69600,'Edgar Froese'),(69601,'Johannes Schmu00f6lling'),(69613,'John K. Carr'),(69614,'Brad Loree'),(69616,'Bianca Kajlich'),(69617,'Tony Gayton'),(69618,'Butch Robinson'),(69636,'Ti Lung'),(69659,'Robert J. Avrech'),(69660,'Charles Addams'),(69666,'Mark Kasdan'),(69668,'Steve Wizan'),(69669,'Neil Diamond'),(69670,'Patrick J. Don Vito'),(69671,'James Acheson'),(69678,'Michael G. Wilson'),(69681,'Philippe Labro'),(69696,'Daniel Algrant'),(69697,'Jon Robin Baitz'),(69706,'Jean Dorst'),(69707,'Olli Barbu00e9'),(69709,'Uday Chopra'),(69717,'Henry Cline'),(69718,'Jon Cryer'),(69719,'Bruno Barreto'),(69736,'Douglas J. Eboch'),(69737,'C. Jay Cox'),(69739,'Wink Mordaunt'),(69740,'Patrick Renna'),(69741,'David M. Evans'),(69744,'Dale De La Torre'),(69748,'Tristine Skyler'),(69750,'Stephen Barker Turner'),(69764,'Laurence Naismith'),(69767,'Frank E. Taylor'),(69788,'Nicolas Saada'),(69791,'Charles Haid'),(69793,'Eric Jenkins'),(69794,'Freedy Johnston'),(69797,'Dean DeBlois'),(69798,'Clark Spencer'),(69801,'Alan Metter'),(69803,'Randy Pearlstein'),(69804,'Sam Froelich'),(69805,'Ian Jones'),(69806,'Lauren Moews'),(69811,'King Donovan'),(69831,'Chu Tien-Wen'),(69834,'Liao Ching-Song'),(69835,'Mei Fang'),(69841,'Wen-Ying Huang'),(69865,'Jesu00fas Ochoa'),(69868,'Martu00edn Salinas'),(69869,'Federico Gonzu00e1lez Compeu00e1n'),(69870,'Mu00f3nica Lozano'),(69871,'Martha Sosa Elizondo'),(69872,'Eckehardt Von Damm'),(69876,'Carl Kurlander'),(69877,'Thomas L. Miller'),(69878,'Frank Yablans'),(69881,'Paul Brett'),(69882,'Yuri Zeltser'),(69883,'Peter Watson'),(69884,'Mary Gregory'),(69888,'Salah M. Hassanein'),(69889,'Merrie Lynn Ross'),(69890,'John C.W. Saxton'),(69892,'Arthur Kent'),(69895,'Nana Greenwald'),(69896,'Helen Buck Bartlett'),(69898,'Steve Gilson'),(69899,'Zachary Levi'),(69900,'Barry Goldberg'),(69903,'Leslee Udwin'),(69906,'David R. Hardberger'),(69918,'John Shepphird'),(69924,'J. Evan Bonifant'),(69925,'Robbie Kondor'),(69928,'Peter Schink'),(69929,'Ewa J. Lind'),(69932,'Jordan Houston'),(69943,'Benjamin Legrand'),(69948,'William Bowers'),(69951,'Milton Berle'),(69953,'Tania Rose'),(69954,'David Berlatsky'),(69955,'Tony de Zarraga'),(69956,'John Renbourn'),(69957,'Clive Carroll'),(69973,'Piero De Bernardi'),(69979,'Zachary David Cope'),(69987,'Ju00e9ru00f4me Salle'),(70002,'Patamanadda Yukol'),(70031,'Alex Parker'),(70032,'Jake Parker'),(70035,'Maureen O\'Hara'),(70037,'James Warner Bellah'),(70038,'Shirley Jackson'),(70039,'Joe Keenan'),(70041,'Cecil Kramer'),(70042,'Brad Blackbourn'),(70043,'Eric Dapkewicz'),(70044,'S.N. Behrman'),(70045,'Sonya Levien'),(70052,'Claire Rudnick Polstein'),(70053,'Amanda Stern'),(70054,'Steve Dorff'),(70063,'David Reuben'),(70076,'Russell Friedenberg'),(70086,'Matthew Faulk'),(70087,'Mark Skeet'),(70088,'Howard Cohen'),(70089,'Imogene Coca'),(70090,'Colin Leventhal'),(70091,'Bernhard Winkler'),(70097,'Court Crandall'),(70100,'Shinji Aramaki'),(70106,'Nicholas Tse'),(70110,'Alan Yuen'),(70111,'Anthony Pun'),(70113,'William Goodhart'),(70114,'Steven Gary Banks'),(70115,'Claudia Grazioso'),(70117,'Hilary Thompson'),(70118,'Luke Halpin'),(70120,'Masane Tsukayama'),(70121,'Katsuo Nakamura'),(70122,'Manami Konishi'),(70123,'Kiyoshi Kodama'),(70124,'Ikki Sawamura'),(70125,'Shinji Komori'),(70126,'Hideyuki Tomioka'),(70127,'Shinji Kimura'),(70129,'Takao Saitu00f4'),(70130,'Shu00f4ji Ueda'),(70131,'Tatsuya Nakadai'),(70132,'Akira Terao'),(70135,'Dominique Brune'),(70136,'Chantal Colibert Brunner'),(70137,'Dominique Lefever'),(70149,'Georgia Packard'),(70153,'Martin Ontrop'),(70162,'Kenzo Tsujimoto'),(70166,'Steve Kalfa'),(70169,'Kim Jorgensen'),(70172,'Valerie Curtin'),(70175,'Chelah Horsdal'),(70176,'Shaker Paleja'),(70177,'Charlie Rose'),(70189,'Marcia Nasatir'),(70206,'Peter Grunwald'),(70208,'Jean-Yves Le Mener'),(70209,'Yusuke Iseya'),(70216,'Tatsuo Yoshida'),(70221,'Christian Carion'),(70222,'Judith Riviu00e8re Kawa'),(70225,'John Nolan'),(70230,'Jeremy Theobald'),(70233,'Ricki Lake'),(70238,'Chris Williams'),(70240,'Paul A. Felix'),(70243,'Eartha Kitt'),(70244,'Nancy Dowd'),(70250,'Newt Arnold'),(70251,'Mel Friedman'),(70252,'Christopher Cosby'),(70254,'Donald Gibb'),(70255,'Ken Siu'),(70256,'Irving Ong'),(70260,'Dwayne Hickman'),(70278,'Ken Sanzel'),(70287,'Will Finn'),(70301,'Matthew Leutwyler'),(70303,'Zach Gilford'),(70304,'Sarah Jane Morris'),(70305,'Grant Nieporte'),(70306,'Bryan Burrough'),(70323,'Marie-Hu00e9lu00e8ne Dozo'),(70336,'Won Bin'),(70337,'Lee Eun-ju'),(70338,'Gong Hyung-jin'),(70415,'Tony Maylam'),(70417,'Michael Sheard'),(70419,'Ronald Markham'),(70432,'Kwok-fai Yeung'),(70435,'Pak-huen Kwen'),(70436,'Ting Wo Kwong'),(70437,'Ng Man-Tat'),(70440,'Robin Gammell'),(70441,'Janet-Laine Green'),(70445,'Scott Yaphe'),(70454,'Albie Hecht'),(70456,'Emily Browning'),(70476,'Alan Sharp'),(70477,'Richard Jackson'),(70478,'Peter Broughan'),(70496,'Myles Connolly'),(70500,'Tom Hooper'),(70504,'Nigel Williams'),(70506,'Melanie Oliver'),(70517,'Thomas Turgoose'),(70518,'Jo Hartley'),(70519,'Andrew Shim'),(70520,'Shane Meadows'),(70522,'Will Clarke'),(70523,'Hugo Heppell'),(70524,'Mark Herbert'),(70525,'Kate Ogborn'),(70526,'Ludovico Einaudi'),(70532,'Simon Brooks'),(70541,'Evelyn Kennedy'),(70553,'David McIlvain'),(70554,'Alan Pasqua'),(70555,'Ricky Strauss'),(70556,'Ken Olandt'),(70557,'Nancy Pimental'),(70573,'Paul Hunter'),(70574,'Cyrus Voris'),(70575,'Gotham Chopra'),(70576,'Muhammed Necati u015eau015fmaz'),(70577,'Ghassan Massoud'),(70578,'Gurkan Uygun'),(70579,'Serdar Akar'),(70580,'Sadullah u015eentu00fcrk'),(70581,'Bahadir u00d6zdener'),(70582,'Raci u015eau015fmaz'),(70583,'Zu00fcbeyr u015eau015fmaz'),(70584,'Gu00f6khan Kirdar'),(70585,'Selahattin Sancakli'),(70586,'Kemalettin Osmanli'),(70591,'Philip Chan Yan-Kin'),(70592,'Deborah Schindler'),(70609,'Mary Richards'),(70610,'Matthew Weisman'),(70614,'Ivan Bird'),(70615,'Rodger Bumpass'),(70616,'Gerald Potterton'),(70620,'Leonard Mogel'),(70621,'Ian Llande'),(70622,'Mick Manning'),(70623,'Gerald Tripp'),(70624,'Neil Innes'),(70626,'Tsutomu Yamazaki'),(70633,'Amanda Redman'),(70643,'Jordan Garrett'),(70644,'Ian Jeffers'),(70645,'Brian Garfield'),(70646,'Nick Morton'),(70647,'Lewis Carroll'),(70650,'Modeste Moussorgsky'),(70651,'Stephen Hillenburg'),(70652,'Derek Drymon'),(70655,'Gina Shay'),(70657,'Gregor Narholz'),(70658,'Lynn Hobson'),(70680,'The Insects'),(70690,'Ken Lo'),(70696,'Kimberly Williams-Paisley'),(70698,'Mark Ciardi'),(70700,'Gordon Gray'),(70701,'Ken Mok'),(70703,'Teddy Chan'),(70729,'Josh Kesselman'),(70732,'Marc Schaberg'),(70738,'Gary David Goldberg'),(70739,'Claire Cook'),(70743,'Brad Hall'),(70744,'Susie Suh'),(70745,'Vinnie Zummo'),(70746,'Ed Flanders'),(70767,'Drea de Matteo'),(70772,'Kathryn Mullen'),(70775,'Hal Williams'),(70776,'Kellee Stewart'),(70777,'Kevin Rodney Sullivan'),(70778,'Joseph M. Caracciolo'),(70779,'Jason Goldberg'),(70781,'Steve Greener'),(70782,'Richard Marcus'),(70785,'Anita Briem'),(70786,'Jean Michel Paru00e9'),(70787,'Kaniehtiio Horn'),(70788,'Charlotte Huggins'),(70789,'Andrew Lockington'),(70790,'Chuck Shuman'),(70791,'Alex Blum'),(70804,'Dan Schneider'),(70805,'Jean Giono'),(70806,'Bernard Bouix'),(70815,'Emma Cleasby'),(70817,'Vic Bateman'),(70818,'Harmon Kaslow'),(70830,'Faye Grant'),(70841,'Irving Axelrad'),(70843,'Brian Bedford'),(70851,'Jack Black'),(70852,'Schuyler Fisk'),(70863,'Bernard Smith'),(70874,'Lazar Ristovski'),(70881,'Alan Cox'),(70883,'Tusse Silberg'),(70890,'Adam Green'),(70892,'Scott Altomare'),(70893,'Sarah Elbert'),(70894,'Roman Kindrachuk'),(70895,'Andrew Mysko'),(70896,'Cory Neal'),(70897,'Andy Garfield'),(70898,'Will Barratt'),(70899,'Tamara Feldman'),(70903,'Marc Warren'),(70904,'Michelle Dockery'),(70908,'Rod Brown'),(70939,'Alberto Morin'),(70940,'Albert Maltz'),(70946,'Hui Lou Chen'),(70947,'Tad Horino'),(70948,'Tom Koranda'),(70949,'John J. Connor'),(70955,'Grace Gilroy'),(70958,'Nick Stabile'),(70961,'Bernice Stegers'),(70987,'Gordon T. Dawson'),(70990,'Will Geer'),(71001,'Michael Alexander Miller'),(71002,'Ronald Parker'),(71004,'Asher Ettinger'),(71005,'Tony Kosinec'),(71010,'Tom Conti'),(71018,'Andre Morgan'),(71029,'Shinichiru00f4 Ikebe'),(71030,'Colin Wilson'),(71031,'Michael Armstrong'),(71032,'Olaf Pooley'),(71041,'Weird Al Yankovic'),(71042,'Jay Levey'),(71043,'Charles Holloway'),(71044,'Dennis M. O\'Connor'),(71046,'Michael Lander'),(71051,'Wang Baoqiang'),(71052,'Shuangbao Wang'),(71057,'Zhou Xun'),(71067,'Dong Yu'),(71068,'Phyllida Lloyd'),(71069,'Catherine Johnson'),(71070,'Amanda Seyfried'),(71072,'Nancy Baldwin'),(71073,'Enzo Squillino, Jr.'),(71074,'Judy Craymer'),(71075,'Bju00f6rn Ulvaeus'),(71076,'Stig Anderson'),(71078,'David S. Lee'),(71079,'Michael Ewing'),(71080,'Hitoshi Matsumoto'),(71081,'Mitsuyoshi Takasu'),(71082,'Andrea Arnold'),(71083,'Kate Dickie'),(71086,'Robbie Ryan'),(71087,'Nicolas Chaudeurge'),(71089,'Jaideep Sahni'),(71090,'Raj Babbar'),(71094,'Michael F. Anderson'),(71127,'Peter Zuccarini'),(71128,'Ashley Scott'),(71130,'Michael Dilbeck'),(71141,'Peter O. Almond'),(71145,'Eric Allaman'),(71146,'Ted Knight'),(71147,'Stan Robertson'),(71148,'Dirk Westervelt'),(71149,'Scott Abbott'),(71150,'Richard Clabaugh'),(71154,'Peter Mygind'),(71155,'Stine Stengade'),(71156,'Flemming Enevold'),(71157,'Mille Lehfeldt'),(71158,'Lars Mikkelsen'),(71159,'Lars Bredo Rahbek'),(71161,'Jette Lehmann'),(71162,'Sabine Schumann'),(71163,'Jens Bartram'),(71164,'Darko Krezic'),(71165,'Hummer Hu00f8jmark'),(71166,'Karsten Fundal'),(71167,'Tabitha Lupien'),(71168,'Thomas Hargrove'),(71169,'William Prochnau'),(71177,'Consuelo De Haviland'),(71186,'Bju00f8rn Sundquist'),(71189,'Cobie Smulders'),(71191,'Martin Davich'),(71192,'Greg Coote'),(71193,'Terence Ryan'),(71194,'Tim Wellburn'),(71197,'Josie Rosen'),(71198,'Christian Kane'),(71212,'Dick Kelsey'),(71215,'John Walbridge'),(71217,'Oleg Morgunov'),(71219,'Artyom Bogucharsky'),(71220,'Lyubov Agapova'),(71221,'Liliya Shinkaryova'),(71222,'Elina Benenson'),(71225,'Michael Saltzman'),(71230,'Jonathon Komack Martin'),(71234,'John Rice'),(71235,'Joe Batteer'),(71236,'Tracie Graham-Rice'),(71237,'Alison R. Rosenzweig'),(71244,'Anthony Peckham'),(71245,'Jeffrey Downer'),(71248,'James Laurenson'),(71249,'Eleanor David'),(71262,'Joshua Donen'),(71266,'Lynne Thigpen'),(71267,'Kirk De Micco'),(71268,'Chris Bacon'),(71269,'Jericca Cleland'),(71270,'Debbie Berman'),(71273,'Pritam Chakraborty'),(71277,'Daniel Aranyu00f3'),(71278,'Matthew Stein'),(71279,'Andrew S. Eisen'),(71280,'Michael Dowse'),(71281,'Paul Kaye'),(71282,'Kate Magowan'),(71283,'Beatriz Batarda'),(71284,'Graham Massey'),(71285,'Balazs Bolygo'),(71286,'Rob Morgan'),(71287,'Kim Roberts'),(71292,'Daniela Skala'),(71300,'Steve Wang'),(71311,'David Ignatius'),(71324,'Barbara Boyle'),(71329,'Jonas u00c5kerlund'),(71330,'Will De Los Santos'),(71331,'Creighton Vero'),(71332,'Fernando Sulichin'),(71333,'Danny Vinik'),(71334,'Eric Broms'),(71335,'Chloe Hunter'),(71338,'Holly Goldberg Sloan'),(71339,'Rick Bieber'),(71342,'David Himmelstein'),(71346,'Michael Bortman'),(71347,'Tom Signorelli'),(71374,'Christian Friedel'),(71375,'Alden Ehrenreich'),(71392,'Elyssa Davalos'),(71400,'Bruno Pu00e9sery'),(71402,'Andrea Savage'),(71403,'Rob Riggle'),(71417,'Gene Levy'),(71418,'Demian Lichtenstein'),(71420,'Richard Recco'),(71421,'Eric Manes'),(71422,'Richard Spero'),(71423,'Tracy Barone'),(71424,'Frederick S. Pierce'),(71432,'Junichi Uematsu'),(71437,'Elan Mastai'),(71440,'Oliver Lieb'),(71441,'Bernd Wendlandt'),(71442,'Peter Zweier'),(71446,'Judy Freudberg'),(71447,'Candace Hutson'),(71450,'Robert Lindsay'),(71464,'Brent Hanley'),(71465,'Tom Huckabee'),(71466,'Arnold Glassman'),(71467,'Matt O\'Leary'),(71479,'Andrew McElfresh'),(71481,'Xavier Cook'),(71482,'Maitland Ward'),(71486,'Michael Lucker'),(71487,'Chris Parker'),(71491,'Patrick Descamps'),(71497,'Barnet Bain'),(71498,'Stephen Deutsch'),(71499,'Jon Slan'),(71506,'Ru00e9mi Bezanu00e7on'),(71514,'Christoph Bach'),(71519,'Marnette Patterson'),(71521,'Chuck Zito'),(71527,'Marco Schnabel'),(71528,'Graham Gordy'),(71530,'Romany Malco'),(71531,'Deepak Chopra'),(71533,'Clare Clifford'),(71534,'Barney Pilling'),(71535,'Tom Kane'),(71536,'Matthew Wood'),(71548,'Peter Sollett'),(71549,'Rachel Cohn'),(71550,'David Levithan'),(71551,'Lorene Scafaria'),(71552,'Ari Graynor'),(71553,'Cassidy Gard'),(71554,'Jonathan B. Wright'),(71555,'Andrew Wilson'),(71556,'Ray Angelic'),(71558,'Ron Tutor'),(71559,'Estee Stanley'),(71560,'Carla Curry'),(71561,'Jo Harvey Allen'),(71562,'Buck Taylor'),(71563,'Billy Joe Shaver'),(71564,'Nicole Swahn'),(71565,'Heather Kafka'),(71566,'Richard Jones'),(71567,'Steve Stodghill'),(71568,'Mark Wallace'),(71569,'Raymond Gestaut'),(71570,'Justin Chadwick'),(71571,'Philippa Gregory'),(71572,'Faye Ward'),(71573,'Jane Robertson'),(71574,'John Paul Kelly'),(71575,'Kieran McGuigan'),(71576,'Emma MacDevitt'),(71577,'Matthew Gray'),(71578,'Sara Wan'),(71579,'David Allday'),(71580,'Benedict Cumberbatch'),(71581,'Oliver Coleman'),(71583,'Montserrat Roig de Puig'),(71584,'Iain Mitchell'),(71586,'Alfie Allen'),(71587,'Corinne Galloway'),(71589,'Hannes Wegener'),(71600,'Seth Gordon'),(71601,'Caleb Wilson'),(71602,'Matt Allen'),(71622,'Olivier Bugge Couttu00e9'),(71633,'Jeff Clark'),(71651,'Man-Ming Tong'),(71652,'Gai Chi Yuen'),(71655,'Felix Wong'),(71658,'Bill Wise'),(71659,'Charles Gunning'),(71673,'Michael Muhney'),(71675,'Nicholas Brendon'),(71676,'Mary-Margaret Humes'),(71686,'Christopher Gehrman'),(71716,'Jan Glaser'),(71724,'Terence A. Donnelly'),(71725,'Jake Sandvig'),(71726,'Casey Boersma'),(71727,'Betty White'),(71728,'Tom Poston'),(71729,'Steve Martino'),(71730,'Bob Gordon'),(71732,'Peter Masterson'),(71734,'Enrique Bravo'),(71759,'Jack London'),(71760,'Jeanne Rosenberg'),(71761,'David Fallon'),(71762,'Marykay Powell'),(71763,'Susan Hogan'),(71765,'Dusty Symonds'),(71766,'Peter Bart'),(71767,'David Benjamin Steinberg'),(71768,'David Kempner'),(71769,'William Grayburn'),(71770,'Stephen McCole'),(71771,'Garry Sweeney'),(71774,'Dan Mudford'),(71776,'Garance Clavel'),(71777,'Olivier Py'),(71778,'Manuel Munz'),(71781,'Ben Wright'),(71797,'Alex Gibney'),(71800,'Kendall McCarthy'),(71802,'Stefan Grandinetti'),(71804,'Amanda Ford'),(71810,'Julianne Michelle'),(71813,'Carson Grant'),(71815,'Emily Meade'),(71821,'Bernadette Quigley'),(71824,'Erik Jensen'),(71829,'Joseph Juliu00e1n Gonzu00e1lez'),(71833,'Sherman Williams'),(71836,'Angela Jones'),(71851,'Chris Parker'),(71855,'Pam Ziegenhagen'),(71856,'Robert St. Pierre'),(71857,'Mark Moseley'),(71858,'Jerry Tondo'),(71861,'Liliana Mumy'),(71871,'Sergei Bodrov Jr.'),(71872,'Jeff Nichols'),(71874,'Tisha Gribble'),(71876,'John Portnoy'),(71877,'Nick Thurlow'),(71878,'Steven Gonzales'),(71879,'Pyramid'),(71880,'Adam Stone'),(71881,'Paul Skidmore'),(71882,'Todd Williams'),(71883,'Lucero'),(71884,'Douglas Ligon'),(71885,'Barlow Jacobs'),(71886,'Natalie Canerday'),(71887,'Glenda Pannell'),(71888,'Lynnsee Provence'),(71889,'Michael Abbott Jr.'),(71890,'Coley Canpany'),(71891,'Cole Hendrixson'),(71892,'Vivian Morrison Norman'),(71893,'Tucker Prentiss'),(71894,'Wyatt Ashton Prentiss'),(71895,'David Rhodes'),(71896,'Travis Smith'),(71897,'G. Alan Wilkins'),(71900,'Adrian Paul'),(71901,'Douglas Aarniokoski'),(71913,'Bokeem Woodbine'),(71923,'Shane Acker'),(71926,'Mariela Besuievski'),(71927,'Cristina Pastor'),(71928,'Alejandro Lu00e1zaro'),(71943,'Reggie Rock Bythewood'),(71947,'Gina Prince-Bythewood'),(71948,'Camara Kambon'),(71949,'Bernard Hepton'),(71965,'Peter Kleine'),(71974,'Romi Lassally'),(72002,'Captain Mauzner'),(72003,'Tara Summers'),(72023,'Hou Yong'),(72024,'Malcolm D. Lee'),(72025,'Michael Jenkinson'),(72026,'Damon Lee'),(72028,'Arye Gross'),(72030,'Rebecca Rodriguez'),(72034,'Jacob Aaron Estes'),(72036,'Susan Johnson'),(72037,'Hagai Shaham'),(72038,'Madeleine Gavin'),(72040,'Isabella Leong'),(72045,'Donavon Stinson'),(72051,'Domenico Procacci'),(72055,'Tawny Kitaen'),(72056,'George Grizzard'),(72066,'Herbert Stothart'),(72069,'Joseph Patrick Finn'),(72074,'John Scott Shepherd'),(72075,'Kenneth Atchity'),(72076,'Chi-Li Wong'),(72082,'Brad Wright'),(72083,'N. John Smith'),(72090,'Jacques Boudet'),(72092,'Jewel Staite'),(72095,'Lee Pace'),(72099,'Ben Cotton'),(72100,'Joseph May'),(72102,'Bill Block'),(72103,'Camille Brown'),(72104,'Scott Fischer'),(72105,'Kimberly Fox'),(72106,'Ken Halsband'),(72107,'Tracy Adams'),(72108,'Laura Goldsmith'),(72109,'Christopher Kulikowski'),(72110,'Ines Mongil-Echandi'),(72111,'Brian M. O\'Neill'),(72112,'Charlie Bonilla'),(72113,'Jonah Loop'),(72117,'Matt Birman'),(72118,'Anil Kapoor'),(72119,'Mia Drake Inderbitzin'),(72129,'Jennifer Lawrence'),(72132,'Danny Pino'),(72133,'Vicente Amorim'),(72135,'James McBride'),(72142,'Michael Economou'),(72157,'Brooke Bundy'),(72197,'Ferzan Ozpetek'),(72201,'Chiling Lin'),(72202,'Shidou Nakamura'),(72204,'Lu00fc Yue'),(72205,'Shari Springer Berman'),(72206,'Robert Pulcini'),(72208,'Alicia Keys'),(72225,'Mark Twain'),(72231,'Beth DePatie'),(72232,'Brendan Heffernan'),(72233,'Gary Mackay'),(72234,'Jeff Flitton'),(72235,'Connie Grayson Criswell'),(72236,'Jamie Couper'),(72237,'John Enright'),(72238,'Sean O\'Neill'),(72240,'Sian Evans'),(72250,'Paul Kandel'),(72252,'Stephen Swofford'),(72253,'Alfred Lot'),(72258,'Steve Boyum'),(72260,'Russell D. Markowitz'),(72261,'William Wages'),(72264,'Tim Orr'),(72266,'u00c9ric Besnard'),(72267,'Maurice G. Dantec'),(72268,'Atli u00d6rvarsson'),(72269,'Marc Vade'),(72270,'Souleymane Dicko'),(72305,'Lesley Manville'),(72306,'Alison Garland'),(72307,'Marion Bailey'),(72308,'Paul Jesson'),(72309,'Kathryn Hunter'),(72310,'Sam Kelly'),(72311,'Helen Coker'),(72312,'Gary McDonald'),(72313,'Robert Wilfort'),(72314,'Diveen Henry'),(72315,'Ben Crompton'),(72316,'Edna Doru00e9'),(72317,'Georgia Fitch'),(72318,'Tracy O\'Flaherty'),(72320,'Xavier Beauvois'),(72332,'Mireille Franchino'),(72344,'Asger Leth'),(72405,'Stu Krieger'),(72406,'Adam Small'),(72408,'Clarence Felder'),(72427,'Alan Rudolph'),(72440,'Brendan Fehr'),(72441,'Johnny Lee Schell'),(72442,'Donna D\'Errico'),(72443,'Alexia Robinson'),(72448,'Adam Gorgoni'),(72450,'Bob Saget'),(72458,'Kazunari Tanaka'),(72459,'Scott Billups'),(72460,'Marc Hirshberg'),(72461,'Randy Manis'),(72462,'Clyde Hayes'),(72466,'Colin Farrell'),(72467,'Thaddeus O\'Sullivan'),(72483,'Cheng Tai-Shen'),(72494,'Rie Miyazawa'),(72519,'Robert Kirby'),(72525,'Yorgos Mavropsaridis'),(72537,'Brandon Rosser'),(72538,'Daniel Lanois'),(72540,'Takeshi Katu00f4'),(72541,'Judie Aronson'),(72543,'Sam Firstenberg'),(72546,'Avi Kleinberger'),(72559,'Edward Teets'),(72564,'Donald Woods'),(72565,'Jonas Gwangwa'),(72567,'Ron Ben-Yishai'),(72569,'Ronny Dayag'),(72573,'Dror Harazi'),(72574,'Nili Feller'),(72575,'Yael Nahlieli'),(72576,'Jason Bonham'),(72577,'Zakk Wylde'),(72578,'Jeff Pilson'),(72579,'Mike Ockrent'),(72580,'David Leary'),(72581,'Steven Naifeh'),(72582,'Gregory White Smith'),(72583,'Barbara Turner'),(72584,'Fred Berner'),(72585,'Peter Brant'),(72586,'James Francis Trezza'),(72592,'Yann Tru00e9gouu00ebt'),(72616,'Andy Blumenthal'),(72624,'John Duigan'),(72637,'Bob Neill'),(72638,'Tracy Letts'),(72643,'Darrin Navarro'),(72658,'Franklyn Seales'),(72667,'Gilles Mimouni'),(72669,'Georges Benayoun'),(72673,'Irene Montalu00e0'),(72674,'Paulina Gu00e1lvez'),(72676,'Gabriella Andreini'),(72680,'Ron Carey'),(72689,'Victoria Silvstedt'),(72698,'Mike Weinberg'),(72699,'Clare Carey'),(72708,'Lynsey Baxter'),(72714,'Greg Erb'),(72717,'Dawn Addams'),(72724,'Brian Gunn'),(72725,'Mark Gunn'),(72730,'Kelly Chen'),(72731,'Nick Cheung'),(72732,'Eddie Cheung Siu-Fai'),(72733,'Yip Tin-Shing'),(72739,'Ted Neeley'),(72740,'Carl Anderson'),(72742,'Barry Dennen'),(72743,'Tim Rice'),(72745,'Nadira Babbar'),(72752,'Jim Morris'),(72753,'Lindsey Collins'),(72754,'Elissa Knight'),(72755,'MacInTalk'),(72757,'Steve McQueen'),(72758,'Sonoko Sakai'),(72760,'Tom Yoda'),(72761,'Akira Ishii'),(72762,'Victor Loewy'),(72764,'Yoshino Kimura'),(72765,'Mitchell Nye'),(72782,'Toni Servillo'),(72791,'Ivan Barnev'),(72792,'Oldu0159ich Kaiser'),(72793,'Mariu00e1n Labuda'),(72794,'Martin Huba'),(72795,'Josef Abrhu00e1m'),(72797,'Jaromu00edr Dulava'),(72798,'Rudolf Biermann'),(72800,'Jiu0159u00ed Brou017eek'),(72801,'Milan Bu00fdcek'),(72802,'Milan u010corba'),(72812,'Miguel Ioann Littin Menz'),(72853,'Jess Hall'),(72854,'Adrian Johnston'),(72855,'Felicity Jones'),(72857,'Anna Madeley'),(72859,'James Reilly'),(72861,'Robbie Robertson'),(72864,'Tim Kelleher'),(72873,'Michael Stuhlbarg'),(72888,'Frank Brau00f1a'),(72897,'Mike Downey'),(72898,'Caroline Hewitt'),(72899,'Sam Lavender'),(72902,'John Fremes'),(72903,'Jonathan Vanger'),(72940,'Auru00e9lie Guichard'),(72954,'Paula Devonshire'),(72956,'Donna Sloan'),(72959,'Glendon Swarthout'),(72960,'Alejandro Monteverde'),(72961,'Leo Severino'),(72962,'Alejandro Gomez Monteverde'),(72963,'Alejandro Gomez Monteverde'),(72964,'Denise Pinckley'),(72965,'Matthew Malek'),(72967,'Leo Severino'),(72968,'Eduardo Veru00e1stegui'),(72969,'Ana Wolfington'),(72970,'Sean Wolfington'),(72971,'John Shepherd'),(72972,'Andrew Cadelago'),(72973,'Patrick Million'),(72974,'Glen Trotiner'),(72975,'Joseph Gutowski'),(72976,'Sean Wolfington'),(72977,'J. Eustace Wolfington'),(72978,'Justin Kemler'),(72979,'Richard Lassalle'),(72980,'Eden Miller'),(72981,'Stephan Altman'),(72983,'Manny Pu00e9rez'),(72984,'Ali Landry'),(72985,'Ramu00f3n Rodru00edguez'),(72986,'Lukas Behnken'),(72987,'Michael Chin'),(72988,'Dominic Colu00f3n'),(72989,'Hudson Cooper'),(72990,'Ewa Da Cruz'),(72992,'Doug DeBeech'),(72993,'Sara Dawson'),(72994,'Michael Mosley'),(72997,'Chris Potter'),(73001,'Carlos Gonzu00e1lez'),(73016,'Debi Derryberry'),(73017,'Brian Causey'),(73018,'Steve Kolbe'),(73019,'Chris Sherrod'),(73021,'Sue Baden-Powell'),(73022,'Robert Culp'),(73025,'Matthew F. Leonetti Jr.'),(73027,'Steve Polivka'),(73035,'Paul Johansson'),(73037,'Glen Charles'),(73038,'Les Charles'),(73039,'Chris Seefried'),(73040,'Doug Bradley'),(73058,'Natacza Boon'),(73067,'Wolfgang Ku00fchnlenz'),(73068,'Dieter Liphardt'),(73087,'Anna Bju00f6rk'),(73106,'Dennis Edwards'),(73108,'Sam Seig'),(73112,'John Simpson'),(73114,'Michael Casey'),(73115,'Martha O\'Neill'),(73116,'Mark Garret'),(73117,'Simon Thorne'),(73125,'Tetsuya Komuro'),(73127,'Joseph Julian Soria'),(73128,'Skylar Astin'),(73129,'Phoebe Strole'),(73130,'Michael Esparza'),(73131,'Natalie Amenula'),(73132,'Marco Rodru00edguez'),(73133,'Deborah Chavez'),(73134,'Evan Adrian'),(73135,'Eric Eisner'),(73136,'Leonid Rozhetskin'),(73137,'Ralph Sall'),(73139,'Shiru00f4 Sano'),(73155,'Bart Baker'),(73161,'Frank Nissen'),(73172,'Jeremy Clyde'),(73179,'Brent Armitage'),(73194,'Barry Primus'),(73195,'David Ramirez'),(73204,'Kate Hewlett'),(73210,'Louis Zorich'),(73234,'Alex Karras'),(73249,'Lee Jung-jae'),(73259,'Edward Muhl'),(73264,'Claire Nadeau'),(73269,'Elsa Pataky'),(73283,'Peter McDonald'),(73287,'David Wilmot'),(73288,'Michael McElhatton'),(73289,'Conor McPherson'),(73296,'Ruth Marshall'),(73306,'Gregory Miller'),(73336,'Summer Bishil'),(73337,'Al White'),(73338,'Alex Colon'),(73345,'Jay Chattaway'),(73348,'Fainche MacCarthy'),(73349,'Hugh Gillin'),(73355,'Georgia Groome'),(73357,'Eleanor Tomlinson'),(73381,'Matthias Schoenaerts'),(73389,'Patrick Durand'),(73394,'Arthur Dupont'),(73401,'Michael Dixon'),(73402,'Brendan Hood'),(73406,'Renu00e9e Graham'),(73410,'Chaton Anderson'),(73411,'Roland Carroll'),(73412,'Ryan Carroll'),(73417,'Joseph Bishara'),(73420,'Celia Haining'),(73421,'Joaquin Phoenix'),(73424,'Ken Hixon'),(73427,'Ken Takakura'),(73428,'Tomisaburu014d Wakayama'),(73453,'Adam Siegel'),(73454,'Kristen Hager'),(73455,'Brad Calcaterra'),(73456,'Lorna Scott'),(73457,'Chris Pratt'),(73458,'Sophiya Haque'),(73460,'Saul Dibb'),(73462,'Georgia King'),(73463,'Gabrielle Tana'),(73464,'Carolyn Marks Blackwood'),(73475,'Adriano Giannini'),(73476,'Michael Beattie'),(73479,'Alexander Buck'),(73486,'Nikolaj Egelund'),(73489,'Tom Burlinson'),(73496,'Richard Pearce'),(73499,'Bruce McCulloch'),(73500,'Susan Cavan'),(73501,'Howard Lapides'),(73502,'Bert Salke'),(73513,'Peter Boyden'),(73514,'Curt May'),(73515,'John Aquino'),(73516,'Bill Mesce Jr.'),(73517,'Peter Hampden'),(73524,'Norman Merry'),(73528,'Marc Pickering'),(73539,'Domenico D\'Ambrosio'),(73569,'Dana Eskelson'),(73570,'Richard Jefferies'),(73575,'Sophie Charlotte Conrad'),(73582,'Ali Olcay Gu00f6zkaya'),(73583,'Bennett Ohta'),(73586,'John Wesley'),(73588,'Marc Schu00f6lermann'),(73589,'Johnny Whitworth'),(73590,'Meiling Melanu00e7on'),(73609,'Nicolas Wright'),(73613,'Denis-Nou00ebl Mostert'),(73616,'Jared Kusnitz'),(73641,'Christiane Amanpour'),(73667,'David Golia'),(73668,'James Melkonian'),(73691,'Richard Stenta'),(73700,'Richard Hillman'),(73704,'Zou00eb Poledouris'),(73707,'Shelley Conn'),(73709,'Raji James'),(73710,'Raad Rawi'),(73719,'Janet Taylor'),(73720,'Damon Intrabartolo'),(73771,'Kathleen Haase'),(73772,'Barry Levine'),(73774,'Sun Honglei'),(73775,'Khulan Chuluun'),(73776,'Ba Sen'),(73777,'Aliya'),(73778,'Anton Melnik'),(73799,'Stieg Larsson'),(73823,'Matt Eppedio'),(73828,'Marilyne Canto'),(73829,'Odile Barski'),(73830,'K. D. Aubert'),(73831,'Godfrey'),(73832,'Jessy Terrero'),(73833,'Bo Zenga'),(73834,'Paul Hall'),(73836,'Laura Regan'),(73837,'Laura Zigman'),(73838,'Steven Baigelman'),(73842,'Marshall Persinger'),(73844,'Eli Selden'),(73845,'Abigail Cruttenden'),(73847,'Robert Hands'),(73880,'Milton Candish'),(73883,'Rene Naufahu'),(73884,'Xavier Horan'),(73889,'Joe Folau'),(73890,'Michelle Ang'),(73893,'Mark Ruka'),(73913,'Robyn Hitchcock'),(73916,'David Bach'),(73922,'Astrid Ku00fchberger'),(73931,'Bette Midler'),(73933,'Daniel Gerroll'),(73937,'Judith Godru00e8che'),(73940,'Fru00e9du00e9ric Brillion'),(73941,'Gilles Legrand'),(73943,'Alan Hewitt'),(73947,'Barnaby Kay'),(73950,'Bahjawa'),(73951,'Richard P. Cirincione'),(73952,'Cheryl Tiegs'),(73953,'Elizabeth Blake'),(73954,'Anna Vareschi'),(73955,'Mary Morasky'),(73956,'John Frusciante'),(73957,'Ted Curson'),(73958,'Jackson C. Frank'),(73959,'Gordon Lightfoot'),(73961,'Christian Cousins'),(73964,'Caleb Carr'),(73967,'Anna Tolputt'),(73968,'Henry Cavill'),(73991,'Jack Lechner'),(74004,'Sue Monk Kidd'),(74022,'Gao Yuanyuan'),(74033,'Liu Jie'),(74035,'Hongyu Yang'),(74036,'Tom Arnold'),(74038,'Kira Davis'),(74039,'Leslie Morgenstein'),(74043,'Dave King'),(74046,'Kiely Williams'),(74047,'Tyson Ritter'),(74051,'Alain Veyssier'),(74053,'Gerald Burke'),(74054,'Ali Fadhil'),(74055,'Robert Hutchings'),(74056,'Brendan Coyle'),(74058,'Charles Ferguson'),(74062,'Marcos Siega'),(74063,'Daniel Taplitz'),(74070,'Nana Visitor'),(74073,'Rosalind Chao'),(74082,'John G. Lenic'),(74083,'Allison Volk'),(74086,'Bill Maher'),(74087,'Jose Luis De Jesus Miranda'),(74088,'Andrew Newberg'),(74089,'Steve Burg'),(74090,'Tiu00ebsto'),(74105,'Ricki Stern'),(74106,'Anne Sundberg'),(74109,'Travis Wright'),(74113,'Emanuel Booz'),(74117,'Etienne Comar'),(74122,'Joel Gordon'),(74123,'Jamie Hector'),(74124,'Andrew Friedman'),(74125,'Marianthi Evans'),(74126,'Nelly Furtado'),(74129,'Beau Thorne'),(74130,'Sam Lake'),(74131,'Anessa Ramsey'),(74132,'Sahr Ngaujah'),(74133,'AJ Bowen'),(74135,'Suehyla El-Attar'),(74136,'Justin Welborn'),(74142,'Roger Gould'),(74145,'Masao Maki'),(74146,'Robert Muratore'),(74147,'Toddy Walters'),(74148,'Jason McHugh'),(74151,'Jason Spevack'),(74152,'Christine Jeffs'),(74153,'Megan Holley'),(74154,'Kelan Pannell'),(74155,'Janette Scott'),(74156,'Kelly Jo Charge'),(74157,'Christian Maier Smith'),(74158,'Katherine Parkinson'),(74159,'Robert B. Weide'),(74160,'Toby Young'),(74196,'Terence Yin'),(74197,'Jaymee Ong'),(74198,'Anna Lee'),(74225,'Jaymes Butler'),(74227,'Morgan Lily'),(74228,'Earl Carroll'),(74242,'Shea Whigham'),(74245,'Shane Jacobson'),(74246,'Greg Hollimon'),(74250,'Sunny Lane'),(74252,'Nina Hartley'),(74258,'Alex Tse'),(74259,'Brian Dannelly'),(74272,'Goran Dukic'),(74274,'Paul Kimatian'),(74275,'Christopher Gambale'),(74277,'Susan McMartin'),(74278,'K. C. Collins'),(74279,'Deborah Valente'),(74288,'Andrea Bowen'),(74289,'Amanda Righetti'),(74290,'Travis Van Winkle'),(74296,'Teller'),(74297,'Hendel Butoy'),(74298,'Francis Glebas'),(74299,'Pixote Hunt'),(74302,'Cory Hardrict'),(74303,'Dreama Walker'),(74304,'Doua Moua'),(74305,'Sarah Neubauer'),(74306,'Lee Mong Vang'),(74307,'Nana Gbewonyo'),(74308,'Christopher Carley'),(74309,'Bee Vang'),(74310,'John Anton'),(74311,'Austin Douglas Smith'),(74312,'Ahney Her'),(74313,'Ramon Camacho'),(74314,'Rio Scafone'),(74315,'Nick Schenk'),(74317,'Jenette Kahn'),(74318,'Adam Richman'),(74319,'Gary D. Roach'),(74320,'Kathy Mooney'),(74321,'Janet Pound'),(74322,'Kimberly Jones'),(74323,'Tania McComas'),(74333,'Jonny Greenwood'),(74335,'Phil Selway'),(74337,'Dana Snyder'),(74338,'Carey Means'),(74339,'Dave Willis'),(74340,'Andy Merrill'),(74341,'Matt Maiellaro'),(74342,'Melisa Wallack'),(74344,'Debra Sullivan'),(74350,'Jim Weatherill'),(74351,'Simone Griffeth'),(74352,'Roberta Collins'),(74353,'Maria Menounos'),(74354,'Miguel A. Nu00fau00f1ez, Jr.'),(74358,'Kelly Sheridan'),(74362,'Michael Dobson'),(74365,'Britt McKillip'),(74366,'Nancy Sorel'),(74370,'Nicole Oliver'),(74375,'Cynthia Rothrock'),(74376,'Cem Yu0131lmaz'),(74387,'Peter Carlberg'),(74396,'Tomas Alfredson'),(74397,'John Ajvide Lindqvist'),(74399,'Carl Molinder'),(74400,'John Nordling'),(74401,'Hoyte van Hoytema'),(74403,'Dino Jonsu00e4ter'),(74409,'Eric Winter'),(74410,'Paydin LoPachin'),(74415,'Patrice Naiambana'),(74421,'Song Hye-kyo'),(74426,'Matthew Perniciaro'),(74427,'John Hensley'),(74428,'Tim McGraw'),(74429,'Josh Pate'),(74431,'David Aaron Cohen'),(74436,'Olly Blackburn'),(74437,'David Bloom'),(74438,'Robert Boulter'),(74439,'Sian Breckin'),(74440,'Nichola Burley'),(74441,'Jay Taylor'),(74442,'Jaime Winstone'),(74472,'Drew Fuller'),(74474,'Joseph Fraioli'),(74487,'David Pasquesi'),(74488,'Cosimo Fusco'),(74490,'Ursula Brooks'),(74492,'Gino Conforti'),(74493,'Shelby Zemanek'),(74494,'Victor Alfieri'),(74495,'Yan Cui'),(74496,'Rashmi'),(74499,'Pascal Petardi'),(74500,'James Tumminia'),(74501,'Luis Fernandez-Gil'),(74502,'Kristof Konrad'),(74504,'Nancy Guerriero'),(74506,'Curt Lowens'),(74507,'Michael Arturo'),(74509,'Jonas Fisch'),(74510,'Joel Shock'),(74511,'Ed Francis Martin'),(74513,'Stephen C. Sepher'),(74516,'Jeffrey Boehm'),(74519,'Ted Hollis'),(74523,'Jason Ciok'),(74528,'William Cheng'),(74534,'Kevin Turen'),(74535,'David Valleau'),(74536,'Christa Vausbinder'),(74537,'Maggie Siff'),(74538,'Nate Mooney'),(74539,'Colin Ford'),(74540,'Haruhiko Yamanouchi'),(74541,'Corey Stoll'),(74542,'Barbara Rush'),(74565,'Jack Kinney'),(74567,'David Witz'),(74568,'Chris Hemsworth'),(74569,'Joby Harold'),(74570,'Ron Glass'),(74571,'Regine Nehy'),(74572,'Jaishon Fisher'),(74573,'Robert Pine'),(74574,'Caleeb Pinkett'),(74575,'Robert Dahey'),(74576,'Ho-Jung'),(74577,'Bitsie Tulloch'),(74578,'Michael Sean Tighe'),(74579,'Howard Korder'),(74580,'Jeffrey Graup'),(74581,'Joe Pichirallo'),(74582,'Orin Woinsky'),(74587,'Terry Loughlin'),(74589,'Chris Paine'),(74591,'Monica Hampton'),(74592,'Brian Martell'),(74593,'Billy Morton'),(74594,'Kate Newby'),(74595,'Gordon Michaels'),(74596,'Joe Renteria'),(74597,'George Durham'),(74598,'Scott Busby'),(74599,'Martin Copeland'),(74600,'Joshua Tickell'),(74601,'Johnny O\'Hara'),(74607,'Autumn Reeser'),(74608,'Merwin Mondesir'),(74610,'Tasha Smith'),(74611,'Tracee Ellis Ross'),(74612,'Malinda Williams'),(74613,'Terri J. Vaughn'),(74615,'Nicole Ari Parker'),(74616,'Damani Roberts'),(74617,'Brooke Lyons'),(74618,'Katrina Bowden'),(74619,'Sean Anders'),(74622,'Barbara Everest'),(74626,'Dan Reed'),(74627,'Jamie Bartlett'),(74638,'Karen Moncrieff'),(74651,'Josie Maran'),(74655,'Jeremy Saulnier'),(74666,'Paul Gagnu00e9'),(74680,'Ted Dekker'),(74681,'J. Larry Carroll'),(74687,'Stella Maeve'),(74688,'Keke Palmer'),(74689,'Rupert Davies'),(74690,'Beatrix Lehmann'),(74692,'Tambi Larsen'),(74693,'Eric Allwright'),(74722,'Josh Jacobson'),(74729,'Betsy Sullenger'),(74747,'Shahkrit Yamnarm'),(74748,'Randy Couture'),(74750,'Georges St-Pierre'),(74752,'Nikolaj Arcel'),(74759,'Niels Sejer'),(74761,'Jane Antonia Cornish'),(74763,'John Considine'),(74765,'Jay Cannistraci'),(74766,'Kathe Swanson'),(74767,'Pat Kehoe'),(74768,'Thomas J. Mack'),(74775,'George Stokes'),(74778,'Don MacDougall'),(74779,'Art Rochester'),(74781,'Richard Tyler'),(74783,'Bob Shelley'),(74787,'Walter Robles'),(74792,'Ted Churchill'),(74794,'Peter Davidian'),(74800,'Charles Saldana'),(74803,'Don Smetzer'),(74806,'Mickey Antonetti'),(74810,'Douglas M. Lackey'),(74811,'Dan Wallin'),(74817,'Graham Henderson'),(74823,'Sioux Richards'),(74824,'Anne Strick'),(74827,'Lynn Hendee'),(74828,'Jim Moody'),(74832,'Tony Mockus Jr.'),(74840,'Eugene J. Anthony'),(74859,'David Barrett'),(74873,'Bob DeRosa'),(74875,'Frank McHugh'),(74877,'Frederick Burton'),(74878,'Tay Garnett'),(74886,'David Stern'),(74907,'Fabiu00e1n Bielinsky'),(74912,'Alejandro Awada'),(74924,'Mabrouk El Mechri'),(74927,'Joakim Nu00e4tterqvist'),(74928,'Morgan Alling'),(74929,'Madison Pettis'),(74930,'Hayes MacArthur'),(74931,'Jamal Duff'),(74932,'Paige Turco'),(74933,'Robert Torti'),(74934,'Jackie Flynn'),(74935,'Lauren Storm'),(74936,'Nichole Millard'),(74938,'Kathryn Price'),(74940,'Lumi Cavazos'),(74946,'Huang Lei'),(74947,'Kitty Zhang Yuqi'),(74948,'Todd Wilderman'),(74949,'Joel McHale'),(74957,'Andre Royo'),(74960,'Sanjit De Silva'),(74961,'Jeremy Bobb'),(74967,'R. Chris Westlund'),(74971,'Jem Cohen'),(74973,'David Brownlow'),(74974,'Gail Clark Burch'),(74975,'David J. Hudson'),(74976,'Mel Metcalfe'),(74978,'Terry Porter'),(74980,'Burt Dalton'),(74985,'Morris Flam'),(74989,'Mark Emery Moore'),(74992,'Joyce Rudolph'),(74998,'Eileen Sieff Stroup'),(75001,'Bob Hagans'),(75002,'Budd Carr'),(75027,'Michael Edwards'),(75034,'E.R. Davies'),(75035,'Olivier Megaton'),(75038,'Roger Craig Smith'),(75040,'Alexandra Milchan'),(75041,'Cameron Boyce'),(75042,'Erica Gluck'),(75043,'Peter Flinth'),(75065,'Liam McKenna'),(75066,'Tom Brooke'),(75067,'Harvey Virdi'),(75068,'Emma Buckley'),(75071,'Daniel Cerqueira'),(75073,'Tom Mison'),(75074,'Paul Chahidi'),(75076,'Bronson Webb'),(75079,'Nicolas Gaster'),(75081,'Nana Fischer'),(75083,'Daniel Phillips'),(75086,'Alistair Hopkins'),(75087,'Josh Yudkin'),(75095,'Christopher Atkinson'),(75098,'Peter Baldock'),(75101,'Adele Fletcher'),(75102,'Chris Treble'),(75104,'Stephen Elson'),(75108,'Brian Fawcett'),(75109,'Dan Lowe'),(75111,'Iain Mackay'),(75113,'Luke Redgrave'),(75115,'Tony Rowland'),(75116,'Nick Wall'),(75117,'Julian White'),(75119,'Martin Chitty'),(75120,'Charlotte Sewell'),(75121,'Steve Bastoni'),(75122,'Lachy Hulme'),(75127,'Lance Anderson'),(75129,'Damian Walshe-Howling'),(75130,'Jonny Pasvolsky'),(75131,'Nash Edgerton'),(75132,'Kevin Tran'),(75140,'Marianne Jade'),(75143,'Nik Dorning'),(75148,'Frank Lipson'),(75150,'Adrian Medhurst'),(75151,'Glenn Newnham'),(75153,'Clint Ingram'),(75157,'Zev Eleftheriou'),(75159,'Karl Engeler'),(75170,'Gary Sweet'),(75174,'Socratis Otto'),(75175,'Christopher Kirby'),(75193,'Kym Gyngell'),(75194,'Kathryn Dowling'),(75195,'Jessica James'),(75196,'Colette Blonigan'),(75197,'Kelle Kipp'),(75198,'Richard Pierson'),(75199,'Claudia Cron'),(75200,'Tait Ruppert'),(75201,'Tom Tammi'),(75202,'Pam Gail'),(75203,'Lauren Zaganas'),(75204,'Sharon Ziman'),(75205,'Ralph Tabakin'),(75206,'Frank Stoegerer'),(75207,'Nat Benchley'),(75208,'Frank Hennessy'),(75209,'Marvin Hunter'),(75210,'Steve Smith'),(75211,'Lee Case'),(75212,'Clement Fowler'),(75213,'Howard Silverman'),(75214,'Ted Bafaloukos'),(75215,'Bruce Kluger'),(75216,'Carole Copeland'),(75217,'Aryeh Cooperstock'),(75218,'Brian Costantini'),(75219,'Lorraine D. Glick'),(75220,'Florence Moody'),(75221,'Mary Lou Vukov'),(75222,'Alan Kaplan'),(75223,'Donald Saiontz'),(75224,'Chief Gordon'),(75225,'Beverly Sheehan'),(75226,'Dusty Clare'),(75227,'Bruce Brody'),(75228,'Ivan Kral'),(75229,'Christine George'),(75230,'Ken Swor'),(75231,'D. Scott Easton'),(75234,'Larry Clark Bird'),(75236,'Steven Franciotti'),(75237,'Bill Gay'),(75238,'Vinnie Vecchio'),(75239,'Ken Zimmerman'),(75240,'Gary Alexander'),(75241,'Paul Hochman'),(75242,'C. Darin Knight'),(75243,'Larry Stensvold'),(75244,'George Berrios'),(75245,'Catharine Bushnell'),(75246,'John M. Gilgar'),(75247,'Donald Sweeney'),(75248,'Tom Weston'),(75249,'Deahdra Scarano'),(75250,'G. Tony Scarano'),(75251,'Harry V. Lojewski'),(75252,'Mike Padovich'),(75256,'Ian Hughes'),(75258,'Linal Haft'),(75264,'Robert Morgan'),(75292,'Rebecca Cohen'),(75294,'Rosalina Da Silva'),(75301,'Gethin Creagh'),(75302,'Angelo Sahin'),(75308,'Emmanuel Lewis'),(75309,'Joey Diaz'),(75310,'Brian Clark'),(75311,'Emily Harrison'),(75312,'Sasha Mitchell'),(75313,'Kathleen Randazzo'),(75314,'Peggy Mannix'),(75315,'Danny Bonaduce'),(75316,'Hal Sparks'),(75317,'Rob Elk'),(75318,'Retta'),(75319,'Nicholas Schwerin'),(75320,'Michelle Ruben'),(75321,'Alexander D. Slanger'),(75322,'Oliver Kindred'),(75323,'Brandon de Paul'),(75324,'Evan Lee Dahl'),(75325,'Patrick Thomas O\'Brien'),(75326,'Colin Ryan'),(75327,'Christopher Johnson'),(75328,'Sergei Virovlianski'),(75329,'Jake Chapman'),(75330,'Ambyr Childers'),(75331,'Ashley Edner'),(75332,'Miko C. Brando'),(75333,'Mindy Burbano'),(75334,'Jann Carl'),(75335,'Lindsey Dann'),(75336,'Lisa Joyner'),(75337,'Erin Murphy'),(75338,'Meghan Faye Gallagher'),(75339,'Fred Berry'),(75340,'Todd Bridges'),(75341,'Gary Coleman'),(75342,'Tony Dow'),(75343,'Florence Henderson'),(75344,'Barry Livingston'),(75345,'Mike Lookinland'),(75346,'Maureen McCormick'),(75347,'Eddie Mekka'),(75348,'Jeremy Miller'),(75349,'Erin Moran'),(75350,'Haywood Nelson'),(75351,'Jay North'),(75352,'Ron Palillo'),(75353,'Adam Rich'),(75354,'Rodney Allen Rippy'),(75355,'Marion Ross'),(75356,'Ernest Lee Thomas'),(75362,'Tom McNulty'),(75366,'Doug Delaney'),(75373,'Corrina Duran'),(75374,'Felicia Linsky'),(75375,'Joel Harlow'),(75376,'Jacklin Masteran'),(75377,'Ann Pala'),(75378,'Thomas Real'),(75379,'Brian Relyea'),(75380,'Robert Jackson'),(75391,'Danielle Berman'),(75394,'Terence Donovan'),(75406,'Wayne Bell'),(75428,'Jonathan Hardy'),(75437,'Phil Heywood'),(75439,'Gary Wilkins'),(75441,'Chris Murray'),(75445,'Tony Smart'),(75451,'Peter Moss'),(75456,'Jeanine Chiavlo'),(75463,'Michael Hitchcock'),(75465,'Lewis Arquette'),(75467,'Stephen E. Miller'),(75469,'George Mangos'),(75476,'Tabrez Noorani'),(75477,'Pravesh Sahni'),(75478,'Mark Turnbull'),(75479,'Janet Patterson'),(75485,'Noriko Watanabe'),(75491,'Catherine Lambert'),(75507,'Glenn Ruehland'),(75511,'Sue Smith'),(75516,'Ernie Clark'),(75517,'Suresh Ayyar'),(75523,'Anna Gray'),(75524,'Fiona Rees-Jones'),(75528,'Kaitlin Hopkins'),(75532,'Benita Ha'),(75536,'Michael Potkins'),(75538,'Michelle Allen'),(75540,'Gillian Jones'),(75544,'Jeremy Sims'),(75553,'Toby Oliver'),(75555,'Clayton Jauncey'),(75564,'Sid Mitchell'),(75566,'Max Deacon'),(75572,'Steffen Aumueller'),(75574,'Damon Bryant'),(75575,'Genevieve Hofmeyr'),(75578,'Gaby Kester'),(75580,'Shirley Lixenberg'),(75582,'Meg Clark'),(75584,'Tom Brewster'),(75591,'Marc Jakubowicz'),(75599,'Jesse Corti'),(75601,'Sean Nelson'),(75604,'Yul Vazquez'),(75606,'Anthony Thomas'),(75610,'Jerome Butler'),(75611,'Cortez Nance Jr.'),(75617,'Jason Rodriguez'),(75620,'Davenia McFadden'),(75624,'JoAnn Fregalette Jansen'),(75625,'Chrisann Verges'),(75626,'Dorian Harris'),(75627,'Leonard Drake'),(75628,'Anita Gibson'),(75633,'Bobb\'e J. Thompson'),(75634,'Patti LaBelle'),(75635,'Oscar Dillon'),(75636,'Jalil Jay Lynch'),(75637,'Esau McGraw'),(75638,'Bruce Bruce'),(75639,'Bre\'Wan Waddell'),(75640,'Carol Mitchell-leon'),(75641,'China Anderson'),(75642,'Isis Faust'),(75643,'Kyra Freeman'),(75644,'Kabrina Truesdale'),(75645,'Rodney Johnson'),(75646,'Bryan Barber'),(75647,'Bryan Barber'),(75648,'Bryan Barber'),(75649,'Erika Conner'),(75650,'Robert Guralnick'),(75651,'Kimberly Rach'),(75652,'Blue Williams'),(75653,'Gary Diamond'),(75654,'Shawn Barton'),(75655,'Alex Dimitriades'),(75671,'Maya Stange'),(75678,'Ollie Olsen'),(75683,'Anna Borghesi'),(75685,'Phil Jones'),(75687,'Christian Robinson'),(75696,'Melissa De Sousa'),(75699,'Lisa Cholodenko'),(75703,'Stephanie Gilliam'),(75708,'John R. Saunders'),(75711,'Anthony Hayes'),(75715,'Lawrence Woodward'),(75716,'Peter Hehir'),(75720,'Stephen Leeder'),(75733,'Jan Zeigenbein'),(75742,'Anthony Phelan'),(75745,'Simon Maiden'),(75748,'Yutaka Izumihara'),(75753,'Morgan O\'Neill'),(75755,'Anthony Jensen'),(75790,'Winston Ntshona'),(75796,'Roy Button'),(75797,'Trevor Jolly'),(75802,'Colin Jamison'),(75803,'Lisa Tomblin'),(75804,'Kevin De La Noy'),(75805,'Doreen A. Dixon'),(75806,'Richard J. Gelfand'),(75813,'Aaron Hughes'),(75826,'Brandon Birtell'),(75828,'Hartley Gorenstein'),(75830,'Ru00e9jean Labrie'),(75870,'Ron McLeod'),(75874,'Cheryl Marion'),(75876,'Linda Leduc'),(75878,'Joann Fowler'),(75882,'S.R. Bindler'),(75884,'Mark Gustawes'),(75885,'Cory Van Dyke'),(75889,'Michael Caton'),(75892,'Tiriel Mora'),(75893,'Robyn Nevin'),(75919,'Hal Haberman'),(75920,'Jeremy Passmore'),(75923,'Christopher Darga'),(75924,'Jesse Jane'),(75928,'Teagan Presley'),(75934,'Mary Acres'),(75940,'Cezary Skubiszewski'),(75942,'Steven Jones-Evans'),(75943,'Emily Seresin'),(75949,'Shaun Micallef'),(75950,'Stephen Hall'),(76000,'Kathi Copeland'),(76001,'Tim DeKay'),(76002,'Richard Gleason'),(76003,'Susan Hegarty'),(76004,'Josh Janowicz'),(76005,'Jeff Parise'),(76006,'Laura Shanahan'),(76007,'Scott Spiro'),(76008,'Max Van Ville'),(76009,'Arie Posin'),(76010,'Arie Posin'),(76011,'Zac Stanford'),(76012,'Philip Levinson'),(76013,'Lee Clay'),(76014,'Anya Colloff'),(76015,'Amy McIntyre Britt'),(76016,'Christopher Tandon'),(76017,'Hal Landers'),(76018,'Bobby Roberts'),(76021,'Griff Furst'),(76022,'Patrick Brennan'),(76029,'Courtenay Taylor'),(76031,'Veronica Lauren'),(76037,'Andrew Thacher'),(76038,'Shane Johnson'),(76046,'David Ranes'),(76054,'Luke Freeborn'),(76055,'Danielle Clemenza'),(76064,'Kathleen Beller'),(76068,'Michael Dorman'),(76070,'Mia Wasikowska'),(76085,'Anousha Zarkesh'),(76087,'Janie Parker'),(76088,'Wendy De Waal'),(76090,'Miranda Colman'),(76093,'Carmen Chaplin'),(76094,'Oscar Nunez'),(76095,'Jennifer Finnigan'),(76096,'Kelly Ripa'),(76098,'Trevor Gagnon'),(76099,'David Gore'),(76100,'Ben Stassen'),(76102,'Gene Dinovi'),(76105,'Chris Benson'),(76109,'Marie Jones'),(76110,'Stephen Amell'),(76112,'Steve Wiebe'),(76126,'T.I.'),(76129,'Albert Daniels'),(76131,'Karen Duffy'),(76134,'Rick Danko'),(76135,'Richard Manuel'),(76136,'Levon Helm'),(76137,'Garth Hudson'),(76138,'Joni Mitchell'),(76139,'Emmylou Harris'),(76140,'Paul Butterfield'),(76141,'Malcolm John Rebennack, Jr.'),(76142,'Van Morrison'),(76143,'Ronnie Hawkins'),(76145,'Roebuck \'Pops\' Staples'),(76146,'Muddy Waters'),(76147,'Michael McClure'),(76148,'Lawrence Ferlinghetti'),(76149,'Jim Gordon'),(76150,'Tom Malone'),(76151,'Howard Johnson'),(76152,'Jerry Hey'),(76153,'Charlie Keagle'),(76154,'Larry Packer'),(76155,'Steven Prince'),(76156,'Joel Chernoff'),(76157,'Jan Roblee'),(76158,'Yeu-Bun Yee'),(76159,'Anthony Mondell'),(76160,'Mel Dellar'),(76161,'James Quinn'),(76162,'Linda McMurray'),(76181,'Sigrid Thornton'),(76184,'Bryan Marshall'),(76188,'Tony Barry'),(76195,'John Dixon'),(76203,'Susie Maizels'),(76215,'Adrian Lester'),(76218,'Stephen Simms'),(76225,'David Reivers'),(76227,'Johnny Pacar'),(76229,'India Ennenga'),(76230,'Diane English'),(76233,'Karisma Kapoor'),(76234,'Matt Salinger'),(76236,'Carla Cassola'),(76239,'Garette Ratliff Henson'),(76241,'Christy Carlson Romano'),(76242,'Noel Clarke'),(76245,'Adam Carolla'),(76246,'Oswaldo Castillo'),(76247,'Charles Herman-Wurmfeld'),(76248,'Kevin Hench'),(76257,'Glynn Speeckaert'),(76276,'Jo Vermaercke'),(76313,'Daniella Monet'),(76314,'Channon Roe'),(76321,'Svante Martin'),(76328,'Anders Jansson'),(76339,'Claudio Santamaria'),(76340,'Giselda Volodi'),(76344,'Remo Remotti'),(76365,'Preston Lacy'),(76381,'David Butler'),(76412,'Allen Evangelista'),(76414,'Ariel Gade'),(76417,'Gary Reineke'),(76418,'Stuart Gillard'),(76422,'Ric Roman Waugh'),(76447,'Shimit Amin'),(76461,'Courtney Peldon'),(76462,'Richard Schenkman'),(76463,'Ellen Crawford'),(76464,'Annika Peterson'),(76470,'Dan Butler'),(76475,'Lu00e1szlu00f3 u00c1ron'),(76476,'Troy Winbush'),(76477,'Nophand Boonyai'),(76478,'Dom Hetrakul'),(76480,'Jason Richman'),(76481,'Chris Lowenstein'),(76482,'Denis O\'Sullivan'),(76483,'Matt Summers'),(76484,'Panward Hemmanee'),(76485,'Nirattisai Kaljaruek'),(76486,'Tuck Napaskorn'),(76487,'Steve Baldocchi'),(76488,'Chris Heebink'),(76489,'James With'),(76495,'Susan Lowe'),(76497,'Brook Yeaton'),(76511,'Natalie Martinez'),(76512,'Jason Clarke'),(76513,'Fred Koehler'),(76514,'Justin Mader'),(76525,'Gerry Bednob'),(76526,'David Thornton'),(76528,'Tony Nappo'),(76529,'Kelly Jones'),(76530,'Vincent Rother'),(76533,'Rob Reinis'),(76539,'Derek Basco'),(76540,'Keith Hudson'),(76541,'Ben Rock'),(76542,'Roland Kickinger'),(76543,'Chris Browning'),(76544,'Chris Ashworth'),(76546,'Ricky Schroder'),(76547,'Aksel Hennie'),(76553,'Kyrre Haugen Sydness'),(76570,'Geir Hartly Andreassen'),(76571,'Jannecke Bervel'),(76575,'Belladonna'),(76576,'Katsuni'),(76582,'Riley Steele'),(76588,'Dana Ginsburg'),(76589,'Mary Clayton'),(76590,'Jinko Gotoh'),(76591,'Marci Levine'),(76592,'Christophe Vacher'),(76593,'Giles Keyte'),(76594,'Miley Cyrus'),(76595,'Byron Howard'),(76618,'Rune Temte'),(76624,'Shane Carruth'),(76625,'David Sullivan'),(76638,'Hugh Thompson'),(76667,'Wesley Jonathan'),(76669,'Wayne Brady'),(76670,'Lil\' JJ'),(76671,'Philip Champion'),(76672,'Alecia Jai Fears'),(76673,'William L. Johnson'),(76674,'Ele Bardha'),(76675,'Gavin J. Behrman'),(76676,'Shelli Boone'),(76677,'Linda Boston'),(76678,'Marvin Collins'),(76679,'James Cowans'),(76680,'Allan Cunningham'),(76681,'Dave Daniels'),(76682,'Rian English'),(76683,'Tondy Gallant'),(76684,'Dana Gamarra'),(76685,'Nicholas Harvell'),(76686,'Terrance Zdunich'),(76687,'Loretta Higgins'),(76688,'Darren Smith'),(76689,'Sarah Brightman'),(76690,'Julia Ho'),(76691,'Michael Kimbrew'),(76692,'Michael Lamone Bivins'),(76693,'Nivek Ogre'),(76694,'Kristine Mansour'),(76695,'Jason Martin'),(76696,'Sarah Power'),(76697,'Jessica Horn'),(76698,'Branko Lebar'),(76700,'Brianna Buckmaster'),(76701,'Allen Payne'),(76702,'Margaret Scott'),(76703,'Tamer Werfali'),(76704,'D.B. Dickerson'),(76705,'Preston A. Whitmore II'),(76706,'Lorenzo O\'Brien'),(76707,'Stuart Acher'),(76708,'Dawn Snyder'),(76709,'Linda Cooper'),(76710,'Okera Banks'),(76711,'Latonya Hill'),(76712,'Brandi Mitchell'),(76713,'Terra Abroms'),(76715,'Tara L. Craig'),(76716,'Emily Thorne'),(76717,'Regina Gordon'),(76721,'Lucie Bourgeau'),(76722,'Lisa De Alva'),(76723,'Derek Dean'),(76724,'Christina Spivak'),(76733,'Theresa Cullen'),(76741,'Susan Fitzer'),(76742,'Marissa Jaret Winokur'),(76743,'Miles Bakshi'),(76744,'Nina Zoe Bakshi'),(76745,'Dante James Hauser'),(76746,'William J. Caparella'),(76747,'Henrik Tamm'),(76764,'Bill Buell'),(76788,'Dev Patel'),(76789,'Saurabh Shukla'),(76790,'Rajendranath Zutshi'),(76791,'Jeneva Talwar'),(76792,'Freida Pinto'),(76793,'Irrfan Khan'),(76796,'Antony Matos'),(76800,'Tom Minder'),(76803,'Jeff Freilich'),(76805,'John Hansen'),(76807,'Ellen Gordon'),(76811,'Xu Jinglei'),(76812,'Raymond Yip Wai-Man'),(76820,'Marina Fou00efs'),(76822,'Dennis L.A. White'),(76827,'Hu00e9lu00e8ne de Fougerolles'),(76828,'Patrick Gilmore'),(76834,'Robbie Magasiva'),(76835,'Scott Wills'),(76850,'Simone Kessell'),(76851,'John Leigh'),(76857,'Joaquu00edn Cosio'),(76858,'Franu00e7ois-Xavier Demaison'),(76886,'Betsy Rue'),(76888,'Ilayaraja'),(76901,'Melissa Collier'),(76916,'Ryan Cartwright'),(76917,'Charlotte Frogner'),(76919,'Stig Frode Henriksen'),(76920,'Vegar Hoel'),(76922,'Evy Kasseth Ru00f8sten'),(76923,'Simone Spinazzu00e8'),(76924,'Lasse Valdal'),(76925,'Jenny Skavlan'),(76926,'u00d8rjan Gamst'),(76927,'Tommy Wirkola'),(76929,'Steinar Kaarstein'),(76930,'Shino Kotani'),(76940,'John Brumpton'),(76941,'David Lyons'),(76943,'Mel Raido'),(76944,'Maxine Peake'),(76945,'Ronnie Fox'),(76948,'Kiyoto Takeuchi'),(76961,'Demiu00e1n Bichir'),(76970,'Charlotte Armer'),(76971,'David Higgs'),(76972,'Suzie Harman'),(76973,'Joris Jarsky'),(76982,'Jeff Dunham'),(76987,'Scott Benjaminson'),(76996,'Jonathan Bennett'),(76998,'James Marsh'),(76999,'Jess Weixler'),(77000,'Hale Appleman'),(77001,'Vivienne Benesch'),(77002,'Ashley Springer'),(77003,'Gavin O\'Connor'),(77008,'Fred Cavayu00e9'),(77013,'Deirdre O\'Connell'),(77014,'Janni Brenn'),(77015,'William Frankfather'),(77023,'Jack Gilpin'),(77025,'William Severs'),(77027,'William Newman'),(77028,'Poppy Montgomery'),(77029,'Corey Page'),(77030,'Dave Ruby'),(77031,'Mark Carapezza'),(77032,'Jeff Tarpley'),(77033,'Judyann Elder'),(77036,'David Parker'),(77037,'Josh Emerson'),(77038,'Chris Ippolito'),(77039,'Michael St. John Smith'),(77041,'Stephen Hair'),(77052,'Ecstasia Sanders'),(77058,'Jung Doo-hong'),(77062,'Damian Nieman'),(77067,'Steve Kmetko'),(77068,'Tommy Hilfiger'),(77069,'Lenny Kravitz'),(77070,'Gwen Stefani'),(77071,'Mark Ronson'),(77072,'Tyson Beckford'),(77073,'Lance Bass'),(77074,'Veronica Webb'),(77075,'Norm Macdonald'),(77076,'Michael Corrente'),(77078,'Malcolm David Kelley'),(77079,'Cory Hodges'),(77080,'Will Oldham'),(77081,'Gloria Grahame'),(77088,'Katharine McPhee'),(77089,'Ken Marino'),(77090,'Jordan Carlos'),(77091,'DeQuina Moore'),(77092,'Joseph Badalucco Jr.'),(77093,'Brian Hutchison'),(77094,'Tyree Michael Simpson'),(77095,'Julia K. Murney'),(77096,'Claire Lautier'),(77097,'Bridget Moloney'),(77098,'Raymond J. Lee'),(77099,'Kathleen Landis'),(77100,'Audrie Neenan'),(77107,'Alan Pao'),(77109,'Corey Large'),(77117,'Angus T. Jones'),(77119,'Angelo Spizzirri'),(77120,'Steve Austin'),(77121,'Randall Miller'),(77122,'Maru00eda Valverde'),(77123,'Gonzalo Lu00f3pez-Gallego'),(77125,'Javier Gullu00f3n'),(77130,'Marc Levy'),(77147,'John Erick Dowdle'),(77150,'Sal Landi'),(77152,'Michelan Sisti'),(77153,'Leif Tilden'),(77155,'James Saito'),(77156,'Kevin Clash'),(77157,'Robbie Rist'),(77158,'Irene Dunne'),(77162,'Rodrigo Garcu00eda'),(77164,'Ryan Robbins'),(77165,'Virginia McKenna'),(77174,'Ron Lester'),(77183,'Oh Tae-kyung'),(77188,'Oh Dal-su'),(77191,'Jeanne Balibar'),(77195,'Yves Verhoeven'),(77196,'Chris Warren, Jr.'),(77200,'Eric Dawson'),(77202,'Robert J. Ulrich'),(77204,'Shirley Inget'),(77206,'Bill Terezakis'),(77208,'Ron French'),(77222,'Aaron Douglas'),(77223,'Tahmoh Penikett'),(77226,'Theresa Merritt'),(77234,'Priyanka Chopra'),(77242,'Patricia Hearst'),(77244,'Lucy Newman-Williams'),(77245,'Scott Morgan'),(77250,'Pat Moran'),(77251,'Halina Gebarowicz'),(77252,'Van Smith'),(77255,'Murray Moston'),(77256,'Deborah Van Valkenburgh'),(77260,'Paul Anka'),(77262,'Jonathan Chase'),(77264,'Ashlie Atkinson'),(77266,'Katie Lyons'),(77268,'Mark O\'Rowe'),(77269,'John Crowley'),(77271,'Pink'),(77273,'Siddiq Barmak'),(77274,'Marina Golbahari'),(77275,'Arif Herati'),(77276,'Zubaida Sahar'),(77277,'Nate Parker'),(77278,'Denzel Whitaker'),(77279,'Gina Ravera'),(77287,'Anne Reid'),(77288,'Nico Soultanakis'),(77292,'Sean Gilder'),(77293,'Charlie Schlatter'),(77295,'Jesse V. Johnson'),(77298,'Taimak'),(77299,'Julius Carry'),(77300,'Michael Schultz'),(77303,'Wang Xue-qi'),(77304,'Zhao Wei'),(77315,'Robert Moloney'),(77318,'Choi Si-won'),(77329,'Brice Blasquez'),(77330,'Kenan Thompson'),(77331,'John Livingston'),(77332,'Ridge Canipe'),(77334,'Chandler Canterbury'),(77335,'Ben Mendelsohn'),(77336,'Nadia Townsend'),(77338,'Tom McGowan'),(77344,'John Hodgman'),(77346,'Laura Breckenridge'),(77347,'Christopher Shand'),(77350,'Douglas Spain'),(77351,'Oleg Taktarov'),(77353,'Jasmine Guy'),(77354,'Gayle Garfinkle'),(77357,'Rupert Wyatt'),(77365,'David Hollander'),(77368,'Jamie Anne Allman'),(77383,'Jiu0159u00ed Krytinu00e1u0159'),(77438,'Ashley Roberts'),(77441,'Darren Grant'),(77448,'Ross Thomas'),(77462,'Kam Heskin'),(77465,'Ash Baron-Cohen'),(77469,'Daniel M. Berger'),(77482,'Ken Sansom'),(77484,'Kyle Stanger'),(77487,'Don Charles McGovern'),(77491,'Theodore R. Parvin'),(77496,'Vince Colosimo'),(77498,'Lubna Azabal'),(77511,'Zakaria Alaoui'),(77512,'Charles J.D. Schlissel'),(77513,'Alessandro Santucci'),(77517,'Isabelle Fuhrman'),(77518,'Cody Hanford'),(77522,'Frank Hoyt Taylor'),(77539,'Claus Riis u00d8stergaard'),(77544,'Karl Geurs'),(77545,'A. A. Milne'),(77546,'Andre Stojka'),(77547,'Brady Bluhm'),(77553,'David Roberts'),(77561,'Julia Blake'),(77581,'Ernestine Mercer'),(77585,'Anthony Mangano'),(77586,'Joe Basile'),(77587,'Frank Roman'),(77588,'Howard George'),(77589,'Calvin Levels'),(77592,'John Zurlo'),(77594,'Roger Cobra'),(77596,'Jeff Sanders'),(77597,'Ric Sarabia'),(77614,'John P. Miller'),(77620,'Craig Bruhnanski'),(77621,'Dustyn Arthurs'),(77622,'Catherine Lough Haggquist'),(77623,'Ed Anders'),(77637,'Antony Sher'),(77638,'Mark Benton'),(77644,'Wynter Kullman'),(77646,'Paul Brickhill'),(77659,'Matt Carmody'),(77667,'Oksana Akinshina'),(77680,'Zac Fox'),(77681,'John Matshikiza'),(77682,'John Carlisle'),(77683,'Mathokoza Sibiya'),(77684,'Sindisiswe Nxumalo'),(77685,'Michael Richard'),(77686,'Caroline Smart'),(77687,'Olivia Grant'),(77688,'Sibusiso Mamba'),(77689,'Tony Hatton'),(77690,'Clare Marshall'),(77691,'Kim Borrell'),(77692,'Jeremy Nathan'),(77693,'Joel Phiri'),(77694,'Ray Berman'),(77695,'Richard Field'),(77696,'Ollie Novadnieks'),(77697,'Sheena Napier'),(77700,'Travis Fimmel'),(77703,'Edmond Wong'),(77705,'Kenneth Mak'),(77706,'Matthew Flanagan'),(77729,'Ellery Ryan'),(77730,'Elaine Kusmishko'),(77736,'Armelle'),(77740,'Spice Williams-Crosby'),(77750,'Benedict Carver'),(77761,'John G. Brennan'),(77763,'Mick Foley'),(77767,'Rachael Carpani'),(77771,'Craig McLachlan'),(77775,'Marianna Palka'),(77776,'Jennifer Dubin'),(77777,'Jeremy Glazer'),(77778,'Kevin Lowe'),(77779,'Cora Olson'),(77781,'Jared Nelson Smith'),(77782,'Andre Lascaris'),(77783,'Christopher Kroll'),(77784,'Andrew Trosmans'),(77785,'Daphne Javitch'),(77786,'Julie Medeiros'),(77787,'Lara Cilento'),(77788,'Amanda Barnett'),(77789,'Amberlee Colson'),(77790,'Josh Holt'),(77791,'Dana LaRue'),(77792,'Marge Morgan'),(77793,'Hunter Stiebel'),(77794,'Elisabeth Waterston'),(77795,'Katherine Waterston'),(77799,'Shedrack Anderson III'),(77800,'Aaron Frazier'),(77801,'Marques Houston'),(77802,'Omarion'),(77803,'Keri Lynn Pratt'),(77806,'Nicholas Celozzi'),(77809,'Ross Patterson'),(77816,'Franu00e7ois Flamand'),(77817,'Guy Gagnon'),(77818,'Patrick Roy'),(77819,'Michel Beaudry'),(77820,'Oshri Cohen'),(77821,'Danny Midwinter'),(77822,'Emma Catherwood'),(77823,'Stephen Hagan'),(77824,'Tanoai Reed'),(77831,'Jessica Sharzer'),(77833,'John Cowey'),(77834,'Nina McKay'),(77835,'Dickson Osa-Omorogbe'),(77836,'Jock Gibson Cowl'),(77837,'Femi Ogunbanjo'),(77838,'Hanne Klintoe'),(77859,'Richard Dillard'),(77860,'Jacques Gamblin'),(77865,'Benjamin Hollingsworth'),(77866,'Alycia Purrott'),(77870,'Glenn Howerton'),(77874,'Sachi Parker'),(77880,'Josh Dallas'),(77885,'Blayne Weaver'),(77886,'Plu00e1cido Domingo'),(77887,'Eddie \'Piolin\' Sotelo'),(77888,'Carlos Juvera'),(77895,'Peggy Wood'),(77896,'Bill Bellamy'),(77897,'Tyra Banks'),(77898,'Brenda James'),(77899,'Harris Allan'),(77911,'Deb Hagan'),(77912,'Andrew Caldwell'),(77913,'Andree Moss'),(77916,'Carolyn Moss'),(77917,'Wendy Talley'),(77919,'Tim McCanlies'),(77920,'Howie Mandel'),(77921,'Hideaki Anno'),(77928,'Bruno Salomone'),(77948,'Selena Gomez'),(77949,'John Paesano'),(77950,'Scott Neustadter'),(77951,'Michael H. Weber'),(77955,'Yuki Matsuzaki'),(77964,'Mike Barker'),(77965,'Morten Tyldum'),(77966,'Lars Gudmestad'),(77971,'Eli Nilsen'),(77981,'Eivind Sander'),(77993,'Parry Shen'),(77995,'John Boyne'),(77996,'Asa Butterfield'),(77997,'Zac Mattoon O\'Brien'),(77999,'Henry Kingsmill'),(78000,'Deana Horvu00e1thovu00e1'),(78001,'Juraj Jakubisko'),(78003,'Mark L. Taylor'),(78006,'Roger Cudney'),(78009,'Colin Brady'),(78012,'Franu00e7ois Girard'),(78014,'Leiji Matsumoto'),(78017,'Sandra Nelson'),(78018,'Allan Corduner'),(78019,'Peter Polycarpou'),(78020,'Mitch Cohen'),(78021,'Lloyd Kaufman'),(78023,'Michael Herz'),(78029,'Martin Lawrence'),(78030,'Ashley Benson'),(78031,'Cassandra Scerbo'),(78037,'Adam Vernier'),(78040,'Alex Kendrick'),(78041,'Kirk Cameron'),(78042,'Erin Bethea'),(78045,'Chuck Hittinger'),(78046,'Mimi Michaels'),(78047,'Matt Rippy'),(78050,'Elyes Gabel'),(78062,'Aml Ameen'),(78064,'Adam Deacon'),(78076,'Wayne Allwine'),(78077,'Clarence Nash'),(78080,'Krysten Ritter'),(78081,'Irving L. Leonard'),(78094,'Karl-Otto Alberty'),(78095,'Gerald Lepkowski'),(78102,'David Anthony Higgins'),(78105,'Keegan MacIntosh'),(78108,'Isaac Florentine'),(78110,'Scott Adkins'),(78114,'Emma Lockhart'),(78116,'William Haze'),(78117,'Cullen Douglas'),(78118,'Vadim Perelman'),(78119,'Gabrielle Brennan'),(78124,'Franu00e7ois Civil'),(78135,'Gregory Wilson'),(78136,'Daniel Farrands'),(78139,'Blythe Auffarth'),(78141,'Grant Show'),(78144,'Austin Williams'),(78147,'Elodie Yung'),(78150,'Joshua Cox'),(78151,'Ray Proscia'),(78157,'Lindsay Anderson'),(78160,'Luca Guadagnino'),(78183,'David Tress'),(78188,'Whit Stillman'),(78189,'Edward Clements'),(78190,'Chris Eigeman'),(78196,'Ethan Erwin'),(78197,'Elisabeth Harnois'),(78198,'Tyler Hoechlin'),(78199,'Lisa Arnold'),(78211,'Gaspard Augu00e9'),(78213,'Jim Raposa'),(78214,'Mark Caso'),(78216,'Louise Bourgoin'),(78217,'Chad Law'),(78219,'Evan Law'),(78225,'Mouloud Achour'),(78229,'Lindsey Haun'),(78230,'Maya Hazen'),(78263,'Lauren Walsh'),(78265,'Dustin Harnish'),(78285,'Marion O\'Dwyer'),(78297,'Phil Vischer'),(78298,'Mike Nawrocki'),(78299,'Tom Morello'),(78303,'Jimmy Kimmel'),(78305,'John Kellogg'),(78311,'Steve Valentine'),(78317,'Bob Bergen'),(78320,'Bryan Callen'),(78321,'Ruben Garfias'),(78322,'Akira Toriyama'),(78323,'Joon Park'),(78324,'Jamie Chung'),(78325,'Shavon Kirksey'),(78326,'Luis Arrieta'),(78327,'Richard Blake'),(78328,'Julian Sedgwick'),(78329,'Lorraine Ashbourne'),(78333,'Elsa Mollien'),(78334,'Rebekah Staton'),(78335,'Paul Sloan'),(78336,'Nick Vallelonga'),(78338,'Naoya Fujimaki'),(78340,'Ryoichi Fukuyama'),(78341,'Ryan Pinkston'),(78342,'Cherilyn Wilson'),(78343,'Seiji Okuda'),(78344,'Mika Yamaguchi'),(78345,'Katsuya Kondu00f4'),(78346,'Yuria Nara'),(78347,'Hiroki Doi'),(78348,'George Tokoro'),(78349,'Tomoko Yamaguchi'),(78350,'Yuki Amami'),(78351,'Kazushige Nagashima'),(78352,'Akiko Yano'),(78353,'Shinichi Hatori'),(78354,'Tokie Hidari'),(78355,'Eimi Hiraoka'),(78356,'Tomoko Naraoka'),(78357,'Nozomi u00d4hashi'),(78360,'Seiichiro Ujiie'),(78376,'Nozomu Takahashi'),(78378,'Naoya Tanaka'),(78384,'Steve Levitt'),(78390,'Hoyt Bowers'),(78395,'Norman Howell'),(78404,'Gary Wilmes'),(78406,'Brandon Hanson'),(78408,'Merik Tadros'),(78410,'William Morrissey'),(78411,'Emma Karwandy'),(78412,'Peter Keleghan'),(78413,'Estee Chandler'),(78414,'Robert Neary'),(78415,'Stuart Fratkin'),(78416,'Paul Sand'),(78417,'Nick Santora'),(78421,'Nicolas Mariu00e9'),(78423,'Omar Sy'),(78425,'Louise Monot'),(78428,'Justin Marks'),(78429,'Josie Ho'),(78430,'Julianna Guill'),(78431,'Ben Feldman'),(78432,'Arlen Escarpeta'),(78433,'Ryan Hansen'),(78434,'America Olivo'),(78435,'Nick Bakay'),(78436,'Raini Rodriguez'),(78437,'Stephen Rannazzisi'),(78438,'Chris Prynoski'),(78441,'Geoff Barrow'),(78452,'Gina Carano'),(78458,'Tom Hamilton'),(78460,'Brad Whitford'),(78461,'Joey Kramer'),(78463,'Gary Graham'),(78479,'Laurent Bateau'),(78481,'Hans Canosa'),(78482,'Gabrielle Zevin'),(78483,'Yury Tsykun'),(78485,'Jeff McGrath'),(78487,'Kate Boutilier'),(78488,'Cathy Malkasian'),(78494,'Beau Billingslea'),(78495,'Ric Walkington'),(78496,'Ken Utsui'),(78498,'Tony Perez'),(78500,'Will McCormack'),(78501,'Melissa Joan Hart'),(78518,'Jean De Baer'),(78520,'Rachel Black'),(78545,'Conor McMahon'),(78550,'David Ryan'),(78562,'Phil Traill'),(78563,'Ben Rice'),(78564,'Sapphire Boyce'),(78565,'Anna Linarello'),(78566,'Denise Roberts'),(78567,'Peter Callan'),(78572,'Gyton Grantley'),(78576,'Scott Thompson'),(78578,'Angela Oh'),(78581,'John Epperson'),(78589,'RuPaul'),(78595,'Wes Ramsey'),(78596,'Rebekah Johnson'),(78597,'Rob McElhenney'),(78598,'Dave Power'),(78600,'Jordan Roberts'),(78602,'Jean Effron'),(78619,'David L. Lander'),(78620,'Julie Payne'),(78655,'Ed Marritz'),(78659,'Derek Magyar'),(78662,'Jonathon Trent'),(78685,'Cameron Bancroft'),(78686,'Joanne Vannicola'),(78690,'Jeremy Slate'),(78719,'Jon DeVries'),(78727,'Jenn Murray'),(78729,'Nathan Lane'),(78730,'Oliver James'),(78738,'Tamela Mann'),(78739,'David Mann'),(78749,'Hrithik Roshan'),(78753,'Luo Guanzhong'),(78776,'Milton Frome'),(78779,'Bob Clayton'),(78788,'Lecy Goranson'),(78789,'Jay Patterson'),(78792,'Steve Cochran'),(78794,'Wally Cassell'),(78798,'Tom Kenny'),(78799,'Carolyn Lawrence'),(78804,'Jocelin Donahue'),(78809,'Rashad Evans'),(78811,'Quinton Jackson'),(78815,'Antonio Rodrigo Nogueira'),(78837,'Brooke Burns'),(78840,'Jason Acuu00f1a'),(78843,'Maria Arcu00e9'),(78861,'Amy Price-Francis'),(78862,'Anna Silk'),(78866,'John H. Lee'),(78869,'Shawn Yue'),(78871,'Wu Jing'),(78875,'Louis Koo'),(78877,'Ray Lui'),(78878,'Xing Yu'),(78879,'Xu Qing'),(78882,'Carlos Bardem'),(78885,'Jim R. Coleman'),(78887,'Billy Ray Cyrus'),(78888,'Mary Rachel Dudley'),(78890,'Keith Jardine'),(78892,'Chuck Liddell'),(78894,'Fritz Ford'),(78896,'Elizabeth Allen'),(78897,'Jacqueline Malouf'),(78898,'Cherylene Lee'),(78899,'Jeffrey Byron'),(78902,'Frank Albertson'),(78914,'Noam Murro'),(78920,'Sonali Kulkarni'),(78940,'Michael Goodliffe'),(78942,'Angus Lennie'),(78943,'Scott Finch'),(78951,'Victor Banerjee'),(78962,'Andy McPhee'),(78964,'Joel Pearlman'),(78967,'Peter Carrodus'),(78976,'Mary Pat Bentel'),(78978,'Aaron Barnes'),(78981,'Kathleen Tomasik'),(78991,'Leon Ko'),(78994,'Sergio Peris-Mencheta'),(78997,'Leon Ichaso'),(79003,'Abhay Deol'),(79008,'Mona Lee Fultz'),(79024,'Beth Littleford'),(79025,'Don McManus'),(79027,'Jake Roberts'),(79028,'Dirk Wittenborn'),(79031,'Julien Baumgartner'),(79032,'Julia Maraval'),(79033,'Ju00e9ru00e9mie Elkau00efm'),(79051,'Wendee Lee'),(79072,'Kevin Durand'),(79074,'Ted Garcia'),(79075,'Gwen Holloway'),(79079,'Jamie McShane'),(79081,'Lu Parker'),(79082,'Randall Park'),(79084,'Jeff Rector'),(79086,'Kent Shocknek'),(79087,'Robin Weigert'),(79104,'Xanthe Heubel'),(79105,'Matthew Dyktynski'),(79106,'Alethea McGrath'),(79116,'Monica O\'Brien'),(79124,'Karen David'),(79135,'Piers Tempest'),(79143,'Sue MacKay'),(79146,'Sarah Beardsall'),(79149,'Dylan Neal'),(79151,'Dean Marshall'),(79163,'David Magdael'),(79185,'Adrien Morot'),(79196,'Lena Endre'),(79207,'Mark Fergus'),(79209,'Hawk Ostby'),(79210,'Nicholas Ballas'),(79211,'David House'),(79213,'Forrest Fyre'),(79228,'Roy Costley'),(79236,'Dave Colon'),(79239,'Clark Sanchez'),(79241,'Dave Gibbons'),(79242,'Wesley Coller'),(79243,'Deborah Snyder'),(79247,'Howard Da Silva'),(79248,'Doris Dowling'),(79249,'Dave Gare'),(79250,'Robyn Meisinger'),(79252,'Elaine O\'Donnell'),(79253,'Lahly Poore'),(79265,'Lena Stru00f6mdahl'),(79270,'Annika Hallin'),(79320,'Christopher Reid'),(79321,'Christopher Martin'),(79343,'Laura Mennell'),(79344,'James M. Connor'),(79345,'Mary Ann Burger'),(79346,'John Shaw'),(79347,'Chris Burns'),(79348,'Nhi Do'),(79349,'Walter Addison'),(79350,'Tony Ali'),(79351,'Alison Araya'),(79352,'Greg Armstrong-Morris'),(79353,'Tony Bardach'),(79356,'Avis Bunnage'),(79357,'James Bolam'),(79376,'Edwin Hodgeman'),(79390,'Paul Bales'),(79394,'Claire Oberman'),(79397,'Kristen Kerr'),(79399,'Trent McMullen'),(79400,'Charmion King'),(79401,'Jessica Booker'),(79402,'Tracy Wright'),(79403,'Karen Glave'),(79405,'Bryan Renfro'),(79411,'Michael Barry'),(79415,'Sophia Lin'),(79416,'Robert Longstreet'),(79419,'Eddie Rouse'),(79427,'Damian Jewan Lee'),(79429,'David Blazina'),(79434,'Craig Zobel'),(79448,'Betty Schuurman'),(79449,'Margarita Broich'),(79458,'Yoshiyuki Morishita'),(79473,'Bea Arthur'),(79489,'Leslie Schofield'),(79492,'Michael Manasseri'),(79493,'Jillian Schmitz'),(79497,'Bruce Thomas'),(79500,'Jeff Markey'),(79502,'Richard Strange'),(79504,'Rachel Korine'),(79505,'Joseph Morgan'),(79533,'Charles-Marie Anthonioz'),(79534,'Agnu00e8s B.'),(79535,'Ann Carli'),(79536,'Richard Mansell'),(79538,'Khalil Kain'),(79550,'Gil Alma'),(79580,'David Anselmo'),(79581,'Gloria Lynne Henry'),(79584,'Angus Scrimm'),(79585,'Irene Roseen'),(79586,'Sarah Scott Davis'),(79592,'Bob Ivy'),(79610,'Sarah-Jeanne Labrosse'),(79615,'Michel Barrette'),(79617,'Gaston Lepage'),(79618,'Albert Millaire'),(79620,'Jean Marchand'),(79635,'Julian Holloway'),(79638,'Edward Tudor-Pole'),(79648,'Hugh Ross'),(79649,'Sarah DeVincentis'),(79651,'Matt O\'Toole'),(79653,'Michele Mariana'),(79654,'Robert Katims'),(79656,'John Schultz'),(79657,'Tyrone Henry'),(79659,'Aleta Barthell'),(79661,'Tapp Watkins'),(79662,'Wendy Westerwelle'),(79663,'Lauren Hasson'),(79664,'Jim Behnke'),(79665,'Naomi Despres'),(79666,'Lisa Henson'),(79667,'The Greyboy Allstars'),(79699,'Lisa Flanagan'),(79703,'Alex Rafalowicz'),(79713,'Sacha Horler'),(79726,'John D. Hancock'),(79732,'Barton Heyman'),(79735,'Alan Manson'),(79736,'Mariclare Costello'),(79739,'Morgan Brittany'),(79740,'Jim Metzler'),(79741,'Deborah Foreman'),(79744,'Sunshine Parker'),(79783,'Chris Gibbin'),(79785,'Jonathan McCoy'),(79790,'Rafael E. Su00e1nchez'),(79792,'Laura Allen'),(79793,'Margo Harshman'),(79795,'Shiloh Fernandez'),(79800,'Caitlin Gold'),(79810,'Tom Townsend'),(79815,'Bergsteinn Bju00f6rgu00falfsson'),(79818,'Atli Rafn Siguru00f0sson'),(79819,'Kristbju00f6rg Kjeld'),(79854,'Tori Parry'),(79856,'Tony Maudsley'),(79864,'Trevor Thomas'),(79866,'David de Keyser'),(79875,'Tim Barlow'),(79885,'Steven O\'Donnell'),(79888,'Tim Potter'),(79905,'Betty Moyer'),(79906,'Kathryn Witt'),(79907,'Tony Doupe'),(79928,'David Daker'),(79931,'Caroline John'),(79939,'Tony Red Richards'),(79954,'Stefan Gryff'),(79957,'Ian Liston'),(79962,'Andy Bell'),(79966,'Claudia Karvan'),(79987,'Maury Ginsberg'),(79991,'Stephen Kunken'),(79993,'Flaco Navaja'),(79997,'Tijuana Ricks'),(79999,'Kristen Ruhlin'),(80001,'Andrew Stewart-Jones'),(80002,'Daisy Tahan'),(80006,'Jon Knautz'),(80009,'John Ainslie'),(80012,'Patrick White'),(80013,'Trevor Matthews'),(80014,'Neil Bregman'),(80015,'Joshua Allen'),(80017,'Dean Hawes'),(80018,'Rachel Skarsten'),(80019,'James A. Woods'),(80020,'Ashley Bryant'),(80021,'Stefanie Drummond'),(80022,'Chad Harber'),(80023,'Patrick Henry'),(80024,'Meghanne Kessels'),(80025,'Meg Charette'),(80026,'Kristyn Butcher'),(80027,'Andrew Butcher'),(80028,'Simon Rainville'),(80029,'Matthew Stefiuk'),(80030,'Brennan Delaney'),(80031,'Valerie Casault'),(80032,'Austin Macdonald'),(80033,'Evan Gilchrist'),(80034,'Victoria Fodor'),(80035,'Derrick Damon Reeve'),(80036,'Dani Kind'),(80037,'Joshua Bogues'),(80038,'Brad Gibb'),(80039,'Rick Bramucci'),(80040,'Steve Stransman'),(80041,'Christina Sauvu00e9'),(80042,'Melinda Gilhen'),(80043,'Monica White'),(80044,'Allisa Boardley'),(80045,'Catherine Grgicakuk'),(80046,'Blue'),(80095,'Claudia Jurt'),(80108,'Satoshi Tsumabuki'),(80109,'Marla Sokoloff'),(80112,'Sylvester McCoy'),(80116,'Julie Strain'),(80117,'Billy Idol'),(80122,'Paul Nakauchi'),(80123,'Michael Yama'),(80131,'Shiru00f4 Namiki'),(80135,'Rutanya Alda'),(80137,'Diane Franklin'),(80138,'Erika Katz'),(80145,'Jemma Redgrave'),(80149,'Douglas Hodge'),(80154,'Blake Ritson'),(80157,'Kim H. Ornitz'),(80165,'Alice Playten'),(80175,'Jessica Elbaum'),(80184,'Jeananne Goossen'),(80215,'Charles Stone III'),(80216,'Howard Michael Gould'),(80219,'James Roday'),(80223,'Melissa Greenspan'),(80224,'Ned Brower'),(80242,'Mark Hicks'),(80245,'Grant Cramer'),(80270,'Don Bridges'),(80278,'Rebecca Rigg'),(80283,'Alan McRae'),(80284,'Margarita Franco'),(80289,'Jay R. Ferguson'),(80290,'Alex McKenna'),(80294,'Stewart J. Zully'),(80298,'Gary Jensen'),(80301,'Michael Dempsey'),(80307,'Andy Cadiff'),(80308,'Derek Guiley'),(80309,'David Schneiderman'),(80310,'Tony Jayawardena'),(80325,'Petr Meissel'),(80341,'Derek Harvie'),(80342,'Jackson Davies'),(80343,'Connor Widdows'),(80344,'John R. Taylor'),(80345,'Bob Osborne'),(80346,'George Gordon'),(80347,'Wendy Chmelauskas'),(80348,'Lorena Gale'),(80349,'Simon Longmore'),(80351,'Rick Tae'),(80352,'Noel Fisher'),(80353,'Ted Friend'),(80354,'Balinder Johal'),(80355,'Kamaljeet Kler'),(80356,'Ralph Wagner'),(80357,'Mike Bullard'),(80358,'Chris Carver'),(80359,'Michele Cummins'),(80361,'John Rigg'),(80362,'Jorge Rodriguez'),(80363,'Cliff Solomon'),(80364,'Henry O. Watson'),(80365,'Paul Rhys'),(80366,'Lesley Sharp'),(80367,'Estelle Skornik'),(80368,'Nicholas McGaughey'),(80369,'Annabelle Apsion'),(80371,'Steven Elder'),(80374,'Patrick Tam'),(80378,'Preston Bailey'),(80380,'Kristen Shaw'),(80384,'Paul Andrew Williams'),(80406,'Kevin Smith'),(80415,'Judith Light'),(80416,'Richard McGonagle'),(80420,'Geoffrey Streatfeild'),(80424,'Philip Elton'),(80425,'Christopher Buchanan'),(80426,'Yan Feldman'),(80427,'Rafael Feldman'),(80428,'Hunter Ansley Wryn'),(80429,'Logan O\'Brien'),(80430,'Erik Erotas'),(80431,'Demetra Raven'),(80432,'Jessica Huang'),(80433,'Marley McClean'),(80434,'Scott Kinworthy'),(80435,'Erik Weiner'),(80436,'Conor O\'Brien'),(80437,'Peter James Smith'),(80438,'Weston Nathanson'),(80439,'Carrie \'CeCe\' Cline'),(80440,'Chuck O\'Neil'),(80441,'Amy Wieczorek'),(80442,'Tristan Jarred'),(80443,'Elaine Mani Lee'),(80444,'Brian O\'Hare'),(80445,'Ryan Tasz'),(80446,'Terrell Tilford'),(80447,'Joshua Michael Kwiat'),(80448,'Antonio Rufino'),(80449,'Mark Winn'),(80470,'Daniel Delume'),(80494,'Josu00e9 Maru00eda de Tavira'),(80503,'Gabriele Lavia'),(80507,'Stefan Kapiu010diu0107'),(80535,'Robbie Williams'),(80536,'David Walliams'),(80537,'Dave Borthwick'),(80538,'Jean Duval'),(80540,'Stig Bergqvist'),(80541,'Matthew Faber'),(80542,'Angela Pietropinto'),(80545,'Harold Goodwin'),(80570,'Walter Lang'),(80576,'Max Records'),(80579,'Robert Z\'Dar'),(80582,'Brad Bufanda'),(80591,'Rashida Jones'),(80592,'Sarah Burns'),(80593,'Greg Levine'),(80594,'Jean Villepique'),(80595,'Rob Huebel'),(80596,'Colleen Crabtree'),(80597,'Kym Whitley'),(80599,'Penny Santon'),(80601,'Richard L. Breen'),(80602,'Tyler Perry'),(80603,'Roger M. Bobb'),(80604,'D. Scott Lumpkin'),(80605,'Shay Griffin'),(80606,'Kim Williams'),(80611,'Cassi Davis'),(80613,'China Anne McClain'),(80615,'Juanita Jennings'),(80616,'Maria Howell'),(80618,'L. Warren Young'),(80619,'Steve Coulter'),(80622,'Suzzanne Douglas'),(80623,'Savion Glover'),(80626,'Carol Arthur'),(80628,'Jan Terlouw'),(80630,'Martin Koolhoven'),(80631,'Martijn Lakemeier'),(80634,'Mary Jo Catlett'),(80641,'Sterling Beaumon'),(80646,'Sarah Whitley'),(80655,'Kang Seong-jin'),(80661,'Michael Zegen'),(80671,'John Sanford'),(80672,'Peggy Holmes'),(80675,'Evan Spiliotopoulos'),(80676,'Jordan Nagai'),(80678,'Tim Hodge'),(80680,'Chris Kennedy'),(80681,'James Atherton'),(80682,'Gina Black'),(80683,'Pam Collis'),(80684,'Sara Giles'),(80685,'Michael Henry'),(80686,'Norman Humphrey'),(80687,'Chiara Menage'),(80688,'Jackie O\'Sullivan'),(80689,'Christopher Simon'),(80690,'Cat Villiers'),(80691,'Gary Chapman'),(80719,'Cheryl Chase'),(80728,'W.R. Burnett'),(80731,'Bridget Marquardt'),(80742,'Martin Mull'),(80745,'Lee Ving'),(80747,'Steve Shill'),(80752,'Shinji Higuchi'),(80755,'Mao Daichi'),(80757,'Mike Tyson'),(80758,'Boris Kodjoe'),(80759,'Lisa Arrindell'),(80760,'Rochelle Aytes'),(80761,'Tangi Miller'),(80767,'Akhil Jackson'),(80768,'Alonzo Millsap'),(80769,'Georgia Allen'),(80770,'Leon Lamar'),(80771,'John Lawhorn'),(80772,'Ryan Gentles'),(80773,'Mablean Ephriam'),(80774,'Richard Reed'),(80775,'Dale Neal'),(80776,'Michelle Griffin'),(80777,'Cedric Pendleton'),(80778,'Deanna Dawn'),(80779,'Enoch King'),(80780,'Ginnie Randall'),(80781,'C.O.C.O. Brown'),(80782,'Jennifer Sears'),(80783,'Tre Rogers'),(80784,'Shannon Eubanks'),(80785,'Emmbre Perry'),(80786,'Jeronn C. Williams'),(80787,'Dale C. Bronner'),(80788,'Mike Upton'),(80801,'Lance Totten'),(80802,'Jennifer Booth'),(80803,'Rosemary Lara'),(80804,'Carl Pedregal'),(80805,'Patrice Coleman'),(80806,'T.A. Henderson'),(80807,'Wanda Patterson'),(80808,'Linda Thompson'),(80809,'Dionne Wynn'),(80810,'Jeremy Balko'),(80811,'Daniel B. Foster'),(80812,'Sammy Ray Hill'),(80813,'Kathleen Kasinger'),(80814,'Jeremy McGuire'),(80815,'Robert Tate Nichols'),(80816,'Greg Waddle'),(80817,'Greg Crawford'),(80818,'Mark DeSimone'),(80819,'Brent Findley'),(80820,'Douglas L. Hill'),(80821,'Cody King'),(80822,'Richard Kitting'),(80823,'Andrew Morgado'),(80824,'Jay Nierenberg'),(80825,'Todd Niesen'),(80826,'Stuart Provine'),(80827,'Shelley Roden'),(80828,'David Fletcher'),(80830,'Mike Uguccioni'),(80831,'Derrick Simmons'),(80832,'Gus Williams'),(80833,'Pete Bowman'),(80834,'Alfeo Dixon'),(80835,'Levi Loy'),(80836,'David McLean'),(80837,'Mark Miller'),(80838,'Tripp Norton'),(80839,'James H. Pair III'),(80840,'Jesse Wayne Parker'),(80842,'Robert Robinson'),(80843,'Jacob Ross'),(80844,'Randy Tharpe'),(80845,'Troy Toebben'),(80846,'Layne Brightwell'),(80847,'Sekinah Brown'),(80848,'Jenny Cho'),(80849,'Latham Robertson'),(80850,'Stephen H. Sloan'),(80851,'Mark Tuminello'),(80852,'Joel C. High'),(80853,'Roy A. Grace'),(80854,'Chuck Graydon'),(80855,'Justin Bones'),(80856,'John Findley III'),(80857,'Joseph Hampton'),(80860,'Jonathan Bailey'),(80864,'Kimiko Yo'),(80866,'Nell Carter'),(80874,'Tom Mason'),(80881,'Joseph Porter'),(80886,'Danny Lohner'),(80923,'Mu00e5ns Mu00e5rlind'),(80924,'Bju00f6rn Stein'),(80927,'Leland Palmer'),(80928,'Ann Reinking'),(80967,'Ricardo Chavira'),(80968,'Dwain Murphy'),(80969,'Genelle Williams'),(80978,'Brian Goodman'),(80987,'Karyn Parsons'),(80988,'Amy Redford'),(80990,'Virginia Capers'),(80991,'David Lansbury'),(80996,'Vasily Stepanov'),(80997,'Pyotr Fyodorov'),(80998,'u042eu043bu0438u044f u0421u043du0438u0433u0438u0440u044c'),(80999,'Fyodor Bondarchuk'),(81000,'Sergey Garmash'),(81002,'Mikhail Evlanov'),(81003,'Anna Mikhalkova'),(81004,'Sergei Barkovsky'),(81005,'Maksim Sukhanov'),(81007,'Ignat Akrachkov'),(81015,'Audrina Patridge'),(81022,'Jeff Rawle'),(81024,'Roger Lloyd Pack'),(81030,'Peter Pacey'),(81039,'Sarunyu Wongkrachang'),(81054,'Nicolas Duvauchelle'),(81061,'Bob Griffith'),(81062,'Jim King'),(81063,'Sandra Su00e1nchez'),(81064,'Ed Swanson'),(81065,'Patricia DeCou'),(81066,'Mark Mason'),(81067,'Jackie Hallex'),(81068,'Marshall Lewy'),(81074,'Tim Henry'),(81082,'Travis Oates'),(81083,'Max Burkholder'),(81092,'Asin Thottumkal'),(81093,'Jiah Khan'),(81095,'Michelle Morgan'),(81096,'Joshua Close'),(81097,'Shawn Roberts'),(81098,'Joe Dinicol'),(81099,'Scott Wentworth'),(81100,'Philip Riccio'),(81101,'Chris Violette'),(81102,'Todd Schroeder'),(81104,'Robert Parigi'),(81113,'Jeremy Clarkson'),(81125,'Denis Mu00e9nochet'),(81129,'Chris Martin'),(81133,'Amy Acker'),(81134,'Oana Pellea'),(81136,'Ovidiu Niculescu'),(81138,'Michael Konyves'),(81142,'Derek Anderson'),(81149,'Paul Mooney'),(81151,'Gurdas Mann'),(81164,'Danneel Ackles'),(81168,'Dick Foran'),(81172,'Nicholas Hope'),(81178,'Charlie Adler'),(81180,'Carl Benton Reid'),(81188,'Rosalind Ivan'),(81192,'Stephane Gauger'),(81194,'Cat Ly'),(81197,'Mark L. Young'),(81200,'Conan O\'Brien'),(81203,'Doug Miro'),(81209,'Peter Gaulke'),(81217,'Sarah Lancaster'),(81247,'Philip Latham'),(81248,'Alex Lifeson'),(81249,'Geddy Lee'),(81250,'Neil Peart'),(81260,'Bill Milner'),(81262,'Irena Brignull'),(81266,'Phoebe De Gaye'),(81269,'Eros Vlahos'),(81270,'Serah D\'Laine'),(81271,'Stephen Peters'),(81282,'Frances Gifford'),(81284,'Eddie Marr'),(81287,'Shannon Whirry'),(81295,'Shane West'),(81316,'Reid Scott'),(81321,'Amy Carlson'),(81326,'Jerry Hauck'),(81328,'Andrew Traucki'),(81331,'Maeve Dermody'),(81341,'Mike Brune'),(81346,'Laila Rouass'),(81364,'Olivia Munn'),(81372,'James McDaniel'),(81373,'Jason Wiles'),(81374,'Kevin Falls'),(81375,'Colleen Flynn'),(81378,'Salli Saffioti'),(81380,'Michelle Ruff'),(81381,'Michael McConnohie'),(81388,'Steve Howey'),(81390,'Aaron Carter'),(81391,'J. D. Pardo'),(81392,'Jamie Little'),(81393,'Ricky Johnson'),(81394,'Erin Lear'),(81395,'Alana Austin'),(81414,'Bobby Bell'),(81416,'Arturo Gil'),(81418,'Karine Vanasse'),(81425,'Philippe Petit'),(81426,'Jean Franu00e7ois Heckel'),(81428,'Jean-Louis Blondeau'),(81429,'Annie Allix'),(81430,'Stu00e9phane Demers'),(81432,'David Forman'),(81433,'Alan Welner'),(81435,'Barry Greenhouse'),(81438,'Jim Moore'),(81442,'Nancy Wolfe'),(81443,'Christina Hart'),(81460,'William Butler'),(81462,'Dendrie Taylor'),(81463,'Robert Helpmann'),(81468,'Fanny Mallette'),(81476,'Ariel Vromen'),(81480,'Ori Pfeffer'),(81481,'Darryl Hickman'),(81494,'Judy Cook'),(81501,'Edward G. Robinson Jr.'),(81502,'Pete McCormack'),(81508,'Robert Davide'),(81510,'Niccolu00f2 Senni'),(81517,'Gregg Wilson'),(81519,'Warren Clymer'),(81531,'Muky'),(81532,'George Newman'),(81533,'Marilyn Putnam'),(81538,'Wayne Fitzgerald'),(81544,'Kelly Reno'),(81552,'Vinnette Carroll'),(81557,'MacIntyre Dixon'),(81562,'Eleanor D. Wilson'),(81570,'Reid Asato'),(81571,'Yasmin Paige'),(81577,'Jason Yachanin'),(81578,'Kate Graham'),(81579,'Allyson Sereboff'),(81583,'Kurupt'),(81596,'Thomas Calabro'),(81598,'Reece Dinsdale'),(81624,'Jay Baker'),(81662,'Richard Steven Horvitz'),(81663,'Vanessa Marshall'),(81665,'Bart Flynn'),(81667,'Jennifer Hale'),(81668,'Rachael MacFarlane'),(81671,'Mark Strange'),(81672,'Nathan Lewis'),(81678,'Pooja Kumar'),(81681,'Denis O\'Hare'),(81682,'Bojana Novakoviu0107'),(81683,'Gbenga Akinnagbe'),(81684,'Caterina Scorsone'),(81685,'Frank Grillo'),(81686,'Sol E. Romero'),(81687,'Rick Avery'),(81688,'Scott Winters'),(81689,'Lucy Lee Flippin'),(81692,'Stephen Bridgewater'),(81695,'Steve Lopez'),(81696,'Russ Krasnoff'),(81697,'Nelsan Ellis'),(81698,'Michael Bunin'),(81699,'George Flynn'),(81703,'Zulay Henao'),(81718,'Mamoru Hosoda'),(81726,'Lorraine Toussaint'),(81727,'Darnell Martin'),(81729,'Matthew Carlisle'),(81730,'Kate Forte'),(81731,'Paul Sonski'),(81733,'Eduardo Castro'),(81735,'Kelly Thordsen'),(81742,'Aaron Pope'),(81773,'Paul Fraser'),(81780,'Edmonde Charles-Roux'),(81781,'Camille Fontaine'),(81793,'Manon Tournier'),(81796,'Hu00e9ctor Cabello Reyes'),(81801,'Brandon McGibbon'),(81802,'Lisa Marie Caruk'),(81816,'Benjamin Feitelson'),(81817,'Jean-Gilles Barbier'),(81821,'Sandrine Kiberlain'),(81828,'Manuel Puro'),(81830,'Gary Werntz'),(81831,'Arlene Gibbs'),(81834,'Chris McGurk'),(81835,'Anjalika Mathur Nigam'),(81840,'Adeel Akhtar'),(81843,'Jennifer Darling'),(81850,'Duncan Jones'),(81853,'Shigeyasu Yamauchi'),(81856,'Nicholas Jarecki'),(81867,'Michael Berresse'),(81868,'Sarah Lord'),(81869,'Katrina Kaif'),(81876,'Stuart Devenie'),(81877,'Mark Hadlow'),(81893,'Joseph T. Garrity'),(81894,'Dorothy Baca'),(81902,'Ken Olfson'),(81912,'Simon Nye'),(81918,'Greg Sestero'),(81928,'Anushka Sharma'),(81934,'Henry Stephenson'),(81941,'Mary Forbes'),(81942,'Frank Dawson'),(81955,'Joy Gohring'),(81957,'Alejandro Patino'),(81959,'Alicia Sixtos'),(81963,'Jonah Markowitz'),(81970,'John Garfield'),(81974,'Joe Devlin'),(81975,'Shimen Ruskin'),(81982,'Sushma Reddy'),(81983,'Chunky Pandey'),(81992,'Taylor Wily'),(82022,'Joe Son'),(82033,'Jon Hess'),(82042,'Don Frye'),(82076,'Arun Bali'),(82092,'Will.i.am'),(82093,'Daniel Henney'),(82094,'Tim Pocock'),(82096,'Jessica Paru00e9'),(82097,'Ohad Knoller'),(82101,'Robert Hall'),(82103,'Haaz Sleiman'),(82104,'Danai Gurira'),(82105,'Maggie Moore'),(82107,'Ray Panthaki'),(82132,'Jim Powers'),(82133,'David Webb'),(82142,'B.J. Hogg'),(82143,'Lucinda Dryzek'),(82144,'Matt Jessup'),(82145,'Lara McIvor'),(82146,'Myles Thompson'),(82148,'Rachel Morton'),(82149,'Conor MacNeill'),(82150,'Lorraine Hilton'),(82151,'Jeanne Duprau'),(82152,'Adam P. Scott'),(82158,'Pamela Frazier'),(82159,'Mohamed Dione'),(82163,'Christopher Jordan Wallace'),(82167,'David Costabile'),(82169,'Geoffrey Haley'),(82170,'Jeanne Crain'),(82172,'Jo Swerling'),(82176,'Rachel Howard'),(82179,'Arthur Napiontek'),(82187,'Mathias Mlekuz'),(82190,'Robert Hobbs'),(82191,'Sharlto Copley'),(82192,'Vanessa Haywood'),(82193,'Jason Cope'),(82194,'Neill Blomkamp'),(82195,'Terri Tatchell'),(82196,'Elliot Ferwerda'),(82197,'Ken Kamins'),(82216,'Robert Taylor'),(82219,'Luis Valdez'),(82220,'Danielle von Zerneck'),(82221,'Brendan Malloy'),(82222,'Emmett Malloy'),(82240,'Lindsey Buckingham'),(82264,'Stephanie Bennett'),(82285,'Jeff Grossman'),(82286,'Marc Levin'),(82287,'Ted Jessup'),(82290,'Kimberly Magness'),(82302,'Ariu00e9 Elmaleh'),(82312,'Maja Ostaszewska'),(82315,'Jean Harlow'),(82318,'Chems Dahmani'),(82335,'Richard Glatzer'),(82337,'Wash Westmoreland'),(82339,'Roxanne Day'),(82340,'Anne-Marie Johnson'),(82345,'Genie Francis'),(82349,'Julie Bishop'),(82350,'David Castillo'),(82357,'Dan Morski'),(82363,'Szonja Oroszlu00e1n'),(82364,'Imre Csuja'),(82378,'Andy Stock'),(82379,'Rick Stempson'),(82388,'Bob Hope'),(82407,'Kathryn Grayson'),(82410,'Terry O\'Neill'),(82413,'Jack Conway'),(82414,'Karen Meagher'),(82415,'John Pinette'),(82417,'Russell Peters'),(82426,'The Edge'),(82427,'Adam Clayton'),(82428,' Larry Mullen Jr.'),(82431,'Slick Rick'),(82434,'Wayne Pygram'),(82437,'Melissa Jaffer'),(82482,'Greg Pritikin'),(82488,'Lester Matthews'),(82492,'David Boehm'),(82501,'Jeffrey Broadhurst'),(82507,'Dick Durock'),(82508,'Kiyoshi Kobayashi'),(82510,'Michael Dugan'),(82511,'Will Gluck'),(82519,'Scott Bairstow'),(82528,'Spencer Klein'),(82529,'Jamil Walker Smith'),(82549,'Peter Jeffrey'),(82579,'Kevin Tenney'),(82580,'Stephen Nichols'),(82581,'Joe Howard'),(82582,'Matthew Brent'),(82585,'Douglas Roberts'),(82587,'Steve Harvey'),(82594,'Shevonne Durkin'),(82601,'Brian Littrell'),(82602,'Nick Carter'),(82603,'A.J. McLean'),(82604,'Howie Dorough'),(82605,'Mirrah Foulkes'),(82611,'Michael Boughen'),(82614,'Marian Carr'),(82622,'Charlotte Ross'),(82625,'Hallie Todd'),(82627,'Roy Knyrim'),(82630,'Ashley Peldon'),(82631,'Joseph Sikora'),(82636,'Luke de Woolfson'),(82639,'Ophelia Lovibond'),(82641,'Paul Fox'),(82642,'Wil Zmak'),(82643,'Iris Graham'),(82644,'David Calderisi'),(82645,'Jeff Seymour'),(82646,'Trevor Hayes'),(82647,'Bruce McFee'),(82653,'Mary Page Keller'),(82654,'Bill Leimbach'),(82662,'AnnaLynne McCord'),(82663,'Shannon Woodward'),(82664,'John Travis'),(82665,'Rebecca Sonnenshine'),(82666,'Rhys Darby'),(82685,'Mel Stewart'),(82694,'Paul White'),(82695,'Austin Basis'),(82700,'Mario Casas'),(82702,'Michael Jackson'),(82705,'Sarah Dunsworth'),(82707,'Marina Dyashenko'),(82708,'Sergei Dyashenko'),(82712,'George Costigan'),(82719,'Jon Pennell'),(82738,'Adam Leese'),(82744,'Matthew Myers'),(82748,'Thomas Browne Henry'),(82750,'Larry J. Blake'),(82754,'Conor Donovan'),(82768,'Steven Starr'),(82776,'Michael Nesmith'),(82779,'Vito Scotti'),(82785,'Emily Osment'),(82791,'Valerie Tian'),(82798,'Rustam Ibragimbekov'),(82803,'Corinna Mura'),(82805,'Ray Burdis'),(82806,'Mathew Horne'),(82807,'Lydia Leonard'),(82809,'Annabelle Wallis'),(82819,'Nolan Gerard Funk'),(82822,'Phil Claydon'),(82823,'Paul Hupfield'),(82824,'Stewart Williams'),(82835,'Rhys Williams'),(82839,'Henry Alex Rubin'),(82840,'Dana Adam Shapiro'),(82841,'Joe Bishop'),(82842,'Keith Cavill'),(82843,'Andy Cohn'),(82844,'Scott Hogsett'),(82845,'Christopher Igoe'),(82851,'Tim House'),(82854,'Patrick O\'Kane'),(82863,'John Dehner'),(82868,'Tu00f4ru Minegishi'),(82885,'Zoe Lister-Jones'),(82886,'Francis Benhamou'),(82923,'Bu00e9ru00e9nice Bejo'),(82927,'Abdellah Moundy'),(82929,'Robert W. Arbogast'),(82937,'Victor Levin'),(82943,'Jill Wagner'),(82944,'Rachel Kerbs'),(82945,'Charles Baker'),(82956,'Darcy DeMoss'),(82969,'Takeshi Kusaka'),(82972,'Takeshi u00d4bayashi'),(82987,'Candy Ford'),(82988,'Meagen Fay'),(82995,'Milan Trenc'),(83002,'Jessica Chastain'),(83005,'Jasper Britton'),(83023,'Sarah Strange'),(83024,'Kay Hawtrey'),(83025,'Tim Eddis'),(83026,'Dawn Greenhalgh'),(83027,'Nola Augustson'),(83029,'Shawn Campbell'),(83032,'Jiseung Lee'),(83037,'Jan-Michael Vincent'),(83051,'Eric Michael Cole'),(83052,'Linda Thorson'),(83053,'Hope Alexander-Willis'),(83056,'Marvin Braverman'),(83061,'Karen Stirgwolt'),(83062,'Kelcey Fry'),(83064,'Frances Mathias'),(83066,'Carol A. O\'Connell'),(83067,'Dione Taylor'),(83069,'Jamie Marshall'),(83070,'Scott Marshall'),(83071,'David H. Venghaus Jr.'),(83072,'P. Scott Bailey'),(83073,'Brian Bilson'),(83074,'Mike Cunningham'),(83075,'John R. Elliott'),(83077,'Anne Hyvarinen'),(83079,'Mike Medina'),(83080,'Wendy Riva'),(83082,'Joseph F. Brennan'),(83083,'G.W. Brown'),(83085,'Albert Gasser'),(83086,'Richard Kite'),(83087,'John Kwiatkowski'),(83088,'Kimberly Ellen Lowe'),(83089,'Joe Milner'),(83090,'Todd Toon'),(83091,'Dean A. Zupancic'),(83092,'Gary Zink'),(83093,'Jimmy N. Roberts'),(83096,'Jill Whitlow'),(83099,'Natalie Desselle'),(83101,'Anthony Johnson'),(83102,'Darrel Heath'),(83104,'Darrow Igus'),(83105,'Debra Wilson'),(83108,'Alex Thomas'),(83114,'Sam Sako'),(83117,'Mary Burton'),(83118,'Lynda Gurasich'),(83121,'Renate Leuschner'),(83128,'James MacArthur'),(83133,'Milton Reid'),(83137,'Rick Warden'),(83141,'Paul Wesley'),(83143,'Kevin Reidy'),(83149,'Willis Bouchey'),(83151,'Kelli Maroney'),(83180,'Pierre Curzi'),(83182,'Daniel Briu00e8re'),(83184,'Mitsou Gu00e9linas'),(83187,'Garrett Morris'),(83188,'Scott Bloom'),(83192,'Michu00e8le Gleizer'),(83196,'Jessica Lundy'),(83197,'Anthony Mockus Sr.'),(83198,'Allan Arkush'),(83209,'Vincent Berry'),(83211,'Tasha Simms'),(83213,'Dylan Keith Summers'),(83220,'Ha Ji-won'),(83221,'Kim Sun-a'),(83222,'Shane McRae'),(83223,'Donnie Keshawarz'),(83224,'Jamie Thraves'),(83225,'Colin Egglesfield'),(83228,'Brock Norman Brock'),(83231,'David Walton'),(83242,'Ivo Velon'),(83244,'Ella Rae Peck'),(83247,'Richard Bey'),(83248,'Ron Paul'),(83259,'Florinda Bolkan'),(83261,'Michael Pollan'),(83264,'Katarzyna Figura'),(83271,'Glen Powell'),(83272,'Cherami Leigh'),(83274,'Rachele Brooke Smith'),(83277,'Sarah Jayne Jensen'),(83281,'Lenny Abrahamson'),(83283,'Masa Yamaguchi'),(83285,'Leah Pipes'),(83287,'Lynne Ramsay'),(83293,'Wayne D. Barlowe'),(83306,'Oliver Dear'),(83313,'Melanie Mayron'),(83330,'Diane Almeida'),(83334,'Gloria Charles'),(83338,'Elissa Dowling'),(83347,'Gregor Hutchison'),(83349,'Drew Carey'),(83350,'Mark Cohen'),(83351,'Stephen Martines'),(83352,'Mircea Monroe'),(83353,'Michael Robert Brandon'),(83354,'David Stanbra'),(83355,'Melody Klaver'),(83356,'Jamie Campbell Bower'),(83357,'Raymond Thiry'),(83362,'Dennis Burkley'),(83397,'George Lloyd'),(83400,'Dorothy Lamour'),(83401,'Frank Zieger'),(83402,'Wesley Walker'),(83404,'Roz Witt'),(83407,'Andrew Ableson'),(83411,'Timothy Scott'),(83414,'Tim Conway'),(83415,'Michael McGowan'),(83423,'Heather Doerksen'),(83424,'Peter New'),(83437,'Pauline Collins'),(83438,'Julia McKenzie'),(83445,'Jason William Day'),(83458,'Stephanie Jacobsen'),(83459,'Shawn Weatherly'),(83462,'Diane McBain'),(83464,'Mieke de Jong'),(83466,'Paul Jan Nelissen'),(83467,'William A. Graham'),(83468,'Buddy Baer'),(83474,'Charles Winninger'),(83480,'Kamal Ahmed'),(83527,'Shinobu Terajima'),(83530,'Jefferson Brown'),(83548,'Peter Gunn'),(83550,'Robin Soans'),(83566,'Audrey Christie'),(83585,'Sasha Barrese'),(83586,'Ken Jeong'),(83595,'Bhushan Kumar'),(83600,'Tichina Arnold'),(83602,'Dwayne Boyd'),(83605,'Mike Hickman'),(83610,'Ralph Wilcox'),(83621,'John McGuire'),(83623,'Tom Fadden'),(83631,'Elvis Tsui'),(83633,'Vanness Wu'),(83635,'Huang Sheng-Yi'),(83637,'Heo Jun-ho'),(83655,'Julia Michels'),(83656,'Michael Viglietta'),(83658,'Ann Harris'),(83664,'Kazuo Ishiguro'),(83665,'Madeleine Potter'),(83666,'Madeleine Daly'),(83674,'Stephen Lord'),(83676,'Yao Lin Chen'),(83682,'Jung Jae-young'),(83688,'David Lai'),(83701,'Alex Kingston'),(83721,'Scott Cohen'),(83724,'Eric Zuckerman'),(83726,'Elliot Villar'),(83730,'Jonathan English'),(83733,'Michelle Van Der Water'),(83739,'Ingrid Pitt'),(83748,'Gail Carson Levine'),(83749,'Laurie Craig'),(83750,'Jennifer Heath'),(83751,'Michele J. Wolff'),(83769,'Robert Mammone'),(83771,'William Zappa'),(83772,'John Batchelor'),(83777,'Christopher Shyer'),(83781,'Robert Covarrubias'),(83782,'Bruce Wright'),(83786,'Walter Cronkite'),(83791,'Michael D. Moore'),(83793,'Riad Sattouf'),(83806,'Arch Johnson'),(83809,'Liliane Montevecchi'),(83810,'Vic Morrow'),(83813,'Thierry Neuvic'),(83814,'Steve Evets'),(83816,'John Henshaw'),(83817,'Gerard Kearns'),(83820,'Gordon Lam Ka-Tung'),(83831,'Konstantin Murzenko'),(83838,'Yuri Stepanov'),(83839,'Cork Hubbert'),(83841,'Paco Morayta'),(83842,'Jean-Michel Ribes'),(83852,'Liam James'),(83854,'David Dastmalchian'),(83859,'Leonard Roberts'),(83860,'Aldis Hodge'),(83861,'Brendan Miller'),(83872,'Casey Wilson'),(83873,'June Diane Raphael'),(83874,'Michael Arden'),(83875,'Will Eisner'),(83880,'Pavel Novu00fd'),(83902,'James Blackwell'),(83906,'Fulton Oursler'),(83909,'Shirley Anne Field'),(83912,'Michael Granger'),(83920,'Nicole Abisinio'),(83948,'Rukiya Bernard'),(83959,'Bill Mondy'),(83966,'Pascale Arbillot'),(83968,'Jim Parrack'),(83976,'Sherman Hemsley'),(83978,'William Bassett'),(83981,'Jeff Ament'),(83985,'Scott Wiper'),(83993,'Frank Jaquet'),(83995,'Brian Regan'),(84021,'Paul Gross'),(84022,'Meredith Bailey'),(84028,'Yu Aoi'),(84035,'Sarah Alexander'),(84048,'Richard Tillman'),(84049,'Layla Alexander'),(84050,'Eric Chambers'),(84061,'Daniel Barnz'),(84064,'F. Valentino Morales'),(84066,'Ilene Graff'),(84067,'Marianne Graffam'),(84068,'Daphne Alexander'),(84069,'Angelique Fernandez'),(84070,'Nyasha Hatendi'),(84071,'Michael S. Ruscheinsky'),(84073,'Eben Young'),(84075,'Demetri Martin'),(84076,'Nick Zano'),(84077,'Duane Martin'),(84080,'Newell Alexander'),(84086,'Rosemary Alexander'),(84093,'Liesel Matthews'),(84106,'Nina Zavarin'),(84107,'Shakim Compere'),(84108,'Otis Best'),(84112,'Brandon Call'),(84113,'Charles Robert Carner'),(84115,'Jason Weaver'),(84116,'Earl Poitier'),(84117,'Candace Carey'),(84118,'Shay Roundtree'),(84119,'Miguel A. Gaetan'),(84120,'J. Anthony Brown'),(84122,'Tyreese Burnett'),(84123,'Brandon Hirsch'),(84124,'Tina Gordon Chism'),(84125,'Dallas Austin'),(84126,'Jody Gerson'),(84127,'Greg Mooradian'),(84163,'Matt Borlenghi'),(84164,'Billy Jayne'),(84165,'Michael Dinner'),(84181,'Shannon Kemp'),(84182,'Luis Rau00fal'),(84197,'Zahary Baharov'),(84206,'Keshia Knight Pulliam'),(84208,'Ion Overman'),(84209,'RonReaco Lee'),(84212,'Scott LaRose'),(84213,'Bill Farmer'),(84214,'Taylor Lautner'),(84215,'Jackson Rathbone'),(84216,'Bronson Pelletier'),(84217,'Alex Meraz'),(84218,'Kiowa Gordon'),(84219,'Chaske Spencer'),(84220,'Bill Bannerman'),(84221,'Charlie Bewley'),(84222,'Daniel Cudmore'),(84223,'Anna Kendrick'),(84224,'Christian Serratos'),(84225,'Gil Birmingham'),(84226,'Noot Seear'),(84227,'Justine Wachsberger'),(84229,'Mike Mazurki'),(84233,'Marshall Thompson'),(84247,'Emily VanCamp'),(84248,'Damir Andrei'),(84249,'Edward Hibbert'),(84251,'Ivo Garrani'),(84258,'Walter Fasano'),(84261,'Moran Atias'),(84268,'Olga Fedori'),(84270,'Tara Wilson'),(84271,'Gabriel Friedman'),(84273,'Daniel Bova'),(84274,'Robin L. Watkins'),(84275,'Joshua Olatunde'),(84276,'Caleb Emerson'),(84292,'John Oliver'),(84298,'Christopher Dingli'),(84300,'Chris Lowell'),(84301,'Giorgio Mariuzzo'),(84302,'Anthony Flees'),(84304,'Giovanni De Nava'),(84306,'Michele Mirabella'),(84309,'Gianpaolo Saccarola'),(84318,'Victor Gojcaj'),(84323,'Florence Stanley'),(84327,'Ivor Francis'),(84328,'Stack Pierce'),(84333,'Burt Shevelove'),(84334,'Annette Andre'),(84337,'Ashlea Earl'),(84338,'Clint Carleton'),(84340,'Eric Guggenheim'),(84341,'Patrick O\'Brien Demsey'),(84342,'Michael Mantenuto'),(84348,'Jason Blum'),(84369,'Eugene Jarecki'),(84378,'Nick Fraser'),(84384,'Osama Bin Laden'),(84392,'Don Ferrarone'),(84399,'Jim Nabors'),(84407,'Jim Gaffigan'),(84408,'Samantha Pryor'),(84409,'Conor Carroll'),(84410,'Bailey Harkins'),(84411,'Brendan Spitz'),(84412,'Jaden Spitz'),(84414,'Dave Eggers'),(84415,'Vendela Vida'),(84416,'Gene Stupnitsky'),(84417,'Lee Eisenberg'),(84418,'Nicholas Weinstock'),(84419,'Laurel A. Ward'),(84420,'Andrew Epstein'),(84421,'Lyle Kanouse'),(84422,'Carolyn McCormick'),(84423,'Conleth Hill'),(84424,'Nicole Patrick'),(84432,'Lizzie Brocheru00e9'),(84435,'Pete Chiarelli'),(84436,'Dale Place'),(84437,'Gabriela Tagliavini'),(84438,'Laura Angelica Simon'),(84440,'Marie Guillard'),(84451,'Leon Ford'),(84457,'Marisol Nichols'),(84459,'Larnell Stovall'),(84461,'Alice Wu'),(84462,'Lynn Chen'),(84466,'Jessica McLeod'),(84468,'Laine MacNeil'),(84481,'Courtney Jines'),(84482,'Luke Benward'),(84483,'B.J. Hopper'),(84484,'Marca Price'),(84490,'David Kaye'),(84491,'Elie Docter'),(84492,'Jeremy Leary'),(84493,'Mickie McGowan'),(84494,'Donald Fullilove'),(84495,'Jess Harnell'),(84496,'Josh Cooley'),(84497,'Aaron Paul'),(84502,'Elizabeth Schmidt'),(84513,'Erin Kelly'),(84514,'Diane Gaidry'),(84515,'Katherine Brooks'),(84517,'Taylor Dooley'),(84518,'Jacob Davich'),(84521,'Elisa Bocanegra'),(84522,'David James Elliott'),(84527,'Freddie Mercury'),(84530,'Roger Taylor'),(84532,'John Deacon'),(84546,'Tom DeLonge'),(84557,'Jasmine Yuen Carrucan'),(84573,'Mu00e9lissa Du00e9sormeaux-Poulin'),(84577,'Jessica Kardos'),(84583,'Sylvie Moreau'),(84586,'Amu00e9lie Sorel'),(84602,'Artie Malesci'),(84606,'Raymond O\'Connor'),(84613,'Madeline Zima'),(84617,'Zelda Williams'),(84640,'Joe King'),(84656,'Tak Kubota'),(84659,'Janis Paige'),(84664,'Rick Smith'),(84665,'Ronan Bennett'),(84678,'Johnny Cash'),(84684,'Norman Matlock'),(84685,'Brent Jennings'),(84697,'E.L. Katz'),(84698,'Jessica Lowndes'),(84702,'Gregg Brazzel'),(84706,'Jarreth J. Merz'),(84707,'Michael Fairman'),(84709,'Tracy Phillips'),(84710,'Mike Muscat'),(84714,'Juan Josu00e9 Campanella'),(84715,'Kim Min-suk'),(84725,'Keisuke Koide'),(84730,'Diego Fuentes'),(84731,'Doskhan Zholzhaksynov'),(84732,'Ayanat Ksenbai'),(84733,'Aziz Beyshenaliev'),(84734,'Erik Zholzhaksynov'),(84735,'Dilnaz Akhmadieva'),(84736,'Ivan Passer'),(84753,'Daniel Kunka'),(84754,'Gonzalo Menendez'),(84756,'Kyle Russell Clements'),(84757,'Peter \'Navy\' Tuiasosopo'),(84758,'Michael Lake'),(84759,'Travis Davis'),(84760,'Nick Gomez'),(84761,'Josh McLaughlin'),(84763,'Joey Kern'),(84768,'Paul Lovett'),(84769,'Michael Worth'),(84770,'Cuca Canals'),(84785,'Hoyt Richards'),(84791,'Bart Fletcher'),(84792,'Barry J. Ratcliffe'),(84804,'Brett Turnbull'),(84815,'Josh Cooke'),(84816,'Greg Pitts'),(84832,'Dusan Dukic'),(84833,'Zach Cregger'),(84834,'Trevor Moore'),(84835,'Shoshana Bush'),(84841,'Randy Wayne'),(84845,'Edwin Louis'),(84846,'Jared Lavette'),(84847,'Micah Lavette'),(84848,'Loudon Wainwright III'),(84849,'Piper Mackenzie Harris'),(84850,'Justin Mentell'),(84851,'Hoyt Yeatman'),(84854,'Jung Joon-ho'),(84864,'Tom Collins'),(84865,'William Houston'),(84876,'Ho-Sung Pak'),(84878,'Antonio Fargas'),(84890,'Alan Polonsky'),(84892,'Harry Rabinowitz'),(84894,'Michelle Clunie'),(84895,'Kevin Sheridan'),(84898,'Shelley Malil'),(84901,'Bryan Hanna'),(84919,'Rita Coolidge'),(84920,'Tony Orlando'),(84927,'Benjamin Whitrow'),(84931,'Michael Cuesta'),(84932,'Jay-Z'),(84933,'Mary J. Blige'),(84938,'Bernard Gordon'),(84940,'Crane Wilbur'),(84943,'Ahnaise Christmas'),(84944,'Sidney Franklin'),(84945,'David Haack'),(84946,'Ted Hutton'),(84947,'Steven B. Jarnicki'),(84948,'Katie Leclerc'),(84949,'Kevin Montgomery'),(84950,'Cheryl Noe'),(84951,'Gene Rathswohl'),(84952,'Olesya Rulin'),(84953,'Stephen Michael Shearer'),(84954,'Mona Jo Trowbridge'),(84955,'Myk Watford'),(84957,'Ritesh Deshmukh'),(84961,'Juliet Snowden'),(84962,'Stiles White'),(84963,'D.G. Maloney'),(84964,'Lara Robinson'),(84965,'Joshua Long'),(84966,'Danielle Carter'),(84967,'Tamara Donnellan'),(84968,'Travis Waite'),(84978,'Joe Tornatore'),(84981,'Brian Trenchard-Smith'),(84989,'Tony Luke Jr.'),(85006,'Kang Woo-Suk'),(85007,'Hie-jae Kim'),(85008,'Sol Kyung-gu'),(85016,'Marcial Di Fonzo Bo'),(85030,'Anvita Dutt Guptan'),(85033,'Paresh Rawal'),(85034,'Ranbir Kapoor'),(85035,'Bipasha Basu'),(85042,'Phyllis Thaxter'),(85047,'Nawazuddin Siddiqui'),(85056,'Rameshwar S. Bhagat'),(85064,'Tara Ellis'),(85065,'Jack O\'Connell'),(85066,'Finn Atkins'),(85067,'Jumayn Hunter'),(85068,'James Burrows'),(85070,'Lorraine Bruce'),(85071,'Shaun Dooley'),(85072,'James Gandhi'),(85073,'Lorraine Stanley'),(85074,'Rachel Gleeves'),(85096,'Stephen Blackehart'),(85097,'Joan Blair'),(85101,'Michelle Gunn'),(85122,'Noah Blough'),(85137,'Greg Aronowitz'),(85138,'Demi Lovato'),(85139,'Nicholas Braun'),(85140,'Kevin G. Schmidt'),(85142,'Paul Ben-Victor'),(85143,'Angela Sarafyan'),(85144,'Candice King'),(85146,'Bo Brundin'),(85154,'Tony Denison'),(85161,'Jean-Robert Bourdage'),(85170,'Ron Canada'),(85171,'Ellen Albertini Dow'),(85176,'Bridgit Mendler'),(85177,'Creed Bratton'),(85178,'Christa Campbell'),(85199,'Alan Thicke'),(85209,'Meredith Giangrande'),(85210,'Jim J. Bullock'),(85214,'Ginny Weirick'),(85216,'David Presley'),(85227,'Ion Sapdaru'),(85236,'Paul Rust'),(85242,'Kevin Jordan'),(85285,'Chikao Ohtsuka'),(85309,'Kihachi Okamoto'),(85340,'Eric Lartigau'),(85345,'Felix Aylmer'),(85350,'Loene Carmen'),(85351,'Graeme Blundell'),(85354,'Nick Tate'),(85363,'Orny Adams'),(85366,'Maxine Miller'),(85367,'Hadley Kay'),(85386,'Irina Bju00f6rklund'),(85409,'Max Showalter'),(85410,'Denis O\'Dea'),(85414,'Hugh Daly'),(85419,'Dylan Kenin'),(85421,'Time Winters'),(85422,'Joshua Minnick'),(85424,'Mark Doerr'),(85426,'Don Alvarado'),(85432,'Maryke Hendrikse'),(85443,'Shridhar Raghavan'),(85445,'Rohan Sippy'),(85446,'Ramesh Sippy'),(85448,'Huan-Chiu Ku'),(85450,'Mithun Chakraborty'),(85453,'Philip Yordan'),(85456,'Mahesh Manjrekar'),(85470,'Kangana Ranaut'),(85477,'Trace Adkins'),(85484,'Matthew Del Negro'),(85491,'Marjorie Woodworth'),(85500,'Sab Shimono'),(85505,'Dan Payne'),(85513,'Gabriel Georgiev'),(85514,'Irit Raz'),(85515,'Ina Damianova'),(85519,'Madhavan'),(85522,'Abbas'),(85529,'Vinay Jain'),(85545,'Gary Hetherington'),(85550,'Michael Boston'),(85561,'Michael Goguen'),(85563,'Brian Herzlinger'),(85572,'Yoshihiro Akiyama'),(85574,'Purab Kohli'),(85581,'Shankar Mahadevan'),(85582,'Ehsaan Noorani'),(85583,'Loy Mendonsa'),(85613,'Juan Riedinger'),(85614,'Juno Rinaldi'),(85616,'Aman Johal'),(85629,'David Westhead'),(85663,'C.K. Muraleedharan'),(85669,'Dia Mirza'),(85672,'Shabana Azmi'),(85675,'Rajkumar Hirani'),(85686,'Tanaaz Currim Irani'),(85692,'Lillian Hellman'),(85693,'Malaika Arora Khan'),(85698,'Manoj Mittra'),(85699,'Hiroo Johar'),(85708,'Suleiman Merchant'),(85714,'Upen Patel'),(85715,'Tanushree Dutta'),(85717,'David Gleeson'),(85718,'Allen Leech'),(85721,'Tamanna Bhatia'),(85724,'Akhilendra Mishra'),(85730,'Sunil Shetty'),(85734,'Sushmita Mukherjee'),(85743,'Justin Rodgers Hall'),(85752,'Jermaine Crawford'),(85757,'Joe Jonas'),(85759,'Maria Canals-Barrera'),(85760,'Jean Howell'),(85778,'\'Snub\' Pollard'),(85779,'Wilson Bethel'),(85781,'Jon Zack'),(85809,'Shane Van Dyke'),(85812,'Michael Buie'),(85822,'Anthony C. Ferrante'),(85825,'Leighton Meester'),(85828,'Peter Stark'),(85837,'Fay DeWitt'),(85838,'Hope Summers'),(85853,'Corson Jowett'),(85869,'John Dennis Johnston'),(85870,'Luis Contreras'),(85881,'Sanjay Dutt'),(85889,'Arshad Warsi'),(85900,'Marion Martin'),(85902,'Nicholas Joy'),(85914,'Brian Hohlfeld'),(85921,'Joseph Hieu'),(85922,'Tom Butler'),(85924,'Vincent Piazza'),(85925,'Hilary Brougher'),(85926,'Melyssa Ade'),(85929,'Krista Leis'),(85930,'John Mayer'),(85931,'D. L. Hughley'),(85934,'Michael Denison'),(85939,'Sei Hiraizumi'),(85940,'Arthur Franz'),(85943,'Dan Seymour'),(85949,'Daniel Quinn'),(85954,'J.D. Garfield'),(85956,'Sara Haden'),(85957,'Sarah Edwards'),(85958,'Charles Smith'),(85959,'Doran Reed'),(85960,'Paula Fairfield'),(85961,'Carla Murray'),(85964,'Roderick Deogrades'),(85965,'Chuck Bush'),(85969,'Emraan Hashmi'),(85970,'Neil Edmond'),(85977,'Clive Standen'),(85978,'Javed Sheikh'),(85979,'Tiffany Mulheron'),(85988,'Berry Kroeger'),(85990,'Walter Baldwin'),(85996,'Tim Ryan'),(86006,'Paul Eiding'),(86007,'Jim Ward'),(86020,'Kay Kay Menon'),(86023,'Hemant Pandey'),(86034,'Julianne Nicholson'),(86035,'Maria Maggenti'),(86037,'Jeff Crook'),(86038,'Josh Crook'),(86039,'Mario Cimarro'),(86040,'Chris Ferry'),(86041,'Delilah Cotto'),(86042,'John Carlino'),(86044,'William Ash'),(86045,'Gary Beadle'),(86048,'Buffy Davis'),(86050,'Rachel Grant'),(86051,'Joshua Logan'),(86058,'David E. Vogel'),(86086,'Javed Jaffrey'),(86088,'Prem Chopra'),(86128,'Susan Egan'),(86132,'Claire Holt'),(86133,'Matthew McNulty'),(86136,'Ann Prentiss'),(86151,'Vladimir Mashkov'),(86157,'Rashmi Rustagi'),(86164,'Mitch Davis'),(86169,'Camden Munson'),(86170,'Audrey Wasilewski'),(86172,'Elizabeth Decker'),(86173,'Grant Hayden Scott'),(86174,'Shane Avery Scott'),(86175,'Dawn Lewis'),(86176,'Todd M. Hofacker'),(86177,'Claudia DiFolco'),(86178,'Patrick Stinson'),(86179,'Jerry Penacoli'),(86181,'Maria Quiban'),(86187,'Franklin Dennis Jones'),(86188,'Linus Merwin'),(86191,'Gianina Sbardellati'),(86192,'Chelsea Bond'),(86193,'Daniel Dotterer'),(86194,'James Sbardellati'),(86195,'Peter Merwin'),(86196,'Gary Paul'),(86197,'Salvador Pu00e9rez Jr.'),(86198,'Darren Higman'),(86199,'Laura Ziffren'),(86200,'Gym Hinderer'),(86201,'Damien Saccani'),(86202,'Mikkel Bondesen'),(86203,'Bart Freundlich'),(86204,'Geoff Meed'),(86232,'Lucy Boynton'),(86237,'Joe Pingue'),(86239,'Gary Whitta'),(86257,'J.B. Ghuman Jr.'),(86262,'Michael Kang'),(86263,'Michael Kang'),(86264,'Jeffrey Chyau'),(86265,'Jade Wu'),(86267,'Ana Gasteyer'),(86268,'Serinda Swan'),(86269,'Amy Esterle'),(86270,'Joseph Kosinski'),(86271,'Brandi Coleman'),(86272,'Natacha Itzel'),(86273,'Lisa Rotondi'),(86274,'Michael Arnona'),(86275,'Veronica Russell'),(86276,'Sean Boyd'),(86278,'Danny Cosmo'),(86279,'Sean M. Sellers'),(86280,'John Albano'),(86281,'Tony Dezuniga'),(86293,'Robert M. Young'),(86295,'Marc F. Adler'),(86296,'Jason Maurer'),(86297,'Scott Biear'),(86308,'Shari Albert'),(86309,'Catharine Bolz'),(86310,'Connie Britton'),(86311,'Peter Johansen'),(86312,'Elizabeth McKay'),(86313,'Jack Mulcahy'),(86320,'Sean Cameron Michael'),(86329,'Ahn Gil-kang'),(86330,'Lee Beom-soo'),(86332,'Gerry Toomey'),(86343,'Salome Jens'),(86344,'Frances Reid'),(86345,'John Lawrence'),(86347,'Robert Brubaker'),(86349,'Reginald Sheffield'),(86369,'Parley Baer'),(86377,'Karel Fiala'),(86384,'Logan Bartholomew'),(86385,'Richie Havens'),(86389,'Ten Years After'),(86390,'John Sebastian'),(86391,'Sly and the Family Stone'),(86392,'Jimi Hendrix'),(86393,'Canned Heat'),(86394,'Jefferson Airplane'),(86395,'Janis Joplin'),(86397,'Chad Donella'),(86404,'Oliver H.P. Garrett'),(86432,'Dionne Quan'),(86434,'Joe Alaskey'),(86436,'Julia Kato'),(86437,'John Eng'),(86439,'Norton Virgien'),(86442,'Michael J. Reynolds'),(86458,'Franu00e7oise Thouvenot'),(86462,'Kirk Jones'),(86467,'Jay Simpson'),(86468,'Sarah Wayne Callies'),(86474,'Kelly Wolf'),(86475,'Robert Alan Beuth'),(86477,'Claire Keelan'),(86479,'Shaun Dingwall'),(86480,'Rupert Procter'),(86482,'Mark Tonderai'),(86488,'Susan Glover'),(86498,'Gabriel Iglesias'),(86500,'Nicolu00e1s Lu00f3pez'),(86503,'Anang Desai'),(86525,'Paul Tamasy'),(86526,'Aaron Mendelsohn'),(86527,'Norman Browning'),(86528,'Nicola Cavendish'),(86530,'Chilton Crane'),(86536,'Bill Stinchcomb'),(86557,'David Breashears'),(86561,'Polly Noonan'),(86562,'JoBe Cerny'),(86563,'Yasen Peyankov'),(86564,'Teri Cotruzzola'),(86565,'Lucina Paquet'),(86566,'Preston Maybank'),(86567,'Sally Kao'),(86568,'Quincy Wong'),(86569,'George Lugg'),(86570,'Tyler Rostenkowski'),(86571,'Tom Milanovich'),(86572,'Karol Kent'),(86573,'Eddie Bo Smith Jr.'),(86574,'Mary Ann Childers'),(86575,'James Chisem'),(86576,'Joseph F. Kosala'),(86577,'Eric Lane'),(86578,'Roy Hytower'),(86579,'Kwame Amoaku'),(86580,'Len Bajenski'),(86582,'Mindy Bell'),(86583,'Roderick Peeples'),(86584,'Ed Cray'),(86585,'Christopher Glasgow'),(86586,'Marcello Robinson'),(86588,'Dean Teaster'),(86589,'Michele Weisler'),(86591,'Craig Jackson'),(86592,'Amelia Hochberg'),(86593,'Dominic Mango'),(86594,'Linda Melazzo'),(86595,'Linda Rizzuto'),(86596,'Michael Alden'),(86597,'James Giovannetti Jr.'),(86598,'Don H. Julien'),(86602,'Jerry Trimble'),(86616,'Fru00e9du00e9ric Gilles'),(86624,'Collette Wolfe'),(86625,'Amadu Mamadakov'),(86626,'Aziz Ansari'),(86627,'Dave England'),(86633,'Lisa Lu'),(86636,'Aleksandr Bashirov'),(86653,'Carter Jenkins'),(86654,'Austin Butler'),(86655,'Ashley Boettcher'),(86656,'Henri Young'),(86657,'Regan Young'),(86662,'David Sington'),(86668,'Nina Ruslanova'),(86688,'Levan Gabriadze'),(86718,'Viktor Bychkov'),(86784,'Alok Nath'),(86808,'David Haines'),(86812,'Ted Manson'),(86817,'Jeffrey Pratt Gordon'),(86853,'Pyotr Merkuryev'),(86860,'Leonid Barats'),(86884,'Anand Tiwari'),(86892,'Supriya Pathak'),(86903,'Page Joseph Falkinburg, Jr'),(86905,'Caroline Rhea'),(86906,'Ahmet Zappa'),(86907,'Susan E. Novick'),(86919,'Jamie Harrold'),(86920,'Pato Hoffmann'),(86923,'Caroline Williams'),(86929,'Jessica Collins'),(86938,'Tim Ware'),(86969,'Huntley Ritter'),(86994,'Kaki Hunter'),(86996,'Sean O\'Byrne'),(87003,'Curtis Armstrong'),(87007,'Amy Wright'),(87010,'Silvio Muccino'),(87015,'Eduard Fernu00e1ndez'),(87018,'Eddie Mills'),(87019,'Sean Smith'),(87020,'Rachel Wilson'),(87021,'Liza Oxnard'),(87033,'Julie Davis'),(87039,'Nan Martin'),(87051,'Beverly May'),(87055,'Karen Disher'),(87056,'Khamani Griffin'),(87057,'John Hawkinson'),(87059,'Galen T. Chu'),(87066,'Ike Eisenmann'),(87070,'Michael Chernus'),(87073,'Rodney Rowland'),(87079,'Jaleel White'),(87081,'Dave McKean'),(87082,'Jim Mickle'),(87095,'Hugo Armstrong'),(87097,'Neil Dudgeon'),(87099,'Martin Marquez'),(87107,'Mark Fauser'),(87108,'Dayton Callie'),(87112,'Nicholas Mele'),(87115,'Richard Wharton'),(87117,'Cynda Williams'),(87118,'Michael Beach'),(87119,'Earl Billings'),(87121,'Vic Sarin'),(87123,'Patricia Finn'),(87125,'Sada Thompson'),(87127,'Paula Irvine'),(87128,'Kenneth Tigar'),(87129,'Mark Anthony Major'),(87130,'Mark A.Z. Dippu00e9'),(87131,'Lenny Clarke'),(87147,'Sarah Deakins'),(87158,'Tina Illman'),(87167,'Jeannette Sousa'),(87169,'Steven E. Gordon'),(87172,'Mark Millar'),(87173,'Craig Kyle'),(87176,'David Boat'),(87178,'Michael O. Sajbel'),(87179,'Cheryl McKay'),(87180,'Jim Stovall'),(87183,'Mark Young'),(87186,'Alexandra Barreto'),(87191,'Billy Kent'),(87192,'Mike O\'Malley'),(87194,'Christine Adams'),(87208,'Sheila Moore'),(87209,'David Longworth'),(87210,'Robert Koons'),(87220,'Brian Boland'),(87230,'Ali Marsh'),(87243,'Nicole Beharie'),(87255,'Cyndi Lauper'),(87264,'Kristyan Ferrer'),(87265,'Tenoch Huerta'),(87280,'Bellamy Young'),(87281,'Jeffrey Ross'),(87282,'Hudson Leick'),(87287,'Bonnie Aarons'),(87295,'Richard Grieco'),(87296,'Raja Menon'),(87297,'Tannishtha Chatterjee'),(87300,'Barry John'),(87304,'Archana Puran Singh'),(87305,'Ahsaas Channa'),(87310,'Julia Jones'),(87312,'James Parks'),(87314,'Peter Ettinger'),(87317,'Nikki Cox'),(87328,'Akshaye Khanna'),(87332,'Andrew Shaifer'),(87335,'Fernanda Torres'),(87341,'Selton Mello'),(87343,'Leopoldo Serran'),(87360,'Michael Taliferro'),(87361,'Sean Alexander Jefferson'),(87362,'Bryan Anthony Pierre'),(87363,'Chrystee Pharris'),(87371,'Don Orlando'),(87378,'Ayan Mukherjee'),(87386,'Neal Jimenez'),(87388,'Mohammad Amir Naji'),(87389,'Amir Farrokh Hashemian'),(87400,'Brian Bosworth'),(87401,'Paulo Tocha'),(87402,'Evan James'),(87403,'Billy Million'),(87404,'Robert Winley'),(87405,'Demetre Phillips'),(87406,'Magic Schwarz'),(87407,'Walter Doniger'),(87415,'Susan Fleetwood'),(87416,'Charlotte Cornwell'),(87431,'Tiffany Dupont'),(87432,'Stephan Blinn'),(87433,'Mark Andrew Olsen'),(87434,'Tommy Tenney'),(87437,'Amy Paffrath'),(87440,'Chris Carmack'),(87443,'Lynch R. Travis'),(87444,'Sarah Habel'),(87445,'Mia Serafino'),(87447,'Hugh Maguire'),(87452,'Erin Evans'),(87457,'Stefan Schnabel'),(87460,'Simone-Elise Girard'),(87461,'Don Francks'),(87462,'Susan Roman'),(87466,'Souleymane Sy Savane'),(87473,'Clint Ritchie'),(87478,'Kevin Geer'),(87479,'Eugene Butler'),(87480,'James Hall'),(87517,'Willard Waterman'),(87518,'Robin Hughes'),(87537,'Yoon Je-kyoon'),(87545,'Marjorie Reynolds'),(87549,'Pankaj Kapur'),(87564,'Brian Imada'),(87567,'Cody Longo'),(87569,'Tia Mowry'),(87573,'Jessica Greco'),(87575,'Arnold Pinnock'),(87577,'David Ingram'),(87581,'Dan Berendsen'),(87588,'Carlos Mencia'),(87594,'Robert Whitelock'),(87597,'Mark Hengst'),(87605,'Allen Yates'),(87662,'Issei Takahashi'),(87669,'Alexie Gilmore'),(87680,'Michele Soavi'),(87681,'Tiziano Sclavi'),(87687,'Ruth Storey'),(87707,'John Ventimiglia'),(87708,'Gian DiDonna'),(87709,'Dmitri Prachenko'),(87710,'Gregory Perrelli'),(87711,'Joey Hannon'),(87714,'Lionel Mark Smith'),(87722,'Noomi Rapace'),(87723,'Sven-Bertil Taube'),(87736,'Brenna O\'Brien'),(87739,'Eliza Norbury'),(87740,'Tim Dixon'),(87741,'Sterling Knight'),(87742,'Marc Webb'),(87743,'Miguel u00c1ngel Suu00e1rez'),(87751,'Jimmy Hunt'),(87765,'LeAnn Rimes'),(87766,'Greg Lawson'),(87773,'Aishwarya Rai Bachchan'),(87778,'Salvatore Antonio'),(87779,'Megan Fahlenbock'),(87794,'Mark Borchardt'),(87811,'Scott McLean'),(87816,'Anjali Jay'),(87819,'Dawnn Lewis'),(87822,'Damon Wayans Jr.'),(87825,'Clarence Muse'),(87841,'Benny Urquidez'),(87849,'Namrata Shirodkar'),(87879,'Ingrid Bolsu00f8 Berdal'),(87880,'Tomas Alf Larsen'),(87886,'Michael Brainard'),(87907,'Tom Murphy'),(87908,'Mark O\'Halloran'),(87919,'Mark Calaway'),(87948,'Ada Choi'),(87951,'Alexander Chaplin'),(87954,'Scott Haze'),(87956,'D.W. Moffett'),(87957,'Keith Szarabajka'),(88029,'Alison Brie'),(88030,'Alex D\'Lerma'),(88031,'Eddie Velez'),(88032,'Vince Lozano'),(88038,'Rachel Specter'),(88039,'Steven R. Monroe'),(88052,'Milutin Milou0161eviu0107'),(88059,'Tommy Davidson'),(88072,'Brittany Curran'),(88076,'Cody Linley'),(88077,'Alex Zamm'),(88079,'Todd Duffee'),(88082,'Katy Louise Saunders'),(88094,'Robert Hooks'),(88098,'Derek Hughes'),(88105,'Atticus Todd'),(88115,'Barbara Gibbs'),(88117,'Christine Woodruff'),(88123,'Brenda Song'),(88124,'Jesse Plemons'),(88125,'Julius Ritter'),(88126,'Roger Morrissey'),(88127,'Timon Kyle'),(88129,'Michael Elliot'),(88130,'Jordan Moffet'),(88131,'Teresa Caldwell'),(88132,'Jermaine Dupri'),(88133,'Michael Mauldin'),(88134,'Adam Silver'),(88135,'Gregg Winik'),(88138,'Sushmita Sen'),(88142,'Vipul Amrutlal Shah'),(88161,'Debbi Morgan'),(88164,'Luigi Cozzi'),(88167,'Anushka Shetty'),(88183,'Omar Gooding'),(88186,'A.J. Johnson'),(88206,'Katarzyna Sobanska-Strzalkowska'),(88229,'Stoya'),(88298,'Song Young-chang'),(88322,'Liam Boyle'),(88323,'Pat Holden'),(88340,'Chad Fifer'),(88351,'Chen Kuan-Tai'),(88379,'Paul Wilson'),(88392,'Robbie Kay'),(88419,'Julia Zemiro'),(88427,'Serge Cockburn'),(88435,'Carol Hughes'),(88450,'Chuck McCann'),(88460,'Anna Lee'),(88461,'Nana Bryant'),(88474,'Neri Marcoru00e8'),(88506,'Joel Paul Reisig'),(88507,'Justin Isfeld'),(88522,'Charles Lucia'),(88523,'Heidi Kozak'),(88525,'Ben Meyerson'),(88526,'Devin DeVasquez'),(88537,'Erik Holmey'),(88547,'John Speredakos'),(88548,'Brenda Cooney'),(88549,'Heather Robb'),(88550,'Joel Garland'),(88579,'Howard Estabrook'),(88581,'Ben Lyon'),(88582,'John Darrow'),(88583,'Frank Clarke'),(88584,'Roy Wilson'),(88585,'Douglas Gilmore'),(88592,'Maxim Gaudette'),(88593,'Himesh Reshammiya'),(88597,'Jay Paulson'),(88599,'Chauncey Leopardi'),(88619,'Shenae Grimes'),(88620,'Lauren Collins'),(88630,'Jess Liaudin'),(88649,'Bob Steele'),(88672,'Robert Barrat'),(88677,'Nikki Griffin'),(88699,'Steven R. McQueen'),(88702,'J.P. Manoux'),(88706,'Kellie Cockrell'),(88712,'Chris Waitt'),(88716,'John Lowell'),(88728,'Syd Saylor'),(88735,'Horace Murphy'),(88737,'Norm Crosby'),(88755,'Jennifer Van Dyck'),(88812,'Neetu Singh'),(88816,'Noah Ringer'),(88832,'Kyle Rankin'),(88834,'Erin Cottrell'),(88837,'Larry Blamire'),(88838,'Andrew Parks'),(88839,'Susan McConnell'),(88840,'Jennifer Blaire'),(88841,'Dan Conroy'),(88842,'Robert Deveau'),(88843,'Darrin Reed'),(88875,'Antonio Serrano'),(88881,'John Heldabrand'),(88887,'Dayton Lummis'),(88894,'Joseph O\'Conor'),(88895,'Nora Swinburne'),(88902,'Ellen Wong'),(88903,'Satya Bhabha'),(88904,'Bryan Lee O\'Malley'),(88906,'Cyril Delevanti'),(88928,'Nelson Franklin'),(88929,'Jean Yoon'),(88930,'Kristina Pesic'),(88931,'Abigail Chu'),(88932,'Ingrid Haas'),(88933,'Chantelle Chung'),(88934,'Emily Kassie'),(88947,'Sandy Duncan'),(88948,'Steve Vinovich'),(88949,'Mark Harelik'),(88950,'Joel McKinnon Miller'),(88961,'Ben Weber'),(88962,'Chris Payne Gilbert'),(88963,'Nora Burns'),(88965,'John Brandon'),(88966,'Billy Porter'),(88967,'Greg Berlanti'),(88968,'Ronnie Apteker'),(88969,'Daniel Buckland'),(88970,'Ralph Ziman'),(88971,'Dave Allen'),(88979,'Yakima Canutt'),(88995,'Adrianne Palicki'),(89000,'John Ward'),(89012,'John Ince'),(89013,'Henry Roquemore'),(89016,'Lloyd Whitlock'),(89023,'Randy Savage'),(89024,'Ronn Moss'),(89026,'Scott Lobdell'),(89027,'Jared Stern'),(89029,'Makul Wigert'),(89030,'Curtis A. Koller'),(89040,'Ed Nelson'),(89042,'Susanne Blakeslee'),(89043,'Lois Nettleton'),(89045,'Benjamin Glazer'),(89064,'Ralph Truman'),(89065,'Douglas Wilmer'),(89088,'Hedy Lamarr'),(89101,'Louise Beavers'),(89102,'Clarence Wilson'),(89107,'Owen Moore'),(89109,'Hayley Kiyoko'),(89113,'John Robert Hoffman'),(89141,'Jerry Hardin'),(89154,'Prabhu Deva'),(89162,'Ken Clark'),(89163,'Yvette Vickers'),(89186,'Mildred Harris'),(89187,'William H. Brown'),(89193,'Carlo Verdone'),(89208,'Edward Underdown'),(89215,'Angela Clarke'),(89216,'Robert D. Webb'),(89227,'Jack Dietz'),(89239,'Jay Hieron'),(89246,'John Marshall'),(89247,'Kailin See'),(89248,'David Kopp'),(89250,'John Penney'),(89251,'Melinda Clarke'),(89287,'Nathan Parker'),(89300,'Nelson Mandela'),(89313,'Eugene Jackson'),(89320,'Tim Lewis'),(89375,'Travis Aaron Wade'),(89376,'Tina Huang'),(89383,'Molly Hughes'),(89384,'Tino Schaedler'),(89385,'Hattie Storey'),(89386,'Sloane U\'Ren'),(89387,'Elarica Gallacher'),(89395,'Katherine Dieckmann'),(89402,'Bas Rutten'),(89425,'Ronald G. Roumas'),(89426,'Tony Sereno'),(89445,'Noe Hernandez'),(89461,'J.J. Johnston'),(89462,'Kali Hawk'),(89467,'Bob Giraldi'),(89468,'Rick Shaughnessy'),(89469,'Brian S. Kalata'),(89470,'Frank Bongiorno'),(89485,'Tony Halme'),(89498,'Harold House Moore'),(89499,'Jonathan Hernandez'),(89500,'Heather Juergensen'),(89527,'Peter Whitney'),(89532,'Lawrence W. Butler'),(89533,'Willard Van Enger'),(89541,'Richard Bird'),(89545,'Lisa Ann Beley'),(89547,'Brian Dobson'),(89551,'Peter Kelamis'),(89569,'Teda Bracci'),(89582,'Gene Evans'),(89585,'Catherine Lloyd Burns'),(89586,'Lewis L. Russell'),(89597,'Warren Ellis'),(89599,'Eric Bauza'),(89613,'Larry Fine'),(89624,'Adel Bencherif'),(89626,'Reda Kateb'),(89645,'Pu00e9ter Ku00e1lloy Molnu00e1r'),(89660,'Emerson Treacy'),(89666,'Michael Siberry'),(89685,'Fletcher Markle'),(89691,'Frank Puglia'),(89705,'Alexis Georgoulis'),(89706,'Alistair McGowan'),(89708,'Brian Palermo'),(89714,'Ilram Choi'),(89719,'Paolo Montalbu00e1n'),(89727,'Egon Brecher'),(89728,'Cliff Clark'),(89729,'Joseph Crehan'),(89735,'Doodles Weaver'),(89736,'Si Jenks'),(89782,'Horace B. Carpenter'),(89784,'Phyllis Diller'),(89798,'Danny Nussbaum'),(89815,'Anna Wintour'),(89819,'Zachary Gordon'),(89821,'Dimitri Leonidas'),(89822,'Tuppence Middleton'),(89823,'Olly Alexander'),(89824,'Jon Wright'),(89827,'Raphau00ebl Coleman'),(89830,'Arkie Reece'),(89834,'Barry Kelley'),(89837,'John F. Hamilton'),(89847,'Madeleine Sami'),(89857,'Keili Lefkovitz'),(89885,'Quinn Lord'),(89895,'Mona Washbourne'),(89897,'Victor Brooks'),(89906,'Edwin H. Knopf'),(89937,'Reed Howes'),(89938,'Earle Hodgins'),(89973,'Frank Hvam'),(89981,'Lu00e1szlu00f3 Benedek'),(89989,'Leo Gorcey'),(90031,'Kurt Angle'),(90033,'Aly Michalka'),(90037,'James Lapine'),(90039,'Chip Zien'),(90041,'Con Schell'),(90046,'Liz White'),(90060,'Pilou Asbu00e6k'),(90074,'Monte Blue'),(90112,'Ivaylo Geraskov'),(90113,'Katarzyna Wolejnio'),(90116,'Slavi Slavov'),(90117,'James Chalke'),(90130,'Aaron Ashmore'),(90131,'Anne Marie DeLuise'),(90132,'Alejandro Rae'),(90148,'Rick Canelli'),(90149,'Big Boy'),(90159,'Takashi Fujii'),(90163,'Ben Piazza'),(90164,'Erin Blunt'),(90165,'Gary Lee Cavagnaro'),(90166,'Jaime Escobedo'),(90168,'Scott Firestone'),(90169,'George Gonzales'),(90170,'Alfred Lutter'),(90172,'Brett Marx'),(90173,'David Pollock'),(90174,'Quinn Smith'),(90175,'David Stambaugh'),(90194,'Anthony Cortino'),(90198,'Lyman Ward'),(90257,'Jou00e3o Da Costa Pinto'),(90265,'Arturo Ru00edos'),(90266,'Luis de Val'),(90267,'Josep M. Civit'),(90280,'Ryan Warren Smith '),(90281,'Alex Garcia'),(90325,'Luca Calvani'),(90337,'Don Blakely'),(90339,'Joseph Carberry'),(90341,'Danny Comden'),(90356,'Lev Prygunov'),(90369,'Lane Chandler'),(90393,'Andy Hedden'),(90423,'Lindze Letherman'),(90424,'Mario Andretti'),(90429,'Mike McCoy'),(90440,'Ross Noble'),(90444,'Rony Clanton'),(90448,'Rolando Molina'),(90449,'Michael Bentt'),(90451,'Tom Sturridge'),(90453,'Nikita Hopkins'),(90455,'Aryana Engineer'),(90456,'Jamie Young'),(90457,'Lorry Ayers'),(90458,'Mustafa Abdelkarim'),(90459,'Landon Norris'),(90460,'Julien Elia'),(90461,'Leni Parker'),(90462,'Gemma James Smith'),(90463,'Pia Ajango'),(90464,'Matthew Raudsepp'),(90465,'Luis Olivia'),(90466,'Ferelith Young'),(90467,'Andrew Shaver'),(90479,'Matthew Brown'),(90492,'Lynn Shelton'),(90498,'Devon Bostick'),(90505,'Minoru Nishida'),(90508,'Ruairi Robinson'),(90514,'Birgitte Hjort Su00f8rensen'),(90519,'Christopher Curry'),(90525,'Douglas Cheek'),(90526,'Shepard Abbott'),(90527,'Parnell Hall'),(90528,'Laure Mattos'),(90529,'Brenda Currin'),(90530,'Justin Hall'),(90531,'Cordis Heard'),(90542,'Mark Cullen'),(90543,'Robb Cullen'),(90546,'Andrew Schofield'),(90547,'Fraser Ayres'),(90553,'Alejandro Rose-Garcia'),(90555,'Daniel Betances'),(90558,'Julia Max'),(90575,'Daniel Schechter'),(90576,'Jeff Branson'),(90591,'Oren Peli'),(90595,'C.J. Tywoniak'),(90596,'Katie Featherston'),(90597,'Micah Sloat'),(90598,'Mark Fredrichs'),(90609,'Oz Perkins'),(90610,'Vincent Ventresca'),(90624,'John Gregson'),(90625,'George Murcell'),(90627,'Wolf Frees'),(90633,'Gal Gadot'),(90634,'Don Omar'),(90635,'Samantha Vincent'),(90643,'Mervyn Johns'),(90658,'Kristin Bauer van Straten'),(90659,'Chris Hogan'),(90676,'Isabelle Blais'),(90678,'Sylvie Drapeau'),(90682,'Lisa Houle'),(90683,'Georgina Reilly'),(90684,'Tony Burgess'),(90685,'Jeffrey Coghlan'),(90686,'Ambrose Roche'),(90687,'Henry Cole'),(90688,'Jasper Graham'),(90689,'Isabella Smejda'),(90690,'Miroslaw Baszak'),(90691,'Jeremiah Munce'),(90692,'Steve Munro'),(90693,'Lea Carlson'),(90717,'Holly Eglington'),(90718,'Ildiko Ferenczi'),(90719,'Desi Lydic'),(90720,'Elysia Rotaru'),(90721,'Zorianna Kit'),(90722,'Denyc'),(90723,'Kathryn Kirkpatrick'),(90724,'Twan Holliday'),(90725,'Alain Chanoine'),(90726,'Charles Zuckermann'),(90727,'Lara Babalola'),(90728,'Jeff Gulka'),(90729,'Nathan Dashwood'),(90730,'Grayson Szakacs'),(90731,'Robin Nielsen'),(90732,'Jon Johnson'),(90733,'Lee Tichon'),(90734,'Mikey Granger'),(90735,'Aaron Rota'),(90737,'Kelsey McIlroy'),(90739,'Jeremy Crittenden'),(90740,'Janine Duvitski'),(90744,'Karl Girolamo'),(90745,'Vasilios Mantagas'),(90746,'Donny Gray'),(90747,'Hunter Schroeder'),(90748,'Trevor Heins'),(90749,'Andrew Shue'),(90755,'Janet Montgomery'),(90756,'Itai Diakov'),(90758,'John Carchietta'),(90764,'Richenda Carey'),(90769,'David Rose'),(90776,'Roscoe Orman'),(90777,'Alison Bartlett'),(90778,'Orianthi'),(90812,'Scott Mann'),(90813,'Alisen Down'),(90848,'Hugh Feagin'),(90859,'Cali Fredrichs'),(90874,'Ian Freedman'),(91015,'Scott Cochran'),(91022,'Aria Curzon'),(91023,'Sandy Fox'),(91024,'Patti Deutsch'),(91027,'Kevin Rock'),(91030,'Michael Mantell'),(91033,'Paul Cassell'),(91035,'Jessica Brooks Grant'),(91039,'S.A. Griffin'),(91042,'Al Cerullo'),(91050,'Cynthia Flynt'),(91051,'Colleen Callaghan'),(91053,'Wayne Herndon'),(91054,'Sharon Ilson'),(91055,'Jan Foster'),(91056,'Ric Keeley'),(91057,'Ted Zachary'),(91059,'Daniel M. Stillman'),(91060,'Wally Adee'),(91061,'Lawrence Amanuel'),(91065,'Robert DiGrigoli'),(91069,'Brick Mason'),(91071,'Ron Petagna'),(91072,'Carla Raij'),(91073,'Scott Rosenstock'),(91074,'James Sorice'),(91079,'Tom Yeager'),(91090,'Brian D. Lucas'),(91091,'David McRell'),(91092,'Danny Michael'),(91093,'Charles W. Ritter'),(91094,'Joan Rowe'),(91095,'Sean Rowe'),(91096,'Andrew Schmetterling'),(91099,'Randy Vandegrift'),(91106,'Louis Goldman'),(91109,'Nils Johnson'),(91115,'Kyle Rudolph'),(91116,'Robert Sciretta'),(91122,'Dylan Goss'),(91123,'Michael Kelem'),(91124,'Karen E. Etcoff'),(91128,'Lisa R. Frucht'),(91133,'Mark Graziano'),(91136,'Laura Rindner'),(91138,'James Nichols Jr.'),(91142,'Bonnie Greenberg'),(91144,'Shawn Murphy'),(91146,'John Neufeld'),(91147,'Dana Sano'),(91151,'James Fanning'),(91153,'Edward O\'Donnell'),(91156,'Joan G. Bostwick'),(91160,'Anne Gyory'),(91161,'Joe Hartwick Jr.'),(91171,'Deborah Parker'),(91173,'Deborah Ricketts'),(91180,'Valerie Van Galder'),(91197,'Hanna Landy'),(91201,'Diane Bond'),(91203,'Robert \'Buzz\' Henry'),(91215,'Nancy Stone'),(91217,'Rand Brooks'),(91218,'John Daheim'),(91222,'Nelson Olmsted'),(91228,'Martin Fink'),(91234,'Eric Stacey'),(91235,'David Hall'),(91236,'Greg C. Jensen'),(91243,'Charlie Picerni'),(91245,'Arthur Morton'),(91246,'Chris Haynes'),(91249,'Stefan Wenta'),(91251,'Luis Fernando Peu00f1a'),(91252,'Alex Rivera'),(91258,'Helen Funai'),(91260,'Russ Conway'),(91264,'Alejandro Antonio'),(91267,'Chris Cleveland'),(91268,'Ruben Fleischer'),(91269,'Paul Wernick'),(91274,'Mario Loya'),(91302,'Chad Allen'),(91311,'Stefano Spadoni'),(91312,'Vanessa Theme Ament'),(91319,'John Vulich'),(91324,'Tom Villano'),(91326,'Andrew Doucette'),(91327,'Giancarlo J. Sini'),(91328,'Dave Cote'),(91331,'Scott Harper'),(91332,'Dedee Pfeiffer'),(91333,'Randy Mulkey'),(91337,'Sunita Prasad'),(91341,'Stephen Jackson'),(91351,'Sarah Hyland'),(91365,'Judith Guest'),(91366,'Penny Perry'),(91367,'Phillip Bennett'),(91368,'William B. Fosser'),(91369,'Basil Hoffman'),(91370,'Scott Doebler'),(91371,'Quinn K. Redeker'),(91372,'Meg Mundy'),(91373,'Elizabeth Hubbard'),(91374,'Richard Whiting'),(91375,'Barbara Adams'),(91384,'Amelia Heinle'),(91387,'Keone Young'),(91389,'Mars Callahan'),(91392,'Chris Corso'),(91400,'Jessica Napier'),(91402,'Ali Liebert'),(91403,'Chad Krowchuk'),(91404,'Eric Breker'),(91415,'Jenny Lewis'),(91420,'Dion Anderson'),(91421,'Nicholas Wyman'),(91427,'Patrick John Hurley'),(91428,'Daniel Chapman'),(91443,'Kevin Dorman'),(91447,'John Rowe'),(91453,'Edward James Hyland'),(91461,'Michelle Hurd'),(91474,'Elizabeth of Toro'),(91475,'France Zobda'),(91476,'Clifton Jones'),(91480,'Richard Cole'),(91486,'Tommy Dysart'),(91487,'Bruce Kerr'),(91488,'David Bradshaw'),(91489,'June Jago'),(91490,'Kristopher Steele'),(91491,'Howard Eynon'),(91492,'Lorraine Bayly'),(91494,'Enzo Cilenti'),(91495,'Mimi Kennedy'),(91508,'Hassan Johnson'),(91520,'Michiel Huisman'),(91525,'Anthony Johnson'),(91537,'Stephen Lee'),(91563,'Ozzie Devrish'),(91600,'R. H. Thomson'),(91602,'Scandar Copti'),(91603,'Yaron Shani'),(91606,'Tom Hiddleston'),(91607,'Paul Francis'),(91609,'Joe Rogan'),(91612,'Arie Verveen'),(91617,'David Farrar'),(91640,'Valerie French'),(91643,'Katie Jarvis'),(91644,'Grant Wild'),(91645,'Sarah Bayes'),(91657,'Shannon Collis'),(91658,'Kevin McCorkle'),(91662,'Ken Bones'),(91663,'Gerald Sim'),(91670,'Eisa Davis'),(91671,'Colman Domingo'),(91673,'Rebecca Naomi Jones'),(91725,'Clayton Rohner'),(91756,'Hazelle Goodman'),(91768,'Kurt Anderson'),(91775,'Stephen Coleman'),(91776,'Alec Medlock'),(91781,'Ben Tolpin'),(91784,'Brian Patrick O\'Toole'),(91785,'Aaron Spann'),(91827,'Arthur French'),(91833,'Erik Cord'),(91834,'Bill Anagnos'),(91835,'Gary Tacon'),(91836,'Dean Mumford'),(91839,'Greg Goossen'),(91842,'Nancy Parsons'),(91843,'David Correia'),(91849,'Viola Harris'),(91854,'Francisco X. Pu00e9rez'),(91860,'Kip Bartlett'),(91864,'David J. Negron'),(91868,'Richard Waldrop'),(91875,'Bud Alper'),(91882,'Tony Currie'),(91886,'Wayne Griffin'),(91890,'John Laing'),(91891,'Mark L. Mangino'),(91893,'David Blitstein'),(91896,'Dick Wood'),(91901,'John-Clay Scott'),(91903,'Danny Eccleston'),(91905,'Jeff \'Moose\' Howery'),(91906,'Bobby Huber'),(91908,'Gary Muller'),(91912,'John Skotchdopole'),(91913,'Steve Spallone'),(91915,'Ross Reynolds'),(91916,'Deborah Latham'),(91927,'Scott Buckwald'),(91931,'Chris Silver Finigan'),(91932,'Cliff Fleming'),(91937,'Angela Heald'),(91940,'Shauna L. Kroen'),(91941,'Ernie Malik'),(91971,'Friedrich von Ledebur'),(92014,'Hideo Nakaizumi'),(92015,'Lu Chuan'),(92016,'Tong Liu'),(92017,'Yu Cao'),(92018,'Yun Teng'),(92019,'Shannon Eagen'),(92058,'Phil Austin'),(92060,'Candise Lakota'),(92078,'Dorla Bell'),(92079,'Merrilyn Gann'),(92085,'Carrie Wilksen'),(92087,'Tempestt Bledsoe'),(92094,'Paolo De Vita'),(92110,'Tannis Benedict'),(92117,'Chris Ceraso'),(92119,'Larry Brandenburg'),(92121,'William Joseph Elk III'),(92151,'Jeff Clanagan'),(92175,'Tahyna Tozzi'),(92188,'Kathleen LaGue'),(92189,'Doug Swander'),(92206,'Jean Kazemirchuk'),(92210,'Carole Mondello'),(92214,'Alain Brochu'),(92216,'Norman Bernard'),(92220,'Franu00e7ois Grenon'),(92229,'Charles L. Finance'),(92231,'May Leung'),(92234,'Jean Frenette'),(92235,'Stu00e9phane Lefebvre'),(92236,'Mathieu Charest'),(92237,'Franu00e7ois Daignault'),(92246,'Marie-Elaine Bailly'),(92259,'Mark Trafford'),(92263,'Don Jordan'),(92276,'Kohl Sudduth'),(92277,'Alfred De Contreras'),(92278,'Ramiro Fabian'),(92279,'Claude Brooks'),(92280,'Kevin Scannell'),(92281,'Walter Powell'),(92282,'Nathan Anderson'),(92283,'Brogan Roche'),(92284,'Lloyd Berman'),(92285,'Aaron Brumfield'),(92286,'Kimble Jemison'),(92287,'Alex Craig Mann'),(92288,'Laura Grady'),(92289,'Reamy Hall'),(92290,'Michelle Boehle'),(92291,'Kimberly Baum'),(92292,'Megan Denton'),(92293,'Janet Jaeger'),(92294,'Hope Wood'),(92295,'Addie Yungmee'),(92296,'Andrea Toste'),(92298,'Carl Kocis'),(92299,'Tiger Mendez'),(92300,'Steve J. Termath'),(92301,'Kathleen M. Courtney'),(92302,'Tom Reta'),(92303,'Gary Archer'),(92311,'Sid Wilson'),(92312,'Corey Taylor'),(92313,'Joey Jordison'),(92314,'Paul Gray'),(92315,'Chris Fehn'),(92316,'James Root'),(92318,'Craig Jones'),(92319,'Shawn Crahan'),(92320,'Mick Thomson'),(92326,'Constance Marie'),(92327,'Lindsay Hollister'),(92328,'Jim Cody Williams'),(92329,'Steve Artmont'),(92330,'Stacey Morris'),(92331,'Gloria Ponce'),(92332,'Waldo Sanchez'),(92333,'Linda Trainoff'),(92334,'Alicia M. Tripi'),(92335,'Toy Van Lierop'),(92336,'Clinton Wayne'),(92339,'Stacy Christenson'),(92342,'Michele Panelli-Venetis'),(92344,'Marc Baird'),(92345,'Bryan Belair'),(92346,'Michael R. Blaich'),(92347,'Richard Boris'),(92348,'Susan A. Burig'),(92349,'Ed Calderon Jr.'),(92350,'Matt Callahan'),(92351,'Sienna DeGovia'),(92352,'Oscar Delgadillo'),(92353,'Gus Feederle'),(92354,'Jack Forwalter'),(92355,'Scott Garrett'),(92356,'Carmine Goglia'),(92357,'Kenny Hayes'),(92358,'Gary Isbell'),(92359,'Karl J. Martin'),(92361,'Melissa Mollo'),(92362,'Wesley Nordby'),(92363,'Noah Plunkett'),(92364,'David Saltzman'),(92366,'Andrew R. Stern'),(92367,'Louis Farah'),(92369,'Joshua Hunt'),(92370,'Brendan Beebe'),(92371,'Ron Bochar'),(92373,'Kam Chan'),(92374,'Martin Raymond Bolger'),(92375,'Benjamin Cheah'),(92376,'Marko A. Costanzo'),(92377,'Lee Dichter'),(92378,'Juno J. Ellis'),(92379,'Chris Fielder'),(92380,'Lewis Goldstein'),(92381,'Matthew Haasch'),(92382,'Ruth Hernandez'),(92383,'Harry Higgins'),(92384,'Bob Hughes'),(92385,'Dennis Jones'),(92386,'Marissa Littlefield'),(92387,'Todd Milner'),(92388,'Jay Peck'),(92389,'Wyatt Sprague'),(92391,'Nicholas Renbeck'),(92392,'Dennis C. Salcedo'),(92393,'Phil Cory'),(92394,'Richard Cory'),(92402,'Edward Kerr'),(92404,'Joel Kinnaman'),(92416,'Alexandra Rapaport'),(92428,'Samuli Edelmann'),(92429,'Jens Hultu00e9n'),(92432,'Frances Cuka'),(92466,'Kelly G. Crawford'),(92467,'Syd Dutton'),(92468,'Adam Kowalski'),(92469,'Lynn Ledgerwood'),(92470,'Fumi Mashimo'),(92471,'Kelvin McIlwain'),(92472,'Roberto Moreno'),(92473,'Kenneth Nakada'),(92474,'Richard Patterson'),(92475,'Catherine Sudolcan'),(92476,'Mike Wassel'),(92477,'David S. Williams Jr.'),(92478,'Tabby Hanson'),(92479,'Gary Hymes'),(92481,'Alan Oliney'),(92482,'Lynn Salvatori'),(92483,'Spencer Sano'),(92484,'Dennis Scott'),(92486,'Keith Woulard'),(92487,'Tsuyoshi Abe'),(92488,'Kevin Beard'),(92489,'Darryl Chan'),(92490,'Edward Conna'),(92491,'Danny Downey'),(92492,'Jayson Dumenigo'),(92493,'Hiro Koda'),(92494,'Kim Robert Koscki'),(92495,'John Koyama'),(92496,'Will Leong'),(92497,'David Loitz'),(92499,'Casey O\'Neill'),(92500,'Michael Owen'),(92501,'Jean Paul Ruggiero'),(92502,'John Sakas'),(92503,'Felipe Savahge'),(92504,'Jill Stokesberry'),(92505,'Charles A. Tam'),(92506,'Clark Tucker'),(92507,'T.J. White'),(92508,'Lee Whittaker'),(92509,'Lori Loughlin'),(92511,'Ligiah Villalobos'),(92514,'Nancy De Los Santos'),(92534,'Beverly Holloway'),(92557,'John P. Navin, Jr.'),(92558,'Peggy Pope'),(92568,'Sam Rubin'),(92571,'Heidi Armbruster'),(92572,'Betty Gilpin'),(92574,'Marc Wootton'),(92589,'Dwayne Adway'),(92595,'Gregory Tripi'),(92604,'Bastien Benkhelil'),(92611,'Antonio D. Charity'),(92614,'Dawn Olivieri'),(92615,'Graham Shiels'),(92617,'Matthew Willig'),(92619,'Drew Seeley'),(92623,'Matt Adler'),(92647,'Alonzo F. Jones'),(92658,'Byron Minns'),(92681,'Mark Morales'),(92682,'Darren Robinson'),(92683,'Damon Wimbley'),(92684,'Anthony Geary'),(92686,'Darshan Jariwala'),(92691,'Heather Menzies'),(92699,'Hilary Pritchard'),(92706,'Slash'),(92720,'Ben Barzman'),(92721,'Basilio Franchina'),(92726,'Holter Graham'),(92728,'Amy Hargreaves'),(92729,'Spencer List'),(92730,'Pollyanna McIntosh'),(92736,'Mark Gooder'),(92743,'Jamin Winans'),(92744,'Jessica Duffy'),(92745,'Quinn Hunchar'),(92746,'Jeremy Make'),(92747,'Jennifer Batter'),(92748,'Eme Ikwuakor'),(92749,'Shelby Malone'),(92750,'Steve Sealy'),(92751,'Shannan Steele'),(92752,'Steven Brown'),(92753,'Shauna Earp'),(92754,'Marty Lindsey'),(92756,'Bill Allen'),(92758,'Marta Kober'),(92759,'Jamie Clarke'),(92761,'Hard Boiled Haggerty'),(92774,'Lisa Vidal'),(92777,'Tucker Smallwood'),(92782,'Wyatt Cenac'),(92783,'Tracey Heggins'),(92788,'Richard Council'),(92808,'Gabriel Jarret'),(92811,'David Wohl'),(92813,'Suzi Lorraine'),(92820,'Deborah Goodrich'),(92821,'Mike Nomad'),(92822,'Griffin O\'Neal'),(92834,'Randall Rubin'),(92835,'Randall Rubin'),(92836,'Jon Schroder'),(92837,'Jon Schroder'),(92841,'Allison Barron'),(92843,'Darin Heames'),(92855,'Aimee-Lynn Chadwick'),(92856,'Jana Kramer'),(92857,'Shalom Harlow'),(92859,'Sarah Murdoch'),(92861,'Tomiko Fraser'),(92866,'China Chow'),(92877,'Catherine Kresge'),(92899,'Nipsey Russell'),(92900,'Lena Horne'),(92903,'Frank Salsedo'),(92907,'Montagu Love'),(92930,'Bella Darvi'),(92932,'Aaron D. Spears'),(92935,'Don Kempf'),(92936,'Jonathan Hock'),(92937,'David Daniel'),(92940,'Beanie Sigel'),(92949,'Timothy V. Murphy'),(92993,'Trent Haaga'),(92996,'Kevin Howarth'),(93009,'Sundy Carter'),(93015,'Drena De Niro'),(93021,'Jason Lust'),(93022,'Sol Tryon'),(93023,'Bill Straus'),(93035,'Oliver Muirhead'),(93036,'Thomas M. Ficke'),(93043,'Fiona Walsh'),(93046,'Montel Williams'),(93047,'Joshua Seftel'),(93048,'Mark Leyner'),(93051,'Uta Hagen'),(93053,'J.D. Walsh'),(93055,'Sarah Koskoff'),(93105,'Richard Egan'),(93108,'Lars Hjortshu00f8j'),(93111,'Kick Gurry'),(93114,'Leeanna Walsman'),(93125,'John Leyton'),(93129,'Chenoa Maxwell'),(93131,'Nicoye Banks'),(93133,'Christopher Scott Cherot'),(93136,'Charles Binamu00e9'),(93149,'Brian Peck'),(93151,'Joshua John Miller'),(93163,'Niall MacGinnis'),(93169,'Richard Leech'),(93177,'Lee Ross'),(93181,'Tarra Riggs'),(93182,'Johnny McPhail'),(93188,'Lol Crawley'),(93209,'Gary Lydon'),(93210,'Domhnall Gleeson'),(93211,'David Murray'),(93214,'Steven Quale'),(93215,'Anatoly M. Sagalevitch'),(93218,'Jolie Vanier'),(93219,'Jake Short'),(93224,'April Billingsley'),(93225,'Aleksandr Baluev'),(93228,'Louis Herthum'),(93236,'David Dencik'),(93242,'Davina Joy'),(93258,'Michael Lantieri'),(93279,'Bobby Brown'),(93285,'Charlyne Yi'),(93288,'Sarah Gavron'),(93289,'Abi Morgan'),(93290,'Satish Kaushik'),(93291,'Christopher Simpson'),(93292,'Naeema Begum'),(93293,'Lana Rahman'),(93301,'Jun Falkenstein'),(93321,'Dan Gauthier'),(93335,'Fredrik Wikstru00f6m'),(93339,'Young Jeezy'),(93340,'Jowharah Jones'),(93341,'Leland White'),(93344,'Mark Thompson'),(93345,'Ryan Cutrona'),(93346,'Joe McCrackin'),(93347,'Scoot Powell'),(93348,'J. Scott Shonka'),(93349,'Jim Curley'),(93350,'Rigg Kennedy'),(93351,'Graham Galloway'),(93352,'John Cirigliano'),(93353,'Amit Mehta'),(93354,'Steve Loglisci'),(93377,'Janel Parrish'),(93379,'Skyler Shaye'),(93410,'Meir Zarchi'),(93419,'Don Scardino'),(93434,'Lionel Vitrant'),(93466,'Joyce Brabner'),(93477,'Peter Marinker'),(93487,'Kicki Ilander'),(93491,'Will Poulter'),(93494,'Simon Blackwell'),(93501,'John Malloy'),(93518,'John Hargreaves'),(93520,'Don Reid'),(93522,'Nick Bagnall'),(93527,'Kelly Rowland'),(93528,'Letoya Luckett'),(93532,'Laurent Lafitte'),(93535,'Duane Finley'),(93538,'De\'Aundre Bonds'),(93564,'Pihla Viitala'),(93592,'Ju00e9ru00f4me Deschamps'),(93593,'Louise Wallon'),(93594,'Arthur Deschamps'),(93600,'Pete Beaudreau'),(93609,'Osas Ighodaro'),(93615,'Angell Conwell'),(93620,'Welker White'),(93621,'Samantha Ivers'),(93624,'Ray Teal'),(93628,'Harry Harvey'),(93639,'Court Young'),(93643,'Patricia Hamilton'),(93644,'Marilyn Lightstone'),(93645,'Schuyler Grant'),(93646,'Jonathan Crombie'),(93647,'Soledad Villamil'),(93648,'Pablo Rago'),(93649,'Javier Godino'),(93650,'Guillermo Francella'),(93651,'Eduardo Sacheri'),(93652,'Muriel Cabeza'),(93653,'Sonia Doubell'),(93654,'Juliana Kiehl'),(93663,'Kellie Martin'),(93664,'Jesse White'),(93670,'Archie Hahn'),(93679,'Dennis Neal'),(93703,'Steve DuMouchel'),(93704,'Kurt Smildsin'),(93715,'Kas Graham'),(93737,'Lim Kay Tong'),(93738,'Lim Yu-Beng'),(93746,'Kristin Dattilo'),(93752,'John Farrer'),(93778,'Shane Nolan'),(93792,'Louise Linton'),(93793,'Allen O. Battle III'),(93805,'Greer Garson'),(93820,'Reagan Gomez-Preston'),(93821,'Judy Marte'),(93822,'Altagracia Guzman'),(93823,'Silvestre Rasuk'),(93824,'Krystal Rodriguez'),(93825,'Kevin Rivera'),(93826,'Wilfree Vasquez'),(93827,'Donna Maldonado'),(93839,'Sheila Hancock'),(93844,'Eliza Pollack Zebert'),(93846,'Googy Gress'),(93848,'Julian Firth'),(93883,'John Rice'),(93887,'Gary Davis'),(93896,'Mary Anderson'),(93905,'Allan Dwan'),(93911,'Terence Davies'),(93913,'Frank Rautenbach'),(93916,'Regardt van den Bergh'),(93919,'Danny Keogh'),(93922,'Jeff Celentano'),(93925,'Tommy Hinkley'),(93926,'Dean Cook'),(93927,'Kathy Lamkin'),(93929,'David Rountree'),(93934,'Ron Carlson'),(93944,'Paula Raymond'),(93948,'Alan Gifford'),(93949,'David Bauer'),(93958,'J. Patrick McCormack'),(93959,'Peter Taylor'),(93960,'Richard McWhorter'),(93962,'Elven Webb'),(93963,'Giancarlo Cobelli'),(93991,'Soi Cheang'),(93992,'Szeto Kam-Yuen'),(94008,'Allyce Beasley'),(94011,'Bill Melendez'),(94018,'Meisa Kuroki'),(94020,'Peter O\'Farrell'),(94021,'Christopher Benjamin'),(94022,'Matthew Wolf'),(94028,'Robert Taylor'),(94047,'Stan Wertlieb'),(94064,'Svetlana Khodchenkova'),(94066,'Cu00e9dric Chevalme'),(94075,'David Soren'),(94089,'James Lew'),(94092,'George V. Higgins'),(94098,'Gillian Jacobs'),(94100,'Cornelia Guest'),(94103,'Evan Ross'),(94108,'Dennis Iliadis'),(94110,'S.Z. Sakall'),(94128,'Terry Carter'),(94134,'Brian Katkin'),(94135,'Kristy Wu'),(94146,'Bart Johnson'),(94149,'Ron Roggu00e9'),(94155,'Stefan Schwartz'),(94158,'R. Kelly'),(94182,'Marco St. John'),(94185,'Shailene Woodley'),(94195,'Olivia Ballantyne'),(94196,'Kelsey Lewis'),(94202,'Glenn Langan'),(94220,'u00c0lex Pastor'),(94222,'David Pastor'),(94255,'Francesco Scianna'),(94272,'Alfred Brown'),(94292,'Zeke Richardson'),(94293,'Walter Sande'),(94304,'Larry Cedar'),(94309,'Farah White'),(94313,'Suzanne Weinert'),(94325,'Lotte Palfi Andor'),(94337,'William \'Bill\' Phillips'),(94348,'Suzan Crowley'),(94350,'Chris Sadrinna'),(94353,'Ed Lover'),(94384,'Dean Alexandrou'),(94387,'Tanapol Chuksrida'),(94401,'Martin Garralaga'),(94403,'F. Javier Gutiu00e9rrez'),(94421,'Bobby Campo'),(94423,'Shantel VanSanten'),(94424,'Haley Webb'),(94427,'Stephanie Honoru00e9'),(94428,'Lara Grice'),(94429,'Jackson Walker'),(94430,'Erica Gimpel'),(94431,'Waleed Zuaiter'),(94432,'Adrian Martinez'),(94434,'Matthew Cowles'),(94435,'Stuart Rudin'),(94436,'Ward Horton'),(94437,'Meg Gibson'),(94438,'Jill Marie Lawrence'),(94439,'Lisette Bross'),(94440,'Gregory Marcel'),(94441,'Nicolette Hart'),(94442,'Jeff Applegate'),(94443,'Jessica Kaye'),(94444,'Tatiana Maher'),(94445,'Al Roffe'),(94446,'David Skeist'),(94447,'Amanda LaPergola'),(94448,'Tania Santiago'),(94449,'Michael Harkins'),(94450,'Christy Bella Joiner'),(94451,'Robert Ogden Barnum'),(94452,'Paulo Coelho'),(94453,'Sriram Das'),(94454,'Ravi Dattatreya'),(94456,'Kevin Scott Frakes'),(94457,'Terry Dougas'),(94458,'Mitchell Goldman'),(94459,'Simon Horsman'),(94460,'Shara Kay'),(94461,'Charlotte Koh'),(94462,'Charlotte Koh'),(94463,'Charlotte Koh'),(94464,'Charlotte Koh'),(94465,'Corinne Nordmann'),(94466,'Stephan Paternot'),(94467,'Steve Shapiro'),(94468,'Steve Shapiro'),(94469,'u00dana Nu00ed Dhonghau00edle'),(94470,'Stephen Vincent'),(94471,'Jon Gunn'),(94476,'Tunde Adebimpe'),(94482,'Natasha Calis'),(94489,'Tony Hettinger'),(94500,'Jason Hervey'),(94509,'Colton James'),(94511,'Taj Mahal'),(94512,'Niki J. Crawford'),(94531,'Courtney Kocak'),(94534,'Jason Clark'),(94541,'Susan Kirr'),(94543,'Hans Ritter'),(94544,'Tom Rothrock'),(94545,'Matthew Jensen'),(94546,'Felicia Fasano'),(94547,'Joe Pichler'),(94549,'Ben Woolverton'),(94550,'Jim Hutton'),(94561,'Phil Hawn'),(94564,'Niranjan Iyengar'),(94566,'Shiraz Siddique'),(94567,'Zarina Wahab'),(94568,'Sheetal Menon'),(94570,'Christopher B. Duncan'),(94601,'Patrick Ferrell'),(94602,'Michael Delaney'),(94622,'Brian Baumgartner'),(94624,'Tony Papenfuss'),(94627,'Isabell O\'Connor'),(94651,'Jerry Rector'),(94653,'Hoke Howell'),(94657,'Kimko'),(94660,'John Machado'),(94664,'Gary Schmoeller'),(94675,'Mark James'),(94699,'Dejan Angelov'),(94702,'Nikolai Sotirov'),(94740,'Eddie Nestor'),(94742,'Hazel Douglas'),(94743,'Jerry Springer'),(94751,'Stewart Lee'),(94752,'Ernie Lee Banks'),(94753,'Yoram Ben-Ami'),(94766,'Gene Davis'),(94779,'Curt Conway'),(94785,'Arkie Whiteley'),(94787,'Joe Camp'),(94791,'Jake McDorman'),(94792,'Tammin Sursok'),(94793,'Roy Billing'),(94795,'Lulu McClatchy'),(94796,'Natasha Cunningham'),(94797,'Dichen Lachman'),(94798,'Lincoln Lewis'),(94807,'Ken Shorter'),(94809,'Roger Ward'),(94816,'Mark Monroe'),(94818,'Jamie Lynn Spears'),(94820,'Jessica DiCicco'),(94831,'Maggie Greenwald'),(94833,'Eric Fink'),(94836,'Lance Percival'),(94854,'Tom Nowicki'),(94857,'Philip Delancy'),(94864,'Max Martini'),(94884,'Jean Pierre Bergeron'),(94893,'Victor Millan'),(94897,'Dan White'),(94904,'Wendy Worthington'),(94909,'Nicolas Duval-Adassovsky'),(94917,'Mitchell Altieri'),(94918,'Daniel Barber'),(94919,'Keith Bell'),(94928,'Alice Faye'),(94929,'Percy Kilbride'),(94954,'Katie Chonacas'),(94955,'Sebastien Foucan'),(94956,'Craig Conway'),(94958,'Iddo Goldberg'),(94968,'Corey Carrier'),(94972,'Elliot Ngok'),(94978,'Christina Pickles'),(94979,'Keith Scott'),(94983,'Brendan Hill'),(94985,'Gabriel Sunday'),(94987,'Ross Macdonald'),(94991,'Donna Martell'),(94994,'Barbara Morrison'),(94998,'Tim Choate'),(95001,'Simon Templeman'),(95002,'Jamie Elman'),(95012,'Joe De Santis'),(95022,'Trudie Styler'),(95023,'Oliver Milburn'),(95024,'Bobcat Goldthwait'),(95038,'Johanna Braddy'),(95039,'Sofia Vassilieva'),(95042,'Cameron Goodman'),(95046,'David Nathan Schwartz'),(95047,'Graham McTavish'),(95051,'Tom Proctor'),(95054,'Leon Belasco'),(95061,'Andre Rosey Brown'),(95076,'Krist Novoselic'),(95095,'Gertan Klauber'),(95099,'Valerie Leon'),(95101,'Charlie Day'),(95102,'Kaitlin Olson'),(95105,'Borys Szyc'),(95125,'David Lodge'),(95127,'Jerome M. Zeitman'),(95129,'Margaret Nolan'),(95136,'David Henrie'),(95137,'Jonathan Keltz'),(95140,'John Voldstad'),(95142,'Nikoletta Skarlatos'),(95145,'Patricia Healy'),(95166,'Ruth Waldburger'),(95188,'Corwin Hawkins'),(95189,'Kim Wayans'),(95190,'Craig Ryan Ng'),(95191,'Don Diamont'),(95192,'Randy Hall'),(95193,'Doug Kruse'),(95195,'Michael Bofshever'),(95196,'Renee Hicks'),(95197,'Robert Schimmel'),(95198,'Michael Echols'),(95199,'Luanne Crawford'),(95200,'Dominique Jennings'),(95201,'Lisa Mende'),(95202,'Deandre \'Silky\' Russell'),(95203,'Derek Woolley'),(95204,'Diane Little'),(95205,'Erika Monroe'),(95206,'Gloria Grant'),(95207,'Shawn Lusader'),(95208,'Mark Ian Simon'),(95209,'Rafael H. Robledo'),(95210,'Pillow'),(95211,'Michael Wheels Parise'),(95212,'Twist'),(95213,'Bobby Jen'),(95214,'Andrea Evans'),(95224,'Ivan Dixon'),(95227,'Paul Jabara'),(95233,'Peter Murnik'),(95257,'Candi Milo'),(95259,'Mark Tandy'),(95263,'Isobel Elsom'),(95282,'Rachel Nash'),(95299,'Robert Gleckler'),(95311,'Robert Homans'),(95315,'Roman Bohnen'),(95320,'Rodrigo Cortu00e9s'),(95321,'Chris Sparling'),(95322,'Adi Hasak'),(95324,'Michael C. Martin'),(95332,'Maurice Carter'),(95353,'Lil Wayne'),(95356,'Charlie Saxton'),(95357,'Tim Jo'),(95358,'Elvy Yost'),(95360,'Lisa Chung'),(95361,'J.W. Wright'),(95362,'Blair Bomar'),(95363,'Casey Williams'),(95364,'Maggie Maye'),(95365,'Zach Thatcher'),(95366,'Derek Cox-Berg'),(95367,'Matt Hensarling'),(95368,'Cassidy Johnson'),(95370,'Landon Henninger'),(95372,'Michael Cuomo'),(95376,'Nathan McCray'),(95377,'Kai Roach'),(95378,'Chris Copeland'),(95379,'James Hairston'),(95380,'Chance Morgan'),(95381,'Matt Moody'),(95382,'Marley Whistler'),(95383,'Wyatt Adams'),(95384,'Nikka Graff Lanzarone'),(95385,'Bobby Bones'),(95386,'Jonathan Rice'),(95387,'Ryan Ciardo'),(95388,'Will Johnson'),(95389,'Rebecca Petro'),(95390,'Valin Zamarron'),(95391,'Candice Jackson'),(95392,'Manjeri Krishna'),(95393,'Benjamin Kessler'),(95394,'Andrew Glen Rector'),(95395,'Juan Lopez'),(95396,'Evan Butts'),(95397,'Chris Ritchie'),(95398,'Aaron Lemke'),(95399,'Krystal Morton'),(95400,'Julian Riano'),(95401,'Joey Olivares'),(95402,'Joshua Montoya'),(95403,'Nadia Sahari'),(95412,'Samantha McLeod'),(95428,'Peggy McIntaggart'),(95458,'Gary Hardwick'),(95468,'Kelli Williams'),(95469,'Shannon Wilcox'),(95475,'Jason George'),(95481,'Jon Paul Jones'),(95503,'Kia Goodwin'),(95505,'Jaqueline Fernandes'),(95512,'Julie Ege'),(95517,'Justina Machado'),(95519,'Nick Sandow'),(95536,'John Bowe'),(95541,'Jenya Dodina'),(95544,'Sven Severin'),(95550,'Avi Nesher'),(95577,'Jake Canuso'),(95597,'Jack Ging'),(95604,'Daniel London'),(95624,'Shirley Temple'),(95635,'Michelle Nolden'),(95638,'John Pyper-Ferguson'),(95640,'Nicholas Davidoff'),(95641,'Roman Varshavsky'),(95653,'Steven Kampmann'),(95665,'Lennie Hayton'),(95666,'John Gallaudet'),(95682,'Billy Ray Sharkey'),(95686,'Dylan Sprouse'),(95687,'Robert Kenner'),(95691,'Kelly Keaton'),(95696,'Lorna Raver'),(95697,'Dileep Rao'),(95698,'Kevin Foster'),(95712,'Paloma Faith'),(95716,'Ian Pirie'),(95721,'Michelle Tate'),(95723,'Richard Wallace'),(95724,'Bruce Edwards'),(95733,'Rory Mallinson'),(95741,'George Plimpton'),(95747,'Misty Rosas'),(95749,'Catherine Mangan'),(95752,'Edward A. Blatt'),(95757,'Gilbert Emery'),(95758,'Ken Page'),(95770,'Peter Arnett'),(95777,'Bill O\'Reilly'),(95779,'Donald Rumsfeld'),(95785,'Richard Stahl'),(95786,'Matthew L. Healy'),(95789,'Georgina Cates'),(95791,'Natalie Cole'),(95795,'John Gavigan'),(95796,'Dan Martin'),(95797,'Vonte Sweet'),(95805,'Norman D. Wilson'),(95814,'Jeanney Kim'),(95818,'Eric Blakeney'),(95823,'Jane Nerlinger Evans'),(95825,'Randall Slavin'),(95828,'Ashley Burnham'),(95830,'Chris Ubick'),(95832,'Tim Y. Wetzel'),(95833,'Robert Janiger'),(95834,'Gary Krause'),(95835,'Eric A. Norris'),(95836,'Adam Sawelson'),(95838,'Bob Greene'),(95841,'Lucyna Wojciechowski'),(95842,'Joshua Winget'),(95844,'Jim Chesney'),(95846,'Benita Brazier'),(95848,'Robert Foulkes'),(95849,'Kevin Halloran'),(95852,'Vien Hong'),(95866,'Billie Joe Armstrong'),(95867,'Mike Dirnt'),(95868,'Tre Cool'),(95875,'Andrew Daly'),(95885,'Tyler Hanes'),(95896,'Dervla Kirwan'),(95938,'Michael Nader'),(95939,'Brittney Powell'),(95940,'Steve Carlisle'),(95941,'J. Don Ferguson'),(95942,'Kathy Payne'),(95943,'Patrick O\'Moore'),(95959,'Jared Mass'),(95967,'William Edmunds'),(95969,'Jason Hetherington'),(95970,'John Killoran'),(95971,'John Harwood'),(95972,'Hans Petter Moland'),(95975,'Mark Linn-Baker'),(95978,'Kim Sebastian'),(95979,'Louise Stratten'),(95982,'Danae Nason'),(95988,'Jonathan Nation'),(96004,'Tommy Nix'),(96007,'Johnny Reno'),(96010,'Scott \'Carrot Top\' Thompson'),(96015,'Teri Andrzejewski'),(96016,'Adam Berry'),(96017,'Megan Wolfley'),(96018,'Robert Belushi'),(96019,'Marie Blanchard'),(96020,'Zack Garrett'),(96021,'Debra Gordon'),(96022,'J. Matthew Miller'),(96023,'Caroline D\'Amore'),(96024,'Maxx Hennard'),(96025,'Ken Bolden'),(96027,'Ashtin Petrella'),(96028,'Rick Applegate'),(96029,'Deja Kreutzberg'),(96031,'Melissa Lukon'),(96032,'Chris Conroy'),(96033,'Joe Forgione'),(96034,'Kelly Dessoye'),(96035,'Katie Woolridge'),(96036,'Jeff Krajci'),(96037,'Joanna Waldsmith'),(96038,'Natalia Dove'),(96039,'Justin Tully'),(96041,'Robert Strauss'),(96047,'Chase Wright Vanek'),(96053,'Charles Judels'),(96055,'Leon Janney'),(96056,'Kenneth Thomson'),(96060,'Eddie Kane'),(96061,'Tom Wilson'),(96066,'Liam Hemsworth'),(96072,'Jonathan Katz'),(96076,'Meredith Ostrom'),(96082,'Yoko Ono'),(96091,'Carrie Underwood'),(96126,'Christina Weiss Lurie'),(96128,'Leo Won'),(96131,'Tom Deane'),(96133,'Lauren Fernandes'),(96137,'Howland Chamberlain'),(96159,'Richard Wilson'),(96165,'Tom Reese'),(96166,'John Curran'),(96167,'Ian Renwick'),(96172,'Sam Levinson'),(96173,'Steffen Mennekes'),(96175,'Ann Lynn'),(96177,'Linda Hayden'),(96222,'Laurie Collyer'),(96223,'Michelle Hurst'),(96224,'Sandra Rodru00edguez'),(96226,'Patriq Pinheiro'),(96228,'Gary Basaraba'),(96240,'Dick Rich'),(96251,'Louis Forbes'),(96252,'John Alton'),(96253,'Wells Root'),(96258,'Ernest Whitman'),(96281,'James Hicks'),(96283,'Jocelyn Brando'),(96302,'Paul E. Burns'),(96309,'Chase Masterson'),(96310,'Daamen J. Krall'),(96313,'Elizaveta Boyarskaya'),(96321,'Tego Calderu00f3n'),(96322,'Rafael Bu00e1ez'),(96328,'Gauhar Khan'),(96329,'Shazahn Padamsee'),(96330,'Sumeet Darshan Dobhal'),(96343,'Arundathi Nag'),(96345,'P. C. Sreeram'),(96346,'Swini Khera'),(96349,'Molly C. Quinn'),(96357,'Norton Herrick'),(96358,'Brent V. Friedman'),(96369,'Carlos Saura'),(96376,'Thierry Hancisse'),(96389,'Miro Gu00e1bor'),(96401,'Naomi Gaskin'),(96408,'Rosemary Leach'),(96413,'Thierry Fru00e9mont'),(96416,'Xavier Maly'),(96438,'Christopher Sayegh'),(96439,'Nanette Burstein'),(96446,'Kevin Rafferty'),(96463,'Sophie Ross'),(96538,'Ginny Yang'),(96539,'Daryl Edwards'),(96552,'Kamatari Fujiwara'),(96553,'Greg Serano'),(96554,'Mary Mara'),(96555,'Antonio Cupo'),(96585,'Daniel Peacock'),(96591,'Romano Orzari'),(96592,'Manuel Tadros'),(96594,'Alex Ivanovici'),(96595,'Grant Shaud'),(96596,'Roc LaFortune'),(96611,'Barbie Hsu'),(96614,'Song Jia'),(96623,'Richard Dawson'),(96624,'Rachel Boston'),(96625,'Minka Kelly'),(96627,'Andru00e9 Tu00e9chinu00e9'),(96636,'Frank P. Costanza'),(96637,'Hisashi Igawa'),(96669,'Evan McGuire'),(96670,'Liam Hourican'),(96671,'Mick Lally'),(96672,'Michael McGrath'),(96673,'Christen Mooney'),(96674,'Paul Tylak'),(96676,'Tomm Moore'),(96677,'Nora Twomey'),(96678,'Fabrice Ziolkowski'),(96679,'Fabrice Ziolkowski'),(96680,'Kila'),(96699,'Kim Thomson'),(96706,'Lynn Hamilton'),(96716,'William Marshall'),(96719,'Lorna Gray'),(96722,'Byron Foulger'),(96724,'John Tyrrell'),(96733,'Kim Hamilton'),(96735,'Carmen De Lavallade'),(96744,'Victoria Profeta'),(96745,'Stephen Milburn Anderson'),(96746,'David Chameides'),(96753,'Danielle Burgio'),(96787,'Sophie Vavasseur'),(96790,'Gloria Votsis'),(96792,'Robert Buckley'),(96793,'Al Santos'),(96797,'Kathryn Hulme'),(96841,'Matthew Lewis'),(96850,'Don DeFore'),(96851,'James Phelps'),(96862,'Hu Jun'),(96881,'Catherine Carlen'),(96884,'Al Giddings'),(96892,'Shuler Hensley'),(96895,'Stuart Milligan'),(96900,'Renee Faia'),(96901,'Joe La Due'),(96910,'Elayne Barbara Ceder'),(96912,'Joe Lombardi'),(96913,'Ben Hammer'),(96918,'Leticia Bru00e9dice'),(96922,'Rain Phoenix'),(96928,'Johan Libu00e9reau'),(96933,'Dennis Lau'),(96935,'Johan Widerberg'),(96973,'Pedro Armendu00e1riz'),(96974,'Carlo Cecchi'),(96991,'Barbara Coles'),(96993,'Michael Mellinger'),(96997,'Bradford Simonsen'),(97000,'Eric Armstrong'),(97007,'Addison Richards'),(97026,'John Luessenhop'),(97042,'Theresa Harris'),(97049,'Samantha Mumba'),(97051,'Beatrice Miller'),(97055,'Billy Sneddon'),(97058,'Joseph Runningfox'),(97068,'Vincent Guastaferro'),(97085,'Stu00e9phane De Groodt'),(97089,'Ariadne Shaffer'),(97165,'Brian Pettifer'),(97167,'Barbara Hicks'),(97168,'Marsha A. Hunt'),(97170,'Mary MacLeod'),(97172,'Dave Atkins'),(97182,'Betty Hutton'),(97183,'Fredric M. Frank'),(97184,'Theodore St. John'),(97185,'Eric Jacobson'),(97186,'Michael Bloomberg'),(97188,'Steve Schirripa'),(97197,'Zbigniew Walerys'),(97223,'George McKay'),(97226,'Eddie Laughton'),(97257,'Marjorie Bennett'),(97260,'Tangie Ambrose'),(97262,'Jennifer Ventimilia'),(97263,'Joshua Sternin'),(97266,'Gerry Black'),(97267,'Susan Willis'),(97268,'Karl Bury'),(97281,'William Bryant'),(97314,'John Beal'),(97330,'Norman Kaye'),(97331,'Ralph Cotterill'),(97351,'James Taylor'),(97352,'Laurie Bird'),(97369,'Aleksandr Robak'),(97391,'Darryl Cox'),(97405,'Conor Duffy'),(97406,'Natalie Zea'),(97408,'Carmen Mormino'),(97416,'Richard Dormer'),(97430,'Joe Absolom'),(97436,'Derek Lea'),(97446,'James DuMont'),(97447,'Mark Casimir Dyniewicz'),(97466,'Bertrand Roberson Jr.'),(97505,'Jack Gordon'),(97532,'Hisonni Johnson'),(97544,'Mark Zakarin'),(97547,'Wayne Morris'),(97552,'Masami Kosaka'),(97576,'Gemma Chan'),(97579,'Guy Maddin'),(97585,'Talia Zucker'),(97586,'Rosie Traynor'),(97587,'David Pledger'),(97588,'Martin Sharpe'),(97589,'Steve Jodrell'),(97590,'Scott Terrill'),(97591,'Joel Anderson'),(97593,'Tom Tully'),(97598,'Alex Van'),(97599,'Nathalie Boltt'),(97600,'David DeLuise'),(97604,'Kevin Rahm'),(97617,'Ryan Nicholson'),(97618,'David DeCoteau'),(97619,'Linnea Quigley'),(97621,'Brinke Stevens'),(97634,'Josu00e9 Antonio Pu00e9rez Giner'),(97657,'Lyle Bettger'),(97659,'Alan Dexter'),(97684,'Gianni Garko'),(97695,'Peter Kwong'),(97700,'Esther Elise'),(97701,'Fox Harris'),(97708,'Lisa Freeman'),(97718,'Will Hare'),(97719,'Leo Geter'),(97724,'Steve Johnson'),(97725,'Teri Weigel'),(97744,'Anne Marisse'),(97745,'David Baughn'),(97746,'Patch Mackenzie'),(97747,'E. Danny Murphy'),(97748,'E. J. Peaker'),(97749,'Billy Hufsey'),(97750,'Richard Balin'),(97751,'Denise Cheshire'),(97752,'Vanna White'),(97753,'Linda Shayne'),(97754,'Deborah Dutch'),(97772,'Mel Tormu00e9'),(97777,'Ethel Barrymore'),(97778,'Amie Petersen'),(97779,'Daphnu00e9e Duplaix Samuel'),(97780,'Traci Bingham'),(97781,'Reynaldo Rey'),(97787,'Phyllis Boyens'),(97788,'Bill Anderson Jr.'),(97789,'Foister Dickerson'),(97790,'Malla McCown'),(97791,'Pamela McCown'),(97792,'Kevin Salvilla'),(97793,'Sissy Lucas'),(97794,'Brian Warf'),(97795,'Elizabeth Watson'),(97798,'Don Scribner'),(97799,'Carl Horner'),(97802,'Jerod Howard'),(97824,'Conrad Brooks'),(97825,'Joe Fleishaker'),(97844,'Robert Pralgo'),(97845,'Ted Huckabee'),(97854,'David Millbern'),(97856,'Jim Boyce'),(97857,'Pamela Roylance'),(97859,'John Schouweiler'),(97864,'Richard Gabai'),(97869,'Peter Stewart'),(97878,'Richard Lynch'),(97899,'Danielle Petty'),(97902,'Ted Monte'),(97906,'Christine Nguyen'),(97912,'Duane Jones'),(97913,'Judith O\'Dea'),(97914,'Karl Hardman'),(97915,'Marilyn Eastman'),(97916,'Keith Wayne'),(97917,'Judith Ridley'),(97918,'Kyra Schon'),(97919,'Charles Craig'),(97920,'S. William Hinzman'),(97921,'Bill \'Chilly Billy\' Cardille'),(97923,'Jennifer Lauren Grant'),(97925,'Meyer DeLeeuw'),(97927,'Jesse Steccato'),(97939,'Reggie Bannister'),(97942,'Jonathan Teplitzky'),(97943,'Raphael Sbarge'),(97944,'J. Kenneth Campbell'),(97950,'Kathe Mazur'),(97953,'Jonathan Terry'),(97955,'Don Maxwell'),(97956,'Allan Trautman'),(97958,'Michael Sarne'),(97961,'Rex Carlton'),(97964,'Victoria Carroll'),(97966,'John \'Bud\' Cardos'),(97976,'Bill Cross'),(97981,'Creighton Hale'),(97985,'Angelo Rossitto'),(97992,'Jewel Carmen'),(97996,'Walter James'),(97999,'John George'),(98001,'J.C. Nugent'),(98012,'Anita Page'),(98024,'Ethel Grey Terry'),(98045,'John Gilbert'),(98050,'James Lafferty'),(98051,'Bret Roberts'),(98065,'Rasmus Bjerg'),(98071,'Lars Skree'),(98078,'Elizabeth Kaitan'),(98084,'David Baerwald'),(98087,'Kellita Smith'),(98089,'Bobby Cooper'),(98092,'Dennis Fanning'),(98094,'Brett Piper'),(98098,'Matthew Ryan'),(98100,'Rachael Robbins'),(98101,'David Hamburger'),(98102,'William Smith'),(98103,'Richard Ayoade'),(98104,'Julian Barratt'),(98106,'Rich Fulcher'),(98132,'Jim Wynorski'),(98158,'Tamie Sheffield'),(98160,'Fay Baker'),(98166,'Lynn Cartwright'),(98175,'Lee Perkins'),(98186,'Bunny Levine'),(98188,'Peter Paul'),(98189,'David Paul'),(98195,'Manoush'),(98206,'Joe Zaso'),(98214,'Monique Dupree'),(98215,'Matt Gerald'),(98216,'Dean Knowsley'),(98234,'Barbara Bain'),(98271,'Brie Gabrielle'),(98272,'Chloe Bridges'),(98274,'Micah Alberti'),(98275,'Brittany Finamore'),(98276,'Sean Wing'),(98277,'Zachary Abel'),(98278,'Alex Mauriello'),(98279,'Courtney Biggs'),(98280,'Joey Luthman'),(98281,'Sacha Edwards'),(98282,'Saige Ryan Campbell'),(98283,'Kylie Chalfa'),(98284,'Robby D. Bruce'),(98285,'Bella Thorne'),(98286,'Kenton Duty'),(98287,'Julie Janney'),(98288,'Mark Kemble'),(98289,'Sam Endicott'),(98290,'Fiona Goodwin'),(98291,'Marc McTizic'),(98292,'Roxana Ortega'),(98293,'Jamieson Stern'),(98294,'Raven Lexy'),(98295,'Lauren Graves'),(98296,'Brian Graves'),(98297,'Christina Gabrielle'),(98298,'Lahmard J. Tate'),(98305,'Idan Alterman'),(98306,'Morgan Griffin'),(98307,'Brandy Little'),(98308,'Johnny Sneed'),(98310,'Will Keenan'),(98314,'Charlotte Kaufman'),(98317,'Lisa Gaye'),(98329,'Mark Torgl'),(98330,'Rick Collins'),(98333,'Rose Ghavami'),(98334,'Khalid Rivera'),(98355,'Anna-Karin Eskilsson'),(98357,'Pilar Lu00f3pez de Ayala'),(98365,'Veronica Hart'),(98392,'Parvesh Cheena'),(98394,'Affion Crockett'),(98396,'Dean Edwards'),(98397,'Jesse Erwin'),(98399,'Jill Marie Jones'),(98410,'Nefetari Spencer'),(98415,'Nika Williams'),(98420,'Lynn Lowry'),(98429,'Jeremy Maxwell'),(98438,'Kimberly Rowe'),(98450,'Paul Birch'),(98465,'James Barton'),(98471,'Mark Shostrom'),(98473,'Cassandra Gava'),(98482,'Massimo De Rita'),(98495,'Anita Sharp-Bolster'),(98501,'J. Peverell Marley'),(98503,'Hugh Sanders'),(98521,'Floria Sigismondi'),(98522,'Riley Keough'),(98531,'James W. Quinn'),(98533,'Lisa Long'),(98541,'Michael Hoffman Jr.'),(98542,'David P. Barton'),(98554,'Kristopher Logan'),(98555,'Matthew Faison'),(98571,'Eddie \'Rochester\' Anderson'),(98572,'Erika Nann'),(98579,'Tiny Ron Taylor'),(98583,'Juliette Cummins'),(98610,'Elisabeth Brooks'),(98611,'Peter Palmer'),(98622,'Mel Jackson'),(98626,'William-Christopher Stephens'),(98628,'Kim Fields'),(98653,'Valentine Miele'),(98658,'Jason-Shane Scott'),(98664,'Sarah Scott'),(98681,'Todd Rex'),(98714,'Joel D. Wynkoop'),(98723,'John Fallon'),(98751,'Oscar Hammerstein II'),(98770,'Vladimir Medar'),(98772,'Lauren London'),(98775,'Big Boi'),(98784,'Marco Vicario'),(98797,'Hari Rhodes'),(98804,'Ronnie Gene Blevins'),(98818,'Stacey Scowley'),(98865,'Mark Polonia'),(98871,'Janet Tracy Keijser'),(98873,'Greg Brown'),(98877,'Matt Emery'),(98879,'Lisa Loeb'),(98887,'Peewee Love'),(98889,'Thomas Jefferson Byrd'),(98899,'Lisa Rodru00edguez'),(98902,'Bebe Drake'),(98904,'Rickey Smiley'),(98925,'Charles Willeford'),(98927,'Robert Earl Jones'),(98928,'Tom Spratley'),(98944,'Hope Marie Carlton'),(98950,'Michael Harris'),(98953,'Jerry Ferrara'),(98959,'Erika Smith'),(98966,'Virginia Farmer'),(98982,'Ron Smith'),(98994,'Sofiya Smirnova'),(98999,'Ted Alderman'),(99006,'Heather Taylor'),(99007,'Laura Silverman'),(99022,'Richard Conant'),(99024,'Rick Scarry'),(99033,'Gabriel Bartalos'),(99036,'Ted Sorel'),(99038,'Michael Rubenstein'),(99039,'Ron Fazio'),(99089,'Jasae'),(99090,'Don Dowe'),(99093,'Dan Montgomery Jr.'),(99095,'Ken Del Vecchio'),(99096,'Brandon Slagle'),(99154,'Jon Greathouse'),(99156,'Carl Burrows'),(99160,'Richard Carroll Jr.'),(99166,'Will Blagrove'),(99181,'Joanne Boland'),(99182,'Jennifer Baxter'),(99183,'Alan van Sprang'),(99185,'Amy Sloan'),(99206,'JoAnna Garcia'),(99223,'Richard Strobel'),(99231,'John Maynard'),(99235,'Tim Abell'),(99240,'Stephen Langford'),(99245,'Isshin Inudu00f4'),(99248,'Andreas Bareiu00df'),(99249,'Sven Ebeling'),(99250,'Ju00fcrgen Tru00f6ster'),(99251,'Pericles Lewnes'),(99253,'Michael W. Smith'),(99269,'Leonid Yarmolnik'),(99303,'Michel Cru00e9madu00e8s'),(99304,'Marie-Julie Baup'),(99314,'Yu0131lmaz Erdou011fan'),(99330,'George Meeker'),(99339,'Ken Shapiro'),(99347,'Jack La Rue'),(99354,'Danny Smith'),(99358,'Tracy Camilla Johns'),(99359,'Tommy Redmond Hicks'),(99360,'John Canada Terrell'),(99361,'Raye Dowell'),(99366,'Manning Redwood'),(99369,'Tommy Bupp'),(99373,'Tammany Young'),(99378,'Dell Henderson'),(99383,'Helena Kriel'),(99404,'Zander Schloss'),(99410,'Chris Henchy'),(99411,'Karl Gajdusek'),(99414,'Giselle Itiu00e9'),(99426,'Fred Rosenberg'),(99435,'Jonathan Gray'),(99443,'Dante DiPaolo'),(99461,'Cedric Hardwicke'),(99480,'Helena Ronee'),(99496,'Raymond De Felitta'),(99497,'Lee Frederick'),(99520,'Dario Michaelis'),(99583,'Michael Warren'),(99586,'Kim Waltrip'),(99599,'Carla Laemmle'),(99601,'Mike Tristano'),(99619,'Ashlie Rhey'),(99624,'Christina DeRosa'),(99629,'April Breneman'),(99636,'David Alan Graf'),(99639,'Kim Kopf'),(99664,'Benjamin Goldhirsh'),(99665,'Lawrence Inglee'),(99666,'Zach Miller'),(99676,'Thomas Elliott'),(99681,'Robert Axelrod'),(99687,'Zhang Hanyu'),(99693,'Liu Heng'),(99703,'Joanne Chew'),(99709,'Leia Thompson'),(99710,'Vidhu Vinod Chopra'),(99724,'John Martino'),(99725,'Read Morgan'),(99764,'Jamie Martz'),(99778,'Richard Vidan'),(99784,'The Naked Cowboy'),(99788,'Amerigo Tot'),(99803,'Stormy Daniels'),(99816,'Ron Harper'),(99827,'Sheila Bromley'),(99829,'Severn Darden'),(99837,'Tiffany Bolling'),(99841,'Paula Shaw'),(99845,'Anneka Di Lorenzo'),(99846,'Sho Kosugi'),(99856,'Steven Lambert'),(99871,'Daniel Pesina'),(99890,'Tod Andrews'),(99900,'Lieux Dressler'),(99904,'Robert Oppel'),(99905,'Kathleen Byron'),(99906,'John Bloom'),(99919,'Fumio Furuya'),(99932,'Toni Wynne'),(99939,'Henny Youngman'),(99949,'Connie Mason'),(100015,'Akbar Meshkini'),(100026,'Mohammad Reza Darvishi'),(100036,'D.W. Griffith'),(100040,'Carol Dempster'),(100053,'Mario Caiano'),(100062,'Del Zamora'),(100074,'Richard Fraser'),(100076,'Glen Vernon'),(100085,'Paul Kasey'),(100097,'John Carson'),(100107,'Paula Trickey'),(100120,'Jan Rudy'),(100138,'Marcos Mundstock'),(100144,'Richard L. Hawkins'),(100158,'Sebastian Brook'),(100203,'Jim Keltner'),(100218,'Ryan R. Johnson'),(100230,'Mickey Jones'),(100242,'Elize du Toit'),(100245,'Walter Long'),(100258,'Ramiro Alonso'),(100260,'Mike Moroff'),(100261,'Julian Scott Urena'),(100262,'Pu00eda Reyes'),(100263,'Jill Andre'),(100266,'Nancy Paloian'),(100268,'Staci Greason'),(100276,'Mark Soper'),(100295,'Bruce Kimball'),(100299,'George Claydon'),(100337,'Paula Hill'),(100370,'Ryan Northcott'),(100372,'Derek Hamilton'),(100378,'April Betts'),(100381,'Jed Rowen'),(100383,'Mitch Toles'),(100387,'Kimberly Brent'),(100418,'Ned Romero'),(100450,'Barbara Peckinpaugh'),(100463,'Cliff Bemis'),(100464,'Brian Frank'),(100473,'Hal Miles'),(100487,'Debra Lamb'),(100503,'Raymond Martino'),(100507,'Christine Forrest'),(100516,'Max Mayer'),(100519,'Taryn Reif'),(100537,'Rick Irwin'),(100538,'David Douglas'),(100549,'Linda Holdahl'),(100552,'Mary Woronov'),(100560,'Louisa Moritz'),(100561,'Fred Grandy'),(100562,'Leslie McRae'),(100563,'Ben Davidson'),(100564,'Valu00e9rie Quennessen'),(100565,'Nadiuska'),(100566,'Pilar Alcu00f3n'),(100567,'Kerry O\'Malley'),(100582,'Roy Engel'),(100586,'Jon Foo'),(100592,'Vinny Argiro'),(100600,'Deborah Harmon'),(100601,'Audrey Landers'),(100602,'Julia Duffy'),(100614,'Jim McKrell'),(100618,'Kevin Brophy'),(100624,'Avery Schreiber'),(100626,'Brad Rearden'),(100643,'Heather Leigh Davis'),(100646,'William Bumiller'),(100647,'Shari Shattuck'),(100648,'Robert Lipton'),(100650,'Francis X. McCarthy'),(100653,'Vanessa Bell Calloway'),(100657,'Lolo Herrero'),(100663,'Tania Boscoli'),(100700,'Izzy Diaz'),(100701,'Rob Devaney'),(100703,'Ty Jones'),(100705,'Anas Wellman'),(100707,'Mike Figueroa'),(100762,'John P. Fulton'),(100763,'Billy Bevan'),(100771,'Jodie Markell'),(100772,'Brad M. Gilbert'),(100787,'Patrick Barr'),(100799,'George Sawaya'),(100800,'Clive Morgan'),(100847,'Francesca DeLaurentiis'),(100867,'Marika Dominczyk'),(100870,'Jill Schoelen'),(100871,'Charles Lanyer'),(100879,'Don S. Williams'),(100883,'Carolyn Lefcourt'),(100888,'Chuck Jones'),(100891,'David Monahan'),(100893,'Jonathan Pienaar'),(100898,'Ilka Gru00fcning'),(100901,'Josu00e9 Maru00eda Caffarel'),(100905,'Fernando Albizu'),(100914,'John Twist'),(100920,'Harry Woods'),(100930,'Lorenzo Robledo'),(100945,'James Millican'),(100981,'John Kohn'),(100993,'Lynette Bernay'),(100995,'John Kerr'),(101012,'Lisa LoCicero'),(101013,'Clayton Landey'),(101014,'Beatrice Rosen'),(101015,'Chin Han'),(101016,'Osric Chau'),(101017,'Johann Urb'),(101022,'Neal Acree'),(101023,'Fintan McKeown'),(101026,'Rene Rivera'),(101034,'Kerry Shale'),(101037,'Christopher Maleki'),(101045,'Jennifer Siebel Newsom'),(101060,'Danielle Nicolet'),(101061,'Judi Shekoni'),(101065,'Michelle Lee'),(101069,'Michelle Romano'),(101072,'John Moran'),(101088,'Matt Lasky'),(101150,'Carter Stevens'),(101154,'Vanessa del Rio'),(101165,'Daniel Sauli'),(101170,'Peggy Trentini'),(101172,'Michael Cavanaugh'),(101187,'J.P. Davis'),(101208,'Melantha Blackthorne'),(101218,'Deke Richards'),(101221,'Robert Reynolds'),(101231,'Lillian Adams'),(101233,'Michael Winnick'),(101250,'Kim Poirier'),(101251,'Ennis Esmer'),(101252,'Krista Morin'),(101253,'Marc Trottier'),(101254,'Carrie Colak'),(101255,'Inna Korobkina'),(101257,'Shawn Michael Howard'),(101259,'Kathryn Winslow'),(101266,'Bill Ferrell'),(101279,'Brian O\'Connor'),(101298,'Damon Martin'),(101300,'J. Downing'),(101301,'Kerry Remsen'),(101312,'David Booth'),(101313,'Lawrence Hecht'),(101324,'Franco Daddi'),(101330,'Catriona MacColl'),(101377,'Paul Bartel'),(101378,'Don Most'),(101396,'Brenda Strong'),(101397,'Rusty De Wees'),(101399,'Claudia Llosa'),(101400,'Magaly Solier'),(101416,'Michael McMillian'),(101418,'Nelson Landrieu'),(101423,'Artur Smolyaninov'),(101427,'Thomas R. Burman'),(101432,'John Dullaghan'),(101433,'Aleksey Chadov'),(101434,'John Bliss'),(101453,'Michael Stearns'),(101461,'Robyn Hilton'),(101481,'Virginia Christine'),(101484,'Guy Way'),(101485,'Charles R. Jackson'),(101490,'Phillip Terry'),(101491,'Weston Blakesley'),(101493,'Lillian Fontaine'),(101497,'Patricia Laffan'),(101515,'Robinson Devor'),(101518,'Kevin Tancharoen'),(101519,'Naturi Naughton'),(101521,'Kherington Payne'),(101522,'Walter Perez'),(101523,'Rosemary Burrows'),(101529,'Derek Francis'),(101542,'Ti West'),(101543,'Karl Jacob'),(101565,'Madison Riley'),(101573,'Franco Palaggi'),(101608,'Rob Bottin'),(101615,'Frank Pesce'),(101618,'Colin Bain'),(101623,'Corey A. Jackson'),(101625,'Kristi Clainos'),(101653,'Sandy Helberg'),(101658,'Tom Nolan'),(101660,'Ken Gibbel'),(101662,'Lori Sutton'),(101666,'Paul King'),(101687,'Alison Faulk'),(101688,'Leo Moctezuma'),(101690,'Tomu00e1s Fonzi'),(101751,'Aaron Butler'),(101761,'David McLean'),(101767,'Robert Butler'),(101776,'Jim Fyfe'),(101777,'Julianna McCarthy'),(101780,'Margie Impert'),(101781,'James Murtaugh'),(101784,'Meshach Taylor'),(101787,'Darryl Nau'),(101789,'Cody Jarrett'),(101792,'Robert Patrick Brink'),(101801,'Jeff Pustil'),(101802,'Patrick Durham'),(101803,'Chas Lawther'),(101806,'Alexi Wasser'),(101808,'Marc Senter'),(101810,'Benjamin Dickinson'),(101814,'Christopher D. Ford'),(101847,'Lance E. Nichols'),(101850,'Rick Dean'),(101869,'Zoran Hochstu00e4tter'),(101879,'Edgar Bergen'),(101881,'John Arledge'),(101882,'James Bush'),(101883,'Princess Baba'),(101891,'Gus Trikonis'),(101893,'Laura Hippe'),(101903,'Shauna Cross'),(101905,'Monika Schnarre'),(101908,'Maxwell Caulfield'),(101909,'Laurie Rose'),(101919,'Vass Anderson'),(101923,'Adrian Bouchet'),(101948,'Judy Pace'),(101949,'David Gilliam'),(101966,'Monica Gayle'),(101967,'Karen Smith'),(101971,'Gwen Van Dam'),(101974,'Bill Ewing'),(101975,'William Jordan'),(101977,'Brenda Dickson'),(101981,'Robert Lott'),(102002,'Minerva Urecal'),(102005,'Carlotta Monti'),(102008,'Marc Sinden'),(102026,'Jacques Sernas'),(102071,'Adrian Morris'),(102089,'Jason Hall'),(102096,'Antonio Molino Rojo'),(102114,'Germano Natali'),(102119,'Dino Conti'),(102121,'Romano Puppo'),(102153,'Lilu00ed Murati'),(102198,'Yvonne Wilder'),(102199,'Tom Toner'),(102210,'Scott Anthony Levy'),(102221,'Rubu00e9n Ochandiano'),(102231,'Robert D. Bailey'),(102232,'Sandy Howard'),(102262,'Patrick Hines'),(102309,'Kinna McInroe'),(102313,'Tamara Mello'),(102315,'Troy Ruptash'),(102320,'Eli Russell Linnetz'),(102327,'Francis McDonald'),(102328,'Rodd Redwing'),(102330,'Meyer Gottlieb'),(102332,'John Mott'),(102333,'Julieann Getman'),(102335,'Taaffe O\'Connell'),(102336,'Jack Blessing'),(102338,'Marc Siegler'),(102339,'Ernest D. Farino'),(102343,'Allan A. Apone'),(102344,'Robert Skotak'),(102352,'Malek Akkad'),(102365,'Walter Bullock'),(102375,'David Robb'),(102389,'Thunder Levin'),(102400,'Ted Fox'),(102403,'David Sherrill'),(102408,'Noris Campos'),(102413,'Johnny Liska'),(102421,'Mike Hatfield'),(102425,'Anna Mathias'),(102426,'Billy Curtis'),(102429,'Roger Corman'),(102430,'Joseph Conti'),(102434,'Robert Short'),(102436,'Russell Todd'),(102441,'Dick Miller'),(102445,'John Sayles'),(102466,'Stephanie Bertoni'),(102516,'Vincent van Ommen'),(102567,'Randy Oglesby'),(102573,'Frank Miller'),(102576,'John Otrin'),(102578,'Kevin Sifuentes'),(102580,'William Utay'),(102582,'Les Alexander'),(102585,'James Shanahan'),(102595,'Steve Kelso'),(102603,'John Howard'),(102605,'R.J. Robertson'),(102627,'Steve Carver'),(102630,'Marc Toberoff'),(102634,'Katt Shea'),(102669,'Darren Keefe'),(102688,'Jonathan Winfrey'),(102698,'Enya Flack'),(102709,'David Price'),(102710,'Michael Wiseman'),(102714,'Terence Knox'),(102716,'Christie Clark'),(102719,'Ed Grady'),(102720,'Stephen Berger'),(102721,'Ronald Sinclair'),(102723,'Mark Salling'),(102741,'Donald Adams'),(102742,'Patrick Sabongui'),(102744,'Monique Ganderton'),(102746,'Leslie Bradley'),(102748,'Andrew Wheeler'),(102749,'Kimberley Warnat'),(102757,'Mak Wilson'),(102760,'Kate Lynch'),(102761,'Jeff Nuttall'),(102777,'Mel Fair'),(102779,'Tom Lowell'),(102786,'Barack Obama'),(102791,'Eric Sinclair'),(102794,'Mitzi McCall'),(102797,'Robert Marcarelli'),(102803,'Matthew Crouch'),(102804,'Hollis Barton'),(102805,'Chuck Aber'),(102806,'Krystle Connor'),(102809,'John Hall'),(102810,'Mark Harper'),(102811,'Gary M. Bettman'),(102813,'Paul Crouch'),(102814,'Jen Tauritz'),(102815,'David Waelder'),(102817,'James Iglehart'),(102823,'Sandy Ward'),(102840,'Richard deFaut'),(102852,'Andreas Apergis'),(102853,'Paul Hopkins'),(102873,'Patrice Vermette'),(102894,'Jill Kelly'),(102896,'Lorielle New'),(102898,'Honey Lauren'),(102903,'Jean-Paul Ouellette'),(102906,'Brad Blaisdell'),(102933,'Jack LaLanne'),(102934,'Wally George'),(102936,'Bob Zany'),(102937,'Gene Okerlund'),(102967,'Oliver Hodge'),(102977,'Barry McEvoy'),(102980,'Des McAleer'),(102996,'Bostin Christopher'),(103011,'John Philbin'),(103016,'Eleanor Wesselhoeft'),(103017,'Madame Sul-Te-Wan'),(103031,'Eric Nicholas'),(103033,'Tony Armatrading'),(103040,'Daniel Keyes'),(103041,'Robert D. Siegel'),(103050,'Elwood Bredell'),(103057,'Giorgio Armani'),(103060,'Mario Donatone'),(103068,'Harry Hayden'),(103069,'Kenneth Tobey'),(103071,'John Agar'),(103079,'Ann Robinson'),(103080,'Paul Marco'),(103087,'Maidie Norman'),(103099,'Guy Beach'),(103107,'Bill Walker'),(103108,'Douglas Evans'),(103119,'Mapi Galu00e1n'),(103139,'Lubomir Feldek'),(103147,'Giancarlo Previati'),(103185,'David Clyde'),(103190,'Paul Matthews'),(103205,'Peter Carew'),(103219,'Hettie Lynne Hurtes'),(103231,'Virginia Wing'),(103243,'Tony DeGuide'),(103253,'Meghan Jones'),(103259,'Nikie Zambo'),(103268,'Hallie Bird'),(103283,'Mike Antonakos'),(103284,'Randal Edwards'),(103285,'Leah Gibson'),(103286,'Sonya Salomaa'),(103290,'Juliet Reeves'),(103296,'Rich Tretheway'),(103330,'Navid Negahban'),(103336,'Michael Shelton'),(103337,'Michele Morrow'),(103351,'Luke Treadaway'),(103352,'Richard Riddell'),(103373,'Carmen Pelaez'),(103374,'Charles Busch'),(103388,'Joey Pollari'),(103389,'Jacqueline MacInnes Wood'),(103437,'Grace Bustos'),(103457,'Wende Wagner'),(103469,'Virgu00edlio Teixeira'),(103490,'Rafaela Ottiano'),(103500,'Evalyn Knapp'),(103501,'Robert Emmett Keane'),(103503,'Milton Parsons'),(103507,'Wiard Ihnen'),(103529,'Antonio Casas'),(103536,'Jennifer Pearson'),(103545,'Sebastian Arcelus'),(103554,'Isabel Lucas'),(103565,'Josu00e9 Chu00e1vez'),(103572,'Anthony Pena'),(103582,'Terri Treas'),(103593,'Renee Griffin'),(103602,'Mabel Cheung'),(103603,'Alex Law'),(103616,'Mae West'),(103619,'Fuzzy Knight'),(103648,'Lu Yi-Ching'),(103680,'Kate Stafford'),(103707,'Austin Stoker'),(103753,'William Newell'),(103769,'Georgina Spelvin'),(103775,'Hugh Warden'),(103789,'Don Barry'),(103795,'Roberto Contreras'),(103797,'Phil Smoot'),(103804,'Vaughn Armstrong'),(103815,'Lidia Kristen'),(103819,'Ann Muffly'),(103829,'Jason Presson'),(103832,'Christie Lynn Smith'),(103833,'John Aylward'),(103834,'Joe Reegan'),(103835,'Jeff Monahan'),(103853,'Marc Coppola'),(103855,'David Holbrook'),(103856,'Christina Veronica'),(103861,'John Altamura'),(103864,'Cindy Hinds'),(103867,'Andru00e9 Link'),(103868,'Danny Goldberg'),(103872,'Patricia Gage'),(103877,'Una Kay'),(103898,'Jeffrey D. Sams'),(103899,'Joseph Simmons'),(103900,'Darryl McDaniels'),(103901,'Sheila E.'),(103902,'Kurtis Blow'),(103909,'Effie Laird'),(103911,'Nolan Leary'),(103922,'Gladys Blake'),(103925,'Maurice Geraghty'),(103932,'Frank Moran'),(103933,'Tico Wells'),(103938,'Mary Currier'),(103944,'Dondre Whitfield'),(103947,'Otto Hoffman'),(103955,'Jerry Douglas'),(103957,'David Elliott'),(103962,'Pat Ast'),(103967,'Tiffany Helm'),(103982,'Ja\'net DuBois'),(103994,'Sophie Lowe'),(103999,'Jeffrey Falcon'),(104000,'Justin McGuire'),(104001,'Kim De Angelo'),(104002,'Clifford Hugo'),(104004,'Oleg Bernov'),(104005,'Igor Yuzov'),(104006,'Zhenya Kolykhanov'),(104007,'George L. Casillas'),(104008,'Avi Sills'),(104009,'Monti Ellison'),(104010,'Kareem'),(104011,'Paul Szopa'),(104012,'Richard McGuire'),(104013,'Zuma Jay'),(104014,'Jim Siedow'),(104034,'Ben Blue'),(104035,'Godfrey Cambridge'),(104039,'Nina Garbiras'),(104040,'Andrew Tarbet'),(104043,'Achille Manzotti'),(104044,'Everett Burrell'),(104045,'Ramy Zada'),(104046,'Bingo O\'Malley'),(104047,'Jeff Howell'),(104054,'Judson Scott'),(104057,'Christine Healy'),(104059,'Susan Barnes'),(104101,'Michel Charrel'),(104149,'Maria De Aragon'),(104151,'Karyn Dwyer'),(104155,'Jacqueline Dalya'),(104191,'Wiley M. Pickett'),(104195,'Bailey Chase'),(104196,'Sean Cullen'),(104246,'Guido Fu00f6hrweiu00dfer'),(104275,'Danny Hassel'),(104276,'Brooke Theiss'),(104277,'Toy Newkirk'),(104279,'Sue Vanner'),(104308,'Jim Gilliam'),(104309,'Devin Smith'),(104310,'Lee Scott'),(104331,'Lewis Van Bergen'),(104342,'John Laughlin'),(104374,'Michelle Deal'),(104380,'Seidy Lu00f3pez'),(104381,'Joaquu00edn Garrido'),(104382,'Dyana Ortelli'),(104385,'David Haskell'),(104386,'Rebecca Stanley'),(104388,'Linda Shaw'),(104390,'Ty Randolph'),(104391,'Abel Woolrich'),(104392,'Alexandra Day'),(104394,'Cara Lott'),(104428,'Gary Eck'),(104452,'Mikel Angel'),(104458,'Victoria De Mare'),(104481,'Julie \'Jules\' Urich'),(104482,'James Martinez'),(104483,'Richard Yniguez'),(104496,'Katie Nisa'),(104500,'Alex E. Burns'),(104503,'Scott Burkholder'),(104504,'John Aprea'),(104505,'John Vargas'),(104507,'Steve Gomer'),(104521,'Mika Nakashima'),(104561,'Craig Roberts'),(104573,'Norman Fields'),(104578,'Wally K. Berns'),(104593,'Gary Schneider'),(104601,'Vincent Barbi'),(104614,'Domonic Paris'),(104619,'Allie Moss'),(104628,'William Murphy'),(104630,'Don Keefer'),(104632,'Sylvia Hoeks'),(104635,'Natalie Brown'),(104645,'David Andriole'),(104647,'Melanie Good'),(104659,'Lane Shefter Bishop'),(104668,'Robbie Bryan'),(104669,'Gerard Sanders'),(104686,'Jeanne Neilson'),(104687,'Hamilton Dlamini'),(104710,'John Calvert'),(104718,'Per Gessle'),(104730,'Patrick Baby'),(104742,'Megan Crawford'),(104758,'Niall O\'Brien'),(104779,'Nas'),(104781,'Nicolas Kladakis'),(104784,'Caytha Jentis'),(104785,'Kevin Daniels'),(104786,'Jeremy Gumbs'),(104789,'Bonz Malone'),(104791,'Cathy Lee Crosby'),(104795,'Bill Paterson'),(104802,'Phillip Rhys'),(104806,'George Regas'),(104832,'Jack Nasser'),(104882,'Alan Keyes'),(104892,'John Dugan'),(104897,'Allison Graham'),(104903,'Michael Roddy'),(104905,'C.C. Costigan'),(104907,'Lincoln Kilpatrick'),(104912,'Jessica Morris'),(104914,'Kavan Reece'),(104915,'Bob Rumnock'),(104916,'Heidi Paine'),(104920,'Ava Fabian'),(104925,'Linda A. Borgeson'),(104928,'Jeana Wilson'),(104940,'Eva Rueber-Staier'),(104942,'Don Sparks'),(104944,'Simmy Bow'),(104982,'Ofelia Medina'),(104997,'Marlo Thomas'),(104998,'Alexandra Wentworth'),(105000,'Merle Kennedy'),(105002,'Rick Peters'),(105009,'Daniel Duncan'),(105013,'David Crane'),(105047,'Gerald Okamura'),(105059,'International Velvet'),(105060,'Chuck Mitchell'),(105062,'Joseph Sirola'),(105089,'Michael Delano'),(105091,'John C. Broderick'),(105108,'John Gaeta'),(105114,'Ricky Tognazzi'),(105158,'Shane McDermott'),(105159,'Alexandra Bastedo'),(105164,'Kitty Aldridge'),(105173,'Rebecca Budig'),(105174,'Kenn Scott'),(105209,'Bernard Erhard'),(105235,'Adar Beck'),(105236,'Chris Carey'),(105237,'John Lloyd Fillingham'),(105238,'Chukwudi Iwuji'),(105239,'Stuart Hazeldine'),(105240,'Simon Garrity'),(105248,'Gano Grills'),(105262,'Paul Moncrief'),(105298,'George Chuvalo'),(105303,'Fred Melamed'),(105304,'Sari Lennick'),(105305,'Aaron Wolff'),(105306,'Jessica McManus'),(105313,'James Mottern'),(105328,'Franco Bruni'),(105330,'Gino De Rossi'),(105337,'Ray Lovelock'),(105341,'Paolo Paoloni'),(105355,'Franu00e7ois Montagut'),(105361,'Roberta Leighton'),(105363,'Kate Connor'),(105390,'Booth Colman'),(105396,'Zhong-lun Ren'),(105423,'Jacky Heung'),(105440,'Mary Roscoe'),(105452,'Kathryn Scola'),(105455,'Matt McHugh'),(105456,'Pat Moriarity'),(105462,'Geraldine Wall'),(105477,'Bernard Vorhaus'),(105491,'Judith Barker'),(105492,'Stuart Fox'),(105496,'Neil Napier'),(105499,'Danny Blanco Hall'),(105503,'Tom Attenborough'),(105510,'George Taylor'),(105562,'Agnieszka Grochowska'),(105563,'Mads Sju00f8gu00e5rd Pettersen'),(105568,'Edmund Beloin'),(105571,'Jacqueline deWit'),(105581,'Ari Gold'),(105584,'Bret McKenzie'),(105586,'Kenneth W. Richardson'),(105595,'Kevin Dobson'),(105614,'Laurie Reeves'),(105622,'Sam Chew Jr.'),(105623,'Melissa Prophet'),(105624,'Darwin Joston'),(105626,'Alan Rachins'),(105627,'Allene Simmons'),(105628,'Dusty Hill'),(105629,'Frank Beard'),(105630,'Billy Gibbons'),(105632,'Natalie Jones'),(105633,'Michel Ray'),(105634,'Gamil Ratib'),(105635,'John Dimech'),(105636,'Red Skelton'),(105641,'James Patrick Stuart'),(105643,'Jay Oliva'),(105646,'Linda Park'),(105648,'Nat Faxon'),(105649,'Bill Bolender'),(105657,'Richard Christy'),(105659,'Alicia Lagano'),(105668,'Dina Korzun'),(105669,'Michael Rohatyn'),(105685,'Giovanna Mezzogiorno'),(105688,'Bashar Rahal'),(105690,'Alan J. Lam'),(105692,'Julian Vergov'),(105695,'Stanislav Pishtalov'),(105701,'Joe Bays'),(105704,'Melinda Culea'),(105708,'David Dunard'),(105714,'Lucas Fleischer'),(105723,'Joe DeRita'),(105727,'Jake Abel'),(105744,'Tucker Max'),(105745,'Tucker Max'),(105759,'Guy Wilkerson'),(105762,'Jimmy Jean-Louis'),(105775,'Theo Trebs'),(105776,'Bob Marley'),(105777,'Gerard Parkes'),(105778,'Robert Mauriell'),(105780,'Chris Munro'),(105786,'Arron Shiver'),(105788,'Lisa Lampanelli'),(105791,'Charles Andre'),(105797,'Ona Munson'),(105804,'Alan Carney'),(105808,'Julie Lemieux'),(105810,'Selmer Jackson'),(105823,'Alfred Burke'),(105830,'James Kyson'),(105831,'Toni Trucks'),(105832,'Aja Evans'),(105834,'Velislav Pavlov'),(105838,'Emma Booth'),(105843,'Silverio Palacios'),(105844,'Courtney Halverson'),(105860,'Kevin Carraway'),(105864,'Haig Sutherland'),(105868,'Filippo Timi'),(105869,'Corrado Invernizzi'),(105878,'Meren Reddy'),(105880,'LisaRaye McCoy'),(105881,'Da Brat'),(105882,'Neema Barnette'),(105932,'Louis-Josu00e9 Houde'),(105980,'Mohamed Kafi'),(106005,'Ralph Clanton'),(106049,'Jennifer Ellison'),(106052,'Alan Caillou'),(106053,'Richard Robinson'),(106054,'Natasha Ryan'),(106055,'Altovise Davis'),(106056,'Joe Ross'),(106057,'Marcy Lafferty'),(106073,'Christina Whitaker'),(106078,'Robert Miller'),(106096,'Ben Howard'),(106102,'Henry Corden'),(106117,'Thomas Schellenberg'),(106118,'Robert K. Feldmann'),(106119,'David Hart'),(106121,'Noah Keen'),(106145,'Tim Lovelace'),(106147,'Brenna Roth'),(106161,'Noriko Sengoku'),(106165,'Eijiru00f4 Tu00f4no'),(106187,'Lou Martini Jr.'),(106190,'Tom Stedham'),(106193,'Joshua Nelson'),(106219,'Kathy Searle'),(106243,'Mary Ann Schmidt'),(106249,'Jeffrey Rogers'),(106250,'Peter Isacksen'),(106253,'James Beshears'),(106290,'Brian Setzer'),(106321,'Will Janowitz'),(106322,'Bridget Barkan'),(106350,'Giuseppe Cederna'),(106359,'Travis McKenna'),(106370,'Jeff Bowser'),(106377,'Christine Domaniecki'),(106385,'Mark Powley'),(106406,'Luis De Jesus'),(106433,'Dechen Thurman'),(106435,'Gabriel Olds'),(106454,'Jamie Greco'),(106458,'Brittany Petros'),(106460,'Janet Wright'),(106462,'Tirlok Malik'),(106469,'Ted Clark'),(106474,'Marcelo Tubert'),(106480,'Simon Poland'),(106487,'Hilary Shepard'),(106488,'Marcus Aurelius'),(106490,'Stefanie Scott'),(106491,'Mark Griffiths'),(106505,'Lawrence Ryle'),(106506,'Robert F. Simon'),(106514,'Dustin Seavey'),(106532,'Babs Chula'),(106571,'Audrey Betz'),(106578,'Li Yu-Chun'),(106584,'Mary Treen'),(106611,'Paul Brinegar'),(106612,'Michael Bryant'),(106625,'Betta St. John'),(106627,'Basil Dignam'),(106644,'James Van Patten'),(106647,'John Alden'),(106656,'Mirja Turestedt'),(106663,'Edward D. Murphy'),(106669,'Jewel Shepard'),(106703,'Angela Robinson'),(106707,'Eusebio Lu00e1zaro'),(106708,'Stacie Randall'),(106709,'Raquel Krelle'),(106711,'Vince Corazza'),(106712,'Michael Kanev'),(106714,'Kimberly Flynn'),(106726,'Sandy McPeak'),(106728,'Marjean Holden'),(106730,'Branscombe Richmond'),(106733,'Erik Fleming'),(106734,'Catherine Dao'),(106740,'Miriam Byrd-Nethery'),(106745,'Don Wilson'),(106746,'Eb Lottimer'),(106752,'Lawrence Monoson'),(106753,'Richard Brooks'),(106769,'Dehl Berti'),(106772,'Max Wright'),(106776,'Sam Vincent'),(106789,'Ken Camroux'),(106791,'Aida Turturro'),(106793,'Gennifer Flowers'),(106798,'Teal Roberts'),(106800,'Luisa Leschin'),(106805,'Sidney Miller'),(106807,'Deborah Geffner'),(106811,'Lenny Montana'),(106813,'Gloria Hayes'),(106814,'Paulo Araujo'),(106815,'Ty Thomas Reed'),(106816,'Brian O\'Neill'),(106834,'Charles A. Nichols'),(106836,'Alonna Shaw'),(106837,'Cory Everson'),(106839,'Eugene Cernan'),(106840,'Michael Collins'),(106843,'Buzz Aldrin'),(106844,'John Young'),(106850,'Elana Lesser'),(106885,'Delphine Pacific'),(106886,'Christine Lydon'),(106911,'James Black'),(106933,'Sophia Crawford'),(106934,'Anjelah N. Johnson'),(106935,'Kathryn Joosten'),(106936,'Kurt Eichenwald'),(106946,'Jim Young'),(106949,'Andrea Powell'),(106951,'Paul Lazenby'),(106952,'Anna Galvin'),(106955,'Robert Eisele'),(106962,'Steve Bissinger'),(106965,'Adam Harrington'),(106966,'Kathrin Middleton'),(106976,'Ashley Buccille'),(106977,'Jennifer Lee Wiggins'),(106979,'Anthony Harrison'),(107009,'Badja Djola'),(107020,'David Rose'),(107023,'Emil Sitka'),(107028,'John Stanton'),(107033,'Anastasia Griffith'),(107039,'Sacha Bennett'),(107040,'Trevor Blumas'),(107074,'Hy Pyke'),(107078,'David Clover'),(107080,'Tommy Madden'),(107110,'Hiroshi Matsunaga'),(107168,'Stephen Kijak'),(107170,'Jarvis Cocker'),(107171,'Marc Almond'),(107173,'Scott Walker'),(107204,'Johnny de Mol'),(107274,'Richard Rich'),(107275,'Orson Scott Card'),(107285,'Chano Urueta'),(107304,'Spencer Milligan'),(107322,'Henry Strzalkowski'),(107323,'Nick Nicholson'),(107358,'Harriet Owen'),(107362,'Tony Simotes'),(107363,'Jeff Jensen'),(107368,'Daniel Beer'),(107369,'Jeremy Green'),(107370,'Page Hannah'),(107371,'David Beecroft'),(107372,'Howard Berger'),(107373,'Taso N. Stavrakis'),(107375,'Joe Frazier'),(107378,'Darren Morfitt'),(107379,'LeBron James'),(107380,'Cal Macaninch'),(107381,'Joe Renton'),(107388,'Kenneth Fortescue'),(107391,'Eric Young'),(107393,'Orla O\'Rourke'),(107398,'Stuart Bunce'),(107399,'Stephen Russell'),(107400,'Diana Berriman'),(107401,'Diego Matamoros'),(107403,'Nancy Palk'),(107404,'James Middleton'),(107405,'Elliot Levey'),(107406,'Don Henderson Baker'),(107407,'Andrew Pifko'),(107408,'David Burke'),(107411,'Nicolas Van Burek'),(107412,'William Pappas'),(107414,'Philip Saville'),(107415,'Chris Chrisafis'),(107416,'Sandy Pearl'),(107417,'John Clyde Wagner'),(107418,'Ian Brock'),(107419,'Collin Niemi'),(107420,'Carolyn \'Cal\' Loucks'),(107437,'Braeden Lemasters'),(107444,'Tommy Kelly'),(107445,'Ann Gillis'),(107446,'Phil Lord'),(107447,'Michel O. Scott'),(107448,'Simon Baron-Cohen'),(107449,'Temple Grandin'),(107450,'Roy Richard Grinker'),(107451,'Rowan Isaacson'),(107452,'Rupert Isaacson'),(107453,'Kristin Neff'),(107462,'Maia Danziger'),(107474,'Arthur Angel'),(107482,'Richard W. Haines'),(107489,'Garret Sato'),(107515,'Rau00fal Esparza'),(107546,'Tania Nolan'),(107549,'Ward Costello'),(107550,'Warrick Grier'),(107561,'Mido Hamada'),(107568,'Misayo Haruki'),(107602,'Jeff Beck'),(107617,'Smokey Robinson'),(107630,'William Phillips'),(107668,'Katsuhito Ishii'),(107678,'Almira Sessions'),(107700,'Tom Egeland'),(107704,'Rodrigo Blaas'),(107706,'Nina Rappaport'),(107709,'Chris Bisson'),(107710,'Sally Bankes'),(107711,'Peter Ash'),(107712,'Jinder Mahal'),(107713,'Jamila Massey'),(107714,'Sushil Chudasama'),(107715,'Katy Clayton'),(107716,'Louisa Eyo'),(107717,'Dalu Solanki'),(107718,'Rony Ghosh'),(107719,'Vijayanti Uma Chauhan'),(107720,'Dmitriy Kiselev'),(107722,'Grigoriy Dobrygin'),(107725,'Harmage Singh Kalirai'),(107726,'Roopesh Parekh'),(107730,'Tran Anh Hung'),(107735,'Caroline Carver'),(107754,'David Dennis'),(107765,'Gabriel Cowan'),(107770,'B. J. Novak'),(107771,'Carlos Fidel'),(107775,'Zhang Jia-Yi'),(107789,'Bogdan Koca'),(107791,'Kelly Stables'),(107810,'Aleks Paunovic'),(107824,'Sergey Shnurov'),(107874,'Joanna Brodzik'),(107890,'Andrzej Pieczynski'),(107939,'Jocko Sims'),(107943,'Klu00e1ra Issovu00e1'),(107969,'Mike Bodnar'),(107982,'Ronald G. Joseph'),(108026,'Sachio Sakai'),(108028,'Kokuten Ku00f4du00f4'),(108036,'Shawn Prince'),(108037,'Josh Berry'),(108072,'Ruba Nadda'),(108074,'Jennifer Tung'),(108100,'Richard Karron'),(108101,'Betty Bronson'),(108102,'Carmel Myers'),(108111,'Tess Panzer'),(108116,'Jeff Werner'),(108135,'Gene Witham'),(108143,'Richard Bryce Goodman'),(108145,'Robert Shelly'),(108146,'Clyde E. Bryan'),(108147,'Jeremy Knaster'),(108152,'Gary Preece'),(108172,'John Myhers'),(108180,'Lou Walker'),(108188,'Clyde Jones'),(108210,'Ryan Slater'),(108212,'Brian Wagner'),(108213,'Isabella Hofmann'),(108216,'Siddharth'),(108217,'Jerry Rees'),(108247,'Austin Highsmith'),(108253,'Katie Lowes'),(108277,'Ed Bishop'),(108299,'William Hudson'),(108302,'Matt Holland'),(108333,'Rob Machado'),(108398,'Manny Tapia'),(108399,'Brian Bowles'),(108437,'Chris Ferreira'),(108438,'Steve Van Wormer'),(108461,'Valentine Nonyela'),(108497,'David Caffrey'),(108532,'Scott Elrod'),(108534,'Adam Butcher'),(108542,'E-40'),(108562,'Lisa Ann'),(108579,'Penny Downie'),(108588,'Darri Ingolfsson'),(108620,'Amanda Walker'),(108635,'Susan Isaacs'),(108637,'Nigel Stock'),(108656,'Angela Allen'),(108661,'Chester Bennington'),(108696,'Susie Abromeit'),(108699,'Scott Anthony Leet'),(108700,'Eileen Dietz'),(108701,'Helen Wilson'),(108716,'Kelly Hutchinson'),(108717,'Jim True-Frost'),(108725,'Jenny Robinson'),(108741,'Robert Milo Andrus'),(108753,'Kim Gatewood'),(108765,'Brett Forbes'),(108768,'Patrick Rizzotti'),(108774,'Michael Reilly Burke'),(108775,'Cherie Currie'),(108782,'Stephen Storer'),(108801,'Sion Michel'),(108820,'Sam Benson'),(108842,'Henri Magalon'),(108846,'J.D. Zeik'),(108882,'Cameron Hamza'),(108889,'Jay Harrington'),(108890,'Harvey Atkin'),(108892,'Geoffrey Pounsett'),(108894,'Yanna McIntosh'),(108908,'Josep Maria Domu00e8nech'),(108916,'Rooney Mara'),(108919,'Chris Riggi'),(108920,'Brea Bee'),(108922,'Suzanne Savoy'),(108923,'Wayne Pyle'),(108924,'Arthur Dignam'),(108939,'Jeremy Foley'),(108943,'Bill Capizzi'),(108952,'Mike Disa'),(108982,'Emmanuel Gateau'),(108986,'Helen Westley'),(108988,'k.d. lang'),(109001,'Au00edda Bortnik'),(109007,'Jack Kandel'),(109014,'Sunil Malhotra'),(109016,'Cary Solomon'),(109017,'Chuck Konzelman'),(109024,'Purva Bedi'),(109025,'Deep Katdare'),(109026,'Piyush Dinker Pandya'),(109032,'General Fermon Judd Jr.'),(109046,'Tiya Sircar'),(109060,'Kang Shin-il'),(109085,'Ugur Yu00fccel'),(109086,'D\'Urville Martin'),(109088,'Douglas Fairbanks'),(109100,'David Jean Thomas'),(109102,'Josiah Trager'),(109109,'Rosie Fellner'),(109114,'Timothy Speed Levitch'),(109129,'Myke Michaels'),(109137,'Bergu00fczar Korel'),(109144,'Damian Young'),(109145,'Josu00e9 Pu00e9rez'),(109151,'Jaime Ray Newman'),(109156,'Katia Winter'),(109157,'Steve Furst'),(109158,'David Blakeley'),(109167,'Tony Cook'),(109174,'Lea Coco'),(109180,'Tony Campisi'),(109183,'Jonathan Klein'),(109189,'Loyd Price'),(109190,'Christopher Sadler'),(109205,'Owen Best'),(109241,'George Fiala'),(109245,'John Wright Jr.'),(109255,'Leonard Maltin'),(109319,'Nikki Amuka-Bird'),(109322,'Jefferson Hall'),(109335,'Luca Angeletti'),(109340,'Stu00e9phane Kazandjian'),(109365,'Greg Behrendt'),(109372,'Tony London'),(109379,'Howard Grace'),(109383,'Clint Dyer'),(109388,'Tim Major'),(109405,'Ayn Rand'),(109410,'Joanne Woodward'),(109419,'Ken Takemoto'),(109423,'Vic Chao'),(109425,'Leslie Garza'),(109429,'Zhongjun Wang'),(109432,'Li Bingbing'),(109436,'Ying Da'),(109438,'Xavier Samuel'),(109439,'Kieran Darcy-Smith'),(109441,'Chris Massoglia'),(109453,'Ward Kimball'),(109473,'Matthieu Boujenah'),(109474,'Damien Jouillerot'),(109513,'Alexandra Daddario'),(109514,'Rick Riordan'),(109525,'Sean Hennigan'),(109529,'Scarlett McAlister'),(109541,'Chris Denk'),(109542,'Christopher Yost'),(109545,'Tony Bellette'),(109546,'Chris Betts'),(109560,'Gabourey Sidibe'),(109561,'Sherri Shepherd'),(109562,'Stephanie Andujar'),(109563,'Chyna Layne'),(109564,'Amina Robinson'),(109565,'Xosha Roquemore'),(109566,'Angelic Zambrana'),(109567,'Aunt Dot'),(109568,'Nealla Gordon'),(109569,'Grace Hightower'),(109570,'Barret Helms'),(109571,'Susan Taylor'),(109572,'Kendall Toombs'),(109573,'Alexander Toombs'),(109574,'Cory Davis'),(109575,'Rochelle McNaughton'),(109576,'April Adams'),(109619,'Lucie Laurier'),(109621,'Rekha'),(109640,'Doug Atchison'),(109641,'J.R. Villarreal'),(109649,'Matt Stern'),(109650,'Julian Lewis Jones'),(109651,'Adjoa Andoh'),(109652,'Marguerite Wheatley'),(109653,'Patrick Lyster'),(109667,'Ilia Volok'),(109669,'Fahim Fazli'),(109670,'Said Faraj'),(109686,'Flex Alexander'),(109687,'Mike Batayeh'),(109692,'David E. Talbert'),(109693,'Brian Levinson'),(109695,'Jeffrey W. Byrd'),(109708,'Bill Burr'),(109713,'Rita Blanco'),(109724,'Perc Launders'),(109740,'Alysia Reiner'),(109741,'Kate Krieger'),(109745,'Lee Toland Krieger'),(109750,'Conrad Coleby'),(109751,'Steve Harman'),(109754,'Jim Thompson'),(109761,'Burke Byrnes'),(109762,'Jan Munroe'),(109764,'Jimmy Noonan'),(109765,'Richard Holden'),(109777,'Eva Novak'),(109785,'Krystal Mayo'),(109786,'Alex Feldman'),(109787,'Michael Showers'),(109789,'Eric Kelly McFarland'),(109790,'Jabari Thomas'),(109794,'William Morse'),(109799,'Luis Conte'),(109802,'Amy Keys'),(109813,'Xu Jiao'),(109833,'Peter Ferdinando'),(109857,'Thor Freudenthal'),(109858,'Kayla Ewell'),(109861,'Jamie Thomas King'),(109865,'Sydney Tafler'),(109867,'Jessica Carlson'),(109868,'Morgan Saylor'),(109869,'Kristen Schaal'),(109870,'Tom Woodruff Jr.'),(109871,'Drew Rin Varick'),(109872,'Darren Shan'),(109874,'Dominic Mafham'),(109887,'Caroll Spinney'),(109897,'Ethel Merman'),(109900,'Judith Drake'),(109901,'Robert Gallo'),(109902,'Kelly Albanese'),(109905,'Lance Kawas'),(109941,'Kristen Quintrall'),(109942,'Jenna Craig'),(109943,'Justin Jones'),(109945,'Martin West'),(109957,'Gilman Rankin'),(109978,'Ian Fitzgibbon'),(109980,'Alan Moloney'),(109981,'Susan Mullen'),(109984,'Billy Brown'),(109985,'Dan Angel'),(109988,'Sheena Easton'),(109993,'Robert Lewis Bush'),(109994,'Gregory Alpert'),(109996,'Clifford A. Pellow'),(110001,'Phil Collins'),(110014,'Christina Hendricks'),(110018,'David Lipper'),(110019,'Stephen J. Cannell'),(110027,'Darlene Sellers'),(110066,'Tony Banks'),(110068,'Ryan Dunn'),(110074,'Oliver Stokes'),(110075,'Paul Bazely'),(110076,'Nicholas Burns'),(110080,'Sheridan Smith'),(110101,'Knut Walle'),(110104,'John Sigurd Kristensen'),(110122,'Antonio Mora'),(110141,'Alex Du00e9sert'),(110144,'Puneet Issar'),(110171,'Casey Gooden'),(110172,'Anand Upadhyaya'),(110173,'Carrie Crawford'),(110183,'Nate Rubin'),(110186,'Laura Stone'),(110198,'Tara Sharma'),(110204,'Trevor Bardette'),(110207,'Carlo Tricoli'),(110245,'Catherine Black'),(110246,'Jack Kyle'),(110249,'Mara LaFontaine'),(110261,'Seamus Tierney'),(110262,'Richard Conkling'),(110276,'Mark Viniello'),(110299,'Yoshitaka Zushi'),(110310,'Tatsuo Matsumura'),(110315,'Donal Gibson'),(110316,'Judy Kuhn'),(110319,'George Roubicek'),(110380,'Colin Powell'),(110393,'Steve Caballero'),(110402,'Gary Waddell'),(110411,'Harry Lawrence'),(110422,'Pip Miller'),(110427,'Kriv Stenders'),(110436,'Lee Paul'),(110446,'Alex Blatt'),(110472,'Chad Willett'),(110475,'Brett Dier'),(110476,'Sean O. Roberts'),(110485,'Peter Gwynne'),(110507,'You Yong'),(110508,'Yang Liu'),(110525,'Kett Turton'),(110532,'George Bamber'),(110533,'Nou00ebl-Nou00ebl'),(110539,'Renata Vanni'),(110542,'Ben Gold'),(110548,'Kristin Fairlie'),(110550,'Max Morrow'),(110559,'Chris Botti'),(110562,'James Still'),(110564,'Maurice Sendak'),(110610,'David Diaan'),(110615,'Prasanna Puwanarajah'),(110617,'Yousef Shweihat'),(110618,'Cyrus Nowrasteh'),(110619,'Betsy Giffen Nowrasteh'),(110629,'Rana Abboot'),(110635,'Christopher Emerson'),(110636,'John Di Crosta'),(110643,'Jill Wilfert'),(110654,'Stan Freberg'),(110695,'Majid Majidi'),(110696,'Bahare Seddiqi'),(110697,'Hu00e9ctor Lu00f3pez'),(110702,'B. Lenin'),(110723,'Shreeram Lagoo'),(110726,'Joseph Green'),(110727,'Virginia Leith'),(110729,'Adele Lamont'),(110730,'Bonnie Sharie'),(110731,'Paula Maurice'),(110732,'Bruce Brighton'),(110733,'Arny Freeman'),(110734,'Fred Martin'),(110735,'Lola Mason'),(110736,'Doris Brent'),(110737,'Audrey Devereal'),(110738,'Eddie Carmel'),(110742,'Tika Sumpter'),(110743,'Stephen Boss'),(110800,'Alastair Duncan'),(110801,'Lisa Vischer'),(110802,'Kristin Blegen'),(110803,'Shelby Vischer'),(110804,'Jim Poole'),(110805,'Sarah Catherine Brooks'),(110806,'Paige Craig'),(110807,'Adam Frick'),(110808,'Chris Geiger'),(110809,'Michael Harrison'),(110810,'Amy Howard'),(110833,'Stephen Volk'),(110834,'John Murlowski'),(110838,'Chris Chappell'),(110872,'Gerard Monaco'),(110873,'Igor Kovalyov'),(110876,'Rachel Goldenberg'),(110877,'Sandra Seacat'),(110884,'Michael-Leon Wooley'),(110885,'Jennifer Cody'),(110887,'Jane Wheeler'),(110888,'Giancarlo Caltabiano'),(110889,'Garth Gilker'),(110902,'u00d3lafur Darri u00d3lafsson'),(110920,'Richard O\'Barry'),(110927,'Penn Badgley'),(110928,'Nancy Linehan Charles'),(110929,'Marcuis Harris'),(110930,'Skyler Samuels'),(110931,'Blue Deckert'),(110980,'Josif Tatiu0107'),(110990,'Tamara Jolaine'),(110999,'Joe Nemmers'),(111000,'David Blackwell'),(111002,'Brady Coleman'),(111009,'Cassandra L. Small'),(111010,'Kurt Cole'),(111016,'Gabriel Luna'),(111032,'Goran Jevtiu0107'),(111041,'Helen Ingham'),(111048,'Dante Di Loreto'),(111050,'Paul Lister'),(111052,'Meghan C. Rogers'),(111058,'Nikola u0110uriu010dko'),(111078,'Denis Forest'),(111080,'Patrick Bristow'),(111081,'Tommy De La Cruz'),(111085,'Jean-Jacques Mantello'),(111086,'Francois Mantello'),(111087,'Christophe Jacquelin'),(111088,'Gavin McKinney'),(111090,'Javier Botet'),(111091,'Claudia Silva'),(111092,'Alejandro Casaseca'),(111100,'Chico Accioly'),(111103,'Caio Gullane'),(111104,'Fabiano Gullane'),(111116,'Matthew Rauch'),(111118,'Terry McMillan'),(111122,'Charlie Finn'),(111164,'Tori Amos'),(111176,'Alex Michaeletos'),(111177,'Mary Makhatho'),(111178,'Nthabiseng Kenoshi'),(111179,'Jennifer Steyn'),(111180,'Nicky Rebello'),(111181,'George Acogny'),(111185,'Long Nguyen'),(111187,'Kevin LaRosa'),(111195,'Jamie Harris'),(111198,'Oscar Rowland'),(111203,'James Downing'),(111206,'Olga Fonda'),(111212,'Michael O. Gallant'),(111213,'Frankie Pine'),(111214,'Hector Elias'),(111243,'David Backus'),(111247,'Alan Cohn'),(111248,'Afdlin Shauki'),(111326,'Gwen Nelson'),(111334,'Willis Hall'),(111335,'Keith Waterhouse'),(111337,'Beverly Leech'),(111383,'Danny Goldman'),(111385,'Rachelle Carson'),(111387,'Jim Antonio'),(111402,'Richie Sambora'),(111419,'James Holden'),(111427,'Ivan Cotroneo'),(111431,'Audrey Long'),(111437,'David Fahm'),(111446,'Justin Rice'),(111448,'Michael LaBash'),(111451,'Matt Corboy'),(111454,'Shishir Kurup'),(111455,'Katy Perry'),(111456,'Michael L. Sale'),(111457,'Erik Polczwartek'),(111462,'D. Ross Lederman'),(111464,'Richard Lane'),(111466,'Mona Marshall'),(111467,'April Stewart'),(111488,'Tyler MacDuff'),(111489,'Buck Kartalian'),(111513,'Yvette Nicole Brown'),(111514,'David Pressman'),(111588,'J Blakeson'),(111631,'Sophie Nyweide'),(111651,'Stephen Hansen'),(111652,'Bart Voitila'),(111656,'Mimi Rose'),(111661,'Waris Dirie'),(111662,'Liya Kebede'),(111667,'Damien Luvara'),(111678,'Thomas Middleditch'),(111679,'Edmund Lyndeck'),(111680,'Pamela Shaw'),(111683,'Jason Mantzoukas'),(111684,'Lennon Parham'),(111685,'Kim Shaw'),(111686,'Jim Field Smith'),(111691,'Hidetaka Yoshioka'),(111693,'Adam Boyer'),(111710,'Kavi Raz'),(111713,'James Bulliard'),(111714,'Al Green'),(111715,'Jenny Parsons'),(111716,'Eric Aronson'),(111717,'Paul Stanton'),(111739,'Kate Dollenmayer'),(111745,'Frank Sebastiano'),(111757,'Jonas Hu00e4mmerle'),(111759,'Nic Romm'),(111762,'Mercedes Jadea Diaz'),(111766,'Nick Villiers'),(111786,'Bengt C.W. Carlsson'),(111801,'Eoin Macken'),(111809,'Jazz Mann'),(111817,'Damon D\'Oliveira'),(111827,'Fred Graham'),(111832,'Annalee Autumn'),(111837,'Don Wycherley'),(111838,'Lola Larson'),(111841,'Trina Parks'),(111846,'Bryan Coleman'),(111871,'Craigus R. Johnson'),(111872,'Helen Martin'),(111873,'Lou B. Washington'),(111875,'Al Roker'),(111876,'Judi Barrett'),(111877,'Ron Barrett'),(111879,'Andrew Stirk'),(111887,'Megan Blake'),(111893,'John Coven'),(111904,'Harry Colomby'),(111907,'Norman Steinberg'),(111920,'Cindy Busby'),(111921,'Grayson Russell'),(111922,'Robert Capron'),(111923,'Karan Brar'),(111924,'Ryan Grantham'),(111925,'Jake D. Smith'),(111926,'Harrison Houde'),(111927,'Samantha Page'),(111928,'Talon Dunbar'),(111929,'Adom Osei'),(111930,'Donnie MacNeil'),(111931,'Andrew McNee'),(111933,'Naomi Dane'),(111935,'Rylee Stiles'),(111942,'Jackie Filgo'),(111943,'Jeff Filgo'),(111944,'Bobby Roth'),(111945,'Noah Bean'),(111946,'Britney Spears'),(111947,'Lynne Spears'),(111988,'Gigi Perreau'),(112007,'James Leicester'),(112013,'Rain'),(112014,'Matthew Sand'),(112037,'Zelda Harris'),(112038,'Carlton Williams'),(112039,'Tse-Mach Washington'),(112040,'Christopher Knowings'),(112041,'Ivelka Reyes'),(112042,'Richard Whiten'),(112044,'Max Brooks'),(112045,'Wanda Christine'),(112049,'Jonathan Slavin'),(112050,'Susan Slome'),(112052,'Jennifer Elise Cox'),(112053,'Michael Chieffo'),(112080,'Shawna Waldron'),(112086,'Marcus Toji'),(112110,'Stepan Nercessian'),(112119,'Derek Graf'),(112129,'Diego Catau00f1o'),(112143,'Mark Consuelos'),(112144,'Freddie Joe Farnsworth'),(112145,'Jeremy Callaghan'),(112147,'Royston Innes'),(112155,'Suzanne von Schaack'),(112161,'Chi Cao'),(112162,'Chengwu Guo'),(112163,'Wen Bin Huang'),(112165,'Camilla Vergotis'),(112166,'Madeleine Eastoe'),(112167,'Roy Blount, Jr.'),(112168,'Steven Heathcote'),(112188,'Sergio Farjalla Jr.'),(112253,'Leonard Frey'),(112261,'Joey McIntyre'),(112266,'Kortney Adams'),(112267,'Andrew Connolly'),(112272,'Julie Garces'),(112284,'Chip Bent'),(112285,'Lawrence Turner'),(112286,'Edrick Browne'),(112287,'John Cates'),(112288,'Lucille Soong'),(112289,'Chris Shadley'),(112290,'Patrick Wehe Mahoney'),(112300,'Tom Hodges'),(112307,'Linda Lee Sutton'),(112345,'Kaloian Vodenicharov'),(112347,'Rufus Dorsey'),(112377,'Rachel Emmers'),(112388,'Matthew Campagna'),(112429,'Mehmet Ferda'),(112439,'Marsha Fitzalan'),(112463,'Justin Bradley'),(112464,'Ashley Jones'),(112465,'Jenny Hanley'),(112467,'Wendy Hamilton'),(112470,'Elizabeth McLaughlin'),(112475,'Julie Lauren'),(112476,'Dylan Minnette'),(112498,'Dennis Stuart Murphy'),(112520,'Garreth Stover'),(112521,'Chris Cornwell'),(112526,'Allan Wertheim'),(112527,'Richard Blake Wester'),(112543,'Grace Thorsen'),(112546,'Neko Parham'),(112557,'Camille Sullivan'),(112560,'Quinton Aaron'),(112561,'Lily Collins'),(112562,'Catherine Dyer'),(112566,'Lance Gross'),(112572,'Ernie F. Orsatti'),(112574,'Patrick Duffy'),(112576,'David Leonard'),(112600,'Marc Donato'),(112608,'Steve C. Aaron'),(112609,'David E. Fluhr'),(112630,'Dean Wright'),(112631,'E. Michael Hewett'),(112632,'Eddie O\'Flaherty'),(112633,'Fagin Woodcock'),(112634,'Marco Niccoli'),(112635,'Carrie Ruscheinsky'),(112636,'Spencer Maybee'),(112637,'Veronika Hadrava'),(112638,'Denis Krasnogolov'),(112639,'Patrick Keating'),(112640,'Roger Horchow'),(112641,'Dion Johnstone'),(112642,'Christina D\'Alimonte'),(112643,'Vanesa Tomasino'),(112644,'Luvia Petersen'),(112645,'Marci T. House'),(112646,'Beth Siegler'),(112647,'Stacee Copeland'),(112648,'Tom Charron'),(112649,'Brent C.S. O\'Connor'),(112650,'Paul Mitton'),(112651,'Vanessa Morley'),(112652,'Michael Stevens'),(112656,'Victoria Down'),(112657,'Sandy Monesmith'),(112658,'Michael Nickiforek'),(112659,'Julio Pallares'),(112660,'Christopher Mark Pinhey'),(112661,'Maureen Terezakis'),(112662,'Simon Abbott'),(112679,'Julie Ryan'),(112682,'Spiro Razatos'),(112689,'Michael Robert Johnson'),(112690,'Dan Lin'),(112691,'Peter Eskelsen'),(112692,'Robert Maillet'),(112693,'Roxana Zal'),(112722,'Ross Elliott'),(112724,'Scott Voshel'),(112731,'Kenny Morrison'),(112735,'Rasmus Botoft'),(112741,'Nathaniel Brown'),(112742,'Emily Alyn Lind'),(112743,'Jesse Kuhn'),(112744,'Ed Spear'),(112745,'Cyril Roy'),(112749,'Zachary Matz'),(112751,'Nanda Rao'),(112767,'Adrien Antoine'),(112769,'Dorothu00e9e Poussu00e9o'),(112771,'Marc Du Pontavice'),(112821,'Billie Hayes'),(112824,'Aisling Loftus'),(112827,'Brendan O\'Carroll'),(112831,'Akira Koieyama'),(112832,'Yuriri Naka'),(112855,'D.J. Markuson'),(112863,'John Karyus'),(112864,'Kiel Frieden'),(112872,'John Valby'),(112875,'Bruce Stubblefield'),(112877,'Tom Devlin'),(112879,'Jeremy Luke'),(112884,'Ed McMahon'),(112947,'Erich Hoeber'),(112948,'Jon Hoeber'),(112962,'Walter Mathews'),(112963,'E. Brian Dean'),(112965,'Ben Astar'),(112997,'Cherish Lee'),(113008,'Serdar Kalsin'),(113012,'Wayne Bennett'),(113013,'David McKimmie'),(113014,'Paul Rabwin'),(113017,'Tom Braidwood'),(113018,'Gabriel Correa'),(113019,'E.J. Foerster'),(113023,'Aaron Alexander'),(113024,'Jared Brown'),(113025,'Raul Casillas'),(113026,'Geoff Coulter'),(113027,'Roger Dole'),(113028,'David Hadaway'),(113029,'Scott Holburn'),(113030,'Leonardo Lara'),(113031,'Marta McLaughlin'),(113032,'Wayne McLaughlin'),(113033,'Brad McMurray'),(113034,'Eric Partridge'),(113035,'Mark Prior'),(113036,'Mike Rennison'),(113037,'Paul Rinaldi'),(113038,'Sabine Schoppel'),(113039,'Jenny Seinen'),(113040,'Gordon Anderson'),(113041,'David Betancourt'),(113042,'Smokey Cloud'),(113043,'Scott Curtis'),(113044,'Gloria D\'Alessandro'),(113045,'Dawn Lunsford'),(113046,'David Giammarco'),(113047,'Peter Gleaves'),(113048,'Tim Gomillion'),(113049,'Galen Goodpaster'),(1130